From 238070e4f0254dc62fbaf46a3e8cee6bccc2800a Mon Sep 17 00:00:00 2001 From: Mike Hepburn Date: Tue, 4 Jul 2023 20:31:35 +1000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20#67=20-=20add=20sso=20to=20minio?= =?UTF-8?q?=20=F0=9F=90=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cluster-dev/rainforest-ci-cd/minio.yaml | 2 + .../iam/cluster-dev/daintree-dev/values.yaml | 3 + gitops/iam/chart/iam/templates/keycloak.yaml | 4 + .../daintree-dev/KeycloakClient.yaml | 40 + .../daintree-dev/KeycloakRealm.yaml | 423 +++ gitops/minio/base/minio-dc.yaml | 15 +- .../overlays/cluster-dev/kustomization.yaml | 8 + .../minio/overlays/cluster-dev/minio-dc.yaml | 47 + gitops/secrets/vault-rainforest | 2448 +++++++++-------- 9 files changed, 1780 insertions(+), 1210 deletions(-) create mode 100644 gitops/minio/overlays/cluster-dev/minio-dc.yaml diff --git a/gitops/argocd/cluster-dev/rainforest-ci-cd/minio.yaml b/gitops/argocd/cluster-dev/rainforest-ci-cd/minio.yaml index f3d4426..09ae69d 100644 --- a/gitops/argocd/cluster-dev/rainforest-ci-cd/minio.yaml +++ b/gitops/argocd/cluster-dev/rainforest-ci-cd/minio.yaml @@ -13,6 +13,8 @@ spec: path: gitops/minio/overlays/cluster-dev repoURL: https://github.com/opendatahub-io-contrib/data-mesh-pattern targetRevision: main + plugin: + name: argocd-vault-plugin-kustomize syncPolicy: automated: prune: true diff --git a/gitops/iam/chart/iam/cluster-dev/daintree-dev/values.yaml b/gitops/iam/chart/iam/cluster-dev/daintree-dev/values.yaml index 236f995..12753a3 100644 --- a/gitops/iam/chart/iam/cluster-dev/daintree-dev/values.yaml +++ b/gitops/iam/chart/iam/cluster-dev/daintree-dev/values.yaml @@ -12,3 +12,6 @@ users: userId: "5e6ba846-f869-481b-912b-3c9c78d0db94" clientRole: adminRole clusterRole: edit + attributes: + policy: + - consoleAdmin diff --git a/gitops/iam/chart/iam/templates/keycloak.yaml b/gitops/iam/chart/iam/templates/keycloak.yaml index eac67c7..b07fb36 100644 --- a/gitops/iam/chart/iam/templates/keycloak.yaml +++ b/gitops/iam/chart/iam/templates/keycloak.yaml @@ -28,6 +28,10 @@ spec: {{- include "dsRole" . | nindent 6 }} {{- else }} {{- include "viewRole" . | nindent 6 }} +{{- end }} +{{- if .attributes }} + attributes: + {{- toYaml .attributes | nindent 6 }} {{- end }} realmSelector: matchLabels: diff --git a/gitops/keycloak/overlays/cluster-dev/daintree-dev/KeycloakClient.yaml b/gitops/keycloak/overlays/cluster-dev/daintree-dev/KeycloakClient.yaml index 89dc1e3..4ee23eb 100644 --- a/gitops/keycloak/overlays/cluster-dev/daintree-dev/KeycloakClient.yaml +++ b/gitops/keycloak/overlays/cluster-dev/daintree-dev/KeycloakClient.yaml @@ -356,3 +356,43 @@ spec: - name: DataSteward composite: false clientRole: true +--- +apiVersion: keycloak.org/v1alpha1 +kind: KeycloakClient +metadata: + name: minio-daintree-dev + labels: + client: minio-daintree-dev + annotations: + argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true +spec: + realmSelector: + matchLabels: + realm: daintree-dev + client: + name: minio + clientId: minio + bearerOnly: false + protocol: openid-connect + standardFlowEnabled: true + serviceAccountsEnabled: true + directAccessGrantsEnabled: true + surrogateAuthRequired: false + enabled: true + clientAuthenticatorType: "client-secret" + secret: + consentRequired: false + implicitFlowEnabled: true + authorizationServicesEnabled: false + publicClient: false + redirectUris: + - "*" + webOrigins: + - "*" + frontchannelLogout: false + fullScopeAllowed: true + nodeReRegistrationTimeout: -1 + defaultClientScopes: + - "profile" + - "email" + - "minio-authorization" diff --git a/gitops/keycloak/overlays/cluster-dev/daintree-dev/KeycloakRealm.yaml b/gitops/keycloak/overlays/cluster-dev/daintree-dev/KeycloakRealm.yaml index 6d5090a..046d60a 100644 --- a/gitops/keycloak/overlays/cluster-dev/daintree-dev/KeycloakRealm.yaml +++ b/gitops/keycloak/overlays/cluster-dev/daintree-dev/KeycloakRealm.yaml @@ -35,6 +35,429 @@ spec: clientSecret: defaultScope: "user:full" useJwksUrl: "true" + clientScopes: + - id: minio-authorization + name: minio-authorization + description: OpenID Connect scope for minio policy + protocol: openid-connect + attributes: + include.in.token.scope: "true" + display.on.consent.screen: "true" + protocolMappers: + - id: minio-policy-mapper + name: minio-policy-mapper + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + aggregate.attrs: "true" + userinfo.token.claim: "true" + multivalued: "true" + user.attribute: "policy" + id.token.claim: "true" + access.token.claim: "true" + claim.name: "policy" + jsonType.label: "String" + - id: 2e00768f-fe3c-48d8-92bf-35afbbcc30c0 + name: web-origins + description: OpenID Connect scope for add allowed web origins to the access token + protocol: openid-connect + attributes: + include.in.token.scope: "false" + display.on.consent.screen: "false" + consent.screen.text: "" + protocolMappers: + - id: d54340bc-16f0-45a4-9464-436ef7583a81 + name: allowed web origins + protocol: openid-connect + protocolMapper: oidc-allowed-origins-mapper + consentRequired: false + config: {} + - id: 172816fd-8450-4e82-b33a-89f9181373a4 + name: phone + description: 'OpenID Connect built-in scope: phone' + protocol: openid-connect + attributes: + include.in.token.scope: "true" + display.on.consent.screen: "true" + consent.screen.text: ${phoneScopeConsentText} + protocolMappers: + - id: 02c09b15-1210-4a6c-b6e4-c2452031712a + name: phone number + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: phoneNumber + id.token.claim: "true" + access.token.claim: "true" + claim.name: phone_number + jsonType.label: String + - id: 6a96110b-3a23-48cd-8d90-cefa6228e5e1 + name: phone number verified + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: phoneNumberVerified + id.token.claim: "true" + access.token.claim: "true" + claim.name: phone_number_verified + jsonType.label: boolean + - id: c7d788d8-5836-4500-b4a9-083c2f6c2960 + name: role_list + description: SAML role list + protocol: saml + attributes: + consent.screen.text: ${samlRoleListScopeConsentText} + display.on.consent.screen: "true" + protocolMappers: + - id: a70dad06-f7a0-4c3d-8c08-cf440c7918da + name: role list + protocol: saml + protocolMapper: saml-role-list-mapper + consentRequired: false + config: + single: "false" + attribute.nameformat: Basic + attribute.name: Role + - id: 656d7d46-bcd6-4b5a-bcfa-20ad0f13e9fe + name: offline_access + description: 'OpenID Connect built-in scope: offline_access' + protocol: openid-connect + attributes: + consent.screen.text: ${offlineAccessScopeConsentText} + display.on.consent.screen: "true" + - id: 65c7d0bd-243d-42d2-b7f2-64ce2fa7ca7e + name: profile + description: 'OpenID Connect built-in scope: profile' + protocol: openid-connect + attributes: + include.in.token.scope: "true" + display.on.consent.screen: "true" + consent.screen.text: ${profileScopeConsentText} + protocolMappers: + - id: e3f5a475-0722-4293-bcd5-2bad6bc7dde6 + name: locale + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: locale + id.token.claim: "true" + access.token.claim: "true" + claim.name: locale + jsonType.label: String + - id: 7b91d2ec-3c9f-4e7d-859e-67900de0c6b6 + name: full name + protocol: openid-connect + protocolMapper: oidc-full-name-mapper + consentRequired: false + config: + id.token.claim: "true" + access.token.claim: "true" + userinfo.token.claim: "true" + - id: d301c7b7-0d97-4d37-8527-a5c63d461a3c + name: family name + protocol: openid-connect + protocolMapper: oidc-usermodel-property-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: lastName + id.token.claim: "true" + access.token.claim: "true" + claim.name: family_name + jsonType.label: String + - id: 71c6caff-3f17-47db-8dc1-42f9af01832e + name: updated at + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: updatedAt + id.token.claim: "true" + access.token.claim: "true" + claim.name: updated_at + jsonType.label: long + - id: 6bcb9f8d-94be-48b3-bd47-2ba7746d65ac + name: picture + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: picture + id.token.claim: "true" + access.token.claim: "true" + claim.name: picture + jsonType.label: String + - id: d497ef2e-5d5b-4d8a-9392-04e09f5c51b6 + name: nickname + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: nickname + id.token.claim: "true" + access.token.claim: "true" + claim.name: nickname + jsonType.label: String + - id: f8167604-073d-47ea-9fd1-6ec754ce5c49 + name: website + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: website + id.token.claim: "true" + access.token.claim: "true" + claim.name: website + jsonType.label: String + - id: 48d8f2ff-d0e6-41f2-839e-3e51951ee078 + name: profile + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: profile + id.token.claim: "true" + access.token.claim: "true" + claim.name: profile + jsonType.label: String + - id: 463f80df-1554-4f0b-889f-1e6f2308ba17 + name: username + protocol: openid-connect + protocolMapper: oidc-usermodel-property-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: username + id.token.claim: "true" + access.token.claim: "true" + claim.name: preferred_username + jsonType.label: String + - id: c347cd4f-a2e1-4a5f-a676-e779beb7bccf + name: given name + protocol: openid-connect + protocolMapper: oidc-usermodel-property-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: firstName + id.token.claim: "true" + access.token.claim: "true" + claim.name: given_name + jsonType.label: String + - id: 665672fd-872e-4a58-b586-b6f6fddbc1ac + name: zoneinfo + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: zoneinfo + id.token.claim: "true" + access.token.claim: "true" + claim.name: zoneinfo + jsonType.label: String + - id: b76e46cc-98a9-4bf7-8918-0cc8eb2dfc8c + name: gender + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: gender + id.token.claim: "true" + access.token.claim: "true" + claim.name: gender + jsonType.label: String + - id: cb1a55e3-87f0-4efb-b5c0-d5de40344bfc + name: birthdate + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: birthdate + id.token.claim: "true" + access.token.claim: "true" + claim.name: birthdate + jsonType.label: String + - id: 9b5c1c92-c937-4216-9fdb-db23d6eee788 + name: middle name + protocol: openid-connect + protocolMapper: oidc-usermodel-attribute-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: middleName + id.token.claim: "true" + access.token.claim: "true" + claim.name: middle_name + jsonType.label: String + - id: 672455b2-1e92-44f6-9fb6-fe2017995aed + name: profile_level.name_and_dev_terms + protocol: openid-connect + attributes: + include.in.token.scope: "true" + display.on.consent.screen: "true" + - id: 45e1900d-2199-45fc-9028-a39497a6cdd5 + name: email + description: 'OpenID Connect built-in scope: email' + protocol: openid-connect + attributes: + include.in.token.scope: "true" + display.on.consent.screen: "true" + consent.screen.text: ${emailScopeConsentText} + protocolMappers: + - id: 149315f5-4595-4794-b11f-f4b68b1c9f7a + name: email + protocol: openid-connect + protocolMapper: oidc-usermodel-property-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: email + id.token.claim: "true" + access.token.claim: "true" + claim.name: email + jsonType.label: String + - id: 26f0791c-93cf-4241-9c92-5528e67b9817 + name: email verified + protocol: openid-connect + protocolMapper: oidc-usermodel-property-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: emailVerified + id.token.claim: "true" + access.token.claim: "true" + claim.name: email_verified + jsonType.label: boolean + - id: ed5b578d-d48f-4023-bc23-892a76d018df + name: roles + description: OpenID Connect scope for add user roles to the access token + protocol: openid-connect + attributes: + include.in.token.scope: "false" + display.on.consent.screen: "true" + consent.screen.text: ${rolesScopeConsentText} + protocolMappers: + - id: 569264db-b779-49c9-a9b0-cfa0f8c249db + name: audience resolve + protocol: openid-connect + protocolMapper: oidc-audience-resolve-mapper + consentRequired: false + config: {} + - id: 6d2e188f-4022-474e-84ad-19a84e054fc5 + name: realm roles + protocol: openid-connect + protocolMapper: oidc-usermodel-realm-role-mapper + consentRequired: false + config: + user.attribute: foo + access.token.claim: "true" + claim.name: realm_access.roles + jsonType.label: String + multivalued: "true" + - id: f7b77092-577d-4492-b803-a3cdf2a436fe + name: client roles + protocol: openid-connect + protocolMapper: oidc-usermodel-client-role-mapper + consentRequired: false + config: + user.attribute: foo + access.token.claim: "true" + claim.name: resource_access.${client_id}.roles + jsonType.label: String + multivalued: "true" + - id: b2240814-1831-48d1-9682-7eb5231bbc76 + name: acr + description: OpenID Connect scope for add acr (authentication context class reference) to the token + protocol: openid-connect + attributes: + include.in.token.scope: "false" + display.on.consent.screen: "false" + protocolMappers: + - id: bc946f16-8378-4edc-9137-f5d5db96da88 + name: acr loa level + protocol: openid-connect + protocolMapper: oidc-acr-mapper + consentRequired: false + config: + id.token.claim: "true" + access.token.claim: "true" + - id: 47f93745-58c6-4f19-9ef4-768cd6df7ab7 + name: microprofile-jwt + description: Microprofile - JWT built-in scope + protocol: openid-connect + attributes: + include.in.token.scope: "true" + display.on.consent.screen: "false" + protocolMappers: + - id: ca164b36-12dc-47fc-b0e6-e40949a5042e + name: upn + protocol: openid-connect + protocolMapper: oidc-usermodel-property-mapper + consentRequired: false + config: + userinfo.token.claim: "true" + user.attribute: username + id.token.claim: "true" + access.token.claim: "true" + claim.name: upn + jsonType.label: String + - id: 4314b495-934a-4948-b9ae-fc9c17354cf0 + name: groups + protocol: openid-connect + protocolMapper: oidc-usermodel-realm-role-mapper + consentRequired: false + config: + multivalued: "true" + user.attribute: foo + id.token.claim: "true" + access.token.claim: "true" + claim.name: groups + jsonType.label: String + - id: 710757d5-c717-44de-ad25-2133cf75b0a6 + name: nameandterms + protocol: openid-connect + attributes: + include.in.token.scope: "true" + display.on.consent.screen: "true" + - id: b4120472-4f73-4659-ae6b-d24bd45c4fa3 + name: address + description: 'OpenID Connect built-in scope: address' + protocol: openid-connect + attributes: + include.in.token.scope: "true" + display.on.consent.screen: "true" + consent.screen.text: ${addressScopeConsentText} + protocolMappers: + - id: 8bf14f81-76b3-4970-9993-a270b52ae28a + name: address + protocol: openid-connect + protocolMapper: oidc-address-mapper + consentRequired: false + config: + user.attribute.formatted: formatted + user.attribute.country: country + user.attribute.postal_code: postal_code + userinfo.token.claim: "true" + user.attribute.street: street + id.token.claim: "true" + user.attribute.region: region + access.token.claim: "true" + user.attribute.locality: locality instanceSelector: matchLabels: app: keycloak diff --git a/gitops/minio/base/minio-dc.yaml b/gitops/minio/base/minio-dc.yaml index 9fbcac2..24293bd 100644 --- a/gitops/minio/base/minio-dc.yaml +++ b/gitops/minio/base/minio-dc.yaml @@ -43,27 +43,20 @@ spec: args: - server - /storage -# - --config-dir=/config - --console-address=:33933 env: - name: MINIO_ACCESS_KEY - value: "minio" + value: - name: MINIO_SECRET_KEY - value: "minio1234" + value: - name: MINIO_PROMETHEUS_AUTH_TYPE value: "public" - name: MINIO_TRACE value: "true" - name: MINIO_ROOT_USER - value: "minio" + value: - name: MINIO_ROOT_PASSWORD - value: "minio1234" - # - name: MINIO_IDENTITY_OPENID_CONFIG_URL - # value: http://$(KEYCLOAK_URL)/auth/realms/master/.well-known/openid-configuration - # - name: MINIO_IDENTITY_OPENID_CLIENT_ID - # value: "minio" - # - name: MINIO_IDENTITY_OPENID_CLIENT_SECRET - # value: "$(CLIENT_SECRET)" + value: ports: - containerPort: 9000 - containerPort: 33933 diff --git a/gitops/minio/overlays/cluster-dev/kustomization.yaml b/gitops/minio/overlays/cluster-dev/kustomization.yaml index 11e2456..f668f36 100644 --- a/gitops/minio/overlays/cluster-dev/kustomization.yaml +++ b/gitops/minio/overlays/cluster-dev/kustomization.yaml @@ -2,3 +2,11 @@ resources: - ../../base namespace: rainforest-ci-cd + +patchesJson6902: + - target: + version: v1 + group: apps + kind: Deployment + name: minio + path: minio-dc.yaml diff --git a/gitops/minio/overlays/cluster-dev/minio-dc.yaml b/gitops/minio/overlays/cluster-dev/minio-dc.yaml new file mode 100644 index 0000000..ca4eda7 --- /dev/null +++ b/gitops/minio/overlays/cluster-dev/minio-dc.yaml @@ -0,0 +1,47 @@ +- op: add + path: /spec/template/spec/containers/0/env/- + value: + name: MINIO_IDENTITY_OPENID_VENDOR + value: + +- op: add + path: /spec/template/spec/containers/0/env/- + value: + name: MINIO_IDENTITY_OPENID_CONFIG_URL_KEYCLOAK_PRIMARY + value: + +- op: add + path: /spec/template/spec/containers/0/env/- + value: + name: MINIO_IDENTITY_OPENID_CLIENT_ID_KEYCLOAK_PRIMARY + value: + +- op: add + path: /spec/template/spec/containers/0/env/- + value: + name: MINIO_IDENTITY_OPENID_CLIENT_SECRET_KEYCLOAK_PRIMARY + value: + +- op: add + path: /spec/template/spec/containers/0/env/- + value: + name: MINIO_IDENTITY_OPENID_DISPLAY_NAME_KEYCLOAK_PRIMARY + value: + +- op: add + path: /spec/template/spec/containers/0/env/- + value: + name: MINIO_IDENTITY_OPENID_SCOPES_KEYCLOAK_PRIMARY + value: + +- op: add + path: /spec/template/spec/containers/0/env/- + value: + name: MINIO_IDENTITY_OPENID_CLAIM_NAME_KEYCLOAK_PRIMARY + value: + +- op: add + path: /spec/template/spec/containers/0/env/- + value: + name: MINIO_BROWSER_REDIRECT_URL + value: diff --git a/gitops/secrets/vault-rainforest b/gitops/secrets/vault-rainforest index a003c85..0ec2d64 100644 --- a/gitops/secrets/vault-rainforest +++ b/gitops/secrets/vault-rainforest @@ -1,1200 +1,1250 @@ $ANSIBLE_VAULT;1.1;AES256 -64613630653831316531373634666263656661626563376136663736333264646465363363333639 -6531313463353034363334353531336639366636323866610a346230363633373639396532623839 -61356262633265346534643437356336626363326639646461613162386637363134366438663432 -3265316237323165660a633232636232316362623639346265396665633233376364366532633931 -64626561313536613163343236323833616632366432643833623337653230326164626230383637 -36636637656436393963323039616237633231653831343531656332653533643032316233323562 -66366436636463646434343135616461333139613531316564383633623733373937393061643732 -36303163303139373339626339303562363762663463336439363630336538303234663232636237 -64393732316364653531616362623930633132396663316435323031333964316564393461336664 -37626265383666626637376466303165656634366163623437623838343238303539653730363465 -33643135613163323132663834656233346464303833653335393832343433383265333466343266 -39333738343236353637316234336234643934383036666139393165343363343131363930616635 -34636431353531373661636338333436363439393536343662386464303536613132626132363534 -61383932653432353461663630363536396136383863623637343435383135383531316265353531 -32306463633839313039346637386430396334326437353363393134343366326230353064613735 -34376130343030373565386637613064386238363565313166643166653633323134643731663732 -34633962653135653431306230303363626231333461373565343438333361363532363465313839 -35316533393263373031306661323031663732363637623130393730616130386138633939663661 -65626332376632346662346464336365396362303637316630656139343166353732346232353363 -37346664353065393264396365313539393466633836623039316231386232623062396239373838 -34303930633235616231636135383766316364633737653565383538663636666333376434656134 -65396339306537343265393964303733313666306263613364663762323934356466313730396639 -36326231646137323061343361663433383735343064393735643834623866613936363966626366 -32613165353761646464323533313163666161393366623630666361633731396535393766383138 -32333532386336336139343631643736333464623761356233636363356365363936303134346662 -64356236643862626632356539663366366537646138653338363034633632656233326166306433 -66316533313164373664303865373063373861363965616535373666333236616138626236656638 -30633063343238346139663861336666343230336138653065643965366266366262343334373336 -34373662303130383362356536356130636432663764333434643733376539636461663063353066 -30343161353932333532343131363935633738383163633561303462396161333463323964623831 -65303261333438313834636331343033656333633432653564613065373862323764363937333036 -66323931333230613631323630666636393439633730626466356530643662323935356264313564 -32313031396231393332636534376462303532646261663134383233623332646536333964383237 -36383339653166373262333836353837326333626636313931393538343065663862383138336236 -64363565623161643934353231623937363439383135346131613763616130643435643638333363 -61356466386339623862373830356435636134306637306363663638656264303330373662306465 -35633536343663636266316633623935666631316236376534646163386564373131356665663935 -34626461353537666361643864636630633637336638306665326331303432316461316535376164 -30373163346464383537383633613366313037336166623561626466386664373238396238616465 -62316336356663623436326465373061666530303630613664663736663163326363383137346534 -39663034323538663737646131316463626162303566656662376166306538613863313232666462 -65393134623762343638303664613661653765633630656532653830653630623738656164313533 -37393639323832316531336437336463313130353737636161313438653838636435626234333830 -38656432383737666664643630373532313134323134336431343835393932383135356535356361 -62343838333261373361326562663663623865623439353235303966313062633231323438656637 -38646161323030333165363335353266633632326231343832336333303365633066393465303061 -62643064386338346237643231383438386534633630356666393765396261336136643731666430 -35353037386465623266333865623961636133363630313065313734376236316536346464333566 -37383232616336333032383365633330326232376662336237393433626639393933343632316436 -37346637323230343161363233616630646535626465363466383130623039383162383736343739 -33666536303336336339333634363137666265643937646439636338356533643066623136316130 -37386164306238396136386233343561363730343465616166646236353435303564356435643336 -63626135643862386266663932663435303632623366326535346537353232363863643932373863 -35333534666263353933303437396539336534646133653566356162353435653336623435366337 -62616638366463646631376433616333323034653361306436313932313437316661303761653538 -65376133333765303830353336616632363237616131623530386666343837366264623534343762 -63336363353762636666343163663639383632333735646531656464633233656231313362623035 -63613962666333396632313765333338353161323664646435633166653539353866366639636430 -65323836343638356231643364656431663635333561646135373061393633623733303861306630 -64316237396364376466393431396138313962356464636336666633333165343663313034373530 -33353531363337373735356530636331616238623063363563366538653764323737323063356139 -37376330383366396563666230636663326434636339333739303834636433653039303330313737 -38333863643736333834636331306236316436653563356538343963313662316364386530383064 -63343133323164653463616262656364323230643131306537333134343064396663363538343332 -63366236353838623231356163656433613261646635333561376632393630653736323535656666 -33656262323632306533363436363231333964373532303036656639316635306564383465346663 -66656339353866613261306131353766653632383239633062303531643365366636333736363535 -63356562343433323763376663366437653931373437633738353364313531316466363865386339 -62626464623263646163343034616666383937353435333266653233373831613433656462646163 -62373336643466353163623337303663356231656132623336363561306238653730393666363731 -66343161626231366132616237643266346364616230653739383838313662303331666333343034 -66333664386434353462666230653163363032663730323666306135346261306237313864623131 -35326238646431613633653736666137653936646132383237323431636464653735313231333666 -32633532326633636231333732323461613434353931363864303132393464393630313864393732 -66323162333736373964623435393965633932313639346432663531346365666165306639336163 -35313833306333633432633033623836666663376231316666373161316236613964316136396161 -65313631373430656362613565393063663561356435333262343338366565396430646462656538 -38323230646437306566303438643835333537336465376437313239353639653330323036643864 -38373530636230333335393337313336633238313963343062346562646537613339396637633039 -33613062633135323430623166653135346564326562666161303162396431653639383038353933 -39393937623332326666393132306366656233396635346236656634386363383437383665376238 -30316436646262323034313433363133303537336238373439656532393533356330653339326462 -33316331643961306635663662353964306538336339656431363430646330313865633030663836 -63393465323233383333323564633234663964643033666263346634373837386136343161313263 -34366434663333373730613732336334386665396662373562616337656337633437343033346330 -39356630393033383763613433353432343436626238333561303662613635306335646530653038 -31643966386336626235613436376633393836633363376139373037626264633765353761336566 -35666635666365323339373130643538653436356134653065316438313964383764363363646337 -31373666323636303032346530343965613065343431323561626164393538386565323031343664 -30303466646336303131663864386262643432383233663764303165646363386664383763363166 -64663334643264626534653663656330396563626563373436386262386238353636353366313132 -34393538396130396266636666356663313830343162653465383364306539653632653066363866 -36363736313835303038646335623330383538363461383236373236316132623137333661636137 -35343961313039616632383338356563383233643033373038366433353732323536626330346233 -37323465383735613466643061643737663565393632636330323439663062326239313335623834 -35376230383237373830613836333135316539303037363437333536326239336631376564353266 -32623766356365643764326264323137633636386666336433316637656338386562646638306238 -30643965376565633832623930393734663630346339616331663337613064656532623763303866 -62613164366532306562376561643130383763653030336638376363303933336138383165313963 -63326264306435643363373736326630623337636636343365663234363662333861623031653634 -64303236383862373863613863373134323030626139633533303933346332333236393034356431 -35666138626233326138393839313938393532356530306431616164643036383262363430623632 -63393137656332643039346236666166356335326539306665333366653939623465303866643733 -34646161633561333534386634313230666537396633643735653166393063356663663062643962 -63326434613961623565326639616166386330336361663566653663633332323531303736653363 -37356532646336386332616533313864333536363531303763643463613163633633313761353331 -62653133636637393737376463356537333032656262633961303335316338663531386230353135 -33343931313364323931643834616636366162633964343833353733346631653937366436383937 -39393866653762643837333335393365633566386136306633613637323261623062323139633962 -64393863613666386536393735633861663565356131343262623333333137313038613332356137 -31353736666464646134363564393232333866376636636634323339326564633663646630636164 -39376564333739666164633330353464376238383164363863656134313965643364346364363861 -32326230666138653430383664333861643234656230336262326465313339336564616661356264 -36313430336632353238383837313361366164623231353962313963633739343835323035633431 -34396564353232376237306632386239346265383464383334303934366331343732343161656137 -64623864333436323934343961356663616165646365643534633038363733306638623238313462 -30666230376230656639363537633634306232393763636433386330386637636235393861373638 -34363635386632343836373834313136343737393434653638333363326232343262346130333339 -64656339313566313435613837363634323962313234633064623130393361323533396330393964 -64303933303564303530663530356562333663376566393731616361326665643733356237353962 -31316537636633393363306631376465366332343761643135313430316337653538343136396664 -63383463376138616635373063633437396331383635633464653839623238633633646662386662 -66643665623533643464356261623965663035663435336131306233303336313236396465303132 -36303864356435303836393634346664356233663563376364343632396335633534346463383134 -35316261343337373536363334373534613963343233623266363438643439306632333134643062 -38653432613233353864313766646435613139656531376430303532383835626462333837633564 -32323463303730616632643135333666303437303730663837303166613431656462373438656663 -31356665333466313630336565663030633461623931333762306361303730613861353433653263 -31353762616130303662323530333061626661393532666235343265383437306239633232373264 -38643939663736373036316462643661363164623162306335323631333039323365343035353030 -37313065323364626365333933653436373430383865306630316133643538623035306561643135 -64316435353362316338616366643162663739303636613762653865646561643639386132666534 -32343963396232306261643130663065633036663737313130653964323662313661353935363262 -62323136316433376333656532633539303331396139373963353036393238386365633364646263 -32306638323838326237306236376135656231396661383633393237313664643438643830343865 -64633831373130313239386432623862346339376165633430343836653561323433303161643966 -66653132653738383433383031323865316533343365383030383733363034623262363532623435 -62363933623463353438343138373438613961636435633839323866633866353865323637666433 -33333533376233656139363365613133613737346231613964306330613066636535633234376231 -39303832313934313665663065383335333039633738623537353634376364333036346532343735 -65633265626539346435613932396232363332316163313339306662353037653664326338636139 -65333634613830636264666537363438663465393534356464643464336437393130316234346133 -38376362656630313333323465653533666433343439383730393364613730303763646634336630 -39623562626363386533663738313934393537363233663533353162373263316330653661396339 -34613232363131383861343939626163343431383735376538633430343138363736326435316339 -39316332386336383432616337636264326565383463656162303539633433663561623931343162 -33393738326564613666666632616563643163306537383133616231373639343835326132373965 -38393066316631353735623063616264336564383138666435666536346564636339333436623038 -35313331396566623261313864386536353762306262613062633264643731313063346234653062 -39633534303339366239613731313436376461386333643264323735353536356531643235313030 -31366462366365383732306432363466303237643037663232633633303733353137323432613835 -35353863383937313431623537376266646633393635636165306339333930626530333037333430 -33633162396430373261623764376330656134653530376566393939386261633632383733386465 -34623035353464636232626335613765326636383530396131323033643739373637633766613032 -65396664386466383233303361633864356436323937373437366333373232373764393532383830 -65633636326438356637383662393233313935383061346635616163333137366532653035303766 -38373661336166323833313664323333663333323830383130626463323862616163356565656639 -62653339653163646266366536383231396635623232306366396431623265323465613362383465 -62353233353036643434326239656638656532646237633430383036613765643131613034343437 -30663734346237656138316135653531623562393733356234323734396564623230343534653830 -36303839663439643665653534613363383331663063363238383465366235306239336434623261 -64343233623262313232613139306266366165623530383632386464366663376230326435643232 -64636366656662326536626533306562353036643439303963666630626237376532613235373961 -39326133383862383032643961353565633166366130303937373366613865383063323133323436 -34383735633232366537333435653461396333383566653432356536616464653564646135373639 -31313438306535626264363237313832333838366532353337326561633036646264323739383332 -63653135633730366663626164663665393364623636326637376133613564306535393238356238 -30393136333663646330373962323566376331653630613631626530333433336635313338653432 -32353437336661626432336235306134663165633230333533626264643862303236383664323537 -30316131306135396133316536356662333735306331323866363036383036623432656261326364 -35383765616563633734656663626334626634363037306439303638633735386462373939343863 -38373664636530333339623230383365336431323063613964656132363662636363613862633733 -34323864666161393437353338623432303031393930343330336337346231303439393264393831 -37303665343532326134633830393466646235353139343233643565633435376661326432663666 -63633037656265613365393735623639663565396564666136373835386662373338653530613665 -35623436343038643530623031643839373830636233653030366266343862323264363631616330 -63633766316338356662376433656438323333613134363034393334303437666534616661633437 -65303733663034386530643064633063396635396464353234643063343463633630363865633333 -64363237333765313466636130363833383132313733346231663666623430626438653466623634 -37326338393935636335636464373932333065303833633637633261373333636336663864373536 -32336533313133323130623339663336346637353735336265646532303466303730613737656434 -65633132346239623561623238636130323030313339346134303339366634346638623835613030 -61363730373563323666393135633633646633336534333935346366386534643637633765306166 -33623161396265373665386130306166333736313633623966633966326432646338393335343062 -34366161353736313935666135356334383736616463656132646135653237346134623864646265 -35633465346463323164316362383365353431336235366336616438336237633436613431626535 -37323562393938303931363963616561323437613632313636626563313739373333333930383065 -33613530633939363364343366306533306631396365303639383761376232663064653737643232 -64326138666439666635363835616431633262623162336236373738303930616134663630333164 -62386230663634346664363564646534316134623835396538666634643862653333393566303564 -64373161623839346135313331626162333063643234313166316636363839323762626633653034 -34666564303162393236313530633365326631316131616133613366363130626232383766623261 -62636436323138623665353235633166346264633130623231303539366263333037613136323332 -61323139363033323764376339383532303033323439643662656461316535373733616533353236 -31376663633435313663323331666337623766333565393039313036646564656239393830613939 -63306331373337653739623765656139646663393739346363623261306430393236383061386561 -33346238383137613332356132313963313835366637303363646538356666366163363961613161 -36306234316435346465343238653035366137613666343361616566656136643339313530323237 -34346536663932316664666532373035663265326531393163356437326366373865306361323161 -64353537316635373739383930663538376335623131656638336438633563633166653232653530 -39303133643232666661616137373538613863363231303931646661346639336539373438333065 -62373832636535366233633534383333363535323664393063396330323266636562613338373464 -63653462353136343362353366653831303364333738386335393032613266336364656537653962 -39343235626435366662626438623936336539666639376461373362353864386434656235346138 -31333031656366393231623164633066373830633133636665376365353761323936363639343162 -31323763306139333832373966663237643239373236313662323964343135306637623662643335 -35633038646530313739393238663062656163343030663932393436633463393737333065386531 -62633035653133366537663964336239303064373137363237303835396438323131653532353031 -63356661383064666634396430336331643436303539633761306263313237363932643836623937 -35306231613538303130613662663635663939306231326233343463663532366238643239656461 -62313636656263363339343465336564313361663962623265623435396630643561663735616338 -35343437313437653432643963353230613233626461323063386133363933313432656464323366 -33366165393430383432653138306632313461373766653363663739653034313137636334316564 -61643238366566353839656435633934666336303762633430663638333535333239663837313231 -32343237626137616230623236666239633037616562316534346162303661323462663163633065 -66616265303263326138353933373433626534313664333033313539396464653039326437663931 -66636631636339393234663136376630653330386331353538646565323033303066383261363034 -66633066373763326633613638366661393661653064306131333931373838356530373863656161 -32613864303734616630616563376166356263646432313161616133383763393634656339383635 -31313238663434383064383663316362666464646432343830346639613630626135616363613036 -32346435626562323039393431663631616435386436303932303461386330313130396564623834 -36373036303735326532373139386533323962616462333161663239366339646539633937633165 -64613866376239353663336637393532646464383139666162666364663165373466653235306636 -32356661643338323030656439623135333261323739383262623938363634336630643763663265 -63636163633035613134326463336661626130313735373134616237323465396230323439326438 -37346231333533613638333434616236333332343734623134626161303031643963626631646232 -31336634616137346262613537376632363665373363313866343037353834656539396466373631 -33313839333961326535363636323532316365363962666239333537363236613036653666616439 -36643234323437656335366531666138363431373863376430336431373866316131326334663730 -30646330363462353066313230396234623332386366633830366161303464616132323362353039 -32336163383363373563383337656533653262383434313030633033616235383438653464663835 -66616661363536303761633438353162643937306232386634313131623839333065333032363833 -35343432383838386464653664313339663231653962366363343732343837346462333030393732 -36393933653735373536306534393863316233333235623661336433343134306366303161376132 -31326430643964653663653135353064633930633333623662663834393736316565333034666135 -62633630386365633837636439386666303162623764613631383830323465393361326231656531 -61626530613361653830663064663336343763396530316463313832653331636237333635613663 -37303635356136396139653231626434343234333834616361393063613130633266656362393530 -32323832333034316237353965656261346362303562643732386636663664383235373761326232 -66666337646461623462613161343337303634333435303030303338653330393664633739303764 -38623665393963316330323637653731663432343263656635643632646463643839363734343738 -30643239613663346132623364356536303564643832303934353039613130343732373034326664 -62613837393532656139636439323234343838633838616236396331633265353039393866353631 -39323962333531613566613134666136333165353331316531313632643331616233336435383837 -34376161316437393730316666643438323238326664336635656366303538626338363666633066 -61396533316534616361363263653062316361336630626233373266396234643036363332333038 -33393435333534646534643736643934303034643634303866303337656431626562633837313366 -39343266326636613336306338313539313631353564333030396231343165383966343037393830 -61313165663264326462383836343664623162663333383138666666616134336138303738333664 -61653734653263343335646234616462613363376439356465663234333038363232326635366530 -62663935333739303635383434303661633864626135663165343761386535376362633366393562 -61346233633162396430396662383333323361633932376334323663303739363332303832626164 -39613131663437633231386263363265303863393934353866633863303266326534306535633937 -39663534396635343365333662383738666665346337376437373437393131366636386231373964 -66373135316466323435376166666163646361303434626361626537666263336530336131663863 -36623463326133386230376133383565313731386231396138336365653866303566353837643731 -38613761393132376632336133316438653430616165376339613064303437326239303038363562 -38626534663834336639373762386466363266626438643364336238633535303434333762323932 -64626333643931616133643236323133333464616265613061636534623630353237653535396633 -64366462393566643831376633656432663161636263306361346362323533666337653536336630 -32666535646461313638316131363031386237343761343838633162616334376330343531633034 -63663736393561666363396665613266366231303533643031626337326339643435643734663638 -63636265633166623762643236383464386564353134616161396434373462623930346565356634 -65393738613039376663356334363034333532616563613266396535346131383966663231643935 -32646435646438613662626133626563323266323038656138366562323863333764353532616131 -35643938396133396536663130646332343536626236333262373231666466393237386432623966 -39396162643435613761616261383766306163613833373863646234323738613765303162353230 -33373230373832633630353365623864353164366336386163303733653334613063373164313936 -30623666393466626666653664653465656539623565663364353061343761633566383337343834 -34326432336536303436613466623738623765626364306132643133613961383230396437656363 -64623936376333386361323234626166666537653363386639336233646536633962663562353633 -32643631353566633230636435633636373161613539623465383931363566333832313662623931 -66376231316266333132353035633436643731643638633432613935353937353663623331366230 -65373535653865633936663261313333323761363438303930353461663266356131353836636130 -34366438323037346538346131663066323437373566383439646665356166336137623265613934 -39663264393064383238383138393639336437346134633864376231663963653261636134366233 -64326131376231633966353031366566343836376566666633326662623534636632396533373630 -36373632346236313062353166623838653432653634633438613264353862333631346336353636 -61653535306364366230326165663836396262646537303361383561666537616638666366313463 -31643334633331306266646230626262313935653864626662613130653235333862626536356464 -65356633363735383835386161373433333162346531666563373865666438626532353139353239 -33666136656138643738646438386162613731383430613531383863633537303837313634343961 -36383765646430623761633935326230396235663339666234636636303537363966323862666362 -33373336613835636332316262393731363034343731356433313130376364363837313238326461 -65646232306561376231306231373535616665633564613636616136396138323930613537336538 -66386661643832663766623564363030663232343830373065363437346131366430336536313737 -33353161303739376439653463316336393662356136366365383832643536663861643235626431 -65653831626139656539353730303964376464326365656435653530313337386132656231363765 -34616562343663613439633936653461353333326537653436663364363235613239663666663937 -39363235393262323834346362336533616539326436336232333634663030326363356630613930 -31613434306130616662376166656431353437386163353563636565393964346330353164343831 -32316634646232376138373833643032663464356363303164356365656533343531353439643161 -39336535323834303731356231336134633862353365346164656565323962653264316162643237 -30363765326337393137303563383139353964313035626262333532356661313635326532356537 -33346364636464376464396666323539323134666433363362636364396631396366623536643838 -62386263643632663235323062303435643461396334356339616135306638366564613763353863 -66323966383161383338313933633264666663333062316236326332336365396464346335353531 -35316233663035363163383362333965303263356535383764616332366162656138616130326639 -34336461356631306433306264613636663466386332336663323265343866313536346366303130 -64313038336538613236656363393663663734326338633830383638346138633531616639396632 -31376366346638356532633530633039663531336438356162326266663062623566303338343835 -35636536613330366237336562653430343730646563366564643034326165316333346665663333 -62643737613135643433336165636136313938316432316635383933616432663462393832623337 -39343636393233316463633739313764313666313134326264653238633838666233643236346138 -65613235343230616432623363346337393332373839313733633433383361623431343531666662 -33656465386130343463383538376233336632356138343838386537396165373365666533613832 -36383731353531353235393733363538656238643032656661336538303733363661623432303632 -30613231623933396235363966633262383934343539633635393464396361663633663633616135 -39363034323730373136356434666534363166353237656137363638363864663639363032383662 -37633863313339646535616430323433323566303436356138633432376462626231636666313366 -35353961333764303461633933333133653531323435366531323663393831643135303532646531 -30613463336566633736313865306234303130323661633366666239316635643038386337656137 -62616332636531363132633632363136383434333933346664353534666634306232363937646161 -35366535313962386432303766353038323962383635656561373931323961386133306331386366 -64336633666339303365376461303563333238616138316533356237666662343065313035316533 -64633636653863383664346230663834316534343034313638613933316434313339396137623237 -35346364633731653333623937393562626335303562343263373565633264333332353436353130 -64306466633535373662373635616339383863626664343533646533343264323931396138363161 -66643436376237343135306665343063323737353661616533346133613332623565613039313033 -63323332636136333638376361373363316339636234396231646433383235336538623065666133 -36633363386664376661323465653963636665646135613336356665663238356161313264323062 -38323662333037323938333765646333343730666163326364613564653738626337366433316330 -35373663656137333631646630366230373131616665353030333838363238666533633363326565 -62633139386436623664303334383737666365323932366437376338626361356332366436383034 -39306333633636313132333262373937313732663566396331323930663531366230663437623238 -65333337333331613732383234616632303865313264633333346339303361663133636632353534 -36643032386437336632643136613135356638616531343233323230623864373234343532306261 -33393234326239666637656633383932646664336465663030653736306663333463336334343334 -30393134363239333762343338336466643064383037306635363362656135656131353864383432 -63383564623065303862623531383133346664623434313830343161393338653230633365336163 -62666435353935383837313466396339646465326162383732336230313634636439633666626136 -33373965316339653566383963626630376337383336326438323965393935653437353331316135 -62306664376134386331353332373963626161663935333161646230643037323064353564396437 -33306663393965356165333366633964653433633363356632616466613265303766313332376565 -31373532323532653264333764643231346363616137633336663532636464616165653763396461 -32376336366232666561316462373534663831613866303039636465323838393463326633363263 -32336163393665333764346330323965363465303339343164383038326533313834636165623166 -33363437316666316465346431373538643335323766376333396661396333393664336431643532 -31303132613430613265333934313062316335313131316164616437366163663233333261356334 -62396163313862373331353261353238626337326563373437333631316135383936636334666265 -66376332383537316534313264623431383038623531633464313230356364383364626534383133 -37386362343630323636333334363762616563343766303362303634383631333438383836656634 -36663535316536306463363130373761393864613932666235616461376565326361386438656265 -32396263626238303862616639643032343436366466393732386661623462393863626138313038 -65353236613037356265306262643061353731656566396564353433306665393634363161383831 -66626231303430346638333635326633306164363837613533636562666135616434616666623438 -35353933373933366364326365316362656235353462666438616263343934393135646365326337 -33656563373864346230386138626332653638303637323064623861306665363064663839613564 -31373433646332616538306333656339643165616434343134356430363163363431623066383730 -65333965393861353238323037656430356666353335323330663966613335346233303234663866 -39363432386365666134383062623165303532643133376636306165653931616530663361613231 -66646535386430393336343265613361356138333338313430313932333964306433666162353464 -32323439616363653836383465633365646639666434633233373638353261303934303934383838 -38636161303235373063646136626537626339346162356438363966363965376633373161363361 -34303865633435363831613365343232663939393434393136386435363539663235636462663965 -34383934323030323062393637333639626633656230343463313533613837616132323033383337 -37376233316535623261393735383732646462643739666237623238313365383835326265396439 -66376232366635316639623839343732353534376264396634396661363930336130313566366363 -30396132343938356264386463646666626462393534383362323762623062363566363632646462 -31346339646136613866626237336463336461643765383766336336373066336566636263303634 -38386639646132313633613961626239376462326662306361353334633337383230633337336432 -36306238653638636163616464613663333634333333653965363430326533383962623563306165 -65303564366134613966376266373330386534346630633030653065306136343130653263333930 -37383032333232346161346434666234383135393135343765313962666231333663633662396663 -35343137633565666164376262643832613536306136383961353337646463326332316663306565 -30313531386233636138363736353132663361623731623734616265353935636237393937393236 -64643963623032333563616562653265313734616563323565346362396563323562613031386664 -38346432313834353964383539363236626565623435363035363364353734393862636339616362 -30383136623064616435356239363830343436663136323130353462303830646664356538376334 -32356239633530393537316365353265626462663765313830306139393630393662643036396465 -37323863343337353265393262643632393930343336333735323739373963653333316365323834 -36346437613662613162323132353963623861373833376565383130386533366532666330313832 -32633537303138663665633130623536613365363736626433343132336239373365316561363936 -65353730376439626363343936363237313666356131633933306435383532306666363263343766 -39323566333666633131313233633163313830373664313334666264316533656564323530663534 -39326237333834636563336539343939333662386234653366666235383739373733356235616131 -61373634636166326634373633346666346331613861323737393063336436356665363635616133 -36363565336535356432363736323832306462613038333233393731663432636432616466326438 -64343665326562663562306233613431613230323338366231633231633666333033333439656463 -63396137323061343930306531666665643135616439636432303531336337336139363431396437 -30623136383235306636633338353262386630613264613231303562663634636335616665313139 -66316238616433303832383165663431313839393762623162353666353738323565323034636438 -64633766656537663461653336366239316232333433656334353136356435326438363165656636 -63653361356462386266653162623930393330333933393162306439333736316561306533376233 -31386135383764326634356433653362653962616434376662663865343937653739323264623730 -63333632303863343235353231626238623032396465363363346162616139386366623734633938 -35393436626335613765633830303463326566393435313161353362636466643862303731613230 -36356233393935346365653663336161623963303431613064616337376333646465326230346330 -63366439383865623037623036383661303930303035656663393861343938613662623335353962 -31343233323333356166333864343266383464663832363335363664386133656563616364646562 -64313038316638316663333730323335386165633763656165376336643339663231656638666363 -64393333346633633665663566616561303536336434373637646437393663393230373839626135 -61356566333361653138633235373064613933376465636465363835376336653435616366653764 -65383163393838336266356464656635366663306366623762376330393665383935323332326363 -61643830373737326437633039663064626663363263396562363137643963326335393763303730 -65333231333564663465356262313839323533316464633865333966393061356165376664396639 -65663530373337623138316237663336386330313766613330376462323761346362326233663439 -30346239333563643532643865386431353238373230326638633965663031303637653335386362 -38306637393231303937363364383736373663626332393931633733393838663739323238316661 -39303164613231306232656665343933636330623530353336363239306463356562623566323736 -33616435313638653735373161623938616432626639306635623338373164616464646362316266 -66383265303661613537326266353762636236613164303533333332616666346164336430663365 -36656338353965386439336231646632336363373930653566633663623033663062346131343461 -38666331333137353236373466613062653961633766353032386135613030613864633535346435 -31333330366163623035313664656236623632363138653635663864326135613738323262646465 -66666134666435353138643863376536383230636531656539643930623336616165636432396531 -65333165363663656438636364623035663832366462636430643236356435346132663234303665 -38343730336335666566626561386562663365396438343337633133386163616563373930643566 -33623933626134363131343137353635376239356663646634356637373235653838326539313134 -62643566346462323538383561393536376334663739386363306339313332656562313036626164 -61303261313434303162623135666363316538373535663231373835363462386561626430396430 -65393437343333633339343735626266376131656665353031333339613738316665303430346136 -37383433636266333431646663303666663930623161323339333631383066333466353839633734 -37383764373165326239346635343333353431326563383664336138336535623735616434323838 -37353366653134663338333231323837636331306364393232326439666636646639663463353332 -62383235613931336463666131323264653730336133633733346264346663316163336337616333 -63646138656436303537363339303062383237313165366536336336653861663661353764366431 -62353630373134353065346562346464326137646333666261653364306532343431353964646239 -39386163393631313036393639646537623035313763653636396361323330333236396537333066 -63643937396261363137346537313763653033326661316661333461623931393437663938363362 -36363438343431636265663363343130396136326461663431353066363838633334626566373639 -33623938326330613335353534643565643236663562376463363037353331393338643533326464 -63666639363166303862653765343134396635626434303338623862393566623739616537323639 -65666664613834333437363565313365376535326332653333646333643833626534336635353361 -61366337313834323130653065366366656366333762633432363033666131343566353234656437 -61626530353831303063313961336334386362363631653930326463393233333436333234303038 -35303062643361343063306430373834303034306631386534353264396230643364336135316632 -64306365323735366166303038643465356538326162376261353835323739653237316237333065 -66343133313338346237373832333237303237613433653738323239393462383238353362393363 -35623634353538663661623239636231636339626435623839396337623661393837366634356362 -38343331303163613663646361653064313331386362663134353637383239303965653232346230 -30636639666135636531376464373964663935666235646536303264626238333438373533393563 -31643233356439356530653463366136633136316564666630636337336635643465626464643138 -66306439643831383536363564643965626630313030373534626239616463303934303933333066 -62376266316533633662366262326432323363663837663638656535326234613337383763326365 -38333434386536353062653533326330383832626537633363633139373465663337323030616432 -65333637316630666335333632656239313664396130333639646638616133343061323934303765 -61386262376136306134633430383630653536376465303638653833343436666232333933343062 -65613436376238323632313466356164623432623162386438393666613565303739376434343262 -63633039396431376530326539316433333431393135663238623837343538663636636337326632 -37636361646533363162626533306266376133306236616662383033316538343435383837356336 -34613537303039326634303666636663356130613563356539643630663962396134323435656531 -61376630393164346535323565393165306538363431326534653661353466353835383233633266 -61613236623331313861646132636635376361623733396463643239336134353839373361326634 -31313036356331323737613366623032353336336166656563623761306164663166363632323766 -34316330663362313236333961323931393635343965653237326536363166316137313562383664 -66383735636237386139666466636432343234623137326633316330616362393434303535333262 -36313966386464636537623830333131363965643632653436656666616466643934636334653263 -39336236636538626366303538336333366461323362333136366439366638643531393539303432 -39303261346264613132363937653639303830303762383465623534306134376439313463646533 -33643332366532313433383433623763333263663064383539356566363161653266376461613362 -30313463626333636464653536616337376266383439313662633633643866643735323935373663 -33316539353331383764633439356163333264663835326565633038636434613264616438306633 -64636166376638396139333563656438623433333261316436643230613338623063613638633536 -37326136383166353336363136636366393034653138653264633632663863306466373163396462 -38343133373964663536626333396638386336363162353332613833656330653462353732356235 -36343766613239383234626131386237393462633365343266643065303462313063333733646532 -39333663303563343432323633373231663239646564386139316161623334343564663530323130 -33333039363831613632643766626232666565313566616464333637323931303037363532323732 -38623765346364656661393136366336386436623166383561396465313032336263316662643761 -31356363643732383963313538323466376361623032313463626539663538326461633064303432 -39646436643866386262646336363965616632353437616164383630646361396363343131343737 -63646466353563636162313362626664343234373763383666343565353434616166626565333134 -35636264323331306138373733646233303834376137643663393666306333623037373835333139 -35346135643334346161326165356633323030363530336236613339636539343066393961343633 -36636565613233643532343130653439356532393837363063376632633139323361643962353962 -36626230633335623334613264616334303263646236636661363837656431313533613838316466 -66653565613262373738343038653532303135326633303566386538336433346535303235323630 -38323830643732613836666235346432363731316261363463386663663531653737383065663563 -37373635623838363633373261343439333530376430373339653862633038613264343565653930 -35666464656664363135616131343037386666383430366163353266346464366230613632666137 -32356366623332393235373663323232303935616432633634653265613566386466663230336233 -64653962353535636164666562623364653163653939383562656261633237326265306631623035 -66323137323364313239333537643434303939343638653830353665643962653531353232386366 -38336266383130363933396639323339346432626463343463376263313336353930663239373961 -35306631303435663465386132663039383336303236336334323533633463366435636636623964 -32316235313439376563363534386439366537343761303666396535373134363038323739316265 -34663561656237396437613061336239643464656531303565663636356631316336313264613936 -63633965343634323563623463653763643835656335376235636132303966306434383030316238 -33663763323932353063386635393762616635383733633364346333623734653464373538373830 -34633261623336623038633135353032383738373365313638636361623530326237663034616537 -35336635323065386330323435646631306665313235363266653865666465386338386235636634 -64333432633838356338396632333764616432616639376235613065303462623238626336663831 -66386265383366333335663839613338376537393166643364633466363231333963626261633334 -32653834656362303235656365663230376635376139393939666462656131643536306336356163 -39666339353632353961343763356363353666633331666538643065633337363139663931373734 -62633461303734613566386239386166303333643835306634616639323861393462303236653338 -30323366343162303631373763613139616532616662373830616265323061333533663239346562 -30316162326566393232326132323535623666623137613362346164306161356332373065363132 -65303261343561323531363335623264616631386334346331646365386135303061383165303265 -38353262396665616133383731333765653135396362636239313363313432393636313433326466 -33656466353063653664303830653365393334306435373531343732666562646331366236373931 -35356334633131633263326630373065313234303336653330353630663630356564343936383661 -62623631316562646466346633653462373565646661613439303530356430623437623362653335 -33643132646235316336333764653864383064383166363964653165623763633937353134613461 -31626139363061396466656431373433386131313164366335303736313266633837316463346435 -34383330343061666536616537626632306636653565346663366162613436613232386265353035 -31383961623631313434313937303434316638616337336230393930303561666363663933396665 -30303232353462323761326332313535336465353638643961316631373133653734333830343838 -33666666356438313131326133333464653366373937333339346164333936623532386362306134 -34393033396465623030303934343237383839343161316232653734316633336565646465323933 -39663131393363633062353035363535336138323131653938323261383933393437616264323765 -66386438303863666133356136633362303565356533363165616162363064653132653465393063 -64303334633331316664653562633163386233373037376131313064383437333738393332656233 -62386362306662616162656139343732316630666238323738393466396133303234656139643331 -30663465363239623364306165383863663534663133373538396165353939323062653339366133 -61353463636566356464393937663034373734343835373261613736306538623765336466613137 -62616663323634306437376536613636326632303634326164646162343363353836623733383031 -33393439326139373565363362383763646364316435336532306466633161363132393662633532 -34313163326239623166306230383435383063396333363936633238363065376237343532316463 -30346233663133383965643764633262346638353238656431653237656639633366313530333031 -64666364333366383265386430626138646461623534383430386439316265333639643362613163 -65366132343561633361636163653537643730616330363434303465376464653437643734393261 -38353039333336313932346166366434663866363463656262346436313363616364623530666566 -33646537356233626232373161326635303061666263656631373136393836666235633462353063 -38373762393061643835663765333632386166643533313932303639363134386263353734633634 -65346231643935613838646161373831343839616432613635306137303830333862303933363265 -30643730653339306132643264643161623434373238376433316237633535393038623333383134 -34343835336631316335653332666165303831616461626234633365336364323237363630636366 -37383038616163613230333532653432326336663666666561383565356263323835386535313734 -64343931633232363862663364636661383733333838366634343665616238363337643362303836 -66303432366532366463643862396236633764616337363035623866313665643365396132396365 -34383537663835646331623061306436353631363535323937306434656233666133333762376234 -38333738353334346232633361323434346638366261376436633539633265303138373931306163 -62396335303435336261393166383161636334666264303738386234336139383434353030643562 -61336537373036626132383539623231356332633863303739643136303730633565356363613531 -35316662366438353539396465386361333231333233616434653537633939616666663934376439 -36373336323738313364313234356165343261316335353961396139303961306133626337353761 -65313166366664356262396332313739363333653265643537343734346232643234643066613264 -36383234396136366136333135356230633731326232343263326165636662303231633439663431 -66396331366333303066303537316438366339323431363431313735363935366333386263393365 -30356566666335333962346466323534353563343433313432633466643732376635333765336664 -30623335323930623730666461646638363337333337343538353031396263646361303964666330 -30363862666538343039336439383438353734376665653135336331646538666162663963653063 -64386161303231616436613430326232643530373336623766333437336135363161366533633037 -30643961616238653532376533646466363564616631643163346562336236653538303238363134 -63393964343739343230316237393663323930613164646337346164343332633062306462656337 -64646536383037643034623565616336633339323565616532636130633730626232626539666133 -32306564663934396630323366323661623362666462343165303839363238666161343963643665 -37343462373230643266623238656330346239366364616563343334373261643135333734643962 -35353062333832633731373862353936653236353238623739653662653136333037633862383465 -66346232663636313262636132353961626166626633336262366564666334366637623430643265 -64313462383636383231333166323261376333316462323766313962656264373563666137393337 -61333834653362663636353564376163373862666561393436363636633436643066353239353064 -30646138646666363335376233303263333835653938353738353636356338613462613834613262 -34343234623732343161303737326164393633623639386632393436333664393037336530636333 -64383061646661626633633965643139643138636439666435366231313762643731336133316233 -34633261656533376135663262353135393036373235343936356532306631376432386163303739 -66646238653166633862623133653833313836643534393363373336646263326636663062646131 -63636265613064663038636637386334666333316639663165373737646433373834323930343064 -66323236663637633065646136616130636130323936386462623030376136313133613938623831 -66373764336430626232336132663530373534333634633565643837663461636331633263303737 -62386338386332663439663236383634653431613434613136363065383631333264326139313134 -63353033643432356134386463393733623637633666326439306137613862626339383538393732 -64616162653065356465313633316633666163643764366665373464323635343631356134316264 -66306633656466326462383935663534653265356339333731613237643036336130356665663739 -34393037393632366237386565323965333134666561643732376135323039386461323466353439 -61363535346439393432363438643263343936396536303939626230393466373561346432333433 -32373663346231653662323339653630636466626231643234396238366166653964313065643431 -66633963366366336430363731636136333136316335383461643539313932326437376435383831 -62636231396261363039303861396130646331316335633139663364353138363337353465343131 -38663165363364663536346530303936323466663361323930363131373538323266363234373534 -38313862656336616535303736373831303239386364663466313035613739306566623862646565 -64666363666135616330623632313632663834626335653663303666643366393634643234616131 -31636165356238313834353338313732633530346466373030643735336636633066646632373635 -61323236663033366337643338646534656335323032316234373266653063313533323236656437 -34363566616561346263303033633038663831366264323631653634346535303434333738353131 -63333062396638353764353866333234316563616337333538623630623238646531346465356439 -61396665393765613238623866633736623664353031346332653965333836323233623232613931 -37666439373935303461346361346134373039336565333963303433663438303338626638643531 -39663537306230376134613665653766376234376638626137343334323865643832663865316633 -31373939333833343630663932613835653262323164393262346661383239366237383462623362 -63313030336435326462373133366332373534333266313131353637303139323230633065663364 -36646136363533353437643961623766616536636666333332363039383566366562353236333165 -66626165626233623132653931303262306432353565346536646635373265306437383961336532 -37363565633161616136306336633330323737333136373835376662376462343832616566623461 -63323231303765343462356563353137663630393463656465646237356431653365636638363137 -34623039313035316263313363363434636539396337633336313137626135353963353737363134 -38336637306235653965666663383566653136383362636666613438623335363638626462303666 -34366638626339343465353637343730346239636237353531633032313665626662393035393136 -61663363363336623336353738653365343134336236616334616538623336313637346232303732 -36373764663735323864626236396631613461623732303634623736613566613165613264313563 -38373161323066663736303530326637646365646235383664383664343630643436306333363431 -61383135616166356437613432333439626634356165383339366133396236613063653734636531 -39353536383362376437373730363462666166333436613865313635363135653261396333663465 -32636464633230393035623036353666376539326138643666653133363630373039353564363336 -65663065366636623534323561663236336336376237383863336233373836383561663833313665 -63343666383839383666393661323661613931653461653833386339336663363035363363306438 -39316234656466636139356461353034353864663739633537643938346631666536666535323331 -65316537306463373833626132356461633839373962393662383261356131326633656434373731 -30326566636563303865616265343036353963356361613336393665626131643338346463613532 -33633465373936626565656239656339373635333339636131363866306666363934326132633732 -35303133613336303430313135313166306232653664653132316361396235353233616166333939 -63656665333334626361653235306432343331386530343436346462316533613733663065343031 -61393639313933336135626663326432333832616366633933386666336561323230646364323637 -34666139636439653434393834306563663431356539663862633231376335306233643164393731 -36306132306239656462316131393363356363323030383238626231623363316634333865356131 -65653435643539343665363830643364636632666262366437373137366535373961343034363031 -62333130663833306661663063396134626437646363303761323564623066363134623137373263 -32396239346333316135633138346132653431663063653037663339633238656637643332373638 -37643239333633646363303732306564336139613763343432316338393732633164626536363838 -39306366396630363337613533353865343634663937356332333936373362386664366631393736 -35626362626164333161336335646136626665653862393931666234313765333635333531333239 -39333461373636626633626438343032323830373562626162393263643265373964366664396634 -37333130353535386138386262653461643863366664323133343865626561343063636362363538 -37656438383361613565653631653938306366613630383765623666313731643066383962626362 -34653031386561366639323061363936616330363038313165656162643737383338313464386531 -38393764623032363232666366633364386465643835373236616161366131303966666334353238 -37326664326463666431366163366637666436343464383966396134643235363431303433323235 -36666338383333363833303438653137343439613137343838396231323630356233616665393030 -30643966336130613637636536643136633030383162366331313231323732363730376562303438 -33653165383032653165386434373365646432333535383462393862313964383033396332626330 -32396163333832323030376335323331303933373434353432386336373531663432343031646338 -39346239613035666432323538663365336438643831396462303039386263626334323439316438 -33333861303932613462306661373934363562643339333937366132653462383437353464303933 -65353162366632306263616137303133396538363265613031383030393662363233623832653037 -63303563626463383762643466396363333035393437636466626661663831323431323061666264 -34396262636263333936353932643736313639663866376530633838316237346635363034316236 -66623639393133336333313530333431353934353838636132353132633639646134633566333135 -64323135353266633762313334663934343862386337393435626563646530326336393534396630 -34663034643131376130326664323036333461356131313232366634356430336466353365376362 -66323530633933623638626636313861643137386137326263623232383264616436336665386165 -64366632306434336463396662643461343636653630393266373930366264306566326130636632 -65666238656638316435313466613365393136323361396237383863656433316364636132353562 -38333765316535653139616339656362616139636632396166373763623565323237383466633763 -30623865373133373837366362303539656133306162666566646533303139383732383736343333 -62363666396266303165336439356230646133376431303435646130633336626462383835356238 -33343662333436383432653561613162366331626331356130636531623962326637363833663032 -64623338326135323530363834663738326264316261336333346336373161316661333164383437 -39653231343439376438623933613561626634363735376133396632313362303735626666326138 -64316539386337336533363337623239366331323161646361633433373962316266383534643135 -30373738336330343137663564626630636134663462646363636337396236363130333262396139 -61366263343462393236313433373533653535623863336232643563343532333331383366393364 -37353536346331326238363864313432613761373330363830633766323465656162376431353236 -65383633646430663866323961343236343234346161363339653136386230373534326562323461 -66346239306165653335366238623465626637373339633463316565363032663664333534623365 -37346663333264656665393666353734316434323634623539663663313539366663366663366134 -65383936343136386662363230656166663030373338326265393539373832353436323032393465 -62633437316437373039353462373961663464623733626261303031643933333839346635336165 -65613866653431326162373537396465653335363837663133376534383365613839666461633164 -30353235666465346234303761373638343639356436613436313937386434306465363939313162 -38613533663932663930333339366566333434323233663565653931616436336664336332643263 -62646338363865346265666361636434303839373063666532383036373133643834373038346239 -63376139643235386331653132303432636530376265346331623432613961353230646435366336 -61633063383466623037373832353037343238313933373337666535616434333764303634353731 -36313731396431663362323936646265376331303962333737653731383162396637333661323632 -62306165323934323333653337666563323339323562353266656334303831373161373831343432 -63643835643835656161633336653864373637356531363161353531653262643962303937366462 -63383665343464313334366436656364376438326334333034323263383839343639633265323932 -38346365313636326261643939646437343538363231323662326662396330653832376435613663 -35316639303831383663646239663934643337346637653633383730303239313233616263326637 -37623364663432303933646563336335656232373539326137393333366563333032323065626530 -35653532306332613162656237316531636534346565366635393732353538356563323430316435 -36306464623738613032396339393661643463666432356363653533643633646239386263316335 -37636631363136653463383834643636666235303261333466666431666461336535373063396263 -31323236323532363036353764626135663065613063323639313463383961376137376361343738 -37626137333232376362323336666662656438356230363966333638386566666637393438653136 -63376361653663333634646465376335326137356238636437386163383631343864666337323038 -35343563636335373633303338666438303739353631343039383134313163643130313631393639 -61613339626438346563613661323565666665643830656135316137623436616230336235333062 -31323533653530326132333032306433626633353166626664653761656332356333366339323162 -64373961653565313036306330653733343332666263633437326330626334653436326436616166 -62336364393031343661663566626666623762363130373733666165626339303366343637646335 -65643133356438333466633235633839633130663730303232346165353864333264653062353939 -33386433393133343062383632626538663936306135363362313331653736303536346362636663 -65633032623262356436363834343763626535383762646262393062353763653938356134376139 -61653437336437373332653736313161366166353164623464613065373634336536643131646532 -31393662323234303461323434663739666432356436666536313530623337643265396538626234 -64646363643834373062613838316230626530663536366631323837333265303532613764366639 -61366562656234616662376166326130636333643830343032363933663131623239626637386364 -38656338303336363263303561633766363866616365363239313732613330376136336338663066 -37303534383262393866613266626563303961393634653737643962656265663266316439316532 -62646433623231613137363832363331663462323934326131313264383635323335313138623238 -30376533326265633064376330393766353937343537643930653534343438633938346636383264 -62623038316535356338343835646263306335333730373632386235383135663534326330303737 -32366537376232663436326631353132366632616363393732633866666463666330363734616438 -62353866663033383134323033636631333731643030373863373866336139313935323466366663 -36333562396131383738313135393637626164373734343363393264303936306238346538616230 -36363936376130623663396630383533663965346334633065666266613463363932623239303065 -30353936333932336330393965653239633466666638653331326664373632396239373939613763 -61343035336137303032316163353831393937363965636332386466383732303430366232386330 -35393161343035303865303565653064323232363734663837663237326531336661663466333437 -65363533323665336632633530306262303536323030626563623931346133666462336533316433 -38643861643764306138306136313331396430653732323636333534356163323036623661396161 -62323465653764306532666333306465323261643162643262643931373837333462363964656530 -36353431656336366361626433353434373964303835343133393432613432663464343536666165 -66323362313431303165626439373361376436363565326437663236633063323531363930326635 -38303239363936366534333062633961626261663861393163653566343837663265393363633730 -39373336373737643563616539363635346465343466373932383164613338313439306562643936 -65346261346635373532306562353061363032306166626138653837316261393463313966376633 -35306132323263666366643831343134353934323764363132353765373639653265663336376339 -62356664303534663133316531383465623032316662366632363935653838303835303731663761 -65626234343262326537383235653564313161653764323462333939623436303130646466376136 -36393061313632366565633836333062326363343966393264306336346461363661663030613636 -65636638363930316237623737313465386462323839383534373562303135366463643663383233 -36303937363336643261666166326130356130663865323034636434323965383563336230323738 -64363235393539663063326438393436396263333537383632633133386137316165373761353835 -66383637646563383938346236656464366637336633303139316239353262663965623236643264 -65656436643965376538643732323862623935303466623838336633336365613536313832383666 -63306438303531303534333765396236333835383962383138636664333031653764643637353665 -36363236303136346136353838356431383736646639316131396561613964373034356537616430 -36363732336436313939356435383838373965613462393662613839326239643336626463323534 -37373831643939353336643330356164316535303265316365336539323961623137313762363535 -33353335343230353239386138633462363162613864323661303562613237306239623737636462 -33393532333838626164623064613065633234646263343831393161373332383334383265343637 -38313563316262653136633737623561633337376333313930303034656462356665643435336138 -35613638363865343137373832356336323330373332303863346662306362343762613938386532 -32386431663164373263323238376236386262353433653165663465303937616332313731343438 -32306436633437633463626162626565353336333163643536366138323637623265323538336338 -66353162316535393838356435636361633764313261363531343263373431313536353530356365 -37393634653535323562616462306165616266326537633166643761356432633135626638653432 -30366239303233656634353331313965653435346135646232663266306532333039393137333662 -32613231306138396664306135346535633434626136393163343639666337373164616438306566 -30373930343362326438333333613136363434333533636262306438646338326236616139663132 -31376336633137373130346332306434386131396335363433383631383333353862386362663239 -30343336356637646632653431353062323331303434383936613032653231663165626630353062 -63346235313864376462306238663439313031666561306232353933373139363537383532663564 -30313461633431353861656333653832666536616235306262323963643962343936343766313931 -35326431303466326265666333303363353265323061613637323164373566306637386432353731 -65386536356465303034643830396333313038633230336231316236373632336163613736656536 -30633063396263383666636364383263393531306432353762323938613765346234326166663539 -39616233633834636432636333613362393331643163613036636433653464316530663330306564 -62643032356133396366343263343463656536326565326134383735626662303537623630383765 -38643537336236383430313764636564616438383739353438373131633164643633366162316331 -38396166396637396234636566303433386663636332333663343638653139383135353938333266 -63363736633463646134653238633762326564393334623137326362396137313531366231373633 -38653838326564626633373639346364366237363432613630363236373534623530373239303763 -36323336326664653336663661306362386530353364616261383266626230333861343936316632 -39333563363938346136643965346464383261656636646539306163383761313163663665356364 -63653434636539616532303735333535366331386562303534613231356164333761393566366463 -36346566613261616637643161613730343234333434333533393830623030396162383361656337 -65366338636566316361303963383735373633363639363563383135356563383566323039623335 -63363331616466383462393939323131626533363961663938656266363737303339643935343630 -62386138626533353539336638356531313835633864363135626265633164303731313031353261 -61343763623637343066336532373561323963386361623733306264643162303837336232626662 -35663864633864646634323938613837363565653931616361353733626462346233643537393737 -63656434633133386631626537623132346162636435623763623064353164613462313538653066 -31626236393936643864616162373364653735663330323465333163333665663930383435326230 -38393532656666613736616537373339623430333639373437353137386531346139383765336666 -64396337633434653435366131353137313062333264346635303139663332346162616663623138 -36366232633934646530663439346661663136366261373762396561323935626437646533313036 -61353538623531623138303361366538656633386332636664366265393134393430383932633064 -63303436643831353635343637626663316463653536373463326438656665333461656163323236 -34353133353935643464623232613163663735343737666661616538636330346534643435646634 -38306661656439623232616538313930643263633466653233626334383333366136363835626332 -62373232623033356432626437323766363836633230653661393465636466336265666637633533 -64346565613765343464396530376265333332626336613133663363643533333063646638323763 -39626261666461613237643064333738636361316234316239346236336335303661636162303963 -62626233613463636132373430303430613165386365373231336132646433323033303164346532 -32383861346131356662643338393031663763326635616134303330363066656635646335653335 -38346366633562346232353537363735613533336636343936613437656265636339396162356138 -61666635666432366262376561663962373165386537373463313633363238643539623763336434 -61316566393437326431343636323763643930653965336535316263643434313561353961393031 -34343364323863326632383839323133613165333462666264633439633661353866353165303664 -38336264363639636566363032303237646662613231343337323735643131356435316636376263 -35613033626363316364336564626438653130636531326139656131613936323063333130313234 -31323066376266373037376166393865333137383630643233646136393539633966306435396362 -36386636336532646435363765313565663533643161303233323637643766633134396465386137 -30376264363362616564336664616431666563663862313266383164383337306534666131333035 -31303631663536363339323534363064343764633331386232323433376261623937303231303930 -32373932313432613533646362376666613463333130613138633430303436626262303163643139 -39353962333035353061633533363837623732336333313761353637613738363037393264363230 -37633534326530323664313963396538653731306630316637393663623830616437323039313362 -61333964316239393833343661636439616534353562346261303839356665643962616633303839 -33666231636432306565363331376466396131653130623931343933663763666165663666643131 -36633630643634316261666139653238613262313435323030646531626533333839613732326531 -66393763653534623939353538346664633732333934336532646636386631633965333233336361 -33346336383332303863646666306564336366636130653166363039326531316166653230383839 -34633664636464306135613635623233373336646636346230313465616331643435363237613161 -36636537333938653731373835383738346466623435633566356234626261383631323461303734 -32383831326532303263333039663734336137323962343430383464376138636239663531633936 -36313863653334626466623561353435336231663636373333383933383832393037306533636136 -37393439333630663535363762323639616334363365363938316466376466353230363833373131 -38656531633033316561373435336631336162393463383964353233393932633363653563653936 -38656166646639366336366636613036663264336539666538636662326365353935343337323261 -37663031313336386439656262343163353132303638353735326132356638383435373262386636 -32363634356139653265643766616663643261373432393939636335383837396635646366343362 -33353563353437633433323866363239353934613238323965313835346639303630643435616565 -37663562623765666663333931353636313230623739376535656234303839656163383231396232 -64303832353464663136633730383732613430343336663537656232613139623262656663626432 -62336532346637643764343834646661663339396339666334383939383233306231323030663363 -35613336623036333636373866373738653036366237343538383561303533363438383135633963 -63353863343663336462643732383265396432303031663961633164356636336665616263303532 -32326264376665636231613661643732623837326262303764396635656339613836353636623765 -66323233383939316337366537323336343462316364356139343935396165393238393334626532 -32356631333665326237386330343262633764373736386536383163313231373139636430653033 -33646634633231613662306336663566306261623336666362326166623239303937346630363932 -34393330336333383261316666633764306664663534653433303830336463376539343466393633 -31303361353836393236306561343730666130363161373431636232303439383433376633363161 -61373038353835333835623331356433633532313436396130376435333666303933303766313130 -38613136663063336430623863633733653963373764613035323933626631383433653930326530 -38343863633663636631353434313261363866666636353864323161323534373761373837613534 -64633133386131373638356135643966346661323662636538343361373333383531633534333463 -36656337393833346432633863623431303239383564323536326461363232363965303333303837 -66613430386465313133616137313261323463653539303938633463386262353037616665653437 -36666130326261353531343465363363613062633233613536346438363235353732383931356639 -65343864623239623664663039396565316437353365663239363233366362313063663934303938 -36666430393765396337383835626335383262613835396231333736333230616165303836363266 -36616562623735393762303166383237313937396234363266346361303966336635383563303930 -39313261336532643835393136363230626134323535643531643731363863633334646338626134 -34383565383538373639393664383339313136633438386538626234343732383932636435633231 -38313534303636316434653938623134656661303036303862663964383033373865303762613632 -38356362353036333138316634633539303936643535323937353165343230306338366632383861 -62306335386232623937333261643731643539316633616237393330303765376661336231313464 -31306364333065316561656462653864303230303633396361623964663733646230396338393239 -32626534313738363737323763323637633031353337343738656532346135666435313835646661 -31316364393733613139636335376165333665643862383363666464323961643864363839303531 -62303536633163346235633735396366356266356362653132343937356261383961646164326561 -65383036616163323730313366383137366535643636353436323162363162343863356530653061 -30663362623432386565353332383633373161313362646333633932313439346263616638356132 -35616266613764633136646432333964333433303233333732633133663138343265313761303566 -64633332393536343739623235316538646337383364663762373132626466393561396431336464 -39353837356433343731333964623934316134336638346539643066386166346566613166303331 -61656535343365346464393332333261373066393466303861373261653462303634346165386363 -34633831353937323466373363666166343364626136353061356162306132643834343635633663 -35346433373132363330643765663632643237316264333335616263656539626666663332623730 -35316263313866626563393336303938383331323538366134666339643564616165616231646533 -30303035333630373435393138346561666131343863343335303833663139373235343066623434 -39616663376665383039623264356165333361303833306136323530653966353635636637303265 -33646237653339396437326638383863386233316264383831313032653561393864666531336532 -38346636633263323138373338313065343166313363333730663832313333303331613035346639 -38326431336633383663326362313630613635356661643735663332613937643665663131346531 -66323230613834343562643866366130396636663566353637306663333832386366396434313134 -38323932663364623063363831636337613131656161356239396161376235623832383563306165 -64336435363737383132633262313530376434303766356231306239323661303634373832636430 -32333738656266623231643234366436333161363734643038323037623633383736373431343965 -62656135353164396261366237383462383063613866626132666239363331643034663936343263 -61666166633164396564663936346162643665633035376432363532663462613265623734646536 -33353833393634646332303438376231613734653765366537383730653936326232373139383966 -30373662313565663165333132363735346131666166663462633366386163623430393363323637 -62666633623531636439326331306537323635653431326630666466656564313164616636666235 -36666437666332356266373264636532303236303265396637613861353939306437396239326330 -62393833643130356631323833373165303763396664343131363438653634393764643831623036 -31353638646164643737623634393533616437396538646232643165346435336465386166316331 -38383266633161393361626564376138396235323434363230353265303266343039393138626333 -62643836376132316466353361663031643834306631326630623066363366303964356666356663 -31356465633935626334396466373364383865343032353639363138316266653532343266336261 -61666338376366666135613732666531313862646664333135396165306135323264366665306138 -30653036366433623031396431653761633839343962623766623462653664643264623630393130 -62396666323531326537653438343637663965643862323334323130346632646634633032616334 -31636135626631326436363732386138323637613132383138623232336635393132353930326536 -64626538396437356130323836653261653065346136633938313965303963373663313239316663 -65346537363639653865656630613862626330326662376636373335346530663530353330373738 -31396661633237666265393432386431326337346162396365383562353237306335646232613037 -38376138646337623233343161376465653961316238313236383032356230363134383230613832 -62303963356261383539383533303038653636343234666434613530646536373064393661636332 -32373464336563323432623061643562303432306634346566356165366135656638363133386166 -36343933323232633834383034326461366136313334373630666462386463613262363636356462 -32306337303939363939353764353538383965643664643232643062303539643637646135343036 -38363361666162646337393632636134633035386163313531313533643761663338336532323266 -31316432613464323534653662653064646266373761616631653932383364376139623264646162 -31336163326565363561366131386263623238346232313933333966656664353934373138346136 -39623038636530363061376665366230366266623535656634663863396539636531623566323036 -37343138366431343733366263306133303666643465653135666332336436366563393636333662 -37333833666139643035353034636465363135663533383634373061343039343238393737303865 -61316363656132323734653966333131393566313037666662393738656637646665393332393439 -38343437346130396135303435646563356431653065306431353430316639333263356437346661 -63656236303064316230303936363661376436663037336261323939346632613530333962643434 -63313762646433613932383835363465626665313361616337666164333065656133653132386161 -61323633323233363761316136306530363730653330303165623737393639633664633236366332 -33333365633564663433643239353130613634393463383331373138306334613138623735393633 -38303238343836396664663263636331383731383936323134326338656438366234373433616565 -31363133666465363432366634613832383133373566633239613965326264653739626665646430 -64333564656461393162396265666135393031626632336363623766306461316533346664303832 -35643130616563333234643931386135393538643035303630373535656266383562373866646564 -61633939313630323639333062356434663035303266333062326232333230646664613362353064 -65333535623363376330313263653132313338363339333433313966386564343865653662383535 -62616638313564326439373835326531626364633839386135376663653531333364386130316635 -33303033373964333430626535613266633565623965326631663165373636663932343765376565 -66383139333533323261653464323665316463666533653066363138636663313631663166363462 -61666635363535363033373463383730336161616236313936346338356138356461623339623266 -37633665386433623134323163323538316565313566666239316433626562346332613065313837 -33336161653263636334653937326363306566383030666132623833386134656266623334643439 -33393231663432393764633832653666353038333064363736383937323538353031313837383162 -35303438643439633164623434323738633666343131613066653333366630306434346537356539 -64303338363539633737363264653236613363373166343764343431626639663462376464333930 -35383463613230356334326465396239653263396134396663393564653461663232623464633738 -63373435623038643137363139646661363831333437646634306166363036623335343031303964 -39386362376632313331313837313863623962663631313262323662623264623333613432346364 -31643939663530363836363634396638633330663963356638346430636333303761393830393438 -66636132323631306633666633303166333962663433336230316661633134346231633231623030 -62643162363030313462373135373738343039383565313064376534666139653563373434363634 -38313265646238633061653439633834373636373266336562666431623162663936656234643836 -36646434303031356434663732383464393332633331636466366361663264646262366537633836 -62646135383430333762393034303839613966633565623137386231616330316265363033343565 -62316531643336306461396332373932393139366530336235383036363933613932333336643333 -62663666326131303063663431336433333063326563386164343935643064653038626136336435 -35383264616566626230653935363064643066373633373065386638653539633162336537633436 -33386361613461313364323939653631616236633634316563373537666232366233373461633032 -66333533313766313339663265343633313334376537643031343739663462616163346461656535 -35633631376536366631323433363736326638316432646232656534653638666135373835343662 -35366664636663633865313764623866373565316164313639353166326635323837373264383833 -39326462383134666437326338376636393831366533616433343231333337633065393065303234 -32383836303862626666613531643032343238636663616461626436366331373638353238313133 -38636464343837646264363166346563366462306331393035316636393164343234396632623939 -34313137646431396564316563656632346330656163393561366533306132326234623162663435 -35383266313361353637643265313438333232363330326365383835376331626238323133306164 -62303732343465336132383936613138656263613830323033663333316263386634393735386633 -31636535653866366362346462356236303835323030663130616264646332363138366264346566 -31343135623666623535643435326330626333306164363236353238396233323863666131343064 -31326562346236363137303561663838373565646236356337343964633563336464663761623237 -30643763613362383366626235313462303839373063393731396439336432376465623562656437 -64623139376535396439396162623637646339633962616433623365646362613935376531336638 -38373961363834613662663465646462626336663836633233386161316535316438643833626132 -65396564326134653165343636313165373937306433386538333164313734333061363430626430 -37343262656238366561313237353765643963643463326662633765646162356163396266333636 -38313236616634313136303231373765623263653161653330616438316164343066333938613166 -39386137333762613764336665366332306437623336336334313366633531363863303964656538 -38653031613064313532363961356561383530363434396664643533346264303333323463343266 -65626537663363653630656662656631363836326333346232376362356463646233363031383037 -31633334383933393562383531323632336462346633636335623830663463343739666362343330 -31633938386266646235396233376461336638663132383763646664643431373833313361366333 -36303232666131313264643039656464653166633966656434613036386230663936323839383633 -36353363326564613065323438663833323962323532613336656237316237663030633966333338 -66626635393934336639323762623264323633363964356635626131316463313936303533626631 -31643763366634303633313634613062636361306364623830336438316563326437663863396664 -33663933326438323632333630303265633838616630366139346632656338653337373334353832 -63383038643436306135326564653132646262366362643739346533356361316336636666306136 -30343932666338666334306261346132663164613937396131656131643537333038653336636235 -35343438623565353264346433663239616430656232396432386564633334386163636263666232 -31356439393862653263663437306262333161613362356561626665653230313066346365663763 -61306662636131326161346130363536313066353231653239613365616366313034326333663665 -33373762386362386366613339373537383036333333643738643238623466383632366132303366 -36326232623939373433366565313739323463306534373335636530326466393135623039666462 -39646632643634656466346330346361353038663739383733373962353337353365306235623266 -65363161336539376532383164333739336234396632653730353733323533646334623235356366 -33346531393362353037313065303534386263383431616239373561343361313530623661343162 -63353237613731346461623631323763373061383637383161643534346237653965653262346263 -31333162633266656364653165663966303564383166363962626635366364353533616535303133 -36643739353036323862653536376332326662396639666563313833636339303161373035383330 -38366331326139643135356563333661363837306532366530396633346533666561393938343934 -64663836626130383433623539386261333738346537643362663062303662313332303633363139 -65653036383232373735373639386261663362376135633637653939623039303334396161613664 -63333531383762653266393332363437656665303765346266643935393431666366643262653331 -63626661323636663132363662356233613861616231643065656137653764353564383535346563 -38633937313135633030656135386636633735666361396435623139643830386464663135363336 -35333863323164363263363138323634303039313935656337623134363735386437643336613138 -61303161363631646431386131366536613236663065356266363865663564656434343033343033 -32643437333762373734383062386465356465316465663539373738383635396463636631386665 -30396431303838306335353936303836616430653364336366356533353339646362626630306438 -61346530616261636235373161626366373237343339623433613636643534623634333538346530 -62663762316234383862663531623139636263303539363437356532346565336263323631333832 -37623261366138343539393934376365313031643235373235356137656137633833333831326537 -66303235386161373234613064353638646561316364316436613639333136326139616338336330 -35343732326233373633346436643235646662353939663261336233653539666534316237626137 -33346363623739623061666261326661336262646239633665396137666232303735343331323766 -62316661623032643865323033633438646134356238623837313061636130316162636462386136 -61396563383862333134346462623732656137613238656465643438383735373834343661316132 -30356335383266613932303034353261623963376262316334626637323734613436663462663131 -36616533633035326630383664323034306363663466623063623231366165626463653133366638 -37333762376662363736623933313565633837383835353038323861316534646566383538363337 -38616662303439306161393366346330333835653965353733333431613936663637383734616635 -62373461356138646333313335643034333963663033653730666430623661636162386464613566 -34373261663739306261343563626134613739343236626136306136663032643966323038633035 -38613139376133623335643135343536373732303263653730666665656165366362656334616634 -33346230626266306238333430323965623132616330396436316565303637333366363337343734 -32336365373562303866336166633739373061316566316438326333656332663365356366323031 -37636237356334613266623136663437366561393664363065636335303263303637666631333263 -37383233373831613438646662616464343232623639623439623862303831643538346336623035 -64313637363138653438353632656463343066323164373763626633396639373965336132633631 -35643033366437323534343861666462663439376131633135386261393339623665323034383663 -66333436626663376563363730323736623433306430613161643934633134366365346531323933 -64383130313333333666336333356538376430616232326232393034363534303165613634396133 -30666162373562616237656235366531663235353536643435363839326136363064303231666335 -62346131363664363964313834376361303733373330653262646630336161343539646231626233 -65623639333363313832393165343334373835303263656636613433633062383237653765366662 -30356532663162353666383366303433363465323764616466656437393434393830616438343563 -30306333616231633435363833396439376364326337376336393338316433373236383830366139 -66656664666264646165613866643332623831343464653562616536613934666532633430653233 -30303864373834636439363934636462343266653161346132373730636562366435636235376566 -65346339373238356337353036396430653330346139653561643439343332643766336161363939 -34393432616232653538613365306462653665636431303338346565346165366562376431343662 -37393635303833323039346161336163366332623234666438623739393365393063393138313333 -32646635643261643937373736316430663366663435653865383563373365333666653464613762 -38313437313035646361313262363266396531393966646235666461316436343661646362663264 -33383366313431356534623461393837323432336633343665633735333162363038336631326464 -39623231633162346662376636363732336665653364326162316631623361663663346434633139 -37663536383466333264313232343965313862323764623739393262373062353738656637663230 -35316563366531636239333361326330383565306364343966663165323161316334653765366461 -61656337363731383934663061333561643961356562336230346132363765313064666530653938 -63396137636433396136613731393232333862373665623864353863643130386131326437346333 -32333161323136306362643438346265313864346437613761643863313361316361363363393865 -62356330303537363232353739643738306333353061366164366532363561386234396464363763 -65643433666335363638356663633164333666386439633339623634306362663564623133303037 -64323061366230653234663036323965393032656265623038623335656264666165363064353739 -38323132336234363235643430323261383463373238323430386465333930363066373338626338 -34383533623466613636326230643062623761653466336333396563356163363332326665623430 -35363832373631343465373932663835643535303838643665666139336634633166313736663739 -64343035353964306233373037373461366563623165613866323636336639323633313839383936 -33313962336435316436656236333062333230336131366135306136643335616361316337386531 -39393435383635396538373162643831316539393664653664356462343139356565353339643230 -64353539366662613865393464663764646530323262366464313534623665653930623866653961 -34616539363061623539313337356137656235643865336366663632356662363633353234643364 -65323663626465623536646665363437366431383962343134646237656130343637353666623738 -37636365393564656361366537373138336264386131313864663636356136353233613333663361 -63333863356437633834623732613065373461303435623831643032643338653635323031666664 -36653761396639336462636138383865323230336333376437326165613366326331343963643464 -39333939353961353133393461646330346235303231353033393465663863616235303532316466 -37636366346263323438353132653238343430633565353633336434663032613666353430373862 -30366330396338316364396339636434386632623564643830643033656262386435393035346465 -32613731326137303635646130353764633637623666653937633239393663333736396139613138 -33643233306535323233353633356131306361373333663236613735343634346364373133663336 -35316137643230663638313861323332393138663333623436653035616432323461383132626433 -30376564386161386137373062386332333963613636653435396661326437393035306362613966 -30333066336230626630626435313464643037316564373265346233303164623535383965356539 -64363165353863343766663433326666653134303038313137613436643163343234383562643330 -31663135316130306334303532623833333766646539343661656164353065306430623766623361 -65636433623934323461613532616339326166636337383735646633373861626538326534613561 -31366562333930303061626133373232373333373337373162323563353561393537373365316235 -65323561373435343135383433633333653664396664666463363232613738303964636237646637 -30633761633039303431333936363634373631643138663165336631363533316462613331323238 -38356662613461323338613436346635636264363862313064306639626461343334313630626530 -63636363363037356539653364393362626539333336623831363438616438313862353665386364 -31353333333263643934353265623835323565616564313138383265633939663063326637363331 -31626565356561323836316463656634633461653930656236393164333361653165613064323739 -65663939346533356534393932363234626366306363666466376131396263356664623331363762 -62623238656462616661636265393962666565393237646634303937613536336430623139366431 -32326364366163343062626536646138393338313962333234636161356538366265396234366431 -34653964393734666138396635653030333834643862613133313665326230353635356337353564 -35626364616338306262316236336138643732303163646231353731393865393265376238333663 -66336235363263356631353135666361356133633134613133633536616561643864626135636636 -34663530333162633066646636366333313032343261333665373534343965613135396366353539 -37633361663266333937323938353735623162313731313330356331343335396230653431333230 -31376534613830303631356265326466623065663831393531626335666432333266613434373837 -61646561343765376530643634663165323363353332616565653434326231636431613763623930 -30323438386537623930646332356133646364353238333031316665653436643138316165316530 -32636134653834623333663434613933646639343537353038303039303733383038396633316333 -65663336396231663336616336363465653536363937343161623164346362373564313533393037 -38313661303039373665333063663061633962613763323635316638363635633437313861343564 -31613336626236653934386639373365363434306131643464306161626239323238653437343864 -30333464323738333666643664313264323136666237383366613064336161393836643537303234 -62633737636636613663313161613734313733373738346563643634353936373833343935316336 -37633233616232356430313137613662363236363134383961633264316139353637316331346561 -31326130363332336334396633353135646338393438616364613534616237663566653564313962 -35393938613262346263353939383265653563626131626237613765396362353264613539303462 -65363966313263616566393563383935343434353133663862643535383663346335343764343166 -36306430663565626331393933363039363364646634313335336238636364323761646138353434 -30363063373862643062393862623139663361346634633866373134363762353734373865396133 -31303135643262343730633866353438346332356535396534653938656235613435663864616666 -35346263346633373836313663636331653462393437376161303862376164366634376362316466 -66303533666162376330306539343230343631333366333237613839623333313132633537346538 -63363331353563343538313933313363333165653631643139346139346466313439336238383564 -34356339373261376136643139363434663964343434666264336337333436393265333262306534 -39363465316638366530323533323466613064376262663633383136393035313264623534396464 -62366438383462656361333237373939623661633165653530363763396361613336373832353961 -33383433643637353865613464626233306339323666353162323665643337333762356536333466 -35346331373938636531313237616339386461636336366565383532623631316164346337326562 -62333662373634313563386539646665316431613763393736393933356161323761663265353465 -38333864393261343832656438623432613162313239613639626163383461633333626233363033 -62343637383334393239363037303134633732313834366430333632643137343736376435643834 -39366337636136326331633262383339363336623331326561623434633565616538653930663266 -33346433613264393365316531376235646235633163353432636665663034303863386431326564 -30653961633861316535313536326336353565626537653364316239393763306236383337663836 -33633061356238653738613538333332303535323766633633313135373335613237346664353231 -37623035313530343533316334633830663166383931653664666534666639356336313764396361 -39653632376461363363396137313063633033633736663931356665373733376131643364653738 -30653864653263383735396130303935363135393132626530636461666139626635386239353937 -33336635643232373963393936646637646130643361383632343536373334336461376361366561 -64326132616561303663656436633535366339353531393331343730363034313230363964323066 -35353666653038386465373535313830633133356231333565323335393534623261343033623665 -34646432653934376432363634306266613334366631613931643435613933396536663462666333 -32366165313834333333303838643832393732646466633163316531653731663465366164363161 -30356435656163643339333133346134643838306636393664303663373532303535353964336431 -34343734623039646664353032613063656464353938386639393037343537653365653332373564 -61666232666438303762666430366431626363356331363730393536646461643161656564303139 -66613863656139366537623861343331356533336266393835393337663762356239396663386266 -35343363666238663337633233643635363237303137646362626430656666363031363431353130 -37313464663763623666323861623637363361656261656630666633353238383461303638363464 -39336635356265356461626565396434363965643435316139616131393937303634633834333136 -64316538386132623939633166376436623666343966363833613338663136653465323733333232 -66653539333461376366316562383832346264643637313138383532393035663732316630653533 -38646263383662663664646563386464366163616637306334343634343335383764633039633536 -33393736646530366663383161376361353362386536633136383565323336396262363736313965 -63353166313064303837613036393364346634663962633833663764663866646361626339633030 -33636262393161386139366234323930383736616134646538316431633737663335643935646630 -61613333383433646365393534326232366163313934616337356663333130653736613337653964 -38303362616637353639633732326562666565333739343833623531333862316333336164303862 -61363131366435376466323631643137303166616466326666326335363165346535663333363836 -37376530363536663365383430663632626139623837313063396533383532346534386433373736 -35316531396537663765373838623639643862616138363866303831633131623962323663306137 -37363064623830616566663036393063636430306364343732643063316665383431336237333634 -64333361336263656461616230333965393666363535393335343838303064633962363963613930 -37666366333032633836363934356335643663623837396363383934333665336166653132353834 -39333833323030626463336465303165636339666362633564373031326262306332626633626533 -63653437376338346238383731656638343538306262663836653037323063313838663266613431 -63366630313463613765393334356131613932386535353637386633323133636635303263653737 -62393335396531343166386266336436626338313130346438313764636461663439303335613635 -38383366366333653662343734623566633161383338643136333430353066303539366537656163 -62373631303130633234636165393237343733303964613133356263383534346566333439616434 -39363662303034666363353937666431613531373365326134386662343037656638333830383633 -34363265303464383865623234613762376436653363363031653831336339346330386465626633 -61363066666335303735303638313563663335353764633336323039623634303165613863666437 -39373734386434666435633131656435323661303733626263376531616562316639636136366131 -66613336666165663537376461623933666639323837643030393937336632666633353066643161 -65343132376334303734323931353634376139343531346538646332643030613465663632653633 -63373066313631373638303031386565653361303030613231346638636462366137363366663839 -36323862643939306532313635353565373638313731366134313162633365303335613233343239 -61346531346337326435633666636636643639303932313239633537383637386563616639626234 -30626639323137643638643861643566646534383062336539393866363162663830373330636432 -64633834636465373931653261383736623237363932656264363335656361363739653531353838 -61386131633630373862323239316535656531346137623865313738663762616434323233633962 -31633833653331313333336362306564646465616161313535626236666462663132376663643530 -31393763616238326433333763666634303063643231616131336662613338653262386132303164 -61653061336135316533376662633232343364316133646366336435656265373363353462366630 -39633336616661343663623131646234393939366365326232323666643939623864383365323234 -34613436633765336464353631326238643736393566626162316235303737653661343463306432 -66663262633162663161643832393738323634616465623965306635303531613964643465633136 -31396236633233396661613634666536643265326661653936636538376164626530633035313831 -32643839383364653665313665306633313665343737313862393235313336333433336565303538 -33643163653833623631613239636634373038653634646433383837373839333733643466353930 -32396666393663313861636537393938623365636237363537663838666133653763623734343031 -38613031306232363933333436333931333166666531383335303436646435636562313330353438 -34623238656263336633396534316339623632653634643632653637393731356439326564343264 -34303062323364333435383038303536656365366230373731333839643261383938393239396362 -35376636393566366433646530366635343531636130383636383339376566616436623766373230 -64393532323930313564653535626161666363623532363036653064623134613433646265303836 -39613134633865323838313139303564376636656261373234326363366636323265356533623766 -63316635333433613336396636633234333234303531383830636335653266623561373733383635 -39313061346661316366313863393233613965383233306331336136363837666661613261363962 -32616333623630393835653636623132356664343434376563613734303366373831333235646333 -62396638313136616139663831313132343934313233346633356132373431643539396534356366 -31363835363763643335623234303466623439323634633565653964653963616466383732393939 -34653432643464643430633132343432353365663666393934393063373163623039393334336634 -65303766653534653130653337633139396330306433323262333232633164636639643036636636 -62313538653762393538656536316465316639366433373662626538633534326433363235323632 -35383861343737633937663863393931636432363761356539313036663163396231343537393761 -64663030313731333264356130363161306330303633336266623737343734626535396232343535 -35353636303164653164343133636635623163643837653332373562653436373336316563623135 -63656437383533656537393166396433376161356534633363353161383939376238353733353330 -64303534393436363437643765623662376263616561383430633063343438396263343165366331 -63316133363632633537303762633537643738333639363266626164656365393838643833373965 -64616163313433383836613437616232636461356434646265353138303364363836343639376365 -65353639396235323037633430303538353433393238613361323835376232636430643331666363 -34353235626564643833393535303762303139346263343730653662356135393539666434373865 -32386632336133336237396361656662356663613865393064616264353833343761363166646232 -30303333666132366632633130373338393430323735386230663134636165663931336463646133 -32373733383562623463623665613063366563653335613066636165336331653336353235343761 -39323139336235356134383030303835653836626138616563383630626163633638663336353265 -36666461343566356333343464393639303864363838373865393532633763323330393763353635 -63623265653030383738666631643862303763346363623436303565613233316661636138393037 -37643761643234663466343264386639343664333439366533323538626462333961666433343765 -38316266643431656433396662323030306131303561323339306339363637613433623263353430 -32303365363963323035393565613737346165613032336338396635616237626231323333363730 -34363766396261303838653466343464363861396566323431623033366533326464313634343666 -31636537356365336639373063373962613032333632383033366331623937633536306231323164 -64623762333539643061613564633836363732383233623662636630616435343134663239373033 -38313634346338633332316465373265346536396538616562626133333132656137326236396131 -61663236636634393461373838386236633939666333653832393033373139626335626237333362 -63316334653330343535316165346263303839303639656238383038353635363632366333363039 -61376361323732323830663663326139343865346164663539666561653764616662623332636239 -66666137303135643863383065393363363462393030306436363161393338353863653438313534 -33326232356138323334336537653266343533343937326238346237393661373830383862353435 -66643538646463383135636662353530356262386566643534316431386137383938666536643865 -37323836376466336437383438353631663834363031323365323531633666313434653535323531 -34643162623363393338666433626137353636666539366133353565626264316230303061323034 -33653164396264326639626335646537373361643065346236336563386136326530323833336330 -65373265313434663533633335306338343964353639353337346231633637353338306139333963 -63313537303339643033313634666336336535373139666439636165303136633939313036626161 -37356133373462616137336633613766343332646265663137636539643661636134396337376461 -38623035393238343832636231353366666363653130346136373632383238366362396162663665 -38333639396634343765623939313031333330343039383033376339396132346237623639303335 -61623962626662613232363935353037653836316661366536653865326439623933353131323332 -37653362623333323439393461333064663433366263303831333662306361666666346235616632 -38326531303631633231333037356439343933363032393161396631343938633339386131663565 -36653934396131663637343565633066306263613431663364363062653366333262653631333335 -65333133666531303637303062306237306332376535643539323763333161653933333136383732 -34383562363361626330343563353432653636363163636566323535666163386135393765626231 -65623231393162313338323135393035616638626431386430303636306334343437303162656365 -31663061353834383461373765393530623463313734623437663539323863333865623139383564 -35326438376434336233303361646165373536323434303761633934636164643231356337313133 -61633136313065323737373331663334643262333562306662323963326330656561326433656632 -34666430633562643134323337396366613630393138343834626637623230616363353566343236 -36333061323062323130383465653131356431396135633466616362316362663633613430333032 -35336433346239353837623230666362336666323839383163666131323566313765306334633864 -32363163333564633239616537343264636135653833373134633132656535613832313264656534 -63616335366637383137326634626363656465376232393630346135373164353666363836383939 -34303265633238656432636132306430386531376533373938376432613765363938363863393431 -39373066643130306666633765666639623061373664336136623566373261336665336232613533 -33336463303432366537306161326136613164333337373032333764333636383166366464336637 -38363666373536666234346665333835313565303530653631653266303965373836383632663863 -64626462626230636133326531373065326336333762643734356131623065343631353665643565 -31376233353062353766383138333238326234393638323632376133323337643030653633386662 -36326366383935643262323664316465643531653964316635643566343864353162643131653363 -34396665386338303863373764313830303433623437393639396631633538653639323261663438 -31383735613930383762313465313836636134343365653636643633343534353339643436663035 -31373637643431636534336533393365353961336435383232386665313961613065613363383538 -38643464366534616365316133303335396533306366316363666430346637336365303534636633 -62356334333638313364633865663638323130633964393833363833313733343432613235636565 -36346236633739376436396234373664353430613438363133666539393032353634323631323735 -30613237333139313036663566633139393262643634303537306462373331326463313730643338 -38353132633661313038383138366431643037343462366539346235356235326430333163343963 -63653131356662373465323533393665333731366431343037653564376434306566313061616365 -30366437323939386362373162653536373339306637613038376363636635303033616161326463 -61376563663666333531336464366262656561303135333562353438333838323034396135303230 -31396435623266646561366137396333346264373834343762623939363639346263653361313430 -34316565666466626464333930336562636135353033323230353637653833653634366238306135 -36383230383536343233616161396433366565326536346438623765313366353164663539343063 -38376132303537316338356339363138643736303232326537383830643562343864636663336137 -653033326465656235616430666234343935 +39336366643230353065363530613534636339613866643965653262646164663430363965623437 +6661366430373134616338633630303534306239626135640a316133373865666461306535323335 +31353439353662393131313965393562393438643265333365373432393935313966643332643665 +3337363137316530380a356161356466623330333935343161343035313338313238656461366231 +61303638383433383566646261633336383630376663323331373935316334313462326166326335 +35356233623631623637323163313932626366376430656461653538353561393330643737666263 +63353739366530336262376338366135336665623962393037336366373037313433643939333963 +38303939306130613766366565326566616233313232336365656665306565666230663165386564 +34363562343130343239643663396132663662333331656463636663363561656439623133373630 +35663239663034376262636161363764373534626533303932333734396536653339313165326339 +32376464363432353933636533633763653737373735356264643838643561626130653432613761 +62316666306234393238333634336536343832643339376365666431313761656138323831626330 +37383431373930633362663131346337316235323239636131356433343364353865633830313933 +30373633373463336435343536386466653939346262366464326235646562656136633862666530 +33623462646337356630386432363833376563636339303966333233396465366564646362626365 +66393933396262373338366339313530626535323135393332633661386635303664613633633636 +66383438313036393166653632306238326234393665363164356433363765313431633161376363 +61343665393636306435396331326332306238326562643236633365353137656163363434303363 +30303636376666633837346666643235383330666331303135313630363065653061636232306163 +35636361633231356136636635666366633538663534383064383438326361396538376665643031 +34373737323762326531646331353934353334613732353335366532666133393063383136376333 +37326366633861313937643636313635306530373764373766316231323764353434353365316164 +64626234636363333830666166373866643261336536663839646430343331393638383762613539 +31653637626438616166383434653233363837666435626131303836353865303032383163653936 +30306338383261353332373334363461353534373234356464323461326539306336343733343265 +66353762633633396633393330306462316136613561393936333336663437636238656263653264 +39333333663638386233656336373263396430303239643931643463643264316263633566363066 +62343638323062306463353838636461666239346364393139623533613262653833306132393465 +65323236353564666237343961343339623231363764313761656463356566323639363839323734 +64383638353136323464393166393235613739653436613934663139376336303932653734383362 +39346436613130666164386563303537303331336164626335666664356662393030303761653163 +33633663363133383835333334346363346466666665373737666637356362343665376165636662 +30616433366364636461376366623235343063633334396433613733633636306363363534313166 +32636435346134313532613631613662323064616337653330616532343763336231623261616265 +62353739386632373132346662393339623765343739326530616333316331656531323461373532 +65663565626233646237666334633462346664616638343231333935656233346635613439393063 +61333962663034393465653939646266376165633938653537613363643565633836343239313935 +64646265333661383934393263393633663535346337343936636461363237373162653230653431 +66353530646362333032336139356334303836383930313032323034313338353438326339313330 +62623338313862303264396434393030363166636261393338386364373334323237333934663539 +39326665363734356462376536643163373462616633343363303730353963323030633234663038 +65386434656334313164653332336565646662386238353934303161316363306230303062373230 +64623938633364376532356538363939363763666364653161636136643933663133656366373162 +61313964396665356132336139666336343366623336376465353264393464623461363836323330 +35656566383039333762386365323236643761303436653536316364613265313333383931323562 +38623663393835323733643636616164326165626266653736653965306230353961653839306565 +32636539303961346361323931323733363765646662643232393637363263343438613063623164 +61393831326165636538623639353665623962346631343239613263373232396139656561376261 +31396430643064373833663362386465333864623137366336646238303766653561356333623565 +35636333613835656662663361313239666361353865316239663539643335626163656430613134 +30346362373464376535333839313235613464333061363232313261623035386564333462366633 +65323332376663353534323864326633386636646436653137326563626631383133313061353636 +66333039623535326464383136396338616335353136346666626531633736316565646663646237 +63393239373533393337363039336166363730313439396435646637373765353564346461383564 +39623437373564316238333631653837353239366636383064626337383638653364663733663330 +35303330626563313862323462333431353436386564653163373435313934396638363139626363 +31393562366561373861376430336431643632383832626139333361353166356135326262663739 +31396631643361613464343533623462616135623435613234386134323837383035366164316333 +33323232656632656361316338613639626561336266323763653637363238356536303366346139 +65303530316631636539333336303438616533396531613961363431333233383737383762623561 +62313331326264626235636236343230326465303430353266353962376635346332323038663361 +64313963336139363066333839303665316533313333613831356338386334323532623136326435 +66336236626262306632313762333964333637373962666235313461313334633737323231616565 +62633161363363363535373864343665323230343336663462336266316138343231356234343931 +61643661663165613031323433623136323138636164303732623639316439643732356539393262 +31363230613166353138326265633762643561656533366364383935663664636136653264336263 +61646137353862363062323438656538613064353438323030303135666339626162353765303662 +39333432353834356233626664343337643332323538383366663437303265623561336339613030 +39353863363030323438613761656531303239313936343934613334653033313730666438333437 +37353136646538376338313035633634333931353533633333373333393838626639366666666530 +36313932323639376263396630616235393465656365396163303662363061396566373132363163 +35633866613930363461396333623434373835636335353763333137336431336365373732646661 +61383032353936326665633762303733376465393334313539373162663434633231383335373331 +64356266613736636264306561363165633831353638323061363763643231373338646466356130 +37646430646265323932333766653736363062633930633734353363353762356361333065396137 +36633736393463616238386166613130393635323432336164373538636232326232643438303134 +39306531663265623562613537336136303338346432633263643062323539376564646234613861 +37393037313063623637313230313562396338303735353961373936393264363063613235313835 +33633639323131333962623464626134623539626335636635393731646364346466646537306435 +66363633383639393136313063613463386366356430633838613336613731613238386131363863 +61323665323262313931326261666237613437393761626662663036353565323939363530343363 +64313939656165336135613665343635636135346231316265623337343737393963383961663034 +63383261393564643464356663636235303664643033383333666635383265646233326435373933 +36363031613634623031333064613361303333623537653064373434633963656263386666616636 +31343738333661373034356463353966393965303465353231373139643734326164346466386261 +66303661326130336663333830633962333861363436363835303537373762663765386338376665 +61353536306437646632366435336634356531373839656238343161616263663463333130396339 +66373538663934653136653964373531343538396336663330313439313232343731313033333961 +39366434333966326334373931376364666439653038396633363061633964303033306464386236 +36616536633234303632613130646137653064663463356137653233663630643637376637366536 +39396138303235313361353836643036346631633138306364333430333266663231303565323134 +35646438313663343338326664666639623361643530633661303937383362663165363134303163 +65356335376566343563333636306138343032353537663436656436323666636563393263663730 +30306638356337383831623662643762616233643731666431656239396130393032653239363939 +36663537646466323437376632626364333836323432396137326230626463313733353066663231 +32353430666463336636383764303135313233323064333831336165363132633234323439356539 +61303065623464626662643830626139313634343335346435636666656539383561333930326536 +66613166303134663235343563633461663839346533323762303266306334393438376137346662 +33363466396131383664393432366564333762346366633632613538613136336335633463313939 +38323062333165363932396533376265313036326331306437613061386133333761313230356163 +33613334616636653130323833653030626532646136393138303039666232386239613334303364 +35383063366234613035333562653235613236343137643338373834646137383539323066656437 +32626464313432623537323461373063623761343931396163343335663064323431393436393862 +39313832613832346539326134663832643333316231666634323334613834653437363336383639 +32616364316230386134313163383334356339303066306337396639303933356437653036656364 +31333835363438663833636166656136333732346132623663306433626362353631613930636335 +36653561393538373064336334396665383130376232623032353563353163316163336235303736 +63626233616361316233613231333431376436393563373935636337666632326135613031393537 +34636335633733303531396331646533393931373866336162326632313366666434373065663762 +38366464613664613466396636653831663935663937376236313663373362376362336165326365 +64663433363237306133363764353664643531353263373132373262363832323835656438326166 +36663865353332646434623036343861643830636539303264663364336437373939323261656131 +31636239393531313064313762396336336661303165383265383038666364626431663163633539 +31633030373037343465396363613332343531633031356163326438643265386665363632613939 +64636333613436613036646133346330636436616365373761323834343763336336393239303136 +35376263353162393764373764363163663837396266373062306266353761383462336435316461 +39313036646131373863366534653032323833353361623365303838363130626363313730663135 +64616261306562393332376363363962663136373132623530626663326134386537373564323335 +66326532376137373265366264363838383332333666316566643735653838373231623763373937 +35363839316365356337333830343233363132396339303233633433356133623832323538613433 +61306464643364313631663662393637303132336535613536363434313266393861643835383632 +64623333376531646366346364303335323837366430653866346232366338663632373438366165 +61376533303761306135313162313838383864336237303231613765373034613438313834383531 +39323030613938386333306232376135393532386537323438396333643236383965336265343763 +37303330646565646563303835356164383230346132386438656532333231366336643834626164 +30633039353838633739326238616638316532386162363239333131323438393134326132363430 +64323537613263366565663335623734646366653932633865613065356461653838386331376161 +31623733316166353836633036636537323066356332653837626333643339663764633436386538 +64323131396332383637626132323961633233336430616534363733643038316264636134313665 +38643765636331626364623637353234333937636539643631313335646331633835376437333064 +65323166616262653562343463346434643337613133326233623638373238653834366636323637 +31306234353139643862303436666363646330663137323934353565326161303062363265313561 +31643230616434313439666131633735663030356235353866373362366336383665326336376365 +33666337383435333535353661363234643039333639343534626662626338616462353039643536 +36343038303031646338306530353030353165306339653466626238376661333836353463613863 +39363065316634363666656661646366346135363733623264653564393335623036353730353937 +62366331626234316236623835323363633465363236376262386665356336336631316332666264 +37653630326665316261326139393566323339643565636132386334633439643061353666636466 +30613465626136303333346262353864303964663139383838656365303738663366396561336263 +61313764663036323866363664346465343135306335306463393138386433633962646232626664 +63393666613139626636313363623731336661343261633031316561663366333937363735343536 +33633962356131333132386337386633666334646162303836316364636437373532663033313534 +65613332333663643232376432333939313939313535303762343366393164353239306131343737 +66623861333737623261666361616630636461396630633664306164326339376432663964633135 +61376632336136353133633331353131326330646334636235643930353965303061626435316532 +62373032643933656534613131333762346565363166623462333934663365393366393538386563 +32393464333939303734393662656136336235393635336234633831646533626639623464356637 +34376538656436336166653431343362616466336461613562643333616134613638376538303564 +37386333323538653431333334636562356532353562376665343030323137663536646237363861 +33643030616530313334333739386634326532636138356561326466313161343635363363366532 +66616165643435383237646563616561376432373838613839323635373565336632623530663263 +30353734613861656539363035373730633461616237386362323539623131323835323036363936 +39323439326465373864313338356366643963393137643366356661396538663365333831386133 +35616433326137373339636462383139623166363564353233663936646135353035613264393961 +33396139373939316538663037653764633037363238373764623464653734333132646334313636 +38313439623130346462333432646330336434633963323861386630623437353038633061386665 +39363733356436353662343665323433623732633663303166383236643932356636643261313739 +31653139336239653061656531383733383033363430306637366634633062666664643635363666 +62613062313937356464363431396164306636363930346365306165663637336661313735323537 +63626639613439633534663434666563323564623963643432313432656537616665653838313966 +36353033393665313630393938363866363033633435633264393435623862336361613537346238 +38613232343961376463626631366634633236336438376638313338633862386636313562346562 +39613463633330363663626633316339393234353134633164366633383537613962303965636164 +64356439633264643430303734636266336464316362363830343034383261353663643532613863 +64363535623738623936376231613231303964663634653136666365626363353135643565313563 +64633531383566653364313766316135613765646239623463653233376533623961333061656637 +64633332303236613963373739333261656437623861656131346234346263393466356261613435 +36613565393566326334623731656639636466313639393839343332656633653835636639356431 +32623366636231383633376132396633396239353230313665323866383739336635393164353137 +31306666636334316464653732376266646134353864616531346330326337636436383733653236 +33303436333365343536313636376463366561633639343164633133353730656237643934346664 +34656462613362343264633438383562393536373564323439636636666665376461383865633761 +33313937353466333637636363323261346632666539623761303165323033353933343139323237 +30396235393838643130393264323536613539303433303838383864376434613366613336346135 +30333663636662376461336338343164633462373936376462613733343739333037643463363630 +39353430373863303362383036646132623030356232326236623166656264656463386338386134 +38653937663162343166613931643961353265393733313063366331323161623530643636323164 +64333830363766633735313531653261623630636238393964306166346164613763643165616261 +61353036323032313632353239616633373335373866646439316164363263383165336264363364 +36326430313239303639363730363066386164353166333137356163323836623038336630383237 +35346662653530373334323137323165303864346330326264386233616166323137343738633534 +32333735303563306165636464343339383834656563646462666333646332326438623661616432 +64626233396663396234653766656130363831313466383635663564623566393135653439353263 +31313934613863636134356566373433316665306661396666383562373434393137393865633963 +63336431613539336632356436626136666132326233373061353465666663343738663936336333 +66646337366261643833626436383536613534666262643430643030396565633564333232313266 +37333436363739666535333633313333306363353363353266633263656263653165653764396336 +37626165633031303130643734666662323934306334616138343637626662616264373330363530 +64613831386161643937653062313032316636663766376530363338323739646130333037666364 +61313030643837333432383162353135613463383036663237333634613436663866313261326136 +39346632623534383661663564316565303837306335346234363964393835653262306265353461 +39373432363836626130306564626565616365303539393761636338613434386661626433363136 +30393736333635653337656563333933633465313933306162373231333133396135343337373636 +61326366383465643133306531343062633438646132363238353239333063373865353731373133 +31653230393834383965343136333565393539396531383535643164303031376239373861353134 +62636435616163363863626237366665616339656661393263633462373531356136306564313036 +65323731626235353765363961326631363034353036303339646563316565346136343233623039 +36356135373063346639383931633030306537353937323133393065643465646530373037393631 +34313866666539313564373966323365623465373362393639646637376661643231373138396366 +62386134396463333265306334306336336564353333646361376262353934353338393239383430 +32623263323366353432636366363435396163303966663432616639383061653161373666393166 +62613566616137393239303464343836656338653732613465366464353564656334656631396334 +34613261646331636564346336653664373166643239653032343666373561333735313837636364 +62303639623830393638373232643062303862336436326234663537303036373033613164323234 +36633731613065313038353433396132353735353739326233393965653238313262333930666434 +38376231323966666637323233623661366363613933343562633535316632336535303361373938 +61643238653533393366633863646363373736643738373766383433663533376639643063663137 +33346562396138633936386133313838326633663830376362343861353266636132323963663466 +32313465616564303562643438643130663362663164656431363562393665623538666539383338 +32303230306366343365343662346136393062386536313136326264303537376338626266613332 +38613338313961343330363563333966643062633761626262616235313432663735363738346530 +39373337623334366237346337653530663634616136396435333434336132663662363734306439 +63303764326334373231636438643634643939363132386438303633633063373662646136313735 +30663131323063363864333039633838623233396361373862373033373637366333646365323938 +38326137373234383334663935366535303837346335646436373063383563363339663237303835 +39326239636161633563643862376134303630303137323538326465346466613263326132323832 +64643139626337616465613630333964613535333632373036396165303738323234396634616334 +37383163373132393130663938626234396635346530653336633666616536656338343332636366 +64396466656633366665333231393535633237333062323636633634656533386337313866373931 +38633831633936653631376339323034346239636235346238303939393335356661323132393339 +30653366373732393537623237646263373631626437353831346635303834393439613361306539 +36366562336233623330363134303361646236303034643635663237303339626630393762353336 +38643134326166383062323965393362663339323939303738623765343530646238333632643137 +64643130353933396362386439333161336530636132383062333165633765376135373238316533 +37653466663432333034326662666263663537653735393166313465376235343838356261616135 +38366363353131373762386162356335613934643831646239616464343136636534613565326465 +63333138656234306438316637336530303434303938663134633134373765303939626130396234 +65666638626634306537326231313737643734323137633264306438383933623934623061306334 +62353531366532626665316538633231636266343563353037616539373938333539333930616530 +30336363623062663165376462643534363136373135653737303133313563326464383733633839 +32633534666265356137386136323437373135626264666432363139623733323130373333653063 +66373966643838366133623631363639623163396133373833386364326136633063343634306331 +31396265613362343233373933646266616239613736633137626161373465656132613336316464 +64663438643763336633353630616435326566323737623939393732643338313634326566383232 +64376631616566613564633734306439616366373334363939646531353038656163346134303663 +32346638623432653165316438626633363338316232616661653935653530636539626136623331 +65376265643138303531363138343234306165626338326432366136373765303331616237363332 +64623966376266633964626532663932386535663661366262633765396230363032366661373532 +37613061323763353537613133656566376639653764376331343062646664363537303630633736 +36626665626134656161393035653531383737356661663836333065333165616435636430343339 +65316664643830653239316564616439333234396232666131343937643062333539353233393964 +64666531353830666630393261366538643663623336326439356236376537633964316463396130 +32663036346464313439663566653139373034353964343238613562656237623866653134633333 +66393038626562366365653735636130393235333430633762363135313835336537393062623264 +30383762633732356237396639373235343539633037363237343564396130316432313930306363 +37326330646436643030633033663862653031636633616165353837643738663630623062623933 +35313964653365316531383362643862373634333531663030353766613764346663666330633234 +33383063373765643630306434636662376437373038316430343165346138346563653135653238 +30323063323664386661366365303631396635306261333261336137333035383831323534363338 +64366536643932373065653430333061333363323564313366343432346537366539323236303964 +38663363666663653238393161396436316635653831346236616564363631346439633339613638 +36333964363064353734633435326132336161343333363939663037346363306537623339633832 +65613238643235656661326638633665313435646661616137636438616533316334323463346233 +36343238313433366363616436376433353063316465646136376236376332633665373532633234 +32313366303439663165346565633035373664323332313138366335623765383232346333383536 +36383832643136336539323031653534373866363735646330653738326635636462343161343531 +38366334633632356465633562316262633161623236363932636331373664303162663963356165 +37316236396566396465366636303461613037336630353338373030363137353966306662313535 +37623563376638333363326431333838336361373963623330333839666662303663616338343463 +37363061383538393531626464346137303633656339626430313630303762396261323639393063 +39373931643232623638353961303437353563323434636136643031343938396332653661343634 +64373534623763313836663036333839633037343934653861346532396138353763626339653161 +63653037386132626666636531356661663133666333376637653264616630646133316133333039 +65376232353635366366373436366466653264306234326563653835316631306666663232326238 +31666438303865346663323765373237303232616238633264666639616331373133633732663036 +39303266653165356235313165653532373361316463306339303166656462383461363333396563 +64313637383032653266306566646434613937373239393062363064666233653864623337623037 +32633838393066393039613439656437326661383433646438373532356439643934353239666463 +66333932616664666361643635666164643933373265336437376636316664343966636265303162 +35623936663134323062646366646133623331316265313036646462666363356331323438306234 +36643862343165373534323766623233633637626132616165623435323639316630366365656632 +66356264656632306662303662643864303137303434386335313837363734383639623535656338 +33643934373366386534323265626132313537303330633964633537626462373863363162363063 +32623835323530663738353935653261633962353538363764393436616436393937633265343732 +32326338636534383363626361316537373430343636656434663335656238626161663634383632 +62653563366438323561323636333731643363313536626464343633353437356461616630613336 +30643734346261343638363363643934636561383531386565323665643631663863623962323264 +66363362616265383163393130653064633633646537653437376331633162633664626565356332 +64656535643739333434643034373435326131363638636631383030386566333461613934353233 +32646439373331646339356639613331653339626263326439343933343562323465323063393665 +38653533666266616261656263383266623937613439626239666638376364373939363738353335 +37383032366165313637386331623238303835336465333564323531653933393862306233663639 +63343866396236633765373333666534313338336134646664356137366630376666336638626430 +66366637373862303038303363303063313833613665396165623939613361616236313339383362 +34363539363430623230376463306538306362316362636565303735663362653162393932613461 +62633061353832333564666261656165653330666637656637393431393864333036313030333461 +64323666303738316432346563313165353438636530626361383836333832313237373336383335 +33303763373233356439343734316262386230383139383837313232396266383034363336326130 +36316334353538386466393234613935353830356436633039636264643462663030623565313137 +39656461363963376230346265646263333536343166656436393330393865643061303338376666 +66373138653030366231653033663233646438653061626466393633636136353738306262316538 +32663432386130356331353037303239343233306536663461333636323531333838313338666237 +30636161663337393166353165306566373666643737353733636465313262326538326432303461 +66643464303736393139393137303763313866333433306439393030333466373662663761363131 +62323137306434656131663536333961646239623561393864366664316163633936306435633334 +31656534303739636563353336336432633830316264666139323934633930353937373830643336 +34616233366334326661353063323539336336613430326232366464376534306562663132313934 +30383066343132383536396433396164646139393966366436646365643764376639633039386139 +64343131663730386466326463613633353630666231383432316565613638616564653730313534 +37323630613263353065643433363163353831336137316233336361626637386434326639373934 +30653633666233653834376635336132373466646530646563326636653338383237383466336563 +61313866396265373162613562323166663861396635303064643464343337646331333137373336 +34323532323531393131363765613834326564643633376565616666376334336237363434383332 +62633264333932663034643035616431306637623962633839346336393032383734343663393530 +38376338653665373736396330666363646265656237613933646535666434323933623630646663 +62613161346537366237306264306233306264626533393835336635613136616331393632623037 +63383462663534636565363035343538616665396562316539646439306631346536306232353030 +36656435343064396561613163613763626665396431303230633866353437393965383939383636 +34333834393533356438333133616131643330363562313534646639623064343830393237313961 +33633530653161653036303037613832366665636262356530336536383230333238393637343233 +31303637303234313366316364633432343238636461313130343630363238376462333434343037 +65386166386533353839643663306365336630666532366565316534313262653066373939356234 +34353538323234333330316537646461613737356561363431383864373935346639323662363531 +33613231396233346465613263396561663130313466383066326331333637666161653334313334 +64376537656264306335633638323336393230663431636334343333623338316462346461326437 +61313336653336336336393266303336306162626363356233663430346631323261336134323066 +65386562653963623531343136643138613931393466646237333664373839353530663238333632 +34616232396365323163626131353737653631396364353131643564646538666164633430646461 +62626665616431333033376366646163333865653035383563333734363861646136383361323362 +38643432366633623762313061356534636134643365336437336464623035323336306365616633 +31386133353335316536396636383761643135386663336635636339633432333165343761653963 +63306534616134613666333336393130313135393231323034643330613763373464333535636530 +31366531386131353962336264643166376537306533633937646163333634303435363139366338 +35323863393863396432326430633466303236383235616465623837383463343533303933366632 +36353030306331383237356239633738326636383162336461333531376630626135636232313966 +32313661373835643430313732643430316438633363363434353866663566313937626530613931 +64623831643661313162623261303061326138323738343839363933326631633730393133323465 +66353732326263363133646539336538313463636631383032343762643561346130336533643961 +39623536376236656563383530373536623465653861376336656134316534366365653532383239 +66316636323937396230373163306166303636643431623536613038353161613461656138393633 +35313662633631373463623432613239346662383039336262343235333764633037346464666661 +39343437653430316633303737333364326663306262666262353532333461666338333735393834 +34643966616631613561336161343333313534613232666262343361656361656339373839366238 +36656261636632343963323330633033366262393037393262643061616565353932343661343234 +62343534616565356636343130633835383338663661633161336131613461323965343331336431 +65633931396565386533323562616466616430613162623832626261313339386134623335363762 +34383430646431616464623139326133393166636462306635396431643430333761353266313530 +61313164356461386538643730633330343132396234343336323837306538653430363664653738 +63303537336334323332363037626539386163633133313737333463343231346337396138373333 +64613332383636663233663166353831343932343839376131666266333061333764383035343436 +31633762393532656461326134636137393036643563353433303732373038656564633361343831 +31636530323437356133373631646631306463353461386432653533656437656335316339393130 +32376462613831386536323333663564386663366263346664313564616536366234303733386465 +64306461656135666539343134333665643239326339366633663565313230616237666637373965 +38643161663533623236643933376165326630333737633835663262653965626531336238323261 +35346136346133613935633336383266316265623933666366666338666665373365303966636235 +38663635633662386432303338633365313633356331393036636233643963666561636434663464 +34323363396133396437646164303435353363316438666337376234643132343031376462303862 +64393038386430323731313339636664323736636639363630663038366266376335626562313861 +63396534303334373665613963656166653534353434663737616631653633336535636635646233 +66343730643738333937633435643763663366313465626334363465316363623761623962636434 +61346435323365313061356630343738323564343132626330623434623264373038633361366639 +64353066356233383630343063376661393137353166333366613264616632626263623236346465 +35393662313263386331393238623966376139616339313566333431666361633961306431623334 +63383161613733626664656666343734336664666339643035653365333230613931393537626233 +32326466333365303632313539363366383465306434616163313561366532613736333738643064 +61333861323030303934316263616436643131616363366164346536326663393535363731613162 +31366137646436346137336562626338663933393032306334333061313433626165313935383761 +33353434643766353736336566656462313133393461323139636435396463383531636166633731 +37313733313132663833633665303133623938393365666138616334643561633966303864373439 +64343234656139333635393335346637393232653231633265643432386331623534663037376238 +38316466613737613064333230613464316637363132396236323737303862363037653264333563 +30653038396538653336346665366639633832613932376135383063363030623066386266653235 +34383365303863363233653635633466616336653463316332393663353336333966666330353839 +32396266666166643762303435336136623364303739356539323834636330646334373065336335 +37373835316261306230646430363533396362623436643835323939626537363735373061666566 +62346137613961326363626234653132626361393231363963626639303135386139363936663333 +32316162373263646362396633353562363932323436393934663336313263396564663631353533 +66663565373139643135393833373938663365313864633439396662323563343237353333333737 +63383964616664346139303932313832326238306264643930656364653931386535613661303262 +64323430366635363536303463643631626537383261363466373138633733356162623464336136 +61643134633164396537306137323131656338333034393764306566336239333366326435373131 +66643630323265396439363436636631613939653966653832313937396236373166626535313537 +61373763666633373234653964343334313362306133333865383233393161623739616564653463 +33343835393036626639313863663837366338333737356635383432383134633531356331653639 +38653765383563646664666632306430656438633833336563643661393961646366653766353435 +35373835333739633462653463363736663138333030343465336365363566336530303165393133 +61363232363765393933633739303263313337653530366661356539346339663366643361313937 +62376633333164623630326165386465656361646661656661306436326439336539626164653830 +31626336636165373531366466366264643539313634656561643531303531613836396432393434 +33643633663432323730653636633965643637313262393064366630396434383464333163393961 +31633466376336383730626232653435653263363931366465383165353432363837363538393339 +32633166646331343734633537343264316465356436376136613837616339323933636432663438 +37396236646534316564653365313461326338323033643937393337646437363365616638336564 +62363861336130383663643235343639356134313361313766366439363439613631313737396131 +39616361663665393633353939646363663330323965623334656534306639396635616537616133 +30316662396330333134646432646233316163386238623662396336363465303465316466636166 +35363339653233333666323533393538363033316564306136643538343562616466396631393464 +62356233373638633665613366393338326432333636363662376334623732363632316364306139 +62663061663532663337333533303737306636383862333538303866353262363732393164333636 +66376462323036313961386437376634323239343365343239383766303834333031376162636333 +30373931656632383063623039306562393537613330376432663166343534303231306164363937 +61333563383366363530636439343563636361623938303361356533336331623130623039636335 +39663932666533333666626565383566386133653961653365613536353166616235333834333334 +66313737313666626563373237376564376538653232616237643363613838373337636561653265 +63343335373763376130643366313030343130646132356263323934393330353632373835616466 +61393262363061303966383630363634666339653431376133333834326538323564633835333733 +38653433316461333736386662633662646638373234663835363738343734663632383863656165 +37663339333138633663666633366339613132346538343661333736643333393534666338636563 +66633263363265643261326634383762353964663135383832323564316331623733313433343431 +35626664663462346563393862366538623231366637313636323461383463316439386130613064 +32323834633861633761313136343266633963373233653935303131316534396230336332333963 +30326661656439396564613133376363643034303739386533356233643165323536386432323866 +37383530636130326562616133303638396532313633643134316532636434323933336462643861 +33306638663234376331306263376566653463353431303065613730376237643165336365303566 +33643064363361353138323565646666616230343463616337386631313932343530366530633036 +36643636366161646331663366303763386131623665396365363561323333633761376438353730 +61633636393437356237623463306566376662333239343362303066393036633037336637663462 +62306439643564346336386463363362303033306330663832383930356637346231613564343430 +66616438613435343135363632646635666561646230623631623861376266356234343230656633 +65393130323339393832613739356431653436373765313462613934343831393765623966313131 +36323264393863336461373130623339363837376433373636616533626439386432343334383536 +37373136626436613865396463356539363764356661356636636465666530353339383430623433 +30616635316230363966383834316663663733316264633637643339386331306438333132313262 +35656230616639376165313565343435623733326264366237623463663863366431643738336665 +36396162346265663261383362363437616339396331363961306561316535336434353235376663 +33336330623839373338646233633037323438363336383066636431653436303436343938316366 +35643834643038326431353830326665613066633231333363666439633339386266663036643163 +36353934666534333535613137626337383033613031303833343130383731303535646339613064 +31663331383537356131663761626236386632643636666633643265303038323062303031323137 +32663833356136333333343862636361333334333531643132623331373833346365353035383831 +34626138653463636366373436313266613231663337613162356661633236663736366130643465 +62646630633934396665326366636333363932613330626330383862386337643132353330316137 +37663836626364306665353138626335643937393666663033343038303364613439336365613764 +33663031323933626335306138303033666562393335333739393461386132663535383931343836 +61383339376231356135623561366232363064343063326637363964343935333032393335323033 +37633265326637616639366666343738646330343464393865353462303065323265336631643435 +30373063356635633230643739633263363861646432356663313961326162313763323335333666 +39613463336530663734646165376635353436666532346661623164383632353534653139333163 +31636331323832643162336364336663313838373232306264386535393462653866643636656636 +64646362346435623735366533646562376366653339626263363838653033633335326162666565 +39383739326233626232656234313338383764643766646138333230663836353131346162316130 +31393266323666376535306262643938356463653139643239616336663663613364353630353665 +34333832336636386663636439376361396631656432303333346137346536623530636166666438 +30356330306566396638393764636630353433623736326364393562396664373232326163313066 +36336239653330616331336137306538393263343863393466313165663562383730613061656461 +32636262333066346632663831636533653261366432333139643733376362353631646138623239 +37653930396431626533333933383064353064386539383030623031613832656663373732336634 +35363839666661336637363735393261363865333663656434366235366432646562386163346337 +63336662396166313038323739653938666663323464353030333361363565363264666335653334 +35663435373636306364393832636131626132323833333535303137303236313434336438623566 +64313266353863663862376133393764666638613932623565396333663665363538643836343534 +35653438383334386538343963333736303132356136303964386234336562353331623564353737 +62356635616266303962333037376435333364663835303339353038353736663035373034613730 +35303737303364393965643434343139336665623962363439363038613862636237373033626132 +66323436636137303837313432386366303166346162303732356436656166616435313765323732 +37386530623364656136626166656561396363373438663139623433306235383834353837616664 +62353464626634646162343337626135663863666637346137336331373162653536333561373339 +33396634313031396663613534313932643339666637633238613564663063663764353130363663 +39366365303063353930393337323164626162323566623231323834306536636536646635616437 +35636535656366626632613038663761306436343132633435306365373861383338343034653834 +65643131646331366564646237336132323139663763663265393563336139623866656361343935 +38343536643636323461383561363934653765393532383833363437333739356465643630613836 +65353135393631623039666335663766663337323161613537346637356237303439393839386562 +32383565653838303665376339643335626331626163653762646435383063643461303634363539 +35636431396162323233313763666366623933646336653466633739623966353238353061666636 +34613837636265343661663234336137613761633734366637303234646432633131633631363538 +34323366383762303034613961313231343466356134343765623339383365343835366438633235 +39663633333465373339653064656639613766353635663666396534333262616266653036356136 +33393732353839656538653835633137356165316239373435313530356330383032636366653832 +64303664396263373334646638333631346430613733363930653036333739333838636439343638 +35363566343430393936383832396464623235653030633766313635366637313936363534653731 +61363639646665623665333930633034366431356663373162376237376236646533613231376333 +65373838613031666236613032643932663831613938633434663530386365356436633962343532 +64623238306232353438636462386634313963656138313330623335363338613964356662316563 +61383966386231633532326338646337313638343062383134626232333662633166613433313339 +62666165346363636336336236356537616430656266353930636134633538636137383462626665 +65363339663163396132303363656436386331323063333735613661316438393963326436373133 +36346638346538333438663133613535626232636366373533346563616535393531383635633561 +30643235343735663064353962323430316265623138366662616634396532336134336630383165 +39633534366139613433386261613962366238353766613938303632303132393931353439346234 +38656466393135623565353532303834303331653930343430623233306634306637346539653133 +34643166323632343135306536356338306664376336346462653065636539353739356633333364 +64306234316130623030383334386336616465343464353864656262316164653039656165383636 +33353434343731386331653964306163616631633961383638653663656130313930336633646531 +63323365346664376335383337373032303436356135373764666461363338646363333732666436 +33653730393761373934336337666233386330346337623865376163643038613061326536373130 +35396335636562663930653535663438323237376431326232306264353237343735646265636539 +39313533326534646139636264336461353135353862393237343436386639643839356263363535 +66666232303233626164323436633561636338396662336435306232336464343531316661363061 +61626537646666346237643430366465353561343037383035616230393566316238313737356265 +33383065346133393563643734383838323236326563363437363235626662393037613539613039 +64636531303836663165313932366132336236373537316566623363323630316463353265393562 +37313563393930353135616632326263653333346461303131323034653464376430613839666461 +34623332663433666437643433646664306336623732626230383636666365333332346663366132 +33376166326330623763643033383232333035363834646338643338346664333930623931396663 +32353935376639663938373431663935346263376338336439383565333862396532393138323265 +36656532656661393037303166323033303436396637343663336331663662396338666638313830 +37643330303636386332623835303433643065306433326235613862366538306235383137663363 +33396232643966633064346635393930303935633032383635633961623035393561633165373964 +37383834643430343265373334343736336365356337626366346235363138366337343531383435 +61633061366463646537386565656563396530653735393461653431343637323561353334376333 +31623039366637633737663933626461353139383531313966383738323532356231383436353335 +33353039333135626661663132643336303065363132633430386366373632303264613131613830 +35633335343031336535323366323333303039373235376635633130313333373531346238366432 +37393636666138633838393261653833383962323939313536653865353739373739303932313333 +33663632376635316238393065643933663739663933386137366261646362643565376339363564 +34363462373361633465383762646465386334636464363431386663633765393234323261393631 +66343433633230346438333631623664613136663164323961323331346633373133653466306366 +64346564363364626563623066643633383266316337356261626232666533653064616531343933 +39353632376134376265396430623037306435396663326662343164626536653734323732326430 +64356336613564633764383339383239633265373134356339366564366637343231363932343430 +34633732643435353266626330373036313234313431646433626436363633663636646431666633 +36376436316631393435636264633031633763363038613039303265303566636361353130323864 +61363134333233363239616166653831633939323737636635306436303734646538643736616530 +30303435373761623331643739303565646431613866326366383238356135623533366161356666 +30353739353534383533316262373761353265303330346165376534613535323238366166616235 +63326364303566613831666136313062346533363233373463306139363430623036646562323730 +31623066393635383138343563356662343266333761356531386238373963666466383035386465 +30353464666132663933363631333765393036336637616535323861316231323136643166643862 +32346631353432653366336534346536333839613232353065623061303932353939303432363466 +31306133343933353731383230303939306633393937653964646139333064646334396239303030 +64393761363162633631356638373366623239643336366536646463383164663131623938323834 +61393665373235613631353830363863363632313461653838656138366635656131363866393466 +37393036663466653337663533343238303961343861383561326235383135653236396366363437 +61393632396138366432353261383130396134663530303132373837326331303036633736326662 +33363939363439653838636337366439626532313732373538323839353830396364653866353661 +66383531353838633265353038353734646633326464643834373663636536646233613862333937 +65636537663966653433303766396238393033663063336637313161646432373963616261346535 +31393062396164663835636163616162323961313663323565643062663934323733626265323439 +30613265366330663430663233666131376264646565386230353735343963373539313134333962 +34663732366265386538343430663664306466356439373263343765353536383965393565643933 +34306230633334346166303234656139363839336234643364613033346462666434626233396461 +65646431396135353064316135353262356533363135626538356361356265646262306133653335 +39663366306430353137616663303961643064373737356534323463363133336165623439613032 +32386165353666623266383363613161363238326134616135393339336264363132393165336431 +39366331333732323834613965373132366461353462333639336533383566386236363137343633 +36653732333962663831613034373630396334383531353033643534346338346636366236636266 +31373064316561383531323132336239613762396264306638333939303261643563666332343334 +31326163636130356436343465323238376532633039626635656631316365656136303731383034 +38646230303736366263616632663938613961306363613263333530353734646165393133653261 +34613161633336613832396134666164313530633563626335306464323636386631313264636633 +39346164613064326531313964633331373661616361616139623235346664643630316265613562 +62646136613166626234643236303334313966363037646230336536386432636162626534346336 +62666461303832616665646264613066613936313938306136373765343664656663393033376537 +32646132633138663930636566643562313434316538613637366161623866303831336537613264 +33373232303032623133303165323965666536346638373363323466336534353430316638666637 +32633664353536386266313766303965666366326639366461303031396563643762303336303434 +65383437353331366336383131316332656537626331316433653262663733616338313165663532 +30633638303138346131623637653161343036336238653837383062653562383831623735623839 +34633639353764666264323333343231303734383839656634306362383935333761363234646238 +37366432356465653663373836343931373164633234383334643563633965626230326464323864 +32643135386337653566613837653934623164326335393461626237333965323036313862656538 +34666233303564323436343234373537336361336365366566616633383064316136323332303865 +36343561313435386333363733333839613838373937336539663161383161343234396137353762 +35643032303163373635643439346662623632653266373437653239356466623635383934383765 +39393532326164353835663830386235663765393262343337393134376663373538346634363936 +31353038393238623132666664303461303638303262653162323666656336623234366365643532 +34303537656635613663653735653263613531343034383261643961633533646366393931633637 +65333034396563323365646264366533383338396563623137636539343635356265613664626330 +62663464633633326437373565313362393666306435613361366163306138396431633632363065 +38356430633964636263663963623333346563636638353039363531373361343964643334613463 +33613032393932383438383637316166326130623836643134653430363633353865306536326134 +30636462376635373032323630393634356634643932626230366234646531336466303864373161 +63333635616466343664663964646664343230633737663465623538613139623235376164353933 +31386433376332356661336235663935383136336164346462393631343866313163613139313261 +33396561303466656566663131333831363165313538613166303432636565386231366564336634 +31336139633734333339303030396662653163636162313564373834326632316435346364373735 +34323565653637643564303931623439663663666462666562346131333764346230666565343765 +63353064343662626662356635373430643539313637333134326638643062366266633533376262 +31346333316231353764346166356464613437396232323437303833366132326666633864363865 +37353065316264393332653837663031323438636630356132393930333636313038326564333032 +63326466336666393763376335396339303739336130373834316663343662623536353237393764 +31383064663861623731346131636130393530366561353861633233613739343433303236613861 +63643737333437653766303466666237313137343264613839333763616235623038366161383861 +61303933666565663263383430393061613832626236303131346235376633363938363433356332 +33303965313330396365653930623563313430343439643561383965383364643930366230616436 +35356564643966386561633663636539653339653665356366656263363066336237363164666535 +62376663343562333264363738613164666131393733393262393531646131623535663133333064 +63306262643436346636636636323231366561356232353366376139653665656165303432663636 +39616131383634626363396165653735326639333366343631373939353933303266353233383963 +66363634356361663563363566393163323936353965356362306165656635383662373736303466 +62656261343038313634373662306464393838373633323762666530623532323636323930386632 +62303863353033343663323064653638343531356132346562303731313863383231623431343039 +34353465336665343232326163326637666134333736323438666532333637633337363637663932 +64356263366135653565666161393264626233356632393032343230306333376662383235343833 +62346639383036363931633139646561303366313366393331626665643732333536613433303739 +33643736663239613766383265626262363561393162363261623831393331316463346439313334 +34633732393639303838653537323863363861393838653739613431616563633237313232376233 +62353862346632386230656163316531653532396331316136323432616163626537633439373636 +64333635636665663737373662373662356363643337356230376361343963373732636637386430 +63383564313531343263663633376534313632313435613231663236386364366131383739653838 +38643866616131353465306464363761613636363935633538393039653334663365396332636362 +61626162316462363330646630663362663630323639323564653739336633373163376265323763 +38323663633734333461366532643261376633343064626530323138386632336636643033623439 +30653137343064323365313663333835353537663934366338383934666531333633323161383532 +64363133613834666565636437343832383431663231303363613138303230653762386264633232 +31393732666439623763623839333833316534656462303861353338623438366166323433653664 +37393233623133353738353439643930636433653238386234356331396633653866366530306139 +64343062303737366438333864356536303962353130643964396537366466313337383066393935 +31333834343434363638396263623561353839396238393238313263306163343039646130316439 +66366635646161643237663161333632393136303436373132336437613037363935313934363737 +63663261333136316166656562633261343830636131326239623331663562626137373564323639 +37663039666465643632653865623836393461336538326639366463336338343866303836363838 +36343061623338386435613937313531376462623532633831306136363430653336323630656663 +63343833346236313236333864653830393238656434626138396431336237626465376463353363 +65656261626462336665616331303061323230663339343835663436316462396531363461383139 +38343064623237316164633132313863383938613463333766353330636661353034336231333437 +34373262323837366135323666373437366361636363326335376636663437376364326266356466 +33613033663332663934313534313964633237323061643762376233366336633932643136613730 +33323665636433386365336636663565306230326539376639366564643639393463316461636532 +30626663623132643333366333666530363561643661316237333131666438343565323239663232 +37313931626130656132643161336163633734386437376337373964636262383537626264366333 +32386131303630393731323431613065343937336166336230326435396430313031646137353437 +66323763333831623936373232613135356161353663303834663665656632383362386164663062 +63303438353962343032616463313531363664653461373933323934663563333566396464623538 +36303731396239303466323237366237303339636635356332656230323765633663383364323535 +63646136336536346566666564633338386537613331363663313666323063363764333463353366 +39316138316134646133376331356339393862373463363862363063306366353032616263393430 +34393938356263616336646530323436306437373138393864663835656136326264386433383536 +31663635623663383931333235663839323162386335336433643138346535656566616335633161 +35633137616332636466313832656336303662616665666165356433653966343433316331366531 +62643737636335386630373635313936396331373331316331373533663638633139396430343537 +36396131613734303233636336666566663137393962303665613463623834383436386231653337 +34623166386438653638353434306638616634343131346131643366646362633239306133353134 +61386262343433653733356539353231646638663632653963653465353536366136346531326636 +31653336613763386264346163636165646136613735383239633835376438313238633435336137 +35363833666531626634336161313634343636656366663363373830346434383066643237613536 +66333936323565333664623262616239666632663061373662626139373165656664353835333939 +63393630653737646636653764393337343761313164656634386465343361363533363634396465 +63343937393665623862356335383865333839653262343037636439633837376666386366313065 +34343562366338353161326332303439303465383664396465633831373737383137633232306438 +36636436373134616637346266303030643838303666333439306133366637323736616431616532 +64383264376462373330393262363234656565613831666362323331636235393664623861363634 +66316661663336633936333738646563626361306330353665396439643064393363653833633630 +62623135316235323232333435306631323531306335653863363766316365356461653130643032 +61326535386338383434316132346131383666656539663163623439626432373635393139303835 +66623032396532386333636539323764636662633435643265666333396561366662353964666161 +64666532393535666562626261653566393063333666343162366563303261656332386331666363 +37306233373334343933663033643331623664613163623765323361646132303864636232396636 +62363936646631326664633566383439383139613236646335386433303133383661363664336639 +32383536666563316564393732326139383966313763316635646264353465303739363766613664 +37623164646530356165366536376365363838353463646134313835643431373935613265323539 +34636264613633316565656530393730363830666436343037613730363963626531666362613438 +36383533353935393434666430623531623034323365663861306430386639363666323861353564 +33363062343262376138336263363865313236393564643034633538366364613662633034623737 +35303666333236363665336536626230313761366263656166336331636538363531306464646234 +61313335346131316130656430373939636164303665616164333062643830623865313664356332 +62633332643937653563633231373161356232333931623835306338343532316536636338333661 +33656136313039656135626162393938646562336264386334666134333261353065376130383330 +66613036363234386663386139663036653331616566363761653164633436346463346664666136 +65303839643961373134666134316162663939663136386432323334363535313063663836306137 +31333365386662303138663263343931623535646362323237383661646137383831353366323735 +35633137386236393633636266303234336265343736343937366231633332333762613330643532 +38343535633236333033333136613830616238353363396631636361623861373364623834363232 +30343537336336346635373931623630633137303638363039636561396134633462666639346431 +30613466643233656633356437613232663533333936383562373539316537323536323133323437 +36303339663231663734663330653036366634616635353466613833333261626332316466386531 +64613235343731363937626235313432333335373166343232336663313530636534353366646439 +61366330326436623433636232623239346336613031343736666663663136353336386163306239 +37383930336634653565346465313265393938633233613566646433366264353162633130386262 +38363330623035656137636338633238306435643266613362323366393230383835373333363464 +36373935643932666530356130363139383037653435643538653665633636656230623935366331 +30343264653061383931663661643633613339663063623365663639663136303434356532393136 +62316636353964343530623730646265393361643861393635656163306163646130386663353237 +61646161326533633764616139303237646636623665613561623564343637663936663131663965 +62336332303838303430663763343764356638643366303639653636346430363737343833626364 +34656335663132383034626230623430373463333930346364366565653039366262666463353939 +36623963653262366363623132333437306635306337343030613138396336633335613732336633 +64613439376563386162333363636631373834333664306537656130643062333066656633376630 +61613966636538386232333837356530306536626366616538366633373336303339356332646630 +33326632653939363162666664343763353636336464666536666135643734356634656539633863 +32343838333963303965623938616166346636643162383038623436366336643933666536346531 +37316166393362306565643462653132313735373663313061613838313330636538353234643835 +37353431623939306130623534636636326130306431353862373531366432653432373362376333 +64663566623731376464323333613231633762623539663531306636393332303665636638363866 +34626363363532386362653362396436336666303337386665393138336434633139333737383136 +38663063373535653863356464323866663430313633373033326336346266356436376132383136 +66386462383732373062323163353330653632393665303336306663346234343966383632623533 +38336164363636386338393937386534323665326234613864303936393233326264363131346430 +62313066616635386330393230636137333062333361353130376635333737653861303266626561 +33313337373534623733353531313966306364666539643966376635633630393863353935346462 +39393064323932333236613536353430363937653630373063333766326430393462343839363566 +33366338373936643362623737613136303739393138643931323766613061303132623461613961 +62316430376433366265646361323561613332363735353936646461306334346332353630353733 +35663931333366366466653134373131333064653737386634343238333063623966383565346434 +63666162366231343963343830633863383164663931353234363763346564363563306564313461 +36613833346566656562616364643964356234336666323162306239616637663161313361646464 +30373034643730633033646263323038343134366238623832343439373262623166323730323163 +65363662313934346233633465323138306633393632623864386238386631313037656661303766 +34323630396330386330613735643766313932623038346638353431646232383364333165303962 +33623232303430333836656531343935306364623561326331326138323364623261306239383439 +34353438376332616263343033626566306162326538646334303061643236383134366662633666 +39393639663430333665376666373565373730316435653663346239313139373430383034383435 +37613131646165366561636236373264666639623036653033393032353135623535613630323331 +34646566633138613064653230333338316437366462356562666361353933396535633630643631 +34656131313031386330333633646261373935653839643435363733363936646332366466356638 +61616364663331316461306137366232626333396462613064366366616634353336333636663939 +33313730616666313533626433303564313031653237646432323965666265646666323161373130 +30303666656234626139653334613134386362366332633535303035646565396365303562653133 +64633663333533373166383466373736616361326237663361633536316636303866346433356163 +66656161333063313438353337326437633862663634613463613937646132623230336137326563 +33326435316565353130383033316532383162396339666662646337663534653964353239393639 +30336639616365363432346138343739383366316639313439623064643564666531323166356336 +61333935356662393530663232656663376263633537633331626533393337653066383364666663 +66393066366538633435313135376662653366336538373038373732396164613736333064623932 +39376262383162646364313533333738633935633134346438613238303330366230643765316162 +63626161623866366464363731306533363133373135616363646435343833333162333232623638 +64353937356331613730313961396563653465666633616634323432346234356361633034666164 +32386435323731613066396263343061626138386433653763633438633532393533383366343237 +33393336613763323236653063363532613761346464666536306631646334643434393733613065 +37303832376465363065333763666265316630386465316438376132656363633137383534306165 +32306662303531393864336333343461336138383337623466633238373536346330306133333534 +32323361313062313139663465613433623034386263636466653131346561343039306566393462 +66366534333737636637313033616366663432636231343330323461313937393639346663353665 +65636263313564636263383462636363333033633466346461333332633439393635386464313138 +66636637323663313966383364393531353636626331666265353765303132346465373136633430 +39313066643535613639376630323133366666633738376236333230633065383731633961613763 +33356166313362333339663031316433636535316437363638306236356233306633666333653332 +31623131303636663839363231336130636661346138363864363261666231336165633637353630 +31396433393462323439303661613238623961366335613330383436643438373633653735343461 +30346430323364616265323936303839663765373036363535613361393061666135316363313764 +61666337373839356136383863373163353137363636643335383237656233323536393036353864 +31306665376538376136653131646332626463333661323736663834373034316534666566623231 +66393934306662626365306134383565326266396361653730316130393234326133666461613630 +32373233663639366339396531346633633537393333613166366665646364326539353738653434 +33353830656330386266633530666231633964383161656438326134643562326130613961623966 +38383263633866363132393862323731613134373733306335376562306136643461636464386364 +35666361316565373531323538326566383632653339633865383964613535306266383534316435 +35333764373331346135316232323830666661636164623338356337303138656466346166303733 +39363065376562386535636537396430653639303637653836386166353239616663346362633932 +64333631356239363537383031343531633134303733323639663732383637356463316539626332 +62663934303736666136663364336530393865623361386237633334383464376131356461376562 +35613339393261656163366338663033323231396231636439336666363665333539316536653233 +61666435656337353630616238366262643164666665323433393035636535646664653166363062 +63356334626566303231636662396264666230363661633932383463663065373538623561326334 +30313830336237343233373136646264326437353635363865623564343933383433643662313132 +63613832323464303231363838643236323534373266323132636334383237336334343332383638 +63323334316631643761653638376366353563653463376234393233623733613039393531336338 +64333431663664383437663763326335623432346339333935636364643830386536316137353338 +33363066376433366261313535636362303238616262323730303630356139386162636133626464 +61333963626464653565616362336639383033356331363163623434313631616562393536343136 +33353063666336323635363239333266613464393438323432656131393030323065356361376231 +61333565633034633933623664386563623261373863323834303730646139393439333837323831 +39636164306638666634663161616634373435383932303633666138353065623264363066323335 +36633364363064623766653861353634303033646662613534623631353837663163373535666662 +38316636343038383662326233656633363237653865363663393264303232373639333238373031 +65656261663430646237373938353866663238313235353637653235306339373833303634646439 +38336364613662343236303163656531343561643530613237623230663661363864656663343962 +34326439626438396437353362323932643031386362663339306564306435383239656665323861 +32633163346535633430353462643166623532363430353164346334663334653135313261623564 +39636237333632366337643331356263633331356131626537343330653764336133386139306166 +30666636656434383933666532353831386537633963376164346433633064386234626166333261 +30643633333834663737623238313430366134626361653836306164383131346264363937653134 +35363662363739633835376637303831633732383132613038323537343933356162623838356534 +61616666353137343539303065376264333537663933393933383666303039633464353462656264 +37313066653366663235633736653932626138343432353838363164653162386537333538303630 +61383139623233656531383338356230373830353766343266333934646638303562393734303634 +65643861643365643835636138333162353762373130396136666231353863353430323932653432 +64356639386332383934333332343031386239336236343366666465346165613739323030646231 +62656562626462313761353733316334393063303366316638363631386566383061623562343232 +62343133613936333066623364366463386661646439643564653632616464306230323434323535 +62373364653437393664336362346533313032343130383039333436356236366539663733386638 +38353537343132396161616562653165346265306331323839653933303439613435343239656631 +66323966396264633236633039353862393533383731346631633038643333383030363464326466 +64653437656366356463333164656534353464353135313562336136666531643731306130626464 +37623339366562663566393835313762386636393832626134303638393830333864373830393763 +32623966393633663263396632313033626635306365353661666231653733643138316139643031 +61393865303839323138623065346239393363353761373563363732623337306161376564326331 +34366332653931633932653734326530663832303961326365303963303461396535633537386536 +39613466636330653065333163343731623838376435323832363639663666353932393366393364 +32353630393230346464666164396631386430623164303461343036383762633962343064376234 +37333062623861343864306431326338663430313963633530313937316332613965646464616331 +35383833306439396636653433383161396435376530313530376664353166306332353761643234 +38633065396131633739633534393363343162333963323761396138613238313439636436316564 +36626362313638373432616233306339303734333163333437373136393130323039653834386162 +66326533316532646133373934646332383063393162653833323266373933313263353361643063 +63363836306130656535393033363331633066343763333265383935356662363332393762323061 +38636462633965636366616132396663663762653063613964366132663230663062336132363431 +38626336303235646137653661663436396137356335646630653735393330623033643061396236 +39666266363666353033396363316431653931623030396232643166353636353339663761346565 +39383034653531626432343132643531643663656636633964323262666538663535303163363834 +62643037386635373031323734623561653565313066306562386532643234393662306331653332 +61366338306566663536663962653339336432663037646230333535373639626139613533646135 +31626461613132333635343430616337613266383539616166303833656262376461623533393763 +64663733303635646361656366616661373636306231366131393933336332373961633963343233 +34663335333262336637336562303835346535376633636430363033653833336464623331373766 +39393766616562653066643363396635363133353166303934383638663666393736306434323832 +35393336326436313065313766643464353862626333646266326431613531666663616237623465 +34666537333635666637346339393764303865613931333631343539353030393565663539623037 +39623234613363333739356432626566346662356366366533613039306236633830376464333634 +32623765616266323166613661646364363735396664346339623838313462653431613732646537 +32666566323763336564633239356434653131353435383238356161656432346563363165393432 +37656539393832336538303162356432393765396134383762343262376165383431373231666332 +38303535396266376161396230356662333535306566393739373062313962333239653932356135 +36333630343864623166626566343534653266626233383730383862353064656164386531353237 +65306536393662366464656562396361633036343733343630346339633264323862613463646436 +38346663623231666662303231313764373835646231613239383033383565653163393565376630 +61316134353366643032366634626439373536323234666462616231323239303665373534323438 +39386164393762396539383139366335346237313632376263633035326638643661623636316362 +39636237353630303862623737663036666536343539623730353566323930626362333534666563 +37306565303062366631306561306137656262336366333334376639643136633437306234383664 +63393666366336373534303364313461636462336462613066623763326230383839646163363338 +61373734663338643436313233363664363235633261393537303339386338376637316330623939 +61323761346532656334663333346563633762313935383965333362616233363038303661663537 +39333133316364373564636236616336326534633932373432323663393232656338326139656132 +33373263353937373263383636396130616535363563363734613438313639363237366437643632 +66303962663835363137663261323962613635393765653238333336393761306133653161316338 +38383966373733353932386566376638306235633265313739333962306333316239643461613066 +33383933616438303062643439396436383539666432613537306132383161646464353738346334 +38646438643735343533653161656632633332306137656431306132366433313937626437353534 +62663238373365623561373531323231376466363461646264613733386566646638386434353464 +38346331303230376435613066306337363030613964316631633737356433313964316166616130 +39613261666466303164353935396663326465643063623763326634343031643433383037666530 +62376634393034363165316136343432326435363766313939333439396138363633396236393533 +32666465386337626339666437366366363034323938663232313135323439386139353531343466 +32313835323762636231336232396666613738306639373838666234376638336534643936356165 +35623238333235383534316139653033336532333135316565613262363333346537336234396263 +66313334643261323136323862663139316134346363383564643061376565613463303830643363 +35646335636434623031363632623437633866623163373038396663343937353032643231376136 +32623462633764303237623565666538373334313232373030633435646238636336303864356630 +35623363623034336363366133333462323334383533653161616666653164303365616464333739 +36396637336461613833303563303831383263626230393734663536333265316263633264363965 +38653430623737666335626233343531316339373638633733626363623166316561363866316464 +30646162303631653565316238316237393732313736616665333436666437623135393933653830 +65393730356166626330613436643262636434343761393862396232653961643035396234313137 +37336464366435623562643665303239666432303731386561653137383230303064643166653934 +34326163396263643565353931316437333735383134373635313236303134663432343334333263 +30396334336266333566613566333363343362393336396661346637666634313232656536373034 +33656133353138333963623037306433303237333637643235373438343134613231303339303532 +31393233303133363161363064333766653532353932376462396537613261373766303765626661 +64643563396531623736333562386136393165656237653430336136393231386531373062346361 +31623933613037323837616463393139306666343363326330303162323666343335623232653666 +61383337313665643932363835303265613330303139653034633435343333346236376631363137 +34616133653434376632323765323164626231353437613839636662633238646365363161653563 +38613639626263366262366138343634336466393731333865306236303538303139343164616334 +37353332343533663434666431353534313033663035656363323836323038656530633739393963 +62303832656664616338636663383130373265616662643035623862663738653235643465383734 +36643039303936386461393366333037656537326635336436383665663263366537323961366432 +31303237333065646637656230663563613531623561336438353064363736666362636239386236 +38383132373938666262633438666339656531383366613539303163336463623837663639393864 +35333336366662663735626163356633396435616662613139616138663663393066346631306537 +37366233633432323731336131303539333761636535313034663631313834303032313938323864 +38303032343335633631356133383237383733396366323636393865383664363439346562316639 +34386335343362653331383938363830613037353130393563393565366161653463333638383965 +33613435353530373037396661306464373131633633303431323333383039356131346339613362 +66383831346531663266303530363264663364363463646337313233353033313631346364633361 +34303464613131653062313731386338623830306563316263323638393134653236616534333730 +35333161363562656661613664646235303230653638346432353533626332666563306164623664 +33643466303335316232373731313661373439643136393335303335666563383538653162396637 +36316331306639323539343437653731636562653661333435333666303937343463303636333239 +63306537306464316362313965313036656366366563646535663536653135326630346333626331 +38343261366166333666356566643633336239623937343765386138383935656635366265383339 +30333461613538653161336434333031333134383530636165623938373237396536623566386466 +62303966613036396662643438323261363131343965366362323661346666326161636665616565 +30633930326566343163376430653837373331636132363231306535373035373533306161636131 +32326339636565343964663035646235613366353233636565386337383765393730633663366632 +39376435303963303365636662653464366563646135626365373465343833616262373561363237 +32643839623531383933663937323338303566616536646332366630336139393863653631303061 +64383061313734373034653138316364303465353334333639386439356139313532343437333835 +64613863653266653336336266643161343734373165323432633964666131363834363866333039 +31333130623732303539363835333661643366333530646338393437653566386432386332656234 +63616364393437633139643661343632303464343631663831303037343134376364323363613465 +32623661333761663461366530656562633633396137323866656437313330393538366566383161 +65393537666338306432353765363564656539363035353438313833343337643433386330613937 +64623363303263343138643834663839363034666531313733363136313566366365636333393264 +34633330653139383934393365373037343033373761663333313239313365376362626234373966 +37336632336239346337346431643436373735303333363664663034363239643330386163356538 +36363831643934666232323834666562376633653937383863393762356663626537333632336233 +66356663636233393061663266653337353062316135653164396132633737376430323864343534 +63663939373866303837616434336165313731383237643631613836393735303165666231343838 +63643865353234323732653530383439356331386434313466316631346638333430366630633362 +36663462323637336331383534653733363062353562643933303433666434353132623238663532 +64623831376436636133366236663763363136663237336164333936383233626430373865613035 +34383735376166623065306530623666336134353163623138373235393365356337643731643963 +66333736326432386161306565663239663065396461376561346666653332616564663461323435 +33333338666465653862326663643031623434313663383162313435633939323561643363333931 +39666235303532303833343030303234343238626137353839313831346662613139356562656231 +64306539323863663231346537333535616134653533656363663362666461613132643632393861 +33336565363337306633316633333137646565333937346665646463633163323733333139656165 +37663634393163663263336236366464316361636536313031306164376132386432636430393134 +38386261333932366263663062383962663437356335386262626532313232373939396632363637 +62356337663237323463376364396334336235316632363131376666653061346261636364636430 +38323130666464306365333736333633393363656666333937383863646238353766353239663134 +34623634643734666136333161386465653033646631336330313332613233383466653737343030 +62663334316539613765666635323965663665613964666133306666343930623363643834643630 +34666531363533633361626363353334373935663433326339343366373964663562313938613961 +66373261376131663963343462663935363935383439353937356537626561356236643365376362 +65633131333736333830613464656261313630306439323534653266366662353065363566653065 +35346561343661613335363032303936623662393862343862313163356431663862366434626464 +33323565396433666537316465643335656131323266323461623065333033303130383333306530 +61323135356161653934316336303731366464366530363831653961363565623464326365656165 +38353062623165353830656262333164363934376630613530656265643562303636373438616233 +65653766393534653832363965333063373062333338376633306231333230383865636134623563 +34326139646264353430393262363162323337333430656139303830396162643030663336333739 +62373863656237663737633733666436366562396639616334383065613364323562636466626161 +66316537613639386163366261626466633065663934383533366465346130666630336130623734 +30663365623865316661653030316562663334613263626461636162636631623031626261616434 +36306231616665623533356232323131363566326533356635653466383034346532396435643765 +63353664633361326536383537343464313739613334396230643634313430656231646264326632 +63656131373762643934333363656133303038353432303437643032373066663833386339316335 +35343537323830616330656538633565326665613561663061646132303363326538373863363263 +66353539373632323233393235396161396662613366626530316263633438653764343733396330 +33633039343930336537363436326166373662303430383038633239646333303531333734613666 +37326130656439323461313933333731366331303031623134396633343035613734613432363663 +31353763353032633061386235353837356463616164306537396664623062666566343838666365 +33626462396335396335636464383661393430613735623561376637653031373930623532393631 +31353565616332323333303238636635393365353732643738343561316562316262636466633435 +65303235353936623034356334353232313630363165343337643331613138313662613939663837 +65313037396466303865343238343734386630326133646161353739383263663339653637396538 +30623136313139636663323531656236376330383766613261626236393230626662303130323537 +35643734653234303963396231316661326361653536663564376634633465396233336439663834 +37633237373932333439303131303465363837656635643730323362306661613634326334383231 +66643537623939643139363230376432646534356366623135643738333739323432323763326132 +39353062663933393538386365373338396464346232633366353332383937333163313063313665 +32303437363639363730643138306365643535373164626134666437353332636462386562623335 +63663064623039656130653738623035353137393737616161626139373561383661663432356433 +30653962623666316466636135393165323435303362323031313039616265626431396664326233 +38373131353565306330353538663030633665613366646161633366666435353834373235336137 +39383464343233363638343164353336633964626531356432313038346462373035316364383837 +66396237623465396635646264663066363864353362633636666561366134313532386533326337 +34303361613866363637363636303566343831356562363337646637623831643636623466316338 +39383230383439373933376436343264353038396661373239363566636661633333636464643864 +30366438366233333665626336396230306166326334643631656533653832623064636130353662 +65353164643463353137333535656432613732333132653237336265356134326163346439623730 +30353932326466396237643232363836626165613964663737323661626563373438656236643332 +65343534373131623337616232633132346232333333356238663265636665663661373638356534 +66653533353136656262393266653033623938306361623462363534393863656566333430323734 +61336630333766373962633039643765336266333235393734393832643561666536393264636635 +31643239306366353166643736303331386361333537623864633533393561663534356232363661 +38373165376265366630346331316431393166376633363537333232346539343833633461336366 +36626632396532363032373131656365346139353736363439396464663233623032306337303465 +31636166333030313264333166653064336434306564313462313636653437363362343130323239 +33663931323966653533316266613335316138396136343239623862383763653961326565366430 +63383130306333323461623364393732313538396363653234373133376635653435326265326162 +35323333626361656162613662353962626365616131376335353337303661346236653131626534 +32393466313536376232363264353462333663633931616437366531336330356664306335373731 +62396339306565376463643832393734653435333933646433376662363732663161386239333735 +36653739363365643562373631613833633631663734623263653030376234333661663262323139 +37613061646565626132646139393061393336376261633565393530313138653864326332643333 +34613836393662653238356232336532643865616633343530663764636332633632646437313161 +64303165643662323431663763363265666334353864633661613532616137646662363766353034 +32343334313234653637323432636261353534376138663666663337353934346633316133383236 +36666666663038623063633331303761333035363864373734393861376237616362633734623934 +38376535616636366331386239616365373936373339653030653862343763613136303431333030 +61303366353433636133363839323035366563316433313237303438343566653631386465353435 +62333235386364633866393838373039646237613637303336643936656532643930666230336561 +31306432666463633632656130366236313363633236383431653266663166316339316663303763 +30393231613862633532313738643562313736363461323764323737666634633030343465323465 +63653033346538636561353665313761363632353230356639663337393037666465313939346535 +33356430353161386365653936343238666238346130663733396466396365393839343066653337 +62326438636466646632363162356239356561663165396163663664373733623735356335303232 +61636137313364383461663364363861333135646630383564363132663030346430316661353931 +31643339343765383636656630343330653562363262623936613466343631613065346165343737 +63303866376534623163353061653336666437353837626633666166343562306331393031333139 +33303136356431633334653436643530353436303633643733346238336635333264333233663831 +35313034326433363262333461656634633363373238383565316239616535666438353134376564 +33353837326231323536393966623038386662386565333032363066653332356166643365313765 +66386363326364633930626261616431666366643661366666613836643535333361323133653136 +64636533633331636335636265353935343166366132663832643039653034666661646364313432 +30343364333262303462373562663863373636616561653938376637316166663832333538383535 +32333739373536353432386136346131653630643661336332313133326161366366663133616461 +62343333396461346338643837316261303264643236613534306464373166376631353036616263 +36646130663333393931643139363564386639666462646434303366323661343939373265346663 +62336134643238343432663966643035303264316331616532303962363230323866383831656637 +30633261386363373337376632613139323139623135396534346433343365386230656266383261 +33376132366639316532653762663830666633633262373730343132323837343839373736643063 +30386465353763376465313836663535666431306435353534633035643266653732376534336561 +32336234636239333236393134623062663538313330386431656533613530346439363531383230 +65663638653634396366343039333935636134376461653133303130373239363831313562336165 +35656531346337303235366134666566616438313838343066393766393865343533326530333139 +63303735363736333263363465313635353833306335333239353534383330336338636231336562 +36383332383830323837643864626435366364336165336463646333313135373330313434336530 +65613365663535383133383265653233623739323964343731373035626661633439653931633936 +64393233356665373466363636373561303366336133663564323832373131346432363866396462 +65303832356436393861633030316539663535616163306436303834323063326566656635616631 +39656265306461333266666433303861613433646236666533623537343435333361613263373130 +35643965313535313630303761366665646334613638663537653932373935366239623637396665 +61386233313939643565366536343562396632363361363536666533656462656534356535386434 +38636433643635313961336335623431323836643237343538656539643331313432633233613865 +35366132363066366638386530306431633233346535376164383261613062313936383065343865 +65323136346139363939633433306637383863333034393831633339616535343136656265393664 +63623965363666653335313835393236326365353932343936386430616334626263343331653232 +65333861643539613939346430663335643565656438316431653433613935383731646535343663 +37306537613065353164336665386534396434333763613732326666303738383461383333313566 +39613466633738393233313034636561306234623561346137643835643364383035626635383162 +39646532366437613566626533633438306163323235366537646435643833306433656236616230 +32666437623465633462316461376133633465623036373661656530666564343962666430303663 +32323932393738623634306335326263393733343639316535386333376633333835323865613562 +36343365366663303537346432336262626365386431386466313930653464623834333334393266 +31393737306661626162313831386165656262663061373930646237373233366663313564623135 +33336536623131383862393263643134393833363362356338313030316165373834353137333363 +31666537336632363932313834363165336261636230396262393364653033656233653265373266 +63366164616532323833373936336234613536313766313762616539313163613037386666663637 +65613233333939666665326662353365656530316436376266653637643466333430383461633365 +65613165616536663364643732336238656433346237363765653862323035653062623337373339 +39326535376434346434306439363265336563363163616562373963373366316235626461373830 +39393330313861386434663763616264376134343366636637636135313064343561633937623636 +31636539313065323939366237363939396465373363373736666539623138653061663038383330 +34353736303033393465643437323038316434373235343739343533316434303939666536306531 +33646331313233373466326565313338306263646130623932666633636334303532616437366634 +30636136613335343136363439653933333135356532356535303438383531303738653233316334 +34653339663862306234663333323831323937396136353937343364636561313365393134363333 +37633166666366623639623063346431343333373234303435313765306437363530396239353137 +34383765373330303639636632373063386136343231666133383432333932383665656264353930 +66333237373864373264663463643166336361343838343138666664383966306362653361613964 +37633736343033303631623036396563636266333737343936353630303837633765666537396433 +35393931316634646639393834376635336439626636363761623663356136646361653866666430 +33373239386662373938663063396437663837623435393163313238643561313463383261383031 +61323563373830663532653362623166326238373066393130393132643131393037313930363330 +34336561383735326136303439346461333131336334316361373739316164363464383434386433 +65373365646562323764623333356166643530386161633931626330393537343933396134336539 +62653263633366313234666266373737663633316436386137643464326366373339343065663432 +65323536363062333463346632363838393163366235376363333332666636376137396638383331 +30643166333333353566393234663339643030393930613634316132646162333264333532363136 +61363832326238616664643432626662303761633261663530613036313035343566363564633033 +35386137613065373439666433363461306139363161656531393266623437626362373734653135 +65306631353438333731343862373637346331646465633761386666376539626337663930333338 +65633236333339363264303733363564363430326631383238383932646636343539623832613135 +64393666623531326435343433616334653930356338316339353536616436356564333066373162 +66653137643263663935393934353964396365643561643531396163376462313538613163353834 +62396630373938323139613364656165623165313534663638613532646335656233653539663761 +34396264313062333439396366396661346235373065643636313334646466306664333737663632 +30343061313333346336343065313166323032623665623336333038636261633432376134626332 +32313837316632623236393962636331356231663132346532636432666366393864393636313433 +30636163363331323564336162353262613039346333613735646330643537303733653363623934 +65306562633735336334656530383731373632386435373436666466306433333463393138376632 +32303662633236666134626433323065336639653335333963316530663030323636303566336564 +36316262393963366231616462643164633066333766333239396537633865336265616335373066 +65313935343130376266333932373461313264666436306531393661313139373038633232336334 +34313635306661363532653662636235313536396137626638623665383464623836653839343361 +34656639333730353765333363366264343137613666396262616539333136636139613138653737 +63353064366263353935623732633432323336633837643831393564393935616564356261356133 +33626666663537663061326631643964353136393638303963316238363864666536626665306137 +63303434346264306664313763386665646339373363393561643732393264666335653434333265 +39376537303634333639306163386132623966383238626165393830313532303134366636396531 +36333731323463323866623464396235313339623336643432653364343566323234313066636333 +62326163666538346366356366613766343231303162613837313035316432663331653566323435 +65366664303766636233343435376638616233656430343364633338643364633537333836383438 +37613762343563336661653933653938643830326530303237626261326435303963656564313835 +37613264383332653364613361353762366135393236643761316230376133656535353031316162 +31643866633361336463303234323735353163303065623630303262383438366631383462343966 +39306463363164373162336539306262343039306336323766396236636465633633373430383861 +32343864333263333265333366346239343832326538373536326334663061366164366232646439 +65353461643065363364386135303537373862626332306163316137393538376566643361313663 +30616531316533656263383436323938653234653434313262616262396132636463663562663835 +31343762383866353865613664643166613566626133303132623133303036386365393365316136 +64373330326565323335313034646537623665616239373665323233396237653936336234363463 +33386538633965643934616338363264626363636366303661613362393030313366323837616533 +39336334633264646566303765343863343666663961643666666437306163386164633932666664 +65653262333339626131653537656636373065386161626233346134643861316332333730376538 +38373833663862663861626265393564323830616133303934376639336638393633373835383431 +66363735356434373765656663316330633730313762366630393262633839616364306638303034 +35313938393566313433653034313466316163663862373837383837636266376237653833346138 +33386135366531613564313036393038663932636563353766303430366436393538643736633832 +38393962316564383863656164303336353738303966366263303032656163656566633430356232 +32643630323465326635316230343434626634316562343464633966353963666230386166396531 +37346331373065313764316166623963626461653365306633366130663764353937636331366131 +39343933626430393736313231373962653162383638636132346364373261306663366231306263 +62666637373237616361323062393163386565333534613937623832316430653666623834386234 +32383636393239623834313363313030653139626661336330646136623365376431326461353463 +62653438393734383063396165626433336430393337366431343662323437613865643634396331 +35363062313532666435616436383930316233653732363435663936353964336234616333313433 +62383261656262633932333838373239303935363831386632623336333765633636306432393438 +33323763633961306565333130303365333265366136363861333064666461636134313234333464 +61353530393536623364626266353962633766373333346131333863303966626631353636363264 +35353232336335343432373565316561333938303132656233633332373939303366616537346163 +36313035663163326363316262396639313662353130623431313232633830386465316561343639 +38343261383865353664316135323764326636386232663737323461316666353265653861613032 +62616233613034613334316635636335366261393035333930313439323436643134336265653038 +34656439626136613837656163373664306461383463333438613235646364643665326665316264 +64363630353862636539336464316365303762336463616265376665613331653436363965636262 +66333262386234643738633230303730633731386564383238663138313539623865666638393139 +30663561303964656638636664616262656331356439393361396236623062616638366165353835 +38353561383737653238633239613539313433303437653634386463363734653532366433653864 +62643038353961336630306134656463623430643064376130393562346435633933663535353830 +61376366373536616631336464333361393439306265626161323232623933353139666137316138 +35383163326432326336626263313035366266616332663731353464616634633365376137653464 +30363666396462393735653836383764396562323430636462633732623033323832326232356238 +38376662373765323934613233316532306166336163613834363262643764336335333139363035 +30353734663130386631663339303739333730666538613636326334313730353633323137616366 +39636436356538303462366336383364623465636665643639383934393330373861633865613730 +61336461613531326437663265353234363161656132333166363433656131656137313361666330 +35636566653630663632313364666232636461353561336538396664366330383964613162356466 +62363562636365343037326136663036313838383939623736313731643363333739363535323639 +34303632366233656166316438383239323236393930343638363361646331386337383733663636 +64626261623437356231323938346561396532626633636431633238623934623039636438393663 +33373664313939643861306239623938336133643731633065373235353032363761326334623362 +36303065633761363664643537666561633931353732633036346361353865323134323863623061 +30376164396532363063663066383439616336363630396636616561653666386166373761343835 +33666437333361616139613961646264396236303537396337626661363236306463383437623333 +31346230326533373762633766353563643932383331396136663338306364303062636636323065 +64363835333365613836343239623730636264643931643536333237393765633161636131346332 +38663165666431306366333632613363633966333239613061356161323232653662613163616264 +61373134326138383435363938366264343462323836353736316565643033343534306639336339 +64306564336665633835303630383362383365313439333835303961316534366365353336323365 +35323036646530663738653130623532333237316365643931666563383161343734383765346237 +65653761343263356231376331373730623338386238613337393662373465323062666562323030 +36663331613936346539313430396435666231386239653264666266616539323139653236633038 +66313731363162366166303539623666346563323434366664663964323835303932653439643864 +33626435636433343431323034353637613232393061643134313264643364623561363238393834 +64343832333263623337363264316630383738323738313164633131663861343936386666343261 +34373866393631623165383863316534326633366132353039356137383737356436313263373936 +37633865363737356264666264626630316331663737356464356137316535336262363761396166 +63633662316332626661356334373535383736623836383230363164653636343636633437333431 +33363232643335626231393639363037646564396563383566346632326238323237353239613963 +63353933383664356265313739643938663335663261633065396334353739306139623766623864 +62626666323035623937363131303536626265383135306562613764626665396661396437386266 +63636434393933316532306135343936343539336530373563666462356239383864393131373063 +30636533343561333038646339613163346435383766616138323061376637383538383436326433 +66343463353761643161346537306536373234333463643166396436303436623163623338656534 +38643462373037653537396362616462356335643632306338616332653365623133356132373035 +38653064333533663537613965323263666236626463623534346130376461656333396365623638 +32353139643766326137663865366464613932626264663366613437663431643536613365303162 +37386131336161666438313431313064326230373835386164653161333534356439613036313065 +36363262643064626233663130326636626633336261633134333839353430623232653565303163 +31326331366161316466346534363935633237623335326661643263376266333730626563313661 +30653739613437653337633263326237343361353862333331646233373439303632326132613363 +62393638356634373336313661343033356238336432333364643038373130343433363131323064 +35316132393964613637323462313964303966356265356166326164313636353733323631373230 +31666631393531666639343636303337613563313862366162366162616661383039346534373166 +36653733356339333837383036643465376666323639343261303361386539613237663438323065 +31363934656562633534333036376264636331396339323362636261373836643035353336313466 +31343138373231633765323066393332633264616535616532663430653831323038653032613265 +32333033326265616433303438373136613230356430633239353839326438393766663839353037 +39313830313564613564373363656435646337636438376365626533613637623730386430336465 +35616137393033613766376166633034336266366630656361303339396137306335306530646233 +36666564366634313039393339666665626135663433663263643530646134666161336534663131 +37636438353036383838323766633738303262363866316333653038333866663836623562316666 +65396531323863663636666365393236313539353138363564626233626234363434363864613863 +31386436643130306139333334646465333666656263623261353264656532623735653637366234 +66363761303463323165323436623461323338323636663534386266653434633361323132633135 +63323366613038303538383966316361333730663734353739326163373631633737366135386333 +61323163326161343231666264316132356534356235653964623237646136643138336430643762 +64313461333035663835653964633664663963393164376339666230323663303136646535336130 +62316331323033663633393733656137393866316263373135353363613938643035623564366333 +31383466373234636466313630623332636436326231333436356662336235326630356230666562 +62366531366437393133363264353135323736386339646261326462626362663036613130323962 +35333231316338373165643661616565356232346562646263633239643433643438653538616563 +61393538343732383563643334326339646338646339383061383564333338626562333331663262 +37306362326533323431646462336563393436326435656238373136626662363139336531303762 +66623332393133323065333933623432363935313036393630636337653365366636666432356331 +33323233303461326564653765346264663434363462316537333733653665343938343065633164 +64303866393661653131636635336535646462303434643434633963623235633561636537376137 +31336432323934653736626434643838663635333232633162386162356532633639653835653863 +39343432373238663935396434643461373937326534623662663035613239313663663263303233 +66346565303630626536313538633337343164626534303331643065393932653338653438386165 +38303434666133633230653164383662316438336236373666396636313832386262373934336630 +33396462303833636561643336623835333033633664373334343561393732633862666439323366 +64396464313434303834323665333632653433303031353032663239643964613732303132393835 +37643138326362623637393332383138336139643737663762353034663132616466396135396335 +35643938613638343738653938633833306337343931343366656630386165343363326665636332 +65353431663861363136383939336231316462626362363135613063363265346436626432366364 +37326632393030643531626462646630366539326366386436396465313565303733646433393132 +30373564623862623236323834313465336430323739356330383466636564353062356338346138 +32616265643836303731303239323262623263356635366165653436663162646136366530346630 +32333565623964646261313363343262393766336530346630386439643865396563383433663736 +31646430323566623930383132303066666361303162313638323036313263343132363834383530 +37383065393661633964613533363161646133633437336366636266316237396234666462636264 +32653638393033386131646433313139383638336238643733643833326438353131353734336532 +65373331623265323166373737383936386363633231633464663861333565326163326235323834 +62366139326639396338356433616637356230663331616132396535323633363435333631383662 +37393263623739383361623365373232353261656333393637383637336463663633333732306538 +33346539613966323639323762633863616136353933376566313430333863633536393664653132 +61613961303432386337396136313132333337343265623233366430373734393233306231613339 +64356465653937653038303137316466633563636236666239366433303536396465313365616365 +39303234363933343663393264646432346335366538636139303765626438323863303838613937 +35373863646438306333616362643833323437316339643235633234643532663765643665373132 +61396237323833323839366239616138363632303163383837346639623161643466356161313836 +33366162626436653631653566656235643665313266333738356133343561643133356462356134 +30356434633335616161386439356563363036326336383665363538346331666332626339633237 +63353566306138643463353162326239623830323432383133613966383039666333666639623132 +31366233646531316432643664636537646633373436616136366532393534316630396133333738 +35616431616337653035396634666463376631383936633235626239346666383831343532303030 +39663139626435346537666465383239653066666439373237353932626637623832613463643837 +61376435653632313838313434643437343533366131306334333431366232346263633239643466 +38333336623961313031313930333731386338316261626130633166646364373933363430666135 +64386664616238393164383963623465356534393930663037363861613635633935333364323837 +37663832326331323566303561353633353035386637616365386534393431336665346533373366 +39373838303737373133666433653536636632663931646663323964356161326239326265333738 +35336230633965356337303631613338373237396562346536633132346635373462306537343732 +66323839316630643366363435636163376566303138393766353164656262343666323538616437 +32613964633033356462333039653331623134663464653962653065616630396566326432616665 +31313635393966303635343436656632613634366338326631376465316230366362636138636565 +36326433343237356235363232306261666239306538326265303038623230393966336163653563 +39643561356263663763633862393530343338313036613332393139343638373330643666653036 +31646237623865356361633063396134313361326633316339336565656131323336383933636364 +38636665323366326232633232323465363435646164366531643566353964376666343965353166 +66353539373030636638613862316135613730666634333733393537336530336266303130636637 +32343737373938616336383834356435626233646538323339373938363338366539663333306265 +31303139353738666439633362643634393031346363323664373933323331646566356437626366 +61656566376436316631396235373039343362363763623433663235393334353138633561323133 +35363834633237626465613434663665366531666461356331333831633566663837313334383938 +39633964643966346136383838396264363164616633333831623331383164316132346263623662 +37633237353935356134383931386633323636316262333966373764356434633435356337616430 +30393632346634663561386430393732343566376134383337653631613662633931316630383761 +64643136636462356166343161333064613263363234616566343032646234636438373335613331 +30366433323932316631656638346131626266356235663566313931353738303334663263313233 +63323630333530313930326633646135363331333235313730646136363439643636346537356536 +38663534643165656338656130326665623337353334363762663363343838626431313834656639 +63306263646539643836613663663735666638653664306237326635373838633231636632333934 +34633164353965366436666561613336656561363132313463333063663562313537346463666533 +33346139343237613565633531366239336332626164323165343464383966613036386238313134 +35366630303231653262356136383032306635633164393236663364656630373636396332633466 +31346262633563656231633361323661633661346566356161316337373363303238373130393232 +38623634646332336664623365336533613432316435333532313663666237313031613230376563 +36393437333065383039613739373666643166363533346334393039323364616565663361613133 +63633733623535653834616132656331653535396535346639633962303635363761393762376238 +31373762396237316135393736653537633966646530343061326235313632323364323066353630 +30643139326330383736366234656431666531383833643265383731643135316339626163663831 +37333034313332393436323136626331323465306336383735373538356363656332326437386338 +30383064353532363931623434336164316535373638646339626639316432393865323632393938 +34303230306639626136326535646533643933363732636139383038363063313364386265646132 +65663165666636376134346661653435663535663935376236636565376530643032653536646465 +61623734326265323237323532373238623435323263623535376133366264616162303162633134 +35633934323161303462383437373030346233396339393532336462626136346538373763313834 +37326165643333383766643762636233323036373961326535616330383766626339343961656634 +64343062336232393033373765646165333437663333626363326334313664303633373736663239 +34326134303564623363323939323261376538313462636130656262343636366533316333623765 +31303937326363303432323738326339656239343237366336383930343432366464323231663830 +39353463343537346235343266323931666462616436623466616261376536393064393530613365 +66656431316336343233313063386433623064646234303134376138346263326263653430626363 +31393638643134386432383933303566383163663035613237303931653136303761626237323064 +65323564626562383837623465386638303361643931653663353632643565323166396632303639 +30316632386432643862303332383936326539663034383262366435326239336434326132333564 +66383030616163363631646239656666636264306463666334316565363936376430643834336533 +66383466343031643539353733393830343661616463346363653730316235303137333630613233 +34356165343730326432336531623161306661383430363962323163666539393163323166363132 +30323262323731353937386162653965663961356632366334653731646334663332643835343830 +62653433373862326136333438366333356332386336386135386532316166353139663038613161 +38663038623132333931383763313739646665626536616438643136653966393562386337613434 +64636539383564653530656530326433633239393236343033643737633434373032353434306633 +37376136303636626163666562333839313163356230626663326465653338623733316331613538 +61373335666130643336303264613232663638346632326162646262323039653464316431393432 +30316464333738396631623230623264333536336263613766353162616535376164613534393035 +37363966623133303330333534643061666363303331643331363064393238616161353566666636 +62636263356434363562633537366562616236303034633638636461313835313261643837333263 +32663238313966313034306262363331653461646334393532373335323538656462663865306162 +61316338393233646538643036623661396537373439353862666266383237343963653966636633 +35383834663030663135306135303463356533656332653336393264373166323132663963636138 +62313435343132393833373032313636303530663365313333323937656161306332633732633938 +64623463653733363832326238323335386535333533653239323437323235653530316233633737 +37303632373361323738636233623465633431616231343538366530633938316334376464653832 +35346139663239316230336130393963636530653164663436333937306433633466363437343637 +30336438306533643933666439303964333534343763393538313332343136303830363765313963 +32643062353433343237323661663237323238373938396634383530666437396337323566313736 +62633135313362303964373039653337333837313233393333653932646533393532613062303364 +64346331303139663738373364633965356335633666383966316536626666616138313335663230 +32346530346135363432306538353735363432373261633833326636343831643635383432646536 +33356534386462376533626565306462623637336234313335326537616339383064326232636635 +30303035336461616432613531346262356163623033653738646539373463393034363064333337 +61636535363762353665353031396162393035323835666366373631386563653263663065306564 +39343032616130393563656437663637336537626566333737366261333066616533333231306139 +39336461376134633765353437626463326433643430386266346530383634333130383734396630 +37393337393166646666363836323661373762323836346363346565633537353637356639616538 +38323431333936353934616430656635323262613162393537393338623366646662653137626164 +64366366343063363336633139313836626638356133303636343266303762663434613638316463 +31653033616437306636303739353733386338626363393262373164353363353536346364613366 +38343731666664313136326664333339363466616465656232393533383364326332