diff --git a/Makefile b/Makefile index ba0573d19..32edbf52e 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ GOLANGCI_VERSION = 1.31.0 LICENSEI_VERSION = 0.1.0 KUBEBUILDER_VERSION = 2.3.1 KUSTOMIZE_VERSION = 2.0.3 -ISTIO_VERSION = 1.8.2 +ISTIO_VERSION = 1.9.0 KUSTOMIZE_BASE = config/overlays/specific-manager-version diff --git a/README.md b/README.md index 60ec9a1e1..b12199a3f 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ For a complete list of [Backyards](https://banzaicloud.com/products/backyards/) ## Istio operator installation -The operator (`release-1.8` branch) installs the 1.8.2 version of Istio, and can run on Minikube v1.1.1+ and Kubernetes 1.16.0+. +The operator (`release-1.9` branch) installs the 1.9.0 version of Istio, and can run on Minikube v1.1.1+ and Kubernetes 1.17.0+. As a pre-requisite it needs a Kubernetes cluster (you can create one using [Pipeline](https://github.com/banzaicloud/pipeline)). @@ -99,7 +99,7 @@ Alternatively, if you just can’t let go of Helm completely, you can deploy the ```bash helm repo add banzaicloud-stable https://kubernetes-charts.banzaicloud.com/ -helm install istio-operator-v17x --create-namespace --namespace=istio-system banzaicloud-stable/istio-operator +helm install istio-operator-v19x --create-namespace --namespace=istio-system banzaicloud-stable/istio-operator ``` ### Installation with Kustomize @@ -108,8 +108,8 @@ You can also have your own `kustomization.yaml` file with a reference to Istio o ```bash bases: - - github.com/banzaicloud/istio-operator/config?ref=release-1.8 - - github.com/banzaicloud/istio-operator/config/overlays/auth-proxy-enabled?ref=release-1.8 + - github.com/banzaicloud/istio-operator/config?ref=release-1.9 + - github.com/banzaicloud/istio-operator/config/overlays/auth-proxy-enabled?ref=release-1.9 ``` ## Istio upgrade diff --git a/config/README.md b/config/README.md index 28ecf2ddc..8af05f3a5 100644 --- a/config/README.md +++ b/config/README.md @@ -4,38 +4,38 @@ Developers can have their own `kustomization.yaml` file with a reference to Isti You can install the operator with multiple possible configurations with the use of overlays (choose one option): -> Note that in all cases, first you'll need to install the necessary crds and namespace with the following base: `github.com/banzaicloud/istio-operator/config?ref=release-1.8` +> Note that in all cases, first you'll need to install the necessary crds and namespace with the following base: `github.com/banzaicloud/istio-operator/config?ref=release-1.9` - `basic`: installs the clusterrole, clusterrolebinding and statefulset for the operator ```bash bases: - - github.com/banzaicloud/istio-operator/config?ref=release-1.8 - - github.com/banzaicloud/istio-operator/config/overlays/basic?ref=release-1.8 + - github.com/banzaicloud/istio-operator/config?ref=release-1.9 + - github.com/banzaicloud/istio-operator/config/overlays/basic?ref=release-1.9 ``` - `auth-proxy-enabled`: besides the basic configs, installs the auth proxy resources as well ```bash bases: - - github.com/banzaicloud/istio-operator/config?ref=release-1.8 - - github.com/banzaicloud/istio-operator/config/overlays/auth-proxy-enabled?ref=release-1.8 + - github.com/banzaicloud/istio-operator/config?ref=release-1.9 + - github.com/banzaicloud/istio-operator/config/overlays/auth-proxy-enabled?ref=release-1.9 ``` - `prometheus-scpraping-enabled`: besides the basic configs, enables Prometheus scraping for the manager pod ```bash bases: - - github.com/banzaicloud/istio-operator/config?ref=release-1.8 - - github.com/banzaicloud/istio-operator/config/overlays/prometheus-scpraping-enabled?ref=release-1.8 + - github.com/banzaicloud/istio-operator/config?ref=release-1.9 + - github.com/banzaicloud/istio-operator/config/overlays/prometheus-scpraping-enabled?ref=release-1.9 ``` - `psp`: besides the basic configs, add basic pod security policy for the operator and the Istio component pods ```bash bases: - - github.com/banzaicloud/istio-operator/config?ref=release-1.8 - - github.com/banzaicloud/istio-operator/config/overlays/psp?ref=release-1.8 + - github.com/banzaicloud/istio-operator/config?ref=release-1.9 + - github.com/banzaicloud/istio-operator/config/overlays/psp?ref=release-1.9 ``` The default istio init container runs as root, which won't work in this psp enabled case, so make sure that you use Istio CNI, e.g. with the `samples/istio_v1beta1_istio_cni.yaml` Istio CR. diff --git a/config/base/crds/istio.banzaicloud.io_istios.yaml b/config/base/crds/istio.banzaicloud.io_istios.yaml index 6773183e5..609a45d19 100644 --- a/config/base/crds/istio.banzaicloud.io_istios.yaml +++ b/config/base/crds/istio.banzaicloud.io_istios.yaml @@ -2965,6 +2965,11 @@ spec: type: boolean exposeWebhookPort: type: boolean + externalIstiod: + properties: + enabled: + type: boolean + type: object multiClusterSupport: type: boolean multiControlPlaneSupport: diff --git a/config/base/manager/manager.yaml b/config/base/manager/manager.yaml index 1548b1f30..8fe087860 100644 --- a/config/base/manager/manager.yaml +++ b/config/base/manager/manager.yaml @@ -39,7 +39,7 @@ spec: containers: - command: - /manager - image: banzaicloud/istio-operator:latest-1.8 + image: banzaicloud/istio-operator:latest-1.9 imagePullPolicy: Always name: manager env: diff --git a/config/base/rbac/role.yaml b/config/base/rbac/role.yaml index 3874e2a3a..2a5847897 100644 --- a/config/base/rbac/role.yaml +++ b/config/base/rbac/role.yaml @@ -32,6 +32,8 @@ rules: verbs: - get - list + - patch + - update - watch - apiGroups: - "" @@ -116,18 +118,6 @@ rules: - get - list - watch -- apiGroups: - - authentication.istio.io - - cloud.istio.io - - config.istio.io - - istio.istio.io - - networking.istio.io - - scalingpolicy.istio.io - - security.istio.io - resources: - - '*' - verbs: - - '*' - apiGroups: - authentication.k8s.io resources: @@ -172,6 +162,15 @@ rules: - signers verbs: - approve +- apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: + - create + - get + - list + - update - apiGroups: - discovery.k8s.io resources: @@ -286,6 +285,13 @@ rules: - get - patch - update +- apiGroups: + - networking.istio.io + - security.istio.io + resources: + - '*' + verbs: + - '*' - apiGroups: - networking.k8s.io resources: diff --git a/config/samples/istio_v1beta1_istio.yaml b/config/samples/istio_v1beta1_istio.yaml index e59bc0b18..7b5cd69b7 100644 --- a/config/samples/istio_v1beta1_istio.yaml +++ b/config/samples/istio_v1beta1_istio.yaml @@ -3,17 +3,15 @@ kind: Istio metadata: labels: controller-tools.k8s.io: "1.0" - name: istio-sample-v18x + name: istio-sample-v19x spec: - version: "1.8.2" + version: "1.9.0" global: false meshPolicy: mtlsMode: PERMISSIVE autoMtls: true includeIPRanges: "*" excludeIPRanges: "" - autoInjectionNamespaces: - - "default" controlPlaneAuthPolicy: "MUTUAL_TLS" mountMtlsCerts: false # priorityClassName: system-cluster-critical @@ -26,9 +24,11 @@ spec: enabled: true enableAnalysis: true enableStatus: true + externalIstiod: + enabled: false pilot: enabled: true - image: "docker.io/istio/pilot:1.8.2" + image: "docker.io/istio/pilot:1.9.0" replicaCount: 1 minReplicas: 1 maxReplicas: 5 @@ -101,18 +101,18 @@ spec: enabled: false policy: enabled: false - image: "docker.io/istio/mixer:1.8.2" + image: "docker.io/istio/mixer:1.9.0" replicaCount: 1 minReplicas: 1 maxReplicas: 5 telemetry: enabled: false - image: "docker.io/istio/mixer:1.8.2" + image: "docker.io/istio/mixer:1.9.0" replicaCount: 1 minReplicas: 1 maxReplicas: 5 proxy: - image: "docker.io/istio/proxyv2:1.8.2" + image: "docker.io/istio/proxyv2:1.9.0" accessLogFile: "/dev/stdout" accessLogFormat: "" accessLogEncoding: "TEXT" @@ -126,7 +126,7 @@ spec: cpu: 2000m memory: 1024Mi proxyInit: - image: "docker.io/istio/proxyv2:1.8.2" + image: "docker.io/istio/proxyv2:1.9.0" defaultPodDisruptionBudget: enabled: true outboundTrafficPolicy: diff --git a/config/samples/istio_v1beta1_istio_cni.yaml b/config/samples/istio_v1beta1_istio_cni.yaml index 998cd23ec..89dbc40e0 100644 --- a/config/samples/istio_v1beta1_istio_cni.yaml +++ b/config/samples/istio_v1beta1_istio_cni.yaml @@ -3,14 +3,12 @@ kind: Istio metadata: labels: controller-tools.k8s.io: "1.0" - name: istio-sample-v18x + name: istio-sample-v19x spec: - version: "1.8.2" + version: "1.9.0" global: false meshPolicy: mtlsMode: PERMISSIVE - autoInjectionNamespaces: - - "default" gateways: ingress: runAsRoot: false @@ -28,5 +26,5 @@ spec: brokenPodLabelKey: "cni.istio.io/uninitialized" brokenPodLabelValue: "true" proxy: - image: "docker.io/istio/proxyv2:1.8.2" + image: "docker.io/istio/proxyv2:1.9.0" jwtPolicy: "first-party-jwt" diff --git a/config/samples/istio_v1beta1_istio_cni_gke.yaml b/config/samples/istio_v1beta1_istio_cni_gke.yaml index d298cac57..d2ae508ad 100644 --- a/config/samples/istio_v1beta1_istio_cni_gke.yaml +++ b/config/samples/istio_v1beta1_istio_cni_gke.yaml @@ -3,14 +3,12 @@ kind: Istio metadata: labels: controller-tools.k8s.io: "1.0" - name: istio-sample-v18x + name: istio-sample-v19x spec: - version: "1.8.2" + version: "1.9.0" global: false meshPolicy: mtlsMode: PERMISSIVE - autoInjectionNamespaces: - - "default" gateways: ingress: runAsRoot: false @@ -29,5 +27,5 @@ spec: brokenPodLabelKey: "cni.istio.io/uninitialized" brokenPodLabelValue: "true" proxy: - image: "docker.io/istio/proxyv2:1.8.2" + image: "docker.io/istio/proxyv2:1.9.0" jwtPolicy: "first-party-jwt" diff --git a/config/samples/istio_v1beta1_istio_meshexpansion.yaml b/config/samples/istio_v1beta1_istio_meshexpansion.yaml index 72a494a59..298083ca7 100644 --- a/config/samples/istio_v1beta1_istio_meshexpansion.yaml +++ b/config/samples/istio_v1beta1_istio_meshexpansion.yaml @@ -3,16 +3,13 @@ kind: Istio metadata: labels: controller-tools.k8s.io: "1.0" - name: istio-sample-v18x + name: istio-sample-v19x spec: - version: "1.8.2" + version: "1.9.0" global: false - autoInjectionNamespaces: - - "default" - useMCP: false meshPolicy: mtlsMode: STRICT meshExpansion: true proxy: - image: "docker.io/istio/proxyv2:1.8.2" + image: "docker.io/istio/proxyv2:1.9.0" jwtPolicy: "first-party-jwt" diff --git a/config/samples/istio_v1beta1_istio_minimal.yaml b/config/samples/istio_v1beta1_istio_minimal.yaml index e3546135f..7ff521c58 100644 --- a/config/samples/istio_v1beta1_istio_minimal.yaml +++ b/config/samples/istio_v1beta1_istio_minimal.yaml @@ -5,15 +5,12 @@ kind: Istio metadata: labels: controller-tools.k8s.io: "1.0" - name: istio-sample-v18x + name: istio-sample-v19x spec: - version: "1.8.2" + version: "1.9.0" global: false meshPolicy: mtlsMode: PERMISSIVE - autoInjectionNamespaces: - - "default" - useMCP: false istiod: enabled: true pilot: @@ -32,5 +29,5 @@ spec: tracing: enabled: false proxy: - image: "docker.io/istio/proxyv2:1.8.2" + image: "docker.io/istio/proxyv2:1.9.0" jwtPolicy: "first-party-jwt" diff --git a/config/samples/istio_v1beta1_istio_multimesh.yaml b/config/samples/istio_v1beta1_istio_multimesh.yaml index b26f2099b..880e7219a 100644 --- a/config/samples/istio_v1beta1_istio_multimesh.yaml +++ b/config/samples/istio_v1beta1_istio_multimesh.yaml @@ -3,13 +3,10 @@ kind: Istio metadata: labels: controller-tools.k8s.io: "1.0" - name: multimesh-v18x + name: multimesh-v19x spec: - version: "1.8.2" + version: "1.9.0" global: false - autoInjectionNamespaces: - - "default" - useMCP: false meshPolicy: mtlsMode: STRICT multiMesh: true @@ -18,5 +15,5 @@ spec: citadel: caSecretName: "cacerts" proxy: - image: "docker.io/istio/proxyv2:1.8.2" + image: "docker.io/istio/proxyv2:1.9.0" jwtPolicy: "first-party-jwt" diff --git a/config/samples/istio_v1beta1_meshgateway.yaml b/config/samples/istio_v1beta1_meshgateway.yaml index e4cb33b8b..4f57e9a42 100644 --- a/config/samples/istio_v1beta1_meshgateway.yaml +++ b/config/samples/istio_v1beta1_meshgateway.yaml @@ -3,7 +3,7 @@ kind: MeshGateway metadata: labels: controller-tools.k8s.io: "1.0" - name: meshgateway-sample-v18x + name: meshgateway-sample-v19x spec: type: ingress replicaCount: 1 @@ -35,7 +35,6 @@ spec: # valueFrom: # fieldRef: # fieldPath: metadata.name - applicationPorts: "" resources: requests: cpu: 100m diff --git a/config/samples/istio_v1beta1_remoteistio.yaml b/config/samples/istio_v1beta1_remoteistio.yaml index af784072e..d17690031 100644 --- a/config/samples/istio_v1beta1_remoteistio.yaml +++ b/config/samples/istio_v1beta1_remoteistio.yaml @@ -3,7 +3,7 @@ kind: RemoteIstio metadata: labels: controller-tools.k8s.io: "1.0" - name: remoteistio-sample-v18x + name: remoteistio-sample-v19x spec: autoInjectionNamespaces: - "default" diff --git a/config/samples/istio_v1beta1_spiffe_endpoint.yaml b/config/samples/istio_v1beta1_spiffe_endpoint.yaml index 7083264df..4ab75f317 100644 --- a/config/samples/istio_v1beta1_spiffe_endpoint.yaml +++ b/config/samples/istio_v1beta1_spiffe_endpoint.yaml @@ -3,9 +3,9 @@ kind: Istio metadata: labels: controller-tools.k8s.io: "1.0" - name: istio-sample-v18x + name: istio-sample-v19x spec: - version: "1.8.2" + version: "1.9.0" pilot: spiffe: operatorEndpoints: diff --git a/deploy/charts/istio-operator/Chart.yaml b/deploy/charts/istio-operator/Chart.yaml index b90faabe6..14109f047 100644 --- a/deploy/charts/istio-operator/Chart.yaml +++ b/deploy/charts/istio-operator/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 name: istio-operator -version: 0.0.77 +version: 0.0.78 description: istio-operator manages Istio deployments on Kubernetes sources: - https://github.com/banzaicloud/istio-operator -appVersion: 0.8.6 +appVersion: 0.9.0 icon: https://istio.io/img/istio-logo-social-blue-background.svg diff --git a/deploy/charts/istio-operator/README.md b/deploy/charts/istio-operator/README.md index 32771d194..a1d880afd 100644 --- a/deploy/charts/istio-operator/README.md +++ b/deploy/charts/istio-operator/README.md @@ -4,7 +4,7 @@ ## Prerequisites -- Kubernetes 1.16.0+ +- Kubernetes 1.17.0+ ## Installing the chart @@ -32,10 +32,10 @@ The following table lists the configurable parameters of the Banzaicloud Istio O Parameter | Description | Default --------- | ----------- | ------- `operator.image.repository` | Operator container image repository | `banzaicloud/istio-operator` -`operator.image.tag` | Operator container image tag | `0.8.6` +`operator.image.tag` | Operator container image tag | `0.9.0` `operator.image.pullPolicy` | Operator container image pull policy | `IfNotPresent` `operator.resources` | CPU/Memory resource requests/limits (YAML) | Memory: `256Mi`, CPU: `200m` -`istioVersion` | Supported Istio version | `1.8` +`istioVersion` | Supported Istio version | `1.9` `prometheusMetrics.enabled` | If true, use direct access for Prometheus metrics | `false` `prometheusMetrics.authProxy.enabled` | If true, use auth proxy for Prometheus metrics | `true` `prometheusMetrics.authProxy.image.repository` | Auth proxy container image repository | `gcr.io/kubebuilder/kube-rbac-proxy` diff --git a/deploy/charts/istio-operator/crds/istio.banzaicloud.io_istios.yaml b/deploy/charts/istio-operator/crds/istio.banzaicloud.io_istios.yaml index 1fc5e4a79..03e4134ce 100644 --- a/deploy/charts/istio-operator/crds/istio.banzaicloud.io_istios.yaml +++ b/deploy/charts/istio-operator/crds/istio.banzaicloud.io_istios.yaml @@ -4,7 +4,7 @@ metadata: creationTimestamp: null name: istios.istio.banzaicloud.io labels: - resource.alpha.banzaicloud.io/revision: 1.8.2 + resource.alpha.banzaicloud.io/revision: 1.9.0 spec: group: istio.banzaicloud.io names: @@ -2963,6 +2963,11 @@ spec: type: boolean exposeWebhookPort: type: boolean + externalIstiod: + properties: + enabled: + type: boolean + type: object multiClusterSupport: type: boolean multiControlPlaneSupport: diff --git a/deploy/charts/istio-operator/crds/istio.banzaicloud.io_meshgateways.yaml b/deploy/charts/istio-operator/crds/istio.banzaicloud.io_meshgateways.yaml index 06da9af02..2eda22bc1 100644 --- a/deploy/charts/istio-operator/crds/istio.banzaicloud.io_meshgateways.yaml +++ b/deploy/charts/istio-operator/crds/istio.banzaicloud.io_meshgateways.yaml @@ -4,7 +4,7 @@ metadata: creationTimestamp: null name: meshgateways.istio.banzaicloud.io labels: - resource.alpha.banzaicloud.io/revision: 1.8.2 + resource.alpha.banzaicloud.io/revision: 1.9.0 spec: group: istio.banzaicloud.io names: diff --git a/deploy/charts/istio-operator/crds/istio.banzaicloud.io_remoteistios.yaml b/deploy/charts/istio-operator/crds/istio.banzaicloud.io_remoteistios.yaml index d32ac2f5c..ec6aacf8a 100644 --- a/deploy/charts/istio-operator/crds/istio.banzaicloud.io_remoteistios.yaml +++ b/deploy/charts/istio-operator/crds/istio.banzaicloud.io_remoteistios.yaml @@ -4,7 +4,7 @@ metadata: creationTimestamp: null name: remoteistios.istio.banzaicloud.io labels: - resource.alpha.banzaicloud.io/revision: 1.8.2 + resource.alpha.banzaicloud.io/revision: 1.9.0 spec: group: istio.banzaicloud.io names: diff --git a/deploy/charts/istio-operator/templates/operator-rbac.yaml b/deploy/charts/istio-operator/templates/operator-rbac.yaml index 2c61d78d5..5d1bddf60 100644 --- a/deploy/charts/istio-operator/templates/operator-rbac.yaml +++ b/deploy/charts/istio-operator/templates/operator-rbac.yaml @@ -34,12 +34,11 @@ rules: - endpoints - pods - replicationcontrollers - - services - - endpoints - - pods verbs: - get - list + - patch + - update - watch - apiGroups: - "" @@ -206,6 +205,15 @@ rules: - signers verbs: - approve +- apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: + - create + - get + - list + - update - apiGroups: - extensions - networking.k8s.io @@ -275,13 +283,12 @@ rules: - update - patch - apiGroups: + {{- if semverCompare "< 1.8.0" .Values.istioVersion }} - authentication.istio.io - - cloud.istio.io - config.istio.io - - istio.istio.io + {{- end }} - networking.istio.io - security.istio.io - - scalingpolicy.istio.io {{- if semverCompare "< 1.7.0" .Values.istioVersion }} - rbac.istio.io {{- end }} diff --git a/deploy/charts/istio-operator/values.yaml b/deploy/charts/istio-operator/values.yaml index ea63c9740..faf1cd8c8 100644 --- a/deploy/charts/istio-operator/values.yaml +++ b/deploy/charts/istio-operator/values.yaml @@ -5,7 +5,7 @@ operator: image: repository: ghcr.io/banzaicloud/istio-operator - tag: 0.8.6 + tag: 0.9.0 pullPolicy: IfNotPresent extraArgs: [] resources: @@ -13,7 +13,7 @@ operator: cpu: 200m memory: 256Mi -istioVersion: "1.8" +istioVersion: "1.9" # If you want the operator to expose the /metrics prometheusMetrics: diff --git a/docs/federation/gateway/README.md b/docs/federation/gateway/README.md index d5c3d1d8c..659fee456 100644 --- a/docs/federation/gateway/README.md +++ b/docs/federation/gateway/README.md @@ -15,7 +15,7 @@ For demo purposes, create 3 clusters, a single node [Banzai Cloud PKE](https://b ```bash ❯ git clone https://github.com/banzaicloud/istio-operator.git ❯ cd istio-operator -❯ git checkout release-1.8 +❯ git checkout release-1.9 ``` [Pipeline platform](https://beta.banzaicloud.io/) is the easiest way to setup that environment using our [CLI tool](https://banzaicloud.com/blog/cli-ux/) ([install](https://github.com/banzaicloud/banzai-cli#installation)) for [Pipeline](https:/github.com/banzaicloud/pipeline), simply called `banzai`. @@ -81,23 +81,18 @@ This command will install a custom resource definition in the cluster, and will Following a pattern typical of operators, this will allow you to specify your Istio configurations to a Kubernetes custom resource. Once you apply that to your cluster, the operator will start reconciling all of Istio's components. -Wait for the `gateway-multicluster` Istio resource status become `Available` and also the pods in the `istio-system` become ready as well. +Wait for the `istio-gw-multi` Istio resource status become `Available` and also the pods in the `istio-system` become ready as well. ```bash ❯ kubectl --context=${CTX_PKE} -n istio-system get istios -NAME STATUS ERROR AGE -gateway-multicluster Available 1m +NAME STATUS ERROR INGRESS IPS AGE +istio-gw-multi Available [13.49.186.143] 3m15s ❯ kubectl --context=${CTX_PKE} -n istio-system get pods -NAME READY STATUS RESTARTS AGE -istio-citadel-67f99b7f5f-lg859 1/1 Running 0 1m30s -istio-galley-665cf4d49d-qrm5s 1/1 Running 0 1m30s -istio-ingressgateway-64f9d4b75b-jh6jr 1/1 Running 0 1m30s -istio-operator-controller-manager-0 2/2 Running 0 2m27s -istio-pilot-df5d467c7-jmj77 2/2 Running 0 1m30s -istio-policy-57dd995b-fq4ss 2/2 Running 2 1m29s -istio-sidecar-injector-746f5cccd9-8mwdb 1/1 Running 0 1m18s -istio-telemetry-6b6b987c94-nmqpg 2/2 Running 2 1m29s +NAME READY STATUS RESTARTS AGE +istio-meshexpansion-gateway-istio-gw-multi-57b59b5ffd-rvffp 1/1 Running 0 2m20s +istio-operator-controller-manager-0 2/2 Running 0 35m +istiod-istio-gw-multi-59d5b4b6db-rzbjr 1/1 Running 0 79s ``` Add GKE cluster to the service mesh @@ -122,7 +117,7 @@ Add EKS cluster to the service mesh Wait for the `istio-eks` and `istio-gke` RemoteIstio resource status to become `Available` and also the pods in the `istio-system` on those clusters to become ready as well. -> It could take some time to these resrouces to become `Available` and also reconiliation failures will occur since the reconciliation process must determine the ingress gateway addresses of the clusters. +> It could take some time to these resources to become `Available` and also reconciliation failures will occur since the reconciliation process must determine the ingress gateway addresses of the clusters. ```text ❯ kubectl --context=${CTX_PKE} -n istio-system get remoteistios @@ -132,17 +127,21 @@ istio-gke Available [35.204.1.52] 5m ❯ kubectl --context=${CTX_GKE} -n istio-system get pods NAME READY STATUS RESTARTS AGE -istio-citadel-75648bdf6b-k8rfl 1/1 Running 0 6m9s istio-ingressgateway-7f494bcf8-qb692 1/1 Running 0 6m8s istio-sidecar-injector-746f5cccd9-7b55s 1/1 Running 0 6m8s ❯ kubectl --context=${CTX_EKS} -n istio-system get pods NAME READY STATUS RESTARTS AGE -istio-citadel-78478cfb44-7h42v 1/1 Running 0 4m istio-ingressgateway-7f75c479b8-w4qr9 1/1 Running 0 4m istio-sidecar-injector-56dbb9587f-928h9 1/1 Running 0 4m ``` +Make sure that sidecar injection will take place in the namespace where the bookinfo sample application will be deployed (if labeled on the master cluster, it will be automatically labeled on peer clusters as well by the istio operator). + +```bash +kubectl --context=${CTX_PKE} label ns default istio.io/rev=istio-gw-multi.istio-system +``` + Deploy the bookinfo sample application in a distributed way ```bash @@ -232,9 +231,9 @@ spec: The bookinfo app's product page is reachable through every clusters ingress gateway since they are part of one single mesh. Let's determine the ingress gateway address of the clusters: ```bash -export PKE_INGRESS=$(kubectl --context=${CTX_PKE} -n istio-system get svc/istio-ingressgateway -o jsonpath='{.status.loadBalancer.ingress[0].hostname}') -export GKE_INGRESS=$(kubectl --context=${CTX_GKE} -n istio-system get svc/istio-ingressgateway -o jsonpath='{.status.loadBalancer.ingress[0].ip}') -export EKS_INGRESS=$(kubectl --context=${CTX_EKS} -n istio-system get svc/istio-ingressgateway -o jsonpath='{.status.loadBalancer.ingress[0].hostname}') +export PKE_INGRESS=$(kubectl --context=${CTX_PKE} -n istio-system get svc/istio-meshexpansion-gateway-istio-gw-multi -o jsonpath='{.status.loadBalancer.ingress[0].hostname}') +export GKE_INGRESS=$(kubectl --context=${CTX_GKE} -n istio-system get svc/istio-meshexpansion-gateway-istio-gw-multi -o jsonpath='{.status.loadBalancer.ingress[0].ip}') +export EKS_INGRESS=$(kubectl --context=${CTX_EKS} -n istio-system get svc/istio-meshexpansion-gateway-istio-gw-multi -o jsonpath='{.status.loadBalancer.ingress[0].hostname}') ``` Hit the PKE cluster's ingress with some traffic to see the spreading of the `reviews` service: diff --git a/docs/federation/gateway/bookinfo/deployments/details-v1.yaml b/docs/federation/gateway/bookinfo/deployments/details-v1.yaml index 8421dcd94..2fa2fbecf 100644 --- a/docs/federation/gateway/bookinfo/deployments/details-v1.yaml +++ b/docs/federation/gateway/bookinfo/deployments/details-v1.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: details-v1 @@ -7,6 +7,10 @@ metadata: version: v1 spec: replicas: 1 + selector: + matchLabels: + app: details + version: v1 template: metadata: labels: diff --git a/docs/federation/gateway/bookinfo/deployments/productpage-v1.yaml b/docs/federation/gateway/bookinfo/deployments/productpage-v1.yaml index 1e5a2d9b1..de3692b89 100644 --- a/docs/federation/gateway/bookinfo/deployments/productpage-v1.yaml +++ b/docs/federation/gateway/bookinfo/deployments/productpage-v1.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: productpage-v1 @@ -7,6 +7,10 @@ metadata: version: v1 spec: replicas: 1 + selector: + matchLabels: + app: productpage + version: v1 template: metadata: labels: diff --git a/docs/federation/gateway/bookinfo/deployments/ratings-v1.yaml b/docs/federation/gateway/bookinfo/deployments/ratings-v1.yaml index e8d915678..4da2f6cae 100644 --- a/docs/federation/gateway/bookinfo/deployments/ratings-v1.yaml +++ b/docs/federation/gateway/bookinfo/deployments/ratings-v1.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: ratings-v1 @@ -7,6 +7,10 @@ metadata: version: v1 spec: replicas: 1 + selector: + matchLabels: + app: ratings + version: v1 template: metadata: labels: diff --git a/docs/federation/gateway/bookinfo/deployments/reviews-v1.yaml b/docs/federation/gateway/bookinfo/deployments/reviews-v1.yaml index e9594ad1a..04b579ed3 100644 --- a/docs/federation/gateway/bookinfo/deployments/reviews-v1.yaml +++ b/docs/federation/gateway/bookinfo/deployments/reviews-v1.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: reviews-v1 @@ -7,6 +7,10 @@ metadata: version: v1 spec: replicas: 1 + selector: + matchLabels: + app: reviews + version: v1 template: metadata: labels: diff --git a/docs/federation/gateway/bookinfo/deployments/reviews-v2.yaml b/docs/federation/gateway/bookinfo/deployments/reviews-v2.yaml index 0ebc6aac1..3aa2be509 100644 --- a/docs/federation/gateway/bookinfo/deployments/reviews-v2.yaml +++ b/docs/federation/gateway/bookinfo/deployments/reviews-v2.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: reviews-v2 @@ -7,6 +7,10 @@ metadata: version: v2 spec: replicas: 1 + selector: + matchLabels: + app: reviews + version: v2 template: metadata: labels: diff --git a/docs/federation/gateway/bookinfo/deployments/reviews-v3.yaml b/docs/federation/gateway/bookinfo/deployments/reviews-v3.yaml index ae61f9a08..ed8d9a76a 100644 --- a/docs/federation/gateway/bookinfo/deployments/reviews-v3.yaml +++ b/docs/federation/gateway/bookinfo/deployments/reviews-v3.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: reviews-v3 @@ -7,6 +7,10 @@ metadata: version: v3 spec: replicas: 1 + selector: + matchLabels: + app: reviews + version: v3 template: metadata: labels: diff --git a/docs/federation/gateway/bookinfo/istio/bookinfo-gateway.yaml b/docs/federation/gateway/bookinfo/istio/bookinfo-gateway.yaml index d727c6a1f..51fba3292 100644 --- a/docs/federation/gateway/bookinfo/istio/bookinfo-gateway.yaml +++ b/docs/federation/gateway/bookinfo/istio/bookinfo-gateway.yaml @@ -4,7 +4,7 @@ metadata: name: bookinfo-gateway spec: selector: - istio: ingressgateway + istio: meshexpansiongateway servers: - port: number: 80 diff --git a/docs/federation/gateway/samples/istio-eks-cluster.json b/docs/federation/gateway/samples/istio-eks-cluster.json index 1ddf4d091..51bb8ea6d 100644 --- a/docs/federation/gateway/samples/istio-eks-cluster.json +++ b/docs/federation/gateway/samples/istio-eks-cluster.json @@ -5,7 +5,7 @@ "secretId": "{{secretID}}", "properties": { "eks": { - "version": "1.14", + "version": "1.18", "nodePools": { "pool1": { "spotPrice": "0", diff --git a/docs/federation/gateway/samples/istio-gke-cluster.json b/docs/federation/gateway/samples/istio-gke-cluster.json index 3985aff1b..56644c026 100644 --- a/docs/federation/gateway/samples/istio-gke-cluster.json +++ b/docs/federation/gateway/samples/istio-gke-cluster.json @@ -6,9 +6,9 @@ "properties": { "gke": { "master": { - "version": "1.14" + "version": "1.17" }, - "nodeVersion": "1.14", + "nodeVersion": "1.17", "nodePools": { "pool1": { "count": 1, diff --git a/docs/federation/gateway/samples/istio-multicluster-cr.yaml b/docs/federation/gateway/samples/istio-multicluster-cr.yaml index 5ad347177..dcc46e7ab 100644 --- a/docs/federation/gateway/samples/istio-multicluster-cr.yaml +++ b/docs/federation/gateway/samples/istio-multicluster-cr.yaml @@ -1,23 +1,28 @@ apiVersion: istio.banzaicloud.io/v1beta1 kind: Istio metadata: - name: gateway-multicluster + name: istio-gw-multi spec: - version: "1.8.2" - autoInjectionNamespaces: - - "default" + version: "1.9.0" + global: false meshPolicy: mtlsMode: STRICT - useMCP: false meshExpansion: true imagePullPolicy: Always pilot: maxReplicas: 1 + istiod: + multiClusterSupport: true gateways: ingress: maxReplicas: 1 egress: maxReplicas: 1 enabled: false - mixer: - maxReplicas: 1 + meshExpansion: + enabled: true + ports: + - name: http + port: 80 + protocol: TCP + targetPort: 8080 diff --git a/docs/federation/gateway/samples/istio-pke-cluster.json b/docs/federation/gateway/samples/istio-pke-cluster.json index d3b969fcd..ead1e21c4 100644 --- a/docs/federation/gateway/samples/istio-pke-cluster.json +++ b/docs/federation/gateway/samples/istio-pke-cluster.json @@ -32,7 +32,7 @@ } ], "kubernetes": { - "version": "1.18.6", + "version": "1.18.14", "rbac": { "enabled": true } diff --git a/docs/federation/gateway/samples/remoteistio-eks-cr.yaml b/docs/federation/gateway/samples/remoteistio-eks-cr.yaml index 12eb467e0..3b26d4011 100644 --- a/docs/federation/gateway/samples/remoteistio-eks-cr.yaml +++ b/docs/federation/gateway/samples/remoteistio-eks-cr.yaml @@ -3,14 +3,7 @@ kind: RemoteIstio metadata: name: istio-eks spec: - autoInjectionNamespaces: - - "default" - enabledServices: - - name: "istio-pilot" - - name: "istio-policy" - - name: "istio-telemetry" - citadel: - enabled: true + enabledServices: [] sidecarInjector: - enabled: true - replicaCount: 1 + enabled: true + replicaCount: 1 diff --git a/docs/federation/gateway/samples/remoteistio-gke-cr.yaml b/docs/federation/gateway/samples/remoteistio-gke-cr.yaml index 45311800d..f959169f5 100644 --- a/docs/federation/gateway/samples/remoteistio-gke-cr.yaml +++ b/docs/federation/gateway/samples/remoteistio-gke-cr.yaml @@ -3,14 +3,7 @@ kind: RemoteIstio metadata: name: istio-gke spec: - autoInjectionNamespaces: - - "default" - enabledServices: - - name: "istio-pilot" - - name: "istio-policy" - - name: "istio-telemetry" - citadel: - enabled: true + enabledServices: [] sidecarInjector: - enabled: true - replicaCount: 1 + enabled: true + replicaCount: 1 diff --git a/docs/federation/multimesh/README.md b/docs/federation/multimesh/README.md index 98d6f7ad1..6dc6da38b 100644 --- a/docs/federation/multimesh/README.md +++ b/docs/federation/multimesh/README.md @@ -1,21 +1,25 @@ # Istio multi mesh federation -In multi-mesh environments, meshes that would be otherwise independent are loosely coupled together using **ServiceEntries** for configuration and a **common root CA** as a base for secure communication through **Istio ingress gateways using mTLS**. From a networking standpoint, this setup's only requirement is that its ingress gateways be reachable from one another. +In multi-mesh environments, meshes that would be otherwise independent are loosely coupled together using **ServiceEntries** for configuration and a **common root CA** as a base for secure communication through **Istio ingress gateways using mTLS**. +From a networking standpoint, this setup's only requirement is that its ingress gateways be reachable from one another. -Workloads in each cluster can access existing **local** services via their Kubernetes DNS suffix, e.g., `..svc.cluster.local`, as per usual. To reach services in **remote** meshes, Istio includes a CoreDNS server that can be configured to handle service names in the form of `..global`, thus calls from any cluster to `foo.foons.global` will resolve to the `foo` service in namespace `foons` on the mesh on which it's running. +Workloads in each cluster can access existing **local** services via their Kubernetes DNS suffix, e.g., `..svc.cluster.local`, as per usual. +To reach services in **remote** meshes, Istio includes a CoreDNS server that can be configured to handle service names in the form of `..`, thus calls from any cluster to `foo.foons.acme.corp` will resolve to the `foo` service in namespace `foons` on the mesh on which it's running. -Every service in a given mesh that needs to be accessed from a different mesh requires a `ServiceEntry` configuration in a remote mesh. The host used in the service entry should take the form `..global`, where `name` and `namespace` correspond to the service’s name and namespace respectively. +Every service in a given mesh that needs to be accessed from a different mesh requires a `ServiceEntry` configuration in a remote mesh. +The host used in the service entry should take the form `..`, where `name` and `namespace` correspond to the service’s name and namespace respectively. # Multi mesh federation example -For demonstrative purposes, create 2 clusters, a 2 node [Banzai Cloud PKE](https://banzaicloud.com/blog/pke-cncf-certified-k8s/) cluster on EC2 and GKE cluster with 2 nodes as well. That setup show that this solutions works not just in a multi-cluster, but also in a multi-cloud environment. +For demonstrative purposes, create 2 clusters, a 2 node [Banzai Cloud PKE](https://banzaicloud.com/blog/pke-cncf-certified-k8s/) cluster on EC2 and GKE cluster with 2 nodes as well. +That setup show that this solutions works not just in a multi-cluster, but also in a multi-cloud environment. ## Get the latest version of the [Istio operator](https://github.com/banzaicloud/istio-operator) ```bash ❯ git clone https://github.com/banzaicloud/istio-operator.git ❯ cd istio-operator -❯ git checkout release-1.8 +❯ git checkout release-1.9 ``` ## Create the clusters on the Banzai Cloud Pipeline platform @@ -75,10 +79,12 @@ The following commands will deploy the operator to the `istio-system` namespace. ### Setup root CA and deploy Istio control plane on the PKE cluster -> Cross mesh communication requires mutual TLS connection between services. To enable mutual TLS communication across meshes, each mesh Citadel must be configured with intermediate CA credentials generated by a shared root CA. For demo purposes a sample root CA certificate is used. +> Cross mesh communication requires mutual TLS connection between services. +> To enable mutual TLS communication across meshes, each mesh Citadel must be configured with intermediate CA credentials generated by a shared root CA. +> For demo purposes a sample root CA certificate is used. -The following commands will add the sample root CA certs as a secret. It also creates a custom resource definition in the cluster, -following a pattern typical of operators, this will allow you to specify your Istio configurations to a Kubernetes custom resource. +The following commands will add the sample root CA certs as a secret. +It also creates a custom resource definition in the cluster, following a pattern typical of operators, this will allow you to specify your Istio configurations to a Kubernetes custom resource. Once you apply that to your cluster, the operator will start reconciling the Istio components. ```bash @@ -94,20 +100,15 @@ Wait for the `multimesh` Istio resource status to become `Available` and for the ```bash ❯ kubectl --context=${CTX_PKE} -n istio-system get istios -NAME STATUS ERROR GATEWAYS AGE -multimesh Available [35.180.106.193] 4m15s +NAME STATUS ERROR INGRESS IPS AGE +multimesh Available [15.236.34.110 15.236.251.232] 4m15s ❯ kubectl --context=${CTX_PKE} -n istio-system get pods -NAME READY STATUS RESTARTS AGE -istio-citadel-58c77cc58b-mj7tg 1/1 Running 0 4m12s -istio-egressgateway-6958db94bc-78dl7 1/1 Running 0 4m10s -istio-galley-5dd459c899-llt2k 1/1 Running 0 4m11s -istio-ingressgateway-7ddbbddc9f-dj9ls 1/1 Running 0 4m10s -istio-pilot-6b97586d79-lr9sz 2/2 Running 0 4m11s -istio-policy-8b7bd457-j5n59 2/2 Running 2 4m9s -istio-sidecar-injector-54d7d74bdb-mw4kn 1/1 Running 0 3m58s -istio-telemetry-86f6459cd5-mgvtv 2/2 Running 2 4m9s -istiocoredns-74dd777b79-z7nbp 2/2 Running 0 3m58s +NAME READY STATUS RESTARTS AGE +istio-meshexpansion-gateway-multimesh-5ff759559d-mbq8g 1/1 Running 0 4m2s +istio-operator-controller-manager-0 2/2 Running 0 7m2s +istiocoredns-multimesh-5c48d544bb-2pflz 2/2 Running 0 3m58s +istiod-multimesh-8689b9d5d7-nh7tg 1/1 Running 0 3m46s ``` ## Setup GKE cluster @@ -136,26 +137,28 @@ Wait for the `multimesh` Istio resource status to become `Available` and for the ```bash ❯ kubectl --context=${CTX_GKE} -n istio-system get istios -NAME STATUS ERROR GATEWAYS AGE -multimesh Available [35.180.106.193] 4m15s +NAME STATUS ERROR INGRESS IPS AGE +multimesh Available [13.36.43.2 15.188.40.224] 4m2s ❯ kubectl --context=${CTX_GKE} -n istio-system get pods -NAME READY STATUS RESTARTS AGE -istio-citadel-58c77cc58b-mj7tg 1/1 Running 0 4m12s -istio-egressgateway-6958db94bc-78dl7 1/1 Running 0 4m10s -istio-galley-5dd459c899-llt2k 1/1 Running 0 4m11s -istio-ingressgateway-7ddbbddc9f-dj9ls 1/1 Running 0 4m10s -istio-pilot-6b97586d79-lr9sz 2/2 Running 0 4m11s -istio-policy-8b7bd457-j5n59 2/2 Running 2 4m9s -istio-sidecar-injector-54d7d74bdb-mw4kn 1/1 Running 0 3m58s -istio-telemetry-86f6459cd5-mgvtv 2/2 Running 2 4m9s -istiocoredns-74dd777b79-z7nbp 2/2 Running 0 3m58s +NAME READY STATUS RESTARTS AGE +istio-meshexpansion-gateway-multimesh-5ff759559d-lz7tv 1/1 Running 0 4m2s +istio-operator-controller-manager-0 2/2 Running 0 6m2s +istiocoredns-multimesh-5c48d544bb-67qxp 2/2 Running 0 3m42s +istiod-multimesh-5c4ddc6c94-fdh7p 1/1 Running 0 3m36s ``` ## Testing, testing Create a simple `echo` service on both clusters for testing purposes. +Make sure that sidecar injection will take place in the namespace where the `echo` sample application will be deployed. + +```bash +kubectl --context=${CTX_PKE} label ns default istio.io/rev=multimesh.istio-system +kubectl --context=${CTX_GKE} label ns default istio.io/rev=multimesh.istio-system +``` + > Create `Gateway` and `VirtualService` resources as well to be able to reach the service through the ingress gateway. ```bash @@ -179,7 +182,7 @@ echo-595496dfcc-6tpk5 2/2 Running 0 1m Hit the PKE cluster's ingress with some traffic to see how the `echo` service responds: ```bash -❯ export PKE_INGRESS=$(kubectl --context=${CTX_PKE} -n istio-system get svc/istio-ingressgateway -o jsonpath='{.status.loadBalancer.ingress[0].hostname}') +❯ export PKE_INGRESS=$(kubectl --context=${CTX_PKE} -n istio-system get svc/istio-meshexpansion-gateway-multimesh -o jsonpath='{.status.loadBalancer.ingress[0].hostname}') ❯ for i in `seq 1 100`; do curl -s "http://${PKE_INGRESS}/" |grep "Hostname"; done | sort | uniq -c 100 Hostname: echo-5c7dd5494d-k8nn9 @@ -189,11 +192,14 @@ So far so good, the only running pod in the echo service answered to every reque ### Create a service entry in the PKE cluster for the `echo` service running on the GKE cluster -In order to allow access to `echo` running on the GKE cluster, we need to create a service entry for it in the PKE cluster. The host name of the service entry should be of the form `..global` where name and namespace correspond to the remote service’s name and namespace respectively. +In order to allow access to `echo` running on the GKE cluster, we need to create a service entry for it in the PKE cluster. +The host name of the service entry should be of the form `..` where name and namespace correspond to the remote service’s name and namespace respectively. -For DNS resolution for services under the `*.global` domain, you need to assign these services an IP address. In this example we’ll use IPs in 127.255.0.0/16. Application traffic for these IPs will be captured by the sidecar and routed to the appropriate remote service. +For DNS resolution for services under the `*.` domain, you need to assign these services an IP address. +In this example we’ll use IPs in 127.255.0.0/16. +Application traffic for these IPs will be captured by the sidecar and routed to the appropriate remote service. -> Each service (in the .global DNS domain) must have a unique IP within the cluster, but they are not need to be routable. +> Each service (in the . DNS domain) must have a unique IP within the cluster, but they are not need to be routable. ```bash ❯ kubectl apply --context=$CTX_PKE -n default -f - < + - echo.default.acme.corp location: MESH_INTERNAL ports: - name: http1 @@ -214,13 +220,56 @@ spec: addresses: - 127.255.0.1 endpoints: - - address: $(kubectl --context ${CTX_GKE} -n istio-system get svc/istio-ingressgateway -o jsonpath='{@.status.loadBalancer.ingress[0].ip}') + - address: $(kubectl --context ${CTX_GKE} -n istio-system get svc/istio-meshexpansion-gateway-multimesh -o jsonpath='{@.status.loadBalancer.ingress[0].ip}') ports: http1: 15443 # Do not change this port value EOF ``` -The configurations above will result that all traffic from the PKE cluster for `echo.default.global` to be routed to the endpoint `IPofGKEIngressGateway:15443` over a mutual TLS connection. The port 15443 for the ingress gateway is configured in a special SNI-aware `Gateway` resource that the operator installed as part of the reconciliation logic. +The configurations above will result that all traffic from the PKE cluster for `echo.default.acme.corp` to be routed to the endpoint `IPofGKEIngressGateway:15443` over a mutual TLS connection. +The port 15443 for the ingress gateway is configured in a special SNI-aware `Gateway` resource that the operator installed as part of the reconciliation logic. + +### Create a service entry in the GKE cluster for the `echo` service + +With the above ServiceEntry resource we solved that the traffic on the PKE cluster when calling the `echo.default.acme.corp` address will be routed to the GKE cluster's ingress gateway. +Now, we need to make sure that when the GKE cluster's ingress gateway receives a request for `echo.default.acme.corp`, then it is forwarded to the GKE cluster's echo pod, for which the address is: `echo.default.svc.cluster.local`. + +There are two options to do this: + +1. With an EnvoyFilter resource, make sure that all requests coming to the GKE clusters ingress gateway pod in the `*.acme.corp` format will be translated to `*.svc.local` +2. Define a ServiceEntry resource on the GKE side as well for all the services you'd like to expose from the GKE cluster and make sure that e.g. the local echo service is called. + +The advantage of the first approach is that it automatically routes all incoming requests to the appropriate local service and no manual setup is needed. +This feature can be enabled by setting the `spec.multiMeshExpansion.envoyFilterEnabled` field to `true` in the Istio CR. + +However, the EnvoyFilter approach is automatic, the issue with it is that it automatically exposes all services from the cluster, even ones that were not intended to causing negative security implications. +For that reason, the second approach might be more appropriate, which is creating a ServiceEntry resource on the GKE cluster, which looks like this: + +```bash +❯ kubectl apply --context=$CTX_GKE -n default -f - < This new control plane is often referred to as a *canary*, but, in practice, it is advisable that this be named based on Istio version, as it will remain on the cluster for the long term. -1. Migrate gateways to use the new Istio 1.8 control plane +1. Migrate gateways to use the new Istio 1.9 control plane This has been intentionally left as a manual step during the new control plane installation with the Istio operator, so that users can make sure that they're ready to use the control plane for their gateways, and only migrate after. 1. Migrate data plane applications It is recommended that for safety reasons you perform this migration gradually. - During the data plane migration, it is important to keep in mind that the two Istio control planes share trust (because they use the same certificates for encrypted communication). Therefore, when an application pod that still uses Istio's 1.7 control plane calls another pod that already uses Istio's 1.8 control plane, the encrypted communication will succeed because of that shared trust. + During the data plane migration, it is important to keep in mind that the two Istio control planes share trust (because they use the same certificates for encrypted communication). Therefore, when an application pod that still uses Istio's 1.8 control plane calls another pod that already uses Istio's 1.9 control plane, the encrypted communication will succeed because of that shared trust. That's why this migration can be performed on a namespace by namespace basis and the **communication** of the pods **won't be affected.** -1. Delete the Istio 1.7 control plane +1. Delete the Istio 1.8 control plane - Once the migration is finished, and you've made sure that your applications are working properly in conjunction with the new control plane, the older Istio 1.7 control plane can be safely deleted. + Once the migration is finished, and you've made sure that your applications are working properly in conjunction with the new control plane, the older Istio 1.8 control plane can be safely deleted. It's recommended that you take some time to make sure that everything is working on the new control plane before turning off the old one. The overhead of doing so is minimal as it's only an `istiod` deployment running. > In the traditional sense, a canary upgrade flow ends with a rolling update of the old application into the new one. @@ -49,10 +49,10 @@ So our starting point is a running Istio operator and Istio 1.7 control plane, w ## Try it out! -First, we'll deploy an Istio 1.7 control plane with the Istio operator and two demo applications in separate namespaces. -Then, we'll deploy an Istio 1.8 control plane alongside the other control plane and migrate the demo applications to the new control plane gradually. +First, we'll deploy an Istio 1.8 control plane with the Istio operator and two demo applications in separate namespaces. +Then, we'll deploy an Istio 1.9 control plane alongside the other control plane and migrate the demo applications to the new control plane gradually. During the process we'll make sure that the communication works even when the demo apps are on different control planes at the time. -When the data plane migration is finished, we'll delete the Istio 1.7 control plane and operator. +When the data plane migration is finished, we'll delete the Istio 1.8 control plane and operator. ### Setup @@ -60,29 +60,29 @@ When the data plane migration is finished, we'll delete the Istio 1.7 control pl > If you need a hand with this, you can use our free version of [Banzai Cloud's Pipeline platform](https://try.pipeline.banzai.cloud/) to create a cluster. -### Deploy Istio 1.7 control plane +### Deploy Istio 1.8 control plane -1. Deploy an Istio operator version, which can install an Istio 1.7 control plane. +1. Deploy an Istio operator version, which can install an Istio 1.8 control plane. ```bash $ helm repo add banzaicloud-stable https://kubernetes-charts.banzaicloud.com - $ helm install istio-operator-v17x --create-namespace --namespace=istio-system --set-string operator.image.tag=0.7.8 --set-string istioVersion=1.7 banzaicloud-stable/istio-operator + $ helm install istio-operator-v18x --create-namespace --namespace=istio-system --set-string operator.image.tag=0.8.6 --set-string istioVersion=1.8 banzaicloud-stable/istio-operator ``` -1. Apply an `Istio` Custom Resource and let the operator reconcile the Istio 1.7 control plane. +1. Apply an `Istio` Custom Resource and let the operator reconcile the Istio 1.8 control plane. ```bash - $ kubectl apply -n istio-system -f https://raw.githubusercontent.com/banzaicloud/istio-operator/release-1.7/config/samples/istio_v1beta1_istio.yaml + $ kubectl apply -n istio-system -f https://raw.githubusercontent.com/banzaicloud/istio-operator/release-1.8/config/samples/istio_v1beta1_istio.yaml ``` -1. Check that the Istio 1.7 control plane is deployed. +1. Check that the Istio 1.8 control plane is deployed. ```bash $ kubectl get po -n=istio-system - NAME READY STATUS RESTARTS AGE - istio-ingressgateway-55b89d99d7-4m884 1/1 Running 0 17s - istio-operator-v16x-0 2/2 Running 0 57s - istiod-5865cb6547-zp5zh 1/1 Running 0 29s + NAME READY STATUS RESTARTS AGE + istio-istio-sample-v18x-ingressgateway-55b89d99d7-4m884 1/1 Running 0 17s + istio-operator-v18x-0 2/2 Running 0 57s + istiod-istio-sample-v18x-5865cb6547-zp5zh 1/1 Running 0 29s ``` ### Deploy demo app @@ -97,16 +97,17 @@ When the data plane migration is finished, we'll delete the Istio 1.7 control pl 1. Add those namespaces to the mesh. ```bash - $ kubectl patch istio -n istio-system istio-sample --type=json -p='[{"op": "replace", "path": "/spec/autoInjectionNamespaces", "value": ["demo-a", "demo-b"]}]' + $ kubectl label ns demo-a istio.io/rev=istio-sample-v18x.istio-system + $ kubectl label ns demo-b istio.io/rev=istio-sample-v18x.istio-system ``` -1. Make sure that the namespaces are labeled for sidecar injection (if not, wait a few seconds, then please re-check the namespaces). +1. Make sure that the namespaces are labeled for sidecar injection. ```bash - $ kubectl get ns demo-a demo-b -L istio-injection - NAME STATUS AGE ISTIO-INJECTION - demo-a Active 2m11s enabled - demo-b Active 2m9s enabled + $ kubectl get ns demo-a demo-b -L istio.io/rev + NAME STATUS AGE REV + demo-a Active 2m11s istio-sample-v18x.istio-system + demo-b Active 2m9s istio-sample-v18x.istio-system ``` 1. Deploy two sample applications in those two namespaces. @@ -150,9 +151,7 @@ When the data plane migration is finished, we'll delete the Istio 1.7 control pl targetPort: 8080 selector: k8s-app: app-a - ``` - - ```yaml + --- apiVersion: apps/v1 kind: Deployment metadata: @@ -216,42 +215,42 @@ When the data plane migration is finished, we'll delete the Istio 1.7 control pl 200 ``` -### Deploy Istio 1.8 control plane +### Deploy Istio 1.9 control plane -1. Deploy an Istio operator version, which can install an Istio 1.8 control plane. +1. Deploy an Istio operator version, which can install an Istio 1.9 control plane. ```bash - $ helm install istio-operator-v18x --create-namespace --namespace=istio-system --set-string operator.image.tag=0.8.6 banzaicloud-stable/istio-operator + $ helm install istio-operator-v19x --create-namespace --namespace=istio-system --set-string operator.image.tag=0.9.0 banzaicloud-stable/istio-operator ``` *Note: In case you upgrade from an earlier chart version your Istio operator CRD definitions might be outdated in which case you should apply the [new CRDs](../../deploy/charts/istio-operator/crds) manually!* -1. Apply an `Istio` Custom Resource and let the operator reconcile the Istio 1.8 control plane. +1. Apply an `Istio` Custom Resource and let the operator reconcile the Istio 1.9 control plane. ```bash - $ kubectl apply -n istio-system -f https://raw.githubusercontent.com/banzaicloud/istio-operator/release-1.8/config/samples/istio_v1beta1_istio.yaml + $ kubectl apply -n istio-system -f https://raw.githubusercontent.com/banzaicloud/istio-operator/release-1.9/config/samples/istio_v1beta1_istio.yaml ``` -1. Check that the Istio 1.8 control plane is also deployed. +1. Check that the Istio 1.9 control plane is also deployed. ```bash $ kubectl get po -n=istio-system - NAME READY STATUS RESTARTS AGE - istio-ingressgateway-55b89d99d7-4m884 1/1 Running 0 6m38s - istio-operator-v17x-0 2/2 Running 0 7m18s - istio-operator-v18x-0 2/2 Running 0 76s - istiod-676fc6d449-9jwfj 1/1 Running 0 10s - istiod-istio-sample-v17x-7dbdf4f9fc-bfxhl 1/1 Running 0 18s + NAME READY STATUS RESTARTS AGE + istio-istio-sample-v18x-ingressgateway-55b89d99d7-4m884 1/1 Running 0 6m38s + istio-operator-v18x-0 2/2 Running 0 7m18s + istio-operator-v19x-0 2/2 Running 0 76s + istiod-istio-sample-v19x-676fc6d449-9jwfj 1/1 Running 0 10s + istiod-istio-sample-v18x-7dbdf4f9fc-bfxhl 1/1 Running 0 6m32s ``` ### Migrate data plane #### Migrate ingress -1. Change the ingress gateway so that it utilizes the new Istio 1.8 control plane. +1. Change the ingress gateway so that it utilizes the new Istio 1.9 control plane. ```bash - $ kubectl patch mgw -n istio-system istio-ingressgateway --type=json -p='[{"op": "replace", "path": "/spec/istioControlPlane/name", "value": "istio-sample-v18x"}]' + $ kubectl patch mgw -n istio-system istio-ingressgateway-istio-sample-v18x --type=json -p='[{"op": "replace", "path": "/spec/istioControlPlane/name", "value": "istio-sample-v19x"}]' ``` #### Migrate first namespace @@ -259,7 +258,7 @@ When the data plane migration is finished, we'll delete the Istio 1.7 control pl 1. Label the first namespace so that all workloads there utilize the new control plane. ```bash - $ kubectl label ns demo-a istio-injection- istio.io/rev=istio-sample-v18x.istio-system + $ kubectl label ns demo-a istio-injection- istio.io/rev=istio-sample-v19x.istio-system --overwrite ``` The new `istio.io/rev` label needs to be used for the new revisioned control planes to indicate that it should perform sidecar injection. @@ -270,7 +269,7 @@ When the data plane migration is finished, we'll delete the Istio 1.7 control pl ```bash $ kubectl get ns demo-a -L istio-injection -L istio.io/rev NAME STATUS AGE ISTIO-INJECTION REV - demo-a Active 12m istio-sample-v18x.istio-system + demo-a Active 12m istio-sample-v19x.istio-system ``` 1. Restart the pod in the namespace. @@ -279,22 +278,22 @@ When the data plane migration is finished, we'll delete the Istio 1.7 control pl $ kubectl rollout restart deployment -n demo-a ``` -1. Make sure that the new 1.8 sidecar proxy is used for the new pod. +1. Make sure that the new 1.9 sidecar proxy is used for the new pod. ```bash $ APP_A_POD_NAME=$(kubectl get pods -n demo-a -l k8s-app=app-a -o=jsonpath='{.items[0].metadata.name}') $ kubectl get po -n=demo-a $APP_A_POD_NAME -o yaml | grep istio/proxyv2: - image: docker.io/istio/proxyv2:1.8.2 - image: docker.io/istio/proxyv2:1.8.2 - image: docker.io/istio/proxyv2:1.8.2 - image: docker.io/istio/proxyv2:1.8.2 + image: docker.io/istio/proxyv2:1.9.0 + image: docker.io/istio/proxyv2:1.9.0 + image: docker.io/istio/proxyv2:1.9.0 + image: docker.io/istio/proxyv2:1.9.0 ``` #### Test communication Let's make sure that encrypted communication still works between pods that use different control planes. The reason why the data plane migration can be done gradually is that the communication works even between pods on different control planes. In this step it will be verified that the communication works in such a way, making the upgrade flow a safe one. -Remember that the pod(s) in the `demo-a` namespace are already on the Istio 1.8 control plane, but the pod in `demo-b` is still using the Istio 1.7 version. +Remember that the pod(s) in the `demo-a` namespace are already on the Istio 1.9 control plane, but the pod in `demo-b` is still using the Istio 1.8 version. 1. Save the application pod names for easier access. @@ -322,7 +321,7 @@ Remember that the pod(s) in the `demo-a` namespace are already on the Istio 1.8 1. Label the second namespace so that all workloads there utilize the new control plane. ```bash - $ kubectl label ns demo-b istio-injection- istio.io/rev=istio-sample-v18x.istio-system + $ kubectl label ns demo-b istio-injection- istio.io/rev=istio-sample-v19x.istio-system --overwrite ``` 1. Make sure that the labeling is correct. @@ -330,7 +329,7 @@ Remember that the pod(s) in the `demo-a` namespace are already on the Istio 1.8 ```bash $ kubectl get ns demo-b -L istio-injection -L istio.io/rev NAME STATUS AGE ISTIO-INJECTION REV - demo-b Active 19m istio-sample-v18x.istio-system + demo-b Active 19m istio-sample-v19x.istio-system ``` 1. Restart the pod in the namespace. @@ -339,37 +338,37 @@ Remember that the pod(s) in the `demo-a` namespace are already on the Istio 1.8 $ kubectl rollout restart deployment -n demo-b ``` -1. Make sure that now the new 1.8 sidecar proxy is used for the new pod. +1. Make sure that now the new 1.9 sidecar proxy is used for the new pod. ```bash $ APP_B_POD_NAME=$(kubectl get pods -n demo-b -l k8s-app=app-b -o=jsonpath='{.items[0].metadata.name}') $ kubectl get po -n=demo-b $APP_B_POD_NAME -o yaml | grep istio/proxyv2: - image: docker.io/istio/proxyv2:1.8.2 - image: docker.io/istio/proxyv2:1.8.2 - image: docker.io/istio/proxyv2:1.8.2 - image: docker.io/istio/proxyv2:1.8.2 + image: docker.io/istio/proxyv2:1.9.0 + image: docker.io/istio/proxyv2:1.9.0 + image: docker.io/istio/proxyv2:1.9.0 + image: docker.io/istio/proxyv2:1.9.0 ``` -### Uninstall the Istio 1.7 control plane +### Uninstall the Istio 1.8 control plane -When the data plane is fully migrated to the 1.8 version and you made sure that it works as expected, we can delete the "old" Istio 1.7 control plane. +When the data plane is fully migrated to the 1.9 version and you made sure that it works as expected, we can delete the "old" Istio 1.8 control plane. -1. Delete the 1.7 `Istio` Custom Resource to delete the Istio 1.7 control plane. +1. Delete the 1.8 `Istio` Custom Resource to delete the Istio 1.8 control plane. ```bash - $ kubectl delete -n istio-system -f https://raw.githubusercontent.com/banzaicloud/istio-operator/release-1.7/config/samples/istio_v1beta1_istio.yaml + $ kubectl delete -n istio-system -f https://raw.githubusercontent.com/banzaicloud/istio-operator/release-1.8/config/samples/istio_v1beta1_istio.yaml ``` -1. Uninstall the Istio operator for version 1.7. +1. Uninstall the Istio operator for version 1.8. - > :warning: If you installed the Istio operator chart for Istio 1.7 with Helm2, then first upgrade that chart with Helm version 3.1.0, otherwise your CRDs will be deleted! + > :warning: If you installed the Istio operator chart for Istio 1.8 with Helm2, then first upgrade that chart with Helm version 3.1.0, otherwise your CRDs will be deleted! > ```bash - > $ helm upgrade istio-operator-v17x --namespace=istio-system --set-string operator.image.tag=0.7.8 --set-string istioVersion=1.7 banzaicloud-stable/istio-operator + > $ helm upgrade istio-operator-v18x --namespace=istio-system --set-string operator.image.tag=0.8.6 --set-string istioVersion=1.8 banzaicloud-stable/istio-operator > ``` > For more info on CRD handling issues in Helm, check out these two PRs and the related issues: [https://github.com/helm/helm/pull/7320](https://github.com/helm/helm/pull/7320), [https://github.com/helm/helm/pull/7571](https://github.com/helm/helm/pull/7571). ```bash - $ helm uninstall -n=istio-system istio-operator-v16x + $ helm uninstall -n=istio-system istio-operator-v18x ``` # Canary upgrade with [Backyards](https://banzaicloud.com/products/backyards/) diff --git a/docs/upgrade/in-place-upgrade.md b/docs/upgrade/in-place-upgrade.md index d4ee1b803..896cfa353 100644 --- a/docs/upgrade/in-place-upgrade.md +++ b/docs/upgrade/in-place-upgrade.md @@ -4,10 +4,10 @@ The steps are listed in this doc to perform an Istio in-place version upgrade wi ## Istio Control Plane Upgrade -Let us suppose that we have a [Kubernetes](https://kubernetes.io/) cluster with Istio 1.7.4, and we would like to upgrade our Istio components to Istio version 1.8.2. Here are the steps we need to perform to accomplish this with the operator: +Let us suppose that we have a [Kubernetes](https://kubernetes.io/) cluster with Istio 1.8.2, and we would like to upgrade our Istio components to Istio version 1.9.0. Here are the steps we need to perform to accomplish this with the operator: -1. Deploy a version of the operator which supports Istio 1.8.x -2. Apply a [Custom Resource](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/) using Istio 1.8.2 components +1. Deploy a version of the operator which supports Istio 1.9.x +2. Apply a [Custom Resource](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/) using Istio 1.9.0 components What happens is that once the operator discerns that the Custom Resource it's watching has changed, it reconciles all Istio-related components in order to perform a control plane upgrade. @@ -17,18 +17,18 @@ What happens is that once the operator discerns that the Custom Resource it's wa #### Requirements -- Minikube v1.1.1+ or Kubernetes 1.16.0+ +- Minikube v1.1.1+ or Kubernetes 1.17.0+ - `KUBECONFIG` set to an existing Kubernetes cluster -If you already have Istio 1.7.x installed on your cluster you can skip the next section and can jump right to [Deploy sample BookInfo application](#deploy-sample-bookinfo-application). +If you already have Istio 1.8.x installed on your cluster you can skip the next section and can jump right to [Deploy sample BookInfo application](#deploy-sample-bookinfo-application). -#### Install Istio 1.7.4 +#### Install Istio 1.8.2 -We install Istio with our operator, so first we need to check out the `1.7.x` branch of our operator (this branch supports Istio versions 1.7.x): +We install Istio with our operator, so first we need to check out the `release-1.8` branch of our operator (this branch supports Istio versions 1.8.x): ```bash $ git clone git@github.com:banzaicloud/istio-operator.git -$ git checkout 1.7.x +$ git checkout release-1.8 ``` **Install Istio Operator with make** @@ -48,16 +48,16 @@ Alternatively, if you just can't let go of Helm completely, you can deploy the o ```bash $ helm repo add banzaicloud-stable https://kubernetes-charts.banzaicloud.com -$ helm install istio-operator --create-namespace --namespace=istio-system --set-string operator.image.tag=0.6.13 --set-string istioVersion=1.7 banzaicloud-stable/istio-operator +$ helm install istio-operator --create-namespace --namespace=istio-system --set-string operator.image.tag=0.8.6 --set-string istioVersion=1.8 banzaicloud-stable/istio-operator ``` -*Note: As of now, the `0.7.8` tag is the latest version of our operator to support Istio versions 1.7.x +*Note: As of now, the `0.8.6` tag is the latest version of our operator to support Istio versions 1.8.x **Apply the Custom Resource** Once you've applied the Custom Resource to your cluster, the operator will start reconciling all of Istio's components. -There are some sample Custom Resource configurations in the `config/samples` folder. To deploy Istio 1.7.4 with its default configuration options, use the following command: +There are some sample Custom Resource configurations in the `config/samples` folder. To deploy Istio 1.8.2 with its default configuration options, use the following command: ```bash $ kubectl apply -n istio-system -f config/samples/istio_v1beta1_istio.yaml @@ -73,24 +73,24 @@ istio-operator-controller-manager-0 2/2 Running 0 9m istiod-fc664fcbd-kgl2k 2/2 Running 0 1m ``` -The `Istio` Custom Resource is showing `Available` in its status field and the Istio components are using `1.7.4` images : +The `Istio` Custom Resource is showing `Available` in its status field and the Istio components are using `1.8.2` images : ```bash -$ kubectl get istio -n istio-system istio -o yaml | grep "image:" - image: docker.io/istio/citadel:1.7.4 - image: docker.io/istio/galley:1.7.4 - image: docker.io/istio-mixer:1.7.4 - image: docker.io/istio-pilot:1.7.4 - image: docker.io/istio/proxyv2:1.7.4 - image: docker.io/istio/sidecar_injector:1.7.4 +$ kubectl get -n istio-system istio -o yaml | grep "image:" + image: docker.io/istio/citadel:1.8.2 + image: docker.io/istio/galley:1.8.2 + image: docker.io/istio-mixer:1.8.2 + image: docker.io/istio-pilot:1.8.2 + image: docker.io/istio/proxyv2:1.8.2 + image: docker.io/istio/sidecar_injector:1.8.2 ``` #### Deploy sample BookInfo application -Let's make sure that Istio 1.7.4 is properly installed with Istio's BookInfo application: +Let's make sure that Istio 1.8.2 is properly installed with Istio's BookInfo application: ```bash -$ kubectl -n default apply -f https://raw.githubusercontent.com/istio/istio/1.7.4/samples/bookinfo/platform/kube/bookinfo.yaml +$ kubectl -n default apply -f https://raw.githubusercontent.com/istio/istio/1.8.2/samples/bookinfo/platform/kube/bookinfo.yaml service "details" created deployment.extensions "details-v1" created service "ratings" created @@ -102,7 +102,7 @@ deployment.extensions "reviews-v3" created service "productpage" created deployment.extensions "productpage-v1" created -$ kubectl -n default apply -f https://raw.githubusercontent.com/istio/istio/1.7.4/samples/bookinfo/networking/bookinfo-gateway.yaml +$ kubectl -n default apply -f https://raw.githubusercontent.com/istio/istio/1.8.2/samples/bookinfo/networking/bookinfo-gateway.yaml gateway.networking.istio.io "bookinfo-gateway" created virtualservice.networking.istio.io "bookinfo" created ``` @@ -114,13 +114,13 @@ $ INGRESS_HOST=$(kubectl -n istio-system get service istio-ingressgateway -o jso $ open http://$INGRESS_HOST/productpage ``` -#### Install Istio 1.8.2 +#### Install Istio 1.9.0 -To install Istio 1.8.2, first we need to check out the `release-1.8` branch of our operator (this branch supports the Istio 1.8.x versions): +To install Istio 1.9.0, first we need to check out the `release-1.9` branch of our operator (this branch supports the Istio 1.9.x versions): ```bash $ git clone git@github.com:banzaicloud/istio-operator.git -$ git checkout release-1.8 +$ git checkout release-1.9 ``` > If you installed Istio operator with `make` in the previous section go to to `Install Istio Operator with make`, if you installed it with `helm` go to `Install Istio Operator with helm`. If you haven't installed Istio operator so far you can choose whichever install option you like. @@ -144,18 +144,18 @@ Alternatively, you can deploy the operator using a [Helm chart](https://github.c ```bash $ helm repo add banzaicloud-stable https://kubernetes-charts.banzaicloud.com -$ helm upgrade istio-operator --install --namespace=istio-system --set-string operator.image.tag=0.8.6 --set-string istioVersion=1.8.2 banzaicloud-stable/istio-operator +$ helm upgrade istio-operator --install --namespace=istio-system --set-string operator.image.tag=0.9.0 --set-string istioVersion=1.9.0 banzaicloud-stable/istio-operator ``` -*Note: As of now, the `0.8.6` tag is the latest version of our operator to support Istio versions 1.8.x* +*Note: As of now, the `0.9.0` tag is the latest version of our operator to support Istio versions 1.9.x* *Note: In case you upgrade from an earlier chart version your Istio operator CRD definitions might be outdated in which case you should apply the [new CRDs](../../deploy/charts/istio-operator/crds) manually!* **Use the new Custom Resource** -> If you've installed Istio 1.7.4 or earlier with the Istio operator, and if you check the logs of the operator pod at this point, you will see the following error message: `intended Istio version is unsupported by this version of the operator`. We need to update the Istio Custom Resource with Istio 1.8's components for the operator to be reconciled with the Istio control plane. +> If you've installed Istio 1.8.2 or earlier with the Istio operator, and if you check the logs of the operator pod at this point, you will see the following error message: `intended Istio version is unsupported by this version of the operator`. We need to update the Istio Custom Resource with Istio 1.9's components for the operator to be reconciled with the Istio control plane. -To deploy Istio 1.8.2 with its default configuration options, use the following command: +To deploy Istio 1.9.0 with its default configuration options, use the following command (please modify the sample CR to have the same name as the one on your cluster so that replace command can work): ```bash $ kubectl replace -n istio-system -f config/samples/istio_v1beta1_istio.yaml @@ -171,26 +171,26 @@ istio-operator-controller-manager-0 2/2 Running 0 16m istiod-84588fff4c-4lhq8 2/2 Running 0 7m ``` -The `Istio` Custom Resource is showing `Available` in its status field, and the Istio components are now using `1.8.2` images: +The `Istio` Custom Resource is showing `Available` in its status field, and the Istio components are now using `1.9.0` images: ```bash $ kubectl describe istio -n istio-system istio | grep Image: - Image: docker.io/istio/citadel:1.8.2 - Image: docker.io/istio/galley:1.8.2 - Image: docker.io/istio/node-agent-k8s:1.8.2 - Image: docker.io/istio/node-agent-k8s:1.8.2 - Image: coredns/coredns:1.8.2 + Image: docker.io/istio/citadel:1.9.0 + Image: docker.io/istio/galley:1.9.0 + Image: docker.io/istio/node-agent-k8s:1.9.0 + Image: docker.io/istio/node-agent-k8s:1.9.0 + Image: coredns/coredns:1.9.0 Plugin Image: docker.io/istio/coredns-plugin:0.2-istio-1.1 - Image: docker.io/istio/mixer:1.8.2 - Image: docker.io/istio/node-agent-k8s:1.8.2 - Image: docker.io/istio/pilot:1.8.2 - Image: docker.io/istio/proxyv2:1.8.2 - Image: docker.io/istio/proxyv2:1.8.2 - Image: docker.io/istio/sidecar_injector:1.8.2 - Image: docker.io/istio/install-cni:1.8.2 + Image: docker.io/istio/mixer:1.9.0 + Image: docker.io/istio/node-agent-k8s:1.9.0 + Image: docker.io/istio/pilot:1.9.0 + Image: docker.io/istio/proxyv2:1.9.0 + Image: docker.io/istio/proxyv2:1.9.0 + Image: docker.io/istio/sidecar_injector:1.9.0 + Image: docker.io/istio/install-cni:1.9.0 ``` -At this point, your Istio control plane is upgraded to Istio 1.8.2 and your BookInfo application should still be available at: +At this point, your Istio control plane is upgraded to Istio 1.9.0 and your BookInfo application should still be available at: ```bash $ open http://$INGRESS_HOST/productpage ``` diff --git a/pkg/apis/istio/v1beta1/defaults.go b/pkg/apis/istio/v1beta1/defaults.go index 9202c6d3a..52640a781 100644 --- a/pkg/apis/istio/v1beta1/defaults.go +++ b/pkg/apis/istio/v1beta1/defaults.go @@ -28,9 +28,9 @@ import ( const ( banzaiImageHub = "ghcr.io/banzaicloud" - banzaiImageVersion = "1.8.2-bzc" + banzaiImageVersion = "1.9.0-bzc" defaultImageHub = "docker.io/istio" - defaultImageVersion = "1.8.2" + defaultImageVersion = "1.9.0" defaultLogLevel = "default:info" defaultMeshPolicy = PERMISSIVE defaultPilotImage = defaultImageHub + "/" + "pilot" + ":" + defaultImageVersion @@ -69,7 +69,7 @@ const ( defaultEnvoyAccessLogEncoding = "TEXT" defaultClusterName = "Kubernetes" defaultNetworkName = "local-network" - defaultVaultEnvImage = "ghcr.io/banzaicloud/vault-env:1.8.0" + defaultVaultEnvImage = "ghcr.io/banzaicloud/vault-env:1.11.1" defaultVaultAddress = "https://vault.vault:8200" defaultVaultRole = "istiod" defaultVaultCACertPath = "vault:secret/data/pki/istiod#certificate" @@ -180,6 +180,12 @@ func SetDefaults(config *Istio) { if config.Spec.Istiod.EnableStatus == nil { config.Spec.Istiod.EnableStatus = util.BoolPointer(false) } + if config.Spec.Istiod.ExternalIstiod == nil { + config.Spec.Istiod.ExternalIstiod = &ExternalIstiodConfiguration{} + } + if config.Spec.Istiod.ExternalIstiod.Enabled == nil { + config.Spec.Istiod.ExternalIstiod.Enabled = util.BoolPointer(false) + } if config.Spec.Istiod.CA == nil { config.Spec.Istiod.CA = &IstiodCAConfiguration{} diff --git a/pkg/apis/istio/v1beta1/istio_types.go b/pkg/apis/istio/v1beta1/istio_types.go index 248932737..5456dbb94 100644 --- a/pkg/apis/istio/v1beta1/istio_types.go +++ b/pkg/apis/istio/v1beta1/istio_types.go @@ -35,12 +35,18 @@ const ( LegacyAutoInjectionLabelKey = "istio-injection" RevisionedAutoInjectionLabelKey = "istio.io/rev" - supportedIstioMinorVersionRegex = "^1.8" + ManualInjectionLabelKey = "sidecar.istio.io/inject" + + supportedIstioMinorVersionRegex = "^1.9" ) var ( - SupportedIstioVersion = "1.8.2" - Version = "0.8.6" + SupportedIstioVersion = "1.9.0" + Version = "0.9.0" + + DisableInjectionLabel = map[string]string{ + ManualInjectionLabelKey: "false", + } ) // IstioVersion stores the intended Istio version @@ -115,10 +121,17 @@ type IstiodConfiguration struct { MultiClusterSupport *bool `json:"multiClusterSupport,omitempty"` MultiControlPlaneSupport *bool `json:"multiControlPlaneSupport,omitempty"` ExposeWebhookPort *bool `json:"exposeWebhookPort,omitempty"` + // Settings for local istiod to control remote clusters as well + ExternalIstiod *ExternalIstiodConfiguration `json:"externalIstiod,omitempty"` // Istiod CA config CA *IstiodCAConfiguration `json:"ca,omitempty"` } +// ExternalIstiodConfiguration defines settings for local istiod to control remote clusters as well +type ExternalIstiodConfiguration struct { + Enabled *bool `json:"enabled,omitempty"` +} + // IstiodCAConfiguration defines configuration for Istiod CA type IstiodCAConfiguration struct { // Configuration for Vault CA integration diff --git a/pkg/apis/istio/v1beta1/istio_types_test.go b/pkg/apis/istio/v1beta1/istio_types_test.go index 544d437e9..d5b35ac4d 100644 --- a/pkg/apis/istio/v1beta1/istio_types_test.go +++ b/pkg/apis/istio/v1beta1/istio_types_test.go @@ -36,7 +36,7 @@ func TestStorageIstio(t *testing.T) { Namespace: "default", }, Spec: IstioSpec{ - Version: "1.8.2", + Version: "1.9.0", }, } g := gomega.NewGomegaWithT(t) diff --git a/pkg/apis/istio/v1beta1/zz_generated.deepcopy.go b/pkg/apis/istio/v1beta1/zz_generated.deepcopy.go index 52951207a..20a569fb7 100644 --- a/pkg/apis/istio/v1beta1/zz_generated.deepcopy.go +++ b/pkg/apis/istio/v1beta1/zz_generated.deepcopy.go @@ -394,6 +394,26 @@ func (in *EnvoyStatsD) DeepCopy() *EnvoyStatsD { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ExternalIstiodConfiguration) DeepCopyInto(out *ExternalIstiodConfiguration) { + *out = *in + if in.Enabled != nil { + in, out := &in.Enabled, &out.Enabled + *out = new(bool) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalIstiodConfiguration. +func (in *ExternalIstiodConfiguration) DeepCopy() *ExternalIstiodConfiguration { + if in == nil { + return nil + } + out := new(ExternalIstiodConfiguration) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *GalleyConfiguration) DeepCopyInto(out *GalleyConfiguration) { *out = *in @@ -884,6 +904,11 @@ func (in *IstiodConfiguration) DeepCopyInto(out *IstiodConfiguration) { *out = new(bool) **out = **in } + if in.ExternalIstiod != nil { + in, out := &in.ExternalIstiod, &out.ExternalIstiod + *out = new(ExternalIstiodConfiguration) + (*in).DeepCopyInto(*out) + } if in.CA != nil { in, out := &in.CA, &out.CA *out = new(IstiodCAConfiguration) diff --git a/pkg/controller/istio/istio_controller.go b/pkg/controller/istio/istio_controller.go index 45827d8cf..e20fc55b0 100644 --- a/pkg/controller/istio/istio_controller.go +++ b/pkg/controller/istio/istio_controller.go @@ -59,7 +59,6 @@ import ( "github.com/banzaicloud/istio-operator/pkg/resources/istiocoredns" "github.com/banzaicloud/istio-operator/pkg/resources/istiod" "github.com/banzaicloud/istio-operator/pkg/resources/meshexpansion" - "github.com/banzaicloud/istio-operator/pkg/resources/mixer" "github.com/banzaicloud/istio-operator/pkg/resources/mixerlesstelemetry" "github.com/banzaicloud/istio-operator/pkg/resources/nodeagent" "github.com/banzaicloud/istio-operator/pkg/resources/pilot" @@ -155,7 +154,7 @@ type ReconcileIstio struct { type ReconcileComponent func(log logr.Logger, istio *istiov1beta1.Istio) error -// +kubebuilder:rbac:groups="",resources=nodes;services;endpoints;pods;replicationcontrollers;services;endpoints;pods,verbs=get;list;watch +// +kubebuilder:rbac:groups="",resources=nodes;services;endpoints;pods;replicationcontrollers;services;endpoints;pods,verbs=get;list;watch;update;patch // +kubebuilder:rbac:groups="",resources=serviceaccounts;configmaps;pods;events,verbs=get;list;watch;create;update;patch;delete // +kubebuilder:rbac:groups="",resources=namespaces,verbs=get;list;watch;update;patch // +kubebuilder:rbac:groups="",resources=namespaces/finalizers,verbs=update @@ -173,6 +172,7 @@ type ReconcileComponent func(log logr.Logger, istio *istiov1beta1.Istio) error // +kubebuilder:rbac:groups="authentication.k8s.io",resources=tokenreviews,verbs=create // +kubebuilder:rbac:groups="certificates.k8s.io",resources=certificatesigningrequests;certificatesigningrequests/approval;certificatesigningrequests/status,verbs=update;create;get;delete;watch // +kubebuilder:rbac:groups="certificates.k8s.io",resources=signers,resourceNames=kubernetes.io/legacy-unknown,verbs=approve +// +kubebuilder:rbac:groups="coordination.k8s.io",resources=leases,verbs=get;list;create;update // +kubebuilder:rbac:groups="extensions;networking.k8s.io",resources=ingresses,verbs=get;list;watch // +kubebuilder:rbac:groups="extensions;networking.k8s.io",resources=ingresses/status,verbs=* // +kubebuilder:rbac:groups="networking.k8s.io",resources=ingressclasses;ingresses,verbs=get;list;watch @@ -182,7 +182,7 @@ type ReconcileComponent func(log logr.Logger, istio *istiov1beta1.Istio) error // +kubebuilder:rbac:groups=istio.banzaicloud.io,resources=istios;istios/finalizers,verbs=get;list;watch;create;update;patch;delete // +kubebuilder:rbac:groups=istio.banzaicloud.io,resources=istios/status,verbs=get;update;patch -// +kubebuilder:rbac:groups=authentication.istio.io;cloud.istio.io;config.istio.io;istio.istio.io;networking.istio.io;security.istio.io;scalingpolicy.istio.io,resources=*,verbs=* +// +kubebuilder:rbac:groups=networking.istio.io;security.istio.io,resources=*,verbs=* // +kubebuilder:rbac:groups=admissionregistration.k8s.io,resources=validatingwebhookconfigurations;mutatingwebhookconfigurations,verbs=* // +kubebuilder:rbac:groups="",resources=secrets;services,verbs=get;list;watch;create;update;patch;delete // +kubebuilder:rbac:groups="authorization.k8s.io",resources=subjectaccessreviews,verbs=create @@ -348,8 +348,6 @@ func (r *ReconcileIstio) reconcile(logger logr.Logger, config *istiov1beta1.Isti }, r.Client, r.dynamic, config), galley.New(r.Client, config), sidecarinjector.New(r.Client, config), - mixer.NewPolicyReconciler(r.Client, r.dynamic, config), - mixer.NewTelemetryReconciler(r.Client, r.dynamic, config), pilot.New(r.Client, r.dynamic, config), istiod.New(r.Client, r.dynamic, config, r.mgr.GetScheme(), r.operatorConfig), cni.New(r.Client, config), @@ -409,6 +407,10 @@ func (r *ReconcileIstio) validateLegacyIstioComponentsAreDisabled(config *istiov return errors.New("Galley cannot be enabled") } + if util.PointerToBool(config.Spec.Mixer.Enabled) || util.PointerToBool(config.Spec.Telemetry.Enabled) || util.PointerToBool(config.Spec.Policy.Enabled) { + return errors.New("Mixer components cannot be enabled") + } + if util.PointerToBool(config.Spec.SidecarInjector.Enabled) { return errors.New("Sidecar injector cannot be enabled") } diff --git a/pkg/crds/generated/crds.gogen.go b/pkg/crds/generated/crds.gogen.go index 920651847..7fd53a672 100644 --- a/pkg/crds/generated/crds.gogen.go +++ b/pkg/crds/generated/crds.gogen.go @@ -24,9 +24,9 @@ var CRDs = func() http.FileSystem { "/istio.banzaicloud.io_istios.yaml": &vfsgen۰CompressedFileInfo{ name: "istio.banzaicloud.io_istios.yaml", modTime: time.Time{}, - uncompressedSize: 297100, + uncompressedSize: 297268, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x73\x23\x37\x96\xe6\x7b\xfd\x0a\x84\x63\x1f\xec\x75\xb3\xda\xde\xe9\x99\x98\xa9\x97\x0e\x96\xc4\x72\x6b\x2d\x55\x31\x24\x55\xf5\xce\x7a\x3c\x0e\x28\x13\xa4\x60\x25\x13\xb9\x48\x24\x25\xf6\xe5\xbf\x6f\x30\x79\x51\x4a\x4c\x00\x07\xc8\x64\x89\x92\xbe\xf3\x62\x97\x08\x1c\x9c\xc4\xf5\xe0\x03\xf0\x9d\x37\x83\xc1\xe0\x0d\x2f\xe4\x17\xa1\x4b\xa9\xf2\x77\x8c\x17\x52\xdc\x19\x91\x2f\xff\x55\xbe\xbd\xf9\xf7\xf2\xad\x54\x7f\x9c\xff\xf8\xe6\x46\xe6\xe9\x3b\x76\x54\x95\x46\xcd\xce\x45\xa9\x2a\x9d\x88\x63\x31\x91\xb9\x34\x52\xe5\x6f\x66\xc2\xf0\x94\x1b\xfe\xee\x0d\x63\x3c\xcf\x95\xe1\xcb\x3f\x97\xcb\x7f\x32\x96\xa8\xdc\x68\x95\x65\x42\x0f\xa6\x22\x7f\x7b\x53\x5d\x89\xab\x4a\x66\xa9\xd0\xb5\xf2\x4d\xd1\xf3\x1f\xde\xfe\xe9\xed\x0f\x6f\x18\x4b\xb4\xa8\xb3\x5f\xca\x99\x28\x0d\x9f\x15\xef\x58\x5e\x65\xd9\x1b\xc6\x72\x3e\x13\xef\x98\x2c\x8d\x54\xe5\xdb\xfa\x3f\x6f\xaf\x78\xfe\x37\x2e\x93\x4c\x55\xe9\x5b\xa9\xde\x94\x85\x48\x96\xa5\x4e\xb5\xaa\x8a\x75\xd2\xc7\x69\x56\x7a\xd6\xc6\xad\x3e\xec\x64\x99\xae\xfe\x77\x26\x4b\xf3\xf3\xfd\xdf\x4e\x65\x69\xea\xbf\x17\x59\xa5\x79\xb6\x29\xbc\xfe\x53\x29\xf3\x69\x95\x71\xbd\xfe\xe3\x1b\xc6\xca\x44\x15\xe2\x1d\xfb\xb8\x54\x5f\xf0\x44\xa4\x6f\x18\x5b\x7f\x5f\x5d\xdc\x80\xf1\x34\xad\x6b\x8c\x67\x63\x2d\x73\x23\xf4\x91\xca\xaa\xd9\xa6\xa6\x06\x2c\x15\x65\xa2\x65\x61\xea\x1a\xb9\x30\xdc\x54\x25\x53\x13\x66\xae\x05\xd3\xeb\x6a\xaf\x53\x32\xf6\x7b\xa9\xf2\x31\x37\xd7\xef\xd8\xdb\xb2\x4e\xf7\x76\x95\x7c\xfd\xf3\xaa\xaa\x1e\xfc\xc9\x2c\x96\xc6\x95\x46\xcb\x7c\xda\x56\xdc\x48\x6b\xa5\xd9\x4c\x94\x25\x9f\xda\x4b\xa9\x53\x9d\x3d\x48\xb4\x2a\xab\xfe\x81\x58\xd4\x49\x3e\xd5\xa2\x2c\xd9\x94\x1b\x71\xcb\x17\xcb\x6a\x59\xfe\x5b\xd0\x3f\xf6\xa7\x55\xce\xe1\x2a\xe3\x03\x43\x36\xca\x4f\xc6\x8e\x2f\x6f\x68\xdc\x74\xde\xb7\x3b\x1d\xef\x81\xda\xe1\xf6\x7b\x57\xea\x52\x6e\x56\x7f\x58\xfd\x3c\xff\xf1\x4a\x18\xfe\xe3\xaa\x67\x24\xd7\x62\xc6\xdf\xad\x93\xab\x42\xe4\xc3\xf1\xc9\x97\x7f\xb9\x78\xf0\x67\xc6\x0a\xad\x0a\xa1\x8d\xdc\xf4\xc5\x95\x34\x86\x63\xe3\xaf\x2d\x1f\xb1\x92\xba\x03\x53\x12\x36\xc7\xe8\xe3\xc4\xea\xea\x77\x91\x98\xc6\x0f\x9b\x71\x74\x2f\xed\xc6\xd6\x06\x57\x46\x9d\xe4\x4b\x05\x52\xe5\xdb\xbe\xbf\x93\x8c\x31\x69\xc4\xac\xe5\xcf\x56\x8b\x9b\x3f\x72\xad\xf9\xa2\xa5\xe0\x33\x93\xb5\xa8\x5c\xe5\xb9\x52\x2a\x13\x3c\x7f\xf4\x6b\xc2\xd7\x9d\xc6\x96\xad\xd5\x8e\x64\xf9\xed\x13\x99\x70\x13\xf4\x65\xf6\x5a\x5b\x49\x9a\x97\x1f\xef\x27\xa3\x5d\xb1\x2a\xf6\x1a\xfc\x30\x49\x5b\xf5\xad\xa4\x14\x89\x16\x66\x69\x84\xad\x18\x4f\x21\x96\x1e\xe4\x2b\x3d\x91\x86\xa7\x22\xdb\x2d\xd4\x5d\x65\xf7\x13\xe8\x91\xca\x0d\x97\xb9\xd0\x43\x3d\xb5\x54\x91\xb3\xf6\xbc\x75\xe7\xae\xb9\x7b\x43\x46\xf9\xfc\x0b\xd7\x31\x26\xf8\x7a\x07\xdb\xcc\x2e\xd6\x5f\x49\x5d\x80\xb1\x39\xcf\xaa\x9e\xb4\x7c\xd0\x6a\xe6\xd2\x44\xf9\x26\xb6\xf2\x0a\x26\x72\x7a\xc6\x8b\x9f\xc5\xe2\x5c\x4c\xdc\x89\xe9\x6a\x97\x72\x23\x16\xfe\x44\xc4\x6f\xde\x88\xaf\x19\xa2\x94\xaa\x62\xd5\x83\xe8\x8a\xdb\xa7\xb4\xc7\xa2\xc5\xff\xab\xa4\x16\xa9\x4f\xef\x60\x59\x55\x9e\x34\xce\xe1\xdd\x94\x89\x14\x59\xda\x73\x4b\xda\xd6\x42\x97\xa9\xc4\xba\xaf\xcd\xad\x3d\x80\x7e\x35\xd3\xeb\x7e\x6b\x41\x5f\x2d\xb0\x71\x9a\x3e\xec\xa1\x25\x92\xcd\x6c\xeb\x5a\x29\x76\xad\x26\x36\x46\x2a\xe7\xb2\x54\x9a\xa2\x97\xe7\x8b\x4f\xde\x2f\x63\x75\x05\xaf\x4c\x58\xba\xd9\x53\xa1\x03\x72\x10\x8d\x66\xac\xe0\xc6\x08\x9d\xbf\x63\xff\xfd\xed\x7f\x7d\xff\x8f\xc1\x77\x7f\xfe\xf6\xdb\x5f\x7e\x18\xfc\xc7\xaf\xdf\x7f\xfb\x5f\x6f\xeb\xff\xf9\x9f\xdf\xfd\xf9\xbb\x7f\x6c\xfe\xf1\xfd\x77\xdf\x7d\xfb\xed\x2f\x3f\x9f\xfd\x74\x39\x1e\xfd\x2a\xbf\xfb\xc7\x2f\x79\x35\xbb\x59\xfd\xeb\x1f\xdf\xfe\x22\x46\xbf\x12\x95\x7c\xf7\xdd\x9f\xff\x07\xc1\xb8\xbb\xc1\x72\xa7\xa5\x73\x61\x44\x39\x90\xb9\x19\x28\x3d\x58\x7d\xd9\x3b\x66\x74\x25\xbc\x2a\x36\xdd\xe9\xc9\x06\xc8\xa3\x4d\x80\xbb\x6c\xc2\xf8\x58\xb9\x3a\x58\x6f\x5e\xc2\x7a\x43\x48\xe6\xb3\x6a\x50\x57\xb2\xd3\x3b\x74\xe8\xf7\x78\x87\x93\x1a\x1b\xb1\xf4\x0b\x7f\xe7\xca\x55\x2a\x86\x4e\x1d\x34\x3d\xab\x54\x62\x22\xb4\x16\xe9\x71\xb5\xec\x25\xcb\x5d\x68\x5a\x65\x32\x9f\x9e\x4c\x73\xb5\xfd\xf3\xe8\x4e\x24\x95\xf1\xae\xb4\x9e\x0d\x49\x88\x5d\x4d\xeb\x44\x4e\x9b\x67\x42\x34\x2f\x65\xc6\x4d\x72\x3d\xba\x2b\x96\xfb\xbd\x7b\x44\xca\x2f\xa4\xcf\x8c\x37\x6b\x25\xc4\x79\xe3\x5e\x02\x97\xa7\x8d\x2c\x6d\xe3\x86\xb6\xbc\x76\x2e\xac\xde\x24\x04\x55\x43\x70\x6d\x77\xb2\xcf\xbf\x23\x6e\x13\xea\x0c\x77\x2f\x94\xb9\xae\x99\x7a\xd3\x48\xe4\x2c\xe4\x65\xef\x71\x16\xfa\x97\xd7\xa3\xa7\xf6\x26\x31\x70\xf6\x5e\x18\x06\xce\x4a\x9e\xff\xc0\x09\x2a\xe0\x56\xc8\xe9\xb5\xa1\x54\xcf\x44\xe9\x19\x37\xf5\x86\xe6\x5f\xfe\x17\xd9\x0c\xda\xf6\x87\xee\xc1\xdd\xaf\xd7\xde\xa4\xab\x4f\xeb\xcb\x7b\xa7\xb5\xc1\xe6\x43\xfa\xf0\x75\xe8\x93\xd3\xd2\x5d\xbb\x10\x99\x48\x8c\xd2\x97\x42\x53\xc6\x24\x79\xe8\xc2\xe5\xc1\xcc\xdd\xcd\x3e\xcc\xdc\x70\x79\xa8\x82\x81\xd3\x92\x11\x03\xa7\xd7\x02\xa8\xaa\x69\x15\x39\xd8\x5d\x7d\x09\x7e\x84\xc7\x54\x42\xa2\x42\xa5\xaf\x04\xa1\xb9\xff\xd0\x65\xed\xee\xc3\x67\xc9\xf8\x95\xc8\x36\x4d\x48\x1d\x37\x31\x13\x69\xac\x73\xc4\xe2\x66\x9e\xb8\xb9\x9e\xc5\xcc\xf7\xac\xcb\x34\x17\x3b\xef\x77\x2c\x34\x66\xfe\x67\xb1\x6b\x00\xeb\x66\x6b\xdc\x5a\xc0\xa2\xd6\x03\x16\xbc\x26\xb0\xb8\x75\x81\xc5\xad\x0d\x2c\xb2\x36\xea\xd1\x77\xba\x1c\xeb\x41\xad\xd7\xbc\x34\x17\x37\x9e\x22\xdb\x3d\x7a\xd9\x0c\xc8\x92\x3b\x2e\x4c\xb5\x4b\x60\xef\x8f\xf8\xf6\xd0\xb6\x35\xaa\x50\x99\x9a\x2e\x7e\xa6\x4f\x5a\x81\x56\x85\x8c\xa1\x41\xd3\x9e\x57\x0f\xd7\x3c\x5c\xbc\x5f\x3c\x66\xd3\xbb\xf7\x13\xec\x9a\x00\xaf\xc1\xb6\xb3\x9b\x7d\xd8\x76\x06\xe2\x35\x61\x2e\x45\x37\x77\x22\x7a\x39\x25\x57\x43\x50\xf2\x30\xf7\x21\xa0\x17\x07\x7e\x67\x48\xbb\x05\xba\x0b\x7b\xb9\x5b\x44\x77\x11\x7a\x5d\xec\x88\xb8\x42\x6e\x24\xb0\x85\x1e\xd4\x33\x60\x0b\x2d\x02\x6c\xc1\x21\xc0\x16\xda\x73\x00\x5b\x70\x1a\x0b\x6c\x01\xd8\x82\xd5\x14\x60\x0b\xc0\x16\xda\x04\xd8\x02\xb0\x05\x60\x0b\xc0\x16\x1e\x1a\x08\x6c\xa1\x35\x39\xb0\x85\xae\xd8\x82\x27\x41\xc2\x2f\x3c\x6f\xc1\x3d\xb5\x25\x72\x7e\x95\x89\x7b\x06\x80\xf7\x8b\x63\x31\xe1\x55\x66\x71\x69\x7c\x2f\x8c\x56\xea\x2c\xf5\xed\xcb\x7c\x2d\x78\x66\xae\x8f\xae\x45\x72\x13\xa7\x40\xce\xf8\x34\xae\x1a\x32\x59\x1a\x91\x8b\xd4\x45\x85\x40\x50\x33\xe3\x77\x7f\x55\xfa\x26\x53\x3c\x3d\x12\xda\x5c\x5e\x9e\x46\xa9\x69\x5e\x8e\x69\x57\x10\x32\x67\x11\x1f\xcd\x5b\xfb\x58\x0d\x6e\x3d\xe2\x87\x79\x4a\x7b\x36\x4f\x0c\x2d\x05\xf8\x1d\x9b\x4c\xce\xa4\x71\x4c\x7b\xa1\x0b\x82\xf7\x79\x2b\xfd\x59\x2b\xf9\x39\xeb\x41\x3e\x63\x8d\x7e\xbe\x4a\x7c\x19\x28\x4a\x34\xdb\xb3\x6a\x36\x4f\x82\x32\x2d\x47\x5d\x16\x8c\x52\x24\x95\x96\x66\x71\xa4\x72\x23\xee\x2c\x4b\x96\x7f\x3e\xe0\x59\xa6\x6e\xc7\x5a\xce\x65\x26\xa6\x62\x54\x26\x3c\xe3\xee\x9d\x25\xe5\xa1\x6d\xc2\x0b\x7e\x25\x33\xe9\xee\x86\xb4\x6d\x18\x4f\x3d\x2e\x0c\xc9\x91\x23\x3b\x4e\x34\xe7\x2d\xd5\xaa\x38\x34\xab\x28\x67\x35\x9b\x86\x76\x54\x29\xa5\x7d\x0b\xad\x92\x33\x55\xe5\x0e\xf0\x87\xf0\x69\x5a\xf0\xf4\x53\x9e\x2d\xce\x95\x32\x1f\x64\x26\xca\x45\x69\x84\xe3\x4c\x85\x62\x99\xae\xf2\x61\xf9\x53\xcd\xa6\x66\xd5\xd3\x40\xa3\xfe\xed\x4f\x9e\xd2\xdc\xf3\x5f\x5d\xda\x47\x95\x2f\xbf\xa0\x07\xbb\x3f\x97\xc2\xb1\xeb\xef\xcf\xec\x52\x9c\xca\xbc\xba\xfb\x54\x38\xbc\x1a\x46\x1e\xa0\x99\x98\xb7\xf1\x22\xed\x1a\xe5\xed\xe7\x5a\x65\x9e\x57\xd5\x44\x45\x75\xb2\x3e\x14\x55\xce\x16\x21\x2b\x22\x0c\xcd\x5b\x99\xa7\xea\xb6\xec\xa9\x4d\xa6\xb3\x92\x1f\x69\x91\x8a\xdc\x48\x9e\x5d\xec\xb0\xa3\x45\x7d\x45\x9b\x5a\x3f\xbd\x0a\xb5\xed\x37\x03\xa0\x27\x8d\x5d\xd7\x67\xa3\x32\xa1\x5d\x6e\x7f\x67\xa6\x2c\x31\x99\x88\xc4\x09\x9f\x93\x3e\xd4\x03\x4b\x92\x74\x50\x20\x47\x5a\xad\x6f\x6b\xed\x42\x24\x2a\x77\x3f\x4a\xa2\x4d\x68\xd4\xd3\x80\x3e\x38\xc3\x88\x9d\xc6\xb6\x0e\xdf\x76\xde\xff\x3a\x0c\x48\xb2\xaa\x34\xb6\xe1\xe1\x50\xba\xa6\x33\x1d\x67\x3c\x17\xc3\xca\x5c\x8f\x55\x26\x93\x96\x2e\x23\xf2\xaa\x65\xed\x1d\xb0\xb3\xcf\x97\x9f\x87\xa7\xbf\x5d\x9e\x5e\xb4\xfc\xf8\xf1\xd3\xc7\x51\x88\x31\xe9\x0a\x60\x39\xaa\xc9\xd4\xbe\xc8\x52\xd6\x5e\x62\x8b\x35\x7e\x1d\x63\x95\x1e\xcb\x52\x57\xf5\x84\xf9\xbe\x4a\xa7\xa2\x65\x2c\xb9\xc7\x61\x07\xc4\xc6\xd1\x50\x6b\xfb\xce\xed\x5b\x75\xb7\x55\xae\x2d\x7a\xc8\x3e\xcf\xb9\xc7\xa3\xed\xef\x48\x7b\xbb\x83\xdb\xd7\x45\xed\xe9\xbc\xc0\x8b\x6b\x0b\x8e\x66\x79\x92\x66\x71\xfc\x28\xee\x92\xac\x4a\xc5\xc9\xf8\x9c\xe7\xd3\xb6\xc6\x70\xd4\xe0\x94\x67\x59\xdb\xa2\x0a\xa6\xcf\x07\x02\xa6\xcf\x20\xb5\x0c\xcc\x6b\x60\xfa\x04\xd3\x27\x98\x3e\xc1\xf4\x09\xa6\xcf\x47\x02\xa6\xcf\x97\xb3\xde\x10\xcf\xf3\xc0\xf4\x79\xf0\x6f\x3d\xc0\xf4\x49\x16\x5c\x75\xec\x6e\x1f\xae\x3a\x82\xf6\x8a\x2a\x18\x38\x2d\x19\x31\x70\x7a\x2d\xe0\xd9\x3d\xef\x00\xd3\xe7\xae\x80\xe9\x93\x28\x98\xb9\xd7\x82\x99\xfb\x10\x67\x6e\xb8\x3c\x18\x38\x2d\x19\x31\x70\x7a\x2d\x80\xaa\x1a\x4c\x9f\x87\x81\xd0\x80\x8d\xa3\x16\xb0\x71\xf4\x5d\x28\xd8\x38\xec\x02\x36\x8e\xad\x80\x8d\xe3\x81\x80\x8d\xc3\x2d\x60\xe3\xd8\x0a\xd8\x38\x5a\x05\x6c\x1c\x54\xc1\xb6\x73\x2d\xd8\x76\x1e\xe2\xb6\x13\x6c\x1c\x60\xe3\x68\xca\xf3\x67\xe3\x00\xd3\xa7\x37\x0b\xb0\x85\x68\x13\x57\x02\x6c\xc1\x21\xc0\x16\xda\x73\x00\x5b\x70\x1a\x0b\x6c\x01\xd8\x82\xd5\x14\x60\x0b\xc0\x16\xda\x04\xd8\x02\xb0\x05\x60\x0b\xc0\x16\x1e\x1a\x08\x6c\xa1\x35\x39\xb0\x85\x7d\x33\x7d\xae\xe8\x22\x78\x26\x53\x07\x39\x99\xef\x5d\xd0\x8a\xed\x61\x98\xf3\x6c\x51\x4a\x27\xc7\xa5\x4f\xc7\x85\xd0\x73\x99\x88\x63\x59\x26\x6a\x2e\xb4\xa5\x3d\x69\xba\x22\xe9\xdf\xe2\xe9\x3e\x41\xb0\xe9\xe6\x79\x28\x32\x99\xf0\x23\x3b\xb9\x99\xdf\xc3\x9d\xc9\x5c\xce\xaa\xd9\x3b\xf6\x83\xc3\x02\xbb\xcb\x0b\x8e\xcf\x43\x7d\xc0\x0a\x8e\x4f\x34\x5b\x48\x02\x70\x74\x6e\x04\x1c\x9d\xcd\x34\xe0\xe8\x04\x47\x27\x38\x3a\x17\xe0\xe8\x04\x47\x27\x38\x3a\xa9\x3a\xc0\xd1\xd9\x4c\x12\xc9\x7f\xe1\xc8\x3c\xe5\x46\xdc\xf2\x45\x30\x5d\xa3\x98\x6a\x51\x46\xef\xd5\x88\x64\x6d\x8c\xe2\xad\x50\xc1\x6e\x0a\x83\x0b\xd9\xeb\xf1\x36\x69\xb8\x36\x1f\x91\x1b\x0b\x67\x88\x0a\x21\x74\x0b\x55\xcf\xc2\x4e\x0c\x82\xa1\x54\x2a\xe1\x4e\x94\xf2\x10\xe2\x1d\x46\xf4\x93\x9a\x12\x76\x84\x49\x43\xe6\x83\xa0\x62\x2a\xf9\x1b\x8b\x68\xf5\x30\x12\x38\x16\xd3\x3e\x41\x64\x70\x11\x25\x84\xb5\x0f\x95\x18\x8e\x85\xb6\x52\x28\x41\x1c\x8b\x68\xad\x60\xa2\x38\x16\xd3\x60\x01\x84\x71\x2c\x84\x34\x8e\x45\x11\xc7\xb1\x18\xf2\x38\x76\xa8\x40\x4e\x53\x3a\x93\xc8\xb1\x40\x22\x39\xb6\xef\xc1\x45\x24\x95\x63\xa1\x63\x2b\x84\x5c\x8e\x61\xed\xf3\x15\xf0\x6c\xd6\x3e\x62\x52\x8a\x95\x4e\x42\x3a\x72\x59\x7e\x80\xcc\x4d\x4e\xc7\xc8\x9d\x93\x46\x52\x47\xd7\xc7\xfa\xbe\xae\xcc\xf6\xc9\xb3\x12\x46\x5c\x17\x53\x02\xc3\xa5\x62\xbb\xe0\x52\x31\x31\x33\x2e\x15\x37\xb3\x45\x5c\x2a\x0e\x63\x83\x61\x18\x78\x7b\x28\x14\x03\xcf\x2e\x2f\x6f\xe0\x05\x17\x44\xbf\x39\xcd\x22\x6e\x4f\xb3\xc0\x1b\xd4\x2c\xd8\x2b\x25\x93\xea\x31\xfa\x45\x6a\x16\x5a\x91\xf4\x76\xea\xf3\x52\x35\x0b\x9e\xfc\x22\xc8\xf6\x58\xe8\x54\x00\x57\xed\xb1\x60\xc5\xf0\x08\x56\x8c\x5d\x81\xab\xf6\x40\x30\xf0\x1c\x82\x81\xd7\x9e\xe3\xb0\x07\x5e\x70\x41\x21\x45\xd0\x2b\x39\x94\x04\x30\xc8\x74\x62\x42\x12\x21\x20\x7b\xa9\x68\x58\xf8\x43\xfe\x98\x62\x58\xec\x83\xfe\xd8\xc2\x58\x47\xc7\x8e\xc5\xcf\x6c\xf1\xeb\x0c\x8b\x5d\x6b\x58\xd7\xe9\xb4\xcb\x9a\xd3\x43\xe1\xb1\x6b\x0f\xeb\xb2\xfe\xb0\xee\x76\xc7\xaf\x43\x2c\x7a\x2d\x62\x51\xeb\x11\x8b\x5f\x93\x58\xfc\xba\xc4\x3a\xd4\x50\x24\x31\x00\xeb\x85\x1c\x80\x75\xeb\x1b\x9d\x96\xf1\xc0\x6c\xe1\x64\x01\x2c\x6e\xd4\x44\xd6\x47\x4c\xfb\x47\x90\x07\x44\x5a\x18\x3a\x06\x43\x89\x04\xd8\xab\x84\xc5\x82\x08\x06\xd8\x8b\xc4\xc6\xf6\xe6\xb1\x81\x17\xe9\xb1\x60\x7b\xee\x10\x6c\xcf\xdb\x73\x1c\xf6\xf6\x1c\xbc\x48\x6d\x02\x5e\xa4\x67\xc5\x8b\x44\xad\x9a\x00\x9c\x86\x44\xb0\xc8\x80\xd5\x74\x29\x86\x01\xab\x21\x0a\xb0\x9a\x40\x01\x56\x43\xcf\x05\xac\x26\x40\x80\xd5\xb4\x59\x07\xac\x06\x58\x8d\x5b\x80\xd5\x30\x60\x35\xc0\x6a\x7a\x2e\x14\x58\x8d\x5d\x80\xd5\x6c\x05\x58\xcd\x03\x01\x56\xe3\x96\xe7\x83\xd5\x10\x12\x25\x5a\x70\x23\x3e\xe5\x99\xa3\x66\x29\x2f\x0a\x9d\x34\x91\x54\x25\x99\x67\xe8\x86\x0e\x54\x1a\xd1\x88\xbf\x92\x32\xc5\xd3\xf7\x3c\xe3\x79\x22\xf4\xc9\xd8\xf7\x8d\xce\xf2\x66\xfc\xee\x7c\x45\xde\xe8\xb0\x9c\xe6\x9d\x7a\x08\x1c\x19\xd1\x65\x9d\xc9\xfc\xc0\x2c\xf2\x73\x7f\xb2\x27\xec\x0c\x14\x2e\xd0\xa7\xb5\x4f\xbb\xf8\x19\x7b\xe3\x67\xe1\x45\x31\xd6\xca\xa8\x44\x79\x9f\x26\x93\x27\xe3\x5e\x39\x5f\x96\xdd\x68\xac\xb4\x77\x4f\x18\xb2\x17\xa4\xef\x01\x8b\xa7\x2b\xb9\xef\x56\x31\x5c\x4f\x85\xa1\x54\x25\x89\x27\x22\x8c\x1f\x22\x88\x17\x62\x3f\x15\xda\x89\xc6\x81\xf6\x70\x7d\xd9\x5b\xbc\x73\x43\xe7\x87\xeb\x7e\xda\x60\xf6\xb5\xe7\xfa\x35\xa1\xac\x48\x3f\x0a\x73\xab\xf4\xcd\x17\x29\x6e\x3b\x2d\xb0\x1e\x5e\x62\x46\x27\x23\xf4\xf0\x13\xb3\xc8\x9d\xc3\x53\x8f\x91\x83\xe5\x4c\xe9\xc4\x95\x12\x40\x23\xe1\xe6\x2f\x66\x68\xd6\xe7\xd6\xac\x84\x44\x35\x27\x64\x77\x6e\xd5\xd2\xf5\x38\x8a\x36\xad\x78\x37\x4a\x54\x5b\x98\x9b\x5f\xff\xa1\x2a\x3f\x69\xa6\x7f\xda\x64\x41\x80\x23\x65\xfa\x64\x1d\xc0\x17\x32\x25\x55\x38\x1d\x55\x30\x15\xd5\xc1\x8e\x3d\xd6\x07\x05\x55\x00\x7e\x41\x9b\x5e\x19\x9a\xfd\x25\x35\x7b\x5f\x73\x34\x89\x87\x9e\xd1\xd9\xde\x83\xf9\xe8\x59\xc0\xcc\x4b\xe3\xa5\xa7\x5b\xcb\x28\xfc\xf4\x2c\x04\x9d\x0d\xea\xcc\x74\x44\xd6\xcf\x57\xff\xf4\x56\x52\x2f\xb2\x11\x38\xec\x59\x40\x9f\x20\x70\xd9\xb3\x90\x15\x39\x8c\xd3\x3e\xc4\x52\x0a\xb7\x3d\x0b\xe0\x55\xa6\xef\xa6\x69\x3c\xf7\xc1\xdf\xe2\xe6\xbb\xdf\xcf\xa7\x50\xb9\xef\x59\x98\xdf\xe4\xe7\xc0\x67\x61\xe3\xc6\xcf\x85\x1f\xa8\xb0\x4e\xda\xa7\x42\x3f\x37\x7e\x90\x42\xe2\xf0\xa7\xf2\xe4\xb3\xa0\xf6\x0b\xe5\xcb\x67\x61\x55\x15\xc3\x9b\x1f\x58\x44\x00\x7f\x7e\x90\xe6\xfe\xfc\x84\x3a\xae\xd9\x41\x83\xf0\x6b\x1b\x47\x77\x4b\x07\x91\x67\x97\x9a\x4f\x26\x32\x19\xab\x4c\x26\x8e\x83\x36\x91\x57\x8e\x09\x7e\xc0\x4e\x55\xc2\x33\xc7\xef\x47\x59\x55\x1a\xc7\x9c\x45\xf8\xba\xb5\xe1\xbe\x43\xf4\x27\xae\xd7\x4b\xe7\x0c\xe4\xab\xc6\x75\x35\x9d\x8c\x1d\x69\x3e\xae\x0f\x0f\x9c\xad\x71\x7f\x2a\xd8\xa5\xca\xbd\xf1\x21\x58\x9f\xc7\x36\xfe\x58\x11\x44\xb3\x57\x42\xb8\x47\x44\xd6\x45\xbd\x23\x44\x9f\x71\x42\x62\x48\xb0\x20\x27\x21\xe4\xfc\xa0\xcf\xe0\x03\xbd\x9c\x04\x78\x94\x74\x0b\xf9\x98\x23\xd2\x04\x22\x4d\x80\x6d\xdb\x22\x88\x34\xd1\x62\x3a\x22\x4d\xec\x9a\x81\x48\x13\x7e\x41\xa4\x89\x7b\x41\xa4\x09\x44\x9a\xe8\xa8\xfc\x85\xaf\x7d\x01\x57\x04\x10\x69\xe2\x45\xbd\xd7\x46\xa4\x89\xa6\xe0\xe9\x8f\x43\xf0\xf4\xa7\x3d\xc7\xb3\x78\xfa\x03\xfa\xe2\x07\x82\x81\x47\xcc\x8c\x81\xd7\xcc\x86\x48\x13\x56\x41\xa4\x09\x44\x9a\xc0\x8a\xd1\x73\xa1\x58\x31\xec\xf2\xf2\x56\x0c\xb8\x6a\x6d\x82\x81\x47\xcc\x8c\x81\xd7\xcc\x86\x48\x13\x51\x09\x11\x69\x02\xec\x85\xad\x02\xf6\xc2\xaf\x55\x38\xd8\x0b\xc3\x04\xec\x85\x4e\x01\x7b\xa1\x57\xc0\x5e\xb8\x12\xb0\x17\x82\xbd\xb0\x16\xb0\x17\x3e\x16\xe0\x62\x16\xc1\xf6\x9c\x98\x19\xdb\xf3\x66\x36\xb0\x17\x76\xcd\x02\xf6\xc2\xd7\xcb\x5e\x88\x48\x13\xc0\x6a\x1c\x02\xac\xe6\x6b\x15\x0e\xac\x26\x4c\x80\xd5\x38\x05\x58\x8d\x57\x80\xd5\xac\x04\x58\x0d\xb0\x9a\x5a\x80\xd5\x3c\x16\x60\x35\x16\x01\x56\x43\xcc\x0c\xac\xa6\x99\x0d\x58\x4d\xd7\x2c\xc0\x6a\x5e\x2f\x56\x43\x48\x84\x48\x13\x84\x4a\x42\xa4\x09\x44\x9a\xd8\x0a\x22\x4d\xac\x04\x91\x26\xdc\xc0\x37\x22\x4d\x58\x04\x91\x26\x76\xbf\x11\x91\x26\x10\x69\xa2\x29\x08\x49\x80\x48\x13\x68\xd6\xfe\xb6\x39\x88\x34\x81\x48\x13\x08\x39\x80\x48\x13\x94\x1c\x68\xf6\x5a\xfa\x7d\xde\x45\x48\x84\x48\x13\x88\x34\xd1\x8f\x95\xd4\x8b\x6c\x88\x34\x81\x48\x13\xf1\x9f\x82\x48\x13\x7d\x29\x44\xa4\x09\x72\x55\x21\xd2\x04\x22\x4d\x58\x7f\x47\xa4\x89\x5a\x10\x69\xc2\x21\x88\x34\xe1\x10\x44\x9a\x58\xca\xcd\xbf\x97\x1d\xe3\x45\xac\x40\xae\xbf\x18\x53\x38\xaa\xfc\x2b\x5d\x2b\xf0\x7c\xec\x4c\x94\xd7\xa3\xbb\x82\xe7\x76\x82\x7c\xc4\xc7\x88\xd1\x86\xf8\x18\x0f\x04\x1c\xe1\xad\x36\x20\x3e\x46\x1f\x25\x20\x3e\x06\xe5\x2b\x10\x1f\xe3\xa0\x10\x6a\x86\xf8\x18\x01\x63\x0b\xf1\x31\x2c\xf2\xc2\xd7\xbe\x80\x8b\x0d\x88\x8f\xf1\xa2\x5e\x99\x23\x3e\x46\x53\xf0\x60\xc9\x21\x78\xb0\xd4\x9e\xe3\x59\x3c\x58\x02\xe9\xf2\x03\xc1\xc0\x23\x66\xc6\xc0\x6b\x66\x43\x7c\x0c\xab\x20\x3e\x06\xe2\x63\x60\xc5\xe8\xb9\x50\xac\x18\x76\x79\x79\x2b\x06\x5c\xb5\x36\xc1\xc0\x23\x66\xc6\xc0\x6b\x66\x43\x7c\x8c\xa8\x84\x88\x8f\x01\xce\xc5\x56\x01\xe7\xe2\xd7\x2a\x1c\x9c\x8b\x61\x02\xce\x45\xa7\x80\x73\xd1\x2b\xe0\x5c\x5c\x09\x38\x17\xc1\xb9\x58\x0b\x38\x17\x1f\x0b\x70\x31\x8b\x60\x7b\x4e\xcc\x8c\xed\x79\x33\x1b\x38\x17\xbb\x66\x01\xe7\xe2\xeb\xe5\x5c\x44\x7c\x0c\x60\x35\x0e\x01\x56\xf3\xb5\x0a\x07\x56\x13\x26\xc0\x6a\x9c\x02\xac\xc6\x2b\xc0\x6a\x56\x02\xac\x06\x58\x4d\x2d\xc0\x6a\x1e\x0b\xb0\x1a\x8b\x00\xab\x21\x66\x06\x56\xd3\xcc\x06\xac\xa6\x6b\x16\x60\x35\xaf\x17\xab\x21\x24\x42\x7c\x0c\x42\x25\x21\x3e\x06\xe2\x63\x6c\x05\xf1\x31\x56\x82\xf8\x18\x6e\xe0\x1b\xf1\x31\x2c\x82\xf8\x18\xbb\xdf\x88\xf8\x18\x88\x8f\xd1\x14\x04\x52\x40\x7c\x0c\x34\x6b\x7f\xdb\x1c\xc4\xc7\x40\x7c\x0c\x04\x4a\x40\x7c\x0c\x4a\x0e\x34\x7b\x2d\xfd\x3e\xef\x22\x24\x42\x7c\x0c\xc4\xc7\xe8\xc7\x4a\xea\x45\x36\xc4\xc7\x40\x7c\x8c\xf8\x4f\x41\x7c\x8c\xbe\x14\x22\x3e\x06\xb9\xaa\x10\x1f\x03\xf1\x31\xac\xbf\x23\x3e\x46\x2d\x88\x8f\xe1\x10\xc4\xc7\x70\x08\xe2\x63\x38\x7f\x9c\x66\xea\xaa\x8d\x88\xd8\xe5\xaa\xad\xf2\x1c\xab\x19\x97\x2d\x5b\x2f\xc7\x57\x5f\x1b\x53\x8c\xb5\xba\x5b\x8c\xf2\x79\x4b\xc3\xb9\xfb\xfb\x36\x73\x7b\xb5\x7b\x2a\x7b\x99\xbb\x8c\xcf\x9e\xab\xd8\xbc\x8e\xba\xaf\xa1\xbe\x71\x95\x65\xb6\x45\xa4\x7d\xd6\x1b\xb0\x61\x76\xcb\x17\xbb\x6c\x2e\x03\xf6\x51\xcc\x5b\x3a\xee\x80\x9d\x4c\x3e\x2a\x33\xd6\xa2\x14\xb9\xad\x77\xb4\x9a\xbf\xb5\xf0\xa2\xa6\xf2\x6e\x69\x17\xeb\x24\xe6\x9b\xbc\x5c\xe7\xc2\x9e\xc6\x20\xf4\xf5\xb6\x81\x22\xf3\x24\xab\x52\x71\x32\x3e\xe7\xf9\xb4\xcd\x2c\x57\x45\x94\x46\xaa\x23\xa5\xc5\xf1\xc7\x8b\xd0\x8e\xeb\xe6\x96\xf6\x4f\xf2\x34\x4e\x69\xda\x62\xd1\xeb\x8b\x2c\x12\x22\x10\x72\x9f\x35\x8c\x3f\x3a\xf4\xa6\x6c\xec\x45\xde\xc0\xcb\x73\x71\x17\x78\x83\x2f\xef\x46\xde\x4f\x8c\xbb\xb4\x1b\x59\x58\xcc\x65\xdd\xa8\x8b\xba\xd1\x97\x74\x63\xae\xa4\x86\x5f\xce\x0d\xbb\x98\x1b\x71\x29\x37\xfa\xd6\x29\xfd\xcb\x23\xc8\x04\x31\x70\x30\x70\x9a\xf2\x1a\x07\x4e\x50\x01\xf4\x07\x4f\xa1\x8f\x9d\x42\x0e\xce\xa8\xcd\x14\xc0\xd1\x4c\x7c\xd7\x14\x78\x3e\xe5\x6b\x83\x3e\xdf\x32\xd1\x27\xa7\x08\x2e\xe6\xbd\x3d\x92\x82\xcb\x83\x99\xbb\x3d\x23\x66\x6e\xbf\xc0\xe5\xc1\xc0\xd9\xc9\x88\x81\xd3\x6b\x01\x54\xd5\xb4\x8a\x0c\xe5\x3c\xee\xeb\xfc\x8a\xc4\x73\xfc\x22\x10\x9a\x70\x9e\x1c\x3c\xec\x8e\x37\x71\x25\x78\xd8\xed\x10\x3c\xec\x6e\xcf\x81\x87\xdd\x4e\x63\xf1\xb0\x7b\x4f\x4e\xf3\x2b\x7a\xd8\xfd\xec\xe0\x9a\x20\x3e\x9a\xe7\x8f\xd9\xf4\xee\xfd\x04\xbb\x26\xc0\x6b\xb0\xed\xec\x66\x1f\xb6\x9d\x81\x78\x4d\x98\x4b\xd1\xcd\x9d\x88\x5e\x4e\xc9\xd5\x10\x94\x3c\xcc\x7d\x08\xe8\xc5\x81\xdf\x19\xd2\x6e\x81\xee\x42\xc8\x9d\x57\xf2\xba\x48\x77\x11\x7a\x5d\xec\x88\xb8\x02\x89\x97\x17\xd8\x02\xb0\x05\x60\x0b\x36\x01\xb6\x60\x17\x60\x0b\x5b\x01\xb6\xf0\x40\x80\x2d\xb8\x05\xd8\xc2\x56\x80\x2d\xb4\x0a\xb0\x05\xaa\x00\x5b\x58\x0b\xb0\x05\x60\x0b\x0d\x03\x81\x2d\xb4\x26\x07\xb6\xd0\x15\x5b\xf0\x24\x70\x52\x1a\xb9\xde\x86\x31\x37\x85\x91\xa7\x8e\xbd\x54\xaa\x7e\x67\xc7\x43\x62\xe7\xf3\x7e\xbc\xd4\xa9\x7b\xb7\xc0\x4f\x95\x1a\x32\xb1\x78\x3b\xb5\xa7\x23\x14\x59\x35\x95\xf9\x49\x74\x8b\x52\xa8\x55\xbf\xe6\xf7\xf8\xf9\x12\xf7\xde\xc0\x1e\x5e\x2e\xbf\x03\xe5\xe3\xe1\x0a\x5d\x78\xbc\x04\x4c\x74\xe2\x25\x32\xe1\xd2\x41\x12\x2d\x45\x13\x2c\x11\xe6\x6e\x3f\x8f\x16\x9a\xed\xe0\x9a\xcd\x93\x80\x44\x6f\xe5\x1f\xcf\xe1\xb4\x56\xbe\x15\x98\x91\xe9\xac\x88\xc4\x5b\x3e\x1a\x2b\x92\xc3\x47\x76\xb0\x68\x4e\x9e\x9f\xb6\xea\xeb\x5b\x45\x39\xd3\x21\x50\x54\x51\xda\x97\x40\x4d\x45\xf8\xb4\x50\x4a\x2a\x8a\x65\x14\x2a\x2a\x1a\x2d\x03\x65\xfe\xa2\xd1\x4f\x91\xed\x76\xd3\x4e\xf5\x67\x36\x95\x6a\x8a\xc8\x6c\xec\xa7\x98\x22\xf6\x73\x3f\xb5\x14\x51\x51\x9d\xac\x0f\x45\x7e\x2a\x29\x92\x22\xc2\xd0\xa4\xd2\x47\xd1\xda\x24\x94\x36\x8a\x58\x1d\x31\x74\x51\xd4\xb6\xa7\xd3\x44\xf5\x53\xe5\x9e\x04\x5e\x1a\x1d\xe7\x04\x4f\x69\x25\x3f\x75\x0e\xe9\x43\x3d\xf0\x25\x49\x07\x05\x9a\xa4\xd5\x7a\x08\x45\x0e\x95\x1e\x87\xe6\x49\x7a\x69\x71\x08\x1f\x40\xec\x34\xed\xeb\xb0\x23\x73\x4d\xe1\xd1\xb2\xe6\xba\xbb\x49\xc2\x63\xbd\xba\x39\xaf\xb2\xee\x8c\xa7\x69\xaa\x45\xe9\xf1\x61\x88\xa3\x3b\x11\xda\x1c\x5d\x73\x99\x8f\xb9\xb9\xee\x4d\x63\x6f\xca\x7a\x65\xd1\xbe\x11\x8b\xde\x0c\xeb\x6d\x45\xac\x7b\xc4\x28\x9f\x3b\xd0\x94\x20\x8d\xfd\x80\x7c\xc3\x9c\x67\x8b\x52\x5a\xfa\x98\xaf\xc2\x57\x3a\x2e\x0c\x37\x55\x27\x0d\x91\x50\xa3\xb8\x2b\x54\x29\xfe\x2a\xae\xae\x95\xba\xb1\x87\x33\xf1\xa9\x99\x55\x99\x91\x6b\x0e\xb9\x8b\xaa\xb0\x07\x7a\xa1\x29\x52\xb9\xd1\x2a\x1b\x67\x3c\x17\x1d\xb4\x39\x5a\xef\xf7\x5b\x13\xca\x19\x65\xae\xa5\x4e\x07\x05\xd7\x66\x31\xf8\xfd\x76\xb7\x3b\x0c\xd8\x44\xea\xd2\x38\x52\x38\xfa\x64\xa6\x12\x9e\x49\xb3\x38\x7d\x1f\x3a\xbf\xa6\x72\xa9\xf0\xaa\x32\x96\x01\xd1\x79\x85\x9f\x68\xe5\xbc\x4a\x46\x5c\x52\x3d\x93\x74\xe0\x41\x0f\xfd\xcc\x9e\x8a\xe0\x10\xbc\xdb\x4e\x0b\x6b\xc7\x71\x3a\xe1\x32\x53\x73\x9b\x1f\xff\x1c\x1a\xf9\x09\x3d\x97\x4c\x4d\xa7\x32\x9f\x86\x0e\x2d\xc7\x9e\xb0\x01\xe3\xfd\xc2\x07\x7f\x1b\x0e\xfe\xef\xaf\xdf\xbf\xdb\xfe\xdf\x1f\xfe\xfc\xdd\xf7\xed\x78\x9b\xb3\x12\x1c\x5f\x30\x13\xe5\xf5\xe8\xae\xe0\x79\xd9\x0a\x6b\xb9\x7a\xcf\x32\xeb\xc9\xb1\x2d\x4f\xab\x29\xcb\x2c\xb6\xe9\xd1\x5d\x65\x33\x93\x95\x67\x2a\xb5\xcc\x45\x76\x12\xd2\x01\xbb\xb8\x3c\x3f\x39\xba\xb4\xfc\x38\x1e\x9d\x9f\x9d\x5c\x5c\x9c\x7c\x19\x59\x12\x1c\x9f\x5c\x0c\xdf\x9f\x8e\x8e\xfb\xad\x74\x79\xd7\x36\xe0\x3c\x64\x75\xdb\xb9\x6c\xb9\x8a\x71\x99\x0b\x3d\xd4\xd3\x98\xed\x17\xf1\xa4\xc6\x36\xdd\xdc\x1b\x32\xca\xe7\x5f\xb8\xde\xd7\x0e\xd0\x17\x9f\x8e\x34\x75\xf4\xb1\xef\x59\x6b\xf9\xe0\x99\xca\xa8\xf7\x6b\x12\x95\x4f\xe4\xf4\x8c\x17\x3f\x8b\xc5\xb9\xf0\xc6\xd7\x08\xb9\xb6\x43\xbc\xac\x13\x74\xb2\x4f\x09\x13\x18\xac\x54\x15\xab\x1e\x44\x57\xec\xdf\x59\xb0\xa0\xe3\x7f\xff\xc5\x17\xf2\xb1\xff\x44\x8a\x2c\xed\xb9\x25\x79\x21\xbf\x08\xdd\x3e\x29\xdb\x4c\x25\xd6\x7d\x6d\xae\x7f\x0f\x16\xac\x99\x5e\xf7\x5b\x0b\xfa\x6a\x81\xcd\xc1\xed\x87\x3d\xb4\x44\xb2\x99\x6d\x69\x0c\xed\x81\x8d\x91\xca\xb9\x2c\x69\xb7\xde\x10\x8d\xe7\x6b\x45\xe3\xd9\x74\xa7\x27\x1b\x20\x1b\x03\xfa\x1a\x1f\x65\x4d\x12\x8c\xf5\xe6\x25\xac\x37\xc4\x1b\x0d\x2e\xab\x06\x75\x25\xef\x67\x33\x0a\x4e\x65\x70\x2a\x7b\x05\x97\xca\xd7\x82\x4b\xe5\x07\x7c\xa9\x1c\x04\x83\x18\x38\xcd\x8c\x18\x38\xbd\x16\xf0\xec\x1e\xd2\x81\x53\x79\x57\xc0\xa9\x4c\x14\xcc\xdc\x6b\xc1\xcc\x7d\x88\x33\x37\x5c\x1e\x0c\x9c\x96\x8c\x18\x38\xbd\x16\x40\x55\x0d\x4e\xe5\xc3\x40\x68\xc0\x7b\x54\x0b\x78\x8f\xfa\x2e\x14\xbc\x47\x76\x01\xef\xd1\x56\xc0\x7b\xf4\x40\xc0\x7b\xe4\x16\xf0\x1e\x6d\x05\xbc\x47\xad\x02\xde\x23\xaa\x60\xdb\xb9\x16\x6c\x3b\x0f\x71\xdb\x09\xde\x23\xf0\x1e\x35\xe5\xf9\xf3\x1e\x81\x53\xd9\x9b\x05\xd8\x42\xb4\x89\x2b\x01\xb6\xe0\x10\x60\x0b\xed\x39\x80\x2d\x38\x8d\x05\xb6\x00\x6c\xc1\x6a\x0a\xb0\x05\x60\x0b\x6d\x02\x6c\x01\xd8\x02\xb0\x05\x60\x0b\x0f\x0d\x04\xb6\xd0\x9a\x1c\xd8\xc2\x9e\x39\x95\x93\x6b\x91\xdc\x94\xa3\x4e\x74\x27\xa0\x65\x7e\x32\x0b\xfa\xa2\x88\x39\x30\x7e\x67\xf0\x33\xb7\x98\xa0\xb4\x79\xbf\x5c\x9c\xce\xf8\xdd\x28\x37\xda\xfa\xbd\x7e\x5b\xc2\x0a\xbb\x94\xb6\x57\x89\x9e\x7a\x05\xa7\xf4\xa1\x3e\x17\x06\xa7\x34\x9a\x2d\x24\x01\x38\xa5\x37\x02\x4e\xe9\x66\x1a\x70\x4a\x83\x53\x1a\x9c\xd2\x0b\x70\x4a\x83\x53\xba\xe3\xfa\x5a\x43\xb5\x1b\x60\xbd\xd3\x76\xbc\x34\xa9\x54\xc3\x94\x17\x46\xe8\x4e\x8a\x40\x74\x1d\xa3\x08\x44\xd7\x76\xde\xbf\x4c\x94\xe5\xa5\xc8\xc4\x4c\x18\x1d\x4c\x83\xd8\x01\x66\x72\xd9\xb5\x74\x2c\xce\x4c\x56\x1e\x09\xdd\xb6\x67\x71\x29\x9e\x99\x36\x8c\xd8\x99\xa3\xca\x8c\x3c\x13\x65\x0b\xff\x18\x29\x9b\x83\xae\xd2\xc3\x68\xab\x66\x5c\xc6\x8d\xe3\xed\x46\xe8\x97\x01\x1f\xfc\xed\x87\xc1\x7f\xbc\xfd\xd5\x42\xc4\x49\x06\x5a\xf6\xc2\xe6\x2a\xf2\xb9\x5a\x7c\x90\x59\xb7\x69\xcf\xd1\x55\x72\x61\x6e\x95\xbe\x69\x5f\x32\x1c\x5f\x5e\xd3\xfa\x4c\x45\x9b\xff\xea\xa1\xbd\x04\x9f\x10\xf8\x84\x7c\x82\x03\xd5\xb5\xe0\x40\xf5\x80\x0f\x54\xf1\xb8\x1e\x03\xa7\x99\x11\x03\xa7\xd7\x02\x9e\xdd\x25\x32\xf0\x09\xed\x0a\xf8\x84\x88\x82\x99\x7b\x2d\x98\xb9\x0f\x71\xe6\x86\xcb\x83\x81\xd3\x92\x11\x03\xa7\xd7\x02\xa8\xaa\xc1\x27\x74\x18\x08\x0d\xde\xfc\xd5\x82\x37\x7f\x7d\x17\x8a\x37\x7f\x76\xc1\x9b\xbf\xad\xe0\xcd\xdf\x03\xc1\x9b\x3f\xb7\xe0\xcd\xdf\x56\xf0\xe6\xaf\x55\xf0\xe6\x8f\x2a\xd8\x76\xae\x05\xdb\xce\x43\xdc\x76\xe2\xcd\x1f\xde\xfc\x35\xe5\xf9\xbf\xf9\x03\x9f\x90\x37\x0b\xb0\x85\x68\x13\x57\x02\x6c\xc1\x21\xc0\x16\xda\x73\x00\x5b\x70\x1a\x0b\x6c\x01\xd8\x82\xd5\x14\x60\x0b\xc0\x16\xda\x04\xd8\x02\xb0\x05\x60\x0b\xc0\x16\x1e\x1a\x08\x6c\xa1\x35\x39\xb0\x85\x3d\xf3\x09\x3d\x11\x19\x10\xf8\x6b\xdc\xfc\x35\x20\x62\x79\x6d\x8c\x1e\x20\x62\x79\x96\xcd\xe6\x49\x00\x22\x96\x8d\x80\x88\xa5\x99\x06\x44\x2c\x20\x62\x01\x11\xcb\x02\x44\x2c\x20\x62\xe9\xb4\xbe\x82\xf3\x24\x46\x11\x38\x4f\x5a\x33\xab\xca\x5c\xa9\x2a\x4f\x2f\x35\x9f\x4c\x64\x32\x56\x99\x4c\x82\x69\x4f\x66\x2a\xb5\x7c\x9f\xc8\x2b\xcb\xb2\x39\x60\xc3\xd3\xd3\x4f\x7f\xfd\x6d\xf8\xf1\x3f\x2d\xbf\x9f\x8f\x7e\x3a\xb9\xb8\x3c\xff\xcf\xdf\x3e\x7d\x3c\x6d\x4f\xe3\xac\x37\xc7\x47\x17\x32\x6b\x5b\x15\x3d\x4c\x17\xdb\x8d\xc8\xd2\xb1\xe5\x32\x17\x7a\xa8\xa7\x31\x43\x90\xb8\x55\xb6\xf9\x54\xf7\x86\x8c\xf2\xf9\x17\xae\xf7\x35\x0b\xe4\x9e\xe9\x8e\x34\xec\xfa\xe8\xfb\x6b\x2d\x1f\xb4\x72\xde\x9b\xa0\x82\xf3\x89\xca\x27\x72\x7a\xc6\x8b\x9f\xc5\xe2\x5c\x38\xf7\x8a\x21\x6a\x19\x1d\xe9\x0f\x82\x05\x7d\xcd\x10\xa5\x54\x15\xab\x1e\x44\x57\xec\x76\x12\x37\x42\xc7\x0e\xfd\xa8\x39\x19\x33\x9c\x48\x91\xa5\x3d\xb7\x24\x2f\xe4\x17\xa1\xdb\x69\x8c\x6c\xa6\x12\xeb\xbe\x36\x77\xcc\x4d\x0b\xc1\x52\x27\xcd\xf4\xba\xdf\x5a\xd0\x57\x0b\x6c\xc0\xbb\x0f\x7b\x68\x89\x64\x33\xdb\xfa\xdd\xaf\xa6\xd5\xc4\xc6\x48\xe5\x5c\x96\xb4\x23\x33\x2f\xb2\xb4\x11\x3a\xc2\xf4\x38\x07\xf9\xa4\xe0\x20\x11\xa7\x8d\x44\x23\x4f\x1b\xd9\x74\xa7\x27\x1b\x20\x1b\x03\xfa\x1a\x1f\xa5\x48\xb4\x30\x58\x6f\x5e\xc2\x7a\x43\x44\xb5\x5d\x56\x0d\xea\x4a\xde\x87\xa7\x0f\x42\x36\x10\xb2\x11\x04\x37\x52\xd6\x82\x1b\x29\x07\x7c\x23\x05\xec\x24\x18\x38\xcd\x8c\x18\x38\xbd\x16\xf0\xec\x6e\xe1\x82\x90\x6d\x57\x40\xc8\x46\x14\xcc\xdc\x6b\xc1\xcc\x7d\x88\x33\x37\x5c\x1e\x0c\x9c\x96\x8c\x18\x38\xbd\x16\x40\x55\x0d\x42\xb6\xc3\x40\x68\xf0\x68\xba\x16\x3c\x9a\xee\xbb\x50\x3c\x9a\xb6\x0b\x1e\x4d\x6f\x05\x8f\xa6\x1f\x08\x1e\x4d\xbb\x05\x8f\xa6\xb7\x82\x47\xd3\xad\x82\x47\xd3\x54\xc1\xb6\x73\x2d\xd8\x76\x1e\xe2\xb6\x13\x8f\xa6\xf1\x68\xba\x29\xcf\xff\xd1\x34\x08\xd9\xbc\x59\x80\x2d\x44\x9b\xb8\x12\x60\x0b\x0e\x01\xb6\xd0\x9e\x03\xd8\x82\xd3\x58\x60\x0b\xc0\x16\xac\xa6\x00\x5b\x00\xb6\xd0\x26\xc0\x16\x80\x2d\x00\x5b\x00\xb6\xf0\xd0\x40\x60\x0b\xad\xc9\x81\x2d\xec\x99\x90\x2d\x11\xda\x8c\xb5\x9a\xcb\xd4\xc6\x69\xe1\x7a\x47\x7e\xff\xd8\xcc\x92\x40\x96\x46\xaa\xd4\x61\x98\xb5\x15\x56\x4c\x71\x63\xad\x8c\x4a\x54\x76\x91\xcb\xa5\xd3\x31\x3d\xc9\xeb\x27\xf3\xed\xf6\xf8\x5e\x2f\xb5\xab\xfc\xb4\x7e\x86\xdf\x45\xe7\x57\x27\xb4\x9b\xf1\xbb\x73\x51\x64\x32\xe1\x96\xd1\xe7\x77\x16\x67\x32\x97\xb3\x6a\xf6\x8e\xfd\xe0\x30\xc0\xee\x3d\xce\x64\xfe\xc4\x16\x80\xd4\xcf\x4d\xea\x57\x37\xce\x91\x9d\x90\x69\xef\x0d\x04\x5e\xc1\x43\x7d\x2e\x0c\x5e\x41\x34\x5b\x48\x02\xf0\x0a\x6e\x04\xbc\x82\xcd\x34\xe0\x15\x04\xaf\x20\x78\x05\x17\xe0\x15\x04\xaf\x60\xb7\xf5\x55\xa6\x22\xe1\x96\xc6\xf7\x8d\xe8\xb2\x90\x93\x89\xe5\x2b\xfc\x0d\xb8\xc1\xe0\x46\x79\x5a\x28\x99\xbb\xfc\x36\x5a\x6f\x70\xee\x88\xa9\xdf\xd4\x4c\x05\xba\x46\x92\x0e\xd0\x35\x36\x93\x44\x93\xb8\x18\xcd\x13\x71\xc1\x67\x45\xb6\x74\xab\x1d\x0a\xf2\x6a\x76\xd5\xf2\x29\x8e\xe2\x8b\x28\x86\x47\x70\x0e\xb6\x0b\x38\x07\x5f\x25\x07\x14\x38\x07\xd7\x02\xce\xc1\xa6\xd5\xe0\x1c\x04\xe7\xe0\x8e\x5a\x70\x0e\x62\xbd\xf1\x94\x0b\xce\x41\x70\x0e\x76\xd5\xcc\x70\xe9\x6a\x25\xb8\x74\xd5\x92\x11\x97\xae\xfc\x02\x02\x1e\x0c\x9c\x9d\x8c\x18\x38\xbd\x16\xf0\xec\x2e\x9a\x83\x73\x70\x57\xc0\x39\x48\x14\xcc\xdc\x6b\xc1\xcc\x7d\x88\x33\x37\x5c\x1e\x0c\x9c\x96\x8c\x18\x38\xbd\x16\x40\x55\x0d\xce\xc1\xc3\x40\x68\xc0\x0b\x50\x0b\x78\x01\xfa\x2e\x14\xbc\x00\x76\x01\x2f\xc0\x56\xc0\x0b\xf0\x40\xc0\x0b\xe0\x16\xf0\x02\x6c\x05\xbc\x00\xad\x02\x5e\x00\xaa\x60\xdb\xb9\x16\x6c\x3b\x0f\x71\xdb\x09\x5e\x00\xf0\x02\x34\xe5\xf9\xf3\x02\x80\x73\xd0\x9b\x05\xd8\x42\xb4\x89\x2b\x01\xb6\xe0\x10\x60\x0b\xed\x39\x80\x2d\x38\x8d\x05\xb6\x00\x6c\xc1\x6a\x0a\xb0\x05\x60\x0b\x6d\x02\x6c\x01\xd8\x02\xb0\x05\x60\x0b\x0f\x0d\x04\xb6\xd0\x9a\x1c\xd8\xc2\xbe\x39\x07\xaf\x45\x72\x53\x8e\xba\x30\xe7\x81\x76\x0f\xb4\x7b\xb5\x80\x76\xaf\xc5\x04\xd0\xee\x1d\xe6\x8b\x59\xd0\xee\xa1\xd9\x42\x12\x80\x76\x6f\x23\xa0\xdd\x6b\xa6\x01\xed\x1e\x68\xf7\x40\xbb\xb7\x00\xed\x1e\x68\xf7\xc0\x0f\x47\xd5\x01\x7e\xb8\x66\x92\x48\xc2\x0d\x47\xe6\x42\x4b\x55\x3b\x6b\x19\x2f\xcb\xf6\x0e\xee\xb0\xae\xd0\xea\x2e\x9c\x1a\x2e\x49\x44\x59\x9e\xaa\xe9\x28\x4f\x54\x6a\xe5\xab\x73\x45\x70\xf8\xdf\x17\x9f\x3e\x5a\x7e\xba\x1c\xfd\x9f\xcb\x18\x90\x64\x6b\xd5\x72\xbd\x0f\xb7\xe8\x9b\x6f\x2c\x3f\xfc\x31\x15\xf3\x3f\x96\x26\x55\x95\xab\xdd\x08\x66\xad\xba\x64\x8c\x8e\x24\xab\x4a\x23\xf4\xb1\x9a\x71\x69\x71\x9f\x7d\x1a\xd4\xac\x50\xb9\xc8\xcd\xa9\x9a\x9e\xda\x17\x55\xaf\x16\x2d\x8e\xab\x59\x71\x2c\x75\x8d\xc3\x58\x66\x07\xa2\x96\x93\x68\x3c\x2c\xcd\xcb\x73\x31\xd1\xa2\xbc\x3e\xe7\xc6\x46\x41\xba\xdd\xd2\xd5\xdb\xad\xbf\xff\xf8\x87\x7f\xfd\x67\xd9\xbe\xdd\xf2\x94\xb6\x02\xfd\x8e\xd6\x56\xc7\x02\x87\x73\xb5\x18\x6e\xba\xc2\x85\xd0\x73\x69\x23\x84\xf1\xcf\xef\x5e\xaa\x53\x8a\x57\x78\xad\xca\x6e\x2e\x76\xa1\xb4\x43\x01\xed\x04\x97\x32\xfd\x9a\xa4\xf8\x59\x88\x82\x67\x72\xee\x98\x83\x69\xbe\xcb\xb2\x24\x3d\xf7\x11\x44\x51\x41\x03\xad\xae\x7c\x47\x07\xf4\x83\x6c\x2a\xa6\x61\xe4\xd7\xf1\x61\x18\x33\x59\x79\x21\x8c\x91\xf9\xb4\xb3\xcf\x98\xf0\xa3\x65\xa2\x89\x4c\xb8\xf1\x55\x19\xb1\xf6\x93\x4c\x8a\xdc\x34\xd4\xf6\xa2\x75\xa6\x52\x8f\x22\xfb\x1a\xb2\x91\x01\x3b\x3e\xb9\x18\xbe\x3f\x1d\x79\x52\x5d\x9c\x9c\x8d\xbd\x89\xce\x3e\x5f\x7e\x1e\x9e\x7a\x12\x9d\x5c\x5c\x9e\x7c\xfa\x8d\x90\x94\xdc\xb3\xe5\x9c\x1b\xe1\x3d\x63\x22\xaa\x2b\x73\xd9\x8f\x9e\xaa\xee\xae\xc3\xcc\x2c\xfd\x1c\x4f\x37\x3a\x40\x90\xc4\x93\xa0\x5e\x23\xce\x84\xd1\x32\x29\xb1\x42\x3c\x28\x06\x2b\x04\x56\x88\x40\xf3\xb1\x42\x34\x13\x61\x85\xd8\x95\x67\xba\x42\x5c\x18\x6e\xca\x63\xac\x0c\xfe\xe9\xd0\x53\x9b\xd7\x2a\x4b\x87\x45\x7d\x6e\x6e\xa4\xca\x3f\xe7\x46\x66\x63\xad\xee\x96\x35\xac\x6d\x27\x9a\xfb\xbb\xe4\x91\xc9\x89\x48\x16\x89\x0d\xbb\xf0\x37\x6d\xa1\x4a\x53\x9b\xde\x75\x2e\x16\x77\x3e\x4c\x97\x7e\x21\x32\x51\xb3\x19\xb7\x45\xb9\x6c\x0a\xf9\x7a\x55\xd0\xe5\x2a\xea\xd5\x2a\xe2\x45\xa5\x6b\x63\x8a\x9f\x84\xe7\x0a\x33\xbd\x72\xdc\xe3\xe8\xa1\x6d\xa4\x0f\x5e\xda\xf7\x17\xc1\x53\x61\x0b\xd7\xd0\x94\xbd\x31\xb4\x51\xb9\x9d\x59\xcc\x95\x40\x2f\x16\xdb\x41\x7b\xd8\x4d\x79\x07\xbb\xf2\xc3\x84\xb5\xc9\xe4\x9e\xdd\x33\xc9\x50\x8d\x84\x11\x82\x00\x04\x54\x95\x7b\xf6\xde\x08\x91\xc8\x3e\x94\xc6\x3e\x90\xc4\xbe\x23\x4b\x7c\x99\x5c\x0b\x4a\x67\x26\xdb\x44\xe5\x7c\x5a\xd6\x71\x1f\x33\x96\x49\x8a\x0b\x95\xdc\x1c\xf0\x9c\xf5\x6a\x7a\xd3\xd7\x6d\x7a\xd2\x95\x0d\x71\x61\x5c\x97\x4d\xe0\x2e\x38\xd3\xc1\x5d\x68\x15\xb8\x0b\x2d\x02\x77\xc1\x23\x2f\x60\x82\x87\xbb\xb0\x2b\x70\x17\x5e\x88\xbb\xe0\x49\x90\x39\xef\x15\xb8\x2e\x5e\xd4\x91\x0f\x2d\xbf\xa5\xe2\xaa\x6a\xaf\xe6\x01\x93\xf9\x44\x59\x7e\xba\xe5\x3a\xb7\xb5\xcf\x80\x09\xad\x2d\xef\xf0\x06\x2c\xd1\xd2\xc8\x84\x67\x96\x9f\xbf\x51\x93\x49\xfb\x3d\x11\x4f\xbf\xf0\xdd\x8e\xf5\xc1\x4a\x85\x56\x46\x25\x2a\x3b\x16\x46\x24\x46\xaa\xfc\x52\xce\x84\xaa\xe2\xae\x93\xe0\xa5\xc6\xeb\xbb\xf2\x8f\x97\x1a\xcf\xb2\xd9\xf0\x52\x63\x6d\x21\x5e\x6a\xe0\xa5\x06\xd9\x32\xbc\xd4\xc0\x4b\x0d\xbc\xd4\xc0\x4b\x8d\xce\xeb\x6b\x55\x8a\x33\x61\x78\xca\x0d\x1f\xdd\x25\xd7\x3c\x9f\x8a\x0f\x32\x33\xb6\xee\xe0\x1e\xe3\xce\x4b\xfc\xea\x6e\x71\x92\xcb\x96\xf9\xc3\xdd\xd4\xb1\xc7\xcd\x3e\x5b\xfe\xca\xcb\x96\x39\xd8\x6d\x4b\x07\x72\x04\x87\x39\x65\xdb\x43\x0f\xb7\x21\x49\x55\x1a\x35\xbb\x54\x37\x22\xef\x76\x53\xbd\x13\xdd\x83\x59\x96\x3f\xac\x52\x69\x8f\xfd\xe9\x29\xbe\x4a\x4b\x7b\x00\xef\xd8\xe6\x2d\x65\x2a\x12\xae\x4f\xf2\xdf\x2d\x54\x0a\x9e\xb7\x1f\xdb\x3d\xc2\xd1\x26\x62\xf6\x50\xdb\xae\x7f\x39\xdd\x1f\xef\x00\x76\xbb\x3b\xf7\x86\x8c\xf2\xf9\x17\x6e\x43\xb0\x3b\x3f\xa5\xf2\xa1\xd3\xa4\x79\xa8\x8f\x07\x44\x6b\x2d\x1f\xb4\x72\xde\x2e\xa3\x42\x73\x89\xca\x27\x72\x7a\xc6\x0b\xc4\x8b\x7e\x09\xf1\xa2\xd7\x01\xff\x7b\x6e\x49\x5e\xc8\x2f\x42\x97\x5e\xe6\xb8\xa6\xa9\xc4\xba\xaf\xcd\xb5\x4f\x6f\xd1\x9a\xe9\x75\xbf\xb5\xa0\xaf\x16\xd8\xe0\x6a\x1f\xf6\xd0\x12\xc9\x66\xb6\xf5\x7b\x46\x4d\xab\x89\x8d\x91\xca\xb9\x2c\x69\x0c\x72\x44\x64\x3d\x1c\x5b\x0f\x46\xd7\x0f\x14\x0c\xda\x48\xc7\xa3\xa4\xfb\xee\xf4\x64\x03\x64\x63\x40\x5f\xe3\xa3\x14\x89\x16\x06\xeb\xcd\x4b\x58\x6f\x88\x80\xb3\xcb\x2a\xe7\x91\x38\x71\xe7\x66\xf5\x0e\x9d\xec\xf2\xfe\xce\x95\xab\x54\xbc\x12\x86\xfa\x6d\xbc\xe3\x7d\xdc\xed\x00\x41\x2b\x08\x5a\xdb\x33\x82\xa0\xd5\x2f\x08\xd6\x8b\x81\xb3\x93\x11\x03\xa7\xd7\x02\x9e\x1d\x29\xfd\x76\xbd\xf6\x26\x7d\xee\x7c\xf4\xf4\xc9\x69\x27\x42\xb2\xbf\x3d\xf7\x76\x9d\x15\x2e\x0f\x66\xee\xf6\x8c\x98\xb9\xfd\x02\x97\x07\x03\x67\x27\x23\x06\x4e\xaf\x05\x50\x55\x53\x6f\x20\xef\xac\xbe\x04\x3f\xa2\x87\xd7\x4b\xf7\xd1\x79\x5e\x38\x42\x83\x18\x82\xb5\x20\x86\x60\xdf\x85\x22\x86\xa0\x5d\x10\x43\x70\x2b\x88\x21\xf8\x40\x10\x43\xd0\x2d\x88\x21\xb8\x15\xc4\x10\x6c\x15\xc4\x10\xa4\x0a\xb6\x9d\x6b\xc1\xb6\xf3\x10\xb7\x9d\x88\x21\x88\x18\x82\x4d\x79\xfe\x31\x04\xd7\xa1\xdd\x8c\x04\xb6\xd0\x83\x7a\x06\x6c\xa1\x45\x80\x2d\x38\x04\xd8\x42\x7b\x0e\x60\x0b\x4e\x63\x81\x2d\x00\x5b\xb0\x9a\x02\x6c\x01\xd8\x42\x9b\x00\x5b\x00\xb6\x00\x6c\x01\xd8\xc2\x43\x03\x81\x2d\xb4\x26\x07\xb6\xb0\x67\x76\x7f\x9e\xdd\xf2\x45\xb9\x7a\x98\xed\x5e\x94\x3a\x3f\x6a\x0e\x59\x97\x08\xfd\x8a\xbe\xfe\x90\xd6\x9c\x80\x4e\x41\x5f\x5b\x02\x94\x52\xd7\x90\xa7\xe5\xa0\xa5\xde\xce\xf1\xad\x03\xc4\xb9\x3f\xe8\x5d\x98\xdb\x7a\xe2\xbc\x1e\x3e\x97\x13\xeb\x99\xf0\x29\x5d\x9f\x9f\x55\x46\xad\x06\xb2\x54\xf9\x58\x65\x32\x59\x8c\xba\x70\x49\xac\x88\x28\x3e\x6e\xd7\x83\xf7\x8b\x63\x31\xe1\x55\xe6\xe4\xff\xf3\xa9\x8b\xb4\x25\x3e\xc2\x85\x6c\x25\x38\x61\xa4\x09\xc4\xc3\x59\x48\x53\xc2\x08\xdc\x85\x2c\xd2\x8b\x20\xbd\x8b\x0e\x7b\x13\x1d\xf4\x1e\xfa\x60\xdf\x42\x77\x7a\x07\x4d\x9c\x75\xfc\xdc\x86\x0c\xcd\xfa\xdc\x9a\xb5\xab\x3f\xb5\x9c\x6e\x8e\x3e\x9e\x1c\xd5\x44\x27\x95\x76\x30\x1a\x12\x18\x12\x7b\x3a\x0d\xa2\xbd\x2b\xa6\xeb\x63\x7d\x9f\x30\xb1\x7d\x3e\x8d\x09\x7b\x6b\x1c\x53\x02\xc3\x39\x90\x5d\x70\x0e\x44\xcc\x8c\x73\xa0\x66\xb6\x88\x73\xa0\xb0\x07\x3c\x0c\x03\x6f\x0f\x85\x62\xe0\xd9\xe5\xe5\x0d\xbc\xe0\x82\xe8\x87\x5d\x2c\xe2\xc0\x8b\x05\x1e\x7a\xb1\xe0\x73\x40\xf2\x3b\x68\x46\x3f\xfb\x62\xfb\x7a\x49\xd5\xef\x39\x18\x0b\x9e\xfc\x22\xde\x47\xb3\xd0\xa9\x00\xae\xda\x63\xc1\x8a\xe1\x11\xac\x18\xbb\x02\x57\xed\x81\x60\xe0\x39\x04\x03\xaf\x3d\xc7\x61\x0f\xbc\xe0\x82\x42\x8a\xa0\x57\x72\xe8\xbb\xed\x20\xd3\x89\x09\x49\x6f\xb8\xd9\x4b\x45\xc3\xc2\xef\x5e\xc7\x14\xc3\x62\xef\x60\xc7\x16\xc6\x3a\x3a\x76\x2c\x7e\x66\x8b\x5f\x67\x58\xec\x5a\xc3\xba\x4e\xa7\x5d\xd6\x9c\x1e\x0a\x8f\x5d\x7b\x58\x97\xf5\x87\x75\xb7\x3b\x7e\x1d\x62\xd1\x6b\x11\x8b\x5a\x8f\x58\xfc\x9a\xc4\xe2\xd7\x25\xd6\xa1\x86\x22\xef\x72\xb3\x5e\xee\x73\xb3\x6e\x7d\xa3\xd3\x32\x1e\x98\x2d\xfc\x7e\x37\x8b\x1b\x35\x9d\xee\xb8\x87\xb5\x7f\xc4\x7d\xef\x48\x0b\x43\xc7\x60\xe8\xdd\x6f\xf6\x2a\x61\xb1\xa0\x3b\xe1\xec\x45\x62\x63\x7b\xf3\xd8\xf0\x94\xed\xb1\x60\x7b\xee\x10\x6c\xcf\xdb\x73\x1c\xf6\xf6\x1c\x4f\xd9\xda\x04\x4f\xd9\x9e\xd5\x53\x36\x6a\xd5\x04\xe0\x34\xa4\x37\xf1\x0c\x58\x4d\x97\x62\x18\xb0\x1a\xa2\x00\xab\x09\x14\x60\x35\xf4\x5c\xc0\x6a\x02\x04\x58\x4d\x9b\x75\xc0\x6a\x80\xd5\xb8\x05\x58\x0d\x03\x56\x03\xac\xa6\xe7\x42\x81\xd5\xd8\x05\x58\xcd\x56\x80\xd5\x3c\x10\x60\x35\x6e\x79\x3e\x58\x0d\x21\xd1\x95\xcc\x8f\xa5\x63\x56\x26\xd4\x63\x72\xcd\x65\xee\xaa\x3a\xdf\x23\x62\xb6\x8e\x40\xde\xd5\x10\xe7\x4b\x66\xaa\x21\xe2\x2e\xc9\xaa\xb4\xf1\xbc\xda\xae\xce\x3b\x50\x48\x9d\xd0\xdf\xe2\x8e\x47\xd6\xc4\x52\x64\x7e\x70\x1f\x95\xa9\xe9\xa9\x98\x0b\x47\xf8\x5b\x42\x41\x5a\x14\xdc\xd5\x69\x68\xfe\xd1\x95\x56\x37\x22\x1f\xab\xb4\x5e\x3a\xbc\x93\x0c\x71\x6a\x79\xa8\xf5\x8b\x2f\xe8\x3f\x59\x6f\x2a\x32\x61\xc4\x58\xf9\xee\xe9\x52\x3a\x3b\xa3\x8c\x9a\x10\x65\xd7\xd5\x55\x2f\x1f\x59\x3f\xd7\xa5\x47\x39\x27\x6a\xad\xb7\x01\xfd\xd5\x9c\xe1\xd3\x1e\xcc\xa2\x10\x50\x70\x99\x3b\xb6\xb6\xb4\x5e\xde\x63\x3b\x77\x7f\x8c\xbd\xfc\x41\xa4\xc3\x3c\x57\xa6\x7e\x8a\x6d\xb1\x3c\xc4\x33\xf3\x56\x36\xd1\xa8\x6d\xb7\x1b\x6e\x0b\x1f\xea\xa9\xa5\x58\xe7\x6c\x49\xb4\xc8\x36\x4b\x3a\x0c\x1a\xe5\xf3\x2f\x5c\xc7\xd8\x44\xe9\x2b\xbe\x70\xe7\xa4\x6e\x3d\xf7\x4d\x78\x74\x2d\x1f\xb4\x72\x1e\xb2\x50\x77\xc1\x49\xfd\xf8\xff\x8c\x17\x88\x3a\xff\x12\xa2\xce\x33\x36\x91\x22\x4b\x7b\x6e\x49\x5e\xc8\x2f\x42\x97\x24\xbc\x2a\xb0\xee\x6b\x73\xc7\xdc\x5c\xf7\xac\x99\x5e\xf7\x5b\x0b\xfa\x6a\x81\x0d\x13\xcf\x87\x3d\xb4\x44\x42\x5f\xff\x9b\x56\x13\x1b\x23\x95\x73\x59\xd2\xf0\x28\x12\xed\x0b\x0b\xa6\x7e\x61\xa1\xf4\x2f\xec\x90\x29\x60\x58\x57\x1a\x18\xd6\xe8\x4e\x4f\x36\x40\x36\x06\xf4\x35\x3e\x4a\x91\x68\x61\xb0\xde\xbc\x84\xf5\x86\x90\xcc\x67\xd5\xa0\xae\x64\xa7\xbb\x18\x4d\x33\x97\x8b\xb9\xd0\x20\x8c\x0c\xe9\x9e\x20\x8c\x04\x61\xe4\xe3\xc2\x0f\x80\x30\xb2\xf9\x14\xf3\xe9\xf7\xc5\xf5\x75\xbf\x03\xda\xa7\x6b\x51\x64\x32\xe1\x47\xaa\xb2\x61\x22\xfe\xc3\xfd\x99\xcc\xe5\xac\x9a\xbd\x63\x3f\x38\x2c\xb0\x7b\x71\x1e\xfe\x49\xff\x84\xe6\xe3\x9d\x0c\xed\xbc\x5e\x0f\x95\xee\x99\x92\x3d\xd2\x83\xf4\x44\xa3\x3d\x50\xe2\xe2\xee\xe6\x95\x44\xb3\x1d\x5c\xb3\x79\x27\x93\x5b\x2d\x8d\x18\x16\xc5\x5f\x2e\x2f\xc7\x63\xad\xae\x9c\x6c\xb6\x76\xdf\xb4\x14\x49\xa5\xa5\x59\x1c\xa9\xdc\x88\xbb\x68\x66\x5b\x9e\x65\xea\x76\xac\xe5\x5c\x66\x62\x2a\x46\x65\xc2\x33\x07\x55\x25\xc5\xb0\xa5\x24\xbc\xe0\x57\x32\x93\xee\xfe\x48\xf3\xc3\x78\xea\xf1\x19\x48\x7e\x0d\xd9\xa7\xa1\xf9\x33\xa9\x56\xc5\xa1\x59\x45\x98\x51\x8a\x4d\x43\x77\x3c\xb3\x2c\xb4\x4a\xce\xec\xeb\x21\xf1\xd3\xb4\xe0\xe9\xa7\x3c\x5b\x9c\x2b\x65\x3e\xc8\x4c\x94\x8b\xd2\x08\x07\xf0\x4a\xb1\x4c\x57\xf9\xb0\xfc\x49\xab\xca\xd1\x3c\x8d\xe5\xfa\xdf\xfe\xe4\x29\xcd\x3d\x11\xd6\xa5\x7d\x54\xf9\xf2\x0b\x7a\xb0\xfb\x73\x29\x1c\x5b\x83\xfe\xcc\x2e\xc5\xa9\xcc\xab\xbb\x4f\x85\xc3\xc3\x62\x74\x4e\x6b\xf7\xa9\x2a\xa3\xf7\x73\xad\xb2\x7e\xce\xdd\xea\x64\x7d\x28\xaa\x9c\x2d\x42\x56\x44\x18\x9a\xb7\x32\x4f\xd5\x6d\xd9\x53\x9b\x4c\x67\x25\x3f\xd2\x22\x15\xb9\x91\x3c\xbb\x28\x44\xd2\x4b\x75\xec\xaa\xed\xed\xa8\x74\x3b\x00\x7a\xd2\xd8\x75\xa1\x36\x2a\x13\xda\xb5\x05\xe9\x8c\x6a\x88\xc9\x44\x24\xce\x0b\xc4\xa4\x0f\xf5\x60\x14\x24\x1d\x14\x5c\x82\x56\xeb\xdb\x5a\xbb\x10\x89\xca\xdd\x07\xdf\xb4\x09\x8d\x7a\x0f\xba\x8f\xf3\xbf\x4e\xfb\x68\x47\x66\x23\x32\x31\x13\x46\xb7\xb4\x94\xbb\xa7\x70\x9c\xc0\xb6\x0a\x4e\x60\x5f\x25\x22\x8e\x13\xd8\xb5\xe0\x04\xb6\x69\x35\x4e\x60\x71\x02\xbb\xa3\x16\x27\xb0\x58\x6f\x3c\xe5\x3e\xf7\x13\x58\x77\x5c\x18\x7f\xe7\xa2\xc5\x83\xa1\x75\xd2\x5e\xd9\x14\x7a\x8f\xb5\x1b\x16\xfb\x05\x81\x76\x11\x68\xb7\x9b\x7d\x71\xcf\xc9\x5e\x71\xa0\xdd\x30\x22\x70\x0c\x1c\x0c\x9c\xa6\xbc\xc6\x81\x13\x54\x00\x9d\xac\x20\x94\xa8\x20\x64\xfb\x43\xf7\xe0\xc8\xf1\x55\x88\x9c\x04\xe4\xca\xa2\xb5\x41\x9f\x3c\x04\xf4\xc9\x29\x22\x8e\xca\xde\x08\x0e\xe0\xf2\x60\xe6\x6e\xcf\x88\x99\xdb\x2f\x70\x79\x30\x70\x76\x32\x62\xe0\xf4\x5a\x40\xdf\x17\x93\xc3\xe2\x95\x90\x4c\xa5\xdc\xd8\xa1\xc4\x28\x79\x11\x08\x4d\x38\xc7\x25\x48\x99\xe2\x4d\x5c\x09\x48\x99\x1c\x02\x52\xa6\xf6\x1c\x20\x65\x72\x1a\x0b\x52\xa6\x3d\x39\xcd\xaf\x88\x94\xe9\xd9\xc1\x35\x41\x5c\x92\xcf\x1f\xb3\xe9\xdd\xfb\x09\x76\x4d\x80\xd7\x60\xdb\xd9\xcd\x3e\x6c\x3b\x03\xf1\x9a\x30\x97\xa2\x9b\x3b\x11\xbd\x9c\x92\xab\x21\x28\x79\x98\xfb\x10\xd0\x8b\x03\xbf\x33\xa4\xdd\x02\xdd\x85\xbd\xdc\x2d\xa2\xbb\x08\xbd\x2e\x76\x44\x5c\x81\x14\x53\x03\xd8\x02\xb0\x05\x60\x0b\x36\x01\xb6\x60\x17\x60\x0b\x5b\x01\xb6\xf0\x40\x80\x2d\xb8\x05\xd8\xc2\x56\x80\x2d\xb4\x0a\xb0\x05\xaa\x00\x5b\x58\x0b\xb0\x05\x60\x0b\x0d\x03\x81\x2d\xb4\x26\x07\xb6\xd0\x15\x5b\xf0\x24\x70\xb2\x82\xfb\x9e\x03\x39\x02\x13\x78\xea\x78\xc6\xef\xce\x57\x3c\x5e\x96\xde\xb3\x77\x0e\xaf\x99\xcc\x9f\xd8\x02\xd0\xbc\x1d\x3c\xcd\x5b\xa1\xb4\x79\xbf\x5c\x10\xce\xf8\xdd\x28\x37\xda\xfa\xbd\x7e\x5b\xc2\x0a\xbb\x94\xb6\x97\x80\x9e\x7a\x05\x35\xdd\xa1\x3e\xd1\x05\x35\x1d\x9a\x2d\x24\x01\x18\xe5\x36\x02\x46\xb9\x66\x1a\x30\xca\x81\x51\x0e\x8c\x72\x0b\x30\xca\x81\x51\xae\xe3\xfa\x5a\xc3\xa3\x1b\x30\x7b\xd4\x65\x23\x0c\x76\xba\x18\x45\x60\xa7\x6b\x67\xa7\xd3\x3c\x59\xba\x97\x3b\x79\xdc\xfd\x24\xe5\x86\xa7\xca\x12\x91\x8e\xe0\x27\xa6\xa9\x16\xa5\x6b\x5e\xda\x7a\xe7\xbf\xfc\xf7\xbb\x5f\xbf\x7f\x57\xfb\xcf\x7f\xff\xf1\x0f\xff\xfa\x4f\xbb\xfb\xdc\x15\x04\xe8\x84\x4e\x65\x72\x7a\x6d\x4a\x23\x2c\x8e\x02\xa1\x4a\x92\x44\x94\xe5\xa5\xba\x11\x5e\x6f\xd9\xd9\x51\x9e\xa6\x6a\x97\x4e\x7a\x22\xb4\x71\xd3\x9d\x11\xd4\xd4\x1b\x11\x6f\xfc\x51\x97\xf7\xe3\x9b\x89\x0d\x4f\x6e\x52\x2d\xe7\xb6\xa5\xd8\xdf\x54\xa9\xb8\xaa\x1c\xc1\x18\x29\x0e\xda\x8c\xdf\x7d\xac\x66\x57\x42\x7f\x9a\x78\x81\x30\x46\x3e\x8e\xa5\x4c\x47\xcd\x92\x8d\xd1\xf2\xaa\x32\xae\xa5\x60\x2f\x05\x9f\x89\xb2\xe4\x53\x31\x9a\x8b\xdc\x05\x23\xf4\x55\xb6\xa7\x47\x2c\xa7\x40\x5b\x67\x10\x79\x65\xd9\x42\x0c\xd8\xdf\x64\x71\x23\xdb\x1b\x78\x70\x3f\x1f\x58\x7e\x5f\x4f\xa0\x96\x5f\x1b\x9d\xd4\xf1\x45\xd6\x81\xb4\xb2\xec\x79\x4d\xce\x8c\x99\xac\xbc\x10\xc6\xc8\xdc\x16\xff\x92\x66\x3e\xab\x27\xa3\xa3\x65\xa2\x89\x4c\xb8\xb3\x77\x13\x2d\xab\x55\x66\x52\xe4\xa6\xa1\xb6\x17\xad\x33\x95\x7a\x14\xd9\x7b\xe0\x46\x06\xec\xf8\xe4\x62\xf8\xfe\x74\xe4\x49\x75\x71\x72\x36\xf6\x26\x3a\xfb\x7c\xf9\x79\x78\xea\x49\x74\x72\x71\x79\xf2\xe9\x37\x42\x52\x2a\x16\xa7\xe5\x9c\x1b\xd1\x57\x30\xe4\x32\x97\xfd\xe8\xa9\xea\x29\x63\x98\x99\x3a\x96\xf5\xb3\x43\x68\x9c\x09\x9c\x3e\x61\x55\x9a\x63\x35\xe3\x6d\x73\x88\xe3\x13\x1a\xf9\x86\x99\xe4\x65\x5b\x95\x59\xab\xc9\x59\x35\xf6\xea\xa8\x4a\x71\x76\x34\xb6\x99\xd9\xbe\x08\xcf\x6d\x84\xaf\xf7\x13\xdb\x8f\x6f\x43\x3e\xfc\x96\x9b\xe4\x7a\x98\xf2\xc2\x08\x7d\x74\x7e\xdc\xf2\x7d\x2e\x73\xea\xdc\x9f\xf2\xfb\x80\xe9\x21\xd9\xdb\xcf\x8c\x07\x9b\x6f\x7c\xb3\xab\x65\xa7\xc9\x4b\xc3\x4d\xf5\xc8\x66\xfb\x34\x3b\xd2\x5a\xe9\xf5\x02\x1e\xd4\x3b\x7e\xe2\x46\xdc\xf2\xc5\xd0\xb6\xba\xf4\xdd\x33\x2e\x5a\x3e\xcb\xa9\xae\xb5\x7a\x76\xfe\x58\x0a\x3d\x17\x69\x03\x8e\x2f\x8d\xd2\xcb\xba\x68\xfc\xa5\xba\xda\x39\x19\x5b\x57\x32\xfb\xfb\x3f\xdf\xdc\xd7\xf7\xd2\xe7\x2f\x8c\x48\x1b\xd3\xcb\x8d\xcc\xd3\x77\xec\x9b\x6f\xea\x7f\x14\x59\xa5\x79\xb6\xfe\xe7\x72\xd3\x2a\x57\x6e\x22\xfb\xe5\xd7\x37\xab\x82\x45\xba\x66\x2f\x5e\xfd\xf1\xff\x07\x00\x00\xff\xff\x02\x3d\x64\x05\x8c\x88\x04\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x73\x23\x37\x96\xe6\x7b\xfd\x0a\x84\x63\x1f\xec\x75\xb3\xda\xde\xe9\x99\x98\xa9\x97\x0e\x96\xc4\x72\x6b\x2d\x55\x31\x24\x55\xf5\xce\x7a\x3c\x0e\x28\x13\xa4\x60\x25\x13\xb9\x48\x24\x25\xf6\xe5\xbf\x6f\x30\x79\x51\x4a\x4c\x00\x07\xc8\x64\x89\x92\xbe\xf3\x62\x97\x08\x1c\x9c\xc4\xf5\xe0\x03\xf0\x9d\x37\x83\xc1\xe0\x0d\x2f\xe4\x17\xa1\x4b\xa9\xf2\x77\x8c\x17\x52\xdc\x19\x91\x2f\xff\x55\xbe\xbd\xf9\xf7\xf2\xad\x54\x7f\x9c\xff\xf8\xe6\x46\xe6\xe9\x3b\x76\x54\x95\x46\xcd\xce\x45\xa9\x2a\x9d\x88\x63\x31\x91\xb9\x34\x52\xe5\x6f\x66\xc2\xf0\x94\x1b\xfe\xee\x0d\x63\x3c\xcf\x95\xe1\xcb\x3f\x97\xcb\x7f\x32\x96\xa8\xdc\x68\x95\x65\x42\x0f\xa6\x22\x7f\x7b\x53\x5d\x89\xab\x4a\x66\xa9\xd0\xb5\xf2\x4d\xd1\xf3\x1f\xde\xfe\xe9\xed\x0f\x6f\x18\x4b\xb4\xa8\xb3\x5f\xca\x99\x28\x0d\x9f\x15\xef\x58\x5e\x65\xd9\x1b\xc6\x72\x3e\x13\xef\x98\x2c\x8d\x54\xe5\xdb\xfa\x3f\x6f\xaf\x78\xfe\x37\x2e\x93\x4c\x55\xe9\x5b\xa9\xde\x94\x85\x48\x96\xa5\x4e\xb5\xaa\x8a\x75\xd2\xc7\x69\x56\x7a\xd6\xc6\xad\x3e\xec\x64\x99\xae\xfe\x77\x26\x4b\xf3\xf3\xfd\xdf\x4e\x65\x69\xea\xbf\x17\x59\xa5\x79\xb6\x29\xbc\xfe\x53\x29\xf3\x69\x95\x71\xbd\xfe\xe3\x1b\xc6\xca\x44\x15\xe2\x1d\xfb\xb8\x54\x5f\xf0\x44\xa4\x6f\x18\x5b\x7f\x5f\x5d\xdc\x80\xf1\x34\xad\x6b\x8c\x67\x63\x2d\x73\x23\xf4\x91\xca\xaa\xd9\xa6\xa6\x06\x2c\x15\x65\xa2\x65\x61\xea\x1a\xb9\x30\xdc\x54\x25\x53\x13\x66\xae\x05\xd3\xeb\x6a\xaf\x53\x32\xf6\x7b\xa9\xf2\x31\x37\xd7\xef\xd8\xdb\xb2\x4e\xf7\x76\x95\x7c\xfd\xf3\xaa\xaa\x1e\xfc\xc9\x2c\x96\xc6\x95\x46\xcb\x7c\xda\x56\xdc\x48\x6b\xa5\xd9\x4c\x94\x25\x9f\xda\x4b\xa9\x53\x9d\x3d\x48\xb4\x2a\xab\xfe\x81\x58\xd4\x49\x3e\xd5\xa2\x2c\xd9\x94\x1b\x71\xcb\x17\xcb\x6a\x59\xfe\x5b\xd0\x3f\xf6\xa7\x55\xce\xe1\x2a\xe3\x03\x43\x36\xca\x4f\xc6\x8e\x2f\x6f\x68\xdc\x74\xde\xb7\x3b\x1d\xef\x81\xda\xe1\xf6\x7b\x57\xea\x52\x6e\x56\x7f\x58\xfd\x3c\xff\xf1\x4a\x18\xfe\xe3\xaa\x67\x24\xd7\x62\xc6\xdf\xad\x93\xab\x42\xe4\xc3\xf1\xc9\x97\x7f\xb9\x78\xf0\x67\xc6\x0a\xad\x0a\xa1\x8d\xdc\xf4\xc5\x95\x34\x86\x63\xe3\xaf\x2d\x1f\xb1\x92\xba\x03\x53\x12\x36\xc7\xe8\xe3\xc4\xea\xea\x77\x91\x98\xc6\x0f\x9b\x71\x74\x2f\xed\xc6\xd6\x06\x57\x46\x9d\xe4\x4b\x05\x52\xe5\xdb\xbe\xbf\x93\x8c\x31\x69\xc4\xac\xe5\xcf\x56\x8b\x9b\x3f\x72\xad\xf9\xa2\xa5\xe0\x33\x93\xb5\xa8\x5c\xe5\xb9\x52\x2a\x13\x3c\x7f\xf4\x6b\xc2\xd7\x9d\xc6\x96\xad\xd5\x8e\x64\xf9\xed\x13\x99\x70\x13\xf4\x65\xf6\x5a\x5b\x49\x9a\x97\x1f\xef\x27\xa3\x5d\xb1\x2a\xf6\x1a\xfc\x30\x49\x5b\xf5\xad\xa4\x14\x89\x16\x66\x69\x84\xad\x18\x4f\x21\x96\x1e\xe4\x2b\x3d\x91\x86\xa7\x22\xdb\x2d\xd4\x5d\x65\xf7\x13\xe8\x91\xca\x0d\x97\xb9\xd0\x43\x3d\xb5\x54\x91\xb3\xf6\xbc\x75\xe7\xae\xb9\x7b\x43\x46\xf9\xfc\x0b\xd7\x31\x26\xf8\x7a\x07\xdb\xcc\x2e\xd6\x5f\x49\x5d\x80\xb1\x39\xcf\xaa\x9e\xb4\x7c\xd0\x6a\xe6\xd2\x44\xf9\x26\xb6\xf2\x0a\x26\x72\x7a\xc6\x8b\x9f\xc5\xe2\x5c\x4c\xdc\x89\xe9\x6a\x97\x72\x23\x16\xfe\x44\xc4\x6f\xde\x88\xaf\x19\xa2\x94\xaa\x62\xd5\x83\xe8\x8a\xdb\xa7\xb4\xc7\xa2\xc5\xff\xab\xa4\x16\xa9\x4f\xef\x60\x59\x55\x9e\x34\xce\xe1\xdd\x94\x89\x14\x59\xda\x73\x4b\xda\xd6\x42\x97\xa9\xc4\xba\xaf\xcd\xad\x3d\x80\x7e\x35\xd3\xeb\x7e\x6b\x41\x5f\x2d\xb0\x71\x9a\x3e\xec\xa1\x25\x92\xcd\x6c\xeb\x5a\x29\x76\xad\x26\x36\x46\x2a\xe7\xb2\x54\x9a\xa2\x97\xe7\x8b\x4f\xde\x2f\x63\x75\x05\xaf\x4c\x58\xba\xd9\x53\xa1\x03\x72\x10\x8d\x66\xac\xe0\xc6\x08\x9d\xbf\x63\xff\xfd\xed\x7f\x7d\xff\x8f\xc1\x77\x7f\xfe\xf6\xdb\x5f\x7e\x18\xfc\xc7\xaf\xdf\x7f\xfb\x5f\x6f\xeb\xff\xf9\x9f\xdf\xfd\xf9\xbb\x7f\x6c\xfe\xf1\xfd\x77\xdf\x7d\xfb\xed\x2f\x3f\x9f\xfd\x74\x39\x1e\xfd\x2a\xbf\xfb\xc7\x2f\x79\x35\xbb\x59\xfd\xeb\x1f\xdf\xfe\x22\x46\xbf\x12\x95\x7c\xf7\xdd\x9f\xff\x07\xc1\xb8\xbb\xc1\x72\xa7\xa5\x73\x61\x44\x39\x90\xb9\x19\x28\x3d\x58\x7d\xd9\x3b\x66\x74\x25\xbc\x2a\x36\xdd\xe9\xc9\x06\xc8\xa3\x4d\x80\xbb\x6c\xc2\xf8\x58\xb9\x3a\x58\x6f\x5e\xc2\x7a\x43\x48\xe6\xb3\x6a\x50\x57\xb2\xd3\x3b\x74\xe8\xf7\x78\x87\x93\x1a\x1b\xb1\xf4\x0b\x7f\xe7\xca\x55\x2a\x86\x4e\x1d\x34\x3d\xab\x54\x62\x22\xb4\x16\xe9\x71\xb5\xec\x25\xcb\x5d\x68\x5a\x65\x32\x9f\x9e\x4c\x73\xb5\xfd\xf3\xe8\x4e\x24\x95\xf1\xae\xb4\x9e\x0d\x49\x88\x5d\x4d\xeb\x44\x4e\x9b\x67\x42\x34\x2f\x65\xc6\x4d\x72\x3d\xba\x2b\x96\xfb\xbd\x7b\x44\xca\x2f\xa4\xcf\x8c\x37\x6b\x25\xc4\x79\xe3\x5e\x02\x97\xa7\x8d\x2c\x6d\xe3\x86\xb6\xbc\x76\x2e\xac\xde\x24\x04\x55\x43\x70\x6d\x77\xb2\xcf\xbf\x23\x6e\x13\xea\x0c\x77\x2f\x94\xb9\xae\x99\x7a\xd3\x48\xe4\x2c\xe4\x65\xef\x71\x16\xfa\x97\xd7\xa3\xa7\xf6\x26\x31\x70\xf6\x5e\x18\x06\xce\x4a\x9e\xff\xc0\x09\x2a\xe0\x56\xc8\xe9\xb5\xa1\x54\xcf\x44\xe9\x19\x37\xf5\x86\xe6\x5f\xfe\x17\xd9\x0c\xda\xf6\x87\xee\xc1\xdd\xaf\xd7\xde\xa4\xab\x4f\xeb\xcb\x7b\xa7\xb5\xc1\xe6\x43\xfa\xf0\x75\xe8\x93\xd3\xd2\x5d\xbb\x10\x99\x48\x8c\xd2\x97\x42\x53\xc6\x24\x79\xe8\xc2\xe5\xc1\xcc\xdd\xcd\x3e\xcc\xdc\x70\x79\xa8\x82\x81\xd3\x92\x11\x03\xa7\xd7\x02\xa8\xaa\x69\x15\x39\xd8\x5d\x7d\x09\x7e\x84\xc7\x54\x42\xa2\x42\xa5\xaf\x04\xa1\xb9\xff\xd0\x65\xed\xee\xc3\x67\xc9\xf8\x95\xc8\x36\x4d\x48\x1d\x37\x31\x13\x69\xac\x73\xc4\xe2\x66\x9e\xb8\xb9\x9e\xc5\xcc\xf7\xac\xcb\x34\x17\x3b\xef\x77\x2c\x34\x66\xfe\x67\xb1\x6b\x00\xeb\x66\x6b\xdc\x5a\xc0\xa2\xd6\x03\x16\xbc\x26\xb0\xb8\x75\x81\xc5\xad\x0d\x2c\xb2\x36\xea\xd1\x77\xba\x1c\xeb\x41\xad\xd7\xbc\x34\x17\x37\x9e\x22\xdb\x3d\x7a\xd9\x0c\xc8\x92\x3b\x2e\x4c\xb5\x4b\x60\xef\x8f\xf8\xf6\xd0\xb6\x35\xaa\x50\x99\x9a\x2e\x7e\xa6\x4f\x5a\x81\x56\x85\x8c\xa1\x41\xd3\x9e\x57\x0f\xd7\x3c\x5c\xbc\x5f\x3c\x66\xd3\xbb\xf7\x13\xec\x9a\x00\xaf\xc1\xb6\xb3\x9b\x7d\xd8\x76\x06\xe2\x35\x61\x2e\x45\x37\x77\x22\x7a\x39\x25\x57\x43\x50\xf2\x30\xf7\x21\xa0\x17\x07\x7e\x67\x48\xbb\x05\xba\x0b\x7b\xb9\x5b\x44\x77\x11\x7a\x5d\xec\x88\xb8\x42\x6e\x24\xb0\x85\x1e\xd4\x33\x60\x0b\x2d\x02\x6c\xc1\x21\xc0\x16\xda\x73\x00\x5b\x70\x1a\x0b\x6c\x01\xd8\x82\xd5\x14\x60\x0b\xc0\x16\xda\x04\xd8\x02\xb0\x05\x60\x0b\xc0\x16\x1e\x1a\x08\x6c\xa1\x35\x39\xb0\x85\xae\xd8\x82\x27\x41\xc2\x2f\x3c\x6f\xc1\x3d\xb5\x25\x72\x7e\x95\x89\x7b\x06\x80\xf7\x8b\x63\x31\xe1\x55\x66\x71\x69\x7c\x2f\x8c\x56\xea\x2c\xf5\xed\xcb\x7c\x2d\x78\x66\xae\x8f\xae\x45\x72\x13\xa7\x40\xce\xf8\x34\xae\x1a\x32\x59\x1a\x91\x8b\xd4\x45\x85\x40\x50\x33\xe3\x77\x7f\x55\xfa\x26\x53\x3c\x3d\x12\xda\x5c\x5e\x9e\x46\xa9\x69\x5e\x8e\x69\x57\x10\x32\x67\x11\x1f\xcd\x5b\xfb\x58\x0d\x6e\x3d\xe2\x87\x79\x4a\x7b\x36\x4f\x0c\x2d\x05\xf8\x1d\x9b\x4c\xce\xa4\x71\x4c\x7b\xa1\x0b\x82\xf7\x79\x2b\xfd\x59\x2b\xf9\x39\xeb\x41\x3e\x63\x8d\x7e\xbe\x4a\x7c\x19\x28\x4a\x34\xdb\xb3\x6a\x36\x4f\x82\x32\x2d\x47\x5d\x16\x8c\x52\x24\x95\x96\x66\x71\xa4\x72\x23\xee\x2c\x4b\x96\x7f\x3e\xe0\x59\xa6\x6e\xc7\x5a\xce\x65\x26\xa6\x62\x54\x26\x3c\xe3\xee\x9d\x25\xe5\xa1\x6d\xc2\x0b\x7e\x25\x33\xe9\xee\x86\xb4\x6d\x18\x4f\x3d\x2e\x0c\xc9\x91\x23\x3b\x4e\x34\xe7\x2d\xd5\xaa\x38\x34\xab\x28\x67\x35\x9b\x86\x76\x54\x29\xa5\x7d\x0b\xad\x92\x33\x55\xe5\x0e\xf0\x87\xf0\x69\x5a\xf0\xf4\x53\x9e\x2d\xce\x95\x32\x1f\x64\x26\xca\x45\x69\x84\xe3\x4c\x85\x62\x99\xae\xf2\x61\xf9\x53\xcd\xa6\x66\xd5\xd3\x40\xa3\xfe\xed\x4f\x9e\xd2\xdc\xf3\x5f\x5d\xda\x47\x95\x2f\xbf\xa0\x07\xbb\x3f\x97\xc2\xb1\xeb\xef\xcf\xec\x52\x9c\xca\xbc\xba\xfb\x54\x38\xbc\x1a\x46\x1e\xa0\x99\x98\xb7\xf1\x22\xed\x1a\xe5\xed\xe7\x5a\x65\x9e\x57\xd5\x44\x45\x75\xb2\x3e\x14\x55\xce\x16\x21\x2b\x22\x0c\xcd\x5b\x99\xa7\xea\xb6\xec\xa9\x4d\xa6\xb3\x92\x1f\x69\x91\x8a\xdc\x48\x9e\x5d\xec\xb0\xa3\x45\x7d\x45\x9b\x5a\x3f\xbd\x0a\xb5\xed\x37\x03\xa0\x27\x8d\x5d\xd7\x67\xa3\x32\xa1\x5d\x6e\x7f\x67\xa6\x2c\x31\x99\x88\xc4\x09\x9f\x93\x3e\xd4\x03\x4b\x92\x74\x50\x20\x47\x5a\xad\x6f\x6b\xed\x42\x24\x2a\x77\x3f\x4a\xa2\x4d\x68\xd4\xd3\x80\x3e\x38\xc3\x88\x9d\xc6\xb6\x0e\xdf\x76\xde\xff\x3a\x0c\x48\xb2\xaa\x34\xb6\xe1\xe1\x50\xba\xa6\x33\x1d\x67\x3c\x17\xc3\xca\x5c\x8f\x55\x26\x93\x96\x2e\x23\xf2\xaa\x65\xed\x1d\xb0\xb3\xcf\x97\x9f\x87\xa7\xbf\x5d\x9e\x5e\xb4\xfc\xf8\xf1\xd3\xc7\x51\x88\x31\xe9\x0a\x60\x39\xaa\xc9\xd4\xbe\xc8\x52\xd6\x5e\x62\x8b\x35\x7e\x1d\x63\x95\x1e\xcb\x52\x57\xf5\x84\xf9\xbe\x4a\xa7\xa2\x65\x2c\xb9\xc7\x61\x07\xc4\xc6\xd1\x50\x6b\xfb\xce\xed\x5b\x75\xb7\x55\xae\x2d\x7a\xc8\x3e\xcf\xb9\xc7\xa3\xed\xef\x48\x7b\xbb\x83\xdb\xd7\x45\xed\xe9\xbc\xc0\x8b\x6b\x0b\x8e\x66\x79\x92\x66\x71\xfc\x28\xee\x92\xac\x4a\xc5\xc9\xf8\x9c\xe7\xd3\xb6\xc6\x70\xd4\xe0\x94\x67\x59\xdb\xa2\x0a\xa6\xcf\x07\x02\xa6\xcf\x20\xb5\x0c\xcc\x6b\x60\xfa\x04\xd3\x27\x98\x3e\xc1\xf4\x09\xa6\xcf\x47\x02\xa6\xcf\x97\xb3\xde\x10\xcf\xf3\xc0\xf4\x79\xf0\x6f\x3d\xc0\xf4\x49\x16\x5c\x75\xec\x6e\x1f\xae\x3a\x82\xf6\x8a\x2a\x18\x38\x2d\x19\x31\x70\x7a\x2d\xe0\xd9\x3d\xef\x00\xd3\xe7\xae\x80\xe9\x93\x28\x98\xb9\xd7\x82\x99\xfb\x10\x67\x6e\xb8\x3c\x18\x38\x2d\x19\x31\x70\x7a\x2d\x80\xaa\x1a\x4c\x9f\x87\x81\xd0\x80\x8d\xa3\x16\xb0\x71\xf4\x5d\x28\xd8\x38\xec\x02\x36\x8e\xad\x80\x8d\xe3\x81\x80\x8d\xc3\x2d\x60\xe3\xd8\x0a\xd8\x38\x5a\x05\x6c\x1c\x54\xc1\xb6\x73\x2d\xd8\x76\x1e\xe2\xb6\x13\x6c\x1c\x60\xe3\x68\xca\xf3\x67\xe3\x00\xd3\xa7\x37\x0b\xb0\x85\x68\x13\x57\x02\x6c\xc1\x21\xc0\x16\xda\x73\x00\x5b\x70\x1a\x0b\x6c\x01\xd8\x82\xd5\x14\x60\x0b\xc0\x16\xda\x04\xd8\x02\xb0\x05\x60\x0b\xc0\x16\x1e\x1a\x08\x6c\xa1\x35\x39\xb0\x85\x7d\x33\x7d\xae\xe8\x22\x78\x26\x53\x07\x39\x99\xef\x5d\xd0\x8a\xed\x61\x98\xf3\x6c\x51\x4a\x27\xc7\xa5\x4f\xc7\x85\xd0\x73\x99\x88\x63\x59\x26\x6a\x2e\xb4\xa5\x3d\x69\xba\x22\xe9\xdf\xe2\xe9\x3e\x41\xb0\xe9\xe6\x79\x28\x32\x99\xf0\x23\x3b\xb9\x99\xdf\xc3\x9d\xc9\x5c\xce\xaa\xd9\x3b\xf6\x83\xc3\x02\xbb\xcb\x0b\x8e\xcf\x43\x7d\xc0\x0a\x8e\x4f\x34\x5b\x48\x02\x70\x74\x6e\x04\x1c\x9d\xcd\x34\xe0\xe8\x04\x47\x27\x38\x3a\x17\xe0\xe8\x04\x47\x27\x38\x3a\xa9\x3a\xc0\xd1\xd9\x4c\x12\xc9\x7f\xe1\xc8\x3c\xe5\x46\xdc\xf2\x45\x30\x5d\xa3\x98\x6a\x51\x46\xef\xd5\x88\x64\x6d\x8c\xe2\xad\x50\xc1\x6e\x0a\x83\x0b\xd9\xeb\xf1\x36\x69\xb8\x36\x1f\x91\x1b\x0b\x67\x88\x0a\x21\x74\x0b\x55\xcf\xc2\x4e\x0c\x82\xa1\x54\x2a\xe1\x4e\x94\xf2\x10\xe2\x1d\x46\xf4\x93\x9a\x12\x76\x84\x49\x43\xe6\x83\xa0\x62\x2a\xf9\x1b\x8b\x68\xf5\x30\x12\x38\x16\xd3\x3e\x41\x64\x70\x11\x25\x84\xb5\x0f\x95\x18\x8e\x85\xb6\x52\x28\x41\x1c\x8b\x68\xad\x60\xa2\x38\x16\xd3\x60\x01\x84\x71\x2c\x84\x34\x8e\x45\x11\xc7\xb1\x18\xf2\x38\x76\xa8\x40\x4e\x53\x3a\x93\xc8\xb1\x40\x22\x39\xb6\xef\xc1\x45\x24\x95\x63\xa1\x63\x2b\x84\x5c\x8e\x61\xed\xf3\x15\xf0\x6c\xd6\x3e\x62\x52\x8a\x95\x4e\x42\x3a\x72\x59\x7e\x80\xcc\x4d\x4e\xc7\xc8\x9d\x93\x46\x52\x47\xd7\xc7\xfa\xbe\xae\xcc\xf6\xc9\xb3\x12\x46\x5c\x17\x53\x02\xc3\xa5\x62\xbb\xe0\x52\x31\x31\x33\x2e\x15\x37\xb3\x45\x5c\x2a\x0e\x63\x83\x61\x18\x78\x7b\x28\x14\x03\xcf\x2e\x2f\x6f\xe0\x05\x17\x44\xbf\x39\xcd\x22\x6e\x4f\xb3\xc0\x1b\xd4\x2c\xd8\x2b\x25\x93\xea\x31\xfa\x45\x6a\x16\x5a\x91\xf4\x76\xea\xf3\x52\x35\x0b\x9e\xfc\x22\xc8\xf6\x58\xe8\x54\x00\x57\xed\xb1\x60\xc5\xf0\x08\x56\x8c\x5d\x81\xab\xf6\x40\x30\xf0\x1c\x82\x81\xd7\x9e\xe3\xb0\x07\x5e\x70\x41\x21\x45\xd0\x2b\x39\x94\x04\x30\xc8\x74\x62\x42\x12\x21\x20\x7b\xa9\x68\x58\xf8\x43\xfe\x98\x62\x58\xec\x83\xfe\xd8\xc2\x58\x47\xc7\x8e\xc5\xcf\x6c\xf1\xeb\x0c\x8b\x5d\x6b\x58\xd7\xe9\xb4\xcb\x9a\xd3\x43\xe1\xb1\x6b\x0f\xeb\xb2\xfe\xb0\xee\x76\xc7\xaf\x43\x2c\x7a\x2d\x62\x51\xeb\x11\x8b\x5f\x93\x58\xfc\xba\xc4\x3a\xd4\x50\x24\x31\x00\xeb\x85\x1c\x80\x75\xeb\x1b\x9d\x96\xf1\xc0\x6c\xe1\x64\x01\x2c\x6e\xd4\x44\xd6\x47\x4c\xfb\x47\x90\x07\x44\x5a\x18\x3a\x06\x43\x89\x04\xd8\xab\x84\xc5\x82\x08\x06\xd8\x8b\xc4\xc6\xf6\xe6\xb1\x81\x17\xe9\xb1\x60\x7b\xee\x10\x6c\xcf\xdb\x73\x1c\xf6\xf6\x1c\xbc\x48\x6d\x02\x5e\xa4\x67\xc5\x8b\x44\xad\x9a\x00\x9c\x86\x44\xb0\xc8\x80\xd5\x74\x29\x86\x01\xab\x21\x0a\xb0\x9a\x40\x01\x56\x43\xcf\x05\xac\x26\x40\x80\xd5\xb4\x59\x07\xac\x06\x58\x8d\x5b\x80\xd5\x30\x60\x35\xc0\x6a\x7a\x2e\x14\x58\x8d\x5d\x80\xd5\x6c\x05\x58\xcd\x03\x01\x56\xe3\x96\xe7\x83\xd5\x10\x12\x25\x5a\x70\x23\x3e\xe5\x99\xa3\x66\x29\x2f\x0a\x9d\x34\x91\x54\x25\x99\x67\xe8\x86\x0e\x54\x1a\xd1\x88\xbf\x92\x32\xc5\xd3\xf7\x3c\xe3\x79\x22\xf4\xc9\xd8\xf7\x8d\xce\xf2\x66\xfc\xee\x7c\x45\xde\xe8\xb0\x9c\xe6\x9d\x7a\x08\x1c\x19\xd1\x65\x9d\xc9\xfc\xc0\x2c\xf2\x73\x7f\xb2\x27\xec\x0c\x14\x2e\xd0\xa7\xb5\x4f\xbb\xf8\x19\x7b\xe3\x67\xe1\x45\x31\xd6\xca\xa8\x44\x79\x9f\x26\x93\x27\xe3\x5e\x39\x5f\x96\xdd\x68\xac\xb4\x77\x4f\x18\xb2\x17\xa4\xef\x01\x8b\xa7\x2b\xb9\xef\x56\x31\x5c\x4f\x85\xa1\x54\x25\x89\x27\x22\x8c\x1f\x22\x88\x17\x62\x3f\x15\xda\x89\xc6\x81\xf6\x70\x7d\xd9\x5b\xbc\x73\x43\xe7\x87\xeb\x7e\xda\x60\xf6\xb5\xe7\xfa\x35\xa1\xac\x48\x3f\x0a\x73\xab\xf4\xcd\x17\x29\x6e\x3b\x2d\xb0\x1e\x5e\x62\x46\x27\x23\xf4\xf0\x13\xb3\xc8\x9d\xc3\x53\x8f\x91\x83\xe5\x4c\xe9\xc4\x95\x12\x40\x23\xe1\xe6\x2f\x66\x68\xd6\xe7\xd6\xac\x84\x44\x35\x27\x64\x77\x6e\xd5\xd2\xf5\x38\x8a\x36\xad\x78\x37\x4a\x54\x5b\x98\x9b\x5f\xff\xa1\x2a\x3f\x69\xa6\x7f\xda\x64\x41\x80\x23\x65\xfa\x64\x1d\xc0\x17\x32\x25\x55\x38\x1d\x55\x30\x15\xd5\xc1\x8e\x3d\xd6\x07\x05\x55\x00\x7e\x41\x9b\x5e\x19\x9a\xfd\x25\x35\x7b\x5f\x73\x34\x89\x87\x9e\xd1\xd9\xde\x83\xf9\xe8\x59\xc0\xcc\x4b\xe3\xa5\xa7\x5b\xcb\x28\xfc\xf4\x2c\x04\x9d\x0d\xea\xcc\x74\x44\xd6\xcf\x57\xff\xf4\x56\x52\x2f\xb2\x11\x38\xec\x59\x40\x9f\x20\x70\xd9\xb3\x90\x15\x39\x8c\xd3\x3e\xc4\x52\x0a\xb7\x3d\x0b\xe0\x55\xa6\xef\xa6\x69\x3c\xf7\xc1\xdf\xe2\xe6\xbb\xdf\xcf\xa7\x50\xb9\xef\x59\x98\xdf\xe4\xe7\xc0\x67\x61\xe3\xc6\xcf\x85\x1f\xa8\xb0\x4e\xda\xa7\x42\x3f\x37\x7e\x90\x42\xe2\xf0\xa7\xf2\xe4\xb3\xa0\xf6\x0b\xe5\xcb\x67\x61\x55\x15\xc3\x9b\x1f\x58\x44\x00\x7f\x7e\x90\xe6\xfe\xfc\x84\x3a\xae\xd9\x41\x83\xf0\x6b\x1b\x47\x77\x4b\x07\x91\x67\x97\x9a\x4f\x26\x32\x19\xab\x4c\x26\x8e\x83\x36\x91\x57\x8e\x09\x7e\xc0\x4e\x55\xc2\x33\xc7\xef\x47\x59\x55\x1a\xc7\x9c\x45\xf8\xba\xb5\xe1\xbe\x43\xf4\x27\xae\xd7\x4b\xe7\x0c\xe4\xab\xc6\x75\x35\x9d\x8c\x1d\x69\x3e\xae\x0f\x0f\x9c\xad\x71\x7f\x2a\xd8\xa5\xca\xbd\xf1\x21\x58\x9f\xc7\x36\xfe\x58\x11\x44\xb3\x57\x42\xb8\x47\x44\xd6\x45\xbd\x23\x44\x9f\x71\x42\x62\x48\xb0\x20\x27\x21\xe4\xfc\xa0\xcf\xe0\x03\xbd\x9c\x04\x78\x94\x74\x0b\xf9\x98\x23\xd2\x04\x22\x4d\x80\x6d\xdb\x22\x88\x34\xd1\x62\x3a\x22\x4d\xec\x9a\x81\x48\x13\x7e\x41\xa4\x89\x7b\x41\xa4\x09\x44\x9a\xe8\xa8\xfc\x85\xaf\x7d\x01\x57\x04\x10\x69\xe2\x45\xbd\xd7\x46\xa4\x89\xa6\xe0\xe9\x8f\x43\xf0\xf4\xa7\x3d\xc7\xb3\x78\xfa\x03\xfa\xe2\x07\x82\x81\x47\xcc\x8c\x81\xd7\xcc\x86\x48\x13\x56\x41\xa4\x09\x44\x9a\xc0\x8a\xd1\x73\xa1\x58\x31\xec\xf2\xf2\x56\x0c\xb8\x6a\x6d\x82\x81\x47\xcc\x8c\x81\xd7\xcc\x86\x48\x13\x51\x09\x11\x69\x02\xec\x85\xad\x02\xf6\xc2\xaf\x55\x38\xd8\x0b\xc3\x04\xec\x85\x4e\x01\x7b\xa1\x57\xc0\x5e\xb8\x12\xb0\x17\x82\xbd\xb0\x16\xb0\x17\x3e\x16\xe0\x62\x16\xc1\xf6\x9c\x98\x19\xdb\xf3\x66\x36\xb0\x17\x76\xcd\x02\xf6\xc2\xd7\xcb\x5e\x88\x48\x13\xc0\x6a\x1c\x02\xac\xe6\x6b\x15\x0e\xac\x26\x4c\x80\xd5\x38\x05\x58\x8d\x57\x80\xd5\xac\x04\x58\x0d\xb0\x9a\x5a\x80\xd5\x3c\x16\x60\x35\x16\x01\x56\x43\xcc\x0c\xac\xa6\x99\x0d\x58\x4d\xd7\x2c\xc0\x6a\x5e\x2f\x56\x43\x48\x84\x48\x13\x84\x4a\x42\xa4\x09\x44\x9a\xd8\x0a\x22\x4d\xac\x04\x91\x26\xdc\xc0\x37\x22\x4d\x58\x04\x91\x26\x76\xbf\x11\x91\x26\x10\x69\xa2\x29\x08\x49\x80\x48\x13\x68\xd6\xfe\xb6\x39\x88\x34\x81\x48\x13\x08\x39\x80\x48\x13\x94\x1c\x68\xf6\x5a\xfa\x7d\xde\x45\x48\x84\x48\x13\x88\x34\xd1\x8f\x95\xd4\x8b\x6c\x88\x34\x81\x48\x13\xf1\x9f\x82\x48\x13\x7d\x29\x44\xa4\x09\x72\x55\x21\xd2\x04\x22\x4d\x58\x7f\x47\xa4\x89\x5a\x10\x69\xc2\x21\x88\x34\xe1\x10\x44\x9a\x58\xca\xcd\xbf\x97\x1d\xe3\x45\xac\x40\xae\xbf\x18\x53\x38\xaa\xfc\x2b\x5d\x2b\xf0\x7c\xec\x4c\x94\xd7\xa3\xbb\x82\xe7\x76\x82\x7c\xc4\xc7\x88\xd1\x86\xf8\x18\x0f\x04\x1c\xe1\xad\x36\x20\x3e\x46\x1f\x25\x20\x3e\x06\xe5\x2b\x10\x1f\xe3\xa0\x10\x6a\x86\xf8\x18\x01\x63\x0b\xf1\x31\x2c\xf2\xc2\xd7\xbe\x80\x8b\x0d\x88\x8f\xf1\xa2\x5e\x99\x23\x3e\x46\x53\xf0\x60\xc9\x21\x78\xb0\xd4\x9e\xe3\x59\x3c\x58\x02\xe9\xf2\x03\xc1\xc0\x23\x66\xc6\xc0\x6b\x66\x43\x7c\x0c\xab\x20\x3e\x06\xe2\x63\x60\xc5\xe8\xb9\x50\xac\x18\x76\x79\x79\x2b\x06\x5c\xb5\x36\xc1\xc0\x23\x66\xc6\xc0\x6b\x66\x43\x7c\x8c\xa8\x84\x88\x8f\x01\xce\xc5\x56\x01\xe7\xe2\xd7\x2a\x1c\x9c\x8b\x61\x02\xce\x45\xa7\x80\x73\xd1\x2b\xe0\x5c\x5c\x09\x38\x17\xc1\xb9\x58\x0b\x38\x17\x1f\x0b\x70\x31\x8b\x60\x7b\x4e\xcc\x8c\xed\x79\x33\x1b\x38\x17\xbb\x66\x01\xe7\xe2\xeb\xe5\x5c\x44\x7c\x0c\x60\x35\x0e\x01\x56\xf3\xb5\x0a\x07\x56\x13\x26\xc0\x6a\x9c\x02\xac\xc6\x2b\xc0\x6a\x56\x02\xac\x06\x58\x4d\x2d\xc0\x6a\x1e\x0b\xb0\x1a\x8b\x00\xab\x21\x66\x06\x56\xd3\xcc\x06\xac\xa6\x6b\x16\x60\x35\xaf\x17\xab\x21\x24\x42\x7c\x0c\x42\x25\x21\x3e\x06\xe2\x63\x6c\x05\xf1\x31\x56\x82\xf8\x18\x6e\xe0\x1b\xf1\x31\x2c\x82\xf8\x18\xbb\xdf\x88\xf8\x18\x88\x8f\xd1\x14\x04\x52\x40\x7c\x0c\x34\x6b\x7f\xdb\x1c\xc4\xc7\x40\x7c\x0c\x04\x4a\x40\x7c\x0c\x4a\x0e\x34\x7b\x2d\xfd\x3e\xef\x22\x24\x42\x7c\x0c\xc4\xc7\xe8\xc7\x4a\xea\x45\x36\xc4\xc7\x40\x7c\x8c\xf8\x4f\x41\x7c\x8c\xbe\x14\x22\x3e\x06\xb9\xaa\x10\x1f\x03\xf1\x31\xac\xbf\x23\x3e\x46\x2d\x88\x8f\xe1\x10\xc4\xc7\x70\x08\xe2\x63\x38\x7f\x9c\x66\xea\xaa\x8d\x88\xd8\xe5\xaa\xad\xf2\x1c\xab\x19\x97\x2d\x5b\x2f\xc7\x57\x5f\x1b\x53\x8c\xb5\xba\x5b\x8c\xf2\x79\x4b\xc3\xb9\xfb\xfb\x36\x73\x7b\xb5\x7b\x2a\x7b\x99\xbb\x8c\xcf\x9e\xab\xd8\xbc\x8e\xba\xaf\xa1\xbe\x71\x95\x65\xb6\x45\xa4\x7d\xd6\x1b\xb0\x61\x76\xcb\x17\xbb\x6c\x2e\x03\xf6\x51\xcc\x5b\x3a\xee\x80\x9d\x4c\x3e\x2a\x33\xd6\xa2\x14\xb9\xad\x77\xb4\x9a\xbf\xb5\xf0\xa2\xa6\xf2\x6e\x69\x17\xeb\x24\xe6\x9b\xbc\x5c\xe7\xc2\x9e\xc6\x20\xf4\xf5\xb6\x81\x22\xf3\x24\xab\x52\x71\x32\x3e\xe7\xf9\xb4\xcd\x2c\x57\x45\x94\x46\xaa\x23\xa5\xc5\xf1\xc7\x8b\xd0\x8e\xeb\xe6\x96\xf6\x4f\xf2\x34\x4e\x69\xda\x62\xd1\xeb\x8b\x2c\x12\x22\x10\x72\x9f\x35\x8c\x3f\x3a\xf4\xa6\x6c\xec\x45\xde\xc0\xcb\x73\x71\x17\x78\x83\x2f\xef\x46\xde\x4f\x8c\xbb\xb4\x1b\x59\x58\xcc\x65\xdd\xa8\x8b\xba\xd1\x97\x74\x63\xae\xa4\x86\x5f\xce\x0d\xbb\x98\x1b\x71\x29\x37\xfa\xd6\x29\xfd\xcb\x23\xc8\x04\x31\x70\x30\x70\x9a\xf2\x1a\x07\x4e\x50\x01\xf4\x07\x4f\xa1\x8f\x9d\x42\x0e\xce\xa8\xcd\x14\xc0\xd1\x4c\x7c\xd7\x14\x78\x3e\xe5\x6b\x83\x3e\xdf\x32\xd1\x27\xa7\x08\x2e\xe6\xbd\x3d\x92\x82\xcb\x83\x99\xbb\x3d\x23\x66\x6e\xbf\xc0\xe5\xc1\xc0\xd9\xc9\x88\x81\xd3\x6b\x01\x54\xd5\xb4\x8a\x0c\xe5\x3c\xee\xeb\xfc\x8a\xc4\x73\xfc\x22\x10\x9a\x70\x9e\x1c\x3c\xec\x8e\x37\x71\x25\x78\xd8\xed\x10\x3c\xec\x6e\xcf\x81\x87\xdd\x4e\x63\xf1\xb0\x7b\x4f\x4e\xf3\x2b\x7a\xd8\xfd\xec\xe0\x9a\x20\x3e\x9a\xe7\x8f\xd9\xf4\xee\xfd\x04\xbb\x26\xc0\x6b\xb0\xed\xec\x66\x1f\xb6\x9d\x81\x78\x4d\x98\x4b\xd1\xcd\x9d\x88\x5e\x4e\xc9\xd5\x10\x94\x3c\xcc\x7d\x08\xe8\xc5\x81\xdf\x19\xd2\x6e\x81\xee\x42\xc8\x9d\x57\xf2\xba\x48\x77\x11\x7a\x5d\xec\x88\xb8\x02\x89\x97\x17\xd8\x02\xb0\x05\x60\x0b\x36\x01\xb6\x60\x17\x60\x0b\x5b\x01\xb6\xf0\x40\x80\x2d\xb8\x05\xd8\xc2\x56\x80\x2d\xb4\x0a\xb0\x05\xaa\x00\x5b\x58\x0b\xb0\x05\x60\x0b\x0d\x03\x81\x2d\xb4\x26\x07\xb6\xd0\x15\x5b\xf0\x24\x70\x52\x1a\xb9\xde\x86\x31\x37\x85\x91\xa7\x8e\xbd\x54\xaa\x7e\x67\xc7\x43\x62\xe7\xf3\x7e\xbc\xd4\xa9\x7b\xb7\xc0\x4f\x95\x1a\x32\xb1\x78\x3b\xb5\xa7\x23\x14\x59\x35\x95\xf9\x49\x74\x8b\x52\xa8\x55\xbf\xe6\xf7\xf8\xf9\x12\xf7\xde\xc0\x1e\x5e\x2e\xbf\x03\xe5\xe3\xe1\x0a\x5d\x78\xbc\x04\x4c\x74\xe2\x25\x32\xe1\xd2\x41\x12\x2d\x45\x13\x2c\x11\xe6\x6e\x3f\x8f\x16\x9a\xed\xe0\x9a\xcd\x93\x80\x44\x6f\xe5\x1f\xcf\xe1\xb4\x56\xbe\x15\x98\x91\xe9\xac\x88\xc4\x5b\x3e\x1a\x2b\x92\xc3\x47\x76\xb0\x68\x4e\x9e\x9f\xb6\xea\xeb\x5b\x45\x39\xd3\x21\x50\x54\x51\xda\x97\x40\x4d\x45\xf8\xb4\x50\x4a\x2a\x8a\x65\x14\x2a\x2a\x1a\x2d\x03\x65\xfe\xa2\xd1\x4f\x91\xed\x76\xd3\x4e\xf5\x67\x36\x95\x6a\x8a\xc8\x6c\xec\xa7\x98\x22\xf6\x73\x3f\xb5\x14\x51\x51\x9d\xac\x0f\x45\x7e\x2a\x29\x92\x22\xc2\xd0\xa4\xd2\x47\xd1\xda\x24\x94\x36\x8a\x58\x1d\x31\x74\x51\xd4\xb6\xa7\xd3\x44\xf5\x53\xe5\x9e\x04\x5e\x1a\x1d\xe7\x04\x4f\x69\x25\x3f\x75\x0e\xe9\x43\x3d\xf0\x25\x49\x07\x05\x9a\xa4\xd5\x7a\x08\x45\x0e\x95\x1e\x87\xe6\x49\x7a\x69\x71\x08\x1f\x40\xec\x34\xed\xeb\xb0\x23\x73\x4d\xe1\xd1\xb2\xe6\xba\xbb\x49\xc2\x63\xbd\xba\x39\xaf\xb2\xee\x8c\xa7\x69\xaa\x45\xe9\xf1\x61\x88\xa3\x3b\x11\xda\x1c\x5d\x73\x99\x8f\xb9\xb9\xee\x4d\x63\x6f\xca\x7a\x65\xd1\xbe\x11\x8b\xde\x0c\xeb\x6d\x45\xac\x7b\xc4\x28\x9f\x3b\xd0\x94\x20\x8d\xfd\x80\x7c\xc3\x9c\x67\x8b\x52\x5a\xfa\x98\xaf\xc2\x57\x3a\x2e\x0c\x37\x55\x27\x0d\x91\x50\xa3\xb8\x2b\x54\x29\xfe\x2a\xae\xae\x95\xba\xb1\x87\x33\xf1\xab\x59\x91\xfa\x9d\x58\xe6\x08\x46\x1a\xb0\x3d\x04\xcc\xf2\xb4\xd8\xac\xca\x8c\x5c\x73\xdd\x5d\x54\x85\x3d\x20\x8d\xaf\xa4\x95\x22\x95\x1b\xad\xb2\x71\xc6\x73\xd1\x41\x9b\xc3\xe6\xdf\x6f\x4d\x28\xb7\x95\xb9\x96\x3a\x1d\x14\x5c\x9b\xc5\xe0\xf7\xdb\xdd\x4a\x18\xb0\x89\xd4\xa5\x71\xa4\x70\x8c\x9d\x4c\x25\x3c\x93\x66\x71\xfa\x3e\x74\x1d\x48\xe5\x52\xe1\x55\x65\x2c\x03\xb7\xb3\x27\x32\xd1\xca\x79\xe5\x8d\xb8\xf4\x7b\x16\x93\xc0\x03\x29\xfa\xdd\x02\x2a\xd2\x44\xf0\xc2\x3b\x39\x00\x1d\xe7\x93\x09\x97\x99\x9a\xdb\xf6\x1b\xcf\xa1\x91\x9f\xd0\xc3\xca\xd4\x74\x2a\xf3\x69\xe8\xd0\x72\xec\x5d\x1b\x70\xe3\x2f\x7c\xf0\xb7\xe1\xe0\xff\xfe\xfa\xfd\xbb\xed\xff\xfd\xe1\xcf\xdf\x7d\xdf\x8e\x0b\x3a\x2b\xc1\xf1\x05\x33\x51\x5e\x8f\xee\x0a\x9e\x97\xad\xf0\x9b\xab\xf7\x2c\xb3\x9e\x1c\xdb\xf2\xb4\x9a\xb2\xcc\x62\x9b\x1e\xdd\x55\x36\x33\x59\x79\xa6\x52\xcb\x5c\x64\x27\x4b\x1d\xb0\x8b\xcb\xf3\x93\xa3\x4b\xcb\x8f\xe3\xd1\xf9\xd9\xc9\xc5\xc5\xc9\x97\x91\x25\xc1\xf1\xc9\xc5\xf0\xfd\xe9\xe8\xb8\xdf\x4a\x97\x77\x6d\x03\xce\x43\xaa\xb7\x9d\xcb\x96\xab\x18\x97\xb9\xd0\x43\x3d\x8d\xd9\x26\x12\x4f\x94\x6c\xd3\xcd\xbd\x21\xa3\x7c\xfe\x85\xeb\x7d\xed\x54\x7d\x71\xf4\x48\x53\x47\x1f\xfb\xb3\xb5\x96\x0f\x9e\xa9\x8c\x7a\x0f\x28\x51\xf9\x44\x4e\xcf\x78\xf1\xb3\x58\x9c\x0b\x6f\x1c\x90\x90\xeb\x45\xc4\x4b\x45\x41\x37\x10\x28\xe1\x0c\x83\x95\xaa\x62\xd5\x83\xe8\x8a\xfd\x3b\x20\x16\x74\x4d\xc1\x7f\x41\x87\x7c\x3d\x61\x22\x45\x96\xf6\xdc\x92\xbc\x90\x5f\x84\x6e\x9f\x94\x6d\xa6\x12\xeb\xbe\x36\xd7\xbf\x57\x0c\xd6\x4c\xaf\xfb\xad\x05\x7d\xb5\xc0\xe6\x80\xf9\xc3\x1e\x5a\x22\xd9\xcc\xb6\x34\x26\xf9\xc0\xc6\x48\xe5\x5c\x96\xb4\xdb\x79\x88\x1a\xf4\xb5\xa2\x06\x6d\xba\xd3\x93\x0d\x90\x8d\x01\x7d\x8d\x8f\xb2\x26\x33\xc6\x7a\xf3\x12\xd6\x1b\xe2\xcd\x0b\x97\x55\x83\xba\x92\xf7\xb3\x19\x05\xf7\x33\xb8\x9f\xbd\x82\xcb\xef\x6b\xc1\xe5\xf7\x03\xbe\xfc\x0e\x22\x44\x0c\x9c\x66\x46\x0c\x9c\x5e\x0b\x78\x76\x0f\xfe\xc0\xfd\xbc\x2b\xe0\x7e\x26\x0a\x66\xee\xb5\x60\xe6\x3e\xc4\x99\x1b\x2e\x0f\x06\x4e\x4b\x46\x0c\x9c\x5e\x0b\xa0\xaa\x06\xf7\xf3\x61\x20\x34\xe0\x67\xaa\x05\xfc\x4c\x7d\x17\x0a\x7e\x26\xbb\x80\x9f\x69\x2b\xe0\x67\x7a\x20\xe0\x67\x72\x0b\xf8\x99\xb6\x02\x7e\xa6\x56\x01\x3f\x13\x55\xb0\xed\x5c\x0b\xb6\x9d\x87\xb8\xed\x04\x3f\x13\xf8\x99\x9a\xf2\xfc\xf9\x99\xc0\xfd\xec\xcd\x02\x6c\x21\xda\xc4\x95\x00\x5b\x70\x08\xb0\x85\xf6\x1c\xc0\x16\x9c\xc6\x02\x5b\x00\xb6\x60\x35\x05\xd8\x02\xb0\x85\x36\x01\xb6\x00\x6c\x01\xd8\x02\xb0\x85\x87\x06\x02\x5b\x68\x4d\x0e\x6c\x61\xcf\xdc\xcf\xc9\xb5\x48\x6e\xca\x51\x27\x5a\x16\xd0\x47\x3f\x99\x05\x7d\x51\xc4\x1c\x18\x0f\x35\x78\xa4\x5b\x4c\x50\xda\xbc\x5f\x2e\x4e\x67\xfc\x6e\x94\x1b\x6d\xfd\x5e\xbf\x2d\x61\x85\x5d\x4a\xdb\xab\x44\x4f\xbd\x82\xfb\xfa\x50\x9f\x0b\x83\xfb\x1a\xcd\x16\x92\x00\xdc\xd7\x1b\x01\xf7\x75\x33\x0d\xb8\xaf\xc1\x7d\x0d\xee\xeb\x05\xb8\xaf\xc1\x7d\xdd\x71\x7d\xad\xa1\xda\x0d\xb0\xde\x69\x3b\x5e\x9a\x54\xaa\x61\xca\x0b\x23\x74\x27\x45\x20\xe4\x8e\x51\x04\x42\x6e\x3b\xef\x5f\x26\xca\xf2\x52\x64\x62\x26\x8c\x0e\xa6\x41\xec\x00\x33\xb9\xec\x5a\x3a\x16\x67\x26\x2b\x8f\x84\x6e\xdb\xb3\xb8\x14\xcf\x4c\x1b\x46\xec\xcc\x51\x65\x46\x9e\x89\xb2\x85\x7f\x8c\x94\xcd\x41\x57\xe9\x61\xb4\x55\x33\x2e\xe3\xc6\xf1\x76\x23\xf4\xcb\x80\x0f\xfe\xf6\xc3\xe0\x3f\xde\xfe\x6a\x21\xe2\x24\x03\x2d\x7b\x61\x73\x15\xf9\x5c\x2d\x3e\xc8\xac\xdb\xb4\xe7\xe8\x2a\xb9\x30\xb7\x4a\xdf\xb4\x2f\x19\x8e\x2f\xaf\x69\x7d\xa6\xa2\xcd\x7f\xf5\xd0\x5e\x82\x4f\x08\x7c\x42\x3e\xc1\x81\xea\x5a\x70\xa0\x7a\xc0\x07\xaa\x78\x5c\x8f\x81\xd3\xcc\x88\x81\xd3\x6b\x01\xcf\xee\x12\x19\xf8\x84\x76\x05\x7c\x42\x44\xc1\xcc\xbd\x16\xcc\xdc\x87\x38\x73\xc3\xe5\xc1\xc0\x69\xc9\x88\x81\xd3\x6b\x01\x54\xd5\xe0\x13\x3a\x0c\x84\x06\x6f\xfe\x6a\xc1\x9b\xbf\xbe\x0b\xc5\x9b\x3f\xbb\xe0\xcd\xdf\x56\xf0\xe6\xef\x81\xe0\xcd\x9f\x5b\xf0\xe6\x6f\x2b\x78\xf3\xd7\x2a\x78\xf3\x47\x15\x6c\x3b\xd7\x82\x6d\xe7\x21\x6e\x3b\xf1\xe6\x0f\x6f\xfe\x9a\xf2\xfc\xdf\xfc\x81\x4f\xc8\x9b\x05\xd8\x42\xb4\x89\x2b\x01\xb6\xe0\x10\x60\x0b\xed\x39\x80\x2d\x38\x8d\x05\xb6\x00\x6c\xc1\x6a\x0a\xb0\x05\x60\x0b\x6d\x02\x6c\x01\xd8\x02\xb0\x05\x60\x0b\x0f\x0d\x04\xb6\xd0\x9a\x1c\xd8\xc2\x9e\xf9\x84\x9e\x88\x0c\x08\xfc\x35\x6e\xfe\x1a\x10\xb1\xbc\x36\x46\x0f\x10\xb1\x3c\xcb\x66\xf3\x24\x00\x11\xcb\x46\x40\xc4\xd2\x4c\x03\x22\x16\x10\xb1\x80\x88\x65\x01\x22\x16\x10\xb1\x74\x5a\x5f\xc1\x79\x12\xa3\x08\x9c\x27\xad\x99\x55\x65\xae\x54\x95\xa7\x97\x9a\x4f\x26\x32\x19\xab\x4c\x26\xc1\xb4\x27\x33\x95\x5a\xbe\x4f\xe4\x95\x65\xd9\x1c\xb0\xe1\xe9\xe9\xa7\xbf\xfe\x36\xfc\xf8\x9f\x96\xdf\xcf\x47\x3f\x9d\x5c\x5c\x9e\xff\xe7\x6f\x9f\x3e\x9e\xb6\xa7\x71\xd6\x9b\xe3\xa3\x0b\x99\xb5\xad\x8a\x1e\xa6\x8b\xed\x46\x64\xe9\xd8\x72\x99\x0b\x3d\xd4\xd3\x98\x21\x48\xdc\x2a\xdb\x7c\xaa\x7b\x43\x46\xf9\xfc\x0b\xd7\xfb\x9a\x05\x72\xcf\x74\x47\x1a\x76\x7d\xf4\xfd\xb5\x96\x0f\x5a\x39\xef\x4d\x50\xc1\xf9\x44\xe5\x13\x39\x3d\xe3\xc5\xcf\x62\x71\x2e\x9c\x7b\xc5\x10\xb5\x8c\x8e\xf4\x07\xc1\x82\xbe\x66\x88\x52\xaa\x8a\x55\x0f\xa2\x2b\x76\x3b\x89\x1b\xa1\x63\x87\x7e\xd4\x9c\x8c\x19\x4e\xa4\xc8\xd2\x9e\x5b\x92\x17\xf2\x8b\xd0\xed\x34\x46\x36\x53\x89\x75\x5f\x9b\x3b\xe6\xa6\x85\x60\xa9\x93\x66\x7a\xdd\x6f\x2d\xe8\xab\x05\x36\xe0\xdd\x87\x3d\xb4\x44\xb2\x99\x6d\xfd\xee\x57\xd3\x6a\x62\x63\xa4\x72\x2e\x4b\xda\x91\x99\x17\x59\xda\x08\x1d\x61\x7a\x9c\x83\x7c\x52\x70\x90\x88\xd3\x46\xa2\x91\xa7\x8d\x6c\xba\xd3\x93\x0d\x90\x8d\x01\x7d\x8d\x8f\x52\x24\x5a\x18\xac\x37\x2f\x61\xbd\x21\xa2\xda\x2e\xab\x06\x75\x25\xef\xc3\xd3\x07\x21\x1b\x08\xd9\x08\x82\x1b\x29\x6b\xc1\x8d\x94\x03\xbe\x91\x02\x76\x12\x0c\x9c\x66\x46\x0c\x9c\x5e\x0b\x78\x76\xb7\x70\x41\xc8\xb6\x2b\x20\x64\x23\x0a\x66\xee\xb5\x60\xe6\x3e\xc4\x99\x1b\x2e\x0f\x06\x4e\x4b\x46\x0c\x9c\x5e\x0b\xa0\xaa\x06\x21\xdb\x61\x20\x34\x78\x34\x5d\x0b\x1e\x4d\xf7\x5d\x28\x1e\x4d\xdb\x05\x8f\xa6\xb7\x82\x47\xd3\x0f\x04\x8f\xa6\xdd\x82\x47\xd3\x5b\xc1\xa3\xe9\x56\xc1\xa3\x69\xaa\x60\xdb\xb9\x16\x6c\x3b\x0f\x71\xdb\x89\x47\xd3\x78\x34\xdd\x94\xe7\xff\x68\x1a\x84\x6c\xde\x2c\xc0\x16\xa2\x4d\x5c\x09\xb0\x05\x87\x00\x5b\x68\xcf\x01\x6c\xc1\x69\x2c\xb0\x05\x60\x0b\x56\x53\x80\x2d\x00\x5b\x68\x13\x60\x0b\xc0\x16\x80\x2d\x00\x5b\x78\x68\x20\xb0\x85\xd6\xe4\xc0\x16\xf6\x4c\xc8\x96\x08\x6d\xc6\x5a\xcd\x65\x6a\xe3\xb4\x70\xbd\x23\xbf\x7f\x6c\x66\x49\x20\x4b\x23\x55\xea\x30\xcc\xda\x0a\x2b\xa6\xb8\xb1\x56\x46\x25\x2a\xbb\xc8\xe5\xd2\xe9\x98\x9e\xe4\xf5\x93\xf9\x76\x7b\x7c\xaf\x97\xda\x55\x7e\x5a\x3f\xc3\xef\xa2\xf3\xab\x13\xda\xcd\xf8\xdd\xb9\x28\x32\x99\x70\xcb\xe8\xf3\x3b\x8b\x33\x99\xcb\x59\x35\x7b\xc7\x7e\x70\x18\x60\xf7\x1e\x67\x32\x7f\x62\x0b\x40\xea\xe7\x26\xf5\xab\x1b\xe7\xc8\x4e\xc8\xb4\xf7\x06\x02\xaf\xe0\xa1\x3e\x17\x06\xaf\x20\x9a\x2d\x24\x01\x78\x05\x37\x02\x5e\xc1\x66\x1a\xf0\x0a\x82\x57\x10\xbc\x82\x0b\xf0\x0a\x82\x57\xb0\xdb\xfa\x2a\x53\x91\x70\x4b\xe3\xfb\x46\x74\x59\xc8\xc9\xc4\xf2\x15\xfe\x06\xdc\x60\x70\xa3\x3c\x2d\x94\xcc\x5d\x7e\x1b\xad\x37\x38\x77\xc4\xd4\x6f\x6a\xa6\x02\x5d\x23\x49\x07\xe8\x1a\x9b\x49\xa2\x49\x5c\x8c\xe6\x89\xb8\xe0\xb3\x22\x5b\xba\xd5\x0e\x05\x79\x35\xbb\x6a\xf9\x14\x47\xf1\x45\x14\xc3\x23\x38\x07\xdb\x05\x9c\x83\xaf\x92\x03\x0a\x9c\x83\x6b\x01\xe7\x60\xd3\x6a\x70\x0e\x82\x73\x70\x47\x2d\x38\x07\xb1\xde\x78\xca\x05\xe7\x20\x38\x07\xbb\x6a\x66\xb8\x74\xb5\x12\x5c\xba\x6a\xc9\x88\x4b\x57\x7e\x01\x01\x0f\x06\xce\x4e\x46\x0c\x9c\x5e\x0b\x78\x76\x17\xcd\xc1\x39\xb8\x2b\xe0\x1c\x24\x0a\x66\xee\xb5\x60\xe6\x3e\xc4\x99\x1b\x2e\x0f\x06\x4e\x4b\x46\x0c\x9c\x5e\x0b\xa0\xaa\x06\xe7\xe0\x61\x20\x34\xe0\x05\xa8\x05\xbc\x00\x7d\x17\x0a\x5e\x00\xbb\x80\x17\x60\x2b\xe0\x05\x78\x20\xe0\x05\x70\x0b\x78\x01\xb6\x02\x5e\x80\x56\x01\x2f\x00\x55\xb0\xed\x5c\x0b\xb6\x9d\x87\xb8\xed\x04\x2f\x00\x78\x01\x9a\xf2\xfc\x79\x01\xc0\x39\xe8\xcd\x02\x6c\x21\xda\xc4\x95\x00\x5b\x70\x08\xb0\x85\xf6\x1c\xc0\x16\x9c\xc6\x02\x5b\x00\xb6\x60\x35\x05\xd8\x02\xb0\x85\x36\x01\xb6\x00\x6c\x01\xd8\x02\xb0\x85\x87\x06\x02\x5b\x68\x4d\x0e\x6c\x61\xdf\x9c\x83\xd7\x22\xb9\x29\x47\x5d\x98\xf3\x40\xbb\x07\xda\xbd\x5a\x40\xbb\xd7\x62\x02\x68\xf7\x0e\xf3\xc5\x2c\x68\xf7\xd0\x6c\x21\x09\x40\xbb\xb7\x11\xd0\xee\x35\xd3\x80\x76\x0f\xb4\x7b\xa0\xdd\x5b\x80\x76\x0f\xb4\x7b\xe0\x87\xa3\xea\x00\x3f\x5c\x33\x49\x24\xe1\x86\x23\x73\xa1\xa5\xaa\x9d\xb5\x8c\x97\x65\x7b\x07\x77\x58\x57\x68\x75\x17\x4e\x0d\x97\x24\xa2\x2c\x4f\xd5\x74\x94\x27\x2a\xb5\xf2\xd5\xb9\x22\x38\xfc\xef\x8b\x4f\x1f\x2d\x3f\x5d\x8e\xfe\xcf\x65\x0c\x48\xb2\xb5\x6a\xb9\xde\x87\x5b\xf4\xcd\x37\x96\x1f\xfe\x98\x8a\xf9\x1f\x4b\x93\xaa\xca\xd5\x6e\x04\xb3\x56\x5d\x32\x46\x47\x92\x55\xa5\x11\xfa\x58\xcd\xb8\xb4\xb8\xcf\x3e\x0d\x6a\x56\xa8\x5c\xe4\xe6\x54\x4d\x4f\xed\x8b\xaa\x57\x8b\x16\xc7\xd5\xac\x38\x96\xba\xc6\x61\x2c\xb3\x03\x51\xcb\x49\x34\x1e\x96\xe6\xe5\xb9\x98\x68\x51\x5e\x9f\x73\x63\xa3\x20\xdd\x6e\xe9\xea\xed\xd6\xdf\x7f\xfc\xc3\xbf\xfe\xb3\x6c\xdf\x6e\x79\x4a\x5b\x81\x7e\x47\x6b\xab\x63\x81\xc3\xb9\x5a\x0c\x37\x5d\xe1\x42\xe8\xb9\xb4\x11\xc2\xf8\xe7\x77\x2f\xd5\x29\xc5\x2b\xbc\x56\x65\x37\x17\xbb\x50\xda\xa1\x80\x76\x82\x4b\x99\x7e\x4d\x52\xfc\x2c\x44\xc1\x33\x39\x77\xcc\xc1\x34\xdf\x65\x59\x92\x9e\xfb\x08\xa2\xa8\xa0\x81\x56\x57\xbe\xa3\x03\xfa\x41\x36\x15\xd3\x30\xf2\xeb\xf8\x30\x8c\x99\xac\xbc\x10\xc6\xc8\x7c\xda\xd9\x67\x4c\xf8\xd1\x32\xd1\x44\x26\xdc\xf8\xaa\x8c\x58\xfb\x49\x26\x45\x6e\x1a\x6a\x7b\xd1\x3a\x53\xa9\x47\x91\x7d\x0d\xd9\xc8\x80\x1d\x9f\x5c\x0c\xdf\x9f\x8e\x3c\xa9\x2e\x4e\xce\xc6\xde\x44\x67\x9f\x2f\x3f\x0f\x4f\x3d\x89\x4e\x2e\x2e\x4f\x3e\xfd\x46\x48\x4a\xee\xd9\x72\xce\x8d\xf0\x9e\x31\x11\xd5\x95\xb9\xec\x47\x4f\x55\x77\xd7\x61\x66\x96\x7e\x8e\xa7\x1b\x1d\x20\x48\xe2\x49\x50\xaf\x11\x67\xc2\x68\x99\x94\x58\x21\x1e\x14\x83\x15\x02\x2b\x44\xa0\xf9\x58\x21\x9a\x89\xb0\x42\xec\xca\x33\x5d\x21\x2e\x0c\x37\xe5\x31\x56\x06\xff\x74\xe8\xa9\xcd\x6b\x95\xa5\xc3\xa2\x3e\x37\x37\x52\xe5\x9f\x73\x23\xb3\xb1\x56\x77\xcb\x1a\xd6\xb6\x13\xcd\xfd\x5d\xf2\xc8\xe4\x44\x24\x8b\xc4\x86\x5d\xf8\x9b\xb6\x50\xa5\xa9\x4d\xef\x3a\x17\x8b\x3b\x1f\xa6\x4b\xbf\x10\x99\xa8\xd9\x8c\xdb\xa2\x5c\x36\x85\x7c\xbd\x2a\xe8\x72\x15\xf5\x6a\x15\xf1\xa2\xd2\xb5\x31\xc5\x4f\xc2\x73\x85\x99\x5e\x39\xee\x71\xf4\xd0\x36\xd2\x07\x2f\xed\xfb\x8b\xe0\xa9\xb0\x85\x6b\x68\xca\xde\x18\xda\xa8\xdc\xce\x2c\xe6\x4a\xa0\x17\x8b\xed\xa0\x3d\xec\xa6\xbc\x83\x5d\xf9\x61\xc2\xda\x64\x72\xcf\xee\x99\x64\xa8\x46\xc2\x08\x41\x00\x02\xaa\xca\x3d\x7b\x6f\x84\x48\x64\x1f\x4a\x63\x1f\x48\x62\xdf\x91\x25\xbe\x4c\xae\x05\xa5\x33\x93\x6d\xa2\x72\x3e\x2d\xeb\xb8\x8f\x19\xcb\x24\xc5\x85\x4a\x6e\x0e\x78\xce\x7a\x35\xbd\xe9\xeb\x36\x3d\xe9\xca\x86\xb8\x30\xae\xcb\x26\x70\x17\x9c\xe9\xe0\x2e\xb4\x0a\xdc\x85\x16\x81\xbb\xe0\x91\x17\x30\xc1\xc3\x5d\xd8\x15\xb8\x0b\x2f\xc4\x5d\xf0\x24\xc8\x9c\xf7\x0a\x5c\x17\x2f\xea\xc8\x87\x96\xdf\x52\x71\x55\xb5\x57\xf3\x80\xc9\x7c\xa2\x2c\x3f\xdd\x72\x9d\xdb\xda\x67\xc0\x84\xd6\x96\x77\x78\x03\x96\x68\x69\x64\xc2\x33\xcb\xcf\xdf\xa8\xc9\xa4\xfd\x9e\x88\xa7\x5f\xf8\x6e\xc7\xfa\x60\xa5\x42\x2b\xa3\x12\x95\x1d\x0b\x23\x12\x23\x55\x7e\x29\x67\x42\x55\x71\xd7\x49\xf0\x52\xe3\xf5\x5d\xf9\xc7\x4b\x8d\x67\xd9\x6c\x78\xa9\xb1\xb6\x10\x2f\x35\xf0\x52\x83\x6c\x19\x5e\x6a\xe0\xa5\x06\x5e\x6a\xe0\xa5\x46\xe7\xf5\xb5\x2a\xc5\x99\x30\x3c\xe5\x86\x8f\xee\x92\x6b\x9e\x4f\xc5\x07\x99\x19\x5b\x77\x70\x8f\x71\xe7\x25\x7e\x75\xb7\x38\xc9\x65\xcb\xfc\xe1\x6e\xea\xd8\xe3\x66\x9f\x2d\x7f\xe5\x65\xcb\x1c\xec\xb6\xa5\x03\x39\x82\xc3\x9c\xb2\xed\xa1\x87\xdb\x90\xa4\x2a\x8d\x9a\x5d\xaa\x1b\x91\x77\xbb\xa9\xde\x89\xee\xc1\x2c\xcb\x1f\x56\xa9\xb4\xc7\xfe\xf4\x14\x5f\xa5\xa5\x3d\x80\x77\x6c\xf3\x96\x32\x15\x09\xd7\x27\xf9\xef\x16\x2a\x05\xcf\xdb\x8f\xed\x1e\xe1\x68\x13\x31\x7b\xa8\x6d\xd7\xbf\x9c\xee\x8f\x77\x00\xbb\xdd\x9d\x7b\x43\x46\xf9\xfc\x0b\xb7\x21\xd8\x9d\x9f\x52\xf9\xd0\x69\xd2\x3c\xd4\xc7\x03\xa2\xb5\x96\x0f\x5a\x39\x6f\x97\x51\xa1\xb9\x44\xe5\x13\x39\x3d\xe3\x05\xe2\x45\xbf\x84\x78\xd1\xeb\x80\xff\x3d\xb7\x24\x2f\xe4\x17\xa1\x4b\x2f\x73\x5c\xd3\x54\x62\xdd\xd7\xe6\xda\xa7\xb7\x68\xcd\xf4\xba\xdf\x5a\xd0\x57\x0b\x6c\x70\xb5\x0f\x7b\x68\x89\x64\x33\xdb\xfa\x3d\xa3\xa6\xd5\xc4\xc6\x48\xe5\x5c\x96\x34\x06\x39\x22\xb2\x1e\x8e\xad\x07\xa3\xeb\x07\x0a\x06\x6d\xa4\xe3\x51\xd2\x7d\x77\x7a\xb2\x01\xb2\x31\xa0\xaf\xf1\x51\x8a\x44\x0b\x83\xf5\xe6\x25\xac\x37\x44\xc0\xd9\x65\x95\xf3\x48\x9c\xb8\x73\xb3\x7a\x87\x4e\x76\x79\x7f\xe7\xca\x55\x2a\x5e\x09\x43\xfd\x36\xde\xf1\x3e\xee\x76\x80\xa0\x15\x04\xad\xed\x19\x41\xd0\xea\x17\x04\xeb\xc5\xc0\xd9\xc9\x88\x81\xd3\x6b\x01\xcf\x8e\x94\x7e\xbb\x5e\x7b\x93\x3e\x77\x3e\x7a\xfa\xe4\xb4\x13\x21\xd9\xdf\x9e\x7b\xbb\xce\x0a\x97\x07\x33\x77\x7b\x46\xcc\xdc\x7e\x81\xcb\x83\x81\xb3\x93\x11\x03\xa7\xd7\x02\xa8\xaa\xa9\x37\x90\x77\x56\x5f\x82\x1f\xd1\xc3\xeb\xa5\xfb\xe8\x3c\x2f\x1c\xa1\x41\x0c\xc1\x5a\x10\x43\xb0\xef\x42\x11\x43\xd0\x2e\x88\x21\xb8\x15\xc4\x10\x7c\x20\x88\x21\xe8\x16\xc4\x10\xdc\x0a\x62\x08\xb6\x0a\x62\x08\x52\x05\xdb\xce\xb5\x60\xdb\x79\x88\xdb\x4e\xc4\x10\x44\x0c\xc1\xa6\x3c\xff\x18\x82\xeb\xd0\x6e\x46\x02\x5b\xe8\x41\x3d\x03\xb6\xd0\x22\xc0\x16\x1c\x02\x6c\xa1\x3d\x07\xb0\x05\xa7\xb1\xc0\x16\x80\x2d\x58\x4d\x01\xb6\x00\x6c\xa1\x4d\x80\x2d\x00\x5b\x00\xb6\x00\x6c\xe1\xa1\x81\xc0\x16\x5a\x93\x03\x5b\xd8\x33\xbb\x3f\xcf\x6e\xf9\xa2\x5c\x3d\xcc\x76\x2f\x4a\x9d\x1f\x35\x87\xac\x4b\x84\x7e\x45\x5f\x7f\x48\x6b\x4e\x40\xa7\xa0\xaf\x2d\x01\x4a\xa9\x6b\xc8\xd3\x72\xd0\x52\x6f\xe7\xf8\xd6\x01\xe2\xdc\x1f\xf4\x2e\xcc\x6d\x3d\x71\x5e\x0f\x9f\xcb\x89\xf5\x4c\xf8\x94\xae\xcf\xcf\x2a\xa3\x56\x03\x59\xaa\x7c\xac\x32\x99\x2c\x46\x5d\xb8\x24\x56\x44\x14\x1f\xb7\xeb\xc1\xfb\xc5\xb1\x98\xf0\x2a\x73\xf2\xff\xf9\xd4\x45\xda\x12\x1f\xe1\x42\xb6\x12\x9c\x30\xd2\x04\xe2\xe1\x2c\xa4\x29\x61\x04\xee\x42\x16\xe9\x45\x90\xde\x45\x87\xbd\x89\x0e\x7a\x0f\x7d\xb0\x6f\xa1\x3b\xbd\x83\x26\xce\x3a\x7e\x6e\x43\x86\x66\x7d\x6e\xcd\xda\xd5\x9f\x5a\x4e\x37\x47\x1f\x4f\x8e\x6a\xa2\x93\x4a\x3b\x18\x0d\x09\x0c\x89\x3d\x9d\x06\xd1\xde\x15\xd3\xf5\xb1\xbe\x4f\x98\xd8\x3e\x9f\xc6\x84\xbd\x35\x8e\x29\x81\xe1\x1c\xc8\x2e\x38\x07\x22\x66\xc6\x39\x50\x33\x5b\xc4\x39\x50\xd8\x03\x1e\x86\x81\xb7\x87\x42\x31\xf0\xec\xf2\xf2\x06\x5e\x70\x41\xf4\xc3\x2e\x16\x71\xe0\xc5\x02\x0f\xbd\x58\xf0\x39\x20\xf9\x1d\x34\xa3\x9f\x7d\xb1\x7d\xbd\xa4\xea\xf7\x1c\x8c\x05\x4f\x7e\x11\xef\xa3\x59\xe8\x54\x00\x57\xed\xb1\x60\xc5\xf0\x08\x56\x8c\x5d\x81\xab\xf6\x40\x30\xf0\x1c\x82\x81\xd7\x9e\xe3\xb0\x07\x5e\x70\x41\x21\x45\xd0\x2b\x39\xf4\xdd\x76\x90\xe9\xc4\x84\xa4\x37\xdc\xec\xa5\xa2\x61\xe1\x77\xaf\x63\x8a\x61\xb1\x77\xb0\x63\x0b\x63\x1d\x1d\x3b\x16\x3f\xb3\xc5\xaf\x33\x2c\x76\xad\x61\x5d\xa7\xd3\x2e\x6b\x4e\x0f\x85\xc7\xae\x3d\xac\xcb\xfa\xc3\xba\xdb\x1d\xbf\x0e\xb1\xe8\xb5\x88\x45\xad\x47\x2c\x7e\x4d\x62\xf1\xeb\x12\xeb\x50\x43\x91\x77\xb9\x59\x2f\xf7\xb9\x59\xb7\xbe\xd1\x69\x19\x0f\xcc\x16\x7e\xbf\x9b\xc5\x8d\x9a\x4e\x77\xdc\xc3\xda\x3f\xe2\xbe\x77\xa4\x85\xa1\x63\x30\xf4\xee\x37\x7b\x95\xb0\x58\xd0\x9d\x70\xf6\x22\xb1\xb1\xbd\x79\x6c\x78\xca\xf6\x58\xb0\x3d\x77\x08\xb6\xe7\xed\x39\x0e\x7b\x7b\x8e\xa7\x6c\x6d\x82\xa7\x6c\xcf\xea\x29\x1b\xb5\x6a\x02\x70\x1a\xd2\x9b\x78\x06\xac\xa6\x4b\x31\x0c\x58\x0d\x51\x80\xd5\x04\x0a\xb0\x1a\x7a\x2e\x60\x35\x01\x02\xac\xa6\xcd\x3a\x60\x35\xc0\x6a\xdc\x02\xac\x86\x01\xab\x01\x56\xd3\x73\xa1\xc0\x6a\xec\x02\xac\x66\x2b\xc0\x6a\x1e\x08\xb0\x1a\xb7\x3c\x1f\xac\x86\x90\xe8\x4a\xe6\xc7\xd2\x31\x2b\x13\xea\x31\xb9\xe6\x32\x77\x55\x9d\xef\x11\x31\x5b\x47\x20\xef\x6a\x88\xf3\x25\x33\xd5\x10\x71\x97\x64\x55\xda\x78\x5e\x6d\x57\xe7\x1d\x28\xa4\x4e\xe8\x6f\x71\xc7\x23\x6b\x62\x29\x32\x3f\xb8\x8f\xca\xd4\xf4\x54\xcc\x85\x23\xfc\x2d\xa1\x20\x2d\x0a\xee\xea\x34\x34\xff\xe8\x4a\xab\x1b\x91\x8f\x55\x5a\x2f\x1d\xde\x49\x86\x38\xb5\x3c\xd4\xfa\xc5\x17\xf4\x9f\xac\x37\x15\x99\x30\x62\xac\x7c\xf7\x74\x29\x9d\x9d\x51\x46\x4d\x88\xb2\xeb\xea\xaa\x97\x8f\xac\x9f\xeb\xd2\xa3\x9c\x13\xb5\xd6\xdb\x80\xfe\x6a\xce\xf0\x69\x0f\x66\x51\x08\x28\xb8\xcc\x1d\x5b\x5b\x5a\x2f\xef\xb1\x9d\xbb\x3f\xc6\x5e\xfe\x20\xd2\x61\x9e\x2b\x53\x3f\xc5\xb6\x58\x1e\xe2\x99\x79\x2b\x9b\x68\xd4\xb6\xdb\x0d\xb7\x85\x0f\xf5\xd4\x52\xac\x73\xb6\x24\x5a\x64\x9b\x25\x1d\x06\x8d\xf2\xf9\x17\xae\x63\x6c\xa2\xf4\x15\x5f\xb8\x73\x52\xb7\x9e\xfb\x26\x3c\xba\x96\x0f\x5a\x39\x0f\x59\xa8\xbb\xe0\xa4\x7e\xfc\x7f\xc6\x0b\x44\x9d\x7f\x09\x51\xe7\x19\x9b\x48\x91\xa5\x3d\xb7\x24\x2f\xe4\x17\xa1\x4b\x12\x5e\x15\x58\xf7\xb5\xb9\x63\x6e\xae\x7b\xd6\x4c\xaf\xfb\xad\x05\x7d\xb5\xc0\x86\x89\xe7\xc3\x1e\x5a\x22\xa1\xaf\xff\x4d\xab\x89\x8d\x91\xca\xb9\x2c\x69\x78\x14\x89\xf6\x85\x05\x53\xbf\xb0\x50\xfa\x17\x76\xc8\x14\x30\xac\x2b\x0d\x0c\x6b\x74\xa7\x27\x1b\x20\x1b\x03\xfa\x1a\x1f\xa5\x48\xb4\x30\x58\x6f\x5e\xc2\x7a\x43\x48\xe6\xb3\x6a\x50\x57\xb2\xd3\x5d\x8c\xa6\x99\xcb\xc5\x5c\x68\x10\x46\x86\x74\x4f\x10\x46\x82\x30\xf2\x71\xe1\x07\x40\x18\xd9\x7c\x8a\xf9\xf4\xfb\xe2\xfa\xba\xdf\x01\xed\xd3\xb5\x28\x32\x99\xf0\x23\x55\xd9\x30\x11\xff\xe1\xfe\x4c\xe6\x72\x56\xcd\xde\xb1\x1f\x1c\x16\xd8\xbd\x38\x0f\xff\xa4\x7f\x42\xf3\xf1\x4e\x86\x76\x5e\xaf\x87\x4a\xf7\x4c\xc9\x1e\xe9\x41\x7a\xa2\xd1\x1e\x28\x71\x71\x77\xf3\x4a\xa2\xd9\x0e\xae\xd9\xbc\x93\xc9\xad\x96\x46\x0c\x8b\xe2\x2f\x97\x97\xe3\xb1\x56\x57\x4e\x36\x5b\xbb\x6f\x5a\x8a\xa4\xd2\xd2\x2c\x8e\x54\x6e\xc4\x5d\x34\xb3\x2d\xcf\x32\x75\x3b\xd6\x72\x2e\x33\x31\x15\xa3\x32\xe1\x99\x83\xaa\x92\x62\xd8\x52\x12\x5e\xf0\x2b\x99\x49\x77\x7f\xa4\xf9\x61\x3c\xf5\xf8\x0c\x24\xbf\x86\xec\xd3\xd0\xfc\x99\x54\xab\xe2\xd0\xac\x22\xcc\x28\xc5\xa6\xa1\x3b\x9e\x59\x16\x5a\x25\x67\xf6\xf5\x90\xf8\x69\x5a\xf0\xf4\x53\x9e\x2d\xce\x95\x32\x1f\x64\x26\xca\x45\x69\x84\x03\x78\xa5\x58\xa6\xab\x7c\x58\xfe\xa4\x55\xe5\x68\x9e\xc6\x72\xfd\x6f\x7f\xf2\x94\xe6\x9e\x08\xeb\xd2\x3e\xaa\x7c\xf9\x05\x3d\xd8\xfd\xb9\x14\x8e\xad\x41\x7f\x66\x97\xe2\x54\xe6\xd5\xdd\xa7\xc2\xe1\x61\x31\x3a\xa7\xb5\xfb\x54\x95\xd1\xfb\xb9\x56\x59\x3f\xe7\x6e\x75\xb2\x3e\x14\x55\xce\x16\x21\x2b\x22\x0c\xcd\x5b\x99\xa7\xea\xb6\xec\xa9\x4d\xa6\xb3\x92\x1f\x69\x91\x8a\xdc\x48\x9e\x5d\x14\x22\xe9\xa5\x3a\x76\xd5\xf6\x76\x54\xba\x1d\x00\x3d\x69\xec\xba\x50\x1b\x95\x09\xed\xda\x82\x74\x46\x35\xc4\x64\x22\x12\xe7\x05\x62\xd2\x87\x7a\x30\x0a\x92\x0e\x0a\x2e\x41\xab\xf5\x6d\xad\x5d\x88\x44\xe5\xee\x83\x6f\xda\x84\x46\xbd\x07\xdd\xc7\xf9\x5f\xa7\x7d\xb4\x23\xb3\x11\x99\x98\x09\xa3\x5b\x5a\xca\xdd\x53\x38\x4e\x60\x5b\x05\x27\xb0\xaf\x12\x11\xc7\x09\xec\x5a\x70\x02\xdb\xb4\x1a\x27\xb0\x38\x81\xdd\x51\x8b\x13\x58\xac\x37\x9e\x72\x9f\xfb\x09\xac\x3b\x2e\x8c\xbf\x73\xd1\xe2\xc1\xd0\x3a\x69\xaf\x6c\x0a\xbd\xc7\xda\x0d\x8b\xfd\x82\x40\xbb\x08\xb4\xdb\xcd\xbe\xb8\xe7\x64\xaf\x38\xd0\x6e\x18\x11\x38\x06\x0e\x06\x4e\x53\x5e\xe3\xc0\x09\x2a\x80\x4e\x56\x10\x4a\x54\x10\xb2\xfd\xa1\x7b\x70\xe4\xf8\x2a\x44\x4e\x02\x72\x65\xd1\xda\xa0\x4f\x1e\x02\xfa\xe4\x14\x11\x47\x65\x6f\x04\x07\x70\x79\x30\x73\xb7\x67\xc4\xcc\xed\x17\xb8\x3c\x18\x38\x3b\x19\x31\x70\x7a\x2d\xa0\xef\x8b\xc9\x61\xf1\x4a\x48\xa6\x52\x6e\xec\x50\x62\x94\xbc\x08\x84\x26\x9c\xe3\x12\xa4\x4c\xf1\x26\xae\x04\xa4\x4c\x0e\x01\x29\x53\x7b\x0e\x90\x32\x39\x8d\x05\x29\xd3\x9e\x9c\xe6\x57\x44\xca\xf4\xec\xe0\x9a\x20\x2e\xc9\xe7\x8f\xd9\xf4\xee\xfd\x04\xbb\x26\xc0\x6b\xb0\xed\xec\x66\x1f\xb6\x9d\x81\x78\x4d\x98\x4b\xd1\xcd\x9d\x88\x5e\x4e\xc9\xd5\x10\x94\x3c\xcc\x7d\x08\xe8\xc5\x81\xdf\x19\xd2\x6e\x81\xee\xc2\x5e\xee\x16\xd1\x5d\x84\x5e\x17\x3b\x22\xae\x40\x8a\xa9\x01\x6c\x01\xd8\x02\xb0\x05\x9b\x00\x5b\xb0\x0b\xb0\x85\xad\x00\x5b\x78\x20\xc0\x16\xdc\x02\x6c\x61\x2b\xc0\x16\x5a\x05\xd8\x02\x55\x80\x2d\xac\x05\xd8\x02\xb0\x85\x86\x81\xc0\x16\x5a\x93\x03\x5b\xe8\x8a\x2d\x78\x12\x38\x59\xc1\x7d\xcf\x81\x1c\x81\x09\x3c\x75\x3c\xe3\x77\xe7\x2b\x1e\x2f\x4b\xef\xd9\x3b\x87\xd7\x4c\xe6\x4f\x6c\x01\x68\xde\x0e\x9e\xe6\xad\x50\xda\xbc\x5f\x2e\x08\x67\xfc\x6e\x94\x1b\x6d\xfd\x5e\xbf\x2d\x61\x85\x5d\x4a\xdb\x4b\x40\x4f\xbd\x82\x9a\xee\x50\x9f\xe8\x82\x9a\x0e\xcd\x16\x92\x00\x8c\x72\x1b\x01\xa3\x5c\x33\x0d\x18\xe5\xc0\x28\x07\x46\xb9\x05\x18\xe5\xc0\x28\xd7\x71\x7d\xad\xe1\xd1\x0d\x98\x3d\xea\xb2\x11\x06\x3b\x5d\x8c\x22\xb0\xd3\xb5\xb3\xd3\x69\x9e\x2c\xdd\xcb\x9d\x3c\xee\x7e\x92\x72\xc3\x53\x65\x89\x48\x47\xf0\x13\xd3\x54\x8b\xd2\x35\x2f\x6d\xbd\xf3\x5f\xfe\xfb\xdd\xaf\xdf\xbf\xab\xfd\xe7\xbf\xff\xf8\x87\x7f\xfd\xa7\xdd\x7d\xee\x0a\x02\x74\x42\xa7\x32\x39\xbd\x36\xa5\x11\x16\x47\x81\x50\x25\x49\x22\xca\xf2\x52\xdd\x08\xaf\xb7\xec\xec\x28\x4f\x53\xb5\x4b\x27\x3d\x11\xda\xb8\xe9\xce\x08\x6a\xea\x8d\x88\x37\xfe\xa8\xcb\xfb\xf1\xcd\xc4\x86\x27\x37\xa9\x96\x73\xdb\x52\xec\x6f\xaa\x54\x5c\x55\x8e\x60\x8c\x14\x07\x6d\xc6\xef\x3e\x56\xb3\x2b\xa1\x3f\x4d\xbc\x40\x18\x23\x1f\xc7\x52\xa6\xa3\x66\xc9\xc6\x68\x79\x55\x19\xd7\x52\xb0\x97\x82\xcf\x44\x59\xf2\xa9\x18\xcd\x45\xee\x82\x11\xfa\x2a\xdb\xd3\x23\x96\x53\xa0\xad\x33\x88\xbc\xb2\x6c\x21\x06\xec\x6f\xb2\xb8\x91\xed\x0d\x3c\xb8\x9f\x0f\x2c\xbf\xaf\x27\x50\xcb\xaf\x8d\x4e\xea\xf8\x22\xeb\x40\x5a\x59\xf6\xbc\x26\x67\xc6\x4c\x56\x5e\x08\x63\x64\x6e\x8b\x7f\x49\x33\x9f\xd5\x93\xd1\xd1\x32\xd1\x44\x26\xdc\xd9\xbb\x89\x96\xd5\x2a\x33\x29\x72\xd3\x50\xdb\x8b\xd6\x99\x4a\x3d\x8a\xec\x3d\x70\x23\x03\x76\x7c\x72\x31\x7c\x7f\x3a\xf2\xa4\xba\x38\x39\x1b\x7b\x13\x9d\x7d\xbe\xfc\x3c\x3c\xf5\x24\x3a\xb9\xb8\x3c\xf9\xf4\x1b\x21\x29\x15\x8b\xd3\x72\xce\x8d\xe8\x2b\x18\x72\x99\xcb\x7e\xf4\x54\xf5\x94\x31\xcc\x4c\x1d\xcb\xfa\xd9\x21\x34\xce\x04\x4e\x9f\xb0\x2a\xcd\xb1\x9a\xf1\xb6\x39\xc4\xf1\x09\x8d\x7c\xc3\x4c\xf2\xb2\xad\xca\xac\xd5\xe4\xac\x1a\x7b\x75\x54\xa5\x38\x3b\x1a\xdb\xcc\x6c\x5f\x84\xe7\x36\xc2\xd7\xfb\x89\xed\xc7\xb7\x21\x1f\x7e\xcb\x4d\x72\x3d\x4c\x79\x61\x84\x3e\x3a\x3f\x6e\xf9\x3e\x97\x39\x75\xee\x4f\xf9\x7d\xc0\xf4\x90\xec\xed\x67\xc6\x83\xcd\x37\xbe\xd9\xd5\xb2\xd3\xe4\xa5\xe1\xa6\x7a\x64\xb3\x7d\x9a\x1d\x69\xad\xf4\x7a\x01\x0f\xea\x1d\x3f\x71\x23\x6e\xf9\x62\x68\x5b\x5d\xfa\xee\x19\x17\x2d\x9f\xe5\x54\xd7\x5a\x3d\x3b\x7f\x2c\x85\x9e\x8b\xb4\x01\xc7\x97\x46\xe9\x65\x5d\x34\xfe\x52\x5d\xed\x9c\x8c\xad\x2b\x99\xfd\xfd\x9f\x6f\xee\xeb\x7b\xe9\xf3\x17\x46\xa4\x8d\xe9\xe5\x46\xe6\xe9\x3b\xf6\xcd\x37\xf5\x3f\x8a\xac\xd2\x3c\x5b\xff\x73\xb9\x69\x95\x2b\x37\x91\xfd\xf2\xeb\x9b\x55\xc1\x22\x5d\xb3\x17\xaf\xfe\xf8\xff\x03\x00\x00\xff\xff\xd1\x5d\x22\x31\x34\x89\x04\x00"), }, "/istio.banzaicloud.io_meshgateways.yaml": &vfsgen۰CompressedFileInfo{ name: "istio.banzaicloud.io_meshgateways.yaml", diff --git a/pkg/manifests/istio-crds/assets/crd-all.gen.yaml b/pkg/manifests/istio-crds/assets/crd-all.gen.yaml index 35b4db8c0..faddc02a7 100644 --- a/pkg/manifests/istio-crds/assets/crd-all.gen.yaml +++ b/pkg/manifests/istio-crds/assets/crd-all.gen.yaml @@ -1287,6 +1287,10 @@ spec: description: Applies only to sidecars. format: string type: string + destinationPort: + description: The destination_port value used by a + filter chain's match condition. + type: integer filter: description: The name of a specific filter to apply the patch to. @@ -2817,6 +2821,11 @@ spec: apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition metadata: + labels: + app: istio-pilot + chart: istio + heritage: Tiller + release: istio name: workloadgroups.networking.istio.io spec: additionalPrinterColumns: @@ -2884,11 +2893,11 @@ spec: - exec properties: exec: - description: health is determined by how the command that is executed + description: Health is determined by how the command that is executed exited. properties: command: - description: command to run. + description: Command to run. items: format: string type: string @@ -2906,7 +2915,7 @@ spec: format: string type: string httpHeaders: - description: headers the proxy will pass on to make the request. + description: Headers the proxy will pass on to make the request. items: properties: name: @@ -2922,7 +2931,7 @@ spec: format: string type: string port: - description: port on which the endpoint lives. + description: Port on which the endpoint lives. type: integer scheme: format: string @@ -2943,7 +2952,7 @@ spec: format: int32 type: integer tcpSocket: - description: health is determined by if the proxy is able to connect. + description: Health is determined by if the proxy is able to connect. properties: host: format: string @@ -3048,6 +3057,7 @@ spec: - CUSTOM type: string provider: + description: Specifies detailed configuration of the CUSTOM action. properties: name: description: Specifies the name of the extension provider. @@ -3243,6 +3253,19 @@ metadata: release: istio name: peerauthentications.security.istio.io spec: + additionalPrinterColumns: + - JSONPath: .spec.mtls.mode + description: Defines the mTLS mode used for peer authentication. + name: Mode + type: string + - JSONPath: .metadata.creationTimestamp + description: 'CreationTimestamp is a timestamp representing the server time when + this object was created. It is not guaranteed to be set in happens-before order + across separate operations. Clients may not set this value. It is represented + in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for + lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata' + name: Age + type: date group: security.istio.io names: categories: diff --git a/pkg/manifests/istio-crds/generated/istio-crds.gogen.go b/pkg/manifests/istio-crds/generated/istio-crds.gogen.go index 9191bb508..96530265b 100644 --- a/pkg/manifests/istio-crds/generated/istio-crds.gogen.go +++ b/pkg/manifests/istio-crds/generated/istio-crds.gogen.go @@ -24,9 +24,9 @@ var CRDs = func() http.FileSystem { "/crd-all.gen.yaml": &vfsgen۰CompressedFileInfo{ name: "crd-all.gen.yaml", modTime: time.Time{}, - uncompressedSize: 140741, + uncompressedSize: 141820, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x77\xdb\x38\x92\xf0\x7b\x7e\x05\xce\xcc\x43\x7a\xce\x89\xe4\xe9\xc9\xb7\xdf\xd9\xf5\x9b\xdb\x76\x3a\xea\x76\x6c\xad\x25\xa7\x77\xbf\x97\x34\x44\x42\x12\xc6\x14\xc0\x06\x40\x5f\x76\xcf\xfc\xf7\xef\xe0\x42\x49\x14\x49\xa0\x40\x51\x8e\x93\x16\x5e\xba\x63\x81\x40\x15\x2e\x55\x85\xba\xfe\x15\x5d\xdc\xa0\xeb\x9b\x29\xba\xbc\x18\x4d\xd1\x00\xfd\x4c\x18\x11\x58\x91\x14\xcd\x9e\xd1\x79\x41\xd0\x4d\x4e\xd8\xd9\x78\x84\x16\xf6\x07\x2e\xd0\x0c\x4b\x92\x22\xce\xd0\x48\x2a\xca\xd1\xd9\x78\x24\x87\x6f\x70\x4e\x3f\x13\x21\x29\x67\xa7\x08\xe7\x94\x3c\x29\xc2\xf4\xbf\xe4\xf0\xfe\xdf\xe5\x90\xf2\x93\x87\x1f\x67\x44\xe1\x1f\xdf\xdc\x53\x96\x9e\xa2\xf3\x42\x2a\xbe\xba\x25\x92\x17\x22\x21\x17\x64\x4e\x19\x55\x94\xb3\x37\x2b\xa2\x70\x8a\x15\x3e\x7d\x83\x10\x66\x8c\x2b\xac\xff\x2c\xf5\x3f\x11\xfa\xcb\x92\x64\xab\xa1\x5c\x9e\x08\xf7\xe1\x20\xe7\x19\x4d\x9e\xff\x72\x8a\xee\x09\xc9\xdf\x20\x94\xe1\x19\xc9\x5c\x6f\x9c\xe7\xa7\x88\x6a\x18\x07\x39\xcd\xb8\x32\x7f\x4c\x96\x58\x28\xf7\x67\xf3\x87\x25\x11\x54\xe1\x05\x39\x45\x53\x9a\x65\x44\x98\x3f\x0a\x92\x11\x2c\xc9\xa6\x1f\xc3\x2b\x72\x8a\x52\x22\x15\x65\x06\x22\x51\x64\x44\x0e\x19\x51\x8f\x5c\xdc\x53\xb6\x18\x9a\x9e\x43\xca\xdf\xc8\x9c\x24\x06\xfa\x34\x35\x28\xe1\x6c\x2c\x28\x53\x44\x9c\xf3\xac\x58\x59\x54\x06\xe8\x97\xc9\xcd\xf5\x18\xab\xe5\x29\x1a\xea\x0f\x86\x4b\x2e\x2d\x80\x29\x91\x89\xa0\xb9\x32\x2b\x39\x5d\x12\x33\x35\xe2\x73\x84\x91\x24\xe2\x81\x26\x04\xcd\x05\x5f\x21\xb5\x24\xeb\x3f\x08\xb2\xa0\x52\x89\x67\x33\x80\x05\xf5\x63\x39\x9e\x7a\xce\xc9\x29\x92\x4a\x50\xb6\xd8\x9d\xb9\x5c\xec\x61\x22\x88\xc1\x6a\x4a\x57\x44\x2a\xbc\xca\xeb\xa0\xbc\x3d\xdf\xed\x83\xa8\x44\x18\xa9\xf5\x3f\x05\xc9\x05\x91\x84\x29\xca\x16\x6b\xf0\x88\x30\x3d\xd0\xe3\x92\x30\x33\x28\x42\x6a\x49\x25\xe2\xb3\x7f\x92\x44\xa1\x47\x2c\x91\x99\x9c\xa4\x43\x34\x52\x7a\x48\xc6\x15\x5a\x14\x58\x60\xa6\x08\x49\x91\xe2\x68\xa6\x87\x52\x88\x32\xb4\xc4\x79\x4e\x98\x1c\xcc\xc8\x9c\x0b\x82\xb8\x48\xdd\x86\x21\x84\x13\xc1\xa5\x44\x92\xe4\x58\x9f\x5f\xc4\x73\x7d\x5c\xcd\x09\x44\xe7\x19\x25\x4c\x49\xb4\xc2\xcf\x66\x78\x3d\x9a\x81\xe2\x01\x67\x05\x29\x27\x5e\xc3\x4f\x52\x37\x26\x65\xe8\xf6\xc3\xf9\xfb\xf7\xef\xff\x03\xcd\xb9\x58\x21\xcc\x52\xdd\x91\x32\x74\x37\x3d\x1f\xa2\x31\xcf\x8b\xac\xbc\x2b\x06\xe1\x67\xa9\xc8\x6a\x88\x6e\x09\x4e\x07\x9c\x65\xcf\x43\x74\x5d\x64\x99\xfe\xd8\x8d\x98\x51\xa9\xe4\x10\x7d\xd2\xd0\x53\x36\xe7\xa7\x68\xa9\x54\x2e\x4f\x4f\x4e\x16\x54\x95\x57\x25\xe1\xab\x55\xc1\xa8\x7a\x3e\x49\x38\x53\x82\xce\x0a\xc5\x85\x3c\x49\xc9\x03\xc9\x4e\x70\x4e\x07\x09\x67\x0f\x7a\x9d\x35\x72\xab\xf4\xaf\xe5\x36\xbe\xdd\xda\xff\xb3\x05\xd9\xda\xfe\x14\x2b\xfd\xcf\x85\xe0\x45\x7e\x8a\x9a\x4e\xad\xfd\xce\xdd\x9c\x04\x2b\xb2\xe0\x82\x96\xff\x1e\xb8\x6b\xe4\xae\xcc\x60\x6b\x84\x41\xe5\x17\x7b\xb9\x2f\x36\xd7\xe4\xb6\xc8\x2c\x1c\x1a\xf1\x5f\x9b\x7e\xbd\xa2\xee\xa0\xe6\x59\x21\x70\x56\xbf\x64\xe6\x47\xb9\xe4\x42\x5d\x6f\x20\x1c\xa0\xd4\x2e\xa9\xa4\x6c\x51\x64\x58\xd4\xbe\x7b\x83\x90\xd9\x4e\xf1\x40\xee\xd8\x3d\xe3\x8f\xec\x03\x25\x59\x2a\x4f\xd1\x1c\x67\x52\xff\x2c\x13\xae\xd7\xc6\x8c\x9a\xe3\xc4\xec\xba\x2c\x66\x25\x6d\x71\x33\x49\x85\x55\x21\x4f\xd1\xff\xfe\xeb\x0d\xd2\xe7\x85\xa6\x66\x0a\xfb\x23\xb7\xc4\xf1\xf3\xfb\x49\xb2\x24\x2b\x7c\xea\x76\x39\x17\xfa\xf4\xa9\xf5\xfa\x99\x71\x1c\x59\x28\xdb\xce\xe5\xe2\x6c\x4e\x17\x85\x3d\xb1\x08\xcf\xe7\x24\x31\xd7\x28\xe3\x38\x45\x33\x9c\x61\x96\x50\xb6\x78\x87\x78\xa1\x32\x4a\x04\x4a\x89\xd2\x3d\x38\x7b\xb7\x35\x24\x42\x44\x25\x43\x34\x21\x04\xad\xf4\x01\x4b\x89\xc2\x34\x93\x08\xab\xcd\x31\x2b\x37\xfc\x24\xe5\x89\x3c\x11\x64\x4e\x04\x61\x09\xd1\x27\x6d\x4e\x17\x27\x9b\x8d\x3d\xd9\x5a\xcf\x81\x5e\xd0\xe1\x52\xad\xb2\xb7\x5b\xd3\x35\x61\x69\x80\x78\xca\xb9\x50\x53\x5e\xfd\xeb\x0e\xc6\x67\xe6\x44\x68\xba\xc6\xca\xf5\x97\xfa\xae\x3f\x2e\x69\xb2\xb4\x97\x73\x0b\x00\xa4\x01\x40\x54\xee\x8c\x58\xce\x45\xd2\xe1\xce\x2f\x54\x91\x95\xdc\x05\x00\x99\x5b\xac\x57\x63\x4d\x0e\xab\x6d\x87\x56\xd6\x7f\xc2\x42\xe0\xe7\xca\x2f\x9a\x6e\x7b\x11\x8d\x24\xe1\xbb\x88\x78\x21\x6e\x85\x57\x16\x33\x49\x54\x6d\x01\x5a\x56\xa5\x6d\x23\x6d\xdb\x66\xa9\xbb\x6d\x9b\xc7\xf9\xc6\x08\x62\x12\xc4\xa8\xda\xc1\x72\x8f\x86\x0e\x86\xf8\x35\x7e\x58\xd9\x94\x6b\xb7\x21\x66\x07\xcc\x5a\xed\xae\x3b\x18\xe6\x00\xc4\x4a\xe0\xf9\x9c\x26\x63\x23\xa7\x00\x20\x9b\xda\xfe\xc8\x08\x36\x54\xdf\x89\x25\x56\x5a\x94\xc9\x9e\xf5\xf5\x30\x17\xc3\x07\xb1\x7f\x2f\x75\x4b\x38\x63\x96\x76\x8c\x39\xcf\xda\x7a\x41\x46\xd2\x4d\xd3\x15\xdf\xef\x3b\xe8\x7d\x9c\x4e\xc7\x5b\x10\xa0\x9c\xf3\x4c\xb3\x63\x4d\xec\x64\x33\x46\x71\xf0\x18\x98\xfe\x71\x97\x2f\x04\x4e\x89\x6f\xd5\x5b\x41\x9c\xe4\x24\xa1\xf3\x67\x44\xe7\x06\xb9\x1f\x87\x3f\x6e\x03\x2c\x97\xbc\xc8\xd2\xe0\x88\x48\x0b\x2d\x85\x85\xc2\xc8\x30\x7a\xa8\x7f\xe8\xf3\x64\xce\x1c\x96\x92\x27\xd4\x88\x0e\x5b\x54\xce\x8f\xbf\x6e\x84\x15\xab\x30\x3a\x03\x74\x71\xf9\xe1\xec\xee\x6a\x0a\xe9\x79\xf3\xe5\xfa\x66\xfa\xe5\x6e\xfc\xf3\xed\xd9\xc5\x25\xe0\x03\x68\xcf\xe0\x4d\xde\x34\xb3\xcc\x9f\xf0\xd3\x98\xb0\x94\xb2\xc5\x2d\xf9\xa3\x20\xb2\x4e\xbd\xea\xad\xb2\x6f\x9f\xf0\x13\x5d\x15\x2b\xc4\x8a\xd5\x8c\x08\x7d\xbb\x73\x3b\x9e\x3d\x74\xc2\x8d\x0a\xd8\x3a\xc5\x11\x8e\xdb\x97\x92\x4e\x50\xa6\xde\xff\x03\xb8\x34\xfa\x4d\xb0\x58\x8b\xaf\x6d\xcd\x9c\x9b\x4f\xf8\xa9\xb7\x45\x29\xd7\xc1\x62\x39\xc3\xc9\x3d\x61\x35\xf6\xf9\x92\x18\xd2\x34\x23\xfa\x4d\xc1\x8b\x1a\x23\x0d\x20\xa7\x59\xab\xfe\xda\xbc\x30\x78\xa1\xcc\xf5\x2a\x72\xa9\x04\xc1\xab\xad\x4b\x0b\xd8\x72\x43\x87\x36\x5f\x04\x48\x11\x8a\x3b\xdf\xab\xcd\xf6\x8d\xf5\x33\xb0\x9c\xa5\xbf\xbd\xcc\x89\x88\xc3\xf7\xb5\x6c\xbe\x59\x1a\x25\x00\x44\xfd\x90\x50\x14\x92\xd8\x27\xe2\x58\x70\xc5\x13\x1f\x57\x2c\x5b\x65\x67\x46\x73\xfb\xa4\xe4\x48\x89\x82\xbc\x43\x89\x19\x4c\x73\x2c\x33\x1a\x7a\xa4\x59\x06\x63\x19\xe5\x93\x25\xd5\x82\xb0\x16\x79\x19\x55\x14\x9b\xa7\xc0\x16\x13\xd2\x6f\x62\xe8\xde\xd9\x75\x98\x71\x9e\x11\xec\x3f\x19\x01\xd1\x6a\xdd\x2d\x89\x61\xf8\x13\xc7\xdb\x91\x7e\xd4\x3a\xd0\xb9\x5a\x5a\x9a\xac\xdf\xd3\xd3\xf3\xf1\xfa\xce\x06\x90\x01\xdf\x4f\xb8\xa8\xe0\x86\xec\x48\x7f\xce\x2b\xb2\x8c\xa3\x42\x7d\x93\x8e\x0d\xbd\xd8\x9f\xf8\xeb\x55\xff\x11\x9d\x54\x01\xef\xc2\x12\xcd\xbb\xe7\x6b\x12\x0e\x95\xe4\xbf\x12\x92\xe3\x8c\x3e\xb4\x08\xfc\xdb\xad\xf1\xb6\x2e\x09\x33\xff\x33\xb9\xf9\xf2\xeb\xe5\xe5\xf8\xec\x6a\xf4\xf9\x12\xe9\x7d\xd4\x8f\x02\x9e\xdc\x13\xdf\x2d\x58\xc3\xc1\x11\x61\x78\x96\x11\x73\x1a\xd6\x20\x01\x18\x08\xfc\x90\x22\xa3\x8a\x52\x44\x3c\x60\x00\x65\xaa\xe1\xab\xd9\xa4\xd1\xc1\xa5\xa5\x7e\x61\x46\xd4\x23\x21\xcc\x28\x4d\x07\x06\x5e\xd0\xa8\x06\xe6\x19\x04\x37\x14\x77\xca\x37\x43\xc3\xd0\x8b\x39\x28\xa6\x3f\x6d\x7b\x15\xee\x05\x34\x90\x60\x02\x3b\x02\x3a\x65\x1c\xa7\x3f\x19\x65\x10\x11\xed\xf8\xb4\xd1\x5f\xa6\x04\xcf\xb2\x52\x39\xbb\xa5\x59\x22\x02\xe1\x6c\xc1\x05\x55\xcb\x95\x67\x73\x39\x23\x37\xf3\xf6\x69\x07\x88\xf1\x00\x05\xc5\xec\xd9\x37\x82\x1d\x45\x0b\x35\x54\x90\x34\xb4\x61\x03\x24\xe9\x2a\xcf\xfc\x47\x77\x10\x75\xcd\x12\xce\x24\x95\x8a\x30\xf5\x11\xcb\x25\xe4\xc4\x04\xd6\x64\x1b\x90\xe0\xea\x6c\x1a\x60\x9d\xb6\x47\x86\xae\xd8\xf6\x37\xfa\x5d\xf1\x91\xe0\x94\x88\x6b\xbc\x82\x5e\xff\xee\x53\x9d\x73\x7e\x4f\x0f\x3b\x4d\x21\xc9\xc4\x28\x6e\x47\xf9\xc1\xd1\xf9\xcf\x82\x88\xe7\x31\x16\x78\x45\x14\x78\x05\x63\xa7\xeb\xb0\x49\xdd\xa6\x00\x6f\x4e\xfc\xf0\x71\x9b\xd2\x0d\xfc\xe8\xcd\x80\x53\x98\x2a\x41\xf0\x90\x3e\xc8\x90\x41\x82\x05\x27\x56\x71\x84\x0a\x44\xa4\xc0\x04\x0a\x4c\x9c\x8e\xe7\xfd\x30\xe0\x47\x9f\xf7\x98\x69\x22\x37\x21\x7e\x68\xd0\xe2\xc7\x0d\x0b\x5f\xf4\x78\x70\xa3\x16\x1b\x46\x05\x80\x44\x05\x46\x0b\x62\x28\x41\x84\x06\x7d\xbd\x51\x91\x6f\x2b\x0d\xc4\xc6\x41\xc4\x69\xfb\xf5\x38\x7d\xbf\x87\xda\x0d\x3d\x5e\xf8\xb6\x0d\x3f\x50\xc0\x10\xd4\x78\x55\x6d\xb1\xef\x1f\xac\x40\x12\xe7\x0e\x42\x63\xac\x96\xfa\x11\xaa\x1f\xb2\xa5\x75\xe1\x75\x21\xa6\x54\x97\x47\xeb\x15\x9d\x13\xf3\x68\xed\xb0\x59\x87\x79\xc4\xa1\x1d\xca\xb8\xd7\xcd\xc0\xc6\x1f\x80\xce\x69\x62\x2f\xc9\xd2\x0c\x0b\x57\xa8\x44\x21\x07\x36\xc2\xd4\x89\x5d\xaf\x48\xfe\xa1\x87\x47\x79\x39\xfe\xd7\xc4\x76\x45\x19\x5d\x15\xab\x5b\xca\x16\x13\xfa\x3f\x00\x34\x23\xd5\xc9\x25\x3f\xda\x6b\xfd\xac\x22\x4a\x0f\x84\x46\x63\x84\xd3\x54\x10\x09\xb6\x4c\xf4\xa8\xf1\xcd\x78\x82\x33\xaa\x9e\xaf\x66\x4e\x9b\xd0\x17\x9b\x49\xa9\xb4\xee\x4d\xb1\xe7\xec\xed\x4d\x6e\xdd\x0e\x4e\x11\x67\xd9\xb3\x96\x70\x35\xa1\xd8\x8c\x87\x38\x44\x2f\x34\xc7\x34\xe3\x0f\x44\xa0\x04\x33\xe7\x65\x36\x7c\x1b\xfc\xae\xc5\x8b\xa2\xde\xe2\x38\x1a\x32\x4e\x21\xd0\x97\x68\x65\x39\x6e\x04\x5d\x18\xc5\xac\xf1\x18\xb2\x9b\xf5\x0e\xbd\x3d\x79\xbb\x76\x87\x4b\xdf\x81\x5f\xb8\x64\xb8\x80\x91\xd9\x4e\xcc\x23\x9a\x7d\x20\xa4\x6a\x9e\x44\x6d\x2d\xc6\x1d\xa5\x0d\x30\xb8\x56\x11\xd5\xf5\xed\xb9\x3e\x85\x6b\x0b\xa4\xdb\x0a\x6a\x3d\x9b\x9c\x27\x08\x18\x9c\xf5\x61\xa6\x9c\xa1\x47\x42\x17\x4b\x05\xd4\xbc\x46\x31\xb5\xe8\xee\x6d\x9e\x50\xf5\x66\x15\xe3\x00\x51\xbb\xb2\x8a\x4e\x9d\x5e\x9e\xe3\x9a\x0b\x9c\x5a\x36\xf8\x81\xd5\x1b\x95\xbb\x9e\x86\x83\x8c\x3c\x90\xcc\x18\x9d\x1e\x69\x96\x21\x7d\xf3\x05\x4d\x09\x5a\x11\x8f\x18\xbe\x69\x8f\xba\x6f\xe9\xab\x82\x28\x43\x84\x29\x2a\x88\xaa\xf9\x6c\xd5\x1b\x2b\xb2\x4c\x63\x75\x6a\x0c\x84\x3d\x52\xf0\x0d\x0d\xdb\x93\x82\xae\x49\x21\x17\x5b\x64\x14\xb0\x2a\xdf\x11\xe9\x14\x64\x01\xf2\xf6\x70\x53\xbe\x32\xe2\xf7\x12\xf0\x1c\x84\x50\x00\x07\xb5\xca\x33\xff\x6a\x84\xfd\xa3\x06\xe8\xf6\xe6\xee\xfa\xe2\xcb\xed\xcd\x4f\xa3\xeb\x40\xcf\xab\xcb\xb3\xc9\xf4\xcb\xf9\xcd\x75\xa8\xe3\xed\xd9\xf5\xc5\xcd\xa7\x40\xa7\xf1\xd9\x64\x32\xfd\x78\x7b\x73\xf7\xf3\x47\xc0\x72\x04\xb6\x04\xb0\x66\xce\x55\xf8\xa2\xf4\x14\xde\xd7\xd3\x4f\x8b\xa5\x97\xff\xb4\x63\x4d\x83\x06\xb5\x2a\x63\xb4\xd2\x36\x22\xee\xf3\xb5\x25\xd2\x7f\xd7\x80\x87\x33\xe1\x4c\x92\xa4\x50\xf4\x81\xfc\xdb\xd3\xd3\xa5\x10\x5c\x04\xa8\x46\x55\x25\xb0\xb6\x8e\xff\xdb\xd3\x13\x22\xe6\x73\xe4\x02\x0c\xb0\xb1\x73\x6b\x5e\x62\x40\x27\x21\xc7\xbf\xb5\x5b\xef\x8e\x8b\xa3\x1f\xcf\x08\xee\x00\x95\x51\xb6\xd6\x04\xb2\x20\x70\x3b\x7d\x07\x00\x7e\xc6\x8a\x3c\xe2\xe7\x3d\x36\x66\x61\x47\x68\xdb\x9c\x90\x18\x62\xb7\xee\xf5\x6c\x0e\xcc\x96\x5f\xb5\xe1\xd3\x15\x59\x7f\xb7\xb6\xdf\xaf\xef\x93\x7c\x24\x24\x47\x98\xe1\xec\x59\xd2\x80\x94\x08\xbc\x55\x2b\xfc\x54\xde\xf6\x31\x11\x09\x61\x01\xe3\x40\xff\x47\x68\x45\xd9\x47\x82\x33\xb5\xfc\x2a\xf3\x03\x28\x6c\xce\x85\xba\xd2\x32\x65\x69\x64\x07\xda\xe4\x6b\x3e\xde\x6b\x35\x89\xe2\x88\xb2\x94\x3e\xd0\xb4\xc0\x99\x19\xdf\xb3\x99\x41\x61\x2a\xc2\x9a\x04\xf2\x08\x8f\x1b\x15\x81\xbc\xc3\x6d\xeb\xcb\x47\x3c\x1e\x42\xd4\xc5\x5f\xbc\x01\xe8\x9e\xbc\xc6\x6d\x3b\x88\xef\xb8\x6d\x30\x0f\x72\xdb\xe0\x7e\xe4\xeb\xfe\x71\xde\xe4\xe5\x67\x71\xfd\xa3\x65\xe8\xce\xfe\xe5\xb6\x45\x78\x99\x83\x77\xb8\xea\x85\xdd\x61\x1f\xe3\x3c\xeb\x6c\x8b\x57\x70\xc4\x7b\x9f\xdb\x16\xe3\x83\x0e\xbf\x15\x50\x97\x57\xdb\x5e\x66\x85\xa2\xbc\xd7\x6d\x3b\x94\x0f\xbb\x6d\xf1\x9e\xec\xb6\x45\xdf\xaa\xee\x5e\xed\xb6\x45\xf8\xb6\x83\x91\xaf\xfa\x48\x47\x78\xb8\xdb\xf6\x32\x47\x26\xc6\xe7\xfd\x25\xe1\xea\xe0\x05\x6f\x5b\x8c\x2f\x3c\x78\x2b\x8d\x8a\x0e\xea\x11\x0f\xd7\xf1\x46\x78\xce\xbb\x2f\x22\x74\x71\x28\x5a\x45\x12\xf2\xa5\xb7\x2d\xda\xa3\x1e\xb6\xdf\x75\x2a\x73\x10\xf1\x2a\xd6\xc7\xde\xb6\x5e\x3c\xed\x6d\xeb\x42\xda\xa2\xbc\xee\x1b\x20\xee\xd1\xf7\xde\x21\xd1\xcd\x03\xdf\xb6\x97\x21\x20\x71\x3e\xf9\xb6\xc5\x78\xe6\xc3\xd7\x6a\xed\xc1\xbf\x87\x7f\xbe\x6d\xb1\x87\x1d\x45\xfb\xea\xdb\x76\x28\x8f\xfd\x35\x16\x60\xbf\x7d\xdb\xa2\xef\x0c\x8a\xf4\xe1\xdf\x9e\x26\xce\xe6\x16\xe3\xcf\xbf\x3d\x4b\x07\xc5\xf8\x21\x2c\x68\xe0\xae\x30\x6f\x7f\xdb\x3a\xf8\xfc\x07\xb1\x82\xc4\x04\xd8\xf6\xcd\x38\x98\x02\x22\x06\xca\xae\xf1\x17\x3f\x3e\x7a\xc0\x36\x70\x0c\x41\x09\x5a\x44\x24\x81\x6d\x51\xf1\x04\xe5\x2c\xf1\xbe\xf1\xe5\x97\x9d\x62\x0b\xfa\x99\x36\x2a\xce\x60\xff\x29\xe3\x63\x0e\xf6\x9f\xb3\x73\xfc\xc1\x3e\x53\x77\xde\xd4\x7d\xa6\x8b\xdc\xcc\xae\x53\x75\xd9\xc4\x7d\xd0\xea\xb8\x79\xb1\xb4\x0e\xe8\x66\x5c\x76\x8f\x71\x8c\x06\x91\xd1\x58\x12\xda\x85\x7c\x46\x90\xce\x48\xb2\x19\x49\x32\x8f\xb7\x6a\xf7\xab\x6f\xe4\x56\xc5\x4f\xd9\x69\xd3\xba\x4e\x13\xb1\x59\x5d\xa6\x88\xdd\xa4\xae\x68\x74\xd8\x9c\x18\x7a\x14\x45\xea\x0e\x1b\x10\x1a\x6d\x7b\x8a\x88\xb4\xb0\xad\xaf\x78\x8b\x6e\xf0\xa2\xa8\xd8\x8b\x06\x88\xbb\x46\x60\xd8\xd6\xc9\xc9\x09\x75\x7e\xcf\x82\x63\x32\x6c\xeb\x35\x32\xc3\xb6\x97\x45\x18\x1c\xab\x61\x5b\x6f\x11\x1b\x9d\x41\x8e\x7c\xa6\xc7\xc7\x70\xd8\x76\x80\x48\x0e\xdb\x5e\xc6\x89\xb0\x6b\x6c\x87\x6d\xb1\x11\x1e\x11\xd7\x0b\x1c\x09\x62\xdb\xcb\xac\x56\x74\x6c\xc8\xf6\x3c\x91\x06\x17\x78\x9c\x88\x6d\xfd\x47\x8b\x6c\x03\x7f\x20\x2b\x47\x64\xfc\x88\x6d\xb1\x8c\x29\x26\x96\xc4\x7d\x11\x15\x51\x02\x57\xe7\x88\x8e\x71\x25\xb6\x81\x5d\xa4\x6d\xeb\xc2\xbf\xe3\xdc\xa5\x6d\x83\xc5\x9b\x44\x2a\x33\x36\xd1\x29\x31\x51\x27\x0e\x85\xae\x8c\xb1\x23\x6b\x8c\x71\xc5\xb6\x6d\xbf\x68\x94\x6d\x50\x63\xf5\xe3\x08\x1e\x99\x12\x0b\xcf\x3a\x8e\x65\xaf\xf8\x94\x6d\xe4\x22\x98\x77\xc7\x8f\xe0\x11\x2b\xb6\x81\xe3\x56\x6c\x8b\x89\x5e\x89\x30\x61\x51\x19\x11\xc3\x02\x1e\x77\x45\xe4\x72\x9f\x48\x16\xdb\x22\xe3\x59\x1c\x4a\x91\x3c\x26\x26\xb6\xc5\xb6\xc3\x44\xb8\xd8\xf6\x27\x20\xe5\x71\xf1\x2f\x6e\xfa\x57\x4f\x86\x5f\x1a\xc2\x83\x13\xa8\xa8\x09\x20\x51\x33\xb6\x41\x3d\x43\xe1\x11\x34\x65\x7f\x60\x1c\xcd\x7a\xf8\x70\x34\x4d\xd9\x15\x1a\x53\x63\x5b\xc4\x76\x82\xd7\x18\x1e\x65\x63\x5b\xcc\x25\x8f\x8b\xb8\xb1\xad\x8f\xb8\x1b\xdb\xa2\x0e\x7f\x7c\x0c\x4e\x03\xb8\xe1\x48\x1c\xd0\x7d\xda\x44\xeb\x74\x0c\xf9\xb0\x2d\x9a\xc7\xc5\xc9\x6a\x91\x11\x3a\xb6\xc5\xfa\xf1\x74\x06\x29\x22\x66\xc7\xb6\x0e\x91\x3b\xdf\xd1\x66\xc6\x78\xfc\x44\xc7\xf5\x80\xd6\x09\x16\xfb\xb3\x8d\x1b\xf0\x66\xc7\xc6\x01\xd9\x76\xd8\x83\x1a\x17\x19\x74\x78\x88\xc0\xdc\x22\xe7\x22\x08\x6c\x0c\x87\xb0\xde\x85\x10\xf4\x0f\x82\x8e\x6a\xab\x0b\xb2\x69\xd5\xd3\x7e\x35\x41\x82\xd8\x92\x49\xeb\xe7\xc7\x9c\x6f\xe7\x2e\x97\x48\xf1\x20\x3a\x9a\x08\xac\xdf\xb2\xae\x82\x4a\xe8\xe0\x47\x99\x7d\xf0\xb9\xee\x3a\xa7\x09\x56\x30\x69\x3c\x5a\xc8\x8c\xe3\xae\xc6\x87\x7a\x0b\xa6\x68\x3a\x73\x7b\xf9\x9f\x77\xa3\xdb\xcb\x0b\x44\xe7\x68\xc5\x53\xa2\xe9\xea\xef\x9f\xee\xa6\x77\x67\x57\xbf\x43\x48\xc6\x81\xf1\x13\x24\xd5\x4f\x50\x9c\x41\xf5\xd2\x87\x85\x47\xaf\x50\xbf\x22\xf3\xc5\x68\x72\xf6\xd3\x15\x24\xc2\x69\x80\x26\xa3\x4f\x63\x60\x57\xbb\x83\xa0\xae\xa3\xc9\x74\x74\xf3\x05\xfc\x41\xd4\x7a\xe5\x82\x3e\x60\x45\x7e\x25\xa0\xd8\xb9\x6f\xe8\x60\x4a\x46\xe3\xfd\xf3\xaf\x47\x6e\x78\xa4\x38\x72\x25\xe5\x6c\xed\x9e\xb2\x24\x1e\x4c\xa1\x5d\x98\x31\x34\xcd\x5c\x62\x96\xca\x25\xbe\x07\x59\xd3\x0e\xbc\x22\x85\x61\x0b\x67\xd9\x76\x35\x36\x7f\x8b\x50\x83\xbc\x40\x36\x3a\xf0\x53\x1b\x5a\x0e\x01\x9e\xdb\xdb\x37\xab\x97\x95\x76\x61\xa2\x15\x26\xe9\x81\x3f\xc8\x3e\x81\x79\x28\x23\x58\x66\xc4\x2e\x43\x53\x40\xc4\x31\xc8\x9e\x28\xd0\x01\xf0\x88\x60\x84\xfd\xcf\x1e\x66\x7b\x90\xfc\x2a\x10\x56\x07\x62\x72\x20\xf6\x16\xc1\xd8\x80\xab\x00\x65\x66\xaf\xf6\x10\x05\x99\x56\x2c\xbb\x72\xac\x28\x40\x2f\x23\x18\xd5\x01\x70\x8e\x61\x4b\x20\x86\x14\xc5\x8a\xc0\x4c\x08\xc2\x7e\x82\x1c\xc5\xdb\xc1\xf3\x63\xdb\xe4\xde\x1a\x85\x3e\xf2\x1f\x4e\x1c\x11\x62\x1e\xbe\x04\x11\xfb\x27\x85\x80\xb0\xae\x88\xe4\x0f\xd1\x09\x1f\xb6\x13\x39\xf8\x8f\xc5\xfe\x49\x1e\x42\xa4\x19\x92\xcc\x21\x22\x81\x03\x24\x69\x03\xe8\x56\x74\x48\xce\xd0\xa5\xec\x5f\x48\xad\x00\x4e\xc2\x00\xd5\x23\xc1\x14\x2e\x31\x09\x16\xfa\x2e\xec\xd7\x2f\x26\xc0\x44\x08\x9d\x92\x1f\x98\xdb\xee\xdd\x3e\x60\x08\x33\xe8\x44\x76\x49\x6c\xd0\xad\x50\x5f\xf8\x50\xbe\xf8\x36\xc2\x92\x13\xf4\x3b\x67\x54\xe2\x81\xe8\xc2\x7b\x95\x24\x02\xde\xe5\xde\xbf\xe4\x1e\xc4\xc5\x21\xcc\xde\xdb\x93\x02\x74\x2f\xad\x07\xb9\x21\x10\x76\x09\x0f\xe6\xdf\x33\x80\x1f\x7a\x55\x81\x81\xfa\x9d\x82\xf3\xa3\x98\x46\x30\x20\xbf\xdf\x4b\x03\x0d\xb6\x3f\x44\xe9\xbb\x2e\x41\xf5\x50\xfd\x3b\xd4\x94\x16\x1d\x30\x0f\x0c\x82\x07\x8b\xf2\xb0\x60\x77\xb8\xdd\x05\x12\xd4\x0e\x04\x0e\xa0\x93\x0a\x74\xf1\xfe\x1c\x0a\x4c\xef\xbf\x00\x5d\x6b\x9c\x9f\x37\xaa\xcf\x1b\xc3\x07\x09\x65\x0a\x44\x3a\x42\x23\x1c\x63\xa2\x88\x00\x11\x8d\xc0\x48\x46\x60\x04\x63\x5c\x48\x57\x74\xf0\x5b\x97\xe1\x81\x41\x6f\xb1\x43\xc7\x04\xbb\x75\x01\x3b\x32\xc8\x2d\xa6\xd2\x61\xc4\xa2\xc7\x0e\x0b\x58\xec\x98\x21\xa1\x8b\x1c\x0b\x66\xc4\xe2\x42\xee\x75\x30\x62\x30\x04\x9f\x87\x34\x40\xc8\x02\x94\x24\xbc\xba\x9a\x9b\xc7\x93\x18\x71\x12\xa1\x75\x01\x81\x8b\x1a\x33\x5c\x60\x31\xa1\x43\x41\x16\x31\x06\x2c\xe0\xe2\x85\xee\x5e\xf0\xfa\x86\x6e\x20\xec\xfe\x81\xf4\x87\xa0\x00\xde\xfd\x83\x76\xa1\xf2\x33\x24\x38\x77\xcf\x80\xdc\xc3\xa8\xc6\x21\xc1\xb6\x3d\x05\xd8\x1e\x48\xb7\x1f\x0e\x9e\xed\x21\x60\xb6\xbf\x27\x40\x4c\x30\x6c\xaf\x01\xb0\xe0\xe5\x07\x2b\x90\xe3\x82\x5b\x0f\x53\xb2\xac\x5f\xac\x22\x82\x50\xc1\x4a\x36\x48\xb0\x69\x9f\x01\xa6\xbd\x68\xc3\xc0\xc1\xa3\x10\x02\x09\x0b\x12\x8d\x2e\x35\xb6\x8e\x2d\xf2\xde\x5d\x60\x04\x11\xc0\x3a\x09\xf7\x65\x84\x45\x07\x1d\xa2\x98\x18\x28\xa0\xf3\x70\x05\xfe\x20\x51\x42\x5d\x03\x34\xe3\x9c\x95\x0f\x52\x22\xac\x5b\xf0\x25\xdc\xb1\x37\xc6\xf7\xc9\x6f\xcd\x06\x04\x53\x46\x97\xff\x6a\x0d\x8c\x0c\xbc\x84\x9a\x0a\x7f\x75\x0b\x86\x04\xc7\x13\xc0\x82\x1e\x21\x81\x8e\x1d\x82\x1b\x35\xc9\xf1\x2e\xc9\x37\x46\x8e\xa0\x01\x8a\x5f\x97\xac\x1c\x6a\xf6\xde\x2e\x65\x70\x20\x7f\xd0\xa0\xcf\xd3\x00\x12\x1c\x08\x08\x08\x0c\x04\x01\x42\x02\xff\x02\xcb\xea\x5d\x03\x48\x50\x5f\xe8\xd0\x43\x83\xf7\xf6\x0b\xd8\x0b\x1e\x9e\x98\xc0\xbc\xee\x65\xb1\xcc\xc5\x6e\x3d\x93\x11\x31\x5b\x20\xba\x1a\xe6\xbf\xe0\xe0\x3a\x88\x4d\x2e\x6a\x3a\x50\xe0\x5c\xb7\x32\x57\xc1\x1a\x64\xb1\x01\x72\x3d\x2d\x76\xc8\x62\xd7\x7f\x21\xab\xe0\xa9\x87\x07\xad\xf5\x73\x00\xa0\x01\x69\x7d\xcc\xe6\xa5\x5c\xa0\x92\x54\xfd\x16\xa3\xf2\x08\x08\x20\x3d\x38\xa8\xf4\x14\x4c\xc4\x08\x97\x9b\xea\xab\xd0\x14\x5c\xe4\x89\x2e\x2e\x75\x88\xb2\x52\x07\x29\x28\x05\x8b\x7e\x82\x17\x91\x8a\x2e\x1f\x05\x2f\x1c\x15\x21\xe1\x75\x2e\x16\xd5\xc5\x2b\x11\xf2\xd8\x8c\x2e\x10\x15\x17\xe9\x1a\xf3\x98\x8d\x2f\x07\xd5\xb7\xcf\xe2\xa1\x31\x8c\x2a\xe7\x74\xa8\x42\x4e\xf1\x25\x9c\x22\xce\x77\xf7\xb2\x4d\xdd\x7c\x1c\xa1\x47\xfc\x15\x6c\x7e\x4c\x61\xa6\xc3\x41\xd1\xa1\x0c\x53\xb4\x4f\x24\x8c\x65\x80\x4a\x2f\x45\x95\x54\x82\xa7\x80\x82\x3e\x76\x43\x05\x94\xba\x7b\x4c\x06\x90\x01\xdf\x4f\xb8\xa8\x10\x5b\x28\xa9\x97\x12\x49\x71\xa4\x23\xaa\x2c\xd2\xa1\x0a\x22\x75\x2c\x85\x74\xb8\x2b\x1b\x57\xf8\xe8\x10\x1e\x99\x0e\x8e\xce\xc5\x8e\xe2\x72\x8f\xc5\x15\x38\x3a\x54\x69\xa3\x98\xa2\x46\x91\x51\xc2\x31\x85\x8c\x62\x53\x34\xc2\x8b\x17\x45\x01\xdd\xaf\x6e\x1f\xd0\x09\x56\x9e\xa8\x7f\x5f\x50\xdb\x5e\x9d\x63\x14\xa0\x26\x46\x5c\x45\x8c\xf8\xdc\xf3\xe0\x6a\x18\x51\xb5\x30\xa2\x2a\x61\x74\xa9\xe0\xd0\xb1\x0a\x46\xf7\xa9\xa2\x2a\x60\x74\x9b\x26\xbe\xfa\x45\x77\x74\x3a\x55\xbe\x88\xaf\x9d\x15\xbd\x49\xdd\xa6\x00\x6f\x4e\xfc\xf0\x71\x9b\xd2\x0d\xfc\xe8\xcd\x80\x53\x18\x60\x95\x0b\xa8\x3b\x5e\x80\x60\xc1\x89\x55\x1c\xa1\xfa\x66\x6a\xc5\x1d\xcf\x3b\x04\xfc\xe8\xf3\x1e\x57\x69\x2a\x6a\x13\xe2\x87\x06\x2d\x7e\xdc\xb0\xf0\x45\x8f\x07\x37\x6a\xb1\x61\x54\x00\x48\x54\xfa\x0f\x74\x89\xd0\xa0\x47\x94\xc8\xe9\xab\x38\x4e\xdc\x7b\x08\x5e\x10\xa7\x97\x52\x38\x87\xcf\x92\x04\x2f\x7c\xd3\x6b\xc9\x9b\x17\x48\xff\x04\x2d\x70\xd3\x5b\x69\x9b\xc3\x3c\xe2\xe2\x0b\xd9\x1c\xa0\x84\xcd\xe1\xdc\x6c\xba\x16\xac\x39\x8c\x67\xef\xa1\xb1\x8d\x2e\x38\x13\xa9\x4e\x86\x17\x99\xe9\xbf\xbc\x4c\xef\x1a\xdf\xc8\x62\x32\x70\x42\x1e\x53\x40\x26\xda\x43\x18\x40\x2a\xba\x15\x8d\x01\x27\xd7\x8b\xad\x2e\x10\x53\x57\xe0\x10\xfe\xc3\xb6\x45\x94\x85\x79\x99\xe2\x50\xf0\xea\x03\xfb\x95\x7f\xe9\x52\xf8\xe5\x20\x9e\xc6\x6e\xe8\x3d\x8a\xbd\x44\x16\x44\x88\xea\x0e\x4f\xe7\x08\x2e\xea\x12\xed\x8d\x0c\x51\x98\x83\x0b\xb9\x18\x9f\x64\xc0\x88\x7b\x94\x70\x89\xcc\x85\x1e\x53\xb6\x05\x5e\xb0\xe5\x30\xa5\x5a\xbe\x23\xd2\x19\x57\x8c\xe5\xb5\x11\xbf\x97\x80\xe7\x20\x84\x02\x38\x28\xa4\xac\x0a\x24\x59\x26\xb4\x94\x0a\xb8\x88\x0a\xa8\x7c\x0a\xbc\x70\x0a\x68\x4b\x00\x6b\x06\x2f\x93\x02\xbb\x6c\x71\xa5\x51\xfa\x28\x8a\x02\xcd\xe0\x1a\x5d\x08\xa5\xbb\xd7\x75\x88\x18\x77\xaa\x97\x11\xc1\x1d\xa0\x32\x4a\x64\xa9\x13\xb8\x9d\xbe\x03\x00\x11\x85\x4d\xba\x79\x69\x87\xc4\x90\xbd\x8a\x99\x1c\x60\x73\x60\xb6\xfc\xfe\x7d\xb8\xb7\xa1\x0c\x67\x26\x8e\x2c\x42\xd2\xff\x11\x8a\x2b\x39\xd2\xf7\xfc\x00\x0a\xeb\x2f\x2d\x02\xa3\xaa\x90\x72\x22\xbd\x01\x7c\xcc\x78\xde\xd8\x8e\x19\xcf\x5f\x70\xf6\x63\xc6\x73\x74\xcc\x78\x7e\xcc\x78\x1e\x0d\xe3\xab\xca\x78\xee\x9f\xa3\x85\xcd\x1c\x86\xc1\x78\x58\x4b\x30\x23\x11\x88\x9d\x80\xf6\x28\x1c\x14\x0a\x65\x1e\x7b\xdf\xf8\x9e\xe0\x05\x31\x89\x7e\xe6\xf2\xb1\x04\x7f\xe4\xb3\x9f\x0d\x04\x18\x40\x80\xf4\x83\x88\x7e\x10\xb7\x30\xa1\x7f\x25\x1b\xee\x21\xe8\x1d\x49\xb9\xbe\xe3\xad\xf4\x27\x48\xc4\x7b\xc2\x0a\x46\xb2\x03\xc4\x1a\x48\xa6\x01\x04\xda\x4f\x9a\x83\x85\x24\x6a\x3f\x35\xfe\x59\x2a\xac\x8a\x0a\x3a\x2d\x5f\x3f\x0d\xee\x8b\x19\x11\x8c\x28\x22\x07\x65\xe8\xc9\xa0\x60\xf7\x8c\x3f\xb2\xc1\x9c\x92\x2c\x95\x95\x77\xef\xce\x38\x0f\x44\xc8\x32\x2e\x61\x60\x5d\x32\xd0\xc3\x8f\x38\xcb\x97\xf8\xbd\xf9\xc2\xc6\xb2\x6c\x0d\x21\x15\x17\x78\xb1\x79\x4c\x6f\xbe\x9a\x11\x85\x7f\x0c\x7c\x34\xc7\x99\x24\x6f\xde\x0c\x06\x83\x37\x38\xa7\x9f\xed\xec\xa7\x08\xe7\x94\x3c\x29\xc2\x0c\x2c\xc3\xfb\x7f\x97\x43\xca\x4f\xca\x11\xef\x29\x4b\x4f\xd1\x79\x21\x15\x5f\xdd\x12\x6b\x4e\xbd\x20\x73\x13\x58\xc3\xd9\x9b\x15\x51\x38\xc5\x0a\x6b\x14\x30\x63\x5c\xe1\xad\x48\x8b\xbf\x2c\x49\xb6\x1a\xca\xe5\x89\x70\x1f\x0e\x4c\xc8\xee\xf3\x5f\x4e\x8d\xeb\xfc\x1b\x84\x32\x3c\x23\x25\xb7\xc3\x79\x7e\x8a\xa8\x54\x94\x0f\x72\x9a\x71\xbb\xd0\xc9\x12\x0b\xe5\xfe\x6c\xfe\xb0\x24\x82\x2a\x83\xcd\x94\x66\x99\x7b\xcf\x09\x92\x11\x2c\xc9\xa6\x9f\x5d\x15\xc2\x1e\xf8\xf3\x9c\x66\x8a\x08\x39\x64\x44\x3d\x72\x71\x4f\xd9\x62\x68\x7a\x0d\x29\x7f\x23\x73\x92\xe8\xc9\x17\x82\x17\xf9\x29\x6a\xea\x62\xc7\x72\x20\x6a\xc6\xb3\xe0\x9b\x70\xab\x81\x83\xd7\xc1\x36\xd8\x1a\x61\x50\xf9\xc5\xae\xe2\xa5\x86\xe7\x83\x81\xc7\xfc\x35\xa3\x52\xfd\xba\xfb\xcb\x15\x75\x75\x66\xf3\xac\x10\x38\xab\x62\x61\xf7\x93\xb2\x45\x91\x61\x51\xf9\xe9\x0d\x5a\x07\x3f\xdd\xd9\x03\xf8\xa1\x7a\xfe\x64\xc2\xf5\xe1\x33\xf7\x38\xc7\x89\xd1\xc5\xc9\x62\x56\x6e\x8d\xc3\xc8\x9d\x7d\xf4\xbf\xff\xd2\xe7\x13\x67\x34\xc5\x1b\xe5\x27\xcf\x09\x3b\x1b\x8f\x3e\xbf\x9f\x24\x4b\xb2\xc2\xe5\x0d\x69\x92\x13\xca\x95\x2d\x5b\xd5\x78\x62\x8f\x13\xfd\x1f\x4d\xe5\x0c\xea\x5a\x6c\x99\xd3\x45\x19\x60\xb1\x20\x8c\x18\xb3\x2b\x9a\x3d\xa3\x91\xd9\x0a\x34\x21\x04\xad\xb8\xa8\xaa\x90\x52\xa2\x30\xcd\x24\xd2\xd4\x65\xa9\x54\x2e\x4f\x4f\x4e\xca\xad\x3b\x49\x79\x22\x4f\x04\x99\x13\x41\x58\x42\x4e\xec\x14\x27\x9b\x2d\x3a\x31\xcb\x37\xb0\xeb\x37\x5c\xaa\x55\xb6\x6d\x81\x69\x93\x7e\xec\x30\x63\xac\x92\x65\x9d\x20\x56\x6d\x23\xcc\x64\xda\xd2\x40\xa3\xdc\xf6\x47\x8f\x54\x2d\xd1\x4a\xff\x43\x0f\x64\xcd\xad\x35\x85\x53\x0b\x39\xf5\xcb\x63\x38\xcf\xb3\xe7\x69\x8b\xb9\xa3\x5d\x0c\x18\xa0\xd1\xf5\xe7\xb3\xab\xd1\x45\xcb\xaf\x57\xa3\xc9\xf4\xf2\xfa\xf2\xb6\xe5\xe7\x0f\xa3\xab\xe9\xe5\xed\x97\xf3\x8f\x67\x2d\xe6\x80\x01\xba\xbe\x9c\xfe\x76\x73\xfb\xeb\x17\xdb\xb5\xa5\xd3\xc7\xe9\x74\xec\xef\x71\x7b\x73\x37\xbd\xfc\x72\x7e\x73\xfd\x61\xf4\xf3\xdd\xed\xd9\x74\x74\xd3\x36\xe1\xe7\xd1\xad\x66\xf8\x5f\x3e\xde\x4c\x9a\x43\xb8\xdd\x74\x66\xc4\x96\x0e\xe7\x57\x77\x93\x76\x58\x2e\xff\x6b\x7a\x79\x3d\x19\xdd\x5c\x3b\x78\x3c\x2f\x80\x56\x76\x66\x0e\x41\xf3\x9e\xec\x58\xc5\xf5\x61\xe1\xcc\x50\x0b\x7d\x2f\x4e\x04\x37\x89\x92\xb6\x6f\xcc\x49\x92\x15\xb2\xd5\x27\xc8\xe3\xc0\x1c\x70\x5b\x0e\x38\x2b\x43\x1d\xb7\x4b\xd0\xf7\x1e\xc8\xa0\x7e\xbe\x8d\xf9\xde\x43\xba\x95\x6b\x59\x9d\xd0\x18\x01\xdc\x20\x03\x00\x71\x82\x0c\xe5\xc3\x05\x90\xd9\xc2\x7e\x0d\x54\x71\xae\xcf\x25\xb1\x04\xdc\x7e\x8c\xb0\x72\xb6\x6f\x8f\x1a\x1d\xa8\xda\x0d\x6a\xd7\x6a\x61\x7a\xe4\x09\x27\xca\x7c\xb8\xf6\x7b\x74\x60\x29\x6e\x2f\xdc\x4b\xeb\x3c\x72\x2e\xd4\x35\x40\x47\x5d\x43\xc5\xbd\xcb\xcd\x00\xe6\x61\xff\xb8\xa4\xc9\xd2\xe6\x92\x2b\x91\x7a\xc4\x21\xdb\xcd\x9a\x91\x42\x6c\x1a\x61\x93\x82\x03\x2a\x12\x95\x79\x91\x65\xcf\xe8\x8f\x02\x67\x74\x4e\x8d\xbe\xc2\xa2\x66\xf6\xc9\x3a\xdd\x06\x8d\x50\x5e\xfa\x56\xb6\x83\xa8\xac\x24\x09\x58\x4e\xea\x5b\x67\x3e\xda\x4e\x52\x62\xb8\xbe\xda\xec\xea\xcb\xa2\x01\xb0\x6c\x24\x9c\x29\xf2\xe4\x41\xb4\x8e\x64\xe9\x9a\x6a\xf9\x50\x79\xd2\xb4\xf4\xe6\x06\x5b\xdf\x39\x0f\x06\x3e\x13\xb6\x5f\x8f\x3d\x40\x67\xd7\xff\xed\xf9\x75\x32\xba\xb8\x3c\x3f\xbb\xfd\x32\xba\xfe\xe9\xe6\xee\xba\x59\xba\xa9\xf6\xbc\xb9\x9b\x86\xba\xfe\x7c\x36\xbd\xfc\xed\xac\x7d\x5a\xc0\x76\x94\xec\xa2\x1b\x95\x2d\xbf\xee\x91\xcc\x5a\xf1\xf7\x7c\x89\x69\x20\xa1\x46\x03\x5c\x5b\x1e\xca\x76\x18\xfd\x5e\xa3\x0c\x51\x86\xf0\x1a\xd6\xbe\x72\x0d\x68\x01\x97\x26\xe6\x88\x95\x79\x26\x62\x23\xfa\xcf\xf4\x10\x44\x5a\x97\x2d\xc5\x91\xa4\x29\x49\xb0\x00\xf8\x05\x1e\xce\x95\xda\x2e\x5c\x24\x22\xfa\x06\x96\x6c\xae\xbe\x09\x8a\xdb\xd7\x40\x70\x4c\x9b\xe8\xce\xbc\x4d\x90\xe2\xaf\x24\xc6\xc4\xb0\x0c\x8b\x88\x41\xb1\x24\x23\x5e\x62\xb1\xdd\x0e\x1f\x93\x21\x8b\xd9\x07\xe0\xb6\xa1\x0e\xde\x78\x31\x4b\x87\x7a\x5f\x3e\xd4\xd5\x19\xae\x8b\x7b\x5e\xbc\x43\x1c\xa8\x33\x6c\xfd\x9a\xaf\x14\x96\x92\x2e\x98\x4d\x3b\xa6\x36\x8b\x69\x28\xdb\xd7\x24\x14\xa0\xca\xfe\x35\x94\x26\xd7\x23\xf4\x80\xb3\x82\xa0\x42\x5a\x7d\x0a\xae\x60\xf4\x16\xe2\x0c\xbc\xa3\xb0\xf8\xaa\xe9\x6c\x05\x66\x52\x0b\xc5\x1d\x73\x0d\xed\xb2\x80\xdf\x77\x04\x85\xdf\x4b\xf1\xe5\xeb\x21\x09\x3c\xe7\x91\xef\xa3\x1a\xc7\x5e\xcb\x12\xb3\x67\x44\x95\x34\xe3\x7d\x95\xe7\xd1\x57\xf0\xa2\x80\x3e\xcb\xfa\xf3\x75\x12\xfc\xc9\xe3\xab\xd0\x2c\xf3\x6d\xf8\x46\xed\x31\x81\xed\x88\xfb\x0a\x7f\xdb\xea\xfb\xf6\xd6\x25\x2e\xe4\x90\xa6\xf9\xe0\xd5\x30\x6b\x53\xda\x37\x5e\xdb\x5b\xab\xae\xef\xe9\xf6\x16\xb0\x69\x19\xeb\xba\xc0\x1e\xdf\x06\xce\x71\xf4\xa5\x6f\x67\x24\x65\xbb\x6d\x58\x83\x38\xd1\xe7\x6b\x11\xb6\x3a\x67\x4a\x4c\xf0\x8e\x0d\x29\xe1\xa2\x7c\x70\xc2\x78\xd2\x6b\x27\x93\x08\x3d\x2c\xb9\x0c\x68\x53\xe0\xb2\x32\x4c\xc6\x3b\x9c\x24\x62\xae\x5e\xa4\xf4\x51\x63\xc2\xf6\xfe\x6a\x92\x4e\x6d\xc0\xea\x03\x15\xaa\xc0\x90\x74\x87\xb0\x14\x72\x71\x6f\x0f\x0c\x4c\xac\xd9\x8a\xd8\x06\x9f\x0d\x8e\x18\x9a\x55\x13\xb9\x0d\x80\xbd\x53\x60\xc9\x7c\x51\x50\x57\x54\xed\xd9\x6e\x14\x6a\xe8\x7b\x79\x31\xba\xbd\x3c\x0f\xe7\x09\x46\xce\xdb\x46\x77\xfe\x72\x7b\x39\x19\xdf\x5c\x4f\x60\x93\x44\xbe\xa8\xe0\xef\xc6\x43\x3f\x92\x5f\x38\xb9\x5b\xa0\x43\x0e\x34\xb6\x4d\xb7\xd4\x21\x56\x87\x82\x70\xc6\xd9\x62\xa3\xc1\xd5\xb7\xc9\x13\x7b\x13\xbe\x6e\x4e\xdf\x96\x61\x09\x75\x26\xbf\x20\x8a\x88\x15\x65\x44\x6e\xbf\x47\x29\x93\x7a\x22\xce\x10\x17\xde\xdc\x07\x21\x3d\xea\xdd\xf5\x64\x7c\x79\x3e\xfa\x30\xba\xf4\xa9\x3e\xcf\xee\xa6\x1f\xdb\xe3\xb8\xec\xef\xff\xcf\xa7\x65\x9d\x9e\x4d\xdb\xdd\x99\x00\x47\x6b\xbd\xf0\xf1\xab\xb6\xe4\x8f\x5b\x8a\x2e\x9b\x82\x1c\xcd\x88\xd5\x28\xfa\x6c\x23\xa1\xa5\xf3\x99\xce\x6d\x8f\x4f\x97\xb7\x3f\xb7\xdf\xf4\x01\x3a\xbb\xf0\x7d\x7d\x7b\xf9\xe9\xe6\xb3\xef\xf3\xd1\xf5\xe4\xf2\x76\xfa\xe5\xa7\xcb\x0f\x37\xb7\x80\x7e\x67\x1f\xda\x6c\xda\x95\x6e\x1f\x46\xb7\x2d\x96\xf3\x12\xac\xf1\xd5\xd9\x79\xfb\x7c\x80\xdd\x34\x2a\x89\x08\x73\xc3\x2f\x93\x9b\xeb\xd2\xd4\xe0\x4c\x7b\xf6\xb2\xa3\x19\xa1\x6c\xe1\xfc\x2b\x3c\x5b\xb9\x1f\x05\x09\x7a\x96\xd5\x5d\xd2\x1e\xb9\xb8\xcf\x38\x4e\x27\x24\x23\x89\xe2\x35\x09\xca\x47\x29\xb6\xdd\xa2\xaa\x0d\xfe\x14\x03\x10\xf8\xee\x05\x67\xbe\x4b\x77\xba\x3f\x8f\x63\x9c\x7b\xd7\xbd\x0a\xa7\x38\x17\xde\x68\xfe\xb2\x71\x88\x73\x7f\xad\x39\xc3\x95\x90\xdb\xed\x5b\xba\x57\xd6\x7a\xe6\xc5\xa3\xfd\x61\xed\x21\xb7\x58\x8f\xde\xe2\x1d\x67\x7d\x22\x5f\x99\x7b\x5c\xf5\x39\x3f\x9f\x93\xc4\x04\xd8\x93\x74\xb1\x93\x78\x76\xe3\x16\x57\xba\xc2\x55\x2e\x6a\x37\xb7\x38\xb7\x66\x60\x8f\x38\xd9\x42\xe1\x60\xb4\x2a\x40\xa7\x3c\x34\xaa\x95\x3e\x59\x37\x6a\xbf\x73\xde\x99\x39\x6c\x9a\x97\x38\xa7\xeb\xf2\xb9\x82\xfb\x73\xc9\x9b\xe9\xa3\x7c\x20\xe2\x9c\x92\x39\x2e\x32\x75\xc9\xd2\x9c\xd3\xb6\xe0\xce\xfd\xa7\xd1\x8f\xcc\x16\x06\xd3\xea\xeb\x68\xbe\x41\xe4\x29\xe7\xce\xe2\x60\x9c\x56\xca\x53\xd5\x38\x96\xd7\x81\xbc\x1f\x57\x76\xbf\xeb\x78\xfb\xc3\xa9\x7a\x6a\x18\xe2\x2e\xf1\x47\xc5\xcd\xc8\x9e\xa1\x77\xe8\xb1\x4c\x8a\xbe\x2a\xa4\x16\x4d\x5a\x80\x2d\x18\xfd\xa3\x20\x08\x27\x82\x4b\x89\x70\x96\x95\x47\xb6\x79\x75\xf6\xdf\xc6\xf6\x50\xdb\xf0\x83\xc5\xff\xa6\xac\x66\x9d\xd3\x5c\xab\x66\x40\xd3\x93\xb7\x0b\x66\xfd\x05\x07\x84\x62\x81\x77\xee\xbf\x21\xdf\x88\x71\x36\x60\x64\x81\x15\x7d\x20\xa5\x06\xcb\x3a\x5d\xd9\xe1\x42\x12\xa5\x5f\xe9\x95\x07\x8d\x54\xf5\xe7\x67\x59\xf5\xa2\xbc\x40\x2e\x93\xd9\x4b\xad\xa2\xc2\x62\x41\xd4\xd8\x1b\x9b\x1d\x46\x3d\x14\xfe\xd6\xe6\xba\xb1\x9b\x7c\x5d\x5f\xb0\xed\x58\x37\x7b\xfb\xf4\x43\x18\x2b\xb4\xe0\x0f\x44\xb0\xad\x0b\xd8\x6a\xcc\x9c\x91\x25\x7e\xa0\xbc\x65\x37\x01\xae\x91\xc0\xc8\xe9\x1e\xe2\x4d\xfb\xdb\xc9\x84\xe6\x4b\x22\x26\x05\x85\x83\xbc\x95\xd6\x68\x34\x2f\x59\x22\x49\xdf\x59\x8d\xb4\x2c\x72\x73\x33\xd4\xc6\xff\xcb\x9b\xd2\xc3\x02\x60\x18\xad\x27\xb9\x51\x30\xd2\xb3\xdf\x32\xe5\xe1\xe8\x4e\x68\x80\x77\x7f\x3b\x65\x64\xb4\x5b\x92\x52\x41\x92\xe0\xb5\xf3\xe7\xb5\x5a\xe1\xa7\xd2\x32\x1e\x34\x80\xb5\x6d\x7d\x59\xf8\x44\x5f\xbc\x35\x39\x72\xaf\x2b\xcf\x46\x86\xb4\x25\xd3\xab\xc9\x97\xb3\xbb\xe9\x8d\xbf\xcb\xe7\x1f\xbf\xfc\x3d\xd8\xe3\xc7\x60\x8f\xf6\x1c\x16\x65\x8f\xf7\xfb\xec\xd8\x8a\xb2\xfd\x97\xd9\xa5\xf5\x39\x2e\x73\xfb\x32\x7b\xb3\x1d\x84\x56\x02\x92\x32\x2a\x98\xe5\x20\x98\xe1\xc0\xe8\x3e\x6f\xbe\xc0\x26\x03\x25\x42\x00\x2c\x0c\x24\x01\x42\x98\x19\x59\xd4\x7f\xd7\x92\xfb\x4b\x32\x26\xcb\xac\x41\x99\x40\x5e\x2f\x0e\xd0\x64\x06\xaf\x8e\xbd\x3d\x10\x41\xe7\xcf\x5b\xab\xef\xcf\x7c\xfe\xfa\xe1\x9f\xe4\xf7\x1e\xcf\xb8\x57\x06\x7f\xbf\x6a\xe6\x6f\x5b\xe1\x7a\x8c\x5f\xf6\xab\x69\x5d\xb4\x08\x61\xa6\xc2\xa3\x57\x59\xbb\xad\x6b\x33\x79\xce\xce\x79\x56\xac\xca\xad\xf9\x65\x72\x73\x3d\xc6\x6a\x79\x8a\x86\xfa\x83\xa1\xd1\xd0\x98\x99\x6b\xcf\x4f\xab\xbc\x69\x8a\x5d\x99\x58\x68\x2e\x99\x12\xf6\x08\x5a\x20\x3f\xae\xc7\xda\xb9\x1f\xf5\x69\x33\x9e\x6c\xe2\xdb\x2a\x33\xff\xb6\x24\x4a\x3f\x15\xb6\x62\x64\x4c\xd6\xc0\x27\x45\x04\xc3\x59\xa9\x49\x58\x11\xb9\xd4\x84\x3e\xc7\x42\x95\xaa\x17\xf3\xb7\x1f\x3e\x5d\x4e\x3e\x7e\xb9\xfc\xaf\xe9\xe5\xed\xf5\x9a\xb1\x72\x81\xcc\x9f\x47\xd7\xf6\xcf\x7f\xdb\x82\xfa\x6a\x1b\x94\x20\xe0\x7a\xff\xb3\xa2\x19\x74\xb7\x2c\x28\xa5\x32\xd1\xef\xd1\x67\xcb\x9a\xca\x62\x02\x76\x3d\x7f\xb8\xbe\xb9\xbe\x7c\x67\x8c\xa0\xa3\xf3\x77\x1a\xb2\x8b\xeb\xc9\x36\x3c\xb7\xd5\x19\x7c\x10\x95\x47\x76\x98\x08\x82\xcb\x6c\x92\x52\xe1\x55\x5e\x07\xee\xed\xf9\x6e\x1f\xbd\xac\xd8\x54\x74\xb3\xff\x14\xc4\xe5\xa0\x28\x0b\x9b\x39\x75\xa8\x29\x1e\xf0\xb8\x24\xe5\x3b\xc3\xe8\xf0\x9c\xc9\xed\x11\x4b\x64\x26\x27\xe9\x10\x8d\x4c\x7e\x47\xc6\x15\x5a\x14\x58\x60\xa6\x88\xd5\xfc\xd8\xa4\xb6\x88\x32\xb4\xc4\x79\x4e\x98\x1c\xb8\xbc\x83\xc6\x5c\xed\x46\x75\x1a\xb0\x32\xcd\xf6\xc6\xc8\x2b\x87\xc8\x96\x14\x95\x68\x85\x9f\xcd\xf0\xb6\xe8\x20\x95\xd6\x76\x58\x4e\xbc\x86\x7f\xfd\x12\xa5\x0c\xdd\x7e\x38\x7f\xff\xfe\xfd\x7f\x18\xd2\x6e\x12\x16\x53\x93\x70\xf8\x6e\x7a\x3e\x44\x63\x9e\x17\x59\x19\x5b\x6e\x10\x7e\x96\x8a\xac\x86\xe8\x96\xe0\x74\xa0\xdf\xb9\x43\x74\x5d\x64\x99\xfe\xd8\x8d\xa8\x1f\xb0\x72\x88\x3e\x69\xe8\x29\x9b\xf3\x8d\x52\x7d\x41\x55\x49\x70\x12\xbe\x5a\x15\x8c\xaa\xe7\x13\x53\x2a\x8e\xce\x0a\xc5\x85\x3c\x49\xc9\x03\xc9\x4e\x70\x4e\x07\x09\x67\x0f\x7a\x9d\x35\x72\xab\xf4\xaf\xe5\x36\xbe\xdd\x3a\x05\x67\x0b\xb2\xb5\xfd\x29\x36\x19\x84\x5f\xc8\x0e\x53\xbb\xde\x1b\x63\xcc\xf6\x4f\x35\x8b\x4c\x95\x48\x59\x82\x5d\xb3\xcb\x48\x47\xc9\xd7\x76\x99\xad\xaf\xbe\x13\xe3\x4c\x49\xb6\x04\x59\x50\xa9\xc4\xf3\x41\x4c\x33\x6e\x92\x81\x59\x37\xb0\x81\xc6\x95\x3e\x08\xa4\x2b\x98\x6e\xbc\xcf\xb6\xea\x25\x34\xf8\x1e\x7b\x02\x19\x5b\x84\xad\x7d\x6d\x3c\x75\x71\x8a\x38\xbb\x07\x3c\x03\xc3\xfa\x8b\x1e\xf0\x09\x64\x62\xb0\x2b\x77\x28\x93\x4c\xbb\x73\x40\x9c\xa7\x76\x3f\x66\x95\xd6\xf5\xb6\x60\x36\x2e\x76\xb9\x15\xcd\xef\xb4\x80\xea\xb8\x4c\x6c\x0f\xf4\xe6\x5a\xe7\xc1\x8f\x07\x64\xff\xad\x72\x37\xf7\x50\x27\x21\xe7\xa2\xcd\x38\x17\x73\x10\xc2\xda\xfc\x26\xad\xbc\x99\xbc\xff\xed\x75\x17\xf1\x2c\x49\x78\x71\x38\xb3\xa6\xad\x07\x01\x3e\x42\xdb\x15\x14\xdc\xb7\x9d\x31\x6f\x5b\xe7\x0e\x2e\x46\xe4\x49\x6f\x42\x3d\xe7\x4b\x8b\xa1\x9b\x95\xec\xd3\x64\x06\xdc\xca\x27\x50\x91\xb8\xf5\x90\x75\x47\xaa\x17\x23\xec\x8d\x06\xe7\x8e\xaf\x94\xaf\x86\x44\xf9\xd0\xd9\x9d\xab\x49\x61\x39\x40\x4d\x6f\x97\x9d\x5f\xcb\x27\x4c\xe3\xfc\x0d\xa0\x35\x52\x86\xba\xa9\xb1\xfd\x0a\x97\x0f\xaf\x3e\xf9\x22\xd0\xc6\x1e\x6b\x44\xee\x81\x4c\x7b\x0c\xc7\x3d\x1a\x8d\x43\x74\xd6\x6f\x2c\xee\xc1\x50\xdc\x83\x4b\x60\xc0\x38\xdc\x3b\x89\xdb\xbc\xbc\xbd\xa7\x19\xf2\x08\xdf\x5d\x93\xe6\xcb\xa8\x1f\xea\xb5\x3f\xda\x77\x7b\xed\xcf\x17\xd7\xbb\x1e\xcd\xad\xcb\x17\x50\x17\xbf\x18\x65\x0a\x79\xa5\x06\x23\x92\x2a\xe4\xa8\x24\x0f\xb5\xb5\x3d\x3a\xb7\x1e\x75\xad\xdf\x98\xae\xb5\x4c\x05\xf2\x0a\x5c\x62\x27\x16\x96\x5d\x2d\x8c\xfd\x6b\x5d\x01\xe3\x20\xdf\xd5\xb0\xac\x07\xf9\x0e\x94\x2b\x6e\xbd\x90\x20\x38\x59\xe2\x19\x35\x2f\x3a\x9b\xfb\xc4\xa2\x59\x25\x40\xbb\x9a\x97\xae\xda\x16\x37\x36\x54\xcf\x42\x16\x4d\xef\xfe\x57\xe7\x3a\x9a\xe0\x5c\x15\x82\x7c\x6a\xb5\xad\xfb\xb2\x45\x5e\x5c\x7e\x38\xbb\xbb\x6a\xcb\xab\x38\x1a\x4f\xcf\x7e\xba\xba\x6c\x0e\xf4\x69\x64\xae\x20\x88\x3d\x5e\xa8\x5f\xdd\x73\xb4\xdd\xb5\xb2\x51\xde\x6e\x14\xb7\xfd\xa9\x92\x8e\x2e\x9a\x47\x17\xcd\x6a\x97\xc3\xbb\x68\x76\x10\xd5\x29\x7b\x09\xf2\x57\xdb\x8c\xd1\x78\x5b\x9b\xb1\xb9\x4b\x5b\x71\x7e\x33\x5e\xb0\x96\xd0\xb0\x3f\x23\x35\x7d\xa1\xd0\x81\x23\x61\x2c\xdb\x91\x30\xfe\xa9\x09\x23\x2f\x94\xa1\x40\x53\x5b\xc1\x78\x6c\xde\x35\xde\x87\x77\x55\x0c\x2e\xb5\x18\xe5\x38\x65\x29\x64\x64\x5f\x48\x31\x6f\x6f\x2b\xa1\x8e\xdb\x92\x11\x85\x2e\x94\x2f\x7d\x87\x2f\x3f\xa1\xd3\xce\xac\x2b\x08\xd6\x6c\xa5\x07\x95\xdf\x7c\x75\xe6\xaa\x5a\x24\xe7\xd3\x2e\xd7\x87\xb6\x3c\xc0\xa6\x52\xa2\x89\x39\xa0\xd2\x45\x1c\x97\xf6\xd1\xd6\x98\x63\x48\xe6\x8d\x70\xf9\x3a\xc8\x4d\x0d\xc6\x36\xfb\xd3\xd8\xfa\x76\xce\xa6\xb2\xdd\xca\x4f\x12\xc8\x60\xdb\xc7\x8e\x79\xd1\x69\xf3\x08\x6e\xe3\xb2\x03\x74\x7b\xf9\xf3\x68\x32\xbd\xfd\xef\x2f\x37\xd7\x57\x4d\x59\x40\x06\xe8\xec\xea\xea\xe6\xb7\x2f\xcd\x39\x42\xba\xc4\x1f\x1e\x43\xbf\x5d\x3b\x6a\xc7\xbe\x13\xed\x98\xf3\x0b\x59\xab\x7b\xfb\x73\x45\xac\x04\x74\x37\x52\x22\xb9\x55\xc2\x56\x1a\x6f\xae\x52\xe3\x65\x29\xb2\x93\xf3\x6d\xb6\x16\xb5\x24\x92\xd8\x2c\x44\x76\x48\x0b\xff\xcf\xdb\xb3\x04\xdd\xfd\x3c\xee\x91\xe9\xa6\x26\xbe\x33\x42\x6e\x1e\x1f\x8e\x2b\xaf\x39\x84\x24\x4c\x6d\xc1\x00\x73\x94\x3c\x7a\xf7\x1d\xbd\xfb\x0e\xa0\x52\xfe\x6c\x2f\xb0\xb3\x93\xbd\x41\x15\xcd\x72\xf5\xc7\x9a\x82\x79\xe7\xf2\x5b\x4a\x58\x73\xf1\x7b\xd8\x55\x40\x57\x3f\xfb\x3e\xf4\xd0\x86\xca\x9a\x23\x40\x98\x32\x64\x86\xb2\xc5\x3b\x24\x19\x5d\xff\xa3\xc2\x2e\x89\x4a\xea\x7e\x80\x1d\xb5\xd1\x6e\x3d\x07\xa5\x04\x06\xd6\x4a\xf7\xe4\x25\x52\xfa\x06\xbe\x26\x6f\x91\x92\x2d\x04\x5d\x1d\xba\x31\x92\x1a\x88\x96\xb1\xbc\x72\xe7\x98\x58\x1e\xf5\xf5\xd0\x51\x2a\xf7\x9f\x4a\x97\xdc\x8c\xa4\xeb\xe3\x69\x13\x0c\x8a\x22\x23\xb6\xde\xa9\xc9\x82\xea\xd0\xea\xc5\x4b\x25\xe1\x42\x36\x3f\xd1\x1b\x00\x3c\xd7\x0c\x6e\x70\x23\xe8\x42\xf3\x25\x47\xa9\xd0\x64\x89\x85\x49\x4a\x65\x86\x41\x3f\x9c\xdf\xdc\x4e\xfe\xd6\x55\x85\x85\xb3\x8c\x3f\x9e\xaf\x43\x92\xbd\x8f\x49\x50\xa9\x7d\x48\x14\xb1\x99\xf4\x23\xc1\x69\x43\x1a\x95\x4d\x7b\x65\xa1\x55\x0e\xec\x4f\x44\x2d\x79\x0a\x8d\x78\xbf\x72\xe7\xca\x9c\xa3\x95\xfd\xd4\x8e\x63\x05\x1d\x9c\x24\x44\x5a\x85\x40\xc9\x89\xda\x35\x59\xaf\x73\x41\xec\xf1\x8c\x50\xe3\x95\x77\x8d\x9b\x0f\x1d\x75\xc4\x82\x6c\xaf\x4b\x4e\x84\x46\xc6\x83\x82\x3e\xf5\xa6\x66\x15\x69\x70\xbe\xd9\xb4\xd7\xbc\x66\xd0\x43\x34\x51\xc2\x25\xa1\x53\x44\x94\x0b\x66\x53\x0f\x97\x4b\xe6\xd6\x72\x8f\x75\xf0\x54\x71\xb3\x2d\x50\xcb\xcd\x61\xe7\xaf\xe8\x56\x8e\x04\xa9\x9d\x56\xf6\x35\x55\xb7\x7a\x1d\x31\x17\x64\x4e\x9f\x7a\x1d\x52\x90\x05\xf1\x8d\x08\x1d\x2d\x8c\x2e\x7c\xa4\x20\x9a\xf0\xa1\x42\xe8\x41\xd3\x00\x1b\xe4\x42\xeb\x79\x98\xdc\xee\x76\x35\xbe\xce\xdc\x66\xf9\x42\x53\xef\xc4\xa2\xff\x03\x49\xf5\x9c\x11\xfb\xed\x60\x86\x25\x49\xdd\x9d\xff\x61\xeb\x01\xb9\x2c\x66\xc3\x84\xaf\x4e\x16\x9c\x2f\x32\x72\x22\xc8\x3f\x4e\x1e\xe9\x3d\x3d\x99\x3c\x33\x85\x9f\x5a\xa4\x82\xc3\xa2\x1b\x54\x17\x23\x10\x9d\xb4\x36\x9e\x6f\x4f\x48\x58\xe1\xa7\xb3\x85\xc7\x2a\x08\xf4\x07\x69\x5d\xbf\x94\x64\x64\xd1\x9a\xd4\xa0\x57\x9b\xa5\x7e\x2b\xaf\x33\xf1\x58\x21\x65\x3b\x2b\x59\x09\xc9\xce\x03\xff\x45\xec\x99\xe5\x2b\x32\x02\x13\xd3\xbf\x01\x1d\xfb\xf7\xc7\x25\x11\xa4\x82\x96\xe7\xa8\x54\x11\xd6\x92\x1b\x4d\x7d\xe5\x10\xfa\x42\x3c\x70\x34\x8c\xdd\x1d\xf0\xac\xf8\xa0\xfb\x21\xca\xf4\x30\xfa\x15\xe7\x1e\x12\xeb\x9c\xd4\x9c\x55\xde\x3d\x08\xb7\xdd\x63\x5b\x02\x93\x12\xa6\xcc\x5b\xb7\xf3\x1b\x64\xe6\x35\xa9\x06\x24\x13\x80\x5c\x02\x90\x4a\xe0\xec\x7e\x60\x1e\x96\x13\xa3\x28\xea\x6d\xc8\x85\xc8\x93\x9e\x87\xd4\x50\xfe\xe3\x52\x08\xbe\x7f\x5d\x5c\x00\xc2\xd0\xa1\x00\x88\xc6\x40\x15\x40\x10\x58\x87\x64\x0d\x93\x7f\x55\xfb\xaf\x80\xb1\x41\xe1\x6b\xcc\x0c\xc1\xb9\x42\x38\x0c\x55\xb0\x2a\x52\x94\xf0\xd4\x94\x40\x29\xa4\xf9\x8f\xb9\xc3\x86\x20\x7c\x54\x2a\x0f\x1c\x4e\xf7\x6c\x83\xd5\x1b\xa1\x4c\xbd\x6f\xcf\x03\x85\x80\x46\x6c\xdd\x72\x22\x12\xc2\x8c\x51\x0a\x8e\xf3\x78\xfd\x91\xd1\x0f\xb9\x07\xa7\x33\x52\x18\xac\x9d\x47\x51\x48\x7a\x5a\x12\x44\xf4\x4e\xdb\x95\xcb\x05\x7f\xa0\x69\xa8\x72\x2e\xbc\xbc\x46\x20\xe3\x79\xd9\xca\x45\x4d\x79\x31\xcb\x7c\x2c\xce\x01\x6d\x56\xd6\xba\x11\x00\xb6\x60\xdf\x32\x0b\x46\xba\xf1\x15\x04\x7a\x75\xac\x60\x4e\x9f\x48\x7a\xa1\x81\xee\x6d\x48\x2d\xf8\x32\xab\x8d\xf3\x0f\x0c\xa5\x93\x00\x18\xa1\x43\x81\x61\x83\x1d\xdc\xdd\xe1\xfc\x8b\x03\xa4\x6c\x1b\x74\x23\x6e\xf9\x59\x9a\x9a\xca\x85\x4f\x24\xb5\x67\x10\x39\x83\xe3\x9c\x8b\x47\x2c\xd2\xd2\xc0\x09\xa2\x5c\x40\x40\x1d\x39\xda\x9f\x16\x71\xb6\xe5\xa0\x9a\x06\x0f\x23\x42\x8f\x34\xcb\x34\xf9\xb2\x22\x20\x49\xd1\x0f\x7f\x1f\xfc\xf8\xf7\xbf\x07\x9e\x8b\xaf\x9b\x20\xef\xbd\x08\x47\x4a\x0c\xef\xb0\xf4\x3d\xcb\xc3\x4b\xe5\x36\xad\x7d\x91\x60\xab\x8d\xd3\x00\x39\xfd\xe6\x2a\x0b\x0a\xb2\xe2\x0f\x81\xc3\x13\xd4\x78\x1c\x1a\x0b\x9f\xf6\x03\x19\xbf\xa6\x10\x0f\xfe\xb6\xb6\x05\xd0\x49\x10\x99\x73\x26\x3d\x3b\x77\x3c\xd1\xed\xed\x78\xa2\x5f\xdb\x89\x0e\x74\x58\xb5\xd7\x3b\xf3\xee\x25\xe4\x12\xe0\x42\x2d\xb9\x68\xcd\xc0\x63\xdb\xd1\x58\xb5\xcf\x90\x47\x63\xd5\xd1\x58\xd5\xde\x8e\xc6\xaa\xdd\xd6\xe6\x06\xd6\xba\x20\xd7\x35\x77\xb0\x8d\x79\x41\x14\x19\xd9\x04\x0f\xfa\xb9\x4a\xa8\x80\x20\x88\x75\xf6\xaf\x3b\x84\x30\x4d\xef\x0b\xc1\xb6\x78\xa6\x19\x24\xfb\x40\xc2\x0f\x24\xfd\x71\x74\x15\x4a\xfe\xe3\x47\x05\xb1\x80\xf8\x61\x43\x74\x32\x56\x6d\x15\x42\x3d\x66\x34\x00\xca\x31\xc3\x85\x51\x85\xbf\xef\x41\x6c\xe1\x90\x95\xa1\x61\xcc\xe1\xa0\xb5\xa9\x21\x2c\xe2\xeb\x30\x89\xc3\xa1\x0d\x7c\xf0\x80\xba\xd1\x05\xe3\x82\xdc\x09\x7a\x8e\x7d\x8f\xc6\x5d\xbb\x6d\x86\x17\x48\x71\x67\xc3\x7e\xd6\x4c\x65\x9d\xd6\xfa\xee\x76\x64\x17\xd3\xb8\xdd\x1a\xf6\xe2\xc5\x66\x46\x50\x82\x25\x19\x50\x26\x09\x93\x54\xd1\x07\x6f\x5d\x6c\x88\x57\x27\x72\x0e\x8e\x47\xc1\xfd\x28\xb8\x77\x1a\xea\x28\xb8\xef\x35\xf7\x51\x70\xdf\x6d\xa1\x7a\xf5\xcd\xa1\xc9\xdb\x49\x1a\xb0\x5d\x0d\x1f\x86\xfd\x3a\x98\xf9\xa2\xc9\x6b\x20\xd7\x23\xca\x65\x7b\x48\x79\x48\x81\xe5\x0f\x37\x47\x60\xb3\xce\x1f\x05\x11\xcf\x63\x2c\xb0\xff\x61\x72\x94\xfe\x8f\xd2\x7f\x5b\xcf\xa3\xf4\xef\x03\xf5\x28\xfd\x7f\x05\xb4\x81\xd2\x7f\x05\xe9\xff\xd4\x94\x10\xe5\x9a\x14\x12\x45\x84\x8d\x28\x2b\x85\xf4\x30\xa1\x0d\x4c\x26\x93\x25\xf1\xb3\xb7\xa3\xb0\xbd\xcf\x90\x47\x61\xfb\x28\x6c\xb7\xb7\xa3\xb0\xbd\xdb\x6c\xf4\xe2\x95\xa7\x7c\x88\x6d\xf1\x82\xdf\xa1\x34\xd8\x20\x84\xae\xc3\xa1\x06\xbb\x52\xb9\x0d\xd3\xdd\xc4\x16\x24\x9c\x49\x25\x30\x65\xa5\x17\x19\x76\x99\xaf\x4d\xa2\x59\xbf\xcc\x3b\x47\xd8\x9a\x0c\x14\x5f\x27\xfe\x31\xf9\x28\x8c\x6c\xbf\x9e\xe3\xe5\x1e\x28\x85\xf0\x54\x43\x3c\xf2\x9c\xfd\x86\x3c\xf2\x9c\x23\xcf\x69\x6f\x47\x9e\xb3\xdb\x1e\xa9\x5a\xf2\x42\x05\xa3\x04\x8f\xea\x86\xa3\xba\xa1\xbd\xe7\x51\xdd\xe0\x03\xf5\xa8\x6e\xf8\x0a\x68\x77\x51\x37\x54\x88\x21\x5a\x62\xab\x15\x96\x26\x88\xd7\xe0\xb3\x4e\x7c\xec\x9d\xda\x7a\x6e\xbc\x43\xb3\x42\x99\x41\x78\x9e\x73\x49\x15\x41\x2b\x82\xd9\xfe\x8a\x0b\xa0\xef\x61\x9b\x77\xc9\x8a\xb6\x47\xcb\x85\xaf\x95\x2f\xc3\xec\x61\x72\xcc\xf6\x19\xf5\xec\xb7\x0d\x74\xce\x35\xeb\xe7\x9a\x21\xb3\x00\x8c\x96\x85\x33\xd1\x42\xcd\x0b\x80\x23\xe6\xcf\x47\xdb\x6f\x46\xda\x17\x0b\xee\xb6\x07\xff\x8b\x37\x68\xc8\x13\x27\xa3\x51\x29\xe3\xb9\x6d\xec\xa2\x1d\x70\x93\xca\xf0\x77\xfb\x87\xdf\x5b\x30\x30\x59\x52\x9b\x57\x01\x90\x19\x2a\xb4\xb7\x76\xee\xf1\x9f\x00\xb9\xd6\x60\xa7\xaf\x84\x5f\xf8\xfe\x06\x02\x9a\x80\x81\x4c\xc1\x00\xa6\xc0\xf9\x07\x96\xf7\x6b\xb4\xe2\x1a\xbf\x4b\x93\xd9\x6d\xce\x05\x4a\xc9\xac\x58\x2c\x4c\x46\xa5\x42\xe4\x5c\xb6\x65\x6e\xd8\x3f\xcf\xb1\x20\x29\x15\xa4\x4d\x80\xdb\xc9\x90\x68\x82\xab\x8d\xaa\x27\xc1\x0c\x11\x6a\x5c\x7b\xca\x11\x10\x17\x65\x28\x22\xfa\xc1\x55\x58\xf8\x5b\x1b\x87\x6d\x4e\x57\x67\x1b\x20\x1b\x43\xd8\x01\xbf\x3f\x96\x56\xe2\x77\xde\x5a\xdf\x02\x01\x39\x83\x57\x2f\xf5\x42\x34\x5a\x10\x25\x5a\x57\xb6\x2a\xa0\x12\x25\x9e\xcb\xc4\x1b\xeb\x44\x83\xfe\x74\x66\x80\xad\x53\x8a\xac\xf2\xb6\x5a\x46\x35\x20\xae\xcd\x65\xb4\x51\x94\x06\xf0\x32\xaa\xdd\x25\x15\xd3\x70\x61\xb4\xa0\x0f\x84\x85\x03\x5f\x61\xd1\xa1\x90\x9d\xcc\x89\x98\x8a\xe7\x29\x5d\x11\x5e\x80\xb9\xb8\xed\xad\xbf\x35\xc8\x3c\x97\x6b\x11\x87\x04\xe8\xc4\x2a\xf1\x7c\x03\xcd\x77\x57\x95\xc3\x12\xce\xac\x16\x42\xa2\x82\x69\x21\xdd\x46\xac\x5a\x80\x15\xbe\x27\xbe\xec\x1f\x79\xe6\xd5\xf3\xf6\x79\x27\x95\x78\xbe\x25\x2b\xae\xc8\x95\x2d\x6f\xed\x15\xee\xc0\x2e\x8a\xe5\x21\x73\xce\xef\x66\x1a\xdf\x5b\x82\x23\x6e\xbe\xcd\xd6\x40\xb4\x63\xdf\x5b\x72\xca\xe0\x0d\x7f\x14\xb4\x2d\xf9\xd2\xce\x0d\x37\x3d\xed\xc5\xbe\xbb\x1d\xd9\x94\xb0\x67\x25\x71\x2d\x1d\xe4\x0f\x48\xa5\x2b\xe0\x38\xc0\xcd\x46\xac\x81\x38\xf9\xa8\x1f\x03\x16\x92\xf2\x71\xb8\xce\x91\xfd\x02\x27\xed\x55\xd0\x6c\x2d\x17\xbc\x22\x06\xbd\x77\x00\xdd\x56\x7e\x5e\xdf\x7b\x0b\xaa\x83\xf2\x3f\x99\xd7\x53\xc6\x3e\x9c\x83\xaa\x92\xf0\xc3\xda\xb6\x03\xa9\xf9\x03\x6e\x78\xa8\xdb\x83\x3b\x88\x35\xb0\xf8\xcb\x1a\x4c\xb0\x22\x11\xf6\x04\xb7\x0d\x9a\xbe\x01\xc1\x15\x55\xe1\x47\xb9\x6d\xfd\x3e\xcd\x6d\xfb\x6a\xd6\x09\x40\x0c\x14\x74\x03\x83\x19\x13\xe2\x86\x43\x90\x58\xf3\x75\xb7\xe8\xd0\x66\xdb\x22\x75\xa3\x28\x4e\x2d\x8c\x62\x0e\x1f\x02\x46\xa2\xdb\x06\x8a\x47\xb7\xed\xa5\x70\x0c\x45\xa8\xdb\x06\xb8\x60\xe8\xfb\xd9\x52\x70\xd7\x70\x76\x06\xdb\x8e\xb7\xa7\xbd\x1d\x6f\x4f\xd9\xbe\x93\x2d\xed\x33\x9c\xed\x91\xd0\xc5\xd2\xbb\x78\xd0\xdc\x51\x10\xd1\x63\x4f\x0b\x92\xf2\x29\x16\x1a\x95\x0a\x35\xfd\xcc\xbb\xb2\xc8\x29\xa2\x12\xa5\x54\xea\x97\x67\x8b\xac\xe6\xdd\x40\x0f\x26\x6d\x38\xa8\x64\xef\x9a\x16\x3c\xc7\x7f\x14\x04\x4d\xcf\xfb\xad\x6c\x71\xc8\xa4\x20\x5b\x6f\x9a\x49\x31\x63\xc4\xa7\xe2\xda\x59\x90\xd1\xf8\xe1\xff\xe8\xc7\xd9\x68\xfc\xf0\x7f\x11\xcd\xd7\xb2\xb5\x89\xcf\xdf\xae\x65\x12\xcc\xe1\xc8\x73\x7b\xed\xb5\x24\xca\x88\x37\x07\xdc\xab\x0d\xcb\x3f\xa6\x32\x68\xea\xe6\x5f\xb3\x3d\x43\xb2\xbe\x7e\x44\xd6\xd1\x33\xf7\x4f\xe1\x99\x6b\x57\xc5\xd2\xc7\x7d\xc9\xa3\x46\xcf\x95\x1b\x32\x7a\xc1\x92\xf6\x85\x9e\xf8\x01\xba\xd8\x27\xc2\x7b\x8a\x01\x50\xbd\xdf\x6e\xc9\xab\x4a\x35\xf8\x84\x33\xe6\x92\xa8\x87\xe8\xa0\x53\x0e\x1a\x83\xe4\x51\xf3\xe7\x6b\x47\xcd\xdf\x51\xf3\xf7\x8d\x6b\xfe\xbe\xa1\x07\x51\x97\x37\x48\x5d\x8c\x38\xbe\x18\x9a\xda\xf1\xc5\x70\x7c\x31\x34\xb5\xd7\xff\x62\x60\xf4\x63\x53\x31\xd0\x76\x24\xae\x47\xe8\x07\x57\xfd\xd9\x10\x6e\xca\x52\x9a\x60\xc5\xc5\xdf\xb4\xc4\x64\x3d\xaf\x39\xfb\x26\x77\xf3\xf8\x7c\xfa\x13\x3c\x9f\x8e\xaf\x89\x06\xb8\x8f\xaf\x89\x96\x76\x7c\x4d\x1c\x5f\x13\x10\x7c\x8e\xaf\x89\xd0\x67\x8d\x1f\xc8\x5a\x61\xaa\x96\x71\x9f\x06\xf7\xc5\x8c\x08\x46\x14\x91\x83\x5c\x10\x23\x81\x0c\x0a\x76\xcf\xf8\x23\x1b\x18\xaf\x77\x59\x71\x09\xdc\x19\xe7\x81\x08\x49\xb9\x2d\xc4\x3b\xb0\x2e\xe6\xe8\xe1\x47\x9c\xe5\x4b\xfc\xde\x7c\x61\x06\x4c\xb7\x86\x90\x8a\x0b\xbc\xd8\xf8\x19\x6e\xbe\x9a\x11\x85\x7f\x0c\x7c\x34\xc7\x99\x24\x6f\xde\x0c\x06\x83\x37\x38\xa7\x9f\xed\xec\xa7\x08\xe7\x94\x3c\x29\xc2\x0c\x2c\xc3\xfb\x7f\x97\x43\xca\x4f\xca\x11\xef\x29\x4b\x4f\xd1\x79\x21\x15\x5f\x95\x35\xc0\x2f\xc8\x9c\x32\x23\x6c\xbc\x59\x11\x85\x53\xac\xb0\x46\x01\x33\xc6\x95\xa1\xd8\x6e\xf1\xfe\xb2\x24\xd9\x6a\x28\x97\x27\x65\x71\xe9\x81\x75\x39\xfe\xcb\x29\xba\x27\x24\x7f\x83\x50\xb6\x25\xd6\xe0\x3c\x3f\x45\x54\x2a\xca\x07\x39\xcd\xb8\x5d\xe8\x64\x89\x85\x72\x7f\x36\x7f\x58\x12\x41\x4d\x14\x03\x9a\xd2\x2c\x73\xc7\x48\x90\x8c\x60\x49\x36\xfd\xec\xaa\x94\x8c\x9d\x30\xe3\xfa\x39\x64\x44\xe9\x3f\x51\xb6\x18\x9a\x8e\x43\xca\xdf\xc8\x9c\x24\x06\xf8\x2d\xf1\x49\x9f\x50\x71\xce\xb3\x62\x55\xee\xcd\x2f\x93\x9b\xeb\x31\x56\xcb\x53\x34\x2c\x31\x1e\x26\x82\x18\x64\xa7\x74\x45\xa4\xc2\x2b\x5b\x76\xac\x72\xf5\xdf\x9e\xef\xf6\xd1\xb2\x34\x36\x46\x40\xfb\x4f\x41\xcc\xb9\x61\xaa\x94\x61\x9c\x14\xab\x7b\xe8\x97\x4b\xe9\x26\x6a\x3c\x23\xed\xc1\x41\x8f\x58\x22\x33\x39\x49\x87\x68\x64\xc4\x73\xc6\x15\x5a\x14\x58\x60\xa6\x88\x0d\x3a\x98\xe9\xa1\x94\x96\x68\x96\x38\xcf\x09\x93\x03\x57\x52\xc8\xd8\xe7\xdc\xa8\x38\x11\x5c\x4a\x24\x49\x8e\x05\x56\x04\x69\x32\x6c\x37\x70\x88\xce\x4d\x65\x45\x89\x56\xf8\xd9\x0c\xaf\x47\xdb\xf2\xcf\x74\x13\xaf\xe1\x27\x65\xc2\x4f\xca\xd0\xed\x87\xf3\xf7\xef\xdf\xff\x87\xa1\x0b\xc6\xef\x94\x1a\xd1\xea\x6e\x7a\x3e\x44\x63\x9e\x17\x99\x06\xbd\x8c\x1d\x91\xcf\x52\x91\xd5\x10\xdd\x12\x9c\x0e\x38\xcb\x9e\x87\xe8\xba\xc8\x32\xfd\xb1\x1b\x31\xa3\x52\xc9\x21\xfa\xa4\xa1\xa7\x6c\xce\x4f\xd1\x56\x0c\x65\x79\x5e\x13\xbe\x5a\x15\x8c\xaa\xe7\x93\x84\xeb\xed\x9e\x15\x8a\x0b\x79\x92\x92\x07\x92\x9d\xe0\x9c\x0e\x12\xce\x1e\xf4\x3a\x6b\xe4\x56\xe9\x5f\xcb\x6d\x7c\x6b\x26\xb1\xe7\xe5\x6c\x61\x2f\x8c\xbd\xa6\xa9\xad\xc2\x59\xd9\x7c\x7d\x5a\x86\x8e\xaf\xd5\xb7\xfb\xcc\x69\xaf\xb1\x94\x3c\xa1\xb8\x2c\xcd\x66\x6b\x7d\xda\xb3\x87\x08\x4b\x73\x4e\x99\x7b\x8d\xbb\x79\xb7\x06\xdc\xa1\xdc\x0b\xc1\x8b\xfc\x14\x35\x9d\x5c\x57\x87\xd4\x5e\x9e\x04\x2b\xb2\xe0\x1b\xf7\xff\x81\xbb\x49\xee\xd6\x0c\xb6\x46\x18\x54\x7e\xb1\xf7\xfb\x37\x77\x53\x2e\x59\xe9\x15\xad\x17\xfd\xd7\xfa\x6f\x57\x54\xda\x8b\x99\x67\x85\xc0\x59\xed\x8e\x59\x82\xb3\xe4\x42\x5d\x6f\x80\x1b\xa0\x47\x47\x89\x28\x5b\x14\x19\x16\xd5\xcf\xf4\x84\x25\xf5\xbc\xb3\xc4\xf3\x83\xa3\x9d\x96\x62\x21\x24\x13\xae\x97\x65\xfd\x68\xd0\x87\x4d\x16\xb3\x92\xae\xb8\x79\x1c\xe1\x46\xff\xfb\xaf\x37\x26\x6e\x88\xa6\x5b\xf2\x23\xcf\x09\x3b\x1b\x8f\x3e\xbf\x9f\x24\x4b\xb2\xc2\x25\x79\x6f\x92\x3d\x4a\x9a\x50\xb6\x9d\x3b\xcd\xd9\x9c\x2e\x0a\x7b\x51\x10\x9e\xcf\xb5\xd0\xcc\x16\xe8\xf3\x27\x89\x38\x9b\x71\x2b\x18\x53\xe6\x22\x7f\x56\x44\x2e\x87\x68\x42\x08\x5a\x71\x51\x15\x18\x53\xa2\x30\xcd\x24\xd2\xbc\xb3\x3c\xd2\xe5\xf6\x9e\xa4\x3c\x91\x27\x82\xcc\x89\x20\x2c\x21\xfa\x54\xcf\xe9\xe2\x64\xb3\x8d\x27\xe5\x12\x0e\xcc\x1a\x0e\x97\x6a\x95\xbd\xdd\x1a\xbe\x4d\xa8\x72\xa7\x77\x97\x9f\x7b\xc5\x8b\x56\x71\x22\x6b\x7c\x96\xc2\x9e\xa2\x01\x81\xc6\x23\xc2\x54\xf6\xe3\x86\x69\x9a\x66\x16\xd7\x81\xd3\x78\xff\xaa\xf7\x6e\x77\x9a\x06\x91\xc1\xf9\xfd\xd7\x3c\xdc\x6b\xb2\x5d\xd9\x31\x6a\xda\x6e\xcb\xed\x76\xbf\x9f\xbd\x33\x09\x3b\xbb\x6d\x9d\x4f\x90\xab\xbe\x27\x88\xf1\x01\xb1\xb9\x41\x7b\xd9\x16\x27\x2d\x9f\x25\x09\x2f\xea\xb1\x9a\xdd\x56\xa2\x59\xc2\x6d\xd8\x68\x9c\xa2\x19\xce\x30\x4b\xf4\x7d\xb7\x5f\x75\xc0\xaa\xbe\x6e\x47\x31\xb4\x47\x31\xb4\x2a\xfb\x19\x06\x7a\x14\xfd\x8e\xa2\x5f\x07\xd1\xef\x85\x85\xaf\x9f\xf5\x74\x2d\xc2\x97\xf9\xad\x55\xf8\xb2\x87\xbc\x4d\xf6\x5a\xb4\xc8\x5e\x0b\x37\xdf\x37\x24\x7b\x5d\x98\x7f\xcd\x88\xbe\x49\x09\xcf\x32\xa7\xaf\xe4\xf3\x35\x52\x88\x32\xa9\x30\x4b\x88\xdc\x08\x5d\xa5\xa0\x55\x95\x83\xf6\x13\xba\xcc\xe2\x81\x85\xae\x6d\xfa\xd4\xca\x63\x3e\xb9\x4e\x56\xcd\x56\x16\x08\x2d\x64\x19\x0b\x9b\x65\x28\xe1\xc2\xba\x93\x9b\x92\xb0\xbf\x6f\x8b\xe6\x94\xc8\xdf\x77\xf9\x8d\x4f\xb1\x56\x7b\xad\xef\xfc\x0c\x36\x27\xec\x1f\xa8\xee\xd5\xf9\x34\x8b\x98\xaf\x08\xc4\xd6\x9f\x72\xc1\x67\x35\xad\x7c\xf5\x3c\xff\xae\x49\x1f\x65\x44\xca\xb1\xee\xfc\xbb\xfb\x79\xb6\x89\xd8\xdd\x7a\x6a\xe8\xbf\x14\xb2\x41\x73\xb6\x2a\xa4\x2a\x4b\x7a\x9b\xa3\xb2\x24\x38\x53\xcb\x64\x49\x12\x7d\x68\x9d\x0a\x97\x8a\xf5\x25\x19\xbe\xdd\x19\xa3\x31\xdb\x58\x6b\x7e\xb1\xd6\x8c\x62\xa1\x3c\x55\xb6\x6a\xfe\xcf\xa4\x49\xb3\x17\xfe\x56\x25\xf9\x84\x27\xf7\x1d\xbf\x26\x4f\x24\xa9\x21\xd8\xfe\x51\x1b\xa8\xfe\x6f\xda\x40\xf4\x7f\xd5\x00\x9a\xef\xe6\xea\xee\x4d\x58\x56\x8e\x96\x3d\x02\xc6\x43\x9c\x28\x22\x56\x94\x59\xbe\xbb\xe4\x8f\xee\x68\xad\x56\x9a\x3f\x97\x06\x5e\x3d\x68\xb1\x61\xe5\xbb\x33\xd2\x96\x12\xc5\x21\xd5\xbd\x9b\xa6\x4d\x7b\x5c\x01\x79\x0d\x12\x47\xa2\x68\x35\xd6\x06\x0c\xb5\xfd\x85\x07\x07\xfc\xf8\x7d\x34\x6b\x8e\x69\x56\x08\x32\x5d\x0a\x22\x97\x3c\x6b\x44\xbf\x4a\xfa\x29\xa3\xab\x62\x65\x4c\x9a\x7a\x1f\xe8\x03\x29\x07\xb1\x5e\xf3\xc6\x1c\xa3\x49\x84\x13\xf0\x74\x47\x6a\x1c\xed\x9b\x09\x1e\xa6\x19\x49\x11\x9e\x2b\x93\x8b\xeb\xc1\x94\xe5\x29\x92\x84\x90\x96\xa2\xff\x21\x15\xbe\x5f\x75\xef\xae\x4a\x13\x9a\xa1\x03\xe2\x33\xcc\x55\x96\xc8\x04\x8b\x1b\x3b\x8a\xe2\xa5\xad\x12\x29\xbe\x0e\x86\x90\x65\xaa\x95\x9c\xa7\x68\x34\x6e\x3b\x3e\xa0\xf3\x11\x3c\x1d\x1a\xe1\x40\xda\xc7\xdd\xdb\xa8\xfb\x96\xdb\xf8\xf4\x6c\xd9\x7b\x8e\xa5\x2d\x99\xc1\xd1\x0a\xdf\x13\x48\x8d\xf7\xc0\xf1\x07\xe6\xc3\x0a\x54\x26\x39\x84\x6f\x00\xa0\x30\x79\xdf\x93\x82\xf3\xc1\xb5\x7b\x60\xe4\xfa\xe5\x07\xd9\x61\xfd\x44\x34\x25\x5b\x92\x84\xc8\x75\x1d\x14\x13\xb7\x63\xdf\x75\x87\x3d\x90\x3e\x4b\x6f\x05\xce\xd2\xa6\xbb\xb1\xfb\x97\xca\x0a\x94\xd1\x87\xf6\x24\x17\x61\xdb\x9d\xbf\x22\x40\x1f\x68\x7a\xf7\xd3\xa8\x02\x70\x76\x41\x32\xfc\x3c\x21\x09\x67\x69\xe3\x15\x68\x49\x41\x23\xed\x17\x8e\x62\x3a\xd9\x4b\x61\xca\x5c\x2e\x43\xa9\xb0\x30\x2f\x57\xf3\x92\x6e\x04\x5f\x94\xa2\x9c\x25\xd4\x12\x61\xf3\x68\xd5\x50\xb5\x30\xcf\xfd\x88\x6e\x4e\x04\xe5\x29\x14\xd5\x8f\xfc\x11\xf1\xb9\x22\x0c\xfd\x40\x59\x89\xae\xf1\x8e\xca\x89\x30\xaf\xf5\x35\x8b\xe9\x1f\x54\xc3\x7a\xa4\xdc\x8f\x1f\xba\x41\xba\x31\x44\xf7\xf1\xbc\xc8\xaa\x4c\xd1\x32\xca\xfe\x31\x5e\x0b\x82\x9d\x05\x35\x3a\xdf\xe2\x16\x54\x22\x3c\xcb\xb6\x59\x5f\x17\x61\xcc\xc7\x6b\x0f\x4f\x86\x42\x14\xc4\x7b\xbb\x5d\xd8\xe4\xbe\x17\x7b\x43\xf5\xdc\xd9\xa1\xc6\x5b\xb4\x68\x5c\xce\x7d\x4e\x40\x2b\x32\x8a\xac\xf2\x0c\xd7\xbd\xb5\xaa\xda\x66\xd7\xc9\x9d\xed\xb5\x0a\x40\x03\xbe\x20\xcc\x69\xea\x34\x7a\x15\x15\xc0\x73\x3d\x01\xdf\x5a\x4b\x63\x05\xfd\x19\xc9\x38\x5b\x58\x49\x89\xca\xcd\xd7\x46\xbd\x14\xa7\x3e\x68\x36\x23\x21\xc8\x51\xf2\x1e\xa3\xd7\xf1\xde\xef\xd3\xc4\x84\x82\x2a\x8e\x16\x53\x53\x0d\x90\xce\xe6\x26\xd0\xa2\x78\x97\xa4\xc5\xf4\xb4\xff\xc0\x8d\x66\x28\x14\xb5\xdd\x21\xca\xd2\x8f\x49\x0a\x85\xb6\xd1\x6f\x9a\xda\x7f\xa5\xda\x1d\xb1\x0e\x60\xaa\x0a\xad\x6b\xcb\x4a\x7c\xdb\x96\xac\xef\xd0\x35\xca\xfc\x7c\xaa\xd9\x60\x21\x4a\xaf\xe8\x16\x77\x29\x97\xd4\xed\x7f\x0c\x9c\x06\x1c\x4a\xe4\xb0\xfc\xb2\x6e\x37\x73\xe6\x91\x7a\x87\x38\xe3\x48\xf9\x7d\x93\x69\xe4\x6c\x1b\xa4\xb1\x59\x21\xf3\xeb\xc6\x40\xd2\xd0\xa3\x66\x26\x69\x44\xcc\x6e\xff\xda\x28\x52\xef\xf3\x4d\xbb\xa5\x18\x83\x81\x7d\x8a\x1a\xa3\x18\xcf\xcc\xa3\xaf\xf4\x74\xef\xcf\x36\x52\xee\xde\x49\x65\x01\xdd\x69\xae\xd9\x47\x6a\x7a\xe6\x46\x1d\x73\xa3\x7e\xd9\xaf\x42\x75\xda\x6f\xf1\x26\xfc\x41\x63\xe7\x56\x6f\x99\xa4\xc9\x03\xbd\x2a\x1d\xb8\x30\xab\x5d\x0a\x4a\x58\xb1\xaa\x23\x71\x76\x75\x75\xf3\x5b\xed\xaf\x17\x97\xd7\xff\x5d\xef\x7a\x77\x31\x9a\xd6\xfe\x7a\x7e\x37\x99\xde\x7c\x6a\xa4\xc6\x4d\x4e\x1e\x0e\xd5\x5d\x40\x7c\xa2\x5d\x9b\x76\xc8\xe3\x29\x5e\xfa\x37\x1b\x8e\x52\x12\xcc\xf5\xe4\x7d\x4b\x23\xad\x5c\xd8\x64\x19\xe9\xb4\x59\x9d\x22\x08\xe7\x82\xd7\x76\x38\x62\x4e\xef\xcc\x90\xf9\x6d\xb3\xb4\xc6\xa7\x59\x6b\x0a\xa3\x91\x95\xfd\x73\xc1\xf6\x36\x2c\x26\x94\xa6\x16\xee\xb0\x4f\xf3\x9f\x32\x9e\xdc\x07\xdd\xfa\x23\x96\x6b\x6b\x70\x58\xa6\xa7\xc3\x95\x06\x81\x66\x77\x5a\x47\x13\xfd\xd9\xd7\x81\xab\xd1\xf1\x40\xd8\x85\xb8\x3e\x9e\x09\xd3\x18\x57\x63\x41\x59\x42\x73\xec\x0f\x6f\x44\x7f\x86\xa5\xb0\x69\xaf\x8f\x97\x04\x95\xcb\x61\x38\xd1\xf1\x80\xd8\x96\x1f\xd7\xc1\x34\x71\xbc\x25\xeb\x26\x8e\x57\x64\xb7\xd7\x21\xeb\x7f\x29\xfe\xf5\xe5\xfd\xb5\xa7\x2e\x58\xe4\xbf\x29\xbf\xd8\x91\xfa\xd7\x23\xf5\x2e\xf8\x2f\x43\xe9\x1b\x1a\x60\xfc\xae\x8e\xa2\x71\xf9\x5c\xf2\x66\x53\xd5\x76\xfb\xbe\x17\x81\x71\x15\xcc\xe4\x81\xfe\x0c\xab\xf0\xe9\x78\x1a\xac\xb0\x8f\xd5\xf2\xb8\x0a\xe3\x36\x9b\xd7\x76\xfb\xbe\x57\x21\x3f\x1e\x84\x56\xcb\xe7\x76\xfb\x9e\x97\xe0\xf0\xf2\xda\xe3\x92\xb4\x88\x49\x2f\x29\xb1\xdd\x13\x4f\x9d\x24\x5f\xb6\x10\x86\x46\x52\x51\x8e\xb0\xb2\x61\x4d\x2f\x98\xce\x95\x71\xf5\x19\x67\x85\x5f\xd0\x8b\x3e\x9c\xaf\x36\xcb\xd6\xc3\x9f\x06\xd7\x97\x4d\xb0\x82\x90\x24\x19\x49\x54\xbd\x68\x32\x68\x3d\x7d\xb7\xcb\x64\x75\x6b\xcf\x8b\xf6\xba\xa3\x83\x5e\xa3\x9f\x04\x24\x76\xf7\xe8\x26\x81\x72\x42\x04\x2e\xd4\x92\x30\x45\x13\x17\x32\xfb\x55\x9d\x24\xc6\x84\x88\xb3\x0a\x40\xe6\xc7\x8d\x8f\x44\xbd\x43\xcd\x45\xa2\x01\x29\xbb\xf1\xb5\x70\xd2\x1c\xdb\x1f\xd6\x9e\x13\xf5\x4f\xbf\x29\xc7\x89\xfa\xe2\xa0\x54\x9f\x4e\x22\x6d\xac\x94\x2b\x7c\x5c\x86\x63\xaa\x82\x31\x92\x91\x14\xfd\xc0\xab\x2e\x51\x8c\xab\xbf\x95\x21\x28\x92\xa6\x24\xc1\x15\xbb\x77\x6b\x64\x68\x43\x3a\xdb\xaa\x2b\x74\xa1\x0a\x9c\xa1\xe9\xd5\x04\x49\xa2\x14\x65\x0b\xeb\x00\xbd\x8e\xe5\x8b\x21\x99\x2d\x75\x6e\x2b\x13\x5e\x38\xec\x4d\xf2\x12\x3d\xad\xfe\x6a\xe3\x83\xaa\xb7\x1b\x55\xf7\xbb\x89\x0b\x36\x79\x3f\xd8\x03\x74\x77\x3d\xb9\xdc\x75\x6b\xb0\xbf\x5c\x8c\x26\x67\x3f\x5d\x5d\x36\xfe\x36\xbe\xbc\xfd\x34\x9a\x4c\x46\x9f\x9b\x7f\x9e\x4c\x6f\x47\xe7\x4d\xa3\x76\x71\x23\xd0\x82\xf9\x15\x79\x20\xd9\xa7\x86\xcd\x81\xf1\x95\x40\xea\xe1\xd6\x7a\xc3\x07\xd8\x89\xf6\xbd\xf0\xed\x86\x7f\x3f\x82\x3b\xe2\xdd\x93\x00\x3f\xf5\x70\xd3\xea\xcd\xe5\x42\x95\x1a\xcd\x04\xad\xea\xf7\x24\x22\xa9\x08\x40\x46\x99\x9a\x14\x0d\xb6\xe3\xc6\x57\xdf\xee\xce\x26\x85\xa8\xe2\x26\x0d\xa9\x4d\x70\x70\xbe\xc4\x9a\x5a\x34\x10\xe7\xed\x56\xdf\xb6\xa3\xd8\x73\x14\x7b\x5e\x9b\xd8\xe3\xac\x03\xaf\x4a\xf2\x71\x06\x62\xaf\xf0\xd3\xd8\xa7\x26\xff\x34\x63\xd7\x22\x02\x89\x5d\x11\xa8\xf1\xeb\x6f\x4a\x0a\x6a\x5c\xa5\xb5\x20\xf4\xb8\xc4\xaa\x44\x72\x87\xe3\x94\x76\x8e\xca\xfd\xc7\x82\x20\x59\xe4\x9a\x8f\xda\x60\x26\xdc\x28\xae\xb4\x91\xb9\x7f\x3e\xaa\xdb\xa0\x27\x9f\x65\x8e\x86\xcc\x96\xa5\xc6\x7e\xf9\x6d\xea\xe2\x5c\x12\xcc\xb4\xb0\xe6\x56\x8b\xa4\x08\x2b\x97\x62\x47\xd3\xef\x86\x18\xb1\x35\x01\x7f\x6b\x23\xae\x7a\xf1\x0f\xc4\x45\x4a\x09\x6b\xf5\xf1\xf1\x2a\x08\xfa\x89\xc7\xf2\xab\x03\x5c\x1a\xe7\x1b\x41\x17\x94\xe1\x6c\xca\xef\x41\xda\xb2\xd1\xdc\x66\x04\xe2\x86\x2c\xbe\xb3\xa6\x44\x61\x86\x40\x4a\x8f\xb1\x16\x96\xef\x89\x2d\x81\xdf\x06\xbe\x49\x68\xa1\x04\xc1\x2b\xbf\xf1\xd1\xa2\xd1\x5e\x38\x7d\x2e\xf8\xca\x1b\x8e\x5d\x81\xff\xca\x1d\x17\x57\x79\x3c\xe3\xee\xb6\xdb\xec\xce\x36\x44\xec\x97\xdf\xa6\x36\x2b\x42\x6e\xce\xcb\x81\x14\x83\xa1\x38\xec\x9a\xfc\x61\xe2\x89\x1d\xdc\xfa\xe3\x97\xd3\x07\xe6\x82\xcc\xe9\x53\x14\xb0\xf6\x13\x7b\x21\xd7\x19\xc5\xcd\x3c\x79\xbe\x0e\xa5\x45\x29\x49\x78\x1a\xd4\x7e\x2d\x89\x3d\x5a\xdf\x48\x42\x76\x7d\x92\xc6\x58\xe0\xb6\xe3\xd1\x78\x1e\xff\x28\x88\x78\x46\xb9\xfe\x4c\x4b\x97\x3d\x9f\xc7\x97\x20\x28\x54\xca\xa2\x2d\x39\x77\x95\x84\xa4\x9a\x83\xac\x1d\x11\xec\x77\x65\x2e\x12\x59\x90\xd4\xfc\xf9\x97\xdf\xa6\xcd\x88\xee\x2f\xba\xfe\xf3\xb1\xcd\x73\xa8\x02\xe7\x2f\x93\x9b\x6b\xf4\x1b\x99\xa1\x5f\xc9\xf3\x3a\x72\xac\x98\x65\x34\x41\xf7\xe4\xd9\x48\xfb\x25\x8f\x41\x92\x2e\x18\x56\x45\x4b\x74\x38\x2a\xdd\xe3\x0f\x8c\xd4\x97\x42\xd0\x43\xc9\xfb\x7a\xfc\xbb\xc3\x0d\xcf\x0b\x95\x17\x6a\x8c\x9f\x35\x23\x9e\x72\x4b\xd0\x0f\x33\xd9\xa1\xf4\xd8\x1d\xde\x88\xed\x32\x6c\x65\x6d\x8e\x6f\xc4\x6f\xe7\x8d\xf8\xff\x03\x00\x00\xff\xff\xdd\x29\x4f\xee\xc5\x25\x02\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x77\xdb\x38\x92\xf0\x7b\x7e\x05\xce\xcc\x43\x7a\xce\x89\xe4\xe9\xc9\xb7\xdf\xd9\xf5\x9b\xdb\x76\x3a\xea\x76\x6c\xad\x25\xa7\x77\xbf\x97\x34\x44\x42\x12\xc6\x14\xc0\x06\x40\x5f\x76\xcf\xfc\xf7\xef\xe0\x42\x89\x12\x49\xa0\x40\x51\x8e\x93\x16\x5e\xba\x63\x81\x40\x15\x2e\x55\x85\xba\xfe\x15\x5d\xdc\xa0\xeb\x9b\x29\xba\xbc\x18\x4d\xd1\x00\xfd\x4c\x18\x11\x58\x91\x14\xcd\x9e\xd1\x79\x41\xd0\x4d\x4e\xd8\xd9\x78\x84\x16\xf6\x07\x2e\xd0\x0c\x4b\x92\x22\xce\xd0\x48\x2a\xca\xd1\xd9\x78\x24\x87\x6f\x70\x4e\x3f\x13\x21\x29\x67\xa7\x08\xe7\x94\x3c\x29\xc2\xf4\xbf\xe4\xf0\xfe\xdf\xe5\x90\xf2\x93\x87\x1f\x67\x44\xe1\x1f\xdf\xdc\x53\x96\x9e\xa2\xf3\x42\x2a\xbe\xba\x25\x92\x17\x22\x21\x17\x64\x4e\x19\x55\x94\xb3\x37\x2b\xa2\x70\x8a\x15\x3e\x7d\x83\x10\x66\x8c\x2b\xac\xff\x2c\xf5\x3f\x11\xfa\xcb\x92\x64\xab\xa1\x5c\x9e\x08\xf7\xe1\x20\xe7\x19\x4d\x9e\xff\x72\x8a\xee\x09\xc9\xdf\x20\x94\xe1\x19\xc9\x5c\x6f\x9c\xe7\xa7\x88\x6a\x18\x07\x39\xcd\xb8\x32\x7f\x4c\x96\x58\x28\xf7\x67\xf3\x87\x25\x11\x54\xe1\x05\x39\x45\x53\x9a\x65\x44\x98\x3f\x0a\x92\x11\x2c\xc9\xa6\x1f\xc3\x2b\x72\x8a\x52\x22\x15\x65\x06\x22\x51\x64\x44\x0e\x19\x51\x8f\x5c\xdc\x53\xb6\x18\x9a\x9e\x43\xca\xdf\xc8\x9c\x24\x06\xfa\x34\x35\x28\xe1\x6c\x2c\x28\x53\x44\x9c\xf3\xac\x58\x59\x54\x06\xe8\x97\xc9\xcd\xf5\x18\xab\xe5\x29\x1a\xea\x0f\x86\x4b\x2e\x2d\x80\x29\x91\x89\xa0\xb9\x32\x2b\x39\x5d\x12\x33\x35\xe2\x73\x84\x91\x24\xe2\x81\x26\x04\xcd\x05\x5f\x21\xb5\x24\xeb\x3f\x08\xb2\xa0\x52\x89\x67\x33\x80\x05\xf5\x63\x39\x9e\x7a\xce\xc9\x29\x92\x4a\x50\xb6\xd8\x9d\xb9\x5c\xec\x61\x22\x88\xc1\x6a\x4a\x57\x44\x2a\xbc\xca\xeb\xa0\xbc\x3d\xdf\xed\x83\xa8\x44\x18\xa9\xf5\x3f\x05\xc9\x05\x91\x84\x29\xca\x16\x6b\xf0\x88\x30\x3d\xd0\xe3\x92\x30\x33\x28\x42\x6a\x49\x25\xe2\xb3\x7f\x92\x44\xa1\x47\x2c\x91\x99\x9c\xa4\x43\x34\x52\x7a\x48\xc6\x15\x5a\x14\x58\x60\xa6\x08\x49\x91\xe2\x68\xa6\x87\x52\x88\x32\xb4\xc4\x79\x4e\x98\x1c\xcc\xc8\x9c\x0b\x82\xb8\x48\xdd\x86\x21\x84\x13\xc1\xa5\x44\x92\xe4\x58\x9f\x5f\xc4\x73\x7d\x5c\xcd\x09\x44\xe7\x19\x25\x4c\x49\xb4\xc2\xcf\x66\x78\x3d\x9a\x81\xe2\x01\x67\x05\x29\x27\x5e\xc3\x4f\x52\x37\x26\x65\xe8\xf6\xc3\xf9\xfb\xf7\xef\xff\x03\xcd\xb9\x58\x21\xcc\x52\xdd\x91\x32\x74\x37\x3d\x1f\xa2\x31\xcf\x8b\xac\xbc\x2b\x06\xe1\x67\xa9\xc8\x6a\x88\x6e\x09\x4e\x07\x9c\x65\xcf\x43\x74\x5d\x64\x99\xfe\xd8\x8d\x98\x51\xa9\xe4\x10\x7d\xd2\xd0\x53\x36\xe7\xa7\x68\xa9\x54\x2e\x4f\x4f\x4e\x16\x54\x95\x57\x25\xe1\xab\x55\xc1\xa8\x7a\x3e\x49\x38\x53\x82\xce\x0a\xc5\x85\x3c\x49\xc9\x03\xc9\x4e\x70\x4e\x07\x09\x67\x0f\x7a\x9d\x35\x72\xab\xf4\xaf\xe5\x36\xbe\xad\xec\xff\xd9\x82\x54\xb6\x3f\xc5\x4a\xff\x73\x21\x78\x91\x9f\xa2\xa6\x53\x6b\xbf\x73\x37\x27\xc1\x8a\x2c\xb8\xa0\xe5\xbf\x07\xee\x1a\xb9\x2b\x33\xa8\x8c\x30\xd8\xfa\xc5\x5e\xee\x8b\xcd\x35\xb9\x2d\x32\x0b\x87\x46\xfc\xd7\xa6\x5f\xaf\xa8\x3b\xa8\x79\x56\x08\x9c\xd5\x2f\x99\xf9\x51\x2e\xb9\x50\xd7\x1b\x08\x07\x28\xb5\x4b\x2a\x29\x5b\x14\x19\x16\xb5\xef\xde\x20\x64\xb6\x53\x3c\x90\x3b\x76\xcf\xf8\x23\xfb\x40\x49\x96\xca\x53\x34\xc7\x99\xd4\x3f\xcb\x84\xeb\xb5\x31\xa3\xe6\x38\x31\xbb\x2e\x8b\x59\x49\x5b\xdc\x4c\x52\x61\x55\xc8\x53\xf4\xbf\xff\x7a\x83\xf4\x79\xa1\xa9\x99\xc2\xfe\xc8\x2d\x71\xfc\xfc\x7e\x92\x2c\xc9\x0a\x9f\xba\x5d\xce\x85\x3e\x7d\x6a\xbd\x7e\x66\x1c\x47\x16\xca\xb6\x73\xb9\x38\x9b\xd3\x45\x61\x4f\x2c\xc2\xf3\x39\x49\xcc\x35\xca\x38\x4e\xd1\x0c\x67\x98\x25\x94\x2d\xde\x21\x5e\xa8\x8c\x12\x81\x52\xa2\x74\x0f\xce\xde\x55\x86\x44\x88\xa8\x64\x88\x26\x84\xa0\x95\x3e\x60\x29\x51\x98\x66\x12\x61\xb5\x39\x66\xe5\x86\x9f\xa4\x3c\x91\x27\x82\xcc\x89\x20\x2c\x21\xfa\xa4\xcd\xe9\xe2\x64\xb3\xb1\x27\x95\xf5\x1c\xe8\x05\x1d\x2e\xd5\x2a\x7b\x5b\x99\xae\x09\x4b\x03\xc4\x53\xce\x85\x9a\xf2\xed\xbf\xee\x60\x7c\x66\x4e\x84\xa6\x6b\xac\x5c\x7f\xa9\xef\xfa\xe3\x92\x26\x4b\x7b\x39\x2b\x00\x20\x0d\x00\xa2\x72\x67\xc4\x72\x2e\x92\x0e\x77\x7e\xa1\x8a\xac\xe4\x2e\x00\xc8\xdc\x62\xbd\x1a\x6b\x72\xb8\xdd\x76\x68\x65\xfd\x27\x2c\x04\x7e\xde\xfa\x45\xd3\x6d\x2f\xa2\x91\x24\x7c\x17\x11\x2f\xc4\xad\xf0\xca\x62\x26\x89\xaa\x2d\x40\xcb\xaa\xb4\x6d\xa4\x6d\x55\x96\xba\xdb\xaa\x3c\xce\x37\x46\x10\x93\x20\x46\xdb\x1d\x2c\xf7\x68\xe8\x60\x88\x5f\xe3\x87\x5b\x9b\x72\xed\x36\xc4\xec\x80\x59\xab\xdd\x75\x07\xc3\x1c\x80\x58\x09\x3c\x9f\xd3\x64\x6c\xe4\x14\x00\x64\x53\xdb\x1f\x19\xc1\x86\xea\x3b\xb1\xc4\x4a\x8b\x32\xd9\xb3\xbe\x1e\xe6\x62\xf8\x20\xf6\xef\xa5\x6e\x09\x67\xcc\xd2\x8e\x31\xe7\x59\x5b\x2f\xc8\x48\xba\x69\xba\xe2\xfb\x7d\x07\xbd\x8f\xd3\xe9\xb8\x02\x01\xca\x39\xcf\x34\x3b\xd6\xc4\x4e\x36\x63\x14\x07\x8f\x81\xe9\x1f\x77\xf9\x42\xe0\x94\xf8\x56\xbd\x15\xc4\x49\x4e\x12\x3a\x7f\x46\x74\x6e\x90\xfb\x71\xf8\x63\x15\x60\xb9\xe4\x45\x96\x06\x47\x44\x5a\x68\x29\x2c\x14\x46\x86\xd1\x43\xfd\x43\x9f\x27\x73\xe6\xb0\x94\x3c\xa1\x46\x74\xa8\x50\x39\x3f\xfe\xba\x11\x56\xac\xc2\xe8\x0c\xd0\xc5\xe5\x87\xb3\xbb\xab\x29\xa4\xe7\xcd\x97\xeb\x9b\xe9\x97\xbb\xf1\xcf\xb7\x67\x17\x97\x80\x0f\xa0\x3d\x83\x37\x79\xd3\xcc\x32\x7f\xc2\x4f\x63\xc2\x52\xca\x16\xb7\xe4\x8f\x82\xc8\x3a\xf5\xaa\xb7\xad\x7d\xfb\x84\x9f\xe8\xaa\x58\x21\x56\xac\x66\x44\xe8\xdb\x9d\xdb\xf1\xec\xa1\x13\x6e\x54\xc0\xd6\x29\x8e\x70\xdc\xbe\x94\x74\x82\x32\xf5\xfe\x1f\xc0\xa5\xd1\x6f\x82\xc5\x5a\x7c\x6d\x6b\xe6\xdc\x7c\xc2\x4f\xbd\x2d\x4a\xb9\x0e\x16\xcb\x19\x4e\xee\x09\xab\xb1\xcf\x97\xc4\x90\xa6\x19\xd1\x6f\x0a\x5e\xd4\x18\x69\x00\x39\xcd\x5a\xf5\xd7\xe6\x85\xc1\x0b\x65\xae\x57\x91\x4b\x25\x08\x5e\x55\x2e\x2d\x60\xcb\x0d\x1d\xda\x7c\x11\x20\x45\x28\xee\x7c\xaf\x36\xdb\x37\xd6\xcf\xc0\x72\x96\xfe\xf6\x32\x27\x22\x0e\xdf\xd7\xb2\xf9\x66\x69\x94\x00\x10\xf5\x43\x42\x51\x48\x62\x9f\x88\x63\xc1\x15\x4f\x7c\x5c\xb1\x6c\x5b\x3b\x33\x9a\xdb\x27\x25\x47\x4a\x14\xe4\x1d\x4a\xcc\x60\x9a\x63\x99\xd1\xd0\x23\xcd\x32\x18\xcb\x28\x9f\x2c\xa9\x16\x84\xb5\xc8\xcb\xa8\xa2\xd8\x3c\x05\x2a\x4c\x48\xbf\x89\xa1\x7b\x67\xd7\x61\xc6\x79\x46\xb0\xff\x64\x04\x44\xab\x75\xb7\x24\x86\xe1\x4f\x1c\x6f\x47\xfa\x51\xeb\x40\xe7\x6a\x69\x69\xb2\x7e\x4f\x4f\xcf\xc7\xeb\x3b\x1b\x40\x06\x7c\x3f\xe1\xa2\x82\x1b\xb2\x23\xfd\x39\xdf\x92\x65\x1c\x15\xea\x9b\x74\x6c\xe8\xc5\xfe\xc4\x5f\xaf\xfa\x8f\xe8\x64\x1b\xf0\x2e\x2c\xd1\xbc\x7b\xbe\x26\xe1\x50\x49\xfe\x2b\x21\x39\xce\xe8\x43\x8b\xc0\x5f\x6d\x8d\xb7\x75\x49\x98\xf9\x9f\xc9\xcd\x97\x5f\x2f\x2f\xc7\x67\x57\xa3\xcf\x97\x48\xef\xa3\x7e\x14\xf0\xe4\x9e\xf8\x6e\xc1\x1a\x0e\x8e\x08\xc3\xb3\x8c\x98\xd3\xb0\x06\x09\xc0\x40\xe0\x87\x14\x19\x55\x94\x22\xe2\x01\x03\x28\x53\x0d\x5f\xcd\x26\x8d\x0e\x2e\x2d\xf5\x0b\x33\xa2\x1e\x09\x61\x46\x69\x3a\x30\xf0\x82\x46\x35\x30\xcf\x20\xb8\xa1\xb8\x53\xbe\x19\x1a\x86\x5e\xcc\x41\x31\xfd\x69\xdb\xab\x70\x2f\xa0\x81\x04\x13\xd8\x11\xd0\x29\xe3\x38\xfd\xc9\x28\x83\x88\x68\xc7\xa7\x8d\xfe\x32\x25\x78\x96\x95\xca\xd9\x8a\x66\x89\x08\x84\xb3\x05\x17\x54\x2d\x57\x9e\xcd\xe5\x8c\xdc\xcc\xdb\xa7\x1d\x20\xc6\x03\x14\x14\xb3\x67\xdf\x08\x76\x14\x2d\xd4\x50\x41\xd2\xd0\x86\x0d\x90\xa4\xab\x3c\xf3\x1f\xdd\x41\xd4\x35\x4b\x38\x93\x54\x2a\xc2\xd4\x47\x2c\x97\x90\x13\x13\x58\x93\x2a\x20\xc1\xd5\xd9\x34\xc0\x3a\x55\x47\x86\xae\x58\xf5\x1b\xfd\xae\xf8\x48\x70\x4a\xc4\x35\x5e\x41\xaf\x7f\xf7\xa9\xce\x39\xbf\xa7\x87\x9d\xa6\x90\x64\x62\x14\xb7\xa3\xfc\xe0\xe8\xfc\x67\x41\xc4\xf3\x18\x0b\xbc\x22\x0a\xbc\x82\xb1\xd3\x75\xd8\xa4\x6e\x53\x80\x37\x27\x7e\xf8\xb8\x4d\xe9\x06\x7e\xf4\x66\xc0\x29\xcc\x36\x41\xf0\x90\x3e\xc8\x90\x41\x82\x05\x27\x56\x71\x84\x0a\x44\xa4\xc0\x04\x0a\x4c\x9c\x8e\xe7\xfd\x30\xe0\x47\x9f\xf7\x98\x69\x22\x37\x21\x7e\x68\xd0\xe2\xc7\x0d\x0b\x5f\xf4\x78\x70\xa3\x16\x1b\x46\x05\x80\x44\x05\x46\x0b\x62\x28\x41\x84\x06\x7d\xbd\x51\x91\x6f\x2b\x0d\xc4\xc6\x41\xc4\x69\xfb\xf5\x38\x7d\xbf\x87\xda\x0d\x3d\x5e\xf8\xaa\x86\x1f\x28\x60\x08\x6a\xbc\xda\x6e\xb1\xef\x1f\xac\x40\x12\xe7\x0e\x42\x63\xac\x96\xfa\x11\xaa\x1f\xb2\xa5\x75\xe1\x75\x21\xa6\x54\x97\x47\xeb\x15\x9d\x13\xf3\x68\xed\xb0\x59\x87\x79\xc4\xa1\x1d\xca\xb8\xd7\xcd\xc0\xc6\x1f\x80\xce\x69\x62\x2f\xc9\xd2\x0c\x0b\x57\xa8\x44\x21\x07\x36\xc2\xd4\x89\x5d\xaf\x48\xfe\xa1\x87\x47\x79\x39\xfe\xd7\xc4\x76\x45\x19\x5d\x15\xab\x5b\xca\x16\x13\xfa\x3f\x00\x34\x23\xd5\xc9\x25\x3f\xda\x6b\xfd\xac\x22\x4a\x0f\x84\x46\x63\x84\xd3\x54\x10\x09\xb6\x4c\xf4\xa8\xf1\xcd\x78\x82\x33\xaa\x9e\xaf\x66\x4e\x9b\xd0\x17\x9b\x49\xa9\xb4\xee\x4d\xb1\xe7\xec\xed\x4d\x6e\xdd\x0e\x4e\x11\x67\xd9\xb3\x96\x70\x35\xa1\xd8\x8c\x87\x38\x44\x2f\x34\xc7\x34\xe3\x0f\x44\xa0\x04\x33\xe7\x65\x36\x7c\x1b\xfc\xae\xc5\x8b\xa2\xde\xe2\x38\x1a\x32\x4e\x21\xd0\x97\xe8\xd6\x72\xdc\x08\xba\x30\x8a\x59\xe3\x31\x64\x37\xeb\x1d\x7a\x7b\xf2\x76\xed\x0e\x97\xbe\x03\xbf\x70\xc9\x70\x01\x23\xb3\x9d\x98\x47\x34\xfb\x40\x48\xd5\x3c\x89\xda\x5a\x8c\x3b\x4a\x1b\x60\x70\xad\x22\xaa\xeb\xdb\x73\x7d\x0a\xd7\x16\x48\xb7\x15\xd4\x7a\x36\x39\x4f\x10\x30\x38\xeb\xc3\x4c\x39\x43\x8f\x84\x2e\x96\x0a\xa8\x79\x8d\x62\x6a\xd1\xdd\xdb\x3c\xa1\xea\xcd\x2a\xc6\x01\xa2\xf6\xd6\x2a\x3a\x75\x7a\x79\x8e\x6b\x2e\x70\x6a\xd9\xe0\x07\x56\x6f\x54\xee\x7a\x1a\x0e\x32\xf2\x40\x32\x63\x74\x7a\xa4\x59\x86\xf4\xcd\x17\x34\x25\x68\x45\x3c\x62\xf8\xa6\x3d\xea\xbe\xa5\xaf\x0a\xa2\x0c\x11\xa6\xa8\x20\xaa\xe6\xb3\x55\x6f\xac\xc8\x32\x8d\xd5\xa9\x31\x10\xf6\x48\xc1\x37\x34\x6c\x4f\x0a\xba\x26\x85\x5c\x54\xc8\x28\x60\x55\xbe\x23\xd2\x29\xc8\x02\xe4\xed\xe1\xa6\x7c\x65\xc4\xef\x25\xe0\x39\x08\xa1\x00\x0e\x6a\x95\x67\xfe\xd5\x08\xfb\x47\x0d\xd0\xed\xcd\xdd\xf5\xc5\x97\xdb\x9b\x9f\x46\xd7\x81\x9e\x57\x97\x67\x93\xe9\x97\xf3\x9b\xeb\x50\xc7\xdb\xb3\xeb\x8b\x9b\x4f\x81\x4e\xe3\xb3\xc9\x64\xfa\xf1\xf6\xe6\xee\xe7\x8f\x80\xe5\x08\x6c\x09\x60\xcd\x9c\xab\xf0\x45\xe9\x29\xbc\xaf\xa7\x9f\x16\x4b\x2f\xff\x69\xc7\x9a\x06\x0d\x6a\xdb\x8c\xd1\x4a\xdb\x88\xb8\xcf\xd7\x96\x48\xff\x5d\x03\x1e\xce\x84\x33\x49\x92\x42\xd1\x07\xf2\x6f\x4f\x4f\x97\x42\x70\x11\xa0\x1a\xdb\x2a\x81\xb5\x75\xfc\xdf\x9e\x9e\x10\x31\x9f\x23\x17\x60\x80\x8d\x9d\x5b\xf3\x12\x03\x3a\x09\x39\xfe\xad\xdd\x7a\x77\x5c\x1c\xfd\x78\x46\x70\x07\xa8\x8c\x52\x59\x13\xc8\x82\xc0\xed\xf4\x1d\x00\xf8\x19\x2b\xf2\x88\x9f\xf7\xd8\x98\x85\x1d\xa1\x6d\x73\x42\x62\x88\xdd\xba\xd7\xb3\x39\x30\x5b\xfe\xb6\x0d\x9f\xae\xc8\xfa\xbb\xb5\xfd\x7e\x7d\x9f\xe4\x23\x21\x39\xc2\x0c\x67\xcf\x92\x06\xa4\x44\xe0\xad\x5a\xe1\xa7\xf2\xb6\x8f\x89\x48\x08\x0b\x18\x07\xfa\x3f\x42\x2b\xca\x3e\x12\x9c\xa9\xe5\x57\x99\x1f\x40\x61\x73\x2e\xd4\x95\x96\x29\x4b\x23\x3b\xd0\x26\x5f\xf3\xf1\x5e\xab\x49\x14\x47\x94\xa5\xf4\x81\xa6\x05\xce\xcc\xf8\x9e\xcd\x0c\x0a\x53\x11\xd6\x24\x90\x47\x78\xdc\xa8\x08\xe4\x1d\x6e\x5b\x5f\x3e\xe2\xf1\x10\xa2\x2e\xfe\xe2\x0d\x40\xf7\xe4\x35\x6e\xdb\x41\x7c\xc7\x6d\x83\x79\x90\xdb\x06\xf7\x23\x5f\xf7\x8f\xf3\x26\x2f\x3f\x8b\xeb\x1f\x2d\x43\x77\xf6\x2f\xb7\x2d\xc2\xcb\x1c\xbc\xc3\xdb\x5e\xd8\x1d\xf6\x31\xce\xb3\xce\xb6\x78\x05\x47\xbc\xf7\xb9\x6d\x31\x3e\xe8\xf0\x5b\x01\x75\x79\xb5\xed\x65\x56\x28\xca\x7b\xdd\xb6\x43\xf9\xb0\xdb\x16\xef\xc9\x6e\x5b\xf4\xad\xea\xee\xd5\x6e\x5b\x84\x6f\x3b\x18\xf9\x6d\x1f\xe9\x08\x0f\x77\xdb\x5e\xe6\xc8\xc4\xf8\xbc\xbf\x24\x5c\x1d\xbc\xe0\x6d\x8b\xf1\x85\x07\x6f\xa5\x51\xd1\x41\x3d\xe2\xe1\x3a\xde\x08\xcf\x79\xf7\x45\x84\x2e\x0e\x45\xab\x48\x42\xbe\xf4\xb6\x45\x7b\xd4\xc3\xf6\xbb\x4e\x65\x0e\x22\x5e\xc5\xfa\xd8\xdb\xd6\x8b\xa7\xbd\x6d\x5d\x48\x5b\x94\xd7\x7d\x03\xc4\x3d\xfa\xde\x3b\x24\xba\x79\xe0\xdb\xf6\x32\x04\x24\xce\x27\xdf\xb6\x18\xcf\x7c\xf8\x5a\xad\x3d\xf8\xf7\xf0\xcf\xb7\x2d\xf6\xb0\xa3\x68\x5f\x7d\xdb\x0e\xe5\xb1\xbf\xc6\x02\xec\xb7\x6f\x5b\xf4\x9d\x41\x91\x3e\xfc\xd5\x69\xe2\x6c\x6e\x31\xfe\xfc\xd5\x59\x3a\x28\xc6\x0f\x61\x41\x03\x77\x85\x79\xfb\xdb\xd6\xc1\xe7\x3f\x88\x15\x24\x26\xc0\xb6\x6f\xc6\xc1\x14\x10\x31\x50\x76\x8d\xbf\xf8\xf1\xd1\x03\xb6\x81\x63\x08\x4a\xd0\x22\x22\x09\x6c\x8b\x8a\x27\x28\x67\x89\xf7\x8d\x2f\xbf\xec\x14\x5b\xd0\xcf\xb4\x51\x71\x06\xfb\x4f\x19\x1f\x73\xb0\xff\x9c\x9d\xe3\x0f\xf6\x99\xba\xf3\xa6\xee\x33\x5d\xe4\x66\x76\x9d\xaa\xcb\x26\xee\x83\x56\xc7\xcd\x8b\xa5\x75\x40\x37\xe3\xb2\x7b\x8c\x63\x34\x88\x8c\xc6\x92\xd0\x2e\xe4\x33\x82\x74\x46\x92\xcd\x48\x92\x79\xbc\x55\xbb\x5f\x7d\x23\xb7\x2a\x7e\xca\x4e\x9b\xd6\x75\x9a\x88\xcd\xea\x32\x45\xec\x26\x75\x45\xa3\xc3\xe6\xc4\xd0\xa3\x28\x52\x77\xd8\x80\xd0\x68\xdb\x53\x44\xa4\x85\x6d\x7d\xc5\x5b\x74\x83\x17\x45\xc5\x5e\x34\x40\xdc\x35\x02\xc3\xb6\x4e\x4e\x4e\xa8\xf3\x7b\x16\x1c\x93\x61\x5b\xaf\x91\x19\xb6\xbd\x2c\xc2\xe0\x58\x0d\xdb\x7a\x8b\xd8\xe8\x0c\x72\xe4\x33\x3d\x3e\x86\xc3\xb6\x03\x44\x72\xd8\xf6\x32\x4e\x84\x5d\x63\x3b\x6c\x8b\x8d\xf0\x88\xb8\x5e\xe0\x48\x10\xdb\x5e\x66\xb5\xa2\x63\x43\xaa\xf3\x44\x1a\x5c\xe0\x71\x22\xb6\xf5\x1f\x2d\x52\x05\xfe\x40\x56\x8e\xc8\xf8\x11\xdb\x62\x19\x53\x4c\x2c\x89\xfb\x22\x2a\xa2\x04\xae\xce\x11\x1d\xe3\x4a\x6c\x03\xbb\x48\xdb\xd6\x85\x7f\xc7\xb9\x4b\xdb\x06\x8b\x37\x89\x54\x66\x6c\xa2\x53\x62\xa2\x4e\x1c\x0a\x5d\x19\x63\x47\xd6\x18\xe3\x8a\x6d\xdb\x7e\xd1\x28\x55\x50\x63\xf5\xe3\x08\x1e\x99\x12\x0b\xcf\x3a\x8e\x65\xaf\xf8\x94\x2a\x72\x11\xcc\xbb\xe3\x47\xf0\x88\x15\xdb\xc0\x71\x2b\xb6\xc5\x44\xaf\x44\x98\xb0\xa8\x8c\x88\x61\x01\x8f\xbb\x22\x72\xb9\x4f\x24\x8b\x6d\x91\xf1\x2c\x0e\xa5\x48\x1e\x13\x13\xdb\x62\xdb\x61\x22\x5c\x6c\xfb\x13\x90\xf2\xb8\xf8\x17\x37\xfd\xab\x27\xc3\x2f\x0d\xe1\xc1\x09\x54\xd4\x04\x90\xa8\x19\xdb\xa0\x9e\xa1\xf0\x08\x9a\xb2\x3f\x30\x8e\x66\x3d\x7c\x38\x9a\xa6\xec\x0a\x8d\xa9\xb1\x2d\x62\x3b\xc1\x6b\x0c\x8f\xb2\xb1\x2d\xe6\x92\xc7\x45\xdc\xd8\xd6\x47\xdc\x8d\x6d\x51\x87\x3f\x3e\x06\xa7\x01\xdc\x70\x24\x0e\xe8\x3e\x6d\xa2\x75\x3a\x86\x7c\xd8\x16\xcd\xe3\xe2\x64\xb5\xc8\x08\x1d\xdb\x62\xfd\x78\x3a\x83\x14\x11\xb3\x63\x5b\x87\xc8\x9d\xef\x68\x33\x63\x3c\x7e\xa2\xe3\x7a\x40\xeb\x04\x8b\xfd\xa9\xe2\x06\xbc\xd9\xb1\x71\x40\xb6\x1d\xf6\xa0\xc6\x45\x06\x1d\x1e\x22\x30\xb7\xc8\xb9\x08\x02\x1b\xc3\x21\xac\x77\x21\x04\xfd\x83\xa0\xa3\xda\xea\x82\x6c\xda\xf6\x69\xbf\x9a\x20\x41\x6c\xc9\xa4\xf5\xf3\x63\xce\xab\xb9\xcb\x25\x52\x3c\x88\x8e\x26\x02\xeb\xb7\xac\xab\xa0\x12\x3a\xf8\x51\x66\x1f\x7c\xae\xbb\xce\x69\x82\x15\x4c\x1a\x8f\x16\x32\xe3\xb8\xab\xf1\xa1\xae\xc0\x14\x4d\x67\x6e\x2f\xff\xf3\x6e\x74\x7b\x79\x81\xe8\x1c\xad\x78\x4a\x34\x5d\xfd\xfd\xd3\xdd\xf4\xee\xec\xea\x77\x08\xc9\x38\x30\x7e\x82\xa4\xfa\x09\x8a\x33\xa8\x5e\xfa\xb0\xf0\xe8\x15\xea\x57\x64\xbe\x18\x4d\xce\x7e\xba\x82\x44\x38\x0d\xd0\x64\xf4\x69\x0c\xec\x6a\x77\x10\xd4\x75\x34\x99\x8e\x6e\xbe\x80\x3f\x88\x5a\xaf\x5c\xd0\x07\xac\xc8\xaf\x04\x14\x3b\xf7\x0d\x1d\x4c\xc9\x68\xbc\x7f\xfe\xf5\xc8\x0d\x8f\x14\x47\xae\xa4\x9c\xad\xdd\x53\x96\xc4\x83\x29\xb4\x0b\x33\x86\xa6\x99\x4b\xcc\x52\xb9\xc4\xf7\x20\x6b\xda\x81\x57\xa4\x30\x6c\xe1\x2c\xab\x56\x63\xf3\xb7\x08\x35\xc8\x0b\x64\xa3\x03\x3f\xb5\xa1\xe5\x10\xe0\xb9\xbd\x7d\xb3\x7a\x59\x69\x17\x26\xba\xc5\x24\x3d\xf0\x07\xd9\x27\x30\x0f\x65\x04\xcb\x8c\xd8\x65\x68\x0a\x88\x38\x06\xd9\x13\x05\x3a\x00\x1e\x11\x8c\xb0\xff\xd9\xc3\x6c\x0f\x92\x5f\x05\xc2\xea\x40\x4c\x0e\xc4\xde\x22\x18\x1b\x70\x15\xa0\xcc\xec\xd5\x1e\xa2\x20\xd3\x8a\x65\x57\x8e\x15\x05\xe8\x65\x04\xa3\x3a\x00\xce\x31\x6c\x09\xc4\x90\xa2\x58\x11\x98\x09\x41\xd8\x4f\x90\xa3\x78\x3b\x78\x7e\x6c\x9b\xdc\x5b\xa3\xd0\x47\xfe\xc3\x89\x23\x42\xcc\xc3\x97\x20\x62\xff\xa4\x10\x10\xd6\x15\x91\xfc\x21\x3a\xe1\x43\x35\x91\x83\xff\x58\xec\x9f\xe4\x21\x44\x9a\x21\xc9\x1c\x22\x12\x38\x40\x92\x36\x80\x6e\x45\x87\xe4\x0c\x5d\xca\xfe\x85\xd4\x0a\xe0\x24\x0c\x50\x3d\x12\x4c\xe1\x12\x93\x60\xa1\xef\xc2\x7e\xfd\x62\x02\x4c\x84\xd0\x29\xf9\x81\xb9\xed\xde\xed\x03\x86\x30\x83\x4e\x64\x97\xc4\x06\xdd\x0a\xf5\x85\x0f\xe5\x8b\x6f\x23\x2c\x39\x41\xbf\x73\x46\x25\x1e\x88\x2e\xbc\xb7\x95\x44\xc0\xbb\xdc\xfb\x97\xdc\x83\xb8\x38\x84\xd9\x7b\x7b\x52\x80\xee\xa5\xf5\x20\x37\x04\xc2\x2e\xe1\xc1\xfc\x7b\x06\xf0\x43\xaf\x2a\x30\x50\xbf\x53\x70\x7e\x14\xd3\x08\x06\xe4\xf7\x7b\x69\xa0\xc1\xf6\x87\x28\x7d\xd7\x25\xa8\x1e\xaa\x7f\x87\x9a\xd2\xa2\x03\xe6\x81\x41\xf0\x60\x51\x1e\x16\xec\x0e\xb7\xbb\x40\x82\xda\x81\xc0\x01\x74\x52\x81\x2e\xde\x9f\x43\x81\xe9\xfd\x17\xa0\x6b\x8d\xf3\xf3\x46\xf5\x79\x63\xf8\x20\xa1\x4c\x81\x48\x47\x68\x84\x63\x4c\x14\x11\x20\xa2\x11\x18\xc9\x08\x8c\x60\x8c\x0b\xe9\x8a\x0e\x7e\xeb\x32\x3c\x30\xe8\x2d\x76\xe8\x98\x60\xb7\x2e\x60\x47\x06\xb9\xc5\x54\x3a\x8c\x58\xf4\xd8\x61\x01\x8b\x1d\x33\x24\x74\x91\x63\xc1\x8c\x58\x5c\xc8\xbd\x0e\x46\x0c\x86\xe0\xf3\x90\x06\x08\x59\x80\x92\x84\x57\x57\x73\xf3\x78\x12\x23\x4e\x22\xb4\x2e\x20\x70\x51\x63\x86\x0b\x2c\x26\x74\x28\xc8\x22\xc6\x80\x05\x5c\xbc\xd0\xdd\x0b\x5e\xdf\xd0\x0d\x84\xdd\x3f\x90\xfe\x10\x14\xc0\xbb\x7f\xd0\x2e\x54\x7e\x86\x04\xe7\xee\x19\x90\x7b\x18\xd5\x38\x24\xd8\xb6\xa7\x00\xdb\x03\xe9\xf6\xc3\xc1\xb3\x3d\x04\xcc\xf6\xf7\x04\x88\x09\x86\xed\x35\x00\x16\xbc\xfc\x60\x05\x72\x5c\x70\xeb\x61\x4a\x96\xf5\x8b\x55\x44\x10\x2a\x58\xc9\x06\x09\x36\xed\x33\xc0\xb4\x17\x6d\x18\x38\x78\x14\x42\x20\x61\x41\xa2\xd1\xa5\xc6\xd6\xb1\x45\xde\xbb\x0b\x8c\x20\x02\x58\x27\xe1\xbe\x8c\xb0\xe8\xa0\x43\x14\x13\x03\x05\x74\x1e\xae\xc0\x1f\x24\x4a\xa8\x6b\x80\x66\x9c\xb3\xf2\x41\x4a\x84\x75\x0b\xbe\x84\x3b\xf6\xc6\xf8\x3e\xf9\xad\xd9\x80\x60\xca\xe8\xf2\x5f\xad\x81\x91\x81\x97\x50\x53\xe1\xaf\x6e\xc1\x90\xe0\x78\x02\x58\xd0\x23\x24\xd0\xb1\x43\x70\xa3\x26\x39\xde\x25\xf9\xc6\xc8\x11\x34\x40\xf1\xeb\x92\x95\x43\xcd\xde\xdb\xa5\x0c\x0e\xe4\x0f\x1a\xf4\x79\x1a\x40\x82\x03\x01\x01\x81\x81\x20\x40\x48\xe0\x5f\x60\x59\xbd\x6b\x00\x09\xea\x0b\x1d\x7a\x68\xf0\xde\x7e\x01\x7b\xc1\xc3\x13\x13\x98\xd7\xbd\x2c\x96\xb9\xd8\xad\x67\x32\x22\x66\x0b\x44\x57\xc3\xfc\x17\x1c\x5c\x07\xb1\xc9\x45\x4d\x07\x0a\x9c\xeb\x56\xe6\x2a\x58\x83\x2c\x36\x40\xae\xa7\xc5\x0e\x59\xec\xfa\x2f\x64\x15\x3c\xf5\xf0\xa0\xb5\x7e\x0e\x00\x34\x20\xad\x8f\xd9\xbc\x94\x0b\x54\x92\xaa\xdf\x62\x54\x1e\x01\x01\xa4\x07\x07\x95\x9e\x82\x89\x18\xe1\x72\x53\x7d\x15\x9a\x82\x8b\x3c\xd1\xc5\xa5\x0e\x51\x56\xea\x20\x05\xa5\x60\xd1\x4f\xf0\x22\x52\xd1\xe5\xa3\xe0\x85\xa3\x22\x24\xbc\xce\xc5\xa2\xba\x78\x25\x42\x1e\x9b\xd1\x05\xa2\xe2\x22\x5d\x63\x1e\xb3\xf1\xe5\xa0\xfa\xf6\x59\x3c\x34\x86\x51\xe5\x9c\x0e\x55\xc8\x29\xbe\x84\x53\xc4\xf9\xee\x5e\xb6\xa9\x9b\x8f\x23\xf4\x88\xbf\x82\xcd\x8f\x29\xcc\x74\x38\x28\x3a\x94\x61\x8a\xf6\x89\x84\xb1\x0c\x50\xe9\xa5\xa8\x92\x4a\xf0\x14\x50\xd0\xc7\x6e\xa8\x80\x52\x77\x8f\xc9\x00\x32\xe0\xfb\x09\x17\x15\x62\x0b\x25\xf5\x52\x22\x29\x8e\x74\x44\x95\x45\x3a\x54\x41\xa4\x8e\xa5\x90\x0e\x77\x65\xe3\x0a\x1f\x1d\xc2\x23\xd3\xc1\xd1\xb9\xd8\x51\x5c\xee\xb1\xb8\x02\x47\x87\x2a\x6d\x14\x53\xd4\x28\x32\x4a\x38\xa6\x90\x51\x6c\x8a\x46\x78\xf1\xa2\x28\xa0\xfb\xd5\xed\x03\x3a\xc1\xca\x13\xf5\xef\x0b\x6a\xdb\xab\x73\x8c\x02\xd4\xc4\x88\xab\x88\x11\x9f\x7b\x1e\x5c\x0d\x23\xaa\x16\x46\x54\x25\x8c\x2e\x15\x1c\x3a\x56\xc1\xe8\x3e\x55\x54\x05\x8c\x6e\xd3\xc4\x57\xbf\xe8\x8e\x4e\xa7\xca\x17\xf1\xb5\xb3\xa2\x37\xa9\xdb\x14\xe0\xcd\x89\x1f\x3e\x6e\x53\xba\x81\x1f\xbd\x19\x70\x0a\x03\xac\x72\x01\x75\xc7\x0b\x10\x2c\x38\xb1\x8a\x23\x54\xdf\x4c\xad\xb8\xe3\x79\x87\x80\x1f\x7d\xde\xe3\x2a\x4d\x45\x6d\x42\xfc\xd0\xa0\xc5\x8f\x1b\x16\xbe\xe8\xf1\xe0\x46\x2d\x36\x8c\x0a\x00\x89\x4a\xff\x81\x2e\x11\x1a\xf4\x88\x12\x39\x7d\x15\xc7\x89\x7b\x0f\xc1\x0b\xe2\xf4\x52\x0a\xe7\xf0\x59\x92\xe0\x85\x6f\x7a\x2d\x79\xf3\x02\xe9\x9f\xa0\x05\x6e\x7a\x2b\x6d\x73\x98\x47\x5c\x7c\x21\x9b\x03\x94\xb0\x39\x9c\x9b\x4d\xd7\x82\x35\x87\xf1\xec\x3d\x34\xb6\xd1\x05\x67\x22\xd5\xc9\xf0\x22\x33\xfd\x97\x97\xe9\x5d\xe3\x1b\x59\x4c\x06\x4e\xc8\x63\x0a\xc8\x44\x7b\x08\x03\x48\x45\xb7\xa2\x31\xe0\xe4\x7a\xb1\xd5\x05\x62\xea\x0a\x1c\xc2\x7f\xd8\xb6\x88\xb2\x30\x2f\x53\x1c\x0a\x5e\x7d\x60\xbf\xf2\x2f\x5d\x0a\xbf\x1c\xc4\xd3\xd8\x0d\xbd\x47\xb1\x97\xc8\x82\x08\x51\xdd\xe1\xe9\x1c\xc1\x45\x5d\xa2\xbd\x91\x21\x0a\x73\x70\x21\x17\xe3\x93\x0c\x18\x71\x8f\x12\x2e\x91\xb9\xd0\x63\xca\xb6\xc0\x0b\xb6\x1c\xa6\x54\xcb\x77\x44\x3a\xe3\x8a\xb1\xbc\x36\xe2\xf7\x12\xf0\x1c\x84\x50\x00\x07\x85\x94\x55\x81\x24\xcb\x84\x96\x52\x01\x17\x51\x01\x95\x4f\x81\x17\x4e\x01\x6d\x09\x60\xcd\xe0\x65\x52\x60\x97\x2d\xae\x34\x4a\x1f\x45\x51\xa0\x19\x5c\xa3\x0b\xa1\x74\xf7\xba\x0e\x11\xe3\x4e\xf5\x32\x22\xb8\x03\x54\x46\x89\x2c\x75\x02\xb7\xd3\x77\x00\x20\xa2\xb0\x49\x37\x2f\xed\x90\x18\xb2\x57\x31\x93\x03\x6c\x0e\xcc\x96\xdf\xbf\x0f\x77\x15\xca\x70\x66\xe2\xc8\x22\x24\xfd\x1f\xa1\xb8\x92\x23\x7d\xcf\x0f\xa0\xb0\xfe\xd2\x22\x30\xaa\x0a\x29\x27\xd2\x1b\xc0\xc7\x8c\xe7\x8d\xed\x98\xf1\xfc\x05\x67\x3f\x66\x3c\x47\xc7\x8c\xe7\xc7\x8c\xe7\xd1\x30\xbe\xaa\x8c\xe7\xfe\x39\x5a\xd8\xcc\x61\x18\x8c\x87\xb5\x04\x33\x12\x81\xd8\x09\x68\x8f\xc2\x41\xa1\x50\xe6\xb1\xf7\x8d\xef\x09\x5e\x10\x93\xe8\x67\x2e\x1f\x4b\xf0\x47\x3e\xfb\xd9\x40\x80\x01\x04\x48\x3f\x88\xe8\x07\x71\x0b\x13\xfa\x57\xb2\xe1\x1e\x82\xde\x91\x94\xeb\x3b\xde\x4a\x7f\x82\x44\xbc\x27\xac\x60\x24\x3b\x40\xac\x81\x64\x1a\x40\xa0\xfd\xa4\x39\x58\x48\xa2\xf6\x53\xe3\x9f\xa5\xc2\xaa\xd8\x42\xa7\xe5\xeb\xa7\xc1\x7d\x31\x23\x82\x11\x45\xe4\xa0\x0c\x3d\x19\x14\xec\x9e\xf1\x47\x36\x98\x53\x92\xa5\x72\xeb\xdd\xbb\x33\xce\x03\x11\xb2\x8c\x4b\x18\x58\x97\x0c\xf4\xf0\x23\xce\xf2\x25\x7e\x6f\xbe\xb0\xb1\x2c\x95\x21\xa4\xe2\x02\x2f\x36\x8f\xe9\xcd\x57\x33\xa2\xf0\x8f\x81\x8f\xe6\x38\x93\xe4\xcd\x9b\xc1\x60\xf0\x06\xe7\xf4\xb3\x9d\xfd\x14\xe1\x9c\x92\x27\x45\x98\x81\x65\x78\xff\xef\x72\x48\xf9\x49\x39\xe2\x3d\x65\xe9\x29\x3a\x2f\xa4\xe2\xab\x5b\x62\xcd\xa9\x17\x64\x6e\x02\x6b\x38\x7b\xb3\x22\x0a\xa7\x58\x61\x8d\x02\x66\x8c\x2b\x5c\x89\xb4\xf8\xcb\x92\x64\xab\xa1\x5c\x9e\x08\xf7\xe1\xc0\x84\xec\x3e\xff\xe5\xd4\xb8\xce\xbf\x41\x28\xc3\x33\x52\x72\x3b\x9c\xe7\xa7\x88\x4a\x45\xf9\x20\xa7\x19\xb7\x0b\x9d\x2c\xb1\x50\xee\xcf\xe6\x0f\x4b\x22\xa8\x32\xd8\x4c\x69\x96\xb9\xf7\x9c\x20\x19\xc1\x92\x6c\xfa\xd9\x55\x21\xec\x81\x3f\xcf\x69\xa6\x88\x90\x43\x46\xd4\x23\x17\xf7\x94\x2d\x86\xa6\xd7\x90\xf2\x37\x32\x27\x89\x9e\x7c\x21\x78\x91\x9f\xa2\xa6\x2e\x76\x2c\x07\xa2\x66\x3c\x0b\xbe\x09\xb7\x1a\x38\x78\x1d\x6c\x83\xca\x08\x83\xad\x5f\xec\x2a\x5e\x6a\x78\x3e\x18\x78\xcc\x5f\x33\x2a\xd5\xaf\xbb\xbf\x5c\x51\x57\x67\x36\xcf\x0a\x81\xb3\x6d\x2c\xec\x7e\x52\xb6\x28\x32\x2c\xb6\x7e\x7a\x83\xd6\xc1\x4f\x77\xf6\x00\x7e\xd8\x3e\x7f\x32\xe1\xfa\xf0\x99\x7b\x9c\xe3\xc4\xe8\xe2\x64\x31\x2b\xb7\xc6\x61\xe4\xce\x3e\xfa\xdf\x7f\xe9\xf3\x89\x33\x9a\xe2\x8d\xf2\x93\xe7\x84\x9d\x8d\x47\x9f\xdf\x4f\x92\x25\x59\xe1\xf2\x86\x34\xc9\x09\xe5\xca\x96\x6d\xdb\x78\x62\x8f\x13\xfd\x1f\x4d\xe5\x0c\xea\x5a\x6c\x99\xd3\x45\x19\x60\xb1\x20\x8c\x18\xb3\x2b\x9a\x3d\xa3\x91\xd9\x0a\x34\x21\x04\xad\xb8\xd8\x56\x21\xa5\x44\x61\x9a\x49\xa4\xa9\xcb\x52\xa9\x5c\x9e\x9e\x9c\x94\x5b\x77\x92\xf2\x44\x9e\x08\x32\x27\x82\xb0\x84\x9c\xd8\x29\x4e\x36\x5b\x74\x62\x96\x6f\x60\xd7\x6f\xb8\x54\xab\xac\x6a\x81\x69\x93\x7e\xec\x30\x63\xac\x92\x65\x9d\x20\x6e\xdb\x46\x98\xc9\xb4\xa5\x81\x46\xb9\xed\x8f\x1e\xa9\x5a\xa2\x95\xfe\x87\x1e\xc8\x9a\x5b\x6b\x0a\xa7\x16\x72\xea\x97\xc7\x70\x9e\x67\xcf\xd3\x16\x73\x47\xbb\x18\x30\x40\xa3\xeb\xcf\x67\x57\xa3\x8b\x96\x5f\xaf\x46\x93\xe9\xe5\xf5\xe5\x6d\xcb\xcf\x1f\x46\x57\xd3\xcb\xdb\x2f\xe7\x1f\xcf\x5a\xcc\x01\x03\x74\x7d\x39\xfd\xed\xe6\xf6\xd7\x2f\xb6\x6b\x4b\xa7\x8f\xd3\xe9\xd8\xdf\xe3\xf6\xe6\x6e\x7a\xf9\xe5\xfc\xe6\xfa\xc3\xe8\xe7\xbb\xdb\xb3\xe9\xe8\xa6\x6d\xc2\xcf\xa3\x5b\xcd\xf0\xbf\x7c\xbc\x99\x34\x87\x70\xbb\xe9\xcc\x88\x2d\x1d\xce\xaf\xee\x26\xed\xb0\x5c\xfe\xd7\xf4\xf2\x7a\x32\xba\xb9\x76\xf0\x78\x5e\x00\xad\xec\xcc\x1c\x82\xe6\x3d\xd9\xb1\x8a\xeb\xc3\xc2\x99\xa1\x16\xfa\x5e\x9c\x08\x6e\x12\x25\x55\x6f\xcc\x49\x92\x15\xb2\xd5\x27\xc8\xe3\xc0\x1c\x70\x5b\x0e\x38\x2b\x43\x1d\xb7\x4b\xd0\xf7\x1e\xc8\xa0\x7e\x5e\xc5\x7c\xef\x21\xdd\xca\xb5\xac\x4e\x68\x8c\x00\x6e\x90\x01\x80\x38\x41\x86\xf2\xe1\x02\xc8\x6c\x61\xbf\x06\xaa\x38\xd7\xe7\x92\x58\x02\x6e\x3f\x46\x58\x39\xdb\xb7\x47\x8d\x0e\x54\xed\x06\xb5\x6b\xb5\x30\x3d\xf2\x84\x13\x65\x3e\x5c\xfb\x3d\x3a\xb0\x14\xb7\x17\xee\xa5\x75\x1e\x39\x17\xea\x1a\xa0\xa3\xae\xa1\xe2\xde\xe5\x66\x00\xf3\xb0\x7f\x5c\xd2\x64\x69\x73\xc9\x95\x48\x3d\xe2\x90\xed\x66\xcd\x48\x21\x36\x8d\xb0\x49\xc1\x01\x15\x89\xca\xbc\xc8\xb2\x67\xf4\x47\x81\x33\x3a\xa7\x46\x5f\x61\x51\x33\xfb\x64\x9d\x6e\x83\x46\x28\x2f\x7d\x2b\xdb\x41\x54\x56\x92\x04\x2c\x27\xf5\xad\x33\x1f\x55\x93\x94\x18\xae\xaf\x36\xbb\xfa\xb2\x68\x00\x2c\x1b\x09\x67\x8a\x3c\x79\x10\xad\x23\x59\xba\xa6\x5a\x3e\x54\x9e\x34\x2d\xbd\xb9\xc1\xd6\x77\xce\x83\x81\xcf\x84\xed\xd7\x63\x0f\xd0\xd9\xf5\x7f\x7b\x7e\x9d\x8c\x2e\x2e\xcf\xcf\x6e\xbf\x8c\xae\x7f\xba\xb9\xbb\x6e\x96\x6e\xb6\x7b\xde\xdc\x4d\x43\x5d\x7f\x3e\x9b\x5e\xfe\x76\xd6\x3e\x2d\x60\x3b\x4a\x76\xd1\x8d\xca\x96\x5f\xf7\x48\x66\xad\xf8\x7b\xbe\xc4\x34\x90\x50\xa3\x01\xae\x8a\x87\xb2\x1d\x46\xbf\xd7\x28\x43\x94\x21\xbc\x86\xb5\xaf\x5c\x03\x5a\xc0\xa5\x89\x39\x62\x65\x9e\x89\xd8\x88\xfe\x33\x3d\x04\x91\xd6\x65\x4b\x71\x24\x69\x4a\x12\x2c\x00\x7e\x81\x87\x73\xa5\xae\x64\x05\x18\x7b\x0d\xa2\x8d\x18\xe9\xab\x58\x19\xe1\x8b\x61\x17\x0f\x38\x2b\x08\x2a\xa4\x7d\x3f\xe1\xe0\x88\x68\x6b\xf7\xde\xca\xdd\x07\x0a\xd4\x67\x1a\xe6\xfb\x69\xe7\xea\x80\x67\xc9\xd7\xeb\xa7\x4e\x71\xfb\xfc\x01\x60\xaa\xa9\xb0\x79\x8c\x21\xc5\x5f\x49\x50\x8d\xe1\x91\x16\x11\x83\x62\x49\x37\xbd\xd4\xb1\xda\x0e\x1f\x84\x22\x8b\xd9\x07\xe0\xb6\xa1\x0e\xee\x87\x31\x4b\x87\x7a\x5f\x3e\xd4\xd5\xfb\xaf\x8b\x3f\x62\xbc\x07\x20\xa8\x33\x6c\xfd\x9a\xaf\x14\x96\x92\x2e\x98\xcd\xb3\xa6\x36\x8b\x69\x88\xc1\xd7\xa4\x8c\x41\x1b\x69\x23\x4a\x93\xeb\xd1\x2e\x01\xdc\x21\x6f\x80\x8d\x8a\x26\x80\x07\xcc\xdf\x2b\x30\x93\x9a\xac\x77\x4c\xae\xb4\xcb\xf3\x7e\xdf\x91\x8c\x7e\x2f\xe5\xb5\xaf\x87\x24\xf0\x9c\x47\x3e\x08\x6b\x22\xca\x5a\x78\x9a\x3d\x23\xaa\xa4\x19\xef\xab\xbc\x07\xbf\x82\xdb\x08\xf4\x1d\xda\x9f\x73\x97\xe0\x4f\x1e\xe7\x8c\x66\x21\x77\xc3\x37\x6a\xaf\x27\x6c\x47\xdc\x57\xda\xad\xda\x2b\xda\x5b\x97\x40\x98\x43\xfa\x22\x04\xaf\x86\x59\x9b\xd2\xa0\xf3\xda\x1e\x97\x75\x05\x57\xb7\xc7\x8f\xcd\x43\x59\x57\x7e\xf6\xf8\x18\x72\x9e\xb2\x2f\x7d\x3b\x23\x29\xdb\x6d\xc3\x1a\xc4\x89\x3e\x5f\x8b\xb0\xd5\x39\x53\x62\xa2\x95\x6c\x0c\x0d\x17\xe5\x0b\x1b\xc6\x93\x5e\x3b\x99\x44\xe8\x61\xc9\x65\xe0\x49\x07\x97\x95\x61\x32\xde\xe1\x24\x11\x73\xf5\x22\xa5\x8f\x1a\x13\xb6\xf7\x57\x93\x74\x6a\x23\x74\x1f\xa8\x50\x05\x86\xe4\x77\x84\xe5\xcc\x8b\x7b\x7b\x60\x60\x26\xd1\x56\xc4\x36\xf8\x6c\x70\xc4\xd0\x34\xa2\xc8\x6d\x00\xec\x9d\x02\xcb\x5e\x8c\x82\xca\xb1\xed\x9e\xed\x56\xb0\x86\xbe\x97\x17\xa3\xdb\xcb\xf3\x70\x62\x64\xe4\xdc\x8b\x74\xe7\x2f\xb7\x97\x93\xf1\xcd\xf5\x04\x36\x49\xe4\x8b\x0a\xfe\x6e\x3c\xf4\x23\xf9\x85\xb3\xd9\x05\x3a\xe4\x40\xeb\xe2\xb4\xa2\x0e\xb1\x3a\x14\x84\x33\xce\x16\x1b\x95\xb5\xbe\x4d\x9e\x60\xa3\xf0\x75\x73\x0a\xc6\x0c\x4b\xa8\xf7\xfc\x05\x51\x44\xac\x28\x23\xb2\xfa\x1e\xa5\x4c\xea\x89\x38\x43\x5c\x78\x93\x3d\x84\x14\xc7\x77\xd7\x93\xf1\xe5\xf9\xe8\xc3\xe8\xd2\xa7\xeb\x3d\xbb\x9b\x7e\x6c\x0f\x5c\xb3\xbf\xff\x3f\x9f\x5a\x79\x7a\x36\x6d\xf7\xdf\x02\x1c\xad\xf5\xc2\xc7\xaf\xda\x92\x3f\x56\x14\x5d\x36\xe7\x3a\x9a\x11\xab\x42\xf5\x19\x83\x42\x4b\xe7\xf3\x15\xb0\x3d\x3e\x5d\xde\xfe\xdc\x7e\xd3\x07\xe8\xec\xc2\xf7\xf5\xed\xe5\xa7\x9b\xcf\xbe\xcf\x47\xd7\x93\xcb\xdb\xe9\x97\x9f\x2e\x3f\xdc\xdc\x02\xfa\x9d\x7d\x68\x33\xe2\x6f\x75\xfb\x30\xba\x6d\x71\x15\x28\xc1\x1a\x5f\x9d\x9d\xb7\xcf\x07\xd8\x4d\xa3\x92\x88\xb0\xaf\xfc\x32\xb9\xb9\x2e\x6d\x2b\xce\x96\x69\x2f\x3b\x9a\x11\xca\x16\xce\xa1\xc4\xb3\x95\xfb\x51\x90\xa0\x2b\x5d\xdd\x07\xef\x91\x8b\xfb\x8c\xe3\x74\x42\x32\x92\x28\x5e\x93\xa0\x7c\x94\xa2\xea\x07\xb6\xdd\xe0\x4f\x31\x00\x81\xef\x5e\x61\xe7\xbb\xf4\x1f\xfc\xf3\x78\x02\xba\x77\xdd\xab\xf0\x02\x74\xf1\x9c\xe6\x2f\x1b\x0f\x40\xf7\xd7\x9a\xf7\x5f\x09\xb9\xdd\xbe\xa5\x7b\x65\xad\x67\x5e\x3c\xda\x1f\xd6\x2e\x81\x8b\xf5\xe8\x2d\xee\x80\xd6\x09\xf4\x95\xf9\x03\x6e\x3f\xe7\xe7\x73\x92\x98\x8c\x02\x24\x5d\xec\x64\xda\xdd\xf8\x01\x96\xbe\x7f\x5b\x17\xb5\x9b\x1f\xa0\x5b\x33\xb0\x0b\xa0\x6c\xa1\x70\x30\x5a\x15\xa0\x53\x1e\x1a\xd5\x4a\x9f\xac\xdf\xb8\xdf\x1b\xf1\xcc\x1c\x36\xcd\x4b\x9c\x97\x79\xf9\x5c\xc1\xfd\xf9\x20\xce\xf4\x51\x3e\x10\x71\x4e\xc9\x1c\x17\x99\xba\x64\x69\xce\x69\x5b\x34\xeb\xfe\xd3\xe8\x47\x66\x0b\x83\x69\x75\xee\x34\xdf\x20\xf2\x94\x73\x67\x71\x30\x5e\x3a\xe5\xa9\x6a\x1c\xcb\xeb\x31\xdf\x8f\xef\xbe\xdf\x57\xbe\xfd\xe1\xb4\x7d\x6a\x18\xe2\x2e\xd3\xc9\x96\x5f\x95\x3d\x43\xef\xd0\x63\x99\x05\x7e\x55\x48\x2d\x9a\xb4\x00\x5b\x30\xfa\x47\x41\x10\x4e\x04\x97\x12\xe1\x2c\x2b\x8f\x6c\xf3\xea\xec\xbf\x8d\xed\xb1\xc5\xe1\x07\x8b\xff\x4d\xb9\x9d\x66\x4f\x73\xad\x9a\x01\x4d\x4f\xde\x2e\x98\xf5\x17\x0d\x11\x0a\x7e\xde\xb9\xff\x86\x7c\x23\xc6\xd9\x80\x91\x05\x56\xf4\x81\x94\x1a\x2c\xeb\x65\x66\x87\x0b\x49\x94\x7e\xa5\x57\x1e\x34\x52\xd5\x9f\x9f\x65\x99\x8f\xf2\x02\xb9\xd4\x6d\x2f\xb5\x8a\x0a\x8b\x05\x51\x7e\xdf\x8b\x30\xea\xa1\x78\xbf\x36\x5f\x95\xdd\x6c\xf3\xfa\x82\x55\x83\xfb\xec\xed\xd3\x0f\x61\xac\xd0\x82\x3f\x10\xc1\x2a\x17\xb0\xd5\x98\x39\x23\x4b\xfc\x40\x79\xcb\x6e\x02\x7c\x41\x81\xa1\xe2\x3d\x04\xd8\xf6\xb7\x93\x09\xcd\x97\x44\x4c\x0a\x0a\x07\xb9\x92\xc7\x69\x34\x2f\x59\x22\x49\xdf\x59\x8d\xb4\x2c\x72\x73\x33\xd4\xc6\xe1\xcd\x9b\xc3\xc4\x02\x60\x18\xad\x27\x9b\x53\x30\xb4\xb5\xdf\xba\xec\xe1\x70\x56\x68\x44\x7b\x7f\x3b\x65\x64\xb4\x5b\x92\x52\x41\x92\xe0\xb5\xf3\x27\xf2\x5a\xe1\xa7\xd2\x32\x1e\x34\x80\xb5\x6d\x7d\x59\xe9\x45\x5f\xbc\x35\x39\x72\xaf\x2b\xcf\x46\x86\xb4\x25\xd3\xab\xc9\x97\xb3\xbb\xe9\x8d\xbf\xcb\xe7\x1f\xbf\xfc\x3d\xd8\xe3\xc7\x60\x8f\xf6\xa4\x1d\x65\x8f\xf7\xfb\xec\xd8\x8a\xb2\xfd\x97\xd9\xe5\x31\x3a\x2e\x73\xfb\x32\x7b\xd3\x3b\x84\x56\x02\x92\x23\x2b\x98\xd6\x21\x98\xd2\xc1\xe8\x3e\x6f\xbe\xc0\x26\x03\x65\x7e\x00\x2c\x0c\x24\xe3\x43\x98\x19\x59\xd4\x7f\xd7\x92\xfb\x4b\x32\x26\xcb\xac\x41\xa9\x4f\x5e\x2f\x0e\xd0\xec\x0d\xaf\x8e\xbd\x3d\x10\x41\xe7\xcf\x95\xd5\xf7\xa7\x7a\x7f\xfd\xf0\x4f\xf2\x7b\x8f\x67\xdc\x2b\x83\xbf\x5f\x35\xf3\xb7\xad\x70\x3d\x06\x6c\xfb\xd5\xb4\x2e\x3c\x86\x30\x53\xd2\xd2\xab\xac\xad\xea\xda\x4c\x62\xb7\x73\x9e\x15\xab\x72\x6b\x7e\x99\xdc\x5c\x8f\xb1\x5a\x9e\xa2\xa1\xfe\x60\x68\x34\x34\x66\xe6\xda\xf3\xd3\x2a\x6f\x9a\x82\x75\x26\x16\x9a\x4b\xa6\x84\x3d\x82\x16\xc8\x8f\xeb\xb1\x76\xee\x47\x7d\xda\x8c\x27\x9b\x80\xbe\xad\x99\x7f\x5b\x12\xa5\x9f\x0a\x95\xa0\x20\x93\x26\xf1\x49\x11\xc1\x70\x56\x6a\x12\x56\x44\x2e\x35\xa1\xcf\xb1\x50\xa5\xea\xc5\xfc\xed\x87\x4f\x97\x93\x8f\x5f\x2e\xff\x6b\x7a\x79\x7b\xbd\x66\xac\x5c\x20\xf3\xe7\xd1\xb5\xfd\xf3\xdf\x2a\x50\x5f\x55\x41\x09\x02\xae\xf7\x3f\x2b\x9a\x41\x77\xcb\x82\x52\x2a\x13\xfd\x1e\x7d\xb6\xac\xa9\xac\x9e\x60\xd7\xf3\x87\xeb\x9b\xeb\xcb\x77\xc6\x08\x3a\x3a\x7f\xa7\x21\xbb\xb8\x9e\x54\xe1\xb9\xdd\x9e\xc1\x07\x51\x79\x64\x87\x89\x20\xb8\x4c\x9f\x29\x15\x5e\xe5\x75\xe0\xde\x9e\xef\xf6\xd1\xcb\x8a\x4d\x09\x3b\xfb\x4f\x41\x5c\xd2\x8d\xb2\x92\x9b\x53\x87\x9a\x6a\x09\x8f\x4b\x52\xbe\x33\x8c\x0e\xcf\x99\xdc\x1e\xb1\x44\x66\x72\x92\x0e\xd1\xc8\x24\xb4\x64\x5c\xa1\x45\x81\x05\x66\x8a\x58\xcd\x8f\xcd\xe2\x8b\x28\x43\x4b\x9c\xe7\x84\xc9\x81\x4b\xb4\x68\xcc\xd5\x6e\x54\xa7\x01\x2b\xf3\x8a\x6f\x8c\xbc\x72\x88\x6c\x0d\x55\x89\x56\xf8\xd9\x0c\x6f\xab\x2c\x52\x69\x6d\x87\xe5\xc4\x6b\xf8\xd7\x2f\x51\xca\xd0\xed\x87\xf3\xf7\xef\xdf\xff\x87\x21\xed\x26\x43\x33\x35\x19\x96\xef\xa6\xe7\x43\x34\xe6\x79\x91\x95\xc1\xf4\x06\xe1\x67\xa9\xc8\x6a\x88\x6e\x09\x4e\x07\xfa\x9d\x3b\x44\xd7\x45\x96\xe9\x8f\xdd\x88\xfa\x01\x2b\x87\xe8\x93\x86\x9e\xb2\x39\xdf\x28\xd5\x17\x54\x95\x04\x27\xe1\xab\x55\xc1\xa8\x7a\x3e\x31\xb5\xf1\xe8\xac\x50\x5c\xc8\x93\x94\x3c\x90\xec\x04\xe7\x74\x90\x70\xf6\xa0\xd7\x59\x23\xb7\x4a\xff\x5a\x6e\xe3\xdb\xca\x29\x38\x5b\x90\xca\xf6\xa7\xd8\xa4\x4c\x7e\x21\x3b\x4c\xed\x7a\x6f\x8c\x31\xd5\x9f\x6a\x16\x99\x6d\x22\x65\x09\x76\xcd\x2e\x23\x1d\x25\x5f\xdb\x65\x2a\x5f\x7d\x27\xc6\x99\x92\x6c\x09\xb2\xa0\x52\x89\xe7\x83\x98\x66\xdc\x24\x03\xb3\x6e\x60\x03\x8d\xab\xf5\x10\xc8\xcf\x30\xdd\x78\x9f\x55\x0a\x44\x34\xf8\x1e\x7b\x22\x37\x5b\x84\xad\x7d\x6d\x3c\x75\x71\x8a\x38\xbb\x07\x3c\xe5\xc4\xfa\x8b\x1e\xf0\x09\xa4\x9e\xb0\x2b\x77\x28\x93\x4c\xbb\x73\x40\x9c\xa7\x76\x3f\x66\x95\xd6\xf5\xb6\x60\x36\x2e\x76\xb9\x15\xcd\xef\xb4\x80\xea\xb8\xcc\xe4\x0f\xf4\xe6\x5a\x27\xfe\x8f\x07\x64\xff\xad\x72\x37\xf7\x50\x27\x21\xe7\xa2\xcd\x38\x17\x73\x10\xc2\xda\xfc\x26\xad\xbc\x99\xbc\xff\xed\x75\x17\xf1\x2c\x49\x78\x71\x38\xb3\xa6\x2d\x80\x01\x3e\x42\xd5\x92\x11\xee\xdb\xce\x98\xb7\xad\x73\x07\x17\x23\xf2\xa4\x37\xa1\x9e\xe4\xa6\xc5\xd0\xcd\x4a\xf6\x69\x52\x21\x56\x12\x28\x6c\x49\xdc\x7a\xc8\xba\x23\xd5\x8b\x11\xf6\x46\x83\x73\xc7\x57\xca\x57\x43\xa2\x7c\xe8\xec\xce\xd5\xa4\xb0\x1c\xa0\xa6\xb7\xcb\xce\xaf\xe5\x13\xa6\x71\xfe\x06\xd0\x1a\x29\x43\xdd\xd4\xd8\x7e\x85\xcb\x87\x57\x9f\x7c\x11\x68\x63\x8f\x35\x22\xf7\x40\xa6\x3d\x86\xe3\x1e\x8d\xc6\x21\x3a\xeb\x37\x16\xf7\x60\x28\xee\xc1\x25\x30\x60\x1c\xee\x9d\xc4\x6d\x5e\xde\xde\xd3\x0c\x79\x84\xef\xae\x49\xf3\x65\xd4\x0f\xf5\xda\x1f\xed\xbb\xbd\xf6\xe7\x8b\xeb\x5d\x8f\xe6\xd6\xe5\x0b\xa8\x8b\x5f\x8c\x32\x85\xbc\x52\x83\x11\x49\x5b\xe4\xa8\x24\x0f\xb5\xb5\x3d\x3a\xb7\x1e\x75\xad\xdf\x98\xae\xb5\xcc\x7d\xf2\x0a\x5c\x62\x27\x16\x96\x5d\x2d\x8c\xfd\x6b\x5d\x01\xe3\x20\xdf\xd5\xb0\xac\x07\xf9\x0e\x94\x2b\x6e\xbd\x90\x20\x38\x59\xe2\x19\x35\x2f\x3a\x9b\xfb\xc4\xa2\xb9\x4d\x80\x76\x35\x2f\x5d\xb5\x2d\x6e\x6c\xa8\x9e\x85\x2c\x9a\xde\xfd\xaf\xce\x75\x34\xc1\xb9\x2a\x04\xf9\xd4\x6a\x5b\xf7\xa5\xc7\xbc\xb8\xfc\x70\x76\x77\xd5\x96\x48\x72\x34\x9e\x9e\xfd\x74\x75\xd9\x1c\xe8\xd3\xc8\x5c\x41\x10\x7b\xbc\x50\xbf\xba\xe7\x68\xbb\x6b\x65\xa3\xbc\xdd\x28\x6e\xfb\x73\x43\x1d\x5d\x34\x8f\x2e\x9a\xdb\x5d\x0e\xef\xa2\xd9\x41\x54\xa7\xec\x25\xc8\x5f\x6d\x33\x46\xe3\xaa\x36\x63\x73\x97\x2a\x71\x7e\x33\x5e\xb0\x96\xd0\xb0\x3f\x23\x35\x7d\xa1\xd0\x81\x23\x61\x2c\xdb\x91\x30\xfe\xa9\x09\x23\x2f\x94\xa1\x40\x53\x5b\xb2\x79\x6c\xde\x35\xde\x87\xf7\xb6\x18\x5c\x6a\x31\xca\x71\xca\xda\xcf\xc8\xbe\x90\x62\xde\xde\x56\x42\x1d\xb7\x25\x23\x0a\x5d\x28\x5f\xfa\x0e\x5f\x7e\x42\xa7\x9d\x59\x97\x4c\xac\xd9\x4a\x0f\x2a\xbf\xf9\x0a\xeb\x6d\x6b\x91\x9c\x4f\xbb\x5c\x1f\xda\xf2\x00\x9b\xd2\x90\x26\xe6\x80\x4a\x17\x71\x5c\xda\x47\x5b\x63\x8e\x21\x99\x37\xc2\xf5\xfa\x20\x37\x35\x18\xdb\xec\xcf\xdb\xeb\xdb\x39\x9b\xbb\xb7\x92\x9f\x24\x90\xb2\xb7\x8f\x1d\xf3\xa2\xd3\xe6\x11\xdc\xc6\x65\x07\xe8\xf6\xf2\xe7\xd1\x64\x7a\xfb\xdf\x5f\x6e\xae\xaf\x9a\xb2\x80\x0c\xd0\xd9\xd5\xd5\xcd\x6f\x5f\x9a\x73\x84\x74\x89\x3f\x3c\x86\x7e\xbb\x76\xd4\x8e\x7d\x27\xda\x31\xe7\x17\xb2\x56\xf7\xf6\xe7\x8a\xb8\x15\xd0\xdd\x48\x89\x64\xa5\x66\xaf\x34\xde\x5c\xa5\xc6\xcb\x52\x64\x27\xe7\xdb\x6c\x2d\x6a\x49\x24\xb1\x59\x88\xec\x90\x16\xfe\x9f\xab\xb3\x04\xdd\xfd\x3c\xee\x91\x95\xe4\xc2\xce\x08\xb9\x79\x7c\x38\xae\xbc\xe6\x10\x92\x30\x55\x81\x01\xe6\x28\x79\xf4\xee\x3b\x7a\xf7\x1d\x40\xa5\xfc\xd9\x5e\x60\x67\x27\x7b\x83\xb6\x34\xcb\xdb\x3f\xd6\x14\xcc\x3b\x97\xdf\x52\xc2\x9a\x8b\xdf\xc3\xae\x02\x7a\xfb\xb3\xef\x43\x0f\x6d\xa8\xac\x39\x02\x84\x29\x43\x66\x28\x5b\xbc\x43\x92\xd1\xf5\x3f\xb6\xd8\x25\x51\x49\xdd\x0f\xb0\xa3\x36\xda\xad\xe7\xa0\x94\xc0\xc0\x5a\xe9\x9e\xbc\x44\x4a\xdf\xc0\xd7\xe4\x2d\x52\xb2\x85\xa0\xab\x43\x37\x46\x52\x03\xd1\x32\x96\x57\xee\x1c\x13\xcb\xa3\xbe\x1e\x3a\x4a\xe5\xfe\x53\xe9\x92\x9b\x91\x74\x7d\x3c\x6d\x82\x41\x51\x64\xc4\x16\x78\x35\x59\x50\x1d\x5a\xbd\x78\xa9\x24\x5c\xc8\xe6\x27\x7a\x03\x80\xe7\x9a\xc1\x0d\x6e\x04\x5d\x68\xbe\xe4\x28\x15\x9a\x2c\xb1\x30\x49\xa9\xcc\x30\xe8\x87\xf3\x9b\xdb\xc9\xdf\xba\xaa\xb0\x70\x96\xf1\xc7\xf3\x75\x48\xb2\xf7\x31\x99\x65\x78\x96\x91\x2d\x41\xb9\xde\x20\x51\xc4\x66\xd2\x8f\x04\xa7\x0d\x69\x54\x36\xed\x95\x85\x56\x39\xb0\x3f\x11\xb5\xe4\x29\x34\xe2\xfd\xca\x9d\x2b\x73\x8e\x56\xf6\x53\x3b\x8e\x15\x74\x70\x92\x10\x69\x15\x02\x25\x27\x6a\xd7\x64\xbd\xce\x05\xb1\xc7\x33\x42\x8d\x57\xde\x35\x6e\x3e\x74\xd4\x11\x0b\x52\x5d\x97\x9c\x08\x8d\x8c\x07\x05\x7d\xea\x4d\x91\x2e\xd2\xe0\x7c\xb3\x69\xaf\x79\xcd\xa0\x87\x68\xa2\x84\x4b\x42\xa7\x88\x28\x17\xcc\xa6\x1e\x2e\x97\xcc\xad\xe5\x1e\xeb\xe0\x29\x5b\x67\x5b\xa0\x78\x9d\xc3\xce\x5f\xc2\xae\x1c\x09\x52\x2c\xae\xec\x6b\xca\x8c\xf5\x3a\x62\x2e\xc8\x9c\x3e\xf5\x3a\xa4\x20\x0b\xe2\x1b\x11\x3a\x5a\x18\x5d\xf8\x48\x41\x34\xe1\x43\x85\xd0\x83\xa6\x01\x36\xc8\x85\xd6\xf3\x30\xb9\xdd\xed\x6a\x7c\x9d\xb9\xcd\xf2\x85\xa6\xde\x89\x45\xff\x07\x92\xea\x39\x23\xf6\xdb\xc1\x0c\x4b\x92\xba\x3b\xff\x43\xe5\x01\xb9\x2c\x66\xc3\x84\xaf\x4e\x16\x9c\x2f\x32\x72\x22\xc8\x3f\x4e\x1e\xe9\x3d\x3d\x99\x3c\x33\x85\x9f\x5a\xa4\x82\xc3\xa2\x1b\x54\x17\x23\x10\x9d\xb4\x36\x9e\x6f\x4f\x48\x58\xe1\xa7\xb3\x85\xc7\x2a\x08\xf4\x07\x69\x5d\xbf\x94\x64\x64\xd1\x9a\xd4\xa0\x57\x9b\xa5\x7e\x2b\xaf\x33\xf1\x58\x21\xa5\x9a\x95\xac\x84\x64\xe7\x81\xff\x22\xf6\xcc\xf2\x15\x19\x81\x89\xe9\xdf\x80\x8e\xfd\xfb\xe3\x92\x08\xb2\x85\x96\xe7\xa8\x6c\x23\xac\x25\x37\x9a\xfa\xca\x21\xf4\x85\x78\xe0\x68\x18\xbb\x3b\xe0\x59\xf1\x41\xf7\x43\x94\xe9\x61\xf4\x2b\xce\x3d\x24\xd6\x39\xa9\x39\xdb\x7a\xf7\x20\xdc\x76\x8f\x6d\xcd\x4f\x4a\x98\x32\x6f\xdd\xce\x6f\x90\x99\xd7\xa4\x1a\x90\x4c\x00\x72\x09\x40\x2a\x81\xb3\xfb\x81\x79\x58\x4e\x8c\xa2\xa8\xb7\x21\x17\x22\x4f\x7a\x1e\x52\x43\xf9\x8f\x4b\x21\xf8\xfe\x85\x80\x01\x08\x43\x87\x02\x20\x1a\x03\x55\x00\x41\x60\x1d\x92\x35\x4c\xfe\x55\xed\xbf\x02\xc6\x06\x85\xaf\x31\x33\x04\xe7\x2d\xc2\x61\xa8\x82\x55\x91\xa2\x84\xa7\xa6\x04\x4a\x21\xcd\x7f\xcc\x1d\x36\x04\xe1\xa3\x52\x79\xe0\x70\xba\x67\x1b\xac\xde\x08\x65\xea\x7d\x7b\x1e\x28\x04\x34\x62\xeb\x96\x13\x91\x10\x66\x8c\x52\x70\x9c\xc7\xeb\x8f\x8c\x7e\xc8\x3d\x38\x9d\x91\xc2\x60\xed\x3c\x8a\x42\xd2\xd3\x92\x20\xa2\x77\xda\xae\x5c\x2e\xf8\x03\x4d\x43\xa5\x82\xe1\xe5\x35\x02\x19\xcf\xcb\x56\x2e\x6a\xca\x8b\x59\xe6\x63\x71\x0e\x68\xb3\xb2\xd6\x8d\x00\xb0\x05\xfb\x96\x59\x30\xd2\x8d\xaf\x20\xd0\xab\x63\x05\x73\xfa\x44\xd2\x0b\x0d\x74\x6f\x43\x6a\xc1\x97\x59\x6d\x9c\x7f\x60\x28\x9d\x04\xc0\x08\x1d\x0a\x0c\x1b\xec\xe0\xee\x0e\xe7\x5f\x1c\x20\x65\xdb\xa0\x1b\x71\xcb\xcf\xd2\xd4\x54\x2e\x7c\x22\xa9\x3d\x83\xc8\x19\x1c\xe7\x5c\x3c\x62\x91\x96\x06\x4e\x10\xe5\x02\x02\xea\xc8\xd1\xfe\xb4\x88\xb3\x8a\x83\x6a\x1a\x3c\x8c\x08\x3d\xd2\x2c\xd3\xe4\xcb\x8a\x80\x24\x45\x3f\xfc\x7d\xf0\xe3\xdf\xff\x1e\x78\x2e\xbe\x6e\x82\xbc\xf7\x22\x1c\x29\x31\xbc\xc3\xd2\xf7\x2c\x0f\x2f\x95\xdb\xb4\xf6\x45\x82\xad\x36\x4e\x03\xe4\xf4\x9b\xab\x2c\x28\xc8\x8a\x3f\x04\x0e\x4f\x50\xe3\x71\x68\x2c\x7c\xda\x0f\x64\xfc\x9a\x42\x3c\xf8\xdb\xda\x16\x40\x27\x41\x64\xce\x99\xf4\xec\xdc\xf1\x44\xb7\xb7\xe3\x89\x7e\x6d\x27\x3a\xd0\x61\xd5\x5e\xef\xcc\xbb\x97\x90\x4b\x80\x0b\xb5\xe4\xa2\x35\x03\x8f\x6d\x47\x63\xd5\x3e\x43\x1e\x8d\x55\x47\x63\x55\x7b\x3b\x1a\xab\x76\x5b\x9b\x1b\x58\xeb\x82\x5c\xd7\xdc\xc1\x36\xe6\x05\x51\x64\x64\x13\x3c\xe8\xe7\x2a\xa1\x02\x82\x20\xd6\xd9\xbf\xee\x10\xc2\x34\xbd\x2f\x04\xdb\xe2\x99\x66\x90\xec\x03\x09\x3f\x90\xf4\xc7\xd1\x55\x28\xf9\x8f\x1f\x15\xc4\x02\xe2\x87\x0d\xd1\xc9\x58\xb5\x55\x08\xf5\x98\xd1\x00\x28\xc7\x0c\x17\x46\x15\xfe\xbe\x07\xb1\x85\x43\x56\x86\x86\x31\x87\x83\xd6\xa6\x86\xb0\x88\xaf\xc3\x24\x0e\x87\x36\xf0\xc1\x03\xea\x46\x17\x8c\x0b\x72\x27\xe8\x39\xf6\x3d\x1a\x77\xed\xb6\x19\x5e\x20\xc5\x9d\x0d\xfb\x59\x33\x95\x75\x5a\xeb\xbb\xdb\x91\x5d\x4c\xe3\x76\x6b\xd8\x8b\x17\x9b\x19\x41\x09\x96\x64\x40\x99\x24\x4c\x52\x45\x1f\xbc\x75\xb1\x21\x5e\x9d\xc8\x39\x38\x1e\x05\xf7\xa3\xe0\xde\x69\xa8\xa3\xe0\xbe\xd7\xdc\x47\xc1\x7d\xb7\x85\xea\xd5\x37\x87\x26\x57\x93\x34\x60\xbb\x1a\x3e\x0c\xfb\x75\x30\xf3\x45\x93\xd7\x40\xae\x47\x94\xcb\xf6\x90\xf2\x90\x02\xcb\x1f\x6e\x8e\xc0\x66\x9d\x3f\x0a\x22\x9e\xc7\x58\x60\xff\xc3\xe4\x28\xfd\x1f\xa5\xff\xb6\x9e\x47\xe9\xdf\x07\xea\x51\xfa\xff\x0a\x68\x03\xa5\xff\x2d\xa4\xff\x53\x53\x42\x94\x6b\x52\x48\x14\x11\x36\xa2\xac\x14\xd2\xc3\x84\x36\x30\x99\x4c\x96\xc4\xcf\xde\x8e\xc2\xf6\x3e\x43\x1e\x85\xed\xa3\xb0\xdd\xde\x8e\xc2\xf6\x6e\xb3\xd1\x8b\x57\x9e\xf2\x21\xb6\xc5\x0b\x7e\x87\xd2\x60\x83\x10\xba\x0e\x87\x1a\xec\x4a\xe5\x36\x4c\x77\x13\x5b\x90\x70\x26\x95\xc0\x94\x95\x5e\x64\xd8\x65\xbe\x36\x89\x66\xfd\x32\xef\x1c\x61\x6b\x32\x50\x7c\x9d\xf8\xc7\xe4\xa3\x30\xb2\xfd\x7a\x8e\x97\x7b\xa0\x14\xc2\x53\x0d\xf1\xc8\x73\xf6\x1b\xf2\xc8\x73\x8e\x3c\xa7\xbd\x1d\x79\xce\x6e\x7b\xa4\x6a\xc9\x0b\x15\x8c\x12\x3c\xaa\x1b\x8e\xea\x86\xf6\x9e\x47\x75\x83\x0f\xd4\xa3\xba\xe1\x2b\xa0\xdd\x45\xdd\xb0\x45\x0c\xd1\x12\x5b\xad\xb0\x34\x41\xbc\x06\x9f\x75\xe2\x63\xef\xd4\xd6\x73\xe3\x1d\x9a\x15\xca\x0c\xc2\xf3\x9c\x4b\xaa\x08\x5a\x11\xcc\xf6\x57\x5c\x00\x7d\x0f\xdb\xbc\x4b\x56\xb4\x3d\x5a\x2e\x7c\xad\x7c\x19\x66\x0f\x93\x63\xb6\xcf\xa8\x67\xbf\x6d\xa0\x73\xae\x59\x3f\xd7\x0c\x99\x05\x60\xb4\x2c\x9c\x89\x16\x6a\x5e\x00\x1c\x31\x7f\x3e\xda\x7e\x33\xd2\xbe\x58\x70\xb7\x3d\xf8\x5f\xbc\x41\x43\x9e\x38\x19\x8d\x4a\x19\xcf\x6d\x63\x17\xed\x80\x9b\x54\x86\xbf\xdb\x3f\xfc\xde\x82\x81\xc9\x92\xda\xbc\x0a\x80\xcc\x50\xa1\xbd\xb5\x73\x8f\xff\x04\xc8\xb5\x06\x3b\x7d\x25\xfc\xc2\xf7\x37\x10\xd0\x04\x0c\x64\x0a\x06\x30\x05\xce\x3f\xb0\xbc\x5f\xa3\x15\xd7\xf8\x5d\x9a\xcc\x6e\x73\x2e\x50\x4a\x66\xc5\x62\x61\x32\x2a\x15\x22\xe7\xb2\x2d\x73\xc3\xfe\x79\x8e\x05\x49\xa9\x20\x6d\x02\xdc\x4e\x86\x44\x13\x5c\x6d\x54\x3d\x09\x66\x88\x50\xe3\xda\x53\x8e\x80\xb8\x28\x43\x11\xd1\x0f\xae\xc2\xc2\xdf\xda\x38\x6c\x73\xba\x3a\xdb\x00\xd9\x18\xc2\x0e\xf8\xfd\xb1\xb4\x12\xbf\xf3\xd6\xfa\x16\x08\xc8\x19\xbc\x7a\xa9\x17\xa2\xd1\x82\x28\xd1\xba\xb2\xdb\x02\x2a\x51\xe2\xb9\x4c\xbc\xb1\x4e\x34\xe8\x4f\x67\x06\xd8\x3a\xa5\xc8\x2a\x6f\xab\x65\x54\x03\xe2\xda\x5c\x46\x1b\x45\x69\x00\x2f\xa3\xda\x5d\x52\x31\x0d\x17\x46\x0b\xfa\x40\x58\x38\xf0\x15\x16\x1d\x0a\xd9\xc9\x9c\x88\xa9\x78\x9e\xd2\x15\xe1\x05\x98\x8b\xdb\xde\xfa\x5b\x83\xcc\x73\xb9\x16\x71\x48\x80\x4e\xac\x12\xcf\x37\xd0\x7c\x77\xdb\x72\x58\xc2\x99\xd5\x42\x48\x54\x30\x2d\xa4\xdb\x88\x55\x0b\xb0\xc2\xf7\xc4\x97\xfd\x23\xcf\xbc\x7a\xde\x3e\xef\xa4\x12\xcf\xb7\x64\xc5\x15\xb9\xb2\xe5\xad\xbd\xc2\x1d\xd8\x45\xb1\x3c\x64\xce\xf9\xdd\x4c\xe3\x7b\x4b\x70\xc4\xcd\xb7\xd9\x1a\x88\x76\xec\x7b\x4b\x4e\x19\xbc\xe1\x8f\x82\xb6\x25\x5f\xda\xb9\xe1\xa6\xa7\xbd\xd8\x77\xb7\x23\x9b\x12\xf6\xac\x24\xae\xa5\x83\xfc\x01\xa9\xf4\x16\x38\x0e\x70\xb3\x11\x6b\x20\x4e\x3e\xea\xc7\x80\x85\xa4\x7c\x1c\xae\x73\x64\xbf\xc0\x49\x7b\x15\x34\x5b\xcb\x05\xaf\x88\x41\xef\x1d\x40\x57\xc9\xcf\xeb\x7b\x6f\x41\x75\x50\xfe\x27\xf3\x7a\xca\xd8\x87\x73\x50\x55\x12\x7e\x58\xdb\x76\x20\x35\x7f\xc0\x0d\x0f\x75\x7b\x70\x07\xb1\x06\x16\x7f\x59\x83\x09\x56\x24\xc2\x9e\xe0\xb6\x41\xd3\x37\x20\xb8\xa2\x2a\xfc\x28\xb7\xad\xdf\xa7\xb9\x6d\x5f\xcd\x3a\x01\x88\x81\x82\x6e\x60\x30\x63\x42\xdc\x70\x08\x12\x6b\xbe\xee\x16\x1d\xda\x6c\x5b\xa4\x6e\x14\xc5\xa9\x85\x51\xcc\xe1\x43\xc0\x48\x74\xdb\x40\xf1\xe8\xb6\xbd\x14\x8e\xa1\x08\x75\xdb\x00\x17\x0c\x7d\x3f\x5b\x0a\xee\x1a\xce\xce\x60\xdb\xf1\xf6\xb4\xb7\xe3\xed\x29\xdb\x77\xb2\xa5\x7d\x86\xb3\x3d\x12\xba\x58\x7a\x17\x0f\x9a\x3b\x0a\x22\x7a\xec\x69\x41\x52\x3e\xc5\x42\xa3\x52\xa1\xa6\x9f\x79\x57\x16\x39\x45\x54\xa2\x94\x4a\xfd\xf2\x6c\x91\xd5\xbc\x1b\xe8\xc1\xa4\x0d\x07\x95\xec\x5d\xd3\x82\xe7\xf8\x8f\x82\xa0\xe9\x79\xbf\x95\x2d\x0e\x99\x14\xa4\xf2\xa6\x99\x14\x33\x46\x7c\x2a\xae\x9d\x05\x19\x8d\x1f\xfe\x8f\x7e\x9c\x8d\xc6\x0f\xff\x17\xd1\x7c\x2d\x5b\x9b\xf8\xfc\x6a\x2d\x93\x60\x0e\x47\x9e\xdb\x6b\xaf\x25\x51\x46\xbc\x39\xe0\x5e\x6d\x58\xfe\x31\x95\x41\x53\x37\xff\x9a\xed\x19\x92\xf5\xf5\x23\xb2\x8e\x9e\xb9\x7f\x0a\xcf\x5c\xbb\x2a\x96\x3e\xee\x4b\x1e\x35\x7a\xae\xdc\x90\xd1\x0b\x96\xb4\x2f\xf4\xc4\x0f\xd0\xc5\x3e\x11\xde\x53\x0c\x80\xea\xfd\x76\x4b\x5e\x6d\x55\x83\x4f\x38\x63\x2e\x89\x7a\x88\x0e\x3a\xe5\xa0\x31\x48\x1e\x35\x7f\xbe\x76\xd4\xfc\x1d\x35\x7f\xdf\xb8\xe6\xef\x1b\x7a\x10\x75\x79\x83\xd4\xc5\x88\xe3\x8b\xa1\xa9\x1d\x5f\x0c\xc7\x17\x43\x53\x7b\xfd\x2f\x06\x46\x3f\x36\x15\x03\x6d\x47\xe2\x7a\x84\x7e\x70\xd5\x9f\x0d\xe1\xa6\x2c\xa5\x09\x56\x5c\xfc\x4d\x4b\x4c\xd6\xf3\x9a\xb3\x6f\x72\x37\x8f\xcf\xa7\x3f\xc1\xf3\xe9\xf8\x9a\x68\x80\xfb\xf8\x9a\x68\x69\xc7\xd7\xc4\xf1\x35\x01\xc1\xe7\xf8\x9a\x08\x7d\xd6\xf8\x81\xac\x15\xa6\x6a\x19\xf7\x69\x70\x5f\xcc\x88\x60\x44\x11\x39\xc8\x05\x31\x12\xc8\xa0\x60\xf7\x8c\x3f\xb2\x81\xf1\x7a\x97\x5b\x2e\x81\x3b\xe3\x3c\x10\x21\x29\xb7\x85\x78\x07\xd6\xc5\x1c\x3d\xfc\x88\xb3\x7c\x89\xdf\x9b\x2f\xcc\x80\x69\x65\x08\xa9\xb8\xc0\x8b\x8d\x9f\xe1\xe6\xab\x19\x51\xf8\xc7\xc0\x47\x73\x9c\x49\xf2\xe6\xcd\x60\x30\x78\x83\x73\xfa\xd9\xce\x7e\x8a\x70\x4e\xc9\x93\x22\xcc\xc0\x32\xbc\xff\x77\x39\xa4\xfc\xa4\x1c\xf1\x9e\xb2\xf4\x14\x9d\x17\x52\xf1\x55\x59\x03\xfc\x82\xcc\x29\x33\xc2\xc6\x9b\x15\x51\x38\xc5\x0a\x6b\x14\x30\x63\x5c\x19\x8a\xed\x16\xef\x2f\x4b\x92\xad\x86\x72\x79\x52\x16\x97\x1e\x58\x97\xe3\xbf\x9c\xa2\x7b\x42\xf2\x37\x08\x65\x15\xb1\x06\xe7\xf9\x29\xa2\x52\x51\x3e\xc8\x69\xc6\xed\x42\x27\x4b\x2c\x94\xfb\xb3\xf9\xc3\x92\x08\x6a\xa2\x18\xd0\x94\x66\x99\x3b\x46\x82\x64\x04\x4b\xb2\xe9\x67\x57\xa5\x64\xec\x84\x19\xd7\xcf\x21\x23\x4a\xff\x89\xb2\xc5\xd0\x74\x1c\x52\xfe\x46\xe6\x24\x31\xc0\x57\xc4\x27\x7d\x42\xc5\x39\xcf\x8a\x55\xb9\x37\xbf\x4c\x6e\xae\xc7\x58\x2d\x4f\xd1\xb0\xc4\x78\x98\x08\x62\x90\x9d\xd2\x15\x91\x0a\xaf\x6c\xd9\xb1\xad\xab\xff\xf6\x7c\xb7\x8f\x96\xa5\xb1\x31\x02\xda\x7f\x0a\x62\xce\x0d\x53\xa5\x0c\xe3\xa4\x58\xdd\x43\xbf\x5c\x4a\x37\x51\xe3\x19\x69\x0f\x0e\x7a\xc4\x12\x99\xc9\x49\x3a\x44\x23\x23\x9e\x33\xae\xd0\xa2\xc0\x02\x33\x45\x6c\xd0\xc1\x4c\x0f\xa5\xb4\x44\xb3\xc4\x79\x4e\x98\x1c\xb8\x92\x42\xc6\x3e\xe7\x46\xc5\x89\xe0\x52\x22\x49\x72\x2c\xb0\x22\x48\x93\x61\xbb\x81\x43\x74\x6e\x2a\x2b\x4a\xb4\xc2\xcf\x66\x78\x3d\x5a\xc5\x3f\xd3\x4d\xbc\x86\x9f\x94\x09\x3f\x29\x43\xb7\x1f\xce\xdf\xbf\x7f\xff\x1f\x86\x2e\x18\xbf\x53\x6a\x44\xab\xbb\xe9\xf9\x10\x8d\x79\x5e\x64\x1a\xf4\x32\x76\x44\x3e\x4b\x45\x56\x43\x74\x4b\x70\x3a\xe0\x2c\x7b\x1e\xa2\xeb\x22\xcb\xf4\xc7\x6e\xc4\x8c\x4a\x25\x87\xe8\x93\x86\x9e\xb2\x39\x3f\x45\x95\x18\xca\xf2\xbc\x26\x7c\xb5\x2a\x18\x55\xcf\x27\x09\xd7\xdb\x3d\x2b\x14\x17\xf2\x24\x25\x0f\x24\x3b\xc1\x39\x1d\x24\x9c\x3d\xe8\x75\xd6\xc8\xad\xd2\xbf\x96\xdb\xf8\xd6\x4c\x62\xcf\xcb\xd9\xc2\x5e\x18\x7b\x4d\x53\x5b\x85\x73\x6b\xf3\xf5\x69\x19\x3a\xbe\x56\xdf\xee\x33\xa7\xbd\xc6\x52\xf2\x84\xe2\xb2\x34\x9b\xad\xf5\x69\xcf\x1e\x22\x2c\xcd\x39\x65\xee\x35\xee\xe6\xad\x0c\xb8\x43\xb9\x17\x82\x17\xf9\x29\x6a\x3a\xb9\xae\x0e\xa9\xbd\x3c\x09\x56\x64\xc1\x37\xee\xff\x03\x77\x93\xdc\xad\x19\x54\x46\x18\x6c\xfd\x62\xef\xf7\x6f\xee\xa6\x5c\xb2\xd2\x2b\x5a\x2f\xfa\xaf\xf5\xdf\xae\xa8\xb4\x17\x33\xcf\x0a\x81\xb3\xda\x1d\xb3\x04\x67\xc9\x85\xba\xde\x00\x37\x40\x8f\x8e\x12\x51\xb6\x28\x32\x2c\xb6\x3f\xd3\x13\x96\xd4\xf3\xce\x12\xcf\x0f\x8e\x76\x5a\x8a\x85\x90\x4c\xb8\x5e\x96\xf5\xa3\x41\x1f\x36\x59\xcc\x4a\xba\xe2\xe6\x71\x84\x1b\xfd\xef\xbf\xde\x98\xb8\x21\x9a\x56\xe4\x47\x9e\x13\x76\x36\x1e\x7d\x7e\x3f\x49\x96\x64\x85\x4b\xf2\xde\x24\x7b\x94\x34\xa1\x6c\x3b\x77\x9a\xb3\x39\x5d\x14\xf6\xa2\x20\x3c\x9f\x6b\xa1\x99\x2d\xd0\xe7\x4f\x12\x71\x36\xe3\x56\x30\xa6\xcc\x45\xfe\xac\x88\x5c\x0e\xd1\x84\x10\xb4\xe2\x62\x5b\x60\x4c\x89\xc2\x34\x93\x48\xf3\xce\xf2\x48\x97\xdb\x7b\x92\xf2\x44\x9e\x08\x32\x27\x82\xb0\x84\xe8\x53\x3d\xa7\x8b\x93\xcd\x36\x9e\x94\x4b\x38\x30\x6b\x38\x5c\xaa\x55\xf6\xb6\x32\x7c\x9b\x50\xe5\x4e\xef\x2e\x3f\xf7\x8a\x17\xad\xe2\x44\xd6\xf8\x2c\x85\x3d\x45\x03\x02\x8d\x47\x84\xd9\xda\x8f\x1b\xa6\x69\x9a\x59\x5c\x07\x4e\xe3\xfd\xdb\xbe\x77\xbb\xd3\x34\x88\x0c\xce\xef\xbf\xe6\xe1\x5e\x93\xed\xca\x8e\x51\xd3\x76\x5b\x6e\xb7\xfb\xfd\xec\x9d\x49\xd8\xd9\x6d\xeb\x7c\x82\xdc\xf6\x7b\x82\x18\x1f\x10\x9b\x1b\xb4\x97\x6d\x71\xd2\xf2\x59\x92\xf0\xa2\x1e\xab\xd9\x6d\x25\x9a\x25\xdc\x86\x8d\xc6\x29\x9a\xe1\x0c\xb3\x44\xdf\x77\xfb\x55\x07\xac\xea\xeb\x76\x14\x43\x7b\x14\x43\x5f\x46\xa6\x34\x8c\xf9\x28\x52\x1e\x45\xca\x0e\x22\xe5\x0b\x0b\x75\x3f\xeb\xe9\x5a\x84\x3a\xf3\x5b\xab\x50\x67\x0f\x79\x9b\x4c\xb7\x68\x91\xe9\x16\x6e\xbe\x6f\x48\xa6\xbb\x30\xff\x9a\x11\x7d\x93\x12\x9e\x65\x4e\x0f\xca\xe7\x6b\xa4\x10\x65\x52\x61\x96\x10\xb9\x11\xe6\x4a\x01\x6e\x5b\xbe\xda\x4f\x98\x33\x8b\x07\x16\xe6\xaa\x74\xaf\x95\x77\x7d\x72\x9d\xac\xfa\xae\x2c\x3c\x5a\xc8\x32\xc6\x36\xcb\x50\xc2\x85\x75\x53\x37\xa5\x66\x7f\xaf\x8a\xfc\x94\xc8\xdf\x77\xf9\x98\x4f\x61\x57\xd3\x02\xec\xfc\x0c\x36\x53\xec\x1f\x00\xef\xd5\x25\x35\x8b\xae\xaf\x08\xc4\xd6\x9f\x72\xc1\x67\x35\x6d\xff\xf6\x79\xfe\x5d\x93\x3e\xca\x88\x94\x63\xdd\xf9\x77\xf7\xf3\x6c\x13\x09\x5c\x79\xc2\xe8\xbf\x14\xb2\x41\x23\xb7\x2a\xa4\x2a\x4b\x85\x9b\xa3\xb2\x24\x38\x53\xcb\x64\x49\x12\x7d\x68\x9d\x6a\x98\x8a\xf5\x25\x19\xbe\xdd\x19\xa3\x31\x8b\x59\x6b\xde\xb2\xd6\x4c\x65\xa1\xfc\x57\xb6\x1a\xff\xcf\xa4\x49\x63\x18\xfe\x56\x25\xf9\x84\x27\xf7\x1d\xbf\x26\x4f\x24\xa9\x21\xd8\xfe\x51\x1b\xa8\xfe\x6f\xda\x40\xf4\x7f\xd5\x00\x9a\xef\xe6\xea\xee\x4d\x58\x6e\x17\xe1\x37\x47\xc0\x78\x9e\x13\x45\xc4\x8a\x32\xcb\x77\x97\xfc\xd1\x1d\xad\xd5\x4a\xf3\xe7\xd2\x70\xac\x07\x2d\x36\xac\x7c\x77\x46\xda\x52\xfa\x38\x64\x12\x70\xd3\xb4\x69\xa5\xb7\x40\x3e\x2f\x41\xe2\x48\x14\xad\x46\xe0\x80\x01\xb8\xbf\xb0\xe3\x40\x7c\x80\x8f\x66\xcd\x31\xcd\x0a\x41\xa6\x4b\x41\xe4\x92\x67\x8d\xe8\x6f\x93\x7e\xca\xe8\xaa\x58\x19\x53\xa9\xde\x07\xfa\x40\xca\x41\xac\x37\xbe\x31\xf3\x68\x12\xe1\x04\x3c\xdd\x91\x1a\x07\xfe\x66\x82\x87\x69\x46\x52\x84\xe7\xca\xe4\xf8\x7a\x30\xe5\x7e\x8a\x24\x21\x24\x6d\xde\xc7\x90\x69\xc0\x6f\x12\x70\x57\xa5\x09\xcd\xd0\x01\xf1\x19\xfc\xb6\x0f\x34\x97\xd6\xe0\xab\x57\xc0\xd9\x40\x91\xe2\xeb\x20\x0b\x59\xa6\x70\xc9\x79\x8a\x46\xe3\xb6\xe3\x03\x3a\x1f\xc1\xd3\xa1\x11\x0e\xa4\x93\xdc\xbd\x8d\xba\x6f\xb9\x8d\x4f\xcf\x96\xbd\xe7\x58\xda\x52\x1c\x1c\xad\xf0\x3d\x81\xd4\x8e\x0f\x1c\x7f\x60\x9e\xad\x40\xc5\x93\x43\xf8\x1c\x00\x0a\x9e\xf7\x3d\x29\x38\xcf\x5c\xbb\x67\x47\xae\x5f\x7e\x90\x1d\xd6\x4f\x44\x53\x0a\x26\x49\x88\x5c\xd7\x57\x31\xf1\x40\xf6\x5d\x77\xd8\x03\xe9\xb3\x20\x6f\xc3\xe9\x6c\xc5\x1b\x7f\x82\x52\x09\x82\x32\xfa\xd0\x9e\x3c\x23\x6c\x13\xf4\x57\x1a\xe8\x03\x4d\xef\x7e\x1a\x15\x03\xce\x2e\x48\x86\x9f\x27\x24\xe1\x2c\x6d\xbc\x02\x2d\xa9\x6d\xa4\xfd\xc2\x51\x4c\x27\x7b\x29\x4c\x99\xcb\x91\x28\x15\x16\xe6\xe5\x6a\x5e\xd2\x8d\xe0\x8b\x52\x94\xb3\x84\x5a\x22\x6c\x1e\xad\x1a\xaa\x16\xe6\xb9\x1f\xd1\xcd\x89\xa0\x3c\x85\xa2\xfa\x91\x3f\x22\x3e\x57\x84\xa1\x1f\x28\x2b\xd1\x35\x5e\x57\x39\x11\xe6\xb5\xbe\x66\x31\xfd\x83\x6a\x58\x8f\x94\xfb\xf1\x43\x37\x48\x37\x86\xe8\x3e\x9e\x17\xd9\x36\x53\xb4\x8c\xb2\x7f\x8c\xd7\x82\x60\x67\x41\x8d\xce\x2b\xdc\x82\x4a\x84\x67\x59\x95\xf5\x75\x11\xc6\x7c\xbc\xf6\xf0\x64\x28\x44\x41\xbc\xb7\xdb\x85\x63\xee\x7b\xb1\x37\x54\xcf\x9d\x1d\x6a\xbc\x50\x8b\xc6\xe5\xdc\xe7\x04\xb4\x22\xa3\xc8\x2a\xcf\x70\xdd\x0b\x6c\x5b\x8b\xed\x3a\xb9\xb3\xbd\x56\x01\x68\xc0\x17\x84\x39\x4d\x9d\x46\x6f\x4b\x05\xf0\x5c\x4f\xec\xb7\xd6\xd2\x58\x41\x7f\x46\x32\xce\x16\x56\x52\xa2\x72\xf3\xb5\x51\x2f\xc5\xa9\x0f\x9a\xcd\x53\x08\x72\x94\xbc\xc7\xe8\x75\xbc\xf7\xfb\x34\x5d\xa1\xa0\x8a\xa3\xc5\x84\x55\x03\xa4\xb3\x19\x0b\xb4\x28\xde\x25\x69\x31\x69\xed\x3f\x70\xa3\x79\x0b\x45\x6d\x77\x88\xb2\xf4\x63\xea\x42\xa1\x6d\xf4\x9b\xbc\xf6\x5f\xa9\x76\x07\xaf\x03\x98\xc0\x42\xeb\xda\xb2\x12\xdf\xb6\x85\xec\x3b\x74\xb9\x32\x3f\x9f\x6a\x36\x58\x88\xd2\xdb\xba\xc5\x64\xe6\x92\xc5\xfd\x8f\x81\xd3\x80\x43\x89\x1c\x96\x5f\xd6\xed\x66\xce\x3c\x52\xef\x10\x67\x1c\x29\xbf\x6f\x32\x8d\x9c\x55\x41\x1a\x9b\x15\x32\xbf\x6e\x0c\x24\x0d\x3d\x6a\x66\x92\x46\xc4\xec\xf6\xaf\x8d\x22\xf5\x3e\xdf\xb4\xbb\x8b\x31\x18\xd8\xa7\xa8\x31\x8a\xf1\xcc\x3c\xfa\x4a\x0f\xfa\xfe\x6c\x23\xe5\xee\x9d\x6c\x2d\xa0\x3b\xcd\x35\xfb\x48\x4d\xcf\xdc\xa8\x63\x6e\xd4\x2f\xfb\x55\xa8\x4e\xfb\x2d\xde\x84\x3f\x68\xec\xdc\xea\x85\x93\x34\x79\xb6\x6f\x4b\x07\x2e\x7c\x6b\x97\x82\x12\x56\xac\xea\x48\x9c\x5d\x5d\xdd\xfc\x56\xfb\xeb\xc5\xe5\xf5\x7f\xd7\xbb\xde\x5d\x8c\xa6\xb5\xbf\x9e\xdf\x4d\xa6\x37\x9f\x1a\xa9\x71\x93\xf3\x88\x43\xd5\x8b\xc1\xc6\x9b\xdc\x1e\x06\x92\xee\x58\x1e\x5c\x72\x69\x3b\xb5\x5b\x93\x18\x61\xb1\x4d\xdf\xe4\xf1\x69\x2f\x3d\xb1\x0d\x8f\x2a\x49\xf0\x1a\x9d\xbe\xe5\x9b\x56\xbe\x6e\xf2\xa1\x74\xda\xfe\x4e\xb1\x8e\x73\xc1\x6b\x67\x26\x62\x4e\xef\xcc\x90\xf9\x6d\xb3\xd4\xcb\xa7\xab\x6b\x0a\xf8\x91\x5b\xfb\xe7\xd2\x02\xd8\x00\x9e\x50\x42\x5d\x78\x68\x01\xcd\x7f\xca\x78\x72\x1f\x0c\x40\x88\x58\xae\xca\xe0\xb0\x9c\x54\x87\x2b\x62\x02\xcd\x43\xb5\x8e\x7b\xfa\xb3\xaf\x03\x57\xa3\xe3\x81\xb0\x0b\x71\x7d\x3c\x13\xa6\x31\xae\xc6\x82\xb2\x84\xe6\xd8\x1f\x88\x89\xfe\x0c\x4b\x61\x13\x74\x1f\x2f\x09\x2a\x97\xc3\x70\xa2\xe3\x01\xb1\x2d\x3f\xae\x83\x69\xe2\x78\x4b\xd6\x4d\x1c\xaf\xc8\x6e\xaf\x43\x56\x2a\x53\xfc\xeb\xcb\xfb\x6b\xdf\x5f\xb0\xc8\x7f\x53\x7e\xb1\x23\xf5\xaf\x47\xea\x5d\xf0\x5f\x86\x12\x4d\x34\xc0\xf8\x5d\x1d\x45\xe3\x44\xba\xe4\xcd\xc6\xaf\x6a\xfb\xbe\x17\x81\x71\x15\xcc\x39\x82\xfe\x0c\xab\xf0\xe9\x78\x1a\xac\xb0\x8f\xd5\xf2\xb8\x0a\xe3\x36\x2b\x5a\xb5\x7d\xdf\xab\x90\x1f\x0f\x42\xab\x2d\xb5\xda\xbe\xe7\x25\x38\xbc\xbc\xf6\xb8\x24\x2d\x62\xd2\x4b\x4a\x6c\xf7\xc4\x53\xd1\xc9\x97\xd7\x84\xa1\x91\x54\x94\x23\xac\x6c\xa0\xd4\x0b\x26\x9e\x65\x5c\x7d\xc6\x59\xe1\x17\xf4\xa2\x0f\xe7\xab\xcd\x07\xf6\xf0\xa7\xc1\xf5\x65\x53\xc1\x20\x24\x49\x46\x12\x55\x2f\xef\x0c\x5a\x4f\xdf\xed\x32\xf9\xe7\xda\x33\xb8\xbd\xee\x78\xa3\xd7\xe8\x79\x01\x89\x32\x3e\x3a\x5e\xa0\x9c\x10\x81\x0b\xb5\x24\x4c\xd1\xc4\x05\xe1\xb6\xbb\x5d\x80\xc3\x95\x4d\x12\x94\x95\xca\xe4\x70\xc5\x53\xbb\xea\x5b\x57\xc4\x2c\x99\x7b\xb8\xaf\xa6\x57\x13\xa4\xbb\x6d\x9c\x0d\x35\x54\x68\x1b\xac\x6a\x32\x94\x4f\xe5\x98\x3b\x27\xf9\x18\x31\x7d\x8c\x98\x3e\xa4\x4b\xd0\x98\x10\x71\xb6\x75\x2a\xdf\xa0\x2d\x8f\xa0\x7a\x87\x9a\x43\x50\xc3\x85\xb3\x44\xa9\x16\x3c\x9d\x63\xfb\xc3\xda\x4f\xa8\xfe\xe9\x37\xe5\x26\x54\x5f\x1c\x94\x3a\x32\x60\x22\x03\x5d\xf9\xf0\x32\xf8\x58\x15\x8c\x91\x8c\xa4\xe8\x07\xbe\xed\x00\xc8\xb8\xfa\x5b\x19\x70\x25\x69\x4a\x12\xbc\xe5\x93\xd1\x1a\x07\xdd\x90\x14\x7a\xdb\xf1\xbf\x50\x05\xce\x90\xa6\x46\x92\x28\x7d\xd1\xad\xbb\xff\x3a\x72\x35\x86\x9d\xb7\x54\x8b\xee\x85\x08\x6e\xb7\x26\x5f\x1f\x7b\x80\xee\xae\x27\x97\xbb\x4e\x3c\xf6\x97\x8b\xd1\xe4\xec\xa7\xab\xcb\xc6\xdf\xc6\x97\xb7\x9f\x46\x93\xc9\xe8\x73\xf3\xcf\x93\xe9\xed\xe8\xbc\x69\xd4\x2e\x2e\x2e\xfa\xd1\x78\xa5\x6f\xfe\xa7\x86\xcd\x81\xc9\x3c\x81\x04\xde\xad\x55\xbb\x0f\xb0\x13\xed\x7b\xe1\xdb\x0d\xff\x7e\x04\x77\xc4\xbb\x27\x01\x59\xcf\x23\xe9\xd5\x03\xb7\x9c\xb6\x3d\x41\xab\xfa\x3d\x89\x48\xcd\x03\x90\x9f\xa7\x86\xbd\xda\x8e\x9b\xc8\x14\xbb\x3b\x9b\x44\xbc\x8a\x9b\x64\xbe\x96\x39\x9d\x2f\xb1\xa6\x16\x0d\xc4\xb9\xda\xe2\x3c\xc7\x8e\x22\xf9\x51\x24\xff\x1a\x22\xb9\xb3\x5c\xc1\xa5\xf2\x17\x90\x7c\x9c\xf3\x82\x57\xf8\x69\xec\x53\x93\x7f\x9a\xb1\x6b\x11\x81\xc4\xae\x08\xd4\xf8\xf5\x37\x25\x05\x35\xae\xd2\x5a\x10\x7a\x5c\x62\x55\x22\xb9\xc3\x71\x4a\x1b\xdc\xd6\xfd\xc7\x82\x20\x59\xe4\x9a\x8f\x5a\x49\x1d\x37\x8a\x2b\x6d\x64\xee\x9f\x8f\xea\x36\xe8\x65\x6a\x99\xa3\x21\xb3\x65\xc1\xbe\x5f\x7e\x9b\xba\xa8\xae\x04\x33\x2d\xac\xb9\xd5\x22\x29\xc2\xca\x3d\x8f\x34\xfd\x6e\x88\x88\x5c\x13\xf0\xb7\x36\xbe\xb0\x17\xdf\x55\x5c\xa4\x94\xb0\x56\xff\x33\xaf\xf2\xaa\x9f\xe8\x43\xbf\xaa\xca\x25\x43\xbf\x11\x74\x41\x19\xce\xa6\xfc\x1e\xa4\xc9\x1d\xcd\xed\x6b\x8e\x1b\xb2\xf8\xce\x9a\xb9\x85\x19\x02\x29\x3d\xc6\x5a\x58\xbe\x27\xb9\xaa\xbc\xc4\x6a\xd0\x99\xf4\x2d\x4a\x10\xbc\xf2\x1b\xc6\x2d\x1a\x33\xce\x33\x82\xeb\xfc\xd3\x3a\x09\x7b\x93\x0f\x6c\xc1\x7f\xe5\x8e\x8b\xab\xdf\x9f\x71\x77\xdb\x6d\x8e\x74\x1b\x10\xf9\xcb\x6f\x53\x9b\x03\x24\x37\xe7\xe5\x40\x4a\xeb\x50\xd6\x81\x9a\xfc\x61\xa2\xe7\x1d\xdc\xfa\xe3\x97\xd3\x55\xe7\x82\xcc\xe9\x53\x14\xb0\xf6\x13\x7b\x21\xd7\x79\xf9\xcd\x3c\x79\xbe\x0e\x1c\x47\x29\x49\x78\x1a\xd4\xcc\x2e\x89\x3d\x5a\xdf\x48\x59\x03\x7d\x92\xc6\x58\xe0\xb6\xe3\xd1\x78\x1e\xff\x28\x88\x78\x46\xb9\xfe\x4c\x4b\x97\x3d\x9f\xc7\x97\x20\x28\x54\xca\xa2\x2d\xc5\xfd\x36\x09\x49\x35\x07\x59\x3b\xc9\xd8\xef\xca\xcc\x3b\xb2\x20\xa9\xf9\xf3\x2f\xbf\x4d\x9b\x11\xdd\x5f\x74\xfd\xe7\x63\x9b\x57\xdb\x16\x9c\xbf\x4c\x6e\xae\xd1\x6f\x64\x86\x7e\x25\xcf\xeb\x38\xc9\x62\x96\xd1\x04\xdd\x93\x67\x23\xed\x97\x3c\x06\x49\xba\x60\x58\x15\x2d\xb9\x10\x50\x19\xba\x71\x60\xa4\xbe\x14\x82\x1e\x4a\xde\xd7\xe3\xdf\x1d\x6e\x78\x5e\xa8\xbc\x50\x63\xfc\xac\x19\xf1\x94\x5b\x82\x7e\x98\xc9\x0e\x65\x63\xe9\xf0\x46\x6c\x97\x61\xb7\xd6\xe6\xf8\x46\xfc\x76\xde\x88\xff\x3f\x00\x00\xff\xff\x9d\x28\xdf\x2d\xfc\x29\x02\x00"), }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ diff --git a/pkg/resources/base/rbac.go b/pkg/resources/base/rbac.go index 875879a2f..f1709e399 100644 --- a/pkg/resources/base/rbac.go +++ b/pkg/resources/base/rbac.go @@ -34,7 +34,7 @@ func (r *Reconciler) serviceAccountReader() runtime.Object { func (r *Reconciler) clusterRoleReader() runtime.Object { rules := []rbacv1.PolicyRule{ { - APIGroups: []string{"config.istio.io", "security.istio.io", "networking.istio.io", "authentication.istio.io"}, + APIGroups: []string{"security.istio.io", "networking.istio.io"}, Resources: []string{"*"}, Verbs: []string{"get", "watch", "list"}, }, @@ -43,6 +43,16 @@ func (r *Reconciler) clusterRoleReader() runtime.Object { Resources: []string{"endpoints", "pods", "services", "nodes", "replicationcontrollers", "namespaces", "secrets"}, Verbs: []string{"get", "watch", "list"}, }, + { + APIGroups: []string{"networking.istio.io"}, + Resources: []string{"workloadentries"}, + Verbs: []string{"get", "watch", "list"}, + }, + { + APIGroups: []string{"apiextensions.k8s.io"}, + Resources: []string{"customresourcedefinitions"}, + Verbs: []string{"get", "list", "watch"}, + }, { APIGroups: []string{"discovery.k8s.io"}, Resources: []string{"endpointslices"}, @@ -75,7 +85,7 @@ func (r *Reconciler) clusterRoleReader() runtime.Object { { APIGroups: []string{"admissionregistration.k8s.io"}, Resources: []string{"mutatingwebhookconfigurations"}, - Verbs: []string{"get", "list", "watch", "patch"}, + Verbs: []string{"get", "list", "watch", "update", "patch"}, }, { APIGroups: []string{"admissionregistration.k8s.io"}, diff --git a/pkg/resources/citadel/deployment.go b/pkg/resources/citadel/deployment.go index bc0f7ac4a..ebe92ccc7 100644 --- a/pkg/resources/citadel/deployment.go +++ b/pkg/resources/citadel/deployment.go @@ -177,7 +177,7 @@ func (r *Reconciler) deployment() runtime.Object { } var podSpec = apiv1.PodSpec{ - ServiceAccountName: serviceAccountName, + ServiceAccountName: r.Config.WithRevision(serviceAccountName), DNSPolicy: apiv1.DNSClusterFirst, RestartPolicy: apiv1.RestartPolicyAlways, TerminationGracePeriodSeconds: util.Int64Pointer(int64(30)), diff --git a/pkg/resources/cni/daemonset.go b/pkg/resources/cni/daemonset.go index 25137967a..6f209a3a1 100644 --- a/pkg/resources/cni/daemonset.go +++ b/pkg/resources/cni/daemonset.go @@ -25,6 +25,7 @@ import ( "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/util/intstr" + "github.com/banzaicloud/istio-operator/pkg/apis/istio/v1beta1" "github.com/banzaicloud/istio-operator/pkg/resources/templates" "github.com/banzaicloud/istio-operator/pkg/util" ) @@ -45,7 +46,7 @@ func (r *Reconciler) daemonSet() runtime.Object { }, Template: apiv1.PodTemplateSpec{ ObjectMeta: metav1.ObjectMeta{ - Labels: util.MergeStringMaps(labels, r.Config.RevisionLabels()), + Labels: util.MergeMultipleStringMaps(labels, r.Config.RevisionLabels(), v1beta1.DisableInjectionLabel), Annotations: templates.DefaultDeployAnnotations(), }, Spec: apiv1.PodSpec{ diff --git a/pkg/resources/gateways/deployment.go b/pkg/resources/gateways/deployment.go index 2bf7a99f9..f7aa5f9cf 100644 --- a/pkg/resources/gateways/deployment.go +++ b/pkg/resources/gateways/deployment.go @@ -22,6 +22,7 @@ import ( appsv1 "k8s.io/api/apps/v1" apiv1 "k8s.io/api/core/v1" + "k8s.io/apimachinery/pkg/api/resource" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" @@ -104,7 +105,7 @@ func (r *Reconciler) deployment() runtime.Object { }, Template: apiv1.PodTemplateSpec{ ObjectMeta: metav1.ObjectMeta{ - Labels: r.labels(), + Labels: util.MergeStringMaps(r.labels(), istiov1beta1.DisableInjectionLabel), Annotations: templates.DefaultDeployAnnotations(), }, Spec: apiv1.PodSpec{ @@ -286,6 +287,13 @@ func (r *Reconciler) envVars() []apiv1.EnvVar { }, }...) + if !util.PointerToBool(r.gw.Spec.RunAsRoot) { + envVars = append(envVars, apiv1.EnvVar{ + Name: "ISTIO_META_UNPRIVILEGED_POD", + Value: "true", + }) + } + if util.PointerToBool(r.Config.Spec.Pilot.SPIFFE.OperatorEndpoints.Enabled) { envVars = append(envVars, apiv1.EnvVar{ Name: "TRUSTBUNDLE_MANAGER", @@ -339,13 +347,6 @@ func (r *Reconciler) volumeMounts() []apiv1.VolumeMount { }) } - if util.PointerToBool(r.Config.Spec.Istiod.Enabled) { - vms = append(vms, apiv1.VolumeMount{ - Name: "gatewaysdsudspath", - MountPath: "/var/run/ingress_gateway", - }) - } - if util.PointerToBool(r.Config.Spec.Istiod.Enabled) && util.PointerToBool(r.Config.Spec.MountMtlsCerts) { vms = append(vms, apiv1.VolumeMount{ Name: "istio-certs", @@ -419,6 +420,22 @@ func (r *Reconciler) volumes() []apiv1.Volume { FieldPath: "metadata.annotations", }, }, + { + Path: "cpu-limit", + ResourceFieldRef: &apiv1.ResourceFieldSelector{ + ContainerName: "istio-proxy", + Resource: "limits.cpu", + Divisor: resource.MustParse("1m"), + }, + }, + { + Path: "cpu-request", + ResourceFieldRef: &apiv1.ResourceFieldSelector{ + ContainerName: "istio-proxy", + Resource: "requests.cpu", + Divisor: resource.MustParse("1m"), + }, + }, }, }, }, @@ -439,15 +456,6 @@ func (r *Reconciler) volumes() []apiv1.Volume { }, }...) - if util.PointerToBool(r.Config.Spec.Istiod.Enabled) { - volumes = append(volumes, apiv1.Volume{ - Name: "gatewaysdsudspath", - VolumeSource: apiv1.VolumeSource{ - EmptyDir: &apiv1.EmptyDirVolumeSource{}, - }, - }) - } - if util.PointerToBool(r.Config.Spec.Istiod.Enabled) && r.Config.Spec.JWTPolicy == istiov1beta1.JWTPolicyThirdPartyJWT { volumes = append(volumes, apiv1.Volume{ Name: "istio-token", diff --git a/pkg/resources/istiocoredns/deployment.go b/pkg/resources/istiocoredns/deployment.go index 21ae9c350..79ac91cd4 100644 --- a/pkg/resources/istiocoredns/deployment.go +++ b/pkg/resources/istiocoredns/deployment.go @@ -24,6 +24,7 @@ import ( "k8s.io/apimachinery/pkg/types" "k8s.io/apimachinery/pkg/util/intstr" + "github.com/banzaicloud/istio-operator/pkg/apis/istio/v1beta1" "github.com/banzaicloud/istio-operator/pkg/k8sutil" "github.com/banzaicloud/istio-operator/pkg/resources/templates" "github.com/banzaicloud/istio-operator/pkg/util" @@ -123,7 +124,7 @@ func (r *Reconciler) deployment() runtime.Object { }, Template: apiv1.PodTemplateSpec{ ObjectMeta: metav1.ObjectMeta{ - Labels: util.MergeMultipleStringMaps(labels, labelSelector, r.Config.RevisionLabels()), + Labels: util.MergeMultipleStringMaps(labels, labelSelector, r.Config.RevisionLabels(), v1beta1.DisableInjectionLabel), Annotations: util.MergeStringMaps(templates.DefaultDeployAnnotations(), r.Config.Spec.IstioCoreDNS.PodAnnotations), }, Spec: apiv1.PodSpec{ diff --git a/pkg/resources/istiod/deployment.go b/pkg/resources/istiod/deployment.go index 48f562266..13136b792 100644 --- a/pkg/resources/istiod/deployment.go +++ b/pkg/resources/istiod/deployment.go @@ -97,8 +97,8 @@ func (r *Reconciler) containerEnvs() []apiv1.EnvVar { Value: r.Config.WithNamespacedRevision("istio-sidecar-injector"), }, { - Name: "CENTRAL_ISTIOD", - Value: "true", + Name: "EXTERNAL_ISTIOD", + Value: strconv.FormatBool(util.PointerToBool(r.Config.Spec.Istiod.ExternalIstiod.Enabled)), }, { Name: "REVISION", @@ -122,6 +122,15 @@ func (r *Reconciler) containerEnvs() []apiv1.EnvVar { }, } + enablePilotEndpointTelemetry := false + if util.PointerToBool(r.Config.Spec.MixerlessTelemetry.Enabled) || util.PointerToBool(r.Config.Spec.Istiod.MultiControlPlaneSupport) { + enablePilotEndpointTelemetry = true + } + envs = append(envs, apiv1.EnvVar{ + Name: "PILOT_ENDPOINT_TELEMETRY_LABEL", + Value: strconv.FormatBool(enablePilotEndpointTelemetry), + }) + if util.PointerToBool(r.Config.Spec.Istiod.MultiControlPlaneSupport) { envs = append(envs, []apiv1.EnvVar{ { @@ -140,10 +149,6 @@ func (r *Reconciler) containerEnvs() []apiv1.EnvVar { Name: "CACERT_CONFIG_NAME", Value: r.Config.WithRevision("istio-ca-root-cert"), }, - { - Name: "PILOT_ENDPOINT_TELEMETRY_LABEL", - Value: "true", - }, }...) } @@ -216,7 +221,6 @@ func (r *Reconciler) containerPorts() []apiv1.ContainerPort { {ContainerPort: 8080, Protocol: apiv1.ProtocolTCP}, {ContainerPort: 15010, Protocol: apiv1.ProtocolTCP}, {ContainerPort: 15017, Protocol: apiv1.ProtocolTCP}, - {ContainerPort: 15053, Protocol: apiv1.ProtocolTCP}, } } @@ -510,7 +514,7 @@ func (r *Reconciler) deployment() runtime.Object { }, Template: apiv1.PodTemplateSpec{ ObjectMeta: metav1.ObjectMeta{ - Labels: util.MergeMultipleStringMaps(istiodLabels, pilotLabelSelector, r.Config.RevisionLabels()), + Labels: util.MergeMultipleStringMaps(istiodLabels, pilotLabelSelector, r.Config.RevisionLabels(), v1beta1.DisableInjectionLabel), Annotations: util.MergeStringMaps(templates.DefaultDeployAnnotations(), r.Config.Spec.Pilot.PodAnnotations), }, Spec: apiv1.PodSpec{ diff --git a/pkg/resources/istiod/rbac.go b/pkg/resources/istiod/rbac.go index 57e4f874e..087258c5b 100644 --- a/pkg/resources/istiod/rbac.go +++ b/pkg/resources/istiod/rbac.go @@ -58,7 +58,7 @@ func (r *Reconciler) clusterRole() runtime.Object { { APIGroups: []string{"admissionregistration.k8s.io"}, Resources: []string{"mutatingwebhookconfigurations"}, - Verbs: []string{"get", "list", "watch", "patch"}, + Verbs: []string{"get", "list", "watch", "update", "patch"}, }, // configuration validation webhook controller { @@ -170,7 +170,7 @@ func (r *Reconciler) clusterRole() runtime.Object { } rules = append(rules, rbacv1.PolicyRule{ // istio configuration - APIGroups: []string{"config.istio.io", "security.istio.io", "networking.istio.io", "authentication.istio.io"}, + APIGroups: []string{"security.istio.io", "networking.istio.io"}, Resources: []string{"*"}, Verbs: verbs, }) diff --git a/pkg/resources/istiod/validating_webhook.go b/pkg/resources/istiod/validating_webhook.go index 8527f720f..a4c22eedf 100644 --- a/pkg/resources/istiod/validating_webhook.go +++ b/pkg/resources/istiod/validating_webhook.go @@ -47,7 +47,7 @@ func (r *Reconciler) webhooks() []admissionregistrationv1beta1.ValidatingWebhook admissionregistrationv1beta1.Update, }, Rule: admissionregistrationv1beta1.Rule{ - APIGroups: []string{"config.istio.io", "rbac.istio.io", "security.istio.io", "authentication.istio.io", "networking.istio.io"}, + APIGroups: []string{"security.istio.io", "networking.istio.io"}, APIVersions: []string{"*"}, Resources: []string{"*"}, Scope: &scope, diff --git a/pkg/resources/mixerlesstelemetry/meta_exchange_filter.go b/pkg/resources/mixerlesstelemetry/meta_exchange_filter.go index c88ca15f7..78ad22bdd 100644 --- a/pkg/resources/mixerlesstelemetry/meta_exchange_filter.go +++ b/pkg/resources/mixerlesstelemetry/meta_exchange_filter.go @@ -18,6 +18,7 @@ package mixerlesstelemetry import ( "fmt" + "strconv" "strings" "github.com/banzaicloud/istio-operator/pkg/util" @@ -28,7 +29,7 @@ import ( ) const ( - metaExchangeWasmLocal = "filename: /etc/istio/extensions/metadata-exchange-filter.wasm" + metaExchangeWasmLocal = "filename: /etc/istio/extensions/metadata-exchange-filter.compiled.wasm" metaExchangeNoWasmLocal = "inline_string: envoy.wasm.metadata_exchange" ) @@ -46,13 +47,15 @@ func (r *Reconciler) metaExchangeEnvoyFilter(version string, metadataExchangeFil vmConfigLocal := metaExchangeNoWasmLocal vmConfigRuntime := noWasmRuntime + vmConfigAllowPrecompiled := false if wasmEnabled { vmConfigLocal = metaExchangeWasmLocal vmConfigRuntime = wasmRuntime + vmConfigAllowPrecompiled = true } var y []map[string]interface{} - yaml.Unmarshal([]byte(fmt.Sprintf(metadataExchangeFilterYAML, vmConfigLocal, vmConfigRuntime, r.metadataMatch(8))), &y) + yaml.Unmarshal([]byte(fmt.Sprintf(metadataExchangeFilterYAML, vmConfigLocal, vmConfigRuntime, strconv.FormatBool(vmConfigAllowPrecompiled), r.metadataMatch(8))), &y) return &k8sutil.DynamicObject{ Gvr: schema.GroupVersionResource{ diff --git a/pkg/resources/mixerlesstelemetry/meta_exchange_filter_17.go b/pkg/resources/mixerlesstelemetry/meta_exchange_filter_17.go index 69dd3e7b1..ff64b6359 100644 --- a/pkg/resources/mixerlesstelemetry/meta_exchange_filter_17.go +++ b/pkg/resources/mixerlesstelemetry/meta_exchange_filter_17.go @@ -27,7 +27,7 @@ const ( context: ANY # inbound, outbound, and gateway proxy: proxyVersion: '^1\.7.*' - %[3]s + %[4]s listener: filterChain: filter: @@ -50,6 +50,7 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s ` ) diff --git a/pkg/resources/mixerlesstelemetry/meta_exchange_filter_18.go b/pkg/resources/mixerlesstelemetry/meta_exchange_filter_18.go index eb93112bd..6bd677b36 100644 --- a/pkg/resources/mixerlesstelemetry/meta_exchange_filter_18.go +++ b/pkg/resources/mixerlesstelemetry/meta_exchange_filter_18.go @@ -27,11 +27,11 @@ const ( context: ANY # inbound, outbound, and gateway proxy: proxyVersion: '^1\.8.*' - %[3]s + %[4]s listener: filterChain: filter: - name: "envoy.http_connection_manager" + name: "envoy.filters.network.http_connection_manager" patch: operation: INSERT_BEFORE value: @@ -50,6 +50,7 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s ` ) diff --git a/pkg/resources/mixerlesstelemetry/meta_exchange_filter_16.go b/pkg/resources/mixerlesstelemetry/meta_exchange_filter_19.go similarity index 70% rename from pkg/resources/mixerlesstelemetry/meta_exchange_filter_16.go rename to pkg/resources/mixerlesstelemetry/meta_exchange_filter_19.go index 13e6b4715..ce696997e 100644 --- a/pkg/resources/mixerlesstelemetry/meta_exchange_filter_16.go +++ b/pkg/resources/mixerlesstelemetry/meta_exchange_filter_19.go @@ -1,5 +1,5 @@ /* -Copyright 2020 Banzai Cloud. +Copyright 2021 Banzai Cloud. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -21,17 +21,17 @@ import ( ) const ( - metadataExchangeFilterYAML16 = ` + metadataExchangeFilterYAML19 = ` - applyTo: HTTP_FILTER match: context: ANY # inbound, outbound, and gateway proxy: - proxyVersion: '^1\.6.*' - %[3]s + proxyVersion: '^1\.9.*' + %[4]s listener: filterChain: filter: - name: "envoy.http_connection_manager" + name: "envoy.filters.network.http_connection_manager" patch: operation: INSERT_BEFORE value: @@ -41,16 +41,19 @@ const ( type_url: type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm value: config: - configuration: | - {} + configuration: + "@type": "type.googleapis.com/google.protobuf.StringValue" + value: | + {} vm_config: code: local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s ` ) -func (r *Reconciler) metaExchangeEnvoyFilter16() *k8sutil.DynamicObject { - return r.metaExchangeEnvoyFilter(proxyVersion16, metadataExchangeFilterYAML16) +func (r *Reconciler) metaExchangeEnvoyFilter19() *k8sutil.DynamicObject { + return r.metaExchangeEnvoyFilter(proxyVersion19, metadataExchangeFilterYAML19) } diff --git a/pkg/resources/mixerlesstelemetry/mixerlesstelemetry.go b/pkg/resources/mixerlesstelemetry/mixerlesstelemetry.go index eea987c4c..bc5e60f07 100644 --- a/pkg/resources/mixerlesstelemetry/mixerlesstelemetry.go +++ b/pkg/resources/mixerlesstelemetry/mixerlesstelemetry.go @@ -32,9 +32,9 @@ const ( componentName = "mixerless-telemetry" wasmRuntime = "envoy.wasm.runtime.v8" noWasmRuntime = "envoy.wasm.runtime.null" - proxyVersion16 = "1.6" proxyVersion17 = "1.7" proxyVersion18 = "1.8" + proxyVersion19 = "1.9" ) type Reconciler struct { @@ -69,22 +69,22 @@ func (r *Reconciler) Reconcile(log logr.Logger) error { } drs := []resources.DynamicResourceWithDesiredState{ - // delete deprecated 1.6 EnvoyFilters - // these lines can be removed when upgrading to 1.9 - {DynamicResource: r.metaExchangeEnvoyFilter16, DesiredState: k8sutil.DesiredStateAbsent}, - {DynamicResource: r.tcpMetaExchangeEnvoyFilter16, DesiredState: k8sutil.DesiredStateAbsent}, - {DynamicResource: r.httpStatsFilter16, DesiredState: k8sutil.DesiredStateAbsent}, - {DynamicResource: r.tcpStatsFilter16, DesiredState: k8sutil.DesiredStateAbsent}, - - {DynamicResource: r.metaExchangeEnvoyFilter17, DesiredState: exchangeFilterDesiredState}, - {DynamicResource: r.tcpMetaExchangeEnvoyFilter17, DesiredState: exchangeFilterDesiredState}, - {DynamicResource: r.httpStatsFilter17, DesiredState: statsFilterDesiredState}, - {DynamicResource: r.tcpStatsFilter17, DesiredState: statsFilterDesiredState}, + // delete deprecated 1.7 EnvoyFilters + // these lines can be removed when upgrading to 1.10 + {DynamicResource: r.metaExchangeEnvoyFilter17, DesiredState: k8sutil.DesiredStateAbsent}, + {DynamicResource: r.tcpMetaExchangeEnvoyFilter17, DesiredState: k8sutil.DesiredStateAbsent}, + {DynamicResource: r.httpStatsFilter17, DesiredState: k8sutil.DesiredStateAbsent}, + {DynamicResource: r.tcpStatsFilter17, DesiredState: k8sutil.DesiredStateAbsent}, {DynamicResource: r.metaExchangeEnvoyFilter18, DesiredState: exchangeFilterDesiredState}, {DynamicResource: r.tcpMetaExchangeEnvoyFilter18, DesiredState: exchangeFilterDesiredState}, {DynamicResource: r.httpStatsFilter18, DesiredState: statsFilterDesiredState}, {DynamicResource: r.tcpStatsFilter18, DesiredState: statsFilterDesiredState}, + + {DynamicResource: r.metaExchangeEnvoyFilter19, DesiredState: exchangeFilterDesiredState}, + {DynamicResource: r.tcpMetaExchangeEnvoyFilter19, DesiredState: exchangeFilterDesiredState}, + {DynamicResource: r.httpStatsFilter19, DesiredState: statsFilterDesiredState}, + {DynamicResource: r.tcpStatsFilter19, DesiredState: statsFilterDesiredState}, } for _, dr := range drs { diff --git a/pkg/resources/mixerlesstelemetry/stats_filter.go b/pkg/resources/mixerlesstelemetry/stats_filter.go index c5eaa8fdf..549970975 100644 --- a/pkg/resources/mixerlesstelemetry/stats_filter.go +++ b/pkg/resources/mixerlesstelemetry/stats_filter.go @@ -18,6 +18,7 @@ package mixerlesstelemetry import ( "fmt" + "strconv" "github.com/banzaicloud/istio-operator/pkg/util" "github.com/ghodss/yaml" @@ -27,23 +28,24 @@ import ( ) const ( - statsWasmLocal = "filename: /etc/istio/extensions/stats-filter.wasm" + statsWasmLocal = "filename: /etc/istio/extensions/stats-filter.compiled.wasm" statsNoWasmLocal = "inline_string: envoy.wasm.stats" ) func (r *Reconciler) httpStatsFilter(version string, httpStatsFilterYAML string) *k8sutil.DynamicObject { - wasmEnabled := util.PointerToBool(r.Config.Spec.ProxyWasm.Enabled) vmConfigLocal := statsNoWasmLocal vmConfigRuntime := noWasmRuntime + vmConfigAllowPrecompiled := false if wasmEnabled { vmConfigLocal = statsWasmLocal vmConfigRuntime = wasmRuntime + vmConfigAllowPrecompiled = true } var y []map[string]interface{} - yaml.Unmarshal([]byte(fmt.Sprintf(httpStatsFilterYAML, vmConfigLocal, vmConfigRuntime, r.metadataMatch(8))), &y) + yaml.Unmarshal([]byte(fmt.Sprintf(httpStatsFilterYAML, vmConfigLocal, vmConfigRuntime, strconv.FormatBool(vmConfigAllowPrecompiled), r.metadataMatch(8))), &y) return &k8sutil.DynamicObject{ Gvr: schema.GroupVersionResource{ diff --git a/pkg/resources/mixerlesstelemetry/stats_filter_17.go b/pkg/resources/mixerlesstelemetry/stats_filter_17.go index d10277e9f..0afb6fa05 100644 --- a/pkg/resources/mixerlesstelemetry/stats_filter_17.go +++ b/pkg/resources/mixerlesstelemetry/stats_filter_17.go @@ -27,7 +27,7 @@ const ( context: SIDECAR_OUTBOUND proxy: proxyVersion: '^1\.7.*' - %[3]s + %[4]s listener: filterChain: filter: @@ -64,13 +64,14 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: stats_outbound - applyTo: HTTP_FILTER match: context: SIDECAR_INBOUND proxy: proxyVersion: '^1\.7.*' - %[3]s + %[4]s listener: filterChain: filter: @@ -107,13 +108,14 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: stats_inbound - applyTo: HTTP_FILTER match: context: GATEWAY proxy: proxyVersion: '^1\.7.*' - %[3]s + %[4]s listener: filterChain: filter: @@ -150,6 +152,7 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: stats_outbound ` ) diff --git a/pkg/resources/mixerlesstelemetry/stats_filter_18.go b/pkg/resources/mixerlesstelemetry/stats_filter_18.go index 82ef56cdb..1b2ae83dd 100644 --- a/pkg/resources/mixerlesstelemetry/stats_filter_18.go +++ b/pkg/resources/mixerlesstelemetry/stats_filter_18.go @@ -27,13 +27,13 @@ const ( context: SIDECAR_OUTBOUND proxy: proxyVersion: '^1\.8.*' - %[3]s + %[4]s listener: filterChain: filter: - name: envoy.http_connection_manager + name: envoy.filters.network.http_connection_manager subFilter: - name: envoy.router + name: envoy.filters.http.router patch: operation: INSERT_BEFORE value: @@ -64,19 +64,20 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: stats_outbound - applyTo: HTTP_FILTER match: context: SIDECAR_INBOUND proxy: proxyVersion: '^1\.8.*' - %[3]s + %[4]s listener: filterChain: filter: - name: envoy.http_connection_manager + name: envoy.filters.network.http_connection_manager subFilter: - name: envoy.router + name: envoy.filters.http.router patch: operation: INSERT_BEFORE value: @@ -107,19 +108,20 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: stats_inbound - applyTo: HTTP_FILTER match: context: GATEWAY proxy: proxyVersion: '^1\.8.*' - %[3]s + %[4]s listener: filterChain: filter: - name: envoy.http_connection_manager + name: envoy.filters.network.http_connection_manager subFilter: - name: envoy.router + name: envoy.filters.http.router patch: operation: INSERT_BEFORE value: @@ -150,6 +152,7 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: stats_outbound ` ) diff --git a/pkg/resources/mixerlesstelemetry/stats_filter_16.go b/pkg/resources/mixerlesstelemetry/stats_filter_19.go similarity index 52% rename from pkg/resources/mixerlesstelemetry/stats_filter_16.go rename to pkg/resources/mixerlesstelemetry/stats_filter_19.go index 0447ef0f8..4971b42fe 100644 --- a/pkg/resources/mixerlesstelemetry/stats_filter_16.go +++ b/pkg/resources/mixerlesstelemetry/stats_filter_19.go @@ -1,5 +1,5 @@ /* -Copyright 2020 Banzai Cloud. +Copyright 2021 Banzai Cloud. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -21,19 +21,19 @@ import ( ) const ( - httpStatsFilterYAML16 = ` + httpStatsFilterYAML19 = ` - applyTo: HTTP_FILTER match: context: SIDECAR_OUTBOUND proxy: - proxyVersion: '^1\.6.*' - %[3]s + proxyVersion: '^1\.9.*' + %[4]s listener: filterChain: filter: - name: envoy.http_connection_manager + name: envoy.filters.network.http_connection_manager subFilter: - name: envoy.router + name: envoy.filters.http.router patch: operation: INSERT_BEFORE value: @@ -43,38 +43,41 @@ const ( type_url: type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm value: config: - configuration: | - { - "debug": "false", - "stat_prefix": "istio", - "metrics": [ - { - "dimensions": { - "source_cluster": "node.metadata['CLUSTER_ID']", - "destination_cluster": "upstream_peer.cluster_id" + configuration: + "@type": "type.googleapis.com/google.protobuf.StringValue" + value: | + { + "debug": "false", + "stat_prefix": "istio", + "metrics": [ + { + "dimensions": { + "source_cluster": "node.metadata['CLUSTER_ID']", + "destination_cluster": "upstream_peer.cluster_id" + } } - } - ] - } + ] + } root_id: stats_outbound vm_config: code: local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: stats_outbound - applyTo: HTTP_FILTER match: context: SIDECAR_INBOUND proxy: - proxyVersion: '^1\.6.*' - %[3]s + proxyVersion: '^1\.9.*' + %[4]s listener: filterChain: filter: - name: envoy.http_connection_manager + name: envoy.filters.network.http_connection_manager subFilter: - name: envoy.router + name: envoy.filters.http.router patch: operation: INSERT_BEFORE value: @@ -84,38 +87,41 @@ const ( type_url: type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm value: config: - configuration: | - { - "debug": "false", - "stat_prefix": "istio", - "metrics": [ - { - "dimensions": { - "destination_cluster": "node.metadata['CLUSTER_ID']", - "source_cluster": "downstream_peer.cluster_id" + configuration: + "@type": "type.googleapis.com/google.protobuf.StringValue" + value: | + { + "debug": "false", + "stat_prefix": "istio", + "metrics": [ + { + "dimensions": { + "destination_cluster": "node.metadata['CLUSTER_ID']", + "source_cluster": "downstream_peer.cluster_id" + } } - } - ] - } + ] + } root_id: stats_inbound vm_config: code: local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: stats_inbound - applyTo: HTTP_FILTER match: context: GATEWAY proxy: - proxyVersion: '^1\.6.*' - %[3]s + proxyVersion: '^1\.9.*' + %[4]s listener: filterChain: filter: - name: envoy.http_connection_manager + name: envoy.filters.network.http_connection_manager subFilter: - name: envoy.router + name: envoy.filters.http.router patch: operation: INSERT_BEFORE value: @@ -125,30 +131,32 @@ const ( type_url: type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm value: config: - configuration: | - { - "debug": "false", - "stat_prefix": "istio", - "disable_host_header_fallback": true, - "metrics": [ - { - "dimensions": { - "source_cluster": "node.metadata['CLUSTER_ID']", - "destination_cluster": "upstream_peer.cluster_id" + configuration: + "@type": "type.googleapis.com/google.protobuf.StringValue" + value: | + { + "debug": "false", + "stat_prefix": "istio", + "metrics": [ + { + "dimensions": { + "source_cluster": "node.metadata['CLUSTER_ID']", + "destination_cluster": "upstream_peer.cluster_id" + } } - } - ] - } + ] + } root_id: stats_outbound vm_config: code: local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: stats_outbound ` ) -func (r *Reconciler) httpStatsFilter16() *k8sutil.DynamicObject { - return r.httpStatsFilter(proxyVersion16, httpStatsFilterYAML16) +func (r *Reconciler) httpStatsFilter19() *k8sutil.DynamicObject { + return r.httpStatsFilter(proxyVersion19, httpStatsFilterYAML19) } diff --git a/pkg/resources/mixerlesstelemetry/tcp_meta_exchange_filter_16.go b/pkg/resources/mixerlesstelemetry/tcp_meta_exchange_filter_19.go similarity index 86% rename from pkg/resources/mixerlesstelemetry/tcp_meta_exchange_filter_16.go rename to pkg/resources/mixerlesstelemetry/tcp_meta_exchange_filter_19.go index 03a25e841..ebd1db436 100644 --- a/pkg/resources/mixerlesstelemetry/tcp_meta_exchange_filter_16.go +++ b/pkg/resources/mixerlesstelemetry/tcp_meta_exchange_filter_19.go @@ -1,5 +1,5 @@ /* -Copyright 2020 Banzai Cloud. +Copyright 2021 Banzai Cloud. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -21,12 +21,12 @@ import ( ) const ( - tcpMetadataExchangeFilterYAML16 = ` + tcpMetadataExchangeFilterYAML19 = ` - applyTo: NETWORK_FILTER match: context: SIDECAR_INBOUND proxy: - proxyVersion: '^1\.6.*' + proxyVersion: '^1\.9.*' %[1]s listener: {} patch: @@ -42,7 +42,7 @@ const ( match: context: SIDECAR_OUTBOUND proxy: - proxyVersion: '^1\.6.*' + proxyVersion: '^1\.9.*' %[1]s cluster: {} patch: @@ -59,7 +59,7 @@ const ( match: context: GATEWAY proxy: - proxyVersion: '^1\.6.*' + proxyVersion: '^1\.9.*' %[1]s cluster: {} patch: @@ -75,6 +75,6 @@ const ( ` ) -func (r *Reconciler) tcpMetaExchangeEnvoyFilter16() *k8sutil.DynamicObject { - return r.tcpMetaExchangeEnvoyFilter(proxyVersion16, tcpMetadataExchangeFilterYAML16) +func (r *Reconciler) tcpMetaExchangeEnvoyFilter19() *k8sutil.DynamicObject { + return r.tcpMetaExchangeEnvoyFilter(proxyVersion19, tcpMetadataExchangeFilterYAML19) } diff --git a/pkg/resources/mixerlesstelemetry/tcp_stats_filter.go b/pkg/resources/mixerlesstelemetry/tcp_stats_filter.go index a81c5fde1..22f88f37a 100644 --- a/pkg/resources/mixerlesstelemetry/tcp_stats_filter.go +++ b/pkg/resources/mixerlesstelemetry/tcp_stats_filter.go @@ -18,6 +18,7 @@ package mixerlesstelemetry import ( "fmt" + "strconv" "github.com/banzaicloud/istio-operator/pkg/util" "github.com/ghodss/yaml" @@ -27,18 +28,19 @@ import ( ) func (r *Reconciler) tcpStatsFilter(version string, tcpStatsFilterYAML string) *k8sutil.DynamicObject { - wasmEnabled := util.PointerToBool(r.Config.Spec.ProxyWasm.Enabled) vmConfigLocal := statsNoWasmLocal vmConfigRuntime := noWasmRuntime + vmConfigAllowPrecompiled := false if wasmEnabled { vmConfigLocal = statsWasmLocal vmConfigRuntime = wasmRuntime + vmConfigAllowPrecompiled = true } var y []map[string]interface{} - yaml.Unmarshal([]byte(fmt.Sprintf(tcpStatsFilterYAML, vmConfigLocal, vmConfigRuntime, r.metadataMatch(10))), &y) + yaml.Unmarshal([]byte(fmt.Sprintf(tcpStatsFilterYAML, vmConfigLocal, vmConfigRuntime, strconv.FormatBool(vmConfigAllowPrecompiled), r.metadataMatch(10))), &y) return &k8sutil.DynamicObject{ Gvr: schema.GroupVersionResource{ diff --git a/pkg/resources/mixerlesstelemetry/tcp_stats_filter_17.go b/pkg/resources/mixerlesstelemetry/tcp_stats_filter_17.go index 473b3b243..92ee4a6e1 100644 --- a/pkg/resources/mixerlesstelemetry/tcp_stats_filter_17.go +++ b/pkg/resources/mixerlesstelemetry/tcp_stats_filter_17.go @@ -31,7 +31,7 @@ const ( name: envoy.tcp_proxy proxy: proxyVersion: ^1\.7.* - %[3]s + %[4]s patch: operation: INSERT_BEFORE value: @@ -62,6 +62,7 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: tcp_stats_inbound - applyTo: NETWORK_FILTER match: @@ -72,7 +73,7 @@ const ( name: envoy.tcp_proxy proxy: proxyVersion: ^1\.7.* - %[3]s + %[4]s patch: operation: INSERT_BEFORE value: @@ -103,6 +104,7 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: tcp_stats_outbound - applyTo: NETWORK_FILTER match: @@ -113,7 +115,7 @@ const ( name: envoy.tcp_proxy proxy: proxyVersion: ^1\.7.* - %[3]s + %[4]s patch: operation: INSERT_BEFORE value: @@ -144,6 +146,7 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: tcp_stats_outbound ` ) diff --git a/pkg/resources/mixerlesstelemetry/tcp_stats_filter_18.go b/pkg/resources/mixerlesstelemetry/tcp_stats_filter_18.go index ca64e3c2b..91a299335 100644 --- a/pkg/resources/mixerlesstelemetry/tcp_stats_filter_18.go +++ b/pkg/resources/mixerlesstelemetry/tcp_stats_filter_18.go @@ -28,10 +28,10 @@ const ( listener: filterChain: filter: - name: envoy.tcp_proxy + name: envoy.filters.network.tcp_proxy proxy: proxyVersion: ^1\.8.* - %[3]s + %[4]s patch: operation: INSERT_BEFORE value: @@ -62,6 +62,7 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: tcp_stats_inbound - applyTo: NETWORK_FILTER match: @@ -69,10 +70,10 @@ const ( listener: filterChain: filter: - name: envoy.tcp_proxy + name: envoy.filters.network.tcp_proxy proxy: proxyVersion: ^1\.8.* - %[3]s + %[4]s patch: operation: INSERT_BEFORE value: @@ -103,6 +104,7 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: tcp_stats_outbound - applyTo: NETWORK_FILTER match: @@ -110,10 +112,10 @@ const ( listener: filterChain: filter: - name: envoy.tcp_proxy + name: envoy.filters.network.tcp_proxy proxy: proxyVersion: ^1\.8.* - %[3]s + %[4]s patch: operation: INSERT_BEFORE value: @@ -144,6 +146,7 @@ const ( local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: tcp_stats_outbound ` ) diff --git a/pkg/resources/mixerlesstelemetry/tcp_stats_filter_16.go b/pkg/resources/mixerlesstelemetry/tcp_stats_filter_19.go similarity index 53% rename from pkg/resources/mixerlesstelemetry/tcp_stats_filter_16.go rename to pkg/resources/mixerlesstelemetry/tcp_stats_filter_19.go index 481d36e0c..eb638510c 100644 --- a/pkg/resources/mixerlesstelemetry/tcp_stats_filter_16.go +++ b/pkg/resources/mixerlesstelemetry/tcp_stats_filter_19.go @@ -1,5 +1,5 @@ /* -Copyright 2020 Banzai Cloud. +Copyright 2021 Banzai Cloud. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -21,17 +21,17 @@ import ( ) const ( - tcpStatsFilterYAML16 = ` + tcpStatsFilterYAML19 = ` - applyTo: NETWORK_FILTER match: context: SIDECAR_INBOUND listener: filterChain: filter: - name: envoy.tcp_proxy + name: envoy.filters.network.tcp_proxy proxy: - proxyVersion: ^1\.6.* - %[3]s + proxyVersion: ^1\.9.* + %[4]s patch: operation: INSERT_BEFORE value: @@ -41,25 +41,28 @@ const ( type_url: type.googleapis.com/envoy.extensions.filters.network.wasm.v3.Wasm value: config: - configuration: | - { - "debug": "false", - "stat_prefix": "istio", - "metrics": [ - { - "dimensions": { - "destination_cluster": "node.metadata['CLUSTER_ID']", - "source_cluster": "downstream_peer.cluster_id" + configuration: + "@type": "type.googleapis.com/google.protobuf.StringValue" + value: | + { + "debug": "false", + "stat_prefix": "istio", + "metrics": [ + { + "dimensions": { + "destination_cluster": "node.metadata['CLUSTER_ID']", + "source_cluster": "downstream_peer.cluster_id" + } } - } - ] - } + ] + } root_id: stats_inbound vm_config: code: local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: tcp_stats_inbound - applyTo: NETWORK_FILTER match: @@ -67,10 +70,10 @@ const ( listener: filterChain: filter: - name: envoy.tcp_proxy + name: envoy.filters.network.tcp_proxy proxy: - proxyVersion: ^1\.6.* - %[3]s + proxyVersion: ^1\.9.* + %[4]s patch: operation: INSERT_BEFORE value: @@ -80,25 +83,28 @@ const ( type_url: type.googleapis.com/envoy.extensions.filters.network.wasm.v3.Wasm value: config: - configuration: | - { - "debug": "false", - "stat_prefix": "istio", - "metrics": [ - { - "dimensions": { - "source_cluster": "node.metadata['CLUSTER_ID']", - "destination_cluster": "upstream_peer.cluster_id" + configuration: + "@type": "type.googleapis.com/google.protobuf.StringValue" + value: | + { + "debug": "false", + "stat_prefix": "istio", + "metrics": [ + { + "dimensions": { + "source_cluster": "node.metadata['CLUSTER_ID']", + "destination_cluster": "upstream_peer.cluster_id" + } } - } - ] - } + ] + } root_id: stats_outbound vm_config: code: local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: tcp_stats_outbound - applyTo: NETWORK_FILTER match: @@ -106,10 +112,10 @@ const ( listener: filterChain: filter: - name: envoy.tcp_proxy + name: envoy.filters.network.tcp_proxy proxy: - proxyVersion: ^1\.6.* - %[3]s + proxyVersion: ^1\.9.* + %[4]s patch: operation: INSERT_BEFORE value: @@ -119,29 +125,32 @@ const ( type_url: type.googleapis.com/envoy.extensions.filters.network.wasm.v3.Wasm value: config: - configuration: | - { - "debug": "false", - "stat_prefix": "istio", - "metrics": [ - { - "dimensions": { - "source_cluster": "node.metadata['CLUSTER_ID']", - "destination_cluster": "upstream_peer.cluster_id" + configuration: + "@type": "type.googleapis.com/google.protobuf.StringValue" + value: | + { + "debug": "false", + "stat_prefix": "istio", + "metrics": [ + { + "dimensions": { + "source_cluster": "node.metadata['CLUSTER_ID']", + "destination_cluster": "upstream_peer.cluster_id" + } } - } - ] - } + ] + } root_id: stats_outbound vm_config: code: local: %[1]s runtime: %[2]s + allow_precompiled: %[3]s vm_id: tcp_stats_outbound ` ) -func (r *Reconciler) tcpStatsFilter16() *k8sutil.DynamicObject { - return r.tcpStatsFilter(proxyVersion16, tcpStatsFilterYAML16) +func (r *Reconciler) tcpStatsFilter19() *k8sutil.DynamicObject { + return r.tcpStatsFilter(proxyVersion19, tcpStatsFilterYAML19) } diff --git a/pkg/resources/pilot/rbac.go b/pkg/resources/pilot/rbac.go index 97d6ba895..acb6e326b 100644 --- a/pkg/resources/pilot/rbac.go +++ b/pkg/resources/pilot/rbac.go @@ -35,7 +35,7 @@ func (r *Reconciler) clusterRole() runtime.Object { ObjectMeta: templates.ObjectMetaClusterScope(clusterRoleName, pilotLabels, r.Config), Rules: []rbacv1.PolicyRule{ { - APIGroups: []string{"config.istio.io", "rbac.istio.io", "security.istio.io", "networking.istio.io", "authentication.istio.io"}, + APIGroups: []string{"security.istio.io", "networking.istio.io"}, Resources: []string{"*"}, Verbs: []string{"get", "watch", "list"}, }, diff --git a/pkg/resources/sidecarinjector/configmap_sidecar_injector.go b/pkg/resources/sidecarinjector/configmap_sidecar_injector.go index 04e432111..856dd9d77 100644 --- a/pkg/resources/sidecarinjector/configmap_sidecar_injector.go +++ b/pkg/resources/sidecarinjector/configmap_sidecar_injector.go @@ -18,6 +18,7 @@ package sidecarinjector import ( "encoding/json" + "fmt" "strings" "github.com/ghodss/yaml" @@ -146,6 +147,9 @@ func (r *Reconciler) siConfig() string { siConfig := map[string]interface{}{ "policy": autoInjection, "template": r.templateConfig(), + + "defaultTemplates": []string{"sidecar"}, + "templates": r.templates(), } if len(r.Config.Spec.SidecarInjector.AlwaysInjectSelector) > 0 { @@ -164,22 +168,50 @@ func (r *Reconciler) siConfig() string { } -func (r *Reconciler) templateConfig() string { - return `rewriteAppHTTPProbe: {{ valueOrDefault .Values.sidecarInjectorWebhook.rewriteAppHTTPProbe true }} -{{- if .Values.global.podDNSSearchNamespaces }} -dnsConfig: - searches: - {{- range .Values.global.podDNSSearchNamespaces }} - - {{ render . }} +func (r *Reconciler) templates() map[string]string { + return map[string]string{"sidecar": ` +{{- $containers := list }} +{{- range $index, $container := .Spec.Containers }}{{ if not (eq $container.Name "istio-proxy") }}{{ $containers = append $containers $container.Name }}{{end}}{{- end}} +metadata: + labels: + security.istio.io/tlsMode: {{ index .ObjectMeta.Labels ` + "`" + `security.istio.io/tlsMode` + "`" + ` | default "istio" | quote }} + service.istio.io/canonical-name: {{ index .ObjectMeta.Labels ` + "`" + `service.istio.io/canonical-name` + "`" + ` | default (index .ObjectMeta.Labels ` + "`" + `app.kubernetes.io/name` + "`" + `) | default (index .ObjectMeta.Labels ` + "`" + `app` + "`" + `) | default .DeploymentMeta.Name | quote }} + service.istio.io/canonical-revision: {{ index .ObjectMeta.Labels ` + "`" + `service.istio.io/canonical-revision` + "`" + ` | default (index .ObjectMeta.Labels ` + "`" + `app.kubernetes.io/version` + "`" + `) | default (index .ObjectMeta.Labels ` + "`" + `version` + "`" + `) | default "latest" | quote }} + istio.io/rev: {{ .Revision | default "default" | quote }} + annotations: + {{- if eq (len $containers) 1 }} + kubectl.kubernetes.io/default-logs-container: "{{ index $containers 0 }}" + {{ end }} +{{ if .Values.global.proxy_init.cniEnabled -}} + {{- if not .Values.global.proxy_init.cniChained }} + k8s.v1.cni.cncf.io/networks: '{{ appendMultusNetwork (index .ObjectMeta.Annotations ` + "`" + `k8s.v1.cni.cncf.io/networks` + "`" + `) ` + "`" + `istio-cni` + "`" + ` }}' + {{- end }} + sidecar.istio.io/interceptionMode: "{{ annotation .ObjectMeta ` + "`" + `sidecar.istio.io/interceptionMode` + "`" + ` .ProxyConfig.InterceptionMode }}" + {{ with annotation .ObjectMeta ` + "`" + `traffic.sidecar.istio.io/includeOutboundIPRanges` + "`" + ` .Values.global.proxy.includeIPRanges }} + traffic.sidecar.istio.io/includeOutboundIPRanges: "{{.}}" + {{ end }} + {{ with annotation .ObjectMeta ` + "`" + `traffic.sidecar.istio.io/excludeOutboundIPRanges` + "`" + ` .Values.global.proxy.excludeIPRanges }} + traffic.sidecar.istio.io/excludeOutboundIPRanges: "{{.}}" + {{ end }} + traffic.sidecar.istio.io/includeInboundPorts: "{{ annotation .ObjectMeta ` + "`" + `traffic.sidecar.istio.io/includeInboundPorts` + "`" + ` ` + "`" + `*` + "`" + ` }}" + traffic.sidecar.istio.io/excludeInboundPorts: "{{ excludeInboundPort (annotation .ObjectMeta ` + "`" + `status.sidecar.istio.io/port` + "`" + ` .Values.global.proxy.statusPort) (annotation .ObjectMeta ` + "`" + `traffic.sidecar.istio.io/excludeInboundPorts` + "`" + ` .Values.global.proxy.excludeInboundPorts) }}" + {{ if or (isset .ObjectMeta.Annotations ` + "`" + `traffic.sidecar.istio.io/includeOutboundPorts` + "`" + `) (ne (valueOrDefault .Values.global.proxy.includeOutboundPorts "") "") }} + traffic.sidecar.istio.io/includeOutboundPorts: "{{ annotation .ObjectMeta ` + "`" + `traffic.sidecar.istio.io/includeOutboundPorts` + "`" + ` .Values.global.proxy.includeOutboundPorts }}" {{- end }} + {{ if or (isset .ObjectMeta.Annotations ` + "`" + `traffic.sidecar.istio.io/excludeOutboundPorts` + "`" + `) (ne .Values.global.proxy.excludeOutboundPorts "") }} + traffic.sidecar.istio.io/excludeOutboundPorts: "{{ annotation .ObjectMeta ` + "`" + `traffic.sidecar.istio.io/excludeOutboundPorts` + "`" + ` .Values.global.proxy.excludeOutboundPorts }}" + {{- end }} + {{ with index .ObjectMeta.Annotations ` + "`" + `traffic.sidecar.istio.io/kubevirtInterfaces` + "`" + ` }}traffic.sidecar.istio.io/kubevirtInterfaces: "{{.}}",{{ end }} {{- end }} -httpProxyEnvs: - httpProxy: {{ .Values.sidecarInjectorWebhook.httpProxyEnvs.httpProxy }} - httpsProxy: {{ .Values.sidecarInjectorWebhook.httpProxyEnvs.httpsProxy }} - noProxy: {{ .Values.sidecarInjectorWebhook.httpProxyEnvs.noProxy }} -initContainers: +spec: +` + indentWithSpaces(r.templatePodSpec(2), 2) + ` +`} +} + +func (r *Reconciler) templatePodSpec(indentSize int) string { + return `initContainers: {{ if ne (annotation .ObjectMeta ` + "`" + `sidecar.istio.io/interceptionMode` + "`" + ` .ProxyConfig.InterceptionMode) "NONE" }} -` + r.proxyInitContainer() + ` +` + r.proxyInitContainer(indentSize) + ` {{ end -}} ` + r.coreDumpContainer() + ` containers: @@ -215,7 +247,7 @@ containers: ` + r.injectedAddtionalContainerArgs() + ` {{- if .Values.global.proxy.lifecycle }} lifecycle: - {{ toYaml .Values.global.proxy.lifecycle | indent 4 }} + {{ toYaml .Values.global.proxy.lifecycle | indent ` + fmt.Sprintf("%d", (4+indentSize)) + ` }} {{- else if .Values.global.proxy.holdApplicationUntilProxyStarts}} lifecycle: postStart: @@ -385,8 +417,8 @@ containers: runAsNonRoot: true runAsUser: 1337 {{- end }} - resources: {{- if or (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyCPU` + "`" + `) (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyMemory` + "`" + `) (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyCPULimit` + "`" + `) (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyMemoryLimit` + "`" + `) }} + resources: {{- if or (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyCPU` + "`" + `) (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyMemory` + "`" + `) }} requests: {{ if (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyCPU` + "`" + `) -}} @@ -406,9 +438,7 @@ containers: {{ end }} {{- end }} {{- else }} -{{- if .Values.global.proxy.resources }} - {{ toYaml .Values.global.proxy.resources | indent 4 }} -{{- end }} +` + r.getFormattedResources(r.Config.Spec.Proxy.Resources, 2) + ` {{- end }} volumeMounts: {{- if .Values.global.istiod.enabled }} @@ -465,7 +495,7 @@ containers: {{- if isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/userVolumeMount` + "`" + ` }} {{ range $index, $value := fromJSON (index .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/userVolumeMount` + "`" + `) }} - name: "{{ $index }}" - {{ toYaml $value | indent 4 }} + {{ toYaml $value | indent ` + fmt.Sprintf("%d", (4+indentSize)) + ` }} {{ end }} {{- end }} volumes: @@ -490,6 +520,16 @@ volumes: - path: "annotations" fieldRef: fieldPath: metadata.annotations + - path: "cpu-limit" + resourceFieldRef: + containerName: istio-proxy + resource: limits.cpu + divisor: 1m + - path: "cpu-request" + resourceFieldRef: + containerName: istio-proxy + resource: requests.cpu + divisor: 1m {{- if eq .Values.global.jwtPolicy "third-party-jwt" }} - name: istio-token projected: @@ -546,7 +586,7 @@ volumes: {{- if isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/userVolume` + "`" + ` }} {{range $index, $value := fromJSON (index .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/userVolume` + "`" + `) }} - name: "{{ $index }}" - {{ toYaml $value | indent 2 }} + {{ toYaml $value | indent ` + fmt.Sprintf("%d", (2+indentSize)) + ` }} {{ end }} {{ end }} {{- if and (eq .Values.global.proxy.tracer "lightstep") .ProxyConfig.GetTracing.GetTlsSettings }} @@ -561,6 +601,27 @@ imagePullSecrets: - name: {{ . }} {{- end }} {{- end }} +{{- if eq (env "ENABLE_LEGACY_FSGROUP_INJECTION" "true") "true" }} +securityContext: + fsGroup: 1337 +{{- end }} +` +} + +func (r *Reconciler) templateConfig() string { + return `rewriteAppHTTPProbe: {{ valueOrDefault .Values.sidecarInjectorWebhook.rewriteAppHTTPProbe true }} +{{- if .Values.global.podDNSSearchNamespaces }} +dnsConfig: + searches: + {{- range .Values.global.podDNSSearchNamespaces }} + - {{ render . }} + {{- end }} +{{- end }} +httpProxyEnvs: + httpProxy: {{ .Values.sidecarInjectorWebhook.httpProxyEnvs.httpProxy }} + httpsProxy: {{ .Values.sidecarInjectorWebhook.httpProxyEnvs.httpsProxy }} + noProxy: {{ .Values.sidecarInjectorWebhook.httpProxyEnvs.noProxy }} +` + r.templatePodSpec(0) + ` podRedirectAnnot: {{- if and (.Values.global.proxy_init.cniEnabled) (not .Values.global.proxy_init.cniChained) }} k8s.v1.cni.cncf.io/networks: '{{ appendMultusNetwork (index .ObjectMeta.Annotations ` + "`" + `k8s.v1.cni.cncf.io/networks` + "`" + `) ` + "`" + `istio-cni` + "`" + ` }}' @@ -639,7 +700,7 @@ func (r *Reconciler) trustBundleManagerEnvVar() string { return indentWithSpaces(string(env), 2) } -func (r *Reconciler) proxyInitContainer() string { +func (r *Reconciler) proxyInitContainer(indentSize int) string { return `- name: {{ .Values.global.proxy_init.containerName }} image: "{{ .Values.global.proxy_init.image }}" args: @@ -649,7 +710,7 @@ func (r *Reconciler) proxyInitContainer() string { - "-z" - "15006" - "-u" - - 1337 + - "1337" - "-m" - "{{ annotation .ObjectMeta ` + "`" + `sidecar.istio.io/interceptionMode` + "`" + ` .ProxyConfig.InterceptionMode }}" - "-i" @@ -689,7 +750,6 @@ func (r *Reconciler) proxyInitContainer() string { value: "{{ $value }}" {{- end }} {{- end }} -` + r.getFormattedResources(r.Config.Spec.SidecarInjector.Init.Resources, 2) + ` securityContext: {{- if not .Values.global.proxy_init.cniEnabled }} readOnlyRootFilesystem: false @@ -713,8 +773,8 @@ func (r *Reconciler) proxyInitContainer() string { drop: - ALL restartPolicy: Always - resources: {{- if or (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyCPU` + "`" + `) (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyMemory` + "`" + `) (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyCPULimit` + "`" + `) (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyMemoryLimit` + "`" + `) }} + resources: {{- if or (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyCPU` + "`" + `) (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyMemory` + "`" + `) }} requests: {{ if (isset .ObjectMeta.Annotations ` + "`" + `sidecar.istio.io/proxyCPU` + "`" + `) -}} @@ -734,11 +794,9 @@ func (r *Reconciler) proxyInitContainer() string { {{ end }} {{- end }} {{- else }} -{{- if .Values.global.proxy.resources }} - {{ toYaml .Values.global.proxy.resources | indent 4 }} -{{- end }} +` + r.getFormattedResources(r.Config.Spec.SidecarInjector.Init.Resources, 2) + ` {{- end }} - ` +` } func (r *Reconciler) getFormattedResources(resources *apiv1.ResourceRequirements, indentSize int) string { @@ -763,5 +821,12 @@ func (r *Reconciler) getFormattedResources(resources *apiv1.ResourceRequirements func indentWithSpaces(v string, spaces int) string { pad := strings.Repeat(" ", spaces) - return pad + strings.Replace(v, "\n", "\n"+pad, -1) + lines := make([]string, 0) + for _, l := range strings.Split(v, "\n") { + if len(l) > 0 { + l = pad + l + } + lines = append(lines, l) + } + return strings.Join(lines, "\n") } diff --git a/pkg/resources/sidecarinjector/deployment.go b/pkg/resources/sidecarinjector/deployment.go index 10489aea4..7777a2096 100644 --- a/pkg/resources/sidecarinjector/deployment.go +++ b/pkg/resources/sidecarinjector/deployment.go @@ -76,7 +76,7 @@ func (r *Reconciler) deployment() runtime.Object { }, Template: apiv1.PodTemplateSpec{ ObjectMeta: metav1.ObjectMeta{ - Labels: util.MergeMultipleStringMaps(sidecarInjectorLabels, labelSelector, r.Config.RevisionLabels()), + Labels: util.MergeMultipleStringMaps(sidecarInjectorLabels, labelSelector, r.Config.RevisionLabels(), v1beta1.DisableInjectionLabel), Annotations: util.MergeStringMaps(templates.DefaultDeployAnnotations(), r.Config.Spec.SidecarInjector.PodAnnotations), }, Spec: apiv1.PodSpec{ @@ -311,7 +311,7 @@ func (r *Reconciler) cfEnvVars() []apiv1.EnvVar { }, { Name: "SECRET_TTL", - Value: "8640h", + Value: "2160h", }, { Name: "OUTPUT_CERTS", diff --git a/pkg/resources/sidecarinjector/rbac.go b/pkg/resources/sidecarinjector/rbac.go index 9422a4219..c8c9ff7c5 100644 --- a/pkg/resources/sidecarinjector/rbac.go +++ b/pkg/resources/sidecarinjector/rbac.go @@ -42,7 +42,7 @@ func (r *Reconciler) clusterRole() runtime.Object { { APIGroups: []string{"admissionregistration.k8s.io"}, Resources: []string{"mutatingwebhookconfigurations"}, - Verbs: []string{"get", "list", "watch", "patch"}, + Verbs: []string{"get", "list", "watch", "update", "patch"}, }, }, } diff --git a/pkg/resources/sidecarinjector/webhook.go b/pkg/resources/sidecarinjector/webhook.go index 7d6022aea..3878d7524 100644 --- a/pkg/resources/sidecarinjector/webhook.go +++ b/pkg/resources/sidecarinjector/webhook.go @@ -114,6 +114,15 @@ func (r *Reconciler) webhook() runtime.Object { FailurePolicy: &fail, NamespaceSelector: &metav1.LabelSelector{}, SideEffects: &noneSideEffects, + ObjectSelector: &metav1.LabelSelector{ + MatchExpressions: []metav1.LabelSelectorRequirement{ + { + Key: v1beta1.ManualInjectionLabelKey, + Operator: metav1.LabelSelectorOpNotIn, + Values: []string{"false"}, + }, + }, + }, } matchExpression := make([]metav1.LabelSelectorRequirement, 0) diff --git a/scripts/label-crds.sh b/scripts/label-crds.sh index 7edefa6df..7cee7f2e9 100755 --- a/scripts/label-crds.sh +++ b/scripts/label-crds.sh @@ -4,7 +4,7 @@ dirname=$(dirname "$0") projectdir=$PWD/$dirname/.. crdpath=$projectdir/deploy/charts/istio-operator/crds -ISTIO_VERSION=${1:-"1.8.2"} +ISTIO_VERSION=${1:-"1.9.0"} for name in "$crdpath"/*.yaml; do sed "s/{{ISTIO_VERSION}}/${ISTIO_VERSION}/" "$projectdir/hack/crd-labeling-yq.yaml" | "$projectdir"/bin/yq w -i -s - "$name" diff --git a/static/charts/istio_operator/chart.gogen.go b/static/charts/istio_operator/chart.gogen.go index 84673fa4f..24d821a7d 100644 --- a/static/charts/istio_operator/chart.gogen.go +++ b/static/charts/istio_operator/chart.gogen.go @@ -33,14 +33,14 @@ var Chart = func() http.FileSystem { modTime: time.Time{}, uncompressedSize: 262, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8e\x41\x6a\x03\x31\x0c\x45\xf7\x3e\x85\x2e\x60\x3b\xdd\x34\x65\x6e\x50\xba\xcf\x5e\xf6\x08\x47\xd4\xb6\x8c\x25\x0f\xb4\xa7\x2f\x09\x0d\xa5\xd9\x89\xc7\xd3\xe7\xe1\xe0\x0b\x4d\x65\xe9\x1b\x1c\x2f\xae\x63\xa3\x0d\x58\x8d\xc5\xcb\xa0\x89\x26\xd3\x1d\x0f\xe1\x14\x4e\xe1\x7c\x76\x3b\x69\x9e\x3c\xec\xce\xfe\xbb\xd0\xb0\x63\x21\x85\xf7\x1b\x86\x9d\x46\x95\xaf\x46\xdd\x14\xa4\xc3\xc7\x4a\x34\x3b\x19\xa9\x53\x59\x33\x93\x6e\x0e\xc0\xc3\xd5\x6c\xe8\x16\x63\x61\xbb\xae\x14\xb2\xb4\x98\xb0\x7f\x23\xe7\x2a\x6b\x8f\x4f\x39\x38\xc6\xe5\xaf\xe8\x2d\xbc\x3a\xce\xb7\xfb\xb1\x72\xd7\x03\x4b\xe4\x56\x7e\x7f\xab\x14\xf1\x2a\x99\xb1\xfa\x54\x17\xf9\x84\xf9\xb3\x4c\x59\x7d\x0f\x7a\x14\xf7\x13\x00\x00\xff\xff\x44\x3a\xee\x24\x06\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8e\x41\x4e\x44\x21\x0c\x86\xf7\x9c\xa2\x17\x00\x9e\x2b\xf5\xdd\xc0\xb8\x9f\x7d\xe1\x35\x4c\x23\x50\x42\xcb\x4b\xf4\xf4\x66\x26\x4e\x8c\xee\x9a\x2f\x5f\xff\x7c\x38\xf8\x42\x53\x59\xfa\x0e\xe7\x93\xeb\xd8\x68\x07\x56\x63\xf1\x32\x68\xa2\xc9\x74\xe7\x43\xd8\xc2\x16\x9e\x5f\xdc\x41\x9a\x27\x0f\xbb\xb3\xbf\x2e\x34\xec\x58\x48\xe1\xed\x86\xe1\xa0\x51\xe5\xb3\x51\x37\x05\xe9\xf0\xbe\x12\xcd\x4e\x46\xea\x54\xd6\xcc\xa4\xbb\x03\xf0\x70\x35\x1b\xba\xc7\x58\xd8\xae\x2b\x85\x2c\x2d\x26\xec\x5f\xc8\xb9\xca\x3a\xe2\xbf\x1c\x1c\xe3\xf2\x5b\xf4\x1a\x36\xc7\xf9\x76\x3f\x56\xee\x7a\x60\x89\xdc\xca\xcf\x6f\x95\x22\x5e\x25\x33\x56\x9f\xea\x22\x9f\x30\x7f\x94\x29\xab\x1f\x41\xcf\xe2\xbe\x03\x00\x00\xff\xff\xc0\x2f\x5e\xc5\x06\x01\x00\x00"), }, "/README.md": &vfsgen۰CompressedFileInfo{ name: "README.md", modTime: time.Time{}, uncompressedSize: 1936, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xdd\x8e\x23\x35\x13\xbd\xef\xa7\x28\x69\x6e\x76\xf4\x6d\x77\x32\x9f\xc4\x68\x35\x12\x17\xcb\x70\x33\x82\x81\x48\xec\x22\x21\x84\xd4\x8e\xbb\xd2\x6d\xe1\xb6\x4d\x55\x39\x4b\x50\x5e\x85\x67\xe0\x9d\x78\x12\x54\xee\xe9\xfc\xb0\xd9\xb0\xb9\x4a\x97\x4f\x9d\x53\x3f\xc7\xbe\x81\x27\x16\x17\xeb\x98\x90\x8c\x44\x02\x3b\x18\x92\xaa\xfa\xf9\x3c\xfc\xcb\xab\x41\x24\xf1\xc3\x62\xd1\x3b\x19\xf2\xba\xb1\x71\x5c\xac\x4d\xf8\xc3\x38\xeb\x63\xee\x16\xee\x0c\x7e\x0b\x8e\xc1\xc0\x37\x79\x8d\x14\x50\x90\xe1\xc0\x2f\x11\x3a\x4c\x3e\xee\xc0\x84\x0e\x46\x13\x4c\x8f\x30\xa9\x1d\x45\x0a\x5b\xe3\xe2\xe2\x16\x08\x39\x66\xb2\xc8\xb0\x89\x74\xce\x69\x7d\x66\x41\x6a\xaa\xea\xe6\x06\x56\x84\x84\xbf\x65\xc7\x4e\x90\xab\xaa\x3e\x05\xde\x35\x77\xf7\xcd\xf2\x7f\x05\xf7\x14\x58\x8c\xf7\x2e\xf4\x20\x03\xce\xed\xbe\x8b\xe0\xa6\x83\x63\xf4\xa1\xaa\xda\xb6\x5d\x1b\x1e\xaa\xbf\xff\xfc\x0b\x06\xf4\x23\x10\xa6\x08\xa6\xeb\xe0\xa4\xf7\x9a\xc5\xac\x3d\xc2\x5c\xfc\xaf\x07\xe1\xba\xf0\x70\x73\x02\xd6\xc1\x1d\xe9\x66\xcd\xba\x0e\x66\xc4\x2f\xcf\x87\xf8\x12\xe5\x64\xec\x7c\xc4\x3b\x16\x1c\x2f\x88\xff\x6b\xfe\x5a\x78\xe9\xf6\x7d\x70\xe7\xfd\x3e\x1e\xfa\xcd\xf3\xd1\xa2\x43\x8f\x82\xe5\xb8\x3d\xe7\x69\x81\xd0\xa3\x61\xbc\x34\x8b\x0e\xb5\xf0\x94\xa9\x47\xb8\x24\xff\x4e\x07\x19\xc7\x51\xf7\x4c\x38\xc6\x2d\x32\xcc\x03\x3e\xdd\x62\x1c\x53\x0c\x18\x84\xc1\x30\x47\xeb\x8c\x60\x07\x1f\x9c\x0c\xc7\x55\x14\xaf\x4c\x65\x72\x89\xbe\x94\x35\xad\xfe\x31\x86\x8d\xeb\x33\x19\x71\x31\x4c\xba\x9b\xe8\x7d\xfc\x50\x9a\x2e\xbb\xf1\x8e\x65\xca\xb4\x33\x58\xc3\xc9\x90\x19\x51\x90\x18\xe2\xa6\x1c\x7f\x75\x1c\xed\x74\x33\xe0\xfb\xb3\x9b\x51\x2a\x91\x01\x1d\x41\x87\x1b\x93\xbd\xc0\xd6\xf8\x8c\xdc\x54\xd5\x6a\x66\x83\x3d\x7c\x8d\x6c\xc9\x25\xad\xa8\x7c\x15\x68\x55\xcf\x3f\xd8\x43\x5d\x5f\xf8\xaa\xda\x79\x86\x8d\x1b\x4d\x8f\x8d\x1a\x8e\x9d\x44\xda\xb5\xb0\x3f\xa9\x25\x06\x31\x2e\x20\x41\x81\xc1\x11\x06\x7b\x68\x3f\x7d\x31\xdb\x8f\x04\xc4\xf4\x57\x99\xc5\xf4\x4a\xb9\x6c\xde\x34\xf7\x1f\x67\xa7\xec\xfd\x2a\x7a\x67\xaf\x97\xa7\x30\x48\x05\xa7\x64\x4f\x9b\xef\xa2\xac\x08\x19\x83\x9c\x72\x1e\xee\xba\x92\x3d\xae\xde\x2f\x9e\x71\xd4\x96\xe6\x38\xe8\x0d\x47\x16\x5e\x78\x37\x3a\x61\x78\xf5\xd3\xdb\xe7\x6f\x6f\x61\x0f\x13\xf0\x01\xda\xff\x7f\x71\xff\xec\xda\xd7\x9a\xad\x5f\xcb\xe5\xd8\x56\x93\xa9\x7f\x44\x62\x17\x83\x52\xff\x90\x53\x8a\xa4\x36\x9b\x56\xbc\x9d\x8e\xb4\xb4\xbb\xe6\x4d\x5b\xb5\x89\xe2\x88\x32\x60\xe6\x67\x14\x72\x96\x1b\x0c\x6a\x98\x4e\xb3\x9f\x36\x20\x94\xf1\x35\x64\x46\xe8\x1c\xa1\x15\x30\xd6\x22\x4f\x4f\xd4\xea\x90\x0b\xe3\x94\xac\xbc\x1b\xe3\x19\x2f\x32\x9b\x2c\xc3\x8a\xe2\xef\xbb\x4f\x6a\x28\x02\x92\x42\xae\x08\x28\xfc\x3f\xf8\x2f\x39\xea\xed\x91\xfb\xba\xa7\x7a\x4b\xfa\x20\xeb\xe3\xb6\xce\xce\x77\x48\xe5\x7f\x4d\x6b\x63\xeb\x42\xf0\x59\xea\x2f\x76\xbb\x22\xfb\x62\xb8\xad\x3a\x6e\xf9\x59\x9c\xe7\x26\xbc\x42\x7d\xdd\x86\xda\xc9\xe9\x0e\x1e\x09\x8d\x20\x68\x18\x18\x69\xeb\x2c\xea\x9e\x63\x0e\xd3\x2b\x40\xd1\xe3\xe9\xe8\x4b\x7e\xe2\x74\x81\x23\xc5\x0e\x18\x6d\x26\x27\xbb\xb9\x00\xa5\x58\xbb\xd0\xe9\x23\x75\x34\xc8\x3f\x01\x00\x00\xff\xff\xb9\x8b\x5c\xfc\x90\x07\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xdb\x8e\x23\x35\x10\x7d\xef\xaf\x28\x69\x5e\x76\xc4\x76\x27\x83\xc4\x65\x47\xe2\x61\x19\x5e\x46\x30\x10\x89\x5d\x24\x84\x90\xda\x71\x57\xba\x2d\xdc\x2e\x53\x55\xce\x12\x94\x5f\xe1\x1b\xf8\x27\xbe\x04\xd9\x3d\x9d\x0b\x9b\xcd\x92\xa7\x74\xf9\xd4\x39\x75\x39\xf6\x0d\x3c\x8a\x3a\xaa\x29\x22\x1b\x25\x06\x3b\x18\xd6\xaa\xfa\xe5\x3c\xfc\xeb\x8b\x41\x35\xca\xfd\x62\xd1\x3b\x1d\xd2\xba\xb1\x34\x2e\xd6\x26\xfc\x69\x9c\xf5\x94\xba\x85\x3b\x83\xdf\x82\x13\x30\xf0\x6d\x5a\x23\x07\x54\x14\x38\xf0\x2b\x41\x87\xd1\xd3\x0e\x4c\xe8\x60\x34\xc1\xf4\x08\x93\xda\x51\xa4\xb0\x35\x8e\x16\xb7\xc0\x28\x94\xd8\xa2\xc0\x86\xf8\x9c\xd3\xfa\x24\x8a\xdc\x54\xd5\xcd\x0d\xac\x18\x19\x7f\x4f\x4e\x9c\xa2\x54\x55\x7d\x0a\xbc\x6b\xee\xbe\x68\x96\x9f\x14\xdc\x63\x10\x35\xde\xbb\xd0\x83\x0e\x38\xb7\xfb\x86\xc0\x4d\x07\xc7\xe8\x7d\x55\xb5\x6d\xbb\x36\x32\x54\xff\xfc\xf5\x37\x0c\xe8\x47\x60\x8c\x04\xa6\xeb\xe0\xa4\xf7\x5a\xd4\xac\x3d\xc2\x5c\xfc\x6f\x07\xe1\xba\xf0\x48\x73\x02\xce\x83\x3b\xd2\xcd\x9a\x75\x1d\xcc\x88\x5f\x9d\x0f\xf1\x39\x2a\xd1\xd8\xf9\x48\x76\xa2\x38\x5e\x10\xff\xcf\xfc\x73\xe1\xa5\xdb\xb7\xc1\x9d\xf7\xfb\x70\xe8\x37\xcd\x47\x8b\x0e\x3d\x2a\x96\xe3\xf6\x9c\xa7\x05\x46\x8f\x46\xf0\xd2\x2c\x3a\xcc\x85\xc7\xc4\x3d\xc2\x25\xf9\x37\x79\x90\x34\x8e\x79\xcf\x8c\x23\x6d\x51\x60\x1e\xf0\xe9\x16\x69\x8c\x14\x30\xa8\x80\x11\x21\xeb\x8c\x62\x07\xef\x9c\x0e\xc7\x55\x14\xaf\x4c\x65\x4a\x89\x3e\x97\x35\xad\xfe\x81\xc2\xc6\xf5\x89\x8d\x3a\x0a\x93\xee\x86\xbc\xa7\x77\xa5\xe9\xb2\x1b\xef\x44\xa7\x4c\x3b\x83\x73\x38\x1a\x36\x23\x2a\xb2\x00\x6d\xca\xf1\xd7\xc7\xd1\x4e\x37\x03\x7e\x38\xbb\x19\xa5\x12\x1d\xd0\x31\x74\xb8\x31\xc9\x2b\x6c\x8d\x4f\x28\x4d\x55\xad\x66\x36\xd8\xc3\x37\x28\x96\x5d\xcc\x15\x95\xaf\x02\xad\xea\xf9\x07\x7b\xa8\xeb\x0b\x5f\x55\x3b\xcf\xb0\x71\xa3\xe9\xb1\xc9\x86\x13\xa7\xc4\xbb\x16\xf6\x27\xb5\x50\x50\xe3\x02\x32\x14\x18\x1c\x61\xb0\x87\xf6\xc3\x17\xb3\x7d\x4f\x40\x4d\x7f\x95\x59\x4d\x9f\x29\x97\xcd\xab\x66\xf9\x7e\x76\x4c\xde\xaf\xc8\x3b\x7b\xbd\xbc\x0c\x83\x58\x70\x99\xec\x71\xf3\x3d\xe9\x8a\x51\x30\xe8\x29\xe7\xe1\xae\x67\xb2\x87\xd5\xdb\xc5\x13\x8e\xb9\xa5\x39\x0e\xf9\x86\xa3\xa8\x2c\xbc\x1b\x9d\x0a\xbc\xf8\xf9\xf5\xd3\x77\xb7\xb0\x87\x09\x78\x0f\xed\xa7\x9f\x7d\xfe\xe4\xda\x97\x39\x3b\x7f\x2d\x97\x63\x5b\x4d\xa6\xfe\x09\x59\x1c\x85\x4c\xfd\x63\x8a\x91\x38\xdb\x6c\x5a\xf1\x76\x3a\xca\xa5\xdd\x35\xaf\xda\xaa\x8d\x4c\x23\xea\x80\x49\x9e\x50\xd9\x59\x69\x30\x64\xc3\x74\x39\xfb\x71\x03\xca\x09\x5f\x42\x12\x84\xce\x31\x5a\x05\x63\x2d\xca\xf4\x44\xad\x0e\xb9\x30\x4e\xc9\x99\x77\x63\xbc\xe0\x45\x66\x93\x74\x58\x31\xfd\xb1\xfb\xa0\x46\x46\x40\xcc\x90\x2b\x02\x19\xfe\x11\xfe\x4b\x8e\x7a\x7d\xe4\xbe\xee\xa9\xde\x72\x7e\x90\xf3\xe3\xb6\x4e\xce\x77\xc8\xe5\x7f\xcd\x6b\x63\xeb\x42\xf0\xbf\xd4\x9f\xed\x76\x45\xf6\xd9\x70\xdb\x65\xf3\x65\x71\xdc\xc7\x39\xcf\x4d\x78\x85\xfa\xba\x0d\x73\x27\xa7\x3b\x78\x60\x34\x8a\x90\xc3\x20\xc8\x5b\x67\x31\xef\x99\x52\x98\x5e\x01\x26\x8f\xa7\xa3\x2f\xf9\x51\xe2\x05\x8e\x48\x1d\x08\xda\xc4\x4e\x77\x73\x01\x99\x62\xed\x42\x97\x1f\xa9\xa3\x41\xfe\x0d\x00\x00\xff\xff\x10\xe5\x2b\x42\x90\x07\x00\x00"), }, "/crds": &vfsgen۰DirInfo{ name: "crds", @@ -49,23 +49,23 @@ var Chart = func() http.FileSystem { "/crds/istio.banzaicloud.io_istios.yaml": &vfsgen۰CompressedFileInfo{ name: "istio.banzaicloud.io_istios.yaml", modTime: time.Time{}, - uncompressedSize: 311320, + uncompressedSize: 311498, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x5d\x57\x23\x39\xb2\x2e\x7c\x5f\xbf\x42\x6b\xd6\x7b\xd1\xfd\xf6\x50\x33\xbd\xbf\xd6\xec\xba\x99\x45\x03\xd5\xc3\x69\xa8\x62\x01\x5d\x73\xf6\xe9\xdd\x7b\x96\xc8\x94\x8d\x86\x74\x2a\x8f\x52\x36\x30\x1f\xff\xfd\x2c\x67\x62\x30\x76\x4a\x8a\x50\xa6\x0b\x63\x9e\xb8\xe9\x2e\x2c\x85\x22\xf5\x19\x7a\x24\x3d\x21\x2b\xfd\x45\xd9\x5a\x9b\xf2\x83\x90\x95\x56\x77\x4e\x95\xf3\x7f\xd5\xef\x6f\xfe\x50\xbf\xd7\xe6\x77\xb3\xef\xdf\xdd\xe8\x32\xff\x20\x0e\xa6\xb5\x33\x93\x73\x55\x9b\xa9\xcd\xd4\xa1\x1a\xe9\x52\x3b\x6d\xca\x77\x13\xe5\x64\x2e\x9d\xfc\xf0\x4e\x88\xcc\x2a\x39\xff\xe3\xa5\x9e\xa8\xda\xc9\x49\xf5\x41\x94\xd3\xa2\x78\x27\x44\x29\x27\xea\x83\xd0\xb5\xd3\xa6\x7e\xdf\xfc\xe7\xfd\x95\x2c\xff\x26\x75\x56\x98\x69\xfe\x5e\x9b\x77\x42\x14\xf2\x4a\x15\xf5\x5c\x8f\x10\xf6\xa1\xa0\xf7\xb2\xa8\xae\xe5\x4a\xda\xdf\x59\x35\xd3\xad\xd1\xdf\xbf\xff\xc3\xfb\x7f\x79\x57\x57\x2a\x9b\xe7\x1b\x5b\x33\xad\x1e\x8a\x59\xd7\x3f\xb7\xe1\x41\x7d\xfb\x4d\xc7\xf3\x74\xcd\xbf\x0b\x5d\xbb\x9f\x9e\xfe\x76\xa2\x6b\xd7\xfc\xbd\x2a\xa6\x56\x16\x0b\xc3\x9b\x3f\xd5\xba\x1c\x4f\x0b\x69\x1f\xfe\xf8\x4e\x88\x3a\x33\x95\xfa\x20\x3e\xcd\xd5\x57\x32\x53\xf9\x3b\x21\x66\x6d\xad\x3e\x14\xb7\x27\x64\x9e\x37\xd5\x25\x8b\x33\xab\x4b\xa7\xec\x81\x29\xa6\x93\xc5\xef\x6d\x9a\x5c\xd5\x99\xd5\x95\x6b\x3e\xec\xc2\x49\x37\xad\x85\x19\x09\x77\xad\x1e\xab\xe3\x31\xb5\x10\x7f\xad\x4d\x79\x26\xdd\xf5\x07\xf1\xbe\x6e\xd2\xbe\x6f\xb3\x2c\x25\x69\x2b\x7d\xed\xcf\xee\x7e\x6e\x6e\xed\xac\x2e\xc7\xbe\xe2\x8f\xac\x35\x56\x4c\x54\x5d\xcb\x71\xb8\xd4\x26\xe5\xe9\x5a\xc2\xb6\xec\xe6\x47\x66\xd1\xc7\xe5\xd8\xaa\xba\x16\x63\xe9\xd4\xad\xbc\x9f\x57\xdd\xfc\xdf\x8a\x57\x19\x3f\xb6\xb9\xf7\xdb\xcc\x6b\x86\x2d\x0a\x39\x3e\x23\xd4\xcc\x92\xf6\x45\x6f\x7f\xbf\xd6\xd5\xd7\x8a\xd8\x7f\x56\x1f\xad\xea\x5c\xba\xc5\x1f\xdb\x44\xb3\xef\xaf\x94\x93\xdf\x3f\xfc\xad\xce\xae\xd5\x44\x3e\xf5\x09\x53\xa9\x72\xff\xec\xf8\xcb\xbf\x5e\xac\xfc\x20\x44\x65\x4d\xa5\xac\xd3\xaa\x5e\xfe\xab\x10\x4b\x23\xfa\xd9\xdf\x3d\x1f\x27\x16\x83\x81\x9a\x78\x79\xb8\xaf\x67\x30\x57\x7f\x55\x99\x7b\xf6\xd3\x62\x6c\x2e\x8b\xcf\xf8\xe6\x03\xa6\xce\x1c\x97\x73\x35\xda\x94\x8f\x63\xaa\x23\xa1\x10\xda\xa9\x49\xe7\x0f\x01\xfb\x97\x7f\x96\xd6\xca\xfb\x4e\x03\x4e\x5d\xd1\xa9\xb8\xcd\x77\x65\x4c\xa1\x64\xb9\xf6\x7b\x26\x1f\xba\x9b\x3f\xab\xc7\xa2\x6c\x5e\x1b\x23\x9d\x49\xc7\xfe\xd2\x50\x5d\xb6\x92\x97\xf5\xa7\xa7\xa9\xaf\x4b\x02\xea\x09\xc6\x3f\x4f\xd4\x5d\xa9\xad\xd4\x2a\xb3\xca\xcd\x8d\xf1\x17\x16\x2d\xca\xdb\xd3\xe2\x56\x64\xda\xc9\x5c\x15\x5d\x85\xc7\xaa\xf1\x69\x02\x3f\x30\xa5\x93\xba\x54\x76\xdf\x8e\xbd\x95\x16\xa9\x51\x42\x7d\xc6\x6a\xf3\xc9\xa0\xa3\x72\xf6\x45\xda\x54\x53\xe2\xfd\x47\x2c\x66\xab\xc0\xef\xc4\x2e\x22\xc4\x4c\x16\xd3\x01\x35\x7d\xb4\x66\x12\xd6\x46\xfb\xbe\xb9\x64\xa6\x1c\xe9\xf1\xa9\xac\x7e\x52\xf7\xe7\x6a\x14\x4b\xce\x51\x3d\x97\x1b\x75\x4f\x49\x46\xfe\xfe\x85\xc4\x9b\x26\x51\xb1\xa9\xda\xfe\xc5\x51\xee\x9b\x1a\x57\xc5\xaa\xff\x3b\xd5\x56\xad\xad\x3b\x5d\xb2\x37\xaf\xba\x68\xba\xc8\xb4\xb0\x2c\x23\xad\x8a\x7c\x03\x2d\xec\x5f\x7b\x43\x26\x93\xdb\xa3\x31\xbb\xf1\x43\x86\xd7\xce\x6b\x8f\x47\x4b\x86\x6c\x95\x85\x5b\xf7\x71\x43\xad\x93\x2d\xe6\xed\xf0\xfa\xb3\x6e\x3d\xb9\x81\x72\x3d\xd3\xb5\xb1\x34\xdd\xb2\xbc\xff\x4c\xf8\xc6\x56\xf6\x1e\x4c\x99\x6f\x1d\xc6\xca\x32\x73\x91\x3f\x40\x88\x4a\x3a\xa7\x6c\xf9\x41\xfc\xcf\x37\xff\xfd\xdd\x3f\xf6\xbe\xfd\xe3\x37\xdf\xfc\xf2\xfb\xbd\xff\xfc\xf5\xbb\x6f\xfe\xfb\x7d\xf3\x3f\xff\xff\xb7\x7f\xfc\xf6\x1f\x8b\x7f\x7c\xf7\xed\xb7\xdf\x7c\xf3\xcb\x4f\xa7\x3f\x5e\x9e\x1d\xfd\xaa\xbf\xfd\xc7\x2f\xe5\x74\x72\xd3\xfe\xeb\x1f\xdf\xfc\xa2\x8e\x7e\x25\x2a\xf9\xf6\xdb\x3f\xfe\x7f\x24\xf3\xee\xf6\x6e\xa6\x57\xca\x96\xca\xa9\x7a\x4f\x97\x6e\xcf\xd8\xbd\xf6\xeb\x3e\x08\x67\xa7\x8a\xa0\x64\xd1\xcd\x5e\x7c\x10\x75\x6c\x63\x42\x36\x90\xc6\x50\xeb\x60\x61\xfd\x6a\x64\x47\xd7\x2f\x52\x42\x8a\x7d\x7b\x4d\xd5\x47\x7c\xd4\x60\x39\x51\x1f\x75\xd4\xc0\x44\xde\x7e\x43\xe9\x80\xa5\xc9\xd5\x7e\x44\x0f\x55\x57\x9b\x4e\x8d\x94\xb5\x2a\x3f\x9c\xce\xfb\xd1\x7c\x67\x9d\x4f\x0b\x5d\x8e\x8f\xc7\xa5\x79\xfc\xf3\xd1\x9d\xca\xa6\x8e\xb0\x92\x47\xb7\x4e\x3c\xeb\x96\x6d\x54\x25\x75\x96\xe2\x69\x9f\xcb\x44\xba\xec\xfa\xe8\xae\x9a\xef\x56\x9f\x70\x2a\x8a\x10\x3f\xb8\x8f\x71\xad\x90\xe7\x9b\x27\x61\x2f\x77\x0b\x99\x5b\x28\x1d\x75\xe9\x1e\xa0\xc0\x66\xf3\xc2\xac\x90\x84\xba\x6f\x25\xd9\x4a\xca\x9e\xbe\x4b\x38\xb3\xe3\x93\xd0\xe6\xc9\xe7\x39\x16\x0d\xc7\xc8\xc6\x58\x4e\x57\x33\x71\xea\xa1\x19\x61\x8d\x2f\x8b\xc1\x85\xc1\x15\xc8\x8a\xc1\xc5\xad\x07\x66\x21\xb7\x4a\x8f\xaf\x1d\xad\xba\x46\xc6\x4e\xa4\x6b\x36\x5a\xff\xfa\x2f\x0c\x63\xa8\x1b\x33\x9e\xdf\xf8\xe4\x07\x90\x92\xb7\x1f\x3a\xe4\x7e\x82\xda\x32\x8b\xcf\x1a\xc6\xa7\xe2\x4c\x6a\x73\xf7\xf0\x42\x15\x2a\x73\xc6\x5e\x2a\x4b\x1b\xc1\x8c\xa1\x0e\xd7\xaa\x15\xcc\xfe\x9d\x82\xd9\x7f\x59\xe0\x5a\x61\x70\x75\x09\x06\xd7\x6a\x8e\x6d\x1d\x5c\xcc\x42\xe8\xea\xe9\x55\xbb\xb7\xbe\xa6\x93\xbc\x94\xa8\xd1\xa4\x64\x95\xc9\xdf\x1c\xda\xf4\xf4\xc9\xf3\xda\xde\x94\x5f\xd4\x5c\xef\x5a\x34\x2b\x7d\x84\xa5\x4d\xc3\xe9\x4e\x98\x48\x9d\xaf\x52\xd7\x0b\x91\xb6\x66\x88\x7e\x13\x64\xfa\xda\xd1\xbb\xe0\xb4\x35\x44\xa4\xaf\x23\xa2\xaf\xc5\xa9\xeb\x89\x48\x5e\x53\x44\xd2\xba\x22\x52\xd7\x16\x91\xba\xbe\x88\xe4\xba\x69\x46\xe8\xc9\xd2\x95\x4f\xaa\x2c\x5f\xa5\x4c\x1d\x71\xc9\xbd\xa1\xc7\x22\xcc\xca\x54\x06\x2f\xbe\x75\x0b\x7b\x74\x24\xd5\x02\xbf\xb5\x9d\xa9\x4c\x61\xc6\xf7\x3f\x71\x26\x39\xb6\x6d\xdc\x71\xb6\xb7\x6c\x17\x60\xa7\x27\xd9\x5b\x75\x08\xde\x14\xf6\xb4\x11\x0f\x2b\xc1\xf5\x01\xee\xd4\x0a\xb6\xc6\x9d\x82\xad\xf1\xb2\x7c\x4d\xdc\x89\xeb\xb2\xf4\x75\x57\x7a\x2c\xd2\x8c\x0a\x61\x66\xe0\xba\x27\xac\x5e\xce\xfe\x62\x5e\x4b\xb2\xdd\x91\x0d\xde\x01\xe3\xb8\x20\x83\x2f\x9d\x64\x3c\xa4\x74\x1a\x98\x08\x41\x80\x89\x0c\x63\x68\x2b\xc0\x44\x48\x02\x4c\x84\x92\x0b\x98\x08\xd1\x64\x60\x22\xc0\x44\x80\x89\xac\x0a\x30\x11\x60\x22\x83\x1b\xd7\x0a\x30\x91\x35\x01\x26\xb2\x9a\x03\x98\x48\x87\x99\xc0\x44\xa2\x19\x80\x89\xac\x24\x1d\x00\x13\x89\x26\xc9\xe4\x45\x94\xe7\x20\x5a\x7f\xaa\x94\x57\x85\x7a\xe2\xbf\xf8\xe1\xfe\x50\x8d\xe4\xb4\xf0\x3a\x4f\xf1\xf7\x6b\xad\x4a\x6f\x2b\xc4\x15\x5c\x2b\x59\xb8\xeb\x83\x6b\x95\xdd\xa4\x2b\xd1\x13\x39\x4e\xaf\x96\x42\xd7\x4e\x95\x2a\x0f\x13\x83\x90\x54\x4d\xe4\xdd\x9f\x8d\xbd\x29\x8c\xcc\x0f\x94\x75\x97\x97\x27\xc9\xaa\x96\x2f\x2c\xf9\x94\xf0\xe6\x3c\x32\x41\x44\xa0\x1f\x36\xd0\x5d\x69\x5c\xc3\x53\xe3\x2d\xeb\xeb\xdb\xb5\x78\xf8\xea\x2d\x86\xe2\x4a\x15\x7a\xa2\x5d\x70\xfa\xe4\x2f\x32\xa4\x27\xd9\xbc\xa7\xd8\x8c\x27\xd8\x5b\xfa\xf4\xba\xc7\x93\x6b\xf2\x4b\x55\x55\xa3\x29\x5f\x7d\x53\x46\x93\xd4\x79\x7d\xd4\x77\x09\xaa\x55\x36\xb5\xda\xdd\x1f\x98\xd2\xa9\x3b\xef\x62\x48\x99\x41\x64\x51\x98\xdb\x33\xab\x67\xba\x50\x63\x75\x54\x67\xb2\x90\xb1\xdd\x30\xed\x91\x78\x26\x2b\x79\xa5\x0b\x1d\xeb\xa6\xd4\x2d\xa3\xcc\xa3\xae\x13\xd1\x99\x64\xb8\x6d\x54\x07\x32\xb7\xa6\xda\x56\xeb\x68\x27\x5c\x8b\x2e\x10\xac\x64\x5a\xcb\x57\xd6\x64\xa7\x66\x5a\x06\x21\x2e\xd2\x67\x5a\x25\xf3\xcf\x65\x71\x7f\x6e\x8c\xfb\xa8\x0b\x55\xdf\xd7\x4e\x05\xcf\xa1\x68\x16\xda\x69\xb9\x5f\xff\xd8\xf0\x24\x06\x74\x2d\x61\x6f\xff\xf1\x6f\xd1\x32\x63\xf3\x67\x53\xe6\x27\x53\xce\xbf\x65\xa0\x2f\xf8\xb9\x56\x41\x14\x63\xd8\x0f\xa8\xd5\x89\x2e\xa7\x77\x9f\xab\xa0\x27\x25\x18\x43\xba\x50\xb3\x6e\x1e\xb2\x75\xe3\x08\xe3\xc1\x9a\x22\xca\x14\x40\x56\xd6\x24\x1c\x4a\xd9\x34\xd2\x4e\x0c\x65\xa4\xc1\x7c\xab\xcb\xdc\xdc\xd6\x03\xb6\xd4\x78\x52\xcb\x03\xab\x72\x55\x3a\x2d\x8b\x8b\x0e\x36\xc3\xc4\xef\xe9\x52\x4d\xa1\x26\xa2\xf7\x8a\xc5\x40\x19\x50\xeb\x10\x7e\x80\x33\x85\xb2\xe1\x4d\xc9\x20\x9c\x75\x6a\x34\x52\x59\xe4\xb0\x81\xf8\xd9\x51\x90\x96\xa8\x87\x06\xc0\x52\xdb\xe2\xb1\x1e\x2f\x54\x66\xca\xd8\x63\x38\xea\x94\x48\x3f\x47\x19\x8a\xcb\x8f\xdc\xa9\xfc\xeb\xfd\xed\x20\x3b\xf9\xa0\x21\x59\x31\xad\x9d\x7f\x30\x05\x55\x67\xa6\x74\xd6\x14\x67\x85\x2c\xd5\xfe\xd4\x5d\x9f\x99\x42\x67\x9d\x5d\x4a\x95\x53\xcf\x2a\xbf\x27\x4e\x7f\xbe\xfc\x79\xff\xe4\x2f\x97\x27\x17\x9e\x04\x9f\x3e\x7f\x3a\xe2\x9a\x96\xb7\xb0\xd2\x41\x43\x7e\xf8\x45\xd7\xba\xf1\x5c\x3b\x6d\xa3\xe8\x39\x33\xf9\xa1\xae\xed\xb4\x99\x80\x7f\x98\xe6\x63\xd5\x39\x02\x63\x23\xb8\x27\x56\x15\x6c\xc8\x07\x4b\xcf\x43\x30\x44\xcc\xbe\x30\xfc\xc0\xdb\xaf\x46\xf7\xaa\xf4\x7d\x2a\x71\x8f\xba\x85\xfb\xd3\xc4\xbd\x29\x01\x6c\x0a\xc3\x0b\x68\xaa\x2d\x69\xaa\xe0\xcf\xea\x2e\x2b\xa6\xb9\x3a\x3e\x3b\x97\xe5\xb8\xbb\x81\x82\xb5\x39\x96\x45\xd1\xbd\x84\x83\xf7\x17\xbc\xbf\xe0\xfd\x7d\x26\x3b\xca\x9b\x08\xde\xdf\x0e\x01\xef\xaf\xdf\x7a\xf0\xfe\xbe\xf8\x89\xc5\x42\xc0\xfb\x1b\x4e\x0a\xde\xdf\x25\xd9\xd1\xf5\x8b\x7c\x9a\x0a\xde\xdf\xee\x74\xaf\xe0\xd5\x11\x78\x7f\x71\x21\xb6\x43\x70\x21\x76\x35\xc7\x96\x5f\x88\x05\x39\x1d\x06\x57\x2c\x2b\x06\x17\xb7\x1e\xde\xce\x63\x23\xf0\xfe\xc6\x3e\x06\xbc\xbf\x98\xfd\x9f\x0b\x66\xff\x75\xd9\xa5\xd9\x1f\xae\xd5\x93\x60\x70\x05\xb3\x62\x70\x6d\xd8\xb5\xa2\xab\x07\xef\xef\xf6\xa2\x4d\xe0\xb8\x59\x11\x70\xdc\x6c\xb2\x60\x70\xdc\xd0\x04\x1c\x37\x9d\x02\x8e\x1b\x8f\x80\xe3\x06\x1c\x37\x1e\x01\xc7\x0d\x38\x6e\xfc\x82\xad\xf1\x10\x05\x62\x6b\xbc\x2e\xbb\xb4\x35\x06\xc7\xcd\x93\x80\xe3\xc6\x27\xbb\xc5\x71\x03\xde\x5f\x60\x22\x0f\x02\x4c\x64\x93\x05\x03\x13\xa1\x09\x30\x91\x4e\x01\x26\xe2\x11\x60\x22\xc0\x44\x3c\x02\x4c\x04\x98\x88\x5f\x80\x89\x0c\x51\x20\x30\x91\x75\x01\x26\x02\x4c\x44\x00\x13\xf1\xc8\xf6\x63\x22\xd1\x24\xed\x3b\xf2\x2f\xb2\xd0\x79\x90\x48\x30\xfe\xe2\xac\x65\x3f\xd9\x2f\x65\x71\x5f\xeb\x08\xc3\x6d\x5c\xcf\x85\xb2\x33\x9d\xa9\x43\x5d\x67\x66\xa6\xac\xb7\xa5\xa9\xfa\x7a\xd0\x37\xf6\x23\xff\x05\xcd\x2e\xc7\x2e\xab\xaa\x42\x67\xf2\x20\x44\x47\x48\xf1\xb5\x27\xba\xd4\x93\xe9\xe4\x83\xf8\x7d\xd0\x92\x90\xfb\x0d\xc6\xdf\x4e\xd9\xd2\x47\xd7\x60\xfc\x5d\x49\x8d\xa6\x4c\x4c\x02\xb6\xde\x6e\x01\x5b\xaf\x3f\x15\xd8\x7a\x97\xf5\x82\xad\x97\xff\x01\x60\xeb\x4d\x55\x06\xb6\x5e\x96\x6a\xb0\xf5\xb6\x02\xb6\x5e\xb0\xf5\x76\x24\xf1\xad\xf7\x41\x05\x63\xe9\xd4\xad\xbc\x4f\x22\x65\x55\x63\xab\xea\x5e\x7b\x4c\x32\xb9\xa2\xa0\xf9\x49\xf4\xc3\x01\x1a\x1b\x12\xc3\xe7\x22\x34\x77\x8a\xc6\x38\xf1\xa2\x48\x61\x68\xe3\x11\x30\xf2\x8b\x10\xdc\x13\x97\x04\xa8\x99\x4e\x68\x95\x58\x00\x8f\xd8\x4a\x90\x7d\xb4\x65\xe1\x1f\x1d\x53\x4f\x35\x98\xb0\x3a\x9d\xac\x51\x24\xf5\x06\x2e\x69\xa3\x48\x6b\x33\x26\x79\x63\x52\x29\xfc\x36\xa3\x13\x39\x0a\x7e\xcb\xf1\x09\x1d\x45\x52\x0b\x26\x10\x3b\x8a\xb4\x46\x64\x11\x3c\x0a\x2e\xc9\xa3\x48\x26\x7a\x14\x69\x64\x8f\x62\x7b\x01\xab\x65\x19\x80\xf4\x51\xb0\x89\x1f\xc5\xd7\x19\x80\x64\x12\x48\xc1\x1f\x7f\x3c\x32\x48\x81\xb5\x94\x53\xc8\x2b\x5c\x4b\xc9\x89\xa9\xf6\x46\x08\x24\x19\x65\x52\x80\xc1\x18\x99\xa4\x60\x74\x60\x2a\xa9\x24\x47\xa7\x18\xfe\x6a\xbb\xd8\x34\x57\x11\x97\x68\x32\xad\x14\x81\xcb\xe7\x14\xc1\xe5\x73\x76\x76\x5c\x3e\xf7\x67\x4c\xba\x7c\xce\x65\x55\x12\x18\x9c\x1b\x2e\x18\x83\x93\x26\xbb\x3c\x38\x13\x0a\xe3\xdc\xb4\x17\x49\xb7\xed\x05\xfb\xc6\xbd\x48\xf2\x85\x59\x24\x98\x82\x73\xf1\x5e\xf0\xab\x96\xd3\x7a\xc3\x5e\xc2\x17\x09\x93\x66\x12\x39\xa6\xe0\x4f\x1d\x70\x09\xfd\x82\x55\x87\x2c\x58\x75\x62\x02\x97\xd0\x23\x18\x9c\x24\xc1\xe0\xa4\xe4\x7a\x0d\x83\x33\xa1\x30\x5e\x31\xbc\x6a\xe7\x93\x76\x8a\x94\xe7\x1b\x84\xa4\x44\x02\x4f\xb1\xeb\xc8\x5e\x0a\x81\x45\x5a\x51\x22\x9d\xc8\x22\xbd\x40\xd1\xdb\x81\x14\x7d\xe6\xc3\x3e\x6b\x95\x48\x5f\xaf\x44\xff\x89\xb8\xdf\xba\x35\x88\x01\xe9\xeb\x97\xe8\xb7\x86\x89\x21\xac\xef\xb3\x96\x89\x5e\xeb\x99\x48\x5e\xd3\x44\x9f\x75\x4d\xf4\x59\xdb\x44\xaf\xfa\x4a\x26\xc4\x10\x03\x91\x62\x88\xbe\x3d\xa6\xa7\x53\xc0\xce\x98\x42\x92\x21\x52\x47\x55\x72\xcd\xa4\xf5\x88\x24\xd2\x8c\x64\x3b\x53\xc6\x29\x9f\x40\x43\xbc\x79\x78\x8f\x4d\xac\x21\x76\x1a\xe3\xdb\xa8\x57\x08\xbe\x31\xbf\x00\x42\x20\x09\x20\x04\x4a\xae\xd7\x00\x21\x80\x6f\x2c\x2c\xe0\x1b\xdb\xfc\xfd\xc7\x0d\xf3\x8d\xd1\x2b\x8a\x85\x2f\x11\x09\x51\x05\x30\xa6\xa1\x8a\x12\xc0\x98\xd8\x02\x8c\x09\x18\x13\x30\xa6\xa8\x00\x63\x02\xc6\xb4\x94\x0b\x18\xd3\x42\x80\x31\x01\x63\x02\xc6\x34\x90\xa1\xad\x00\x63\x22\x09\x30\x26\x4a\x2e\x60\x4c\x44\x93\x81\x31\x01\x63\x7a\x45\x18\x13\x29\x59\x66\x95\x74\xea\x73\x59\x04\xeb\x9a\xf6\x56\x35\x42\xe7\x4a\x57\x54\x44\x87\x39\x7f\x50\x53\x69\x75\x28\x95\x56\x18\x99\xff\x20\x0b\x59\x66\xca\x1e\x9f\xc5\xbf\x37\x52\xea\x44\xde\x9d\xb7\xe4\xaa\xc1\x6f\xa0\xfa\xc5\x51\x82\x55\x41\x76\x97\x27\xba\xdc\x52\xcb\x28\xdc\xbd\xe2\xc5\x3b\x0a\x8d\xcb\x77\x1b\xec\xb4\x61\xfe\xd4\x41\xb9\x89\x64\x55\x9d\x59\xe3\x4c\x66\x08\xcf\xe5\x19\x13\xfb\xe0\x9c\x47\xf3\x4e\x76\x66\x2c\x61\xef\xca\xdb\xb3\x72\xf6\xaa\xd5\x4b\x97\xbf\x89\x96\x72\xd2\x8e\x95\xa3\x55\x2d\x99\xfb\x84\xcf\x79\xc2\xe4\x3a\xd9\x5c\x25\xf7\x24\x27\xa1\x13\x2d\xcc\x7b\x13\x61\x56\x19\x84\x68\x81\x42\x18\x2e\x5e\x66\xf5\x78\xa0\x8c\x56\xf9\x27\xe5\x6e\x8d\xbd\xf9\xa2\xd5\x6d\xef\x65\x3c\xca\x4a\x2e\x38\x14\xa1\x51\x76\x72\x91\xbc\xb7\xd9\x9e\x11\xb5\xc5\xac\x41\x3d\xd9\x82\x58\x24\x29\x31\xf6\x72\x81\xa6\x7e\xfd\x4d\x4d\x4a\xd6\xb0\xb6\x0e\xc3\x94\x5c\x87\x1f\xdb\x51\x27\x22\xc2\xa6\x8e\x6e\x93\x88\xc5\xec\x78\xae\x8e\x42\x73\x4b\x99\x74\x05\x13\x6e\xa5\x4d\xbe\xa2\x17\xb8\xc4\xa2\x74\x4b\xa3\x73\x4b\xa0\x72\xdb\xe2\x51\x2a\x86\xa1\x70\x63\xa1\x32\xd4\xc9\x59\xa0\x2b\xec\x76\x57\x18\x72\x8e\x27\x46\xb1\x10\x9c\x18\x11\x09\xd1\x2c\x04\x6b\xd6\xa6\x46\xb5\xe0\x58\x2d\x68\xd1\x2d\x04\x0f\xab\x66\x76\x74\x0e\x3e\x4d\x89\x76\xb1\x2d\xd6\xd2\x2f\x22\x92\x22\x60\x08\x56\x6f\x21\x45\xc2\x10\xbc\x75\x9e\x1b\x11\x83\x67\x31\x2d\x32\x86\x60\x31\xa9\x73\x30\x00\x6a\x94\x0c\xc1\xff\xaa\x58\xb4\x0c\xb1\xb1\x8f\xa2\x47\xce\x10\x5c\x0f\x8d\x12\x41\x43\x70\xc7\x17\x25\x92\x06\x5b\x69\x93\x78\x68\xa5\x94\xc8\x1a\x4c\xa5\xe4\x09\x83\x1e\x65\x43\x30\x5b\x95\x1f\x6d\x43\x70\x2b\x2e\x2d\xea\x06\xbb\x18\x56\xf4\x0d\xa6\xf6\x61\x7d\x91\x26\x96\xe3\xab\x38\xa4\x78\xb0\xf5\xe8\x6e\xee\x96\xca\xe2\xd2\xca\xd1\x48\x67\x67\xa6\xd0\x59\xf0\xf0\x52\x95\xd3\xc8\x42\xb1\x27\x4e\x4c\x26\x8b\x48\x9a\x83\x62\x5a\xbb\xe0\x8c\x47\xfa\xda\x87\xcf\x88\x5f\x65\xd8\x8a\xda\xbe\x8c\xcc\x5e\x94\xca\x7d\xa8\xb8\xe3\xb3\x48\xba\x4f\x0f\xc7\x2d\xd1\xb6\x7a\x3a\x7d\xed\xdb\x18\x84\x68\x34\x62\xe8\xe3\x2f\x4a\x64\x1a\xf2\x07\xb4\x42\xba\x0f\xc6\xd0\x47\xbf\xeb\xc5\x99\xb7\x78\x11\x6b\x04\xd3\x2d\xe1\x9d\xb8\x0c\x1d\xce\x64\xb0\x73\x93\xa8\xa2\xfe\x41\x73\x4b\xc4\xb5\x79\x12\xc4\xb5\x59\x15\x70\xf1\x13\x64\x4b\xb8\xf8\x11\xd7\x06\x71\x6d\x62\x82\xb8\x36\x02\x71\x6d\xe2\x82\xb8\x36\x51\xc1\x5a\x4a\x2e\xe4\x15\xae\xa5\xac\x2b\x1b\x88\x6b\xc3\xd5\x29\x5e\x23\x33\x01\xe2\xda\x74\x0b\x1e\xa0\x91\x04\x0f\xd0\x28\xb9\x5e\xd1\x03\x34\x90\x98\x7b\x04\x83\x93\x9d\x1d\x83\xd3\x9f\x11\x71\x6d\xc8\xbe\x30\xe2\xda\x3c\x0a\xe2\xda\x24\x9b\xd8\xc7\xd0\x56\xb0\xea\x90\x04\xab\x0e\x25\xd7\x6b\x58\x75\xe0\x12\x86\x05\x83\x93\x9d\x1d\x83\xd3\x9f\x11\x71\x6d\x06\x49\x8a\xb8\x36\x6d\x0e\x70\x8e\x12\x04\x9c\xa3\x2f\x61\x00\x38\x47\xc1\x39\x4a\x13\x70\x8e\x82\x73\x74\x29\x17\x38\x47\x17\xb2\x43\xf0\x1e\x38\x47\x9f\x09\x38\x47\x5b\x01\x84\xb0\xc9\x82\x01\x21\xd0\x64\x97\x21\x04\x70\x8e\x86\x05\x9c\xa3\x9b\xbf\xff\xf8\xda\x38\x47\x11\xd7\x66\x39\x07\x30\x26\x82\x00\x63\x7a\x09\x03\x80\x31\x01\x63\xa2\x09\x30\x26\x60\x4c\x4b\xb9\x80\x31\x2d\x04\x18\x13\x30\x26\x60\x4c\x03\x19\xda\x0a\x30\x26\x92\x00\x63\xa2\xe4\x02\xc6\x44\x34\x19\x18\x13\x30\xa6\x57\x84\x31\x91\x92\x21\xae\x4d\x57\x32\xc4\xb5\x79\x54\xb5\xa5\x96\x21\xae\xcd\xb0\x76\x22\xae\x4d\x97\x42\xc4\xb5\x41\x5c\x9b\x27\x41\x5c\x9b\x95\x64\x88\x6b\xf3\x5c\x29\xe2\xda\x20\xd8\xc9\x83\xb0\x48\x52\x10\xd7\xe6\x0d\x34\x35\x29\x19\xe2\xda\x2c\xab\x43\x5c\x9b\x07\x41\x30\x93\x56\x10\xd7\x06\x5d\xe1\x41\x10\xd7\x66\x49\x10\xd7\xe6\x49\x98\x1d\x9d\x83\x4f\x23\xae\x0d\xe2\xda\x20\xae\x0d\xfd\xa3\x10\xd7\x66\x91\x78\x68\xa5\x88\x6b\xb3\x6a\x38\xe2\xda\xa4\x24\x43\x5c\x1b\x81\xb8\x36\x21\x33\x11\xd7\x46\x20\xae\xcd\x30\x4a\x11\xd7\x86\xe2\xbf\x47\x15\xdd\xfc\xa1\x1e\x20\x32\x4d\x0b\xeb\xfd\xc9\xb9\x2a\xd8\x0c\x5f\xf5\xe2\x47\xf4\xd3\x27\xaa\xbe\x3e\xba\xab\x64\x19\x0a\xb3\x81\xb8\x3c\x43\x68\x44\x5c\x1e\xaf\x20\x96\x00\xc1\x16\xc4\xe5\x19\xbe\x14\xc4\xe5\x41\x5c\x1e\xc4\xe5\xf1\x09\xe2\xf2\x44\x05\x6b\x29\xb9\x90\x57\xb8\x96\xb2\xae\x9c\x20\x2e\x0f\x57\xa7\x78\x8d\xcc\x0a\x88\xcb\xd3\x2d\x78\x40\x47\x12\x3c\xa0\xa3\xe4\x7a\x45\x0f\xe8\x40\xc2\xee\x11\x0c\x4e\x76\x76\x0c\x4e\x7f\x46\xc4\xe5\x21\xfb\xc2\x88\xcb\xf3\x28\x88\xcb\x93\x6c\x62\x1f\x43\x5b\xc1\xaa\x43\x12\xac\x3a\x94\x5c\xaf\x61\xd5\x81\x4b\x18\x16\x0c\x4e\x76\x76\x0c\x4e\x7f\x46\xc4\xe5\x19\x24\x29\xe2\xf2\xb4\x39\xc0\x99\x4a\x10\x70\xa6\xbe\x84\x01\xe0\x4c\x05\x67\x2a\x4d\xc0\x99\x0a\xce\xd4\xa5\x5c\xe0\x4c\x5d\xc8\x0e\xc1\x7b\xe0\x4c\x7d\x26\xe0\x4c\x6d\x05\x10\xc2\x26\x0b\x06\x84\x40\x93\x5d\x86\x10\xc0\x99\x1a\x16\x70\xa6\x6e\xfe\xfe\xe3\x6b\xe3\x4c\x45\x5c\x9e\xe5\x1c\xc0\x98\x08\x02\x8c\xe9\x25\x0c\x00\xc6\x04\x8c\x89\x26\xc0\x98\x80\x31\x2d\xe5\x02\xc6\xb4\x10\x60\x4c\xc0\x98\x80\x31\x0d\x64\x68\x2b\xc0\x98\x48\x02\x8c\x89\x92\x0b\x18\x13\xd1\x64\x60\x4c\xc0\x98\x5e\x11\xc6\x44\x4a\x86\xb8\x3c\x5d\xc9\x10\x97\xe7\x51\xd5\x96\x5a\x86\xb8\x3c\xc3\xda\x89\xb8\x3c\x5d\x0a\x11\x97\x07\x71\x79\x9e\x04\x71\x79\x56\x92\x21\x2e\xcf\x73\xa5\x88\xcb\x83\x60\x2d\x0f\xc2\x22\x49\x41\x5c\x9e\x37\xd0\xd4\xa4\x64\x88\xcb\xb3\xac\x0e\x71\x79\x1e\x04\xc1\x58\x5a\x41\x5c\x1e\x74\x85\x07\x41\x5c\x9e\x25\x41\x5c\x9e\x27\x61\x76\x74\x0e\x3e\x8d\xb8\x3c\x88\xcb\x83\xb8\x3c\xf4\x8f\x42\x5c\x9e\x45\xe2\xa1\x95\x22\x2e\xcf\xaa\xe1\x88\xcb\x93\x92\x0c\x71\x79\x04\xe2\xf2\x84\xcc\x44\x5c\x1e\x81\xb8\x3c\xc3\x28\x45\x5c\x1e\x8a\xff\x1e\x51\x14\xfc\x79\x5c\x98\xab\x6e\x0a\xf2\xb0\xcb\xd8\xe6\x3b\x34\x13\xa9\x3b\xb7\x8c\xc1\x5a\xb8\x76\xae\x3a\xb3\xe6\xee\xfe\xa8\x9c\x75\x36\x69\x6c\x64\x3c\x2a\xf0\x35\x47\xb4\x11\xe6\x1a\xea\x7e\x2a\x4a\xd3\x27\x7f\xb0\x55\x1a\xc0\xf3\x6c\x5a\x14\xfe\xa5\xca\x3f\x8b\xee\x89\xfd\xe2\x56\xde\x77\xb3\x20\xed\x89\x4f\x6a\xe6\xe9\xea\x7b\xe2\x78\xf4\xc9\xb8\x33\xab\x6a\x55\xfa\x7b\x92\xe7\x93\x1e\x6d\xbe\x68\xc8\xff\x3b\x5b\x2e\x30\x29\xc6\x27\xc3\xf0\x59\x7d\xb4\xb9\x48\xa3\xa4\x7b\x98\xe9\x32\x2b\xa6\xb9\x3a\x3e\x3b\x97\xe5\xb8\xdb\xc0\x70\xd5\xd4\x4e\x9b\x03\x63\xd5\xe1\xa7\x8b\x94\xee\x1e\xe3\x9f\xa7\x2c\x24\x54\xde\x79\xea\xa2\x34\xf0\x8b\x41\x22\xfe\xc1\xbb\x01\xcd\xe5\x98\xe7\xdf\xaf\x4e\xbf\x04\xce\xbe\x4a\x99\x7a\xf9\x3b\xe1\xe2\x77\xf2\xdd\xd5\xd4\x0b\xdf\xc9\x05\xa6\x5d\xf4\x4e\xbc\xe4\xdd\xe3\x82\x77\xda\x05\xe6\xb4\x8b\xdd\xfc\x4b\xdd\x49\x17\xba\x7b\xdc\x53\xe6\xd4\x43\x12\x11\x28\x06\xd7\x10\x05\x62\x70\xad\xcb\x2e\x0d\x2e\x66\x21\x9c\x47\x79\xfc\x07\x79\xbc\x23\x4a\x4e\xe3\x31\x79\xdc\xc9\x6f\xef\xd8\x67\x81\xf1\x96\x19\xf6\xbd\x1d\x67\x52\x4b\xe2\x6b\xdf\xe8\x63\x3e\xb8\x56\xcf\x04\xb3\x7f\x30\x2b\x66\x7f\xb8\x56\x18\x5c\xdd\x82\xc1\xb5\x2c\xdb\xe8\x5a\xd1\xd5\xd3\xab\x96\xcf\x8b\x3e\xe4\x29\x21\x91\x0b\x7d\xa7\xd0\xa6\x14\x4e\x2a\x90\x1c\x0c\x63\x68\x2b\x20\x39\x20\x09\x48\x0e\x28\xb9\x40\x72\x40\x34\x19\x24\x07\x09\xb5\xc0\x6f\xed\x37\x4a\x72\xf0\x8a\x61\x27\x36\xf7\xd3\xee\x60\x4f\x1b\xf1\xb0\x12\x5c\x1f\xe0\x4e\xad\x60\x6b\xdc\x29\xd8\x1a\x2f\xcb\xd7\xc4\x9d\xb8\x2e\x4b\x5f\x77\xa5\xc7\x22\xcd\xa8\x10\x66\x06\xae\x7b\xc2\xea\xe5\xec\x2f\xe6\xb5\x24\xdb\x1d\xe1\xdd\x86\x66\xad\xb4\x1c\x17\x64\xf0\xa5\x93\x8c\x87\x10\xb9\xbb\x81\x89\x00\x13\x19\xc4\xd0\x56\x80\x89\x90\x04\x98\x08\x25\x17\x30\x11\xa2\xc9\xc0\x44\x80\x89\x00\x13\x59\x15\x60\x22\xc0\x44\x06\x37\xae\x15\x60\x22\x6b\x02\x4c\x64\x35\x07\x30\x91\x0e\x33\x81\x89\x44\x33\x00\x13\x59\x49\x3a\x00\x26\x12\x4d\x12\xa1\x11\x0b\xbf\x4f\x14\x31\xda\xb0\x68\xcd\x13\x28\x96\x29\xae\x55\x94\x82\x32\xee\x6d\x11\x28\x95\xbf\x92\x25\x14\x0a\x65\xde\xa4\x44\x18\x00\xd1\x8e\x52\x15\xd3\xb1\x2e\x8f\x7b\xb5\x36\x8d\x76\xf9\xeb\x7f\x1b\x85\x11\xf5\x2b\x35\x7e\x94\x37\x8f\xe2\xba\xc5\x79\xf2\xf8\x8b\x1a\x89\x0c\x8d\x47\x82\xc6\x20\x3f\xdb\x52\xd2\xb3\x1e\x64\x67\xa4\xd5\x80\xc2\x73\x87\xa6\x7c\x05\x4d\x19\x4d\x42\x24\x9f\xa3\x8c\xfe\x14\xd2\xb9\xf8\x3a\x2f\x18\x64\x73\x64\x7a\xbc\x38\xc9\x1c\xd1\xf1\x64\xb8\x78\x54\x67\x93\x42\x2a\xf7\x52\xd6\xd1\x4e\xc3\x48\x04\x72\xb4\x96\x27\x11\xc7\x91\x3e\x93\x4f\x18\x47\xb3\x90\x46\x14\x47\x25\x2e\xa1\xcd\x7d\x54\x72\x38\xc6\x17\xc4\x48\xe1\x86\xfd\x00\x3a\x11\x1c\x99\x1f\x9d\x42\x00\x47\x1e\x0f\x14\xe2\x37\xb2\xb2\x26\xe1\x50\xca\x28\x44\x6f\x44\x65\xa4\xc1\x4c\x27\x77\xa3\xb6\x14\x9f\xd4\x8d\x5c\x39\x69\x64\x6e\xf4\x5e\xc1\x21\x71\x1b\xae\x11\xa2\x49\x08\xa4\x55\x91\x05\x83\xd6\x76\x14\xa2\x2a\xe2\x67\x47\x01\x5d\xa2\x1e\x1a\x58\x4b\x6d\x0b\x1e\x21\x15\x9d\x8c\x8a\xea\xd1\x12\x48\xa8\x48\x9f\x42\xee\x54\xbe\xf5\x3e\xa8\xa0\x21\xbc\xe9\x5c\xdb\x63\xdd\x28\x93\x7d\xfc\xcb\x99\x9c\x16\xc3\xb0\x23\xe7\xb9\x55\x75\xd4\x7f\x22\xcf\x0b\x99\xb2\xee\xe0\x5a\xea\xf2\x4c\xba\xeb\x41\xb5\x0e\xaa\x70\x70\xe6\xfe\x1b\x75\x3f\xa8\x81\x83\xae\xba\x4d\x6f\x39\x2a\x67\x41\xe4\x88\xa9\x75\x38\xe0\x73\xbf\x94\xc5\x7d\xad\xbd\x7d\x30\xde\x08\xad\x9e\x0b\x27\xdd\xb4\xb7\x96\x1e\x30\xac\xba\xab\x4c\xad\xfe\xac\xae\xae\x8d\xb9\x09\x05\x70\x8a\xab\x9a\x4c\x0b\xa7\x1f\xb8\x21\x2f\xa6\x55\x28\xd0\x15\x55\x99\x29\x9d\x35\xc5\x59\x21\x4b\xd5\x53\x63\xb0\x5d\xff\x7a\xeb\xd2\xb8\xdc\xdc\xb5\xb6\xf9\x5e\x25\xad\xbb\xdf\xfb\xeb\x6d\x77\x87\xd9\x13\x23\x6d\x6b\x17\x4c\x15\xec\xbf\x85\xc9\x64\xa1\xdd\xfd\xc9\x0f\x29\x73\x76\xae\xe7\x6a\xaf\xa6\xce\x3b\x88\x06\xf1\x2d\x46\xd6\x44\x2e\x10\x92\x17\xf1\xe8\xe4\xcf\x3e\x56\xe3\xdc\xb2\xa0\xa3\x57\x24\xff\xbb\xf7\x52\x3e\xc0\x18\x1f\x49\x5d\x98\x99\x7f\xdf\xf1\xba\x3a\xc0\x16\x78\x50\x85\x19\x8f\x75\x39\x4e\x19\x8e\xc1\x7d\xee\x12\xc4\xf9\x8b\xdc\xfb\xdb\xfe\xde\xff\xf9\xf5\xbb\x0f\x8f\xff\xf7\xdb\x3f\x7e\xfb\x9d\x0f\x8b\x8c\x54\x4a\xf0\x6b\x26\xaa\xbe\x3e\xba\xab\x64\x59\x7b\xc0\xbe\x70\x0f\x9b\x67\x3f\x3e\xf4\xe7\xf3\x18\x35\xcf\xe6\x9f\x74\x63\xd5\x38\x71\x45\x7d\x6a\x72\xef\x9c\x16\xa6\x31\xde\x13\x17\x97\xe7\xc7\x07\x97\x81\x04\x67\x47\xe7\xa7\xc7\x17\x17\xc7\x5f\x8e\x02\x89\x0e\x8f\x2f\xf6\x7f\x38\x39\x3a\xdc\x44\xa3\xe8\xbb\xee\x01\x1b\xa5\xa3\x7c\x9c\x1f\xe7\xab\xa7\xd4\xa5\xb2\xfb\x76\x9c\xba\xb1\x24\x9f\x92\xf9\xa7\xaf\x27\x83\x8e\xca\xd9\x17\x69\x37\xbb\xc7\x8d\xc7\x0c\x25\x4e\x43\x43\xed\xe5\x1e\x34\x7d\x8c\x4e\x8f\xf4\xbb\x55\x99\x29\x47\x7a\x7c\x2a\xab\x9f\xd4\xfd\xb9\x22\x44\x1a\xe2\x5d\xdb\x22\x5f\xd6\x62\xde\xd7\xa0\x85\x73\x4d\x50\x6c\xaa\xb6\x7f\x71\x94\x53\xf6\x47\x82\x7d\xad\x83\x72\xe9\x89\x71\x9d\x63\xa4\x55\x91\x6f\xa0\x85\x65\xa5\xbf\x28\xeb\x9b\xee\x7d\x26\x93\xdb\xa3\x31\x9b\xb2\xb3\x4c\xd0\xce\x6b\x8f\x47\x4b\x86\x6c\x95\xc5\x51\xfb\xc7\x0d\xb5\x4e\xb6\x98\xb7\xa9\xb1\x26\xd8\x0d\x94\xeb\x99\xae\xa9\x37\x24\x11\xcd\xec\x65\xa2\x99\x2d\xba\xd9\x8b\x0f\xa2\x85\x21\x43\x8e\xa1\xba\xa1\x21\xc7\xfa\xd5\xc8\x8e\xae\x5f\xe4\x9b\x2a\x31\xfb\xf6\x9a\xaa\xdf\xe4\x16\x1b\x1c\xee\x5c\xeb\x96\x6d\x04\x87\x3b\x2f\x03\x1e\x37\x78\x04\x8f\x1b\x96\xe5\x6b\x3e\x6e\x00\xd1\x28\x06\x57\x2c\x2b\x06\x17\xb7\x1e\x98\x85\xbc\xe2\x87\xa3\xe0\x70\x8f\x7d\x0c\x38\xdc\x31\xfb\x3f\x17\xcc\xfe\xeb\xb2\x4b\xb3\x3f\x5c\xab\x27\xc1\xe0\x0a\x66\xc5\xe0\xda\xb0\x6b\x45\x57\x0f\x0e\xf7\xed\x45\x9b\xc0\x57\xb6\x22\xe0\x2b\xdb\x64\xc1\xe0\x2b\xa3\x09\xf8\xca\x3a\x05\x7c\x65\x1e\x01\x5f\x19\xf8\xca\x3c\x02\xbe\x32\xf0\x95\xf9\x05\x5b\xe3\x21\x0a\xc4\xd6\x78\x5d\x76\x69\x6b\x0c\xbe\xb2\x27\x01\x5f\x99\x4f\x76\x8b\xaf\x0c\x1c\xee\xc0\x44\x1e\x04\x98\xc8\x26\x0b\x06\x26\x42\x13\x60\x22\x9d\x02\x4c\xc4\x23\xc0\x44\x80\x89\x78\x04\x98\x08\x30\x11\xbf\x00\x13\x19\xa2\x40\x60\x22\xeb\x02\x4c\x04\x98\x88\x00\x26\xe2\x91\xed\xc7\x44\xa2\x49\xb2\x6b\x95\xdd\xd4\x47\xbd\x29\x84\x40\x05\xff\xa8\x62\x5b\x2c\x19\x92\x8a\x69\x4b\x79\xe5\xc1\x09\x1f\xeb\x05\x56\xcd\x1b\xfe\x87\xf9\xc2\x77\x2a\xef\x8e\x4a\x67\x03\x5f\x4f\xb1\x89\x5b\xe4\xa5\xf6\xbf\x98\x8d\xd6\x35\x18\xed\x3b\x65\x4b\x1f\xbe\x83\xd1\x7e\x25\x35\x9a\x32\x31\x09\x18\xed\xbb\x05\x8c\xf6\xfe\x54\x60\xb4\x5f\xd6\x0b\x46\x7b\xfe\x07\x80\xd1\x3e\x55\x19\x18\xed\x59\xaa\xdf\x04\xa3\x7d\xdd\xc2\xd8\x8b\x83\x88\xde\x10\x43\xed\x72\x6d\xf6\x73\x59\x39\x65\x7b\x2b\x03\xdd\x3e\xe8\xf6\x3b\x12\x6d\x8a\x2c\xb6\x61\xf2\x2c\x54\x5d\x5f\xaa\x42\x4d\x94\xb3\x49\x84\xa7\x3d\x41\xb6\xb0\x85\x73\x77\xe6\xd4\x15\xf5\x81\xb2\xdd\x3b\xac\xb0\xfa\x89\xeb\xc6\xd4\x23\xb9\xa6\x85\xd3\xa7\xaa\xee\x64\x09\x24\x66\x0d\xd2\xd6\x46\x99\xb1\xcd\x44\xea\xf4\x39\xe0\x71\xf3\xf6\xcb\x9e\xdc\xfb\xdb\xef\xf7\xfe\xf3\xfd\xaf\x5e\x7a\x5e\x06\xb4\xb4\x41\x1e\x68\x55\xce\xcc\xfd\x47\x5d\xf4\x9f\x44\x83\xdd\xa9\x54\xee\xd6\xd8\x1b\xdf\x92\x14\xac\x89\x86\x44\x6b\xac\xba\xbd\xeb\x28\xf5\x2d\x58\xbc\x98\xd6\x2d\xdb\x08\x16\x2f\x1c\x6f\x3f\x17\x1c\x6f\xaf\xe6\xd8\xf2\xe3\x6d\x50\x4d\x60\x70\xc5\xb2\x62\x70\x71\xeb\xe1\xed\x5c\x1d\x04\x8b\x57\xec\x63\xc0\xe2\x85\xd9\xff\xb9\x60\xf6\x5f\x97\x5d\x9a\xfd\xe1\x5a\x3d\x09\x06\x57\x30\x2b\x06\xd7\x86\x5d\x2b\xba\x7a\xb0\x78\x6d\x2f\xda\x84\x17\xab\x2b\x82\x17\xab\x9b\x2c\x18\x2f\x56\x69\x82\x17\xab\x9d\x82\x17\xab\x1e\xc1\x8b\x55\xbc\x58\xf5\x08\x5e\xac\xe2\xc5\xaa\x5f\xb0\x35\x1e\xa2\x40\x6c\x8d\xd7\x65\x97\xb6\xc6\x78\xb1\xfa\x24\x78\xb1\xea\x93\xdd\x7a\xb1\x0a\x16\x2f\x60\x22\x0f\x02\x4c\x64\x93\x05\x03\x13\xa1\x09\x30\x91\x4e\x01\x26\xe2\x11\x60\x22\xc0\x44\x3c\x02\x4c\x04\x98\x88\x5f\x80\x89\x0c\x51\x20\x30\x91\x75\x01\x26\x02\x4c\x44\x00\x13\xf1\xc8\xf6\x63\x22\xd1\x24\x2f\x4c\xbf\x05\x76\x28\x8e\x5d\x20\x35\xea\x94\x37\xc9\x84\x03\x52\xa3\x9d\x69\xca\x68\x12\x90\x1a\x75\x0b\x48\x8d\xfc\xa9\x40\x6a\xb4\xac\x17\xa4\x46\xfc\x0f\x00\xa9\x51\xaa\x32\x90\x1a\xb1\x54\xbf\x09\x52\x23\xf0\x06\x81\x37\xa8\x23\xd1\xa6\x78\x83\xcc\xd4\x5d\x99\x69\x99\x5f\x5a\x39\x1a\xe9\xec\xcc\x14\x3a\x4b\xa2\x0e\x9a\x98\xdc\xfb\xb5\xaa\x9c\x06\x16\xe7\x3d\xb1\x7f\x72\xf2\xf9\xcf\x7f\xd9\xff\xf4\x5f\x81\x34\xe7\x47\x3f\x1e\x5f\x5c\x9e\xff\xd7\x5f\x3e\x7f\x3a\xf1\xa5\x8b\xd4\x67\xb0\x22\x2a\x5d\x74\xaf\xbf\x51\x3e\x98\xc7\xad\xd3\xdc\xed\x96\xba\x54\x76\xdf\x8e\x53\x07\x2f\x79\xfb\xef\xf7\xee\x9e\x0c\x3a\x2a\x67\x5f\xa4\xdd\xec\x3c\x52\x46\xa7\x4f\xe2\x80\x1d\x6a\xbc\x3c\x68\xfa\x68\x4d\xe4\x86\x0b\xfd\x70\x23\x33\xe5\x48\x8f\x4f\x65\xf5\x93\xba\x3f\x57\xd1\x5d\x2f\xf7\xdc\x84\x7c\x5a\xc2\x04\x4c\xe3\x4d\x93\xa8\xd8\x54\x6d\xff\xe2\x28\x8f\x39\xae\x0b\xe1\xe1\xaa\x94\x53\x07\x06\x9e\x3a\xd2\xaa\xc8\x37\xd0\xc2\xb2\xd2\x5f\x94\xf5\x51\x88\xf9\x4c\x26\xb7\x47\x63\xf6\x99\x74\x9d\x24\x67\x3d\xb5\xf3\xda\xe3\xd1\x92\x21\x5b\x65\x01\x67\x7e\xdc\x50\xeb\x64\x8b\x79\x9b\xe2\x0a\x2e\x5b\x4f\x6e\xa0\x5c\xcf\x74\x4d\x3d\xa2\x24\x21\x6b\x0b\xe1\x21\x6c\xab\xb9\x18\x67\x2f\x5b\x8a\xb8\x2d\xa4\x07\xf2\xb6\x90\x45\x37\x7b\xf1\x41\xb4\x30\x64\xc8\x31\x54\xab\xcc\x2a\x87\xf5\xab\x91\x1d\x5d\xbf\xc8\xa7\x01\x31\xfb\xf6\x9a\xaa\xdf\xdc\x8e\x04\x24\x8a\x7c\xeb\x96\x6d\x04\x89\x22\x6e\x17\x3d\x17\xdc\x2e\x5a\xcd\xb1\xe5\xb7\x8b\xc0\xf4\x83\xc1\x15\xcb\x8a\xc1\xc5\xad\x87\xb7\x73\x73\x1b\x24\x8a\xb1\x8f\x01\x89\x22\x66\xff\xe7\x82\xd9\x7f\x5d\x76\x69\xf6\x87\x6b\xf5\x24\x18\x5c\xc1\xac\x18\x5c\x1b\x76\xad\xe8\xea\x41\xa2\xb8\xbd\x68\x13\x08\x03\x56\x04\x84\x01\x9b\x2c\x18\x84\x01\x34\x01\x61\x40\xa7\x80\x30\xc0\x23\x20\x0c\x00\x61\x80\x47\x40\x18\x00\xc2\x00\xbf\x60\x6b\x3c\x44\x81\xd8\x1a\xaf\xcb\x2e\x6d\x8d\x41\x18\xf0\x24\x20\x0c\xf0\xc9\x6e\x11\x06\x80\x44\x11\x98\xc8\x83\x00\x13\xd9\x64\xc1\xc0\x44\x68\x02\x4c\xa4\x53\x80\x89\x78\x04\x98\x08\x30\x11\x8f\x00\x13\x01\x26\xe2\x17\x60\x22\x43\x14\x08\x4c\x64\x5d\x80\x89\x00\x13\x11\xc0\x44\x3c\xb2\xfd\x98\x48\x34\x49\xa6\xac\x3b\xb3\x66\xa6\x73\x3f\xef\x4b\x8c\x2b\xe1\xe9\x99\x63\x20\x91\xae\x9d\x36\x79\xd0\xcc\x40\x0b\xb5\x5c\x8f\x67\xd6\x38\x93\x99\xe2\xa2\xd4\x73\xf7\x66\x7c\x5c\x36\x44\x11\x3e\xdb\xe2\xaf\xe4\xba\xd5\x7e\x7e\x20\xa0\xe8\xab\xf7\xc5\xa8\x29\x27\xf2\xee\x5c\x55\x85\xce\xa4\x77\xcc\x52\x1c\xd6\x89\x2e\xf5\x64\x3a\xf9\x20\x7e\x1f\x34\x24\xe4\xc3\x4e\x74\xb9\x25\x96\x80\xae\x93\x63\x97\x6d\x1b\xed\x20\x44\x8d\xf6\x95\x1a\x0e\xcc\xa1\x9d\xb2\xa5\x8f\xdf\xc1\x1c\xba\x92\x1a\x4d\x99\x98\x04\xcc\xa1\xdd\x02\xe6\x50\x7f\x2a\x30\x87\x2e\xeb\x05\x73\x28\xff\x03\xc0\x1c\x9a\xaa\x0c\xcc\xa1\x2c\xd5\x6f\x82\x39\xb4\xd6\xb9\xca\xa4\xb7\x5b\xc4\x67\x81\xba\xd2\xa3\x91\xf7\x8b\x28\x0d\xbb\x40\x23\x8f\xca\xbc\x32\xba\x0c\x7b\x8e\xd4\x9e\x12\xd9\xdf\x2f\x84\x36\xcb\x0d\x53\xd5\x20\x69\x05\x49\x6b\x47\xa2\x5e\x94\x48\xce\xca\x4c\x5d\xc8\x49\x55\xcc\x9d\xfe\xa0\x92\x72\x3a\xb9\xea\xfc\xac\xa0\x19\x55\x32\xb7\x2b\x18\x45\xc1\x28\xda\x08\x18\xd9\x96\xca\x07\xa3\x68\x9a\x76\x30\x8a\xfa\xad\x07\xa3\xe8\x8b\x23\x71\x0b\x01\xa3\x68\x38\x29\x18\x45\x97\x64\x47\xd7\x2f\xf2\x29\x01\x18\x45\xbb\xd3\xbd\x82\xf7\x0c\x60\x14\xc5\x55\xbb\x0e\xc1\x55\xbb\xd5\x1c\x5b\x7e\xd5\x0e\xb4\x57\x18\x5c\xb1\xac\x18\x5c\xdc\x7a\x78\x3b\xcf\x18\xc0\x28\x1a\xfb\x18\x30\x8a\x62\xf6\x7f\x2e\x98\xfd\xd7\x65\x97\x66\x7f\xb8\x56\x4f\x82\xc1\x15\xcc\x8a\xc1\xb5\x61\xd7\x8a\xae\x1e\x8c\xa2\xdb\x8b\x36\x81\x3d\x63\x45\xc0\x9e\xb1\xc9\x82\xc1\x9e\x41\x13\xb0\x67\x74\x0a\xd8\x33\x3c\x02\xf6\x0c\xb0\x67\x78\x04\xec\x19\x60\xcf\xf0\x0b\xb6\xc6\x43\x14\x88\xad\xf1\xba\xec\xd2\xd6\x18\xec\x19\x4f\x02\xf6\x0c\x9f\xec\x16\x7b\x06\x18\x45\x81\x89\x3c\x08\x30\x91\x4d\x16\x0c\x4c\x84\x26\xc0\x44\x3a\x05\x98\x88\x47\x80\x89\x00\x13\xf1\x08\x30\x11\x60\x22\x7e\x01\x26\x32\x44\x81\xc0\x44\xd6\x05\x98\x08\x30\x11\x01\x4c\xc4\x23\xdb\x8f\x89\x44\x93\x64\xd7\x2a\xbb\xa9\x8f\xfa\x32\x60\x82\x42\xf3\x49\xc5\x96\x58\x02\x0a\x4d\x8e\x5d\xa0\xd0\x04\xef\xe2\x16\xf2\x2e\x82\x42\x73\x67\x9a\x32\x9a\x04\x14\x9a\xdd\x02\x0a\x4d\x7f\x2a\x50\x68\x2e\xeb\x05\x85\x26\xff\x03\x40\xa1\x99\xaa\x0c\x14\x9a\x2c\xd5\x6f\x82\x42\x13\xbc\x8e\xe0\x75\xec\x48\xd4\x83\x98\x26\xa8\xa0\xb2\xda\x34\x2e\x63\x21\xeb\xda\x37\x14\x82\x76\x56\xd6\xdc\xa5\x51\x3a\x66\x99\xaa\xeb\x13\x33\x3e\x2a\x33\x93\x07\x18\x27\x63\xf1\x68\xfe\xd7\xc5\xe7\x4f\x81\x9f\x2f\x8f\xfe\xf7\x65\x2a\x2c\xf4\x68\xe3\xdc\xcb\x48\xb5\xef\x37\xbf\x09\xfc\xf8\xbb\x5c\xcd\x7e\x57\xbb\xdc\x4c\xc3\xad\x4b\x32\xb2\xed\xc4\xa9\x7a\xb2\x62\x5a\x3b\x65\x0f\xcd\x44\x6a\xaf\xa3\x1f\xd7\x62\x26\x95\x29\x55\xe9\x4e\xcc\xf8\x24\xb4\x90\x13\x34\x59\x75\x38\x9d\x54\x87\xda\x36\x18\x94\x77\x96\x21\x6b\x3a\xee\x85\x11\xe6\x65\x7d\xae\x46\x56\xd5\xd7\xe7\xd2\xf9\x49\x8a\x1f\xb7\xa6\xcd\xb6\xf1\xef\xdf\xff\xf6\xdf\xff\x59\xfb\xb6\x8d\xd1\x32\x5b\x58\xf4\xe0\xc1\xfe\x3e\xf0\xea\xcc\xdc\xef\x2f\x3a\xca\x85\xb2\x33\xed\xa7\x5b\xa2\xac\x20\x04\x4a\x64\x9a\xc7\x7a\x6d\xea\xfe\x1b\x82\xca\xd8\xa0\x12\xea\xe9\x3a\x6d\x72\x77\x59\xf5\x93\x52\x95\x2c\xf4\x2c\x38\xc3\x53\xbd\xa8\x79\x79\x76\x16\xa7\x6e\xa3\xc3\x23\xd6\x5c\xc5\x0f\x66\x38\x57\x0e\xe8\x38\x8e\xd3\x5f\xd3\x9f\x12\xc2\x15\xf5\x85\x72\x4e\x97\xe3\x41\x3c\xda\x4c\x1e\xcc\x93\x8d\x74\x26\x5d\xbc\x0a\xc9\x2d\x92\x15\x5a\x95\x6e\x49\xf5\x60\x9a\x27\x26\x8f\x2a\x0b\xaf\x50\x0b\xd9\x13\x87\xc7\x17\xfb\x3f\x9c\x1c\x11\x52\x5e\x1c\x9f\x9e\x91\x12\x9e\xfe\x7c\xf9\xf3\xfe\x09\x21\xe1\xf1\xc5\xe5\xf1\xe7\xbf\x90\x92\x33\xc6\x81\x9e\x49\xa7\x08\xe7\x7c\x64\x95\x75\xa9\x87\xd3\x35\x6d\xba\xf6\x7e\xe1\xe6\x9e\x57\xb4\xb3\x6d\x31\x50\x14\x4d\xd2\xac\x3f\xa7\xca\x59\x9d\xd5\x58\x7d\x82\x85\x61\xf5\xf1\x14\x8d\xd5\x27\xed\x43\xb0\xfa\xc4\x13\x62\xf5\xd9\xf9\xd5\xe7\xc2\x49\x57\x1f\x62\xd5\xe9\x2e\x2c\x3c\xb9\x46\x6b\xf8\xda\x14\xf9\x7e\xd5\xdc\x80\x70\xda\x94\x3f\x97\x4e\x17\x67\xd6\xdc\xcd\x6b\xdd\xfa\xcf\x9e\x37\x7d\xad\xa7\xd0\x23\x95\xdd\x67\x7e\xec\x86\xd2\xec\x95\xa9\x5d\xf3\x19\x43\xcc\xf0\xea\x2e\x8e\x91\x73\x2e\xd7\x66\x66\x32\x91\xfe\xd8\xc5\xcb\xc2\xb8\x82\xc7\xbc\x80\x47\xbf\x7e\x47\xbe\xc2\x76\xed\x5c\xf5\xa3\x8a\x5e\x9e\xe7\x54\x55\x6c\xd4\x3d\xb7\x91\xf8\xf1\x73\x3b\xff\xa4\x64\xae\xfc\x21\x69\x96\x65\xa3\x5c\x8c\x74\x6e\x79\x91\x76\xad\x94\x80\x69\xf7\x2a\x81\xff\x82\x23\xc8\xe9\xbe\x9a\xb8\x31\x9f\xd1\xff\x37\x40\x0c\xd6\xe0\x83\xa4\x90\x26\xac\xca\x8b\xad\x05\x0b\x61\x84\xe1\x48\x09\xc2\xc1\x0e\xc1\xd1\x3b\xc2\x45\x9d\x5d\x2b\x5a\xa7\x67\x58\xc6\x61\x6f\x9b\xd7\xfc\x50\x73\x9e\xcb\xaa\x0b\x93\xdd\xbc\x82\x59\xef\x8d\xf6\xb7\x97\xe9\x18\xc4\x8b\x3a\xea\xc2\x85\x2f\x1b\xc1\x45\x81\x8b\x02\x17\xa5\x67\x09\x70\x51\x56\x75\x62\xc9\x08\x0b\x5c\x94\x98\x89\x70\x51\x96\x64\x57\x5d\x94\x68\x92\x22\x72\x5f\x24\x76\xcd\xa6\x89\x5e\x1b\xf8\x3d\x57\x57\x53\x7f\x03\xec\x09\x5d\x8e\x4c\xe0\xe7\x5b\x69\xcb\x50\x0b\xee\x09\x65\x6d\xe0\xcd\xea\x9e\xc8\xac\x76\x3a\x93\x45\x20\xc9\x6f\xcc\x68\xe4\xbb\x2d\x14\xed\x47\xf1\xbb\xda\x71\xb8\xad\xb2\xc6\x99\xcc\x14\x87\xca\xa9\xcc\x69\x53\x5e\xea\x89\x32\xd3\xf4\x4b\x45\x78\x8b\xd4\x29\x6f\xf2\x01\x0b\xde\x22\xed\x4c\x53\xe2\x2d\x52\xa7\xa5\x78\x8b\x94\x66\x1d\xde\x22\xad\xeb\xc5\x5b\x24\xfe\x07\xe0\x2d\x52\xaa\x32\xbc\x45\x62\xa9\x7e\x13\x6f\x91\xa6\xb5\x3a\x55\x4e\xe6\xd2\xc9\xa3\xbb\xec\x5a\x96\x63\xf5\x51\x17\xce\xdf\x51\x62\xf3\x42\xe4\x29\x8a\xb9\xbb\x3f\x2e\x75\xe7\xcc\x13\xeb\x04\x7d\xae\x09\xc4\xad\xfa\xb3\xac\x3b\x67\xf4\x98\x55\x3d\x49\x4d\x82\x86\xd5\xdd\x4f\x9a\x62\x26\x65\xd3\xda\x99\xc9\xa5\xb9\x51\x65\xff\x77\x15\xbd\x49\x5b\xdc\xdc\x8e\xfd\x69\xae\x43\xd1\x9f\xa3\x66\x4c\xf3\xfa\x2c\x00\x59\xf6\x69\xfe\x5a\xe7\x2a\x93\xf6\xb8\xfc\xab\x97\x06\x25\xfa\xce\xe9\x71\x3f\x33\xf7\x85\xa5\x2e\x95\xdd\xb7\xfe\xeb\x82\x11\x17\x8c\x30\xfc\x63\x2e\xd7\x93\x41\x47\xe5\xec\x8b\xf4\x9f\x0a\x0c\xf2\xd0\x30\x8e\xf8\x13\x67\xb4\xa1\x1e\xd4\x3d\x68\xfa\x68\x4d\xe4\x56\x22\x1d\xc2\xcc\x4c\x39\xd2\xe3\x53\x59\xfd\xa4\xee\xcf\x15\x01\x4d\xe4\x1d\x9c\x90\x49\xf3\x98\x50\x23\xfd\x30\x86\xa9\xd8\x54\x6d\xff\xe2\x28\x8f\x79\x93\x0b\xe1\xd1\x6b\x51\xc8\xe7\x18\x27\x29\x23\xad\x8a\x7c\x03\x2d\x2c\x2b\xfd\x45\xd9\x9a\xc0\x4e\xb9\x6c\x32\xb9\x3d\x1a\xb3\x43\x53\x64\x0f\xed\xbc\xf6\x78\xb4\x64\xc8\x56\x59\x60\x8c\x1f\x37\xd4\x3a\xd9\x62\xde\xa6\xf8\x67\xcb\xd6\x93\x1b\x28\xd7\x33\x5d\x53\x99\x2a\x19\x27\x16\x69\x67\x16\x09\xa7\x16\x5b\x0b\x83\x2d\xa4\xf7\x31\xde\x53\x37\x7b\xf1\x41\xb4\x30\x64\xc8\x31\x54\xab\xcc\x2a\x87\xf5\xab\x91\x1d\x5d\xbf\xc8\x10\x7d\xcc\xbe\xc8\xa5\x06\xf2\xde\x33\xe0\xa3\x46\x22\x70\x50\x3a\x60\x69\x72\xf5\xe6\x22\x79\x3c\xc6\xd0\xdf\xd4\x0d\x1e\x90\x4c\x3f\x13\x90\x4c\x07\xb3\x82\x64\x9a\x5f\x0f\x08\xf8\xbe\x10\x0c\xae\x60\x56\x0c\x2e\x6e\x3d\x30\x0b\x79\xc5\x01\x3c\x1e\xfd\x00\x52\xf2\x5d\x89\xdd\xc1\x99\xd4\xd6\xe2\xee\x53\x6a\x76\xa3\x97\xa3\xe1\x5a\x3d\x13\xcc\xfe\xc1\xac\x98\xfd\xe1\x5a\x61\x70\x75\x0b\x06\xd7\xb2\x6c\xa3\x6b\x45\x57\xcf\xb9\xd1\xbe\xb6\xa6\x93\xbc\x94\x81\x5e\xe0\x3d\xc5\x4c\x7b\x33\x68\x13\xe2\xc6\xae\x08\xe2\xc6\x6e\xb2\x60\xc4\x8d\xa5\x09\xe2\xc6\x76\x0a\xe2\xc6\x7a\x04\x71\x63\x11\x37\xd6\x23\x88\x1b\x8b\xb8\xb1\x7e\xc1\xd6\x78\x88\x02\xb1\x35\x5e\x97\x5d\xda\x1a\x23\x6e\xec\x93\x20\x6e\xac\x4f\x76\x2b\x6e\xec\x43\xa0\x4e\xa7\x81\x89\x10\x04\x98\xc8\x30\x86\xb6\x02\x4c\x84\x24\xc0\x44\x28\xb9\x80\x89\x10\x4d\x06\x26\x02\x4c\x04\x98\xc8\xaa\x00\x13\x01\x26\x32\xb8\x71\xad\x00\x13\x59\x13\x60\x22\xab\x39\x80\x89\x74\x98\x09\x4c\x24\x9a\x01\x98\xc8\x4a\xd2\xaf\x11\xa7\x44\x16\xb7\xf2\xbe\x6e\xc9\x06\x62\x0b\xdc\x20\x8f\xf3\x79\xab\x1c\xa9\xdf\x71\x56\x33\xe2\x0a\xc6\xea\x32\x9c\x95\x8a\xa5\x98\xbe\x22\x6d\x03\x8b\x35\xe7\xd6\x14\x65\x55\x21\xaf\x24\xcc\xd7\x88\xb1\x6f\x21\xaf\x12\x29\x2b\x03\xb9\xf6\x49\x1f\x35\xc4\xb3\xc7\xa9\x33\xed\xf0\xd7\xa6\x3c\x33\x85\xce\xee\x8f\xfa\x72\xac\xb4\x24\x2d\x9f\x1e\xd7\x98\x1f\xee\x0f\xd5\x48\x4e\x8b\x08\xa7\x67\x5c\x65\x0f\x9b\xfa\x45\xf5\xd1\x1e\x92\x20\x41\x9c\x7e\xa2\x9c\xa4\x54\x45\x82\xc4\x4d\x2a\x92\xfd\x16\xf2\x4b\x7f\xfe\x2b\x7f\xe6\x0b\xff\x2d\x7e\xdd\xdf\xf3\x65\x3f\x79\xbe\xa2\x70\x97\x0a\x34\xf5\xeb\x6f\xea\x21\x3c\xb9\xf9\x14\x75\xf0\xe9\xf8\xa0\x21\x06\x9a\xda\x20\x5f\x29\x89\x03\x75\xc0\x53\x34\xea\xbb\x78\x8e\x4e\x31\xfc\xe9\x9c\xd8\xf4\x73\x2b\xee\x5b\xf9\xb4\x52\x04\xce\xcf\x28\x82\xf3\x33\x76\x76\x9c\x9f\xf9\x33\x26\x9d\x9f\x71\x1f\x86\x09\x0c\xce\x0d\x17\x8c\xc1\x49\x93\x5d\x1e\x9c\x09\x85\x71\x0e\x0b\x45\xd2\x81\xa1\x60\x1f\x1a\x8a\xa4\x53\x55\xd6\x3b\x7e\xc1\x39\x3b\x14\x9b\x7c\xb3\x37\xf4\x39\xa2\x48\x98\x34\x93\xde\xf7\x0b\xfe\xd4\x01\x97\xd0\x2f\x58\x75\xc8\x82\x55\x27\x26\x70\x09\x3d\x82\xc1\x49\x12\x0c\x4e\x4a\xae\xd7\x30\x38\x13\x0a\xe3\x15\xc3\xab\x76\x3e\xef\x80\x48\x39\x81\x26\x24\x25\x72\x10\x88\x5d\x47\xf6\x52\xee\xe0\xa7\x15\x25\xd2\xef\xe2\xa7\x17\x28\x7a\x3b\x90\xa2\xcf\x7c\xd8\x67\xad\x12\xe9\xeb\x95\xe8\x3f\x11\xf7\x5b\xb7\x06\x31\x20\x7d\xfd\x12\xfd\xd6\x30\x31\x84\xf5\x7d\xd6\x32\xd1\x6b\x3d\x13\xc9\x6b\x9a\xe8\xb3\xae\x89\x3e\x6b\x9b\xe8\x55\x5f\xc9\x77\xfa\xc5\x40\xf7\xfa\x45\xdf\x1e\xd3\xd3\x29\x60\x67\x4c\xb9\xe7\x2f\x52\x47\x55\xcf\x57\x0f\xdc\x1e\x91\x74\xef\x3f\xd9\xce\x94\x71\xca\x7f\x03\x20\xde\x3c\xbc\xc7\x7e\x1b\x20\x76\x1a\xe3\xdb\xa8\x57\x88\x27\x93\x7e\x01\x84\x40\x12\x40\x08\x94\x5c\xaf\x01\x42\xc0\x93\xc9\xb0\xe0\xc9\xe4\xab\x7f\x32\x49\xaf\x28\x16\xbe\x44\xe4\x74\x10\xc0\x98\x86\x2a\x4a\x00\x63\x62\x0b\x30\x26\x60\x4c\xc0\x98\xa2\x02\x8c\x09\x18\xd3\x52\x2e\x60\x4c\x0b\x01\xc6\x04\x8c\x09\x18\xd3\x40\x86\xb6\x02\x8c\x89\x24\xc0\x98\x28\xb9\x80\x31\x11\x4d\x06\xc6\x04\x8c\xe9\x15\x61\x4c\xa4\x64\x57\xba\x3c\xd4\xc1\x39\x9d\x54\xb3\xd9\xb5\xd4\x65\xb8\x32\xe3\x4f\xd9\x45\x1b\x20\x7e\x34\x84\x41\x91\x77\xf5\x74\x83\xd4\x5d\x56\x4c\xf3\xa5\x47\xff\x21\x95\x84\x21\x45\xec\xa8\x94\xde\x10\x7c\xfa\x4f\x2e\x4b\x97\x5b\xfb\x81\x85\x19\x9f\xa8\x99\x0a\x06\x0f\x27\x15\x67\x55\x25\xc3\x9d\x8a\xea\x8d\x5d\x59\x73\xa3\xca\x33\x93\x37\x4b\x11\x61\x8a\x22\x4f\x4c\xcf\x35\x7f\x99\x3b\x3d\x83\xe9\xce\x55\xa1\x9c\x3a\x33\xf1\xfb\xd7\xb4\x41\x21\x68\x23\x8c\xa7\xf0\x7a\x7a\x35\xd8\x07\x37\x8f\xc6\x4d\xe9\xe6\xb3\x92\xfd\x44\x08\x6e\x4f\xd6\xdc\x6c\x4b\x86\xad\x49\x27\xc7\x03\x99\x47\x23\x57\x91\xba\x0c\x6e\xc7\xa9\x63\x61\xe0\x1e\x30\x0c\x59\xc0\xfc\x27\x95\xef\x97\xa5\x71\x0d\x55\x80\xf7\x1b\x78\x7e\x21\xa1\x01\xc8\xc6\x3d\x76\xcc\xfd\x47\x13\xf6\xed\xd8\x5b\x78\x64\xce\x25\x5b\xe6\x9f\x6b\x03\x86\x1d\x95\xb3\x2f\xd2\xa6\xda\x46\xeb\x49\x65\x74\x7c\x12\xbb\xff\x2c\x3e\x69\x72\x34\x7d\xb4\x26\x72\x18\x45\xdf\xc3\x67\x0d\x7d\xc5\xa9\xac\x7e\x52\xf7\xe7\x8a\x40\x4f\xc2\x83\x07\xc8\x80\x00\xd3\x4f\x8e\x37\x4d\xa2\x62\x53\xb5\xfd\x8b\xa3\x9c\x32\x97\x0a\x36\xd5\x1d\x65\xd3\xcc\x70\xe5\x47\x5a\x15\xf9\x06\x5a\x58\x56\xfa\x8b\xb2\x35\x11\x99\x63\xb7\x47\x63\xf6\x99\x74\xd7\x1b\xd0\xce\x6b\x8f\x47\x4b\x86\x6c\x95\x05\x4f\xd5\xc7\x0d\xb5\x4e\xc6\xf1\x35\x96\xad\x27\x37\x50\xae\x67\xba\xa6\xa2\x6f\x64\x0a\x24\x91\x44\x83\x24\xf8\x54\x48\x62\xbb\xe9\x90\x44\x7f\x4a\x24\xb1\xd4\xcd\x5e\x7c\x10\x2d\x0c\x19\x72\x0c\xd5\x2a\xb3\xca\x61\xfd\x6a\x64\x47\xd7\x2f\x52\x42\x8a\x7d\x7b\x4d\xd5\x47\x9c\xd6\x5e\x04\x8f\xa5\x9a\x29\x0b\x82\xd7\x15\x61\x75\x63\x10\xbc\x36\x02\x82\xd7\xd7\x48\xf0\xba\xfc\x50\x78\x7b\xf6\xf8\xcd\xb5\xce\x2d\xc4\x1e\xac\xaa\x0a\x9d\xc9\x03\x33\xf5\x63\x3f\x94\x8b\x17\x13\x5d\xea\xc9\x74\xf2\x41\xfc\x3e\x68\x49\xc8\x97\x8c\x72\xc6\x52\xa6\xc5\x38\x57\x2c\xbf\x93\x93\xbc\x66\x9e\xb7\xcc\xf0\x92\xb7\xd4\x3b\xee\xe1\x15\x93\x9d\x89\x18\x17\x2c\x9a\xf2\x15\x34\x25\x61\x0a\xba\xb5\xda\xa9\xfd\xaa\xfa\xd3\xe5\xe5\xd9\x99\x35\x57\x11\xde\xea\x90\xbf\x5c\xab\x6c\x6a\xb5\xbb\x3f\x30\xa5\x53\x77\xbd\x38\xac\x65\x51\x98\xdb\x33\xab\x67\xba\x50\x63\x75\x54\x67\xb2\x08\x92\xcc\xd2\x0c\x9c\x4b\x26\x2b\x79\xa5\x0b\x1d\xeb\xaf\x54\x3f\x50\xe6\x51\x1f\x85\xe8\x4f\x31\x7c\x29\xaa\x1f\x95\x5b\x53\x6d\xab\x75\xa4\x99\xa8\x5a\x74\x81\x01\x4e\x8d\x2b\x6b\xb2\xd3\xd0\x5a\x2b\xe8\x47\x97\x32\xff\x5c\x16\xf7\xe7\xc6\xb8\x8f\xba\x50\xf5\x7d\xed\x54\x10\x96\xa6\x59\x68\xa7\xe5\x7e\xfd\xa3\x35\xd3\x60\xa3\x2d\xb9\x04\xff\xf1\x6f\xd1\x32\x63\x13\x69\x53\xe6\x27\x53\xce\xbf\x65\xa0\x2f\xf8\xb9\x56\xc1\xed\xcb\xb0\x1f\x50\xab\x13\x5d\x4e\xef\x3e\x57\x41\xef\x4e\x70\x38\xef\x63\xe7\xdb\x82\x33\x1e\xac\x29\x86\x3b\xe9\x6c\x12\x0e\xa5\x6c\x1a\x69\x27\x86\x32\xd2\x60\xbe\xd5\x65\x6e\x6e\xeb\x01\x5b\x6a\x3c\xa9\xe5\x81\x55\xb9\x2a\x9d\x96\xc5\x45\xa5\xb2\xc1\x2a\x67\x5d\xf5\xa0\x47\xd6\x8f\x03\x65\x40\xad\x43\x38\x04\xce\x14\xca\x86\x37\x4a\x83\x20\x37\x6a\x34\x52\x59\xe4\x02\x3a\xf1\xb3\xa3\x28\x0c\x51\x0f\x0d\x79\xa1\xb6\xc5\x63\x3d\x5e\xa8\xcc\x94\xb1\xab\x09\xd4\x29\x91\x7e\xa7\x7e\xa8\x73\xd7\xde\xa8\x40\x50\x81\x53\x85\x9a\x28\x67\x3b\x5b\x30\xd6\x93\x24\x4e\xc4\x71\x22\x2e\x70\xa2\xf0\xbc\x7c\x9c\x88\xa7\x69\xc7\x89\xb8\xdf\x7a\x9c\x88\xbf\x38\x50\xb4\x10\x9c\x88\x87\x93\xe2\x44\x7c\x49\x76\x74\xfd\x7a\x45\x27\xe2\xb1\xc8\x56\x94\x0e\x48\x8d\x68\x45\xed\xcc\x03\x73\x91\x6c\x24\x0a\x3a\x37\x7a\x15\x42\xa0\xb7\xc2\x5e\xee\x16\x82\x10\xe8\xc1\xac\x08\x81\xce\xaf\x87\xa4\x10\x03\x18\x5c\x43\x14\x88\xc1\xb5\x2e\xbb\x34\xb8\x98\x85\x70\xe8\x3e\xf8\x54\x1f\xbc\x8d\x19\xcf\x6f\x64\x45\x88\x22\xb3\x7a\x30\xaa\x8f\xda\x32\xc3\x32\x79\x70\x26\xb5\xa4\x48\x50\x1b\xa5\x09\x81\x6b\xf5\x4c\x30\xfb\x07\xb3\x62\xf6\x87\x6b\x85\xc1\xd5\x2d\x18\x5c\xcb\xb2\x8d\xae\xd5\x66\xae\xb4\x73\x23\x2e\x11\x8d\xa6\xdd\xb9\xa2\x45\x59\xda\x29\xb4\x29\x85\xed\x16\xf4\x69\xc3\x18\xda\x0a\xe8\xd3\x48\x02\xfa\x34\x4a\x2e\xd0\xa7\x11\x4d\x06\x7d\x5a\x42\x2d\xf0\x5b\xfb\x8d\xd2\xa7\xbd\x62\xd8\x89\xcd\x2a\xbb\x3b\xd8\xd3\x46\x3c\xac\x04\xd7\x07\xb8\x53\x2b\xd8\x1a\x77\x0a\xb6\xc6\xcb\xf2\x35\x71\x27\xae\xcb\xd2\xd7\x5d\xe9\xb1\x48\x33\x2a\x84\x99\x81\xeb\x9e\xb0\x7a\x39\xfb\x8b\x79\x2d\xc9\x76\x47\x36\x78\x07\x8c\xe3\x82\x0c\xbe\x74\x92\xf1\x10\x62\x54\x20\x60\x22\xc0\x44\x06\x31\xb4\x15\x60\x22\x24\x01\x26\x42\xc9\x05\x4c\x84\x68\x32\x30\x11\x60\x22\xc0\x44\x56\x05\x98\x08\x30\x91\xc1\x8d\x6b\x05\x98\xc8\x9a\x00\x13\x59\xcd\x01\x4c\xa4\xc3\x4c\x60\x22\xd1\x0c\xc0\x44\x56\x92\x0e\x80\x89\x44\x93\x44\xa2\x10\xc4\x1f\x9a\x05\xc3\xa8\x44\x6b\x7e\x22\xef\xce\x5b\x6e\x3d\x6f\xef\xfa\x4a\xbc\x7a\x13\x5d\x6e\x89\x25\xa0\x66\xe4\xd8\xb5\x55\xd4\x8c\x95\xb1\xee\x87\xf9\x22\x73\x2a\xef\x8e\x4a\x67\x03\x5f\x4f\xb1\x89\x5b\xe4\xa5\xf6\xbf\x4e\x8d\xd6\x35\x88\x25\x3b\x65\x4b\x1f\x99\x83\x58\x72\x25\x35\x9a\x32\x31\x09\xb8\x20\xbb\x05\x5c\x90\xfe\x54\xe0\x82\x5c\xd6\x0b\x2e\x48\xfe\x07\x80\x0b\x32\x55\x19\xb8\x20\x59\xaa\xdf\x04\x17\x64\xdd\x42\xc6\x0b\xd0\xff\xa8\xef\xa6\x1e\xdc\x92\xe0\x96\xec\x48\xb4\x31\x6e\x49\x2b\xb3\xb9\xbb\xdb\x91\x2f\xd6\x8f\x72\xe9\x64\x6e\xbc\x11\x40\x49\x5e\x6b\x9e\x5b\x55\x87\x67\xb6\xc7\x9d\xc3\x2f\xff\xf3\xe1\xd7\xef\x3e\x34\xbe\xfd\xdf\xbf\xff\xed\xbf\xff\x33\xe4\xda\x0f\x01\x6f\xf4\xc6\xe7\x0a\x3d\xbe\x76\xb5\x53\x5e\xe7\x84\x54\x45\x59\xa6\xea\xfa\xd2\xdc\x28\x82\x2f\x1f\xe9\x4a\x2f\x59\xdd\xf3\x8d\x44\xa6\xac\x8b\x11\x13\x92\x54\x35\x1b\x27\x42\x04\xe9\xb0\xf7\x15\x9f\xdb\x9d\xcc\x6e\x72\xab\x67\xfe\x65\x9f\xd2\x84\xb9\xba\x9a\x06\x03\xe5\xd2\x5c\xc5\x89\xbc\xfb\x34\x9d\x5c\x29\xfb\x79\x44\x80\x03\x05\xe3\x68\x9c\x36\xa5\x2d\x97\xef\x9c\xd5\x57\x53\x17\x5e\x62\x36\x56\xfc\xa9\xaa\x6b\x39\x56\x47\x33\x55\x86\x61\x92\x21\x2d\x88\xf6\x96\xf9\x54\xea\xef\x28\xaa\x9c\x06\x36\x3c\x7b\xe2\x6f\xba\xba\xd1\xfe\xc6\xdf\x7b\x9a\x4d\x02\x69\x1e\xa6\xe4\x40\x8a\xa5\x2e\x1d\xfc\xce\xc0\x00\x6c\x2d\x7d\xad\xd3\xbe\x10\xae\xa8\x2f\x94\x73\xba\xf4\x47\x2e\xa6\x7e\x88\x68\xa6\xb5\x83\x79\xb2\x91\xce\x64\x64\x3c\x90\x2d\x6c\xd4\x16\x5a\x95\x6e\x49\xf5\x60\x9a\x27\x26\x8f\x2a\x0b\xf7\xd6\x85\xec\x89\xc3\xe3\x8b\xfd\x1f\x4e\x8e\x08\x29\x2f\x8e\x4f\xcf\x48\x09\x4f\x7f\xbe\xfc\x79\xff\x84\x90\xf0\xf8\xe2\xf2\xf8\xf3\x5f\x48\xc9\xe9\x38\xa5\xd5\x33\xe9\xd4\x90\xe1\xf1\xeb\x52\x0f\xa7\x6b\xda\x4c\x3f\xfb\x85\x9b\xef\x82\xa2\x9d\x6d\x8b\x91\xaa\x48\x92\x88\xcf\x3a\xad\xdd\xa1\x99\xc8\xee\x59\x28\xf8\x39\x4b\x79\xf7\x0b\x2d\xeb\xee\x4a\x0c\x54\x5c\xa4\xb2\x42\x15\x34\xad\xd5\xe9\xc1\x99\xdf\x64\x9f\x03\x30\xf3\x93\x45\x3f\x4d\x93\xdf\xbf\xe7\x56\xc5\xad\x74\xd9\xf5\x7e\x2e\x2b\xa7\xec\xc1\xf9\x61\xe7\xf7\x86\x0d\x6b\x34\x7c\x2e\xd5\xa7\xc5\x95\x06\xae\x0a\xff\x89\xff\xde\xe2\xab\xdf\x75\x69\xeb\xe8\x18\xb5\x93\x6e\xba\xf6\x0d\xa1\x49\xfc\xc8\x5a\x63\x1f\x5c\x09\x76\x3f\xfa\x51\x3a\x75\x2b\xef\xf7\xfd\x2b\xd9\x66\xfa\xd0\x45\xe7\x67\x46\x94\x7a\x2a\xad\xe3\xcf\xb5\xb2\x33\x95\x3f\x3b\xfc\xa8\x9d\xb1\xf3\x1a\x7a\xf6\xb7\xe9\x55\xc7\x99\xe5\x43\x13\x88\xbf\xff\xf3\xdd\x53\x6b\xcc\xf7\x2f\x95\x53\xf9\xd2\x84\x75\xa3\xcb\xfc\x83\xf8\xcd\x6f\x9a\x7f\x54\xc5\xd4\xca\xe2\xe1\x9f\xf3\x8d\xba\x6e\xdd\x5a\xf1\xcb\xaf\xef\xda\xc2\x55\xfe\xc0\x96\xde\xfe\xf1\xff\x05\x00\x00\xff\xff\xbd\x96\x5c\x74\x18\xc0\x04\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x53\x24\x39\xb2\xe6\x7b\xfd\x0a\xd9\xd8\x3e\x74\x6f\x0f\x35\xdd\x7b\x2e\x76\xa6\x5e\xc6\x28\xa0\x7a\xd8\x06\x0a\x03\xba\x66\xcf\xf6\xe9\x33\x26\x22\x94\x89\x9a\xc8\x50\xac\x42\x99\xc0\x5c\xfe\xfb\x5a\x46\x90\x90\x24\x21\xc9\x5d\x11\x59\x24\xc9\xe7\x2f\xdd\x45\x4a\x2e\x0f\x5d\x5d\x9f\xa4\xcf\x65\xa5\xbf\x28\x5b\x6b\x53\x7e\x10\xb2\xd2\xea\xd6\xa9\x72\xfe\xaf\xfa\xfd\xf5\x7f\xd4\xef\xb5\xf9\xc3\xec\x87\x77\xd7\xba\xcc\x3f\x88\xbd\x69\xed\xcc\xe4\x4c\xd5\x66\x6a\x33\xb5\xaf\x46\xba\xd4\x4e\x9b\xf2\xdd\x44\x39\x99\x4b\x27\x3f\xbc\x13\x22\xb3\x4a\xce\xff\x78\xa1\x27\xaa\x76\x72\x52\x7d\x10\xe5\xb4\x28\xde\x09\x51\xca\x89\xfa\x20\x74\xed\xb4\xa9\xdf\x37\xff\x79\x7f\x29\xcb\xbf\x49\x9d\x15\x66\x9a\xbf\xd7\xe6\x9d\x10\x85\xbc\x54\x45\x3d\xd7\x23\x84\xbd\x2f\xe8\xbd\x2c\xaa\x2b\xb9\x92\xf6\x0f\x56\xcd\x74\x6b\xf4\x0f\xef\xff\xf8\xfe\xfb\x77\x75\xa5\xb2\x79\xbe\xb1\x35\xd3\xea\xbe\x98\xe7\xfa\xe7\x36\xdc\xab\x6f\xbf\xe9\x70\x9e\xae\xf9\x77\xa1\x6b\xf7\xd3\xe3\xdf\x8e\x74\xed\x9a\xbf\x57\xc5\xd4\xca\x62\x61\x78\xf3\xa7\x5a\x97\xe3\x69\x21\xed\xfd\x1f\xdf\x09\x51\x67\xa6\x52\x1f\xc4\xc9\x5c\x7d\x25\x33\x95\xbf\x13\x62\xd6\xd6\xea\x7d\x71\x3b\x42\xe6\x79\x53\x5d\xb2\x38\xb5\xba\x74\xca\xee\x99\x62\x3a\x59\xfc\xde\xa6\xc9\x55\x9d\x59\x5d\xb9\xe6\xc3\xce\x9d\x74\xd3\x5a\x98\x91\x70\x57\xea\xa1\x3a\x1e\x52\x0b\xf1\x5b\x6d\xca\x53\xe9\xae\x3e\x88\xf7\x75\x93\xf6\x7d\x9b\x65\x29\x49\x5b\xe9\xcf\xfe\xec\xee\xe6\xe6\xd6\xce\xea\x72\xec\x2b\xfe\xc0\x5a\x63\xc5\x44\xd5\xb5\x1c\x87\x4b\x6d\x52\x1e\x3f\x4b\xd8\x96\xdd\xfc\xc8\x2c\xfa\xb0\x1c\x5b\x55\xd7\x62\x2c\x9d\xba\x91\x77\xf3\xaa\x9b\xff\x5b\xf1\x2a\xe3\xc7\x36\xf7\x6e\x9b\xf9\x99\x61\x8b\x42\x0e\x4f\x09\x35\xb3\xa4\x7d\xd1\xdb\xdf\x3f\xeb\xea\xcf\x8a\xd8\x7d\x52\x1f\xad\xea\x5c\xba\xc5\x1f\xdb\x44\xb3\x1f\x2e\x95\x93\x3f\xdc\xff\xad\xce\xae\xd4\x44\x3e\xf6\x09\x53\xa9\x72\xf7\xf4\xf0\xcb\xbf\x9c\xaf\xfc\x20\x44\x65\x4d\xa5\xac\xd3\xaa\x5e\xfe\xab\x10\x4b\x23\xfa\xc9\xdf\x3d\x1f\x27\x16\x83\x81\x9a\x78\x79\xb8\x3f\xcf\x60\x2e\x7f\x53\x99\x7b\xf2\xd3\x62\x6c\x2e\x8b\xcf\xf8\xe6\x03\xa6\xce\x1c\x96\x73\x35\xda\x94\x0f\x63\xaa\x23\xa1\x10\xda\xa9\x49\xe7\x0f\x01\xfb\x97\x7f\x96\xd6\xca\xbb\x4e\x03\x8e\x5d\xd1\xa9\xb8\xcd\x77\x69\x4c\xa1\x64\xf9\xec\xf7\x4c\xde\x77\x37\x7f\x56\x8f\x45\xd9\xbc\x36\x46\x3a\x93\x8e\xfd\xa5\xa1\xba\x6c\x25\x2f\xeb\x93\xc7\xa9\xaf\x4b\x02\xea\x09\xc6\x3f\x4d\xd4\x5d\xa9\xad\xd4\x2a\xb3\xca\xcd\x8d\xf1\x17\x16\x2d\xca\xdb\xd3\xe2\x56\x64\xda\xc9\x5c\x15\x5d\x85\xc7\xaa\xf1\x71\x02\xdf\x33\xa5\x93\xba\x54\x76\xd7\x8e\xbd\x95\x16\xa9\x51\x42\x7d\xc6\x6a\xf3\xd1\xa0\x83\x72\xf6\x45\xda\x54\x53\xe2\xfd\x47\x2c\x66\xab\xc0\xef\xc4\x2e\x22\xc4\x4c\x16\xd3\x01\x35\x7d\xb2\x66\x12\xd6\x46\xfb\xbe\xb9\x64\xa6\x1c\xe9\xf1\xb1\xac\x7e\x52\x77\x67\x6a\x14\x4b\xce\x51\x3d\x97\x6b\x75\x47\x49\x46\xfe\xfe\x85\xc4\x9b\x26\x51\xb1\xa9\xda\xfe\xc5\x51\xee\x9b\x1a\x57\xc5\xaa\xff\x37\xd5\x56\x3d\x5b\x77\xba\x64\x67\x5e\x75\xd1\x74\x91\x69\x61\x59\x46\x5a\x15\xf9\x1a\x5a\xd8\xbf\xf6\x86\x4c\x26\xb7\x47\x63\x76\xe3\x87\x0c\xaf\x9d\xd7\x1e\x0f\x96\x0c\xd9\x2a\x0b\xb7\xee\xd3\x9a\x5a\x27\x5b\xcc\xdb\xe1\xf5\xe7\xb9\xf5\xe4\x06\xca\xf5\x4c\xd7\xc6\xd2\x74\xcb\xf2\xee\x33\xe1\x1b\x5b\xd9\xb9\x37\x65\xbe\x75\x18\x2b\xcb\xcc\x45\xfe\x00\x21\x2a\xe9\x9c\xb2\xe5\x07\xf1\xdf\xdf\xfc\xd7\x77\xff\xd8\xf9\xf6\x4f\xdf\x7c\xf3\xcb\xf7\x3b\x7f\xfc\xf5\xbb\x6f\xfe\xeb\x7d\xf3\x3f\xff\xf3\xdb\x3f\x7d\xfb\x8f\xc5\x3f\xbe\xfb\xf6\xdb\x6f\xbe\xf9\xe5\xa7\xe3\x1f\x2f\x4e\x0f\x7e\xd5\xdf\xfe\xe3\x97\x72\x3a\xb9\x6e\xff\xf5\x8f\x6f\x7e\x51\x07\xbf\x12\x95\x7c\xfb\xed\x9f\xfe\x07\xc9\xbc\xdb\x9d\xeb\xe9\xa5\xb2\xa5\x72\xaa\xde\xd1\xa5\xdb\x31\x76\xa7\xfd\xba\x0f\xc2\xd9\xa9\x22\x28\x59\x74\xb3\x17\x1f\x44\x1d\xdb\x98\x90\x0d\xa4\x31\xd4\x3a\x58\x58\xbf\x1a\xd9\xd2\xf5\x8b\x94\x90\x62\xdf\x4e\x53\xf5\x11\x1f\x35\x58\x4e\xd4\x47\x1d\x35\x30\x91\xb7\xdf\x50\x3a\x60\x69\x72\xb5\x1b\xd1\x43\xd5\xd5\xa6\x53\x23\x65\xad\xca\xf7\xa7\xf3\x7e\x34\xdf\x59\xe7\xd3\x42\x97\xe3\xc3\x71\x69\x1e\xfe\x7c\x70\xab\xb2\xa9\x23\xac\xe4\xd1\xad\x13\xcf\xba\x65\x1b\x55\x49\x9d\xa5\x78\xda\xe7\x32\x91\x2e\xbb\x3a\xb8\xad\xe6\xbb\xd5\x47\x9c\x8a\x22\xc4\x0f\xee\x63\x5c\x2b\xe4\xf9\xe6\x51\xd8\xcb\xdd\x42\xe6\x16\x4a\x47\x5d\xba\x07\x28\xb0\xd9\xbc\x30\x2b\x24\xa1\xee\x5b\x49\xb6\x92\xb2\xa7\xef\x12\xce\xec\xf8\x28\xb4\x79\xf2\x69\x8e\x45\xc3\x31\xb2\x31\x96\xd3\xd5\x4c\x9c\x7a\x68\x46\x58\xe3\xcb\x62\x70\x61\x70\x05\xb2\x62\x70\x71\xeb\x81\x59\xc8\x8d\xd2\xe3\x2b\x47\xab\xae\x91\xb1\x13\xe9\x9a\x8d\xd6\xbf\xfc\x2f\x86\x31\xd4\x8d\x19\xcf\x6f\x7c\xf4\x03\x48\xc9\xdb\x0f\x1d\x72\x3f\x41\x6d\x99\xc5\x67\x0d\xe3\x53\x71\x26\xb5\xb9\x7b\x78\xae\x0a\x95\x39\x63\x2f\x94\xa5\x8d\x60\xc6\x50\x87\x6b\xd5\x0a\x66\xff\x4e\xc1\xec\xbf\x2c\x70\xad\x30\xb8\xba\x04\x83\x6b\x35\xc7\xa6\x0e\x2e\x66\x21\x74\xf5\xf4\xaa\xdd\x79\xbe\xa6\x93\xbc\x94\xa8\xd1\xa4\x64\x95\xc9\xdf\x1c\xda\xf4\xf8\xc9\xf3\xda\x5e\x97\x5f\xd4\x5c\xef\x5a\x34\x2b\x7d\x84\xa5\x4d\xc3\xe9\x4e\x98\x48\x9d\xaf\x52\xd7\x0b\x91\xb6\x66\x88\x7e\x13\x64\xfa\xda\xd1\xbb\xe0\xb4\x35\x44\xa4\xaf\x23\xa2\xaf\xc5\xa9\xeb\x89\x48\x5e\x53\x44\xd2\xba\x22\x52\xd7\x16\x91\xba\xbe\x88\xe4\xba\x69\x46\xe8\xd1\xd2\x95\x4f\xaa\x2c\x5f\xa5\x4c\x1d\x71\xc9\xbd\xa1\xc7\x22\xcc\xca\x54\x06\x2f\xbe\x75\x0b\x7b\x74\x24\xd5\x02\xbf\xb5\x9d\xa9\x4c\x61\xc6\x77\x3f\x71\x26\x39\xb6\x6d\xdc\x71\xb6\xb3\x6c\x17\x60\xa7\x47\xd9\x59\x75\x08\xde\x14\xf6\xb4\x16\x0f\x2b\xc1\xf5\x01\xee\xd4\x0a\xb6\xc6\x9d\x82\xad\xf1\xb2\x7c\x4d\xdc\x89\xeb\xb2\xf4\x75\x57\x7a\x2c\xd2\x8c\x0a\x61\x66\xe0\xba\x27\xac\x5e\xce\xfe\x62\x5e\x4b\xb2\xdd\x91\x35\xde\x01\xe3\xb8\x20\x83\x2f\x9d\x64\x3c\xa4\x74\x1a\x98\x08\x41\x80\x89\x0c\x63\x68\x2b\xc0\x44\x48\x02\x4c\x84\x92\x0b\x98\x08\xd1\x64\x60\x22\xc0\x44\x80\x89\xac\x0a\x30\x11\x60\x22\x83\x1b\xd7\x0a\x30\x91\x67\x02\x4c\x64\x35\x07\x30\x91\x0e\x33\x81\x89\x44\x33\x00\x13\x59\x49\x3a\x00\x26\x12\x4d\x92\xc9\xf3\x28\xcf\x41\xb4\xfe\x54\x29\x2f\x0b\xf5\xc8\x7f\xf1\xf1\x6e\x5f\x8d\xe4\xb4\xf0\x3a\x4f\xf1\xf7\x6b\xad\x4a\x6f\x2b\xc4\x15\x5c\x29\x59\xb8\xab\xbd\x2b\x95\x5d\xa7\x2b\xd1\x13\x39\x4e\xaf\x96\x42\xd7\x4e\x95\x2a\x0f\x13\x83\x90\x54\x4d\xe4\xed\x5f\x8c\xbd\x2e\x8c\xcc\xf7\x94\x75\x17\x17\x47\xc9\xaa\x96\x2f\x2c\xf9\x94\xf0\xe6\x3c\x32\x41\x44\xa0\x1f\x36\xd0\x5d\x69\x5c\xc3\x53\xe3\x2d\xeb\xeb\xdb\xb5\x78\xf8\xea\x2d\x86\xe2\x4a\x15\x7a\xa2\x5d\x70\xfa\xe4\x2f\x32\xa4\x27\xd9\xbc\xa7\xd8\x8c\x27\xd8\x1b\xfa\xf4\xba\xc7\x93\x6b\xf2\x4b\x55\x55\xa3\x29\x5f\x7d\x53\x46\x93\xd4\x79\x7d\xd0\x77\x09\xaa\x55\x36\xb5\xda\xdd\xed\x99\xd2\xa9\x5b\xef\x62\x48\x99\x41\x64\x51\x98\x9b\x53\xab\x67\xba\x50\x63\x75\x50\x67\xb2\x90\xb1\xdd\x30\xed\x91\x78\x26\x2b\x79\xa9\x0b\x1d\xeb\xa6\xd4\x2d\xa3\xcc\xa3\xae\x13\xd1\x99\x64\xb8\x6d\x54\x07\x32\xb7\xa6\xda\x54\xeb\x68\x27\x5c\x8b\x2e\x10\xac\x64\x5a\xcb\x57\xd6\x64\xc7\x66\x5a\x06\x21\x2e\xd2\x67\x5a\x25\xf3\xcf\x65\x71\x77\x66\x8c\xfb\xa4\x0b\x55\xdf\xd5\x4e\x05\xcf\xa1\x68\x16\xda\x69\xb9\x5b\xff\xd8\xf0\x24\x06\x74\x2d\x61\x6f\xff\xfe\xaf\xd1\x32\x63\xf3\x67\x53\xe6\x89\x29\xe7\xdf\x32\xd0\x17\xfc\x5c\xab\x20\x8a\x31\xec\x07\xd4\xea\x48\x97\xd3\xdb\xcf\x55\xd0\x93\x12\x8c\x21\x5d\xa8\x59\x37\x0f\xd9\x73\xe3\x08\xe3\xc1\x9a\x22\xca\x14\x40\x56\xd6\x24\x1c\x4a\xd9\x34\xd2\x4e\x0c\x65\xa4\xc1\x7c\xa3\xcb\xdc\xdc\xd4\x03\xb6\xd4\x78\x52\xcb\x3d\xab\x72\x55\x3a\x2d\x8b\xf3\x0e\x36\xc3\xc4\xef\xe9\x52\x4d\xa1\x26\xa2\xf7\x8a\xc5\x40\x19\x50\xeb\x10\x7e\x80\x33\x85\xb2\xe1\x4d\xc9\x20\x9c\x75\x6a\x34\x52\x59\xe4\xb0\x81\xf8\xd9\x51\x90\x96\xa8\x87\x06\xc0\x52\xdb\xe2\xa1\x1e\xcf\x55\x66\xca\xd8\x63\x38\xea\x94\x48\x3f\x47\x19\x8a\xcb\x8f\xdc\xa9\xfc\xeb\xfd\xcd\x20\x3b\xf9\xa0\x21\x59\x31\xad\x9d\x7f\x30\x05\x55\x67\xa6\x74\xd6\x14\xa7\x85\x2c\xd5\xee\xd4\x5d\x9d\x9a\x42\x67\x9d\x5d\x4a\x95\x53\xcf\x2a\xbf\x23\x8e\x7f\xbe\xf8\x79\xf7\xe8\xaf\x17\x47\xe7\x9e\x04\x27\x9f\x4f\x0e\xb8\xa6\xe5\x2d\xac\xb4\xd7\x90\x1f\x7e\xd1\xb5\x6e\x3c\xd7\x4e\xdb\x28\x7a\x4e\x4d\xbe\xaf\x6b\x3b\x6d\x26\xe0\x8f\xd3\x7c\xac\x3a\x47\x60\x6c\x04\xf7\xc4\xaa\x82\x0d\x79\x6f\xe9\x59\x08\x86\x88\xd9\x17\x86\x1f\x78\xfb\xd5\xe8\x5e\x95\xbe\x4f\x25\xee\x51\x37\x70\x7f\x9a\xb8\x37\x25\x80\x4d\x61\x78\x01\x4d\xb5\x21\x4d\x15\xfc\x59\xdd\x66\xc5\x34\x57\x87\xa7\x67\xb2\x1c\x77\x37\x50\xb0\x36\xc7\xb2\x28\xba\x97\x70\xf0\xfe\x82\xf7\x17\xbc\xbf\x4f\x64\x4b\x79\x13\xc1\xfb\xdb\x21\xe0\xfd\xf5\x5b\x0f\xde\xdf\x17\x3f\xb1\x58\x08\x78\x7f\xc3\x49\xc1\xfb\xbb\x24\x5b\xba\x7e\x91\x4f\x53\xc1\xfb\xdb\x9d\xee\x15\xbc\x3a\x02\xef\x2f\x2e\xc4\x76\x08\x2e\xc4\xae\xe6\xd8\xf0\x0b\xb1\x20\xa7\xc3\xe0\x8a\x65\xc5\xe0\xe2\xd6\xc3\xdb\x79\x6c\x04\xde\xdf\xd8\xc7\x80\xf7\x17\xb3\xff\x53\xc1\xec\xff\x5c\xb6\x69\xf6\x87\x6b\xf5\x28\x18\x5c\xc1\xac\x18\x5c\x6b\x76\xad\xe8\xea\xc1\xfb\xbb\xb9\x68\x13\x38\x6e\x56\x04\x1c\x37\xeb\x2c\x18\x1c\x37\x34\x01\xc7\x4d\xa7\x80\xe3\xc6\x23\xe0\xb8\x01\xc7\x8d\x47\xc0\x71\x03\x8e\x1b\xbf\x60\x6b\x3c\x44\x81\xd8\x1a\x3f\x97\x6d\xda\x1a\x83\xe3\xe6\x51\xc0\x71\xe3\x93\xed\xe2\xb8\x01\xef\x2f\x30\x91\x7b\x01\x26\xb2\xce\x82\x81\x89\xd0\x04\x98\x48\xa7\x00\x13\xf1\x08\x30\x11\x60\x22\x1e\x01\x26\x02\x4c\xc4\x2f\xc0\x44\x86\x28\x10\x98\xc8\x73\x01\x26\x02\x4c\x44\x00\x13\xf1\xc8\xe6\x63\x22\xd1\x24\xed\x3b\xf2\x2f\xb2\xd0\x79\x90\x48\x30\xfe\xe2\xac\x65\x3f\xd9\x2d\x65\x71\x57\xeb\x08\xc3\x6d\x5c\xcf\xb9\xb2\x33\x9d\xa9\x7d\x5d\x67\x66\xa6\xac\xb7\xa5\xa9\xfa\x7a\xd0\x37\xf6\x23\xff\x05\xcd\x2e\xc7\x2e\xab\xaa\x42\x67\x72\x2f\x44\x47\x48\xf1\xb5\x27\xba\xd4\x93\xe9\xe4\x83\xf8\x3e\x68\x49\xc8\xfd\x06\xe3\x6f\xa7\x6c\xe8\xa3\x6b\x30\xfe\xae\xa4\x46\x53\x26\x26\x01\x5b\x6f\xb7\x80\xad\xd7\x9f\x0a\x6c\xbd\xcb\x7a\xc1\xd6\xcb\xff\x00\xb0\xf5\xa6\x2a\x03\x5b\x2f\x4b\x35\xd8\x7a\x5b\x01\x5b\x2f\xd8\x7a\x3b\x92\xf8\xd6\xfb\xa0\x82\xb1\x74\xea\x46\xde\x25\x91\xb2\xaa\xb1\x55\x75\xaf\x3d\x26\x99\x5c\x51\xd0\xfc\x24\xfa\xe1\x00\x8d\x0d\x89\xe1\x73\x11\x9a\x3b\x45\x63\x9c\x78\x51\xa4\x30\xb4\xf1\x08\x18\xf9\x45\x08\xee\x89\x4b\x02\xd4\x4c\x27\xb4\x4a\x2c\x80\x47\x6c\x25\xc8\x3e\xda\xb2\xf0\x8f\x8e\xa9\xa7\x1a\x4c\x58\x9d\x4e\xd6\x28\x92\x7a\x03\x97\xb4\x51\xa4\xb5\x19\x93\xbc\x31\xa9\x14\x7e\x9b\xd1\x89\x1c\x05\xbf\xe5\xf8\x84\x8e\x22\xa9\x05\x13\x88\x1d\x45\x5a\x23\xb2\x08\x1e\x05\x97\xe4\x51\x24\x13\x3d\x8a\x34\xb2\x47\xb1\xb9\x80\xd5\xb2\x0c\x40\xfa\x28\xd8\xc4\x8f\xe2\xeb\x0c\x40\x32\x09\xa4\xe0\x8f\x3f\x1e\x19\xa4\xc0\x5a\xca\x29\xe4\x15\xae\xa5\xe4\xc4\x54\x7b\x23\x04\x92\x8c\x32\x29\xc0\x60\x8c\x4c\x52\x30\x3a\x30\x95\x54\x92\xa3\x53\x0c\x7f\xb5\x5d\xac\x9b\xab\x88\x4b\x34\x99\x56\x8a\xc0\xe5\x73\x8a\xe0\xf2\x39\x3b\x3b\x2e\x9f\xfb\x33\x26\x5d\x3e\xe7\xb2\x2a\x09\x0c\xce\x35\x17\x8c\xc1\x49\x93\x6d\x1e\x9c\x09\x85\x71\x6e\xda\x8b\xa4\xdb\xf6\x82\x7d\xe3\x5e\x24\xf9\xc2\x2c\x12\x4c\xc1\xb9\x78\x2f\xf8\x55\xcb\x69\xbd\x61\x2f\xe1\x8b\x84\x49\x33\x89\x1c\x53\xf0\xa7\x0e\xb8\x84\x7e\xc1\xaa\x43\x16\xac\x3a\x31\x81\x4b\xe8\x11\x0c\x4e\x92\x60\x70\x52\x72\xbd\x86\xc1\x99\x50\x18\xaf\x18\x5e\xb5\xf3\x49\x3b\x45\xca\xf3\x0d\x42\x52\x22\x81\xa7\xd8\x76\x64\x2f\x85\xc0\x22\xad\x28\x91\x4e\x64\x91\x5e\xa0\xe8\xed\x40\x8a\x3e\xf3\x61\x9f\xb5\x4a\xa4\xaf\x57\xa2\xff\x44\xdc\x6f\xdd\x1a\xc4\x80\xf4\xf5\x4b\xf4\x5b\xc3\xc4\x10\xd6\xf7\x59\xcb\x44\xaf\xf5\x4c\x24\xaf\x69\xa2\xcf\xba\x26\xfa\xac\x6d\xa2\x57\x7d\x25\x13\x62\x88\x81\x48\x31\x44\xdf\x1e\xd3\xd3\x29\x60\x67\x4c\x21\xc9\x10\xa9\xa3\x2a\xb9\x66\xd2\x7a\x44\x12\x69\x46\xb2\x9d\x29\xe3\x94\x4f\xa0\x21\xde\x3c\xbc\xc7\x26\xd6\x10\x5b\x8d\xf1\xad\xd5\x2b\x04\xdf\x98\x5f\x00\x21\x90\x04\x10\x02\x25\xd7\x6b\x80\x10\xc0\x37\x16\x16\xf0\x8d\xad\xff\xfe\xe3\x9a\xf9\xc6\xe8\x15\xc5\xc2\x97\x88\x84\xa8\x02\x18\xd3\x50\x45\x09\x60\x4c\x6c\x01\xc6\x04\x8c\x09\x18\x53\x54\x80\x31\x01\x63\x5a\xca\x05\x8c\x69\x21\xc0\x98\x80\x31\x01\x63\x1a\xc8\xd0\x56\x80\x31\x91\x04\x18\x13\x25\x17\x30\x26\xa2\xc9\xc0\x98\x80\x31\xbd\x22\x8c\x89\x94\x2c\xb3\x4a\x3a\xf5\xb9\x2c\x82\x75\x4d\x7b\xab\x1a\xa1\x73\xa5\x2b\x2a\xa2\xc3\x9c\x3f\xa8\xa9\xb4\x3a\x94\x4a\x2b\x8c\xcc\x3f\xca\x42\x96\x99\xb2\x87\xa7\xf1\xef\x8d\x94\x3a\x91\xb7\x67\x2d\xb9\x6a\xf0\x1b\xa8\x7e\x71\x94\x60\x55\x90\xdd\xe5\x89\x2e\x37\xd4\x32\x0a\x77\xaf\x78\xf1\x8e\x42\xe3\xf2\xdd\x04\x3b\x6d\x98\x3f\x75\x50\x6e\x22\x59\x55\xa7\xd6\x38\x93\x19\xc2\x73\x79\xc6\xc4\x3e\x38\xe7\xd1\xbc\x93\x9d\x1a\x4b\xd8\xbb\xf2\xf6\xac\x9c\xbd\x6a\xf5\xd2\xe5\xaf\xa3\xa5\x9c\xb4\x63\xe5\x68\x55\x4b\xe6\x3e\xe1\x73\x9e\x30\xb9\x4e\xd6\x57\xc9\x3d\xc9\x49\xe8\x44\x0b\xf3\xde\x44\x98\x55\x06\x21\x5a\xa0\x10\x86\x8b\x97\x59\x3d\xee\x29\xa3\x55\x7e\xa2\xdc\x8d\xb1\xd7\x5f\xb4\xba\xe9\xbd\x8c\x47\x59\xc9\x05\x87\x22\x34\xca\x4e\x2e\x92\xf7\x36\x9b\x33\xa2\x36\x98\x35\xa8\x27\x5b\x10\x8b\x24\x25\xc6\x5e\x2e\xd0\xd4\xaf\xbf\xa9\x49\xc9\x1a\xd6\xd6\x61\x98\x92\xeb\xf0\x63\x3b\xea\x44\x44\xd8\xd4\xd1\x6d\x12\xb1\x98\x1d\x4f\xd5\x51\x68\x6e\x29\x93\xae\x60\xc2\xad\xb4\xc9\x57\xf4\x02\x97\x58\x94\x6e\x69\x74\x6e\x09\x54\x6e\x1b\x3c\x4a\xc5\x30\x14\x6e\x2c\x54\x86\x3a\x39\x0b\x74\x85\xed\xee\x0a\x43\xce\xf1\xc4\x28\x16\x82\x13\x23\x22\x21\x9a\x85\x60\xcd\xda\xd4\xa8\x16\x1c\xab\x05\x2d\xba\x85\xe0\x61\xd5\xcc\x8e\xce\xc1\xa7\x29\xd1\x2e\x36\xc5\x5a\xfa\x45\x44\x52\x04\x0c\xc1\xea\x2d\xa4\x48\x18\x82\xb7\xce\x73\x23\x62\xf0\x2c\xa6\x45\xc6\x10\x2c\x26\x75\x0e\x06\x40\x8d\x92\x21\xf8\x5f\x15\x8b\x96\x21\xd6\xf6\x51\xf4\xc8\x19\x82\xeb\xa1\x51\x22\x68\x08\xee\xf8\xa2\x44\xd2\x60\x2b\x6d\x12\x0f\xad\x94\x12\x59\x83\xa9\x94\x3c\x61\xd0\xa3\x6c\x08\x66\xab\xf2\xa3\x6d\x08\x6e\xc5\xa5\x45\xdd\x60\x17\xc3\x8a\xbe\xc1\xd4\x3e\xac\x2f\xd2\xc4\x72\x7c\x15\x87\x14\xf7\xb6\x1e\xdc\xce\xdd\x52\x59\x5c\x58\x39\x1a\xe9\xec\xd4\x14\x3a\x0b\x1e\x5e\xaa\x72\x1a\x59\x28\x76\xc4\x91\xc9\x64\x11\x49\xb3\x57\x4c\x6b\x17\x9c\xf1\x48\x5f\x7b\xff\x19\xf1\xab\x0c\x1b\x51\xdb\x17\x91\xd9\x8b\x52\xb9\xf7\x15\x77\x78\x1a\x49\x77\x72\x7f\xdc\x12\x6d\xab\xc7\xd3\xd7\xbe\x8d\x41\x88\x46\x23\x86\x3e\xfe\xa2\x44\xa6\x21\x7f\x40\x2b\xa4\xfb\x60\x0c\x7d\xf4\xbb\x5e\x9c\x79\x8b\x17\xb1\x46\x30\xdd\x12\xde\x89\xcb\xd0\xe1\x4c\x06\x3b\x37\x89\x2a\xea\x1f\x34\xb7\x44\x5c\x9b\x47\x41\x5c\x9b\x55\x01\x17\x3f\x41\x36\x84\x8b\x1f\x71\x6d\x10\xd7\x26\x26\x88\x6b\x23\x10\xd7\x26\x2e\x88\x6b\x13\x15\xac\xa5\xe4\x42\x5e\xe1\x5a\xca\xba\xb2\x81\xb8\x36\x5c\x9d\xe2\x35\x32\x13\x20\xae\x4d\xb7\xe0\x01\x1a\x49\xf0\x00\x8d\x92\xeb\x15\x3d\x40\x03\x89\xb9\x47\x30\x38\xd9\xd9\x31\x38\xfd\x19\x11\xd7\x86\xec\x0b\x23\xae\xcd\x83\x20\xae\x4d\xb2\x89\x7d\x0c\x6d\x05\xab\x0e\x49\xb0\xea\x50\x72\xbd\x86\x55\x07\x2e\x61\x58\x30\x38\xd9\xd9\x31\x38\xfd\x19\x11\xd7\x66\x90\xa4\x88\x6b\xd3\xe6\x00\xe7\x28\x41\xc0\x39\xfa\x12\x06\x80\x73\x14\x9c\xa3\x34\x01\xe7\x28\x38\x47\x97\x72\x81\x73\x74\x21\x5b\x04\xef\x81\x73\xf4\x89\x80\x73\xb4\x15\x40\x08\xeb\x2c\x18\x10\x02\x4d\xb6\x19\x42\x00\xe7\x68\x58\xc0\x39\xba\xfe\xfb\x8f\xaf\x8d\x73\x14\x71\x6d\x96\x73\x00\x63\x22\x08\x30\xa6\x97\x30\x00\x18\x13\x30\x26\x9a\x00\x63\x02\xc6\xb4\x94\x0b\x18\xd3\x42\x80\x31\x01\x63\x02\xc6\x34\x90\xa1\xad\x00\x63\x22\x09\x30\x26\x4a\x2e\x60\x4c\x44\x93\x81\x31\x01\x63\x7a\x45\x18\x13\x29\x19\xe2\xda\x74\x25\x43\x5c\x9b\x07\x55\x1b\x6a\x19\xe2\xda\x0c\x6b\x27\xe2\xda\x74\x29\x44\x5c\x1b\xc4\xb5\x79\x14\xc4\xb5\x59\x49\x86\xb8\x36\x4f\x95\x22\xae\x0d\x82\x9d\xdc\x0b\x8b\x24\x05\x71\x6d\xde\x40\x53\x93\x92\x21\xae\xcd\xb2\x3a\xc4\xb5\xb9\x17\x04\x33\x69\x05\x71\x6d\xd0\x15\xee\x05\x71\x6d\x96\x04\x71\x6d\x1e\x85\xd9\xd1\x39\xf8\x34\xe2\xda\x20\xae\x0d\xe2\xda\xd0\x3f\x0a\x71\x6d\x16\x89\x87\x56\x8a\xb8\x36\xab\x86\x23\xae\x4d\x4a\x32\xc4\xb5\x11\x88\x6b\x13\x32\x13\x71\x6d\x04\xe2\xda\x0c\xa3\x14\x71\x6d\x28\xfe\x7b\x54\xd1\xf5\x7f\xd4\x03\x44\xa6\x69\x61\xbd\x3f\x3b\x57\x05\x9b\xe1\xab\x5e\xfc\x88\x7e\xfa\x44\xd5\x57\x07\xb7\x95\x2c\x43\x61\x36\x10\x97\x67\x08\x8d\x88\xcb\xe3\x15\xc4\x12\x20\xd8\x82\xb8\x3c\xc3\x97\x82\xb8\x3c\x88\xcb\x83\xb8\x3c\x3e\x41\x5c\x9e\xa8\x60\x2d\x25\x17\xf2\x0a\xd7\x52\xd6\x95\x13\xc4\xe5\xe1\xea\x14\xaf\x91\x59\x01\x71\x79\xba\x05\x0f\xe8\x48\x82\x07\x74\x94\x5c\xaf\xe8\x01\x1d\x48\xd8\x3d\x82\xc1\xc9\xce\x8e\xc1\xe9\xcf\x88\xb8\x3c\x64\x5f\x18\x71\x79\x1e\x04\x71\x79\x92\x4d\xec\x63\x68\x2b\x58\x75\x48\x82\x55\x87\x92\xeb\x35\xac\x3a\x70\x09\xc3\x82\xc1\xc9\xce\x8e\xc1\xe9\xcf\x88\xb8\x3c\x83\x24\x45\x5c\x9e\x36\x07\x38\x53\x09\x02\xce\xd4\x97\x30\x00\x9c\xa9\xe0\x4c\xa5\x09\x38\x53\xc1\x99\xba\x94\x0b\x9c\xa9\x0b\xd9\x22\x78\x0f\x9c\xa9\x4f\x04\x9c\xa9\xad\x00\x42\x58\x67\xc1\x80\x10\x68\xb2\xcd\x10\x02\x38\x53\xc3\x02\xce\xd4\xf5\xdf\x7f\x7c\x6d\x9c\xa9\x88\xcb\xb3\x9c\x03\x18\x13\x41\x80\x31\xbd\x84\x01\xc0\x98\x80\x31\xd1\x04\x18\x13\x30\xa6\xa5\x5c\xc0\x98\x16\x02\x8c\x09\x18\x13\x30\xa6\x81\x0c\x6d\x05\x18\x13\x49\x80\x31\x51\x72\x01\x63\x22\x9a\x0c\x8c\x09\x18\xd3\x2b\xc2\x98\x48\xc9\x10\x97\xa7\x2b\x19\xe2\xf2\x3c\xa8\xda\x50\xcb\x10\x97\x67\x58\x3b\x11\x97\xa7\x4b\x21\xe2\xf2\x20\x2e\xcf\xa3\x20\x2e\xcf\x4a\x32\xc4\xe5\x79\xaa\x14\x71\x79\x10\xac\xe5\x5e\x58\x24\x29\x88\xcb\xf3\x06\x9a\x9a\x94\x0c\x71\x79\x96\xd5\x21\x2e\xcf\xbd\x20\x18\x4b\x2b\x88\xcb\x83\xae\x70\x2f\x88\xcb\xb3\x24\x88\xcb\xf3\x28\xcc\x8e\xce\xc1\xa7\x11\x97\x07\x71\x79\x10\x97\x87\xfe\x51\x88\xcb\xb3\x48\x3c\xb4\x52\xc4\xe5\x59\x35\x1c\x71\x79\x52\x92\x21\x2e\x8f\x40\x5c\x9e\x90\x99\x88\xcb\x23\x10\x97\x67\x18\xa5\x88\xcb\x43\xf1\xdf\x23\x8a\x82\x3f\x8f\x0b\x73\xd9\x4d\x41\x1e\x76\x19\xdb\x7c\xfb\x66\x22\x75\xe7\x96\x31\x58\x0b\x57\xce\x55\xa7\xd6\xdc\xde\x1d\x94\xb3\xce\x26\x8d\x8d\x8c\x07\x05\xbe\xe6\x88\x36\xc2\x5c\x43\xdd\x4f\x45\x69\xfa\xe4\x0f\xb6\x4a\x03\x78\x9e\x4e\x8b\xc2\xbf\x54\xf9\x67\xd1\x1d\xb1\x5b\xdc\xc8\xbb\x6e\x16\xa4\x1d\x71\xa2\x66\x9e\xae\xbe\x23\x0e\x47\x27\xc6\x9d\x5a\x55\xab\xd2\xdf\x93\x3c\x9f\xf4\x60\xf3\x79\x43\xfe\xdf\xd9\x72\x81\x49\x31\x3e\x19\x86\xcf\xea\xa3\xcd\x45\x1a\x25\xdd\xc3\x4c\x97\x59\x31\xcd\xd5\xe1\xe9\x99\x2c\xc7\xdd\x06\x86\xab\xa6\x76\xda\xec\x19\xab\xf6\x4f\xce\x53\xba\x7b\x8c\x7f\x9e\xb2\x90\x50\x79\xe7\xa9\x8b\xd2\xc0\x2f\x06\x89\xf8\x07\xef\x06\x34\x97\x63\x9e\x7f\xbf\x3a\xfd\x12\x38\xfb\x2a\x65\xea\xe5\xef\x84\x8b\xdf\xc9\x77\x57\x53\x2f\x7c\x27\x17\x98\x76\xd1\x3b\xf1\x92\x77\x8f\x0b\xde\x69\x17\x98\xd3\x2e\x76\xf3\x2f\x75\x27\x5d\xe8\xee\x71\x4f\x99\x53\x0f\x49\x44\xa0\x18\x5c\x43\x14\x88\xc1\xf5\x5c\xb6\x69\x70\x31\x0b\xe1\x3c\xca\xe3\x3f\xc8\xe3\x1d\x51\x72\x1a\x8f\xc9\xe3\x4e\x7e\x7b\xc7\x3e\x0b\x8c\xb7\xcc\xb0\xef\xed\x38\x93\x5a\x12\x5f\xfb\x5a\x1f\xf3\xc1\xb5\x7a\x22\x98\xfd\x83\x59\x31\xfb\xc3\xb5\xc2\xe0\xea\x16\x0c\xae\x65\xd9\x44\xd7\x8a\xae\x9e\x5e\xb5\x7c\x5e\xf4\x21\x4f\x09\x89\x5c\xe8\x5b\x85\x36\xa5\x70\x52\x81\xe4\x60\x18\x43\x5b\x01\xc9\x01\x49\x40\x72\x40\xc9\x05\x92\x03\xa2\xc9\x20\x39\x48\xa8\x05\x7e\x6b\xbf\x51\x92\x83\x57\x0c\x3b\xb1\xb9\x9f\xb6\x07\x7b\x5a\x8b\x87\x95\xe0\xfa\x00\x77\x6a\x05\x5b\xe3\x4e\xc1\xd6\x78\x59\xbe\x26\xee\xc4\x75\x59\xfa\xba\x2b\x3d\x16\x69\x46\x85\x30\x33\x70\xdd\x13\x56\x2f\x67\x7f\x31\xaf\x25\xd9\xee\x08\xef\x36\x34\x6b\xa5\xe5\xb8\x20\x83\x2f\x9d\x64\x3c\x84\xc8\xdd\x0d\x4c\x04\x98\xc8\x20\x86\xb6\x02\x4c\x84\x24\xc0\x44\x28\xb9\x80\x89\x10\x4d\x06\x26\x02\x4c\x04\x98\xc8\xaa\x00\x13\x01\x26\x32\xb8\x71\xad\x00\x13\x79\x26\xc0\x44\x56\x73\x00\x13\xe9\x30\x13\x98\x48\x34\x03\x30\x91\x95\xa4\x03\x60\x22\xd1\x24\x11\x1a\xb1\xf0\xfb\x44\x11\xa3\x0d\x8b\xd6\x3c\x81\x62\x99\xe2\x5a\x45\x29\x28\xe3\xde\x16\x81\x52\xf9\x2b\x59\x42\xa1\x50\xe6\x4d\x4a\x84\x01\x10\xed\x28\x55\x31\x1d\xeb\xf2\xb0\x57\x6b\xd3\x68\x97\xbf\xfe\xb7\x51\x18\x51\xbf\x52\xe3\x47\x79\xf3\x28\xae\x5b\x9c\x27\x8f\xbf\xa8\x91\xc8\xd0\x78\x24\x68\x0c\xf2\xb3\x0d\x25\x3d\xeb\x41\x76\x46\x5a\x0d\x28\x3c\x77\x68\xca\x57\xd0\x94\xd1\x24\x44\xf2\x39\xca\xe8\x4f\x21\x9d\x8b\xaf\xf3\x82\x41\x36\x47\xa6\xc7\x8b\x93\xcc\x11\x1d\x4f\x86\x8b\x47\x75\x36\x29\xa4\x72\x2f\x65\x1d\xed\x34\x8c\x44\x20\x47\x6b\x79\x12\x71\x1c\xe9\x33\xf9\x84\x71\x34\x0b\x69\x44\x71\x54\xe2\x12\xda\xdc\x47\x25\x87\x63\x7c\x41\x8c\x14\x6e\xd8\x0f\xa0\x13\xc1\x91\xf9\xd1\x29\x04\x70\xe4\xf1\x40\x21\x7e\x23\x2b\x6b\x12\x0e\xa5\x8c\x42\xf4\x46\x54\x46\x1a\xcc\x74\x72\x37\x6a\x4b\xf1\x49\xdd\xc8\x95\x93\x46\xe6\x46\xef\x15\x1c\x12\xb7\xe1\x1a\x21\x9a\x84\x40\x5a\x15\x59\x30\x68\x6d\x47\x21\xaa\x22\x7e\x76\x14\xd0\x25\xea\xa1\x81\xb5\xd4\xb6\xe0\x11\x52\xd1\xc9\xa8\xa8\x1e\x2d\x81\x84\x8a\xf4\x29\xe4\x4e\xe5\x5b\xef\x83\x0a\x1a\xc2\x9b\xce\xb5\x3d\xd6\x8d\x32\xd9\xc7\xbf\x9c\xc9\x69\x31\x0c\x3b\x72\x9e\x5b\x55\x47\xfd\x27\xf2\xbc\x90\x29\xeb\xf6\xae\xa4\x2e\x4f\xa5\xbb\x1a\x54\xeb\xa0\x0a\x07\x67\xee\xbf\x56\x77\x83\x1a\x38\xe8\xaa\xdb\xf4\x96\x83\x72\x16\x44\x8e\x98\x5a\x87\x03\x3e\x77\x4b\x59\xdc\xd5\xda\xdb\x07\xe3\x8d\xd0\xea\x39\x77\xd2\x4d\x7b\x6b\xe9\x01\xc3\xaa\xdb\xca\xd4\xea\x2f\xea\xf2\xca\x98\xeb\x50\x00\x27\x8a\xaa\x96\xc8\xf3\xd0\x3b\xbf\x08\xe2\x20\x1f\x28\xf0\x60\xb4\x2d\x27\xd3\xc2\xe9\x7b\x36\xcb\xf3\x69\x15\x0a\xcd\x15\x2f\xaf\x55\x66\x4a\x67\x4d\x71\x5a\xc8\x52\xf5\xd4\x18\xb4\xfe\xb7\x1b\x97\xc6\x3e\xe7\xae\xb4\xcd\x77\x2a\x69\xdd\xdd\xce\x6f\x37\xdd\xd5\xb2\x23\x46\xda\xd6\x2e\x98\x2a\x38\xe2\x0a\x93\xc9\x42\xbb\xbb\xa3\x8f\x29\xab\x4c\xae\xe7\x6a\x2f\xa7\xce\x3b\xec\x07\xf1\x86\x46\xd6\x44\xae\x3c\x92\xdd\x8e\xe8\x72\xc5\x3e\x08\xe4\xdc\x0b\xa1\xe3\x6d\xa4\x1d\x43\x6f\xe7\x63\x80\x59\x69\x24\x75\x61\x66\xfe\x9d\xd2\xeb\xea\x00\x1b\xe0\xf3\x15\x66\x3c\xd6\xe5\x38\x65\x38\x06\x77\xe6\x4b\xa0\xec\x2f\x72\xe7\x6f\xbb\x3b\xff\xf7\xd7\xef\x3e\x3c\xfc\xdf\xef\xff\xf4\xed\x77\x3e\xf4\x34\x52\x29\xc1\xaf\x99\xa8\xfa\xea\xe0\xb6\x92\x65\xed\x81\x27\xc3\x3d\x6c\x9e\xfd\x70\xdf\x9f\xcf\x63\xd4\x3c\x9b\x7f\xd2\x8d\x55\xe3\xc4\x15\xf5\xb1\xc9\xbd\x73\x5a\x98\x78\x79\x47\x9c\x5f\x9c\x1d\xee\x5d\x04\x12\x9c\x1e\x9c\x1d\x1f\x9e\x9f\x1f\x7e\x39\x08\x24\xda\x3f\x3c\xdf\xfd\x78\x74\xb0\xbf\x8e\x46\xd1\xb7\xdd\x03\x36\x4a\xa0\xf9\x30\x3f\xce\x57\x4f\xa9\x4b\x65\x77\xed\x38\x75\x2b\x4c\x3e\xd7\xf3\x4f\x5f\x8f\x06\x1d\x94\xb3\x2f\xd2\xae\x77\x57\x1e\x8f\x72\x4a\x9c\x86\x86\xda\x7d\xde\x6b\xfa\x14\x9d\x1e\xe9\xb7\xc1\x32\x53\x8e\xf4\xf8\x58\x56\x3f\xa9\xbb\x33\x45\x88\x8d\xc4\xbb\x68\x46\xbe\x5e\xc6\xbc\x61\x42\x0b\x40\x9b\xa0\xd8\x54\x6d\xff\xe2\x28\xa7\xec\xe8\x04\xfb\x22\x0a\xe5\x9a\x16\xe3\x02\xca\x48\xab\x22\x5f\x43\x0b\xcb\x4a\x7f\x51\xd6\x37\xdd\xfb\x4c\x26\xb7\x47\x63\x36\x65\x2f\x9c\xa0\x9d\xd7\x1e\x0f\x96\x0c\xd9\x2a\x8b\xcb\x01\x9f\xd6\xd4\x3a\xd9\x62\xde\xa6\x46\xc7\x60\x37\x50\xae\x67\xba\xa6\xde\xe9\x44\xfc\xb5\x97\x89\xbf\xb6\xe8\x66\x2f\x3e\x88\x16\x86\x0c\x39\x86\xea\x86\x38\x1d\xeb\x57\x23\x5b\xba\x7e\x91\xef\xd6\xc4\xec\xdb\x69\xaa\x7e\x9d\x5b\x6c\xb0\xce\x73\xad\x5b\xb6\x11\xac\xf3\xbc\x0c\x78\x8e\xe1\x11\x3c\xc7\x58\x96\xaf\xf9\x1c\x03\xd4\xa8\x18\x5c\xb1\xac\x18\x5c\xdc\x7a\x60\x16\xf2\x8a\x9f\xba\x82\x75\x3e\xf6\x31\x60\x9d\xc7\xec\xff\x54\x30\xfb\x3f\x97\x6d\x9a\xfd\xe1\x5a\x3d\x0a\x06\x57\x30\x2b\x06\xd7\x9a\x5d\x2b\xba\x7a\xb0\xce\x6f\x2e\xda\x04\x86\xb5\x15\x01\xc3\xda\x3a\x0b\x06\xc3\x1a\x4d\xc0\xb0\xd6\x29\x60\x58\xf3\x08\x18\xd6\xc0\xb0\xe6\x11\x30\xac\x81\x61\xcd\x2f\xd8\x1a\x0f\x51\x20\xb6\xc6\xcf\x65\x9b\xb6\xc6\x60\x58\x7b\x14\x30\xac\xf9\x64\xbb\x18\xd6\xc0\x3a\x0f\x4c\xe4\x5e\x80\x89\xac\xb3\x60\x60\x22\x34\x01\x26\xd2\x29\xc0\x44\x3c\x02\x4c\x04\x98\x88\x47\x80\x89\x00\x13\xf1\x0b\x30\x91\x21\x0a\x04\x26\xf2\x5c\x80\x89\x00\x13\x11\xc0\x44\x3c\xb2\xf9\x98\x48\x34\x49\x76\xa5\xb2\xeb\xfa\xa0\x37\xe9\x11\xc8\xeb\x1f\x54\x6c\x8a\x25\x43\x52\x31\x6d\x28\x13\x3e\x58\xec\x63\xbd\xc0\xaa\x79\xc3\x7f\x9c\x2f\x7c\xc7\xf2\xf6\xa0\x74\x36\xf0\xf5\x14\x9b\xb8\x45\x5e\x68\xff\x8b\xd9\x68\x5d\x83\x83\xbf\x53\x36\xf4\xe1\x3b\x38\xf8\x57\x52\xa3\x29\x13\x93\x80\x83\xbf\x5b\xc0\xc1\xef\x4f\x05\x0e\xfe\x65\xbd\xe0\xe0\xe7\x7f\x00\x38\xf8\x53\x95\x81\x83\x9f\xa5\xfa\x4d\x70\xf0\xd7\x2d\x8c\xbd\x38\x88\xe8\x0d\x31\xd4\x2e\xd7\x66\x37\x97\x95\x53\xb6\xb7\x32\x04\x08\x40\x80\x80\x8e\x44\xeb\x22\x8b\x6d\x98\x3c\x0b\x55\xd7\x17\xaa\x50\x13\xe5\x6c\x12\xe1\x69\x4f\x90\x2d\x6c\xe1\xdc\x9d\x39\x76\x45\xbd\xa7\x6c\xf7\x0e\x2b\xac\x7e\xe2\xba\x31\xf5\x48\xae\x69\xe1\xf4\xb1\xaa\x3b\x59\x02\x89\x59\x83\xb4\xb5\x51\x66\x6c\x33\x91\x3a\x7d\x0e\x78\xd8\xbc\xfd\xb2\x23\x77\xfe\xf6\xfd\xce\x1f\xdf\xff\xea\xa5\xe7\x65\x40\x4b\x6b\xe4\x81\x56\xe5\xcc\xdc\x7d\xd2\x45\xff\x49\x34\xd8\x9d\x4a\xe5\x6e\x8c\xbd\xf6\x2d\x49\xc1\x9a\x68\x48\xb4\xc6\xaa\xdb\xbb\x8e\x52\xdf\x82\xc5\x8b\x69\xdd\xb2\x8d\x60\xf1\xc2\xf1\xf6\x53\xc1\xf1\xf6\x6a\x8e\x0d\x3f\xde\x06\xd5\x04\x06\x57\x2c\x2b\x06\x17\xb7\x1e\xde\xce\xd5\x41\xb0\x78\xc5\x3e\x06\x2c\x5e\x98\xfd\x9f\x0a\x66\xff\xe7\xb2\x4d\xb3\x3f\x5c\xab\x47\xc1\xe0\x0a\x66\xc5\xe0\x5a\xb3\x6b\x45\x57\x0f\x16\xaf\xcd\x45\x9b\xf0\x62\x75\x45\xf0\x62\x75\x9d\x05\xe3\xc5\x2a\x4d\xf0\x62\xb5\x53\xf0\x62\xd5\x23\x78\xb1\x8a\x17\xab\x1e\xc1\x8b\x55\xbc\x58\xf5\x0b\xb6\xc6\x43\x14\x88\xad\xf1\x73\xd9\xa6\xad\x31\x5e\xac\x3e\x0a\x5e\xac\xfa\x64\xbb\x5e\xac\x82\xc5\x0b\x98\xc8\xbd\x00\x13\x59\x67\xc1\xc0\x44\x68\x02\x4c\xa4\x53\x80\x89\x78\x04\x98\x08\x30\x11\x8f\x00\x13\x01\x26\xe2\x17\x60\x22\x43\x14\x08\x4c\xe4\xb9\x00\x13\x01\x26\x22\x80\x89\x78\x64\xf3\x31\x91\x68\x92\x17\xa6\xdf\x02\x3b\x14\xc7\x2e\x90\x1a\x75\xca\x9b\x64\xc2\x01\xa9\xd1\xd6\x34\x65\x34\x09\x48\x8d\xba\x05\xa4\x46\xfe\x54\x20\x35\x5a\xd6\x0b\x52\x23\xfe\x07\x80\xd4\x28\x55\x19\x48\x8d\x58\xaa\xdf\x04\xa9\x11\x78\x83\xc0\x1b\xd4\x91\x68\x5d\xbc\x41\x66\xea\x2e\xcd\xb4\xcc\x2f\xac\x1c\x8d\x74\x76\x6a\x0a\x9d\x25\x51\x07\x4d\x4c\xee\xfd\x5a\x55\x4e\x03\x8b\xf3\x8e\xd8\x3d\x3a\xfa\xfc\x97\xbf\xee\x9e\xfc\x67\x20\xcd\xd9\xc1\x8f\x87\xe7\x17\x67\xff\xf9\xd7\xcf\x27\x47\xbe\x74\x91\xfa\x0c\x56\x44\xa5\x8b\xee\xf5\x37\xca\x07\xf3\xb0\x75\x9a\xbb\xdd\x52\x97\xca\xee\xda\x71\xea\xe0\x25\x6f\xff\xfd\xde\xdd\xa3\x41\x07\xe5\xec\x8b\xb4\xeb\x9d\x47\xca\xe8\xf4\x49\x1c\xb0\x43\x8d\x97\x7b\x4d\x9f\xac\x89\xdc\x70\xa1\x1f\x6e\x64\xa6\x1c\xe9\xf1\xb1\xac\x7e\x52\x77\x67\x2a\xba\xeb\xe5\x9e\x9b\x90\x4f\x4b\x98\x80\x69\xbc\x69\x12\x15\x9b\xaa\xed\x5f\x1c\xe5\x31\xc7\x75\x21\x3c\x5c\x95\x72\xea\xc0\xc0\x53\x47\x5a\x15\xf9\x1a\x5a\x58\x56\xfa\x8b\xb2\x3e\x0a\x31\x9f\xc9\xe4\xf6\x68\xcc\x3e\x95\xae\x93\xe4\xac\xa7\x76\x5e\x7b\x3c\x58\x32\x64\xab\x2c\xe0\xcc\x4f\x6b\x6a\x9d\x6c\x31\x6f\x53\x5c\xc1\x65\xeb\xc9\x0d\x94\xeb\x99\xae\xa9\x47\x94\x24\x64\x6d\x21\x3c\x84\x6d\x35\x17\xe3\xec\x65\x43\x11\xb7\x85\xf4\x40\xde\x16\xb2\xe8\x66\x2f\x3e\x88\x16\x86\x0c\x39\x86\x6a\x95\x59\xe5\xb0\x7e\x35\xb2\xa5\xeb\x17\xf9\x34\x20\x66\xdf\x4e\x53\xf5\xeb\xdb\x91\x80\x44\x91\x6f\xdd\xb2\x8d\x20\x51\xc4\xed\xa2\xa7\x82\xdb\x45\xab\x39\x36\xfc\x76\x11\x98\x7e\x30\xb8\x62\x59\x31\xb8\xb8\xf5\xf0\x76\x6e\x6e\x83\x44\x31\xf6\x31\x20\x51\xc4\xec\xff\x54\x30\xfb\x3f\x97\x6d\x9a\xfd\xe1\x5a\x3d\x0a\x06\x57\x30\x2b\x06\xd7\x9a\x5d\x2b\xba\x7a\x90\x28\x6e\x2e\xda\x04\xc2\x80\x15\x01\x61\xc0\x3a\x0b\x06\x61\x00\x4d\x40\x18\xd0\x29\x20\x0c\xf0\x08\x08\x03\x40\x18\xe0\x11\x10\x06\x80\x30\xc0\x2f\xd8\x1a\x0f\x51\x20\xb6\xc6\xcf\x65\x9b\xb6\xc6\x20\x0c\x78\x14\x10\x06\xf8\x64\xbb\x08\x03\x40\xa2\x08\x4c\xe4\x5e\x80\x89\xac\xb3\x60\x60\x22\x34\x01\x26\xd2\x29\xc0\x44\x3c\x02\x4c\x04\x98\x88\x47\x80\x89\x00\x13\xf1\x0b\x30\x91\x21\x0a\x04\x26\xf2\x5c\x80\x89\x00\x13\x11\xc0\x44\x3c\xb2\xf9\x98\x48\x34\x49\xa6\xac\x3b\xb5\x66\xa6\x73\x3f\xef\x4b\x8c\x2b\xe1\xf1\x99\x63\x20\x91\xae\x9d\x36\x79\xd0\xcc\x40\x0b\xb5\x5c\x8f\xa7\xd6\x38\x93\x99\xe2\xbc\xd4\x73\xf7\x66\x7c\x58\x36\x44\x11\x3e\xdb\xe2\xaf\xe4\xba\xd5\x7e\xbe\x27\xa0\xe8\xab\xf7\xc5\xa8\x29\x27\xf2\xf6\x4c\x55\x85\xce\xa4\x77\xcc\x52\x1c\xd6\x89\x2e\xf5\x64\x3a\xf9\x20\xbe\x0f\x1a\x12\xf2\x61\x27\xba\xdc\x10\x4b\x40\xd7\xc9\xb1\xcb\xb6\x8d\xb6\x17\xa2\x46\xfb\x4a\x0d\x07\xe6\xd0\x4e\xd9\xd0\xc7\xef\x60\x0e\x5d\x49\x8d\xa6\x4c\x4c\x02\xe6\xd0\x6e\x01\x73\xa8\x3f\x15\x98\x43\x97\xf5\x82\x39\x94\xff\x01\x60\x0e\x4d\x55\x06\xe6\x50\x96\xea\x37\xc1\x1c\x5a\xeb\x5c\x65\xd2\xdb\x2d\xe2\xb3\x40\x5d\xe9\xd1\xc8\xfb\x45\x94\x86\x5d\xa0\x91\x07\x65\x5e\x19\x5d\x86\x3d\x47\x6a\x4f\x89\xec\xef\x17\x42\x9b\xe5\x86\xa9\x6a\x90\xb4\x82\xa4\xb5\x23\x51\x2f\x4a\x24\x67\x65\xa6\xce\xe5\xa4\x2a\xe6\x4e\x7f\x50\x49\x39\x9d\x5c\x76\x7e\x56\xd0\x8c\x2a\x99\xdb\x15\x8c\xa2\x60\x14\x6d\x04\x8c\x6c\x4b\xe5\x83\x51\x34\x4d\x3b\x18\x45\xfd\xd6\x83\x51\xf4\xc5\x91\xb8\x85\x80\x51\x34\x9c\x14\x8c\xa2\x4b\xb2\xa5\xeb\x17\xf9\x94\x00\x8c\xa2\xdd\xe9\x5e\xc1\x7b\x06\x30\x8a\xe2\xaa\x5d\x87\xe0\xaa\xdd\x6a\x8e\x0d\xbf\x6a\x07\xda\x2b\x0c\xae\x58\x56\x0c\x2e\x6e\x3d\xbc\x9d\x67\x0c\x60\x14\x8d\x7d\x0c\x18\x45\x31\xfb\x3f\x15\xcc\xfe\xcf\x65\x9b\x66\x7f\xb8\x56\x8f\x82\xc1\x15\xcc\x8a\xc1\xb5\x66\xd7\x8a\xae\x1e\x8c\xa2\x9b\x8b\x36\x81\x3d\x63\x45\xc0\x9e\xb1\xce\x82\xc1\x9e\x41\x13\xb0\x67\x74\x0a\xd8\x33\x3c\x02\xf6\x0c\xb0\x67\x78\x04\xec\x19\x60\xcf\xf0\x0b\xb6\xc6\x43\x14\x88\xad\xf1\x73\xd9\xa6\xad\x31\xd8\x33\x1e\x05\xec\x19\x3e\xd9\x2e\xf6\x0c\x30\x8a\x02\x13\xb9\x17\x60\x22\xeb\x2c\x18\x98\x08\x4d\x80\x89\x74\x0a\x30\x11\x8f\x00\x13\x01\x26\xe2\x11\x60\x22\xc0\x44\xfc\x02\x4c\x64\x88\x02\x81\x89\x3c\x17\x60\x22\xc0\x44\x04\x30\x11\x8f\x6c\x3e\x26\x12\x4d\x92\x5d\xa9\xec\xba\x3e\xe8\xcb\x80\x09\x0a\xcd\x47\x15\x1b\x62\x09\x28\x34\x39\x76\x81\x42\x13\xbc\x8b\x1b\xc8\xbb\x08\x0a\xcd\xad\x69\xca\x68\x12\x50\x68\x76\x0b\x28\x34\xfd\xa9\x40\xa1\xb9\xac\x17\x14\x9a\xfc\x0f\x00\x85\x66\xaa\x32\x50\x68\xb2\x54\xbf\x09\x0a\x4d\xf0\x3a\x82\xd7\xb1\x23\x51\x0f\x62\x9a\xa0\x82\xca\x6a\xd3\xb8\x8c\x85\xac\x6b\xdf\x50\x08\xda\x59\x59\x73\x9b\x46\xe9\x98\x65\xaa\xae\x8f\xcc\xf8\xa0\xcc\x4c\x1e\x60\x9c\x8c\xc5\xa3\xf9\xdf\xe7\x9f\x4f\x02\x3f\x5f\x1c\xfc\x9f\x8b\x54\x58\xe8\xc1\xc6\xb9\x97\x91\x6a\xdf\xef\x7e\x17\xf8\xf1\x0f\xb9\x9a\xfd\xa1\x76\xb9\x99\x86\x5b\x97\x64\x64\xdb\x89\x53\xf5\x64\xc5\xb4\x76\xca\xee\x9b\x89\xd4\x5e\x47\x3f\xae\xc5\x4c\x2a\x53\xaa\xd2\x1d\x99\xf1\x51\x68\x21\x27\x68\xb2\x6a\x7f\x3a\xa9\xf6\xb5\x6d\x30\x28\xef\x2c\x43\xd6\x74\xd8\x0b\x23\xcc\xcb\xfa\x4c\x8d\xac\xaa\xaf\xce\xa4\xf3\x93\x14\x3f\x6c\x4d\x9b\x6d\xe3\xdf\x7f\xf8\xfd\xbf\xfd\xb3\xf6\x6d\x1b\xa3\x65\xb6\xb0\xe8\xde\xbd\xfd\x7d\xe0\xd5\x99\xb9\xdb\x5d\x74\x94\x73\x65\x67\xda\x4f\xb7\x44\x59\x41\x08\x94\xc8\x34\x8f\xf5\xca\xd4\xfd\x37\x04\x95\xb1\x41\x25\xd4\xd3\x75\xda\xe4\xee\xb2\xea\x27\xa5\x2a\x59\xe8\x59\x70\x86\xa7\x7a\x51\xf3\xf2\xec\x2c\x4e\xdd\x46\x87\x47\xac\xb9\x8c\x1f\xcc\x70\xae\x1c\xd0\x71\x1c\xa7\xbf\xa6\x3f\x25\x84\x2b\xea\x73\xe5\x9c\x2e\xc7\x83\x78\xb4\x99\xdc\x9b\x27\x1b\xe9\x4c\xba\x78\x15\x92\x5b\x24\x2b\xb4\x2a\xdd\x92\xea\xc1\x34\x4f\x4c\x1e\x55\x16\x5e\xa1\x16\xb2\x23\xf6\x0f\xcf\x77\x3f\x1e\x1d\x10\x52\x9e\x1f\x1e\x9f\x92\x12\x1e\xff\x7c\xf1\xf3\xee\x11\x21\xe1\xe1\xf9\xc5\xe1\xe7\xbf\x92\x92\x33\xc6\x81\x9e\x49\xa7\x08\xe7\x7c\x64\x95\x75\xa9\x87\xd3\x35\x6d\xba\xf6\x6e\xe1\xe6\x9e\x57\xb4\xb3\x6d\x30\x50\x14\x4d\xd2\xac\x3f\xc7\xca\x59\x9d\xd5\x58\x7d\x82\x85\x61\xf5\xf1\x14\x8d\xd5\x27\xed\x43\xb0\xfa\xc4\x13\x62\xf5\xd9\xfa\xd5\xe7\xdc\x49\x57\xef\x63\xd5\xe9\x2e\x2c\x3c\xb9\x46\x6b\xf8\xca\x14\xf9\x6e\xd5\xdc\x80\x70\xda\x94\x3f\x97\x4e\x17\xa7\xd6\xdc\xce\x6b\xdd\xfa\xcf\x9e\xd7\x7d\xad\xa7\xd0\x23\x95\xdd\x65\x7e\xec\x86\xd2\xec\x95\xa9\x5d\xf3\x19\x43\xcc\xf0\xea\x36\x8e\x91\x73\x2e\xd7\x66\x66\x32\x91\xfe\xd8\xc5\xcb\xc2\xb8\x82\xc7\xbc\x80\x47\xbf\x7e\x47\xbe\xc2\x76\xe5\x5c\xf5\xa3\x8a\x5e\x9e\xe7\x54\x55\x6c\xd4\x3d\xb5\x91\xf8\xf1\x73\x3b\xff\xac\x64\xae\xfc\x21\x69\x96\x65\xad\x5c\x8c\x74\x6e\x79\x91\x76\xad\x94\x80\x69\xf7\x2a\x81\xff\x82\x23\xc8\xe9\xbe\x9a\xb8\x31\x9f\xd1\xff\xd7\x40\x0c\xd6\xe0\x83\xa4\x90\x26\xac\xca\x8b\xad\x05\x0b\x61\x84\xe1\x48\x09\xc2\xc1\x0e\xc1\xd1\x3b\xc2\x45\x9d\x5d\x29\x5a\xa7\x67\x58\xc6\x61\x6f\x9b\xd7\xfc\x50\x73\x9e\xcb\xaa\x73\x93\x5d\xbf\x82\x59\xef\x8d\xf6\xb7\x97\xe9\x18\xc4\x8b\x3a\xea\xdc\x85\x2f\x1b\xc1\x45\x81\x8b\x02\x17\xa5\x67\x09\x70\x51\x56\x75\x62\xc9\x08\x0b\x5c\x94\x98\x89\x70\x51\x96\x64\x5b\x5d\x94\x68\x92\x22\x72\x5f\x24\x76\xcd\xa6\x89\x5e\x1b\xf8\x3d\x57\x97\x53\x7f\x03\xec\x08\x5d\x8e\x4c\xe0\xe7\x1b\x69\xcb\x50\x0b\xee\x08\x65\x6d\xe0\xcd\xea\x8e\xc8\xac\x76\x3a\x93\x45\x20\xc9\xef\xcc\x68\xe4\xbb\x2d\x14\xed\x47\xf1\xbb\xda\x71\xb8\xad\xb2\xc6\x99\xcc\x14\xfb\xca\xa9\xcc\x69\x53\x5e\xe8\x89\x32\xd3\xf4\x4b\x45\x78\x8b\xd4\x29\x6f\xf2\x01\x0b\xde\x22\x6d\x4d\x53\xe2\x2d\x52\xa7\xa5\x78\x8b\x94\x66\x1d\xde\x22\x3d\xd7\x8b\xb7\x48\xfc\x0f\xc0\x5b\xa4\x54\x65\x78\x8b\xc4\x52\xfd\x26\xde\x22\x4d\x6b\x75\xac\x9c\xcc\xa5\x93\x07\xb7\xd9\x95\x2c\xc7\xea\x93\x2e\x9c\xbf\xa3\xc4\xe6\x85\xc8\x53\x14\x73\x7b\x77\x58\xea\xce\x99\x27\xd6\x09\xfa\x5c\x13\x88\x5b\xf5\x17\x59\x77\xce\xe8\x31\xab\x7a\x92\x9a\x04\x0d\xab\xbb\x9f\x34\xc5\x4c\xca\xa6\xb5\x33\x93\x0b\x73\xad\xca\xfe\xef\x2a\x7a\x93\xb6\xb8\xb9\x1d\xbb\xd3\x5c\x87\xa2\x3f\x47\xcd\x98\xe6\xf5\x69\x00\xb2\xec\xd3\xfc\xb5\xce\x55\x26\xed\x61\xf9\x9b\x97\x06\x25\xfa\xce\xe9\x61\x3f\x33\xf7\x85\xa5\x2e\x95\xdd\xb5\xfe\xeb\x82\x11\x17\x8c\x30\xfc\x63\x2e\xd7\xa3\x41\x07\xe5\xec\x8b\xf4\x9f\x0a\x0c\xf2\xd0\x30\x8e\xf8\x13\x67\xb4\xa1\x1e\xd4\xdd\x6b\xfa\x64\x4d\xe4\x56\x22\x1d\xc2\xcc\x4c\x39\xd2\xe3\x63\x59\xfd\xa4\xee\xce\x14\x01\x4d\xe4\x1d\x9c\x90\x49\xf3\x98\x50\x23\xfd\x30\x86\xa9\xd8\x54\x6d\xff\xe2\x28\x8f\x79\x93\x0b\xe1\xd1\x6b\x51\xc8\xe7\x18\x27\x29\x23\xad\x8a\x7c\x0d\x2d\x2c\x2b\xfd\x45\xd9\x9a\xc0\x4e\xb9\x6c\x32\xb9\x3d\x1a\xb3\x43\x53\x64\x0f\xed\xbc\xf6\x78\xb0\x64\xc8\x56\x59\x60\x8c\x9f\xd6\xd4\x3a\xd9\x62\xde\xa6\xf8\x67\xcb\xd6\x93\x1b\x28\xd7\x33\x5d\x53\x99\x2a\x19\x27\x16\x69\x67\x16\x09\xa7\x16\x1b\x0b\x83\x2d\xa4\xf7\x31\xde\x63\x37\x7b\xf1\x41\xb4\x30\x64\xc8\x31\x54\xab\xcc\x2a\x87\xf5\xab\x91\x2d\x5d\xbf\xc8\x10\x7d\xcc\xbe\xc8\xa5\x06\xf2\xde\x33\xe0\xa3\x46\x22\x70\x50\x3a\x60\x69\x72\xf5\xe6\x22\x79\x3c\xc4\xd0\x5f\xd7\x0d\x1e\x90\x4c\x3f\x11\x90\x4c\x07\xb3\x82\x64\x9a\x5f\x0f\x08\xf8\xbe\x10\x0c\xae\x60\x56\x0c\x2e\x6e\x3d\x30\x0b\x79\xc5\x01\x3c\x1e\xfc\x00\x52\xf2\x6d\x89\xdd\xc1\x99\xd4\x9e\xc5\xdd\xa7\xd4\xec\x5a\x2f\x47\xc3\xb5\x7a\x22\x98\xfd\x83\x59\x31\xfb\xc3\xb5\xc2\xe0\xea\x16\x0c\xae\x65\xd9\x44\xd7\x8a\xae\x9e\x73\xa3\xfd\xd9\x9a\x4e\xf2\x52\x06\x7a\x81\xf7\x18\x33\xed\xcd\xa0\x4d\x88\x1b\xbb\x22\x88\x1b\xbb\xce\x82\x11\x37\x96\x26\x88\x1b\xdb\x29\x88\x1b\xeb\x11\xc4\x8d\x45\xdc\x58\x8f\x20\x6e\x2c\xe2\xc6\xfa\x05\x5b\xe3\x21\x0a\xc4\xd6\xf8\xb9\x6c\xd3\xd6\x18\x71\x63\x1f\x05\x71\x63\x7d\xb2\x5d\x71\x63\xef\x03\x75\x3a\x0d\x4c\x84\x20\xc0\x44\x86\x31\xb4\x15\x60\x22\x24\x01\x26\x42\xc9\x05\x4c\x84\x68\x32\x30\x11\x60\x22\xc0\x44\x56\x05\x98\x08\x30\x91\xc1\x8d\x6b\x05\x98\xc8\x33\x01\x26\xb2\x9a\x03\x98\x48\x87\x99\xc0\x44\xa2\x19\x80\x89\xac\x24\xfd\x1a\x71\x4a\x64\x71\x23\xef\xea\x96\x6c\x20\xb6\xc0\x0d\xf2\x38\x9f\xb7\xca\x91\xfa\x1d\x67\x35\x23\xae\x60\xac\x2e\xc3\x59\xa9\x58\x8a\xe9\x2b\xd2\x26\xb0\x58\x73\x6e\x4d\x51\x56\x15\xf2\x4a\xc2\x7c\x8d\x18\xfb\x16\xf2\x2a\x91\xb2\x32\x90\x6b\x9f\xf4\x51\x43\x3c\x7b\x9c\x3a\xd3\x0e\x7f\x6d\xca\x53\x53\xe8\xec\xee\xa0\x2f\xc7\x4a\x4b\xd2\x72\xf2\xb0\xc6\x7c\xbc\xdb\x57\x23\x39\x2d\x22\x9c\x9e\x71\x95\x3d\x6c\xea\x17\xd5\x47\x7b\x48\x82\x04\x71\xfa\x89\x72\x92\x52\x15\x09\x12\x37\xa9\x48\xf6\x5b\xc8\x2f\xfd\xf9\xaf\xfc\x99\x2f\xfc\x37\xf8\x75\x7f\xcf\x97\xfd\xe4\xf9\x8a\xc2\x5d\x2a\xd0\xd4\xaf\xbf\xa9\x87\xf0\xe4\xe6\x53\xd4\xde\xc9\xe1\x5e\x43\x0c\x34\xb5\x41\xbe\x52\x12\x07\xea\x80\xa7\x68\xd4\x77\xf1\x1c\x9d\x62\xf8\xd3\x39\xb1\xee\xe7\x56\xdc\xb7\xf2\x69\xa5\x08\x9c\x9f\x51\x04\xe7\x67\xec\xec\x38\x3f\xf3\x67\x4c\x3a\x3f\xe3\x3e\x0c\x13\x18\x9c\x6b\x2e\x18\x83\x93\x26\xdb\x3c\x38\x13\x0a\xe3\x1c\x16\x8a\xa4\x03\x43\xc1\x3e\x34\x14\x49\xa7\xaa\xac\x77\xfc\x82\x73\x76\x28\xd6\xf9\x66\x6f\xe8\x73\x44\x91\x30\x69\x26\xbd\xef\x17\xfc\xa9\x03\x2e\xa1\x5f\xb0\xea\x90\x05\xab\x4e\x4c\xe0\x12\x7a\x04\x83\x93\x24\x18\x9c\x94\x5c\xaf\x61\x70\x26\x14\xc6\x2b\x86\x57\xed\x7c\xde\x01\x91\x72\x02\x4d\x48\x4a\xe4\x20\x10\xdb\x8e\xec\xa5\xdc\xc1\x4f\x2b\x4a\xa4\xdf\xc5\x4f\x2f\x50\xf4\x76\x20\x45\x9f\xf9\xb0\xcf\x5a\x25\xd2\xd7\x2b\xd1\x7f\x22\xee\xb7\x6e\x0d\x62\x40\xfa\xfa\x25\xfa\xad\x61\x62\x08\xeb\xfb\xac\x65\xa2\xd7\x7a\x26\x92\xd7\x34\xd1\x67\x5d\x13\x7d\xd6\x36\xd1\xab\xbe\x92\xef\xf4\x8b\x81\xee\xf5\x8b\xbe\x3d\xa6\xa7\x53\xc0\xce\x98\x72\xcf\x5f\xa4\x8e\xaa\x9e\xaf\x1e\xb8\x3d\x22\xe9\xde\x7f\xb2\x9d\x29\xe3\x94\xff\x06\x40\xbc\x79\x78\x8f\xfd\x36\x40\x6c\x35\xc6\xb7\x56\xaf\x10\x4f\x26\xfd\x02\x08\x81\x24\x80\x10\x28\xb9\x5e\x03\x84\x80\x27\x93\x61\xc1\x93\xc9\x57\xff\x64\x92\x5e\x51\x2c\x7c\x89\xc8\xe9\x20\x80\x31\x0d\x55\x94\x00\xc6\xc4\x16\x60\x4c\xc0\x98\x80\x31\x45\x05\x18\x13\x30\xa6\xa5\x5c\xc0\x98\x16\x02\x8c\x09\x18\x13\x30\xa6\x81\x0c\x6d\x05\x18\x13\x49\x80\x31\x51\x72\x01\x63\x22\x9a\x0c\x8c\x09\x18\xd3\x2b\xc2\x98\x48\xc9\x2e\x75\xb9\xaf\x83\x73\x3a\xa9\x66\xb3\x2b\xa9\xcb\x70\x65\xc6\x9f\xb2\x8b\x36\x40\xfc\x68\x08\x83\x22\xef\xea\xe9\x06\xa9\xdb\xac\x98\xe6\x4b\x8f\xfe\x43\x2a\x09\x43\x8a\xd8\x51\x29\xbd\x21\xf8\xf4\x9f\x5c\x96\x2e\x37\xf6\x03\x0b\x33\x3e\x52\x33\x15\x0c\x1e\x4e\x2a\xce\xaa\x4a\x86\x3b\x15\xd5\x1b\xbb\xb4\xe6\x5a\x95\xa7\x26\x6f\x96\x22\xc2\x14\x45\x9e\x98\x9e\x6a\xfe\x32\x77\x7a\x06\xd3\x9d\xab\x42\x39\x75\x6a\xe2\xf7\xaf\x69\x83\x42\xd0\x46\x18\x4f\xe1\xd5\xf4\x72\xb0\x0f\x6e\x1e\x8d\x9b\xd2\xcd\x67\x25\x7b\x42\x08\x6e\x4f\xd6\xdc\x6c\x4b\x86\xad\x49\x27\xc7\x03\x99\x47\x23\x57\x91\xba\x0c\x6e\xc7\xa9\x63\x61\xe0\x1e\x30\x0c\x59\xc0\xfc\x27\x95\xef\x96\xa5\x71\x0d\x55\x80\xf7\x1b\x78\x7e\x21\xa1\x01\xc8\xc6\x3d\x74\xcc\xdd\x07\x13\x76\xed\xd8\x5b\x78\x64\xce\x25\x5b\xe6\x9f\x6b\x03\x86\x1d\x94\xb3\x2f\xd2\xa6\xda\x46\xeb\x49\x65\x74\x7c\x12\xbb\xff\x2c\x3e\x69\x72\x34\x7d\xb2\x26\x72\x18\x45\xdf\xc3\x67\x0d\x7d\xc5\xb1\xac\x7e\x52\x77\x67\x8a\x40\x4f\xc2\x83\x07\xc8\x80\x00\xd3\x4f\x8e\x37\x4d\xa2\x62\x53\xb5\xfd\x8b\xa3\x9c\x32\x97\x0a\x36\xd5\x1d\x65\xd3\xcc\x70\xe5\x47\x5a\x15\xf9\x1a\x5a\x58\x56\xfa\x8b\xb2\x35\x11\x99\x63\xb7\x47\x63\xf6\xa9\x74\x57\x6b\xd0\xce\x6b\x8f\x07\x4b\x86\x6c\x95\x05\x4f\xd5\xa7\x35\xb5\x4e\xc6\xf1\x35\x96\xad\x27\x37\x50\xae\x67\xba\xa6\xa2\x6f\x64\x0a\x24\x91\x44\x83\x24\xf8\x54\x48\x62\xb3\xe9\x90\x44\x7f\x4a\x24\xb1\xd4\xcd\x5e\x7c\x10\x2d\x0c\x19\x72\x0c\xd5\x2a\xb3\xca\x61\xfd\x6a\x64\x4b\xd7\x2f\x52\x42\x8a\x7d\x3b\x4d\xd5\x47\x9c\xd6\x5e\x04\x8f\xa5\x9a\x29\x0b\x82\xd7\x15\x61\x75\x63\x10\xbc\x36\x02\x82\xd7\xd7\x48\xf0\xba\xfc\x50\x78\x73\xf6\xf8\xcd\xb5\xce\x0d\xc4\x1e\xac\xaa\x0a\x9d\xc9\x3d\x33\xf5\x63\x3f\x94\x8b\x17\x13\x5d\xea\xc9\x74\xf2\x41\x7c\x1f\xb4\x24\xe4\x4b\x46\x39\x63\x29\xd3\x62\x9c\x2b\x96\xdf\xc9\x49\x5e\x33\xcf\x5b\x66\x78\xc9\x1b\xea\x1d\xf7\xf0\x8a\xc9\xce\x44\x8c\x0b\x16\x4d\xf9\x0a\x9a\x92\x30\x05\xdd\x58\xed\xd4\x6e\x55\xfd\xf9\xe2\xe2\xf4\xd4\x9a\xcb\x08\x6f\x75\xc8\x5f\xae\x55\x36\xb5\xda\xdd\xed\x99\xd2\xa9\xdb\x5e\x1c\xd6\xb2\x28\xcc\xcd\xa9\xd5\x33\x5d\xa8\xb1\x3a\xa8\x33\x59\x04\x49\x66\x69\x06\xce\x25\x93\x95\xbc\xd4\x85\x8e\xf5\x57\xaa\x1f\x28\xf3\xa8\x8f\x42\xf4\xa7\x18\xbe\x14\xd5\x8f\xca\xad\xa9\x36\xd5\x3a\xd2\x4c\x54\x2d\xba\xc0\x00\xa7\xc6\x95\x35\xd9\x71\x68\xad\x15\xf4\xa3\x4b\x99\x7f\x2e\x8b\xbb\x33\x63\xdc\x27\x5d\xa8\xfa\xae\x76\x2a\x08\x4b\xd3\x2c\xb4\xd3\x72\xb7\xfe\xd1\x9a\x69\xb0\xd1\x96\x5c\x82\x7f\xff\xd7\x68\x99\xb1\x89\xb4\x29\xf3\xc4\x94\xf3\x6f\x19\xe8\x0b\x7e\xae\x55\x70\xfb\x32\xec\x07\xd4\xea\x48\x97\xd3\xdb\xcf\x55\xd0\xbb\x13\x1c\xce\xfb\xd8\xf9\xb6\xe0\x8c\x07\x6b\x8a\xe1\x4e\x3a\x9b\x84\x43\x29\x9b\x46\xda\x89\xa1\x8c\x34\x98\x6f\x74\x99\x9b\x9b\x7a\xc0\x96\x1a\x4f\x6a\xb9\x67\x55\xae\x4a\xa7\x65\x71\x5e\xa9\x6c\xb0\xca\x79\xae\x7a\xd0\x23\xeb\x87\x81\x32\xa0\xd6\x21\x1c\x02\x67\x0a\x65\xc3\x1b\xa5\x41\x90\x1b\x35\x1a\xa9\x2c\x72\x01\x9d\xf8\xd9\x51\x14\x86\xa8\x87\x86\xbc\x50\xdb\xe2\xa1\x1e\xcf\x55\x66\xca\xd8\xd5\x04\xea\x94\x48\xbf\x53\x3f\xd4\xb9\x6b\x6f\x54\x20\xa8\xc0\xa9\x42\x4d\x94\xb3\x9d\x2d\x18\xeb\x49\x12\x27\xe2\x38\x11\x17\x38\x51\x78\x5a\x3e\x4e\xc4\xd3\xb4\xe3\x44\xdc\x6f\x3d\x4e\xc4\x5f\x1c\x28\x5a\x08\x4e\xc4\xc3\x49\x71\x22\xbe\x24\x5b\xba\x7e\xbd\xa2\x13\xf1\x58\x64\x2b\x4a\x07\xa4\x46\xb4\xa2\x76\xe6\x81\xb9\x48\xd6\x12\x05\x9d\x1b\xbd\x0a\x21\xd0\x5b\x61\x2f\x77\x0b\x41\x08\xf4\x60\x56\x84\x40\xe7\xd7\x43\x52\x88\x01\x0c\xae\x21\x0a\xc4\xe0\x7a\x2e\xdb\x34\xb8\x98\x85\x70\xe8\x3e\xf8\x54\x1f\xbc\x8d\x19\xcf\x6f\x64\x45\x88\x22\xb3\x7a\x30\xaa\x8f\xda\x32\xc3\x32\x79\x70\x26\xb5\xa4\x48\x50\x6b\xa5\x09\x81\x6b\xf5\x44\x30\xfb\x07\xb3\x62\xf6\x87\x6b\x85\xc1\xd5\x2d\x18\x5c\xcb\xb2\x89\xae\xd5\x7a\xae\xb4\x73\x23\x2e\x11\x8d\xa6\xdd\xb9\xa2\x45\x59\xda\x2a\xb4\x29\x85\xed\x16\xf4\x69\xc3\x18\xda\x0a\xe8\xd3\x48\x02\xfa\x34\x4a\x2e\xd0\xa7\x11\x4d\x06\x7d\x5a\x42\x2d\xf0\x5b\xfb\x8d\xd2\xa7\xbd\x62\xd8\x89\xcd\x2a\xbb\x3d\xd8\xd3\x5a\x3c\xac\x04\xd7\x07\xb8\x53\x2b\xd8\x1a\x77\x0a\xb6\xc6\xcb\xf2\x35\x71\x27\xae\xcb\xd2\xd7\x5d\xe9\xb1\x48\x33\x2a\x84\x99\x81\xeb\x9e\xb0\x7a\x39\xfb\x8b\x79\x2d\xc9\x76\x47\xd6\x78\x07\x8c\xe3\x82\x0c\xbe\x74\x92\xf1\x10\x62\x54\x20\x60\x22\xc0\x44\x06\x31\xb4\x15\x60\x22\x24\x01\x26\x42\xc9\x05\x4c\x84\x68\x32\x30\x11\x60\x22\xc0\x44\x56\x05\x98\x08\x30\x91\xc1\x8d\x6b\x05\x98\xc8\x33\x01\x26\xb2\x9a\x03\x98\x48\x87\x99\xc0\x44\xa2\x19\x80\x89\xac\x24\x1d\x00\x13\x89\x26\x89\x44\x21\x88\x3f\x34\x0b\x86\x51\x89\xd6\xfc\x44\xde\x9e\xb5\xdc\x7a\xde\xde\xf5\x95\x78\xf5\x26\xba\xdc\x10\x4b\x40\xcd\xc8\xb1\x6b\xa3\xa8\x19\x2b\x63\xdd\xc7\xf9\x22\x73\x2c\x6f\x0f\x4a\x67\x03\x5f\x4f\xb1\x89\x5b\xe4\x85\xf6\xbf\x4e\x8d\xd6\x35\x88\x25\x3b\x65\x43\x1f\x99\x83\x58\x72\x25\x35\x9a\x32\x31\x09\xb8\x20\xbb\x05\x5c\x90\xfe\x54\xe0\x82\x5c\xd6\x0b\x2e\x48\xfe\x07\x80\x0b\x32\x55\x19\xb8\x20\x59\xaa\xdf\x04\x17\x64\xdd\x42\xc6\x0b\xd0\xff\xa0\xef\xa6\x1e\xdc\x92\xe0\x96\xec\x48\xb4\x36\x6e\x49\x2b\xb3\xb9\xbb\xdb\x91\x2f\xd6\x8f\x72\xe9\x64\x6e\xbc\x11\x40\x49\x5e\x6b\x9e\x5b\x55\x87\x67\xb6\x87\x9d\xc3\x2f\xff\xfd\xe1\xd7\xef\x3e\x34\xbe\xfd\xdf\x7f\xf8\xfd\xbf\xfd\x33\xe4\xda\x0f\x01\x6f\xf4\xc6\xe7\x0a\x3d\xbe\x72\xb5\x53\x5e\xe7\x84\x54\x45\x59\xa6\xea\xfa\xc2\x5c\x2b\x82\x2f\x1f\xe9\x4a\x2f\x59\xdd\xf3\x8d\x44\xa6\xac\x8b\x11\x13\x92\x54\x35\x1b\x27\x42\x04\xe9\xb0\xf7\x15\x9f\xdb\x9d\xcc\xae\x73\xab\x67\xfe\x65\x9f\xd2\x84\xb9\xba\x9c\x06\x03\xe5\xd2\x5c\xc5\x89\xbc\x3d\x99\x4e\x2e\x95\xfd\x3c\x22\xc0\x81\x82\x71\x34\x4e\x9b\xd2\x96\xcb\x77\xce\xea\xcb\xa9\x0b\x2f\x31\x6b\x2b\xfe\x58\xd5\xb5\x1c\xab\x83\x99\x2a\xc3\x30\xc9\x90\x16\x44\x7b\xcb\x7c\x2a\xf5\x77\x14\x55\x4e\x03\x1b\x9e\x1d\xf1\x37\x5d\x5d\x6b\x7f\xe3\xef\x3c\xce\x26\x81\x34\xf7\x53\x72\x20\xc5\x52\x97\x0e\x7e\x67\x60\x00\xb6\x96\xbe\xd6\x69\x5f\x08\x57\xd4\xe7\xca\x39\x5d\xfa\x23\x17\x53\x3f\x44\x34\xd3\xda\xde\x3c\xd9\x48\x67\x32\x32\x1e\xc8\x16\x36\x6a\x0b\xad\x4a\xb7\xa4\x7a\x30\xcd\x13\x93\x47\x95\x85\x7b\xeb\x42\x76\xc4\xfe\xe1\xf9\xee\xc7\xa3\x03\x42\xca\xf3\xc3\xe3\x53\x52\xc2\xe3\x9f\x2f\x7e\xde\x3d\x22\x24\x3c\x3c\xbf\x38\xfc\xfc\x57\x52\x72\x3a\x4e\x69\xf5\x4c\x3a\x35\x64\x78\xfc\xba\xd4\xc3\xe9\x9a\x36\xd3\xcf\x6e\xe1\xe6\xbb\xa0\x68\x67\xdb\x60\xa4\x2a\x92\x24\xe2\xb3\x4e\x6b\xb7\x6f\x26\xb2\x7b\x16\x0a\x7e\xce\x52\xde\xdd\x42\xcb\xba\xbb\x12\x03\x15\x17\xa9\xac\x50\x05\x4d\x6b\x75\xbc\x77\xea\x37\xd9\xe7\x00\xcc\xfc\x64\xd1\x8f\xd3\xe4\x0f\xef\xb9\x55\x71\x23\x5d\x76\xb5\x9b\xcb\xca\x29\xbb\x77\xb6\xdf\xf9\xbd\x61\xc3\x1a\x0d\x9f\x4b\x75\xb2\xb8\xd2\xc0\x55\xe1\x3f\xf1\xdf\x59\x7c\xf5\xbb\x2e\x6d\x1d\x1d\xa3\x76\xd2\x4d\x9f\x7d\x43\x68\x12\x3f\xb0\xd6\xd8\x7b\x57\x82\xdd\x8f\x7e\x94\x4e\xdd\xc8\xbb\x5d\xff\x4a\xb6\x9e\x3e\x74\xde\xf9\x99\x11\xa5\x9e\x4a\xeb\xf8\x73\xad\xec\x4c\xe5\x4f\x0e\x3f\x6a\x67\xec\xbc\x86\x9e\xfc\x6d\x7a\xd9\x71\x66\x79\xdf\x04\xe2\xef\xff\x7c\xf7\xd8\x1a\xf3\xfd\x4b\xe5\x54\xbe\x34\x61\x5d\xeb\x32\xff\x20\x7e\xf7\xbb\xe6\x1f\x55\x31\xb5\xb2\xb8\xff\xe7\x7c\xa3\xae\x5b\xb7\x56\xfc\xf2\xeb\xbb\xb6\x70\x95\xdf\xb3\xa5\xb7\x7f\xfc\xff\x01\x00\x00\xff\xff\xbd\x65\x80\x52\xca\xc0\x04\x00"), }, "/crds/istio.banzaicloud.io_meshgateways.yaml": &vfsgen۰CompressedFileInfo{ name: "istio.banzaicloud.io_meshgateways.yaml", modTime: time.Time{}, uncompressedSize: 24501, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\x5f\x73\xdb\xb8\x11\x7f\xd7\xa7\xc0\xdc\xf4\xc1\x6e\x46\xba\xcb\x5d\xa7\x73\xd5\x4b\xc6\xf5\x39\x19\x4f\x62\x47\x13\xbb\x7e\xf1\xa5\x33\x10\xb9\xa2\x70\x06\x01\x16\x00\x65\xab\x4d\xbf\x7b\x87\xa0\xa8\xbf\x04\xb0\xa4\x98\xd8\x77\xe5\x3e\x89\x04\xb0\x58\x2c\xb0\xbf\xdd\x85\x08\xd0\x8c\xdd\x81\xd2\x4c\x8a\x31\xa1\x19\x83\x27\x03\xa2\x78\xd2\xa3\x87\x9f\xf5\x88\xc9\xef\x17\xaf\x07\x0f\x4c\xc4\x63\x72\x9e\x6b\x23\xd3\x4f\xa0\x65\xae\x22\xf8\x05\x66\x4c\x30\xc3\xa4\x18\xa4\x60\x68\x4c\x0d\x1d\x0f\x08\x89\x14\xd0\xe2\xe5\x2d\x4b\x41\x1b\x9a\x66\x63\x22\x72\xce\x07\x84\x08\x9a\xc2\x98\xa4\xa0\xe7\x09\x35\xf0\x48\x97\x7a\xc4\xb4\x61\x72\x34\xa5\xe2\xdf\x94\x45\x5c\xe6\xf1\x88\xc9\x01\x21\x9c\x4e\x81\xeb\x82\x1b\x21\x6a\xd5\xdd\x88\xf2\x6c\x4e\xf7\xea\x7e\xaf\x60\xc1\x4a\xd1\x5f\x8f\x7e\x1e\xfd\x38\xd0\x19\x44\x45\xbb\x44\xc9\x3c\x1b\x13\x07\xff\x42\x92\x15\xfb\x72\x64\x57\xa0\xe7\xef\x4a\xa1\xec\x5b\xce\xb4\x79\xbf\x5f\xf2\x81\x69\x63\x4b\x33\x9e\x2b\xca\x77\x87\x62\x0b\xf4\x5c\x2a\x73\xbd\x61\x4e\xc8\x90\xa4\xc9\x63\x59\xc6\x44\x92\x73\xaa\x76\x9a\x0d\x08\xd1\x91\xcc\x60\x4c\x6c\xab\x8c\x46\x10\x0f\x08\x59\x94\xf3\xb1\xe2\x32\x24\x34\x8e\xad\xa2\x29\x9f\x28\x26\x0c\xa8\x73\xc9\xf3\x54\xac\x7b\x29\xea\xc4\xa0\x23\xc5\x32\x63\x95\x71\xbb\xcc\x80\xc8\x19\x31\x73\x20\xc9\xd6\xb8\x4a\xfa\x4d\x4b\x31\xa1\x66\x3e\x26\xa3\x42\x5f\x23\xb3\xcc\x60\xab\xb8\x9c\xa7\xdb\xdd\x97\x45\x9d\x31\xd1\x46\x31\x91\x60\x7a\xd5\xa0\x16\x2c\x02\x4f\xaf\xab\x1a\xb7\x75\x9d\xdf\x94\x65\x6d\x84\xb8\x31\xd4\xe4\xba\x12\xa3\x5a\x3d\x0e\x39\x6c\xdd\x51\xd9\xe4\x50\x88\xfd\xd7\x98\xee\x2f\x45\xa2\x40\xeb\x4a\xeb\xc5\xd4\x15\xcf\xd0\x4c\xa2\xd5\x8a\x3b\x2b\x1b\x1f\x48\x56\x75\x72\x39\x69\x2a\xde\x85\x52\x52\x15\x2b\x50\xd3\xc4\x2f\x82\xad\x79\x75\x50\xb1\x14\xc0\x16\x86\xbb\xde\xe2\x5a\x41\xc4\xe8\x00\x1f\x0e\x98\x9f\x25\x87\x73\x1e\x53\x03\xf5\x8c\xed\x5a\xb2\x76\x7e\x2e\x85\x51\x92\x4f\x38\x15\x87\x12\xaf\x0a\xc9\x7e\x69\x8d\xe4\x65\x83\xc5\xeb\x29\x18\xfa\x7a\xf5\x4e\x47\x73\x48\xe9\xc6\xde\x64\x06\xe2\x6c\x72\x79\xf7\xd3\xcd\x5e\x01\x21\x99\x92\x19\x28\xc3\x40\x6f\xbf\x25\x64\x0b\x67\x77\xde\x3b\xb4\x47\x2a\x70\xc2\x56\xde\x06\xe1\xc3\x06\x72\xfa\x1b\x44\x66\xa7\xa8\xc2\xca\x6d\x72\x09\x6f\x07\xb0\x46\xa1\x0b\xb1\xb8\xa3\xaa\xa6\x0a\x21\xcc\x40\x5a\x5b\xe0\xe7\x5d\x92\xd5\xbc\xa3\xcc\x33\xf2\x0d\x2d\x28\xcf\x3b\xe0\xf0\x56\xc9\xd4\xcd\x25\x3c\x8e\x82\x22\x29\x66\x2c\xb9\xa2\xd9\x7b\x58\x7e\x82\x99\xaf\x2a\x96\x65\x41\x0f\xb0\x0c\x55\x41\x8d\xb3\x22\xbf\xca\x5b\x30\x94\x59\xb9\x46\xb0\x4c\xa7\x52\x72\xa0\xc2\x5b\x5b\xc1\xbf\x72\xa6\xe0\xc0\x16\xf6\x69\x58\xa8\xc7\x5b\xc7\x69\x0c\xbb\x34\x63\xc0\xe3\x0e\x67\xcd\x6d\xfb\x2e\x11\x51\xba\xb6\x62\x5a\x1c\xec\x8e\x2b\x5e\xd7\xeb\xde\xbb\xd0\x78\xe5\x16\xdf\x76\xac\xf9\x48\x0a\x43\x99\x00\x75\xdd\xf5\x42\x8f\xd9\x82\x69\xa9\xc2\x3c\xa9\x58\x7e\x0c\x8c\xa7\xa4\xe1\xaa\xfb\x22\xc4\x4b\x40\x35\x68\x81\x12\x98\x90\x8c\x1a\x03\x4a\x8c\xc9\x3f\x4f\x7e\x7d\xf5\x65\x78\xfa\xe6\xe4\xe4\xfe\x87\xe1\xdf\x3e\xbf\x3a\xf9\x75\x64\x7f\xfc\xf9\xf4\xcd\xe9\x97\xea\xe1\xd5\xe9\xe9\xc9\xc9\xfd\xfb\xab\x77\xb7\x93\x8b\xcf\xec\xf4\xcb\xbd\xc8\xd3\x87\xf2\xe9\xcb\xc9\x3d\x5c\x7c\x46\x32\x39\x3d\x7d\xf3\xa7\xa0\x68\x4f\xc3\x87\x7c\x0a\x4a\x80\x01\x3d\x64\xc2\x0c\xa5\x1a\x96\xa3\x1a\x13\xa3\x72\x08\x30\xa8\x96\xcf\xb3\x18\x42\x4d\x48\xe7\xea\x37\x68\x07\x1a\x22\x05\xa6\xf7\x19\x5e\xa6\x2f\xd0\x67\x04\x2b\x85\xe4\x19\x5a\xb5\xd6\x16\x06\x78\x97\xc5\x54\x29\x7a\x38\x0e\x3a\xb3\x49\x7a\xed\xfc\x87\x16\x90\x90\x31\x9c\x79\xda\x63\x78\x94\x75\x60\x06\x4a\x41\xfc\x4b\x5e\xac\x85\x22\x62\x8e\x73\xce\x44\x72\x99\x08\xb9\x7e\x7d\xf1\x04\x51\x6e\x02\x1e\xd2\x13\x5d\x36\x91\x68\x5b\x2e\x10\x18\xd4\xc0\x73\x2d\x28\xa5\x26\x9a\x5f\x3c\x65\x45\x92\xb6\xc9\xe3\x43\x84\x18\x5c\x5b\x81\x4a\x42\xe1\xc0\x86\x1a\xb9\x96\x8a\x0a\xa9\xa8\xc1\xb8\xc5\x23\x3b\xb2\x81\x7a\x83\xc1\x37\xd4\xef\x11\x92\xf9\x2d\xb2\x9e\xb0\x68\xb5\xa1\x30\x6e\xed\xd6\xae\x26\x06\xd9\x04\xe9\xae\xf6\x1b\x60\xc7\x6c\x2d\xc4\xc6\x7a\xbd\x71\x7c\x85\x8e\x7a\xe3\xf8\xfd\x1a\x47\x03\xe6\x8f\xc0\x92\xb9\x09\xab\x65\x26\x55\x4a\x8d\x4d\x2c\x7e\xfa\x11\x29\x00\x26\x09\xc1\xc7\x58\x1b\x5f\x1b\xac\x5a\x0e\xaa\x8b\x58\x1a\xa3\xf5\x6a\x08\xc7\xc7\x26\x58\xd0\x29\xc2\xaa\x1b\xe0\x10\x19\xa9\x6e\x41\x85\xad\x0e\x69\x9a\x7d\x88\x82\xa4\x1e\x85\x7b\x14\xee\x43\x14\x07\xf5\xc6\xd1\x1b\x47\x97\x21\x0a\x8e\x2d\x4e\x7d\xc3\x43\xdf\x19\xf4\xfe\x5e\x21\x83\x55\x32\x19\xff\xa1\x77\x40\x36\xc3\x2b\xb4\xd9\x75\x8c\x61\x3f\xe3\xa8\xa6\x0b\x67\x19\xcd\x61\xb1\x5d\x20\x43\xda\xe0\x49\x1b\xcc\x26\xcd\x71\x9b\xb4\x07\xae\x76\xf8\x7d\x54\x87\xcd\x71\x9c\xb4\xc3\x72\x72\x8c\x94\x6d\x30\x9d\xb4\xc2\x75\xd2\x18\xdb\x49\x1b\x7c\x27\x6d\x30\x9e\xb4\xd2\x83\xb5\xb0\x0f\x5b\x9f\x64\x61\x68\xfb\x93\xa5\x36\x56\xd3\x6a\xa6\x5b\x3a\x3d\x74\x03\x51\x7d\xa4\xf5\x35\x22\xc2\xc6\x23\x6e\x36\x93\x46\x66\x92\xcb\x64\xf9\x1e\x0b\x46\x8d\xe4\x69\x62\x27\xc3\x6d\x59\xfe\x4f\xb7\x43\x76\x1d\xef\x1f\x76\x4f\xa4\xd3\x68\xa5\x61\x38\xd1\xef\x87\x20\xa9\x4f\xf9\xfa\x94\x0f\x6b\x21\x4d\xc2\x80\x63\x42\x80\x96\xce\x10\x39\xf8\x06\x95\x9b\xb8\x7c\xf4\x6a\x6d\x34\x3a\xfc\x2c\x35\x72\xf1\x5f\xe1\x3b\x18\xac\x5b\xef\xcc\x55\xa1\xf2\x77\x61\x58\x9f\xc3\xb7\x62\x4d\xfa\x1c\x7e\x4d\x7d\x0e\x7f\x40\x7d\x0e\xbf\xdf\xa2\xcf\xe1\x6b\xc4\xec\x73\xf8\x60\x83\x3e\x87\x5f\x53\x9f\xc3\xf7\x39\x7c\x1b\xc6\xa4\xcf\xe1\xfb\x1c\xbe\xcf\xe1\x03\xd4\xe7\xf0\x21\xb6\x7d\x0e\xff\xb2\x72\x78\x6f\xf1\xc1\xb1\xdf\xba\xf1\x05\x8f\x39\x78\x4e\xb3\x04\x15\xbc\x5e\x5a\x2d\x39\x78\x87\xc7\x9d\x86\x8a\x37\xcb\xa3\xfa\x97\x34\xfe\x3b\xe5\x54\x44\xa0\x2e\x27\x75\xfc\xbd\xdc\x53\xfa\xf4\x09\x32\xce\x22\x5a\x2b\x5b\x28\x82\x4b\x99\x60\x69\x9e\x8e\xc9\x0f\xce\x8e\x5d\x01\x5d\xca\xc4\x33\xf5\xbc\xfd\x81\xca\xf3\x4d\x9c\xdd\xf6\x12\xd2\xd8\x83\xf6\xcf\xb8\x80\x32\xa9\x4c\xf7\xa7\xc4\x69\x96\x4d\x94\x34\x32\x92\x9e\x03\x63\x08\x68\x3c\xfa\xb4\x79\x31\xd9\x13\xa9\x3c\xd9\x0a\x2e\x4b\xc1\x64\x27\xd9\xb7\xea\xa7\x0b\xcd\x1a\xaa\x12\x30\x7e\xd5\x04\x4f\xc5\xe2\x4f\xc3\x22\x4f\xc1\x76\xa7\xa4\x96\xc7\x55\xc3\x47\x00\x8b\x59\xf6\x58\xa1\xd3\x4b\xa6\x4c\x5c\x5a\x93\xf2\x40\x56\xbd\x13\x56\x25\x4e\x9e\xcb\x5c\xd4\x4e\xd6\x57\xc4\xca\x42\x1d\xa0\x0d\xc4\xd7\x60\x1e\xa5\x7a\xb8\x63\xf0\xd8\xd8\xc9\x54\x67\x6f\x6b\xd1\x22\x84\x25\x9c\xa5\xac\x1e\xa0\x48\xe3\xd8\xf7\xdb\xaf\xe7\x17\x78\x9a\xbb\xe5\x29\x6e\xd4\xe1\x59\xd0\xfd\x54\xbd\xf8\xa9\xf2\x16\xab\x5c\x9c\xe9\x4f\x52\xd6\x02\x4d\xd9\xd2\x75\xb2\x5b\xd7\x7f\x84\x1f\x32\x70\x10\x74\xca\xdd\x80\xeb\xef\xb3\x20\x96\xd2\xa4\x7d\x76\xe0\x05\x27\x8c\xfc\x24\x08\x52\xa4\x55\x92\x8e\xba\x92\xa2\xd9\x75\x14\x0d\xae\xa2\x78\x81\xd6\x40\x8e\xbb\x82\x02\x95\x0d\x87\x40\x8c\xf4\x53\xf9\xfb\x98\xca\x63\x30\x50\x43\x94\x2b\x66\x96\xe7\x52\x18\x78\xaa\x45\xc2\x10\x28\x50\xce\xe5\xe3\x44\xb1\x05\xe3\x90\xc0\x85\x8e\x28\xa7\xbe\x4d\xfc\x30\xca\x45\x34\xa3\x53\xc6\x99\x6f\xb5\x61\xa0\x8a\xc6\xde\x1d\x26\xc4\xde\x1a\x72\xe1\x61\xf6\xd3\x62\x25\xb3\x97\x22\x4d\xf8\x43\x95\x6a\x3a\x8f\xf0\x55\x99\x92\xd1\x95\x2b\x8e\x47\x0d\x47\x01\x8d\x3f\x0a\xbe\x2c\x7c\xf4\x5b\xc6\x41\x2f\xb5\x01\xe7\x27\x25\x61\x89\xac\xc3\x7f\x67\xaf\xe2\x74\xf0\xd8\x4a\x2f\xfe\xfa\x17\x6f\x3f\x3e\xe8\xb2\xfd\x5c\x4b\xe1\x8a\x2d\x1a\x48\xfb\x0f\x0d\xce\x3f\x51\xba\x11\x56\xc3\x07\x26\xf2\xa7\x8f\x99\x73\x73\x86\x60\x23\x03\x58\x80\xf7\xce\x1c\xd4\xfa\x55\x92\x7b\x2f\x40\x41\x31\xb1\x95\x8e\x65\x92\x7b\x74\x8f\x64\x12\x34\xb4\x47\x26\x62\xf9\xa8\x3b\xd0\x7e\x92\x6a\x7a\xae\x20\x06\x61\x18\xe5\x37\x35\x97\x29\x36\x94\xbd\x8e\x65\xe8\xd6\x32\xdc\x0c\x57\x0b\xbb\x03\x6e\xc7\xf9\x3e\x7b\xab\xeb\x8b\xd8\x9a\x5c\xc9\x72\xf1\x54\x84\x2f\x94\xdf\x2a\x3a\x9b\xb1\x68\x22\x39\x8b\x6a\xff\x78\x01\x91\x3b\x80\x70\x48\x3e\xc8\x88\x72\x47\xd9\x39\xcf\xb5\xa9\x45\x02\xaf\xf4\x2b\xf1\xdc\x7f\xd5\x7d\x53\x2d\xdd\x3a\xac\xdb\xa7\x94\xd5\xc0\x2f\x27\x8e\xf2\xeb\xd5\xe6\xa9\x53\xa7\x9b\xff\x1e\x9a\x2a\xcf\x48\x0e\xca\xbd\xc0\x8e\xda\x7c\x86\xd9\x0c\x22\xcf\xb6\x26\xc2\x84\xbc\xdf\x03\x20\xda\x87\xff\xeb\xc7\xd8\xf1\x5a\x47\x37\x10\x49\xe1\x3b\xe3\x8e\x71\x7b\xb8\x7d\xd3\x63\xaf\x67\x45\x81\x4f\x7d\x1c\xe6\x72\x50\xbe\x25\xcc\xca\x6b\x96\x1d\xa5\xe0\x2a\xf4\x0c\xc3\xbd\x03\x5c\xee\xfd\x1e\xb2\x2b\x73\xb1\x41\x5d\x0f\x75\x57\xfa\xda\xbb\x9b\xf7\xb9\xfb\x56\xf5\xf6\x35\xcf\x8d\x37\x5f\x77\xaf\xa9\x6e\x68\x6b\x28\x5c\xaa\x9f\xcc\x9b\xda\x61\x06\x98\x3a\x94\x56\xf3\xba\x40\x3d\x88\x77\x32\x45\x6d\xa4\x2a\x34\xb4\xf3\x2e\x9f\xd6\x6c\xf0\xac\xa6\x80\xfc\xe7\xbf\x83\xcd\x6c\xd0\x28\x82\xcc\x40\x7c\xbd\x7f\xf1\xfc\x77\xdf\xd9\x87\xea\x46\x79\xfb\x58\x98\x23\x2b\xd1\x8b\xdc\x7f\x1e\x94\x9d\x43\x7c\x57\x5d\x0a\x5f\xbc\xfc\x5f\x00\x00\x00\xff\xff\x47\xdf\x69\x8d\xb5\x5f\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\x5f\x73\xdb\xb8\x11\x7f\xd7\xa7\xc0\xdc\xf4\xc1\x6e\x46\xba\xa4\xd7\xe9\xf4\xf4\x92\x71\x7d\x4e\xc6\x93\xd8\xd1\xc4\xae\x5f\x7c\xe9\x0c\x44\xae\x28\x9c\x41\x80\x05\x40\xd9\x6a\xd3\xef\xde\x21\x28\xea\x2f\x01\x2c\x29\x26\xf1\xe5\xb8\x4f\x22\x01\x2c\x16\x0b\xec\x6f\x77\x21\x02\x34\x63\x77\xa0\x34\x93\x62\x4c\x68\xc6\xe0\xc9\x80\x28\x9e\xf4\xe8\xe1\xef\x7a\xc4\xe4\x8f\x8b\x57\x83\x07\x26\xe2\x31\x39\xcf\xb5\x91\xe9\x47\xd0\x32\x57\x11\xfc\x02\x33\x26\x98\x61\x52\x0c\x52\x30\x34\xa6\x86\x8e\x07\x84\x44\x0a\x68\xf1\xf2\x96\xa5\xa0\x0d\x4d\xb3\x31\x11\x39\xe7\x03\x42\x04\x4d\x61\x4c\x52\xd0\xf3\x84\x1a\x78\xa4\x4b\x3d\x62\xda\x30\x39\x9a\x52\xf1\x1f\xca\x22\x2e\xf3\x78\xc4\xe4\x80\x10\x4e\xa7\xc0\x75\xc1\x8d\x10\xb5\xea\x6e\x44\x79\x36\xa7\x7b\x75\x7f\x54\xb0\x60\xa5\xe8\xaf\x46\x3f\x8f\x5e\x0e\x74\x06\x51\xd1\x2e\x51\x32\xcf\xc6\xc4\xc1\xbf\x90\x64\xc5\xbe\x1c\xd9\x15\xe8\xf9\xdb\x52\x28\xfb\x96\x33\x6d\xde\xed\x97\xbc\x67\xda\xd8\xd2\x8c\xe7\x8a\xf2\xdd\xa1\xd8\x02\x3d\x97\xca\x5c\x6f\x98\x13\x32\x24\x69\xf2\x58\x96\x31\x91\xe4\x9c\xaa\x9d\x66\x03\x42\x74\x24\x33\x18\x13\xdb\x2a\xa3\x11\xc4\x03\x42\x16\xe5\x7c\xac\xb8\x0c\x09\x8d\x63\xab\x68\xca\x27\x8a\x09\x03\xea\x5c\xf2\x3c\x15\xeb\x5e\x8a\x3a\x31\xe8\x48\xb1\xcc\x58\x65\xdc\x2e\x33\x20\x72\x46\xcc\x1c\x48\xb2\x35\xae\x92\x7e\xd3\x52\x4c\xa8\x99\x8f\xc9\xa8\xd0\xd7\xc8\x2c\x33\xd8\x2a\x2e\xe7\xe9\x76\xf7\x65\x51\x67\x4c\xb4\x51\x4c\x24\x98\x5e\x35\xa8\x05\x8b\xc0\xd3\xeb\xaa\xc6\x6d\x5d\xe7\x37\x65\x59\x1b\x21\x6e\x0c\x35\xb9\xae\xc4\xa8\x56\x8f\x43\x0e\x5b\x77\x54\x36\x39\x14\x62\xff\x35\xa6\xfb\x4b\x91\x28\xd0\xba\xd2\x7a\x31\x75\xc5\x33\x34\x93\x68\xb5\xe2\xce\xca\xc6\x07\x92\x55\x9d\x5c\x4e\x9a\x8a\x77\xa1\x94\x54\xc5\x0a\xd4\x34\xf1\x8b\x60\x6b\x5e\x1d\x54\x2c\x05\xb0\x85\xe1\xae\xb7\xb8\x56\x10\x31\x3a\xc0\x87\x03\xe6\x67\xc9\xe1\x9c\xc7\xd4\x40\x3d\x63\xbb\x96\xac\x9d\x9f\x4b\x61\x94\xe4\x13\x4e\xc5\xa1\xc4\xab\x42\xb2\x5f\x5a\x23\x79\xd9\x60\xf1\x6a\x0a\x86\xbe\x5a\xbd\xd3\xd1\x1c\x52\xba\xb1\x37\x99\x81\x38\x9b\x5c\xde\xfd\x74\xb3\x57\x40\x48\xa6\x64\x06\xca\x30\xd0\xdb\x6f\x09\xd9\xc2\xd9\x9d\xf7\x0e\xed\x91\x0a\x9c\xb0\x95\xb7\x41\xf8\xb0\x81\x9c\xfe\x06\x91\xd9\x29\xaa\xb0\x72\x9b\x5c\xc2\xdb\x01\xac\x51\xe8\x42\x2c\xee\xa8\xaa\xa9\x42\x08\x33\x90\xd6\x16\xf8\x79\x97\x64\x35\xef\x28\xf3\x8c\x7c\x43\x0b\xca\xf3\x0e\x38\xbc\x51\x32\x75\x73\x09\x8f\xa3\xa0\x48\x8a\x19\x4b\xae\x68\xf6\x0e\x96\x1f\x61\xe6\xab\x8a\x65\x59\xd0\x03\x2c\x43\x55\x50\xe3\xac\xc8\xaf\xf2\x16\x0c\x65\x56\xae\x11\x2c\xd3\xa9\x94\x1c\xa8\xf0\xd6\x56\xf0\xef\x9c\x29\x38\xb0\x85\x7d\x1a\x16\xea\xf1\xd6\x71\x1a\xc3\x2e\xcd\x18\xf0\xb8\xc3\x59\x73\xdb\xbe\x4b\x44\x94\xae\xad\x98\x16\x07\xbb\xe3\x8a\xd7\xf5\xba\xf7\x2e\x34\x5e\xb9\xc5\x37\x1d\x6b\x3e\x92\xc2\x50\x26\x40\x5d\x77\xbd\xd0\x63\xb6\x60\x5a\xaa\x30\x4f\x2a\x96\x1f\x02\xe3\x29\x69\xb8\xea\xbe\x08\xf1\x12\x50\x0d\x5a\xa0\x04\x26\x24\xa3\xc6\x80\x12\x63\xf2\xaf\x93\x5f\x5f\x7c\x1e\x9e\xbe\x3e\x39\xb9\x7f\x39\xfc\xf9\xd3\x8b\x93\x5f\x47\xf6\xc7\x9f\x4f\x5f\x9f\x7e\xae\x1e\x5e\x9c\x9e\x9e\x9c\xdc\xbf\xbb\x7a\x7b\x3b\xb9\xf8\xc4\x4e\x3f\xdf\x8b\x3c\x7d\x28\x9f\x3e\x9f\xdc\xc3\xc5\x27\x24\x93\xd3\xd3\xd7\x7f\x0a\x8a\xf6\x34\x7c\xc8\xa7\xa0\x04\x18\xd0\x43\x26\xcc\x50\xaa\x61\x39\xaa\x31\x31\x2a\x87\x00\x83\x6a\xf9\x7c\x13\x43\xa8\x09\xe9\x5c\xfd\x06\xed\x40\x43\xa4\xc0\xf4\x3e\xc3\xcb\xf4\x19\xfa\x8c\x60\xa5\x90\x3c\x43\xab\xd6\xda\xc2\x00\xef\xb2\x98\x2a\x45\x0f\xc7\x41\x67\x36\x49\xaf\x9d\xff\xd0\x02\x12\x32\x86\x33\x4f\x7b\x0c\x8f\xb2\x0e\xcc\x40\x29\x88\x7f\xc9\x8b\xb5\x50\x44\xcc\x71\xce\x99\x48\x2e\x13\x21\xd7\xaf\x2f\x9e\x20\xca\x4d\xc0\x43\x7a\xa2\xcb\x26\x12\x6d\xcb\x05\x02\x83\x1a\x78\xae\x05\xa5\xd4\x44\xf3\x8b\xa7\xac\x48\xd2\x36\x79\x7c\x88\x10\x83\x6b\x2b\x50\x49\x28\x1c\xd8\x50\x23\xd7\x52\x51\x21\x15\x35\x18\xb7\x78\x64\x47\x36\x50\x6f\x30\xf8\x86\xfa\x3d\x42\x32\xbf\x45\xd6\x13\x16\xad\x36\x14\xc6\xad\xdd\xda\xd5\xc4\x20\x9b\x20\xdd\xd5\x7e\x03\xec\x98\xad\x85\xd8\x58\xaf\x37\x8e\x2f\xd0\x51\x6f\x1c\xbf\x5f\xe3\x68\xc0\xfc\x11\x58\x32\x37\x61\xb5\xcc\xa4\x4a\xa9\xb1\x89\xc5\x4f\x7f\x41\x0a\x80\x49\x42\xf0\x31\xd6\xc6\xd7\x06\xab\x96\x83\xea\x22\x96\xc6\x68\xbd\x1a\xc2\xf1\xb1\x09\x16\x74\x8a\xb0\xea\x06\x38\x44\x46\xaa\x5b\x50\x61\xab\x43\x9a\x66\x1f\xa2\x20\xa9\x47\xe1\x1e\x85\xfb\x10\xc5\x41\xbd\x71\xf4\xc6\xd1\x65\x88\x82\x63\x8b\x53\xdf\xf0\xd0\x77\x06\xbd\xbf\x57\xc8\x60\x95\x4c\xc6\xdf\xf5\x0e\xc8\x66\x78\x85\x36\xbb\x8e\x31\xec\x67\x1c\xd5\x74\xe1\x2c\xa3\x39\x2c\xb6\x0b\x64\x48\x1b\x3c\x69\x83\xd9\xa4\x39\x6e\x93\xf6\xc0\xd5\x0e\xbf\x8f\xea\xb0\x39\x8e\x93\x76\x58\x4e\x8e\x91\xb2\x0d\xa6\x93\x56\xb8\x4e\x1a\x63\x3b\x69\x83\xef\xa4\x0d\xc6\x93\x56\x7a\xb0\x16\xf6\x7e\xeb\x93\x2c\x0c\x6d\x7f\xb2\xd4\xc6\x6a\x5a\xcd\x74\x4b\xa7\x87\x6e\x20\xaa\x8f\xb4\xbe\x44\x44\xd8\x78\xc4\xcd\x66\xd2\xc8\x4c\x72\x99\x2c\xdf\x61\xc1\xa8\x91\x3c\x4d\xec\x64\xb8\x2d\xcb\x1f\x74\x3b\x64\xd7\xf1\x7e\xb7\x7b\x22\x9d\x46\x2b\x0d\xc3\x89\x7e\x3f\x04\x49\x7d\xca\xd7\xa7\x7c\x58\x0b\x69\x12\x06\x1c\x13\x02\xb4\x74\x86\xc8\xc1\x37\xa8\xdc\xc4\xe5\xa3\x57\x6b\xa3\xd1\xe1\x67\xa9\x91\x8b\xff\x02\xdf\xc1\x60\xdd\x7a\x67\xae\x0a\x95\xbf\x0b\xc3\xfa\x1c\xbe\x15\x6b\xd2\xe7\xf0\x6b\xea\x73\xf8\x03\xea\x73\xf8\xfd\x16\x7d\x0e\x5f\x23\x66\x9f\xc3\x07\x1b\xf4\x39\xfc\x9a\xfa\x1c\xbe\xcf\xe1\xdb\x30\x26\x7d\x0e\xdf\xe7\xf0\x7d\x0e\x1f\xa0\x3e\x87\x0f\xb1\xed\x73\xf8\xe7\x95\xc3\x7b\x8b\x0f\x8e\xfd\xd6\x8d\x2f\x78\xcc\xc1\x73\x9a\x25\xa8\xe0\xf5\xd2\x6a\xc9\xc1\x3b\x3c\xee\x34\x54\xbc\x59\x1e\xd5\xbf\xa4\xf1\x3f\x28\xa7\x22\x02\x75\x39\xa9\xe3\xef\xe5\x9e\xd2\xa7\x8f\x90\x71\x16\xd1\x5a\xd9\x42\x11\x5c\xca\x04\x4b\xf3\x74\x4c\x5e\x3a\x3b\x76\x05\x74\x29\x13\xdf\xa8\xe7\xed\x0f\x54\xbe\xdd\xc4\xd9\x6d\x2f\x21\x8d\x3d\x68\xff\x0d\x17\x50\x26\x95\xe9\xfe\x94\x38\xcd\xb2\x89\x92\x46\x46\xd2\x73\x60\x0c\x01\x8d\x47\x9f\x36\x2f\x26\x7b\x22\x95\x27\x5b\xc1\x65\x29\x98\xec\x24\xfb\x5a\xfd\x74\xa1\x59\x43\x55\x02\xc6\xaf\x9a\xe0\xa9\x58\xfc\x69\x58\xe4\x29\xd8\xee\x94\xd4\xf2\xb8\x6a\xf8\x08\x60\x31\xcb\x1e\x2b\x74\x7a\xc9\x94\x89\x4b\x6b\x52\x1e\xc8\xaa\x77\xc2\xaa\xc4\xc9\x73\x99\x8b\xda\xc9\xfa\x82\x58\x59\xa8\x03\xb4\x81\xf8\x1a\xcc\xa3\x54\x0f\x77\x0c\x1e\x1b\x3b\x99\xea\xec\x6d\x2d\x5a\x84\xb0\x84\xb3\x94\xd5\x03\x14\x69\x1c\xfb\x7e\xfd\xf5\xfc\x0c\x4f\x73\xb7\x3c\xc5\x8d\x3a\x3c\x0b\xba\x9f\xaa\x67\x3f\x55\xde\x62\x95\x8b\x33\xfd\x51\xca\x5a\xa0\x29\x5b\xba\x4e\x76\xeb\xfa\x8f\xf0\x43\x06\x0e\x82\x4e\xb9\x1b\x70\xfd\x7d\x16\xc4\x52\x9a\xb4\xcf\x0e\xbc\xe0\x84\x91\x9f\x04\x41\x8a\xb4\x4a\xd2\x51\x57\x52\x34\xbb\x8e\xa2\xc1\x55\x14\xcf\xd0\x1a\xc8\x71\x57\x50\xa0\xb2\xe1\x10\x88\x91\x7e\x2a\x7f\x1f\x53\x79\x0c\x06\x6a\x88\x72\xc5\xcc\xf2\x5c\x0a\x03\x4f\xb5\x48\x18\x02\x05\xca\xb9\x7c\x9c\x28\xb6\x60\x1c\x12\xb8\xd0\x11\xe5\xd4\xb7\x89\x1f\x46\xb9\x88\x66\x74\xca\x38\xf3\xad\x36\x0c\x54\xd1\xd8\xbb\xc3\x84\xd8\x5b\x43\x2e\x3c\xcc\x7e\x5a\xac\x64\xf6\x5c\xa4\x09\x7f\xa8\x52\x4d\xe7\x11\xbe\x2a\x53\x32\xba\x72\xc5\xf1\xa8\xe1\x28\xa0\xf1\x07\xc1\x97\x85\x8f\x7e\xc3\x38\xe8\xa5\x36\xe0\xfc\xa4\x24\x2c\x91\x75\xf8\x6f\xed\x55\x9c\x0e\x1e\x5b\xe9\xc5\xdf\xfe\xea\xed\xc7\x07\x5d\xb6\x9f\x6b\x29\x5c\xb1\x45\x03\x69\xff\xa9\xc1\xf9\x27\x4a\x37\xc2\x6a\x78\xcf\x44\xfe\xf4\x21\x73\x6e\xce\x10\x6c\x64\x00\x0b\xf0\xde\x99\x83\x5a\xbf\x4a\x72\xef\x05\x28\x28\x26\xb6\xd2\xb1\x4c\x72\x8f\xee\x91\x4c\x82\x86\xf6\xc8\x44\x2c\x1f\x75\x07\xda\x4f\x52\x4d\xcf\x15\xc4\x20\x0c\xa3\xfc\xa6\xe6\x32\xc5\x86\xb2\xd7\xb1\x0c\xdd\x5a\x86\x9b\xe1\x6a\x61\x77\xc0\xed\x38\xdf\x67\x6f\x75\x7d\x16\x5b\x93\x2b\x59\x2e\x9e\x8a\xf0\x85\xf2\x5b\x45\x67\x33\x16\x4d\x24\x67\x51\xed\x1f\x2f\x20\x72\x07\x10\x0e\xc9\x7b\x19\x51\xee\x28\x3b\xe7\xb9\x36\xb5\x48\xe0\x95\x7e\x25\x9e\xfb\xaf\xba\xaf\xaa\xa5\x5b\x87\x75\xfb\x94\xb2\x1a\xf8\xe5\xc4\x51\x7e\xbd\xda\x3c\x75\xea\x74\xf3\xdf\x43\x53\xe5\x19\xc9\x41\xb9\x17\xd8\x51\x9b\xcf\x30\x9b\x41\xe4\xd9\xd6\x44\x98\x90\xf7\x7b\x00\x44\xfb\xf0\x7f\xfd\x18\x3b\x5e\xeb\xe8\x06\x22\x29\x7c\x67\xdc\x31\x6e\x0f\xb7\x6f\x7a\xec\xf5\xac\x28\xf0\xa9\x8f\xc3\x5c\x0e\xca\xb7\x84\x59\x79\xcd\xb2\xa3\x14\x5c\x85\x9e\x61\xb8\x77\x80\xcb\xbd\xdf\x43\x76\x65\x2e\x36\xa8\xeb\xa1\xee\x4a\x5f\x7b\x77\xf3\x3e\x77\xdf\xaa\xde\xbe\xe6\xb9\xf1\xe6\xeb\xee\x35\xd5\x0d\x6d\x0d\x85\x4b\xf5\x93\x79\x53\x3b\xcc\x00\x53\x87\xd2\x6a\x5e\x17\xa8\x07\xf1\x4e\xa6\xa8\x8d\x54\x85\x86\x76\xde\xe5\xd3\x9a\x0d\x9e\xd5\x14\x90\xff\xfe\x6f\xb0\x99\x0d\x1a\x45\x90\x19\x88\xaf\xf7\x2f\x9e\xff\xe1\x07\xfb\x50\xdd\x28\x6f\x1f\x0b\x73\x64\x25\x7a\x91\xfb\x4f\x83\xb2\x73\x88\xef\xaa\x4b\xe1\x8b\x97\xff\x0f\x00\x00\xff\xff\xb8\x7c\x7e\x94\xb5\x5f\x00\x00"), }, "/crds/istio.banzaicloud.io_remoteistios.yaml": &vfsgen۰CompressedFileInfo{ name: "istio.banzaicloud.io_remoteistios.yaml", modTime: time.Time{}, uncompressedSize: 82379, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3d\x5d\x73\x1b\x39\x72\xef\xfa\x15\x28\x57\x1e\xec\x6c\xa8\x3d\xdf\x5d\xae\x2e\x7a\xd9\xe2\xea\xc3\xa7\x58\xb2\x59\xa2\xec\xa4\xca\xb7\x49\x41\x33\x4d\x12\x2b\x10\x98\x00\x18\x4a\xcc\xed\xfe\xf7\xab\x99\x11\x29\x8a\xe4\x00\x8d\x99\xa1\x4d\xc9\xdd\x2f\xb6\x38\x40\xa3\xf1\xd1\x1f\x68\xa0\x1b\x3c\x13\x9f\xc1\x58\xa1\xd5\x11\xe3\x99\x80\x7b\x07\xaa\xf8\xcb\x1e\xde\xfe\xd5\x1e\x0a\xfd\xe3\xec\xed\xc1\xad\x50\xe9\x11\x3b\xce\xad\xd3\xd3\x2b\xb0\x3a\x37\x09\x9c\xc0\x48\x28\xe1\x84\x56\x07\x53\x70\x3c\xe5\x8e\x1f\x1d\x30\x96\x18\xe0\xc5\x8f\xd7\x62\x0a\xd6\xf1\x69\x76\xc4\x54\x2e\xe5\x01\x63\x8a\x4f\xe1\x88\x19\x98\x6a\x07\xc2\x3a\xa1\xed\x61\xf9\xcf\xe1\x0d\x57\xff\xcf\x45\x22\x75\x9e\x1e\x0a\x7d\xc0\x98\xe4\x37\x20\x6d\x81\x8d\x31\xf3\xd0\xdc\x21\x97\xd9\x84\xaf\x95\xfd\xd1\xc0\x4c\x54\xa4\xbf\x3d\xfc\xeb\xe1\x1f\x0f\x6c\x06\x49\x51\x6f\x6c\x74\x9e\x1d\xb1\x1a\xfc\x05\x25\x0f\xe8\xab\x9e\x5d\x95\x44\x9d\x17\xa5\xcb\x5f\xa5\xb0\xee\xfd\xfa\x97\x0b\x61\x5d\xf9\x35\x93\xb9\xe1\xf2\x69\x57\xca\x0f\x56\xa8\x71\x2e\xb9\x79\xf2\xe9\x80\x31\x9b\xe8\x0c\x8e\xd8\x87\xa2\xd9\x8c\x27\x90\x1e\x30\x36\xab\xc6\xfc\x81\x8c\x1e\xe3\x69\x5a\x0e\x26\x97\x03\x23\x94\x03\x73\xac\x65\x3e\x5d\x7c\xaf\xca\xa4\x60\x13\x23\x32\x57\x76\x78\xe8\xb8\xcb\x2d\xd3\x23\xe6\x26\xb0\x1c\xa6\x65\x69\xc6\x7e\xb5\x5a\x0d\xb8\x9b\x1c\xb1\x43\x5b\x96\x3d\xac\xaa\xac\x14\xa9\xa6\x64\xe3\x67\x37\x2f\xc8\xb5\xce\x08\x35\xae\x6b\xfe\xd4\x18\x6d\xd8\x14\xac\xe5\x63\x7f\xab\x65\xc9\xcb\x8d\x82\x55\xdb\xe5\xc7\xc8\xa6\xcf\xd5\xd8\x80\xb5\x6c\xcc\x1d\xdc\xf1\x79\x31\x74\xc5\xdf\x10\x37\x18\xef\xaa\xda\xfd\xaa\xf2\x06\x61\x8b\x46\xce\x07\x88\x91\x59\xc1\xbe\xe0\x85\xc3\x0d\x46\xd8\x68\xa2\xff\x64\x3c\x2a\xd4\x29\x77\x8b\x1f\xab\x42\xb3\xb7\x37\xe0\xf8\xdb\x87\xdf\x6c\x32\x81\x29\x7f\x5c\x13\x3a\x03\xd5\x1f\x9c\x7f\xfe\xd3\x70\xed\x03\x63\x99\xd1\x19\x18\x27\xc0\xae\xfe\xca\xd8\x0a\xbf\x3f\xf9\xbd\xa6\x73\x6c\xc1\x24\xd8\xc2\xab\xc2\x60\xb3\x82\xbe\xf9\x15\x12\xf7\xe4\xd3\x82\x67\x57\xa1\x8e\xf8\xb2\x03\xb9\xd3\xe7\xaa\x40\x23\xb4\x5a\xf2\xd4\x96\x82\x8c\x09\x07\xd3\xad\x1f\x3c\xf4\xaf\x7e\xe6\xc6\xf0\xf9\xc6\xd7\x44\x38\x9e\x82\xdc\x86\xd7\x47\x77\x49\xfb\x92\xcb\x8f\xb5\x72\x5c\x28\x30\x7d\x33\xae\x29\xec\xa5\x1f\xd1\x87\x50\x3f\x9e\x12\x74\xaa\x66\x9f\xb9\x69\x4a\x4a\xa8\xe3\x15\x94\x4b\xda\xf3\x1d\xd5\xa5\x02\x66\x5c\xe6\x1d\x62\x3a\x33\x7a\xea\xc7\x86\xeb\x5f\x01\x89\x56\x23\x31\xbe\xe4\xd9\x7b\x98\x5f\xc1\x28\x54\x3c\x06\x75\x01\xb7\x30\xc7\x14\x43\xf7\x7f\x01\xe1\xa9\x69\x88\x58\x67\xd5\xfa\x8a\x41\x7e\xa3\xb5\x04\xae\x82\x35\x0c\xfc\x5f\x2e\x0c\x6c\x08\xa7\x6d\xd0\x2b\x86\x2e\x58\xae\x56\x4a\x6d\xc2\x48\x80\x4c\x77\x30\xc3\xf5\x02\xda\x47\x32\x7a\x3e\x4a\xb2\x4b\x65\xd5\x3d\xf6\xb8\xf9\x58\x52\xd2\xe5\xac\x2c\x74\xff\xd9\x8e\x66\x27\x59\xc8\xed\x0f\xbb\x62\x98\x54\xcc\x84\xd5\x06\x87\x9b\xab\xf9\x47\x44\x1f\x2b\xe8\x3d\x90\x52\xd8\x97\x63\x30\x91\xb5\xd0\x1d\x60\x2c\xe3\xce\x81\x51\x47\xec\x7f\x5e\xff\xfd\x87\xdf\x7a\x6f\x7e\x7a\xfd\xfa\xcb\x1f\x7a\xff\xf1\xcb\x0f\xaf\xff\x7e\x58\xfe\xe7\x5f\xdf\xfc\xf4\xe6\xb7\xc5\x1f\x3f\xbc\x79\xf3\xfa\xf5\x97\xf7\x97\xef\xae\x07\xa7\xbf\x88\x37\xbf\x7d\x51\xf9\xf4\xb6\xfa\xeb\xb7\xd7\x5f\xe0\xf4\x17\x24\x92\x37\x6f\x7e\xfa\x17\x14\x79\xf7\xbd\xdb\xfc\x06\x8c\x02\x07\xb6\x27\x94\xeb\x69\xd3\xab\x7a\x77\xc4\x9c\xc9\x01\x81\x64\xb1\xcc\xbe\x39\x13\x6d\xb1\x75\x7d\x34\xa0\x78\xc8\x42\x62\xc0\x91\xfe\x2a\xe1\x85\xea\x2f\x54\x41\x0c\x7d\xbd\x72\xe8\x03\x36\xaa\xb7\x9d\xa0\x8d\x3a\x2a\x3d\x0d\xb5\xeb\x06\xb3\x00\x95\x4e\xa1\x1f\xc0\x83\xc5\x55\x95\x83\x11\x18\x03\xe9\x49\x5e\xac\xa3\x62\xfb\x95\xe6\x52\xa8\xf1\xf9\x58\xe9\xe5\xcf\xa7\xf7\x90\xe4\x0e\xa1\xc9\x03\xd6\x75\x2c\x75\xab\x34\x82\xc2\x4a\xa9\x38\xec\x05\x4c\xb9\x4b\x26\xa7\xf7\x59\xb1\x53\x7e\x74\x66\x60\x00\xd9\xe1\x36\xc4\x55\x80\x96\x37\x8f\x10\xad\xee\x16\x50\x50\xc8\x1d\x56\x75\x77\xd0\x60\xb9\x79\x89\x1c\x90\x06\x63\x5f\x41\x63\x2a\xc3\x1c\xbe\x1d\x62\xa4\xe3\x23\xe0\xe4\xe4\xd3\x1a\x8b\x89\x8b\xa8\x16\xa1\x4e\xd7\x2b\xc5\x8c\x43\xc9\x61\xa5\x2d\x4b\xcc\x45\xcc\xe5\xa9\x4a\xcc\x15\x3b\x0e\x91\x8d\xdc\x81\x18\x4f\x1c\x6e\xb8\x46\xda\x4c\xb9\x2b\x37\x5a\x7f\xfa\x63\x04\x31\xd8\x8d\x59\x9c\xdd\xf8\x68\x07\xa0\x8a\x57\x1d\xed\x72\x3f\x81\x9d\x99\x45\xb7\xba\xb1\xa9\x62\x84\x5a\x61\x1e\x0e\x41\x42\xe2\xb4\xb9\x06\x83\xe3\xe0\x08\x56\x27\xd3\xaa\x02\x92\xfe\x5b\x81\xa4\xff\x2a\x90\x69\x45\xcc\xb5\x0d\x88\xb9\xd6\x6b\xec\x2b\x73\x45\x36\x82\x47\x8f\x1f\xda\xde\xa6\x4e\x47\x59\x29\x41\xa2\x51\xc5\x32\x9d\x7e\x77\xde\xa6\xc7\x2e\x17\xa3\xbd\x2b\xbb\xa8\xbc\x1b\xb4\x98\x56\x3c\x87\x35\x13\xc3\xcd\x8d\x30\xd6\x54\x5e\x35\xd5\x17\xac\x99\xce\x60\xed\x04\x64\x73\xdd\xd1\xba\xe1\x66\x3a\x84\x35\xd7\x23\xac\x2d\xc5\x4d\xf5\x09\x6b\xac\x53\x58\x23\xbd\xc2\x9a\xea\x16\xd6\x54\xbf\xb0\xc6\x63\x53\x72\xe8\xc5\xca\x7d\x41\x2c\xac\xde\xb7\x6b\xca\x71\x8d\x57\x43\x0b\x25\x1c\x55\x49\x79\x6f\x47\x6d\x87\x68\xee\x68\x34\x0a\xf1\xb3\xed\x74\xa6\xa5\x1e\xcf\xdf\xc7\x08\xb9\x68\xda\x62\xf9\xac\xb7\x4a\x17\xb9\x9d\x1e\xa1\xb7\x6e\x10\x7c\x57\xbe\xa7\x9d\x58\x58\x0d\x4c\x1f\xf2\x3b\x55\x40\x5b\xe3\xad\x40\x5b\xe3\x55\xf8\x9a\x7e\xa7\x58\x93\xa5\xad\xb9\xd2\x42\x49\x47\x0c\x48\x64\x85\x58\xf3\x24\x6a\x95\x47\xf7\x38\x6e\x26\xa3\xcd\x91\x1d\xde\x01\x8b\x31\x41\x3a\x57\x9d\x68\x7f\x88\x72\x82\x7c\x22\x08\x20\x9f\x48\x37\x84\x56\x40\x3e\x11\x14\x90\x4f\x04\x53\x8b\x7c\x22\x48\x92\xc9\x27\x42\x3e\x11\xf2\x89\xac\x03\xf9\x44\xc8\x27\xd2\x39\x71\x15\x90\x4f\x64\x03\xc8\x27\xb2\x5e\x83\x7c\x22\x5b\xc8\x24\x9f\x48\xb0\x02\xf9\x44\xd6\x8a\x76\xe0\x13\x09\x16\x49\xf8\xb0\x0c\xc3\xf3\xc5\x99\x06\xc7\x0f\x14\xbf\x91\xf0\x98\x24\xe1\xe7\xf9\x09\x8c\x78\x2e\x6b\x8d\xa7\x70\xfc\x5a\x85\xb2\x76\x16\xc2\x08\x26\xc0\xa5\x9b\x1c\x4f\x20\xb9\x6d\x8e\x44\x4c\xf9\xb8\xf9\xb0\x48\x61\x1d\x28\x48\xfd\xd9\x23\x50\xa8\xa6\xfc\xfe\xbf\xb4\xb9\x95\x9a\xa7\xc7\x60\xdc\xf5\xf5\x45\x63\x54\xab\x17\x96\xea\x90\xc4\xc9\x3c\x74\x82\x08\xcf\x3a\x2c\x5d\x77\x4a\xbb\x32\x99\x49\x6d\x5b\x5f\x9f\xae\x45\xe0\x6b\x6d\x33\x18\x53\x4a\x8a\xa9\x70\x5e\xf1\x19\xaf\x64\x50\x21\xd9\x71\xa1\xd8\x11\x21\xd8\x7b\x1a\x7a\xdd\x22\xe4\x1a\x1d\xa9\x0a\x96\xa6\xf2\xd9\x4f\x65\xb0\x88\x4d\xed\x69\x5b\x15\x64\x21\xc9\x8d\x70\xf3\x63\xad\x1c\xdc\xd7\x2a\x43\x8c\x04\xe1\x52\xea\xbb\x81\x11\x33\x21\x61\x0c\xa7\x36\xe1\x92\x87\x76\xc3\xb8\x20\xf1\x84\x67\xfc\x46\x48\x11\x5a\xa6\xd8\x2d\x23\x4f\x83\xa6\x13\xd2\x98\x8c\x30\xdb\xb0\x06\x64\x6a\x74\xb6\xaf\xd4\xe1\x4e\xb8\x16\x4b\xc0\x3b\xc8\xb8\x99\xcf\x8c\x4e\x2e\x75\xae\xbc\x2e\x2e\x54\x37\x0d\xf0\xf4\xa3\x92\xf3\x2b\xad\xdd\x99\x90\x60\xe7\xd6\x81\xf7\x1c\x0a\x47\xa1\xc9\x55\xdf\xbe\x2b\x93\xec\x79\x70\xad\xf8\xde\xfe\xf2\xe7\x60\x9b\x21\xf9\x59\xb6\xf9\x41\xab\xa2\x2f\x1d\xf5\xe0\x93\x05\xaf\x17\xa3\xdb\x0e\x58\xb8\x10\x2a\xbf\xff\x98\x79\x2d\x29\x16\xc1\xd2\x12\x66\xdb\xf3\x90\x6d\x12\x87\xe0\x07\xa3\x65\x30\x53\x00\x1a\x59\x59\xb0\x2b\x64\x79\x60\x9e\x22\x90\xa1\x98\xf9\x4e\xa8\x54\xdf\xd9\x0e\x67\x6a\x3c\xb5\xfc\xd8\x40\x0a\xca\x09\x2e\x87\x5b\x52\xde\x35\xec\xcf\x36\xd4\x98\xd4\x44\xf8\x55\xb1\x60\x94\x0e\xb1\x76\x61\x07\x38\x2d\xc1\xf8\x37\x25\x9d\xe4\xac\x83\xd1\x08\x92\xc0\x61\x03\xb2\xdb\x41\x27\x2d\x12\x0f\xce\x01\x8b\x9d\x8b\xe5\x38\x0e\x21\xd1\x2a\x14\x0c\x87\x15\x89\xf8\x73\x94\xae\x72\xf9\xa1\x17\x55\xbd\xbe\xbf\xeb\x64\x27\xef\x25\x24\xad\xfc\x2f\x57\xbe\xdd\x6b\x68\x61\xfa\x77\xad\x71\xdb\x9c\xe0\x16\x07\xbf\xbd\x41\x6e\x6d\xf6\x70\x5b\xd3\x70\x4b\x83\xf0\x51\xf8\x77\xa5\x34\x55\x7b\x32\x55\xde\xcf\x0f\x1e\xcf\x21\x98\x99\x88\x4f\x34\x1b\xd6\x32\xc8\x33\x4c\xc4\x8c\xf9\x93\xa0\x21\x10\x64\x3a\x3d\x1f\x78\x96\x60\x70\x0b\x16\x21\xa9\x7d\xdb\xae\x4c\x1b\x9f\x2f\x27\x48\x06\x7a\x4f\x9c\x65\x03\xa3\x9d\x4e\x74\x77\x66\x34\x26\x13\x1d\x1e\x99\x4e\x61\xa0\x4d\xf0\xb2\x43\xcc\x35\x07\xbc\xbb\x2a\xfb\x76\x2d\x77\x3d\x2b\x8e\x9b\x31\x38\xcc\x50\x22\x53\x6a\xc6\x26\xd3\x8c\x4a\xa3\xd9\xc2\xc7\x86\x3b\x26\xeb\x95\x73\xdb\x76\x9f\x14\x62\xe4\x10\x2d\x9e\xdc\x81\x28\x81\xbd\xbd\x65\xb8\x4f\x64\x9e\xc2\xf9\xe0\x8a\xab\xf1\x76\x09\xe0\x9d\x0a\xa1\x5a\xd6\xb7\x4e\xe8\x63\xad\x9c\xd1\x72\x20\xb9\xda\x2a\x0d\x42\x12\xca\x27\x45\xc2\x27\x49\x8b\x73\xad\x5d\x58\xb0\x99\xd1\xf7\x5b\xf7\x31\xc1\xe4\xe7\x49\x02\xd6\x5e\xe8\xf1\xa9\x4a\x74\x5a\xac\xe5\x1a\xea\x40\xe5\x1e\x1f\x55\x8f\xfd\xe7\xf0\xe3\x07\xcf\xe7\xeb\xd3\xff\xbe\x6e\x3a\x72\x4b\x1a\xcf\x44\xbd\x33\x24\x44\xdf\xab\x57\x9e\x8f\x3f\xa6\x30\xfb\xd1\xba\x54\xe7\xfe\x5d\x0a\x8a\xc8\x4a\xf6\x36\xc5\x93\xc8\xdc\x3a\x30\x27\x7a\xca\x45\xad\xc3\x3a\x8c\x45\x4f\x33\xad\x40\xb9\x0b\x3d\xbe\xf0\x39\xa4\x10\x98\x0c\x9c\xe4\xd3\xec\x44\x98\xd2\x16\xaa\xdd\x2d\xa3\x31\x9d\xb7\x3a\x26\x4e\x95\xbd\x82\x91\x01\x3b\xb9\xe2\xae\x16\xcd\xa3\x91\x5c\x1a\xb0\xff\x78\xfb\x6f\xff\xfe\xbb\xad\x33\x60\x91\x27\xf6\xc7\x0f\xf4\xb7\x39\xa6\x9f\xe9\x79\x7f\xb1\x50\x1e\x6c\xd7\x36\x07\x1d\x81\x73\x7f\x1c\x55\x05\x4c\xb4\x6d\xef\xd8\x0e\x59\x26\x58\xab\x04\xa7\xc3\x5d\x92\xbd\x07\xc8\xb8\x14\x33\xaf\x69\x87\x35\x3b\xcb\x07\x5e\x66\xe1\x9c\xc2\xf8\xa3\x42\xa3\x6f\xc2\x37\x86\x76\x63\xaa\x39\xf1\x35\xfd\x82\x8c\x39\x69\x87\xe0\x9c\x50\xf5\xef\x66\xb0\x88\xb9\x48\xf8\x71\x51\x6c\x24\x12\xee\xc2\x43\x88\x9e\x91\x44\x0a\x50\x6e\x05\x75\x67\x98\xa7\x3a\x0d\x22\xf3\x6b\xa8\x05\xf4\xd8\xc9\xf9\xb0\xff\xf3\xc5\x29\xa2\xe4\xf0\xfc\x72\x80\x2a\x78\xf9\xe9\xfa\x53\xff\x02\x51\xf0\x7c\x78\x7d\xfe\xf1\x7f\x51\xc5\x23\xf8\x40\xcc\xb8\x03\xc4\x05\x34\x34\x4a\xab\x44\x77\xb8\xf2\x72\x69\xf7\x65\x79\xab\x2b\xb8\xd8\xf6\xf8\xc0\x33\x58\xa4\xd4\x3f\x97\xe0\x8c\x48\x2c\x69\x1f\x6f\x63\xa4\x7d\x6a\x9a\x26\xed\xd3\xac\x23\xa4\x7d\xc2\x05\x49\xfb\xbc\x78\xed\x33\x74\xdc\xd9\x13\xd2\x3a\xdb\x1b\xf3\x0b\xd7\xe0\x08\x4f\xb4\x4c\xfb\x59\x26\x0b\xe9\x22\xb4\xfa\xa4\x9c\x90\x03\xa3\xef\x8b\x51\xf7\xf8\xee\x77\x7f\xb3\x7b\x04\xc9\x3c\xa9\xf7\xdd\x60\xa6\x3d\xd3\xd6\x95\xdd\xe8\x42\xc2\xc3\x7d\xf8\xae\x47\x4c\xd4\x57\xa2\xa7\x53\xbe\xf9\x1e\xe3\x36\x88\x88\x0d\x89\xe0\x62\x16\x71\xad\x2f\x22\xb6\x62\xe2\x5c\xf6\x0e\x82\xde\xf9\x98\xa1\x0a\x71\xdd\x53\x1a\x91\x9d\x2f\xe8\xfc\x1b\xf0\x14\xea\xdf\x4a\x5c\x85\x9d\x26\x09\xc7\x3f\x7a\xc4\xe2\xe7\x98\xe1\xee\x66\xb4\x6a\x21\x3e\xb4\xd8\xfb\xd8\xd0\x7a\xe1\x92\xfc\x88\xf5\xbf\x83\x8c\xb5\xa5\x7f\x10\xf5\xd6\x5e\xd4\xe0\x61\x4e\xe6\x58\xdc\xfb\x70\x4d\x5e\x87\x8b\x7e\x1b\xae\xf5\xd3\x6b\xe5\x0b\xb8\xa8\x25\x19\x41\x59\x4c\x5a\xe1\xc0\xb9\x19\x8b\x59\x4c\x2e\xc9\x86\x3a\xb9\x7d\x06\x52\xef\x3b\x5d\x6f\xdf\x66\x61\x20\x2f\x9c\xc3\xd0\xf9\x2f\xcd\x93\x89\x42\x26\x0a\x99\x28\x2d\x5b\x20\x13\x65\x1d\x27\xa9\x0c\x3f\x90\x89\x12\x22\x91\x4c\x94\x15\x78\xa9\x26\x4a\xb0\x88\x0c\xdc\x17\x09\x5d\xb3\x71\x86\x7b\x9e\x34\xeb\xb1\x14\x6e\xf2\xfa\x09\xe8\x31\xa1\x46\xda\xf3\xf9\x8e\x1b\xe5\x9b\xc1\x1e\x03\x63\x3c\xc9\x54\x7a\x2c\x31\xc2\x89\x84\x4b\x4f\x91\x57\x7a\x34\xaa\xbb\x2d\x14\x5c\x47\xe1\x98\xc3\xb0\xbb\x6d\x71\xd1\xf2\x04\x1c\x24\x4e\x68\x75\x2d\xa6\xa0\xf3\xe6\x97\x8a\x28\x2e\x7f\x2b\xec\xe1\x55\x7a\x46\x71\xf9\x9b\xa5\x69\x2a\x1b\x16\xa1\x98\xfa\xed\x40\x31\xf5\xf5\xa5\x28\xa6\x7e\x15\x2f\xc5\xd4\xc7\x77\x80\x62\xea\x9b\x22\xa3\x98\xfa\x28\xd4\xdf\x45\x4c\x7d\x6e\xe1\x12\x1c\x4f\xb9\xe3\xa7\xf7\xc9\x84\xab\x31\x9c\x09\xe9\xea\x17\x4a\x48\x2e\x84\x03\x49\xce\x95\xd8\x2a\x79\x42\x8b\xa0\xcd\x35\x01\x2f\x55\x56\xa4\x90\x70\x73\xae\x7e\xad\x8d\xc7\x0c\x06\xba\x2c\x0d\xda\xc2\x18\xe2\x42\x81\xe9\x9b\xfa\xfb\x62\x01\x1d\x8c\x98\xff\x90\xce\x7d\x24\xe8\x54\xcd\x3e\xf3\x7a\xb7\x70\x27\x19\x13\xc2\x2e\x5f\xe4\x92\xee\x2a\x33\xc0\x03\xa6\x33\xa3\x03\xd7\xd2\xf0\x3e\xac\x44\xab\x91\x18\x5f\xf2\xec\x3d\xcc\xaf\x00\xe1\x4e\x8a\xf3\x9c\xa3\xd3\xf9\x46\xfa\x9a\xf0\xde\xf8\x48\xc4\x3a\xab\xd6\x57\x0c\xf2\x90\x39\xb1\x80\xb8\xc4\x9f\x98\xb4\xb8\x11\xae\xf4\x91\x00\x99\xee\x60\x86\x79\x26\x3e\x83\xb1\x88\xbc\xd9\xab\x24\xa3\xe7\xa3\x24\x7b\x80\x74\xeb\x47\x62\x8f\x9b\x8f\x25\x25\x5d\xce\xca\xc2\xc9\x74\xb6\xa3\xd9\x49\x16\x72\x1b\xa3\xa0\x57\xa9\x47\x4f\x50\x2a\x66\xc2\x62\x73\x68\x47\xb8\xac\x9b\x39\xad\x1b\xb8\xad\xf7\xd6\x0f\xb2\x80\xd6\xe7\x38\x8f\xcb\xec\x9b\x33\xd1\x82\x90\x2e\x79\xc8\x96\xe9\x85\x49\x7f\x95\xf0\x42\xf5\x17\xda\x47\x1b\xa2\x2f\x70\xaa\x8d\xde\x7c\x78\x6c\xd4\xc0\xdb\x60\x98\x05\xa8\x74\x0a\xdf\xdd\x1b\x63\x25\x8d\xa0\xb0\x52\x8a\x9e\xbf\xa8\xa0\xc1\x55\x93\x0a\xe8\xf9\x0b\x6f\x55\x7a\xfe\x22\x7e\x1c\x4a\x0e\x2b\x6d\x59\x62\x2e\x62\x2e\x4f\x55\x62\xae\xd8\x71\x88\x6c\xe4\x19\x3f\x2d\xb6\xb4\x03\x50\xc5\x5f\xca\xab\x62\x31\x42\x6d\xf5\x81\x8d\x6b\x30\x38\x0e\xde\xe9\xed\x58\x32\xad\x9e\x00\x49\x7f\x6f\x55\x92\xfe\x64\x5a\x11\x73\x6d\x07\x62\xae\x55\xd8\x47\xd3\x0a\x8f\x3e\xe6\x4a\xf3\x86\x4e\x47\x59\x29\x1d\x85\x60\x3d\xbe\xe6\xfa\xdd\x78\x9b\xe8\x45\xfb\x35\xa0\x17\xed\x77\xd9\x30\xbd\x68\x8f\x03\x7a\xd1\x7e\x2b\xd0\x8b\xf6\x35\x40\x2f\xda\xd3\x8b\xf6\x35\x40\x2f\xda\xd3\x8b\xf6\xf5\x40\x5b\xe3\x2e\x1a\xa4\xad\xf1\x26\xbc\xa4\xad\x31\xbd\x68\xff\x08\xf4\xa2\x7d\x1d\xbc\xac\x17\xed\x1f\x9e\x0a\x77\x82\x7c\x22\x08\x20\x9f\x48\x37\x84\x56\x40\x3e\x11\x14\x90\x4f\x04\x53\x8b\x7c\x22\x48\x92\xc9\x27\x42\x3e\x11\xf2\x89\xac\x03\xf9\x44\xc8\x27\xd2\x39\x71\x15\x90\x4f\x64\x03\xc8\x27\xb2\x5e\x83\x7c\x22\x5b\xc8\x24\x9f\x48\xb0\x02\xf9\x44\xd6\x8a\x7e\x8d\x87\x2a\xb8\xbc\xe3\x73\x5b\x25\x1b\x08\x29\xb8\x4e\x82\xf3\xe3\xb4\x1c\x6a\xdd\xc5\x68\x33\xa4\x06\x8b\x5a\x32\x31\x9a\x2a\x0a\x31\x5e\x23\xed\x43\x1a\xe3\x98\x5b\x53\x18\xad\x82\xd6\x24\x91\xd1\x88\xa1\xbe\xa0\xb5\x44\x13\xcd\x80\x1e\x7d\x54\xa7\xba\x08\x7b\xcc\x9d\xae\xd8\x5f\x68\x35\xd0\x52\x24\xf3\x53\xff\xab\x33\xe1\xe0\xd3\xea\xd9\x9a\x0f\x4b\x1d\xf3\xf3\xfc\x04\x46\x3c\x97\x81\xa4\x8e\x61\x94\x2d\x68\x6a\xf7\xac\x8b\xa8\xc9\x12\xc3\x90\xe2\x27\x98\x94\x12\x8b\x88\xa1\x92\x53\xb2\xc6\x76\x0b\x3a\xd2\x3f\x3e\xca\x3f\x32\xc2\x7f\x8f\xa3\xfb\x5b\x46\xf6\xa3\xe5\x15\x26\x79\x25\xa3\xa9\x7e\xfe\x53\xdd\x85\x25\x57\x88\xa8\xe3\x0f\xe7\xc7\x65\x62\xa0\xdc\x78\x13\x56\xa2\x92\x60\x76\x78\x8a\x86\x8d\x8b\x8f\xc1\xc9\xba\x3f\x9d\x63\xbb\x0e\xb7\x8a\x8d\x95\x6f\xd6\x0a\xa3\xf3\x33\x0c\xd0\xf9\x59\x74\x75\x3a\x3f\xab\xaf\xd8\xe8\xfc\x2c\x36\x30\x8c\x11\x73\xee\xb8\x61\x62\x4e\x1c\xbc\x64\xe6\x6c\xd0\x58\xcc\x61\x21\x6b\x74\x60\xc8\xa2\x0f\x0d\x59\xa3\x53\xd5\xa8\x38\x7e\x16\x73\x76\xc8\x76\x19\xb3\xd7\xf5\x39\x22\x6b\x20\x34\x1b\xc5\xf7\xb3\x78\xd1\x41\x26\x61\x3d\x90\xd6\x41\x03\x69\x9d\x10\x90\x49\x58\x03\xc4\x9c\x28\x20\xe6\xc4\xd4\x7a\x0e\xcc\xd9\xa0\xb1\xb8\x66\xe2\x86\x3d\x3e\xef\x00\x6b\x72\x02\x8d\x28\x8a\xcc\x41\xc0\x5e\xba\x67\xaf\xc9\x1d\xfc\x66\x4d\xb1\xe6\x77\xf1\x9b\x37\xc8\x5a\x1b\x90\xac\x8d\x3c\x6c\xa3\xab\x58\x73\x7d\xc5\xda\x0b\xe2\x76\x7a\xab\x13\x02\x9a\xeb\x2f\xd6\x4e\x87\xb1\x2e\xa8\x6f\xa3\xcb\x58\x2b\x7d\xc6\x1a\xeb\x34\xd6\x46\xaf\xb1\x36\xba\x8d\xb5\x1a\xaf\xc6\x77\xfa\x59\x47\xf7\xfa\x59\xdb\x15\xd3\xd2\x28\x88\xae\xd8\xe4\x9e\x3f\x6b\xca\x55\x2d\xa3\x1e\x62\x57\x44\xa3\x7b\xff\x8d\xe9\x6c\xc2\xa7\xf1\x31\x00\xec\xbb\x77\xef\x45\xc7\x06\xb0\x17\xed\xe3\xdb\xa9\x55\x48\x21\x93\xf5\x40\x2e\x04\x14\x90\x0b\x01\x53\xeb\x39\xb8\x10\x28\x64\xd2\x0f\x14\x32\xf9\xec\x43\x26\xf1\x03\x15\xe5\x5f\x42\xe6\x74\x60\xe4\x63\xea\xaa\x29\x46\x3e\xa6\x68\x20\x1f\x13\xf9\x98\xc8\xc7\x14\x04\xf2\x31\x91\x8f\x69\xa5\x16\xf9\x98\x16\x40\x3e\x26\xf2\x31\x91\x8f\xa9\x23\x42\x2b\x20\x1f\x13\x0a\xc8\xc7\x84\xa9\x45\x3e\x26\x24\xc9\xe4\x63\x22\x1f\xd3\x33\xf2\x31\xa1\x8a\xdd\x08\x75\x22\xbc\x32\x1d\x35\xb2\xc9\x84\x0b\xe5\x1f\xcc\x70\x28\x3b\xab\x1e\x88\x1f\x75\x41\x50\x20\xae\x1e\x4f\x10\xdc\x27\x32\x4f\x57\x82\xfe\x7d\x28\x11\x2c\x85\x5c\xa8\x98\xd5\xe0\x0d\xfd\x47\xb7\x25\xd4\xde\x76\x50\xea\xf1\x05\xcc\xc0\xfb\x78\x38\xaa\x39\x03\x19\xf7\x2f\x2a\xac\x35\x76\x63\xf4\x2d\xa8\x81\x4e\x4b\x55\x84\x10\x51\x68\xc1\xf4\x14\xf3\xe7\xc2\xe8\xe9\x0c\x77\x0a\x12\x1c\x0c\x74\xf8\xfe\x35\x8e\x29\x18\x8e\xc3\xe2\x10\x4e\xf2\x9b\xce\x3a\x5c\x06\x8d\x6b\xe5\x0a\xa9\x64\x3e\x20\x1e\xb7\x47\x63\x2e\xb7\x25\xdd\x8e\xa4\xe3\xe3\x8e\xc8\xc3\x25\x57\xe1\x42\x79\xb7\xe3\x58\x5e\xe8\x78\x05\x74\x93\x2c\xa0\xf8\x04\x69\x5f\x29\xed\xca\x54\x01\xb5\x7d\x88\xb3\x0b\x11\x13\x80\x26\x6e\xb9\x30\xfb\x4b\x12\xfa\x66\x5c\xdb\x78\x40\xe6\xa2\x29\xab\x97\xb5\x1e\xc2\x4e\xd5\xec\x33\x37\x4d\x69\xc3\xad\x24\x15\xe4\x4f\xe4\xf2\x9f\x85\x85\x66\x0c\xa6\x33\xa3\x03\x87\x51\xf8\x3d\x7c\x52\xa6\xaf\xb8\xe4\xd9\x7b\x98\x5f\x01\x22\x3d\x49\x9c\x7b\x00\xed\x10\x88\xb4\x93\xc3\x53\xd3\x10\xb1\xce\xaa\xf5\x15\x83\x1c\x23\x4b\x59\x74\xaa\x3b\xcc\xa6\x39\xc2\x94\x1f\x09\x90\xe9\x0e\x66\x98\x67\xe2\x33\x18\x8b\xf4\xcc\x45\xcf\x47\x49\xf6\x80\xbb\xc9\x0e\xb0\xc7\xcd\xc7\x92\x92\x2e\x67\x65\x91\xa7\xea\x6c\x47\xb3\x93\xc4\xd8\x1a\xab\xd4\xa3\x27\x28\x15\x33\x61\xb1\xde\x37\x74\x0a\x24\xd6\x28\x0d\x12\x8b\x4f\x85\xc4\xf6\x3b\x1d\x12\x6b\x9f\x12\x89\xad\x2c\xb3\x6f\xce\x44\x0b\x42\xba\xe4\x21\x0b\x89\x01\x47\xfa\xab\x84\x17\xaa\xbf\x50\x05\x31\xf4\xf5\xca\xa1\x0f\x18\xad\xad\x12\x3c\x2a\x98\x81\xa1\x04\xaf\x6b\x10\xb5\x8c\x29\xc1\x6b\x09\x94\xe0\xf5\x39\x26\x78\x5d\x0d\x14\xde\x9f\x3d\x7e\x79\xad\x73\x0f\x7d\x0f\x06\x32\x29\x12\x7e\xac\xf3\x7a\xdf\x0f\xe6\xe2\xc5\x54\x28\x31\xcd\xa7\x47\xec\x0f\x5e\x4a\x7c\xb6\x64\x30\x67\x2c\x46\x2c\x86\x73\xc5\xc6\x2f\x72\x94\xd5\x1c\x67\x2d\x47\x58\xc9\x7b\x6a\x1d\xb7\xb0\x8a\xd1\xc6\x44\x28\x17\x2c\x4d\xe5\x33\x98\x4a\x84\x08\xba\x33\xc2\x41\x3f\xcb\xfe\x76\x7d\x3d\x18\x18\x7d\x13\xc8\x5b\xed\xb3\x97\x2d\x24\xb9\x11\x6e\x7e\xac\x95\x83\xfb\x56\x39\xac\xb9\x94\xfa\x6e\x60\xc4\x4c\x48\x18\xc3\xa9\x4d\xb8\xf4\x26\x99\xc5\x11\x58\x40\xc2\x33\x7e\x23\xa4\x08\xad\x57\xac\x1d\xc8\xd3\xa0\x8d\x82\xb4\xa7\x22\x6c\x29\xac\x1d\x95\x1a\x9d\xed\x2b\x75\x28\x49\x94\x2d\x96\x40\x07\xa7\xc6\x99\xd1\xc9\xa5\x4f\xd7\x32\xfc\xd1\x25\x4f\x3f\x2a\x39\xbf\xd2\xda\x9d\x09\x09\x76\x6e\x1d\x78\xdd\xd2\x38\x0a\x4d\xae\xfa\xf6\x9d\xd1\xb9\x77\xd2\x56\x4c\x82\xbf\xfc\x39\xd8\x66\x48\x90\x96\x6d\x7e\xd0\xaa\xe8\x4b\x47\x3d\xf8\x64\xc1\xbb\x7d\xe9\xb6\x03\x16\x2e\x84\xca\xef\x3f\x66\x5e\xeb\x8e\xc5\xe4\xbc\x0f\x9d\x6f\xb3\x18\x7e\x30\x5a\x76\x77\xd2\x59\x16\xec\x0a\x59\x1e\x98\xa7\x08\x64\x28\x66\xbe\x13\x2a\xd5\x77\xb6\xc3\x99\x1a\x4f\x2d\x3f\x36\x90\x82\x72\x82\xcb\x61\x06\x49\x67\x83\xb3\x89\xba\xd3\x23\xeb\x25\xa3\x74\x88\xb5\x0b\x83\xc0\x69\x09\xc6\xbf\x51\xea\xc4\x73\x03\xa3\x11\x24\x81\x0b\xe8\xc8\x6e\x07\xbd\x30\x48\x3c\x38\xcf\x0b\x76\x2e\x96\xe3\x38\x84\x44\xab\xd0\xd5\x04\xac\x48\xc4\xdf\xa9\xef\xea\xdc\xb5\xb5\x57\xc0\x83\xa0\xde\xc9\xd3\x5b\x5c\x64\x18\x82\x99\x89\x04\xd6\x33\x8e\xd5\x22\xb5\x8e\xbb\x7c\x63\xb0\x7d\x6b\xf2\xd4\x18\x6d\x2e\xc1\xda\x9a\x8b\x5b\xde\x51\x7a\xc7\x1d\xdc\xf1\x79\x3f\x4d\x0d\xd8\xad\x73\xec\xe1\x96\xc0\xf8\xfb\x86\x75\xb8\xb5\x9b\x01\xa4\x35\x83\xb6\xe5\x67\x0b\x66\x06\xe9\x93\x1d\x88\x75\xda\x14\x23\xf4\xe4\xb7\xfc\x66\x8b\xe3\xe0\x61\x0a\xd8\x3f\x7e\x3f\x78\x9c\x0d\x9e\x24\x90\x39\x48\xcb\x2b\x6d\x55\xd9\x5b\xa1\xd2\x23\xf6\xea\x55\xf9\x47\x26\x73\xc3\xe5\xc3\x9f\x05\xc3\x88\x4a\x06\xb1\x2f\xbf\x1c\x54\x8d\x43\xfa\x70\xd6\x5a\xfd\xf8\xcf\x00\x00\x00\xff\xff\x38\xae\xad\x40\xcb\x41\x01\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3d\x5d\x73\x1b\x39\x72\xef\xfa\x15\x28\x57\x1e\xec\x6c\xa8\x5d\xe7\x2e\x57\x39\xbd\x6c\x71\xf5\xe1\x53\x2c\xd9\x2c\x51\x76\x52\xe5\xdb\xa4\xa0\x99\x26\x89\x15\x08\x4c\x00\x0c\x25\xe6\x76\xff\x7b\x6a\x66\x44\x8a\x22\x39\x40\x63\x66\x68\x53\x72\xf7\x8b\x2d\x0e\xd0\x68\x7c\xf4\x07\x1a\xe8\x06\xcf\xc4\x67\x30\x56\x68\x75\xc4\x78\x26\xe0\xde\x81\x2a\xfe\xb2\x87\xb7\xff\x6e\x0f\x85\xfe\x71\xf6\xf6\xe0\x56\xa8\xf4\x88\x1d\xe7\xd6\xe9\xe9\x15\x58\x9d\x9b\x04\x4e\x60\x24\x94\x70\x42\xab\x83\x29\x38\x9e\x72\xc7\x8f\x0e\x18\x4b\x0c\xf0\xe2\xc7\x6b\x31\x05\xeb\xf8\x34\x3b\x62\x2a\x97\xf2\x80\x31\xc5\xa7\x70\xc4\x0c\x4c\xb5\x03\x61\x9d\xd0\xf6\xb0\xfc\xe7\xf0\x86\xab\xff\xe3\x22\x91\x3a\x4f\x0f\x85\x3e\x60\x4c\xf2\x1b\x90\xb6\xc0\xc6\x98\x79\x68\xee\x90\xcb\x6c\xc2\xd7\xca\xfe\x68\x60\x26\x2a\xd2\xdf\x1e\xfe\xf5\xf0\xa7\x03\x9b\x41\x52\xd4\x1b\x1b\x9d\x67\x47\xac\x06\x7f\x41\xc9\x03\xfa\xaa\x67\x57\x25\x51\xe7\x45\xe9\xf2\x57\x29\xac\x7b\xbf\xfe\xe5\x42\x58\x57\x7e\xcd\x64\x6e\xb8\x7c\xda\x95\xf2\x83\x15\x6a\x9c\x4b\x6e\x9e\x7c\x3a\x60\xcc\x26\x3a\x83\x23\xf6\xa1\x68\x36\xe3\x09\xa4\x07\x8c\xcd\xaa\x31\x7f\x20\xa3\xc7\x78\x9a\x96\x83\xc9\xe5\xc0\x08\xe5\xc0\x1c\x6b\x99\x4f\x17\xdf\xab\x32\x29\xd8\xc4\x88\xcc\x95\x1d\x1e\x3a\xee\x72\xcb\xf4\x88\xb9\x09\x2c\x87\x69\x59\x9a\xb1\xdf\xac\x56\x03\xee\x26\x47\xec\xd0\x96\x65\x0f\xab\x2a\x2b\x45\xaa\x29\xd9\xf8\xd9\xcd\x0b\x72\xad\x33\x42\x8d\xeb\x9a\x3f\x35\x46\x1b\x36\x05\x6b\xf9\xd8\xdf\x6a\x59\xf2\x72\xa3\x60\xd5\x76\xf9\x31\xb2\xe9\x73\x35\x36\x60\x2d\x1b\x73\x07\x77\x7c\x5e\x0c\x5d\xf1\x37\xc4\x0d\xc6\xbb\xaa\x76\xbf\xaa\xbc\x41\xd8\xa2\x91\xf3\x01\x62\x64\x56\xb0\x2f\x78\xe1\x70\x83\x11\x36\x9a\xe8\x3f\x19\x8f\x0a\x75\xca\xdd\xe2\xc7\xaa\xd0\xec\xed\x0d\x38\xfe\xf6\xe1\x37\x9b\x4c\x60\xca\x1f\xd7\x84\xce\x40\xf5\x07\xe7\x9f\xff\x34\x5c\xfb\xc0\x58\x66\x74\x06\xc6\x09\xb0\xab\xbf\x32\xb6\xc2\xef\x4f\x7e\xaf\xe9\x1c\x5b\x30\x09\xb6\xf0\xaa\x30\xd8\xac\xa0\x6f\x7e\x83\xc4\x3d\xf9\xb4\xe0\xd9\x55\xa8\x23\xbe\xec\x40\xee\xf4\xb9\x2a\xd0\x08\xad\x96\x3c\xb5\xa5\x20\x63\xc2\xc1\x74\xeb\x07\x0f\xfd\xab\x9f\xb9\x31\x7c\xbe\xf1\x35\x11\x8e\xa7\x20\xb7\xe1\xf5\xd1\x5d\xd2\xbe\xe4\xf2\x63\xad\x1c\x17\x0a\x4c\xdf\x8c\x6b\x0a\x7b\xe9\x47\xf4\x21\xd4\x8f\xa7\x04\x9d\xaa\xd9\x67\x6e\x9a\x92\x12\xea\x78\x05\xe5\x92\xf6\x7c\x47\x75\xa9\x80\x19\x97\x79\x87\x98\xce\x8c\x9e\xfa\xb1\xe1\xfa\x57\x40\xa2\xd5\x48\x8c\x2f\x79\xf6\x1e\xe6\x57\x30\x0a\x15\x8f\x41\x5d\xc0\x2d\xcc\x31\xc5\xd0\xfd\x5f\x40\x78\x6a\x1a\x22\xd6\x59\xb5\xbe\x62\x90\xdf\x68\x2d\x81\xab\x60\x0d\x03\xff\x9b\x0b\x03\x1b\xc2\x69\x1b\xf4\x8a\xa1\x0b\x96\xab\x95\x52\x9b\x30\x12\x20\xd3\x1d\xcc\x70\xbd\x80\xf6\x91\x8c\x9e\x8f\x92\xec\x52\x59\x75\x8f\x3d\x6e\x3e\x96\x94\x74\x39\x2b\x0b\xdd\x7f\xb6\xa3\xd9\x49\x16\x72\xfb\xc3\xae\x18\x26\x15\x33\x61\xb5\xc1\xe1\xe6\x6a\xfe\x11\xd1\xc7\x0a\x7a\x0f\xa4\x14\xf6\xe5\x18\x4c\x64\x2d\x74\x07\x18\xcb\xb8\x73\x60\xd4\x11\xfb\xef\xd7\x7f\xff\xe1\xf7\xde\x9b\x9f\x5f\xbf\xfe\xf2\x53\xef\xaf\xbf\xfe\xf0\xfa\xef\x87\xe5\x7f\xfe\xf9\xcd\xcf\x6f\x7e\x5f\xfc\xf1\xc3\x9b\x37\xaf\x5f\x7f\x79\x7f\xf9\xee\x7a\x70\xfa\xab\x78\xf3\xfb\x17\x95\x4f\x6f\xab\xbf\x7e\x7f\xfd\x05\x4e\x7f\x45\x22\x79\xf3\xe6\xe7\x7f\x42\x91\x77\xdf\xbb\xcd\x6f\xc0\x28\x70\x60\x7b\x42\xb9\x9e\x36\xbd\xaa\x77\x47\xcc\x99\x1c\x10\x48\x16\xcb\xec\x9b\x33\xd1\x16\x5b\xd7\x47\x03\x8a\x87\x2c\x24\x06\x1c\xe9\xaf\x12\x5e\xa8\xfe\x42\x15\xc4\xd0\xd7\x2b\x87\x3e\x60\xa3\x7a\xdb\x09\xda\xa8\xa3\xd2\xd3\x50\xbb\x6e\x30\x0b\x50\xe9\x14\xfa\x01\x3c\x58\x5c\x55\x39\x18\x81\x31\x90\x9e\xe4\xc5\x3a\x2a\xb6\x5f\x69\x2e\x85\x1a\x9f\x8f\x95\x5e\xfe\x7c\x7a\x0f\x49\xee\x10\x9a\x3c\x60\x5d\xc7\x52\xb7\x4a\x23\x28\xac\x94\x8a\xc3\x5e\xc0\x94\xbb\x64\x72\x7a\x9f\x15\x3b\xe5\x47\x67\x06\x06\x90\x1d\x6e\x43\x5c\x05\x68\x79\xf3\x08\xd1\xea\x6e\x01\x05\x85\xdc\x61\x55\x77\x07\x0d\x96\x9b\x97\xc8\x01\x69\x30\xf6\x15\x34\xa6\x32\xcc\xe1\xdb\x21\x46\x3a\x3e\x02\x4e\x4e\x3e\xad\xb1\x98\xb8\x88\x6a\x11\xea\x74\xbd\x52\xcc\x38\x94\x1c\x56\xda\xb2\xc4\x5c\xc4\x5c\x9e\xaa\xc4\x5c\xb1\xe3\x10\xd9\xc8\x1d\x88\xf1\xc4\xe1\x86\x6b\xa4\xcd\x94\xbb\x72\xa3\xf5\xa7\x7f\x8d\x20\x06\xbb\x31\x8b\xb3\x1b\x1f\xed\x00\x54\xf1\xaa\xa3\x5d\xee\x27\xb0\x33\xb3\xe8\x56\x37\x36\x55\x8c\x50\x2b\xcc\xc3\x21\x48\x48\x9c\x36\xd7\x60\x70\x1c\x1c\xc1\xea\x64\x5a\x55\x40\xd2\x7f\x2b\x90\xf4\x5f\x05\x32\xad\x88\xb9\xb6\x01\x31\xd7\x7a\x8d\x7d\x65\xae\xc8\x46\xf0\xe8\xf1\x43\xdb\xdb\xd4\xe9\x28\x2b\x25\x48\x34\xaa\x58\xa6\xd3\xef\xce\xdb\xf4\xd8\xe5\x62\xb4\x77\x65\x17\x95\x77\x83\x16\xd3\x8a\xe7\xb0\x66\x62\xb8\xb9\x11\xc6\x9a\xca\xab\xa6\xfa\x82\x35\xd3\x19\xac\x9d\x80\x6c\xae\x3b\x5a\x37\xdc\x4c\x87\xb0\xe6\x7a\x84\xb5\xa5\xb8\xa9\x3e\x61\x8d\x75\x0a\x6b\xa4\x57\x58\x53\xdd\xc2\x9a\xea\x17\xd6\x78\x6c\x4a\x0e\xbd\x58\xb9\x2f\x88\x85\xd5\xfb\x76\x4d\x39\xae\xf1\x6a\x68\xa1\x84\xa3\x2a\x29\xef\xed\xa8\xed\x10\xcd\x1d\x8d\x46\x21\x7e\xb6\x9d\xce\xb4\xd4\xe3\xf9\xfb\x18\x21\x17\x4d\x5b\x2c\x9f\xf5\x56\xe9\x22\xb7\xd3\x23\xf4\xd6\x0d\x82\xef\xca\xf7\xb4\x13\x0b\xab\x81\xe9\x43\x7e\xa7\x0a\x68\x6b\xbc\x15\x68\x6b\xbc\x0a\x5f\xd3\xef\x14\x6b\xb2\xb4\x35\x57\x5a\x28\xe9\x88\x01\x89\xac\x10\x6b\x9e\x44\xad\xf2\xe8\x1e\xc7\xcd\x64\xb4\x39\xb2\xc3\x3b\x60\x31\x26\x48\xe7\xaa\x13\xed\x0f\x51\x4e\x90\x4f\x04\x01\xe4\x13\xe9\x86\xd0\x0a\xc8\x27\x82\x02\xf2\x89\x60\x6a\x91\x4f\x04\x49\x32\xf9\x44\xc8\x27\x42\x3e\x91\x75\x20\x9f\x08\xf9\x44\x3a\x27\xae\x02\xf2\x89\x6c\x00\xf9\x44\xd6\x6b\x90\x4f\x64\x0b\x99\xe4\x13\x09\x56\x20\x9f\xc8\x5a\xd1\x0e\x7c\x22\xc1\x22\x09\x1f\x96\x61\x78\xbe\x38\xd3\xe0\xf8\x81\xe2\x37\x12\x1e\x93\x24\xfc\x32\x3f\x81\x11\xcf\x65\xad\xf1\x14\x8e\x5f\xab\x50\xd6\xce\x42\x18\xc1\x04\xb8\x74\x93\xe3\x09\x24\xb7\xcd\x91\x88\x29\x1f\x37\x1f\x16\x29\xac\x03\x05\xa9\x3f\x7b\x04\x0a\xd5\x94\xdf\xff\xa7\x36\xb7\x52\xf3\xf4\x18\x8c\xbb\xbe\xbe\x68\x8c\x6a\xf5\xc2\x52\x1d\x92\x38\x99\x87\x4e\x10\xe1\x59\x87\xa5\xeb\x4e\x69\x57\x26\x33\xa9\x6d\xeb\xeb\xd3\xb5\x08\x7c\xad\x6d\x06\x63\x4a\x49\x31\x15\xce\x2b\x3e\xe3\x95\x0c\x2a\x24\x3b\x2e\x14\x3b\x22\x04\x7b\x4f\x43\xaf\x5b\x84\x5c\xa3\x23\x55\xc1\xd2\x54\x3e\xfb\xa9\x0c\x16\xb1\xa9\x3d\x6d\xab\x82\x2c\x24\xb9\x11\x6e\x7e\xac\x95\x83\xfb\x5a\x65\x88\x91\x20\x5c\x4a\x7d\x37\x30\x62\x26\x24\x8c\xe1\xd4\x26\x5c\xf2\xd0\x6e\x18\x17\x24\x9e\xf0\x8c\xdf\x08\x29\x42\xcb\x14\xbb\x65\xe4\x69\xd0\x74\x42\x1a\x93\x11\x66\x1b\xd6\x80\x4c\x8d\xce\xf6\x95\x3a\xdc\x09\xd7\x62\x09\x78\x07\x19\x37\xf3\x99\xd1\xc9\xa5\xce\x95\xd7\xc5\x85\xea\xa6\x01\x9e\x7e\x54\x72\x7e\xa5\xb5\x3b\x13\x12\xec\xdc\x3a\xf0\x9e\x43\xe1\x28\x34\xb9\xea\xdb\x77\x65\x92\x3d\x0f\xae\x15\xdf\xdb\x5f\xfe\x1c\x6c\x33\x24\x3f\xcb\x36\x3f\x68\x55\xf4\xa5\xa3\x1e\x7c\xb2\xe0\xf5\x62\x74\xdb\x01\x0b\x17\x42\xe5\xf7\x1f\x33\xaf\x25\xc5\x22\x58\x5a\xc2\x6c\x7b\x1e\xb2\x4d\xe2\x10\xfc\x60\xb4\x0c\x66\x0a\x40\x23\x2b\x0b\x76\x85\x2c\x0f\xcc\x53\x04\x32\x14\x33\xdf\x09\x95\xea\x3b\xdb\xe1\x4c\x8d\xa7\x96\x1f\x1b\x48\x41\x39\xc1\xe5\x70\x4b\xca\xbb\x86\xfd\xd9\x86\x1a\x93\x9a\x08\xbf\x2a\x16\x8c\xd2\x21\xd6\x2e\xec\x00\xa7\x25\x18\xff\xa6\xa4\x93\x9c\x75\x30\x1a\x41\x12\x38\x6c\x40\x76\x3b\xe8\xa4\x45\xe2\xc1\x39\x60\xb1\x73\xb1\x1c\xc7\x21\x24\x5a\x85\x82\xe1\xb0\x22\x11\x7f\x8e\xd2\x55\x2e\x3f\xf4\xa2\xaa\xd7\xf7\x77\x9d\xec\xe4\xbd\x84\xa4\x95\xff\xe5\xca\xb7\x7b\x0d\x2d\x4c\xff\xae\x35\x6e\x9b\x13\xdc\xe2\xe0\xb7\x37\xc8\xad\xcd\x1e\x6e\x6b\x1a\x6e\x69\x10\x3e\x0a\xff\xae\x94\xa6\x6a\x4f\xa6\xca\xfb\xf9\xc1\xe3\x39\x04\x33\x13\xf1\x89\x66\xc3\x5a\x06\x79\x86\x89\x98\x31\x7f\x12\x34\x04\x82\x4c\xa7\xe7\x03\xcf\x12\x0c\x6e\xc1\x22\x24\xb5\x6f\xdb\x95\x69\xe3\xf3\xe5\x04\xc9\x40\xef\x89\xb3\x6c\x60\xb4\xd3\x89\xee\xce\x8c\xc6\x64\xa2\xc3\x23\xd3\x29\x0c\xb4\x09\x5e\x76\x88\xb9\xe6\x80\x77\x57\x65\xdf\xae\xe5\xae\x67\xc5\x71\x33\x06\x87\x19\x4a\x64\x4a\xcd\xd8\x64\x9a\x51\x69\x34\x5b\xf8\xd8\x70\xc7\x64\xbd\x72\x6e\xdb\xee\x93\x42\x8c\x1c\xa2\xc5\x93\x3b\x10\x25\xb0\xb7\xb7\x0c\xf7\x89\xcc\x53\x38\x1f\x5c\x71\x35\xde\x2e\x01\xbc\x53\x21\x54\xcb\xfa\xd6\x09\x7d\xac\x95\x33\x5a\x0e\x24\x57\x5b\xa5\x41\x48\x42\xf9\xa4\x48\xf8\x24\x69\x71\xae\xb5\x0b\x0b\x36\x33\xfa\x7e\xeb\x3e\x26\x98\xfc\x3c\x49\xc0\xda\x0b\x3d\x3e\x55\x89\x4e\x8b\xb5\x5c\x43\x1d\xa8\xdc\xe3\xa3\xea\xb1\xff\x18\x7e\xfc\xe0\xf9\x7c\x7d\xfa\x5f\xd7\x4d\x47\x6e\x49\xe3\x99\xa8\x77\x86\x84\xe8\x7b\xf5\xca\xf3\xf1\xc7\x14\x66\x3f\x5a\x97\xea\xdc\xbf\x4b\x41\x11\x59\xc9\xde\xa6\x78\x12\x99\x5b\x07\xe6\x44\x4f\xb9\xa8\x75\x58\x87\xb1\xe8\x69\xa6\x15\x28\x77\xa1\xc7\x17\x3e\x87\x14\x02\x93\x81\x93\x7c\x9a\x9d\x08\x53\xda\x42\xb5\xbb\x65\x34\xa6\xf3\x56\xc7\xc4\xa9\xb2\x57\x30\x32\x60\x27\x57\xdc\xd5\xa2\x79\x34\x92\x4b\x03\xf6\x1f\x6f\xff\xe5\xdf\xfe\xb0\x75\x06\x2c\xf2\xc4\xfe\xf8\x81\xfe\x36\xc7\xf4\x33\x3d\xef\x2f\x16\xca\x83\xed\xda\xe6\xa0\x23\x70\xee\x8f\xa3\xaa\x80\x89\xb6\xed\x1d\xdb\x21\xcb\x04\x6b\x95\xe0\x74\xb8\x4b\xb2\xf7\x00\x19\x97\x62\xe6\x35\xed\xb0\x66\x67\xf9\xc0\xcb\x2c\x9c\x53\x18\x7f\x54\x68\xf4\x4d\xf8\xc6\xd0\x6e\x4c\x35\x27\xbe\xa6\x5f\x90\x31\x27\xed\x10\x9c\x13\xaa\xfe\xdd\x0c\x16\x31\x17\x09\x3f\x2e\x8a\x8d\x44\xc2\x5d\x78\x08\xd1\x33\x92\x48\x01\xca\xad\xa0\xee\x0c\xf3\x54\xa7\x41\x64\x7e\x0d\xb5\x80\x1e\x3b\x39\x1f\xf6\x7f\xb9\x38\x45\x94\x1c\x9e\x5f\x0e\x50\x05\x2f\x3f\x5d\x7f\xea\x5f\x20\x0a\x9e\x0f\xaf\xcf\x3f\xfe\x0f\xaa\x78\x04\x1f\x88\x19\x77\x80\xb8\x80\x86\x46\x69\x95\xe8\x0e\x57\x5e\x2e\xed\xbe\x2c\x6f\x75\x05\x17\xdb\x1e\x1f\x78\x06\x8b\x94\xfa\xe7\x12\x9c\x11\x89\x25\xed\xe3\x6d\x8c\xb4\x4f\x4d\xd3\xa4\x7d\x9a\x75\x84\xb4\x4f\xb8\x20\x69\x9f\x17\xaf\x7d\x86\x8e\x3b\x7b\x42\x5a\x67\x7b\x63\x7e\xe1\x1a\x1c\xe1\x89\x96\x69\x3f\xcb\x64\x21\x5d\x84\x56\x9f\x94\x13\x72\x60\xf4\x7d\x31\xea\x1e\xdf\xfd\xee\x6f\x76\x8f\x20\x99\x27\xf5\xbe\x1b\xcc\xb4\x67\xda\xba\xb2\x1b\x5d\x48\x78\xb8\x0f\xdf\xf5\x88\x89\xfa\x4a\xf4\x74\xca\x37\xdf\x63\xdc\x06\x11\xb1\x21\x11\x5c\xcc\x22\xae\xf5\x45\xc4\x56\x4c\x9c\xcb\xde\x41\xd0\x3b\x1f\x33\x54\x21\xae\x7b\x4a\x23\xb2\xf3\x05\x9d\x7f\x03\x9e\x42\xfd\x5b\x89\xab\xb0\xd3\x24\xe1\xf8\x47\x8f\x58\xfc\x1c\x33\xdc\xdd\x8c\x56\x2d\xc4\x87\x16\x7b\x1f\x1b\x5a\x2f\x5c\x92\x1f\xb1\xfe\x77\x90\xb1\xb6\xf4\x0f\xa2\xde\xda\x8b\x1a\x3c\xcc\xc9\x1c\x8b\x7b\x1f\xae\xc9\xeb\x70\xd1\x6f\xc3\xb5\x7e\x7a\xad\x7c\x01\x17\xb5\x24\x23\x28\x8b\x49\x2b\x1c\x38\x37\x63\x31\x8b\xc9\x25\xd9\x50\x27\xb7\xcf\x40\xea\x7d\xa7\xeb\xed\xdb\x2c\x0c\xe4\x85\x73\x18\x3a\xff\xa5\x79\x32\x51\xc8\x44\x21\x13\xa5\x65\x0b\x64\xa2\xac\xe3\x24\x95\xe1\x07\x32\x51\x42\x24\x92\x89\xb2\x02\x2f\xd5\x44\x09\x16\x91\x81\xfb\x22\xa1\x6b\x36\xce\x70\xcf\x93\x66\x3d\x96\xc2\x4d\x5e\x3f\x01\x3d\x26\xd4\x48\x7b\x3e\xdf\x71\xa3\x7c\x33\xd8\x63\x60\x8c\x27\x99\x4a\x8f\x25\x46\x38\x91\x70\xe9\x29\xf2\x4a\x8f\x46\x75\xb7\x85\x82\xeb\x28\x1c\x73\x18\x76\xb7\x2d\x2e\x5a\x9e\x80\x83\xc4\x09\xad\xae\xc5\x14\x74\xde\xfc\x52\x11\xc5\xe5\x6f\x85\x3d\xbc\x4a\xcf\x28\x2e\x7f\xb3\x34\x4d\x65\xc3\x22\x14\x53\xbf\x1d\x28\xa6\xbe\xbe\x14\xc5\xd4\xaf\xe2\xa5\x98\xfa\xf8\x0e\x50\x4c\x7d\x53\x64\x14\x53\x1f\x85\xfa\xbb\x88\xa9\xcf\x2d\x5c\x82\xe3\x29\x77\xfc\xf4\x3e\x99\x70\x35\x86\x33\x21\x5d\xfd\x42\x09\xc9\x85\x70\x20\xc9\xb9\x12\x5b\x25\x4f\x68\x11\xb4\xb9\x26\xe0\xa5\xca\x8a\x14\x12\x6e\xce\xd5\x6f\xb5\xf1\x98\xc1\x40\x97\xa5\x41\x5b\x18\x43\x5c\x28\x30\x7d\x53\x7f\x5f\x2c\xa0\x83\x11\xf3\x1f\xd2\xb9\x8f\x04\x9d\xaa\xd9\x67\x5e\xef\x16\xee\x24\x63\x42\xd8\xe5\x8b\x5c\xd2\x5d\x65\x06\x78\xc0\x74\x66\x74\xe0\x5a\x1a\xde\x87\x95\x68\x35\x12\xe3\x4b\x9e\xbd\x87\xf9\x15\x20\xdc\x49\x71\x9e\x73\x74\x3a\xdf\x48\x5f\x13\xde\x1b\x1f\x89\x58\x67\xd5\xfa\x8a\x41\x1e\x32\x27\x16\x10\x97\xf8\x13\x93\x16\x37\xc2\x95\x3e\x12\x20\xd3\x1d\xcc\x30\xcf\xc4\x67\x30\x16\x91\x37\x7b\x95\x64\xf4\x7c\x94\x64\x0f\x90\x6e\xfd\x48\xec\x71\xf3\xb1\xa4\xa4\xcb\x59\x59\x38\x99\xce\x76\x34\x3b\xc9\x42\x6e\x63\x14\xf4\x2a\xf5\xe8\x09\x4a\xc5\x4c\x58\x6c\x0e\xed\x08\x97\x75\x33\xa7\x75\x03\xb7\xf5\xde\xfa\x41\x16\xd0\xfa\x1c\xe7\x71\x99\x7d\x73\x26\x5a\x10\xd2\x25\x0f\xd9\x32\xbd\x30\xe9\xaf\x12\x5e\xa8\xfe\x42\xfb\x68\x43\xf4\x05\x4e\xb5\xd1\x9b\x0f\x8f\x8d\x1a\x78\x1b\x0c\xb3\x00\x95\x4e\xe1\xbb\x7b\x63\xac\xa4\x11\x14\x56\x4a\xd1\xf3\x17\x15\x34\xb8\x6a\x52\x01\x3d\x7f\xe1\xad\x4a\xcf\x5f\xc4\x8f\x43\xc9\x61\xa5\x2d\x4b\xcc\x45\xcc\xe5\xa9\x4a\xcc\x15\x3b\x0e\x91\x8d\x3c\xe3\xa7\xc5\x96\x76\x00\xaa\xf8\x4b\x79\x55\x2c\x46\xa8\xad\x3e\xb0\x71\x0d\x06\xc7\xc1\x3b\xbd\x1d\x4b\xa6\xd5\x13\x20\xe9\xef\xad\x4a\xd2\x9f\x4c\x2b\x62\xae\xed\x40\xcc\xb5\x0a\xfb\x68\x5a\xe1\xd1\xc7\x5c\x69\xde\xd0\xe9\x28\x2b\xa5\xa3\x10\xac\xc7\xd7\x5c\xbf\x1b\x6f\x13\xbd\x68\xbf\x06\xf4\xa2\xfd\x2e\x1b\xa6\x17\xed\x71\x40\x2f\xda\x6f\x05\x7a\xd1\xbe\x06\xe8\x45\x7b\x7a\xd1\xbe\x06\xe8\x45\x7b\x7a\xd1\xbe\x1e\x68\x6b\xdc\x45\x83\xb4\x35\xde\x84\x97\xb4\x35\xa6\x17\xed\x1f\x81\x5e\xb4\xaf\x83\x97\xf5\xa2\xfd\xc3\x53\xe1\x4e\x90\x4f\x04\x01\xe4\x13\xe9\x86\xd0\x0a\xc8\x27\x82\x02\xf2\x89\x60\x6a\x91\x4f\x04\x49\x32\xf9\x44\xc8\x27\x42\x3e\x91\x75\x20\x9f\x08\xf9\x44\x3a\x27\xae\x02\xf2\x89\x6c\x00\xf9\x44\xd6\x6b\x90\x4f\x64\x0b\x99\xe4\x13\x09\x56\x20\x9f\xc8\x5a\xd1\xaf\xf1\x50\x05\x97\x77\x7c\x6e\xab\x64\x03\x21\x05\xd7\x49\x70\x7e\x9c\x96\x43\xad\xbb\x18\x6d\x86\xd4\x60\x51\x4b\x26\x46\x53\x45\x21\xc6\x6b\xa4\x7d\x48\x63\x1c\x73\x6b\x0a\xa3\x55\xd0\x9a\x24\x32\x1a\x31\xd4\x17\xb4\x96\x68\xa2\x19\xd0\xa3\x8f\xea\x54\x17\x61\x8f\xb9\xd3\x15\xfb\x0b\xad\x06\x5a\x8a\x64\x7e\xea\x7f\x75\x26\x1c\x7c\x5a\x3d\x5b\xf3\x61\xa9\x63\x7e\x99\x9f\xc0\x88\xe7\x32\x90\xd4\x31\x8c\xb2\x05\x4d\xed\x9e\x75\x11\x35\x59\x62\x18\x52\xfc\x04\x93\x52\x62\x11\x31\x54\x72\x4a\xd6\xd8\x6e\x41\x47\xfa\xc7\x47\xf9\x47\x46\xf8\xef\x71\x74\x7f\xcb\xc8\x7e\xb4\xbc\xc2\x24\xaf\x64\x34\xd5\xcf\x7f\xaa\xbb\xb0\xe4\x0a\x11\x75\xfc\xe1\xfc\xb8\x4c\x0c\x94\x1b\x6f\xc2\x4a\x54\x12\xcc\x0e\x4f\xd1\xb0\x71\xf1\x31\x38\x59\xf7\xa7\x73\x6c\xd7\xe1\x56\xb1\xb1\xf2\xcd\x5a\x61\x74\x7e\x86\x01\x3a\x3f\x8b\xae\x4e\xe7\x67\xf5\x15\x1b\x9d\x9f\xc5\x06\x86\x31\x62\xce\x1d\x37\x4c\xcc\x89\x83\x97\xcc\x9c\x0d\x1a\x8b\x39\x2c\x64\x8d\x0e\x0c\x59\xf4\xa1\x21\x6b\x74\xaa\x1a\x15\xc7\xcf\x62\xce\x0e\xd9\x2e\x63\xf6\xba\x3e\x47\x64\x0d\x84\x66\xa3\xf8\x7e\x16\x2f\x3a\xc8\x24\xac\x07\xd2\x3a\x68\x20\xad\x13\x02\x32\x09\x6b\x80\x98\x13\x05\xc4\x9c\x98\x5a\xcf\x81\x39\x1b\x34\x16\xd7\x4c\xdc\xb0\xc7\xe7\x1d\x60\x4d\x4e\xa0\x11\x45\x91\x39\x08\xd8\x4b\xf7\xec\x35\xb9\x83\xdf\xac\x29\xd6\xfc\x2e\x7e\xf3\x06\x59\x6b\x03\x92\xb5\x91\x87\x6d\x74\x15\x6b\xae\xaf\x58\x7b\x41\xdc\x4e\x6f\x75\x42\x40\x73\xfd\xc5\xda\xe9\x30\xd6\x05\xf5\x6d\x74\x19\x6b\xa5\xcf\x58\x63\x9d\xc6\xda\xe8\x35\xd6\x46\xb7\xb1\x56\xe3\xd5\xf8\x4e\x3f\xeb\xe8\x5e\x3f\x6b\xbb\x62\x5a\x1a\x05\xd1\x15\x9b\xdc\xf3\x67\x4d\xb9\xaa\x65\xd4\x43\xec\x8a\x68\x74\xef\xbf\x31\x9d\x4d\xf8\x34\x3e\x06\x80\x7d\xf7\xee\xbd\xe8\xd8\x00\xf6\xa2\x7d\x7c\x3b\xb5\x0a\x29\x64\xb2\x1e\xc8\x85\x80\x02\x72\x21\x60\x6a\x3d\x07\x17\x02\x85\x4c\xfa\x81\x42\x26\x9f\x7d\xc8\x24\x7e\xa0\xa2\xfc\x4b\xc8\x9c\x0e\x8c\x7c\x4c\x5d\x35\xc5\xc8\xc7\x14\x0d\xe4\x63\x22\x1f\x13\xf9\x98\x82\x40\x3e\x26\xf2\x31\xad\xd4\x22\x1f\xd3\x02\xc8\xc7\x44\x3e\x26\xf2\x31\x75\x44\x68\x05\xe4\x63\x42\x01\xf9\x98\x30\xb5\xc8\xc7\x84\x24\x99\x7c\x4c\xe4\x63\x7a\x46\x3e\x26\x54\xb1\x1b\xa1\x4e\x84\x57\xa6\xa3\x46\x36\x99\x70\xa1\xfc\x83\x19\x0e\x65\x67\xd5\x03\xf1\xa3\x2e\x08\x0a\xc4\xd5\xe3\x09\x82\xfb\x44\xe6\xe9\x4a\xd0\xbf\x0f\x25\x82\xa5\x90\x0b\x15\xb3\x1a\xbc\xa1\xff\xe8\xb6\x84\xda\xdb\x0e\x4a\x3d\xbe\x80\x19\x78\x1f\x0f\x47\x35\x67\x20\xe3\xfe\x45\x85\xb5\xc6\x6e\x8c\xbe\x05\x35\xd0\x69\xa9\x8a\x10\x22\x0a\x2d\x98\x9e\x62\xfe\x5c\x18\x3d\x9d\xe1\x4e\x41\x82\x83\x81\x0e\xdf\xbf\xc6\x31\x05\xc3\x71\x58\x1c\xc2\x49\x7e\xd3\x59\x87\xcb\xa0\x71\xad\x5c\x21\x95\xcc\x07\xc4\xe3\xf6\x68\xcc\xe5\xb6\xa4\xdb\x91\x74\x7c\xdc\x11\x79\xb8\xe4\x2a\x5c\x28\xef\x76\x1c\xcb\x0b\x1d\xaf\x80\x6e\x92\x05\x14\x9f\x20\xed\x2b\xa5\x5d\x99\x2a\xa0\xb6\x0f\x71\x76\x21\x62\x02\xd0\xc4\x2d\x17\x66\x7f\x49\x42\xdf\x8c\x6b\x1b\x0f\xc8\x5c\x34\x65\xf5\xb2\xd6\x43\xd8\xa9\x9a\x7d\xe6\xa6\x29\x6d\xb8\x95\xa4\x82\xfc\x89\x5c\xfe\xb3\xb0\xd0\x8c\xc1\x74\x66\x74\xe0\x30\x0a\xbf\x87\x4f\xca\xf4\x15\x97\x3c\x7b\x0f\xf3\x2b\x40\xa4\x27\x89\x73\x0f\xa0\x1d\x02\x91\x76\x72\x78\x6a\x1a\x22\xd6\x59\xb5\xbe\x62\x90\x63\x64\x29\x8b\x4e\x75\x87\xd9\x34\x47\x98\xf2\x23\x01\x32\xdd\xc1\x0c\xf3\x4c\x7c\x06\x63\x91\x9e\xb9\xe8\xf9\x28\xc9\x1e\x70\x37\xd9\x01\xf6\xb8\xf9\x58\x52\xd2\xe5\xac\x2c\xf2\x54\x9d\xed\x68\x76\x92\x18\x5b\x63\x95\x7a\xf4\x04\xa5\x62\x26\x2c\xd6\xfb\x86\x4e\x81\xc4\x1a\xa5\x41\x62\xf1\xa9\x90\xd8\x7e\xa7\x43\x62\xed\x53\x22\xb1\x95\x65\xf6\xcd\x99\x68\x41\x48\x97\x3c\x64\x21\x31\xe0\x48\x7f\x95\xf0\x42\xf5\x17\xaa\x20\x86\xbe\x5e\x39\xf4\x01\xa3\xb5\x55\x82\x47\x05\x33\x30\x94\xe0\x75\x0d\xa2\x96\x31\x25\x78\x2d\x81\x12\xbc\x3e\xc7\x04\xaf\xab\x81\xc2\xfb\xb3\xc7\x2f\xaf\x75\xee\xa1\xef\xc1\x40\x26\x45\xc2\x8f\x75\x5e\xef\xfb\xc1\x5c\xbc\x98\x0a\x25\xa6\xf9\xf4\x88\xfd\xe4\xa5\xc4\x67\x4b\x06\x73\xc6\x62\xc4\x62\x38\x57\x6c\xfc\x22\x47\x59\xcd\x71\xd6\x72\x84\x95\xbc\xa7\xd6\x71\x0b\xab\x18\x6d\x4c\x84\x72\xc1\xd2\x54\x3e\x83\xa9\x44\x88\xa0\x3b\x23\x1c\xf4\xb3\xec\x6f\xd7\xd7\x83\x81\xd1\x37\x81\xbc\xd5\x3e\x7b\xd9\x42\x92\x1b\xe1\xe6\xc7\x5a\x39\xb8\x6f\x95\xc3\x9a\x4b\xa9\xef\x06\x46\xcc\x84\x84\x31\x9c\xda\x84\x4b\x6f\x92\x59\x1c\x81\x05\x24\x3c\xe3\x37\x42\x8a\xd0\x7a\xc5\xda\x81\x3c\x0d\xda\x28\x48\x7b\x2a\xc2\x96\xc2\xda\x51\xa9\xd1\xd9\xbe\x52\x87\x92\x44\xd9\x62\x09\x74\x70\x6a\x9c\x19\x9d\x5c\xfa\x74\x2d\xc3\x1f\x5d\xf2\xf4\xa3\x92\xf3\x2b\xad\xdd\x99\x90\x60\xe7\xd6\x81\xd7\x2d\x8d\xa3\xd0\xe4\xaa\x6f\xdf\x19\x9d\x7b\x27\x6d\xc5\x24\xf8\xcb\x9f\x83\x6d\x86\x04\x69\xd9\xe6\x07\xad\x8a\xbe\x74\xd4\x83\x4f\x16\xbc\xdb\x97\x6e\x3b\x60\xe1\x42\xa8\xfc\xfe\x63\xe6\xb5\xee\x58\x4c\xce\xfb\xd0\xf9\x36\x8b\xe1\x07\xa3\x65\x77\x27\x9d\x65\xc1\xae\x90\xe5\x81\x79\x8a\x40\x86\x62\xe6\x3b\xa1\x52\x7d\x67\x3b\x9c\xa9\xf1\xd4\xf2\x63\x03\x29\x28\x27\xb8\x1c\x66\x90\x74\x36\x38\x9b\xa8\x3b\x3d\xb2\x5e\x32\x4a\x87\x58\xbb\x30\x08\x9c\x96\x60\xfc\x1b\xa5\x4e\x3c\x37\x30\x1a\x41\x12\xb8\x80\x8e\xec\x76\xd0\x0b\x83\xc4\x83\xf3\xbc\x60\xe7\x62\x39\x8e\x43\x48\xb4\x0a\x5d\x4d\xc0\x8a\x44\xfc\x9d\xfa\xae\xce\x5d\x5b\x7b\x05\x3c\x08\xea\x9d\x3c\xbd\xc5\x45\x86\x21\x98\x99\x48\x60\x3d\xe3\x58\x2d\x52\xeb\xb8\xcb\x37\x06\xdb\xb7\x26\x4f\x8d\xd1\xe6\x12\xac\xad\xb9\xb8\xe5\x1d\xa5\x77\xdc\xc1\x1d\x9f\xf7\xd3\xd4\x80\xdd\x3a\xc7\x1e\x6e\x09\x8c\xbf\x6f\x58\x87\x5b\xbb\x19\x40\x5a\x33\x68\x5b\x7e\xb6\x60\x66\x90\x3e\xd9\x81\x58\xa7\x4d\x31\x42\x4f\x7e\xcb\x6f\xb6\x38\x0e\x1e\xa6\x80\xfd\xe3\x8f\x83\xc7\xd9\xe0\x49\x02\x99\x83\xb4\xbc\xd2\x56\x95\xbd\x15\x2a\x3d\x62\xaf\x5e\x95\x7f\x64\x32\x37\x5c\x3e\xfc\x59\x30\x8c\xa8\x64\x10\xfb\xf2\xeb\x41\xd5\x38\xa4\x0f\x67\xad\xd5\x8f\xff\x1f\x00\x00\xff\xff\xc8\x2a\x40\xdc\xcb\x41\x01\x00"), }, "/templates": &vfsgen۰DirInfo{ name: "templates", @@ -116,9 +116,9 @@ var Chart = func() http.FileSystem { "/templates/operator-rbac.yaml": &vfsgen۰CompressedFileInfo{ name: "operator-rbac.yaml", modTime: time.Time{}, - uncompressedSize: 6906, + uncompressedSize: 7005, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\x4d\x6f\xe3\x36\x13\xbe\xfb\x57\x10\xbe\x2c\xf0\x02\x56\xde\xed\xa5\x85\xd1\xcb\x36\x87\xde\x8a\x22\x01\x16\xe8\x71\x44\x8e\xe5\xa9\x29\x92\xe5\x87\x12\xc7\xcd\x7f\x2f\x44\x4a\x8e\x6c\x49\xb6\x1c\x6f\x76\xb3\xc0\x9e\x4c\x51\x33\xf3\x3c\x9a\x19\xce\x90\xf4\x6e\xb7\x60\xb4\x62\xd9\x67\x90\x01\x5d\x66\x73\xe0\x19\x2a\xc8\x25\x0a\xf6\xfc\x3c\x03\x43\x9f\xd1\x3a\xd2\x6a\xc9\xaa\x8f\xb3\x0d\x29\xb1\x64\xf7\x68\x2b\xe2\xf8\x89\x73\x1d\x94\x9f\x95\xe8\x41\x80\x87\xe5\x8c\x31\x05\x25\x2e\xd9\x6e\xc7\x48\x71\x19\x04\xb2\x39\x39\x4f\x7a\xa1\x0d\x5a\xf0\xda\x66\xab\x20\x65\x2d\x34\x67\x19\x7b\x7e\xde\xed\xf6\xc8\xad\xc4\xad\x2e\x8d\x56\xa8\xfc\x7d\x58\xad\xe8\xb1\x26\x91\xcc\x3a\x03\x3c\xd9\xce\xee\x50\x22\x38\xcc\xfe\x68\xa7\x93\x94\x84\x1c\xa5\xab\x69\x30\x06\xc6\x64\x9b\x90\xa3\x55\xe8\xd1\x65\xa4\x6f\xce\x52\x7b\xa1\x15\x2d\xac\x51\x96\x99\x5b\xdf\xf0\x35\x58\x7f\x52\x31\x4a\x74\x34\xfb\xd8\xa4\x9c\x07\x35\x44\x7f\x5c\xa7\x04\x05\x05\x8a\x45\xbe\x3d\xd4\x6a\xbc\x3f\xae\x58\xb5\x01\xab\xb5\x6e\x6b\x6e\xd9\x27\x63\x9a\x30\x8e\xab\xf1\xd6\xf1\x4b\xd6\x7e\xd9\x8c\x4a\x28\xf0\xcf\x20\xe5\x3d\x72\x8b\xde\x2d\x67\xbb\x1d\xf3\xfa\x2f\x28\xe5\x3e\x70\xc7\x32\xec\x5f\x46\x4a\xa0\xf2\xec\xa7\x1a\x6c\xb1\x58\x1c\x64\x51\xcc\x30\x08\x7e\xad\x2d\x3d\x81\x27\xad\xb2\xcd\x2f\x89\x77\x9b\x5f\xb7\x32\x38\x8f\xf6\x4e\x4b\xfc\x1a\xc9\xf5\x23\x6d\xbe\x74\xda\xd8\x20\xd1\x2d\x67\x0b\x06\x86\x7e\xb7\x3a\x98\xe8\xdd\x05\x9b\xcf\x67\x8c\x59\x74\x3a\x58\x8e\xcd\x9c\xd2\x02\x5d\x1c\xb9\xc4\x30\x3d\xa0\x12\x46\x93\xf2\xe9\xc9\x68\x91\x06\x16\x8d\x24\x1e\xd3\x86\x6b\xe5\xad\x96\x12\xed\x54\xf5\x0a\x6d\xde\xa0\x16\xe8\xe3\xaf\x24\x97\x06\x0f\xe0\xf9\x7a\x1a\xe3\x06\x08\x52\xf9\x4b\x08\x5c\xab\x15\x15\x25\x98\x23\xbe\x58\x61\x12\x39\x8f\x1d\xcd\x58\x04\x8f\x71\x18\x8c\x68\x87\x66\xff\x5e\xa0\x44\x8f\x13\x1d\xdb\x16\xc7\xe9\xf0\x3d\xcc\x0b\x81\x6e\x56\xa4\x40\xd2\x53\x0a\x49\x07\xb3\x31\xdc\x33\x07\x26\x3a\xec\xc8\x60\x13\x64\x87\x13\x3d\x37\xd1\xac\x40\x23\xf5\xb6\xc4\x36\x66\x02\xb0\xd4\x6a\x32\xca\x35\xf1\x39\x4b\xe8\xc6\x79\xf0\x61\x84\xc8\xf9\xb0\xe0\xa3\x47\x55\xaf\xd3\x01\x14\x52\x85\x45\xe7\x9a\x85\xb1\x7f\x1a\x44\xfc\xf0\xbf\x0f\x97\x19\x3f\xf4\xe9\x2b\x42\x35\xd1\xf8\xc5\x99\x75\xca\xee\xd5\xf9\x65\xb4\x24\xbe\xed\x1b\x36\x5a\x08\x72\x36\x98\xba\x3e\xe5\x41\x14\x5f\x25\xb7\x82\xd7\x8e\x83\x24\x55\xf4\x19\xc5\x2e\xab\x95\x07\x69\xb4\x68\x25\x7b\x4e\x7c\x93\x8c\xa7\x97\x10\x34\x1d\xbe\x4f\x8f\x07\xe7\x75\xd9\x4e\x0a\x5c\x91\x22\xdf\x04\xed\x5c\x5a\x8e\x6e\x24\x06\x60\xd2\x86\xc2\x6a\xd9\xac\x82\xce\x44\x4e\x4a\x90\x2a\x9a\xf6\xb2\x97\xe8\xbd\x8a\x95\xef\xcd\x23\xb9\x46\xe5\x9b\xfe\x36\xfa\x35\x5e\x6f\x50\x59\xac\x08\x1f\x8e\xfc\xd4\x00\x0f\x1a\x3e\xef\x25\x17\xf2\xbf\x91\x7b\xe0\x1c\x9d\xbb\xc8\x3e\x47\xeb\x69\x55\xf3\xc6\x13\xb1\xee\x08\x51\xa1\x62\x21\xfa\x27\xa0\x6b\x3b\xe8\xe8\xeb\x1b\x30\xc6\xea\x0a\xe4\x39\xb9\xa1\x8a\xd6\x09\x40\x27\x2c\x6d\xf0\x9a\x48\x9c\x58\xea\x93\x3e\xad\x26\xd2\x5b\x54\x89\xf5\xb9\xd2\xb4\x60\x0a\xfd\x83\xb6\x1b\x52\xc5\xa8\xfd\x6e\x09\xbf\xb6\xc6\x5e\x06\x38\xbd\x4b\x4c\xb7\xca\x25\xf4\xdb\xd1\xeb\xbe\xec\xcd\x3f\xe5\x71\x31\x66\xb7\xd6\x7c\x15\x67\x41\x8e\xeb\x0a\xed\x76\x94\xf2\x7e\xf3\x2a\x69\xea\xee\xad\x87\x12\xcf\x1a\x59\x0e\xea\x09\x88\x4b\x1d\xc4\xb0\x73\x6a\x29\xd7\x19\x8e\xf6\xd9\x37\x28\x77\x97\x50\xbc\x72\x7f\x74\x54\x59\x13\x72\x44\xab\x7b\x41\x84\x3e\x98\x8a\xbb\xf9\xc3\xb9\xe6\xa1\x3b\xd5\xc9\x93\x83\x79\x87\x3c\x58\xf2\xdb\xa3\xd9\xd4\xa3\xd3\xde\xa1\xfb\xaa\xb9\x82\x71\x58\x56\x18\x4f\xa8\x60\x91\xcd\x7f\x65\x1f\xb3\x9f\xb3\xff\xcf\x5f\xce\xd9\xb5\xc6\xc1\x71\xac\xe9\x81\x47\xa6\x50\x89\xf4\xfa\x5c\xc2\x0e\xe6\xfe\xb4\xa0\x94\xe8\xd6\x05\x78\x7c\x80\xad\xeb\x4d\xbc\xbf\x1c\x3a\x60\x77\x65\x26\x4d\x38\x5a\x7c\xdf\x67\x89\x69\x2e\xb5\x58\x6a\x8f\x9d\xfa\xd1\x9d\x78\x7f\x19\x70\xc0\xee\xca\x0c\x10\x25\xb9\x7a\x11\x5a\x2c\xc8\x79\x7b\x7a\x53\x55\x81\x24\x01\x9e\x54\xf1\x80\xf9\x5a\xeb\x4d\xaa\x2d\x21\xa9\xbd\x17\xf7\xec\xe3\xf8\x9a\xc3\xf6\x45\xfe\x28\x83\x3f\xe9\x8d\x0b\x3d\x36\x58\xc3\x86\x2f\x6d\xe2\xe5\xe4\x37\xb9\x89\xe9\xdc\x4c\x7d\x59\xf0\xab\xae\x56\x7f\x4b\xa7\x9b\x1f\x37\xac\xdf\xe5\x0d\xab\x96\x78\x87\xab\xda\xa5\x6d\x02\x9e\x88\xff\x8c\xb1\xfe\xcd\xfa\x1b\x45\xbb\x39\x45\xc6\xeb\xdf\xc1\xbf\x8b\xbe\xe9\x9f\x44\x9d\x0d\xd2\x7f\x01\x00\x00\xff\xff\x92\x92\xc5\x93\xfa\x1a\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\xcd\x6e\xe3\x36\x10\xbe\xfb\x29\x08\x5f\x16\x28\x20\xa5\xdb\x4b\x17\x46\x2f\xdb\x1c\x7a\x2b\x8a\x04\x58\xa0\xc7\x11\x39\x96\xa7\xa6\x48\x96\x3f\x72\x1c\x37\xef\x5e\x88\x92\x1c\xd9\x92\x6c\x39\x4e\x76\xb3\xc0\x9e\x4c\x51\xf3\xf3\x69\xbe\xe1\x90\x1c\xef\x76\x09\xa3\x25\x4b\xbf\x80\x0c\xe8\x52\x9b\x01\x4f\x51\x41\x26\x51\xb0\xa7\xa7\x19\x18\xfa\x82\xd6\x91\x56\x0b\x56\x7e\x9c\xad\x49\x89\x05\xbb\x47\x5b\x12\xc7\xcf\x9c\xeb\xa0\xfc\xac\x40\x0f\x02\x3c\x2c\x66\x8c\x29\x28\x70\xc1\x76\x3b\x46\x8a\xcb\x20\x90\xcd\xc9\x79\xd2\x89\x36\x68\xc1\x6b\x9b\x2e\x83\x94\x95\xd0\x9c\xa5\xec\xe9\x69\xb7\xdb\x7b\x6e\x25\x6e\x75\x61\xb4\x42\xe5\xef\xc3\x72\x49\x0f\x15\x88\xda\xac\x33\xc0\x6b\xdb\xe9\x1d\x4a\x04\x87\xe9\x9f\xed\x74\x2d\x25\x21\x43\xe9\x2a\x18\x8c\x81\x31\xe9\x3a\x64\x68\x15\x7a\x74\x29\xe9\x9b\xb3\xd0\x9e\x61\x45\x0b\x2b\x94\x45\xea\x56\x37\x7c\x05\xd6\x9f\x54\x8c\x12\x1d\xcd\xbe\x6f\x52\xce\x83\x1a\x82\x3f\xae\x53\x80\x82\x1c\x45\x92\x6d\x0f\xb5\x9a\xe8\x8f\x2b\x96\x2d\x61\x95\xd6\x6d\x85\x2d\xfd\x6c\x4c\x43\xe3\xb8\x1a\x6f\x03\xbf\x60\xed\x97\xcd\xa8\x80\x1c\xff\x0a\x52\xde\x23\xb7\xe8\xdd\x62\xb6\xdb\x31\xaf\xff\x86\x42\xee\x89\x3b\x96\x61\xff\x31\x52\x02\x95\x67\xbf\x54\xce\x92\x24\x39\xc8\xa2\x98\x61\x10\xfc\x4a\x5b\x7a\x04\x4f\x5a\xa5\xeb\x4f\x35\xee\x36\xbf\x6e\x65\x70\x1e\xed\x9d\x96\xf8\x35\x92\xeb\x47\xda\xbc\x76\xda\xd8\x20\xd1\x2d\x66\x09\x03\x43\x7f\x58\x1d\x4c\x8c\x6e\xc2\xe6\xf3\x19\x63\x16\x9d\x0e\x96\x63\x33\xa7\xb4\x40\x17\x47\xae\x46\x58\x3f\xa0\x12\x46\x93\xf2\xf5\x93\xd1\xa2\x1e\x58\x34\x92\x78\x4c\x1b\xae\x95\xb7\x5a\x4a\xb4\xd5\xab\x12\x6d\xd6\x58\xcc\xd1\xc7\x5f\x49\xae\x1e\x18\xf0\x7c\x15\x47\xc1\x08\xf0\x18\x87\x9b\x38\x39\x09\x62\x03\x0c\xea\x7a\x57\x03\xe1\x5a\x2d\x29\x2f\xc0\x1c\x01\xc4\x12\x6b\x91\x53\x80\x36\x7b\x40\xdc\x62\x0b\xa8\x83\xed\x19\xb0\x40\x89\x1e\x27\x46\xb2\xad\x86\xd3\xdd\xf7\x7c\x5e\xe8\xe8\x66\x49\x0a\x24\x3d\xf6\x38\x68\x0c\xf7\xcc\x81\x89\x01\x3b\x32\xd8\xb0\xea\x70\x62\xe4\x26\x9a\x15\x68\xa4\xde\x16\xd8\x72\x26\x00\x0b\xad\x26\x7b\xb9\x86\x9f\xb3\x80\x6e\x9c\x07\x1f\x46\x80\x9c\xa7\x05\x1f\x3c\xaa\x6a\x61\x0e\x78\x21\x95\x5b\x74\xae\x59\x48\xfb\xa7\x41\x8f\x1f\x7e\xfa\x70\x99\xf1\xc3\x98\xbe\x80\xaa\x89\xc6\x2f\xce\xac\x53\x76\xaf\xce\x2f\xa3\x25\xf1\x6d\xdf\xb0\xd1\x42\x90\xb3\xc1\x54\x05\x29\x0b\x22\xff\x2a\xb9\x15\xbc\x76\x1c\x24\xa9\xbc\x8f\x28\x6e\xab\x5a\x79\x90\x46\x8b\x56\xf2\x7c\x89\x7c\x8d\x8c\xa7\x67\x0a\x9a\x2d\xbd\x0f\x8f\x07\xe7\x75\xd1\x4e\x0a\x5c\x92\x22\xdf\x90\x76\x2e\x2d\x47\x4f\x0e\x03\x6e\xea\x13\x84\xd5\xb2\x59\x05\x9d\x89\x8c\x94\x20\x95\x37\xfb\xc9\x5e\xa2\xf7\x2a\x56\xbe\x37\x67\x72\x85\xca\x37\x1b\xda\xe8\xd7\x78\xbd\x46\x65\xb1\x24\xdc\x1c\xc5\xa9\x71\x3c\x68\xf8\x7c\x94\x5c\xc8\xfe\x41\xee\x81\x73\x74\xee\x22\xfb\x1c\xad\xa7\x65\x85\x1b\x4f\x70\xdd\x11\xa2\x5c\xc5\x42\xf4\x6f\x40\xd7\xee\xa0\xa3\xaf\x6f\xc0\x18\xab\x4b\x90\xe7\xe4\x86\x2a\x5a\x87\x80\x0e\x2d\x2d\x79\x0d\x13\x27\x96\xfa\xa4\x4f\xab\x80\xf4\x16\x55\x8d\x7a\x28\x5a\x5a\x5b\x41\xea\x34\x19\xf1\x94\x36\x1c\xfe\xc1\xec\x9b\x54\x07\x13\xa6\xd0\x6f\xb4\x5d\x93\xca\x47\x3d\x77\xf7\x8b\x6b\x0b\xfa\x65\x0e\xa7\x6f\x49\xd3\xad\x72\x09\xfd\xbd\xef\x65\x5f\xf6\xe6\x9f\xf2\x90\x8c\xd9\xad\x34\x5f\x84\x59\x90\xe3\xba\x44\xbb\x1d\x85\xbc\x3f\x59\x4b\x9a\x7a\x54\xec\x79\x89\x37\x99\x34\x03\xf5\x08\xc4\xa5\x0e\x62\x38\x38\x95\x94\xeb\x0c\x47\x37\xf5\x37\xa8\xad\x97\x40\xbc\xea\x30\xd6\x74\x50\x1c\x16\x25\xc6\x0b\x26\x58\x64\xf3\xdf\xd8\xc7\xf4\x53\xfa\xf3\xfc\xf9\x9a\x5c\x79\x3a\xb8\x4d\xf5\xea\x7f\x0d\x39\xc2\x6c\x2f\x18\xdd\xb9\xca\x11\x2a\xd1\x2a\x77\xf2\xe8\x40\xd1\x21\x0f\x96\xfc\xf6\x58\x75\x18\xe3\xaf\xe7\x30\xc6\x5d\x77\x0c\xc5\xb9\xac\x1d\x5c\x00\xd3\x98\x29\xd0\xad\x72\xf0\xb8\x81\xad\xeb\x4d\xbc\xbf\x44\x3a\x40\x77\xdd\xd9\x7e\xca\x65\xe6\xfb\xbe\xbd\x4c\x0b\xa9\xc5\x42\x7b\xec\x14\x91\xee\xc4\xfb\xcb\x80\x03\x74\x57\x66\x80\x28\xc8\x55\x8b\xd0\x62\x4e\xce\xdb\xd3\x27\x87\x12\x24\x09\xf0\xa4\xf2\x0d\x66\x2b\xad\xd7\x75\xe9\x08\xb5\xda\x7b\x09\xcf\x9e\xc7\x97\x5c\xef\x2f\x8a\x47\x11\xfc\xc9\x68\x5c\x18\xb1\xc1\x1a\x36\xdc\x26\x8a\xfd\xcf\x6f\xd2\xfb\xe9\xf4\xce\x5e\xd7\xf9\x55\xdd\xdb\xdf\xeb\xfb\xd4\x8f\x26\xee\x77\xd9\xc4\xd5\x12\xef\x70\x59\x85\xb4\x4d\xc0\x13\xfc\xcf\x18\xeb\x37\xef\xdf\x88\xed\xe6\xde\x1a\x3b\xcc\x83\xff\x48\x7d\xd3\xff\xa1\x3a\x07\xa4\xff\x03\x00\x00\xff\xff\xd4\x8e\x07\xdc\x5d\x1b\x00\x00"), }, "/templates/operator-service.yaml": &vfsgen۰CompressedFileInfo{ name: "operator-service.yaml", @@ -146,7 +146,7 @@ var Chart = func() http.FileSystem { modTime: time.Time{}, uncompressedSize: 1175, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\xc1\x6e\xdb\x3a\x10\xbc\xf3\x2b\x16\xd6\xe5\xbd\x83\x25\xbf\x00\x2f\x08\x74\x4b\x9b\x1c\x02\x34\xad\x51\x17\x05\x8a\xa2\x07\x8a\x5a\x59\x44\x28\x2e\xcb\x5d\x3a\x76\x8a\xfe\x7b\x41\xca\x2e\x10\x27\x45\x6f\xe4\x90\xbb\x33\x9c\x59\x56\x70\x83\x83\x4e\x4e\x60\xa7\x5d\x42\x86\x81\x22\x58\x16\x4b\x4b\x0a\x18\xb5\x50\xac\x55\x05\x9f\x46\xcb\x60\x19\x34\x7c\xb9\xbe\x7f\xb7\x1c\x28\x4e\x5a\x04\x7b\x18\xac\xc3\x7c\xe1\x06\x8d\xd3\x11\x61\xa7\xa3\xd5\x9d\x43\x06\x21\xe8\x10\x82\x66\xc6\x1e\xac\x17\x82\x03\xa5\x08\x82\x53\x70\x5a\x90\x6b\xa5\x4e\x0c\xad\x02\xb0\x93\xde\x62\x5e\x00\x44\x0c\xc4\x56\x28\x1e\x5a\xd8\x8e\x26\xd6\x96\x9a\x4e\xfb\x27\x6d\x8d\xa3\xd4\x37\xcf\xe5\x95\x12\xd1\xdb\x16\x56\xf5\x55\x7d\x59\xb6\x21\x39\xb7\x26\x67\xcd\xa1\x85\xbb\xe1\x3d\xc9\x3a\x22\xa3\x17\x05\x80\x7b\x89\xfa\x3a\x6e\xb9\x85\xaf\xdf\x54\x26\x63\x4a\xd1\x20\x9f\xb8\xbf\x27\x64\x39\xee\x00\x4c\x48\x2d\x5c\xac\x56\xd3\x71\x3f\xe1\x54\x74\x5d\xfc\x7f\x79\x6f\x95\x2a\x52\x3e\x63\x64\x4b\xbe\x85\xc5\x7f\xf5\xd5\x42\xa9\x0a\xee\x86\xfc\x58\x78\xd4\x5e\x40\x46\x84\x93\xd6\x6c\x0a\xee\x03\x31\x16\xb8\x99\x50\xa2\x35\xac\x42\xa4\x09\x65\xc4\xc4\xf7\x33\x92\xe9\xd1\x67\x23\xfb\x16\x24\x26\x54\x00\x15\xdc\x16\x04\x28\x42\x6f\xb9\x2c\x73\x17\x9d\x64\x84\x10\x69\x7f\x80\x7f\x46\x91\xc0\x6d\xd3\x6c\xad\x8c\xa9\xab\x0d\x4d\x4d\x17\xb5\x37\x4f\xcd\x43\xea\x70\x19\x3b\x6d\x96\xe5\xea\xbf\xa5\xe1\xe3\x68\x4d\xa9\x15\x34\xc2\x73\x40\x27\x51\x80\xbe\x0f\x64\xbd\xd4\x0a\x0a\xc7\x3a\xd7\xcd\xbe\x9c\x4b\x7b\x16\xdf\x59\x80\x73\x7e\x99\xbe\x4b\xd6\xf5\x18\xcf\xa5\x1c\x8b\x4a\x84\xbb\x9c\xe1\xea\x88\xfc\x31\x45\x55\x55\xf0\x91\x1c\xc2\x1b\x9d\x87\xeb\xda\x18\x64\x2e\x20\x0e\x2d\x9c\x3c\xc8\x34\xd1\x63\x1e\x35\x4b\x4d\x4f\x86\x1b\xdd\x4f\xd6\x37\xf9\x31\x14\xed\x93\x16\x4b\xbe\xc9\x42\x1a\x55\x55\x2a\x2f\x5e\xf5\xbd\x82\x35\xf5\xb0\x41\x93\xa2\x95\x03\x14\x49\x16\x79\x3e\xfa\x1b\xa5\x21\x6f\x30\x08\x37\xa1\xbc\xa4\x09\xd4\x2f\xf9\xd8\x6a\x79\xc4\x4a\x27\x05\x10\x38\x9c\xf9\x3b\x68\xc7\xa8\x94\xd7\x13\x7e\xd8\x61\x8c\xb6\xc7\x16\x16\x0b\x35\x24\xe7\x5e\x80\xca\x53\x8f\x1b\x74\x68\xf2\x9f\x82\x1f\x3f\x95\x90\xcb\x83\x67\xc9\xcf\xe3\xae\x87\xc1\x7a\x2b\x87\x72\x58\x22\x5b\x27\xe7\x36\x68\x22\xca\x7c\xe3\xf7\x9f\x7c\x4b\x53\x20\x8f\x5e\x36\x69\x18\xec\x7e\x26\x70\xa8\x7b\x8c\xb7\x99\x21\x0f\xfc\x2b\x66\x65\x51\x1c\xb4\xc9\x8a\xe6\x7f\xca\x07\x16\x9c\x16\xc7\xb3\xe7\x82\x1f\xb1\x1b\x89\x1e\x5e\x36\xfa\x15\x00\x00\xff\xff\x54\xcc\x30\xb0\x97\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\xc1\x6e\xdb\x3a\x10\xbc\xf3\x2b\x16\xd6\xe5\xbd\x83\x25\xbf\x00\xaf\x68\x74\x4b\x9b\x1c\x02\x34\xad\x51\x17\x05\x8a\xa2\x07\x8a\x5a\x59\x44\x28\x2e\xcb\x5d\x3a\x76\x8a\xfe\x7b\x41\xca\x2e\x10\x27\x68\x6f\xe4\x90\xbb\x33\x9c\x59\x56\x70\x8d\x83\x4e\x4e\x60\xa7\x5d\x42\x86\x81\x22\x58\x16\x4b\x4b\x0a\x18\xb5\x50\xac\x55\x05\x9f\x46\xcb\x60\x19\x34\x7c\xb9\xba\x7b\xb7\x1c\x28\x4e\x5a\x04\x7b\x18\xac\xc3\x7c\xe1\x1a\x8d\xd3\x11\x61\xa7\xa3\xd5\x9d\x43\x06\x21\xe8\x10\x82\x66\xc6\x1e\xac\x17\x82\x03\xa5\x08\x82\x53\x70\x5a\x90\x6b\xa5\x4e\x0c\xad\x02\xb0\x93\xde\x62\x5e\x00\x44\x0c\xc4\x56\x28\x1e\x5a\xd8\x8e\x26\xd6\x96\x9a\x4e\xfb\x47\x6d\x8d\xa3\xd4\x37\x4f\xe5\x95\x12\xd1\xdb\x16\x56\xf5\x65\xbd\x2a\xdb\x90\x9c\x5b\x93\xb3\xe6\xd0\xc2\xed\xf0\x9e\x64\x1d\x91\xd1\x8b\x02\xc0\xbd\x44\x7d\x15\xb7\xdc\xc2\xd7\x6f\x2a\x93\x31\xa5\x68\x90\x4f\xdc\xdf\x13\xb2\x1c\x77\x00\x26\xa4\x16\x2e\x56\xab\xe9\xb8\x9f\x70\x2a\xba\x2e\xfe\x7f\x75\x67\x95\x2a\x52\x3e\x63\x64\x4b\xbe\x85\xc5\x7f\xf5\xe5\x42\xa9\x0a\x6e\x87\xfc\x58\x78\xd0\x5e\x40\x46\x84\x93\xd6\x6c\x0a\xee\x03\x31\x16\xb8\x99\x50\xa2\x35\xac\x42\xa4\x09\x65\xc4\xc4\x77\x33\x92\xe9\xd1\x67\x23\xfb\x16\x24\x26\x54\x00\x15\xdc\x14\x04\x28\x42\x6f\xb9\x2c\x73\x17\x9d\x64\x84\x10\x69\x7f\x80\x7f\x46\x91\xc0\x6d\xd3\x6c\xad\x8c\xa9\xab\x0d\x4d\x4d\x17\xb5\x37\x8f\xcd\x7d\xea\x70\x19\x3b\x6d\x96\xe5\xea\xbf\xa5\xe1\xc3\x68\x4d\xa9\x15\x34\xc2\x73\x40\x27\x51\x80\xbe\x0f\x64\xbd\xd4\x0a\x0a\xc7\x3a\xd7\xcd\xbe\x9c\x4b\x7b\x12\xdf\x59\x80\x73\x7e\x99\xbe\x4b\xd6\xf5\x18\xcf\xa5\x1c\x8b\x4a\x84\xbb\x55\xfd\xfa\x98\xe1\x1f\x52\x54\x55\x05\x1f\xc9\x21\xbc\xd1\x79\xb8\xae\x8c\x41\xe6\x02\xe2\xd0\xc2\xc9\x83\x4c\x13\x3d\xe6\x51\xb3\xd4\xf4\x64\xb8\xd1\xfd\x64\x7d\x93\x1f\x43\xd1\x3e\x6a\xb1\xe4\x9b\x2c\xa4\x51\x55\xa5\xf2\xe2\x45\xdf\x2b\x58\x53\x0f\x1b\x34\x29\x5a\x39\x40\x91\x64\x91\xe7\xa3\xbf\x51\x1a\xf2\x06\x83\x70\x13\xca\x4b\x9a\x40\xfd\x92\x8f\xad\x96\x47\xac\x74\x52\x00\x81\xc3\x99\xbf\x83\x76\x8c\x4a\x79\x3d\xe1\x87\x1d\xc6\x68\x7b\x6c\x61\xb1\x50\x43\x72\xee\x19\xa8\x3c\xf5\xb8\x41\x87\x26\xff\x29\xf8\xf1\x53\x09\xb9\x3c\x78\x96\xfc\x3c\xee\x7a\x18\xac\xb7\x72\x28\x87\x25\xb2\x75\x72\x6e\x83\x26\xa2\xcc\x37\x7e\xff\xc9\xb7\x34\x05\xf2\xe8\x65\x93\x86\xc1\xee\x67\x02\x87\xba\xc7\x78\x93\x19\xf2\xc0\xbf\x60\x56\x16\xc5\x41\x9b\xac\x68\xfe\xa7\x7c\x60\xc1\x69\x71\x3c\x7b\x2a\xf8\x01\xbb\x91\xe8\xfe\x79\xa3\x5f\x01\x00\x00\xff\xff\xa4\xc6\x7b\xb6\x97\x04\x00\x00"), }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{