diff --git a/.gitattributes b/.gitattributes index 19bed088d..b3387d735 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,7 +3,6 @@ conf/license/* linguist-vendored public/assets/* linguist-vendored public/plugins/* linguist-vendored public/css/themes/* linguist-vendored -public/css/github.min.css linguist-vendored public/css/semantic-2.4.2.min.css linguist-vendored public/js/libs/* linguist-vendored public/js/jquery-3.4.1.min.js linguist-vendored diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 1dd022c38..3f504ea0f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -23,8 +23,11 @@ The issue will be closed without any explanation if it does not satisfy any of f **Describe the bug** -**Gogs version or commit** - +**Gogs version and commit** + **Git version** diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 000000000..a0006d6f8 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,48 @@ +name: Go +on: + push: + branches: [master] + pull_request: +env: + GOPROXY: "https://proxy.golang.org" + +jobs: + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run golangci-lint + uses: actions-contrib/golangci-lint@v1 + with: + args: 'run --timeout=30m' + + test: + name: Test + strategy: + matrix: + go-version: [1.14.x] + platform: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.platform }} + steps: + - name: Install Go + uses: actions/setup-go@v1 + with: + go-version: ${{ matrix.go-version }} + - name: Checkout code + uses: actions/checkout@v2 + - name: Run unit tests + run: go test -v -race -coverprofile=coverage -covermode=atomic ./... + - name: Upload coverage report to Codecov + uses: codecov/codecov-action@v1.0.6 + with: + file: ./coverage + flags: unittests + - name: Cache downloaded modules + uses: actions/cache@v1 + with: + path: ~/go/pkg/mod + key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} + restore-keys: | + ${{ runner.os }}-go- + diff --git a/.github/workflows/golint.yml b/.github/workflows/golint.yml deleted file mode 100644 index 3ed0217cb..000000000 --- a/.github/workflows/golint.yml +++ /dev/null @@ -1,9 +0,0 @@ -name: golint -on: [pull_request] -jobs: - golint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Run golangci-lint - uses: actions-contrib/golangci-lint@v1 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 85d436958..000000000 --- a/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -language: go -os: linux -dist: xenial -go: - - 1.13.x - - 1.14.x -go_import_path: gogs.io/gogs -env: - - GO111MODULE=on -before_install: - - sudo apt-get update -qq - - sudo apt-get install -y libpam-dev -script: - - go vet ./... - - go build -v -tags "pam" - - go test -v -race -coverprofile=coverage.txt -covermode=atomic ./... -after_success: - - bash <(curl -s https://codecov.io/bash) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28aad8d1f..738067b63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,10 +11,11 @@ All notable changes to Gogs are documented in this file. - Support syntax highlighting for SAS code files (i.e. `.r`, `.sas`, `.tex`, `.yaml`). [#5856](https://github.com/gogs/gogs/pull/5856) - Able to fill in pull request title with a template. [#5901](https://github.com/gogs/gogs/pull/5901) - Able to override static files under `public/` directory, please refer to [documentation](https://gogs.io/docs/features/custom_template) for usage. [#5920](https://github.com/gogs/gogs/pull/5920) +- New API endpoint `GET /admin/teams/:teamid/members` to list members of a team. [#5877](https://github.com/gogs/gogs/issues/5877) ### Changed -- The required Go version to compile source code changed to 1.13. +- The required Go version to compile source code changed to 1.14. - All assets are now embedded into binary and served from memory by default. Set `[server] LOAD_ASSETS_FROM_DISK = true` to load them from disk. [#5920](https://github.com/gogs/gogs/pull/5920) - Application and Go versions are removed from page footer and only show in the admin dashboard. - Build tag for running as Windows Service has been changed from `miniwinsvc` to `minwinsvc`. @@ -45,11 +46,14 @@ All notable changes to Gogs are documented in this file. - [Security] Potential stored XSS attack in some browsers. [#5397](https://github.com/gogs/gogs/issues/5397) - [Security] Potential RCE on mirror repositories. [#5767](https://github.com/gogs/gogs/issues/5767) - [Security] Potential XSS attack with raw markdown API. [#5907](https://github.com/gogs/gogs/pull/5907) +- File both modified and renamed within a commit treated as separate files. [#5056](https://github.com/gogs/gogs/issues/5056) - Open/close milestone redirects to a 404 page. [#5677](https://github.com/gogs/gogs/issues/5677) - Disallow multiple tokens with same name. [#5587](https://github.com/gogs/gogs/issues/5587) [#5820](https://github.com/gogs/gogs/pull/5820) - Enable Federated Avatar Lookup could cause server to crash. [#5848](https://github.com/gogs/gogs/issues/5848) - Private repositories are hidden in the organization's view. [#5869](https://github.com/gogs/gogs/issues/5869) - Server error when changing email address in user settings page. [#5899](https://github.com/gogs/gogs/issues/5899) +- Fall back to use RFC 3339 as time layout when misconfigured. [#6098](https://github.com/gogs/gogs/issues/6098) +- Webhooks are not fired after push when `[service] REQUIRE_SIGNIN_VIEW = true`. ### Removed @@ -60,6 +64,7 @@ All notable changes to Gogs are documented in this file. - Configuration option `[session] ENABLE_SET_COOKIE` - Configuration option `[release.attachment] PATH` - Configuration option `[webhook] QUEUE_LENGTH` +- Build tag `sqlite`, which means CGO is now required. --- diff --git a/Dockerfile b/Dockerfile index 6ca3e3a99..a317d790a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,16 @@ -FROM golang:alpine3.10 AS binarybuilder +FROM golang:alpine3.11 AS binarybuilder RUN apk --no-cache --no-progress add --virtual \ build-deps \ build-base \ git \ linux-pam-dev -WORKDIR /go/src/github.com/gogs/gogs +WORKDIR /gogs.io/gogs COPY . . -RUN make build-no-gen TAGS="sqlite cert pam" +RUN make build-no-gen TAGS="cert pam" -FROM alpine:3.10 -ADD https://github.com/tianon/gosu/releases/download/1.10/gosu-amd64 /usr/sbin/gosu +FROM alpine:3.11 +ADD https://github.com/tianon/gosu/releases/download/1.11/gosu-amd64 /usr/sbin/gosu RUN chmod +x /usr/sbin/gosu \ && echo http://dl-2.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \ && apk --no-cache --no-progress add \ @@ -33,7 +33,7 @@ COPY docker/nsswitch.conf /etc/nsswitch.conf WORKDIR /app/gogs COPY docker ./docker -COPY --from=binarybuilder /go/src/github.com/gogs/gogs/gogs . +COPY --from=binarybuilder /gogs.io/gogs/gogs . RUN ./docker/finalize.sh diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 deleted file mode 100644 index 9ba104bec..000000000 --- a/Dockerfile.aarch64 +++ /dev/null @@ -1,37 +0,0 @@ -FROM arm64v8/alpine:latest - -# Install system utils & Gogs runtime dependencies -ADD https://github.com/tianon/gosu/releases/download/1.9/gosu-arm64 /usr/sbin/gosu -RUN chmod +x /usr/sbin/gosu \ - && echo http://dl-2.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \ - && apk --no-cache --no-progress add \ - bash \ - ca-certificates \ - curl \ - git \ - linux-pam \ - openssh \ - s6 \ - shadow \ - socat \ - tzdata \ - rsync - -ENV GOGS_CUSTOM /data/gogs - -# Configure LibC Name Service -COPY docker/nsswitch.conf /etc/nsswitch.conf -COPY docker /app/gogs/docker - -WORKDIR /app/gogs/build -COPY . . - -RUN ./docker/build-go.sh \ - && ./docker/build.sh \ - && ./docker/finalize.sh - -# Configure Docker Container -VOLUME ["/data"] -EXPOSE 22 3000 -ENTRYPOINT ["/app/gogs/docker/start.sh"] -CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"] diff --git a/Dockerfile.aarch64hub b/Dockerfile.aarch64hub deleted file mode 100644 index 5bc164105..000000000 --- a/Dockerfile.aarch64hub +++ /dev/null @@ -1,46 +0,0 @@ -FROM arm64v8/alpine:latest - -ENV GOGS_CUSTOM /data/gogs -ENV QEMU_EXECVE 1 - -# For cross compile on dockerhub -################################ - -COPY ./docker/aarch64/qemu-aarch64-static /usr/bin/ -COPY ./docker/aarch64/resin-xbuild /usr/bin/ - -RUN [ "/usr/bin/qemu-aarch64-static", "/bin/sh", "-c", "ln -s resin-xbuild /usr/bin/cross-build-start; ln -s resin-xbuild /usr/bin/cross-build-end; ln /bin/sh /bin/sh.real" ] - -RUN [ "cross-build-start" ] - -# Prepare the container -####################### - -# Install system utils & Gogs runtime dependencies -ADD https://github.com/tianon/gosu/releases/download/1.10/gosu-arm64 /usr/sbin/gosu -RUN chmod +x /usr/sbin/gosu \ - && apk --no-cache --no-progress add ca-certificates bash git linux-pam s6 curl openssh shadow socat tzdata go=1.10.1-r0 - - - -COPY docker /app/gogs/docker -WORKDIR /app/gogs/build -COPY . . - -RUN ./docker/build.sh \ - && ./docker/finalize.sh - -# Configure LibC Name Service -COPY docker/nsswitch.conf /etc/nsswitch.conf - -# For cross compile on dockerhub -################################ - -RUN [ "cross-build-end" ] - -# Configure Docker Container -############################ -VOLUME ["/data"] -EXPOSE 22 3000 -ENTRYPOINT ["/app/gogs/docker/start.sh"] -CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"] diff --git a/Dockerfile.rpi b/Dockerfile.rpi deleted file mode 100644 index d6fe96167..000000000 --- a/Dockerfile.rpi +++ /dev/null @@ -1,37 +0,0 @@ -FROM arm32v7/alpine:latest - -# Install system utils & Gogs runtime dependencies -ADD https://github.com/tianon/gosu/releases/download/1.9/gosu-armhf /usr/sbin/gosu -RUN chmod +x /usr/sbin/gosu \ - && echo http://dl-2.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \ - && apk --no-cache --no-progress add \ - bash \ - ca-certificates \ - curl \ - git \ - linux-pam \ - openssh \ - s6 \ - shadow \ - socat \ - tzdata \ - rsync - -ENV GOGS_CUSTOM /data/gogs - -# Configure LibC Name Service -COPY docker/nsswitch.conf /etc/nsswitch.conf -COPY docker /app/gogs/docker - -WORKDIR /app/gogs/build -COPY . . - -RUN ./docker/build-go.sh \ - && ./docker/build.sh \ - && ./docker/finalize.sh - -# Configure Docker Container -VOLUME ["/data"] -EXPOSE 22 3000 -ENTRYPOINT ["/app/gogs/docker/start.sh"] -CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"] diff --git a/Dockerfile.rpihub b/Dockerfile.rpihub deleted file mode 100644 index d83a9f5ab..000000000 --- a/Dockerfile.rpihub +++ /dev/null @@ -1,57 +0,0 @@ -FROM arm32v7/alpine:latest - -ENV GOGS_CUSTOM /data/gogs -ENV QEMU_EXECVE 1 - -# For cross compile on dockerhub -################################ - -COPY ./docker/armhf/qemu-arm-static /usr/bin/ -COPY ./docker/armhf/resin-xbuild /usr/bin/ - -RUN [ "/usr/bin/qemu-arm-static", "/bin/sh", "-c", "ln -s resin-xbuild /usr/bin/cross-build-start; ln -s resin-xbuild /usr/bin/cross-build-end; ln /bin/sh /bin/sh.real" ] - -RUN [ "cross-build-start" ] - -# Prepare the container -####################### - -# Install system utils & Gogs runtime dependencies -ADD https://github.com/tianon/gosu/releases/download/1.9/gosu-armhf /usr/sbin/gosu -RUN chmod +x /usr/sbin/gosu \ - && echo http://dl-2.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \ - && apk --no-cache --no-progress add \ - bash \ - ca-certificates \ - curl \ - git \ - linux-pam \ - openssh \ - s6 \ - shadow \ - socat \ - tzdata \ - rsync - -# Configure LibC Name Service -COPY docker/nsswitch.conf /etc/nsswitch.conf -COPY docker /app/gogs/docker - -WORKDIR /app/gogs/build -COPY . . - -RUN ./docker/build-go.sh \ - && ./docker/build.sh \ - && ./docker/finalize.sh - -# For cross compile on dockerhub -################################ - -RUN [ "cross-build-end" ] - -# Configure Docker Container -############################ -VOLUME ["/data"] -EXPOSE 22 3000 -ENTRYPOINT ["/app/gogs/docker/start.sh"] -CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"] diff --git a/Layerfile b/Layerfile new file mode 100644 index 000000000..ba5ff5180 --- /dev/null +++ b/Layerfile @@ -0,0 +1,24 @@ +FROM vm/ubuntu:18.04 + +RUN apt-get update && \ + apt-get -y install --no-install-recommends \ + docker.io ca-certificates curl && \ + rm -rf /var/lib/apt/lists/* + +RUN curl -L "https://golang.org/dl/go1.14.linux-amd64.tar.gz" | tar -C /usr/local -xzf /dev/stdin + +RUN docker pull postgres:11.4-alpine && \ + docker run -d \ + -e POSTGRES_USER=postgres \ + -e POSTGRES_PASSWORD=postgres \ + -e POSTGRES_DB=gogs \ + -p 5432:5432\ + postgres:11.4-alpine + +COPY . . +RUN /usr/local/go/bin/go mod download +RUN /usr/local/go/bin/go build -o /bin/gogs -v +WORKDIR /www +RUN gogs web& + +EXPOSE WEBSITE http://localhost:3000 diff --git a/README.md b/README.md index d1cb2d932..a8e9d8ca0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Gogs - A painless self-hosted Git service -[![Build status](https://img.shields.io/travis/gogs/gogs/master.svg?style=for-the-badge&logo=travis)](https://travis-ci.org/gogs/gogs) [![Build status](https://img.shields.io/appveyor/ci/Unknwon/gogs?logo=appveyor&style=for-the-badge)](https://ci.appveyor.com/project/Unknwon/gogs/branch/master) [![Discord](https://img.shields.io/discord/382595433060499458.svg?style=for-the-badge&logo=discord)](https://discord.gg/9aqdHU7) [![Sourcegraph](https://img.shields.io/badge/view%20on-Sourcegraph-brightgreen.svg?style=for-the-badge&logo=sourcegraph)](https://sourcegraph.com/github.com/gogs/gogs) +[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/gogs/gogs/Go?logo=github&style=for-the-badge)](https://github.com/gogs/gogs/actions?query=workflow%3AGo) [![Discord](https://img.shields.io/discord/382595433060499458.svg?style=for-the-badge&logo=discord)](https://discord.gg/9aqdHU7) [![Sourcegraph](https://img.shields.io/badge/view%20on-Sourcegraph-brightgreen.svg?style=for-the-badge&logo=sourcegraph)](https://sourcegraph.com/github.com/gogs/gogs) ![Repository](https://gogs.io/img/screenshots/2.png) @@ -17,7 +17,7 @@ The Gogs (`/gɑgz/`) project aims to build a simple, stable and extensible self- - Want to try it before doing anything else? Do it [online](https://try.gogs.io/gogs/gogs)! - Having trouble? Help yourself with [troubleshooting](https://gogs.io/docs/intro/troubleshooting.html) or ask questions on [user forum](https://discuss.gogs.io/). - Want to help with localization? Check out the [localization documentation](https://gogs.io/docs/features/i18n.html). -- Ready to get hands dirty? Read our guide to [set up your development environment](docs/local_development.md). +- Ready to get hands dirty? Read our guide to [set up your development environment](docs/dev/local_development.md). - Hmm... What about APIs? We have experimental support with [documentation](https://github.com/gogs/docs-api). ## 💌 Features diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 288b9549f..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,20 +0,0 @@ -version: "{build}" -skip_tags: true -clone_folder: c:\gogs.io\gogs -clone_depth: 1 - -environment: - GO111MODULE: on - GOPROXY: https://proxy.golang.org - -build: false -deploy: false - -install: - - set PATH=C:\msys64\mingw64\bin;%PATH% # Fix "gcc" not found: https://github.com/appveyor/ci/issues/2613 - - go version - - go env - - go build -tags "minwinsvc" -v - -test_script: - - go test -v -race -cover ./... diff --git a/codecov.yml b/codecov.yml index 285498b69..31f646ee0 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,2 +1,9 @@ +coverage: + range: "60...95" + status: + project: + default: + threshold: 1% + comment: - layout: 'diff, files' + layout: 'diff' diff --git a/conf/app.ini b/conf/app.ini index 97e59648b..613e2313a 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -146,6 +146,10 @@ PASSWORD = SSL_MODE = disable ; For "sqlite3" only, make sure to use absolute path. PATH = data/gogs.db +; The maximum open connections of the pool. +MAX_OPEN_CONNS = 30 +; The maximum idle connections of the pool. +MAX_IDLE_CONNS = 30 [security] ; Whether to show the install page, set this to "true" to bypass it. @@ -259,6 +263,12 @@ HOST = ; The value for "Access-Control-Allow-Origin" header, default is not to present. ACCESS_CONTROL_ALLOW_ORIGIN = +[lfs] +; The storage backend for uploading new objects. +STORAGE = local +; The root path to store LFS objects on local file system. +OBJECTS_PATH = data/lfs-objects + [attachment] ; Whether to enabled upload attachments in general. ENABLED = true @@ -391,14 +401,24 @@ MAX_SIZE = 100 ; Maximum days to keep logger files MAX_DAYS = 3 +[log.gorm] +; Whether to enable file rotation. +ROTATE = true +; Whether to rotate file every day. +ROTATE_DAILY = true +; The maximum file size in MB before next rotate. +MAX_SIZE = 100 +; The maximum days to keep files. +MAX_DAYS = 3 + [cron] ; Enable running cron tasks periodically. ENABLED = true ; Run cron tasks when Gogs starts. RUN_AT_START = false -; Update mirrors [cron.update_mirrors] +; Defines how often the mirror syncer checks if any mirror needs to be synchronized (based on the mirror update interval). SCHEDULE = @every 10m ; Repository health check @@ -443,7 +463,8 @@ PULL = 300 GC = 60 [mirror] -; The default interval in hours for fetching updates. +; Defines the default interval (in hours) until the next sync for a mirror (after a successful mirror sync). +; It can be overridden individually for each mirror repository in the settings. DEFAULT_INTERVAL = 8 [api] diff --git a/conf/locale/locale_de-DE.ini b/conf/locale/locale_de-DE.ini index 9aa0f1008..5ee0e1ea3 100644 --- a/conf/locale/locale_de-DE.ini +++ b/conf/locale/locale_de-DE.ini @@ -121,7 +121,7 @@ run_user_not_match=Der ausführende Benutzer ist nicht der aktuelle Benutzer: %s smtp_host_missing_port=In der Adresse des SMTP Host fehlt die Portnummer. invalid_smtp_from=SMTP Absender Feld ist nicht gültig: %v save_config_failed=Fehler beim Speichern der Konfiguration: %v -init_failed=Failed to initialize application: %v +init_failed=Fehler beim Initialisieren der Anwendung: %v invalid_admin_setting=Admin-Konto Einstellungen sind ungültig: %v install_success=Herzlich Willkommen! Wir sind froh, dass Sie sich für Gogs entschieden haben. Wir wünschen viel Vergnügen damit. invalid_log_root_path=Pfad zum Log-Verzeichnis ist ungültig: %v @@ -1001,12 +1001,12 @@ first_page=Erste last_page=Letzte total=Gesamt: %d -dashboard.build_info=Build Information -dashboard.app_ver=Application version -dashboard.git_version=Git version -dashboard.go_version=Go version -dashboard.build_time=Build time -dashboard.build_commit=Build commit +dashboard.build_info=Build-Informationen +dashboard.app_ver=Anwendungsversion +dashboard.git_version=Git-Version +dashboard.go_version=Go-Version +dashboard.build_time=Build-Zeit +dashboard.build_commit=Build-Commit dashboard.statistic=Statistik dashboard.operations=Operationen dashboard.system_status=Systemmonitor-Status @@ -1162,167 +1162,167 @@ auths.github_api_endpoint=API Endpunkt config.not_set=(nicht festgelegt) config.server_config=Serverkonfiguration -config.brand_name=Brand name +config.brand_name=Markenname config.run_user=Ausführender Benutzer config.run_mode=Laufzeit-Modus -config.server.external_url=External URL -config.server.domain=Domain -config.server.protocol=Protocol -config.server.http_addr=HTTP address -config.server.http_port=HTTP port -config.server.cert_file=Certificate file -config.server.key_file=Key file -config.server.tls_min_version=Minimum TLS version -config.server.unix_socket_permission=Unix socket permission -config.server.local_root_url=Local root URL -config.server.offline_mode=Offline mode -config.server.disable_router_log=Disable router log -config.server.enable_gzip=Enable Gzip -config.server.app_data_path=Application data path -config.server.load_assets_from_disk=Load assets from disk +config.server.external_url=Externe URL +config.server.domain=Domäne +config.server.protocol=Protokoll +config.server.http_addr=HTTP-Adresse +config.server.http_port=HTTP-Port +config.server.cert_file=Zertifikatsdatei +config.server.key_file=Schlüsseldatei +config.server.tls_min_version=Minimale TLS-Version +config.server.unix_socket_permission=Unix-Socket-Berechtigung +config.server.local_root_url=Lokale Root-URL +config.server.offline_mode=Offline-Modus +config.server.disable_router_log=Router-Log deaktivieren +config.server.enable_gzip=Gzip aktivieren +config.server.app_data_path=Anwendungsdatenpfad +config.server.load_assets_from_disk=Assets von Festplatte laden config.server.landing_url=Landing URL config.ssh_config=SSH Konfiguration -config.ssh.enabled=Enabled -config.ssh.domain=Exposed domain -config.ssh.port=Exposed port -config.ssh.root_path=Root path -config.ssh.keygen_path=Keygen path -config.ssh.key_test_path=Key test path -config.ssh.minimum_key_size_check=Minimum key size check -config.ssh.minimum_key_sizes=Minimum key sizes -config.ssh.rewrite_authorized_keys_at_start=Rewrite "authorized_keys" at start -config.ssh.start_builtin_server=Start builtin server -config.ssh.listen_host=Listen host -config.ssh.listen_port=Listen port -config.ssh.server_ciphers=Server ciphers +config.ssh.enabled=Aktiviert +config.ssh.domain=Exponierte Domain +config.ssh.port=Exponierter Port +config.ssh.root_path=Wurzelpfad +config.ssh.keygen_path=Keygenpfad +config.ssh.key_test_path=Schlüsseltestpfad +config.ssh.minimum_key_size_check=Prüfung der Mindestschlüssellänge +config.ssh.minimum_key_sizes=Mindestschlüssellängen +config.ssh.rewrite_authorized_keys_at_start=Beim Start "authorized_keys" umschreiben +config.ssh.start_builtin_server=Eingebauten Server starten +config.ssh.listen_host=Listen-Host +config.ssh.listen_port=Listen-Port +config.ssh.server_ciphers=Serverchiffren config.repo_config=Repository-Konfiguration -config.repo.root_path=Root path -config.repo.script_type=Script type -config.repo.ansi_chatset=ANSI charset -config.repo.force_private=Force private -config.repo.max_creation_limit=Max creation limit -config.repo.preferred_licenses=Preferred licenses -config.repo.disable_http_git=Disable HTTP Git -config.repo.enable_local_path_migration=Enable local path migration -config.repo.enable_raw_file_render_mode=Enable raw file render mode +config.repo.root_path=Wurzelpfad +config.repo.script_type=Skript-Typ +config.repo.ansi_chatset=ANSI-Zeichensatz +config.repo.force_private=Privat erzwingen +config.repo.max_creation_limit=Maximales Erstellungslimit +config.repo.preferred_licenses=Bevorzugte Lizenzen +config.repo.disable_http_git=HTTP-Git deaktivieren +config.repo.enable_local_path_migration=Lokale Pfadmigration aktivieren +config.repo.enable_raw_file_render_mode=Darstellen von Roh-Dateien aktivieren config.repo.commits_fetch_concurrency=Commits fetch concurrency config.repo.editor.line_wrap_extensions=Editor line wrap extensions config.repo.editor.previewable_file_modes=Editor previewable file modes -config.repo.upload.enabled=Upload enabled -config.repo.upload.temp_path=Upload temporary path -config.repo.upload.allowed_types=Upload allowed types -config.repo.upload.file_max_size=Upload file size limit -config.repo.upload.max_files=Upload files limit +config.repo.upload.enabled=Upload aktiviert +config.repo.upload.temp_path=Temporärer Pfad für Uploads +config.repo.upload.allowed_types=Erlaubte Upload-Typen +config.repo.upload.file_max_size=Upload-Dateigrößenlimit +config.repo.upload.max_files=Upload-Dateilimit config.db_config=Datenbankkonfiguration -config.db.type=Type +config.db.type=Typ config.db.host=Host config.db.name=Name -config.db.user=User -config.db.ssl_mode=SSL mode -config.db.ssl_mode_helper=(for "postgres" only) -config.db.path=Path -config.db.path_helper=(for "sqlite3"only) +config.db.user=Benutzer +config.db.ssl_mode=SSL-Modus +config.db.ssl_mode_helper=(nur für "postgres") +config.db.path=Pfad +config.db.path_helper=(nur für "sqlite3") -config.security_config=Security configuration +config.security_config=Sicherheitskonfiguration config.security.login_remember_days=Login remember days -config.security.cookie_remember_name=Remember cookie -config.security.cookie_username=Username cookie -config.security.cookie_secure=Enable secure cookie -config.security.reverse_proxy_auth_user=Reverse proxy authentication header -config.security.enable_login_status_cookie=Enable login status cookie -config.security.login_status_cookie_name=Login status cookie - -config.email_config=Email configuration -config.email.enabled=Enabled -config.email.subject_prefix=Subject prefix +config.security.cookie_remember_name=Cookie merken +config.security.cookie_username=Benutzernamen-Cookie +config.security.cookie_secure=Sicheres Cookie aktivieren +config.security.reverse_proxy_auth_user=Reverse-Proxy-Authentifizierungs-Header +config.security.enable_login_status_cookie=Login-Status-Cookie aktivieren +config.security.login_status_cookie_name=Login-Status-Cookie + +config.email_config=E-Mail-Konfiguration +config.email.enabled=Aktiviert +config.email.subject_prefix=Betreff-Präfix config.email.host=Host -config.email.from=From -config.email.user=User -config.email.disable_helo=Disable HELO -config.email.helo_hostname=HELO hostname -config.email.skip_verify=Skip certificate verify -config.email.use_certificate=Use custom certificate -config.email.cert_file=Certificate file -config.email.key_file=Key file -config.email.use_plain_text=Use plain text -config.email.add_plain_text_alt=Add plain text alternative -config.email.send_test_mail=Send test email -config.email.test_mail_failed=Failed to send test email to '%s': %v -config.email.test_mail_sent=Test email has been sent to '%s'. - -config.auth_config=Authentication configuration +config.email.from=Von +config.email.user=Benutzer +config.email.disable_helo=HELO deaktivieren +config.email.helo_hostname=HELO Hostname +config.email.skip_verify=Zertifikatsüberprüfung überspringen +config.email.use_certificate=Benutzerdefiniertes Zertifikat verwenden +config.email.cert_file=Zertifikatsdatei +config.email.key_file=Schlüsseldatei +config.email.use_plain_text=Klartext verwenden +config.email.add_plain_text_alt=Klartext-Alternative hinzufügen +config.email.send_test_mail=Test-E-Mail senden +config.email.test_mail_failed=Fehler beim Senden der Test-E-Mail an '%s': %v +config.email.test_mail_sent=Test-E-Mail wurde an '%s ' gesendet. + +config.auth_config=Authentifizierungskonfiguration config.auth.activate_code_lives=Activate code lives config.auth.reset_password_code_lives=Reset password code lives -config.auth.require_email_confirm=Require email confirmation +config.auth.require_email_confirm=E-Mail-Bestätigung erforderlich config.auth.require_sign_in_view=Require sign in view -config.auth.disable_registration=Disable registration -config.auth.enable_registration_captcha=Enable registration captcha -config.auth.enable_reverse_proxy_authentication=Enable reverse proxy authentication -config.auth.enable_reverse_proxy_auto_registration=Enable reverse proxy auto registration -config.auth.reverse_proxy_authentication_header=Reverse proxy authentication header +config.auth.disable_registration=Registrierung deaktivieren +config.auth.enable_registration_captcha=Registrierungs-Captcha aktivieren +config.auth.enable_reverse_proxy_authentication=Reverse-Proxy-Authentifizierung aktivieren +config.auth.enable_reverse_proxy_auto_registration=Automatische Reverse-Proxy-Registrierung aktivieren +config.auth.reverse_proxy_authentication_header=Reverse-Proxy-Authentifizierungs-Header -config.user_config=User configuration -config.user.enable_email_notify=Enable email notification +config.user_config=Benutzerkonfiguration +config.user.enable_email_notify=E-Mail-Benachrichtigung aktivieren config.session_config=Session-Konfiguration -config.session.provider=Provider -config.session.provider_config=Provider config +config.session.provider=Anbieter +config.session.provider_config=Anbieter-Konfiguration config.session.cookie_name=Cookie -config.session.https_only=HTTPS only -config.session.gc_interval=GC interval -config.session.max_life_time=Max life time -config.session.csrf_cookie_name=CSRF cookie +config.session.https_only=Nur HTTPS +config.session.gc_interval=GC-Intervall +config.session.max_life_time=Maximale Lebensdauer +config.session.csrf_cookie_name=CSRF-Cookie config.cache_config=Cache-Konfiguration config.cache.adapter=Adapter -config.cache.interval=GC interval +config.cache.interval=GC-Intervall config.cache.host=Host config.http_config=HTTP-Konfiguration config.http.access_control_allow_origin=Access control allow origin -config.attachment_config=Attachment configuration -config.attachment.enabled=Enabled -config.attachment.path=Path -config.attachment.allowed_types=Allowed types -config.attachment.max_size=Size limit -config.attachment.max_files=Files limit +config.attachment_config=Anhang-Konfiguration +config.attachment.enabled=Aktiviert +config.attachment.path=Pfad +config.attachment.allowed_types=Erlaubte Typen +config.attachment.max_size=Größenlimit +config.attachment.max_files=Dateilimit -config.release_config=Release configuration -config.release.attachment.enabled=Attachment enabled -config.release.attachment.allowed_types=Attachment allowed types -config.release.attachment.max_size=Attachment size limit -config.release.attachment.max_files=Attachment files limit +config.release_config=Release-Konfiguration +config.release.attachment.enabled=Anhang aktiviert +config.release.attachment.allowed_types=Erlaubte Anhang-Typen +config.release.attachment.max_size=Größenlimit für Anhang +config.release.attachment.max_files=Dateilimit für Anhang config.picture_config=Konfiguration der Profilbilder -config.picture.avatar_upload_path=User avatar upload path -config.picture.repo_avatar_upload_path=Repository avatar upload path -config.picture.gravatar_source=Gravatar source -config.picture.disable_gravatar=Disable Gravatar -config.picture.enable_federated_avatar=Enable federated avatars +config.picture.avatar_upload_path=Benutzer-Avatar Upload-Pfad +config.picture.repo_avatar_upload_path=Repository-Avatar Upload-Pfad +config.picture.gravatar_source=Gravatar-Quelle +config.picture.disable_gravatar=Gravatar deaktivieren +config.picture.enable_federated_avatar=Föderierte Avatare aktivieren -config.mirror_config=Mirror configuration -config.mirror.default_interval=Default interval +config.mirror_config=Mirror-Konfiguration +config.mirror.default_interval=Standardintervall config.webhook_config=Webhook-Konfiguration -config.webhook.types=Types -config.webhook.deliver_timeout=Deliver timeout -config.webhook.skip_tls_verify=Skip TLS verify +config.webhook.types=Typen +config.webhook.deliver_timeout=Zeitlimit für Zustellung +config.webhook.skip_tls_verify=TLS-Prüfung überspringen config.git_config=Git Konfiguration -config.git.disable_diff_highlight=Disable diff syntax highlight -config.git.max_diff_lines=Diff lines limit (for a single file) -config.git.max_diff_line_characters=Diff characters limit (for a single line) -config.git.max_diff_files=Diff files limit (for a single diff) -config.git.gc_args=GC arguments +config.git.disable_diff_highlight=Diff-Syntaxhervorhebung ausschalten +config.git.max_diff_lines=Zeilenlimit für Diff (für eine einzelne Datei) +config.git.max_diff_line_characters=Zeichenlimit für Diff (für eine einzelne Datei) +config.git.max_diff_files=Dateilimit für Diff (für einen einzelnen Diff) +config.git.gc_args=GC-Argumente config.git.migrate_timeout=Migration timeout config.git.mirror_timeout=Mirror fetch timeout -config.git.clone_timeout=Clone timeout -config.git.pull_timeout=Pull timeout -config.git.gc_timeout=GC timeout +config.git.clone_timeout=Clone-Timeout +config.git.pull_timeout=Pull-Timeout +config.git.gc_timeout=GC-Timeout config.log_config=Konfiguration des Loggings config.log_file_root_path=Log-Verzeichnis @@ -1397,7 +1397,7 @@ months=%[2]s %[1]d Monaten years=%[2]s %[1]d Jahren raw_seconds=Sekunden raw_minutes=Minuten -raw_hours=hours +raw_hours=Stunden [dropzone] default_message=Zum Hochladen hier klicken oder Datei hier ablegen. diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index f4394bc97..0aae2f0c0 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -263,8 +263,7 @@ following = Following follow = Follow unfollow = Unfollow -form.name_reserved = Username '%s' is reserved. -form.name_pattern_not_allowed = Username pattern '%s' is not allowed. +form.name_not_allowed = User name or pattern %q is not allowed. [settings] profile = Profile @@ -430,8 +429,7 @@ repo_description_helper = Description of repository. Maximum 512 characters leng repo_description_length = Available characters form.reach_limit_of_creation = The owner has reached maximum creation limit of %d repositories. -form.name_reserved = Repository name '%s' is reserved. -form.name_pattern_not_allowed = Repository name pattern '%s' is not allowed. +form.name_not_allowed = Repository name or pattern %q is not allowed. need_auth = Need Authorization migrate_type = Migration Type @@ -935,9 +933,8 @@ team_name_helper = You'll use this name to mention this team in conversations. team_desc_helper = What is this team all about? team_permission_desc = What permission level should this team have? -form.name_reserved = Organization name '%s' is reserved. -form.name_pattern_not_allowed = Organization name pattern '%s' is not allowed. -form.team_name_reserved = Team name '%s' is reserved. +form.name_not_allowed = Organization name or pattern %q is not allowed. +form.team_name_not_allowed = Team name or pattern %q is not allowed. settings = Settings settings.options = Options @@ -1234,6 +1231,8 @@ config.db.ssl_mode = SSL mode config.db.ssl_mode_helper = (for "postgres" only) config.db.path = Path config.db.path_helper = (for "sqlite3"only) +config.db.max_open_conns = Maximum open connections +config.db.max_idle_conns = Maximum idle connections config.security_config = Security configuration config.security.login_remember_days = Login remember days @@ -1333,6 +1332,10 @@ config.git.clone_timeout = Clone timeout config.git.pull_timeout = Pull timeout config.git.gc_timeout = GC timeout +config.lfs_config = LFS configuration +config.lfs.storage = Storage +config.lfs.objects_path = Objects path + config.log_config = Log configuration config.log_file_root_path = Log file root path config.log_mode = Mode diff --git a/conf/locale/locale_ru-RU.ini b/conf/locale/locale_ru-RU.ini index a0d659746..cf20e8dc5 100644 --- a/conf/locale/locale_ru-RU.ini +++ b/conf/locale/locale_ru-RU.ini @@ -121,7 +121,7 @@ run_user_not_match=Текущий пользователь не является smtp_host_missing_port=Не указан порт в адресе хоста SMTP. invalid_smtp_from=Поле SMTP From неправильное: %v save_config_failed=Не удалось сохранить конфигурацию: %v -init_failed=Failed to initialize application: %v +init_failed=Не удалось инициализировать приложение: %v invalid_admin_setting=Указан недопустимый параметр учетной записи администратора: %v install_success=Добро пожаловать! Мы рады, что вы выбрали Gogs. Веселитесь и берегите себя. invalid_log_root_path=Недопустимый путь для логов: %v @@ -1001,12 +1001,12 @@ first_page=Первый last_page=Последний total=Всего: %d -dashboard.build_info=Build Information -dashboard.app_ver=Application version -dashboard.git_version=Git version -dashboard.go_version=Go version -dashboard.build_time=Build time -dashboard.build_commit=Build commit +dashboard.build_info=Информация о сборке +dashboard.app_ver=Версия приложения +dashboard.git_version=Версия Git +dashboard.go_version=Версия Go +dashboard.build_time=Время сборки +dashboard.build_commit=Коммит сборки dashboard.statistic=Статистика dashboard.operations=Операции dashboard.system_status=Статус системного монитора @@ -1162,22 +1162,22 @@ auths.github_api_endpoint=Конечная точка API config.not_set=(не задано) config.server_config=Конфигурация сервера -config.brand_name=Brand name +config.brand_name=Название бренда config.run_user=Запуск пользователем config.run_mode=Режим выполнения -config.server.external_url=External URL -config.server.domain=Domain -config.server.protocol=Protocol -config.server.http_addr=HTTP address -config.server.http_port=HTTP port -config.server.cert_file=Certificate file -config.server.key_file=Key file -config.server.tls_min_version=Minimum TLS version +config.server.external_url=Внешний URL +config.server.domain=Домен +config.server.protocol=Протокол +config.server.http_addr=HTTP адрес +config.server.http_port=Порт HTTP +config.server.cert_file=Файл сертификата +config.server.key_file=Файл ключа +config.server.tls_min_version=Минимальная версия TLS config.server.unix_socket_permission=Unix socket permission config.server.local_root_url=Local root URL -config.server.offline_mode=Offline mode +config.server.offline_mode=Автономный режим config.server.disable_router_log=Disable router log -config.server.enable_gzip=Enable Gzip +config.server.enable_gzip=Включить Gzip config.server.app_data_path=Application data path config.server.load_assets_from_disk=Load assets from disk config.server.landing_url=Landing URL @@ -1189,8 +1189,8 @@ config.ssh.port=Exposed port config.ssh.root_path=Root path config.ssh.keygen_path=Keygen path config.ssh.key_test_path=Key test path -config.ssh.minimum_key_size_check=Minimum key size check -config.ssh.minimum_key_sizes=Minimum key sizes +config.ssh.minimum_key_size_check=Проверка минимальной длины ключа +config.ssh.minimum_key_sizes=Минимальные размеры ключа config.ssh.rewrite_authorized_keys_at_start=Rewrite "authorized_keys" at start config.ssh.start_builtin_server=Start builtin server config.ssh.listen_host=Listen host @@ -1204,7 +1204,7 @@ config.repo.ansi_chatset=ANSI charset config.repo.force_private=Force private config.repo.max_creation_limit=Max creation limit config.repo.preferred_licenses=Preferred licenses -config.repo.disable_http_git=Disable HTTP Git +config.repo.disable_http_git=Выключить HTTP Git config.repo.enable_local_path_migration=Enable local path migration config.repo.enable_raw_file_render_mode=Enable raw file render mode config.repo.commits_fetch_concurrency=Commits fetch concurrency diff --git a/conf/locale/locale_tr-TR.ini b/conf/locale/locale_tr-TR.ini index dd41e9fbd..9b77866af 100644 --- a/conf/locale/locale_tr-TR.ini +++ b/conf/locale/locale_tr-TR.ini @@ -121,7 +121,7 @@ run_user_not_match=Çalıştırma kullanıcısı geçerli kullanıcı değil: %s smtp_host_missing_port=SMTP ana makine adresindeki bağlantı noktası eksik. invalid_smtp_from=SMTP form alanı geçerli değil: %v save_config_failed=Yapılandırma kaydedilemedi: %v -init_failed=Failed to initialize application: %v +init_failed=Uygulama başlatılamadı: %v invalid_admin_setting=Yönetici hesap ayarları geçersiz: %v install_success=Merhaba! Gogs'u tercih ettiğiniz için çok mutluyuz, keyfini çıkarın! invalid_log_root_path=Günlük kök dizini geçersiz: %v @@ -374,7 +374,7 @@ delete_token=Sil access_token_deletion=Kişisel Erişim Anahtarını Silme access_token_deletion_desc=Bu kişisel erişim anahtarını silerseniz uygulamanıza ilişkin tüm erişimler de kaldırılacaktır. Devam etmek istiyor musunuz? delete_token_success=Kişisel erişim anahtarı başarıyla kaldırıldı! Uygulamanızı güncellemeyi de unutmayın! -token_name_exists=Token with same name already exists. +token_name_exists=Aynı ada sahip simge zaten var. orgs.none=Hiçbir organizasyonların üyesi değilsiniz. orgs.leave_title=Organizasyondan ayrıl @@ -1001,12 +1001,12 @@ first_page=İlk last_page=Son total=Toplam: %d -dashboard.build_info=Build Information -dashboard.app_ver=Application version -dashboard.git_version=Git version -dashboard.go_version=Go version -dashboard.build_time=Build time -dashboard.build_commit=Build commit +dashboard.build_info=Derleme Bilgisi +dashboard.app_ver=Uygulama sürümü +dashboard.git_version=Git sürümü +dashboard.go_version=Go sürümü +dashboard.build_time=Derleme zamanı +dashboard.build_commit=Derleme işlemesi dashboard.statistic=İstatistik dashboard.operations=İşlemler dashboard.system_status=Sistem İzleme Durumu @@ -1158,56 +1158,56 @@ auths.delete_auth_desc=Bu yetkilendirme silinecek. Devam etmek istiyor musunuz? auths.still_in_used=Bu yetkilendirme hala bazı kullanıcılar tarafından kullanılıyor. Lütfen öncelikle bunları silin ya da başka oturum açma türlerine çevirin. auths.deletion_success=Yetkilendirme başarıyla silindi! auths.login_source_exist='%s' giriş kaynağı zaten mevcut. -auths.github_api_endpoint=API Endpoint +auths.github_api_endpoint=API Uç Noktası config.not_set=(ayarlı değil) config.server_config=Sunucu Yapılandırması -config.brand_name=Brand name +config.brand_name=Marka adı config.run_user=Çalıştırma Kullanıcısı config.run_mode=Çalıştırma Modu -config.server.external_url=External URL -config.server.domain=Domain -config.server.protocol=Protocol -config.server.http_addr=HTTP address -config.server.http_port=HTTP port -config.server.cert_file=Certificate file -config.server.key_file=Key file -config.server.tls_min_version=Minimum TLS version -config.server.unix_socket_permission=Unix socket permission -config.server.local_root_url=Local root URL -config.server.offline_mode=Offline mode -config.server.disable_router_log=Disable router log -config.server.enable_gzip=Enable Gzip -config.server.app_data_path=Application data path -config.server.load_assets_from_disk=Load assets from disk -config.server.landing_url=Landing URL +config.server.external_url=Dış URL +config.server.domain=Alan Adı +config.server.protocol=Protokol +config.server.http_addr=HTTP adresi +config.server.http_port=HTTP portu +config.server.cert_file=Sertifika dosyası +config.server.key_file=Anahtar dosyası +config.server.tls_min_version=En az TLS sürümü +config.server.unix_socket_permission=Unix soket izni +config.server.local_root_url=Yerel kök URL'si +config.server.offline_mode=Çevrimdışı kip +config.server.disable_router_log=Yönlendirici günlüğünü devre dışı bırak +config.server.enable_gzip=Gzip'i etkinleştir +config.server.app_data_path=Uygulama veri yolu +config.server.load_assets_from_disk=Varlıkları diskten yükle +config.server.landing_url=Açılış URL'si config.ssh_config=SSH Yapılandırması -config.ssh.enabled=Enabled -config.ssh.domain=Exposed domain -config.ssh.port=Exposed port -config.ssh.root_path=Root path -config.ssh.keygen_path=Keygen path -config.ssh.key_test_path=Key test path -config.ssh.minimum_key_size_check=Minimum key size check -config.ssh.minimum_key_sizes=Minimum key sizes -config.ssh.rewrite_authorized_keys_at_start=Rewrite "authorized_keys" at start -config.ssh.start_builtin_server=Start builtin server -config.ssh.listen_host=Listen host -config.ssh.listen_port=Listen port -config.ssh.server_ciphers=Server ciphers +config.ssh.enabled=Etkin +config.ssh.domain=Maruz kalan alan adı +config.ssh.port=Maruz kalan port +config.ssh.root_path=Kök yolu +config.ssh.keygen_path=Keygen yolu +config.ssh.key_test_path=Anahtar test yolu +config.ssh.minimum_key_size_check=En az anahtar boyutu denetimi +config.ssh.minimum_key_sizes=En az anahtar boyutları +config.ssh.rewrite_authorized_keys_at_start=Başlangıçta "yetkili_anahtarlar" ı yeniden yaz +config.ssh.start_builtin_server=Yerleşik sunucuyu başlat +config.ssh.listen_host=Ana makineyi dinle +config.ssh.listen_port=Port'u dinle +config.ssh.server_ciphers=Sunucu şifreleri config.repo_config=Depo Yapılandırması -config.repo.root_path=Root path -config.repo.script_type=Script type -config.repo.ansi_chatset=ANSI charset -config.repo.force_private=Force private -config.repo.max_creation_limit=Max creation limit -config.repo.preferred_licenses=Preferred licenses -config.repo.disable_http_git=Disable HTTP Git -config.repo.enable_local_path_migration=Enable local path migration -config.repo.enable_raw_file_render_mode=Enable raw file render mode -config.repo.commits_fetch_concurrency=Commits fetch concurrency +config.repo.root_path=Kök yolu +config.repo.script_type=Betik türü +config.repo.ansi_chatset=ANSI karakter kümesi +config.repo.force_private=Özeli zorla +config.repo.max_creation_limit=En fazla oluşturma sınırı +config.repo.preferred_licenses=Tercih edilen lisanslar +config.repo.disable_http_git=HTTP Git'i devre dışı bırak +config.repo.enable_local_path_migration=Yerel yol göçünü etkinleştir +config.repo.enable_raw_file_render_mode=Ham dosya oluşturma modunu etkinleştir +config.repo.commits_fetch_concurrency=İşlemeler eşzamanlılık getirir config.repo.editor.line_wrap_extensions=Editor line wrap extensions config.repo.editor.previewable_file_modes=Editor previewable file modes config.repo.upload.enabled=Upload enabled diff --git a/conf/locale/locale_zh-CN.ini b/conf/locale/locale_zh-CN.ini index f35fe86c0..8f8fe5142 100644 --- a/conf/locale/locale_zh-CN.ini +++ b/conf/locale/locale_zh-CN.ini @@ -1185,145 +1185,145 @@ config.server.landing_url=登陆网址 config.ssh_config=SSH 配置 config.ssh.enabled=启用 -config.ssh.domain=Exposed domain -config.ssh.port=Exposed port -config.ssh.root_path=Root path -config.ssh.keygen_path=Keygen path -config.ssh.key_test_path=Key test path -config.ssh.minimum_key_size_check=Minimum key size check -config.ssh.minimum_key_sizes=Minimum key sizes -config.ssh.rewrite_authorized_keys_at_start=Rewrite "authorized_keys" at start -config.ssh.start_builtin_server=Start builtin server -config.ssh.listen_host=Listen host -config.ssh.listen_port=Listen port -config.ssh.server_ciphers=Server ciphers +config.ssh.domain=显示域名 +config.ssh.port=显示端口 +config.ssh.root_path=根目录 +config.ssh.keygen_path=Keygen 路径 +config.ssh.key_test_path=密钥测试路径 +config.ssh.minimum_key_size_check=最小密钥长度检查 +config.ssh.minimum_key_sizes=最短秘钥长度 +config.ssh.rewrite_authorized_keys_at_start=在启动时重写 "authorized_keys" 文件 +config.ssh.start_builtin_server=启动内置服务器 +config.ssh.listen_host=监听主机 +config.ssh.listen_port=监听端口 +config.ssh.server_ciphers=服务端加密套件 config.repo_config=仓库配置 -config.repo.root_path=Root path -config.repo.script_type=Script type -config.repo.ansi_chatset=ANSI charset -config.repo.force_private=Force private -config.repo.max_creation_limit=Max creation limit -config.repo.preferred_licenses=Preferred licenses -config.repo.disable_http_git=Disable HTTP Git -config.repo.enable_local_path_migration=Enable local path migration -config.repo.enable_raw_file_render_mode=Enable raw file render mode -config.repo.commits_fetch_concurrency=Commits fetch concurrency -config.repo.editor.line_wrap_extensions=Editor line wrap extensions -config.repo.editor.previewable_file_modes=Editor previewable file modes -config.repo.upload.enabled=Upload enabled -config.repo.upload.temp_path=Upload temporary path -config.repo.upload.allowed_types=Upload allowed types -config.repo.upload.file_max_size=Upload file size limit -config.repo.upload.max_files=Upload files limit +config.repo.root_path=根目录 +config.repo.script_type=脚本类型 +config.repo.ansi_chatset=ANSI 字符集 +config.repo.force_private=强制设为私有 +config.repo.max_creation_limit=最大创建限制 +config.repo.preferred_licenses=推荐的许可证 +config.repo.disable_http_git=禁用 HTTP Git +config.repo.enable_local_path_migration=启用本地路径迁移 +config.repo.enable_raw_file_render_mode=启用原始文件渲染模式 +config.repo.commits_fetch_concurrency=代码提交拉取并发量 +config.repo.editor.line_wrap_extensions=编辑器行自动换行扩展 +config.repo.editor.previewable_file_modes=编辑器可预览文件模式 +config.repo.upload.enabled=启用上传 +config.repo.upload.temp_path=上传文件临时路径 +config.repo.upload.allowed_types=允许的上传类型 +config.repo.upload.file_max_size=上传文件大小限制 +config.repo.upload.max_files=上传文件数量限制 config.db_config=数据库配置 -config.db.type=Type -config.db.host=Host +config.db.type=类型 +config.db.host=主机 config.db.name=名称 config.db.user=用户 -config.db.ssl_mode=SSL mode -config.db.ssl_mode_helper=(for "postgres" only) -config.db.path=Path -config.db.path_helper=(for "sqlite3"only) - -config.security_config=Security configuration -config.security.login_remember_days=Login remember days -config.security.cookie_remember_name=Remember cookie -config.security.cookie_username=Username cookie -config.security.cookie_secure=Enable secure cookie -config.security.reverse_proxy_auth_user=Reverse proxy authentication header -config.security.enable_login_status_cookie=Enable login status cookie -config.security.login_status_cookie_name=Login status cookie - -config.email_config=Email configuration -config.email.enabled=Enabled -config.email.subject_prefix=Subject prefix -config.email.host=Host -config.email.from=From -config.email.user=User -config.email.disable_helo=Disable HELO -config.email.helo_hostname=HELO hostname -config.email.skip_verify=Skip certificate verify -config.email.use_certificate=Use custom certificate -config.email.cert_file=Certificate file -config.email.key_file=Key file -config.email.use_plain_text=Use plain text -config.email.add_plain_text_alt=Add plain text alternative -config.email.send_test_mail=Send test email -config.email.test_mail_failed=Failed to send test email to '%s': %v -config.email.test_mail_sent=Test email has been sent to '%s'. - -config.auth_config=Authentication configuration -config.auth.activate_code_lives=Activate code lives -config.auth.reset_password_code_lives=Reset password code lives -config.auth.require_email_confirm=Require email confirmation -config.auth.require_sign_in_view=Require sign in view -config.auth.disable_registration=Disable registration -config.auth.enable_registration_captcha=Enable registration captcha -config.auth.enable_reverse_proxy_authentication=Enable reverse proxy authentication -config.auth.enable_reverse_proxy_auto_registration=Enable reverse proxy auto registration -config.auth.reverse_proxy_authentication_header=Reverse proxy authentication header - -config.user_config=User configuration -config.user.enable_email_notify=Enable email notification +config.db.ssl_mode=SSL 模式 +config.db.ssl_mode_helper=(仅限 "postgres" 使用) +config.db.path=数据库路径 +config.db.path_helper=(仅限 "sqlite3" 使用) + +config.security_config=安全配置 +config.security.login_remember_days=记住登录的天数 +config.security.cookie_remember_name=记住登录 Cookie +config.security.cookie_username=用户名 Cookie +config.security.cookie_secure=启用安全的 Cookie +config.security.reverse_proxy_auth_user=反向代理认证 Header +config.security.enable_login_status_cookie=启用登录状态 Cookie +config.security.login_status_cookie_name=登录状态 Cookie + +config.email_config=邮件配置 +config.email.enabled=启用 +config.email.subject_prefix=主题前缀 +config.email.host=主机 +config.email.from=来自 +config.email.user=用户 +config.email.disable_helo=禁用 HELO +config.email.helo_hostname=HELO 主机名 +config.email.skip_verify=忽略证书验证 +config.email.use_certificate=使用自定义证书 +config.email.cert_file=证书文件 +config.email.key_file=密钥文件 +config.email.use_plain_text=使用纯文本 +config.email.add_plain_text_alt=添加纯文本选项 +config.email.send_test_mail=发送测试邮件 +config.email.test_mail_failed=发送测试邮件至 '%s' 时失败:%v +config.email.test_mail_sent=测试邮件已经发送至 '%s'。 + +config.auth_config=认证配置 +config.auth.activate_code_lives=激活用户链接有效期 +config.auth.reset_password_code_lives=重置密码链接有效期 +config.auth.require_email_confirm=注册邮件确认 +config.auth.require_sign_in_view=需要登录后浏览 +config.auth.disable_registration=关闭注册功能 +config.auth.enable_registration_captcha=启用注册验证码 +config.auth.enable_reverse_proxy_authentication=启用反向代理认证 +config.auth.enable_reverse_proxy_auto_registration=启用反向代理自动注册 +config.auth.reverse_proxy_authentication_header=反向代理认证 Header + +config.user_config=用户配置 +config.user.enable_email_notify=启用电子邮件通知 config.session_config=Session 配置 -config.session.provider=Provider -config.session.provider_config=Provider config +config.session.provider=提供者 +config.session.provider_config=提供者配置 config.session.cookie_name=Cookie -config.session.https_only=HTTPS only -config.session.gc_interval=GC interval -config.session.max_life_time=Max life time -config.session.csrf_cookie_name=CSRF cookie +config.session.https_only=仅限 HTTPS +config.session.gc_interval=GC 间隔 +config.session.max_life_time=最大生命周期 +config.session.csrf_cookie_name=CSRF Cookie config.cache_config=Cache 配置 -config.cache.adapter=Adapter -config.cache.interval=GC interval -config.cache.host=Host +config.cache.adapter=适配器 +config.cache.interval=GC 间隔 +config.cache.host=主机 config.http_config=HTTP 配置 -config.http.access_control_allow_origin=Access control allow origin +config.http.access_control_allow_origin=允许访问来源控制 -config.attachment_config=Attachment configuration -config.attachment.enabled=Enabled -config.attachment.path=Path -config.attachment.allowed_types=Allowed types -config.attachment.max_size=Size limit -config.attachment.max_files=Files limit +config.attachment_config=附件配置 +config.attachment.enabled=启用 +config.attachment.path=路径 +config.attachment.allowed_types=允许的类型 +config.attachment.max_size=大小限制 +config.attachment.max_files=文件数量限制 -config.release_config=Release configuration -config.release.attachment.enabled=Attachment enabled -config.release.attachment.allowed_types=Attachment allowed types -config.release.attachment.max_size=Attachment size limit -config.release.attachment.max_files=Attachment files limit +config.release_config=发布配置 +config.release.attachment.enabled=启用附件 +config.release.attachment.allowed_types=允许的附件类型 +config.release.attachment.max_size=附件大小限制 +config.release.attachment.max_files=附件文件数量限制 config.picture_config=图片配置 -config.picture.avatar_upload_path=User avatar upload path -config.picture.repo_avatar_upload_path=Repository avatar upload path -config.picture.gravatar_source=Gravatar source -config.picture.disable_gravatar=Disable Gravatar -config.picture.enable_federated_avatar=Enable federated avatars +config.picture.avatar_upload_path=用户头像上传路径 +config.picture.repo_avatar_upload_path=仓库头像上传路径 +config.picture.gravatar_source=Gravatar 源 +config.picture.disable_gravatar=禁用 Gravatar 头像 +config.picture.enable_federated_avatar=启用 Federated 头像 -config.mirror_config=Mirror configuration -config.mirror.default_interval=Default interval +config.mirror_config=镜像配置 +config.mirror.default_interval=默认同步间隔 config.webhook_config=Web 钩子配置 -config.webhook.types=Types -config.webhook.deliver_timeout=Deliver timeout -config.webhook.skip_tls_verify=Skip TLS verify +config.webhook.types=类型 +config.webhook.deliver_timeout=推送超时 +config.webhook.skip_tls_verify=忽略 TLS 验证 config.git_config=Git 配置 -config.git.disable_diff_highlight=Disable diff syntax highlight -config.git.max_diff_lines=Diff lines limit (for a single file) -config.git.max_diff_line_characters=Diff characters limit (for a single line) -config.git.max_diff_files=Diff files limit (for a single diff) -config.git.gc_args=GC arguments -config.git.migrate_timeout=Migration timeout -config.git.mirror_timeout=Mirror fetch timeout -config.git.clone_timeout=Clone timeout -config.git.pull_timeout=Pull timeout -config.git.gc_timeout=GC timeout +config.git.disable_diff_highlight=禁用差异对比语法高亮 +config.git.max_diff_lines=差异行限制(单个文件) +config.git.max_diff_line_characters=差异字符限制(单行) +config.git.max_diff_files=差异文件数量限制(单次提交) +config.git.gc_args=GC 参数 +config.git.migrate_timeout=迁移超时 +config.git.mirror_timeout=镜像拉取超时 +config.git.clone_timeout=克隆超时 +config.git.pull_timeout=拉取超时 +config.git.gc_timeout=GC 超时 config.log_config=日志配置 config.log_file_root_path=日志文件根目录 @@ -1398,7 +1398,7 @@ months=%d 月%s years=%d 年%s raw_seconds=秒 raw_minutes=分钟 -raw_hours=hours +raw_hours=小时 [dropzone] default_message=拖曳文件到此处或单击上传 diff --git a/docker/Dockerfile.aarch64 b/docker/Dockerfile.aarch64 new file mode 100644 index 000000000..730b7f87b --- /dev/null +++ b/docker/Dockerfile.aarch64 @@ -0,0 +1,44 @@ +FROM arm64v8/golang:1.14 AS binarybuilder +RUN apk --no-cache --no-progress add --virtual \ + build-deps \ + build-base \ + git \ + linux-pam-dev + +WORKDIR /gogs.io/gogs +COPY . . +RUN make build-no-gen TAGS="cert pam" + +FROM arm64v8/alpine:3.11 +ADD https://github.com/tianon/gosu/releases/download/1.11/gosu-arm64 /usr/sbin/gosu +RUN chmod +x /usr/sbin/gosu \ + && echo http://dl-2.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \ + && apk --no-cache --no-progress add \ + bash \ + ca-certificates \ + curl \ + git \ + linux-pam \ + openssh \ + s6 \ + shadow \ + socat \ + tzdata \ + rsync + +ENV GOGS_CUSTOM /data/gogs + +# Configure LibC Name Service +COPY docker/nsswitch.conf /etc/nsswitch.conf + +WORKDIR /app/gogs +COPY docker ./docker +COPY --from=binarybuilder /gogs.io/gogs/gogs . + +RUN ./docker/finalize.sh + +# Configure Docker Container +VOLUME ["/data"] +EXPOSE 22 3000 +ENTRYPOINT ["/app/gogs/docker/start.sh"] +CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"] diff --git a/docker/Dockerfile.rpi b/docker/Dockerfile.rpi new file mode 100644 index 000000000..b1c61b0e2 --- /dev/null +++ b/docker/Dockerfile.rpi @@ -0,0 +1,44 @@ +FROM arm32v7/golang:1.14 AS binarybuilder +RUN apk --no-cache --no-progress add --virtual \ + build-deps \ + build-base \ + git \ + linux-pam-dev + +WORKDIR /gogs.io/gogs +COPY . . +RUN make build-no-gen TAGS="cert pam" + +FROM arm32v7/alpine:3.11 +ADD https://github.com/tianon/gosu/releases/download/1.11/gosu-arm64 /usr/sbin/gosu +RUN chmod +x /usr/sbin/gosu \ + && echo http://dl-2.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \ + && apk --no-cache --no-progress add \ + bash \ + ca-certificates \ + curl \ + git \ + linux-pam \ + openssh \ + s6 \ + shadow \ + socat \ + tzdata \ + rsync + +ENV GOGS_CUSTOM /data/gogs + +# Configure LibC Name Service +COPY docker/nsswitch.conf /etc/nsswitch.conf + +WORKDIR /app/gogs +COPY docker ./docker +COPY --from=binarybuilder /gogs.io/gogs/gogs . + +RUN ./docker/finalize.sh + +# Configure Docker Container +VOLUME ["/data"] +EXPOSE 22 3000 +ENTRYPOINT ["/app/gogs/docker/start.sh"] +CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"] diff --git a/docker/README.md b/docker/README.md index df240459a..30542316b 100644 --- a/docker/README.md +++ b/docker/README.md @@ -73,7 +73,7 @@ $ docker run --name=gogs -p 10022:22 -p 10080:3000 -v gogs-data:/data gogs/gogs Most of settings are obvious and easy to understand, but there are some settings can be confusing by running Gogs inside Docker: - **Repository Root Path**: keep it as default value `/home/git/gogs-repositories` because `start.sh` already made a symbolic link for you. -- **Run User**: keep it as default value `git` because `build.sh` already setup a user with name `git`. +- **Run User**: keep it as default value `git` because `finalize.sh` already setup a user with name `git`. - **Domain**: fill in with Docker container IP (e.g. `192.168.99.100`). But if you want to access your Gogs instance from a different physical machine, please fill in with the hostname or IP address of the Docker host machine. - **SSH Port**: Use the exposed port from Docker container. For example, your SSH server listens on `22` inside Docker, **but** you expose it by `10022:22`, then use `10022` for this value. **Builtin SSH server is not recommended inside Docker Container** - **HTTP Port**: Use port you want Gogs to listen on inside Docker container. For example, your Gogs listens on `3000` inside Docker, **and** you expose it by `10080:3000`, but you still use `3000` for this value. diff --git a/docker/aarch64/build.sh b/docker/aarch64/build.sh deleted file mode 100644 index d864f4b35..000000000 --- a/docker/aarch64/build.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -go build -ldflags "-w -s" resin-xbuild.go diff --git a/docker/aarch64/qemu-aarch64-static b/docker/aarch64/qemu-aarch64-static deleted file mode 100755 index f44233bc8..000000000 Binary files a/docker/aarch64/qemu-aarch64-static and /dev/null differ diff --git a/docker/aarch64/resin-xbuild b/docker/aarch64/resin-xbuild deleted file mode 100755 index 3996ea53d..000000000 Binary files a/docker/aarch64/resin-xbuild and /dev/null differ diff --git a/docker/aarch64/resin-xbuild.go b/docker/aarch64/resin-xbuild.go deleted file mode 100644 index 7e4ead566..000000000 --- a/docker/aarch64/resin-xbuild.go +++ /dev/null @@ -1,67 +0,0 @@ -//nolint -package main - -import ( - "log" - "os" - "os/exec" - "syscall" -) - -func crossBuildStart() { - err := os.Remove("/bin/sh") - if err != nil { - log.Fatal(err) - } - err = os.Link("/usr/bin/resin-xbuild", "/bin/sh") - if err != nil { - log.Fatal(err) - } -} - -func crossBuildEnd() { - err := os.Remove("/bin/sh") - if err != nil { - log.Fatal(err) - } - err = os.Link("/bin/sh.real", "/bin/sh") - if err != nil { - log.Fatal(err) - } -} - -func runShell() error { - cmd := exec.Command("/usr/bin/qemu-aarch64-static", append([]string{"-0", "/bin/sh", "/bin/sh"}, os.Args[1:]...)...) - cmd.Stdin = os.Stdin - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - return cmd.Run() -} - -func main() { - switch os.Args[0] { - case "cross-build-start": - crossBuildStart() - case "cross-build-end": - crossBuildEnd() - case "/bin/sh": - code := 0 - crossBuildEnd() - - if err := runShell(); err != nil { - code = 1 - if exiterr, ok := err.(*exec.ExitError); ok { - if status, ok := exiterr.Sys().(syscall.WaitStatus); ok { - code = status.ExitStatus() - } - } - } - - crossBuildStart() - - // Hack to bypass apk issues with triggering - code = 0 - - os.Exit(code) - } -} diff --git a/docker/armhf/build.sh b/docker/armhf/build.sh deleted file mode 100644 index d864f4b35..000000000 --- a/docker/armhf/build.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -go build -ldflags "-w -s" resin-xbuild.go diff --git a/docker/armhf/qemu-arm-static b/docker/armhf/qemu-arm-static deleted file mode 100755 index bf5897b14..000000000 Binary files a/docker/armhf/qemu-arm-static and /dev/null differ diff --git a/docker/armhf/resin-xbuild b/docker/armhf/resin-xbuild deleted file mode 100755 index 5471f249e..000000000 Binary files a/docker/armhf/resin-xbuild and /dev/null differ diff --git a/docker/armhf/resin-xbuild.go b/docker/armhf/resin-xbuild.go deleted file mode 100644 index fb7494495..000000000 --- a/docker/armhf/resin-xbuild.go +++ /dev/null @@ -1,67 +0,0 @@ -//nolint -package main - -import ( - "log" - "os" - "os/exec" - "syscall" -) - -func crossBuildStart() { - err := os.Remove("/bin/sh") - if err != nil { - log.Fatal(err) - } - err = os.Link("/usr/bin/resin-xbuild", "/bin/sh") - if err != nil { - log.Fatal(err) - } -} - -func crossBuildEnd() { - err := os.Remove("/bin/sh") - if err != nil { - log.Fatal(err) - } - err = os.Link("/bin/sh.real", "/bin/sh") - if err != nil { - log.Fatal(err) - } -} - -func runShell() error { - cmd := exec.Command("/usr/bin/qemu-arm-static", append([]string{"-0", "/bin/sh", "/bin/sh"}, os.Args[1:]...)...) - cmd.Stdin = os.Stdin - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - return cmd.Run() -} - -func main() { - switch os.Args[0] { - case "cross-build-start": - crossBuildStart() - case "cross-build-end": - crossBuildEnd() - case "/bin/sh": - code := 0 - crossBuildEnd() - - if err := runShell(); err != nil { - code = 1 - if exiterr, ok := err.(*exec.ExitError); ok { - if status, ok := exiterr.Sys().(syscall.WaitStatus); ok { - code = status.ExitStatus() - } - } - } - - crossBuildStart() - - // Hack to bypass apk issues with triggering - code = 0 - - os.Exit(code) - } -} diff --git a/docker/build-go.sh b/docker/build-go.sh deleted file mode 100755 index 22e3724d8..000000000 --- a/docker/build-go.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -# Build GO version as specified in Dockerfile - -set -x -set -e - -# Components versions -export GOLANG_VERSION="1.8" -export GOLANG_SRC_URL="https://golang.org/dl/go$GOLANG_VERSION.src.tar.gz" -export GOLANG_SRC_SHA256="406865f587b44be7092f206d73fc1de252600b79b3cacc587b74b5ef5c623596" - - -# Install build tools -apk add --no-cache --no-progress --virtual build-deps-go gcc musl-dev openssl go - -export GOROOT_BOOTSTRAP="$(go env GOROOT)" - -# Download Go -wget -q "$GOLANG_SRC_URL" -O golang.tar.gz -echo "$GOLANG_SRC_SHA256 golang.tar.gz" | sha256sum -c - -tar -C /usr/local -xzf golang.tar.gz -rm golang.tar.gz - -# Build -cd /usr/local/go/src -# see https://golang.org/issue/14851 -patch -p2 -i /app/gogs/build/docker/no-pic.patch -./make.bash - -# Clean -rm /app/gogs/build/docker/*.patch -apk del build-deps-go diff --git a/docker/build.sh b/docker/build.sh deleted file mode 100755 index ebcdb89c7..000000000 --- a/docker/build.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -set -x -set -e - -# Set temp environment vars -export GOPATH=/tmp/go -export PATH=/usr/local/go/bin:${PATH}:${GOPATH}/bin - -# Install build deps -apk --no-cache --no-progress add --virtual build-deps build-base linux-pam-dev - -# Build Gogs -mkdir -p ${GOPATH}/src/github.com/gogs/ -ln -s /app/gogs/build ${GOPATH}/src/github.com/gogs/gogs -cd ${GOPATH}/src/github.com/gogs/gogs -# Needed since git 2.9.3 or 2.9.4 -git config --global http.https://gopkg.in.followRedirects true -make build TAGS="sqlite cert pam" - -# Cleanup GOPATH -rm -r $GOPATH - -# Remove build deps -apk --no-progress del build-deps - -# Move to final place -mv /app/gogs/build/gogs /app/gogs/ - -# Cleanup go -rm -rf /tmp/go -rm -rf /usr/local/go diff --git a/docker/finalize.sh b/docker/finalize.sh index 5880aae31..4038b16dc 100755 --- a/docker/finalize.sh +++ b/docker/finalize.sh @@ -11,8 +11,6 @@ echo "export GOGS_CUSTOM=${GOGS_CUSTOM}" >> /etc/profile # Final cleaning rm -rf /app/gogs/build -rm /app/gogs/docker/build.sh -rm /app/gogs/docker/build-go.sh rm /app/gogs/docker/finalize.sh rm /app/gogs/docker/nsswitch.conf rm /app/gogs/docker/README.md diff --git a/docker/no-pic.patch b/docker/no-pic.patch deleted file mode 100644 index 9da799211..000000000 --- a/docker/no-pic.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/src/cmd/link/internal/ld/lib.go b/src/cmd/link/internal/ld/lib.go -index 14f4fa9..5599307 100644 ---- a/src/cmd/link/internal/ld/lib.go -+++ b/src/cmd/link/internal/ld/lib.go -@@ -1272,6 +1272,11 @@ func hostlink() { - argv = append(argv, peimporteddlls()...) - } - -+ // The Go linker does not currently support building PIE -+ // executables when using the external linker. See: -+ // https://github.com/golang/go/issues/6940 -+ argv = append(argv, "-fno-PIC") -+ - if l.Debugvlog != 0 { - l.Logf("%5.2f host link:", obj.Cputime()) - for _, v := range argv { diff --git a/docker/s6/gogs/run b/docker/s6/gogs/run index 1aa70eb41..edcf49cec 100755 --- a/docker/s6/gogs/run +++ b/docker/s6/gogs/run @@ -4,5 +4,4 @@ if test -f ./setup; then source ./setup fi -export USER=git exec gosu $USER /app/gogs/gogs web diff --git a/docker/s6/gogs/setup b/docker/s6/gogs/setup index 8a95422ae..b361495b5 100755 --- a/docker/s6/gogs/setup +++ b/docker/s6/gogs/setup @@ -1,12 +1,12 @@ #!/bin/sh if ! test -d ~git/.ssh; then - mkdir -p ~git/.ssh + gosu $USER mkdir -p ~git/.ssh chmod 700 ~git/.ssh fi if ! test -f ~git/.ssh/environment; then - echo "GOGS_CUSTOM=${GOGS_CUSTOM}" > ~git/.ssh/environment + gosu $USER echo "GOGS_CUSTOM=${GOGS_CUSTOM}" > ~git/.ssh/environment chmod 600 ~git/.ssh/environment fi @@ -19,15 +19,4 @@ ln -sfn /data/gogs/data ./data # Backward Compatibility with Gogs Container v0.6.15 ln -sfn /data/git /home/git -# Only chown for the first time, owner of '/data' is 'git' inside Docker after installation -if [ $(stat -c '%U' /data) != 'git' ]; then - chown -R git:git /data ~git/ -fi - -# Check ownership of '/app/gogs' in case the image changed and '/data' is persistent -if [ $(stat -c '%U' /app/gogs) != 'git' ]; then - chown -R git:git /app/gogs -fi - - chmod 0755 /data /data/gogs ~git/ diff --git a/docker/start.sh b/docker/start.sh index 9f9d40e98..017a10995 100755 --- a/docker/start.sh +++ b/docker/start.sh @@ -30,19 +30,23 @@ cleanup() { } create_volume_subfolder() { + # Modify the owner of /data dir, make $USER(git) user have permission to create sub-dir in /data. + chown -R $USER:$USER /data + # Create VOLUME subfolder for f in /data/gogs/data /data/gogs/conf /data/gogs/log /data/git /data/ssh; do if ! test -d $f; then - mkdir -p $f + gosu $USER mkdir -p $f fi done } setids() { + export USER=git PUID=${PUID:-1000} PGID=${PGID:-1000} - groupmod -o -g "$PGID" git - usermod -o -u "$PUID" git + groupmod -o -g "$PGID" $USER + usermod -o -u "$PUID" $USER } setids diff --git a/docs/local_development.md b/docs/dev/local_development.md similarity index 97% rename from docs/local_development.md rename to docs/dev/local_development.md index 03cec259f..17fef5771 100644 --- a/docs/local_development.md +++ b/docs/dev/local_development.md @@ -23,14 +23,13 @@ Gogs is built and runs as a single binary and meant to be cross platform. Theref Gogs has the following dependencies: - [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) (v1.8.3 or higher) -- [Go](https://golang.org/doc/install) (v1.13 or higher) +- [Go](https://golang.org/doc/install) (v1.14 or higher) - [Less.js](http://lesscss.org/usage/#command-line-usage-installing) - [GNU Make](https://www.gnu.org/software/make/) - Database upon your choice (pick one, we choose PostgreSQL in this document): - [PostgreSQL](https://wiki.postgresql.org/wiki/Detailed_installation_guides) (v9.6 or higher) - [MySQL](https://dev.mysql.com/downloads/mysql/) with `ENGINE=InnoDB` (v5.7 or higher) - [SQLite3](https://www.sqlite.org/index.html) - - [MSSQL](https://en.wikipedia.org/wiki/Microsoft_SQL_Server) (SQL Server 2005 or newer) - [TiDB](https://github.com/pingcap/tidb) ### macOS diff --git a/go.mod b/go.mod index 10d6f9138..bde8dd3a3 100644 --- a/go.mod +++ b/go.mod @@ -1,60 +1,60 @@ module gogs.io/gogs -go 1.13 +go 1.14 require ( github.com/bgentry/speakeasy v0.1.0 // indirect - github.com/denisenkom/go-mssqldb v0.0.0-20191001013358-cfbb681360f0 - github.com/editorconfig/editorconfig-core-go/v2 v2.3.0 + github.com/denisenkom/go-mssqldb v0.0.0-20200206145737-bbfc9a55622e // indirect + github.com/editorconfig/editorconfig-core-go/v2 v2.3.2 github.com/fatih/color v1.9.0 // indirect - github.com/go-macaron/binding v1.0.1 + github.com/go-macaron/binding v1.1.0 github.com/go-macaron/cache v0.0.0-20190810181446-10f7c57e2196 - github.com/go-macaron/captcha v0.0.0-20190813234938-24f40749f36d + github.com/go-macaron/captcha v0.2.0 github.com/go-macaron/csrf v0.0.0-20190812063352-946f6d303a4c github.com/go-macaron/gzip v0.0.0-20160222043647-cad1c6580a07 github.com/go-macaron/i18n v0.5.0 github.com/go-macaron/session v0.0.0-20190805070824-1a3cdc6f5659 github.com/go-macaron/toolbox v0.0.0-20190813233741-94defb8383c6 - github.com/go-sql-driver/mysql v1.4.1 + github.com/go-sql-driver/mysql v1.5.0 // indirect github.com/gogs/chardet v0.0.0-20150115103509-2404f7772561 github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14 - github.com/gogs/git-module v1.0.1 + github.com/gogs/git-module v1.1.1 github.com/gogs/go-gogs-client v0.0.0-20200128182646-c69cb7680fd4 github.com/gogs/go-libravatar v0.0.0-20191106065024-33a75213d0a0 github.com/gogs/minwinsvc v0.0.0-20170301035411-95be6356811a - github.com/google/go-cmp v0.3.0 github.com/google/go-github v17.0.0+incompatible github.com/google/go-querystring v1.0.0 // indirect github.com/issue9/identicon v1.0.1 github.com/jaytaylor/html2text v0.0.0-20190408195923-01ec452cbe43 - github.com/json-iterator/go v1.1.7 + github.com/jinzhu/gorm v1.9.12 + github.com/json-iterator/go v1.1.9 github.com/klauspost/compress v1.8.6 // indirect github.com/klauspost/cpuid v1.2.1 // indirect - github.com/lib/pq v1.2.0 + github.com/lib/pq v1.3.0 // indirect github.com/mattn/go-isatty v0.0.12 // indirect github.com/mattn/go-runewidth v0.0.4 // indirect - github.com/mattn/go-sqlite3 v1.11.0 + github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect github.com/mcuadros/go-version v0.0.0-20190830083331-035f6764e8d2 github.com/microcosm-cc/bluemonday v1.0.2 github.com/msteinert/pam v0.0.0-20190215180659-f29b9f28d6f9 github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 - github.com/niklasfasching/go-org v0.1.6 + github.com/niklasfasching/go-org v0.1.9 github.com/olekukonko/tablewriter v0.0.1 // indirect - github.com/pkg/errors v0.8.1 + github.com/pkg/errors v0.9.1 github.com/pquerna/otp v1.2.0 - github.com/prometheus/client_golang v1.2.1 + github.com/prometheus/client_golang v1.5.1 github.com/russross/blackfriday v1.5.2 github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca // indirect github.com/satori/go.uuid v1.2.0 - github.com/sergi/go-diff v1.0.0 - github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337 + github.com/sergi/go-diff v1.1.0 github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect - github.com/stretchr/testify v1.4.0 + github.com/stretchr/testify v1.5.1 + github.com/t-tiger/gorm-bulk-insert v1.3.0 github.com/unknwon/cae v1.0.0 github.com/unknwon/com v1.0.1 github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6 github.com/unknwon/paginater v0.0.0-20170405233947-45e5d631308e - github.com/urfave/cli v1.22.1 + github.com/urfave/cli v1.22.4 golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975 golang.org/x/net v0.0.0-20191014212845-da9a3fd4c582 golang.org/x/sys v0.0.0-20200219091948-cb0a6d8edb6c // indirect @@ -62,14 +62,14 @@ require ( gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d // indirect gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df - gopkg.in/ini.v1 v1.53.0 + gopkg.in/ini.v1 v1.55.0 gopkg.in/ldap.v2 v2.5.1 - gopkg.in/macaron.v1 v1.3.4 + gopkg.in/macaron.v1 v1.3.5 unknwon.dev/clog/v2 v2.1.2 xorm.io/builder v0.3.6 xorm.io/core v0.7.2 xorm.io/xorm v0.8.0 ) -// +heroku goVersion go1.13 +// +heroku goVersion go1.14 // +heroku install ./ diff --git a/go.sum b/go.sum index 81ff21a2e..4db30b689 100644 --- a/go.sum +++ b/go.sum @@ -15,14 +15,12 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY= github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= -github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ= -github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc h1:biVzkmvwrH8WK8raXaxBx6fRVTlJILwEwQGL1I/ByEI= github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668 h1:U/lr3Dgy4WK+hNk4tyD+nuGjpVLPEHuJSFXMw11/HPA= github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668/go.mod h1:H0wQNHz2YrLsuXOZozoeDmnHXkNCRmMW0gwFWDfEZDA= -github.com/cespare/xxhash/v2 v2.1.0 h1:yTUvW7Vhb89inJ+8irsUqiWjh8iT6sQPZiQzI6ReGkA= -github.com/cespare/xxhash/v2 v2.1.0/go.mod h1:dgIUBU3pDso/gPgZ1osOZ0iQf77oPR28Tjxl5dIMyVM= +github.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY= +github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/couchbase/gomemcached v0.0.0-20190515232915-c4b4ca0eb21d/go.mod h1:srVSlQLB8iXBVXHgnqemxUXqN6FCvClgCMPCsjBDR7c= github.com/couchbase/goutils v0.0.0-20190315194238-f9d42b11473b/go.mod h1:BQwMFlJzDjFDG3DJUdU0KORxn88UlsOULuxLExMh3Hs= @@ -33,18 +31,21 @@ github.com/cupcake/rdb v0.0.0-20161107195141-43ba34106c76/go.mod h1:vYwsqCOLxGii github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/denisenkom/go-mssqldb v0.0.0-20190515213511-eb9f6a1743f3/go.mod h1:zAg7JM8CkOJ43xKXIj7eRO9kmWm/TW578qo+oDO6tuM= github.com/denisenkom/go-mssqldb v0.0.0-20190707035753-2be1aa521ff4/go.mod h1:zAg7JM8CkOJ43xKXIj7eRO9kmWm/TW578qo+oDO6tuM= -github.com/denisenkom/go-mssqldb v0.0.0-20191001013358-cfbb681360f0 h1:epsH3lb7KVbXHYk7LYGN5EiE0MxcevHU85CKITJ0wUY= -github.com/denisenkom/go-mssqldb v0.0.0-20191001013358-cfbb681360f0/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU= +github.com/denisenkom/go-mssqldb v0.0.0-20191124224453-732737034ffd/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU= +github.com/denisenkom/go-mssqldb v0.0.0-20200206145737-bbfc9a55622e h1:LzwWXEScfcTu7vUZNlDDWDARoSGEtvlDKK2BYHowNeE= +github.com/denisenkom/go-mssqldb v0.0.0-20200206145737-bbfc9a55622e/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU= github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= -github.com/editorconfig/editorconfig-core-go/v2 v2.2.1 h1:jY5PCRQf4V0oqpim/Ympl6MwHcb9+nBHEnHOPXqNZ/A= -github.com/editorconfig/editorconfig-core-go/v2 v2.2.1/go.mod h1:6XDmqAZsQu8ikS+onLRJfLZvTP3RWTVT8ROX6qcdkio= -github.com/editorconfig/editorconfig-core-go/v2 v2.3.0 h1:QD1YB/rbntMEQIKM42kQOaqGdS13UvGsl9c8m/nFNWY= -github.com/editorconfig/editorconfig-core-go/v2 v2.3.0/go.mod h1:RNdPfKd9PliYEUZ3r+GxbDsSHNnEluC1wdkQJc3jD4k= +github.com/editorconfig/editorconfig-core-go/v2 v2.3.1 h1:8+L7G4cCtuYprGaNawfTBq20m8+VpPCH2O0vwKS7r84= +github.com/editorconfig/editorconfig-core-go/v2 v2.3.1/go.mod h1:mJYZ8yC2PWr+pabYXwHMfcEe45fh2w2sxk8cudJdLPM= +github.com/editorconfig/editorconfig-core-go/v2 v2.3.2 h1:j9GLz0kWF9+1T3IX0MOhhvzLtqhFOvIKLhZFxtY95Qc= +github.com/editorconfig/editorconfig-core-go/v2 v2.3.2/go.mod h1:+u4rFiKVvlbukHyJM76GYXqQcnHScxvQCuKpMLRtJVw= github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= -github.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys= +github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 h1:Yzb9+7DPaBjB8zlTR87/ElzFsnQfuHnVUVqpZZIcV5Y= +github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5/go.mod h1:a2zkGnVExMxdzMo3M0Hi/3sEU+cWnZpSni0O6/Yb/P0= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.9.0 h1:8xPHl4/q1VyqGIPif1F+1V3Y3lSmrq01EabUW3CoW5s= github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= @@ -53,12 +54,12 @@ github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2 github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= -github.com/go-macaron/binding v1.0.1 h1:4LASxd4EKsESZ6ZMyzNVX+TM4Yuex4bTHYyz/PQjsRA= -github.com/go-macaron/binding v1.0.1/go.mod h1:AG8Z6qkQM8s47aUDJOco/SNwJ8Czif2hMm7rc0abDog= +github.com/go-macaron/binding v1.1.0 h1:A5jpr5UdHr81Hfmb6QUAMTHyvniudOMcgtEg13TJ1ig= +github.com/go-macaron/binding v1.1.0/go.mod h1:dJU/AtPKG0gUiFra1K5TTGduFGMNxMvfJzV/zmXwyGM= github.com/go-macaron/cache v0.0.0-20190810181446-10f7c57e2196 h1:fqWZxyMLF6RVGmjvsZ9FijiU9UlAjuE6nu9RfNBZ+iE= github.com/go-macaron/cache v0.0.0-20190810181446-10f7c57e2196/go.mod h1:O6fSdaYZbGh4clVMGMGO5k2KbMO0Cz8YdBnPrD0I8dM= -github.com/go-macaron/captcha v0.0.0-20190813234938-24f40749f36d h1:aSJXLVjEjbLeHo8aCTDcD3/gMWizaRjMBb3VCsEWEHs= -github.com/go-macaron/captcha v0.0.0-20190813234938-24f40749f36d/go.mod h1:lmhlZnu9cTRGNQEkSh1qZi2IK3HJH4Z1MXkg6ARQKZA= +github.com/go-macaron/captcha v0.2.0 h1:d38eYDDF8tdqoM0hJbk+Jb7WQGWlwYNnQwRqLRmSk1Y= +github.com/go-macaron/captcha v0.2.0/go.mod h1:lmhlZnu9cTRGNQEkSh1qZi2IK3HJH4Z1MXkg6ARQKZA= github.com/go-macaron/csrf v0.0.0-20190812063352-946f6d303a4c h1:kFFz1OpaH3+efG7RA33z+D0piwpA/a3x/Zn2d8z9rfw= github.com/go-macaron/csrf v0.0.0-20190812063352-946f6d303a4c/go.mod h1:FX53Xq0NNlUj0E5in5J8Dq5nrbdK3ZyDIy6y5VWOiUo= github.com/go-macaron/gzip v0.0.0-20160222043647-cad1c6580a07 h1:YSIA98PevNf1NtCa/J6cz7gjzpz99WVAOa9Eg0klKps= @@ -71,8 +72,9 @@ github.com/go-macaron/session v0.0.0-20190805070824-1a3cdc6f5659 h1:YXDFNK98PgKe github.com/go-macaron/session v0.0.0-20190805070824-1a3cdc6f5659/go.mod h1:tLd0QEudXocQckwcpCq5pCuTCuYc24I0bRJDuRe9OuQ= github.com/go-macaron/toolbox v0.0.0-20190813233741-94defb8383c6 h1:x/v1iUWlqXTKVg17ulB0qCgcM2s+eysAbr/dseKLLss= github.com/go-macaron/toolbox v0.0.0-20190813233741-94defb8383c6/go.mod h1:YFNJ/JT4yLnpuIXTFef30SZkxGHUczjGZGFaZpPcdn0= -github.com/go-sql-driver/mysql v1.4.1 h1:g24URVg0OFbNUTx9qqY1IRZ9D9z3iPyi5zKhQZpNwpA= github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= +github.com/go-sql-driver/mysql v1.5.0 h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs= +github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/go-xorm/sqlfiddle v0.0.0-20180821085327-62ce714f951a h1:9wScpmSP5A3Bk8V3XHWUcJmYTh+ZnlHVyc+A4oZYS3Y= github.com/go-xorm/sqlfiddle v0.0.0-20180821085327-62ce714f951a/go.mod h1:56xuuqnHyryaerycW3BfssRdxQstACi0Epw/yC5E2xM= @@ -82,14 +84,8 @@ github.com/gogs/chardet v0.0.0-20150115103509-2404f7772561 h1:aBzukfDxQlCTVS0NBU github.com/gogs/chardet v0.0.0-20150115103509-2404f7772561/go.mod h1:Pcatq5tYkCW2Q6yrR2VRHlbHpZ/R4/7qyL1TCF7vl14= github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14 h1:yXtpJr/LV6PFu4nTLgfjQdcMdzjbqqXMEnHfq0Or6p8= github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14/go.mod h1:jPoNZLWDAqA5N3G5amEoiNbhVrmM+ZQEcnQvNQ2KaZk= -github.com/gogs/git-module v0.8.3 h1:9f8oxSs9OACWrGBYMVnnQNzyTcVN+zzcBM7CXnbmezw= -github.com/gogs/git-module v0.8.3/go.mod h1:aj4tcm7DxaszJWpZLZIRL6gfPXyguAHiE1PDfAAPrCw= -github.com/gogs/git-module v1.0.0-beta.4 h1:5CyCvTfrb2n5LRpHcNIaFnywHDkM/NxSZVP6t4tpTXI= -github.com/gogs/git-module v1.0.0-beta.4/go.mod h1:oN37FFStFjdnTJXsSbhIHKJXh2YeDsEcXPATVz/oeuQ= -github.com/gogs/git-module v1.0.0 h1:iOlCZ5kPc3RjnWRxdziL5hjCaosYyZw/Lf2odzR/kjw= -github.com/gogs/git-module v1.0.0/go.mod h1:oN37FFStFjdnTJXsSbhIHKJXh2YeDsEcXPATVz/oeuQ= -github.com/gogs/git-module v1.0.1 h1:Xh/sfk6zKjF3y9w2G/dN0YMfLjMhRQzqxMTUPHOL5n4= -github.com/gogs/git-module v1.0.1/go.mod h1:oN37FFStFjdnTJXsSbhIHKJXh2YeDsEcXPATVz/oeuQ= +github.com/gogs/git-module v1.1.1 h1:/taoHtOHLorlmQJ7zLBQvJGGgM9LRIoGGH1et4Upzvo= +github.com/gogs/git-module v1.1.1/go.mod h1:oN37FFStFjdnTJXsSbhIHKJXh2YeDsEcXPATVz/oeuQ= github.com/gogs/go-gogs-client v0.0.0-20200128182646-c69cb7680fd4 h1:C7NryI/RQhsIWwC2bHN601P1wJKeuQ6U/UCOYTn3Cic= github.com/gogs/go-gogs-client v0.0.0-20200128182646-c69cb7680fd4/go.mod h1:fR6z1Ie6rtF7kl/vBYMfgD5/G5B1blui7z426/sj2DU= github.com/gogs/go-libravatar v0.0.0-20191106065024-33a75213d0a0 h1:K02vod+sn3M1OOkdqi2tPxN2+xESK4qyITVQ3JkGEv4= @@ -109,8 +105,9 @@ github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8l github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= -github.com/google/go-cmp v0.3.0 h1:crn/baboCvb5fXaQ0IJ1SGTsTVrWpDsCWC8EGETZijY= -github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.4.0 h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4= +github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-github v17.0.0+incompatible h1:N0LgJ1j65A7kfXrZnUDaYCs/Sf4rEjNlfyDHW9dolSY= github.com/google/go-github v17.0.0+incompatible/go.mod h1:zLgOLi98H3fifZn+44m+umXrS52loVEgC2AApnigrVQ= github.com/google/go-querystring v1.0.0 h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk= @@ -133,9 +130,16 @@ github.com/issue9/identicon v1.0.1 h1:pCDfjMDM6xWK0Chxo8Lif+ST/nOEtmXgMITgV1YA9O github.com/issue9/identicon v1.0.1/go.mod h1:UKNVkUFI68RPz/RlLhsAr1aX6bBSaYEWRHVfdjrMUmk= github.com/jaytaylor/html2text v0.0.0-20190408195923-01ec452cbe43 h1:jTkyeF7NZ5oIr0ESmcrpiDgAfoidCBF4F5kJhjtaRwE= github.com/jaytaylor/html2text v0.0.0-20190408195923-01ec452cbe43/go.mod h1:CVKlgaMiht+LXvHG173ujK6JUhZXKb2u/BQtjPDIvyk= +github.com/jinzhu/gorm v1.9.11/go.mod h1:bu/pK8szGZ2puuErfU0RwyeNdsf3e6nCX/noXaVxkfw= +github.com/jinzhu/gorm v1.9.12 h1:Drgk1clyWT9t9ERbzHza6Mj/8FY/CqMyVzOiHviMo6Q= +github.com/jinzhu/gorm v1.9.12/go.mod h1:vhTjlKSJUTWNtcbQtrMBFCxy7eXTzeCAzfL5fBZT/Qs= +github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= +github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= +github.com/jinzhu/now v1.0.1 h1:HjfetcXq097iXP0uoPCdnM4Efp5/9MsM0/M+XOTeR3M= +github.com/jinzhu/now v1.0.1/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= -github.com/json-iterator/go v1.1.7 h1:KfgG9LzI+pYjr4xvmz/5H4FXjokeP+rlHLhv3iH62Fo= -github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.9 h1:9yzud/Ht36ygwatGx56VwCZtlI/2AD15T1X2sjSuGns= +github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jtolds/gls v4.2.1+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= @@ -154,14 +158,15 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -github.com/lib/pq v1.2.0 h1:LXpIM/LZ5xGFhOpXAQUIMM1HdyqzVYM13zNdjCEEcA0= +github.com/lib/pq v1.1.1/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lib/pq v1.3.0 h1:/qkRGz8zljWiDcFvgpwUpwIAPu3r07TDvs3Rws+o/pU= +github.com/lib/pq v1.3.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de/go.mod h1:3q8WtuPQsoRbatJuy3nvq/hRSvuBJrHHr+ybPPiNvHQ= github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af/go.mod h1:Cqz6pqow14VObJ7peltM+2n3PWOz7yTrfUuGbVFkzN0= github.com/mattn/go-colorable v0.1.4 h1:snbPLB8fVfU9iwbbo30TPtbLRzwWu6aJS6Xh4eaaviA= github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.10 h1:qxFzApOv4WsAL965uUPIsXzAKCZxN2p9UqdhFS4ZW10= github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY= @@ -169,8 +174,10 @@ github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Ky github.com/mattn/go-runewidth v0.0.4 h1:2BvfKmzob6Bmd4YsL0zygOqfdFnK7GR4QL06Do4/p7Y= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-sqlite3 v1.10.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= -github.com/mattn/go-sqlite3 v1.11.0 h1:LDdKkqtYlom37fkvqs8rMPFKAMe8+SgjbwZ6ex1/A/Q= github.com/mattn/go-sqlite3 v1.11.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= +github.com/mattn/go-sqlite3 v2.0.1+incompatible/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= +github.com/mattn/go-sqlite3 v2.0.3+incompatible h1:gXHsfypPkaMZrKbD5209QV9jbUTJKjyR5WD3HYQSd+U= +github.com/mattn/go-sqlite3 v2.0.3+incompatible/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75/go.mod h1:76rfSfYPWj01Z85hUf/ituArm797mNKcvINh1OlsZKo= @@ -189,8 +196,8 @@ github.com/msteinert/pam v0.0.0-20190215180659-f29b9f28d6f9/go.mod h1:np1wUFZ6ty github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 h1:zYyBkD/k9seD2A7fsi6Oo2LfFZAehjjQMERAvZLEDnQ= github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646/go.mod h1:jpp1/29i3P1S/RLdc7JQKbRpFeM1dOBd8T9ki5s+AY8= -github.com/niklasfasching/go-org v0.1.6 h1:F521WcqRNl8OJumlgAnekZgERaTA2HpfOYYfVEKOeI8= -github.com/niklasfasching/go-org v0.1.6/go.mod h1:AsLD6X7djzRIz4/RFZu8vwRL0VGjUvGZCCH1Nz0VdrU= +github.com/niklasfasching/go-org v0.1.9 h1:Toz8WMIt+qJb52uYEk1YD/muLuOOmRt1CfkV+bKVMkI= +github.com/niklasfasching/go-org v0.1.9/go.mod h1:AsLD6X7djzRIz4/RFZu8vwRL0VGjUvGZCCH1Nz0VdrU= github.com/olekukonko/tablewriter v0.0.1 h1:b3iUnf1v+ppJiOfNX4yxxqfWKMQPZR5yoh8urCTFX88= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= @@ -202,8 +209,9 @@ github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJ github.com/pelletier/go-toml v1.4.0/go.mod h1:PN7xzY2wHTK0K9p34ErDQMlFxa51Fk0OUruD3k1mMwo= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pquerna/otp v1.2.0 h1:/A3+Jn+cagqayeR3iHs/L62m5ue7710D35zl1zJ1kok= @@ -211,22 +219,22 @@ github.com/pquerna/otp v1.2.0/go.mod h1:dkJfzwRKNiegxyNb54X/3fLwhCynbMspSyWKnvi1 github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= -github.com/prometheus/client_golang v1.2.1 h1:JnMpQc6ppsNgw9QPAGF6Dod479itz7lvlsMzzNayLOI= -github.com/prometheus/client_golang v1.2.1/go.mod h1:XMU6Z2MjaRKVu/dC1qupJI9SiNkDYzz3xecMgSW/F+U= +github.com/prometheus/client_golang v1.5.1 h1:bdHYieyGlH+6OLEk2YQha8THib30KP0/yD0YH9m6xcA= +github.com/prometheus/client_golang v1.5.1/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM= -github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= +github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.7.0 h1:L+1lyG48J1zAQXA3RBX/nG/B3gjlHq0zTt2tlbJLyCY= -github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= +github.com/prometheus/common v0.9.1 h1:KOMtN28tlbam3/7ZKEYKHhKoJZYYj3gMH4uc62x7X7U= +github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.5 h1:3+auTFlqw+ZaQYJARz6ArODtkaIwtvBTx3N2NehQlL8= -github.com/prometheus/procfs v0.0.5/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= +github.com/prometheus/procfs v0.0.8 h1:+fpWZdT24pJBiqJdAwYBjPSk+5YmQzYNPYzQsdzLkt8= +github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/russross/blackfriday v1.5.2 h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= @@ -236,8 +244,8 @@ github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca h1:NugYot0LIVPxT github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca/go.mod h1:uugorj2VCxiV1x+LzaIdVa9b4S4qGAcH6cbhh4qVxOU= github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww= github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= -github.com/sergi/go-diff v1.0.0 h1:Kpca3qRNrduNnOQeazBd0ysaKrUJiIuISHxogkT9RPQ= -github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= +github.com/sergi/go-diff v1.1.0 h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0= +github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= github.com/shurcooL/sanitized_anchor_name v1.0.0 h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/siddontang/go v0.0.0-20180604090527-bdc77568d726/go.mod h1:3yhqj7WBBfRhbBlzyOC3gUxftwsU0u8gqevxwIHQpMw= @@ -260,9 +268,12 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ= +github.com/t-tiger/gorm-bulk-insert v1.3.0 h1:9k7BaVEhw/3fsvh6GTOBwJ2RXk3asc5xs5m6hwozq20= +github.com/t-tiger/gorm-bulk-insert v1.3.0/go.mod h1:ruDlk8xDl+8sX4bA7PQuYly9YEb3pbp1eP2LCyeRrFY= github.com/unknwon/cae v1.0.0 h1:i39lOFaBXZxhGjQOy/RNbi8uzettCs6OQxpR0xXohGU= github.com/unknwon/cae v1.0.0/go.mod h1:QaSeRctcea9fK6piJpAMCCPKxzJ01+xFcr2k1m3WRPU= github.com/unknwon/com v0.0.0-20190804042917-757f69c95f3e/go.mod h1:tOOxU81rwgoCLoOVVPHb6T/wt8HZygqH5id+GNnlCXM= @@ -272,8 +283,8 @@ github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6 h1:sRrkJEHtNoaSvyXMbR github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6/go.mod h1:+5rDk6sDGpl3azws3O+f+GpFSyN9GVr0K8cvQLQM2ZQ= github.com/unknwon/paginater v0.0.0-20170405233947-45e5d631308e h1:Qf3QQl/zmEbWDajFEiisbKN83hLY+eq2MhbA0I1/two= github.com/unknwon/paginater v0.0.0-20170405233947-45e5d631308e/go.mod h1:TBwoao3Q4Eb/cp+dHbXDfRTrZSsj/k7kLr2j1oWRWC0= -github.com/urfave/cli v1.22.1 h1:+mkCCcOFKPnCmVYVcURKps1Xe+3zP90gSYGNfRkjoIY= -github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +github.com/urfave/cli v1.22.4 h1:u7tSpNPPswAFymm8IehJhy4uJMlUuU/GmqSkvJ1InXA= +github.com/urfave/cli v1.22.4/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/ziutek/mymysql v1.5.4 h1:GB0qdRGsTwQSBVYuVShFBKaXSnSnYYC2d9knnE1LHFs= github.com/ziutek/mymysql v1.5.4/go.mod h1:LMSpPZ6DbqWFxNCHW77HeMg9I646SAhApZ/wKdgO/C0= go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= @@ -282,14 +293,16 @@ golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACk golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20200214034016-1d94cc7ab1c6 h1:Sy5bstxEqwwbYs6n0/pBuxKENqOeZUgD45Gp3Q3pqLg= -golang.org/x/crypto v0.0.0-20200214034016-1d94cc7ab1c6/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20191205180655-e7c4368fe9dd/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975 h1:/Tl7pH94bvbAAHBdZJT947M/+gp0+CqQXDtMRC0fseo= golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/mod v0.2.0 h1:KU7oHjnv3XNWfa5COkzUifxZmxp1TyI7ImMXqFxLwvQ= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -313,6 +326,7 @@ golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e h1:vcxGaoTs7kV8m5Np9uUNQin4BrLOthgV7252N8V+FwY= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -326,10 +340,9 @@ golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190804053845-51ab0e2deafa/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191010194322-b09406accb47 h1:/XfQ9z7ib8eEJX2hdgFTZJ/ntt0swNk5oYBziWeTCvY= -golang.org/x/sys v0.0.0-20191010194322-b09406accb47/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200219091948-cb0a6d8edb6c h1:jceGD5YNJGgGMkJz79agzOln1K9TaZUjv5ird16qniQ= golang.org/x/sys v0.0.0-20200219091948-cb0a6d8edb6c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -346,11 +359,15 @@ golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3 golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190802220118-1d1727260058/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI= golang.org/x/tools v0.0.0-20190805222050-c5a2fd39b72a/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/api v0.3.1/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.6.1 h1:QzqyMA1tlu6CgqCDUtU9V+ZKhLFT2dkJuANu5QaxI3I= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= @@ -365,37 +382,32 @@ gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d/go.mod h1:cuepJuh7vyXfUy gopkg.in/bufio.v1 v1.0.0-20140618132640-567b2bfa514e h1:wGA78yza6bu/mWcc4QfBuIEHEtc06xdiU0X8sY36yUU= gopkg.in/bufio.v1 v1.0.0-20140618132640-567b2bfa514e/go.mod h1:xsQCaysVCudhrYTfzYWe577fCe7Ceci+6qjO2Rdc0Z4= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df h1:n7WqCuqOuCbNr617RXOY0AWRXxgwEyPp2z+p0+hgMuE= gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df/go.mod h1:LRQQ+SO6ZHR7tOkpBDuZnXENFzX8qRjMDMyPD6BRkCw= -gopkg.in/ini.v1 v1.42.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.46.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/ini.v1 v1.51.1/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/ini.v1 v1.52.0 h1:j+Lt/M1oPPejkniCg1TkWE2J3Eh1oZTsHSXzMTzUXn4= -gopkg.in/ini.v1 v1.52.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/ini.v1 v1.53.0 h1:c7ruDvTQi0MUTFuNpDRXLSjs7xT4TerM1icIg4uKWRg= -gopkg.in/ini.v1 v1.53.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.54.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.55.0 h1:E8yzL5unfpW3M6fz/eB7Cb5MQAYSZ7GKo4Qth+N2sgQ= +gopkg.in/ini.v1 v1.55.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ldap.v2 v2.5.1 h1:wiu0okdNfjlBzg6UWvd1Hn8Y+Ux17/u/4nlk4CQr6tU= gopkg.in/ldap.v2 v2.5.1/go.mod h1:oI0cpe/D7HRtBQl8aTg+ZmzFUAvu4lsv3eLXMLGFxWk= -gopkg.in/macaron.v1 v1.3.4 h1:HvIscOwxhFhx3swWM/979wh2QMYyuXrNmrF9l+j3HZs= gopkg.in/macaron.v1 v1.3.4/go.mod h1:/RoHTdC8ALpyJ3+QR36mKjwnT1F1dyYtsGM9Ate6ZFI= +gopkg.in/macaron.v1 v1.3.5 h1:FUA16VFBojxzfU75KqWrV/6BPv9O2R1GnybSGRie9QQ= +gopkg.in/macaron.v1 v1.3.5/go.mod h1:uMZCFccv9yr5TipIalVOyAyZQuOH3OkmXvgcWwhJuP4= gopkg.in/redis.v2 v2.3.2 h1:GPVIIB/JnL1wvfULefy3qXmPu1nfNu2d0yA09FHgwfs= gopkg.in/redis.v2 v2.3.2/go.mod h1:4wl9PJ/CqzeHk3LVq1hNLHH8krm3+AXEgut4jVc++LU= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.7 h1:VUgggvou5XRW9mHwD/yXxIYSMtY0zoKQf/v226p2nyo= -gopkg.in/yaml.v2 v2.2.7/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.5 h1:ymVxjfMaHvXD8RqPRmzHHsB3VvucivSkIAvJFDI5O3c= +gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -unknwon.dev/clog/v2 v2.1.0 h1:4iXteBnL9ESvxoNkiaWx4UTU6yEgEmDxFaMANyiq4b8= -unknwon.dev/clog/v2 v2.1.0/go.mod h1:zvUlyibDHI4mykYdWyWje2G9nF/nBzfDOqRo2my4mWc= -unknwon.dev/clog/v2 v2.1.1 h1:jBmBoMfsedJ/Sirm4/TdDy00mxh1vlbr9dM+AnYsNik= -unknwon.dev/clog/v2 v2.1.1/go.mod h1:zvUlyibDHI4mykYdWyWje2G9nF/nBzfDOqRo2my4mWc= unknwon.dev/clog/v2 v2.1.2 h1:+jwPPp10UtOPunFtviUmXF01Abf6q7p5GEy4jluLl8o= unknwon.dev/clog/v2 v2.1.2/go.mod h1:zvUlyibDHI4mykYdWyWje2G9nF/nBzfDOqRo2my4mWc= xorm.io/builder v0.3.6 h1:ha28mQ2M+TFx96Hxo+iq6tQgnkC9IZkM6D8w9sKHHF8= diff --git a/gogs.go b/gogs.go index 8ee85a32b..674288178 100644 --- a/gogs.go +++ b/gogs.go @@ -1,4 +1,4 @@ -// +build go1.13 +// +build go1.14 // Copyright 2014 The Gogs Authors. All rights reserved. // Use of this source code is governed by a MIT-style diff --git a/internal/app/api.go b/internal/app/api.go index c64e946e6..94c2bbc02 100644 --- a/internal/app/api.go +++ b/internal/app/api.go @@ -9,8 +9,6 @@ import ( "github.com/microcosm-cc/bluemonday" "gopkg.in/macaron.v1" - - "gogs.io/gogs/internal/context" ) func ipynbSanitizer() *bluemonday.Policy { @@ -24,13 +22,13 @@ func ipynbSanitizer() *bluemonday.Policy { func SanitizeIpynb() macaron.Handler { p := ipynbSanitizer() - return func(c *context.Context) { + return func(c *macaron.Context) { html, err := c.Req.Body().String() if err != nil { - c.Error(err, "read body") + c.Error(http.StatusInternalServerError, "read body") return } - c.PlainText(http.StatusOK, p.Sanitize(html)) + c.PlainText(http.StatusOK, []byte(p.Sanitize(html))) } } diff --git a/internal/app/metrics.go b/internal/app/metrics.go index 80ff32f61..45a9b74e9 100644 --- a/internal/app/metrics.go +++ b/internal/app/metrics.go @@ -9,14 +9,14 @@ import ( "gopkg.in/macaron.v1" + "gogs.io/gogs/internal/authutil" "gogs.io/gogs/internal/conf" - "gogs.io/gogs/internal/context" ) func MetricsFilter() macaron.Handler { - return func(c *context.Context) { + return func(w http.ResponseWriter, r *http.Request) { if !conf.Prometheus.Enabled { - c.Status(http.StatusNotFound) + w.WriteHeader(http.StatusNotFound) return } @@ -24,6 +24,10 @@ func MetricsFilter() macaron.Handler { return } - c.RequireBasicAuth(conf.Prometheus.BasicAuthUsername, conf.Prometheus.BasicAuthPassword) + username, password := authutil.DecodeBasic(r.Header) + if username != conf.Prometheus.BasicAuthUsername || password != conf.Prometheus.BasicAuthPassword { + w.WriteHeader(http.StatusForbidden) + return + } } } diff --git a/internal/assets/conf/conf_gen.go b/internal/assets/conf/conf_gen.go index e6919ac00..036498517 100644 --- a/internal/assets/conf/conf_gen.go +++ b/internal/assets/conf/conf_gen.go @@ -1,6 +1,6 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// ../../../conf/app.ini (18.756kB) +// ../../../conf/app.ini (19.517kB) // ../../../conf/auth.d/github.conf.example (181B) // ../../../conf/auth.d/ldap_bind_dn.conf.example (719B) // ../../../conf/auth.d/ldap_simple_auth.conf.example (761B) @@ -211,9 +211,9 @@ // ../../../conf/license/Mozilla Public License 2.0 (14.827kB) // ../../../conf/locale/locale_bg-BG.ini (97.715kB) // ../../../conf/locale/locale_cs-CZ.ini (73.005kB) -// ../../../conf/locale/locale_de-DE.ini (73.666kB) +// ../../../conf/locale/locale_de-DE.ini (74.045kB) // ../../../conf/locale/locale_en-GB.ini (66.468kB) -// ../../../conf/locale/locale_en-US.ini (69.471kB) +// ../../../conf/locale/locale_en-US.ini (69.517kB) // ../../../conf/locale/locale_es-ES.ini (74.188kB) // ../../../conf/locale/locale_fa-IR.ini (92.107kB) // ../../../conf/locale/locale_fi-FI.ini (70.349kB) @@ -229,14 +229,14 @@ // ../../../conf/locale/locale_pl-PL.ini (71.796kB) // ../../../conf/locale/locale_pt-BR.ini (71.962kB) // ../../../conf/locale/locale_pt-PT.ini (72.787kB) -// ../../../conf/locale/locale_ru-RU.ini (102.179kB) +// ../../../conf/locale/locale_ru-RU.ini (102.489kB) // ../../../conf/locale/locale_sk-SK.ini (72.953kB) // ../../../conf/locale/locale_sr-SP.ini (94.358kB) // ../../../conf/locale/locale_sv-SE.ini (69.522kB) -// ../../../conf/locale/locale_tr-TR.ini (72.228kB) +// ../../../conf/locale/locale_tr-TR.ini (72.421kB) // ../../../conf/locale/locale_uk-UA.ini (99.984kB) // ../../../conf/locale/locale_vi-VN.ini (77.434kB) -// ../../../conf/locale/locale_zh-CN.ini (65.631kB) +// ../../../conf/locale/locale_zh-CN.ini (65.603kB) // ../../../conf/locale/locale_zh-HK.ini (66.058kB) // ../../../conf/locale/locale_zh-TW.ini (65.354kB) // ../../../conf/readme/Default (23B) @@ -309,7 +309,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7c\xdd\x8f\xe4\xca\x75\xdf\x3b\xff\x8a\xba\x2d\x2b\xda\x15\xd8\x3d\x1f\xbb\xb3\x77\xef\x8e\xda\x10\xb7\x9b\x33\x43\x6f\x7f\x89\xe4\xec\xc7\x1d\x2c\xb8\x35\x64\x35\xbb\xd4\x24\x8b\xaa\x2a\xce\x6c\x0b\x81\xa1\x0b\x3f\x38\x09\xe2\xa7\x24\x36\x02\x18\x01\x8c\x20\x31\xe0\xc4\x89\x8c\x24\x80\xac\xc8\xc8\xc3\xb5\xdf\x77\xff\x07\x43\xb2\x83\x04\xfe\x17\x82\x73\x8a\xec\x66\xcf\xf4\xcc\x5d\xcb\x08\x7c\x2f\x30\xcd\x26\x8b\xa7\x4e\x55\x9d\x8f\xdf\xf9\xe8\xfd\x16\xf9\xec\xb3\xcf\xc8\xc4\x7d\xe9\xfa\x04\xff\x8c\xa7\x43\xef\xe4\x0d\x09\xcf\xbc\x80\x9c\x78\x23\x17\x9e\x5b\x66\xd4\x6c\xe4\x3a\x81\x4b\xc6\xce\x0b\x97\x0c\xce\x9c\xc9\xa9\x1b\x90\xe9\x84\x0c\xa6\xbe\xef\x06\xb3\xe9\x64\xe8\x4d\x4e\xc9\xe0\x3c\x08\xa7\x63\x32\x98\x4e\x4e\xbc\xd3\x9b\x14\xbc\x13\xf2\x66\x7a\x4e\x1c\xdf\x25\x33\x67\xf0\xc2\x39\x85\x37\x66\xfe\xf4\xa5\x37\x74\x7d\x7b\x6b\x82\xe9\x2b\xa0\x3c\x7b\x43\xa6\x27\xc4\x0b\x91\x86\x75\x4c\xc2\x05\x23\x97\x92\x16\x09\x29\x68\xce\x88\x98\x13\xbd\x60\x84\x96\x65\xc6\x63\xaa\xb9\x28\x6c\x12\xd3\x82\x5c\x32\xb2\x12\x95\x24\xb1\xc8\x4b\x5a\xac\x88\x90\x44\x33\x9a\xe3\x4b\x3d\xeb\xb9\xef\x4c\x86\xd1\xc4\x19\xbb\xa4\x4f\x4e\x45\xaa\x6a\xc2\x6a\xa5\x34\xcb\x49\xa5\x98\x24\xd7\x0b\x41\xd4\x42\x54\x59\x02\xc4\x64\x55\x14\xbc\x48\x6f\x4e\xa6\x7a\xc4\xd3\x64\x41\x15\x29\x04\x61\xf3\x39\x8b\x35\x11\x05\x79\xc5\x8b\x44\x5c\x2b\xdb\x3a\x26\x42\x2f\x98\xbc\xe6\x8a\xd9\x84\xeb\x86\x60\x4e\x75\xbc\x40\x5a\x57\x34\xab\x70\x15\xbf\x71\x1e\xb8\x3e\x61\xc5\x15\x97\xa2\xc8\x59\xa1\xc9\x15\x95\x9c\x5e\x66\xac\x67\xf9\xe7\x93\x08\x1f\xf7\x49\xca\x75\xcd\x6b\xc3\x51\x2e\x92\x7b\xb7\x81\x71\xe0\x80\x74\x12\x76\xd5\xb1\x49\xa7\x94\x22\xe9\xc0\x76\x74\x34\x53\xba\x63\x88\x8f\xa7\x43\xd8\x89\x84\x5d\x59\xd6\x85\x62\xf2\x8a\xc9\xb7\xf5\x34\x65\x75\x99\xf1\xb8\x3b\xa7\x31\x4c\x76\xee\x8f\xc8\x1c\xf6\x72\x7b\xb2\x9e\xe5\xbe\x0e\x5d\x7f\xe2\x8c\x22\x18\xd1\x27\xdf\x7e\x30\xf3\xa7\xe1\x74\x30\x1d\x3d\x54\xcf\xf6\xf6\xbe\xfd\x60\x38\x1d\x3b\xde\xe4\xa1\x7a\xf6\xed\x07\x67\x61\x38\x8b\x66\x53\x3f\x7c\xa8\xf6\x76\x4e\x92\x88\x9c\xf2\xc2\x9c\xef\xce\xc9\x0c\x31\xd2\x27\x99\x88\x69\xb6\x10\xaa\xd9\x93\x52\x0a\x2d\x62\x91\x11\xbd\xa0\x9a\x70\x05\x27\x99\x10\x2d\x08\xae\x89\x24\x5c\xc2\x01\x69\x49\xe7\x73\x1e\xc3\xfd\x5b\xa4\x8f\xc9\xa0\x92\x92\x15\x3a\x5b\x11\x55\x95\xa5\x90\x5a\x91\xce\x42\xeb\x12\x36\x0f\x3e\x15\x5c\xcc\xe3\x94\x77\x08\x48\x61\xa7\x2a\xf8\xfb\x4e\xcf\x6a\xd6\x4b\xfa\x04\x46\xd5\x0c\xd1\x24\x91\x4c\x29\x98\xea\x92\x91\x8c\x2b\xcd\x0a\x96\x90\xcb\xd5\xed\x99\x71\x5b\x9c\xe1\x10\x4e\x79\xbf\x87\xff\x37\xab\x12\x52\x93\xa2\xca\x2f\x99\xfc\x64\x42\xb0\xbf\xa4\x4f\x1e\xed\xef\x03\x95\x53\x56\x30\x49\x35\x23\x4a\xb3\x52\x3d\xb3\x8e\xc9\x6f\x90\xde\x5e\x2a\x52\x45\x62\x26\x35\xe9\xc6\xb4\xaf\x65\xc5\x48\x37\xa9\x24\x92\xe9\x3f\xfd\xfc\xc9\xfe\x62\x3f\xdf\x57\xa4\x0b\x1b\xdc\xcf\x57\xf0\xd1\x63\xef\x69\x5e\x66\xac\x17\x8b\xdc\x3a\xb6\x8e\xc9\x54\x92\xb9\x14\x39\xa1\xa4\x57\xce\xdf\x93\x39\xcf\x18\x61\xef\x81\x63\x96\x98\x27\xc0\x5f\xad\x0f\x38\x19\x9f\x03\xa7\xc0\x8a\x90\x8c\x3c\x48\x84\x75\x4c\x0a\xa1\xe1\xa4\x53\xa6\x61\x81\xe6\x7d\x7c\xb1\x94\xfc\x0a\x06\x2f\xd9\xea\xa1\x61\x5b\x94\xac\x50\x2a\x23\xe5\x32\x56\x07\x87\xa4\xcb\x0b\xa4\x8a\xb3\x77\x45\xa5\xeb\x6f\x2c\x27\xdd\x42\x2c\xd9\x4a\x7d\xda\x5b\x4b\xb6\x6a\x5e\x82\x07\x0a\x2e\x12\xa6\xac\x81\xeb\x87\x11\xda\xb0\x3e\x89\x2b\xa5\x45\xbe\x87\x42\xb0\xd7\x4c\x63\xbd\x70\xdf\xec\x1c\x50\x53\xac\xcf\x30\xe7\x05\xcf\xab\x9c\xd0\x2c\x13\xd7\x2c\x21\xe1\x28\x20\x57\x4c\x2a\xa3\xa9\x3b\x44\x2e\x1c\x05\x07\xfb\x20\x6a\x70\x71\xd0\x5c\x1c\x76\x6c\x23\x75\xf0\xe5\x51\xa7\x67\x85\xa3\x20\x1a\x7b\x93\xe8\xa5\xeb\x07\xde\x14\x74\x02\x87\x59\xc7\xe4\x04\x8e\xa2\x64\x32\xe7\x0a\x66\x21\xd7\x0b\x56\xd4\x7a\xd0\x28\xc0\x15\xa7\xe4\xbc\xe0\xef\x1b\x8d\x53\x22\x5e\x32\xdd\xb3\xce\x27\xde\xeb\x28\x98\x0e\x5e\xb8\x61\x34\x73\xfd\xb1\x17\xd4\xb4\x9f\x3c\x79\x62\x1d\x93\x11\x68\x1d\x79\x30\x1c\x7f\xf9\x70\x6d\x10\xae\x85\x5c\x32\xa9\xc8\x03\xd6\x4b\x7b\x24\x08\xce\x48\x55\x26\x54\xb3\x87\x84\xc6\x31\x53\x0a\xf4\xfa\x9a\x5d\x22\x03\x3c\x66\xa0\x68\x5e\x41\x72\xa1\x34\x89\xa9\x62\x0a\xac\x35\x49\x04\x4a\x42\xc1\x8c\xd2\xc6\x0b\x5a\xa4\x0c\xe5\x20\x61\x73\x5a\x65\xda\x98\x4b\x78\xd9\xc9\x34\x93\x60\x51\x45\x91\xad\x08\x9f\x1b\x6b\x0f\xf3\x1a\xf3\x45\xe0\xf8\xc0\x02\x00\x41\xa0\xa0\xc0\x9a\x50\x45\x40\x3b\xf0\x61\xcf\x1a\x4d\x07\xce\x28\xf2\xa7\xd3\xf0\x2e\xab\xb5\xd6\xc9\xdb\x86\xcb\x3a\x26\xaf\x16\x0c\x4d\xab\x16\x24\xe1\x0a\x4c\x35\xa9\x70\xa1\x83\xe1\x04\x37\x45\x69\xaa\x79\x8c\x4a\xa1\x88\x64\x29\x95\x49\xc6\x94\xea\x59\xd3\x93\x93\x91\x37\x71\x1b\xbb\x3b\xa7\x99\x62\xbb\x09\x66\x22\x4d\x81\x24\x2f\x88\x14\x95\x66\xb2\x67\x0d\xbd\xc0\x79\x3e\x72\x23\x7f\x7a\x1e\xba\x7e\x34\x9a\x9e\x92\x3e\x01\xed\xdd\xa6\xc0\x0a\x24\xd0\x32\x0d\x24\x63\x57\x2c\x23\xa7\x5f\x7a\x33\xf4\x8b\x60\x99\x8c\xf1\x9e\x20\x41\x7c\xd0\x70\xd3\xd8\x1e\xaa\x17\xf5\x5a\x84\x04\x46\xda\xf4\x54\xc9\x62\x50\x67\x92\x50\x4d\x7b\x96\x33\x9b\x45\x43\x27\x74\xa2\x99\x13\x9e\x81\x3b\xa1\x9a\xee\xe4\x49\x0b\x92\x09\x9a\x10\xaa\x14\xd3\x8a\x3c\xe0\x3d\xd6\x23\x9d\x58\x14\x73\x90\x73\xcd\xf2\x32\xa3\x9a\xa1\xa1\x35\x9e\xa1\xf3\xd0\xd8\x92\x84\xab\x25\xe1\x85\xd2\x8c\x26\xe0\xf3\x58\x7e\xc9\x92\x04\xec\x20\x2f\x0c\x0f\xa3\xa9\x33\x8c\x9c\x20\x70\xc3\x20\x3a\xf1\xa7\xe3\x68\xe8\x05\x2f\x6e\x2e\x2a\xa3\x45\x02\x6b\x29\x69\xca\xd6\x12\x4c\x0b\x51\xac\x72\x51\xa1\xd3\x90\xca\x6e\xb9\xe7\xda\x6b\x83\x28\xf1\x22\xce\xaa\x04\xb6\x5a\x55\x97\xb8\x39\x8d\xab\x59\xd0\x22\xc9\x36\x26\x59\x32\x50\x6f\x74\x49\xef\x57\x3d\x6b\xe4\x20\x38\xaa\x05\xed\x2e\xf1\x01\xf9\x35\xfa\xb2\xc3\x39\x11\x56\x68\x2e\x59\xb6\xda\x88\x00\x8c\xdf\x88\x0f\x2c\xad\xed\x3b\x8d\xaf\x00\x6b\x0a\x5e\x90\x17\x48\x3e\xce\x44\x81\x8b\xee\x59\x41\x70\x16\xad\x5d\xe9\xc6\x45\xdf\xe9\x75\xee\xa7\x54\x7b\x9c\xc3\xc3\xb6\xe4\x88\x39\x0e\x95\x42\xe8\xda\xfb\x0a\xb9\xb2\xd7\xea\xcc\x15\xe9\xfc\xc6\xd9\x74\xec\xee\xf5\x94\x5a\x74\x0c\x21\x54\x48\x23\x42\x6d\x52\xe0\xc5\xd5\xa2\xbb\x64\xab\x94\x15\xdb\x24\x36\xf7\x8d\x4f\xce\x18\x20\x2d\x96\x65\x64\xce\x8b\x84\x80\x7d\xbf\x5e\xf0\x78\x41\x80\x61\x30\x2c\x34\xcb\xcc\x5c\x2f\xdc\x37\xa7\xee\xa4\x11\xd8\x0d\x9d\x66\x37\x1b\x96\xf1\x2d\xc9\xc0\x15\x81\x78\x0a\x49\xe5\xaa\xd6\x6b\xb4\xab\x80\xa5\x08\xad\x71\x0c\x38\x93\xda\x12\xb4\x38\xb6\x8e\xdb\x3c\xeb\x0d\xda\xdc\x10\x5c\x4f\xb7\x66\x2e\x0a\xdd\xa0\xb5\x19\x2d\x91\x89\x17\x2c\x5e\xae\xdd\x4a\x6b\x62\xc5\x7f\xcc\xc8\x35\xd7\x0b\x12\x0b\x29\x99\x2a\x85\x11\x76\xbd\x2a\x59\xcf\x1a\x7b\x13\x6f\x7c\x3e\x46\xda\x81\xf7\xa5\x1b\x0d\xce\xdc\xc1\x8b\xdd\x36\x48\xb2\x6b\xc9\x35\x23\x9d\xdf\xc6\xe3\xd9\xa3\x95\x5e\x08\xc9\x7f\xcc\x92\x08\x1c\x6b\xc7\x78\x7b\xaa\xc1\xce\x49\x6d\x13\x9e\x16\x42\xb2\xc4\xec\x48\xa5\x18\xb9\xac\x78\xa6\x6b\x69\x31\x66\xb9\x67\xf9\xee\x2b\xdf\x0b\xdd\xc8\x39\x0f\xcf\xa6\xbe\xf7\xa5\x3b\x04\x5e\x82\xc8\x09\xa3\x20\x74\x50\x84\x76\xb0\x82\x33\x10\xba\x93\x22\xbe\x06\xaa\x10\x05\xae\xff\x12\x51\x72\x5b\x23\x0a\xa6\xc1\x39\x11\x5e\x68\x26\xe7\x34\x36\x98\xf2\x36\x21\xb4\x4a\x88\xab\x08\xd8\x44\xa0\x37\xf2\x82\xd0\x9d\x44\x67\xd3\x20\xbc\x17\x94\xfd\x7d\x09\xd6\xaa\xf2\xed\x07\x8d\xde\xac\x95\x0e\xc6\x83\xd2\x80\x11\x28\x01\x42\xc5\xbc\x5c\x80\x5f\x85\x29\x62\x51\x14\x2c\xc6\xb0\x03\x35\x72\xd7\x5e\xac\x77\x21\x1a\x78\xb3\x33\xd7\x0f\x48\x9f\x50\xa6\x0e\x0e\x9f\x76\x63\x2d\x6d\xbc\xfe\xe2\x70\x7d\x7d\x78\xf4\x64\x73\xff\xf0\x69\x37\x8d\xf3\xef\x1b\xac\xb4\x00\x88\x67\x13\x2a\xe3\xb9\xa8\xe4\xe1\xd1\x93\xf5\xf5\xc1\xe1\x53\x30\x5f\x43\x36\xe7\x05\x5b\x03\x1a\x9a\xa5\x42\x72\xbd\xc8\x15\xaa\xa0\x5e\x30\x2e\xd7\xe2\x09\x72\x99\xb1\x22\xd5\x0b\xf2\x00\x04\xa3\x7b\xd0\xb6\x7a\x14\x65\xf3\x61\xcf\xba\x80\x69\xeb\x77\x40\xc4\x22\x90\x65\xf5\xd6\x72\x87\x87\x47\x47\x07\x5f\x80\x75\x39\x7a\x62\xb9\x83\x61\xe0\x10\x52\x7f\xf3\xf1\x1a\xbf\xed\x3f\x7e\x6a\x0d\xd7\x5f\x0f\xf6\x0f\x1f\x5b\xd6\x85\x64\xa5\x50\x1c\x94\xaa\x89\x68\xd0\x18\xdd\xf2\x6b\x39\x2d\x68\xca\x12\xb2\x1e\xcf\x99\xda\xb6\x32\xbf\x8d\x80\xb9\xdb\x1e\xd0\xb1\xc0\x58\xad\xed\x94\x8a\x25\x2f\x35\xae\xa6\x91\x81\x06\xd0\xd9\x44\x89\x9c\x69\x9e\x33\x45\xe2\x26\xa8\xec\x18\x9b\x37\xf0\xbd\x59\x18\x85\x6f\x66\x80\x05\x2e\xa9\x5a\x98\xdd\xc5\x89\x9d\x49\xe0\x01\x10\x92\x8a\xe9\xda\x4d\x91\xaa\x90\x2c\x16\x69\x01\x9a\xd8\x3c\xeb\x59\x30\x32\x1a\x9c\x39\x7e\xe0\x86\x37\x8d\xc5\x5c\xc8\x98\x11\xf0\x48\x2b\x52\xb0\xeb\xcd\x22\x57\xb5\x69\xaf\x71\x76\xcf\x3a\x99\xfa\x03\x37\x9a\xf9\xde\x4b\x27\x74\x6f\x68\x52\x9a\x89\x4b\x9a\x91\x8c\xe7\x1c\x85\xb4\x96\x7e\x31\xdf\xda\x34\x42\x4d\xfc\x0c\xe1\xa7\x31\x99\x36\x9c\x77\xce\x68\x81\x51\x32\xbe\xde\xb3\xc6\xce\xeb\x68\xe0\xbb\x4e\xe8\x4d\x27\xd1\xc8\x1b\x7b\xa0\x11\xdd\x03\xeb\x98\xcc\x24\x9b\x33\x09\x86\x64\xc4\x63\x56\x00\x38\xd4\x82\x94\x19\xa8\x2e\x35\x60\x4e\x8b\xb2\x09\x79\x41\x63\x00\x10\x4e\xc0\xe3\xe5\x95\xd2\x75\x70\x8d\xb6\x09\xdd\x20\x2f\x0c\xb6\xd8\xcb\x0c\x39\x13\xfd\xd6\x58\x7d\xeb\x01\x44\x71\xee\x89\xeb\xfb\xee\x30\x1a\x79\x03\x77\x12\xb8\xa0\x3f\x4e\x49\xe3\x05\x6b\xb8\x21\x87\xbd\x7d\x9b\x00\xbf\xf5\x8d\xdd\xae\xfc\x94\x6b\x63\x72\x28\x6a\xac\xb1\xc8\x5b\xfb\x04\xe8\x1b\x20\xe5\x1e\xfc\x09\xd6\xb1\xeb\xc6\xbb\x23\xde\x3c\xf5\xee\x30\x89\x0d\xbe\xbb\xe4\x19\xd7\x78\x8e\x39\x4f\x31\xc8\x6b\x9d\xee\xe5\xaa\x11\x44\x0c\x95\x51\xec\xd7\x78\xcf\xe0\x5f\x70\x2e\xd1\xd8\x3b\xf5\xf1\x28\xee\x9d\x4b\xb2\x22\x61\xd2\x64\x1c\x40\x16\x25\xbd\xc6\x7d\xee\x81\x78\x48\x46\xa8\x04\xbb\xa8\x01\xa7\xd0\x8c\x28\x16\x57\x12\x58\x93\x5c\x2d\xd5\x7a\x56\xdf\x79\x85\xf1\x52\xe4\xbb\x93\xa1\xeb\xdf\xc4\xc0\x18\x2c\xd1\xf7\x68\x36\x36\x02\x96\x0a\x40\xbf\xbc\x00\x59\x00\xbc\x55\xe7\x36\x64\x55\x34\x22\x81\xf8\x1e\xf4\xcb\x68\x09\x01\xf7\x9b\x01\xc1\x39\x03\x71\x90\xec\x47\x15\x53\xba\x47\xce\x55\x45\xb3\x6c\xd5\x86\x77\x09\x2b\x59\x81\x78\x72\x21\xae\xc1\x10\xac\xc8\x60\x76\x4e\x1e\xc4\x42\x32\xf5\x10\x23\x93\x05\xbd\x62\x3d\xe2\xcd\xad\xe3\xd6\x7b\x18\x5d\x14\x5d\xdc\x6c\x7e\x65\x12\x3c\x28\x7c\xc6\xbd\x6f\xb8\x1f\xcc\xce\x15\xa1\x57\x94\x67\x0d\xfc\xbd\x15\xb4\x0f\xa6\xe3\xb1\x07\x98\xd5\x0d\x07\x67\xd1\x60\x3a\x19\x9c\xfb\xbe\x3b\x19\xbc\x01\xc7\xb3\x65\xc6\x7a\x2c\x81\x4f\xb0\x66\xa3\xda\x5b\xd4\x51\xb7\x66\x85\x32\xce\x01\xb6\xa8\x06\xad\xc0\x39\xc9\xc0\x52\x5f\x4b\x5a\x2a\xd0\x06\x98\x7c\x20\x12\x36\xe6\x52\x0a\x49\x0c\x3d\xd0\xa1\x80\x95\x14\x25\xa8\x45\x0b\xe5\x96\x42\xbc\x90\x03\xbc\x86\xa8\xe5\x95\xef\xcc\x22\xf7\x75\xe8\x4e\x20\x2c\x04\x0d\xe9\xe9\xf7\xda\xee\xe5\x89\xdd\xcb\xa9\x5c\x26\xe2\xba\x80\x6f\xe6\x63\x99\x58\xc7\xe4\x25\xcd\x78\x62\xf8\x04\xe9\xa9\x59\x44\xde\x28\x29\x25\xbb\xe2\xec\x9a\x38\x33\x0f\x42\x02\x11\x73\x0a\xae\x0f\x67\xd6\x0b\x96\xdb\x44\x55\xf1\x02\x82\xb7\xce\x1e\x2d\xf9\xde\xd5\xc1\x5e\x33\x4d\x67\x8b\x6d\x3c\x16\x05\x42\x8f\xec\xaa\x1e\xd8\x12\x24\xad\xe9\x25\xac\x1c\x96\x6a\xc4\xf7\x5a\x14\xdf\xc1\x3d\xba\x86\xe0\x11\x76\x64\x7b\x13\x49\x22\x98\x82\x21\x78\xa0\x68\x18\x5e\x7a\xee\x2b\x94\x60\x94\x5e\x10\x5b\x58\x7a\xc3\xc9\xf6\x19\x55\x25\x04\x38\x6f\xef\xd0\xa2\xb5\x7a\xe2\x9c\x66\xec\x5a\x41\x86\x9b\x68\xae\x8d\x7d\x1b\x94\xc8\xb3\x55\x9d\x3a\xa9\xdf\x03\x39\x2d\x40\xe7\x48\x85\xda\xa9\x17\x5c\x99\xb7\x52\x08\xae\xae\x79\xc9\x0c\x04\x86\x08\x02\x3d\x00\x82\xa9\x87\x3d\x2b\x74\xc7\xb3\x76\xac\xb6\xa7\xf3\x72\xaf\xa6\xda\x24\x10\xc0\x97\xd5\xa7\x05\xda\xdd\x78\x7b\xe3\x35\xcc\x58\x96\xd8\x04\xa3\xfe\x0e\xcf\x69\xca\xf6\x7e\x58\xb2\xf4\x9f\x9a\xcb\xb2\x48\x3b\x3d\x32\x62\x70\xce\x2c\x2f\x8d\x99\x42\x1a\x04\xb4\x6c\xde\xcc\xd0\xb3\x9c\xd1\x68\xfa\xca\x1d\xa2\x17\x0c\xd6\x0e\xb5\x31\x04\x88\x69\x21\xde\xa3\x8d\x65\xe7\x05\x19\x3f\xef\x59\xe6\x28\x9c\xd7\x88\x65\x49\x9f\x3c\xba\xd3\x82\x18\xb0\x5e\x32\x59\x73\x6d\x3c\x10\xbc\x0f\xa7\x78\x64\x59\x17\xb0\x05\x97\x54\xb1\x06\x27\x34\xdf\xc9\x25\x8d\x97\xac\x80\x55\xd6\xa9\xd4\x52\x28\x9d\x4a\x13\xa0\xe6\x2b\xf5\xa3\xac\x43\x3a\xea\x47\x19\xd7\xec\x91\x71\x2e\xb9\x82\x9b\x20\x9b\x6f\x44\x65\x3c\xa1\xc1\x6e\xb0\xfe\x90\x0f\x9f\x1b\xe1\x1e\xaf\x82\x1f\x8c\x5a\x86\xbf\x86\x00\x0d\x79\xab\x06\x9e\x07\x87\x9f\x23\xf4\x3c\x78\x76\xf4\xf8\xd1\xa1\x55\xa7\xad\x01\x8c\x58\x4d\x56\x18\xae\x67\x4e\x10\xbc\x9a\xfa\x43\xdc\xbd\x13\xd1\xe6\x13\xb3\x24\x1b\xfe\x6b\x1f\x05\xec\x83\x5d\xe4\xb2\xf6\x89\x57\x4c\xf2\xf9\xaa\x3b\xaf\xb2\x0c\x63\xb1\xd1\x3a\x31\x6c\x5e\x68\xe8\x6e\xd6\x8a\x64\x73\xba\x64\x44\x55\x12\x2d\x1b\xc0\x3b\x7a\xa9\x44\x56\x69\x56\xbb\x9b\xb6\x88\x01\xa7\xbd\xe4\x12\xd3\xcc\xc6\x3d\xdc\x50\x12\x54\x49\xd0\x47\x08\xf3\x69\x96\x61\x90\x6e\x13\x80\x3f\x28\xd9\x5a\x90\x0e\xa8\x47\x07\x65\x70\x55\x52\xa5\x08\xe0\x09\x6f\x12\x84\xce\x68\x04\x4e\xed\xc5\x0d\x77\xa2\x58\x2c\xeb\xcc\x62\x11\xcb\x55\xa9\x49\x2c\xc4\x92\x37\xf6\xc2\x26\x87\x27\x0e\x89\x45\xc2\x6c\xc2\x74\x0c\xa7\xf6\xd9\x67\xa6\xba\x61\x8a\x20\xe1\x94\xbc\x70\xdd\x19\x79\x33\x3d\xf7\x09\xee\xf8\xd0\x09\x1d\x12\x38\x27\xee\x67\x9f\x59\x81\x3b\xf0\xdd\x10\x82\x18\xd2\x27\x9f\x7d\xeb\xfb\x27\x43\xf7\x15\x04\x39\xff\xe4\xbb\x0f\xd6\x82\xb4\x52\x44\xb2\x9c\x81\x2c\xb2\xc4\x38\xa8\x4a\x8b\x6e\x26\x52\x5e\xf4\xac\xd1\xf4\xd4\x9b\x44\xbe\x3b\x76\xc7\xcf\x5d\x3f\x1a\x3a\x6f\x40\x24\x3f\xaf\xdf\xae\x79\x6d\x22\x7a\xa5\x05\xa0\xed\xf5\xeb\x84\x17\x73\x21\xf3\xb5\x1b\x99\xbe\xf0\xdc\x0d\xad\x96\xac\x44\xbc\x88\x25\x4b\xb8\x39\xc7\xdd\x94\x81\xbb\x4c\xa4\xa9\x09\xf2\x01\xc6\x99\x7a\x49\x4d\x16\xd6\xde\xa6\x48\xaf\x19\xa0\xda\x1b\x07\x08\xc1\x37\x9c\x6d\x33\xc1\xfa\xf5\xc0\x1d\x9c\xfb\x77\xe4\xbb\xe0\xad\x9a\x1f\x2d\x08\x2f\x12\x93\x24\x46\x24\x69\xd6\xa9\x34\xd5\x95\x6a\x81\x17\xd8\xb4\x20\x74\xc2\xf3\x20\x32\x13\xdc\x38\xf6\x5d\xcb\xdb\x45\x70\x07\xa5\x66\xdf\x70\x60\x64\x06\x5a\xd6\x05\xcb\x29\xcf\x76\x1b\x75\x90\x58\x7c\xbc\xc9\x70\x6e\xcc\x79\x9b\xab\x52\xb2\x39\x7f\x0f\x1f\x00\x3a\x8c\x29\x45\xfc\x52\x5d\xfe\x10\x0c\x04\xb8\xea\x9e\x15\x9c\x3f\xff\x2d\x77\x10\x46\x80\x47\xbd\xd7\xa4\x4f\xde\x5d\x7c\xfb\xc1\xa6\x6a\xf5\x50\xbd\x25\xef\x6a\x82\xc1\x38\x9c\x35\x20\x0f\xad\x0a\xd7\x0a\xa3\xd3\xda\x2a\xab\x5c\x97\x3d\xe0\x2c\xad\x8a\x9e\x90\xe9\xb3\xa3\xa7\x9f\xdb\xe6\x6e\x0a\xb7\x21\xce\x6b\xdd\xfb\xd1\x8f\xf0\xc6\xe3\x27\x47\xd6\x31\xf1\x8c\x6b\xc4\x58\x97\x15\x89\xc2\x38\xe8\xf1\x93\xa3\x8e\x8d\xd3\x06\xe4\x9a\x67\x19\x7a\x02\xc5\x12\xc0\x56\x10\x49\x61\x3c\x1e\x8e\x02\x70\x38\xf8\xe6\xd1\xd3\xcf\xe1\x45\x08\x5a\xf2\xdc\x2c\x1a\xec\xb0\x7f\x32\x20\x4f\x1e\xef\x7f\xd1\xdb\x4c\x74\x23\x68\xda\x90\xe2\xda\x4c\x45\xb3\x6b\x50\xa6\x66\xc6\xc6\x42\xee\x5a\x63\xbd\x3d\xe6\x50\x4c\x8d\xa2\x2e\xc6\x3c\x80\x99\x8f\x1e\x1d\x1e\x3e\x04\xe0\xca\x55\x83\x26\x7f\x08\xd1\x03\x2d\xea\x57\xea\xd1\x36\xa9\x2b\x50\xef\x3a\x10\x62\x74\xc8\xf7\xf0\xf1\xf7\x5b\x85\x90\xdf\x7c\x47\x8c\x0a\xf6\xac\x13\x7f\x3a\x26\x7d\x52\x08\xc9\xca\x6c\xf5\x7d\xb4\x76\x37\x8b\x54\x46\xfa\x40\x10\x7b\x8d\xfd\xfe\x84\xf1\x60\xe8\xae\x85\x4c\x7a\x6d\x3b\xbf\x3b\xf4\x38\x73\x47\x53\x22\x4a\x66\x2a\x39\x75\x82\x6a\xc1\x08\xd0\x34\x11\x91\x22\x09\x9f\xcf\x99\x64\x85\x6e\x85\x1b\xf0\x5a\xe3\x79\x4d\x78\xb4\x79\x05\x6c\xd6\x36\xdd\xad\xe0\x18\xf7\xd7\xe4\xb3\x7a\x16\x8c\xc3\xa4\x89\xd1\xa2\x1b\x5c\xaa\x25\x2f\x89\xf1\x34\x4d\x41\xb5\x5d\x16\x12\x6d\x49\xe8\x91\x69\x91\xad\xd0\xa7\xa0\xf1\xc7\x80\x9d\x65\xf3\xae\xe2\x69\x01\xc1\xef\xe6\x45\xd5\xb3\x82\x17\xde\x2c\x7a\xe9\xfa\xde\xc9\x9b\xdd\x46\x06\xe8\xc4\x19\x07\xac\xb4\xfd\xe6\x79\xe0\x46\x03\xd7\x0f\xbd\x13\x6f\xd0\x8e\x7b\x77\x54\x7f\xf0\xf4\xef\xab\xfe\x98\x01\x4d\xf5\xe7\x36\x03\x1d\xcd\xde\xeb\xbd\x32\xa3\xbc\xe8\x00\xa6\x6d\xd0\x5b\x23\x42\xc0\xcb\x6c\xe4\x78\x93\x28\x74\x5f\xdf\x11\xfb\x51\xad\x01\x09\x51\x82\x64\x80\x20\xa1\x99\x06\x6b\x0d\x81\x48\x63\x52\xc6\xde\xd8\x25\x39\x53\x8a\xa6\x8c\x5c\x2f\x00\x36\x29\x66\x92\x81\x67\xe1\x78\x64\xe4\x5c\xa1\xfa\x6d\x17\x4b\x8d\xfa\x11\x91\x61\xb4\x07\xca\x60\x76\xcd\xa4\x76\x8c\xbb\x2f\x69\x0e\x98\x4a\x33\xa9\xc8\x82\x96\x25\x07\x71\x76\x86\xc3\x16\xef\x91\x33\xda\xf0\x6f\x5d\xd0\x4a\x2f\x1a\x6c\x75\x85\xf1\x40\x53\x6c\x34\x19\x2f\x6d\x4a\x7d\x31\x16\x6e\x0a\x92\xf3\xa2\xc2\xc3\x71\x06\x21\x66\x23\xa2\xc1\x74\xe8\x46\x23\xef\x25\x22\xb6\x83\xa7\xfb\x77\xd2\x92\x0c\xdc\x49\xa3\x31\xb7\x29\xfa\x6e\xe0\x86\x51\xa3\x47\xbb\xe8\x6e\x65\x41\x11\x21\xd5\x56\x21\x16\xc5\x9c\xd7\xee\xd6\x38\xf2\x04\x37\xb4\x60\xd7\xdb\x76\x83\xe1\xc6\xba\x8d\x77\xe0\x8a\x88\xb2\x4e\x04\xa0\x1d\x53\x1b\xca\xe8\x93\xb4\x68\x68\xb7\x7c\x09\x06\xd9\x2c\xe5\x4a\xcb\xda\xc1\xfb\xee\x0f\xce\x3d\xdf\x8d\xdc\xb1\xe3\x8d\x22\xec\xb1\xf0\xc7\xf7\x44\xee\x60\x13\x6a\xbc\xbd\x55\xde\x20\x57\x1c\xa2\xd6\x5a\x01\x15\xd7\x6c\x43\x3b\xf0\x4e\x27\xde\x24\x82\x78\xe7\xfe\xe2\x14\xaa\xe2\x16\x7f\x30\xaa\x68\x9e\x27\x36\xa1\x71\x2c\x2a\x10\x9c\xeb\x4d\x30\x6a\x62\x07\x93\x1a\xc2\x72\x09\x4d\x72\x5e\xa8\x56\x61\xcb\x3d\xf5\x82\xf0\x13\xf2\x11\x31\x2d\x75\xbc\xa0\x46\x02\x36\x47\xd2\xe6\x68\x9d\x75\x68\xd1\x8c\x06\xce\x2c\x1c\x9c\x39\x4d\xa0\x75\x47\x94\xd6\xaa\xdf\x00\xde\x5a\xb0\x42\x37\x95\x98\x26\x75\x43\x16\x8c\x26\x20\xf8\xeb\x59\x5e\xba\x3e\xe8\xaf\x3f\x7d\xfd\x06\x53\xdc\xee\x24\x04\x93\x72\xe7\x4a\x00\xc8\x81\x34\xc5\x34\xcb\x56\x4d\x89\x01\x84\xc9\x9c\x92\x59\xce\xdd\x9c\xdc\x3d\xf3\xf4\xae\x6d\x04\x95\x69\xf1\x6e\xb4\x9e\xaa\x35\xda\xfb\x84\x39\xef\x5b\x66\x74\xe6\x3a\x43\x74\x6a\xaf\xbb\xaf\xdc\xe7\xf0\xb0\x0b\x5e\xce\xb2\x2e\x60\x86\xdd\xe8\xc9\x48\x7b\x21\x6a\x93\x8c\x89\x07\x60\x03\x37\x61\xbd\x46\x23\xf3\x93\x69\x6d\xa6\xdb\xcb\x82\x70\x02\x8b\x99\x6f\xd7\x98\xdf\x54\xbd\x4b\x29\xae\x78\xc2\xe4\x26\xf8\xc9\x59\x2e\xe4\x0a\x9b\x38\x38\xc6\x40\x10\xd1\x00\x30\x56\xa6\x8b\x03\x3b\x91\x20\xb0\xc7\x71\x6b\x2c\x59\xcc\x79\xda\x98\x18\xb3\x43\xaa\x64\x31\x9a\xdb\x66\x8e\x67\xd6\x31\xe9\xd6\xef\x3d\xc3\x04\xc2\xa6\x9c\x0d\xe1\xae\x21\x42\x56\x4c\xe3\x40\x98\xfe\xd9\x9a\x51\x8c\x6a\x21\x5e\xaa\x61\xdb\x3b\x0c\x97\xea\xa7\xea\x1d\xbe\x81\x5c\x3e\x6b\x2a\x1a\x7d\x1d\x97\x36\x58\x9b\xfe\xb3\x27\x8f\x3e\xff\xc2\x6e\xec\x5d\x3f\xa7\x31\x95\xa2\xb0\x93\xcb\xfe\xbe\x5d\x0a\x91\x61\x1e\xbd\x7f\xb0\xbf\x6f\xf3\x24\x63\x91\xe6\x39\x13\x95\xee\x83\xa9\x6b\x16\x1c\xd5\xed\x5a\x75\x98\xd6\xcc\x7b\x1f\x94\xd6\xad\x6d\xe6\x09\xc8\xc7\x1c\x9d\xc0\x36\x84\xe6\x51\xc6\x97\x2c\x4a\x4d\x93\xd5\x6e\xc4\xcf\x0b\x62\x72\xa0\x10\x4f\xde\x1d\x2e\x00\x27\xa7\x03\x93\x55\xbd\xa2\x19\xbc\xa6\x58\x2c\x00\x97\x1a\x60\x60\x78\x31\x85\xe0\xd3\x41\xe4\x4d\x42\xd7\x7f\xe9\x8c\x48\x9f\x3c\x7a\xb2\xbf\x7f\x23\x35\x90\xf1\x79\x9d\x30\xbc\x41\x87\x36\x94\x4c\x8a\x60\xe4\x9d\xb8\x51\xe8\xe1\x62\x9e\x3e\x79\xbc\xa6\xd3\xde\x13\x78\x6d\x10\xf8\x27\x44\x8b\x25\x83\x30\x2c\xf0\x4f\x6e\x84\x12\x51\xac\xe4\xdc\xb2\x2e\x62\x1a\x2f\xd6\x29\x06\xfc\x42\x68\x42\x4b\xbd\x5b\x44\x8d\x5c\x1a\x19\xcd\x59\x8e\xe3\x3b\xe0\x67\x9d\x59\xb8\x2d\xa5\x27\x62\xf3\x62\x1d\x97\xef\xde\x2b\x08\x95\xd7\xfb\xf2\x64\xbf\x79\xd5\xcc\x64\x9a\x4b\xd6\x33\xd9\xad\x9a\x13\x62\xc1\xc6\xbb\x3d\xfb\xff\x25\x8f\xb5\x06\xe1\xf4\xcf\xc8\xbb\x4d\xea\xe3\xe0\xe0\xf0\xe0\xe0\x5d\x0d\xf8\x2d\xeb\x62\xa1\x75\xd9\x42\x13\x95\x39\x84\x8e\x83\xd5\xf3\xee\x40\x14\x5a\x8a\xac\xeb\x80\xef\xeb\x4e\x25\x4f\x01\x6d\x19\x8b\xb7\x05\x5c\xb1\x3d\x44\x40\x38\xa6\x10\x0c\x3b\x83\x81\x1b\x40\x18\x38\x09\xfd\xe9\x28\xc2\xb4\x54\x34\xf5\xbd\x53\x6f\x82\xd3\x1a\xe4\x95\xb3\x42\xef\xb4\x64\x49\x9d\x5d\x22\x9b\x71\x98\x72\x4d\xb1\x01\x2b\xfb\x86\x1c\x9f\xd1\xab\xf6\xab\xa2\xd8\xe4\x26\x1b\x78\xdd\x4e\xa7\xb4\xc6\xfe\x23\x67\xec\xc8\x2e\x52\x9f\x9a\xc6\x6b\x65\xf0\x1e\xff\x03\x32\x78\x92\x65\x8c\x2a\xd6\xfb\x75\x0e\xc9\xd8\x74\x7c\x7f\x57\x2a\xf6\x1f\x75\x6b\xbf\xbb\xf7\xdd\x5f\x63\x27\x1f\x1d\xfe\x9a\x5b\x79\xb0\x6f\x59\x17\xa0\x94\xb0\x7b\x81\xe9\xf1\x61\xa6\xa6\x61\x82\x14\xdc\xac\x79\x05\x88\x45\x54\xba\xac\x00\xc7\x25\x26\x92\xc2\x54\x7f\xc5\x54\xab\x75\x56\x14\xeb\xa8\x6e\x2e\x60\xb9\xbc\x48\xc1\x7e\x38\x93\xc0\x1b\xd8\xd8\x80\x36\xc4\x2a\xa1\x5f\x5d\xae\xea\xab\x93\xc1\xd3\xc3\xc3\xe6\xf3\x4b\x73\x71\xb4\x8f\x9f\x07\x07\x87\x8f\xd6\x17\xe6\xd1\xa3\x47\x8f\xbe\x58\x5f\x4c\x68\x21\x6c\xf2\x82\xeb\x78\xc1\x0a\x9b\x04\x9a\xe6\x65\xfd\x31\xe6\x59\xc6\xd7\xd7\xb1\x14\x68\xee\xf0\x2b\xbc\xd5\xab\x6d\x61\x0e\x5a\xd8\x4a\xab\x11\x7a\x29\x2a\xdd\x5e\xbf\x62\x0c\xbb\x3c\x9f\xed\xed\xa5\x22\xa3\x45\xda\x13\x32\xdd\x2b\x97\xe9\x1e\x6c\xdb\xde\xb7\xca\x65\xda\x8d\x45\xa1\x34\x2d\xb4\xc2\xa2\xea\xd8\x81\x50\xa8\xe6\xda\xb2\x2e\x4a\x1e\xeb\x4a\xae\x1d\xc1\xb6\x05\xc0\x80\x80\x5e\x51\x4d\xe5\x6e\x13\xe0\xbc\x74\x42\xc7\x8f\xce\x67\xd8\xee\xb4\x65\x10\xcc\x5b\x3b\xc9\xb6\x0a\x0f\xf7\x11\xf7\xdd\xd9\x34\xf0\xc2\xa9\xff\x26\xba\x7b\x1e\xa0\xd5\xdd\x4c\x36\x58\xf0\x82\x29\x56\xa3\xd6\x98\x9a\xfe\x0f\xda\xa4\x11\xcc\x40\xa2\x44\x25\x63\xb6\x29\xe7\xd4\x5b\x18\x17\xbd\x54\x9a\x21\xbd\x58\xe4\xf5\x1a\xf6\x7a\xd6\xa9\x5f\x33\x10\x4c\xcf\xfd\x01\xa6\x1d\xeb\x71\x77\xd4\x5c\xeb\xa7\xb6\x09\xb8\x8c\x5b\x68\x52\x54\x58\x03\x6f\x94\x15\x9b\x5d\x39\x04\x8b\x73\xac\x8d\xe5\xd8\x10\xd8\x04\x20\xcd\xbc\xf7\x06\x1f\x73\x96\x60\x4f\x6d\xd2\xac\x2e\x13\x62\x59\x95\xb0\x70\x45\x86\x93\xa0\x66\x2c\x16\x57\xeb\xc3\x6c\x55\xb7\xac\x63\x93\xac\x33\x31\xb8\xbd\x96\x28\xf5\x6c\x6f\xef\xfa\xfa\xba\x97\xf1\xcb\x66\x4b\x84\x4c\x51\xe1\x12\xa6\x9b\x78\x3d\xfc\x86\xe5\x21\xd7\x37\xd7\x07\x20\x02\x73\x41\xcd\x36\x99\x3c\x90\xba\xa4\x19\x4b\xd6\x20\xfb\xc4\x1d\xba\xbe\x13\xba\xc3\xe8\xc6\x1e\x58\x17\x4d\xa9\x6b\x37\x86\x5f\x50\x99\x98\x42\xe3\xa5\x64\x74\xb9\x29\xa5\xad\x49\x9f\x39\xfe\x30\xc2\x0a\xe2\x73\xdf\x75\x6e\x66\xe9\x9b\xd6\x97\x5a\x64\xce\xfd\x11\x51\xf1\x82\xe5\xbb\x2c\x2e\x55\x30\xd3\xb2\x6e\xbe\x32\x65\x69\x88\x65\xc7\x35\x87\x8d\x26\xd7\x49\x3a\x9b\x74\x52\xae\x3b\xe4\x01\x42\x84\x94\xeb\x67\x7b\x7b\x9d\x87\x35\xd6\xa1\x69\xc1\xd6\xcf\xcc\x37\x7c\xdc\xb3\xcc\x0f\x19\xa2\x73\x7f\x14\x05\x83\x33\x77\xdc\x2a\x4c\x65\x9f\x50\x79\xbd\x6c\x0a\xe6\x2c\xd9\x63\x09\xd7\x86\xef\x36\x8b\xdf\x58\x6f\x25\xa1\x68\x8a\xee\x75\xb3\x19\x3c\x2d\x44\xab\x4e\x49\xd5\xba\x04\x69\x9b\x0c\x66\x59\xe9\x4d\xc1\x16\x0b\x64\xdb\xb5\xda\x3b\xcb\xb4\xd6\x85\xca\xa9\xd4\xab\x12\xac\xd6\xdd\x69\xee\x60\x33\xe8\xf6\x21\x6f\xd2\xdd\x27\xbe\x33\x08\xeb\x39\xd1\x89\x0e\x9d\xe0\xcc\x5d\x7f\x1b\x39\xa1\xfb\x3a\xda\xbe\xe7\x4c\x4e\x47\xee\x30\xfa\xc1\xf9\x34\xdc\xdc\xb4\x2e\x30\x3f\xf0\x76\xb7\xca\x4b\x96\x56\x19\x95\xe4\x41\x21\x8a\x2e\x0e\x7c\x58\x1b\xa1\x4d\xc7\x9e\x90\x29\x2d\xf8\x8f\xeb\x1f\x6c\xb4\xd3\x0c\xe7\x23\xc7\x8f\xa6\xfe\xe9\xba\x13\xa5\x25\xed\xd7\xec\x72\x21\xc4\xf2\xed\x8d\x13\x6f\x20\x84\xc1\x02\xeb\x20\xb5\xce\xee\xad\x7f\x75\xd1\x81\x80\x07\x10\xbc\xca\x68\xbc\x84\x0b\xb4\x05\x32\x31\x97\x45\xaa\x69\xb6\xec\x98\x92\x5f\x50\xd7\x53\x6c\x82\x83\x6d\x52\x0f\x85\x0b\x33\x10\x1b\x82\x32\x8e\x4d\x65\x06\x2c\x6f\x01\xfa\xa1\x3b\xf2\x5e\xba\x3e\x46\x29\xd3\x73\x2c\x19\x1e\xdd\x48\x33\x20\xcc\xe0\x45\x53\x98\x59\x67\x3f\xf1\xe8\x30\x71\x1a\x8e\x82\xdb\xc9\xd3\x70\xab\x8f\x61\xc1\x15\x7a\x8f\xb6\x6f\xe4\x85\x01\x21\x25\x4d\x19\x60\xd3\x53\x6f\x72\x1a\x4d\xce\xc7\x35\x8e\x68\x7e\x7b\x90\x41\xbc\xa7\x79\x91\x2a\x20\x84\x35\x26\x88\xec\x2f\x32\x91\xee\xee\xcb\xa2\x59\x06\xc3\x8c\xdc\x6f\x37\x62\x65\x22\xdd\xeb\x10\x55\x5d\xb6\xfa\x25\xb7\x9b\x46\x07\xf5\x21\x80\x0f\x16\xa6\xd0\x59\x07\xfb\xf5\x79\x18\xdd\x6f\x8e\x04\x74\xf1\x5c\x31\xa3\x33\x26\x36\xad\x15\x33\xaf\x32\xcd\xcb\xa6\x6b\xa1\x81\x76\x35\x59\x1b\x99\xeb\x58\x75\x91\xb4\xbe\x6b\x1d\x93\xe7\xd5\x7c\xce\x64\xd3\xf1\x06\x36\x6d\x41\x8b\x82\x65\x36\x59\x32\x56\x12\xae\x41\x6b\x39\x2e\xc6\x74\xae\x93\x04\xdb\x11\x96\x85\xb8\x26\xd7\xd8\x4f\x0c\x0f\x7b\xd6\xf3\xf3\x93\x13\xd7\x8f\x46\xee\x04\xb7\x13\xc2\x23\xb7\x8e\x11\x43\x49\x63\x5c\x90\x57\xcc\x05\x7c\xbe\xa2\xb2\x80\x4f\x57\x4a\x21\xe1\xe2\x84\x6a\x9a\x75\xb6\xb7\xce\xbc\x65\x8d\xdc\x97\x2e\x84\x7f\xf8\xd5\x6a\x42\xc0\x66\xb7\x6a\x6f\x51\x64\x2b\x3c\x9f\x5e\x7d\x1f\xce\x69\x80\x15\x1c\x8d\xfd\x04\x58\xa7\x5b\x30\x89\xbf\x48\xaa\x29\xae\x69\xe1\xce\xdc\x24\x04\x37\x3f\x89\xca\xce\x46\x27\x93\x29\x33\x15\x4a\x22\x85\x86\xf3\x79\xa0\xae\x01\xe8\xa1\x29\x6e\xb0\x65\x9d\x68\x55\x0f\xb1\xb4\x17\xf9\xd3\xd0\xa4\xf4\x6f\xb7\xc8\x2b\x96\x22\x1f\x6b\x39\x23\x09\xe5\xd8\x5f\xed\x78\xa3\x37\xb7\xde\xbc\x05\xc0\xd5\x82\xcf\xd1\x28\x98\x66\x23\xa4\xb1\xb5\xdf\x87\x4f\xeb\xbe\xb7\x03\xf2\xbd\xef\xc1\x37\xec\x59\x6c\xe3\xf4\x28\x38\xf3\x4e\xb0\x6f\xfa\xe9\x9d\x68\x3d\xc3\xbe\xa7\xed\x69\x9a\xdc\xc4\xa4\x46\xec\xf8\x5f\x53\xf2\x7a\x5f\x72\x89\x90\x7c\xd5\x68\x9b\x71\x54\x0f\x12\x96\x31\xcd\x08\x9d\x6b\x4c\xec\xbf\xc7\x21\x0f\x0d\xad\x75\xd9\x79\x5d\xe5\x37\x9a\x72\xe3\x0c\xf1\xee\xa7\x1e\xa2\x31\xa1\xe0\xcb\x2d\x6c\x7c\xb7\x0c\x8d\x5a\xef\x7e\x6d\x2a\x66\x99\xeb\x84\xa5\xc1\x3c\x09\x57\x65\x46\x57\xa6\x74\xdd\x4e\x25\x9a\x2a\x5b\x9d\x86\xd9\xae\xa2\xd6\xfc\xbc\x17\x32\x7f\xbb\xc9\xd6\xe3\x5e\xa1\x80\x71\x51\x58\x37\xa5\xc0\x37\x92\x67\x5a\x69\x12\xba\xaa\x07\x44\x28\x33\xb7\x86\x89\x22\x6e\xe0\x35\x48\x0c\x7b\x1f\x63\x6d\x80\xbc\x27\xe3\xe7\xed\x60\xcd\x28\xf7\xb8\x3e\x7b\x3c\x39\x2d\x8c\xb9\x30\xc6\xd2\x08\x68\xfb\xa4\x20\x8c\x88\xa5\x49\x79\xd6\x9c\x37\xbf\x09\x84\xdb\x44\x53\xb5\xc4\x20\x8f\x8b\xc4\xe4\x97\x77\xc4\xb5\x7e\x55\xb4\x47\x1b\x7c\x28\x52\x65\x9a\x84\x94\xf9\x79\xe0\xad\xde\x6c\xb0\x97\xf8\xf3\x1e\x92\x63\x0f\x99\x32\x9c\xf4\xcc\x6f\x7e\xa2\xfa\xe6\x5b\x0b\x60\xd3\xf0\x1c\xab\x63\xdf\x37\x1b\x76\xb0\x8f\x35\x31\x7f\x13\x8a\x2c\x18\xcd\xf4\xc2\xf4\xb3\xd7\x64\x20\xb8\x88\xcc\xfd\x08\xef\xef\xa2\x74\xf8\x78\x61\x6d\x1c\xde\x93\x7d\x08\x43\x1c\x99\x56\x9b\x70\x1e\xcd\x79\x91\x90\xef\xa4\x5c\x93\xb9\x8a\x97\xdf\x69\x0c\x78\xb7\x5b\x15\x12\xdc\x16\xee\x5a\xb7\xab\x69\xaa\x3a\xd6\x31\xa2\x70\x8c\xfe\x44\xb1\x8e\xef\xb8\xee\xaa\x38\xc7\xc0\x24\x11\xb1\xc2\x1b\x40\x6c\xef\xa0\xf7\x79\xef\xc8\x72\xfc\xd3\xc0\xd8\xbd\x01\x76\xe4\xb7\x82\x2c\xfc\xf9\x8f\xd2\x3c\x6e\xb6\x07\xd7\x12\xe1\xea\xe0\x99\x7a\x7b\x73\x77\xf1\x50\x76\x2f\x15\x26\xc8\x18\x2d\xaa\x72\x2b\x8e\x93\xf1\x82\x5f\x31\xd5\xde\xb8\xfa\x5e\x14\x9b\xe1\xb7\x26\x31\x47\xb8\x7b\x96\x63\x12\xf2\x9c\x6d\x8a\x69\xeb\x1f\x1a\xf0\x79\x33\x57\x0b\xde\xe2\x0c\x2c\xb1\xa6\xa3\x21\xa0\x8f\x33\x07\xdc\x14\x32\x7b\x91\x72\xcc\xbd\x0c\x0d\x4c\x53\x64\xc1\xd3\x45\xc6\xd3\x85\xe9\x6e\xc7\xdf\xec\xc0\xd1\x48\x96\x8b\x2b\xd3\xc5\x5c\xa4\x4c\xad\xb1\xd9\xd0\x3b\x39\x89\xce\xbc\xd3\xb3\x91\x77\x7a\xd6\x2e\x82\x8e\xe9\xfb\x5b\x79\x0c\xb5\x10\xd7\x08\x44\x12\x3e\x9f\x93\x2b\xce\xae\x51\x4d\x4e\xbd\xd0\xd0\xd9\xe4\x35\xf6\x6f\x51\x30\xb6\xb5\x89\x2b\x80\xb7\xb6\x95\xbd\x87\x68\xdb\xf4\xde\xa2\x1a\x2f\xa8\xa4\x31\xd6\x46\x91\x64\xd6\xee\x94\xbf\x9f\x26\xb6\x70\x3b\x83\xd0\xb4\xee\x1f\x1a\xea\xf7\xc8\x75\x1a\xb7\xa4\x9a\xa6\x29\xfe\xa8\xeb\x0a\x84\x1a\x1c\xe6\xdf\x47\xa8\xd3\xb8\x16\xe9\xd3\x41\xb4\x91\xea\xe9\xba\x8f\xe0\x36\xf2\xc4\x63\xee\xd5\xf7\xdf\x5a\xa6\x89\xd8\x45\x6d\xdc\xb7\xc6\x9e\xef\x4f\x7d\xf3\x1b\x54\x6b\x30\x9a\x4e\xdc\xfa\x7a\x76\x3e\x1a\xd5\x97\xa7\x03\x93\x83\xb6\x2e\x8c\xc9\x58\xb7\xde\x35\x2e\xb4\x95\xbe\x5e\x88\xaa\x2e\x88\x61\x47\x2f\x98\x39\x63\x6e\x10\x00\x9f\x38\xe7\xa3\xb0\x9d\xf1\x7f\x0a\x81\x43\xc9\xdf\xde\x3a\x1b\xae\x59\xae\x4c\xd8\x6c\x7e\x1d\x63\x22\x65\x8a\x08\x16\xcf\xc3\xfc\x96\x3d\x70\x23\x2f\x74\xc7\x98\x5b\x04\x0e\x2b\xa4\x35\xd9\xdd\xf3\xbe\x8e\x50\x41\x16\xcd\x19\x8b\x02\x3d\x71\x06\x3b\x8f\xa4\xdd\xd7\xb3\xd1\xd4\x77\xa3\x2d\x8c\x7c\xb8\xbf\x45\x94\x2b\x55\xdd\x4d\x0e\xc9\x78\x41\x70\x7e\x83\xc8\xc1\x36\x91\x06\x41\x80\x9c\x70\xad\x6e\x10\xc1\x42\x3b\xd7\x2b\x32\x67\x2c\xb1\x4e\x5c\x77\x88\x0d\x94\xa6\x01\xb9\x26\x78\xd4\xe4\xf1\x80\x5c\x47\x43\x14\xde\x8d\x45\x26\x64\x87\xe4\x4c\x53\xa2\x69\x6a\x9b\xc2\xe1\xe5\x8a\x38\x45\x22\x05\x4f\xc8\x6f\xf6\xc9\x11\xfe\x3c\xc6\x01\x65\x34\x55\x79\x7c\x89\x64\x7c\xc9\x48\xa7\x10\x45\xdd\x67\xd8\xf4\x1f\x9a\x53\x30\x45\xe1\xd6\xa9\x2b\xbd\x42\x18\x3d\x6e\xf2\x70\xcf\xd6\xa9\x91\x84\x5d\xb1\x4c\x94\x10\x3b\xa4\x42\xa4\xa6\xff\x66\xef\x9a\x5d\xee\xd5\xb2\xb0\x77\xb8\x7f\xf0\x78\xef\xe0\x60\x2f\x30\x4d\x0c\xdd\xb9\x90\xdd\xd6\x02\xba\xbc\xe8\x0e\x16\x52\xe4\xac\xfb\xe8\x0b\x7c\x58\xb3\x6f\x85\x10\xe1\x47\x83\xe9\x68\xea\x47\x63\x37\x74\xa2\xd0\x39\x25\x7d\xf2\xee\x5b\xf3\xf9\xd1\xa3\xc7\x8f\xde\xd5\x82\x84\x6e\x9c\x17\xe4\x72\xa5\x0d\x28\x33\x36\xe8\x26\x06\x79\xd0\x42\x81\x4f\xc7\xcf\x1f\x1a\xc7\xed\x05\xb3\x91\x63\x1a\x46\x1a\xc7\xff\xf4\xd1\xd3\xa7\x4f\xf6\x9f\xa2\x80\xf5\xd6\x91\xee\xe6\x30\xeb\xe8\xf2\x1e\x81\x00\x74\xb3\x2d\x0f\x47\xfb\xb7\x25\xf5\x5e\x12\xbe\x3b\x9b\xde\x4b\x02\xf0\x54\xfc\x0d\x82\x39\x99\x86\xde\xe0\xa6\x78\x1f\x6d\x91\x69\x47\xe2\xf7\xd2\x82\x98\xfc\x26\x3f\xb8\x43\x4d\x0d\xf9\x1f\xb6\xba\x83\x6d\xb6\x0a\x76\xad\x50\x1d\xbe\x61\x81\xee\xab\x20\x42\x85\xb9\x4f\x85\x1b\xad\xbb\x8f\x52\xd3\xed\xbf\x45\xe7\x11\x2c\xb1\x04\xd1\xd4\x0b\x56\xdd\x91\x80\x99\xad\x9f\x83\x26\x4a\x1e\xef\x2a\x56\xdc\x7e\x0d\x0b\xfe\xcf\xa9\xe2\x31\x71\xb6\x5b\x19\xb0\xf8\x25\x34\x8b\x75\x43\xb0\x2e\xa0\xd6\x49\xbb\xe7\x4e\xe0\x0d\xb0\xc6\x7f\x23\x2d\xb0\xd5\x2f\x70\x27\xfd\x9e\xb5\x21\xd0\xea\x1f\x5d\xe7\xa7\xeb\x16\x9d\x4f\xa7\xb1\xdd\xfd\xe6\xae\xf3\x60\x39\x2d\x4b\x6c\x67\x11\x2d\xac\x11\x67\x54\x01\x2e\x44\xff\xd8\xd3\x22\xcf\xfa\xbc\xe0\xd6\xc5\x7a\x44\xaf\x7e\xed\xad\x65\x5d\xf0\x83\xa7\xc5\x5b\x6b\xe4\x4c\xc0\xf5\x11\x56\x74\xcf\x03\xfb\xc7\x8b\xee\x60\x02\x7f\xcf\x5e\xc0\xdf\xf0\x95\x9d\xb0\xee\xd0\xb5\xe7\xb2\x7b\xe2\xdb\x45\xd6\x9d\x8c\xec\xec\xaa\x3b\x7a\x69\xcb\xaa\xeb\x9f\xdb\x3f\xa4\xdd\xdf\x9a\xd9\x4c\x75\xdd\xc0\x2e\x75\xf7\xb9\x6f\x97\x59\x77\x36\xb2\x2f\xd3\xee\xf3\x53\x9b\xeb\xae\x17\xda\x73\xde\x3d\xf1\x6c\x2d\xbb\xa1\x6f\xc7\xaa\x3b\xf8\xd2\x56\xb2\x1b\xcc\x6c\x75\xd5\x0d\x5c\x7b\x29\xba\x2f\x7c\x3b\xcd\x80\x42\xb5\xec\x9e\x3b\x36\x2b\xba\xa7\xcf\xed\x45\xd5\x3d\x3b\xb7\xd5\xb2\x1b\xbc\xb0\x79\xd2\xf5\x86\xf6\x9c\x76\x3d\xdf\xbe\xe2\xdd\x97\x13\x98\x6b\x16\x62\x67\x38\xf0\xee\x16\x69\xc6\xd5\xc2\xfe\xd5\x7f\xf9\xc9\x5f\xff\xc5\xbf\xfa\xeb\x9f\xfd\xe9\x2f\x7f\xff\x77\xed\x5f\xfd\xf9\x57\x7f\xfb\x9f\xfe\xb5\xf9\xf2\x77\xbf\xf8\x67\x7f\xfb\x1f\xff\xed\x2f\x7f\xf6\x5f\xff\xee\x17\xff\xfc\xe6\x83\xbf\xf9\xdd\x9f\xff\xea\xab\x7f\x0f\x0f\x86\xac\xd2\x2a\x5e\xd8\x73\x49\x8b\xaf\xff\x98\x72\x65\x4f\x58\xc2\x64\x46\x8b\x44\xd9\x19\xd5\x57\x9c\xfd\xd5\x1f\x55\xf6\xc7\x9f\x7c\xfc\x9d\x8f\x5f\x7d\xfc\xea\xc3\xcf\x3f\xfc\xec\xc3\x9f\xdb\xbf\xfc\x83\xff\xf0\xcb\x3f\xfc\xcf\x7f\xf3\x27\xff\xce\x66\xaa\xa4\x5f\xff\x99\xc8\x6c\x30\xc4\x55\x5a\x7d\xfd\x27\x8a\x24\x82\x3c\x97\x54\x71\xb8\x99\xa9\x25\xb7\x3f\xfc\xd9\xc7\x7f\xf1\xe1\x7f\x7e\xf8\x6f\x1f\x7e\xfa\xf1\x27\x86\x86\xcd\x35\xcd\x38\x2d\x84\xad\x2a\x91\x73\x3b\xfc\xfa\x17\x72\xf9\xf5\x1f\x33\xfb\x2f\x7f\x8f\xfd\xd5\x1f\x69\x5e\x50\xfb\xe3\x57\x1f\x7f\xf2\xe1\x7f\xd5\xc3\xd5\x15\x2b\xd4\x92\xda\xff\xf7\xdf\xfc\xe1\xff\xfe\x1f\x7f\xfa\x7f\x7e\xff\xbf\xdb\x29\xcd\x58\x2a\xec\x8f\xbf\xf3\xe1\xe7\x1f\x7f\xf2\xe1\xa7\x1f\xff\xe0\xc3\x5f\x7c\xfc\xea\xe3\xbf\xfc\xf0\xf3\x0f\x3f\xb5\xeb\xbd\x21\x0f\xce\x0b\x4c\xc9\xbe\xe0\x45\x9a\x88\xfc\xa1\x3d\xa6\xe9\x8a\x4a\x3b\xc8\xc4\x15\x2b\xfe\xf2\xf7\x60\x1a\xaf\x48\x44\xc1\x14\xa7\x85\x3d\x63\x12\x3f\x5f\x72\x86\x0d\x91\x8a\xd9\xb3\xf5\xaa\x2c\x93\x3f\x32\x62\x0c\x6e\x08\x20\x51\xc9\xe3\x25\x93\x46\xac\x7a\x70\x33\xa3\x20\x67\x28\x57\x28\x5f\x16\x0a\x17\xe9\x93\x1f\x2f\x2c\x94\x30\xbc\xec\x86\xaf\x2c\xfc\xbb\xfe\x86\x12\x87\xff\x3a\x8b\x85\x62\x07\x7a\x28\x2d\x94\x3d\xd2\x27\x45\x66\xa1\x00\x92\x3e\xc9\xae\x2c\x94\x42\xd2\x27\xb2\xb2\x50\x14\x49\x9f\xfc\x90\x5a\x28\x8f\x30\xa7\xb2\x50\x28\x49\x9f\xe0\xa7\x85\xc2\x09\xdf\x32\x0b\x25\x94\xf4\xc9\x65\x6a\xa1\x98\x92\x3e\xe1\xda\x42\x59\x85\x09\xb9\x85\x02\x8b\x36\xc6\x42\xa9\x25\x7d\x82\x9f\x16\x4a\x2f\xe9\x13\x25\x2d\x14\x61\xb8\xbc\xb2\x50\x8e\x49\x9f\x2c\x85\x85\xc2\x4c\xfa\x24\xcd\x2c\x94\x68\xd2\x27\xd5\xd2\x42\xb1\x36\x8a\x76\xfa\xdc\x42\xf1\x26\x7d\xb2\xa8\x2c\x94\x71\x20\xb2\xb4\x50\xd0\x81\x93\xc4\x42\x69\x47\x13\x64\xa1\xc8\x93\x3e\xb9\xe2\x16\xca\x3d\x2e\xc7\xb2\x2e\xf0\x9f\xda\x79\x6b\x05\x67\xd3\x57\xd1\xc9\x74\x1a\xba\x7e\x84\xc1\xbe\x37\x39\x6d\xd9\xae\x00\x7f\x60\xc0\xeb\x7f\x3b\xa8\xfe\xb7\x06\x08\x7b\xcf\xe2\xaa\x49\x68\x9a\x4a\x9f\xd0\x4c\x6e\x11\x0b\xdd\xf1\x6c\x04\xa1\x3e\x56\xc3\xea\x96\x10\x34\xb9\xff\x2f\x00\x00\xff\xff\xb4\x99\x41\x23\x44\x49\x00\x00" +var _confAppIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7c\xdb\x8f\xe4\xca\x79\xdf\x3b\xff\x8a\x3a\x2d\x2b\x9a\x11\xd8\x3d\x97\x3d\xbb\x67\xcf\xae\xda\x10\xb7\x9b\x33\x43\x6f\xdf\x44\x72\xf6\x72\x06\x0b\x9e\x1a\xb2\x9a\x5d\x1a\x76\x15\x55\x55\x9c\xd9\x16\x02\x43\x07\x7e\x70\x12\xc4\x4f\x49\x6c\x04\x30\x02\x18\x41\x62\xc0\x89\x13\x19\x49\x00\x59\x91\x91\x07\xd9\xef\xbb\xff\x83\x21\xd9\x41\x02\xff\x0b\xc1\xf7\x15\xd9\xcd\x9e\xe9\x19\x1d\xcb\x08\x7c\x0e\xb0\xcd\x4b\xd5\x57\xb7\xef\xf2\xfb\x2e\x9c\x6f\x90\x4f\x3e\xf9\x84\x4c\xfc\x57\x7e\x48\xf0\x9f\xf1\x74\x18\x9c\xbc\x25\xf1\x59\x10\x91\x93\x60\xe4\xc3\x7b\xc7\xb6\x9a\x8d\x7c\x2f\xf2\xc9\xd8\x7b\xe9\x93\xc1\x99\x37\x39\xf5\x23\x32\x9d\x90\xc1\x34\x0c\xfd\x68\x36\x9d\x0c\x83\xc9\x29\x19\x9c\x47\xf1\x74\x4c\x06\xd3\xc9\x49\x70\x7a\x9b\x42\x70\x42\xde\x4e\xcf\x89\x17\xfa\x64\xe6\x0d\x5e\x7a\xa7\xd0\x63\x16\x4e\x5f\x05\x43\x3f\x74\xb7\x06\x98\xbe\x06\xca\xb3\xb7\x64\x7a\x42\x82\x18\x69\x38\xcf\x49\xbc\x60\xe4\x52\x51\x91\x11\x41\x97\x8c\xc8\x39\x31\x0b\x46\x68\x59\x16\x3c\xa5\x86\x4b\xe1\x92\x94\x0a\x72\xc9\xc8\x4a\x56\x8a\xa4\x72\x59\x52\xb1\x22\x52\x11\xc3\xe8\x12\x3b\xf5\x9c\x17\xa1\x37\x19\x26\x13\x6f\xec\x93\x3e\x39\x95\xb9\xae\x09\xeb\x95\x36\x6c\x49\x2a\xcd\x14\xb9\x59\x48\xa2\x17\xb2\x2a\x32\x20\xa6\x2a\x21\xb8\xc8\x6f\x0f\xa6\x7b\x24\x30\x64\x41\x35\x11\x92\xb0\xf9\x9c\xa5\x86\x48\x41\x5e\x73\x91\xc9\x1b\xed\x3a\xcf\x89\x34\x0b\xa6\x6e\xb8\x66\x2e\xe1\xa6\x21\xb8\xa4\x26\x5d\x20\xad\x6b\x5a\x54\xb8\x8a\xdf\x38\x8f\xfc\x90\x30\x71\xcd\x95\x14\x4b\x26\x0c\xb9\xa6\x8a\xd3\xcb\x82\xf5\x9c\xf0\x7c\x92\xe0\xeb\x3e\xc9\xb9\xa9\xe7\xda\xcc\x68\x29\xb3\x07\xb7\x81\x71\x98\x01\xe9\x64\xec\xba\xe3\x92\x4e\xa9\x64\xd6\x81\xed\xe8\x18\xa6\x4d\xc7\x12\x1f\x4f\x87\xb0\x13\x19\xbb\x76\x9c\x0b\xcd\xd4\x35\x53\xef\xea\x61\xca\xea\xb2\xe0\x69\x77\x4e\x53\x18\xec\x3c\x1c\x91\x39\xec\xe5\xf6\x60\x3d\xc7\x7f\x13\xfb\xe1\xc4\x1b\x25\xd0\xa2\x4f\xbe\xb9\x37\x0b\xa7\xf1\x74\x30\x1d\xed\xeb\x67\x07\x07\xdf\xdc\x1b\x4e\xc7\x5e\x30\xd9\xd7\xcf\xbe\xb9\x77\x16\xc7\xb3\x64\x36\x0d\xe3\x7d\x7d\xb0\x73\x90\x4c\x2e\x29\x17\xf6\x7c\x77\x0e\x66\x89\x91\x3e\x29\x64\x4a\x8b\x85\xd4\xcd\x9e\x94\x4a\x1a\x99\xca\x82\x98\x05\x35\x84\x6b\x38\xc9\x8c\x18\x49\x70\x4d\x24\xe3\x0a\x0e\xc8\x28\x3a\x9f\xf3\x14\x9e\xdf\x21\xfd\x9c\x0c\x2a\xa5\x98\x30\xc5\x8a\xe8\xaa\x2c\xa5\x32\x9a\x74\x16\xc6\x94\xb0\x79\xf0\xab\xe1\x62\x9e\xe6\xbc\x43\x80\x0b\x3b\x95\xe0\xef\x3b\x3d\xa7\x59\x2f\xe9\x13\x68\x55\x4f\x88\x66\x99\x62\x5a\xc3\x50\x97\x8c\x14\x5c\x1b\x26\x58\x46\x2e\x57\x77\x47\xc6\x6d\xf1\x86\x43\x38\xe5\xc3\x1e\xfe\xdf\xac\x4a\x2a\x43\x44\xb5\xbc\x64\xea\x6b\x13\x82\xfd\x25\x7d\xf2\xe8\xf0\x10\xa8\x9c\x32\xc1\x14\x35\x8c\x68\xc3\x4a\xfd\xcc\x79\x4e\x7e\x83\xf4\x0e\x72\x99\x6b\x92\x32\x65\x48\x37\xa5\x7d\xa3\x2a\x46\xba\x59\xa5\x90\x4c\xff\xe9\x67\x4f\x0e\x17\x87\xcb\x43\x4d\xba\xb0\xc1\xfd\xe5\x0a\x7e\x7a\xec\x3d\x5d\x96\x05\xeb\xa5\x72\xe9\x3c\x77\x9e\x93\xa9\x22\x73\x25\x97\x84\x92\x5e\x39\x7f\x4f\xe6\xbc\x60\x84\xbd\x87\x19\xb3\xcc\xbe\x81\xf9\xd5\xf2\x80\x83\xf1\x39\xcc\x14\xa6\x22\x15\x23\x7b\x99\x74\x9e\x13\x21\x0d\x9c\x74\xce\x0c\x2c\xd0\xf6\xc7\x8e\xa5\xe2\xd7\xd0\xf8\x8a\xad\xf6\xed\xb4\x65\xc9\x84\xd6\x05\x29\xaf\x52\x7d\x74\x4c\xba\x5c\x20\x55\x1c\xbd\x2b\x2b\x53\xdf\xb1\x25\xe9\x0a\x79\xc5\x56\xfa\xeb\xf5\xba\x62\xab\xa6\x13\xbc\xd0\x70\x91\x31\xed\x0c\xfc\x30\x4e\x50\x87\xf5\x49\x5a\x69\x23\x97\x07\xc8\x04\x07\xcd\x30\xce\x4b\xff\xed\xce\x06\x35\xc5\xfa\x0c\x97\x5c\xf0\x65\xb5\x24\xb4\x28\xe4\x0d\xcb\x48\x3c\x8a\xc8\x35\x53\xda\x4a\xea\x0e\x96\x8b\x47\xd1\xd1\x21\xb0\x1a\x5c\x1c\x35\x17\xc7\x1d\xd7\x72\x1d\xdc\x3c\xea\xf4\x9c\x78\x14\x25\xe3\x60\x92\xbc\xf2\xc3\x28\x98\x82\x4c\x60\x33\xe7\x39\x39\x81\xa3\x28\x99\x5a\x72\x0d\xa3\x90\x9b\x05\x13\xb5\x1c\x34\x02\x70\xcd\x29\x39\x17\xfc\x7d\x23\x71\x5a\xa6\x57\xcc\xf4\x9c\xf3\x49\xf0\x26\x89\xa6\x83\x97\x7e\x9c\xcc\xfc\x70\x1c\x44\x35\xed\x27\x4f\x9e\x38\xcf\xc9\x08\xa4\x8e\xec\x0d\xc7\x5f\xec\xaf\x15\xc2\x8d\x54\x57\x4c\x69\xb2\xc7\x7a\x79\x8f\x44\xd1\x19\xa9\xca\x8c\x1a\xb6\x4f\x68\x9a\x32\xad\x41\xae\x6f\xd8\x25\x4e\x80\xa7\x0c\x04\x2d\x10\x64\x29\xb5\x21\x29\xd5\x4c\x83\xb6\x26\x99\x44\x4e\x10\xcc\x0a\x6d\xba\xa0\x22\x67\xc8\x07\x19\x9b\xd3\xaa\x30\x56\x5d\x42\x67\xaf\x30\x4c\x81\x46\x95\xa2\x58\x11\x3e\xb7\xda\x1e\xc6\xb5\xea\x8b\xc0\xf1\x81\x06\x00\x82\x40\x41\x83\x36\xa1\x9a\x80\x74\xe0\xcb\x9e\x33\x9a\x0e\xbc\x51\x12\x4e\xa7\xf1\x7d\x5a\x6b\x2d\x93\x77\x15\x97\xf3\x9c\xbc\x5e\x30\x54\xad\x46\x92\x8c\x6b\x50\xd5\xa4\xc2\x85\x0e\x86\x13\xdc\x14\x6d\xa8\xe1\x29\x0a\x85\x26\x8a\xe5\x54\x65\x05\xd3\xba\xe7\x4c\x4f\x4e\x46\xc1\xc4\x6f\xf4\xee\x9c\x16\x9a\xed\x26\x58\xc8\x3c\x07\x92\x5c\x10\x25\x2b\xc3\x54\xcf\x19\x06\x91\xf7\x62\xe4\x27\xe1\xf4\x3c\xf6\xc3\x64\x34\x3d\x25\x7d\x02\xd2\xbb\x4d\x81\x09\x24\xd0\x52\x0d\xa4\x60\xd7\xac\x20\xa7\x5f\x04\x33\xb4\x8b\xa0\x99\xac\xf2\x9e\x20\x41\x7c\xd1\xcc\xa6\xd1\x3d\xd4\x2c\xea\xb5\x48\x05\x13\x69\xd3\xd3\x25\x4b\x41\x9c\x49\x46\x0d\xed\x39\xde\x6c\x96\x0c\xbd\xd8\x4b\x66\x5e\x7c\x06\xe6\x84\x1a\xba\x73\x4e\x46\x92\x42\xd2\x8c\x50\xad\x99\xd1\x64\x8f\xf7\x58\x8f\x74\x52\x29\xe6\xc0\xe7\x86\x2d\xcb\x82\x1a\x86\x8a\xd6\x5a\x86\xce\xbe\xd5\x25\x19\xd7\x57\x84\x0b\x6d\x18\xcd\xc0\xe6\xb1\xe5\x25\xcb\x32\xd0\x83\x5c\xd8\x39\x8c\xa6\xde\x30\xf1\xa2\xc8\x8f\xa3\xe4\x24\x9c\x8e\x93\x61\x10\xbd\xbc\xbd\xa8\x82\x8a\x0c\xd6\x52\xd2\x9c\xad\x39\x98\x0a\x29\x56\x4b\x59\xa1\xd1\x50\xda\x6d\x99\xe7\xda\x6a\x03\x2b\x71\x91\x16\x55\x06\x5b\xad\xab\x4b\xdc\x9c\xc6\xd4\x2c\xa8\xc8\x8a\x8d\x4a\x56\x0c\xc4\x1b\x4d\xd2\xfb\x55\xcf\x19\x79\x08\x8e\x6a\x46\xbb\x8f\x7d\x80\x7f\xad\xbc\xec\x30\x4e\x84\x09\xc3\x15\x2b\x56\x1b\x16\x80\xf6\x1b\xf6\x81\xa5\xb5\x6d\xa7\xb5\x15\xa0\x4d\xc1\x0a\x72\x81\xe4\xd3\x42\x0a\x5c\x74\xcf\x89\xa2\xb3\x64\x6d\x4a\x37\x26\xfa\x5e\xab\xf3\x30\xa5\xda\xe2\x1c\x1f\xb7\x39\x47\xce\xb1\xa9\x92\xd2\xd4\xd6\x57\xaa\x95\xbb\x16\x67\xae\x49\xe7\x37\xce\xa6\x63\xff\xa0\xa7\xf5\xa2\x63\x09\xa1\x40\x5a\x16\x6a\x93\x02\x2b\xae\x17\xdd\x2b\xb6\xca\x99\xd8\x26\xb1\x79\x6e\x6d\x72\xc1\x00\x69\xb1\xa2\x20\x73\x2e\x32\x02\xfa\xfd\x66\xc1\xd3\x05\x81\x09\x83\x62\xa1\x45\x61\xc7\x7a\xe9\xbf\x3d\xf5\x27\x0d\xc3\x6e\xe8\x34\xbb\xd9\x4c\x19\x7b\x29\x06\xa6\x08\xd8\x53\x2a\xaa\x56\xb5\x5c\xa3\x5e\x05\x2c\x45\x68\x8d\x63\xc0\x98\xd4\x9a\xa0\x35\x63\xe7\x79\x7b\xce\x66\x83\x36\x37\x04\xd7\xc3\xad\x27\x97\xc4\x7e\xd4\xda\x8c\x16\xcb\xa4\x0b\x96\x5e\xad\xcd\x4a\x6b\x60\xcd\x7f\xc8\xc8\x0d\x37\x0b\x92\x4a\xa5\x98\x2e\xa5\x65\x76\xb3\x2a\x59\xcf\x19\x07\x93\x60\x7c\x3e\x46\xda\x51\xf0\x85\x9f\x0c\xce\xfc\xc1\xcb\xdd\x3a\x48\xb1\x1b\xc5\x0d\x23\x9d\xdf\xc6\xe3\x39\xa0\x95\x59\x48\xc5\x7f\xc8\xb2\x04\x0c\x6b\xc7\x5a\x7b\x6a\x40\xcf\x29\xe3\x12\x9e\x0b\xa9\x58\x66\x77\xa4\xd2\x8c\x5c\x56\xbc\x30\x35\xb7\x58\xb5\xdc\x73\x42\xff\x75\x18\xc4\x7e\xe2\x9d\xc7\x67\xd3\x30\xf8\xc2\x1f\xc2\x5c\xa2\xc4\x8b\x93\x28\xf6\x90\x85\x76\x4c\x05\x47\x20\x74\x27\x45\xec\x06\xa2\x90\x44\x7e\xf8\x0a\x51\x72\x5b\x22\x04\x33\x60\x9c\x08\x17\x86\xa9\x39\x4d\x2d\xa6\xbc\x4b\x08\xb5\x12\xe2\x2a\x02\x3a\x11\xe8\x8d\x82\x28\xf6\x27\xc9\xd9\x34\x8a\x1f\x04\x65\x7f\x5f\x82\xb5\xa8\x7c\x73\xaf\x91\x9b\xb5\xd0\x41\x7b\x10\x1a\x50\x02\x25\x40\xa8\x94\x97\x0b\xb0\xab\x30\x44\x2a\x85\x60\x29\xba\x1d\x28\x91\xbb\xf6\x62\xbd\x0b\xc9\x20\x98\x9d\xf9\x61\x44\xfa\x84\x32\x7d\x74\xfc\xb4\x9b\x1a\xe5\xe2\xf5\xe7\xc7\xeb\xeb\xe3\xc7\x4f\x36\xcf\x8f\x9f\x76\xf3\x74\xf9\x5d\x8b\x95\x16\x00\xf1\x5c\x42\x55\x3a\x97\x95\x3a\x7e\xfc\x64\x7d\x7d\x74\xfc\x14\xd4\xd7\x90\xcd\xb9\x60\x6b\x40\x43\x8b\x5c\x2a\x6e\x16\x4b\x8d\x22\x68\x16\x8c\xab\x35\x7b\x02\x5f\x16\x4c\xe4\x66\x41\xf6\x80\x31\xba\x47\x6d\xad\x47\x91\x37\xf7\x7b\xce\x05\x0c\x5b\xf7\x01\x16\x4b\x80\x97\xf5\x3b\xc7\x1f\x1e\x3f\x7e\x7c\xf4\x39\x68\x97\xc7\x4f\x1c\x7f\x30\x8c\x3c\x42\xea\xbb\x10\xaf\xf1\xee\xf0\xd3\xa7\xce\x70\x7d\x7b\x74\x78\xfc\xa9\xe3\x5c\x28\x56\x4a\xcd\x41\xa8\x1a\x8f\x06\x95\xd1\x1d\xbb\xb6\xa4\x82\xe6\x2c\x23\xeb\xf6\x9c\xe9\x6d\x2d\xf3\xdb\x08\x98\xbb\xed\x06\x1d\x07\x94\xd5\x5a\x4f\xe9\x54\xf1\xd2\xe0\x6a\x1a\x1e\x68\x00\x9d\x4b\xb4\x5c\x32\xc3\x97\x4c\x93\xb4\x71\x2a\x3b\x56\xe7\x0d\xc2\x60\x16\x27\xf1\xdb\x19\x60\x81\x4b\xaa\x17\x76\x77\x71\x60\x6f\x12\x05\x00\x84\x94\x66\xa6\x36\x53\xa4\x12\x8a\xa5\x32\x17\x20\x89\xcd\xbb\x9e\x03\x2d\x93\xc1\x99\x17\x46\x7e\x7c\x5b\x59\xcc\xa5\x4a\x19\x01\x8b\xb4\x22\x82\xdd\x6c\x16\xb9\xaa\x55\x7b\x8d\xb3\x7b\xce\xc9\x34\x1c\xf8\xc9\x2c\x0c\x5e\x79\xb1\x7f\x4b\x92\xf2\x42\x5e\xd2\x82\x14\x7c\xc9\x91\x49\x6b\xee\x97\xf3\xad\x4d\x23\xd4\xfa\xcf\xe0\x7e\x5a\x95\xe9\xc2\x79\x2f\x19\x15\xe8\x25\x63\xf7\x9e\x33\xf6\xde\x24\x83\xd0\xf7\xe2\x60\x3a\x49\x46\xc1\x38\x00\x89\xe8\x1e\x39\xcf\xc9\x4c\xb1\x39\x53\xa0\x48\x46\x3c\x65\x02\xc0\xa1\x91\xa4\x2c\x40\x74\xa9\x05\x73\x46\x96\x8d\xcb\x0b\x12\x03\x80\x70\x02\x16\x6f\x59\x69\x53\x3b\xd7\xa8\x9b\xd0\x0c\x72\x61\xb1\xc5\x41\x61\xc9\x59\xef\xb7\xc6\xea\x5b\x2f\xc0\x8b\xf3\x4f\xfc\x30\xf4\x87\xc9\x28\x18\xf8\x93\xc8\x07\xf9\xf1\x4a\x9a\x2e\x58\x33\x1b\x72\xdc\x3b\x74\x09\xcc\xb7\x7e\xb0\xdb\x94\x9f\x72\x63\x55\x0e\x45\x89\xb5\x1a\x79\x6b\x9f\x00\x7d\x03\xa4\x3c\x80\x7f\xa2\xb5\xef\xba\xb1\xee\x88\x37\x4f\x83\x7b\x54\x62\x83\xef\x2e\x79\xc1\x0d\x9e\xe3\x92\xe7\xe8\xe4\xb5\x4e\xf7\x72\xd5\x30\x22\xba\xca\xc8\xf6\x6b\xbc\x67\xf1\x2f\x18\x97\x64\x1c\x9c\x86\x78\x14\x0f\x8e\xa5\x98\xc8\x98\xb2\x11\x07\xe0\x45\x45\x6f\x70\x9f\x7b\xc0\x1e\x8a\x11\xaa\x40\x2f\x1a\xc0\x29\xb4\x20\x9a\xa5\x95\x82\xa9\x29\xae\xaf\xf4\x7a\xd4\xd0\x7b\x8d\xfe\x52\x12\xfa\x93\xa1\x1f\xde\xc6\xc0\xe8\x2c\xd1\xf7\xa8\x36\x36\x0c\x96\x4b\x40\xbf\x5c\x00\x2f\x00\xde\xaa\x63\x1b\xaa\x12\x0d\x4b\x20\xbe\x07\xf9\xb2\x52\x42\xc0\xfc\x16\x40\x70\xce\x80\x1d\x14\xfb\x41\xc5\xb4\xe9\x91\x73\x5d\xd1\xa2\x58\xb5\xe1\x5d\xc6\x4a\x26\x10\x4f\x2e\xe4\x0d\x28\x82\x15\x19\xcc\xce\xc9\x5e\x2a\x15\xd3\xfb\xe8\x99\x2c\xe8\x35\xeb\x91\x60\xee\x3c\x6f\xf5\x43\xef\x42\x74\x71\xb3\xf9\xb5\x0d\xf0\x20\xf3\x59\xf3\xbe\x99\xfd\x60\x76\xae\x09\xbd\xa6\xbc\x68\xe0\xef\x1d\xa7\x7d\x30\x1d\x8f\x03\xc0\xac\x7e\x3c\x38\x4b\x06\xd3\xc9\xe0\x3c\x0c\xfd\xc9\xe0\x2d\x18\x9e\x2d\x35\xd6\x63\x19\xfc\x82\x36\x1b\xd5\xd6\xa2\xf6\xba\x0d\x13\xda\x1a\x07\xd8\xa2\x1a\xb4\xc2\xcc\x49\x01\x9a\xfa\x46\xd1\x52\x83\x34\xc0\xe0\x03\x99\xb1\x31\x57\x4a\x2a\x62\xe9\x81\x0c\x45\xac\xa4\xc8\x41\x2d\x5a\xc8\xb7\x14\xfc\x85\x25\xc0\x6b\xf0\x5a\x5e\x87\xde\x2c\xf1\xdf\xc4\xfe\x04\xdc\x42\x90\x90\x9e\x79\x6f\xdc\xde\x32\x73\x7b\x4b\xaa\xae\x32\x79\x23\xe0\xce\xfe\x5c\x65\xce\x73\xf2\x8a\x16\x3c\xb3\xf3\x04\xee\xa9\xa7\x88\x73\xa3\xa4\x54\xec\x9a\xb3\x1b\xe2\xcd\x02\x70\x09\x64\xca\x29\x98\x3e\x1c\xd9\x2c\xd8\xd2\x25\xba\x4a\x17\xe0\xbc\x75\x0e\x68\xc9\x0f\xae\x8f\x0e\x9a\x61\x3a\x5b\xd3\xc6\x63\xd1\xc0\xf4\x38\x5d\xdd\x03\x5d\x82\xa4\x0d\xbd\x84\x95\xc3\x52\x2d\xfb\xde\x48\xf1\x2d\xdc\xa3\x1b\x70\x1e\x61\x47\xb6\x37\x91\x64\x92\x69\x68\x82\x07\x8a\x8a\xe1\x55\xe0\xbf\x46\x0e\x46\xee\x05\xb6\x85\xa5\x37\x33\xd9\x3e\xa3\xaa\x04\x07\xe7\xdd\x3d\x52\xb4\x16\x4f\x1c\xd3\xb6\x5d\x0b\xc8\x70\xe3\xcd\xb5\xb1\x6f\x83\x12\x79\xb1\xaa\x43\x27\x75\x3f\xe0\x53\x01\x32\x47\x2a\x94\x4e\xb3\xe0\xda\xf6\xca\xc1\xb9\xba\xe1\x25\xb3\x10\x18\x3c\x08\xb4\x00\x08\xa6\xf6\x7b\x4e\xec\x8f\x67\x6d\x5f\xed\xc0\x2c\xcb\x83\x9a\x6a\x13\x40\x00\x5b\x56\x9f\x16\x48\x77\x63\xed\xad\xd5\xb0\x6d\x59\xe6\x12\xf4\xfa\x3b\x7c\x49\x73\x76\xf0\xfd\x92\xe5\xff\xd4\x5e\x96\x22\xef\xf4\xc8\x88\xc1\x39\xb3\x65\x69\xd5\x14\xd2\x20\x20\x65\xf3\x66\x84\x9e\xe3\x8d\x46\xd3\xd7\xfe\x10\xad\x60\xb4\x36\xa8\x8d\x22\x40\x4c\x0b\xfe\x1e\x6d\x34\x3b\x17\x64\xfc\xa2\xe7\xd8\xa3\xf0\xde\x20\x96\x25\x7d\xf2\xe8\x5e\x0d\x62\xc1\x7a\xc9\x54\x3d\x6b\x6b\x81\xa0\x3f\x9c\xe2\x63\xc7\xb9\x80\x2d\xb8\xa4\x9a\x35\x38\xa1\xb9\x27\x97\x34\xbd\x62\x02\x56\x59\x87\x52\x4b\xa9\x4d\xae\xac\x83\xba\x5c\xe9\x1f\x14\x1d\xd2\xd1\x3f\x28\xb8\x61\x8f\xac\x71\x59\x6a\x78\x08\xbc\xf9\x56\x56\xd6\x12\x5a\xec\x06\xeb\x8f\xf9\xf0\x85\x65\xee\xf1\x2a\xfa\xde\xa8\xa5\xf8\x6b\x08\xd0\x90\x77\x6a\xe0\x79\x74\xfc\x19\x42\xcf\xa3\x67\x8f\x3f\x7d\x74\xec\xd4\x61\x6b\x00\x23\x4e\x13\x15\x86\xeb\x99\x17\x45\xaf\xa7\xe1\x10\x77\xef\x44\xb6\xe7\x89\x51\x92\xcd\xfc\x6b\x1b\x05\xd3\x07\xbd\xc8\x55\x6d\x13\xaf\x99\xe2\xf3\x55\x77\x5e\x15\x05\xfa\x62\xa3\x75\x60\xd8\x76\x68\xe8\x6e\xd6\x8a\x64\x97\xf4\x8a\x11\x5d\x29\xd4\x6c\x00\xef\xe8\xa5\x96\x45\x65\x58\x6d\x6e\xda\x2c\x06\x33\xed\x65\x97\xb7\x8e\x09\x20\xe7\x16\xbc\xad\x8d\x7b\x29\x61\x5b\xe0\xa0\xa6\x33\x7f\x02\x6a\x11\xd5\xcd\xa3\xc3\x5b\xfd\x79\x56\xb0\x87\xfb\x07\xc3\x91\xdf\xee\xef\x5c\x34\xe6\xe9\x96\x90\xa2\x4a\x80\xbe\x5c\x68\x43\x8b\x02\x83\x04\x2e\x01\xf8\x85\x92\x65\x24\xe9\x80\x78\x76\x50\x06\x56\x25\xd5\x9a\x00\x9e\x09\x26\x51\xec\x8d\x46\x60\x54\x5f\xde\x32\x67\x9a\xa5\xaa\x8e\x6c\x8a\x54\xad\x4a\x43\x52\x29\xaf\x78\xa3\xaf\x5c\x72\x7c\xe2\x91\x54\x66\xcc\x25\xcc\xa4\xc0\x35\x9f\x7c\x62\xb3\x2b\x36\x09\x13\x4f\xc9\x4b\xdf\x9f\x91\xb7\xd3\xf3\x90\xe0\x89\x0f\xbd\xd8\x23\x91\x77\xe2\x7f\xf2\x89\x13\xf9\x83\xd0\x8f\xc1\x89\x22\x7d\xf2\xc9\x37\xbe\x7b\x32\xf4\x5f\x83\x93\xf5\x4f\xbe\xbd\xb7\x66\xe4\x95\x26\x8a\x2d\x19\xc8\x02\xcb\xac\x81\xac\x8c\xec\x16\x32\xe7\xa2\xe7\x8c\xa6\xa7\xc1\x24\x09\xfd\xb1\x3f\x7e\xe1\x87\xc9\xd0\x7b\x0b\x9b\xf4\x59\xdd\xbb\x9e\x6b\x13\x51\xd0\x46\x02\xda\x5f\x77\x27\x5c\xcc\xa5\x5a\xae\xcd\xd8\xf4\x65\xe0\x6f\x68\xb5\x78\x35\xe1\x22\x55\x2c\xe3\x96\x8f\x76\x53\x86\xd9\x15\x32\xcf\x6d\x90\x01\x60\xa4\xcd\xd7\xd4\x64\x61\xed\x6d\x8a\xf4\x86\x01\xaa\xbe\x75\x80\xe0\xfc\xc3\xd9\x36\x03\xac\xbb\x47\xfe\xe0\x3c\xbc\x27\xde\x06\xbd\xea\xf9\x18\x49\xb8\xc8\x6c\x90\x1a\x91\xac\x5d\xa7\x36\xd4\x54\xba\x05\x9e\x60\xd3\xa2\xd8\x8b\xcf\xa3\xc4\x0e\x70\xeb\xd8\x77\x2d\x6f\x17\xc1\x1d\x94\x9a\x7d\xc3\x86\x89\x6d\xe8\x38\x17\x6c\x49\x79\xb1\xdb\xa8\x00\xc7\xe2\xeb\x4d\x84\x75\x63\x4e\xda\xb3\x2a\x15\x9b\xf3\xf7\xf0\x03\xa0\xc7\xaa\x72\xc4\x4f\xd5\xe5\xf7\x41\x41\x01\x54\xe8\x39\xd1\xf9\x8b\xdf\xf2\x07\x71\x02\x78\x38\x78\x43\xfa\xe4\xcb\x8b\x6f\xee\x6d\xb2\x66\xfb\xfa\x1d\xf9\xb2\x26\x18\x8d\xe3\x59\x03\x32\x51\xab\x71\xa3\xd1\x3b\xae\xad\x82\x5e\x9a\xb2\x07\x33\xcb\x2b\xd1\x93\x2a\x7f\xf6\xf8\xe9\x67\xae\x7d\x9a\xc3\x63\xf0\x33\x5b\xcf\x7e\xf0\x03\x7c\xf0\xe9\x93\xc7\xce\x73\x12\x34\x62\xac\x0c\x61\x22\xd3\xe8\x87\x7d\xfa\xe4\x71\xc7\xc5\x61\x23\x72\xc3\x8b\x02\x2d\x91\x66\x19\x60\x3b\xf0\xe4\x30\x1e\x10\x8f\x22\x30\x78\xd8\xf3\xf1\xd3\xcf\xa0\x23\x38\x4d\xcb\xa5\x5d\x34\xd8\x81\xf0\x64\x40\x9e\x7c\x7a\xf8\x79\x6f\x33\xd0\x2d\xa7\x6d\x43\x8a\x1b\x3b\x14\x2d\x6e\x40\x98\x9a\x11\x1b\x0d\xbd\x6b\x8d\xf5\xf6\xd8\x43\xb1\x39\x92\x3a\x19\xb4\x07\x23\x3f\x7e\x74\x7c\xbc\x0f\xc0\x99\xeb\x06\xcd\x7e\x1f\xbc\x17\x2a\xea\x2e\x75\x6b\x97\xd4\x19\xb0\x2f\x3b\xe0\xe2\x74\xc8\x77\xf0\xf5\x77\x5b\x89\x98\xdf\xfc\x92\x58\x11\xec\x39\x27\xe1\x74\x4c\xfa\x44\x48\xc5\xca\x62\xf5\x5d\xd4\xb6\xb7\x93\x64\x96\xfb\x80\x11\x7b\x8d\xfd\xf8\x1a\xed\x41\xd1\xdd\x48\x95\xf5\xda\x76\x66\xb7\xeb\x73\xe6\x8f\xa6\xa0\xd2\x6d\x26\xa9\x0e\x90\x2d\x18\x01\x9a\xd6\x23\xd3\x24\xe3\xf3\x39\x53\x4c\x98\x96\xbb\x03\xdd\x1a\xcb\x6f\xdd\xb3\x4d\x17\xd0\x59\xdb\x74\xb7\x9c\x73\xdc\x5f\x1b\x4f\xeb\x39\xd0\x0e\x83\x36\x56\x8a\x6e\xcd\x52\x5f\xf1\x92\x58\x4b\xd7\x24\x74\xdb\x69\x29\xd9\xe6\x84\x1e\x99\x8a\x62\x85\x36\x0d\x95\x3f\x06\x0c\x58\x31\xef\x6a\x9e\x0b\x70\xbe\x37\x1d\x75\xcf\x89\x5e\x06\xb3\xe4\x95\x1f\x06\x27\x6f\x77\x2b\x19\xa0\x93\x16\x1c\xb0\xda\x76\xcf\xf3\xc8\x4f\x06\x7e\x18\x07\x27\xc1\xa0\xed\x77\xef\xc8\x3e\xe1\xe9\x3f\x94\x7d\xb2\x0d\x9a\xec\xd3\xdd\x09\x74\x0c\x7b\x6f\x0e\xca\x82\x72\xd1\x01\x4c\xdd\xa0\xc7\x86\x85\x60\x2e\xb3\x91\x17\x4c\x92\xd8\x7f\x73\x8f\xef\x49\x8d\x01\x24\x46\x09\x92\x01\x82\x84\x16\x06\xb4\x35\x38\x42\x8d\x4a\x19\x07\x63\x9f\x2c\x99\xd6\x34\x67\xe4\x66\x01\xb0\x4d\x33\x1b\x8c\x3c\x8b\xc7\x23\xcb\xe7\x1a\xc5\x6f\x3b\x59\x6b\xc5\x8f\xc8\x02\xbd\x4d\x10\x06\xbb\x6b\x36\xb4\x64\xe1\x46\x49\x97\x80\xe9\x0c\x53\x9a\x2c\x68\x59\x72\x60\x67\x6f\x38\x6c\xcd\x3d\xf1\x46\x9b\xf9\x3b\x17\xb4\x32\x8b\x06\xdb\x5d\xa3\x3f\xd2\x24\x3b\x6d\xc4\xcd\xd8\x54\x63\x8a\x89\x23\x41\x96\x5c\x54\x78\x38\xde\x20\xc6\x68\x48\x32\x98\x0e\xfd\x64\x14\xbc\x42\xc4\x78\xf4\xf4\xf0\x5e\x5a\x8a\x81\x39\x69\x24\xe6\x2e\xc5\xd0\x8f\xfc\x38\x69\xe4\x68\x17\xdd\xad\x28\x2c\x22\xb4\x5a\x2b\xa4\x52\xcc\x79\x6d\x6e\xad\x21\xcf\x70\x43\x05\xbb\xd9\xd6\x1b\x0c\x37\xd6\x6f\xac\x03\xd7\x44\x96\x75\x20\x02\xf5\x98\xde\x50\x46\x9b\x64\x64\x43\xbb\x65\x4b\xd0\xc9\x67\x39\xd7\x46\xd5\x06\x3e\xf4\xbf\x77\x1e\x84\x7e\xe2\x8f\xbd\x60\x94\x60\x8d\x47\x38\x7e\x20\x72\x00\x3a\xa1\xc6\xfb\x5b\xe9\x15\x72\xcd\xc1\x6b\xae\x05\x50\x73\xc3\x36\xb4\xa3\xe0\x74\x12\x4c\x12\xf0\xb7\x1e\x4e\x8e\xa1\x28\x6e\xcd\x0f\x5a\x89\xe6\x7d\xe6\x12\x9a\xa6\xb2\x02\xc6\xb9\xd9\x38\xc3\xd6\x77\xb1\xa1\x29\x4c\xd7\xd0\x6c\xc9\x85\x6e\x25\xd6\xfc\xd3\x20\x8a\xbf\x46\x3c\x24\xa5\xa5\x49\x17\xd4\x72\xc0\xe6\x48\xda\x33\x5a\x47\x3d\x5a\x34\x93\x81\x37\x8b\x07\x67\x5e\xe3\xe8\xdd\xe3\x25\xb6\xf2\x47\x80\xb7\x16\x4c\x98\x26\x13\xd4\x84\x8e\xc8\x82\xd1\x0c\x18\x7f\x3d\xca\x2b\x3f\x04\xf9\x0d\xa7\x6f\xde\x62\x88\xdd\x9f\xc4\xa0\x52\xee\x5d\x09\x00\x39\xe0\xa6\x94\x16\xc5\xaa\x49\x71\x00\x33\xd9\x53\xb2\xcb\xb9\x7f\x26\xf7\x8f\x3c\xbd\x6f\x1b\x41\x64\x5a\x73\xb7\x52\x4f\xf5\x1a\xed\x7d\x8d\x31\x1f\x5a\x66\x72\xe6\x7b\x43\x34\x6a\x6f\xba\xaf\xfd\x17\xf0\xb2\x0b\x56\xce\x71\x2e\x60\x84\xdd\xe8\xc9\x72\xbb\x90\xb5\x4a\x46\x17\x02\xa6\x81\x9b\xb0\x5e\xa3\xe5\xf9\xc9\xb4\x56\xd3\xed\x65\x81\x3b\x81\xc9\xd4\x77\x6b\xcc\x6f\xb3\xee\xa5\x92\xd7\x3c\x63\x6a\xe3\x7c\x2d\xd9\x52\xaa\x15\x16\x91\x70\xf4\xc1\xc0\xa3\x02\x60\xac\x6d\x15\x09\x56\x42\x91\x3e\xb1\xed\xd6\x58\x52\xcc\x79\xde\xa8\x18\xbb\x43\xba\x04\x6f\xe7\x9a\xad\xc7\x78\xe6\x3c\x27\xdd\xba\xdf\x33\x0c\x60\x6c\xd2\xe9\xe0\x6e\x5b\x22\x64\xc5\x0c\x36\x84\xe1\x9f\xad\x27\x8a\x5e\x35\xf8\x6b\x35\x6c\xfb\x12\xdd\xb5\xfa\xad\xfe\x12\x7b\xe0\x2c\x9f\x35\x19\x95\xbe\x49\x4b\x17\xb4\x4d\xff\xd9\x93\x47\x9f\x7d\xee\x36\xfa\xae\xbf\xa4\x29\x55\x52\xb8\xd9\x65\xff\xd0\x05\x17\x0c\xe3\xf8\xfd\xa3\xc3\x43\x17\x1c\xb5\xc4\xf0\x25\x93\x95\xe9\x83\xaa\x6b\x16\x9c\xd4\xe5\x62\xb5\x9b\xd8\x8c\xfb\x10\x94\x36\xad\x6d\xe6\x19\xf0\xc7\x1c\x8d\xc0\x36\x84\xe6\x49\xc1\xaf\x58\x92\xdb\x22\xaf\xdd\x88\x9f\x0b\x62\x63\xb0\xe0\xcf\xde\xef\x2e\xc0\x4c\x4e\x07\x36\xaa\x7b\x4d\x0b\xe8\xa6\x59\x2a\x01\x97\x5a\x60\x60\xe7\x62\x13\xd1\xa7\x83\x24\x98\xc4\x7e\xf8\xca\x1b\x81\xc7\xf9\xe4\xf0\xb6\xcf\x5a\xf0\x79\x1d\xb0\xbc\x45\x87\x36\x94\xac\xe7\x3a\x0a\x4e\xfc\x24\x0e\x70\x31\x4f\x9f\x7c\xba\xa6\xd3\xde\x13\xe8\x36\x88\xc2\x13\x62\xe4\x15\x03\x37\x2c\x0a\x4f\x6e\xb9\x12\x49\xaa\xd5\xdc\x71\x2e\x52\x9a\x2e\xd6\x21\x0e\xbc\x21\x34\xa3\xa5\xd9\xcd\xa2\x96\x2f\x2d\x8f\x2e\xd9\x12\xdb\x77\xc0\xce\x7a\xb3\x78\x9b\x4b\x4f\xe4\xa6\x63\x1d\x17\xd8\xbd\x57\xe0\x2a\xaf\xf7\xe5\xc9\x61\xd3\xd5\x8e\x64\x8b\x5b\xd6\x23\xb9\x2d\xa7\x1e\xb1\x60\x63\xdd\x9e\xfd\xff\xe2\xc7\x5a\x82\x70\xf8\x67\xe4\xcb\x4d\xe8\xe5\xe8\xe8\xf8\xe8\xe8\xcb\x1a\xf0\x3b\xce\xc5\xc2\x98\xb2\x85\x26\x2a\x7b\x08\x1d\x0f\xb3\xf7\xdd\x81\x14\x46\xc9\xa2\xeb\x81\xed\xeb\x4e\x15\xcf\x01\x6d\x59\x8d\xb7\x05\x5c\xb1\x3c\x45\x82\x3b\xa6\x11\x0c\x7b\x83\x81\x1f\x81\x1b\x38\x89\xc3\xe9\x28\xc1\xb0\x58\x32\x0d\x83\xd3\x60\x82\xc3\x16\x73\xbd\x56\x31\x46\x2a\x40\x56\x75\x78\xca\x2a\x2c\x8c\x6d\x35\x80\x40\xa2\x4b\x07\xc8\x34\x9e\x86\xde\xa9\xdf\x54\xcc\xdd\x49\x84\xad\x65\x6a\x74\x12\x35\xbd\xc0\x7d\xb2\x49\x03\x54\x0d\x0d\xb8\x9e\xa2\x63\x18\x6d\xc5\x0d\x8b\xb9\xee\xd6\xbd\x00\x67\x21\x38\x5c\x32\x61\x76\x2a\xdb\xac\x9e\x24\xd9\xb4\xc3\xa8\x74\x8e\x35\x6a\xc5\xaf\x08\x83\xda\x69\xb6\xbb\x4a\xb1\x09\xdf\x36\x93\x6c\x4f\xae\xd5\xf6\x1f\x39\xa8\x49\x76\x91\xfa\xba\x91\xce\x56\x90\xf3\xd3\x7f\x40\x90\x53\xb1\x82\x51\xcd\x7a\xbf\xce\x21\x59\xb3\x83\xfd\x77\x45\xab\xff\x51\xb7\xf6\xdb\x07\xdf\xfe\x35\x76\xf2\xd1\xf1\xaf\xb9\x95\x47\x87\x8e\x73\x01\x7a\x03\x76\x2f\xb2\x65\x50\xcc\xa6\x7d\xac\x1f\x85\x9b\x35\xaf\x00\x54\xc9\xca\x94\x15\x40\xcd\xcc\x3a\x7b\x98\x0d\xa9\x98\x6e\x55\x17\x4b\xb1\x76\x3c\xe7\x12\x96\xcb\x45\x0e\x2a\xce\x9b\x44\xc1\xc0\xc5\x1a\xbd\x21\x26\x52\xc3\xea\x72\x55\x5f\x9d\x0c\x9e\x1e\x1f\x37\xbf\x5f\xd8\x8b\xc7\x87\xf8\x7b\x74\x74\xfc\x68\x7d\x61\x5f\x3d\x7a\xf4\xe8\xf3\xf5\xc5\x84\x0a\xe9\x92\x97\xdc\xa4\x0b\x26\x5c\x12\x19\xba\x2c\xeb\x9f\x31\x2f\x0a\xbe\xbe\x4e\x95\x44\x8d\x8c\xb7\xd0\xab\x57\xab\xeb\x25\x48\x61\x2b\xf2\x47\xe8\xa5\xac\x4c\x7b\xfd\x9a\x31\x2c\x84\x7d\x76\x70\x90\xcb\x82\x8a\xbc\x27\x55\x7e\x50\x5e\xe5\x07\xb0\x6d\x07\xdf\x28\xaf\xf2\x6e\x2a\x85\x36\x54\x80\x86\x3a\x99\x82\x1b\x41\xfa\xcd\xac\x1d\xe7\xa2\xe4\xa9\xa9\xd4\xda\x56\x6d\x6b\x00\xf4\x59\xe8\x35\x35\x54\xed\x56\x01\xde\x2b\x2f\xf6\xc2\xe4\x7c\x86\x15\x61\x5b\x0a\xc1\xf6\xda\x49\xb6\x95\x9b\x79\x88\x78\xe8\xcf\xa6\x51\x10\x4f\xc3\xb7\xc9\xfd\xe3\x00\xad\xee\x66\xb0\xc1\x82\x0b\xa6\x59\x0d\xac\x53\x6a\x4b\x64\x68\x13\xe9\xb0\x0d\x89\x96\x95\x4a\xd9\x26\xe3\x55\x6f\x61\x2a\x7a\xb9\xb2\x4d\x7a\xa9\x5c\xd6\x6b\x38\xe8\x39\xa7\x61\x3d\x81\x68\x7a\x1e\x0e\x30\x32\x5a\xb7\xbb\x27\x2d\x5d\xbf\x75\xad\x4f\x68\x2d\x57\x13\x45\xc3\x32\x81\x46\x58\xb1\x1e\x98\x83\x3f\x3b\xc7\xf4\xe1\x12\x6b\x26\x1b\x1f\xa9\x19\xf7\x41\xff\x68\xce\x32\x2c\x3b\xce\x9a\xd5\x15\x52\x5e\x55\x25\x2c\x5c\x93\xe1\x24\xaa\x27\x96\xca\xeb\xf5\x61\xb6\x12\x80\xce\x73\x1b\x4f\xb4\x61\x02\x77\xcd\x51\xfa\xd9\xc1\xc1\xcd\xcd\x4d\xaf\xe0\x97\xcd\x96\x48\x95\xa3\xc0\x65\xcc\x34\x21\x85\xf8\x57\x2c\x0f\x67\x7d\x7b\x7d\x80\x73\x30\x5c\xd5\x6c\x93\x0d\x55\xe9\x4b\x5a\xb0\x6c\xed\x07\x9c\xf8\x43\x3f\xf4\x62\x7f\x98\xdc\xda\x03\xe7\xa2\xc9\x06\xee\x76\x33\x16\x54\x65\x36\x17\x7b\xa9\x18\xbd\xda\x64\x1b\xd7\xa4\xcf\xbc\x70\x98\x60\x92\xf5\x45\xe8\x7b\xb7\x13\x09\x4d\x75\x50\xcd\x32\xe7\xe1\x88\xe8\x74\xc1\x96\xbb\x34\x2e\xd5\x30\xd2\x55\x5d\x9f\x66\x33\xf7\x80\x0b\xc6\xf5\x0c\x1b\x49\xae\xe3\x88\x2e\xe9\xe4\xdc\x74\xc8\x1e\xa2\x98\x9c\x9b\x67\x07\x07\x9d\xfd\x1a\x8e\xd1\x5c\xb0\xf5\x3b\x7b\x87\xaf\x7b\x8e\xfd\xd6\x23\x39\x0f\x47\x49\x34\x38\xf3\xc7\xad\xdc\x5d\xf1\x35\x92\xd3\x97\x4d\x4d\x01\xcb\x0e\x58\xc6\x8d\x9d\x77\x7b\x8a\xbf\x32\x25\x4d\x62\xd9\xd4\x25\xd4\xf5\x78\xf0\x56\xc8\x56\x2a\x97\xea\x75\x96\xd6\xb5\x41\xd6\xb2\x32\x9b\x9c\x36\xe6\x10\xb7\xd3\xd9\xf7\x66\xb2\x9d\x0b\xbd\xa4\xca\xac\x4a\xd0\x5a\xf7\x47\xe2\xa3\x4d\xa3\xbb\x87\xbc\x89\xc8\x9f\x84\xde\x20\xae\xc7\x44\x23\x3a\xf4\xa2\x33\x7f\x7d\x37\xf2\x62\xff\x4d\xb2\xfd\xcc\x9b\x9c\x8e\xfc\x61\xf2\xbd\xf3\x69\xbc\x79\xe8\x5c\x60\x08\xe3\xdd\x6e\x91\x57\x2c\xaf\x0a\xaa\xc8\x9e\x90\xa2\x8b\x0d\xf7\x6b\x25\xb4\x29\x6a\x94\x2a\xa7\x82\xff\xb0\xfe\xa6\xa5\x1d\x09\x39\x1f\x79\x61\x32\x0d\x4f\xd7\xc5\x3a\x2d\x6e\xbf\x61\x97\x0b\x29\xaf\xde\xdd\x3a\xf1\x06\x42\x58\x2c\xb0\xf6\xa3\xeb\x00\xe4\xfa\xc3\x94\x0e\xf8\x64\xe0\x64\xe8\x82\xa6\x57\x70\x81\xba\x40\x65\xf6\x52\xe4\x86\x16\x57\x1d\x9b\x15\x8d\xea\x94\x8f\x4b\xb0\xb1\x4b\xea\xa6\x70\x61\x1b\x62\xcd\x54\xc1\xb1\xee\xce\xe2\xf9\x2d\x9f\x63\xe8\x8f\x82\x57\x7e\x88\x8e\xd4\xf4\x1c\xb3\xaa\x8f\x6f\x45\x42\x10\x66\x70\xd1\xe4\x8e\xd6\x01\x5a\x3c\x3a\x8c\xed\xc6\xa3\xe8\x6e\x7c\x37\xde\x2a\xf5\x58\x70\x8d\xd6\xa3\x6d\x1b\xb9\xb0\x20\xa4\xa4\x39\x03\x6c\x7a\x1a\x4c\x4e\x93\xc9\xf9\xb8\xc6\x11\xcd\xe7\x19\x05\xb8\xa4\x86\x8b\x1c\xd3\x97\x98\x06\x53\xba\xe7\x5c\x14\x32\xdf\x5d\xba\x46\x8b\x02\x9a\x59\xbe\xdf\xae\x55\x2b\x64\x7e\xd0\x21\xba\xba\x6c\x95\x94\x6e\xd7\xd5\x0e\xea\x43\x00\x1b\x2c\x6d\x2e\xb8\x8e\x47\xd4\xe7\x61\x65\xbf\x39\x12\x90\xc5\x73\xcd\xac\xcc\x58\xf7\xb9\x16\xcc\x65\x55\x18\x5e\x36\x85\x1d\x0d\xb4\xab\xc9\xba\x38\xb9\x8e\x53\xe7\x91\xeb\xa7\xce\x73\xf2\xa2\x9a\xcf\x99\x6a\x8a\x02\x41\xa7\x2d\xa8\x10\xac\x70\xc9\x15\x63\x25\xe1\x06\xa4\x96\xe3\x62\x6c\x71\x3f\xc9\xb0\x62\xe3\x4a\xc8\x1b\x72\x83\x25\xd7\xf0\xb2\xe7\xbc\x38\x3f\x39\xf1\xc3\x64\xe4\x4f\x70\x3b\xc1\x83\xf3\x6b\x37\x36\x56\x34\xc5\x05\x05\x62\x2e\xe1\xf7\x35\x55\x02\x7e\x7d\xa5\xa4\x82\x8b\x13\x6a\x68\xd1\xd9\xde\x3a\xdb\xcb\x19\xf9\xaf\x7c\xf0\x50\xf1\xd6\x69\xbc\xd4\x66\xb7\x6a\x6b\x21\x8a\x15\x9e\x4f\xaf\x7e\x0e\xe7\x34\xc0\x24\x93\xc1\x92\x0b\x4c\x25\x2e\x98\xc2\x8f\xb6\x6a\x8a\x6b\x5a\xb8\x33\xb7\x09\xc1\xc3\xaf\x45\x65\x67\x2d\x98\x0d\xe6\xd9\x24\x2a\x51\xd2\xc0\xf9\xec\xe9\x1b\x00\x7a\xa8\x8a\x1b\x6c\x59\xc7\x82\xf5\x3e\x66\x1f\x93\x70\x1a\xdb\xac\xc3\xdd\xaf\x08\x34\xcb\x71\x1e\x6b\x3e\x23\x19\xe5\x58\x82\xee\x05\xa3\xb7\x77\x7a\xde\x01\xe0\x7a\xc1\xe7\xa8\x14\x6c\x3d\x16\xd2\xd8\xda\xef\xe3\xa7\x75\x69\xe0\x11\xf9\xce\x77\xe0\x0e\xcb\x3a\xdb\x38\x3d\x89\xce\x82\x13\x2c\x2d\x7f\x7a\x2f\x5a\x2f\xb0\x34\x6c\x7b\x98\x26\x7c\x32\xa9\x11\x3b\xfe\xd7\x64\xe5\xde\x97\x5c\x21\x24\x5f\x35\xd2\x66\x0d\xd5\x5e\xc6\x0a\x66\x18\xa1\x73\x83\xb9\x87\xf7\xd8\x64\xdf\xd2\x5a\x67\xc6\xd7\x85\x10\x56\x52\x6e\x9d\x21\x3e\xfd\xba\x87\x68\x55\x28\xd8\x72\x07\xbf\x0d\x70\x2c\x8d\x5a\xee\x7e\x6d\x2a\x76\x99\xeb\x98\xaa\xc5\x3c\x19\xd7\x65\x41\x57\x36\xbb\xde\x8e\x76\xda\x44\x60\x1d\x29\xda\x4e\xf4\xd6\xf3\x79\x2f\xd5\xf2\xdd\x26\xa1\x80\x7b\x85\x0c\xc6\xa5\x70\x6e\x73\x41\x68\x39\xcf\x56\x1b\x65\x74\x55\x37\x48\x90\x67\xee\x34\x93\x22\x6d\xe0\x35\x70\x0c\x7b\x9f\x62\xfa\x82\xbc\x27\xe3\x17\x6d\x67\xcd\x0a\xf7\xb8\x3e\x7b\x3c\x39\x23\xad\xba\xb0\xca\xd2\x32\x68\xfb\xa4\x1e\xd5\xb3\xcf\xeb\xd9\xef\x80\xa8\xed\x85\xf4\xee\xac\xa4\x9d\x87\xb1\xb3\xb5\x70\xa6\x59\x59\xef\x9e\xa5\xb5\xb9\x74\xb3\x34\x74\x40\xc9\x25\x9b\x83\xab\x21\xd8\x7b\x53\x13\xed\xdd\x5d\x66\x9b\xc0\xd6\x52\x71\x8d\xbd\xdb\x8b\x4c\x95\x0d\x3d\xd7\xc7\xd3\x7c\x1b\x0a\x8f\x89\xa1\xfa\x0a\x3d\x59\x2e\x33\x1b\xe7\xdf\xe1\xbc\x87\x95\x68\xb7\xb6\x20\x58\xe6\xda\x16\x8b\x69\xfb\x99\xe8\x9d\x1a\x7d\x3b\x70\xcf\x7e\xea\x95\x2c\xb1\x9e\x10\x61\x91\x2d\x0e\xd7\x58\x50\x29\xe7\xa6\x4e\x00\xdb\x06\x44\xaf\x44\xca\x94\xfd\x82\x01\xd5\x3b\xf8\xf6\xf5\x3b\xc1\x58\xd6\x7c\x2e\x09\xed\x16\x4a\xda\x3a\xe7\xbd\x4b\xaa\x59\xd6\x78\x63\x75\x6b\x3b\xf0\x3a\xca\xb8\xdf\x73\x00\x85\x0e\xcf\x31\x1f\xfa\x5d\x7b\x4a\x47\x87\x98\x05\x0d\x37\x9e\xdd\x82\xd1\xc2\x2c\xec\xf8\xf5\x0a\xc0\x57\x4b\xec\xf3\x04\x9f\xbf\xdb\x41\xe9\xf8\xd3\x85\xb3\xc1\x0f\x4f\x0e\xc1\xab\xf3\x54\x5e\x6d\xa2\x23\x68\x1d\x45\x46\xbe\x95\x73\x43\xe6\x3a\xbd\xfa\x56\x63\x0f\xbb\xdd\x4a\x28\x40\x01\x78\x3e\xdd\xae\xa1\xb9\xee\x38\xcf\xd1\xa9\x41\x67\x5a\x8a\xb5\xbb\xcc\x4d\x57\xa7\x4b\xf4\xf3\x32\x99\x6a\x7c\x00\xc4\x0e\x8e\x7a\x9f\xf5\x1e\x3b\x5e\x78\x1a\x59\x33\x32\xc0\x6f\x40\x5a\x3e\x2b\x7e\x70\xa6\x0d\x4f\x75\xbd\x2e\x5c\x4b\x82\xab\x83\x77\xfa\xdd\xed\x73\xc4\xe3\xdf\xbd\x54\x18\xa0\x60\x54\x54\xe5\x96\x5b\xac\xd2\x05\xbf\x66\xba\xbd\x71\xf5\xb3\x24\xb5\xcd\xef\x0c\x62\x99\x65\xf7\x28\xcf\x49\xcc\x97\x6c\x93\x3e\x5d\x7f\xda\x02\x7c\x61\xe9\xb6\xbc\x05\x1c\x81\x65\xce\x74\x34\x04\x30\x77\xe6\x81\xd5\xc7\xc9\x5e\xe4\x1c\x43\x59\x43\x8b\x7a\x35\x59\xf0\x7c\x51\xf0\x7c\x61\xbf\xa7\xc0\xaf\xc4\xe0\x68\x14\x5b\xca\x6b\x5b\x37\x2f\x72\xa6\xd7\x50\x77\x18\x9c\x9c\x24\x67\xc1\xe9\xd9\x28\x38\x3d\x6b\xa7\xbd\xc7\xf4\xfd\x9d\xb0\x90\x5e\xc8\x1b\xc4\x75\x19\x9f\xcf\xc9\x35\x67\x37\x28\x90\xa7\x41\x6c\xe9\x6c\xc2\x44\x87\x77\x28\x58\x53\xd5\xb8\x69\x30\xb7\xb6\xd1\x7a\x80\x68\xdb\x92\xdd\xa1\x9a\x2e\xa8\xa2\x29\x66\xc3\x91\x64\xd1\xfe\x36\xe3\x61\x9a\xf8\xd1\x80\x37\x88\xed\xc7\x22\xc7\x96\xfa\x03\x7c\x9d\xa7\x2d\xae\xa6\x79\x8e\x9f\x11\x5e\x03\x53\x03\xfe\xf8\xfb\x30\x75\x9e\xd6\x2c\x7d\x3a\x48\x36\x5c\x3d\x5d\x57\x8e\xdc\x05\xf2\x78\xcc\xbd\xfa\xf9\x3b\xc7\x96\xad\xfb\x28\x8d\x87\xce\x38\x08\xc3\x69\x68\xbf\x7a\x76\x06\xa3\xe9\xc4\xaf\xaf\x67\xe7\xa3\x51\x7d\x79\x3a\xb0\x59\x07\xe7\xc2\xaa\x90\xb6\xb2\x6a\x7f\x68\xba\x4e\x5c\xec\x71\x41\x16\xb2\x52\x7a\x9f\x54\xc2\xf0\xc2\x96\x76\x83\xee\x06\xf5\x54\x27\x6c\x6a\x75\xb4\x67\x51\x03\x25\xba\xc2\x34\xc0\xbc\x2a\xda\x3a\x6f\xbf\x2e\x75\xa8\xfd\x1f\x79\xcd\x94\xe2\x59\xc6\x04\xd6\x9b\x5d\xf3\x0c\x2b\xd3\x91\x24\xfa\x0b\x75\xd7\x96\xf0\xd5\xc5\xdb\x8d\x9f\x00\x6e\xcd\x89\x77\x3e\x8a\xdb\xa9\xa6\xa7\xe0\x0e\x96\xfc\xdd\x1d\x16\xe1\x86\x2d\xb5\x0d\x86\xd8\xcf\xc2\x6c\xfc\x83\xa2\x5f\x82\x6c\x61\xff\x88\x43\xe4\x27\x41\xec\x8f\x31\x62\x0c\x1b\x55\x21\xad\xc9\xee\x8f\x3d\xd6\x71\x07\x10\x09\xcb\x6a\x52\x20\xbe\x2a\x80\x01\x90\xb4\xff\x66\x36\x9a\x86\x7e\xb2\xe5\xf9\x1c\x1f\x6e\x11\xe5\x5a\x57\xf7\x93\x43\x32\x41\x14\x9d\xdf\x22\x72\xb4\x4d\xa4\x31\x98\xc0\xae\xdc\xe8\x5b\x44\xb0\xc2\x83\x9b\x15\x99\x33\x96\x39\x27\xbe\x3f\xc4\xca\x61\x5b\x79\x5f\x13\x7c\xdc\x44\x67\x81\x5c\xc7\x2c\xd8\x92\x75\x53\x59\x48\xd5\x21\x4b\x66\x28\x31\x34\x77\x6d\xc6\xfa\x72\x45\x3c\x91\x29\xc9\x33\xf2\x9b\x7d\xf2\x18\xbf\x0b\xf3\xe0\x24\x6d\x39\x08\x76\x22\x05\xbf\x62\xa4\x23\xa4\xa8\x0b\x6c\x9b\xc2\x5b\x7b\x0a\xb6\x1a\xa1\xc5\x74\xda\xac\xd0\x39\x1a\x37\xd1\xd5\x67\xeb\x80\x57\xc6\xae\x59\x21\x4b\xf0\x08\x73\x29\x73\x5b\xf8\x75\x70\xc3\x2e\x0f\xac\x0d\xd4\x07\xc7\x87\x47\x9f\x1e\x1c\x1d\x1d\x44\xb6\x7a\xa6\x3b\x97\xaa\xdb\x5a\x40\x97\x8b\xee\x60\xa1\xe4\x92\x75\x1f\x7d\x8e\x2f\xeb\xe9\x3b\xf1\x99\x3f\xf6\x93\xc1\x74\x34\x0d\x93\xb1\x1f\x7b\x49\xec\x9d\x92\x3e\xf9\xf2\x1b\xf3\xf9\xe3\x47\x9f\x3e\xfa\xb2\x66\xa4\x06\xc1\x5c\xae\x8c\x85\xda\x56\x15\xde\x46\x96\x7b\x2d\x6c\xff\x74\xfc\x62\xdf\x22\x95\x20\x9a\x8d\x3c\x5b\xa9\xd4\xe0\x9c\xa7\x8f\x9e\x3e\x7d\x72\xf8\x14\x19\xac\xb7\x8e\x5f\x6c\x0e\xb3\x8e\x19\x3c\xc0\x10\x80\x59\xb7\xf9\xe1\xf1\xe1\x5d\x4e\x7d\x90\x44\xe8\xcf\xa6\x0f\x92\x00\x94\x9c\xfe\x0a\xc6\x9c\x4c\xe3\x60\x70\x9b\xbd\x1f\x6f\x91\x69\xc7\x57\x1e\xa4\x35\x0d\x4f\xef\xcc\x07\x77\xa8\x29\x5e\xf8\x87\xad\xee\x68\x7b\x5a\x82\xdd\x68\x14\x87\x5f\xb1\x40\xff\x75\x94\xa0\xc0\x3c\x24\xc2\x8d\xd4\x3d\x44\xa9\xf9\xcc\x65\x8b\x0e\x96\x63\x97\xc0\x9a\x66\xc1\xaa\x7b\xc2\x6a\xb3\xf5\x7b\x90\x44\xc5\xd3\x5d\x29\xa8\xbb\xdd\xb0\xd2\xe4\x05\xd5\x3c\x25\xde\x76\x0d\x0d\x66\x5d\xa5\x61\xa9\x69\x08\xd6\x99\xfb\x3a\x14\xfb\xc2\x8b\x82\x01\x16\x97\xdc\x0a\xf6\x6c\x15\xaa\xdc\x4b\xbf\xe7\x6c\x08\xb4\x0a\x97\xd7\x59\x87\xba\x36\xec\xeb\xd3\xd8\x2e\xbb\xf4\xd7\xd1\xcd\x25\x2d\x4b\xac\xa3\x92\x2d\xc8\x93\x16\x54\x03\x3c\x45\x33\xdd\x33\x72\x59\xf4\xb9\xe0\xce\xc5\xba\x45\xaf\xee\xf6\xce\x71\x2e\xf8\xd1\x53\xf1\xce\x19\x79\x13\xb0\xc0\x84\x89\xee\x79\xe4\xfe\x70\xd1\x1d\x4c\xe0\xdf\xb3\x97\xf0\x6f\xfc\xda\xcd\x58\x77\xe8\xbb\x73\xd5\x3d\x09\x5d\x51\x74\x27\x23\xb7\xb8\xee\x8e\x5e\xb9\xaa\xea\x86\xe7\xee\xf7\x69\xf7\xb7\x66\x2e\xd3\x5d\x3f\x72\x4b\xd3\x7d\x11\xba\x65\xd1\x9d\x8d\xdc\xcb\xbc\xfb\xe2\xd4\xe5\xa6\x1b\xc4\xee\x9c\x77\x4f\x02\xd7\xa8\x6e\x1c\xba\xa9\xee\x0e\xbe\x70\xb5\xea\x46\x33\x57\x5f\x77\x23\xdf\xbd\x92\xdd\x97\xa1\x9b\x17\x40\xa1\xba\xea\x9e\x7b\x2e\x13\xdd\xd3\x17\xee\xa2\xea\x9e\x9d\xbb\xfa\xaa\x1b\xbd\x74\x79\xd6\x0d\x86\xee\x9c\x76\x83\xd0\xbd\xe6\xdd\x57\x13\x18\x6b\x16\xe3\x27\x11\x30\x77\x5f\xe4\x05\xd7\x0b\xf7\x97\xff\xe5\x47\x7f\xfd\x17\xff\xea\xaf\x7f\xf2\xa7\xbf\xf8\xfd\xdf\x75\x7f\xf9\xe7\x5f\xfd\xed\x7f\xfa\xd7\xf6\xe6\xef\x7e\xf6\xcf\xfe\xf6\x3f\xfe\xdb\x5f\xfc\xe4\xbf\xfe\xdd\xcf\xfe\xf9\xed\x17\x7f\xf3\xbb\x3f\xfd\xe5\x57\xff\x1e\x5e\x0c\x59\x65\x74\xba\x70\xe7\x8a\x8a\x9f\xff\x31\xe5\xda\x9d\xb0\x8c\xa9\x82\x8a\x4c\xbb\x05\x35\xd7\x9c\xfd\xd5\x1f\x55\xee\xc7\x1f\x7d\xfc\x9d\x8f\x5f\x7d\xfc\xea\xc3\x4f\x3f\xfc\xe4\xc3\x9f\xbb\xbf\xf8\x83\xff\xf0\x8b\x3f\xfc\xcf\x7f\xf3\x27\xff\xce\x65\xba\xa4\x3f\xff\x33\x59\xb8\xa0\x88\xab\xbc\xfa\xf9\x9f\x68\x92\x49\xf2\x42\x51\xcd\xe1\x61\xa1\xaf\xb8\xfb\xe1\xcf\x3e\xfe\x8b\x0f\xff\xf3\xc3\x7f\xfb\xf0\xe3\x8f\x3f\xb2\x34\x5c\x6e\x68\xc1\xa9\x90\xae\xae\xe4\x92\xbb\xf1\xcf\x7f\xa6\xae\x7e\xfe\xc7\xcc\xfd\xcb\xdf\x63\x7f\xf5\x47\x86\x0b\xea\x7e\xfc\xea\xe3\x8f\x3e\xfc\xaf\xba\xb9\xbe\x66\x42\x5f\x51\xf7\xff\xfe\x9b\x3f\xfc\xdf\xff\xe3\x4f\xff\xcf\xef\xff\x77\x37\xa7\x05\xcb\xa5\xfb\xf1\x77\x3e\xfc\xf4\xe3\x8f\x3e\xfc\xf8\xe3\x1f\x7c\xf8\x8b\x8f\x5f\x7d\xfc\x97\x1f\x7e\xfa\xe1\xc7\x6e\xbd\x37\x64\xef\x5c\x60\xa0\xfd\x25\x17\x79\x26\x97\xfb\xee\x98\xe6\x2b\xaa\xdc\xa8\x90\xd7\x4c\xfc\xe5\xef\xc1\x30\x81\xc8\xa4\x60\x9a\x53\xe1\xce\x98\xc2\xdf\x57\x9c\x61\x25\xae\x66\xee\x6c\xbd\x2a\xc7\x46\x05\x2d\x1b\x83\x19\x02\x64\x56\xf2\xf4\x8a\x29\xcb\x56\x3d\x78\x58\x50\xe0\x33\xe4\x2b\xe4\x2f\x07\x99\x8b\xf4\xc9\x0f\x17\x0e\x72\x18\x5e\x76\xe3\xd7\x0e\xfe\xbb\xbe\x43\x8e\xc3\x3f\x4b\xe4\x20\xdb\x81\x1c\x2a\x07\x79\x8f\xf4\x89\x28\x1c\x64\x40\xd2\x27\xc5\xb5\x83\x5c\x48\xfa\x44\x55\x0e\xb2\x22\xe9\x93\xef\x53\x07\xf9\x11\xc6\xd4\x0e\x32\x25\xe9\x13\xfc\x75\x90\x39\xe1\xae\x70\x90\x43\x49\x9f\x5c\xe6\x0e\xb2\x29\xe9\x13\x6e\x1c\xe4\x55\x18\x90\x3b\xc8\xb0\xa8\x63\x1c\xe4\x5a\xd2\x27\xf8\xeb\x20\xf7\x92\x3e\xd1\xca\x41\x16\x86\xcb\x6b\x07\xf9\x98\xf4\xc9\x95\x74\x90\x99\x49\x9f\xe4\x85\x83\x1c\x4d\xfa\xa4\xba\x72\x90\xad\xad\xa0\x9d\xbe\x70\x90\xbd\x49\x9f\x2c\x2a\x07\x79\x1c\x88\x5c\x39\xc8\xe8\x30\x93\xcc\x41\x6e\x47\x15\xe4\x20\xcb\x93\x3e\xb9\xe6\x0e\xf2\x3d\x2e\xc7\x71\x2e\xf0\x6f\x4c\xbd\x73\xa2\xb3\xe9\xeb\xe4\x64\x3a\x8d\xfd\x30\xc1\x10\x4e\x30\x39\x6d\xe9\xae\x08\xbf\x6c\xe1\xf5\x1f\xcd\xaa\xff\xc8\x06\x61\xef\x59\x5a\x35\x61\x6a\x9b\xbf\x95\x86\xa9\x2d\x62\xb1\x3f\x9e\x8d\xbc\xd8\x4f\x30\xc7\x59\xd7\x22\xa1\xca\xfd\x7f\x01\x00\x00\xff\xff\x4c\x49\xa1\x6e\x3d\x4c\x00\x00" func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -324,8 +324,8 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 18756, mode: os.FileMode(0644), modTime: time.Unix(1583774435, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0xf4, 0x94, 0xf6, 0xab, 0x5c, 0xeb, 0x3, 0x9, 0x8c, 0x61, 0x6, 0x6f, 0xa2, 0xd9, 0x7c, 0x2, 0x1d, 0x69, 0x1a, 0x2c, 0x63, 0x65, 0x58, 0xed, 0x43, 0xd1, 0x15, 0xd4, 0x34, 0x67, 0x9a}} + info := bindataFileInfo{name: "conf/app.ini", size: 19517, mode: os.FileMode(0644), modTime: time.Unix(1586528224, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0xbb, 0x9b, 0xa0, 0xe5, 0x3b, 0xd1, 0xc7, 0x7d, 0x5e, 0x8d, 0xdc, 0xbd, 0xd7, 0x33, 0xa7, 0xb9, 0x99, 0x65, 0xc7, 0x98, 0x8, 0x6c, 0x2d, 0xcf, 0xc4, 0xdd, 0xf3, 0xd8, 0x27, 0xca, 0xaa}} return a, nil } @@ -4504,7 +4504,7 @@ func confLocaleLocale_bgBgIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 97715, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 97715, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0xa0, 0x41, 0xdc, 0xc0, 0xb0, 0x2e, 0x3d, 0x23, 0x2f, 0xdb, 0xc7, 0x85, 0x19, 0x1e, 0xcb, 0x45, 0x11, 0x41, 0xc0, 0x2e, 0x16, 0x34, 0xf5, 0xb3, 0xe3, 0xc3, 0x76, 0xa8, 0x64, 0x1d, 0x73}} return a, nil } @@ -4524,12 +4524,12 @@ func confLocaleLocale_csCzIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_cs-CZ.ini", size: 73005, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_cs-CZ.ini", size: 73005, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x98, 0xd2, 0x73, 0x37, 0x8e, 0x7b, 0xe1, 0x27, 0x93, 0x87, 0x28, 0x69, 0x62, 0xbd, 0x21, 0x1b, 0xda, 0x38, 0x74, 0xf6, 0xb3, 0x97, 0xff, 0x5b, 0xac, 0xf2, 0x68, 0x78, 0x38, 0xb5, 0x6a, 0xb6}} return a, nil } -var _confLocaleLocale_deDeIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\x4d\x8f\x1d\x37\xb2\x28\xb8\xcf\x5f\x41\xeb\x42\x68\x1b\xa8\x3a\x82\xbb\xdf\x7d\x33\x30\x9c\xea\x29\x59\x9f\x6d\x49\xd6\x75\xc9\xf6\xc0\x1e\x21\xcd\x73\x32\x4e\x26\xbb\x32\x99\xa7\x49\x66\x95\xaa\x2e\x2e\x30\x8b\xb7\x9c\xf5\x60\x16\x03\xdc\x8d\x31\x3f\xc1\x2b\xef\xea\x9f\xbc\x5f\x32\x88\x08\x92\x49\x66\xe6\x29\xa9\xdb\xfd\x80\xb7\x91\xea\x30\x83\xdf\x64\x30\xbe\x43\x1e\x0e\x55\x0d\x76\x57\x3e\x51\x5a\x80\xd2\x7b\xb9\x6b\xc1\x9c\x08\x0b\xdd\xd6\x3a\xd1\x40\x3b\x58\x07\x0e\x8c\x78\xa6\xdc\xe9\x39\x98\x4b\xb5\x83\xa2\x68\x87\x1e\xca\x73\x27\x8d\xb3\xa0\x1c\x14\xb5\xb4\xed\x76\x90\xa6\x2e\x6f\xff\xdf\x2d\x18\xab\x76\xad\x2b\xe0\xfd\xa1\x1b\x0c\x94\x4f\xcc\xc5\xa8\x6b\xd0\x45\x0b\xdd\xa1\x7c\xae\xba\x3d\x14\x56\x35\xba\x52\xba\x3c\xd3\x3d\x74\xf8\x8d\x0a\x86\xd1\x95\x67\xdb\xb4\x64\x3c\x94\xdf\x42\xa3\xac\x33\x0a\x0c\xe8\xc2\xd0\x0f\x30\x79\xe9\x15\x6c\xad\x72\x50\xfe\x00\x5b\x1e\xcf\x41\x36\x50\x9e\xd3\x9f\x0e\xfa\x43\x27\x1d\x94\xdf\x0f\xa6\x93\x0d\x14\x9d\xd4\xcd\x48\xdf\x0f\x06\x67\x5b\xec\x0c\x48\x07\x95\x86\xab\xf2\x89\xb1\x0e\xba\x0e\xf4\x66\xb3\x29\x46\x0b\xa6\x3a\x98\x61\xaf\x3a\xa8\xa4\xae\xab\x1e\x67\xf3\x08\xf4\xe8\x6e\xc0\xf0\x07\x31\xea\x5a\xf4\xd0\x1a\x1a\x2e\xd4\x95\xd2\x95\xb4\xe5\x99\x6e\x80\xa6\xe1\x84\xec\x6c\x41\x4d\x69\xd9\x4f\xb5\xf1\x47\x01\xbd\x54\x5d\xf9\xe4\xf4\x95\x54\x5d\x71\x90\xd6\x5e\x0d\xa6\x2e\xdf\xf0\x1f\xae\x30\x50\xb9\xeb\x03\xae\x9f\x86\xd1\xe1\xee\x34\xb0\x05\x5d\xec\xe4\xc1\xed\x5a\x59\x7e\xc5\xff\x17\x85\x81\xc3\x60\x95\x1b\xcc\x75\xf9\x6d\xfc\xb3\x18\x4c\x23\xb5\xba\x91\x4e\x0d\xba\xfc\x86\x7e\x58\xfa\x51\xf4\xca\x98\xc1\x94\xaf\xe8\xbf\x42\xc3\x55\x85\x2d\x94\xaf\x61\x04\x2b\x92\x16\xf0\x4b\xaf\x1a\x83\xab\x87\x1f\xc5\x2b\xfa\x81\x4d\xf0\x27\x6a\x06\xbf\x18\x91\x34\xb6\x1f\xcc\x85\x6f\xec\xe9\x60\x2e\x4e\x67\x2d\x0e\xa6\xe1\xd6\xf2\x31\x49\x2d\x1b\xa0\x8f\x69\x39\x68\x71\x09\xe6\x4a\x76\x0e\x74\x21\xeb\x5e\xe9\xea\x20\x35\x74\xe5\x19\xfe\x8d\x27\x80\xab\xcb\xdd\x6e\x18\xb5\xab\x2c\x38\xa7\x74\x63\xcb\xaf\x07\xed\x06\x50\x9a\xf6\x73\xd4\x0d\x1e\xa8\xf0\xed\x49\x56\x7c\x3d\x8c\x71\x9b\xcb\x17\xad\x11\x6f\xe8\x6f\x2e\x8f\x75\x5e\xb4\x06\x44\x5e\xb1\x90\x3b\xa7\x2e\x95\x53\x60\xcb\xb3\x0b\xfa\xf3\xf6\x17\x1c\xe7\x61\xec\xba\xca\xc0\xdf\x46\xb0\xce\x96\x6f\xc6\xae\x3b\xfd\xd6\xff\x2a\x94\xb5\x23\xd8\xf2\x05\xfd\x57\x14\x3b\xa9\x77\x38\x9b\xed\xd6\xc0\xae\xc5\x46\x7f\xc2\x3e\x64\xd7\xbd\x2b\xfc\x1f\xe5\x0b\xfe\x9f\x27\xea\x94\xc3\x61\x26\x45\xd6\xee\x5a\xa3\x9c\x03\xb1\xbf\xfd\xcd\x88\x1a\xb4\x00\x3c\xc6\x5a\xd0\x05\x2d\xea\x61\x77\x01\xa6\xc2\xcb\x07\xa6\xfc\x01\xb4\x16\xcf\x86\xc6\x0a\xa5\x35\x98\x56\x76\x5b\x71\x39\x68\xf1\x98\xa0\x44\x77\xfb\xcb\xb8\x77\x27\xa2\x03\x8b\x0d\x28\x10\x78\x97\xc5\x96\xda\xc7\xa6\xbf\x94\xc2\x49\xd3\x80\x2b\xef\x55\xdb\x4e\xea\x8b\x7b\xa2\x35\xb0\x2f\xef\xdd\xb7\xf7\x1e\xbe\x04\xe5\xf6\xb2\x06\xfd\xe5\x03\xf9\x50\x34\xa0\xe5\x28\xea\xd1\xec\xda\x13\xb1\x85\xcb\xc1\x50\x83\xca\x34\xa0\xeb\x2b\x69\x85\x1c\xf7\xa2\x56\x60\xc1\x08\xba\xab\xe2\xf6\x17\x5d\x83\xd1\x9f\x14\xb8\x78\xca\x41\x55\x6f\x19\x3b\xd1\x80\xb7\xa0\x6f\x7f\x75\xaa\x71\xe2\xd5\xf5\xf9\xbf\xbd\x3c\x11\x6f\x06\xeb\x1a\x03\xf4\xf7\xf9\xbf\xbd\x54\x0e\xfe\x74\x22\x5e\x9d\x9f\xff\xdb\x4b\x31\xd4\x60\xc4\x5b\xf5\xf8\xd1\xa6\xa8\xb7\x15\x2f\xda\x63\xe9\x40\x6f\xa5\xbe\xc8\x8f\x05\x7e\xc7\x6b\x16\x3f\xbb\xeb\x43\x81\x68\xaf\x7c\x3e\x58\x47\x57\x37\x5e\xdb\x95\x5b\x5a\x6f\x2b\xba\xd9\xb1\x3a\x5d\xed\x7a\x1b\x16\xfc\x11\x2d\x1d\x1e\x62\x40\x24\xc8\x4b\xa0\x79\x0a\x38\x7b\xf1\x42\xeb\xe1\xf1\xa3\xd3\x27\xba\x51\x1a\x44\xaf\x9c\xa8\xa1\x17\x3f\x82\xc2\xf3\x60\xa5\xbb\x11\xa3\xdb\xff\xaf\x55\x03\x1a\x8c\xec\xaa\x9d\xda\x14\xd6\x76\x55\x3f\xd4\x50\x9e\x9f\xbf\x3c\x7d\x35\xd4\xa3\x2d\x0e\xd2\xb5\xe5\x9b\xbd\xac\x0b\xfb\xb7\x0e\x97\xce\x77\xff\x18\x8c\xc0\xa1\xa9\xc3\x5e\xd6\xe2\x66\x34\x61\xa5\x4e\xe3\x80\x37\xe2\xcb\xad\x79\xb8\x36\x4e\x50\x78\x01\xe5\xd6\x0e\xdd\x88\x07\x0a\xdb\x3f\x11\x57\xf1\x08\xc9\xce\x0a\xff\x26\x88\x06\x2c\x1e\x37\x70\xe2\x4a\x99\x7a\x53\x80\x31\x15\xf4\x07\x77\x8d\x9b\x48\xa3\xf3\x1d\x8b\xd8\x31\x0d\xa9\x96\x66\x2f\x34\x3e\x18\xa2\x03\x30\xc2\x82\xd2\x9b\x42\x0f\x15\xdf\x76\xc4\xbb\xb5\xb2\x72\xdb\x41\xc5\xc8\x9f\x6f\x7c\x89\xe3\xbb\xb8\xfd\x55\xe3\x08\x71\x19\xa7\x07\x61\xd4\x8d\x6f\xb0\x06\x49\xf7\x12\x1f\x89\x13\x31\xb4\x9a\xa6\x24\x12\xdc\x31\x98\x0b\x44\x14\xe2\x66\xe4\x4b\x43\xb8\x3f\x19\x7b\x40\x39\x7e\xd7\x1f\x4b\x9b\xd7\x3e\x0d\xe7\xe0\xc8\x3c\x8a\xb0\x6d\x7c\x04\xcf\xba\x0e\x1f\x06\xdc\xe8\x1c\x97\xe0\x3b\x4c\xc7\xe8\xb5\xec\xf1\xa2\x19\x71\xa6\x71\x23\x46\xdd\xc4\x6f\x61\x4b\x9f\x2b\xe0\x6b\x8e\xb0\x9a\x80\x53\x94\x49\xcf\xf8\xed\x6f\x0d\xd0\x3d\x3a\x0c\xbc\xf8\x13\x12\x3e\xfd\x1e\xcc\x0d\x9e\x2e\xad\xec\x04\x10\x1a\x3f\xeb\x3a\xa0\xb7\x3e\x56\x50\x60\xc5\x15\x18\xec\x50\x69\xbe\xaf\xbd\x48\xda\xc0\x9d\x3f\xd0\x69\x35\x6e\x53\x98\x51\x57\x74\x65\xce\x46\xbb\xbf\xfd\xad\x35\x78\x9a\x8c\x88\x17\x28\x7c\x4f\xcf\x67\xf8\x28\xfa\xd1\x5a\xda\xcc\x1f\xc7\xc6\xa8\xfd\xde\x6e\x01\xd1\xa2\x53\x0d\xee\x29\xa3\x37\x99\x3e\x51\xe9\x5c\x44\x2b\xb7\xa0\xe9\x41\xc6\x1e\x65\xd2\xff\xd4\x03\xa2\x3a\x3a\xba\xbc\x3d\xf5\xd0\x4b\xa5\xcb\xc7\xf4\x9f\xff\x15\x47\x86\x13\x6f\xa5\x13\x67\xa3\xbd\x52\x48\xc3\x34\x01\x63\x89\xf3\xf3\xe7\xe2\xeb\x6e\xd0\xa7\xdf\x7d\xfb\xd2\xe2\x7d\x6c\xab\xc3\x60\x5c\x89\xe5\x6f\x10\x2b\x84\x92\x74\x9a\xf8\x41\xe0\x3b\x62\xb1\x3e\x11\x53\x60\xec\x46\xbc\xc4\xe3\xd2\x49\x8b\x18\x77\xec\xa9\xed\x9b\x31\x3b\xbb\x44\x8b\x54\xdb\x51\x75\x4e\xe9\x0a\xdb\xb6\x54\x19\x5f\xb2\x06\xb6\x92\x2e\xe7\xd4\xe6\x74\x8b\x8f\xd4\xab\x0e\xc3\x61\x3c\x30\x01\x07\x9e\xb0\x58\x34\x42\xcb\xdd\x28\x77\x7a\x36\xee\x1b\x5c\xda\x13\x1c\x1d\x58\x71\x39\xf4\xe2\xfc\xda\x3a\xe8\x4f\x11\xfc\xf1\xed\x2f\xfd\xa0\x71\xc8\xce\x00\x5e\xc7\x4d\xd1\x3a\x77\xe0\x05\x79\xfe\xf6\xed\x1b\x5e\x91\x58\x16\x4f\xda\x84\xfd\x69\x65\x5e\x8f\x7d\x0f\x86\xb0\x07\x6f\x11\x18\x83\x5b\xbb\x95\xe1\x32\xe1\x45\x18\x4d\x57\xc6\xab\x61\x71\xfd\x43\xf1\xc7\xec\x1b\x0e\xe7\x01\xfe\x73\x3e\x6d\x9f\x3f\x31\x5a\xbc\xd0\xad\xec\x1c\x1d\x1e\xa6\xc9\xec\xa6\xe8\x86\xa6\x32\xc3\xe0\xf8\x12\xbd\x1c\x9a\x3a\xe0\xd2\xfc\x53\xe8\x3c\x3d\x8f\x78\x5b\xa4\x15\xa1\x12\x68\xbc\x29\xf8\x56\x23\x15\xe7\xaf\xd4\xa6\x00\x4d\xb8\x6d\x37\x68\x3b\x74\xc0\x68\xfd\x6b\xfe\xa1\x19\xb7\xe3\x06\xd9\x5d\xcb\x34\xd0\x0a\xb8\xdf\xcd\x1f\x47\x7b\xfb\x8b\xbb\xe9\xf0\xbd\xbe\x19\x7b\xc6\xfa\xdc\xc2\x89\xb8\x01\xd5\x00\x0e\x05\x5f\xdd\x5d\x4b\x63\x03\x23\x7c\x47\x9b\xa2\x18\x0e\x88\x3b\x22\xa2\xfa\xc6\xff\x9c\xe3\x29\x22\x59\x3d\x0c\x2f\x52\x60\x0a\x66\x80\xb6\x77\x87\x8a\x5e\xd1\xf3\x57\x6f\xdf\x08\x7a\x4a\xa9\x6c\x6f\x86\xbe\xfc\x7e\xd0\xd3\xaf\x78\x20\xb6\x96\x90\xc5\xe9\x59\x6d\xc0\x5a\x10\x5a\xee\x5a\xf1\xed\xd3\xaf\xc4\xbf\xfe\xe9\x8f\x7f\xdc\x88\x27\xda\x5d\x01\x8e\x5a\x8f\x46\x30\x0e\xa5\x11\x88\x00\x4f\x8f\xbe\xea\x91\xea\xec\xa5\xfb\x42\xdc\x43\x04\x79\x4f\x7c\x49\x83\xfe\xdf\xe0\xbd\xec\x0f\x1d\x6c\x76\x43\xff\x70\x53\x60\x11\x18\x8f\xaa\x7c\xc7\xbe\xbd\xf0\x2d\x62\xfd\xf8\x3d\x21\xcd\x99\x0d\xc1\x7d\xd8\x2b\xd3\x97\xd9\xeb\x63\xb7\x60\x91\x14\x64\xb4\x35\x5d\x63\x6a\xb8\xd2\x83\x53\xfb\xeb\xb0\x7a\x8f\x00\x67\x69\x54\xc4\x72\x09\xb8\xbf\xac\x96\x17\xd8\xaf\x3a\xdf\xce\x53\x3a\xb5\x76\xd0\xd6\xe1\xc6\x3e\x56\x80\x8b\x9f\xed\xc0\xb0\xdf\x77\x4a\xfb\x13\xf5\x0d\xff\xf0\x07\x2a\xe9\x23\x85\xf2\x07\xe9\xab\xc7\xaf\xfd\x21\xe9\x91\x16\xae\x47\x84\xee\xa9\x62\x86\x94\x04\xbd\x15\x8f\xfd\xd9\xf6\x4f\x04\x22\x58\xff\x46\x78\x3c\x22\x47\xdb\x40\xa7\x60\x4f\xef\x43\x78\xcb\x1b\x23\x2f\xa5\x93\xa6\x7c\xe6\xff\x38\xe5\x39\x64\x5d\x2c\xa0\xfd\x08\x43\x1d\x5a\x84\xad\xc7\xed\x35\xec\x95\x56\x80\x18\xed\xdf\x46\x7a\xc8\xd7\x86\xcb\xc4\xfd\x56\x75\xb8\x9f\x71\xcc\xbd\x78\xcd\xef\x43\x3b\xec\xda\x06\x3a\xa4\x61\xf9\x38\x59\x85\xd8\x41\x5a\x24\xa6\x75\x2d\x4d\x7d\x3a\xb5\xb0\x29\xf6\x78\x1e\xa5\x83\xba\xf2\xe3\xeb\x86\xe1\x02\x31\xeb\xb8\x6b\xfd\xf9\xdd\xdf\xfe\x5a\x83\xa1\x71\xe9\xac\x77\x9d\xdd\xeb\x23\x2d\xf9\x09\xe3\xf3\xf1\x71\x6d\x22\x96\xfb\x9e\xd1\x3f\x9e\x26\xdc\x8e\x0c\x7a\x38\x80\x16\x76\x18\xcd\x0e\x02\xe9\x66\xc5\x56\x5a\x5a\xa3\x9a\x10\x65\xa7\xb6\x61\x7d\xc1\x74\x72\xdc\x22\x9a\x5a\xa5\xc1\x72\x9a\x6b\x75\xe7\x52\x78\x3f\x99\x19\xa5\x46\xec\x63\x7c\xa0\xf3\x2d\x7b\x3d\x9a\x9c\xde\x02\x1d\x89\xbe\x50\x05\x09\x38\xa4\x52\x75\x07\x4d\x8a\x50\x73\x2e\x39\x3d\xf3\x39\x44\x38\xf5\xfc\xeb\x14\x9f\x54\xb9\x05\xb1\x05\x45\x28\x32\x1f\x2d\x98\xfd\x60\x6a\x30\x88\x65\x37\xcc\xa6\x18\xa8\xbc\x34\xa3\xba\x54\x70\xc5\x62\x07\x4d\x48\x8a\x9e\x50\x19\x65\x01\x09\x1d\x72\x33\x36\xb7\xbf\xe8\xe6\x78\x33\x7e\x54\xb8\x00\xab\x0d\x84\x55\xc0\x0d\x93\x78\xb0\x7d\xb7\x37\x63\x63\x40\xed\x71\xf1\x9e\xdd\xfe\x62\x1d\x08\x0b\xad\x1f\x0e\x51\x2e\x0c\x16\xe4\x2e\x0f\x52\x39\xca\xc6\x73\xd8\x9e\xe9\x65\xd6\x0b\xe9\xec\xfe\xf6\x37\xa2\x4e\xfe\x0a\xee\xc6\x09\x3d\xec\x5a\x71\xb1\x20\xa4\x4f\x89\xe5\x8e\xfb\x20\xf0\xcc\x12\x4d\x3d\x0d\xfa\xd3\x7b\x2f\x1e\x97\x9f\xdf\xfb\x4c\x80\x69\x6f\x7f\xe9\x9c\x90\xa3\x1b\x7a\xe9\x94\xdd\xb5\xb3\xc6\xbe\x45\xba\x0f\xc2\x88\x3c\xf5\x9c\x42\xcc\x09\x68\x82\x5b\xca\x58\x66\x04\x7c\xc4\xe0\x1e\x71\x2f\xbf\x88\x88\xbc\x63\xab\x2c\xa7\x99\xf5\xce\x4f\x85\xe7\xd1\xab\x66\x68\x6c\xe9\xd9\x6a\x2a\xe1\x93\xe6\xc0\xba\xaa\x51\xae\xda\xe3\x93\x52\x97\x4f\xa1\xed\xc0\xe0\xd9\xea\xc5\x5b\x20\x6c\x67\xc5\x1f\x1a\xe5\xfe\x20\xbe\x1e\xfa\x5e\xea\x7a\xb0\x5f\x88\xfb\x97\x9e\x89\xfb\x13\x3e\x16\x88\x10\x54\x87\x27\x96\x85\x10\xd8\x0b\xd2\xbd\x16\x69\xfd\x51\x3b\x5c\xe3\xdb\xdf\x70\x63\x02\x83\x45\x5c\xc8\x46\x30\x47\xc7\xb8\x0c\x77\x11\xb7\x7f\xd8\xef\xd5\x8d\x42\xec\x28\xb6\x4a\xdf\xfe\x62\x08\x5b\x50\x53\x88\x2a\xee\x5b\xd1\xe2\x41\x77\x60\x4e\xc4\xeb\x17\x5f\x3d\x7f\x4b\xb5\x9a\x01\x69\xc8\x3a\xf4\xba\x29\x94\xbe\x94\x9d\xaa\x91\xb5\xf3\x87\xe5\x08\x77\xcd\xf8\x93\xd9\xa2\x8b\xc1\x18\xb8\x70\x34\xbf\xd0\xc0\x1a\x83\x92\x31\x17\xca\x3a\x31\xea\xe6\xf6\xb7\xce\xa9\x86\xaa\x46\x0e\x02\xd7\xa6\x97\x6e\xd7\x12\x7a\x5c\xa7\xf7\xb1\x7a\xe0\x05\x0d\xe2\x00\x7a\x19\xe2\xf7\x2f\x70\xc6\xa7\x0f\xc5\x7d\x3b\x11\x2c\x55\xaf\xac\xc5\xe3\x4f\x04\xec\x0b\x26\x94\x02\x89\x81\xfb\x15\x09\x1a\xb1\x87\x16\x09\x46\x05\x44\xc1\x6a\x22\x60\xa7\xc5\x99\xc8\x1d\xaa\x11\xa9\x88\xa7\xd0\xd5\xc9\xc0\xd2\xb9\x59\x79\x09\x4c\x53\x34\x6b\x47\xe6\xdc\xf3\x59\x91\x78\xdb\xab\x66\x64\xdc\xea\x57\x35\x39\x6a\xf4\x9f\x70\x83\xc0\x52\x25\x3b\x75\x03\x42\x1e\x0e\x9d\xda\xa5\x15\x78\xa8\xd9\xbd\xe7\x93\xee\xaf\xf3\x93\xe5\x6e\xe6\xdb\x11\x6e\x80\x1d\x77\x3b\xb0\xb6\x7c\x0e\x86\x69\xd0\x1f\x54\xd7\x5d\x0c\x7d\x0f\xfa\x13\xf1\x83\xf2\x2f\xe9\xde\x0c\xed\x09\xbe\xa7\x76\x12\x2e\x11\x96\x64\x8a\x5f\x3b\xbb\x6b\x15\xe0\x89\x25\x6e\x6e\x43\x35\xaf\x6e\x7f\xc3\x87\x12\x5f\x6a\x05\x1d\x1e\x8f\x46\x13\x83\x2b\x6a\xd9\x2b\x37\xad\x78\x4e\xad\xbf\x61\x89\x47\x8f\x64\xef\xe9\xdd\x67\xaa\xf8\xa9\x1d\x7a\x78\x57\x8c\xcc\x67\x0f\xf8\x96\x66\x78\x84\x89\x81\x99\xa8\x36\x00\x46\xa4\x62\xaf\x94\xdb\xb5\x55\x94\x86\xe3\x56\x3a\x78\xef\x48\x1a\x09\xef\xf9\x10\x4e\x12\x72\x4b\xc2\x6a\x71\x05\xbb\xd6\x42\xa7\x8b\xfe\x9a\xee\x83\x2d\x5f\x11\x75\x9b\x72\xe0\x85\x6d\x87\x2b\x12\x40\x7b\x90\x1f\x89\xa0\xef\xa1\x35\x19\xdc\x66\xb3\x29\x76\x43\xd7\xc9\xed\x80\xe7\xe2\x32\x80\x3f\x23\xa9\x03\x52\x1b\x7b\x87\xbb\x33\x6b\xbd\xbf\xae\x06\xd3\x84\x8e\x73\x01\x2c\x7e\x64\x51\x6f\xf8\xce\xb2\x5e\x5b\xd0\x3b\x45\xaa\x80\xfb\x56\x6c\xc1\x19\x89\x38\x5b\x17\x5e\xc8\xb9\x51\xba\x22\x21\x2a\x0f\xe1\x85\x26\xe6\x57\xe7\x3d\x17\x3f\x79\x35\xc1\x3b\x16\x63\x97\xd9\x57\xbc\xe7\x76\x92\xbe\xa5\x22\x6d\x3b\x93\x13\x17\x16\xa4\xd9\xb5\x4c\x7a\x15\xc5\x4f\x72\x74\xed\xbb\x44\xb6\x5f\x79\x11\xb1\x97\x4c\xf3\xe9\x8e\x32\x9f\x89\xa2\x6f\xe1\x80\xc4\x7f\x6f\x9b\xf2\x39\x09\x14\xf0\x9c\x6e\xc1\x80\x72\xc4\x89\x71\xcd\x3f\x8b\xbf\xd0\x5b\x28\xfd\x3b\xfa\x49\x61\x87\x9d\x92\x5d\xf5\x0f\xb6\x73\x09\xe6\x42\xdf\xfe\x76\xd8\x63\x53\x39\xed\xc4\x4a\x88\xfe\xe0\xca\x27\x56\xb8\x11\x8f\xae\x15\x1d\xa8\xfa\x64\x45\xee\x75\x35\x9a\x1a\x12\x22\x2a\x3e\x03\x89\x54\x8f\x2e\x9d\xd4\xc4\xf3\x66\x8f\xda\x9c\xca\xc3\xe1\x93\x86\x62\xad\xdf\x47\x29\x8f\xb3\x20\x94\xec\xa9\xe7\xcd\x96\x03\x2a\x70\x67\x2a\x26\x41\xcb\xb3\xd1\xb5\xa0\x9d\xa2\x57\x89\x2a\xfe\x8d\x30\x74\xd1\x0d\x3b\xd9\x95\x2f\x87\x0b\xd9\x15\x06\x7a\xe8\xb7\x38\x1a\x48\x35\x2b\xdb\x0e\xd4\x16\x49\xe7\xc1\x34\x74\xe7\xe7\x2f\xf9\x25\x98\x06\xb1\x36\x83\xc0\x9d\x20\x7f\x0e\xfa\xa6\x4a\x0f\x57\x78\xe2\x48\xd4\x3c\xc9\x41\xc3\x76\xa5\xf4\xd2\xb4\x9a\x44\x18\x6d\x02\x51\xc1\xc4\x2e\x31\x7b\x16\xb4\x8b\xdb\x87\x77\x07\xc9\xdd\x6c\xed\x66\x2b\x25\xb5\xf8\x72\xfb\xf0\xbe\xfd\xf2\xc1\xf6\xa1\x68\x80\x9e\x8c\xb8\x89\x48\xea\x9a\xc1\x13\x17\xd4\x3b\xe9\x2b\x06\xeb\xf6\x92\x98\xfa\x20\xd1\x27\x2e\xf9\xf6\x97\x5d\x4b\x7a\x80\xfb\xb5\x38\x77\xa4\x82\x23\x11\xce\xf2\xd4\xc8\xed\xcd\x68\x77\x6d\xa7\xe0\xf6\x3f\x89\x0c\xdc\x11\xea\xa0\xcb\x1b\xae\xcd\x59\xa4\x9f\x63\xc7\xb4\x24\xc5\xc1\x0c\xad\xda\x2a\x87\xd8\x37\xd1\xe8\xe1\xd2\x6e\x07\x52\x87\x64\x00\x4c\x55\x22\x26\xe8\xfd\x25\x44\x74\x0c\x36\xbc\x86\x60\x9d\x74\x0e\x5c\x38\xa6\x37\x23\xb7\x97\xae\x01\x1e\xa6\x38\x92\x95\x63\x6c\x80\xd6\xbd\x53\xbd\x72\x47\x2f\x8f\xdc\x02\x2b\x24\x58\x6e\x98\x5c\x4d\x10\x61\xb2\xe9\xfe\x20\x19\xce\xc4\xff\x74\xa9\x24\xf1\x54\xd8\xc8\x9f\xc4\x2b\xa5\x49\x84\x86\x3c\xe9\xc1\x0c\xdb\x69\x84\x60\x45\x2d\xb5\x26\xc2\xb9\x97\xdd\xa6\x68\xa5\xad\x46\xed\x4f\x0b\xd4\x7c\xcb\x9e\xcb\xae\x1b\xc4\x7d\x7b\x92\x0c\x8a\x06\x33\xea\x48\x92\xba\x20\xf3\x88\x32\x92\x4f\xe3\x69\xf9\x6c\x23\x48\xb9\x43\x82\x71\xaa\xb8\x7a\xcc\xe8\x84\xb8\xf0\xc0\xf2\xbb\x06\xf1\x64\x6e\xe3\xc1\x3f\x11\x17\x9d\xda\x5d\x04\xc4\x45\xf3\x25\x31\x1a\x68\xb1\x1f\xba\x86\xf1\xc9\xa3\xd1\x39\x24\x08\x69\xc5\xc3\x44\x14\xf2\x27\x5c\x39\x1e\xb8\xb5\x15\x05\x56\x6c\xde\x8c\x78\x56\x2c\x0b\x2c\xa9\x19\x6c\xcd\xdd\xd1\x98\xaf\x8f\x6f\x7b\xb8\xc9\xa7\x37\xa3\xb9\xfd\x6d\x77\x61\xc1\xdd\x90\x06\x6c\xd9\x34\xb7\xba\xc4\x01\x59\xcd\x48\x4b\xec\x86\x1a\x56\x30\x1f\xf1\xaa\xc9\xb2\x22\x18\x9d\x60\xb9\x6d\xa0\x93\xe3\x3e\xac\x69\x24\x30\x36\xb3\x8e\x33\x31\x7e\x36\x33\x69\xc5\x7c\x50\x37\xa3\x1f\x56\xac\xed\x86\xa1\xb2\x2d\x92\xa6\x8f\x53\x78\x12\x9d\xf7\x0a\x27\x8a\x77\xde\x8a\xff\x1a\x54\x48\xa2\x93\xba\x89\x6a\x15\x5d\x11\x66\x9d\x5e\x43\xbc\x75\xa7\x1d\xe2\x59\xa0\xfb\x98\x70\xd8\xd4\xf8\xed\xaf\xc6\x21\x36\xa1\xdb\x79\xa9\x24\x53\x6a\x5e\x53\xb7\x29\x0a\xbe\xd4\xee\x6a\xa8\xf6\x72\xe7\x06\x53\xfe\x78\x05\xea\xf4\xa9\xbc\x40\x2e\x6e\x81\xde\x17\xe0\xb4\x2c\xb4\xd6\x6f\x5e\xbc\x5e\x7e\x05\x64\x45\x2a\x03\xbb\xe1\x12\xcc\x35\x6f\xca\x33\xd8\x66\xfa\xa9\x1f\x90\x60\x34\xad\x7f\xcb\xe3\xa6\xb0\xba\x40\x81\xb8\x73\x40\xd8\xc6\xb2\xdb\xd0\x61\x36\x99\x45\x3f\xc7\xeb\xf1\x40\xd7\x07\x76\x6c\x92\x71\x21\xa6\xf9\x7d\x70\xf4\x56\xbc\x79\xf1\x7a\x7d\x0a\x13\x87\x95\x0e\x09\x39\xa5\x23\xeb\xc5\xef\x8f\xdd\xb5\x83\xf6\x32\x35\xe7\x25\xaa\x73\x56\x65\x53\x14\x3f\xe1\xe5\x7c\xc7\x0f\x05\x12\x58\xe1\x38\x31\x5e\x94\xc7\xde\x8a\x08\xcf\x2c\xf5\xa3\x89\xd5\x0e\x80\x73\x04\xf7\x91\xb7\x36\x12\x2c\x81\x0d\x59\x8a\x6d\xba\x86\xd4\x09\x27\x09\x63\x32\x55\xf3\x42\xd9\xe9\x13\x3e\xc4\x8f\x06\x53\xe3\x54\x87\x5a\x76\xef\x8a\x6b\xb0\xe5\x5f\x64\xa1\x87\xf2\x35\x2e\x78\x3f\xd4\x58\xe3\xf6\xbf\xd1\x45\x28\x8a\x9f\xf6\x83\xe9\xdf\x15\xdf\x59\x30\xaf\x17\x52\x08\x24\x6a\xa9\x34\x51\x5d\xe1\xef\xe2\x49\x62\x02\x12\xa7\xfc\x66\x21\xad\xf8\x16\x48\x45\x1d\x27\x0f\x33\x93\x90\xf3\xf3\xe7\x6f\x59\x3a\x7c\xfe\xfc\xf4\x7c\xd7\x76\x24\xb0\xe9\xa8\xef\xe7\xce\x1d\xec\x77\xa6\x2b\x59\xef\xf1\xdd\xb7\x2f\x8b\x37\xf2\xba\x1b\x64\x8d\x85\xfe\x4f\x2a\x7e\x0b\xb2\xa7\x51\xe2\x1f\x54\x17\x0f\xdc\xeb\x5c\x2d\x39\x22\x69\x6e\xfd\x6d\xa6\x77\xf7\xc9\x71\xf1\x48\xf1\x1a\xae\x1e\x19\xa9\x77\xbe\x15\x96\xf5\x51\x01\x69\x2f\x8b\xaf\x86\xbe\x57\xee\x7c\xec\x7b\x69\xae\x4b\xfe\x25\x7e\x1c\xad\xc4\x3d\xd8\x4b\x6b\xb1\x17\x2e\x7e\x05\xd6\xca\x06\x02\xd0\xeb\x20\x36\xf7\x9f\xbf\x6a\x07\xb5\x8b\x5f\xcf\x46\x7b\x25\xdb\xae\x78\x6b\x00\x5e\x07\xf5\x3c\xeb\x6d\xbe\x22\x24\x87\x9c\x3d\x3e\x84\x45\x94\xbe\x01\x59\xb3\xfc\xbc\xae\xc8\xfd\xb9\x90\xdd\xa1\x95\xc4\xda\x45\xc8\x0b\x7c\xd4\xe5\x68\x03\xe9\x44\x6c\x2f\xc1\xe9\xb1\x07\xa3\x90\x67\x8d\x58\x18\xc9\x82\x7b\xa7\xd5\x3d\x64\x72\xf9\x05\xce\x1b\xad\x07\xf7\x3b\x1a\xde\x7c\xa0\x65\xdb\xfd\xbe\x81\x6f\x4e\xab\x07\x79\x07\x56\xdd\x4c\x6b\x16\x15\xb7\xcf\xcc\xed\xaf\xb7\xff\x09\x24\x48\x22\x06\xfe\xe7\x82\x24\x0b\x0b\x60\x7a\xaa\xf8\xa5\xba\x6f\x63\x5f\x69\x07\xbd\x7c\x9f\xd7\xa3\x8d\x69\x6f\x7f\x65\xaa\xf6\x68\x3d\x56\x51\x85\x4a\x88\xbc\x98\x1a\xf2\xc8\x6b\x8e\x60\x36\x3f\x17\xa3\xb9\x13\xfe\xbb\x6f\x5f\x6e\x7e\x2e\x94\xde\x75\x63\x3d\x9f\x32\x68\xf1\x16\x19\xfb\x3f\xdc\xb7\x7f\xc8\x46\x31\xea\x0b\x3d\x5c\x69\x0f\xfe\x9d\xde\x02\x2e\xba\x23\xf1\x4f\xdb\x81\xf9\x22\x98\x71\x55\x4a\xef\x06\x63\x60\xe7\xa2\xa8\xda\x3a\xd5\xf7\x01\xe7\xde\xfe\x46\x94\xa9\xde\x4c\x24\x40\x22\xf8\x52\x90\xbd\xd2\x54\x13\xf4\xa2\x6a\x34\x40\xab\xb6\x00\xba\x72\xf2\x02\x74\x2e\xdf\xc0\x79\x07\x12\x98\x98\x22\x92\xfa\x93\x78\x6e\x5e\x6f\x86\xc3\x8e\x54\x1d\x4c\xb3\xa8\x99\x72\xec\xf6\x8e\x6e\x1d\xc8\x7e\x51\x39\x20\xa5\x23\x75\x78\xdb\x09\x7e\xb4\x50\xcf\x70\x2a\xab\x95\x93\x5a\x57\xcc\x58\x4d\x0b\x13\x57\x77\xda\x8f\xa5\x00\x28\x22\xe0\xe9\x4d\xf4\x52\xcd\x8c\xad\xad\x7a\x65\xa7\x0d\x22\x05\xd8\xd5\xed\x2f\x6d\xe7\x40\x1c\x63\x78\xa9\xc5\x1a\xfa\x49\x74\xc9\xcd\xdf\x8c\x0d\x0c\xa6\xd6\x38\x56\xa2\x13\x0c\x19\x19\x26\xd2\x53\x96\x79\xf3\xbb\x4b\xf2\x17\x26\x1d\xa4\x91\xe3\xde\x8b\xda\x6a\x6f\xf9\xf0\xa2\xd5\xcc\x54\x34\x40\xab\x06\x62\xbe\x97\x7e\x36\x38\x9a\x95\xfe\x86\x2b\x8d\x6f\xe5\xc7\x75\x98\x76\xe3\x9f\x0f\x8b\xb4\xb3\xc2\xd9\xd9\x0f\xf4\x14\xdf\xfb\x0f\xf4\x23\x6d\xd6\x4f\xdc\x1f\xaf\x50\xe5\xd6\xa3\xb4\x18\xde\x2b\xeb\x48\x84\xc0\xf0\x89\xde\x89\x3e\x29\x30\x7e\x5b\x37\x45\x27\xad\xab\xf0\x10\xd3\xa4\xcb\x27\xda\xed\xf1\xd5\xd5\x34\x8d\x0e\xf9\x7d\xd0\xe2\x95\x72\x4d\xa7\xa0\xb6\xb8\xc9\x44\x8e\xf6\xe2\x09\x92\x33\xee\xf6\xb7\x1e\xcc\x29\x9e\xd9\xe4\xac\xdc\x8c\xdd\xed\x2f\xd6\xaa\x06\x87\x8f\x6c\xa1\x22\x93\x87\x04\x17\x32\x45\x9b\x34\x21\xfe\x9a\xcb\xe3\x04\x8d\x9c\xb0\xcf\xa6\x98\x44\xcd\xb6\xad\x2e\xe0\xba\x7c\x09\x2a\x2a\x2d\xaf\x54\x38\x43\x5e\xd9\xff\x52\x36\x70\xe2\x65\x70\x39\x9d\x80\x7c\x12\x21\x8b\x83\xb9\xfd\x6d\x0f\xfa\x0b\x71\xdf\x16\x23\x6b\xc9\x2e\xc1\xa8\xfd\x75\xec\x81\xa8\x7f\x7a\x3f\x56\x1b\x4a\x10\x8f\x6f\xeb\x44\x68\xc2\x66\xc4\x6e\x4b\xed\x37\x0e\x4c\xc0\xaf\xb4\x45\x9e\x9f\xf6\xc2\xb8\x40\xfb\xda\x60\x86\x6c\x49\xea\xed\xaf\x98\x97\x6f\x2f\x29\xf9\x3d\xb4\x1d\x59\x58\x74\xb2\x01\x96\x6f\x17\xd6\xa9\xae\xc3\x2d\x64\x13\xd7\x48\x89\x8a\x2d\x1d\x44\xaf\xcc\xca\x24\xa8\xe2\xb1\x02\x3b\xe9\xbc\x6e\x46\x24\x94\x45\x03\xdd\xed\xaf\x16\x27\x47\x88\x80\x66\xe8\x0c\x76\x14\x2d\x39\xb8\x2f\xe4\xed\x07\xd3\x94\x2c\x1b\xd2\x35\xf7\x10\x0e\x0a\x6d\x70\x6e\xaf\x75\xe2\x99\x6b\x6e\xdf\xcf\xfe\x66\xf4\xe2\x1b\x56\xa6\x4f\x07\x8d\x24\xb8\x8c\x5d\x67\x73\xe3\x61\x67\x67\xe5\x7f\xc0\x24\x0b\xb6\xfe\xac\xb6\x44\xc4\x25\xb7\xea\x47\x05\xdd\xa9\x27\xed\x66\x97\xa9\x28\x7e\xc2\x2b\xf8\xae\xd8\xb5\x52\x37\xe0\x35\xdc\x81\x74\x66\x8b\xc8\x68\x77\xbb\x55\x5d\x5d\xfc\x75\x50\xba\x1a\xf0\x89\x52\x0d\x38\x03\xa4\xe0\xed\x27\x43\x67\x05\x33\x41\xb1\x37\xc5\xbd\x2e\x6f\xff\xef\xfd\x1e\xb4\x97\x71\x4f\x56\xb9\xc5\x7e\xe8\xba\xe1\x0a\x8c\x2d\x9f\x7a\xe1\x45\x61\x9d\x44\x9c\x53\x3e\x95\x97\x9e\xa4\x75\x33\xb1\x38\x57\x52\xba\xe1\x4a\x42\xed\x5a\x5f\xe6\x5b\x29\x46\xed\x7f\x13\x1f\xcd\xf2\x78\x96\x8e\x14\x05\x32\x04\x1b\x7a\x5b\x90\x87\x31\x97\x50\x67\xd6\x6e\xf4\xaa\x10\xdd\x80\x08\x82\x41\x58\x40\x3a\x55\x3c\x48\xe7\xc0\x68\x56\x03\xd2\x04\xea\xec\x55\xe2\x8b\xfd\x74\x30\x3d\xb7\x94\x68\xdb\x58\x75\xef\x90\x57\x0b\x46\xcc\xef\x8a\x60\xe6\xec\x4d\x9c\x97\x6a\x51\xbf\x35\xc9\x56\xf8\x8b\x6f\x67\xac\x45\x61\x61\x37\x1a\x5c\xf1\x73\xba\x9c\x2d\x28\xb7\x26\xc1\x27\xb5\xc2\x4c\x52\x9f\x68\xa1\xec\x64\xcc\x05\xba\xa8\xa1\x03\x07\x6c\xbb\x1d\xef\x43\x51\x1c\xc6\x6d\xa7\x76\xd1\x46\x3b\xdd\x62\x1b\xac\xb5\x83\x9d\x7e\x94\x2e\xce\x05\x65\xb8\xc8\xb7\xbf\xc6\x9a\x64\x7c\x01\x64\x5c\x46\xf6\x5f\x0a\xb4\x13\xb5\xbc\x19\x4f\xfc\x2b\x39\x37\xcc\x21\x11\xe1\xcd\xed\x6f\xa4\xb3\xf7\x66\x7c\x34\x50\x36\x20\x4b\x0d\xc0\xbd\x9c\xcc\x88\xe0\x8f\x80\xf8\xd5\xee\x5a\x12\xf5\x24\x74\x5c\xa4\x3d\xbc\xd8\xbd\xce\xa4\x31\x93\x85\x83\xce\x45\xa4\x7e\x67\x4f\xf0\xd2\xa4\x50\x74\x1e\x10\x93\x07\xd9\xcc\x7e\xec\x3a\x7e\xad\xbf\x1f\xba\x0e\x59\x6d\x5d\xab\x06\x0c\xb3\x5e\x0b\xa7\x89\x6e\xd8\x79\xd3\x5a\x27\x75\x8d\xa7\x61\x3c\xd4\xc8\xac\xe7\xa7\x86\xb4\xa8\xb2\x53\x6c\x32\x32\x83\x89\xfc\xf7\x64\x48\xef\x05\x0b\x09\x0b\x9e\xb6\xe0\x36\x01\x2b\xac\xfa\x48\x88\x06\x78\x3a\x6e\x0e\x16\xe4\xba\x8c\xc8\x18\x97\x90\x06\x44\x99\x8b\x20\x3c\xf6\x56\x7f\x2f\x95\xbe\xb0\xb8\x32\x2c\x75\x4e\x0d\x47\x06\x7c\xb8\x49\x70\xef\x94\x1e\x71\x31\x94\x03\xb3\x62\x96\xef\xcd\x71\xbc\x71\xce\xf6\x9a\xa5\x93\x89\x4d\x4e\x6e\x86\x73\xa9\x64\xe0\x81\x7f\x97\x8d\x50\xb4\x55\x19\xad\x1b\xfa\x80\x39\x1f\x2d\x4c\x9e\x6c\x52\x2d\x35\x75\xd9\xb5\xc3\x60\xbd\xfe\x8b\xeb\xb2\xfa\x2b\x85\x1e\x2d\x11\xa7\xd3\x5e\x2e\x90\x40\xae\xd2\xcf\xf7\x9f\xef\x6c\xb5\x1b\x8d\x01\xed\x42\xdd\x33\xaf\x69\xcf\x7a\x8a\x37\x7a\x3c\x74\x83\xac\xa7\x15\x21\xf4\x56\xa9\x1e\xd9\x7b\xa4\x98\x13\x2b\x2c\x6f\x60\x16\xf9\x32\xf1\x88\x0c\xaf\xb2\x91\xa6\x87\x2e\xb5\xf0\x3a\x4d\x94\xd7\x7c\x0a\xf5\x1d\xc7\x30\x1c\xb0\xa5\xa8\xc9\x5f\xa8\x62\xe8\x12\xc2\x34\x99\x61\x40\x9e\xb8\xca\xf1\xbb\x5f\xe7\xc9\x62\xd0\x5d\x1f\x78\x23\x8e\x80\x2c\x84\x3a\x2b\x1c\xc9\xb2\xd3\x35\x4e\x64\x36\x91\xfc\x4e\x86\x7a\x7c\x2b\xe3\xf5\xda\x88\xd4\xa0\x7e\x52\x6a\x91\x43\x82\xa2\x7b\xa3\x61\x0c\x42\x61\x6c\x20\xa8\x3e\x13\x84\xe6\x3b\xfe\xc7\xd1\x59\x2a\xff\x4e\x64\xcc\xc4\xdb\xd9\x19\x4b\x17\x7d\x86\xd6\xbf\x26\x7e\x43\xcc\x1a\x4e\x2f\xc3\xc1\xa8\x9e\x4c\x5f\xd6\x78\x44\x12\x1b\xaf\x20\x7f\x44\xf2\x12\x07\x04\xe2\xe9\xa8\x2f\x12\xe7\x24\xcf\x49\x62\xab\xd2\x5c\x97\x6f\xb8\xf5\xf0\x3b\x58\x0f\x75\x76\xea\x37\x74\x38\xd9\x69\xfb\x5b\xc4\xb0\x2f\xc3\x3d\x09\x03\xef\x80\xf0\xb2\x57\x7b\x74\xeb\x9f\x79\x82\x8f\xa5\x15\xa1\x7e\x30\xaf\x9e\x99\xc9\xd2\x34\xc9\x66\xec\x85\xde\x0f\x5e\x5d\xc9\x42\x14\x66\x71\x58\xc1\x4b\x9e\x28\xab\x0d\x44\x65\xb5\x23\x82\x63\x23\x7e\x18\x22\xd9\xbe\x1f\x8c\xdb\x4b\x7c\x98\xfe\x3c\x1f\x5f\x38\x86\xf3\x55\x5f\x3c\x0f\x91\x0c\xfd\xa4\x90\x75\x4d\x77\x86\x17\x86\xdc\xc6\x66\xd5\x5b\xa5\x6f\x46\xf6\x77\x20\x68\x58\x91\xa8\xae\x03\x55\x99\xba\xd6\x82\x3e\xaa\xa2\xed\x33\xfd\x2c\x51\x5a\x41\x35\x1b\xa8\xf7\x94\xe5\x89\xb2\x6c\x4d\xba\x59\xbc\xd0\x52\x37\x33\x87\xab\x49\x29\x1b\xb4\x5a\x99\x46\x7d\xa1\x92\x8d\xa3\xce\x90\x9d\x5e\x59\x91\xe5\x82\xd2\xf4\x1b\xc0\x05\x40\x44\xe7\xef\xcd\x11\xca\x2e\x73\xb8\xab\x89\xe9\x4b\x3e\xa6\x2b\x89\x0d\xf0\xa1\x43\x5e\x8d\x2e\x35\xae\xdf\x4b\x65\x91\x65\xef\x3a\x30\x33\xf6\x90\x0f\x56\xaa\xfb\x9d\xc4\x1b\xfe\x28\x31\x23\x18\x8f\x22\x2d\x25\xdb\x37\x2e\x5a\xd1\x51\xd0\xe5\x85\x6b\xdc\x04\x0d\xcb\xeb\xd8\xbe\xb4\xce\x0c\xba\x79\xf8\xc8\xc8\x31\xf2\x56\xe4\x81\xfa\xe7\x2f\x1f\xf8\x6f\x82\x14\x71\x71\xf4\x67\xba\x03\xe5\x70\x0b\x6e\xc6\x5e\x7c\x29\x13\xf7\xb6\x27\xe6\x06\xc6\xc6\x1b\x39\xcf\x24\xed\xe4\xf1\x46\x5c\x53\x56\x05\xaf\x22\x24\x9e\xb5\x54\xed\x8d\x19\xb6\x1d\xf4\x80\x75\x36\xf1\x88\xd3\x42\xe7\x3b\x31\x5f\xec\x0b\xb8\x4e\x24\x5c\xd1\x5f\xc1\xa6\x84\x2d\x4e\x32\xb6\x60\xfd\x61\x58\x11\x7c\x85\xf6\x88\x96\x62\x89\x99\xd2\x59\x43\x26\x69\x68\xc2\x06\xbd\x77\x3b\x9a\x78\x3c\xdf\xf8\xa6\x08\xcd\x95\x33\x0d\x04\x96\xef\x72\xa9\xbb\x3f\x59\xf1\x30\xb3\x66\x60\x36\x7d\xba\x68\x77\x9f\xe6\x4f\x02\xe6\x24\xe9\x47\x40\x8c\x61\x6e\x11\x73\xce\x1a\xee\x8e\x01\x1e\xc3\xa1\x76\x36\x34\x9b\x20\x51\x1c\x4b\x7b\xfb\xab\x21\x2d\xd6\x9a\xe3\x92\x67\x08\x26\xd9\x43\x3c\xdd\x1b\xf1\xea\xf6\xd7\x49\xb4\x95\xe2\xce\xc5\xc8\xc2\x4a\xcd\xa6\xf2\x41\xec\x39\xe8\xf2\x79\xb2\x60\xc8\x46\x93\x68\x8b\xb6\xfc\xc7\xb1\x0b\xe6\x47\x7c\x2e\xf0\xb3\x1e\xaa\xc8\x4e\x7f\x1d\x4d\x03\x74\xc6\xe2\xd0\x9e\x5a\x87\x34\x58\xc4\x00\xf9\x81\xe1\x81\x29\x36\x33\x0a\xf2\xb2\xff\x45\xbc\x25\x69\x42\xec\xaf\x70\xc3\x05\xe8\x45\x4b\x56\xbc\xc5\xf2\xbb\x1b\xf1\x4a\xca\xa2\xf8\x68\xe5\x73\xa2\x1e\xc5\x1e\x47\x8b\xac\x8e\x1b\xed\x17\xe9\x17\x7c\x68\x95\xce\x4a\xf6\xfb\xf2\x6c\xb4\x45\xa6\xb2\x25\x83\xdc\xc9\x28\x26\xfd\xe8\xe9\x9f\xf2\x71\x6a\x10\x9f\x7c\x27\xbb\xb9\x4c\x2f\x6b\xcb\x47\xd1\x7c\x8e\x28\x0d\xc2\xc1\x6d\x50\xa0\x26\x28\x05\x91\x0a\x61\xfe\x75\x2d\xae\x25\x3c\x24\xb5\x97\x45\xb2\xe0\x0c\xb4\xf8\x66\x4e\xe1\xb1\x58\x49\x76\x13\x25\x79\xfa\xd5\x50\x83\x20\x12\x4d\x9f\xb0\x03\xc8\x55\xb0\x27\xa9\xa7\xa3\x1d\xf8\x28\xb3\x22\xca\x96\x3a\xfa\x1d\x80\xe9\xc8\x5a\x9f\xb5\x40\xe9\xec\x5b\xe7\x0e\xe5\x53\xa4\xb2\x26\x6f\xac\xd3\x6f\x0e\x60\x02\x1d\x12\x86\x38\x19\xb2\xd0\x43\xc8\x8b\x93\x73\xbb\xb8\x54\xa9\xfe\x83\xe4\x2f\x3c\x85\xf8\x94\x04\x13\xbf\xd4\x59\x64\x32\xeb\x9a\x96\xf6\xa7\xcf\xdf\xd9\xfb\x3f\xfd\xf1\x9d\xbd\xf7\xf0\x0d\x18\x7b\xfb\xab\xf6\x12\x86\x70\xa7\x4f\xe9\x4c\xf2\x02\x77\x96\x95\xd5\xde\xda\x49\x4d\x84\xd4\x89\xb8\xd9\x3c\xda\x88\x2f\x71\x37\x1e\xde\xff\xe9\x4f\xef\xec\x97\x0f\xe8\xef\xcd\xf2\xfc\x78\xbb\xf6\xbb\x0d\x14\xd6\xcf\x90\xdd\x49\x5d\xfd\x2d\xb8\x17\x67\xd3\xe2\x81\x1d\xdf\x9c\x68\x6c\x82\xac\x14\x8b\x26\x24\x2e\x78\x7e\x0b\x82\x59\x82\x85\x9d\x01\x57\x7e\x83\x4f\x5b\x13\x2d\x13\x98\xba\x79\x06\x2d\xa8\x9e\x0f\x0e\xa8\xbc\x01\xec\xfe\x6e\xcb\x06\x6f\xba\x90\xd5\x62\x69\x73\x6a\x18\x50\xac\xd8\x34\xc4\x06\x1f\x2b\xc8\xe5\xff\x2f\x5e\xe7\xd6\xbd\xe1\x14\x5c\x82\xb1\x13\x05\x00\xd6\x33\x5b\x9f\x14\x99\xf1\x06\xe2\xc4\xa4\x71\xaf\x35\xa9\x95\x59\x28\x19\x12\x8b\x89\xc5\xdb\x1a\x48\xc2\x60\x04\x16\xdc\xa8\x89\x79\xd0\x9f\xac\x1c\x03\x56\x12\x3e\x99\xdc\x81\x48\x7a\x74\xf7\xb1\x50\xde\xfe\x7c\x26\xf1\x5e\x36\x1e\x1e\x8e\xc7\x1f\x34\x85\xe1\xf9\x10\x03\x94\x3c\x56\x39\xc3\xcc\x46\x9c\xb3\x75\x4b\x31\xd9\xc7\x9c\xe9\xa5\x29\x0d\x23\xaf\x3b\x5a\xa5\xb7\xe1\x48\xb5\xe0\xa4\x75\x33\x8a\x06\x6a\xc4\xa2\x27\xc9\x8b\x76\x33\x7a\xe1\xf5\xc9\x84\xcf\x2e\x07\x43\x04\x7b\x03\x2d\xe8\x9a\xb1\xcc\xdf\x89\xe1\xbc\x7d\xfa\x5f\xc8\x23\xf1\x88\x49\x0d\xe9\x49\xbc\xb7\x62\x2f\xbb\x64\x50\x5e\x9c\x2e\xbe\xdc\x3e\x0c\x37\x38\xc1\xf7\x8c\x9c\xbf\xa2\xb9\xad\xe2\x72\x24\x28\xbe\x7c\xb0\xcd\x71\x8a\x01\x76\x36\x77\x30\x7f\x5c\x8e\xad\x9b\x06\x5c\x31\x0d\x66\x81\x5e\x8e\xb6\xe5\xcf\x2a\x92\x48\x7c\x85\x40\x3c\x8b\x2d\x88\xe3\x6b\x61\x3f\xe2\xc0\x1e\xef\x34\x3d\xc3\x4c\x8c\x1c\xeb\x65\x45\xcc\x13\x66\x98\x9f\xda\x60\xea\xfc\x31\x28\xb8\x3e\xf2\x90\x87\x36\x22\xd5\x38\xc9\xc2\xad\x56\x97\x20\xc7\x5c\x50\x4c\x44\x63\x0d\x23\x4b\xa0\x0d\xd4\xe3\x0d\x51\xd0\x16\x94\x3e\x21\x51\x60\x0d\xfd\x47\xd8\xac\x25\xe6\xd4\x3c\xe1\x3b\x08\xc9\x95\xe1\xfe\xbd\x18\x21\x5d\xcc\xa4\xeb\x4f\x22\x27\x29\xa9\xbd\x8a\x68\xb9\xf2\x7b\x66\x1f\xb1\xfa\x21\x79\x47\x0d\x5e\x2f\xa9\x1b\xff\x8c\x16\x71\xab\x91\xf7\xe1\x9a\x2c\x0f\x63\xca\x0f\x3c\xaf\xc5\x04\xa2\x8d\xb4\x61\xaa\xc7\x26\x10\x9c\x33\x57\x09\x74\x03\xf2\x6d\xe1\x2a\x07\x11\x30\x39\x4d\x9d\xbd\x79\xb1\xbc\x82\x45\xec\x9f\xfb\xe0\x0b\x1d\x06\x41\xa2\x29\x71\xc9\xf2\x8d\xb4\x51\x15\x10\xe4\xc6\x93\xb0\xc4\xf8\x50\x35\xb6\xec\x8a\xf3\xe3\xb9\x71\x83\xc9\x65\xcb\xbf\xf3\x9e\x00\xcb\xe8\xb2\x85\x5a\xa5\xf0\xc3\x81\x16\xe7\x89\xc6\x94\x11\x44\xe2\x5d\x53\x4f\x4b\x33\x1c\xe8\xb0\xb4\xec\xc7\x5f\x4b\xaf\x74\xd3\xc2\x1e\x90\x9e\x0f\x9a\x62\xa2\x9f\xa4\x66\x97\x41\xbf\x9e\x91\xc5\xe2\x89\x44\x26\x2b\xdd\xf4\x89\xd3\x4a\x49\xa7\xd0\x7b\xe4\x77\xd6\xeb\x1c\x67\xba\x0e\x59\x63\xd9\xb2\x7c\x88\x03\x9b\x05\xd1\xf8\x28\x9e\x2b\x9d\x67\xbc\x24\x6f\xe6\x67\x38\xa1\x05\x57\xf6\xc6\xf7\xe3\x3e\x21\x37\x25\x96\x44\x62\x3f\xbc\xbe\x9e\x66\x0c\x83\xba\x19\x73\x61\x7a\x7a\x96\x58\xad\x6a\xfd\xc1\x09\x61\x61\x9a\xce\x5b\x3c\x1d\x65\xc2\x49\xe3\xb6\xd1\x83\x86\x49\x05\x4d\x82\xf3\x3b\x54\xd0\x1b\xae\xd4\x81\xbc\x0c\x08\x31\xd3\x23\x23\x35\x4f\xf1\x29\x52\xb8\xe8\x1d\x8a\x5f\x03\xfa\xcf\x2f\x09\xed\x4e\x16\x48\x04\x69\xf0\xb7\x20\x7b\xcb\x8a\x8f\x9a\x43\x89\xf8\xe0\x17\xf3\x48\x26\x77\x6c\x15\xab\x1a\x79\x24\x65\x6c\x21\x2d\xf5\xf3\x48\xdc\x0a\x2f\x57\xc1\xf8\xf0\x45\xf4\x44\xd8\x23\xa9\x44\xa7\x2c\x72\x33\x44\x2f\x24\x74\x04\xd8\xa9\xd5\x3b\x46\x9b\xf6\x17\xf9\xf8\x68\xe4\x9f\x87\x34\xf1\xa6\x64\xc9\x91\x8a\x3d\x7c\x52\x84\x23\x1a\xcc\x6d\x67\x9a\x52\xff\x35\xd3\x8c\x9d\x91\xa8\x9a\xe7\x31\x51\x75\xb5\x1c\xc1\xb4\x72\xef\x26\xb3\x03\xdc\x1a\x22\x58\x82\xd0\x8c\xfc\x3f\x27\x31\x19\x99\xdb\x92\xd7\xb2\x6a\x44\x03\x3d\xd2\x59\x1e\x89\x7e\x12\xdd\x69\x67\xe3\xe3\x0b\x7d\x49\x7e\x5b\x4d\xe6\x59\x9b\x03\xfa\xcd\x5a\x9f\x4e\x80\x89\x07\xce\x93\x7b\xe4\xa1\xcd\x88\x62\x3e\xa9\x9b\x31\xb6\x32\xdb\x96\x2b\x65\x2e\xe8\xf5\xcd\x4e\xd3\x4f\xb8\x43\xef\x0a\x36\xf5\x09\x36\x4a\x93\xf5\xdb\xc2\x6c\x77\xb2\x8b\xf3\x82\xc6\x27\x4a\x8b\x66\x74\x60\x16\x16\x55\x38\x69\x20\xc7\x96\xab\xdb\x5f\x5b\xcd\xa6\x96\xa3\x15\x17\xa3\x21\x46\x9b\x2e\x34\x8d\xb8\x07\x73\xc1\x5e\x15\xb8\x15\xa0\x34\x52\x0a\x6c\x1b\x1d\xc5\x2a\xc8\xa8\x23\x9e\xb8\x54\x56\x6d\x55\x17\xf4\xef\x6e\x2b\xcd\x05\x28\xc7\xe5\x58\x9c\x46\x43\xc9\xa2\xba\x11\x1d\xf6\xa5\x3d\x48\x2d\x76\x78\xac\xca\x7b\xa3\x42\x52\x44\x38\x78\xef\xee\x3d\x3c\x18\x75\x29\xdd\x97\x0f\x10\xe0\xe1\xa2\xb9\x6a\x3f\x98\x9d\xb7\x63\xc8\x0d\x7e\x5b\x89\xd4\x9d\x75\x0d\x74\xd0\x38\xff\x08\xd1\xfd\x67\x7a\x2d\xc3\x02\x1f\xd9\x3d\xd1\x45\xc1\x46\x25\x19\xcb\x7e\x30\x17\x61\x7e\x9f\x92\xc8\x7e\x52\xff\xfa\x03\xf1\x03\x2b\x45\x67\xca\x60\x1a\xcf\xd3\xc1\x5c\x90\xbd\xd6\x67\xc5\xae\x1b\x74\xdc\xc2\xa5\x8c\x98\x9d\x6e\xbf\x46\x20\xfd\x67\x16\x13\x37\x6a\x4b\xaa\xab\x3b\xc3\xa0\x51\xe5\x2f\x1f\xc8\x87\x9f\x14\x34\x54\x32\xcf\x49\x76\x00\x0b\xd9\x29\xed\x82\xfd\x83\x71\x48\x48\xd8\x70\xd1\xda\x1e\x8a\x74\x97\x89\x06\x22\x67\xa4\x0b\x37\x5f\xda\x49\x1d\x78\x09\x86\x35\x68\x5b\x69\xbc\x25\x27\xdd\xa0\x47\x14\x84\x06\xd4\x76\xd4\x0d\x17\x77\x52\x37\x31\x1a\x22\x95\x34\xca\xa9\x46\x0f\x26\x2e\xce\x0f\xac\x21\x8e\x5e\x17\x62\x13\x41\x84\x0f\xac\x88\x4b\x5a\x74\x6a\x07\xda\x42\xf9\x52\xdd\x80\xbe\x09\x3f\x8f\xb6\xc2\x60\x54\xd3\x80\xac\xe9\xa6\xe1\x7f\xfe\x57\xa8\xc7\x85\x69\x47\x41\x63\x2d\x47\x37\x54\x4a\x2b\x97\xae\x2f\x3e\x96\xa9\xd1\xa5\x8e\x41\x4a\xf0\x62\xf9\x56\x74\xf4\x8b\xf6\x8a\x6c\xef\x2a\x3a\xdf\xac\xc9\x45\xb4\x86\xbd\x1c\xbb\x60\xfa\x54\xc6\x80\x20\x6c\xf4\xe4\xa3\x2a\x56\x07\x33\x6a\x98\xcc\x05\xb3\x62\x1f\x6a\xd3\x7f\xe3\xe3\x48\xc1\x3a\x94\x65\xe7\xaa\x84\x0a\x0b\x4f\x3b\xf9\xb3\x07\xaa\x62\xee\xb6\xcb\x6d\x2b\xed\xc0\x5c\xca\xce\x47\x74\x3c\x7d\xe1\x7f\x77\xe2\x53\xa5\x83\x96\xe9\xb3\x00\x2d\x6b\xd2\x13\x05\xe0\xe0\x74\x90\x7f\xf5\x47\x85\xc3\xfe\x21\xf9\x12\xdc\x21\x3d\x11\x56\x4b\x17\xe3\x81\x45\xbd\x20\xaf\xfb\x5e\x43\xdb\x23\x8e\xf2\x2d\x92\xb4\xd9\x5e\xeb\x5d\x22\x6f\xc6\x9f\xad\x19\x34\xeb\xde\x8b\x2b\xe9\x90\xba\xb2\xe5\x23\x18\xb6\x24\x05\x35\x64\x9d\xd5\xc8\x1b\x2c\x7d\xa1\x05\xdb\x68\x39\xd6\xbd\xd0\x35\xb1\x74\x6b\xec\x74\xb0\x8d\xa2\x98\x45\xf1\x3a\x27\xc7\x9c\x74\x24\xd3\x9e\x6e\xc4\x2b\xf9\x5e\x21\x43\xfe\xaf\x9f\xff\x31\xd8\x90\x6f\x96\x2d\x75\xa0\x1b\xd7\x22\x79\xb1\xbf\xfd\xad\xd9\x4a\x13\x8d\xe2\xbd\x71\x97\x01\xb9\x6b\xbd\x9b\xe1\xb0\xaf\xe8\x04\x21\x11\xcc\x66\x5e\xfc\x8a\x10\x66\x24\x7d\x2a\xf7\x89\xf4\xdf\x8d\x6c\xbb\xa0\x04\xf4\xe7\x0b\x5b\x9f\x5d\x65\x1f\xff\x2a\x33\x08\x8b\x96\x64\xf3\x67\xe6\x1f\x30\x24\x9b\x35\xf1\x51\xb6\x64\x1a\xa0\xae\xe4\xe8\x5a\xb2\xbf\x9c\x3c\x41\xa6\xe0\x8c\x85\x8f\x18\xca\x41\x15\x63\xc4\x50\xeb\xae\x0f\xd9\xa7\xe3\x0f\x14\x91\x2a\x24\x9b\x4d\x9f\x09\xf2\x9f\xdf\x76\x23\xdc\x7b\xc8\x27\x37\x7d\x24\x62\xcb\xf3\xdb\x8b\xe5\x3e\xf6\x12\x43\x6c\x18\xe7\x87\x4b\x10\x8e\x2e\x33\x48\xc7\xc0\x12\x2d\x27\x51\x48\x84\xbb\x26\xe9\xf5\x83\x67\x2f\xde\x9e\x7e\xf7\xed\x4b\xef\x64\x77\xbc\x89\x4a\xf5\x14\x01\x8d\x9d\x9b\x89\x45\xbb\xfd\xcd\xec\x49\x41\xc4\x26\x69\xe9\x3a\x5c\x0e\xbd\x08\xb6\x13\x1c\x4b\x89\x02\x26\xc6\x29\x4d\x3d\x1d\xc0\x50\xd0\x0a\xe2\xa5\xb4\x82\xba\x64\x0e\x79\x0f\x84\x6e\xd9\xe1\x17\xaf\x15\x51\xb7\x2f\x68\x10\x4c\xb1\x73\xfb\xb3\x18\x02\xb1\xdd\x29\xae\xc2\x4e\x76\x1c\x54\x01\x8f\xb6\xf7\x16\xa4\xf8\x0a\x99\xb4\xf5\x64\x6e\xf9\x39\x39\x90\x11\x0b\xf2\x8d\xa9\x35\x98\xa9\xfd\x45\x88\x8b\x29\xc2\x2c\x9b\xef\x7a\x14\x42\x8f\x24\xef\x7a\xbc\xff\x50\x73\xb1\x7f\x07\xa9\x7c\x37\x1c\xae\xab\x4e\xe9\x8b\xf2\xeb\xb0\x9f\xb1\x28\x12\xde\xfc\xc9\x7d\x92\x7c\xf2\x32\x2d\xa2\x70\xfd\xf3\xf4\xdf\xff\xaf\xff\xe7\xf4\x2b\x1e\xfe\xb9\x33\xcd\xe9\x57\xb4\x74\x69\xb3\xb8\xcc\x4f\x12\x32\xdd\xf3\xd8\xc5\xa8\x09\x9d\x4d\xb8\x4c\x8b\x2d\xb0\x95\xc7\xfc\x43\x31\x6a\x44\x73\xde\x02\xd5\x25\x8c\x72\x56\x9c\xaa\x81\x29\xb8\x2e\x62\xbe\xa2\xd0\xfe\x41\xff\x3a\x38\xfb\x4e\xcf\xfa\xdf\x46\xb5\xbb\xa8\x9a\x51\xd5\x50\x7e\x3d\x9a\x1b\x19\x94\xda\x9e\xe4\x71\xad\xb2\x89\xd5\x70\x76\xfd\x2e\x88\xde\x49\x23\x27\x10\x62\xdc\x71\x7c\x9a\x29\x44\x72\x54\xa1\xe8\x59\xdc\x60\x7c\x07\x1c\x74\xd6\x07\x29\xe1\xb0\x36\x37\xa0\x3a\x28\x0e\xa3\x6d\x99\xb1\xe5\xde\x1f\x11\x71\x8c\x8b\x63\xf3\x93\xaf\x97\x95\x05\x56\x06\x5d\x20\xa6\xac\x7a\xef\x0c\xb6\x1c\x3e\xa2\xdb\x18\xa1\x28\x46\xf5\xdb\x14\xc5\x5e\x75\x60\x4b\x4f\x09\x14\xfe\x11\xf7\x6f\xb7\x33\x00\xe5\xb9\x33\xe3\x85\x1b\x0d\x42\x3a\x30\xc1\xc4\x59\xea\xba\x72\xb2\x29\x5f\x23\xc3\xea\x0d\x9c\x39\xbc\xac\x6c\x04\x83\x86\xe6\xc0\xfa\x06\xc1\x16\x4e\x36\xb6\x7c\x2b\x9b\x79\xc8\xdf\xc3\xd8\x75\xf3\xa0\xc0\x9d\xdc\x42\x67\xcb\x97\xf8\x5f\xd1\xe3\x38\xdd\xa0\x81\xc2\x6d\x74\x3e\xb0\x1b\x14\x3b\xf2\x6c\xb3\xde\xc3\xcd\x16\x8d\x0a\xa4\x48\xda\xad\x81\x0e\xa4\x25\xf3\x68\xfe\x83\xe6\x5d\x19\x79\x55\x7e\x63\x54\xa3\xb4\xec\x58\x55\xc5\xe5\xad\xb2\x14\x37\x9a\x58\xe8\x71\xcf\x85\xac\x9f\x94\x57\xe5\x99\xb6\xec\x40\xd0\x8b\xb5\xca\x88\x76\x24\x5d\xb7\x37\xe1\x2f\xfe\xe0\x06\x24\x2a\x4d\xd8\x9f\xc4\x84\xef\x66\x14\x8d\x19\x6e\xff\x93\x6e\xd3\x99\xa6\xb0\x84\x48\xda\xd7\x30\xd0\xdb\x64\xc7\x03\x22\x27\x0e\xa4\xbd\x35\xc3\x95\x05\x43\x32\xb1\x47\xfc\x77\x1e\xf0\xe8\xf9\xdb\x57\x2f\xff\x55\x7c\x8f\xb5\x4f\x71\xa9\x83\xef\x46\xdc\x8e\xcd\x70\x49\x8f\xe1\x55\x1a\x97\x3c\x7e\xf4\x61\x0e\xe2\x22\x92\x36\x17\x44\x5c\xcb\x08\x68\x9d\xec\x52\xb8\xce\xad\x41\xc9\xae\xe3\xf0\xa9\xcb\x4f\x6c\xae\x58\x57\xdb\x6b\x32\xe1\x0b\x46\x87\x82\x94\x8e\x4c\x09\xfc\xf4\xc7\x77\x49\x85\x60\x49\x97\x93\x9c\xcc\xe6\x80\x98\x93\x9e\x05\xd4\x78\xf8\x37\x14\x7d\x5b\x75\x3e\x5a\x37\xad\x7a\xf8\xc4\x26\x97\xfc\x95\xb7\xa3\x1d\x76\x2d\x99\x58\x06\x10\xfc\x2f\x05\xd8\x82\x34\x5b\x0a\x17\x16\x20\x0e\x06\xe8\x6c\xf0\xe8\x6c\xf9\xfd\x60\xec\xae\x95\x23\xc7\xb5\x09\x3c\xd8\x04\xbf\x93\x9a\x1c\x04\xb0\x61\x3d\xe8\x0a\xdf\xf0\x8a\xef\x21\x9b\x06\x92\xef\x5c\x20\xce\x83\xfc\x36\xd8\xf4\xf8\xde\x83\x90\x21\x1b\x26\x21\xb0\x3b\xc7\xda\x8f\xd6\x55\x5b\xa8\x06\x5d\xc9\x48\xb2\x27\xb1\xcc\x88\x29\x54\x41\xb9\xe2\xef\xf5\x16\xf6\x2a\xc6\xc9\x48\x26\x44\xe1\x52\xd8\xc4\x81\xfb\xbb\x1c\x0c\xdb\x67\x11\x27\x31\xb0\x83\x95\xb9\x19\x99\xf6\x0d\x63\x20\x76\x6e\x8b\x0f\x14\xd0\x22\x94\xdf\xb1\x74\x9f\xdb\xb8\x19\x93\x61\x9f\xc4\x81\xb1\x93\x53\x86\xd3\x3c\xc3\xe8\x5b\x0d\x62\xca\xd9\x12\x4c\x66\x81\xc9\x02\xb4\xf2\x12\xaa\x2b\xa4\x9c\xbd\x90\xbe\x7c\x3c\x92\xf3\x90\x13\xe7\xfc\x5c\xdc\x78\x79\x5d\x1b\x43\xbc\xfe\x13\xe6\xcd\x96\xf8\x34\xcc\x54\xd9\xc0\x6d\x1c\x31\xeb\x49\xec\x56\xc2\x71\x46\xca\x95\x82\x90\x4c\xd3\x64\xbd\x7f\xb0\x91\xdd\x6c\x36\x69\x9f\x51\x22\x83\x0b\xcd\xe8\x9f\x49\x0e\x7e\x42\xc3\x23\x7a\x82\x6c\x7c\x12\x41\x19\x1f\x31\x72\x02\x60\x02\x40\x3c\xd8\x88\x79\xfd\x9b\x31\x35\x8f\x6c\xa0\x05\x8f\xc1\xf6\xd2\xb3\x17\x4f\xa1\xab\xbd\x80\x33\xb4\x13\x94\x0f\xdf\xe2\x4f\x27\xad\x83\x38\xda\xc1\x94\xb8\x78\xc9\x45\xd9\x41\x57\x91\x87\x4a\x29\xa3\xd5\x79\xf8\x4a\x18\x3f\xde\xba\x74\x7f\x40\x21\xbe\xd8\x25\xa7\x43\xd6\x75\xe5\xfa\x43\xc7\x56\x3f\x3c\x61\xc2\x30\x7f\xb8\x6f\x1f\x7c\x19\x56\xe9\xe1\x1f\x12\xf8\x92\x76\x24\xa5\x32\x22\xd2\x40\xb4\xc5\x9f\x83\x11\x74\x76\x08\xf9\xd3\xfc\xe4\xf9\xf1\xfa\x37\x3a\xe6\x97\x80\x18\xa3\x8d\x85\xe9\x39\xcd\xc2\x94\x75\x6a\xdb\x15\x34\x34\xd3\x1e\xfb\x86\x6b\x65\x60\xe7\xba\xeb\xca\x0d\x7c\x0b\xfc\xf5\x7e\xac\xd8\xa3\x90\x05\xd1\x5e\x8c\x19\xf8\x07\x86\x39\xc5\xc9\xdf\xa3\x88\x29\x41\xae\x19\x7c\x96\xe2\x4a\x4e\xdd\x4d\x24\x90\xef\xe1\x09\x9d\x89\x20\x20\x65\xc9\x16\xd7\x9f\xda\x0b\x71\x27\xf0\x2e\x7b\x6f\xf4\xdc\x06\x85\x0f\x16\x52\x00\xc2\x53\x00\x82\x43\xa7\x4f\x3d\x4f\x5d\xb2\x94\x91\x96\x70\xe1\x3d\x9f\xae\xcc\xdc\x61\x61\x7e\x2b\x3c\x2a\xde\x02\x07\x36\x9f\xe2\xc2\x93\x97\xc5\x7a\xf0\x72\xdf\x46\xa0\x83\x3a\x03\xb2\xbe\x0e\x7a\x09\x3f\x0e\x96\x56\xcf\xd5\x10\x49\xa4\xf0\x84\xed\x8e\x67\x87\xf6\x6f\x30\xd7\x95\xb2\x95\xe4\xcb\xcd\xfc\x6b\x2f\xbc\x5a\x9e\x6d\x42\x41\x2f\x62\x01\x12\xad\xcb\x78\x64\x0c\x9a\x8d\x04\x26\x43\x07\xdc\xbc\xbd\xee\x89\x46\x99\x21\x20\xdf\x98\x38\xe7\xcf\x1c\xda\x45\xf5\xe2\x07\xd8\x72\x13\xc7\xde\x21\x3a\xa8\x4b\xb4\x43\x7d\xc5\x99\xcd\x7b\x5b\xae\x90\xec\xac\x98\x47\x8b\x3e\xba\x62\x34\x1b\xfc\x5b\xe9\xa6\xd2\x43\xd5\x0d\xba\x01\x13\xb6\x22\xef\xeb\x44\x5c\x41\xb7\x6b\xc1\x07\x1c\x9b\x1e\x98\x69\x0c\x6b\x7d\x25\xb2\xa7\xbc\x5b\x46\x3b\x75\x75\xd5\x26\x83\xa0\x28\xa7\xa4\xbe\xa1\x20\xe2\x3e\x2e\x0e\xf7\xc5\xd6\x11\x5e\xec\x3a\x3d\x77\x89\xab\xc1\x07\xa4\xa7\x53\x5c\x1c\x32\xb6\xf2\xe6\xd1\x29\xda\xbb\x19\x39\xac\xe9\x09\x3f\x41\x3e\xb0\x92\x8d\x37\xd3\xdf\x3b\x8f\x88\xf5\x74\x39\xd7\xdb\xa2\x43\xe7\x51\x11\xe4\x7b\x3b\x3f\xf6\x4f\xa6\xf3\x17\x74\x72\xfc\x88\xfc\x23\x17\x41\x0f\x01\xa9\x23\x2a\xb3\xed\x70\xe5\x99\xb9\x74\x7c\x97\x83\x69\xa5\xae\xd3\x71\x51\x0c\xee\xa1\xf2\x4e\x30\x74\x7f\xd2\x30\x91\xde\xb1\xf2\xc1\xc4\xaa\xd5\xf1\x01\xc7\x61\x6e\x42\x0c\x02\xe4\xb1\x67\x6d\xfa\x57\x7b\xd1\xe6\xa4\x9a\xfd\x60\x53\xf8\x02\xd9\x71\x5b\x2b\x53\x7e\x47\x92\xc8\xe4\x94\x43\x9a\x60\x27\xbc\x32\xde\x16\x0e\x27\x14\x89\x54\x9b\xf5\xfe\x3c\xd0\xaa\x53\xf7\xbc\x73\xc7\xc6\x90\xb6\x44\xd3\x52\x26\xb0\x7e\x13\xe1\xcb\x3a\x48\x6c\xa2\x08\xdc\x55\x78\x62\x02\x5f\xe4\x0f\x52\x60\x8f\x72\xa8\x89\x17\x0b\xe5\x3e\x06\xa1\x2f\xe6\xdc\x27\x6c\x77\x16\x41\x90\xc0\x2c\x9f\x12\x95\x19\xcb\x24\xc9\xd2\x4a\x8a\xad\x12\x0b\x03\x8b\x3b\x05\x3a\x09\x5f\xe8\x51\x7e\x2c\xdd\xd8\xc7\x22\x0e\x44\x79\xfb\xdf\x3a\xf2\x5e\xf3\x85\x1a\x90\x9c\xa0\x67\x23\xc6\x64\xd4\x70\xe5\xed\x2c\x88\x1f\x4d\x8a\x37\x19\x17\x9a\x94\x23\xbe\xc1\x32\x3a\x9b\x62\xf1\x79\xd7\x81\x34\x55\x5a\xd9\x26\x82\x8c\x04\x30\x32\xb6\x29\x5f\x3b\xeb\x68\x82\xa1\xce\x8e\x00\x72\x97\xab\xed\xad\x77\x3d\x1c\x40\x27\xf0\xdf\xec\xf7\xa0\x41\x64\xec\x75\xd6\xfc\x60\xa1\x4e\xe0\x9f\x91\xc9\xd2\x80\xe4\xf9\xf1\x5a\xd2\x52\x0a\x28\x28\x7f\x1c\x83\xab\xe5\x72\xcc\x2b\x40\xa4\xd1\x59\x1d\xb5\x1e\x26\xf8\xd7\x0a\x7a\xa9\x6b\x71\xb3\x68\x9c\xa9\x14\x16\x2f\x24\xda\x8a\xa9\x1d\xbf\x7b\xbc\xeb\xf3\xed\xe3\x8f\xd5\xa1\x93\x3b\xf0\xe1\x4c\x09\xe4\x34\x10\x18\x59\x2f\xbe\x29\x82\x58\xf6\xc5\x4d\x85\x84\x5b\x76\xc3\x4a\xdd\x97\xb2\x26\x83\xbb\x24\x3e\x7b\x36\x88\x79\x2d\xa5\xf7\x43\xf9\xc4\x26\xce\xf3\x6c\x04\xcc\x9d\x4e\xd8\x30\x33\x67\x5e\x69\x3f\x1a\xc5\xfa\x47\x02\xa9\xf1\x7b\xc9\x22\xdc\x8b\x01\xee\x46\x26\xf6\xed\x2c\x0b\xcc\x91\xf1\xad\xeb\xb2\xee\x9e\xd3\x68\xa3\xa8\x8a\xc7\x76\x0e\x2e\x8e\xef\x58\xa5\x80\x92\x27\xc6\x3d\x43\xc8\x11\x1d\x72\x8b\x6f\x7d\xbd\x04\x39\x73\x7c\x5e\x6e\x9c\x6e\x80\x93\xdb\xf2\x7e\x2d\x06\x3c\xfe\x71\x63\xf1\xb0\x87\x2f\xcd\x74\xd0\xc3\x77\x2f\x0c\x4b\x36\x7e\xed\x0b\x12\x25\x16\x3a\xd8\xb9\x04\x4b\x88\xa0\x81\x9b\xd5\xb8\x13\x11\xcc\x61\xe6\x2d\xa7\x77\x3d\x51\xf2\xcd\xaa\xdf\x71\x19\x27\x88\x46\x69\x98\xb7\x0f\x62\x76\x33\x8f\xf7\x41\x0a\x8e\xb7\xd7\x87\x95\xe2\x8d\xec\xba\xca\xcb\xfd\x48\x24\xe4\x85\x7f\x6b\x90\xd6\x67\x8e\x73\x03\xf2\xba\x5e\x72\x8f\x4c\xd0\x15\xf1\x10\x6b\x75\xf8\x32\xd6\xd5\xf6\x9a\xaa\x7c\x9f\x98\xc4\xd1\xe9\x5d\x1b\xe9\xa6\x07\xed\xd4\xa0\x91\x82\xc4\x4a\x4f\x0c\x4e\x4a\x3b\x3c\xc0\x33\x70\x4b\xa9\x6c\x82\x8e\x60\xe5\xe3\x86\x0e\xa8\x0f\xa5\xeb\xd6\xaa\xd3\x83\x64\x1d\xbf\x48\x47\x40\x0c\xec\x40\x3b\xcf\x63\x7e\x7d\xfb\x9b\x8f\x1b\x9d\x7a\xe5\xae\xf6\x0d\xd2\x86\x5a\x67\xbd\xe8\x6e\x7f\xd1\x0d\x85\x39\x65\x02\xf6\x43\xd5\xfb\xc1\xba\x1d\x85\x78\x73\x58\xbd\x07\x45\x95\x39\xea\x9b\xbb\xb3\xd3\xa4\xda\x15\x68\xd5\x1c\xab\x88\x77\x8d\x85\x7d\x2c\xdf\x6b\xe0\xf6\xd7\xfd\x5e\x03\x2b\xee\x13\x8f\x03\x72\x36\xf0\x3e\x02\xf2\xe1\xa2\x7a\xb5\x97\x17\x50\x4e\xb5\xe7\xd2\x42\x0f\x4f\x52\xb9\x61\x24\x71\x5c\x0b\x46\x35\xc9\xb3\xf4\xde\x95\xaf\x7d\x1c\xd8\x1c\x13\xb0\x91\xd7\x02\x11\xd4\xfe\xcb\xb3\x25\x22\xd0\x63\x5f\xf9\x15\xb0\x88\x2b\xbe\xe6\xbf\xa5\x89\x2d\xfb\xaf\x50\x57\xd2\x95\x3f\x27\x0b\x93\x78\xb0\xfc\x0b\x92\xf8\xf7\x69\xbe\x3f\x87\x7a\xc1\x85\x9c\x2b\xc4\x9c\x2a\xe7\xf8\x00\xc4\x10\xbb\x4b\xeb\x46\x66\xb1\xe3\x30\x26\x4b\xa6\x2b\x32\xd7\xfc\x73\x1c\xf8\x10\xbd\xcf\x32\x1b\x8e\xad\xb2\xf3\x8c\x06\x89\xbe\x20\x43\x8f\xf4\x83\xdc\xda\xd8\x1f\x33\xff\x1a\x06\xce\x50\x5f\xc7\x79\x7b\x7e\xdf\x2e\xaa\x19\xa0\x4d\x60\x78\xb6\x64\x16\xbc\xc9\x73\x90\x0f\x34\x7d\xb5\x5a\xd7\xbf\xd5\xe1\xb8\xa6\xb5\x66\x9b\x8d\xfb\x84\xac\xda\x97\x52\xa8\xda\xfb\xc0\xdc\x8b\x3b\x45\xbf\x1e\xd2\x59\xf3\x09\xfd\xe2\xa1\xf8\x39\x1f\xe7\xdf\xdd\x94\x1f\x78\x3c\xdb\x3f\xa7\x67\x48\xb9\xca\xc0\x3e\xb6\xe8\x4d\x7a\x98\xc0\xf9\xb8\xe6\xa7\x68\x4c\x9e\x80\x37\xb0\xc7\xe9\x93\xb9\x75\xec\xeb\x30\x50\x2a\xd1\xc0\x26\x99\x69\x0c\x21\x80\x3a\x65\xc9\x74\x9e\x85\x8e\xdf\x67\x66\x62\xbe\x34\x64\xef\x08\xf1\x04\x49\x66\x93\x39\x83\x86\xd0\xc8\x38\x44\x92\xb4\x4a\xcf\xcf\x28\x7b\x31\x92\xfa\x56\x38\x50\x5d\x90\xa6\xc6\x33\x48\xa2\xe3\x47\x93\x84\x3b\x0c\x73\x2e\xf3\x09\x03\x91\x97\x50\xc6\x54\x01\x33\xea\xc2\x93\x64\x5b\xef\x9a\x99\x7d\xdc\x0d\xdd\xe0\xc9\xbf\x3d\x76\x36\xff\x3a\x6a\x87\x17\x7f\x85\xd2\x99\x8e\xb3\x8d\x04\xc6\xfc\xd1\x63\xc8\x23\x73\xe1\x8f\x5e\xa8\x18\x4d\x8c\xb3\x8f\x3e\xe0\x26\x53\x16\x41\x1a\xb9\xac\xae\x06\xed\x61\xba\xd5\x66\x56\xac\x8e\x09\x9a\x0d\x3d\x07\x4d\x56\x39\x3a\xf1\x71\x47\x9c\x40\x0d\x44\x2b\x9c\x3b\x2c\x3d\xd7\xbb\x0a\x32\x70\xdf\xd3\x5d\xa2\xef\x04\xd9\x1e\xa4\x71\x6a\xa7\x0e\xd2\x23\xdc\x47\x80\xa7\x43\x35\x13\x2a\x97\xce\xc9\x1d\x1e\x15\x37\xd1\x77\x3f\x7f\x3d\x51\xb5\x78\xea\x26\x1d\x07\x8b\x2b\xdf\xca\x2d\x89\x3c\x18\x65\xfc\xbc\xd2\x54\x3d\x5c\x69\xa4\x39\x97\x4d\x85\xdc\x20\x37\x23\xf1\xcf\x3f\x17\xac\xcd\x8c\x4c\xa5\x11\xa9\x5e\xd3\x7f\xdc\x0d\xfd\x41\x1a\x58\x15\x5f\x5f\x82\x09\x16\xcd\xeb\xd0\xbc\x4b\x3f\x5e\x81\x8a\x5a\xb5\xb4\xd2\x4c\x9e\x1a\x7a\x9e\x62\xff\x66\xb2\xf2\x89\xb4\xcf\xfb\xda\x4a\x0b\xe5\x23\x69\x61\x3e\x06\xfe\xbf\x5c\x8e\x32\xd3\x10\x07\x51\x68\xd0\x05\xfb\x35\x19\x2a\x03\x76\xec\x9c\xf5\x74\xe5\x13\xd3\xc0\x56\x2b\x1f\x40\xc1\x5b\x14\x6d\x22\xb4\x6b\x91\x32\x73\x43\xec\xf5\x89\xe5\x97\x8a\xc8\x1a\xeb\x43\x59\x87\x71\x90\x0d\x3f\x0e\x99\x13\x81\x3d\x07\x19\x94\x81\xde\x44\xdc\xfb\xc2\xe7\xad\xf7\x60\x1a\x3f\xdd\x0f\xb7\xbe\x05\x55\xb3\x7f\x48\xe3\xad\xf5\x2e\x86\xfe\xd0\x81\x73\x5e\x09\x4b\x99\x3a\x38\xd0\xd6\x73\x12\x97\x04\x8b\xe6\xd0\x6d\x2b\x6d\x95\xe6\xc2\x2d\x7f\x7e\x62\x57\x44\x64\x48\xc9\x67\xbb\x77\x73\xa5\x12\x37\x00\xcd\x23\xd1\xe2\x47\x05\x1d\xe8\x2f\x66\x2e\x9b\x0f\xa8\xaf\x07\x48\x45\xd5\xfe\x09\xf8\x17\xfa\xc1\x24\x86\xdf\x51\xe6\x91\xb3\x5e\x26\xf6\x95\x61\x08\x35\xf2\x79\xeb\xf9\x7a\x13\xc1\x55\x8b\x20\xcd\x21\xe2\xcd\xbb\x75\xfe\x31\xba\x75\xb2\x10\x69\xe9\xee\x89\x9c\x3a\x47\xb1\xe5\xac\x34\xbe\x17\xda\x02\x4f\x65\x71\x67\xf8\xc4\xfd\xae\x8e\xee\xff\xf4\x5f\xde\xd9\xd8\x1d\x29\x4f\x5a\x13\x6e\x9f\x93\x5b\xa4\x7e\x2e\xc1\x58\x6f\x9b\x16\x1f\x9b\x0c\x22\x97\x67\x4d\x5f\x58\x16\xf7\x2c\xc8\x6e\x63\xbe\x37\x0f\xe2\xc9\x14\x37\xf0\xd9\x9a\x2c\x06\xed\xfc\x4a\xfa\x17\x1f\x8c\xc7\x3c\x31\x98\xfb\x2b\xac\x38\x39\x00\xe3\xdb\x4d\x7a\xa8\xd6\x4c\x27\x89\x57\xad\xfc\x71\x7d\x8e\x78\xce\x3c\x84\xf7\x43\xcf\x7b\x5e\xe0\xdb\xf9\x5a\x7d\xe2\x1b\xaa\xa5\x93\xd5\xd6\x90\x9f\x4b\x10\xaa\x47\x67\x94\xcc\x64\xc3\xdb\xa0\xc3\x1e\x2e\xc8\xd8\x99\x33\x5d\xe7\xf1\x54\xa6\x68\x7a\xec\x94\x16\x26\xa3\x6c\x45\x9a\x26\xca\x9a\xa4\x28\xea\xfa\xbe\x53\x17\x8e\xa2\x87\x8c\xba\xf1\x49\x98\x89\x2a\x0d\xfe\xab\x99\x9b\x48\xf4\xa0\xe5\xac\xc9\x4a\x33\x3b\x02\x5a\x9c\x8d\x0d\xe8\x6d\x17\x02\x8d\xf1\xd9\x97\xba\x22\x33\x59\xbe\xfd\xa9\xbb\x7e\xb6\x4c\x3e\x28\xf0\x94\x90\x6b\xbe\x4a\xd1\x63\x2a\xb6\x4b\xd6\x84\x1f\xdb\xb4\x67\xcf\x3e\xdc\x41\x08\x8e\x19\xd6\x05\x08\x53\x1d\xef\x36\x4b\xb4\xdc\x4b\x3d\x42\xd7\xcd\x6f\x5f\x3c\x6d\x53\xa3\xde\x47\x20\x99\x10\x93\xcd\xdc\x28\xdf\x88\x48\x1b\xfa\x47\x86\xcf\x2a\xdf\x92\x78\x03\x10\x9f\x06\x2d\x3f\x56\xc6\x7d\xfd\x96\x4a\xc5\xe5\x60\x38\x9b\xf3\x2a\x2e\x08\xea\xcc\xc9\xe4\x34\xc8\x9b\x33\x63\xae\xe4\x0a\xe4\xe8\x34\x47\x9a\xab\x5d\xd0\xed\x1c\xb5\xc7\x3a\x54\xdb\x2b\x32\x7e\x5e\x44\x03\x98\x5d\x58\xde\xaf\x9c\xc3\xf0\x0f\xc3\x84\xb7\x99\xd2\x9b\x6d\xf7\xa7\xff\x72\xbf\xfe\x8c\x68\x70\x9c\xbb\x85\x6e\x0b\x7a\x66\x1f\x46\x1a\xda\xf8\x8a\xf3\xb2\xce\xa2\x11\xc5\x77\x62\xf4\x79\x09\x6b\x69\xe7\x0b\xc9\x19\x38\xdc\x26\xe0\x79\xcf\x49\xfa\x77\x99\xde\xae\x89\x0c\x5c\x01\xa1\x68\x9d\x1a\xae\x22\x02\xe4\x2a\xc9\x79\x4d\x2e\x71\x72\x38\x59\xe5\x24\xae\x88\x2d\x80\x88\xb8\xa3\x4f\xd3\x7c\x98\xa0\x1d\x25\xbc\xdb\x14\x89\x79\x57\x42\x36\xa5\x72\xb0\x04\x60\x29\xb4\x4b\x3e\x1e\x15\xdc\xcd\x61\xea\x94\x9b\x17\xf7\x6d\x36\x84\xa1\xaa\x47\xa8\x58\x04\x83\x1b\xfa\xf4\xf6\x97\xae\x63\xd1\x97\xad\x49\xc5\x30\x1b\x0f\x85\x5f\xd4\x2b\xdd\xa4\xec\x71\x3e\xc9\xca\x8e\xdb\x16\x64\x9d\xf0\x5a\x8c\xc3\x52\x51\x3a\xdd\x50\xd5\x9a\xc0\x36\xe0\xfd\xe4\x7c\x4f\x36\x5a\xbb\x4e\x1d\xf2\x7b\x9e\xc9\xfd\xe3\x73\x9e\xc0\x31\xbb\xf3\x56\xb9\xcc\xae\x6e\xb3\xf4\x83\x48\x3f\x86\xf5\x58\x2c\x85\xf8\x34\x64\xc9\xfd\x2c\x9f\x3d\x48\x53\x52\x56\xb7\x0e\xbc\x11\x71\xfc\x18\x33\xe5\xf9\x56\x2b\x3e\xe3\x25\xe7\xa8\x65\xcb\x91\x79\x3f\x76\x1e\xc3\xe0\x89\xf5\xe1\xc6\xa5\xf5\xc9\x6d\xc5\x1f\xfe\xf2\x97\xbf\xfc\xe5\xb4\xef\x4f\xeb\xfa\x0f\x81\xea\x5a\x2c\x50\x64\x3c\xd2\x85\x3a\x62\x7e\x13\x44\x87\x9f\xa4\xcd\x10\xb7\x96\x56\x4e\xec\xac\x66\x60\xc9\x26\x7f\xbf\x48\x22\x4f\xc1\xe6\x65\x03\x17\xe6\xf6\x97\x3d\x05\x55\xcf\x4c\x3f\x88\x5c\x5f\x1c\x86\x57\xca\xda\x4b\x32\xf6\xfb\x45\xd7\x4c\x38\x33\x99\xda\x13\x3d\x98\xcf\x77\xce\x0b\x27\xdf\x3c\xe3\x98\x4e\x23\xb0\x8f\xcb\x39\xf0\x7a\xa5\x6c\x03\x6e\x51\x52\xd7\x26\x0b\x38\xf7\x33\x8f\x79\xd0\x3f\xc9\x4f\x9b\x67\x4b\xd3\x11\x44\xac\xb4\x02\x38\xf9\x24\xa6\x35\xfe\x39\x0c\xea\x5a\x77\x6b\xa7\xe4\x08\x7b\x5a\x5c\xa9\x0b\x55\xfe\xa0\x2e\x14\xfd\xb5\xb9\x82\x6e\x37\xf4\x90\x26\xce\x50\xbd\xc0\xef\x9f\x64\x00\x13\xb7\x8d\xdf\x7c\xb0\x73\x23\xbe\x31\xee\x84\xa5\x20\x7d\x1a\x06\xf8\xaf\x70\x81\x98\x97\x52\xd6\xc9\x5e\xd4\xc3\xc5\x98\xcb\xbd\x2e\xc1\x6c\xc1\x5a\x30\xd1\x6a\x70\xc3\xdd\xf9\x73\xbf\x57\xc6\xba\xea\x20\x1b\x98\x61\x1c\x24\x01\x38\x29\x29\xd1\x4e\x5c\x89\xe0\x92\xdf\x9e\xbb\x9b\x8a\x23\x6b\x47\x9f\x39\x86\x63\xe3\xad\x2c\x19\x60\xc2\x3e\x04\x12\xec\x36\x73\x4b\xa8\x09\xe5\x64\x71\x1e\x26\xe7\xb5\x09\xbf\xf8\xe9\x50\x3e\xc8\x64\x1c\x36\x4a\x75\xe8\x33\xb9\xd6\xf8\x3e\x48\x6d\x76\xdf\x8a\x28\x31\xf3\x23\x4b\xec\x57\xee\x5b\xae\x46\x47\x1d\x5b\xad\xb6\x94\xbe\x29\x95\xc7\x64\x33\x0c\xdf\xa7\x89\x86\xe9\xb1\x9f\x69\x02\xc2\x9d\xc5\x53\xbd\x00\xd3\x83\x53\x3b\xa8\x3e\x67\x67\x36\x02\x66\x56\xe6\xde\x7d\x7b\x2f\x70\x32\x74\xc4\xe3\x69\x8b\x51\xc1\x49\x6b\xef\xc3\x76\x58\x8e\xc9\xb8\x99\x76\x6e\xd5\x42\x03\x4f\xd9\x29\x77\xf3\xf1\xae\xd3\xb1\x49\xeb\x93\xf8\x26\xab\xec\x2d\x78\xa3\x07\x93\xcc\xcc\x78\x6d\x51\x84\x20\xcb\xe5\x2c\x0f\xba\x2f\xde\xf0\xd6\x5a\x9f\x59\x3d\xfd\x92\xe4\x6b\x1c\x74\xe4\x71\x78\x47\x8e\x40\x6d\x28\x61\x27\xe7\x5c\xa1\x40\x63\x70\x0c\x90\x6c\x3f\x4b\x6f\xeb\x79\x37\x28\xae\x62\xf9\x12\xa9\xf7\x3b\xc1\x46\x4d\x9a\xd6\x10\xde\x53\x44\xbd\xeb\x54\x61\x69\x96\xbe\xf8\x54\x6d\xa5\x81\xf8\x9d\x1f\xce\xdc\x0d\x65\x66\x0f\x1c\xa2\x12\x4e\xb1\x53\xa6\xf8\x4e\xcc\x94\x7e\x0a\xfa\x33\xef\x24\xb0\x99\x3a\xfc\x80\xd7\xde\x11\xb8\x09\x05\xcf\x2a\x88\x46\x75\x8e\x8c\xb7\x1e\x49\xab\x2c\x3f\x5d\x9e\xfe\x3b\x99\xf1\x88\x88\xa9\xbe\xd1\x94\x77\x3d\xb1\x8d\x4a\xc6\x16\xb4\x58\x59\x40\xdd\xd9\xd7\x99\x0d\x78\x35\xea\x68\x23\x4f\x77\x29\x71\x7d\x05\xbb\x18\x6d\x7c\x34\x10\xdb\x3e\x53\x2e\x26\x0e\xe6\x10\xd5\x31\x49\x3b\xaf\x71\x6a\x5c\xbf\x18\xe6\x7c\x20\xd1\x91\x7d\xd6\x65\x3d\x73\xc9\x50\x21\x2a\xcb\xd1\xd8\xbb\x9f\x4c\x5d\x1d\xcc\xe0\x60\x47\xba\xcd\x70\x86\xde\x84\x22\xb1\x3c\x4d\x4b\x70\xef\x25\xbe\x6b\xd9\x43\x60\x12\x1a\x0e\x06\xdf\xc1\x5d\x08\xb2\x8c\xc7\xc4\x86\xb7\x84\x6c\xc9\x38\xe8\xe1\x64\xe9\xb4\xc1\x6d\xc5\x23\x36\x25\xdb\xde\x1b\x50\x44\x69\x67\x07\x31\xb9\x28\x1c\x6d\x39\xda\x9b\xcf\xfd\x5d\x83\xb1\xe8\x66\xb3\x99\xdf\x88\xca\x4f\x05\x51\x00\x03\x9d\x9e\xef\xda\xd1\xdd\xdc\x01\x98\x3a\x69\x5e\x25\x5d\x71\xc5\xc1\x23\x1a\x2f\x0c\x8d\x9d\x4f\xf9\x25\x37\x8b\x85\x9c\x99\xd3\x12\x53\xe8\x6b\x59\x5e\xd2\xf4\x80\xae\x54\xe2\x21\x7d\x0f\xa6\x55\xec\xaa\x10\xd7\x3c\x2c\xb9\x1d\xae\x14\xf8\x45\x26\x14\xb9\x32\x8a\xa0\x42\xc9\xb8\x5d\xb2\xc1\xd2\x0d\xe4\xbc\xa6\xd4\x3e\x06\x4a\x08\xd5\x05\x17\xd3\xfe\x7e\x5c\xcb\x3c\xe6\x59\x7e\x4b\x7e\x42\x19\x59\x7b\xe1\x01\x35\x6d\xb9\x69\x1d\x0d\xfb\xe2\x02\x31\x6d\xca\xf3\xe6\xc3\x43\x3c\x61\x30\xeb\xf7\x62\xf8\x18\x07\xec\x04\x09\x7c\xf0\xab\xea\xa6\x66\x1a\x40\x14\x16\x8d\x4d\xc9\x9e\x1c\xd9\xd1\xc3\x9c\xcb\x5e\x0c\x80\xac\x18\x67\xa2\x9a\xc5\x02\x5c\xb5\xc8\x0c\xa9\x48\x37\xe0\x85\x5f\x98\x8a\x4f\x91\x9a\xd9\xd1\x89\x02\x76\xdc\x8c\x46\xfc\x10\x6a\x73\x0c\xd6\xc5\x10\x18\xfb\x06\xaf\xc6\x8f\xeb\x9d\x97\xff\x29\x59\x7c\xc7\x74\x2c\xb3\x7e\x71\xcd\x4f\x63\xe7\x01\xc5\xc4\xcb\x4d\x56\xe3\x1b\x71\x16\xc2\xee\x47\xc0\x20\x59\x8a\x19\xbf\xe3\x55\x0e\xff\x0f\xad\x06\xf1\x26\x48\xde\x70\xf2\x39\x0e\x5f\xbc\x27\xcb\xa9\xe4\x49\x8a\xef\x5e\x19\xdf\xed\x5d\xcd\xb1\x0d\xe1\xac\x55\xe1\xad\x08\xef\xa8\xe7\x70\xb5\x28\x4b\x92\x25\x63\xe6\x24\x3d\x0d\x98\x7f\xc2\x80\x92\xf6\x17\xa3\x99\x92\x00\x50\xdd\xf9\x0b\xb1\x86\x8f\xb2\xc1\x7c\x20\x38\x7b\xf2\x40\xb4\xc3\x70\x61\xcb\x1f\x60\x4b\x7f\x4c\xe5\x8d\x72\xfc\x09\x1f\xb9\xe7\xf9\xb7\xad\xb4\x6a\x57\x45\x02\xed\x99\x41\x12\x66\x9d\x4a\xf3\x0e\xa7\x11\xd6\x3b\x9d\x1e\xa1\xe9\xec\xb5\xde\xf9\xdc\xd8\xe5\x5f\x96\x8e\xed\x6b\x0d\x63\x0d\xa5\x71\xa5\x9a\xc4\x0b\x5f\x9c\xa7\xf5\x26\x19\x70\x08\x25\x98\x09\x7b\x77\x72\xe3\x63\xf8\x70\xca\x59\x0a\xe3\x46\x0a\xb9\xe4\x98\x52\x6a\x87\x6f\xa6\x6c\xff\x31\xcb\xc3\x7c\xcf\xd6\xe9\xd6\x84\xd3\x48\x5e\x37\xf2\x49\x33\x70\x18\x3e\x32\x01\x03\xe7\x6a\x42\xe6\xff\x44\x5c\x05\x43\x0e\xce\xc6\x80\xe5\x19\x89\xb0\x85\x1b\x05\xf9\x55\x93\xf5\x25\xb2\xf5\x75\x32\x46\xc3\x22\x37\x07\xc7\xb6\x04\x29\xf6\x10\x2c\xf0\x42\x09\x98\x62\x2a\x26\x33\xb7\xc0\x31\x13\xb4\xec\x2a\x62\x68\x9f\x90\x3f\x91\x1c\x11\xbf\x53\xbd\x29\x32\xfb\x34\x9a\xae\x1b\xae\x2a\x9f\x8b\x64\xea\xe6\x09\xf9\xc6\xc3\x2c\x04\x73\x12\x4c\x08\xdb\x4b\xe3\xa9\xce\x7c\xbb\x38\xe2\x09\x72\xc4\xf9\x00\xe1\x7d\x36\x40\xfa\x75\xc7\xe8\x32\xf0\x6a\x34\x5d\xa8\xc2\x35\xbe\xfb\xf6\xe5\x1d\xb0\x31\x30\xc8\x48\x41\xae\xfc\xd3\xe3\xdd\x97\x2c\x65\xc0\x13\x63\xdf\x40\x47\x7c\xa4\x8f\x7f\x64\xd5\x94\x10\xf8\xad\xdc\x06\x6b\xca\x64\xff\x58\xb5\xec\x03\xef\xe3\xdf\xa7\x6f\x8d\xdc\x5d\x70\x6e\xb0\x0f\x6c\x0b\xd5\xad\x1c\xc3\x27\xfb\xe3\x65\x1d\xb1\xa5\x0f\x6d\x54\x3a\x86\xa3\x5b\x15\x03\x56\xb1\x1c\xe5\xf7\xec\xd6\x6c\xdc\x61\xdb\x78\xd0\xe7\xd7\xd6\x41\x7f\xe7\xf6\xf9\x9a\xb4\x83\xb8\xec\x6c\x98\xca\x9f\xc3\xe4\x85\x9f\xbc\xbd\xbb\xfe\xff\xa0\x5d\x4d\x7b\xf0\xc2\xcc\xef\xbe\x7d\x79\x9a\x08\x34\xf3\xd1\xfa\x59\xdb\x65\x0b\xbc\x56\xd6\x5d\x77\x9c\x60\x54\xdb\x8b\x41\x5f\xb2\x99\xe2\x5a\x43\x61\xda\x5f\xdc\xd9\xd4\x86\x73\x58\xee\xca\xd7\x21\x97\xe5\xdd\xe0\x49\xde\xcb\x5d\x79\x96\x25\xc1\xbc\x6b\xd2\x53\x38\xaa\x44\x89\x22\xde\x74\xd2\xdd\xd0\xc1\x36\x5e\xbe\xf1\xef\xf8\x90\xff\x87\xf8\x77\x44\x9b\xff\x21\xfe\x1d\xc9\xc3\xf7\xff\x11\x04\x1e\x13\x69\x9e\x86\x35\x3e\x49\x7c\x13\xeb\x39\x2b\xe5\xb3\x15\xf9\x25\x79\x3d\x52\x06\xb9\x78\xa2\x52\x42\x65\xec\xba\xd9\xc1\xcf\x49\x1b\x24\xac\x72\x69\x03\xd1\x3f\x8b\xde\x56\xd8\x2e\xd6\x63\x72\x84\x20\x22\x14\xec\x41\xee\xa0\x7c\x81\x25\x14\xf2\x76\x2a\xcc\xfc\x82\x67\x2d\xf0\x4d\xf5\x1a\x34\x56\x20\x23\x4b\xeb\xe5\xc7\x81\x20\xf3\xba\x34\x0e\x42\xe2\x55\x79\x81\xba\xe6\xb0\x59\x59\xd3\xb5\x24\xdf\xa8\x1b\x36\xdc\x67\xb9\x27\xfe\x48\x1e\x32\x56\x21\x92\x77\xae\x1b\x2a\x8b\x8f\x59\x6e\xd3\xc5\x1a\xa0\xd9\xdd\x67\x1e\x99\x7d\x71\x93\x75\xd6\x70\xe5\x13\x23\xb6\xd2\x72\x63\x1c\x59\x01\xd9\x6a\x4a\xcf\x90\x64\xf3\x6b\x65\x6e\xf7\xb0\xd0\x8a\xcd\xe5\x54\x31\xd5\xfc\x82\x95\xf4\x7c\x84\x07\x4b\xa5\x35\xfa\x12\x8c\x2b\x5f\xb0\x63\xab\xc6\xd3\xda\xe5\x31\x12\xc6\xfe\x0a\x6b\x77\x7a\x51\x2b\xd3\xe1\x7a\xda\x84\xd6\x42\xdd\xd5\x5a\x03\xdc\xde\x24\x9b\x99\x62\xa5\xf0\xaa\xdd\x11\x3c\x6e\x39\x74\x2f\x2c\xb4\xd5\xe7\xe5\xa9\xf0\x63\xf9\xde\xc7\x90\x0b\x1d\xe1\xde\xf8\x08\x46\x69\x6c\xb3\xbb\x46\xf9\x7b\x47\x15\xec\x52\xbf\xa3\xd5\xeb\xc6\x59\x44\xbb\x05\x3c\x87\xf4\xac\x49\xea\x9d\x86\xb7\x59\xc8\x42\x3e\x6e\x6d\x73\x14\xac\xed\x3e\x9e\xd7\x34\x51\xdf\x12\x28\x0b\xab\x9f\x34\x8d\x58\x3e\x3f\x49\x39\xf7\x45\x7a\x9b\x3c\x51\xa1\x4f\x24\x79\x4e\x31\x9f\x7a\xa5\x4f\x7d\x54\x19\xef\x3b\x9e\x0c\x63\x65\xb0\xd9\xae\x52\x28\x3e\xef\x4e\x99\x07\x5f\xa6\xe0\x57\xbe\x41\x7e\x81\xc3\x3d\x8a\x97\x13\x17\x4b\xe9\x5a\x5d\xaa\x9a\xb2\x21\x25\x69\x3c\x29\xdf\xe7\xf1\xae\xff\x98\x77\xcd\xc4\x64\xab\xa6\xde\x3f\xd8\xf1\x2c\xc3\x22\x2b\xea\xea\x78\x2d\x8d\xf7\x84\xf4\x15\x7c\x42\x92\xc5\x78\xf0\x09\xf1\xb6\x98\x7c\xbd\x9b\x2c\x32\xfa\xde\xa7\x28\xd4\xf3\x0c\x3d\x6a\x32\x64\x98\x0c\x66\x28\x8e\x40\x3c\x87\x5f\x2c\x68\x61\xb2\xa9\x24\x81\x38\xdb\xb3\x4c\xd9\x2f\x56\x00\x57\x82\xb1\x22\x0e\x4e\xaa\x7f\xe4\xfd\xb9\x53\x78\xbf\xda\xf3\xfc\xd6\x8b\xa0\x79\xa7\x27\x2f\x09\x79\x5c\x07\x35\x12\x3d\x9f\xf7\xed\x5a\x73\xa9\x5e\x2b\x39\xf4\x54\x8d\xe7\xb1\xaa\xe1\xca\x04\xc7\xb4\x70\xcb\x8b\xb3\x5c\xbf\x74\xe9\x7e\xa0\xa3\xb3\xa8\x34\x33\x06\x3a\x89\x56\xe8\xfe\xf8\xff\x00\x4d\x48\x69\xff\x91\x4b\x77\x64\xd5\xd2\x93\xf1\x0f\x86\xf3\x3c\xde\xc9\x1f\xb9\x93\xa4\x8b\x18\x85\x17\x59\x3c\x69\xd3\x3c\x31\xc8\x89\xe7\xe1\x57\xb7\x9c\xef\x88\xe5\x47\x8b\x08\xa4\x88\x5f\x2e\xba\xd1\xaa\x4b\x88\x6e\x9e\xfa\x24\xd2\xe4\x93\xbf\x01\x1d\x88\x10\x89\x97\x95\x15\x74\x48\x13\x53\xed\x3b\xe6\x40\xcf\x3e\xae\xd6\xeb\x60\xad\x11\x4f\x7a\x20\x91\xa7\x30\x91\xa3\x96\xdb\x96\x17\x69\xde\xe2\x91\x13\x76\xa7\x75\xef\x31\xe6\x7b\xa5\xa1\xd3\xa0\x28\x9a\xa5\xa9\x5b\x22\x13\x26\x5d\x7c\x74\x80\x60\x94\x3e\x09\x1e\xe4\x05\xf1\x23\xfc\x60\xbc\xf5\x7f\x84\x88\x03\x2b\xcd\x7d\xf4\xb3\xb5\x8e\xee\xf3\x48\xb0\x49\x4e\x9e\x89\xab\xaf\xab\x63\x16\xf6\x79\xc6\xa3\x63\x35\x66\x59\x83\xd2\xfa\x3c\xca\x3c\xdf\xd5\xfc\x20\x64\x9d\x2f\xc7\x97\xf5\x34\xe9\xee\x93\x4e\x96\x08\x60\xb5\x8e\x8f\xda\xb0\x3c\x65\x14\x05\x9e\xc9\x9a\xf8\x70\xad\xbd\x82\xb2\xb3\xd9\xe4\x22\xeb\x36\x0b\x78\xb5\xbd\x3b\x93\x50\x18\xa4\x81\x7e\xb8\x84\xf5\x95\x5c\xae\x61\xb4\x25\x48\x64\x4a\x93\x64\x32\x73\x18\x9d\x09\x29\x33\xed\x06\xa5\x81\x9f\x82\x0e\x22\xbd\xbd\x9d\x6d\xc1\x93\xc5\xab\x9a\xda\x0b\xce\xd6\x60\x2d\x40\x48\x7e\x52\xae\x58\x36\x18\x64\x84\xeb\x47\x8a\x64\x85\x01\x61\xb3\x2c\x31\x32\x18\x88\x95\xc9\x9d\xee\x24\x30\xa0\x88\xf3\xb4\x65\x9b\x41\x4e\xf5\xa2\x58\x84\x4f\x74\x02\x38\x44\x7c\x8f\x80\xd3\xf6\x03\xf9\xfc\x73\x8e\xb3\x54\x70\x20\x2d\x5f\x60\x0a\x45\x2f\x38\x79\x1c\x4b\xf6\xbd\xfd\xfa\x37\xe7\x6f\x53\xad\x06\x21\x21\x19\xb3\x8e\x68\x64\xd7\xed\x46\x3c\x31\xfb\x29\x4f\x04\x9d\x12\x0a\x5e\x63\x01\xfb\xbb\x33\xae\x42\x9c\xe7\xb3\x51\xd5\x3e\xf7\xd8\xf4\x70\xf2\xc7\xe9\xbc\x87\xd5\x4b\x42\xd2\x1d\x83\x3d\x1e\xbf\x3d\x76\x79\x24\x56\x7b\x4e\xdd\xf0\x33\xaf\x05\x85\xea\x42\xbc\x32\xea\xc6\x5e\xb2\xe7\x7d\x1a\xbf\xfd\x87\xb5\x10\xce\xc7\x47\x17\x8e\x78\x98\xd1\x1d\x31\xdb\x17\xad\x6c\x1c\xeb\x87\x3a\x75\x09\xe6\xba\x3c\x67\xa2\x8c\x3c\x1a\x97\x0b\x92\x03\x7b\xf9\x00\xef\x33\x52\xac\x56\xf5\x63\x17\x92\xb5\x8e\xb6\x3d\x7d\x62\x40\x35\x5a\xd9\x48\xd2\xf9\x11\x9e\xe6\x92\xd8\x9b\xf1\x23\x3b\x0c\x13\x7d\x0b\xd6\x9d\xe6\xb3\x45\x56\xff\x6c\xb4\x9d\x82\x3d\xe7\x31\x21\xbb\x49\x8a\xe3\xa4\x9b\x19\xbe\x14\x4f\xa6\x28\x97\xaa\x01\x71\x0e\x17\xfc\x6c\xd3\x8b\xad\x4f\xc4\x16\x2e\x07\x23\xf8\x9c\x53\x90\xfd\xb4\xe1\x36\x78\x02\x90\x83\x00\xa8\x0c\x81\x84\x71\x1b\x88\x4b\xfa\x84\x93\x88\x18\x64\xfa\xad\xd4\xf5\x5d\xc0\x71\x86\xcf\x71\x95\xde\x4a\x7b\x91\x1a\xb3\x79\x4b\xd5\x7f\xc6\x54\x4f\xc8\x37\x90\x45\xd8\xf3\x09\x72\xe2\xb0\x30\x77\x76\x7c\xb8\xce\xcd\x41\x5a\xb9\x3e\x69\xd6\x63\x9e\xe9\x3d\xbe\x99\x6b\x00\xf6\x30\x68\x0b\xe5\x99\x76\x94\x33\x76\x01\xc1\xf6\x75\x14\xc2\x72\x4f\x31\x11\x57\xce\xc4\x41\x5e\x93\xf3\xce\xeb\xd1\xdd\x50\x94\xde\x25\xc8\x76\xa8\xaf\x43\x22\xbe\x85\x02\x85\xcf\x6d\xd4\xa2\x04\x9a\x08\xe9\xab\x67\xca\x85\x8c\xfc\x2c\xc3\x68\x80\x6d\x06\x17\xa9\xc5\x62\x88\x8e\x7a\x16\xb2\x0f\xb4\xe0\x66\xfd\xfa\x71\xae\x48\x84\xd0\x59\xac\x1a\x72\xc9\x6f\x40\x27\xa4\x26\xf3\x3f\x37\xe3\x56\xcd\x04\x5d\x7e\xe4\x1c\x66\x6e\xa2\xc1\xf1\xce\x61\x5f\x42\x69\x62\x1d\x98\xec\xf4\x29\x58\x26\xbb\x0e\xc5\x59\x14\x7d\x32\xb9\x8d\x78\x29\xa7\x28\x6c\xd1\x1d\x94\xec\x53\xf8\x9e\xfa\x19\xe0\xb5\x4c\xd3\xc2\xac\x8c\x87\x22\xc7\xd3\x51\xa5\x98\xf1\x8b\xef\xd1\x29\x15\x41\xe6\xdb\xe1\x09\x44\x0f\x4b\x30\xb3\xc4\xcb\x6b\x8f\x9e\xdf\xbc\xe4\x85\xe1\xc7\x85\x45\x91\xf8\xc4\x78\xc9\x63\xfa\xd2\xe0\x7e\xf1\x0e\x84\x60\x9c\x24\x1a\x46\x4a\xfe\x31\x38\xa9\x3a\xeb\x93\x79\xca\xed\xa0\xb5\x37\xa0\x08\xc8\xcb\x42\xbe\xf9\x24\x39\x97\x1c\x9d\x2d\x44\x22\xb2\x4c\xca\x33\xae\x67\x56\xb9\x3f\xec\x25\x61\x37\xf6\xd5\x15\x9f\xfe\xe5\xfc\x9b\xd7\x27\x7e\x9c\xef\x4f\xaf\xae\xae\x4e\x11\xfc\x74\x34\x1d\x68\x2c\xac\xfd\xc0\x4f\xc4\x97\xd0\x3f\x04\xb7\xfb\xf2\x01\xf4\x0f\x3f\xdb\x88\x57\xf8\x06\xe6\x0f\x09\xc7\xf0\x63\x83\xc2\xdf\xf3\x28\xfa\xab\x44\xb2\xf8\x37\xfc\x77\xae\x48\xf1\x3b\xc8\x91\x00\x78\x07\x29\xce\x71\x42\x31\x51\xf2\xb4\x73\xfa\x6f\x5e\x9c\xa4\x0d\xa2\xdf\x7c\x36\x71\xc4\x34\xd3\xff\xfd\x94\x92\xd6\x9c\xab\x46\x4b\x37\x1a\x08\x32\xe3\xe7\x84\x04\x88\x30\x6a\xe1\xbd\xac\xe1\x86\xc2\x4a\xf7\xe2\xfc\xf9\xd9\x1f\xff\xf5\xbf\x8a\xe7\xaf\xce\xbe\x12\xe7\x0e\xfa\x03\x74\x74\xd2\x11\x13\x74\x32\x13\x8c\xd8\x4e\xee\x2e\xd6\x33\xae\xcf\x81\xd4\x6e\xd0\xb4\x02\x2f\x76\x83\xce\xa7\xcf\x00\xec\x35\xfa\x94\x1c\x46\x27\x7d\xc4\x25\x84\x8c\x0d\x3f\x20\x82\xb5\x43\xd7\x05\x9a\x37\x3c\x4d\x14\x59\x01\x69\xe9\x40\xc8\xfd\x79\x5e\x9f\xc2\xc5\x0e\xba\xbb\x2e\x5f\x8f\x86\xd8\x7e\x5e\x1a\x2c\x0f\x07\x39\x1c\xc4\xcd\xbc\x32\x5e\x80\x0a\xf0\xdd\x20\xe7\xb7\xf2\xc5\xae\x15\x5b\x8e\xf1\x1f\x79\x62\x62\x5c\x23\x4f\xbc\x68\x82\xed\x79\x4a\x44\x09\xa2\xf7\x89\x1b\xbc\x20\x96\xb9\x5d\x35\xb5\xb9\xac\xcc\x36\xea\xd1\xfe\x74\xfd\xbb\x57\xd2\x90\x88\xfd\xc1\x5b\xd9\x4c\x21\x1c\x16\x6b\x79\x84\x9f\x4a\x3f\x2f\x5a\x8b\xbc\xe7\x1c\x7e\x8a\x23\xbc\xf2\x81\x9b\xc9\xa4\x17\x14\x64\x79\x6d\x7f\x4a\xa4\x65\x56\x37\x2e\x3c\x24\x64\x6a\x10\xc4\x8d\x09\x4d\x3c\xaf\x94\xc7\xc9\x5d\xfd\x98\xe8\x12\x27\xdf\xf1\x93\xd4\xfb\xe1\x64\xe1\x5a\x7e\x92\x98\xc0\x9e\x24\x81\x35\x4e\x3c\x87\x91\x96\xb0\x83\x6e\xfa\x98\x9f\xc4\x50\x26\x7e\x21\x4f\xbc\x37\x6d\x6a\x2c\x3d\x35\xc1\xa2\xd3\x5a\xe2\x73\xb9\xc2\x41\x85\xd5\x39\xe2\xc4\x73\x17\x20\x4f\x3d\xb3\x00\xfa\x9f\x72\x05\x4e\x66\xb3\xe7\x15\xc9\x03\xfe\x2f\x56\x84\xf5\x71\x21\x60\x01\xab\xb6\xa2\xbc\xe7\x4e\xe0\x54\xbb\x3c\x85\x82\xc0\xb7\x85\xf3\x90\xc4\xa8\x73\x3c\x8e\x35\x41\x1f\xb7\xea\x03\x27\x87\xb8\xc9\x47\x3e\x87\x9b\x41\x3f\xc4\x2c\x5e\x3b\xfb\x36\x7a\xcd\x72\xda\x03\x07\x1a\x66\x13\xb3\x79\x69\x8c\x83\xef\x9f\x5a\x92\xaa\x10\xae\x93\xa3\x65\x07\xb5\x1a\xe2\x73\x4b\xfa\xc0\x89\xad\x62\xda\x0c\xdf\xda\xbd\xec\x3a\x96\xbe\x85\xcc\xe4\x39\x81\x40\xd4\xc1\x9c\x15\x4a\x89\xe1\x05\xe9\x31\xe7\xa3\x8f\x50\x1f\x1e\x7a\xb5\x7d\x9f\x32\x7d\x5d\x7e\xe5\x31\xd6\xbc\x9b\xa5\x70\x85\xe3\xc4\x04\x3e\x47\x81\x2d\x5f\x52\x26\x60\x8a\xd4\xb3\xb4\x00\xa1\x91\xd0\x8b\x4c\x44\xd3\xdb\xf4\x3d\xa6\xd0\x74\xf4\x6a\x4d\xd4\xd2\x53\xb6\x7b\x9b\xe5\xd9\xbd\xf7\xf0\x1c\xe1\x90\x22\xa0\x7c\x1a\xcd\x24\x6c\x5f\xf0\xf6\x6c\x7e\x96\xf7\x52\x2b\xbb\x1b\x4c\xfd\x11\xfd\x3c\x66\xc8\xdf\xd1\x93\x6e\x9c\xec\xd2\x29\xcd\xda\xe7\xef\x6b\x1d\xd4\x7c\x93\xe7\x3d\xb0\xb4\x64\x41\x2f\x24\x99\xec\xe6\x9f\xea\xa1\x97\x4a\x97\x8f\xe9\xbf\x05\x85\xd0\x4a\xad\xa1\x2b\xbf\x96\x5a\x76\xe9\x01\x38\x74\xc3\x35\xa7\xa0\x7f\x4c\x7f\x27\x89\xad\x57\xc1\x62\x5a\xf7\xed\xc3\xe7\xb7\xbf\x8c\x7b\xd5\x80\xf1\xc1\xff\x3e\xf9\xf2\xc1\xf6\xa1\xf8\x21\x24\xe6\x4a\x4d\x3c\xc4\x7a\x46\x75\x4f\x7a\x72\x34\x5f\xae\xe5\x97\x5c\xcf\x13\x2e\x73\x7e\xa9\xcc\x64\x6c\x46\x2a\xd2\x46\xc4\x81\x2e\xa7\xb3\x2e\x85\x9a\x6a\x04\x7b\xf3\x45\x35\xca\x10\xa6\x47\x23\x3a\xbe\xd6\x51\x44\xb8\x11\x31\x15\x16\x63\x71\x55\x83\x66\xbf\xda\xa0\x49\x9e\xa5\x0a\xaf\x17\x19\xf5\x38\x2d\x65\xaa\xcb\x1e\xaa\x74\x57\xa6\x1c\x65\x49\x1c\xb6\x23\x73\x5b\x8a\x5b\x53\xe7\xbb\xb5\x29\xcf\x52\xc2\x47\x90\x3c\xcb\xfd\xb2\x3b\xc6\x2a\x69\x2a\xfb\xb4\x66\x9e\xcf\x7e\x59\xfb\x63\x12\xd9\x67\xdb\x9a\xa6\xa9\xa7\xa8\xb9\x8b\x26\x3f\x2a\x4f\xfd\xfa\xa6\x7b\x69\xdb\xb2\xcd\x35\x25\xd3\xa2\xde\x31\x09\xb3\x17\xbf\x2d\x5a\x9d\x5e\x0c\xed\xec\x81\x3d\xe5\x6a\x98\x52\x26\xae\x0b\x98\x93\xa4\x44\xfd\xed\xaf\x0d\x89\xde\x28\x40\xf0\x47\x64\x56\xbb\x73\xf4\xd3\xaa\xae\x6f\xf1\x87\x94\x28\x69\xae\x9e\x85\x4b\xe7\xc7\xe5\xfc\x59\x6d\xeb\xae\xbc\x3f\x35\x5e\x3d\x4e\x4c\x50\xd9\x61\x34\x3b\x28\xff\x6d\x84\xae\xa3\x7c\xbf\x69\xbc\x4f\x02\x3c\x48\x83\x27\xfc\x3b\x63\x0f\x94\x80\x9e\x0a\xbd\x6b\xb9\xf7\x22\xa7\x22\x0a\x3c\x40\x62\xf2\x4b\xa9\x3a\x4a\x1e\xcf\x41\x43\x1e\xab\xfd\xde\xeb\x5d\xd3\xa0\x21\x54\xc9\xb6\xc3\x55\x85\x7f\x51\x32\x7b\x5b\x12\xec\xb9\x93\x0e\xcf\xf3\x85\x90\x21\xbb\xc2\x04\x6c\x0f\x9d\x72\x94\xde\xa1\x7c\x46\xc1\x64\x1c\x08\x9f\xe3\x21\x81\x1a\xb5\xda\x2b\xa8\x03\x9c\x95\xbd\x93\x19\x10\xf6\xe6\x1f\x9a\xa0\x4d\x24\x17\xe4\x79\x8c\x88\x49\xd9\x88\x97\x2e\xc0\xde\xaf\x39\x12\x4d\x12\x94\x57\xd7\xe9\xd7\xb8\xd5\x29\xcc\x8f\x2c\xee\xe2\xe5\x57\xba\x7c\xf4\xe2\x35\xff\xa0\x84\x04\x49\x18\xfc\x7c\xda\x14\xc2\xd7\x8e\x87\x03\xa5\xf9\xa9\x19\xe6\x14\x57\x8a\xc5\x52\x1c\x21\xd8\x05\xaf\xee\x98\x9e\x42\x59\x3f\x59\x37\x0c\x55\x2f\xf5\xb5\x0f\x84\xf1\x84\x05\x85\x41\xbc\xe5\xaf\x93\x57\x55\xe8\x06\xb0\x6f\x6e\xed\x66\x14\x97\x0a\xba\x09\x76\x8a\x04\x4c\xdd\x4f\x84\x69\x88\x0e\x11\x72\x77\x6c\x96\x39\x3c\xc2\x17\xce\xc6\xc2\x84\xea\x6b\x9f\x76\x85\xc9\xd5\x00\x51\x1b\xb9\x77\xe5\x13\xed\xae\x46\xb3\x8f\xa5\x07\x03\xa1\xda\x1b\x03\xa7\xf3\x4a\xe4\xe6\x9b\xb8\xf6\x86\x72\xd9\x82\xac\xcb\x69\x6b\xa6\xed\x48\xec\xaf\xee\x5b\xc4\x06\x6e\x0a\x73\x9c\xb7\xcd\x97\x84\xf2\x38\xf3\x4d\x71\xf0\xde\x65\x13\x9a\x1c\x87\xc9\xcf\x30\x78\x28\xe1\xfd\xf5\xbe\xa0\x76\x46\x5b\x73\xb6\xae\x69\xec\xa9\x83\x39\xde\x9a\x9a\x68\xe9\xce\x07\x03\x25\x11\x23\x4b\xb0\x66\xb1\x87\xcc\xed\x2f\x93\xcf\x81\x67\xe9\x2f\x83\x6b\x69\x48\xad\x1c\x7b\x72\xb2\xf1\x59\x7e\x65\x13\xd2\x40\x86\x2f\x24\x5f\xfa\x51\x41\x97\x41\x1f\x49\x7b\xa7\x29\x75\x0c\x1b\xd9\xcc\xb3\xe9\x80\x8e\x71\x9a\x1a\x0e\xf4\xf9\xfd\xd1\xa9\xa7\x0f\x6c\x28\x9b\x3d\xaa\xa1\x38\x73\x03\x4c\x76\xd8\x67\xf4\x88\x99\x3c\xe2\x87\x6e\x90\x48\x58\x52\xf4\x56\xfd\xdf\xff\xcf\xff\x6f\xe5\x28\x25\x59\xb1\x42\x30\xf5\xb5\xc3\x95\x54\x08\xeb\xa1\xe8\x25\xe1\xa7\xc3\xdb\x88\xb7\x4a\x53\x1a\x3c\xed\x23\xfc\xc5\x67\x88\x39\x2d\x6f\x7b\x17\xcc\x25\x0f\x66\xa8\x47\xca\xd6\xa2\xc9\x10\x5c\xba\x9b\x90\xfa\x9d\x4d\x80\xe2\x72\xcc\xfd\xc2\xe3\xa8\xc6\x6d\xa7\x6c\x1b\x59\xb9\xf9\x01\x9b\xce\x2f\x25\x89\x4d\x6f\x55\x62\x1b\x9f\x1d\xc2\x19\x07\x29\x56\x2e\x94\xe7\x79\x02\xe4\xe3\x7c\x92\xf1\xcd\xcf\xc0\x91\x3e\xf8\x20\x44\x78\xff\xd4\x92\x0a\x08\x48\xc4\x8b\xbe\xa5\x9d\xbd\xfe\xcf\x94\x3b\xcd\x44\x45\x77\x26\xb2\x9d\x75\x3b\xd9\x2d\xf0\x00\xef\x7c\xb8\xe7\x17\x29\xf7\xdc\x25\x7a\x2d\xb4\x93\x50\x69\x24\x14\x5b\xd2\x68\x8b\xc6\x7c\xa4\x85\x78\x3b\x93\x54\x98\x21\x90\xc2\x34\x7e\x1f\xe2\xcc\x96\x8f\xc3\x5f\x45\xf1\xd3\x60\x9a\x77\x05\x29\xac\x29\x8f\x08\x2b\xb7\xa9\xa9\x79\x66\x62\x82\xda\x8f\x5d\x97\x81\x7e\x3f\x74\x5d\x88\x1d\x0b\x46\x1c\xaf\x99\x66\x8e\x7d\x36\x3a\xf0\x94\xe8\xe5\xa0\x33\x58\xca\x52\xa3\x6b\x4a\x15\x1b\x22\x9d\x1d\xcc\xed\x2f\x8d\x95\xfd\x26\x24\xe8\x1a\x4c\x93\x27\x6b\x9e\x5c\xd1\x29\x6f\x57\x70\x5c\x4e\xf3\x0e\x15\x07\x18\x0e\x1d\x50\x6e\x6b\xf2\x45\x56\xfa\x52\x39\x24\x68\x7a\x18\xf4\x24\x0f\xc6\x0e\x39\x45\x50\xe2\xfc\x53\x50\x96\x92\xaa\x87\x7e\x0b\x86\x2c\x07\xbc\x8f\x91\xff\x60\x12\xfb\xe1\x32\x4b\x57\x99\xe4\xd3\xc0\xf6\x42\xbe\x77\x90\x7d\x32\x68\x5c\x9f\x65\x7c\x0e\x84\xf7\xc8\x17\x64\x4f\x72\x6a\x2a\xba\x03\x32\x2c\x30\xc5\xa0\xcf\x49\xfe\xa0\xac\x38\x67\x4f\xad\x29\x24\x56\xb0\x8f\x97\x7e\x58\x97\x3e\x39\xa7\x9e\x7a\x8b\x48\x6c\x30\x63\x8f\xbc\x23\xc7\x12\x0d\xb9\x88\x7b\xaa\xf8\x67\x86\xcf\xf2\xf2\x91\x5e\x8a\x12\x33\x3c\x62\x0f\x6b\xd5\xb0\x3e\x71\xdc\x83\x97\x8f\x87\x6e\x89\xe7\xfa\x73\xb1\x96\xf7\x31\xdd\x6a\xab\xb3\xcc\x8f\xc1\xae\xf8\x12\x0c\x27\xc7\xf9\x40\xfe\xc7\x45\x53\x1f\x93\x01\x92\x9a\x9c\xd6\x38\x8e\xeb\xb1\xf7\xd7\xd3\x47\x93\x51\x46\x5a\xfb\xef\xf7\x90\x8f\x37\x6d\xed\x8a\x65\xfa\x4d\x72\x7b\x5a\xfa\x3a\x75\xc3\x8e\xbd\xeb\x49\xeb\x97\xe9\x56\xff\x6e\x37\xa8\xbc\x42\xc4\x80\xd9\x6a\x66\xa2\x82\x3c\x24\xf1\xa4\x3c\x62\x77\xaa\xc1\x34\x1f\xf0\xa6\xaa\xa7\x04\xc6\xb5\x02\xf2\x9f\xda\xc2\xcd\xed\x6f\x0d\xeb\xf5\xb3\xcb\x2f\x47\x8b\x7c\x58\xc6\xda\xf8\x01\xcb\x4b\xe9\xe4\x64\xf1\xf3\xc6\x0c\x7b\xd5\x6d\x55\x57\xa7\xf6\x06\x53\xe4\xc4\xac\xd9\xbb\xfd\xb7\x97\x46\x93\x59\xe5\xa3\xf6\x92\x21\x4b\xb8\x37\x5b\xfc\xa8\x3a\xd3\x32\xcd\x46\xc8\x8f\x5b\xb0\x29\x4c\x1e\xb3\xc9\xe8\xfb\x1f\x49\x6c\x7e\xc4\xae\x6d\x96\xe1\x7c\x65\xa0\x88\xc7\x56\x52\xe9\x1f\x9d\x58\xc4\x7b\x2b\xab\x71\x7c\x72\x1f\xb6\xfa\x5a\xb3\x74\x4a\x84\x51\xec\xae\x4a\xbb\x9e\x2a\xc5\xa6\xd5\xc9\xdc\x41\xbc\x06\x6f\x7e\xe4\x72\x35\xde\xa6\x28\xfc\xe3\xb0\xf1\xff\xb7\xea\x50\x1d\xc9\x58\x4e\x28\x27\xbc\x21\x48\x82\xee\xdd\x17\xb1\x3a\xfb\x70\x51\xc4\x29\x4f\x98\xcd\x3e\x05\x64\xfc\x86\xdd\xb2\x70\xeb\x40\x4f\x30\x54\x0a\xfe\xeb\xbc\x38\xd4\x4d\x5a\x9f\x37\xc0\xff\x57\x66\xe8\x20\xbe\x73\xd6\x0c\x5d\x07\xd3\x18\x67\xc1\x80\xf3\xaa\xb1\x56\x2c\x67\x23\xbc\x34\x3f\xb4\xff\xd0\x81\xbc\x04\x76\x72\xe7\x28\x5e\xbe\xdc\x3f\xcd\x31\x03\x94\x8d\xab\xe5\x99\xaf\x64\x33\xbf\x98\xd7\xd2\xc3\x95\x77\x4c\x8d\x2f\x39\x3f\xe5\x9b\xbf\x0e\xc8\x44\x83\x72\x06\x5c\x78\xdf\x17\x63\xe0\x52\xa4\xd1\x42\xf6\xb8\x97\x60\xc1\x67\x8c\x5b\x7e\x9d\xa5\xf4\xa5\xa7\x8c\x8e\x6e\x9e\xd6\x58\x69\x8a\xb7\xc0\xf9\x9b\x28\xd9\xe8\x14\xc4\x87\xdb\xcc\x12\xd6\xe5\x79\xea\x56\x20\x8e\x76\x6b\x49\x84\x72\xbc\x73\xcf\x7a\xe4\x9e\xd0\x61\x0c\x14\x61\x25\x8c\x81\xbc\x1d\xf2\x11\xa4\xdf\x8f\x8e\x80\xd4\x75\xd4\x17\x59\x7c\x79\x77\x09\xba\x6d\x2b\x83\x63\x51\x2b\x42\x1f\x31\x89\x9d\x8f\x31\x64\x80\x4d\xfb\x6d\xa5\xf3\x82\xda\x05\x59\x64\x37\x47\x9e\x60\xfe\x48\x27\xd9\x2e\x88\x96\x24\x91\xf5\x96\x88\x54\x62\x57\x53\xaf\xc9\x14\x71\x64\x33\x5a\x17\xf1\xa4\xae\x23\x6b\x69\xd3\x32\xf4\x12\xa6\x1a\xc8\x4d\x9c\x63\x3f\x91\x9c\xfc\xf1\xee\x37\x3c\x57\x5c\x71\x8d\x90\x43\x11\xc9\xd0\x74\xf5\x22\x7a\x0e\x9b\x5c\x13\x8c\xa7\x76\xb3\xde\x33\x91\xfe\xa2\x55\x8f\xfb\xd7\x1a\x4d\xa1\x68\x85\x13\x37\xfd\x7a\x1a\x0b\x11\x72\x1d\x47\xa4\x08\x72\xd7\x90\x2b\x5e\x91\x96\x22\x3a\x19\x7b\xfb\xb5\xdc\x77\x2f\x78\xb1\x24\xb3\x4b\x9c\x10\x94\xa9\xef\x78\x3d\x96\x03\x9d\x8c\x0b\xd3\x76\x52\x1c\x30\x3f\x37\xf3\x43\x19\xb6\x3f\x41\x21\x71\xf7\xbf\x48\x43\x15\x04\xea\x1c\x6b\x9e\x7e\x08\x75\xe4\x28\xe3\x63\xc7\x90\xe3\x94\xdf\x35\x8c\x0c\x89\xe4\xc8\xe3\x63\x47\x93\x62\x97\xf5\xb1\x64\xc7\x22\x0c\xec\x30\xb2\xfe\xca\xe3\xaf\x39\xde\xb8\x19\x57\x86\x9e\xa9\xf7\xc2\xe6\x25\xfc\xda\xa2\x46\x44\x1c\x64\xfa\x4d\x1c\x65\x6a\xfa\x9d\xa8\x09\x12\xe1\xf7\x66\xb3\x99\x5f\xa0\xd8\xcb\xf5\xac\x8f\xeb\x95\x7b\xe4\x2d\xd5\xc9\x8d\x72\x7a\x29\xa7\x16\xf5\xa0\x49\x22\xc0\x8a\xf9\xc3\x30\xf3\x55\x20\x11\x12\x9d\xe9\x14\x77\x06\x89\xd3\x22\x49\x79\x1a\x49\x2a\x91\xc5\x59\x71\x33\x62\xd1\xa6\x28\x7e\xa2\xfd\x7c\x57\xd4\xd2\xb6\xdb\x41\x9a\x3a\x4d\x27\x9c\x07\xea\x28\x38\x66\xe5\x8d\xf4\xbc\x4c\xc6\xce\x17\xc7\x79\x63\x39\xba\x16\xb4\x53\x9e\x4f\x39\xf3\x3f\x29\x7e\x03\xa9\x0e\x88\xfe\x6c\xca\xaf\xe9\xbf\x91\x55\xb8\x85\xf7\x69\x29\xd9\xc5\x9a\x02\xaa\x28\x8f\xd3\xfb\x41\x2b\xf2\xae\xe0\xff\x95\x6e\x8a\x79\x54\xbc\x82\x22\x9b\xd1\x6f\xd6\xa8\x17\x6e\x70\xb2\xf3\x32\xff\x2f\xc4\xfd\xba\x98\xa6\xbc\xd9\x8e\xaa\xab\x39\xcc\xdc\x23\xfc\x33\x35\xba\x4b\xc0\xe4\xe1\x50\x5d\x82\x29\xcf\x0e\x87\xce\xcf\x86\x42\x2c\xe5\x50\x8d\x72\x95\x2f\x25\x13\xa1\x15\x88\x61\x02\x18\x56\xbe\xf3\x70\x9c\xea\xc1\x0f\x07\xff\x5c\x7c\xf7\xba\x16\x86\xd8\x79\x8d\x4b\x84\xb1\x5e\x59\xb2\x2b\xa3\xda\x24\xf9\x3a\x04\xcb\x53\x64\x49\xa3\x11\x6a\x5a\x9d\x56\xbd\x62\x8b\xe0\xb0\x07\xbc\xdc\xa4\x87\x19\xed\x5a\x5f\xbc\x84\x64\xa3\x49\x8a\x9d\xad\xd4\x17\x8c\x0e\xb6\x24\x62\xdf\x3e\x14\x53\x2c\x99\xa9\x2c\x3f\x49\xe9\x97\x23\xba\xee\x14\x24\x7f\x17\xd2\x8e\x7c\x2a\x7a\x97\x96\xfa\xbc\xf3\x79\x2f\x67\x17\xcb\x9e\x83\xe2\x30\x2d\x0b\xee\x5a\x53\xc9\xe4\xb8\x95\x97\xb2\xc9\xe9\x70\xa3\x64\x47\xa1\x2e\x6b\x95\xb7\xfe\xd4\x7b\x41\xa6\x65\xec\xf2\x9b\x4f\x8d\xc5\x9b\x69\xd9\xcb\xa1\x51\xfa\x94\xb4\x0d\x79\x93\x81\x03\xca\x9a\xcc\xe2\x8e\x26\x8d\xc8\x6d\xbe\x88\xd1\xea\x3c\xab\xee\x03\xee\x64\x0b\x15\xc8\x8d\x51\x37\x76\x59\xe3\x4c\x93\x47\x19\x6c\xd6\xce\x1a\x8b\x39\x26\xd1\x61\x28\x5f\x85\xb5\x57\xca\xed\xda\xf2\x07\xd8\xb5\x16\xba\x75\x18\x33\x22\x36\xb1\x21\x2c\xf4\x04\xb2\xeb\x40\xea\x6a\xd4\x5b\xa5\xeb\x6a\x40\xfc\xe3\x03\xfa\x45\x47\x3d\x10\xdf\x20\x1e\xb2\x2c\x59\xd2\xac\x55\xbb\xa3\x7e\x24\x12\x28\xe5\x95\x9e\x35\xa6\xb9\xb5\x53\xb2\x1f\xb1\x21\xe4\x4f\x62\x90\x35\x35\xed\x09\x0f\xa5\xc9\x44\x4a\x4e\xec\xb6\x2d\x1f\x4f\x7e\xa0\x10\xce\x50\xa4\xaf\x3e\xa6\x85\x7c\x90\x89\x5b\xa9\xb7\x87\x00\xbd\x1e\xdb\xf5\xf8\x30\xe9\x51\xc4\xe7\x51\x5d\x86\x74\x5f\x89\x1b\xdf\x19\x7f\xb8\x63\x90\x59\xfd\x7c\x78\x2b\xed\x7c\xc4\xba\x11\xd1\xa1\x1b\x7e\x73\x17\x0d\x11\xd2\xb1\xb7\xbf\xb8\x1b\x16\xb3\x23\x95\x39\x18\xe0\x88\xf5\x0d\x59\x65\x03\xd9\xfa\x9f\x06\xcd\xe5\xf1\xa1\x67\x3d\x1d\x1d\x7a\xd2\xe3\xc9\xbc\xcb\xb4\x9f\x8f\x5d\x77\x7c\x3c\x9a\x9d\x9f\xde\x33\x69\xb6\xb2\x01\xf1\x15\xf2\x25\x3b\x17\x62\x1b\x66\x54\x8f\x5c\x3b\xff\x69\x2b\x71\xe8\x2b\xad\x79\x23\xb6\x71\xef\x03\xef\xe6\xa4\x60\x2a\x12\x1b\x6d\x88\x37\x96\x8e\xd6\x00\x05\x7d\x92\x5d\x57\x59\xdb\xb2\xb5\x13\xa7\xe8\xdb\x58\xdb\x3e\xe0\xdc\x9f\xea\x06\xc8\xd2\xc4\xfe\x81\xa2\x39\x49\xdd\x01\xd2\x2c\x9f\x9e\xed\x5a\x37\xea\xe6\x8b\x0c\xaf\xd7\x0a\xa2\xe5\x26\xbb\x93\xb1\x4f\x15\xed\x60\xcb\xaa\x4d\x5a\xdf\xcf\xee\x1c\x46\xbe\x5f\x79\x50\x9c\xaf\xe1\xda\xae\xed\x07\x0e\x8e\x6c\x4d\x8d\x62\x11\xf3\x6a\x07\x1c\x89\x2b\x8b\x69\x05\xe2\x60\xe0\xd4\xc0\x0e\xd4\x25\x9c\x08\xe6\xd8\x88\x66\x3d\x0c\xd6\x85\x0f\xde\x39\x84\x78\xc1\x05\x37\x79\x47\x5f\x89\x54\xf3\xa3\x3b\x61\x8d\x70\xd2\xc1\xea\x01\x9c\x1b\xae\xa6\x63\x50\x5a\xb9\x7f\xf0\xb2\x1d\xbb\x6a\xb8\xbe\xd8\xac\x9a\x18\xd6\xbb\x7b\xfc\xb8\x4b\x87\x27\x26\xed\x26\x0e\x83\x79\xfa\x23\x1b\x9d\x0e\x04\xc9\xe0\x84\x98\xa1\xa8\xa1\xd5\x78\x20\xfa\x8b\x63\x88\x9e\x7e\x77\x98\x91\x60\xbb\xd1\x18\x24\xd1\x9b\xc1\x0c\xa3\x53\x9a\x23\x9d\x52\x38\xb2\x67\xa1\xc8\xae\xc0\xf7\xd0\x0f\xe6\xba\x1a\x29\x66\x72\xac\x12\x33\x5a\x8d\xee\x86\x6c\x69\x62\x3d\xa2\x5a\x43\x2d\xd9\x91\xb0\x9f\x42\xf5\x36\xde\xc8\xc5\x08\x26\x69\x83\x34\x3f\xa9\xeb\x6b\x0d\x5b\x27\x29\xa6\xed\x13\xc3\x61\xa9\xc0\xc4\x0e\x13\xe8\xc3\x40\x01\xaa\xaa\x6e\x18\x2e\xc6\x03\x51\x9f\xb6\x7c\xc3\x85\xe2\x25\x15\x8a\xb7\x58\xb8\xec\x21\x8c\xcb\x57\x7a\x45\xa5\xe2\xcc\x97\x1e\xab\xb5\x37\x30\xab\xf1\xd4\xc0\x12\x3a\xac\x5c\x0b\xf2\x30\x5f\xb7\xe7\x20\x0f\xa7\x67\xa3\x45\x62\x3f\x5f\x37\x82\xbe\x63\x01\xa8\x26\x77\x7b\xa4\x96\xaa\x3b\x28\xbf\xd3\xde\x79\xea\xe3\xaa\x90\x5d\x9f\xe7\x97\x3e\xae\x8a\xd7\xda\xd6\xe5\x53\x8a\xbf\xca\x0e\xb1\x77\x56\x1c\xb6\x7f\x85\x9d\xb3\x25\x81\x7c\xb3\xfd\x2b\x5c\xb8\x8c\x37\x18\x06\x67\x9d\x91\x07\xa4\xdd\xc9\x11\x86\xa2\x73\x87\x52\x24\xde\x77\x17\xeb\x6b\xc6\x15\xee\x3a\x35\x54\x77\x31\xac\xde\x1e\xa4\xae\xac\x33\xe3\xce\x8d\x06\xac\xef\xf3\xd5\xf9\x41\xea\xd3\xf3\x58\xbc\xde\xe9\xa2\x72\xec\x98\xea\x0b\xac\x7f\x81\x5f\xf0\x0e\xfb\xb0\x6a\x49\xed\x9d\xdc\xb5\xb0\xd2\xf7\x57\x58\xfe\xe1\xce\x17\xd5\x97\xd3\x16\x8b\xb6\xd2\x4b\x43\x9a\x26\xc4\x58\xdb\x71\x77\x01\xae\x6a\xa5\x6d\x2b\x47\x49\xbf\x63\x53\x6f\x02\x90\x78\x44\x40\xe2\xb9\xb4\xad\x78\x8b\x40\xe2\x1b\x0f\x94\x3e\xde\xbb\xaa\x07\x27\xc9\x6e\x6e\x65\x38\xcf\xbe\x3a\x7d\xe5\x3f\xa7\x44\xb1\x6b\xc1\x54\x9e\x6b\xf3\xf7\x11\x49\xe4\xd8\xc0\x19\xc7\xac\x85\xd8\x0e\xf3\x74\xa7\x78\x4b\x2f\x96\xfc\x9f\x86\xf7\x9e\x84\xd8\x5d\xef\x3a\x88\x99\x36\x0d\xf6\xff\xe3\xf5\x45\x97\x31\x80\xc4\x6c\x37\xbb\xca\xa3\x4c\xe5\x04\x45\x12\x87\x7e\x15\x9a\x71\x5a\x00\x67\xf4\x45\xf3\x7a\x23\x47\x0b\x6b\x80\x07\xfc\x70\x17\x64\x18\x00\x03\x7a\x1b\xfa\x15\x38\xdf\xa9\x2d\x9f\x7d\x75\xfa\x56\x5e\xb8\x82\x45\x1c\x1b\xf2\xfb\xef\xa5\x96\x0d\x54\x07\xa9\xa1\x9b\x84\x1e\x0c\xa0\xe1\x2a\xea\xc5\x58\x55\x41\x06\xc6\x89\x72\xdf\xc3\x05\x16\xc7\xff\x0e\x34\x7a\x1d\x83\xf0\xba\xf0\x65\x0a\x73\xee\x4b\xf8\x99\xcd\xc8\x02\xfe\xe0\x73\xe2\x06\x7f\x2b\x27\x64\xef\xbf\x90\x23\x98\x81\x46\xe1\xd6\x50\x18\x90\xfd\x75\xf9\x08\x14\x31\x58\xdf\x52\xb9\xf1\x51\x37\xbd\xdc\x5c\x87\x94\xeb\xa4\xa2\xe7\x04\x05\x49\x78\x24\x36\xc4\x4e\x26\x1d\x0d\x59\xa5\xe5\x88\x41\x3c\xef\x0f\x64\xda\xd8\xf8\x16\xe6\x29\x11\xfd\xd4\x89\xa1\x62\x0b\xd3\x85\x34\xc8\xfe\x8d\x70\xbb\x07\xc5\x83\xdc\x95\x2f\x87\x0b\xd9\xa5\x95\x3b\xe4\x82\x99\x9f\x0c\x99\x27\x91\xad\x64\x07\xe9\xb9\x78\x89\xeb\x1d\xa4\xb5\x57\xe4\xb6\xc0\x0a\x8d\x97\x00\x46\xb0\x32\x88\x5c\x72\xad\x18\xf5\x25\x98\x60\xb9\x78\x33\xfa\x8f\x61\x2a\x53\x1c\x58\x6f\x78\xc9\xeb\x42\xcb\xc1\x85\x1f\x54\x25\x4f\x6b\x12\xcf\x12\xaf\xe6\x76\xbe\x42\xbd\x7c\xcf\xbc\x13\x6d\x3d\x05\xe9\x60\x13\x5f\x10\x67\xfa\x46\xb6\x31\x43\xf9\x56\xce\x63\xcb\x1f\x6b\x81\xe5\xb4\x9f\x9e\x8d\x7b\x71\xfa\xb9\xb0\xc0\xe9\xc3\xc7\x9e\x04\x8a\x4d\x37\x6c\xb1\xf1\xe0\x39\xdc\x29\xa4\xe8\x38\xec\x33\x47\xdf\xfb\xcc\xb7\xab\x6c\x35\x9d\x69\x2f\xf5\xe5\x49\x28\x4b\xa9\x03\xb2\x43\x7e\x30\x43\xab\xb6\xca\xf1\x86\x31\x7c\x9f\xc0\x83\x8d\xb9\x88\xac\x93\xce\x81\x8f\xae\x2a\xf5\xcd\xc8\xdb\x9a\x74\x4b\x17\x26\xeb\xb2\x95\x8e\xa3\x75\xe1\x39\x97\x6e\x30\x3e\xbc\xbf\x3f\x29\x14\x82\x0f\x79\x21\xf2\xc2\x59\x0c\x76\x1b\x6c\x55\x9c\x98\x7c\xc2\xd3\x3c\xe9\x59\x3b\xaa\x3f\x0c\x06\x27\x82\x07\xf2\x8e\xb6\x4e\x04\x22\xd4\x19\x7d\x4f\xd1\x35\xa8\x01\x26\x7c\xd7\x8e\x94\x3f\x0b\xb9\x4a\x87\x01\xd7\x8c\x0a\x42\xef\x91\x83\xf5\x18\xc1\xa9\xae\xab\x86\x2b\xed\xa5\xc7\x29\xe8\x96\xd4\x5d\x3e\x27\x70\x3a\x3c\x76\xb8\x08\xe1\xbc\x59\x53\xc5\x12\xe2\x29\xf3\x30\xd9\x74\x66\x71\x71\xd2\x0e\x5b\x69\xc9\x5c\x6b\xb1\x30\xd4\x57\x54\xeb\x72\x1c\xb1\x4c\x09\x36\xef\x5a\x2c\x2c\xbe\x66\x63\xb8\x0c\x3a\xdc\x4d\xba\x3a\x99\xd1\xbd\x0c\x23\xb8\xd3\x66\xaf\x18\x8c\x8f\xe2\x92\x61\xfe\x99\x5c\x9b\x80\x26\xb4\x4e\x3f\x53\x93\x31\x2a\x58\xb1\x18\x63\x81\x38\x21\xf5\xbc\xfd\xec\xb2\x32\xd0\x4c\xd1\xce\x85\x53\x9f\xfc\x7b\xa6\xf2\xe7\xc2\x2b\xe9\x38\x1b\x85\x97\x76\xb2\x80\x9c\xbf\x59\x27\x8d\x2d\xa3\xc4\xd3\x97\xe6\xae\xa8\x1e\x52\xdd\x40\xf9\xcc\xdc\xfe\x7a\xfb\x9f\x50\x90\xbc\x3e\x43\xd2\xf6\x38\x96\x66\xd8\x90\xed\x4b\xb0\x5c\x32\x53\x7b\x78\x88\x38\x19\xfe\x1d\x13\xcc\xf3\x4f\xd0\x48\x0d\xa5\x8f\x24\x97\xfb\xbc\x0c\x31\x11\x83\x2f\x5e\x35\xfc\x4b\x86\x4d\xad\x2f\xc7\xec\x62\x7f\x04\xc5\xcf\xc7\x02\x4a\x4f\xa3\xb4\xb0\x1b\x8d\x72\xd7\x14\xfd\x7b\xd8\x0d\x1d\xd9\x77\x80\x69\x41\x39\x4b\x65\x17\x43\xd7\x85\xb1\x66\x7e\x62\x5c\xd6\x0e\xd6\x95\xcf\x07\x1b\x46\x87\x18\xa0\x7c\x33\xc4\xd1\x92\x80\xb1\xd6\xe5\xe3\xd7\x82\x63\x3f\xe4\xe5\xe1\xad\x4a\xa3\x10\x50\xb6\x5a\xd9\xd9\x2c\x1e\xeb\x7a\xb0\x55\xd6\xe6\x31\xa2\xbf\xd9\x3c\xda\x88\xc7\xdf\xbc\xfa\x3f\xee\xdb\xb4\x8f\xf0\x2a\x96\x6f\xf8\x0f\xb7\x32\x8e\xf9\xcb\x19\x05\x37\x78\xcf\x62\xbd\xe0\xe1\xff\x75\x27\x8d\x83\xf7\x2e\xcd\x19\xb5\x09\xe3\x62\xfd\xd3\x05\x28\xef\xa0\x45\x82\x83\x76\x68\x29\x5c\xd4\xdc\x72\x70\x13\x76\x1b\x89\xb3\x90\xc8\x36\xe4\x25\x09\x13\x25\xad\x5c\x0a\x58\xeb\x48\xbb\x9d\x3e\x7e\x1d\xf6\xdb\x39\xa3\xb6\xa3\x83\x29\x30\xc0\x99\x2f\xca\x96\xec\x28\x78\xa6\x19\x4c\x48\x87\x18\x38\xe3\x07\x24\x1a\x42\x5e\x40\x4f\x93\xec\x07\xd3\x8f\x9d\xe4\x80\x06\xf9\xce\xa4\x4f\xeb\x66\xd1\xab\xb7\x07\x64\xd8\x50\xbc\x80\xb2\xe3\x6c\x26\xaf\xe5\xae\x5d\x9d\x45\x2f\x55\x37\x81\x3d\x39\x7d\x25\x55\x38\xb5\x97\x60\xd4\xfe\xba\x6a\xcc\x30\x1e\xaa\xc9\xa6\x89\xb5\x80\x94\xb6\xd3\xdb\x4e\x3e\x33\xe3\xe1\x00\xba\xcf\xec\x99\x7c\x23\x5c\xdb\x2b\x52\x29\xe2\x6d\xad\x4b\x5f\x81\x36\x88\x33\xca\xf0\x0d\x49\x46\xc8\xf5\x38\x03\x55\x80\xe7\x5f\x19\xc0\x34\x91\xdd\xa0\x91\x9f\xe1\x38\x5d\x9d\xb2\x2e\xd4\x0a\x20\x27\x62\x0b\x1c\xf6\x04\xc8\xca\x3a\x2e\x3b\x02\x67\xe7\x64\x6a\x94\x3e\xd5\xc8\xbd\x53\x77\xf1\xf8\x04\x88\x10\xd0\xc5\x77\x95\xb6\x14\x1b\xb1\x58\x1d\x6f\x4b\xf9\x7c\x40\x22\x2d\x94\xe3\x8d\x78\xa4\x74\x7d\x4a\xf2\xf7\xf7\x61\xc1\xfc\x94\x43\x4f\xd9\x9c\x59\xc1\xee\x21\x88\xba\x11\x4f\xd3\xef\x3d\x92\x42\x95\x95\xe5\x2b\x2b\xce\x6a\x71\x7e\x16\x90\x55\xef\x0e\x15\xe9\x3a\xce\x5f\xbd\x7d\x73\xba\xa4\x83\x27\x30\x42\x4b\x08\x25\x12\xdc\x84\x1f\x08\x3f\x51\xf5\x04\x49\x85\xf8\x66\xbc\x7d\xd6\x87\x5c\x76\x20\x18\xd5\xd9\x75\xb0\x35\x3a\x9b\x6e\x2e\x5b\xf0\x3c\xa1\x30\xe9\x48\x6e\x5f\x70\xaa\x14\x8a\x76\x82\x2c\xaa\x6f\x75\x8a\xb9\x33\x9a\x5d\x4b\x9a\x36\x29\xee\x9d\xdc\x13\x0d\x38\x03\x5a\x4f\x26\x79\xe9\x13\x52\xb9\xce\x96\x6f\x5f\x9e\x53\x32\xa0\x28\x57\x26\x4e\x27\xc6\xb3\x09\xf3\xbd\x50\x07\x04\xaf\xf8\x0a\x50\xad\x98\x2d\x83\x08\x1d\x7b\x30\x4a\x4f\x6f\xd8\x41\xf6\x15\xd9\xfc\xee\xfc\x0d\x7d\x73\xf6\xca\x87\x4f\x4b\xce\xb4\x1f\x07\x25\x71\x0d\x9c\x19\xbe\x32\x21\x35\x2c\xcc\xf8\xb2\xc5\xb8\x88\x67\x5a\x3e\x4b\xb9\xdd\x6d\xc2\x31\xf8\xd5\xcf\x89\xf2\x25\x1b\x34\xd1\xe7\xf9\xdb\xca\x47\xe6\x48\x25\xdb\x83\x6b\x87\x9a\x1d\x0e\xf0\x3a\x51\xac\xe2\x6d\xf2\xee\x67\x01\x0b\x57\x7a\xfd\x08\x07\xd2\x4d\xf6\xaa\x4f\x54\x9c\x5a\x1b\x50\xbe\x0c\x1f\x48\xae\x91\xb7\xfc\xc1\x45\xcd\x49\xef\xb0\x4a\x53\xa8\xd4\x95\xe9\x45\xea\x3b\x85\xae\x98\x08\x21\x2b\xa9\xbf\xab\x4a\x62\x24\xbb\xac\x37\xcf\x20\x77\xd4\xc2\xc9\x1f\x6f\xa2\xcb\x55\x70\x35\xbe\xab\x51\xa2\xd1\x29\xb0\x85\xb7\xb5\x9a\x92\xe4\x4c\xae\xc8\xde\x92\x24\xd2\xe2\x53\x26\xa1\x3c\xb6\xb2\xcf\x3f\xe9\xa3\x4c\x19\xd0\xe1\x35\x74\xd7\x87\x4d\x3a\xe7\x94\x62\x5f\x19\xd8\x5d\x94\x3b\xb7\xc2\x42\x00\xef\x84\xc7\x7e\x36\xa9\x76\x7c\xc5\x7b\x60\x30\xad\x4c\x5f\xdc\x46\xb9\x76\xdc\x56\xf2\xa0\x2a\xd0\x35\x49\xc0\xcb\xb3\x37\x2f\xc4\x13\x5d\x1f\x46\x7d\xe1\x0a\x6f\x9a\xb2\xd1\x83\xab\x2c\xb8\xf2\x53\xef\xac\x05\xd6\x71\x14\x8e\xcf\x02\x84\x57\x1b\x78\x53\x16\x56\x1b\x5c\x64\x06\x2d\x1e\x70\x6b\xa4\xae\x19\x7f\x3c\xc2\x3f\x05\xe1\x0e\xff\xd1\x8c\xfc\xb6\x25\x6a\xed\x3a\x09\xa5\x99\x82\xf5\x43\x0d\xe5\x4b\x39\xee\x6f\x40\xb9\xd3\x57\x43\x3d\xda\x7c\x2c\x53\xe2\x84\x29\x65\x86\xec\x28\xcc\x51\x0e\x97\x13\xae\xf9\xb7\x48\xf8\xbe\xf1\x7f\xcc\xbe\xb7\x0e\x1f\x9d\xba\x36\xe5\xf3\xb7\x6f\xdf\x08\xfc\x0b\xec\x7c\x20\x04\x44\x4f\x0b\x01\xe1\x5f\x33\x88\x1d\x18\xc7\x9e\xae\x5f\x81\xc1\x63\x40\x8a\x03\x2c\x98\x01\x5e\x00\xbb\xab\x96\x5f\xc3\xf5\xda\x77\xc4\xe7\xf8\x7c\x06\xfb\x9a\x57\x4a\xab\x7e\xec\xc5\xdb\x97\xe7\xd1\xd0\x26\xaf\x31\x6a\xf5\xbe\xb2\x03\x49\x6f\x27\xab\xb6\xf2\x3b\xad\xde\x0b\x2e\x16\x53\xf1\xac\x2e\x09\x03\x2a\x33\x0c\x8e\xd6\xf8\x25\xfe\x14\xf8\x73\x65\x95\x87\xfd\xbe\x53\x1a\x78\xdf\xbe\xe1\x1f\x02\x7f\xcc\x77\x43\x59\x7a\x40\xcc\x30\xb2\x3a\x06\x99\x6a\x2a\x12\x5c\x24\xba\xa1\x99\xef\x34\xbf\x39\xcd\x8d\x3a\x94\x4f\xe8\x6f\xf1\xec\x46\x1d\x66\x50\xf2\x70\xa8\x48\xaa\x7c\x90\xae\xcd\x8c\x98\xb0\x54\x60\xe9\x62\x7e\xb2\xae\xf0\xe9\x76\xb6\xda\x9b\xa1\xaf\x6a\x65\x2f\xca\x97\x83\xac\x05\x97\x0a\x2c\x15\x58\x3a\xaf\x29\x75\xad\x74\xc3\xcb\xc2\x7f\xd3\x9a\x44\x30\xdb\xc6\xbb\x72\xfe\x5c\x7c\xbd\x76\x53\xac\x6d\x23\x63\xc8\xb3\xaa\xd3\x4f\xfe\xd8\x3e\x79\x7f\x18\x2c\xd4\xa2\xce\x8f\xaf\x6d\x99\xd9\x0a\x9f\xb3\x43\x67\xdb\x0d\x6d\x1a\x2d\xc4\xb7\xb8\x5f\xd9\xe4\x6d\x8b\xe7\xac\x01\xcd\x00\x5f\xd3\xdf\x6b\x20\x15\x45\xa9\x0c\x40\x14\xcb\x72\x01\xd6\xf3\x09\xe4\x58\x0b\xea\x06\x38\x41\x7e\x3c\x98\x17\x70\x2d\xb0\x58\x50\xf1\x5d\x15\xed\xa2\x8e\xcd\x26\x04\xde\x70\x3c\x57\xba\x57\xd2\x55\x14\x10\xb9\xfc\x96\x01\xc4\xbd\x19\xc4\x3d\x21\x1d\xc7\x4c\x4e\x9b\xa3\x82\x6a\x3b\xaa\xce\x21\x92\xa5\x5d\x45\x36\x1c\x39\x44\x2e\x14\x5c\x98\x56\x22\xd2\x58\x57\x44\x5e\x92\x6f\xb2\x16\xf8\xf7\x0a\x08\xed\x8d\x07\x99\x6f\x4d\x40\xa5\xea\xd0\x82\xb1\x1e\x97\x0a\xff\x33\x9e\x20\x16\x6e\xf2\x11\x4a\x74\xc3\xab\x27\x09\x61\xef\xda\x71\xfa\xce\x41\x12\x58\x76\x70\x4e\x7f\x0b\xfc\x3b\x83\x91\xda\xaa\x6a\xd7\x4a\x87\x8f\xc1\xd9\xeb\xf3\x17\x62\xd7\x4a\x63\xc1\x65\x50\xfb\x01\x5f\xa4\x20\xaf\x79\x8a\xbf\x7c\x76\x9d\xbc\xb5\x5e\xbe\x9f\xc4\xb3\x24\x72\x2d\x5f\xc9\xf7\x22\x14\x09\x2a\xca\x6a\x1c\x0c\xec\xc1\x18\xa8\xab\x4e\xed\x40\x5b\xca\x21\xe9\x8b\x44\x28\xca\x6a\x04\x74\x42\x38\xb8\x51\x2e\x22\x13\x42\xc5\xcf\x66\xed\x7b\x44\xc2\x78\x0d\x57\xa8\xea\x95\x8f\xa9\x13\x10\x0b\x7d\xa3\xd5\x13\xf1\xdb\x5a\x1b\x46\x72\xec\x82\x8a\xdf\x30\xc6\x7b\xbe\x0d\x23\xaf\x08\x79\x0b\xff\xbe\xa5\x68\x90\xda\xf0\x39\xeb\xab\x3d\xb8\x1d\x21\x0a\xd6\x02\xef\xae\xcb\xe0\x9d\x4f\x5f\x44\xf2\x25\x1f\x43\x8d\xa7\x61\x43\x08\xf7\xca\xc8\x03\x25\x31\xd2\x96\x0c\x1e\x9f\xd0\x37\x41\xf8\x17\xbf\x89\xe9\xdb\x5a\x1b\xde\x8d\x9c\xe6\x44\xf3\xc1\xc1\xc6\x56\x92\xaf\x3c\x23\xfa\x9a\xb5\x33\x1e\x10\x8d\x46\x4c\xf6\x1d\xfd\x14\x90\x23\xb4\x14\xd2\x41\x7f\xe0\x83\xea\x61\xb1\x60\x30\x92\x42\x2d\xcf\x0e\xad\xaf\x12\x43\x50\x5f\x1f\xc0\x86\x6a\xbe\x90\x4e\xf1\xea\x90\x78\x3a\xf2\x3d\xa1\x97\x50\x8b\x66\x41\x18\x69\x79\xfc\x7c\x3d\xac\xc2\x31\x23\x92\x3a\xd6\xc3\x87\x0a\xf5\x36\xdc\xce\x68\x0a\xba\x4a\x0f\xd5\xdb\x28\x0c\x84\xa4\x6c\x92\x9c\x4d\x65\x93\x10\x71\x2a\x23\x6a\xe9\x3b\x3b\xe1\xa1\x7a\xbb\xb1\xb6\xe3\xe3\x76\x7e\xfe\x32\x3b\x5b\xc9\xb7\xc0\x9e\x7e\xba\x1f\x8c\xb8\x77\x18\xac\x6b\x0c\xd8\x7b\x62\xd0\xdd\xf5\x67\x09\x3c\xed\xc3\x9b\x64\xd9\x7d\x59\x5e\xdf\xfe\xad\x53\x0e\xfe\x74\x8f\x6b\x4f\x6f\xa1\x17\x1f\x46\xaa\x90\x7f\x8b\xdd\xea\x73\xe7\xbf\x7a\xba\xd6\x80\x77\xd1\xaa\xe5\xb5\x65\xc2\x56\x84\x32\x81\x65\x8b\x7a\xbb\x61\xb8\x50\x30\x55\xa4\xe5\xfa\x36\x54\xe1\xaf\xc7\x2a\x45\xb1\xd8\x77\xfe\x8f\x0f\xc0\xd3\xef\x78\x9f\xf9\xd7\xb1\x2a\x06\x28\x0f\x6d\x75\x30\xc3\xfb\x6b\x66\x74\x68\xd7\xbe\xe5\x72\x41\xe5\x22\xb7\x12\x17\x1c\xf3\x62\xd1\x56\x44\x50\x44\xfa\x93\x21\x72\xc5\xdd\x4e\xf8\x09\x57\xca\x87\x32\x3e\x32\xa2\x95\xea\xbc\x5a\x2f\x57\x2a\x87\xda\xd0\x4b\xd5\x85\xad\x7c\x82\x3f\xd6\xf7\x91\xe0\x8e\x11\x2e\xfc\xd1\x8e\x64\xc4\x51\x21\x3a\x57\xef\xcb\x73\xfe\x29\xf8\x67\x0e\xba\xb8\x07\x5c\x8c\x74\x57\xf9\xd4\x0c\x7d\x5e\xbc\xb8\x0d\x5c\x1c\x1f\x01\xe8\x86\xe9\x01\x78\xf2\xf2\x9b\x59\x5f\xd0\x0d\xf4\x78\x73\x78\xdf\x27\x2f\xbf\x11\xe1\xd7\x6c\xfc\x17\xea\x10\xc4\x26\xe7\x17\xea\x20\x76\x09\xd5\xce\xe5\x8b\x71\x55\x09\x0c\x0e\x51\xec\x46\xeb\x86\x3e\xad\x9a\xd7\xf9\x30\x4f\xc0\x70\x47\x59\x82\xa9\xeb\x43\x27\x95\xae\x1c\xbc\x77\xd4\x33\xfd\x14\x24\x8e\xcb\x40\x65\x5d\x27\xa0\x95\xec\x5c\x79\x56\xd7\x09\xb8\x20\x69\xbb\x96\x4e\x5d\xce\x57\x04\x74\xcd\xd4\x20\xc9\x5a\xcf\x41\xd7\x4c\x0e\xd2\xe7\x1c\x36\x82\x55\x7b\xa9\xf0\x8c\x3c\xa5\xff\x84\x1b\x48\xfd\x9e\xd4\x13\x5e\xd3\xfe\x85\xb8\x7f\x79\xac\x0d\x0b\xda\x51\x5c\x74\x5f\xa5\x95\x56\x6c\x01\x90\x3c\xd3\x2e\x34\xb0\x89\xa7\x98\xae\x9f\x3f\xc4\x67\xf9\x95\x5b\x3d\xcd\x08\x1f\x85\x4b\x14\xea\xa6\xea\xd8\x18\xd8\x97\x09\x0a\x0f\x45\x65\x59\x1d\x03\x16\x39\xaa\xa0\x3b\x48\x6a\x7e\x8b\x5f\x44\xf8\x72\xbc\x3e\xa7\x33\x4e\xae\x9d\xe9\xcb\x6f\xb9\xd4\xcf\xd5\x97\x2e\x07\x1c\x2a\x5b\xd5\xe8\x0a\xd9\x41\x05\x57\xb1\x2e\x16\x0a\xa5\x05\x16\x66\xb5\x22\xeb\xc5\x02\x3a\x26\x7b\x22\xf3\x95\x14\x66\xb5\x02\xbd\x93\x7c\xaf\x76\xf2\xe0\x76\xad\x8c\xf4\x4e\xf2\x4d\xf8\x6f\xeb\x6d\xcc\x31\x65\xe2\x37\x13\xdb\x3a\x8e\x35\x3f\xaa\xcd\x21\x9f\xdf\xb1\x66\x87\xe3\x33\xbe\x6b\x98\x95\x0f\x56\xf4\x31\xc8\x3d\x34\x4a\xf2\x78\x7f\x26\x11\x79\xad\x9f\x44\x84\x0a\x93\xe2\x43\xe1\xed\x5d\xfc\x0c\xf8\x48\x50\x59\x58\x8e\x09\xf1\xb3\xab\x5a\x7c\x87\xe9\xe7\x3a\xaf\xe0\x61\x37\x07\x33\x5c\xaa\x9a\x1c\xb0\xf9\x8f\x63\x00\xa1\xd5\x00\xe7\x47\x3f\x07\x4f\x9f\x99\xaf\x66\xcf\x12\x43\x20\x89\x6e\x39\x26\x34\x12\xe7\xe7\x44\x8b\xcc\x81\x9a\x1d\x27\x12\xbd\x94\x5d\xf9\xec\x2b\x11\xfe\x9e\x83\x21\x89\xd6\xa9\x3d\x1b\x58\x12\x57\x81\xbf\xd8\x91\x68\x3e\x30\x6b\xf6\xd9\x23\xf8\xd5\xf9\xb7\x4f\xe7\x8f\x1f\x1b\xca\xf9\x99\xb2\x41\xdc\xea\xea\x11\xdc\x46\xd6\xf2\xc0\xda\x0b\xfa\x3f\xff\x78\xd7\xf0\x19\x62\x7a\xf3\x42\x39\x71\x2f\xbe\x77\x5c\x9b\xf5\xce\x11\x6a\xe3\xdd\x96\x77\x83\x76\x66\xe8\x38\x22\x48\x35\x18\xd5\x28\x5d\x9e\xd1\x37\xe1\xbf\x31\x81\x2c\xf8\xdb\x84\x20\x9d\x93\xbb\x96\xe2\xef\x06\x34\x19\x4b\x8e\xa0\xc8\xf8\xfd\xd8\xab\x9f\x40\x2c\xe8\xc9\xe4\x5b\x4e\xc5\x9f\xad\x91\xef\x09\x74\x24\xdc\xcf\x17\xc4\xfa\x0c\x8a\x69\xf5\xa7\x2b\x44\x7a\x88\x5e\x15\xf9\x68\x0e\x51\xb4\x3a\xcd\x18\x39\x6d\x39\xdd\x64\x85\x16\x7c\xcd\xa2\xd2\x6c\x96\x53\xd5\x23\xfc\xca\xa2\x81\x38\xf1\xa4\xee\x1a\xc3\xb2\x5a\x91\xd7\x22\xa9\xb9\xc6\xbb\x1c\x14\x59\x7a\x86\x65\xc9\x0e\x1b\xa9\x02\xa7\x08\x23\xd3\xe9\xf6\x95\x36\x3e\x18\x09\xf3\x4a\x9e\x8f\x43\xa4\xc6\xe5\x82\xcb\x33\x4e\x2e\xd4\x64\x6f\x99\x65\xf5\x34\xb3\xe1\x07\x1b\x69\x4c\x88\x86\xc2\x06\x76\xcf\xfc\x6f\xc1\xbf\xe7\xe0\xe1\xcd\x0b\xd5\xe2\x7b\x17\xea\xcd\x2b\x78\x0c\xbc\x87\x1a\x8c\x74\x50\xfb\x01\x07\x2c\x1c\xcb\xfd\x50\x27\x81\x8d\x4f\x13\xee\xd7\xd4\x27\xe0\x5c\x3d\x69\x0c\x19\x15\x54\x11\x61\x3c\xe6\x82\x09\x6b\x84\x0a\x21\x45\x84\x6f\x3b\x24\x9b\x59\x45\x12\x31\xc1\x0c\x1d\xbf\xb7\xe9\x59\x0b\x9f\x7c\x38\x66\xc2\x9d\xc3\xe8\xca\xc7\xfc\x5b\xf8\xdf\x73\xf0\xb9\x22\x91\x28\x62\x2f\x70\x46\x4a\x38\xc0\x37\x2a\xa2\x94\x67\xca\xad\xcb\x3c\x1b\xe5\xe2\x96\x50\xfc\xcb\x56\x35\x6d\xa7\x9a\x76\x12\xdc\x60\xb1\xb0\xd7\xda\xc9\xf7\x22\x7e\x4d\xeb\xe3\x31\xa7\xba\x9d\xd2\xc0\xb1\x33\x49\xda\xe1\x4f\xb9\x20\x96\x55\x0a\xab\x74\xe3\xa5\x16\x9f\x1d\xad\x5e\xed\x5a\x69\xe4\xce\x81\xf1\x0d\x4d\xbf\x57\x5b\xc3\x3a\xeb\xad\xf1\xc5\xa3\x36\x92\x2b\x37\xab\x8e\x90\x59\xf5\x66\x57\x49\xd3\x58\x7c\x2b\xa4\x69\x46\xbc\xb1\x36\x6b\x9e\x44\x50\x10\xb7\xea\x55\x10\x49\xcd\x37\x8b\x81\xe9\x04\x4e\xb0\x74\x04\x59\x92\xb4\x02\xbe\xeb\x06\x3d\xb5\xfc\x15\xfe\x5a\x03\xa3\x48\xf6\x01\xea\xcd\xd8\x75\x6b\x40\xde\xf0\x18\x41\x9e\x7d\x15\x01\x02\x44\x37\x34\xc7\x70\x8d\x15\x2f\x87\xa6\x51\xba\xb1\x29\x30\x0b\xd6\xa2\x40\xf3\xe5\xd0\x9c\x7e\x0f\xe6\x06\xd4\xae\xd5\x2a\x83\x24\x39\x48\xa6\x1d\xc2\xd2\x45\x3c\xaa\xe0\x53\xbd\xd9\x99\x41\x97\x5f\x99\x41\xb3\x73\x67\x2c\x9f\x64\x2f\xa1\xc4\xee\x5a\xa8\xc7\x0e\xca\x1f\x41\xb9\x43\x27\xf5\x04\x8b\x8c\x56\xb0\x18\x17\x41\x95\x35\xea\x26\x42\x90\xd8\x6c\x18\x63\xb8\xf3\x35\x18\x78\x0f\xbb\x31\x3a\x95\x24\x10\x93\x07\x38\xd2\x60\x1c\xbb\x45\x8e\x7b\x8a\xf8\xf7\xc6\x0c\x37\x60\xed\x34\xca\x65\x14\xb5\x38\x7e\x92\x8a\x93\x48\xfb\x06\x94\x5b\xed\x37\xed\xd6\x12\x54\xf0\x4b\x0f\x1e\xd2\xfc\x93\x6d\x51\x56\x5c\xd5\x03\x34\x85\x72\xe5\xd8\x9d\x81\x42\x7e\x15\xe1\x6c\x1d\x72\xd1\x70\xf0\x85\x58\x4b\xee\x78\x9b\x82\x83\xf2\xd4\x39\x74\xb0\xa3\x70\x67\xe4\x1c\x65\x93\xec\x1d\x11\xa6\x86\x25\xd4\x76\x0e\xa4\x34\x93\xf2\x0c\xca\xee\xf9\xf6\x4a\xb6\x9d\x18\xfb\x0b\x20\xb7\xc2\xa9\x3d\x52\x54\x33\x24\x3e\xfa\xa3\x6d\x80\xda\x4b\xd4\xc2\x73\xe8\xd0\xb7\x78\x95\xac\xca\x12\x3a\x9a\x03\xa6\x05\xd5\xe7\xc9\xcb\x97\x4e\x6b\xb6\xa1\xe1\xcb\x70\x28\xbf\x39\x6c\x16\xe3\xf5\x2a\xe6\xe5\xe6\x7c\xc0\x29\xb3\xf8\x89\x97\xff\x5d\x08\xee\x47\x06\xb5\xad\x74\xf3\xe4\xd9\x59\x48\xfa\xfb\xf6\xcb\x07\xf2\xe1\x94\xea\xc4\x80\x8e\x69\xb3\x57\xea\x5e\x0e\x21\x83\xd1\xfd\x9f\x3e\x7f\x67\x43\x22\x9c\x9b\x31\x69\xf5\xa7\x3f\xbe\xc3\x86\x7f\xfa\xd3\x3b\x6e\x7b\xec\xb7\xa0\xa5\xd6\x88\x60\x70\x42\x53\xe3\x14\xb1\x66\xaa\xf7\xf9\x3b\xfb\xc0\x9a\xdd\x83\x45\x0b\x4a\xcf\xc0\xf0\xe3\x7f\xf1\x1f\x1b\x38\x8c\x96\x5e\x94\xfe\x20\x0d\xf8\x38\x03\x16\xaf\x79\x43\x21\x6c\x39\x8b\x77\x1a\xd5\xe6\x7e\x1d\xa2\xe6\x16\x31\xd7\x66\x1c\x54\xba\x52\x3c\xd3\x38\xcd\x00\x4c\x01\x2b\xa4\x5e\x5b\xc9\xb0\xf8\x64\xb6\x5a\xfe\x8c\x0d\x72\x8e\x94\x04\xf6\x01\xdb\xb4\x3e\xe0\x5a\xff\x42\xd3\xf5\x53\xf1\x69\x42\x7e\x2e\x76\xdd\x60\xff\xe1\x56\x62\x02\x92\x9f\x0b\x03\xc3\x01\xf4\x3f\xd6\xd0\x3c\x79\xc9\xcf\x45\xc8\xf4\xf1\x0f\x35\x77\xc1\x95\x71\xf1\x7e\x0e\xcb\x94\xe5\x5f\xa1\xf6\xb2\xb4\x2a\x69\xb3\x94\xa7\x7e\xd9\x6a\x38\xb9\x61\xc9\x7e\x7f\x8b\x6b\xeb\xb7\x6c\x15\x6f\xe2\xdf\xdb\xf2\x72\x41\x29\x63\xfe\x3f\x61\xcc\x37\xa3\x95\xb8\xba\xc1\xeb\x39\x2e\xf0\x96\x12\x10\xd1\xc1\xe6\x60\xc6\x9c\x91\xe8\xf7\x5f\xbb\x90\xd7\xa5\xf0\x78\x2b\xe9\x28\x74\xe1\xf1\xc4\x1f\x27\x3c\xb1\xda\xe2\x9f\xe2\xba\x87\x50\x46\x94\xb3\xc8\xc9\x86\x5a\x7b\x2b\x9b\x6c\x05\x68\xa8\x54\x31\x4c\x7e\x89\x46\xf2\x66\x19\x3f\x84\x10\x4a\x69\xb3\xff\xf0\x08\x29\x35\xd3\x31\x24\xa9\x65\xb6\xc0\x13\x96\x0d\xb9\x9b\x3c\x61\x47\x8e\xd3\x94\xb8\xe9\x9f\x8e\x0c\xd3\x1e\x7c\xf6\x2b\xfc\x1b\x6a\xa1\xe1\x4a\x90\x0a\x16\xf4\x0e\x3e\xb0\xb0\x6e\xb8\x63\x31\xc8\x94\x82\xfb\xc9\xba\xf3\x16\x68\xbe\x3b\x49\x99\x44\xb1\xa4\x4e\xbb\x5d\x2e\xbc\x74\x1f\xd9\x57\xf1\x93\x1b\x86\xee\x5d\x21\x9b\xa1\xbc\x1c\x4c\x41\x86\x1e\x7a\xb8\x2a\x15\xbe\xcf\x57\xe5\x5f\x91\x44\x2b\x3e\xb7\xe5\x7d\x2b\x3e\x0f\x79\x24\x8b\xcf\x7b\xfe\xfd\x4a\xe9\xd1\x41\xf1\x79\xeb\x3f\x3b\xfe\x5a\xf3\xcf\xb7\xb2\x29\x3e\xbf\xe2\xbf\x7f\x18\x76\x2d\xd6\x1b\xb4\xaf\x39\x68\xe9\x8a\xcf\xaf\xf9\xd7\x5f\x64\x6b\x0a\x0b\xbb\x41\xd7\xb6\xa4\x89\x08\x1c\x75\x1d\x13\x57\x16\x3d\xf5\x94\x7f\xe4\xde\x75\xd1\x0e\xa3\x99\x55\x73\x5c\x8b\xb4\x67\xe9\x87\xb7\x12\xe9\xb2\x2b\x80\x8b\xbc\x9c\x86\x47\x94\xa5\x6b\x67\x9d\xe0\x40\x41\x17\xd7\x20\x67\x9d\xfc\x85\x2c\xee\x0a\x23\xaf\xaa\x30\xf4\x38\x5c\x2c\x0c\x43\x0e\xc3\xc4\x32\x1e\x2a\xfd\x5b\x14\x3f\xd5\x66\x38\xdc\x0c\x1a\xde\x15\x81\xdb\xed\xc1\x92\x0b\xeb\x8f\x63\x2f\x9e\x0f\xbb\x96\x42\x1b\x8a\x56\x81\x11\x17\x9d\xda\x5d\x04\x37\x18\x0e\xb4\x40\xe5\xc8\x16\x92\x47\x8e\x8f\x13\x5d\x29\x7d\x18\xbd\x25\x43\xcc\x56\xe9\xf3\x66\xe0\x4f\x77\x7d\x98\xcc\x6b\xd9\xa2\xad\x1d\x76\x6d\x03\xdc\x57\xb0\xab\x25\x26\xc3\x0d\x43\xb5\xf5\x4a\x5c\xd5\xb0\x8b\x88\xf8\xf4\xdf\xff\x9d\x78\x38\x75\x03\xff\xf1\x1f\xe2\xd5\xa3\xcf\xbc\xbd\x2c\xd1\x64\xc1\xf2\xda\x7b\xac\x25\x75\x7a\xf9\xfe\x69\x56\x6d\x53\xf8\x70\x58\x49\x92\x83\x29\x2b\x6f\xf1\xff\x07\x00\x00\xff\xff\xfc\x83\xfd\xfb\xc2\x1f\x01\x00" +var _confLocaleLocale_deDeIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\x4d\x8f\xdc\x46\xb6\x28\xb8\xe7\xaf\xa0\x75\x21\xb4\x0d\x54\xa6\xe0\xee\x77\xdf\x0c\x0c\x51\x3d\xa5\x6f\xd9\x92\xac\xeb\x92\xed\x81\x3d\x02\x1d\x99\x3c\x49\x46\x27\x19\xcc\x8e\x08\x56\xa9\xf2\xe2\x02\xb3\x78\xcb\x59\x0f\x66\x31\xc0\xdd\x08\xf3\x13\xbc\xf2\xae\xfe\xc9\xfb\x25\x83\x73\x4e\x44\x30\x82\x64\x96\xd4\x76\x3f\xe0\x6d\xa4\x4a\xc6\x89\xef\x88\x13\xe7\xfb\x88\xc3\xa1\xac\xc0\x6c\x8b\x27\x52\xe5\x20\xd5\x4e\x6c\x1b\xd0\x67\xb9\x81\x76\x63\x6c\x5e\x43\xd3\x1b\x0b\x16\x74\xfe\x4c\xda\xd5\x05\xe8\x4b\xb9\x85\x2c\x6b\xfa\x0e\x8a\x0b\x2b\xb4\x35\x20\x2d\x64\x95\x30\xcd\xa6\x17\xba\x2a\x6e\xfe\xdf\x0d\x68\x23\xb7\x8d\xcd\xe0\xfd\xa1\xed\x35\x14\x4f\xf4\x7e\x50\x15\xa8\xac\x81\xf6\x50\x3c\x97\xed\x0e\x32\x23\x6b\x55\x4a\x55\x9c\xab\x0e\x5a\x2c\xa3\x0f\xfd\x60\x8b\xf3\x4d\xfc\x65\x38\x14\xdf\x41\x2d\x8d\xd5\x12\x34\xa8\x4c\xd3\x0f\xd0\xe9\xd7\x2b\xd8\x18\x69\xa1\xf8\x11\x36\x3c\x9e\x83\xa8\xa1\xb8\xa0\x3f\x2d\x74\x87\x56\x58\x28\x7e\xe8\x75\x2b\x6a\xc8\x5a\xa1\xea\x81\xca\x0f\x1a\x67\x9b\x6d\x35\x08\x0b\xa5\x82\xab\xe2\x89\x36\x16\xda\x16\xd4\x7a\xbd\xce\x06\x03\xba\x3c\xe8\x7e\x27\x5b\x28\x85\xaa\xca\x0e\x67\xf3\x10\xd4\x60\x8f\xa0\xb9\x20\x1f\x54\x95\x77\xd0\x68\x1a\x2e\x54\xa5\x54\xa5\x30\xc5\xb9\xaa\x81\xa6\x61\x73\xd1\x9a\x8c\x9a\x52\xa2\x1b\x6b\xe3\x8f\x0c\x3a\x21\xdb\xe2\xc9\xea\x95\x90\x6d\x76\x10\xc6\x5c\xf5\xba\x2a\xde\xf0\x1f\x36\xd3\x50\xda\xeb\x03\xae\x9f\x82\xc1\xe2\xee\xd4\xb0\x01\x95\x6d\xc5\xc1\x6e\x1b\x51\x3c\xe2\xff\xb3\x4c\xc3\xa1\x37\xd2\xf6\xfa\xba\xf8\x2e\xfc\x99\xf5\xba\x16\x4a\x1e\x85\x95\xbd\x2a\xbe\xa5\x1f\x86\x7e\x64\x9d\xd4\xba\xd7\xc5\x2b\xfa\x2f\x53\x70\x55\x62\x0b\xc5\x6b\x18\xc0\xe4\x51\x0b\x58\xd2\xc9\x5a\xe3\xea\x61\x61\xfe\x8a\x7e\x60\x13\x5c\x44\xcd\x60\x89\xce\xa3\xc6\x76\xbd\xde\xbb\xc6\x9e\xf6\x7a\xbf\x9a\xb4\xd8\xeb\x9a\x5b\x4b\xc7\x24\x94\xa8\x81\x0a\xe3\xef\xa0\xf2\x4b\xd0\x57\xa2\xb5\xa0\x32\x51\x75\x52\x95\x07\xa1\xa0\x2d\xce\xf1\x6f\x3c\x01\x5c\x5d\x6c\xb7\xfd\xa0\x6c\x69\xc0\x5a\xa9\x6a\x53\x7c\xd3\x2b\xdb\x83\x54\xb4\x9f\x83\xaa\xf1\x40\xf9\xb2\x27\xc9\xe7\xeb\x7e\x08\xdb\x5c\xbc\x68\x74\xfe\x86\xfe\xe6\xef\xa1\xce\x8b\x46\x43\x9e\x56\xcc\xc4\xd6\xca\x4b\x69\x25\x98\xe2\x7c\x4f\x7f\xde\x7c\xc0\x71\x1e\x86\xb6\x2d\x35\xfc\x7d\x00\x63\x4d\xf1\x66\x68\xdb\xd5\x77\xee\x57\x26\x8d\x19\xc0\x14\x2f\xe8\xbf\x2c\xdb\x0a\xb5\xc5\xd9\x6c\x36\x1a\xb6\x0d\x36\xfa\x33\xf6\x21\xda\xf6\x5d\xe6\xfe\x28\x5e\xf0\xff\x3c\x51\x2b\x2d\x0e\x33\xfa\x64\xcc\xb6\xd1\xd2\x5a\xc8\x77\x37\xbf\xe9\xbc\x02\x95\x03\x1e\x63\x95\xd3\x05\xcd\xaa\x7e\xbb\x07\x5d\xe2\xe5\x03\x5d\xfc\x08\x4a\xe5\xcf\xfa\xda\xe4\x52\x29\xd0\x8d\x68\x37\xf9\x65\xaf\xf2\xc7\x04\x95\xb7\x37\x1f\x86\x9d\x3d\xcb\x5b\x30\xd8\x80\x84\x1c\xef\x72\xbe\xa1\xf6\xb1\xe9\xfb\x22\xb7\x42\xd7\x60\x8b\x3b\xe5\xa6\x15\x6a\x7f\x27\x6f\x34\xec\x8a\x3b\x77\xcd\x9d\x07\x2f\x41\xda\x9d\xa8\x40\xdd\xbf\x27\x1e\xe4\x35\x28\x31\xe4\xd5\xa0\xb7\xcd\x59\xbe\x81\xcb\x5e\x53\x83\x52\xd7\xa0\xaa\x2b\x61\x72\x31\xec\xf2\x4a\x82\x01\x9d\xd3\x5d\xcd\x6f\x3e\xa8\x0a\xb4\xfa\x2c\xc3\xc5\x93\x16\xca\x6a\xc3\xd8\x89\x06\xbc\x01\x75\xf3\xab\x95\xb5\xcd\x5f\x5d\x5f\xfc\xdb\xcb\xb3\xfc\x4d\x6f\x6c\xad\x81\xfe\xbe\xf8\xb7\x97\xd2\xc2\x5f\xce\xf2\x57\x17\x17\xff\xf6\x32\xef\x2b\xd0\xf9\x5b\xf9\xf8\xe1\x3a\xab\x36\x25\x2f\xda\x63\x61\x41\x6d\x84\xda\xa7\xc7\x02\xcb\xf1\x9a\x85\x62\x7b\x7d\xc8\x10\xed\x15\xcf\x7b\x63\xe9\xea\x86\x6b\xbb\x70\x4b\xab\x4d\x49\x37\x3b\x54\xa7\xab\x5d\x6d\xfc\x82\x3f\xa4\xa5\xc3\x43\x0c\x88\x04\x79\x09\x14\x4f\x01\x67\x9f\xbf\x50\xaa\x7f\xfc\x70\xf5\x44\xd5\x52\x41\xde\x49\x9b\x57\xd0\xe5\x3f\x81\xc4\xf3\x60\x84\x3d\xe6\x83\xdd\xfd\xaf\x65\x0d\x0a\xb4\x68\xcb\xad\x5c\x67\xc6\xb4\x65\xd7\x57\x50\x5c\x5c\xbc\x5c\xbd\xea\xab\xc1\x64\x07\x61\x9b\xe2\xcd\x4e\x54\x99\xf9\x7b\x8b\x4b\xe7\xba\x7f\x0c\x3a\xc7\xa1\xc9\xc3\x4e\x54\xf9\x71\xd0\x7e\xa5\x56\x61\xc0\xeb\xfc\xfe\x46\x3f\x58\x1a\x27\x48\xbc\x80\x62\x63\xfa\x76\xc0\x03\x85\xed\x9f\xe5\x57\xe1\x08\x89\xd6\xe4\xee\x4d\xc8\x6b\x30\x78\xdc\xc0\xe6\x57\x52\x57\xeb\x0c\xb4\x2e\xa1\x3b\xd8\x6b\xdc\x44\x1a\x9d\xeb\x38\x0f\x1d\xd3\x90\x2a\xa1\x77\xb9\xc2\x07\x23\x6f\x01\x74\x6e\x40\xaa\x75\xa6\xfa\x92\x6f\x3b\xe2\xdd\x4a\x1a\xb1\x69\xa1\x64\xe4\xcf\x37\xbe\xc0\xf1\xed\x6f\x7e\x55\x38\x42\x5c\xc6\xf1\x41\x18\x54\xed\x1a\xac\x40\xd0\xbd\xc4\x47\xe2\x2c\xef\x1b\x45\x53\xca\x23\xdc\xd1\xeb\x3d\x22\x8a\xfc\x38\xf0\xa5\x21\xdc\x1f\x8d\xdd\xa3\x1c\xb7\xeb\x8f\x85\x49\x6b\xaf\xfc\x39\x38\x31\x8f\xcc\x6f\x1b\x1f\xc1\xf3\xb6\xc5\x87\x01\x37\x3a\xc5\x25\xf8\x0e\xd3\x31\x7a\x2d\x3a\xbc\x68\x3a\x3f\x57\xb8\x11\x83\xaa\x43\x99\xdf\xd2\xe7\x12\xf8\x9a\x23\xac\x22\xe0\x18\x65\xd2\x33\x7e\xf3\x5b\x0d\x74\x8f\x0e\x3d\x2f\xfe\x88\x84\x57\x3f\x80\x3e\xe2\xe9\x52\xd2\x8c\x00\xbe\xf1\xf3\xb6\x05\x7a\xeb\x43\x05\x09\x26\xbf\x02\x8d\x1d\x4a\xc5\xf7\xb5\xcb\xa3\x36\x70\xe7\x0f\x74\x5a\xb5\x5d\x67\x7a\x50\x25\x5d\x99\xf3\xc1\xec\x6e\x7e\x6b\x34\x9e\x26\x9d\x87\x0b\xe4\xcb\xe3\xf3\xe9\x0b\xf3\x6e\x30\x86\x36\xf3\xa7\xa1\xd6\x72\xb7\x33\x1b\x40\xb4\x68\x65\x8d\x7b\xca\xe8\x4d\xc4\x4f\x54\x3c\x97\xbc\x11\x1b\x50\xf4\x20\x63\x8f\x22\xea\x7f\xec\x01\x51\x1d\x1d\x5d\xde\x9e\xaa\xef\x84\x54\xc5\x63\xfa\xcf\xfd\x0a\x23\xc3\x89\x37\xc2\xe6\xe7\x83\xb9\x92\x48\xc3\xd4\x1e\x63\xe5\x17\x17\xcf\xf3\x6f\xda\x5e\xad\xbe\xff\xee\xa5\xc1\xfb\xd8\x94\x87\x5e\xdb\x02\xbf\xbf\x41\xac\xe0\xbf\xc4\xd3\xc4\x82\x1c\xdf\x11\x83\xf5\x89\x98\x02\x6d\xd6\xf9\x4b\x3c\x2e\xad\x30\x88\x71\x87\x8e\xda\x3e\x0e\xc9\xd9\x25\x5a\xa4\xdc\x0c\xb2\xb5\x52\x95\xd8\xb6\xa1\xca\xf8\x92\xd5\xb0\x11\x74\x39\xc7\x36\xc7\x5b\x7c\xa2\x5e\x79\xe8\x0f\xc3\x81\x09\x38\x70\x84\xc5\xac\x11\x5a\xee\x5a\xda\xd5\xf9\xb0\xab\x71\x69\xcf\x70\x74\x60\xf2\xcb\xbe\xcb\x2f\xae\x8d\x85\x6e\x85\xe0\x8f\x6f\x3e\x74\xbd\xc2\x21\x5b\x0d\x78\x1d\xd7\x59\x63\xed\x81\x17\xe4\xf9\xdb\xb7\x6f\x78\x45\xc2\xb7\x70\xd2\x46\xec\x4f\x2b\xf3\x7a\xe8\x3a\xd0\x84\x3d\x78\x8b\x40\x6b\xdc\xda\x8d\xf0\x97\x09\x2f\xc2\xa0\xdb\x22\x5c\x0d\x83\xeb\xef\x3f\x7f\xca\xbe\xe1\x70\xee\xe1\x3f\x17\xe3\xf6\xb9\x13\xa3\xf2\x17\xaa\x11\xad\xa5\xc3\xc3\x34\x99\x59\x67\x6d\x5f\x97\xba\xef\x2d\x5f\xa2\x97\x7d\x5d\x79\x5c\x9a\x16\xf9\xce\xe3\xf3\x88\xb7\x45\x98\xdc\x57\x02\x85\x37\x05\xdf\x6a\xa4\xe2\xdc\x95\x5a\x67\xa0\x08\xb7\x6d\x7b\x65\xfa\x16\x18\xad\x7f\xc3\x3f\x14\xe3\x76\xdc\x20\xb3\x6d\x98\x06\x5a\x00\x77\xbb\xf9\xd3\x60\x6e\x3e\xd8\x63\x8b\xef\xf5\x71\xe8\x18\xeb\x73\x0b\x67\xf9\x11\x64\x0d\x38\x14\x7c\x75\xb7\x0d\x8d\x0d\x74\xee\x3a\x5a\x67\x59\x7f\x40\xdc\x11\x10\xd5\xb7\xee\xe7\x14\x4f\x11\xc9\xea\x60\x78\x91\x3c\x53\x30\x01\x34\x9d\x3d\x94\xf4\x8a\x5e\xbc\x7a\xfb\x26\xa7\xa7\x94\xbe\xed\x74\xdf\x15\x3f\xf4\x6a\xfc\x15\x0e\xc4\xc6\x10\xb2\x58\x9d\x57\x1a\x8c\x81\x5c\x89\x6d\x93\x7f\xf7\xf4\x51\xfe\xaf\x7f\xf9\xf3\x9f\xd7\xf9\x13\x65\xaf\x00\x47\xad\x06\x9d\x33\x0e\xa5\x11\xe4\x1e\x9e\x1e\x7d\xd9\x21\xd5\xd9\x09\xfb\x55\x7e\x07\x11\xe4\x9d\xfc\x3e\x0d\xfa\x7f\x83\xf7\xa2\x3b\xb4\xb0\xde\xf6\xdd\x83\x75\x86\x9f\x40\x3b\x54\xe5\x3a\x76\xed\xf9\xb2\x80\xf5\x43\x79\x44\x9a\x33\x1b\x82\xfb\xb0\x93\xba\x2b\x92\xd7\xc7\x6c\xc0\x20\x29\xc8\x68\x6b\xbc\xc6\xd4\x70\xa9\x7a\x2b\x77\xd7\x7e\xf5\x1e\x02\xce\x52\xcb\x80\xe5\x22\x70\x77\x59\x0d\x2f\xb0\x5b\x75\xbe\x9d\x2b\x3a\xb5\xa6\x57\xc6\xe2\xc6\x3e\x96\x80\x8b\x9f\xec\x40\xbf\xdb\xb5\x52\xb9\x13\xf5\x2d\xff\x70\x07\x2a\xea\x23\x86\x72\x07\xe9\xd1\xe3\xd7\xee\x90\x74\x48\x0b\x57\x03\x42\x77\x54\x31\x41\x4a\x39\xbd\x15\x8f\xdd\xd9\x76\x4f\x04\x22\x58\xf7\x46\x38\x3c\x22\x06\x53\x43\x2b\x61\x47\xef\x83\x7f\xcb\x6b\x2d\x2e\x85\x15\xba\x78\xe6\xfe\x58\xf1\x1c\x92\x2e\x66\xd0\x6e\x84\xbe\x0e\x2d\xc2\xc6\xe1\xf6\x0a\x76\x52\x49\x40\x8c\xf6\x6f\x03\x3d\xe4\x4b\xc3\x65\xe2\x7e\x23\x5b\xdc\xcf\x30\xe6\x2e\x7f\xcd\xef\x43\xd3\x6f\x9b\x1a\x5a\xa4\x61\xf9\x38\x19\x89\xd8\x41\x18\x24\xa6\x55\x25\x74\xb5\x1a\x5b\x58\x67\x3b\x3c\x8f\xc2\x42\x55\xba\xf1\xb5\x7d\xbf\x47\xcc\x3a\x6c\x1b\x77\x7e\x77\x37\xbf\x56\xa0\x69\x5c\x2a\xe9\x5d\x25\xf7\xfa\x44\x4b\x6e\xc2\xf8\x7c\x7c\x5a\x9b\x88\xe5\x7e\x60\xf4\x8f\xa7\x09\xb7\x23\x81\xee\x0f\xa0\x72\xd3\x0f\x7a\x0b\x9e\x74\x33\xf9\x46\x18\x5a\xa3\x8a\x10\x65\x2b\x37\x7e\x7d\x41\xb7\x62\xd8\x20\x9a\x5a\xa4\xc1\x52\x9a\x6b\x71\xe7\x62\x78\x37\x99\x09\xa5\x46\xec\x63\x78\xa0\xd3\x2d\x7b\x3d\xe8\x94\xde\x02\x15\x88\x3e\x5f\x05\x09\x38\xa4\x52\x55\x0b\x75\x8c\x50\x53\x2e\x39\x3e\xf3\x29\x84\x3f\xf5\xfc\x6b\x85\x4f\xaa\xd8\x40\xbe\x01\x49\x28\x32\x1d\x2d\xe8\x5d\xaf\x2b\xd0\x88\x65\xd7\xcc\xa6\x68\x28\x9d\x34\xa3\xbc\x94\x70\xc5\x62\x07\x45\x48\x8a\x9e\x50\x11\x64\x01\x11\x1d\x72\x1c\xea\x9b\x0f\xaa\x3e\xdd\x8c\x1b\x15\x2e\xc0\x62\x03\x7e\x15\x70\xc3\x04\x1e\x6c\xd7\xed\x71\xa8\x35\xc8\x1d\x2e\xde\xb3\x9b\x0f\xc6\x42\x6e\xa0\x71\xc3\x21\xca\x85\xc1\xbc\xdc\xe5\x5e\x2c\x47\x59\x3b\x0e\xdb\x31\xbd\xcc\x7a\x21\x9d\xdd\xdd\xfc\x46\xd4\xc9\xdf\xc0\x1e\x6d\xae\xfa\x6d\x93\xef\x67\x84\xf4\x8a\x58\xee\xb0\x0f\x39\x9e\x59\xa2\xa9\xc7\x41\x7f\x7e\xe7\xc5\xe3\xe2\xcb\x3b\x5f\xe4\xa0\x9b\x9b\x0f\xad\xcd\xc5\x60\xfb\x4e\x58\x69\xb6\xcd\xa4\xb1\xef\x90\xee\x03\x3f\x22\x47\x3d\xc7\x10\x53\x02\x9a\xe0\xe6\x32\x96\x09\x01\x1f\x30\xb8\x43\xdc\xf3\x92\x3c\x20\xef\xd0\x2a\xcb\x69\x26\xbd\xf3\x53\xe1\x78\xf4\xb2\xee\x6b\x53\x38\xb6\x9a\xbe\xf0\x49\xb3\x60\x6c\x59\x4b\x5b\xee\xf0\x49\xa9\x8a\xa7\xd0\xb4\xa0\xf1\x6c\x75\xf9\x5b\x20\x6c\x67\xf2\x3f\xd5\xd2\xfe\x29\xff\xa6\xef\x3a\xa1\xaa\xde\x7c\x95\xdf\xbd\x74\x4c\xdc\x5f\xf0\xb1\x40\x84\x20\x5b\x3c\xb1\x2c\x84\xc0\x5e\x90\xee\x35\x48\xeb\x0f\xca\xe2\x1a\xdf\xfc\x86\x1b\xe3\x19\x2c\xe2\x42\xd6\x39\x73\x74\x8c\xcb\x70\x17\x71\xfb\xfb\xdd\x4e\x1e\x25\x62\xc7\x7c\x23\xd5\xcd\x07\x4d\xd8\x82\x9a\x42\x54\x71\xd7\xe4\x0d\x1e\x74\x0b\xfa\x2c\x7f\xfd\xe2\xd1\xf3\xb7\x54\xab\xee\x91\x86\xac\x7c\xaf\xeb\x4c\xaa\x4b\xd1\xca\x0a\x59\x3b\x77\x58\x4e\x70\xd7\x8c\x3f\x99\x2d\xda\xf7\x5a\xc3\xde\xd2\xfc\x7c\x03\x4b\x0c\x4a\xc2\x5c\x48\x63\xf3\x41\xd5\x37\xbf\xb5\x56\xd6\x54\x35\x70\x10\xb8\x36\x9d\xb0\xdb\x86\xd0\xe3\x32\xbd\x8f\xd5\x3d\x2f\xa8\x11\x07\xd0\xcb\x10\xca\xbf\xc2\x19\xaf\x1e\xe4\x77\xcd\x48\xb0\x94\x9d\x34\x06\x8f\x3f\x11\xb0\x2f\x98\x50\xf2\x24\x06\xee\x57\x20\x68\xf2\x1d\x34\x48\x30\x4a\x20\x0a\x56\x11\x01\x3b\x2e\xce\x48\xee\x50\x8d\x40\x45\x3c\x85\xb6\x8a\x06\x16\xcf\xcd\x88\x4b\x60\x9a\xa2\x5e\x3a\x32\x17\x8e\xcf\x0a\xc4\xdb\x4e\xd6\x03\xe3\x56\xb7\xaa\xcb\x47\xed\x85\x92\x56\x8a\x56\x32\x96\x4f\xd9\xcb\x64\x3b\x92\xfb\xcf\x27\xde\x5d\xeb\x27\xf3\x5d\x4d\xb7\xc5\xdf\x04\x33\x6c\xb7\x60\x4c\xf1\x1c\x34\xd3\xa2\x3f\xca\xb6\xdd\xf7\x5d\x07\xea\xb3\xfc\x47\xe9\x5e\xd4\x9d\xee\x9b\x33\x7c\x57\xcd\x28\x64\x22\x6c\xc9\x94\xbf\xb2\x66\xdb\x48\xc0\x93\x4b\x5c\xdd\x9a\x6a\x5e\xdd\xfc\x86\x0f\x26\xbe\xd8\x12\x5a\x3c\x26\xb5\x22\x46\x37\xaf\x44\x27\xed\xb8\xf2\x29\xd5\xfe\x86\x25\x1f\x1d\x92\xbf\xab\xdb\xcf\x56\xf6\x73\xd3\x77\xf0\x2e\x1b\x98\xdf\xee\xf1\x4d\x4d\xf0\x09\x13\x05\x13\x91\xad\x07\x0c\xc8\xc5\x5c\x49\xbb\x6d\xca\x20\x15\xc7\x2d\xb5\xf0\xde\x92\x54\x12\xde\xf3\x61\x1c\x25\xe5\x86\x84\xd6\xf9\x15\x6c\x1b\x03\xad\xca\xba\x6b\xba\x17\xa6\x78\x45\x54\x6e\xcc\x89\x67\xa6\xe9\xaf\x48\x10\xed\x40\x7e\x22\xc2\xbe\x83\x46\x27\x70\xeb\xf5\x3a\xdb\xf6\x6d\x2b\x36\x3d\x9e\x8f\x4b\x0f\xfe\x8c\xa4\x0f\x48\x75\xec\x2c\xee\xce\xa4\xf5\xee\xba\xec\x75\xed\x3b\x4e\x05\xb1\x58\xc8\x22\x5f\x5f\xce\x32\x5f\x93\xd1\x7b\x45\x2a\x81\xbb\x26\xdf\x80\xd5\x02\x71\xb7\xca\x9c\xb0\x73\x2d\x55\x49\xc2\x54\x1e\xc2\x0b\x45\x4c\xb0\x4a\x7b\xce\x7e\x76\xea\x82\x77\x2c\xce\x2e\x92\x52\xbc\xef\x66\x94\xc2\xc5\xa2\x6d\x33\x91\x17\x67\x06\x84\xde\x36\x4c\x82\x65\xd9\xcf\x62\xb0\xcd\xbb\x48\xc6\x5f\x3a\x51\xb1\x93\x50\xf3\xe9\x0e\xb2\x9f\x91\xb2\x6f\xe0\x80\x4c\x40\x67\xea\xe2\x39\x09\x16\xf0\x9c\x6e\x40\x83\xb4\xc4\x91\x71\xcd\xbf\xe6\x5f\xd3\x9b\x28\xdc\x7b\xfa\x59\x66\xfa\xad\x14\x6d\xf9\x3b\xdb\xb9\x04\xbd\x57\x37\xbf\x1d\x76\xd8\x54\x4a\x43\xb1\x32\xa2\x3b\xd8\xe2\x89\xc9\xed\x80\x47\xd7\xe4\x2d\xc8\xea\x6c\x41\xfe\x75\x35\xe8\x0a\x22\x62\x2a\x3c\x07\x91\x74\x8f\x2e\x9d\x50\xc4\xfb\x26\x8f\xdb\x94\xda\xc3\xe1\x93\xa6\x62\xa9\xdf\x87\x31\xaf\x33\x23\x98\xcc\xca\xf1\x68\xf3\x01\x65\xb8\x33\x25\x93\xa2\xc5\xf9\x60\x1b\x50\x56\xd2\xeb\x44\x15\xff\x4e\x98\x3a\x6b\xfb\xad\x68\x8b\x97\xfd\x5e\xb4\x99\x86\x0e\xba\x0d\x8e\x06\x62\x0d\xcb\xa6\x05\xb9\x41\x12\xba\xd7\x35\xdd\xf9\xe9\x8b\x7e\x09\xba\x46\xec\xcd\x20\x70\x2b\xc8\x5f\xbd\xde\xa9\x54\xfd\x15\x9e\x38\x12\x39\x8f\xf2\x50\xbf\x5d\x31\xdd\x34\xae\x26\x11\x48\x6b\x4f\x5c\x30\xd1\x4b\x4c\x9f\x01\x65\xc3\xf6\xe1\xdd\x41\xb2\x37\x59\xbb\xc9\x4a\x09\x95\xdf\xdf\x3c\xb8\x6b\xee\xdf\xdb\x3c\xc8\x6b\xa0\xa7\x23\x6c\x22\x92\xbc\xba\x77\x44\x06\xf5\x4e\x7a\x8b\xde\xd8\x9d\x20\xe6\xde\x4b\xf6\x89\x5b\xbe\xf9\xb0\x6d\x48\x1f\x70\xb7\xca\x2f\x2c\xa9\xe2\x48\x94\x33\x3f\x35\x62\x73\x1c\xcc\xb6\x69\x25\xdc\xfc\x27\x91\x83\x5b\x42\x1d\x74\x79\xfd\xb5\x39\x0f\x74\x74\xe8\x98\x96\x24\x3b\xe8\xbe\x91\x1b\x69\x11\xfb\x46\x9a\x3d\x5c\xda\x4d\x4f\x6a\x91\x04\x80\xa9\x4b\xc4\x04\x9d\xbb\x84\x88\x8e\xc1\xf8\x57\x11\x8c\x15\xd6\x82\xf5\xc7\xf4\x38\x70\x7b\xf1\x1a\xe0\x61\x0a\x23\x59\x38\xc6\x1a\x68\xdd\x5b\xd9\x49\x7b\xf2\xf2\x88\x0d\xb0\x62\x82\xe5\x87\xd1\xd5\x84\xdc\x4f\x36\xde\x1f\x24\xc7\x99\x09\x18\x2f\x95\x20\xde\x0a\x1b\xf9\x4b\xfe\x4a\x2a\x12\xa5\x21\x6f\x7a\xd0\xfd\x66\x1c\x21\x98\xbc\x12\x4a\x11\x01\xdd\x89\x76\x9d\x35\xc2\x94\x83\x72\xa7\x05\x2a\xbe\x65\xcf\x45\xdb\xf6\xf9\x5d\x73\x16\x0d\x8a\x06\x33\xa8\x40\x9a\x5a\x2f\xfb\x08\xb2\x92\xcf\xc3\x69\xf9\x62\x9d\x93\x92\x87\x04\xe4\x54\x71\xf1\x98\xd1\x09\xb1\xfe\x81\xe5\x77\x0d\xc2\xc9\xdc\x84\x83\x7f\x96\xef\x5b\xb9\xdd\x7b\xc4\x45\xf3\x25\x71\x1a\xa8\x7c\xd7\xb7\x35\xe3\x93\x87\x83\xb5\x48\x18\xd2\x8a\xfb\x89\x48\xe4\x53\xb8\x72\x38\x70\x4b\x2b\x0a\xac\xe0\x3c\x0e\x78\x56\x0c\x0b\x2e\xa9\x19\x6c\xcd\xde\xd2\x98\xab\x8f\x6f\xbb\xbf\xc9\xab\xe3\xa0\x6f\x7e\xdb\xee\x0d\xd8\x23\x69\xc2\xe6\x4d\x73\xab\x73\x1c\x90\xd4\x0c\xb4\xc4\xb6\xaf\x60\x01\xf3\x11\xcf\x1a\x2d\x2b\x82\xd1\x09\x16\x9b\x1a\x5a\x31\xec\xfc\x9a\x06\x02\x63\x3d\xe9\x38\x11\xe7\x27\x33\x13\x26\x9f\x0e\xea\x38\xb8\x61\x85\xda\xb6\xef\x4b\xd3\x20\x89\xfa\x38\x86\x27\x11\x7a\x27\x71\xa2\x78\xe7\x4d\xfe\x5f\xbd\x2a\x29\x6f\x85\xaa\x83\x7a\x45\x95\x84\x59\xc7\xd7\x10\x6f\xdd\xaa\x45\x3c\x0b\x74\x1f\x23\x4e\x9b\x1a\xbf\xf9\x55\x5b\xc4\x26\x74\x3b\x2f\xa5\x60\x4a\xcd\x69\xec\xd6\x59\xc6\x97\xda\x5e\xf5\xe5\x4e\x6c\x6d\xaf\x8b\x9f\xae\x40\xae\x9e\x8a\x3d\x72\x73\x33\xf4\x3e\x03\xa7\x65\xa1\xb5\x7e\xf3\xe2\xf5\xbc\x14\x90\x25\x29\x35\x6c\xfb\x4b\xd0\xd7\xbc\x29\xcf\x60\x93\xe8\xa9\x7e\x44\x82\x51\x37\xee\x2d\x0f\x9b\xc2\x6a\x03\x09\xf9\xad\x03\xc2\x36\xe6\xdd\xfa\x0e\x93\xc9\xcc\xfa\x39\x5d\x8f\x07\xba\x3c\xb0\x53\x93\x0c\x0b\x31\xce\xef\xa3\xa3\x37\xf9\x9b\x17\xaf\x97\xa7\x30\x72\x5a\xf1\x90\x90\x63\x3a\xb1\x5e\xfc\xfe\x98\x6d\xd3\x2b\x27\x5b\xb3\x4e\xb2\x3a\x65\x59\xd6\x59\xf6\x33\x5e\xce\x77\xfc\x50\x20\x81\xe5\x8f\x13\xe3\x45\x71\xea\xad\x08\xf0\xcc\x5a\x3f\x1c\x59\x6e\x0f\x38\x45\x70\x9f\x78\x6b\x03\xc1\xe2\xd9\x90\xb9\xf8\xa6\xad\x49\xad\x70\x16\x31\x26\x63\x35\x27\x9c\x1d\x8b\xf0\x21\x7e\xd8\xeb\x0a\xa7\xda\x57\xa2\x7d\x97\x5d\x83\x29\xbe\x16\x99\xea\x8b\xd7\xb8\xe0\x5d\x5f\x61\x8d\x9b\xff\x46\x17\x21\xcb\x7e\xde\xf5\xba\x7b\x97\x7d\x6f\x40\xbf\x9e\x49\x23\x90\xa8\xa5\xaf\x91\x0a\x0b\x7f\x67\x4f\x22\x53\x90\x30\xe5\x37\x33\xa9\xc5\x77\x40\xaa\xea\x30\x79\x98\x98\x86\x5c\x5c\x3c\x7f\xcb\x52\xe2\x8b\xe7\xab\x8b\x6d\xd3\x92\xe0\xa6\xa5\xbe\x9f\x5b\x7b\x30\xdf\xeb\xb6\x60\xfd\xc7\xf7\xdf\xbd\xcc\xde\x88\xeb\xb6\x17\x15\x7e\x74\x7f\xd2\xe7\xb7\x20\x3a\x1a\x25\xfe\x41\x75\xf1\xc0\xbd\x4e\xd5\x93\x03\x92\xe6\xc6\xdd\x66\x7a\x77\x9f\x9c\x16\x93\x64\xaf\xe1\xea\xa1\x16\x6a\xeb\x5a\x61\x99\x1f\x7d\x20\x2d\x66\xf6\xa8\xef\x3a\x69\x2f\x86\xae\x13\xfa\xba\xe0\x5f\xf9\x4f\x83\x11\xb8\x07\x3b\x61\x0c\xf6\xc2\x9f\x5f\x81\x31\xa2\x06\x0f\xf4\xda\x8b\xcf\x5d\xf1\xa3\xa6\x97\xdb\x50\x7a\x3e\x98\x2b\xd1\xb4\xd9\x5b\x0d\xf0\xda\xab\xe9\x59\x7f\xf3\x88\x90\x1c\x72\xf8\xf8\x10\x66\x41\x0a\x07\x64\xd5\xf2\xcb\xb2\x42\xf7\x97\x4c\xb4\x87\x46\x10\x6b\x17\x20\xf7\xf8\xa8\x8b\xc1\x78\xd2\x89\xd8\x5e\x82\x53\x43\x07\x5a\x22\xcf\x1a\xb0\x30\x92\x05\x77\x56\xe5\x1d\x64\x72\xf9\x05\x4e\x1b\xad\x7a\xfb\x07\x1a\x5e\x7f\xa4\x65\xd3\xfe\xb1\x81\xaf\x57\xe5\xbd\xb4\x03\x23\x8f\xe3\x9a\x05\x05\xee\x33\x7d\xf3\xeb\xcd\x7f\x02\x09\x94\x88\x81\xff\x25\x23\xc9\xc2\x0c\x98\x9e\x2a\x7e\xa9\xee\x9a\xd0\x57\xdc\x41\x27\xde\xa7\xf5\x68\x63\x9a\x9b\x5f\x99\xaa\x3d\x59\x8f\x55\x55\xbe\x12\x22\x2f\xa6\x86\x1c\xf2\x9a\x22\x98\xf5\x2f\xd9\xa0\x6f\x85\xff\xfe\xbb\x97\xeb\x5f\x32\xa9\xb6\xed\x50\x4d\xa7\x0c\x2a\x7f\x8b\x8c\xfd\x9f\xee\x9a\x3f\x25\xa3\x18\xd4\x5e\xf5\x57\xca\x81\x7f\xaf\x36\x80\x8b\x6e\x49\x0c\xd4\xb4\xa0\xbf\xf2\xe6\x5c\xa5\x54\xdb\x5e\x6b\xd8\xda\x20\xb2\x36\x56\x76\x9d\xc7\xb9\x37\xbf\x11\x65\xaa\xd6\x23\x09\x10\x09\xc0\x24\x24\xaf\x34\xd5\x04\x35\xab\x1a\x0c\xd1\xca\x0d\x80\x2a\xad\xd8\x83\x4a\xe5\x1b\x38\x6f\x4f\x02\x13\x53\x44\xd2\x7f\x12\xd3\x4d\xeb\x4d\x70\xd8\x89\xaa\xbd\xae\x67\x35\x63\x8e\xdd\xdc\xd2\xad\x05\xd1\xcd\x2a\x7b\xa4\x74\xa2\x0e\x6f\x3b\xc1\x0f\x06\xaa\x09\x4e\x65\xf5\x72\x54\xeb\x8a\x19\xab\x71\x61\xc2\xea\x8e\xfb\x31\x17\x00\x05\x04\x3c\xbe\x89\x4e\xba\x99\xb0\xb5\x65\x27\xcd\xb8\x41\xa4\x08\xbb\xba\xf9\xd0\xb4\x16\xf2\x53\x0c\x2f\xb5\x58\x41\x37\x8a\x30\xb9\xf9\xe3\x50\x43\xaf\x2b\x85\x63\x25\x3a\x41\x93\xb1\x61\x24\x45\x65\xd9\x37\xbf\xbb\x24\x7f\x61\xd2\x41\x68\x31\xec\x9c\xa8\xad\x72\x16\x10\x2f\x1a\xc5\x4c\x45\x0d\xb4\x6a\x90\x4f\xf7\xd2\xcd\x06\x47\xb3\xd0\x5f\x7f\xa5\xf0\xad\xfc\xb4\x0e\xe3\x6e\xdc\xf3\x61\x90\x76\x96\x38\x3b\xf3\x91\x9e\xc2\x7b\xff\x91\x7e\x84\x49\xfa\x09\xfb\xe3\x14\xab\xdc\x7a\x90\x1a\xc3\x7b\x69\x2c\x89\x10\x18\x3e\xd2\x3f\x51\x91\x04\xed\xb6\x75\x9d\xb5\xc2\xd8\x12\x0f\x31\x4d\xba\x78\xa2\xec\x0e\x5f\x5d\x45\xd3\x68\x91\xdf\x07\x95\xbf\x92\xb6\x6e\x25\x54\x06\x37\x99\xc8\xd1\x2e\x7f\x82\xe4\x8c\xbd\xf9\xad\x03\xbd\xc2\x33\x1b\x9d\x95\xe3\xd0\xde\x7c\x30\x46\xd6\x38\x7c\x64\x0b\x25\x99\x3e\x44\xb8\x90\x29\xda\xa8\x89\xfc\x6f\xa9\x3c\x2e\xa7\x91\x13\xf6\x59\x67\xa3\xc8\xd9\x34\xe5\x1e\xae\x8b\x97\x20\x83\xf2\xf2\x4a\xfa\x33\xe4\x94\xfe\x2f\x45\x0d\x67\x4e\x06\x97\xd2\x09\xc8\x27\x11\xb2\x38\xe8\x9b\xdf\x76\xa0\xbe\xca\xef\x9a\x6c\x60\x6d\xd9\x25\x68\xb9\xbb\x0e\x3d\x10\xf5\x4f\xef\xc7\x62\x43\x11\xe2\x71\x6d\x9d\xe5\x8a\xb0\x19\xb1\xdb\x42\xb9\x8d\x03\xed\xf1\x2b\x6d\x91\xe3\xa7\x9d\x30\xce\xd3\xbe\xc6\x9b\x23\x1b\x92\x7e\xbb\x2b\xe6\xe4\xdc\x73\x4a\x7e\x07\x4d\x4b\x96\x16\xad\xa8\x81\x05\xe3\x99\xb1\xb2\x6d\x71\x0b\xd9\xd4\x35\x50\xa2\xf9\x86\x0e\xa2\x53\x6a\x25\x12\xd4\xfc\xb1\x04\x33\xea\xbe\x8e\x03\x12\xca\x79\x0d\xed\xcd\xaf\x06\x27\x47\x88\x80\x66\x68\x35\x76\x14\x2c\x3a\xb8\x2f\xe4\xed\x7b\x5d\x17\x2c\x1b\x52\x15\xf7\xe0\x0f\x0a\x6d\x70\x6a\xb7\x75\xe6\x98\x6b\x6e\xdf\xcd\xfe\x38\x38\xf1\x0d\x2b\xd5\xc7\x83\x46\x12\x5c\xc6\xae\x93\xb9\xf1\xb0\x93\xb3\xf2\x3f\x60\x92\x19\x5b\x81\x96\x1b\x22\xe2\xa2\x5b\xf5\x93\x84\x76\xe5\x48\xbb\xc9\x65\xca\xb2\x9f\xf1\x0a\xbe\xcb\xb6\x8d\x50\x35\x38\x4d\xb7\x27\x9d\xd9\x32\x32\xd8\xdf\x6e\x64\x5b\x65\x7f\xeb\xa5\x2a\x7b\x7c\xa2\x64\x0d\x56\x03\x29\x7a\xbb\xd1\xe0\x59\xc2\x44\x50\xec\x4c\x72\xaf\x8b\x9b\xff\x7b\xb7\x03\xe5\x64\xdc\xa3\x75\x6e\xb6\xeb\xdb\xb6\xbf\x02\x6d\x8a\xa7\x4e\x78\x91\x19\x2b\x10\xe7\x14\x4f\xc5\xa5\x23\x69\xed\x44\x2c\xce\x95\xa4\xaa\xb9\x52\x2e\xb7\x8d\xfb\xe6\x5a\xc9\x06\xe5\x7e\x13\x1f\xcd\xf2\x78\x96\x8e\x64\x19\x32\x04\x6b\x7a\x5b\x90\x87\xd1\x97\x50\x25\x56\x6f\xf4\xaa\x10\xdd\x80\x08\x82\x41\x58\x40\x3a\x56\x3c\x08\x6b\x41\x2b\x56\x07\xd2\x04\xaa\xe4\x55\xe2\x8b\xfd\xb4\xd7\x1d\xb7\x14\x69\xdd\x58\x85\x6f\x91\x57\xf3\xc6\xcc\xef\x32\x6f\xee\xec\x4c\x9d\xe7\xea\x51\xb7\x35\xd1\x56\xb8\x8b\x6f\x26\xac\x45\x66\x60\x3b\x68\x5c\xf1\x0b\xba\x9c\x0d\x48\xbb\x24\xc1\x27\xb5\xc2\x44\x52\x2f\x0e\x87\x56\x6e\x9d\x14\x3f\x28\xa4\x40\x65\x15\xb4\x60\x81\x6d\xb8\xc3\x7d\xc8\xb2\xc3\xb0\x69\xe5\x36\xd8\x6a\xc7\x5b\x6c\xbc\xd5\xb6\xb7\xd7\x0f\xd2\xc5\xa9\xa0\x0c\x17\xf9\xe6\xd7\x50\x93\x8c\x30\x80\x8c\xcc\xc8\x0e\x4c\x82\xb2\x79\x25\x8e\xc3\x99\x7b\x25\xa7\x06\x3a\x24\x22\x3c\xde\xfc\x46\xba\x7b\x67\xce\x47\x03\x65\x43\xb2\xd8\x10\xdc\xc9\xc9\x74\xee\xfd\x12\x10\xbf\x9a\x6d\x43\xa2\x9e\x88\x8e\x0b\xb4\x87\x13\xbb\x57\x89\x34\x66\xb4\x74\x50\xa9\x88\xd4\xed\xec\x19\x5e\x9a\x18\x8a\xce\x03\x62\x72\x2f\x9b\xd9\x0d\x6d\xcb\xaf\xf5\x0f\x7d\xdb\x22\xab\xad\x2a\x59\x83\x66\xd6\x6b\xe6\x3c\xd1\xf6\x5b\x67\x62\x6b\x85\xaa\xf0\x34\x0c\x87\x0a\x99\xf5\xf4\xd4\x90\x36\x35\x28\x15\x27\x30\x81\xff\x1e\x0d\xea\x9d\x60\x21\x62\xc1\xe3\x16\xec\xda\x63\x85\x45\x5f\x89\xbc\x06\x9e\x8e\x9d\x82\x79\xb9\x2e\x23\x32\xc6\x25\xa4\x01\x91\x7a\xef\x85\xc7\xce\xfa\xef\xa5\x54\x7b\x83\x2b\xc3\x52\xe7\xd8\x80\xa4\xc7\x87\x9b\x04\xf7\x56\xaa\x01\x17\x43\x5a\xd0\x0b\xe6\xf9\xce\x2c\xc7\x19\xe9\x6c\xae\x59\x3a\x19\xd9\xe6\xa4\xe6\x38\x97\x52\x78\x1e\xf8\x0f\xd9\x0a\x05\x9b\x95\xc1\xd8\xbe\xf3\x98\xf3\xe1\xcc\xf4\xc9\x44\xd5\x62\x93\x97\x6d\xd3\xf7\xc6\xe9\xbf\xb8\x2e\xab\xbf\x62\xe8\xc1\x10\x71\x3a\xee\xe5\x0c\x09\xa4\xaa\xfd\x74\xff\xf9\xce\x96\xdb\x41\x6b\x50\xd6\xd7\x3d\x77\x1a\xf7\xa4\xa7\x70\xa3\x87\x43\xdb\x8b\x6a\x5c\x11\x42\x6f\xa5\xec\x90\xbd\x47\x8a\x39\xb2\xc6\x72\x86\x66\x81\x2f\xcb\x1f\x92\x01\x56\x32\xd2\xf8\xd0\xc5\x96\x5e\xab\x48\x79\xcd\xa7\x50\xdd\x72\x0c\xfd\x01\x9b\x8b\x9a\xdc\x85\xca\xfa\x36\x22\x4c\xa3\x19\x7a\xe4\x89\xab\x1c\xca\xdd\x3a\x8f\x96\x83\xf6\xfa\xc0\x1b\x71\x02\x64\x26\xd4\x59\xe0\x48\xe6\x9d\x2e\x71\x22\x93\x89\xa4\x77\xd2\xd7\xe3\x5b\x19\xae\xd7\x3a\x8f\x0d\xeb\x47\xa5\x16\x39\x26\x48\xba\x37\x0a\x06\x2f\x14\xc6\x06\xbc\xea\x33\x42\x68\xae\xe3\xdf\x8f\xce\x62\xf9\x77\x24\x63\x26\xde\xce\x4c\x58\xba\xe0\x3b\xb4\x5c\x1a\xf9\x0f\x31\x6b\x38\xbe\x0c\x07\x2d\x3b\x32\x81\x59\xe2\x11\x49\x6c\xbc\x80\xfc\x11\xc9\x0b\x1c\x10\xe4\x4f\x07\xb5\x8f\x9c\x94\x1c\x27\x89\xad\x0a\x7d\x5d\xbc\xe1\xd6\xfd\x6f\x6f\x45\xd4\x9a\xb1\x5f\xdf\xe1\x68\xaf\xed\x6e\x11\xc3\xbe\xf4\xf7\xc4\x0f\xbc\x05\xc2\xcb\x4e\xed\xd1\x2e\x17\xf3\x04\x1f\x0b\x93\xfb\xfa\xde\xcc\x7a\x62\x2e\x4b\xd3\x24\xdb\xb1\x17\x6a\xd7\x3b\x75\x25\x0b\x51\x98\xc5\x61\x05\x2f\x79\xa4\x2c\x36\x10\x94\xd5\x96\x08\x8e\x75\xfe\x63\x1f\xc8\xf6\x5d\xaf\xed\x4e\xe0\xc3\xf4\xd7\xe9\xf8\xfc\x31\x9c\xae\xfa\xec\x79\x08\x64\xe8\x67\x99\xa8\x2a\xba\x33\xbc\x30\xe4\x3e\x36\xa9\xde\x48\x75\x1c\xd8\xef\x81\xa0\x61\x41\xa2\xba\x0c\x54\x26\xea\x5a\x03\xea\xa4\x8a\xb6\x4b\xf4\xb3\x44\x69\x79\xd5\xac\xa7\xde\x63\x96\x27\xc8\xb2\x15\xe9\x66\xf1\x42\x0b\x55\x4f\x1c\xaf\x46\xa5\xac\xd7\x6a\x25\x1a\xf5\x99\x4a\x36\x8c\x3a\x41\x76\x6a\x61\x45\xe6\x0b\x4a\xd3\xaf\x01\x17\x00\x11\x9d\xbb\x37\x27\x28\xbb\xc4\xf1\xae\x22\xa6\x2f\x2a\x8c\x57\x12\x1b\xe0\x43\x87\xbc\x1a\x5d\x6a\x5c\xbf\x97\xd2\x20\xcb\xde\xb6\xa0\x27\xec\x21\x1f\xac\x58\xf7\x3b\x8a\x37\xdc\x51\x62\x46\x30\x1c\x45\x5a\x4a\xb6\x73\x9c\xb5\xa2\x82\xa0\xcb\x09\xd7\xb8\x09\x1a\x96\xd3\xb1\xdd\x37\x56\xf7\xaa\x7e\xf0\x50\x8b\x21\xf0\x56\xe4\x89\xfa\xd7\xfb\xf7\x5c\x59\x4e\x8a\xb8\x30\xfa\x73\xd5\x82\xb4\xb8\x05\xc7\xa1\xcb\xef\x8b\xc8\xcd\xed\x89\x3e\xc2\x50\x3b\x63\xe7\x89\xa4\x9d\x3c\xdf\x88\x6b\x4a\xaa\xe0\x55\x84\xc8\xc3\x96\xaa\xbd\xd1\xfd\xa6\x85\x0e\xb0\xce\x3a\x1c\x71\x5a\xe8\x74\x27\xa6\x8b\xbd\x87\xeb\x48\xc2\x15\xfc\x16\x4c\x4c\xd8\xe2\x24\x43\x0b\xc6\x1d\x86\x05\xc1\x97\x6f\x8f\x68\x29\x96\x98\x49\x95\x34\xa4\xa3\x86\x46\x6c\xd0\x39\xf7\xa3\x91\xc7\x73\x8d\xaf\x33\xdf\x5c\x31\xd1\x40\xe0\xf7\x6d\x2a\x75\x77\x27\x2b\x1c\x66\xd6\x0c\x4c\xa6\x4f\x17\xed\xf6\xd3\xfc\x99\xc7\x9c\x24\xfd\xf0\x88\xd1\xcf\x2d\x60\xce\x49\xc3\xed\x29\xc0\x53\x38\xd4\x4c\x86\x66\x22\x24\x8a\x63\x69\x6e\x7e\xd5\xa4\xc5\x5a\x72\x60\x72\x0c\xc1\x28\x7b\x08\xa7\x7b\x9d\xbf\xba\xf9\x75\x14\x6d\xc5\xb8\x73\x36\x32\xbf\x52\x93\xa9\x7c\x14\x7b\xf6\xaa\x78\x1e\x2d\x18\xb2\xd1\x24\xda\xa2\x2d\xff\x69\x68\xbd\xf9\x11\x9f\x0b\x2c\x56\x7d\x19\xd8\xe9\x6f\x82\x69\x80\x4a\x58\x1c\xda\x53\x63\x91\x06\x0b\x18\x20\x3d\x30\x3c\x30\xc9\x66\x46\x5e\x5e\xf6\xbf\xe4\x6f\x49\x9a\x10\xfa\xcb\x6c\xbf\x07\x35\x6b\xc9\xe4\x6f\xf1\xfb\xed\x8d\x38\x25\x65\x96\x7d\xb2\xf2\x39\x52\x8f\x62\x8f\x83\x41\x56\xc7\x0e\xe6\xab\xb8\x04\x1f\x5a\xa9\x92\x2f\xbb\x5d\x71\x3e\x98\x2c\x51\xd9\x92\x61\xee\x68\x14\x13\x17\x3a\xfa\xa7\x78\x1c\x1b\xc6\x47\xe5\x64\x37\x97\xe8\x65\x4d\xf1\x30\x98\xcf\x11\xa5\x41\x38\xb8\xf1\x0a\xd4\x08\xa5\x20\x52\x21\xcc\xbf\xac\xc5\x35\x84\x87\x84\x72\xb2\x48\x16\x9c\x81\xca\xbf\x9d\x52\x78\x2c\x56\x12\xed\x48\x49\xae\x1e\xf5\x15\xe4\x44\xa2\xa9\x33\x76\x04\xb9\xf2\xf6\x24\xd5\x78\xb4\x3d\x1f\xa5\x17\x44\xd9\x42\x05\xff\x03\xd0\x2d\x59\xed\xb3\x16\x28\x9e\x7d\x63\xed\xa1\x78\x8a\x54\xd6\xe8\x95\xb5\xfa\xf6\x00\xda\xd3\x21\x7e\x88\xa3\x21\x0b\x3d\x84\xbc\x38\x29\xb7\x8b\x4b\x15\xeb\x3f\x48\xfe\xc2\x53\x08\x4f\x89\x37\xf1\x8b\x9d\x46\x46\xb3\xae\x71\x69\x7f\xfe\xf2\x9d\xb9\xfb\xf3\x9f\xdf\x99\x3b\x0f\xde\x80\x36\x37\xbf\x2a\x27\x61\xf0\x77\x7a\x45\x67\x92\x17\xb8\x35\xac\xac\x76\xd6\x4e\x72\x24\xa4\xce\xf2\xe3\xfa\xe1\x3a\xbf\x8f\xbb\xf1\xe0\xee\xcf\x7f\x79\x67\xee\xdf\xa3\xbf\xd7\xf3\xf3\xe3\xec\xdb\x6f\x37\x50\x58\x3e\x43\x66\x2b\x54\xf9\x77\xef\x66\x9c\x4c\x8b\x07\x76\x7a\x73\x82\xb1\x09\xb2\x52\x2c\x9a\x10\xb8\xe0\xe9\x2d\xf0\x66\x09\x06\xb6\x1a\x6c\xf1\x2d\x3e\x6d\x75\xb0\x4c\x60\xea\xe6\x19\x34\x20\x3b\x3e\x38\x20\xd3\x06\xb0\xfb\xdb\x2d\x1b\x9c\xe9\x42\x52\x8b\xa5\xcd\xb1\x61\x40\xb6\x60\xd3\x10\x1a\x7c\x2c\x21\x95\xff\xbf\x78\x9d\x5a\xf7\xfa\x53\x70\x09\xda\x8c\x14\x00\x18\xc7\x6c\x7d\x96\x25\xc6\x1b\x88\x13\xa3\xc6\x9d\xd6\xa4\x92\x7a\xa6\x64\x88\x2c\x26\x66\x6f\xab\x27\x09\xbd\x11\x98\x77\xa7\x26\xe6\x41\x7d\xb6\x70\x0c\x58\x49\xf8\x64\x74\x0b\x22\xe9\xd1\xed\xc7\x42\x3a\x3b\xf4\x89\xc4\x7b\xde\xb8\x7f\x38\x1e\x7f\xd4\x14\x86\xe7\x43\x0c\x50\xf4\x58\xa5\x0c\x33\x1b\x71\x4e\xd6\x2d\xc6\x64\x9f\x72\xa6\xe7\xa6\x34\x8c\xbc\x6e\x69\x95\xde\x86\x13\xd5\xbc\xb3\xd6\x71\xc8\x6b\xa8\x10\x8b\x9e\x45\x2f\xda\x71\x70\xc2\xeb\xb3\x11\x9f\x5d\xf6\x9a\x08\xf6\x1a\x1a\x50\x15\x63\x99\x7f\x10\xc3\x39\xfb\xf4\xaf\xc9\x33\xf1\x84\x49\x0d\xe9\x49\x9c\xd7\x62\x27\xda\x68\x50\x4e\x9c\x9e\xdf\xdf\x3c\xf0\x37\x38\xc2\xf7\x8c\x9c\x1f\xd1\xdc\x16\x71\x39\x12\x14\xf7\xef\x6d\x52\x9c\xa2\x81\x9d\xce\x2d\x4c\x1f\x97\x53\xeb\xa6\x00\x57\x4c\x81\x9e\xa1\x97\x93\x6d\xb9\xb3\x8a\x24\x12\x5f\x21\xc8\x9f\x85\x16\xf2\xd3\x6b\x61\x3e\xe1\xc0\x9e\xee\x34\x3e\xc3\x4c\x8c\x9c\xea\x65\x41\xcc\xe3\x67\x98\x9e\x5a\x6f\xea\xfc\x29\x28\xb8\x3a\xf1\x90\xfb\x36\x02\xd5\x38\xca\xc2\x8d\x92\x97\x20\x86\x54\x50\x4c\x44\x63\x05\x03\x4b\xa0\x35\x54\xc3\x91\x28\x68\x03\x52\x9d\x91\x28\xb0\x82\xee\x13\x6c\xd6\x22\x73\x6a\x9e\xf0\x2d\x84\xe4\xc2\x70\xff\x51\x8c\x10\x2f\x66\xd4\xf5\x67\x81\x93\x14\xd4\x5e\x49\xb4\x5c\xf1\x03\xb3\x8f\x58\xfd\x10\xbd\xa3\x1a\xaf\x97\x50\xb5\x7b\x46\xb3\xb0\xd5\xc8\xfb\x70\x4d\x96\x87\x31\xe5\x07\x8e\xd7\x62\x02\xd1\x04\xda\x30\xd6\x63\x13\x08\xce\x99\xab\x78\xba\x01\xf9\x36\x7f\x95\xbd\x08\x98\x9c\xa7\xce\xdf\xbc\x98\x5f\xc1\x2c\xf4\xcf\x7d\xf0\x85\xf6\x83\x20\xd1\x54\x7e\xc9\xf2\x8d\xb8\x51\xe9\x11\xe4\xda\x91\xb0\xc4\xf8\x50\x35\xb6\xec\x0a\xf3\xe3\xb9\x71\x83\xd1\x65\x4b\xcb\x79\x4f\x80\x65\x74\xc9\x42\x2d\x52\xf8\xfe\x40\xe7\x17\x91\xc6\x94\x11\x44\xe4\x5d\x53\x8d\x4b\xd3\x1f\xe8\xb0\x34\xec\xcf\x5f\x09\xa7\x74\x53\xb9\x39\x20\x3d\xef\x35\xc5\x44\x3f\x09\xc5\xae\x83\x6e\x3d\x03\x8b\xc5\x13\x09\x4c\x56\xbc\xe9\x23\xa7\x15\x93\x4e\xbe\xf7\xc0\xef\x2c\xd7\x39\xcd\x74\x1d\x92\xc6\x92\x65\xf9\x18\x07\x36\x09\xa6\xf1\x49\x3c\x57\x3c\xcf\x70\x49\xde\x4c\xcf\x70\x44\x0b\x2e\xec\x8d\xeb\xc7\x7e\x46\x6e\x4a\x2c\x89\xc4\x7e\x78\x7d\x1d\xcd\xe8\x07\x75\x1c\x52\x61\x7a\x7c\x96\x58\xad\x6a\xdc\xc1\xf1\xe1\x61\xea\xd6\x59\x3c\x9d\x64\xc2\x49\xe3\xb6\x56\xbd\x82\x51\x05\x4d\x82\xf3\x5b\x54\xd0\x6b\xae\xd4\x82\xb8\xf4\x08\x31\xd1\x23\x23\x35\x4f\x71\x2a\x62\xb8\xe0\x25\x8a\xa5\x1e\xfd\xa7\x97\x84\x76\x27\x09\x28\x82\x34\xf8\x5b\x10\x9d\x61\xc5\x47\xc5\x21\x45\x5c\x10\x8c\x69\x44\x93\x5b\xb6\x8a\x55\x8d\x3c\x92\x22\xb4\x10\x7f\x75\xf3\x88\xdc\x0b\x2f\x17\xc1\xf8\xf0\x05\xf4\x44\xd8\x23\xaa\x44\xa7\x2c\x70\x33\x44\x2f\x44\x74\x04\x98\xb1\xd5\x5b\x46\x1b\xf7\x17\xf8\xf8\x60\xe4\x9f\x86\x36\x71\xa6\x64\xd1\x91\x0a\x3d\x7c\x96\xf9\x23\xea\xcd\x6d\x27\x9a\x52\x57\x9a\x68\xc6\xce\x49\x54\xcd\xf3\x18\xa9\xba\x4a\x0c\xa0\x1b\xb1\xb3\xa3\xd9\x01\x6e\x0d\x11\x2c\x5e\x68\x46\x7e\xa0\xa3\x98\x8c\xcc\x6d\xc9\x7b\x59\xd6\x79\x0d\x1d\xd2\x59\x0e\x89\x7e\x16\xdc\x6a\x27\xe3\xe3\x0b\x7d\x49\x7e\x5b\x75\xe2\x61\x9b\x02\xba\xcd\x5a\x9e\x8e\x87\x09\x07\xce\x91\x7b\xe4\xa9\xcd\x88\x62\x3a\xa9\xe3\x10\x5a\x99\x6c\xcb\x95\xd4\x7b\x7a\x7d\x93\xd3\xf4\x33\xee\xd0\xbb\x8c\x4d\x7d\xbc\x8d\xd2\x68\xfd\x36\x33\xdb\x1d\xed\xe2\x9c\xa0\xf1\x89\x54\x79\x3d\x58\xd0\x33\x8b\x2a\x9c\x34\x90\x63\xcb\xd5\xcd\xaf\x8d\x62\x53\xcb\xc1\xe4\xfb\x41\x13\xa3\x4d\x17\x9a\x46\xdc\x81\xde\xb3\x57\x05\x6e\x05\x48\x85\x94\x02\xdb\x46\x07\xb1\x0a\x32\xea\x88\x27\x2e\xa5\x91\x1b\xd9\x7a\xfd\xbb\xdd\x08\xbd\x07\x69\xf9\x3b\x7e\x8e\xa3\xa2\x24\xd1\xdd\x88\x0e\xbb\x6f\x0e\x42\xe5\x5b\x3c\x56\xc5\x9d\x41\x22\x29\x92\x5b\x78\x6f\xef\x3c\x38\x68\x79\x29\xec\xfd\x7b\x08\xf0\x60\xd6\x5c\xb9\xeb\xf5\xd6\xd9\x31\xa4\x06\xbf\x8d\x40\xea\xce\xd8\x1a\x5a\xa8\xad\x7b\x84\xe8\xfe\x33\xbd\x96\x60\x81\x4f\xec\x9e\xe8\x22\x6f\xa3\x12\x8d\x65\xd7\xeb\xbd\x9f\xdf\xe7\x24\xb2\x1f\xd5\xbf\xee\x40\xfc\xc8\x4a\xd1\x89\x32\x98\xc6\xf3\xb4\xd7\x7b\xb2\xd7\xfa\x22\xdb\xb6\xbd\x0a\x5b\x38\x97\x11\xb3\x13\xed\x37\x08\xa4\xfe\xca\x62\xe2\x5a\x6e\x48\x75\x75\x6b\x38\x34\xaa\x7c\xff\x9e\x78\xf0\x59\x46\x43\x25\xf3\x9c\x68\x07\xf0\x23\x3b\xa5\xed\xd9\x4f\x18\x87\x84\x84\x0d\x7f\x5a\xda\xc3\x3c\xde\x65\xa2\x81\xc8\x19\x69\x6f\xa7\x4b\x3b\xaa\x03\x2f\x41\xb3\x06\x6d\x23\xb4\xb3\xe4\xa4\x1b\xf4\x90\x82\xd1\x80\xdc\x0c\xaa\xe6\xcf\xad\x50\x75\x88\x8a\x48\x5f\x6a\x69\x65\xad\x7a\x1d\x16\xe7\x47\xd6\x10\x07\xaf\x8b\x7c\x1d\x40\x72\x17\x60\x11\x97\x34\x6b\xe5\x16\x94\x81\xe2\xa5\x3c\x82\x3a\xfa\x9f\x27\x5b\x61\x30\xaa\xa9\x41\x54\x74\xd3\xf0\x3f\xf7\xcb\xd7\xe3\x8f\x71\x47\x5e\x63\x2d\x06\xdb\x97\x52\x49\x1b\xaf\x2f\x3e\x96\xb1\xd1\xa5\x0a\xc1\x4a\xf0\x62\xb9\x56\x54\x2e\x13\xef\x68\xef\x2a\x3a\xdd\xac\xd1\x45\xb4\x82\x9d\x18\x5a\x6f\xfa\x54\x84\xc0\x20\x6c\xf4\xe4\xa2\x2b\x96\x07\x3d\x28\x18\xcd\x05\x93\xcf\x2e\xe4\xa6\x2b\xe3\xe3\x48\x41\x3b\xa4\x61\xe7\xaa\x88\x0a\xf3\x4f\x3b\xf9\xb5\x7b\xaa\x62\xea\xb6\xcb\x6d\x4b\x65\x41\x5f\x8a\xd6\x45\x76\x5c\xbd\x70\xbf\xdb\xfc\x73\xa9\xbc\x96\xe9\x0b\x0f\x2d\x2a\xd2\x13\x79\x60\xef\x74\x90\x96\xba\xa3\xc2\xe1\xff\x90\x7c\xf1\xee\x90\x8e\x08\xab\x84\x0d\x71\xc1\x82\x5e\x90\xd7\x7d\xa7\xa0\xe9\x10\x47\xb9\x16\x49\xda\x6c\xae\xd5\x36\x92\x37\xe3\xcf\x46\xf7\x8a\x75\xef\xd9\x95\xb0\x48\x5d\x99\xe2\x21\xf4\x1b\x92\x82\x6a\xb2\xce\xaa\xc5\x11\xbf\xbe\x50\x39\xdb\x68\x59\xd6\xbd\xd0\x35\x31\x74\x6b\xcc\x78\xb0\xb5\xa4\xd8\x45\xe1\x3a\x47\xc7\x9c\x74\x24\xe3\x9e\xae\xf3\x57\xe2\xbd\x44\x86\xfc\x5f\xbf\xfc\xb3\xb7\x21\x5f\xcf\x5b\x6a\x41\xd5\xb6\x41\xf2\x62\x77\xf3\x5b\xbd\x11\x3a\x18\xc5\x3b\xe3\x2e\x0d\x62\xdb\x38\x37\xc3\x7e\x57\xd2\x09\x42\x22\x98\xcd\xbc\xf8\x15\x21\xcc\x48\xfa\x54\xee\x13\xe9\xbf\xa3\x68\x5a\xaf\x04\x74\xe7\x0b\x5b\x9f\x5c\x65\x17\x07\x2b\x31\x08\x0b\x96\x64\xd3\x67\xe6\x77\x18\x92\x4d\x9a\xf8\x24\x5b\x32\x05\x50\x95\x62\xb0\x0d\xd9\x5f\x8e\x9e\x20\x63\x90\xc6\xcc\x45\x0e\xe5\xe0\x8a\x21\x72\xa8\xb1\xd7\x87\xa4\xe8\xf4\x03\x45\xa4\x0a\xc9\x66\xe3\x67\x82\xfc\xe7\x37\xed\x00\x77\x1e\xf0\xc9\x8d\x1f\x89\xd0\xf2\xf4\xf6\xe2\x77\x17\x83\x89\x21\xd6\x8c\xf3\xfd\x25\xf0\x47\x97\x19\xa4\x53\x60\x91\x96\x93\x28\x24\xc2\x5d\xa3\xf4\xfa\xde\xb3\x17\x6f\x57\xdf\x7f\xf7\xd2\x39\xd9\x9d\x6e\xa2\x94\x1d\x45\x42\x63\xe7\x66\x62\xd1\x6e\x7e\xd3\x3b\x52\x10\xb1\x49\x5a\xbc\x0e\x97\x7d\x97\x7b\xdb\x09\x8e\xa9\x44\x81\x13\xc3\x94\xc6\x9e\x0e\xa0\x29\x78\x05\xf1\x52\x4a\x42\x55\x30\x87\xbc\x03\x42\xb7\xec\xf0\x8b\xd7\x8a\xa8\xdb\x17\x34\x08\xa6\xd8\xb9\xfd\x49\x0c\x81\xd0\xee\x18\x57\x61\x2b\x5a\x0e\xaa\x80\x47\xdb\x79\x0b\x52\x7c\x85\x44\xda\x7a\x36\xb5\xfc\x1c\x1d\xc8\x88\x05\xf9\x56\x57\x0a\xf4\xd8\xfe\x2c\x64\xc5\x18\x69\x96\xcd\x77\x1d\x0a\xa1\x47\x92\x77\x3d\xdc\x7f\xa8\xf8\xb3\x7b\x07\xe9\xfb\xb6\x3f\x5c\x97\xad\x54\xfb\xe2\x1b\xbf\x9f\xe1\x53\x20\xbc\xb9\xc8\x7e\x16\x15\x39\x99\x16\x51\xb8\xee\x79\xfa\xef\xff\xd7\xff\xb3\x7a\xc4\xc3\xbf\xb0\xba\x5e\x3d\xa2\xa5\x8b\x9b\xc5\x65\x7e\x12\x91\xe9\x8e\xc7\xce\x06\x45\xe8\x6c\xc4\x65\x2a\xdf\x00\x5b\x79\x4c\x0b\xb2\x41\x21\x9a\x73\x16\xa8\x36\x62\x94\x93\xcf\xb1\x1a\x98\x82\xec\x22\xe6\xcb\x32\xe5\x1e\xf4\x6f\xbc\xb3\xef\xf8\xac\xff\x7d\x90\xdb\x7d\x59\x0f\xb2\x82\xe2\x9b\x41\x1f\x85\x57\x6a\x3b\x92\xc7\x36\xd2\x44\x56\xc3\xc9\xf5\xdb\x13\xbd\x13\x47\x4e\x20\xc4\xb8\xe5\x38\x35\x63\xa8\xe4\xa0\x42\x51\x93\xf8\xc1\xf8\x0e\x58\x68\x8d\x0b\x56\xc2\xe1\x6d\x8e\x20\x5b\xc8\x0e\x83\x69\x98\xb1\xe5\xde\x1f\x12\x71\x8c\x8b\x63\xd2\x93\xaf\xe6\x95\x73\xac\x0c\x2a\x43\x4c\x59\x76\xce\x19\x6c\x3e\x7c\x44\xb7\x21\x52\x51\x88\xee\xb7\xce\xb2\x9d\x6c\xc1\x14\x8e\x12\xc8\xdc\x23\xee\xde\x6e\xab\x01\x8a\x0b\xab\x87\xbd\x1d\x34\x42\x5a\xd0\xde\xc4\x59\xa8\xaa\xb4\xa2\x2e\x5e\x23\xc3\xea\x0c\x9c\x39\xcc\xac\xa8\x73\x06\xf5\xcd\x81\x71\x0d\x82\xc9\xac\xa8\x4d\xf1\x56\xd4\xd3\xd0\xbf\x87\xa1\x6d\xa7\xc1\x81\x5b\xb1\x81\xd6\x14\x2f\xf1\xbf\xac\xc3\x71\xda\x5e\x01\x85\xdb\x68\x5d\x80\x37\xc8\xb6\xe4\xd9\x66\x9c\x87\x9b\xc9\x6a\xe9\x49\x91\xb8\x5b\x0d\x2d\x08\x43\xe6\xd1\xfc\x07\xcd\xbb\xd4\xe2\xaa\xf8\x56\xcb\x5a\x2a\xd1\xb2\xaa\x8a\xbf\x37\xd2\x50\xfc\x68\x62\xa1\x87\x1d\x7f\x64\xfd\xa4\xb8\x2a\xce\x95\x61\x07\x82\x2e\x5f\xaa\x8c\x68\x47\xd0\x75\x7b\xe3\xff\xe2\x02\xdb\x23\x51\xa9\xfd\xfe\x44\x26\x7c\xc7\x21\xaf\x75\x7f\xf3\x9f\x74\x9b\xce\x15\x85\x27\x44\xd2\xbe\x82\x9e\xde\x26\x33\x1c\x10\x39\x71\x40\xed\x8d\xee\xaf\x0c\x68\x92\x89\x3d\xe4\xbf\xd3\xc0\x47\xcf\xdf\xbe\x7a\xf9\xaf\xf9\x0f\x58\x7b\x85\x4b\xed\x7d\x37\xc2\x76\xac\xfb\x4b\x7a\x0c\xaf\xe2\xf8\xe4\xa1\xd0\x85\x39\x08\x8b\x48\xda\x5c\xc8\xc3\x5a\x06\x40\x63\x45\x1b\xc3\xb5\x76\x09\x4a\xb4\x2d\x87\x51\x9d\x17\xb1\xb9\x62\x55\x6e\xae\xc9\x84\xcf\x1b\x1d\xe6\xa4\x74\x64\x4a\xe0\xe7\x3f\xbf\x8b\x2a\x78\x4b\xba\x94\xe4\x64\x36\x07\xf2\x29\xe9\x99\x41\x85\x87\x7f\x4d\x51\xb8\x65\xeb\xa2\x76\xd3\xaa\xfb\x22\x36\xb9\xe4\x52\xde\x8e\xa6\xdf\x36\x64\x62\xe9\x41\xf0\xbf\x18\x60\x03\x42\x6f\x28\x6c\x98\x87\x38\x68\xa0\xb3\xc1\xa3\x33\xc5\x0f\xbd\x36\xdb\x46\x0c\x1c\xd7\xc6\xf3\x60\x23\xfc\x56\x28\x72\x10\xc0\x86\x55\xaf\x4a\x7c\xc3\x4b\xbe\x87\x6c\x1a\x48\xbe\x73\x9e\x38\xf7\xf2\x5b\x6f\xd3\xe3\x7a\xf7\x42\x86\x64\x98\x84\xc0\x6e\x1d\x6b\x37\x18\x5b\x6e\xa0\xec\x55\x29\x02\xc9\x1e\xc5\x34\x23\xa6\x50\x7a\xe5\x8a\xbb\xd7\x1b\xd8\xc9\x10\x27\x23\x9a\x10\x85\x4b\x61\x13\x07\xee\xef\xb2\xd7\x6c\x9f\x45\x9c\x44\xcf\x0e\x56\xfa\x38\x30\xed\xeb\xc7\x40\xec\xdc\x06\x1f\x28\xa0\x45\x28\xbe\x67\xe9\x3e\xb7\x71\x1c\xa2\x61\x9f\x85\x81\xb1\x93\x53\x82\xd3\x1c\xc3\xe8\x5a\xf5\x62\xca\xc9\x12\x8c\x66\x81\xd1\x02\x34\xe2\x12\xca\x2b\xa4\x9c\x9d\x90\xbe\x78\x3c\x90\xf3\x90\xcd\x2f\xf8\xb9\x38\x3a\x79\x5d\x13\x42\xbd\xfe\x13\xe6\xcd\x96\xf8\x34\xcc\x58\xd9\xc0\x6d\x9c\x30\xeb\x89\xec\x56\xfc\x71\x46\xca\x95\x82\x90\x8c\xd3\x64\xbd\xbf\xb7\x91\x5d\xaf\xd7\x71\x9f\x41\x22\x83\x0b\xcd\xe8\x9f\x49\x0e\x7e\x42\xfd\x23\x7a\x86\x6c\x7c\x14\x49\x19\x1f\x31\x72\x02\x60\x02\x20\xbf\xb7\xce\xa7\xf5\x8f\x43\x6c\x1e\x59\x43\x03\x0e\x83\xed\x84\x63\x2f\x9e\x42\x5b\x39\x01\xa7\x6f\xc7\x2b\x1f\xbe\xc3\x9f\x56\x18\x0b\x61\xb4\xbd\x2e\x70\xf1\xa2\x8b\xb2\x85\xb6\x24\x0f\x95\x42\x04\xab\x73\x5f\x4a\x18\x3f\xdc\xba\x78\x7f\x40\x22\xbe\xd8\x46\xa7\x43\x54\x55\x69\xbb\x43\xcb\x56\x3f\x3c\x61\xc2\x30\x7f\xba\x6b\xee\xdd\xf7\xab\xf4\xe0\x4f\x11\x7c\x41\x3b\x12\x53\x19\x01\x69\x20\xda\xe2\x62\x6f\x04\x9d\x1c\x42\x2e\x9a\x9e\x3c\x37\x5e\xf7\x46\x87\x3c\x13\x10\x62\xb5\xb1\x30\x3d\xa5\x59\x98\xb2\x8e\x6d\xbb\xbc\x86\x66\xdc\x63\xd7\x70\x25\x35\x6c\x6d\x7b\x5d\xda\x9e\x6f\x81\xbb\xde\x8f\x25\x7b\x14\xb2\x20\xda\x89\x31\x3d\xff\xc0\x30\x2b\x9c\xfc\x1d\x8a\x98\xe2\xe5\x9a\xde\x67\x29\xac\xe4\xd8\xdd\x48\x02\xb9\x1e\x9e\xd0\x99\xf0\x02\x52\x96\x6c\x71\xfd\xb1\x3d\x1f\x77\x02\xef\xb2\xf3\x46\x4f\x6d\x50\xf8\x60\x21\x05\x90\x3b\x0a\x20\xe7\x10\xea\x63\xcf\x63\x97\x2c\x65\xa4\x25\x9c\x79\xcf\xc7\x2b\x33\x75\x58\x98\xde\x0a\x87\x8a\x37\xc0\x01\xce\xc7\xf8\xf0\xe4\x65\xb1\x1c\xc4\xdc\xb5\xe1\xe9\xa0\x56\x83\xa8\xae\xbd\x5e\xc2\x8d\x83\xa5\xd5\x53\x35\x44\x14\x31\x3c\x62\xbb\xc3\xd9\xa1\xfd\xeb\xf5\x75\x29\x4d\x29\xf8\x72\x33\xff\xda\xe5\x4e\x2d\xcf\x36\xa1\xa0\x66\x31\x01\x89\xd6\x65\x3c\x32\x78\xcd\x46\x04\x93\xa0\x03\x6e\xde\x5c\x77\x44\xa3\x4c\x10\x90\x6b\x2c\xbf\xe0\x62\x0e\xed\x22\xbb\xfc\x47\xd8\x70\x13\xa7\xde\x21\x3a\xa8\x73\xb4\x43\x7d\x85\x99\x4d\x7b\x9b\xaf\x90\x68\x4d\x3e\x8d\x1a\x7d\x72\xc5\x68\x36\xf8\xb7\x54\x75\xa9\xfa\xb2\xed\x55\x0d\xda\x6f\x45\xda\xd7\x59\x7e\x05\xed\xb6\x01\x17\x70\x6c\x7c\x60\xc6\x31\x2c\xf5\x15\xc9\x9e\xd2\x6e\x19\xed\x54\xe5\x55\x13\x0d\x82\xa2\x9d\x92\xfa\x86\x82\x89\xbb\xb8\x38\xdc\x17\x5b\x47\x38\xb1\xeb\xf8\xdc\x45\xae\x06\x1f\x91\x9e\x8e\x71\x71\xc8\xd8\xca\x99\x47\xc7\x68\xef\x38\x70\x78\xd3\x33\x7e\x82\x5c\x60\x25\x13\x6e\xa6\xbb\x77\x0e\x11\xab\xf1\x72\x2e\xb7\x45\x87\xce\xa1\x22\x48\xf7\x76\x7a\xec\x9f\x8c\xe7\xcf\xeb\xe4\xf8\x11\xf9\x3d\x17\x41\xf5\x1e\xa9\x23\x2a\x33\x4d\x7f\xe5\x98\xb9\x78\x7c\x97\xbd\x6e\x84\xaa\xe2\x71\x51\x2c\xee\xbe\x74\x4e\x30\x74\x7f\xe2\xb0\x8f\xce\xb1\xf2\xde\xc8\xaa\x55\xe1\x01\xc7\x61\xae\x7d\x0c\x02\xe4\xb1\x27\x6d\xba\x57\x7b\xd6\xe6\xa8\x9a\xfd\x68\x53\xf8\x02\x99\x61\x53\x49\x5d\x7c\x4f\x92\xc8\xe8\x94\x43\x9c\x68\xc7\xbf\x32\xce\x16\x0e\x27\x14\x88\x54\x93\xf4\xfe\xdc\xd3\xaa\x63\xf7\xbc\x73\xa7\xc6\x10\xb7\x44\xd3\x92\xda\xb3\x7e\x23\xe1\xcb\x3a\x48\x6c\x22\xf3\xdc\x95\x7f\x62\x3c\x5f\xe4\x0e\x92\x67\x8f\x52\xa8\x91\x17\xf3\xdf\x5d\x0c\x42\xf7\x99\x73\xa0\xb0\xdd\x59\x00\x41\x02\xb3\x78\x4a\x54\x66\xf8\x26\x48\x96\x56\x50\x6c\x95\xf0\xd1\xb3\xb8\x63\xa0\x13\x5f\x42\x8f\xf2\x63\x61\x87\x2e\x7c\xe2\x40\x94\x37\xff\xad\x25\xef\x35\xf7\x51\x01\x92\x13\xf4\x6c\x84\x98\x8c\x0a\xae\x9c\x9d\x05\xf1\xa3\xd1\xe7\x75\xc2\x85\x46\xdf\x11\xdf\xe0\x37\x3a\x9b\xf9\xac\x78\xdb\x82\xd0\x65\x5c\xd9\x44\x82\x8c\x08\x30\x30\xb6\x31\x5f\x3b\xe9\x68\x84\xa1\xce\x4e\x00\x72\x97\x8b\xed\x2d\x77\xdd\x1f\x40\x45\xf0\xdf\xee\x76\xa0\x20\x4f\xd8\xeb\xa4\xf9\xde\x40\x15\xc1\x3f\x23\x93\xa5\x1e\xc9\xf3\xd3\xb5\x84\xa1\x54\x50\x50\xfc\x34\x78\x57\xcb\xf9\x98\x17\x80\x48\xa3\xb3\x38\x6a\xd5\x8f\xf0\xaf\x25\x74\x42\x55\xf9\x71\xd6\x38\x53\x29\x2c\x5e\x88\xb4\x15\x63\x3b\x6e\xf7\x78\xd7\xa7\xdb\xc7\x85\xe5\xa1\x15\x5b\x70\xe1\x4c\x09\x64\xe5\x09\x8c\xa4\x17\xd7\x14\x41\xcc\xfb\xe2\xa6\x7c\xe2\x2d\xb3\x66\xa5\xee\x4b\x51\x91\xc1\x5d\x14\xa7\x3d\x19\xc4\xb4\x96\x54\xbb\xbe\x78\x62\x22\xe7\x79\x36\x02\xe6\x4e\x47\x6c\x98\x98\x33\x2f\xb4\x1f\x8c\x62\xdd\x23\x81\xd4\xf8\x9d\x68\x11\xee\x84\x00\x77\x03\x13\xfb\x66\x92\x0d\xe6\xc4\xf8\x96\x75\x59\xb7\xcf\x69\x30\x41\x54\xc5\x63\xbb\x00\x1b\xc6\x77\xaa\x92\x47\xc9\x23\xe3\x9e\x20\xe4\x80\x0e\xb9\xc5\xb7\xae\x5e\x84\x9c\x39\x3e\x2f\x37\x4e\x37\xc0\x8a\x4d\x71\xb7\xca\x7b\x3c\xfe\x61\x63\xf1\xb0\xfb\x92\x7a\x3c\xe8\xbe\xdc\x09\xc3\xa2\x8d\x5f\x2a\x41\xa2\xc4\x40\x0b\x5b\x1b\x61\x89\xdc\x6b\xe0\x26\x35\x6e\x45\x04\x53\x98\x69\xcb\xf1\x5d\x8f\x94\x7c\x93\xea\xb7\x5c\xc6\x11\xa2\x96\x0a\xa6\xed\x43\x3e\xb9\x99\xa7\xfb\x20\x05\xc7\xdb\xeb\xc3\xc2\xe7\xb5\x68\xdb\xd2\xc9\xfd\x48\x24\xe4\x84\x7f\x4b\x90\xc6\x65\x90\xb3\x3d\xf2\xba\x4e\x72\x8f\x4c\xd0\x15\xf1\x10\x4b\x75\xf8\x32\x56\xe5\xe6\x9a\xaa\xfc\x10\x99\xc4\xd1\xe9\x5d\x1a\xe9\xba\x03\x65\x65\xaf\x90\x82\xc4\x4a\x4f\x34\x4e\x4a\x59\x3c\xc0\x13\x70\x43\x29\x6d\xbc\x8e\x60\xa1\x70\x4d\x07\xd4\x85\xd2\xb5\x4b\xd5\xe9\x41\x32\x96\x5f\xa4\x13\x20\x1a\xb6\xa0\xac\xe3\x31\xbf\xb9\xf9\xcd\xc5\x8d\x8e\xbd\x72\x17\xfb\x06\x61\x7c\xad\xf3\x2e\x6f\x6f\x3e\xa8\x9a\xc2\x9c\x32\x01\xfb\xb1\xea\x5d\x6f\xec\x96\x42\xbc\x59\xac\xde\x81\xa4\xca\x1c\xf5\xcd\xde\xda\x69\x54\xed\x0a\x94\xac\x4f\x55\xc4\xbb\xc6\xc2\x3e\x96\xef\xd5\x70\xf3\xeb\x6e\xa7\x80\x15\xf7\x91\xc7\x01\x39\x1b\x38\x1f\x01\xf1\x60\x56\xbd\xdc\x89\x3d\x14\x63\xed\xa9\xb4\xd0\xc1\x93\x54\xae\x1f\x48\x1c\xd7\x80\x96\x75\xf4\x2c\xbd\xb7\xc5\x6b\x17\x07\x36\xc5\x04\x6c\xe4\x35\x43\x04\x95\x2b\x79\x36\x47\x04\x6a\xe8\x4a\xb7\x02\x06\x71\xc5\x37\xfc\xb7\xd0\xa1\x65\x57\x0a\x55\x29\x6c\xf1\x4b\xb4\x30\x91\x07\xcb\xbf\x20\x89\x7f\x97\xe6\xfb\x8b\xaf\xe7\x5d\xc8\xb9\x42\xc8\xad\x72\x81\x0f\x40\x08\xb1\x3b\xb7\x6e\x64\x16\x3b\x0c\x63\xb4\x64\xba\x22\x73\xcd\xbf\x86\x81\xf7\xc1\xfb\x2c\xb1\xe1\xd8\x48\x33\xcd\x6c\x10\xe9\x0b\x12\xf4\x48\x3f\xc8\xad\x8d\xfd\x31\xd3\x52\x3f\x70\x86\xfa\x26\xcc\xdb\xf1\xfb\x66\x56\x4d\x03\x6d\x02\xc3\xb3\x25\x73\xce\x9b\x3c\x05\xf9\x48\xd3\x57\x8b\x75\xdd\x5b\xed\x8f\x6b\x5c\x6b\xb2\xd9\xb8\x4f\xc8\xaa\xdd\x17\xb9\xac\x9c\x0f\xcc\x9d\xb0\x53\xf4\xeb\x01\x9d\x35\x97\xd8\x2f\x1c\x8a\x5f\xd2\x71\xfe\xc3\x4d\xb9\x81\x87\xb3\xfd\x4b\x7c\x86\xa4\x2d\x35\xec\x42\x8b\xce\xa4\x87\x09\x9c\x4f\x6b\x7e\x8c\xc6\xe4\x08\x78\x0d\x3b\x9c\x3e\x99\x5b\x87\xbe\x0e\x3d\xa5\x14\xf5\x6c\x92\x1e\xc7\xe0\x03\xa8\x53\xb6\x4c\xeb\x58\xe8\x50\x3e\x31\x13\x73\x5f\x7d\x16\x0f\x1f\x4f\x90\x64\x36\x89\x33\xa8\x0f\x8d\x8c\x43\x24\x49\xab\x70\xfc\x8c\x34\xfb\x81\xd4\xb7\xb9\x05\xd9\x7a\x69\x6a\x38\x83\x24\x3a\x7e\x38\x4a\xb8\xfd\x30\xa7\x32\x1f\x3f\x10\x71\x09\x45\x48\x19\x30\xa1\x2e\x1c\x49\xb6\x71\xae\x99\x49\xe1\xb6\x6f\x7b\x47\xfe\xed\xb0\xb3\x69\xe9\xa0\x2c\x5e\xfc\x05\x4a\x67\x3c\xce\x26\x10\x18\xd3\x47\x8f\x21\x4f\xcc\x85\x0b\x9d\x50\x31\x98\x18\x27\x85\x2e\xe0\x26\x53\x16\x5e\x1a\x39\xaf\x2e\x7b\xe5\x60\xda\xc5\x66\x16\xac\x8e\x09\x9a\x0d\x3d\x7b\x45\x56\x39\x2a\xf2\x71\x47\x9c\x40\x0d\x04\x2b\x9c\x5b\x2c\x3d\x97\xbb\xf2\x32\x70\xd7\xd3\x6d\xa2\xef\x08\xd9\x1e\x84\xb6\x72\x2b\x0f\xc2\x21\xdc\x87\x80\xa7\x43\xd6\x23\x2a\x17\xd6\x8a\x2d\x1e\x15\x3b\xd2\x77\xbf\x7c\x33\x52\xb5\x78\xea\x46\x1d\x07\x8b\x2b\xdf\x8a\x0d\x89\x3c\x18\x65\xfc\xb2\xd0\x54\xd5\x5f\x29\xa4\x39\xe7\x4d\xf9\x1c\x21\xc7\x81\xf8\xe7\x5f\x32\xd6\x66\x06\xa6\x52\xe7\xb1\x5e\xd3\x15\x6e\xfb\xee\x20\x34\x2c\x8a\xaf\x2f\x41\x7b\x8b\xe6\x65\x68\xde\xa5\x9f\xae\x40\x06\xad\x5a\x5c\x69\x22\x4f\xf5\x3d\x8f\xb1\x7f\x13\x59\xf9\x48\xda\xa7\x7d\x6d\x84\x81\xe2\xa1\x30\x30\x1d\x03\xff\x5f\xcc\x47\x99\x68\x88\xbd\x28\xd4\xeb\x82\xdd\x9a\xf4\xa5\x06\x33\xb4\xd6\x38\xba\xf2\x89\xae\x61\xa3\xa4\x0b\xa0\xe0\x2c\x8a\xd6\x01\xda\x36\x48\x99\xd9\x3e\xf4\xfa\xc4\xf0\x4b\x45\x64\x8d\x71\xa1\xac\xfd\x38\xc8\x86\x1f\x87\xcc\x09\xc1\x9e\x83\xf0\xca\x40\x67\x22\xee\x7c\xe1\xd3\xd6\x3b\xd0\xb5\x9b\xee\xc7\x5b\xdf\x80\xac\xd8\x3f\xa4\x76\xd6\x7a\xfb\xbe\x3b\xb4\x60\xad\x53\xc2\x52\xa6\x0e\x0e\xb4\xf5\x9c\xc4\x25\xde\xa2\xd9\x77\xdb\x08\x53\xc6\x39\x71\x8b\x5f\x9e\x98\x05\x11\x19\x52\xf2\xc9\xee\x1d\xaf\x64\xe4\x06\xa0\x78\x24\x2a\xff\x49\x42\x0b\xea\xab\x89\xcb\xe6\x3d\xea\xeb\x1e\x52\x51\x95\x7b\x02\xfe\x85\x7e\x30\x89\xe1\x76\x94\x79\xe4\xa4\x97\x91\x7d\x65\x18\x42\x8d\x7c\xde\x3a\xbe\xde\x44\x70\x55\xb9\x97\xe6\x10\xf1\xe6\xdc\x3a\xff\x1c\xdc\x3a\x59\x88\x34\x77\xf7\x44\x4e\x9d\xa3\xd8\x72\x76\x1a\xd7\x0b\x6d\x81\xa3\xb2\xb8\x33\x7c\xe2\xfe\x50\x47\x77\x7f\xfe\x2f\xef\x4c\xe8\x8e\x94\x27\x8d\xf6\xb7\xcf\x8a\x0d\x52\x3f\x97\xa0\x8d\xb3\x4d\x0b\x8f\x4d\x02\x91\xca\xb3\xc6\x12\x96\xc5\x3d\xf3\xb2\xdb\x90\xf7\xcd\x81\x38\x32\xc5\xf6\x7c\xb6\x46\x8b\x41\x33\xbd\x92\xee\xc5\x07\xed\x30\x4f\x08\xe6\xfe\x0a\x2b\x8e\x0e\xc0\xf8\x76\x93\x1e\xaa\xd1\xe3\x49\xe2\x55\x2b\x7e\x5a\x9e\x23\x9e\x33\x07\xe1\xfc\xd0\xd3\x9e\x67\xf8\x76\xba\x56\x9f\xb9\x86\x2a\x61\x45\xb9\xd1\xe4\xe7\xe2\x85\xea\xc1\x19\x25\x31\xd9\x70\x36\xe8\xb0\x83\x3d\x19\x3b\x73\xc6\xeb\x34\x9e\xca\x18\x4d\x8f\x9d\xd2\xfc\x64\xa4\x29\x49\xd3\x44\xd9\x93\x24\x45\x5d\xdf\xb5\x72\x6f\x29\x7a\xc8\xa0\x6a\x97\x8c\x99\xa8\x52\xef\xbf\x9a\xb8\x89\x04\x0f\x5a\xce\x9e\x2c\x15\xb3\x23\xa0\xf2\xf3\xa1\x06\xb5\x69\x7d\xa0\x31\x3e\xfb\x42\x95\x64\x26\xcb\xb7\x3f\x76\xd7\x4f\x96\xc9\x05\x05\x1e\x13\x73\x4d\x57\x29\x78\x4c\x85\x76\xc9\x9a\xf0\x53\x9b\x76\xec\xd9\xc7\x3b\xf0\xc1\x31\xfd\xba\x00\x61\xaa\xd3\xdd\x26\x09\x97\x3b\xa1\x06\x68\xdb\xe9\xed\x0b\xa7\x6d\x6c\xd4\xf9\x08\x44\x13\x62\xb2\x99\x1b\xe5\x1b\x11\x68\x43\xf7\xc8\xf0\x59\xe5\x5b\x12\x6e\x00\xe2\x53\xaf\xe5\xc7\xca\xb8\xaf\xdf\xd1\xd7\xfc\xb2\xd7\x9c\xd5\x79\x11\x17\x78\x75\xe6\x68\x72\xea\xe5\xcd\x89\x31\x57\x74\x05\x52\x74\x9a\x22\xcd\xc5\x2e\xe8\x76\x0e\xca\x61\x1d\xaa\xed\x14\x19\xbf\xcc\xa2\x01\x4c\x2e\x2c\xef\x57\xca\x61\xb8\x87\x61\xc4\xdb\x4c\xe9\x4d\xb6\xfb\xf3\x7f\xb9\x5b\x7d\x41\x34\x38\xce\xdd\x40\xbb\x01\x35\xb1\x0f\x23\x0d\x6d\x78\xc5\x79\x59\x27\xd1\x88\xc2\x3b\x31\xb8\xfc\x84\x95\x30\xd3\x85\xe4\x0c\x1c\x76\xed\xf1\xbc\xe3\x24\xdd\xbb\x4c\x6f\xd7\x48\x06\x2e\x80\x50\xb4\x4e\x05\x57\x01\x01\x72\x95\xe8\xbc\x46\x97\x38\x3a\x9c\xac\x72\xca\xaf\x88\x2d\x80\x80\xb8\x83\x4f\xd3\x74\x98\xa0\x2c\x25\xbe\x5b\x67\x91\x79\x57\x44\x36\xc5\x72\xb0\x08\x60\x2e\xb4\x8b\x0a\x4f\x0a\xee\xa6\x30\x55\xcc\xcd\xe7\x77\x4d\x32\x84\xbe\xac\x06\x28\x59\x04\x83\x1b\xfa\xf4\xe6\x43\xdb\xb2\xe8\xcb\x54\xa4\x62\x98\x8c\x87\xc2\x2f\xaa\x85\x6e\x62\xf6\x38\x9d\x64\x69\x86\x4d\x03\xa2\x8a\x78\x2d\xc6\x61\xb1\x28\x9d\x6e\xa8\x6c\xb4\x67\x1b\xf0\x7e\x72\xbe\x27\x13\xac\x5d\xc7\x0e\xf9\x3d\x4f\xe4\xfe\xe1\x39\x8f\xe0\x98\xdd\x79\x2b\x6d\x62\x57\xb7\x9e\xfb\x41\xc4\x85\x7e\x3d\x66\x4b\x91\x7f\xee\xb3\xe5\x7e\x91\xce\x1e\x84\x2e\x28\xbb\x5b\x0b\xce\x88\x38\x14\x86\x8c\x79\xae\xd5\x92\xcf\x78\xc1\xb9\x6a\xd9\x72\x64\xda\x8f\x99\xc6\x30\x78\x62\x5c\xb8\x71\x61\x5c\x92\xdb\xfc\x4f\x5f\x7f\xfd\xf5\xd7\xab\xae\x5b\x55\xd5\x9f\x3c\xd5\x35\x5b\xa0\xc0\x78\xc4\x0b\x75\xc2\xfc\xc6\x8b\x0e\x3f\x8b\x9b\x21\x6e\x2d\xae\x1c\xd9\x59\x4d\xc0\xa2\x4d\xfe\x61\x96\x4c\x9e\x82\xcd\x8b\x1a\xf6\xfa\xe6\xc3\x8e\x82\xaa\x27\xa6\x1f\x44\xae\xcf\x0e\xc3\x2b\x69\xcc\x25\x19\xfb\x7d\x50\x15\x13\xce\x4c\xa6\x76\x44\x0f\xa6\xf3\x9d\xf2\xc2\x51\x99\x63\x1c\xe3\x69\x78\xf6\x71\x3e\x07\x5e\xaf\x98\x6d\xc0\x2d\x8a\xea\x9a\x68\x01\xa7\x7e\xe6\x21\x1f\xfa\x67\xe9\x69\x73\x6c\x69\x3c\x82\x80\x95\x16\x00\x47\x9f\xc4\xb8\xc6\x3f\x87\x41\x5d\xea\x6e\xe9\x94\x9c\x60\x4f\xb3\x2b\xb9\x97\xc5\x8f\x72\x2f\xe9\xaf\xf5\x15\xb4\xdb\xbe\x83\x38\x71\x86\xec\x72\x2c\xff\x2c\x01\x18\xb9\x6d\x2c\x73\xc1\xce\x75\xfe\xad\xb6\x67\x2c\x05\xe9\xe2\x30\xc0\x7f\x83\x3d\x62\x5e\x4a\x59\x27\xba\xbc\xea\xf7\x43\x2a\xf7\xba\x04\xbd\x01\x63\x40\x07\xab\xc1\x35\x77\xe7\xce\xfd\x4e\x6a\x63\xcb\x83\xa8\x61\x82\x71\x90\x04\xe0\xe4\xa4\x44\x3b\x71\x25\x82\x8b\x7e\x3b\xee\x6e\xfc\x1c\x58\x3b\x2a\xe6\x18\x8e\xb5\xb3\xb2\x64\x80\x11\xfb\x10\x88\xb7\xdb\x4c\x2d\xa1\x46\x94\x93\xc4\x79\x18\x9d\xd7\x46\xfc\xe2\xa6\x43\x79\x21\xa3\x71\x98\x20\xd5\xa1\x62\x72\xad\x71\x7d\x90\xda\xec\xae\xc9\x83\xc4\xcc\x8d\x2c\xb2\x5f\xb9\x6b\xb8\x1a\x1d\x75\x6c\xb5\xdc\x50\xfa\xa6\x58\x1e\x93\xcc\xd0\x97\x8f\x13\xf5\xd3\x63\x3f\xd3\x08\x84\x3b\x0b\xa7\x7a\x06\xa6\x7a\x2b\xb7\x50\x7e\xc9\xce\x6c\x04\xcc\xac\xcc\x9d\xbb\xe6\x8e\xe7\x64\xe8\x88\x87\xd3\x16\xa2\x82\x93\xd6\xde\x85\xed\x30\x1c\x93\x71\x3d\xee\xdc\xa2\x85\x06\x9e\xb2\x15\x77\xf3\xe9\xae\xd3\xa1\x49\xe3\x92\xf9\x46\xab\xec\x2c\x78\x83\x07\x93\x48\xcc\x78\x4d\x96\xf9\x20\xcb\xc5\x24\x1f\xba\xfb\xbc\xe6\xad\x35\x2e\xc3\x7a\x5c\x12\xe5\x6b\xec\x55\xe0\x71\x78\x47\x4e\x40\xad\x29\x61\x27\xe7\x5c\xa1\x40\x63\x70\x0a\x90\x6c\x3f\x0b\x67\xeb\x79\x3b\x28\xae\x62\xf1\x12\xa9\xf7\x5b\xc1\x06\x45\x9a\x56\x1f\xde\x33\x0f\x7a\xd7\xb1\xc2\xdc\x2c\x7d\x56\x54\x6e\x84\x86\x50\xce\x0f\x67\xea\x86\x32\xb1\x07\xf6\x51\x09\xc7\xd8\x29\x63\x7c\x27\x66\x4a\x3f\x07\xf5\x85\x73\x12\x58\x8f\x1d\x7e\xc4\x6b\xef\x04\xdc\x88\x82\x27\x15\xf2\x5a\xb6\x96\x8c\xb7\x1e\x0a\x23\x0d\x3f\x5d\x8e\xfe\x3b\x9b\xf0\x88\x88\xa9\xbe\x55\x94\x7f\x3d\xb2\x8d\x8a\xc6\xe6\xb5\x58\x49\x40\xdd\x49\xe9\xc4\x06\xbc\x1c\x54\xb0\x91\xa7\xbb\x14\xb9\xbe\x82\x99\x8d\x36\x3c\x1a\x88\x6d\x9f\x49\x1b\x12\x08\x73\x88\xea\x90\xac\x9d\xd7\x38\x36\xae\x9f\x0d\x73\x3a\x90\xe0\xc8\x3e\xe9\xb2\x9a\xb8\x64\x48\x1f\x95\xe5\x64\xec\xdd\xcf\xc6\xae\x0e\xba\xb7\xb0\x25\xdd\xa6\x3f\x43\x6f\xfc\xa7\x7c\x7e\x9a\xe6\xe0\xce\x4b\x7c\xdb\xb0\x87\xc0\x28\x34\xec\x35\xbe\x83\x5b\x1f\x64\x19\x8f\x89\xf1\x6f\x09\xd9\x92\x71\xd0\xc3\xd1\xd2\x69\x8d\xdb\x8a\x47\x6c\x4c\xba\xbd\xd3\x20\x89\xd2\x4e\x0e\x62\x74\x51\x38\xda\x72\xb0\x37\x9f\xfa\xbb\x7a\x63\xd1\xf5\x7a\x3d\xbd\x11\xa5\x9b\x0a\xa2\x00\x06\x5a\x5d\x6c\x9b\xc1\x1e\x6f\x01\x8c\x9d\x34\xaf\xa2\xae\xb8\x62\xef\x10\x8d\x13\x86\x86\xce\xc7\xfc\x92\xeb\xd9\x42\x4e\xcc\x69\x89\x29\x74\xb5\x0c\x2f\x69\x7c\x40\x17\x2a\xf1\x90\x7e\x00\xdd\x48\x76\x55\x08\x6b\xee\x97\xdc\xf4\x57\x12\xdc\x22\x13\x8a\x5c\x18\x85\x57\xa1\x24\xdc\x2e\xd9\x60\xa9\x1a\x52\x5e\x53\x28\x17\x03\xc5\x87\xea\x82\xfd\xb8\xbf\x9f\xd6\x32\x8f\x79\x92\xdf\x92\x9f\x50\x46\xd6\x4e\x78\x40\x4d\x1b\x6e\x5a\x05\xc3\xbe\xb0\x40\x4c\x9b\xf2\xbc\xf9\xf0\x10\x4f\xe8\xcd\xfa\x9d\x18\x3e\xc4\x01\x3b\x43\x02\x1f\xdc\xaa\xda\xb1\x99\x1a\x10\x85\x05\x63\x53\xb2\x27\x47\x76\xf4\x30\xe5\xb2\x67\x03\x20\x2b\xc6\x89\xa8\x66\xb6\x00\x57\x0d\x32\x43\x32\xd0\x0d\x78\xe1\x67\xa6\xe2\x63\xa4\x66\x76\x74\xa2\x80\x1d\xc7\x41\xe7\x3f\xfa\xda\x1c\x83\x75\x36\x04\xc6\xbe\xde\xab\xf1\xd3\x7a\xe7\xe5\x7f\x4a\x16\xdf\x21\x1d\xcb\xa4\x5f\x5c\xf3\x55\xe8\xdc\xa3\x98\x70\xb9\xc9\x6a\x7c\x9d\x9f\xfb\xb0\xfb\x01\xd0\x4b\x96\x42\xe6\xef\x70\x95\xfd\xff\x7d\xa3\x20\x7f\xe3\x25\x6f\x38\xf9\x14\x87\xcf\xde\x93\xf9\x54\xd2\x24\xc5\xb7\xaf\x8c\xeb\xf6\xb6\xe6\xd8\x86\x70\xd2\x6a\xee\xac\x08\x6f\xa9\x67\x71\xb5\x28\x4b\x92\x21\x63\xe6\x28\x3d\x0d\xe8\x7f\xc2\x80\xa2\xf6\x67\xa3\x19\x93\x00\x50\xdd\xe9\x0b\xb1\x84\x8f\x92\xc1\x7c\x24\x38\x7b\xf4\x40\x34\x7d\xbf\x37\xc5\x8f\xb0\xa1\x3f\xc6\xef\xb5\xb4\x5c\x84\x8f\xdc\xf3\xb4\x6c\x23\x8c\xdc\x96\x81\x40\x7b\xa6\x91\x84\x59\xa6\xd2\x9c\xc3\x69\x80\x75\x4e\xa7\x27\x68\x3a\x73\xad\xb6\x2e\x37\x76\xf1\xf5\xdc\xb1\x7d\xa9\x61\xac\x21\x15\xae\x54\x1d\x79\xe1\xe7\x17\x71\xbd\x51\x06\xec\x43\x09\x26\xc2\xde\xad\x58\xbb\x18\x3e\x9c\x72\x96\xc2\xb8\x91\x42\x2e\x3a\xa6\x94\xda\xe1\xdb\x31\xeb\x7f\xc8\xf2\x30\xdd\xb3\x65\xba\x35\xe2\x34\xa2\xd7\x8d\x7c\xd2\x34\x1c\xfa\x4f\x4c\xc0\xc0\xb9\x9a\x90\xf9\x3f\xcb\xaf\xbc\x21\x07\x67\x63\xc0\xef\x09\x89\xb0\x81\xa3\x84\xf4\xaa\x89\xea\x12\xd9\xfa\x2a\x1a\xa3\x66\x91\x9b\x85\x53\x5b\x82\x14\xbb\x0f\x16\xb8\x97\x39\x8c\x31\x15\xa3\x99\x1b\xe0\x98\x09\x4a\xb4\x25\x31\xb4\x4f\xc8\x9f\x48\x0c\x88\xdf\xa9\xde\x18\x99\x7d\x1c\x4d\xdb\xf6\x57\xa5\xcb\x45\x32\x76\xf3\x84\x7c\xe3\x61\x12\x82\x39\x0a\x26\x84\xed\xc5\xf1\x54\x27\xbe\x5d\x1c\xf1\x04\x39\xe2\x74\x80\xf0\x3e\x19\x20\xfd\xba\x65\x74\x09\x78\x39\xe8\xd6\x57\xe1\x1a\xdf\x7f\xf7\xf2\x16\xd8\x10\x18\x64\xa0\x20\x57\xee\xe9\x71\xee\x4b\x86\x32\xe0\xe5\x43\x57\x43\x4b\x7c\xa4\x8b\x7f\x64\xe4\x98\x10\xf8\xad\xd8\x78\x6b\xca\x68\xff\x58\xb5\xec\x02\xef\xe3\xdf\xab\xb7\x5a\x6c\xf7\x9c\x1b\xec\x23\xdb\x42\x75\x4b\xcb\xf0\xd1\xfe\x38\x59\x47\x68\xe9\x63\x1b\x15\x8f\xe1\xe4\x56\x85\x80\x55\x2c\x47\xf9\x23\xbb\x35\x19\xb7\xdf\x36\x1e\xf4\xc5\xb5\xb1\xd0\xdd\xba\x7d\xae\x26\xed\x20\x2e\x3b\x1b\xa6\x72\xb1\x9f\x7c\xee\x26\x6f\x6e\xaf\xff\x3f\x68\x57\xe3\x1e\x9c\x30\xf3\xfb\xef\x5e\xae\x22\x81\x66\x3a\x5a\x37\x6b\x33\x6f\x81\xd7\xca\xd8\xeb\x96\x13\x8c\x2a\xb3\xef\xd5\x25\x9b\x29\x2e\x35\xe4\xa7\xfd\xd5\xad\x4d\xad\x39\x87\xe5\xb6\x78\xed\x73\x59\xde\x0e\x1e\xe5\xbd\xdc\x16\xe7\x49\x12\xcc\xdb\x26\x3d\x86\xa3\x8a\x94\x28\xf9\x9b\x56\xd8\x23\x1d\x6c\xed\xe4\x1b\xff\x8e\x0f\xf9\x7f\xe4\xff\x8e\x68\xf3\x3f\xf2\x7f\x47\xf2\xf0\xfd\x7f\x78\x81\xc7\x48\x9a\xc7\x61\x8d\xcf\x22\xdf\xc4\x6a\xca\x4a\xb9\x6c\x45\x6e\x49\x5e\x0f\x94\x41\x2e\x9c\xa8\x98\x50\x19\xda\x76\x72\xf0\x53\xd2\x06\x09\xab\x54\xda\x40\xf4\xcf\xac\xb7\x05\xb6\x8b\xf5\x98\x1c\x21\x88\x08\x05\x73\x10\x5b\x28\x5e\xe0\x17\x0a\x79\x3b\x7e\x4c\xfc\x82\x27\x2d\xf0\x4d\x75\x1a\x34\x56\x20\x23\x4b\xeb\xe4\xc7\x9e\x20\x73\xba\x34\x0e\x42\xe2\x54\x79\x9e\xba\xe6\xb0\x59\x49\xd3\x95\x20\xdf\xa8\x23\x1b\xee\xb3\xdc\x13\x7f\x44\x0f\x19\xab\x10\xc9\x3b\xd7\xf6\xa5\xc1\xc7\x2c\xb5\xe9\x62\x0d\xd0\xe4\xee\x33\x8f\xcc\xbe\xb8\xd1\x3a\x2b\xb8\x72\x89\x11\x1b\x61\xb8\x31\x8e\xac\x80\x6c\x35\xa5\x67\x88\xb2\xf9\x35\x22\xb5\x7b\x98\x69\xc5\xa6\x72\xaa\x90\x6a\x7e\xc6\x4a\x3a\x3e\xc2\x81\xc5\xd2\x1a\x75\x09\xda\x16\x2f\xd8\xb1\x55\xe1\x69\x6d\xd3\x18\x09\x43\x77\x85\xb5\x5b\x35\xab\x95\xe8\x70\x1d\x6d\x42\x6b\x21\x6f\x6b\xad\x06\x6e\x6f\x94\xcd\x8c\xb1\x52\x78\xd5\x6e\x09\x1e\x37\x1f\xba\x13\x16\x9a\xf2\xcb\x62\x95\xbb\xb1\xfc\xe0\x62\xc8\xf9\x8e\x70\x6f\x5c\x04\xa3\x38\xb6\xd9\x6d\xa3\xfc\xa3\xa3\xf2\x76\xa9\xdf\xd3\xea\xb5\xc3\x24\xa2\xdd\x0c\x9e\x43\x7a\x56\x24\xf5\x8e\xc3\xdb\xcc\x64\x21\x9f\xb6\xb6\x29\x0a\x56\x66\x17\xce\x6b\x9c\xa8\x6f\x0e\x94\x84\xd5\x8f\x9a\x46\x2c\x9f\x9e\xa4\x94\xfb\x22\xbd\x4d\x9a\xa8\xd0\x25\x92\xbc\xa0\x98\x4f\x9d\x54\x2b\x17\x55\xc6\xf9\x8e\x47\xc3\x58\x18\x6c\xb2\xab\x14\x8a\xcf\xb9\x53\xa6\xc1\x97\x29\xf8\x95\x6b\x90\x5f\x60\x7f\x8f\xc2\xe5\xc4\xc5\x92\xaa\x92\x97\xb2\xa2\x6c\x48\x51\x1a\x4f\xca\xf7\x79\xba\xeb\x3f\xa7\x5d\x33\x31\xd9\xc8\xb1\xf7\x8f\x76\x3c\xc9\xb0\xc8\x8a\xba\x2a\x5c\x4b\xed\x3c\x21\x5d\x05\x97\x90\x64\x36\x1e\x7c\x42\x9c\x2d\x26\x5f\xef\x3a\x89\x8c\xbe\x73\x29\x0a\xd5\x34\x43\x8f\x1c\x0d\x19\x46\x83\x19\x8a\x23\x10\xce\xe1\x57\x33\x5a\x98\x6c\x2a\x49\x20\xce\xf6\x2c\x63\xf6\x8b\x05\xc0\x85\x60\xac\x88\x83\xa3\xea\x9f\x78\x7f\x6e\x15\xde\x2f\xf6\x3c\xbd\xf5\xb9\xd7\xbc\xd3\x93\x17\x85\x3c\xae\xbc\x1a\x89\x9e\xcf\xbb\x66\xa9\xb9\x58\xaf\x15\x1d\x7a\xaa\xc6\xf3\x58\xd4\x70\x25\x82\x63\x5a\xb8\xf9\xc5\x99\xaf\x5f\xbc\x74\x3f\xd2\xd1\x99\x55\x9a\x18\x03\x9d\x05\x2b\x74\x77\xfc\x7f\x84\xda\xa7\xb4\xff\xc4\xa5\x3b\xb1\x6a\xf1\xc9\xf8\x9d\xe1\x3c\x4f\x77\xf2\x67\xee\x24\xea\x22\x44\xe1\x45\x16\x4f\x98\x38\x4f\x0c\x72\xe2\x69\xf8\xd5\x0d\xe7\x3b\x62\xf9\xd1\x2c\x02\x29\xe2\x97\x7d\x3b\x18\x79\x09\xc1\xcd\x53\x9d\x05\x9a\x7c\xf4\x37\xa0\x03\xe1\x23\xf1\xb2\xb2\x82\x0e\x69\x64\xaa\x7d\xcb\x1c\xe8\xd9\xc7\xd5\x7a\xed\xad\x35\xc2\x49\xf7\x24\xf2\x18\x26\x72\x50\x62\xd3\xf0\x22\x4d\x5b\x3c\x71\xc2\x6e\xb5\xee\x3d\xc5\x7c\x2f\x34\xb4\xf2\x8a\xa2\x49\x9a\xba\x39\x32\x61\xd2\xc5\x45\x07\xf0\x46\xe9\xa3\xe0\x41\xec\x89\x1f\xe1\x07\xe3\xad\xfb\xc3\x47\x1c\x58\x68\xee\x93\x9f\xad\x65\x74\x9f\x46\x82\x8d\x72\xf2\x8c\x5c\x7d\x55\x9e\xb2\xb0\x4f\x33\x1e\x9d\xaa\x31\xc9\x1a\x14\xd7\xe7\x51\xa6\xf9\xae\xa6\x07\x21\xe9\x7c\x3e\xbe\xa4\xa7\x51\x77\x1f\x75\x32\x47\x00\x8b\x75\x5c\xd4\x86\xf9\x29\xa3\x28\xf0\x4c\xd6\x84\x87\x6b\xe9\x15\x14\xad\x49\x26\x17\x58\xb7\x49\xc0\xab\xcd\xed\x99\x84\xfc\x20\x35\x74\xfd\x25\x2c\xaf\xe4\x7c\x0d\x83\x2d\x41\x24\x53\x1a\x25\x93\x89\xc3\xe8\x44\x48\x99\x68\x37\x28\x0d\xfc\x18\x74\x10\xe9\xed\xcd\x64\x0b\x9e\xcc\x5e\xd5\xd8\x5e\x70\xb2\x06\x4b\x01\x42\xd2\x93\x72\xc5\xb2\x41\x2f\x23\x5c\x3e\x52\x24\x2b\xf4\x08\x9b\x65\x89\x81\xc1\x40\xac\x4c\xee\x74\x67\x9e\x01\x45\x9c\xa7\x0c\xdb\x0c\x72\xaa\x17\xc9\x22\x7c\xa2\x13\xc0\x22\xe2\x7b\x08\x9c\xb6\x1f\xc8\xe7\x9f\x73\x9c\xc5\x82\x03\x61\xf8\x02\x53\x28\xfa\x9c\x93\xc7\xb1\x64\xdf\xd9\xaf\x7f\x7b\xf1\x36\xd6\x6a\x10\x12\x12\x21\xeb\x88\x42\x76\xdd\xac\xf3\x27\x7a\x37\xe6\x89\xa0\x53\x42\xc1\x6b\x0c\x60\x7f\xb7\xc6\x55\x08\xf3\x7c\x36\xc8\xca\xe5\x1e\x1b\x1f\x4e\x2e\x1c\xcf\xbb\x5f\xbd\x28\x24\xdd\x29\xd8\xd3\xf1\xdb\x43\x97\x27\x62\xb5\xa7\xd4\x0d\x3f\xf3\x2a\xa7\x50\x5d\x88\x57\x06\x55\x9b\x4b\xf6\xbc\x8f\xe3\xb7\xff\xb8\x14\xc2\xf9\xf4\xe8\xfc\x11\xf7\x33\xba\x25\x66\xfb\xac\x95\xb5\x65\xfd\x50\x2b\x2f\x41\x5f\x17\x17\x4c\x94\x91\x47\xe3\x7c\x41\x52\x60\x27\x1f\xe0\x7d\x46\x8a\xd5\xc8\x6e\x68\x7d\xb2\xd6\xc1\x34\xab\x27\x1a\x64\xad\xa4\x09\x24\x9d\x1b\xe1\x2a\x95\xc4\x1e\x87\x4f\xec\xd0\x4f\xf4\x2d\x18\xbb\x4a\x67\x8b\xac\xfe\xf9\x60\x5a\x09\x3b\xce\x63\x42\x76\x93\x14\xc7\x49\xd5\x13\x7c\x99\x3f\x19\xa3\x5c\xca\x1a\xf2\x0b\xd8\xf3\xb3\x4d\x2f\xb6\x3a\xcb\x37\x70\xd9\xeb\x9c\xcf\x39\x05\xd9\x8f\x1b\x6e\xbc\x27\x00\x39\x08\x80\x4c\x10\x88\x1f\xb7\x86\xb0\xa4\x4f\x38\x89\x88\x46\xa6\xdf\x08\x55\xdd\x06\x1c\x66\xf8\x1c\x57\xe9\xad\x30\xfb\xd8\x98\xcd\x59\xaa\xfe\x33\xa6\x7a\x46\xbe\x81\x2c\xc2\x9e\x4e\x90\x13\x87\xf9\xb9\xb3\xe3\xc3\x75\x6a\x0e\xd2\x88\xe5\x49\xb3\x1e\xf3\x5c\xed\xf0\xcd\x5c\x02\x30\x87\x5e\x19\x28\xce\x95\xa5\x9c\xb1\x33\x08\xb6\xaf\xa3\x10\x96\x3b\x8a\x89\xb8\x70\x26\x0e\xe2\x9a\x9c\x77\x5e\x0f\xf6\x48\x51\x7a\xe7\x20\x9b\xbe\xba\xf6\x89\xf8\x66\x0a\x14\x3e\xb7\x41\x8b\xe2\x69\x22\xa4\xaf\x9e\x49\xeb\x33\xf2\xb3\x0c\xa3\x06\xb6\x19\x9c\xa5\x16\x0b\x21\x3a\xaa\x49\xc8\x3e\x50\x39\x37\xeb\xd6\x8f\x73\x45\x22\x84\x4a\x62\xd5\x90\x4b\x7e\x0d\x2a\x22\x35\x99\xff\x39\x0e\x1b\x39\x11\x74\xb9\x91\x73\x98\xb9\x91\x06\xc7\x3b\x87\x7d\xe5\x52\x11\xeb\xc0\x64\xa7\x4b\xc1\x32\xda\x75\x48\xce\xa2\xe8\x92\xc9\xad\xf3\x97\x62\x8c\xc2\x16\xdc\x41\xc9\x3e\x85\xef\xa9\x9b\x01\x5e\xcb\x38\x2d\xcc\xc2\x78\x28\x72\x3c\x1d\x55\x8a\x19\x3f\x2b\x0f\x4e\xa9\x08\x32\xdd\x0e\x47\x20\x3a\x58\x82\x99\x24\x5e\x5e\x7a\xf4\xdc\xe6\x45\x2f\x0c\x3f\x2e\x2c\x8a\xc4\x27\xc6\x49\x1e\xe3\x97\x06\xf7\x8b\x77\xc0\x07\xe3\x24\xd1\x30\x52\xf2\x8f\xc1\x0a\xd9\x1a\x97\xcc\x53\x6c\x7a\xa5\x9c\x01\x85\x47\x5e\x06\xd2\xcd\x27\xc9\xb9\xe0\xe8\x6c\x3e\x12\x91\x61\x52\x9e\x71\x3d\xb3\xca\xdd\x61\x27\x08\xbb\xb1\xaf\x6e\xfe\xf9\xd7\x17\xdf\xbe\x3e\x73\xe3\x7c\xbf\xba\xba\xba\x5a\x21\xf8\x6a\xd0\x2d\x28\xfc\x58\xb9\x81\x9f\xe5\xf7\xa1\x7b\x00\x76\x7b\xff\x1e\x74\x0f\xbe\x58\xe7\xaf\xf0\x0d\x4c\x1f\x12\x8e\xe1\xc7\x06\x85\x7f\xe4\x51\x74\x57\x89\x64\xf1\x6f\xf8\xef\x54\x91\xe2\x76\x90\x23\x01\xf0\x0e\x52\x9c\xe3\x88\x62\xa2\xe4\x69\x17\xf4\xdf\xf4\x73\x94\x36\x88\x7e\xf3\xd9\xc4\x11\xd3\x4c\xff\xf7\x15\x25\xad\xb9\x90\xb5\x12\x76\xd0\xe0\x65\xc6\xcf\x09\x09\x10\x61\xd4\xc0\x7b\x51\xc1\x91\xc2\x4a\x77\xf9\xc5\xf3\xf3\x3f\xff\xeb\x7f\xcd\x9f\xbf\x3a\x7f\x94\x5f\x58\xe8\x0e\xd0\xd2\x49\x47\x4c\xd0\x8a\x44\x30\x62\x5a\xb1\xdd\x2f\x67\x5c\x9f\x02\xc9\x6d\xaf\x68\x05\x5e\x6c\x7b\x95\x4e\x9f\x01\xd8\x6b\xf4\x29\x39\x8c\x8e\xfa\x88\x4b\xf0\x19\x1b\x7e\x44\x04\x6b\xfa\xb6\xf5\x34\xaf\x7f\x9a\x28\xb2\x02\xd2\xd2\x9e\x90\xfb\xeb\xb4\x3e\x85\x8b\xed\x55\x7b\x5d\xbc\x1e\x34\xb1\xfd\xbc\x34\xf8\xdd\x1f\x64\x7f\x10\xd7\xd3\xca\x78\x01\x4a\xc0\x77\x83\x9c\xdf\x8a\x17\xdb\x26\xdf\x70\x8c\xff\xc0\x13\x13\xe3\x1a\x78\xe2\x59\x13\x6c\xcf\x53\x20\x4a\xc8\x3b\x97\xb8\xc1\x09\x62\x99\xdb\x95\x63\x9b\xf3\xca\x6c\xa3\x1e\xec\x4f\x97\xcb\x9d\x92\x86\x44\xec\xf7\xde\x8a\x7a\x0c\xe1\x30\x5b\xcb\x13\xfc\x54\x5c\x3c\x6b\x2d\xf0\x9e\x53\xf8\x31\x8e\xf0\x42\x01\x37\x93\x48\x2f\x28\xc8\xf2\xd2\xfe\x14\x48\xcb\x2c\x6e\x9c\x7f\x48\xc8\xd4\xc0\x8b\x1b\x23\x9a\x78\x5a\x29\x8d\x93\xbb\x58\x18\xe9\x12\x47\xdf\xf1\xb3\xd8\xfb\xe1\x6c\xe6\x5a\x7e\x16\x99\xc0\x9e\x45\x81\x35\xce\x1c\x87\x11\x7f\x61\x07\xdd\xf8\x31\x3f\x0b\xa1\x4c\xdc\x42\x9e\x39\x6f\xda\xd8\x58\x7a\x6c\x82\x45\xa7\x95\xc0\xe7\x72\x81\x83\xf2\xab\x73\xc2\x89\xe7\x36\x40\x9e\x7a\x62\x01\xf4\x3f\xe5\x0a\x9c\x4d\x66\xcf\x2b\x92\x06\xfc\x9f\xad\x08\xeb\xe3\x7c\xc0\x02\x56\x6d\x05\x79\xcf\xad\xc0\xb1\x76\x79\x0c\x05\x81\x6f\x0b\xe7\x21\x09\x51\xe7\x78\x1c\x4b\x82\x3e\x6e\xd5\x05\x4e\xf6\x71\x93\x4f\x14\xfb\x9b\x41\x3f\xf2\x49\xbc\x76\xf6\x6d\x74\x9a\xe5\xb8\x07\x0e\x34\xcc\x26\x66\xd3\xaf\x21\x0e\xbe\x7b\x6a\x49\xaa\x42\xb8\x4e\x0c\x86\x1d\xd4\x2a\x08\xcf\x2d\xe9\x03\x47\xb6\x8a\x69\x33\x7c\x6b\x77\xa2\x6d\x59\xfa\xe6\x33\x93\xa7\x04\x02\x51\x07\x53\x56\x28\x26\x86\x67\xa4\xc7\x94\x8f\x3e\x41\x7d\x38\xe8\xc5\xf6\x5d\xca\xf4\x65\xf9\x95\xc3\x58\xd3\x6e\xe6\xc2\x15\x8e\x13\xe3\xf9\x1c\x09\xa6\x78\x49\x99\x80\x29\x52\xcf\xdc\x02\x84\x46\x42\x2f\x32\x11\x4d\x6f\xe3\xf7\x98\x42\xd3\xd1\xab\x35\x52\x4b\x4f\xd9\xee\x6d\x92\x67\xf7\xce\x83\x0b\x84\x43\x8a\x80\xf2\x69\xd4\xa3\xb0\x7d\xc6\xdb\xb3\xf9\x59\xda\x4b\x25\xcd\xb6\xd7\xd5\x27\xf4\xf3\x98\x21\xff\x40\x4f\xaa\xb6\xa2\x8d\xa7\x34\x69\x9f\xcb\x97\x3a\xa8\xf8\x26\x4f\x7b\x60\x69\xc9\x8c\x5e\x88\x32\xd9\x4d\x8b\xaa\xbe\x13\x52\x15\x8f\xe9\xbf\x19\x85\xd0\x08\xa5\xa0\x2d\xbe\x11\x4a\xb4\xf1\x01\x38\xb4\xfd\x35\xa7\xa0\x7f\x4c\x7f\x47\x89\xad\x17\xc1\x42\x5a\xf7\xcd\x83\xe7\x37\x1f\x86\x9d\xac\x41\xbb\xe0\x7f\x9f\xdd\xbf\xb7\x79\x90\xff\xe8\x13\x73\xc5\x26\x1e\xf9\x72\x46\x75\x47\x7a\x72\x34\x5f\xae\xe5\x96\x5c\x4d\x13\x2e\x73\x7e\xa9\xc4\x64\x6c\x42\x2a\xd2\x46\x84\x81\xce\xa7\xb3\x2c\x85\x1a\x6b\x78\x7b\xf3\x59\x35\xca\x10\xa6\x06\x9d\xb7\x7c\xad\x83\x88\x70\x9d\x87\x54\x58\x8c\xc5\x65\x05\x8a\xfd\x6a\xbd\x26\x79\x92\x2a\xbc\x9a\x65\xd4\xe3\xb4\x94\xb1\x2e\xbb\x2f\xe3\x5d\x19\x73\x94\x45\x71\xd8\x4e\xcc\x6d\x2e\x6e\x8d\x9d\xef\x96\xa6\x3c\x49\x09\x1f\x40\xd2\x2c\xf7\xf3\xee\x18\xab\xc4\xa9\xec\xe3\x9a\x69\x3e\xfb\x79\xed\x4f\x49\x64\x9f\x6c\x6b\x9c\xa6\x9e\xa2\xe6\xce\x9a\xfc\xa4\x3c\xf5\xcb\x9b\xee\xa4\x6d\xf3\x36\x97\x94\x4c\xb3\x7a\xa7\x24\xcc\x4e\xfc\x36\x6b\x75\x7c\x31\x94\x35\x07\xf6\x94\xab\x60\x4c\x99\xb8\x2c\x60\x8e\x92\x12\x75\x37\xbf\xd6\x24\x7a\xa3\x00\xc1\x9f\x90\x59\xed\xd6\xd1\x8f\xab\xba\xbc\xc5\x1f\x53\xa2\xc4\xb9\x7a\x66\x2e\x9d\x9f\x96\xf3\x67\xb1\xad\xdb\xf2\xfe\x54\x78\xf5\x38\x31\x41\x69\xfa\x41\x6f\xa1\xf8\xb7\x01\xda\x96\xf2\xfd\xc6\xf1\x3e\x09\xf0\x20\x34\x9e\xf0\xef\xb5\x39\x50\x02\x7a\xfa\xe8\x5c\xcb\x9d\x17\x39\x7d\xa2\xc0\x03\x24\x26\xbf\x14\xb2\xa5\xe4\xf1\x1c\x34\xe4\xb1\xdc\xed\x9c\xde\x35\x0e\x1a\x42\x95\x4c\xd3\x5f\x95\xf8\x17\x25\xb3\x37\x05\xc1\x5e\x58\x61\xf1\x3c\xef\x73\xe1\xb3\x2b\x8c\xc0\xe6\xd0\x4a\x4b\xe9\x1d\x8a\x67\x14\x4c\xc6\x42\xee\x72\x3c\x44\x50\x83\x92\x3b\x09\x95\x87\x33\xa2\xb3\x22\x01\xc2\xde\xdc\x43\xe3\xb5\x89\xe4\x82\x3c\x8d\x11\x31\x2a\x1b\xf1\xd2\x79\xd8\xbb\x15\x47\xa2\x89\x82\xf2\xaa\x2a\x2e\x0d\x5b\x1d\xc3\xfc\xc4\xe2\x2e\x5e\x7e\xa9\x8a\x87\x2f\x5e\xf3\x0f\x4a\x48\x10\x85\xc1\x4f\xa7\x4d\x21\x7c\xcd\x70\x38\x50\x9a\x9f\x8a\x61\x56\xb8\x52\x2c\x96\xe2\x08\xc1\xd6\x7b\x75\x87\xf4\x14\xd2\xb8\xc9\xda\xbe\x2f\x3b\xa1\xae\x5d\x20\x8c\x27\x2c\x28\xf4\xe2\x2d\x77\x9d\x9c\xaa\x42\xd5\x80\x7d\x73\x6b\xc7\x21\xbf\x94\xd0\x8e\xb0\x63\x24\x60\xea\x7e\x24\x4c\x7d\x74\x08\x9f\xbb\x63\x3d\xcf\xe1\xe1\x4b\x38\x1b\x0b\x13\xaa\xaf\x5d\xda\x15\x26\x57\x3d\x44\xa5\xc5\xce\x16\x4f\x94\xbd\x1a\xf4\x2e\x7c\x3d\x68\xf0\xd5\xde\x68\x58\x4d\x2b\x91\x9b\x6f\xe4\xda\xeb\xbf\x8b\x06\x44\x55\x8c\x5b\x33\x6e\x47\x64\x7f\x75\xd7\x20\x36\xb0\x63\x98\xe3\xb4\x6d\xbe\x24\x94\xc7\x99\x6f\x8a\x85\xf7\x36\x99\xd0\xe8\x38\x4c\x7e\x86\xde\x43\x09\xef\xaf\xf3\x05\x35\x13\xda\x9a\xb3\x75\x8d\x63\x8f\x1d\xcc\xf1\xd6\x54\x44\x4b\xb7\x2e\x18\x28\x89\x18\x59\x82\x35\x89\x3d\xa4\x6f\x3e\x8c\x3e\x07\x8e\xa5\xbf\xf4\xae\xa5\x3e\xb5\x72\xe8\xc9\x8a\xda\x65\xf9\x15\xb5\x4f\x03\xe9\x4b\x48\xbe\xf4\x93\x84\x36\x81\x3e\x91\xf6\x4e\x51\xea\x18\x36\xb2\x99\x66\xd3\x01\x15\xe2\x34\xd5\x1c\xe8\xf3\x87\x93\x53\x8f\x1f\x58\xff\x6d\xf2\xa8\xfa\xcf\x89\x1b\x60\xb4\xc3\x2e\xa3\x47\xc8\xe4\x11\x0a\xda\x5e\x20\x61\x49\xd1\x5b\xd5\x7f\xff\x3f\xff\xbf\x85\xa3\x14\x65\xc5\xf2\xc1\xd4\x97\x0e\x57\x54\xc1\xaf\x87\xa4\x97\x84\x9f\x0e\x67\x23\xde\x48\x45\x69\xf0\x94\x8b\xf0\x17\x9e\x21\xe6\xb4\x9c\xed\x9d\x37\x97\x3c\xe8\xbe\x1a\x28\x5b\x8b\x22\x43\x70\x61\x8f\x3e\xf5\x3b\x9b\x00\x85\xe5\x98\xfa\x85\x87\x51\x0d\x9b\x56\x9a\x26\xb0\x72\xd3\x03\x36\x9e\x5f\x4a\x12\x1b\xdf\xaa\xc8\x36\x3e\x39\x84\x13\x0e\x32\x5f\xb8\x50\x8e\xe7\xf1\x90\x8f\xd3\x49\x86\x37\x3f\x01\x47\xfa\xe0\xa3\x10\xfe\xfd\x93\x73\x2a\xc0\x23\x11\x27\xfa\x16\x66\xf2\xfa\x3f\x93\x76\x95\x88\x8a\x6e\x4d\x64\x3b\xe9\x76\xb4\x5b\xe0\x01\xde\xfa\x70\x4f\x2f\x52\xea\xb9\x4b\xf4\x9a\x6f\x27\xa2\xd2\x48\x28\x36\xa7\xd1\x66\x8d\xb9\x48\x0b\xe1\x76\x46\xa9\x30\x7d\x20\x85\x71\xfc\x2e\xc4\x99\x29\x1e\xfb\xbf\xb2\xec\xe7\x5e\xd7\xef\x32\x52\x58\x53\x1e\x11\x56\x6e\x53\x53\xd3\xcc\xc4\x04\xb5\x1b\xda\x36\x01\xfd\xa1\x6f\x5b\x1f\x3b\x16\x74\x7e\xba\x66\x9c\x39\xf6\xd9\x60\xc1\x51\xa2\x97\xbd\x4a\x60\x29\x4b\x8d\xaa\x28\x55\xac\x8f\x74\x76\xd0\x37\x1f\x6a\x23\xba\xb5\x4f\xd0\xd5\xeb\x3a\x4d\xd6\x3c\xba\xa2\x53\xde\x2e\xef\xb8\x1c\xe7\x1d\xca\x0e\xd0\x1f\x5a\xa0\xdc\xd6\xe4\x8b\x2c\xd5\xa5\xb4\x48\xd0\x74\xd0\xab\x51\x1e\x8c\x1d\x72\x8a\xa0\xc8\xf9\x27\xa3\x2c\x25\x65\x07\xdd\x06\x34\x59\x0e\x38\x1f\x23\x57\xa0\x23\xfb\xe1\x22\x49\x57\x19\xe5\xd3\xc0\xf6\x7c\xbe\x77\x10\x5d\x34\x68\x5c\x9f\x79\x7c\x0e\x84\x77\xc8\x17\x44\x47\x72\x6a\xfa\x74\x0b\xa4\x5f\x60\x8a\x41\x9f\x92\xfc\x5e\x59\x71\xc1\x9e\x5a\x63\x48\x2c\x6f\x1f\x2f\xdc\xb0\x2e\x5d\x72\x4e\x35\xf6\x16\x90\x58\xaf\x87\x0e\x79\x47\x8e\x25\xea\x73\x11\x77\x54\xf1\xaf\x0c\x9f\xe4\xe5\x23\xbd\x14\x25\x66\x78\xc8\x1e\xd6\xb2\x66\x7d\xe2\xb0\x03\x27\x1f\xf7\xdd\x12\xcf\xf5\xd7\x6c\x29\xef\x63\xbc\xd5\x46\x25\x99\x1f\xbd\x5d\xf1\x25\x68\x4e\x8e\xf3\x91\xfc\x8f\xb3\xa6\x3e\x25\x03\x24\x35\x39\xae\x71\x18\xd7\x63\xe7\xaf\xa7\x4e\x26\xa3\x0c\xb4\xf6\x3f\xee\x21\x1f\x6e\xda\xd2\x15\x4b\xf4\x9b\xe4\xf6\x34\xf7\x75\x6a\xfb\x2d\x7b\xd7\x93\xd6\x2f\xd1\xad\xfe\xc3\x6e\x50\x69\x85\x80\x01\x93\xd5\x4c\x44\x05\x69\x48\xe2\x51\x79\xc4\xee\x54\xbd\xae\x3f\xe2\x4d\x55\x8d\x09\x8c\x2b\x09\xe4\x3f\xb5\x81\xe3\xcd\x6f\x35\xeb\xf5\x93\xcb\x2f\x06\x83\x7c\x58\xc2\xda\xb8\x01\x8b\x4b\x61\xc5\x68\xf1\xf3\x46\xf7\x3b\xd9\x6e\x64\x5b\xc5\xf6\x06\x63\xe4\xc4\xa4\xd9\xdb\xfd\xb7\xe7\x46\x93\x49\xe5\x93\xf6\x92\x3e\x4b\xb8\x33\x5b\xfc\xa4\x3a\xe3\x32\x4d\x46\xc8\x8f\x9b\xb7\x29\x8c\x1e\xb3\xd1\xe8\xfb\xf7\x24\x36\x3f\x61\xd7\x36\xc9\x70\xbe\x30\x50\xc4\x63\x0b\xa9\xf4\x4f\x4e\x2c\xe0\xbd\x85\xd5\x38\x3d\xb9\x8f\x5b\x7d\x2d\x59\x3a\x45\xc2\x28\x76\x57\xa5\x5d\x8f\x95\x62\xe3\xea\x24\xee\x20\x4e\x83\x37\x3d\x72\xa9\x1a\x6f\x9d\x65\xee\x71\x58\xbb\xff\x1b\x79\x28\x4f\x64\x2c\x27\x94\xe3\xdf\x10\x24\x41\x77\xf6\xab\x50\x9d\x7d\xb8\x28\xe2\x94\x23\xcc\x26\x45\x1e\x19\xbf\x61\xb7\x2c\xdc\x3a\x50\x23\x0c\x7d\x05\x57\x3a\xfd\xec\xeb\x46\xad\x4f\x1b\xe0\xff\x4b\xdd\xb7\x10\xde\x39\xa3\xfb\xb6\x85\x71\x8c\x93\x60\xc0\x69\xd5\x50\x2b\x7c\x67\x23\xbc\x38\x3f\xb4\x2b\x68\x41\x5c\x02\x3b\xb9\x73\x14\x2f\xf7\xdd\x3d\xcd\x21\x03\x94\x09\xab\xe5\x98\xaf\x68\x33\xbf\x9a\xd6\x52\xfd\x95\x73\x4c\x0d\x2f\x39\x3f\xe5\xeb\xbf\xf5\xc8\x44\x83\xb4\x1a\xac\x7f\xdf\x67\x63\xe0\xaf\x48\xa3\xf9\xec\x71\x2f\xc1\x80\xcb\x18\x37\x2f\x9d\xa4\xf4\xa5\xa7\x8c\x8e\x6e\x9a\xd6\x58\x2a\x8a\xb7\xc0\xf9\x9b\x28\xd9\xe8\x18\xc4\x87\xdb\x4c\x12\xd6\xa5\x79\xea\x16\x20\x4e\x76\x6b\x48\x84\x72\xba\x73\xc7\x7a\xa4\x9e\xd0\x7e\x0c\x14\x61\xc5\x8f\x81\xbc\x1d\xd2\x11\xc4\xe5\x27\x47\x40\xea\x3a\xea\x8b\x2c\xbe\x9c\xbb\x04\xdd\xb6\x85\xc1\xb1\xa8\x15\xa1\x4f\x98\xc4\x4e\xc7\xe8\x33\xc0\xc6\xfd\x36\xc2\x3a\x41\xed\x8c\x2c\x32\xeb\x13\x4f\x30\x17\xd2\x49\x36\x33\xa2\x25\x4a\x64\xbd\x21\x22\x95\xd8\xd5\xd8\x6b\x32\x46\x1c\xc9\x8c\x96\x45\x3c\xb1\xeb\xc8\x52\xda\xb4\x04\xbd\xf8\xa9\x7a\x72\x13\xe7\xd8\x8d\x24\x27\x17\xde\xfe\x86\xa7\x8a\x2b\xae\xe1\x73\x28\x22\x19\x1a\xaf\x5e\x40\xcf\x7e\x93\x2b\x82\x71\xd4\x6e\xd2\x7b\x22\xd2\x9f\xb5\xea\x70\xff\x52\xa3\x31\x14\xad\x70\xe4\xa6\x5f\x8d\x63\x21\x42\xae\xe5\x88\x14\x5e\xee\xea\x73\xc5\x4b\xd2\x52\x04\x27\x63\x67\xbf\x96\xfa\xee\x79\x2f\x96\x68\x76\x91\x13\x82\xd4\xd5\x2d\xaf\xc7\x7c\xa0\xa3\x71\x61\xdc\x4e\x8c\x03\xa6\xe7\x66\x7a\x28\xfd\xf6\x47\x28\x24\xec\xfe\x57\x71\xa8\x02\x4f\x9d\x63\xcd\xd5\xc7\x50\x47\x8a\x32\x3e\x75\x0c\x29\x4e\xf9\x43\xc3\x48\x90\x48\x8a\x3c\x3e\x75\x34\x31\x76\x59\x1e\x4b\x72\x2c\xfc\xc0\x0e\x03\xeb\xaf\x1c\xfe\x9a\xe2\x8d\xe3\xb0\x30\xf4\x44\xbd\xe7\x37\x2f\xe2\xd7\x66\x35\x02\xe2\x20\xd3\x6f\xe2\x28\x63\xd3\xef\x48\x4d\x10\x09\xbf\xd7\xeb\xf5\xf4\x02\x85\x5e\xae\x27\x7d\x5c\x2f\xdc\x23\x67\xa9\x4e\x6e\x94\xe3\x4b\x39\xb6\xa8\x7a\x45\x12\x01\x56\xcc\x1f\xfa\x89\xaf\x02\x89\x90\xe8\x4c\xc7\xb8\xd3\x4b\x9c\x66\x49\xca\xe3\x48\x52\x91\x2c\xce\xe4\xc7\x01\x3f\xad\xb3\xec\x67\xda\xcf\x77\x59\x25\x4c\xb3\xe9\x85\xae\xe2\x74\xc2\x69\xa0\x8e\x8c\x63\x56\x1e\x85\xe3\x65\x12\x76\x3e\x3b\xcd\x1b\x8b\xc1\x36\xa0\xac\x74\x7c\xca\xb9\xfb\x49\xf1\x1b\x48\x75\x40\xf4\x67\x5d\x7c\x43\xff\x0d\xac\xc2\xcd\x9c\x4f\x4b\xc1\x2e\xd6\x14\x50\x45\x3a\x9c\xde\xf5\x4a\x92\x77\x05\xff\x2f\x55\x9d\x4d\xa3\xe2\x65\x14\xd9\x8c\x7e\xb3\x46\x3d\xb3\xbd\x15\xad\x93\xf9\x7f\x95\xdf\xad\xb2\x71\xca\xeb\xcd\x20\xdb\x8a\xc3\xcc\x3d\xc4\x3f\xd3\x78\xad\x11\xa0\x38\x1c\xca\x4b\xd0\xc5\xb9\x72\x5e\xbc\x14\xc5\x11\x87\x3b\xc2\xd4\xd2\x96\xee\x6b\x11\x85\xa5\x8a\x21\xfa\x11\xa0\x5f\x28\xe7\xe1\x58\xd9\x81\x1b\xce\x4f\x20\xed\xac\xdc\xe9\x5a\x18\xc2\x6b\x5c\x02\x8c\x71\xca\x92\x6d\x11\xd4\x26\x51\x69\xef\x2d\x4f\x91\x25\x0d\x46\xa8\x71\x75\x5a\xf5\x92\x2d\x82\xfd\x1e\xf0\x72\x93\x1e\x66\x30\x4b\x7d\xf1\x12\x92\x8d\x26\x29\x76\x36\x42\xed\x19\x1d\x6c\x48\xc4\xbe\x79\x90\x8f\xb1\x64\xc6\x6f\xe9\x49\x8a\x4b\x4e\xe8\xba\x63\x90\xf4\x5d\x88\x3b\x72\xa9\xe8\x6d\xfc\xd5\xe5\x9d\x4f\x7b\x39\xdf\xcf\x7b\xf6\x8a\xc3\xf8\x9b\x77\xd7\x1a\xbf\x8c\x8e\x5b\xe9\x57\x36\x39\xed\x8f\x52\xb4\x14\xea\xb2\x92\x69\xeb\x4f\x9d\x17\x64\xfc\x8d\x5d\x7e\xd3\xa9\xb1\x78\x33\xfe\xf6\xb2\xaf\xa5\x5a\x91\xb6\x21\x6d\xd2\x73\x40\x49\x93\x49\xdc\xd1\xa8\x11\xb1\x49\x17\x31\x58\x9d\x27\xd5\x5d\xc0\x9d\x64\xa1\x3c\xb9\x81\x67\x7f\x5e\xe3\x5c\x91\x47\x19\xac\x97\xce\x1a\x8b\x39\x46\xd1\xa1\xff\xbe\x08\x6b\xae\xa4\xdd\x36\xc5\x8f\xb0\x6d\x0c\xb4\xcb\x30\x7a\x40\x6c\x62\x7c\x58\xe8\x11\x64\xdb\x82\x50\xe5\xa0\x36\x52\x55\x65\x8f\xf8\xc7\x05\xf4\x0b\x8e\x7a\x90\x7f\x8b\x78\xc8\xb0\x64\x49\xb1\x56\xed\x96\xfa\x81\x48\xa0\x94\x57\x6a\xd2\x98\xe2\xd6\x56\x64\x3f\x62\x7c\xc8\x9f\xc8\x20\x6b\x6c\xda\x11\x1e\x52\x91\x89\x94\x18\xd9\x6d\x53\x3c\x1e\xfd\x40\xc1\x9f\xa1\x40\x5f\x7d\x4a\x0b\xe9\x20\x23\xb7\x52\x67\x0f\x01\x6a\x39\xb6\xeb\xe9\x61\xd2\xa3\x88\xcf\xa3\xbc\xf4\xe9\xbe\x22\x37\xbe\x73\x2e\xb8\x65\x90\x49\xfd\x74\x78\x0b\xed\x7c\xc2\xba\x11\xd1\xa1\x6a\x7e\x73\x67\x0d\x11\xd2\x31\x37\x1f\xec\x91\xc5\xec\x48\x65\xf6\x1a\x38\x62\x7d\x4d\x56\xd9\x40\xb6\xfe\x2b\xaf\xb9\x3c\x3d\xf4\xa4\xa7\x93\x43\x8f\x7a\x3c\x9b\x76\x19\xf7\xf3\xa9\xeb\x8e\x8f\x47\xbd\x75\xd3\x7b\x26\xf4\x46\xd4\x90\x3f\x42\xbe\x64\x6b\x7d\x6c\xc3\x84\xea\x11\x4b\xe7\x3f\x6e\x25\x0c\x7d\xa1\x35\x67\xc4\x36\xec\x5c\xe0\xdd\x94\x14\x8c\x45\x62\x83\xf1\xf1\xc6\xe2\xd1\x6a\xa0\xa0\x4f\xa2\x6d\x4b\x63\x1a\xb6\x76\xe2\x14\x7d\x6b\x63\x9a\x7b\x9c\xfb\x53\x1e\x81\x2c\x4d\xcc\x9f\x28\x9a\x93\x50\x2d\x20\xcd\xf2\xf9\xf9\xb6\xb1\x83\xaa\xbf\x4a\xf0\x7a\x25\x21\x58\x6e\xb2\x3b\x19\xfb\x54\xd1\x0e\x36\xac\xda\xa4\xf5\xfd\xe2\xd6\x61\xa4\xfb\x95\x06\xc5\xf9\x06\xae\xcd\xd2\x7e\xe0\xe0\xc8\xd6\x54\x4b\x16\x31\x2f\x76\xc0\x91\xb8\x92\x98\x56\x90\x1f\x34\xac\x34\x6c\x41\x5e\xc2\x59\xce\x1c\x1b\xd1\xac\x87\xde\x58\x5f\xe0\x9c\x43\x88\x17\x9c\x71\x93\xb7\xf4\x15\x49\x35\x3f\xb9\x13\xd6\x08\x47\x1d\x2c\x1e\xc0\xa9\xe1\x6a\x3c\x06\xa9\xa4\xfd\x9d\x97\xed\xd4\x55\xc3\xf5\xc5\x66\xe5\xc8\xb0\xde\xde\xe3\xa7\x5d\x3a\x3c\x31\x71\x37\x61\x18\xcc\xd3\x9f\xd8\xe8\x78\x20\x48\x06\x47\xc4\x0c\x45\x0d\x2d\x87\x03\xd1\x5f\x1c\x43\x74\xf5\x3d\xfd\x8a\x5f\x88\x41\x6b\x24\xd1\xeb\x5e\xf7\x83\x95\x8a\x23\x9d\x52\x38\xb2\x67\xfe\x93\x59\x80\xef\xa0\xeb\xf5\x75\x39\x50\xcc\xe4\x50\x25\x64\xb4\x1a\xec\x91\x6c\x69\x42\x3d\xa2\x5a\x7d\x2d\xd1\x92\xb0\x9f\x42\xf5\xd6\xce\xc8\x45\xe7\x4c\xd2\x7a\x69\x7e\x54\xd7\xd5\xea\x37\x56\x50\x4c\xdb\x27\x9a\xc3\x52\x81\x0e\x1d\x46\xd0\x87\x9e\x02\x54\x95\x6d\xdf\xef\x87\x03\x51\x9f\xa6\x78\xc3\x1f\xf3\x97\xf4\x31\x7f\x8b\x1f\xe7\x3d\xf8\x71\xb9\x4a\xaf\xe8\x6b\x7e\xee\xbe\x9e\xaa\xb5\xd3\x30\xa9\xf1\x54\xc3\x1c\xda\xaf\x5c\x03\xe2\x30\x5d\xb7\xe7\x20\x0e\xab\xf3\xc1\x20\xb1\x9f\xae\x1b\x41\xdf\xb2\x00\x54\x93\xbb\x3d\x51\x4b\x56\x2d\x14\xdf\x2b\xe7\x3c\xf5\x69\x55\xc8\xae\xcf\xf1\x4b\x9f\x56\xc5\x69\x6d\xab\xe2\x29\xc5\x5f\x65\x87\xd8\x5b\x2b\xf6\x9b\xbf\xc1\xd6\x9a\x82\x40\xbe\xdd\xfc\x0d\xf6\x36\x3e\x98\x9b\xbe\xb7\xc6\x6a\x71\x40\xda\x9d\x1c\x61\x28\x3a\xb7\xff\x8a\xc4\xfb\x76\xbf\xbc\x66\x5c\xe1\xb6\x53\x43\x75\x67\xc3\xea\xcc\x41\xa8\xd2\x58\x3d\x6c\xed\xa0\xc1\xb8\x3e\x5f\x5d\x1c\x84\x5a\x5d\x84\xcf\xcb\x9d\xce\x2a\x87\x8e\xa9\x7e\x8e\xf5\xf7\x58\x82\x77\xd8\x85\x55\x8b\x6a\x6f\xc5\xb6\x81\x85\xbe\x1f\xe1\xf7\x8f\x77\x3e\xab\x3e\x9f\x76\x3e\x6b\x2b\xbe\x34\xa4\x69\x42\x8c\xb5\x19\xb6\x7b\xb0\x65\x23\x4c\x53\x5a\x4a\xfa\x1d\x9a\x7a\xe3\x81\xf2\x87\x04\x94\x3f\x17\xa6\xc9\xdf\x22\x50\xfe\xad\x03\x8a\x1f\xef\x6d\xd9\x81\x15\x64\x37\xb7\x30\x9c\x67\x8f\x56\xaf\x5c\x71\x4c\x14\xdb\x06\x74\xe9\xb8\x36\x77\x1f\x91\x44\x0e\x0d\x9c\x73\xcc\x5a\x08\xed\x30\x4f\xb7\xc2\x5b\xba\x9f\xf3\x7f\x0a\xde\x3b\x12\x62\x7b\xbd\x6d\x21\x64\xda\xd4\xd8\xff\x4f\xd7\xfb\x36\x61\x00\x89\xd9\xae\xb7\xa5\x43\x99\xd2\xe6\x14\x49\x1c\xba\x45\x68\xc6\x69\x1e\x9c\xd1\x17\xcd\xeb\x8d\x18\x0c\x2c\x01\x1e\xb0\xe0\x36\x48\x3f\x00\x06\x74\x36\xf4\x0b\x70\xae\x53\x53\x3c\x7b\xb4\x7a\x2b\xf6\x36\x63\x11\xc7\x9a\xfc\xfe\x3b\xa1\x44\x0d\xe5\x41\x28\x68\x47\xa1\x07\x03\x28\xb8\x0a\x7a\x31\x56\x55\x90\x81\x71\xa4\xdc\x77\x70\x9e\xc5\x71\xbf\x3d\x8d\x5e\x85\x20\xbc\xd6\x97\x8c\x61\xce\xdd\x17\x7e\x66\x13\xb2\x80\x0b\x5c\x4e\x5c\xef\x6f\x65\x73\xd1\xb9\x12\x72\x04\xd3\x50\x4b\xdc\x1a\x0a\x03\xb2\xbb\x2e\x1e\x82\x24\x06\xeb\x3b\xfa\xae\x5d\xd4\x4d\x27\x37\x57\x3e\xe5\x3a\xa9\xe8\x39\x41\x41\x14\x1e\x89\x0d\xb1\xa3\x49\x07\x43\x56\x61\x38\x62\x10\xcf\xfb\x23\x99\x36\xd6\xae\x85\x69\x4a\x44\x37\x75\x62\xa8\xd8\xc2\x74\x26\x0d\x32\x7f\x27\xdc\xee\x40\xf1\x20\xb7\xc5\xcb\x7e\x2f\xda\xb8\x72\x8b\x5c\x30\xf3\x93\x3e\xf3\x24\xb2\x95\xec\x20\x3d\x15\x2f\x71\xbd\x83\x30\xe6\x8a\xdc\x16\x58\xa1\xf1\x12\x40\xe7\xac\x0c\x22\x97\x5c\x93\x0f\xea\x12\xb4\xb7\x5c\x3c\x0e\xae\xd0\x4f\x65\x8c\x03\xeb\x0c\x2f\x79\x5d\x68\x39\xf8\xe3\x47\x55\xc9\xe3\x9a\x84\xb3\xc4\xab\xb9\x99\xae\x50\x27\xde\x33\xef\x44\x5b\x4f\x41\x3a\xd8\xc4\x17\xf2\x73\x75\x14\x4d\xc8\x50\xbe\x11\xd3\xd8\xf2\xa7\x5a\x60\x39\xed\xe7\xe7\xc3\x2e\x5f\x7d\x99\x1b\xe0\xf4\xe1\x43\x47\x02\xc5\xba\xed\x37\xd8\xb8\xf7\x1c\x6e\x25\x52\x74\x1c\xf6\x99\xa3\xef\x7d\xe1\xda\x95\xa6\x1c\xcf\xb4\x93\xfa\xf2\x24\xa4\xa1\xd4\x01\xc9\x21\x3f\xe8\xbe\x91\x1b\x69\x79\xc3\x18\xbe\x8b\xe0\xc1\x84\x5c\x44\xc6\x0a\x6b\xc1\x45\x57\x15\xea\x38\xf0\xb6\x46\xdd\xd2\x85\x49\xba\x6c\x84\xe5\x68\x5d\x78\xce\x85\xed\xb5\x0b\xef\xef\x4e\x0a\x85\xe0\x43\x5e\x88\xbc\x70\x66\x83\xdd\x78\x5b\x15\x9b\x8f\x3e\xe1\x71\x9e\xf4\xa4\x1d\xd9\x1d\x7a\x8d\x13\xc1\x03\x79\x4b\x5b\x67\x39\x22\xd4\x09\x7d\x4f\xd1\x35\xa8\x01\x26\x7c\x97\x8e\x94\x3b\x0b\xa9\x4a\x87\x01\x97\x8c\x0a\x7c\xef\x81\x83\x75\x18\xc1\xca\xb6\x2d\xfb\x2b\xe5\xa4\xc7\x31\xe8\x86\xd4\x5d\x2e\x27\x70\x3c\x3c\x76\xb8\xf0\xe1\xbc\x59\x53\xc5\x12\xe2\x31\xf3\x30\xd9\x74\x26\x71\x71\xe2\x0e\x1b\x61\xc8\x5c\x6b\xb6\x30\xd4\x57\x50\xeb\x72\x1c\xb1\x44\x09\x36\xed\x3a\x9f\x59\x7c\x4d\xc6\x70\xe9\x75\xb8\xeb\x78\x75\x12\xa3\x7b\xe1\x47\x70\xab\xcd\x5e\xd6\x6b\x17\xc5\x25\xc1\xfc\x13\xb9\x36\x01\x8d\x68\x9d\x7e\xc6\x26\x63\xf4\x61\xc1\x62\x8c\x05\xe2\x84\xd4\xd3\xf6\x93\xcb\xca\x40\x13\x45\x3b\x7f\x1c\xfb\xe4\xdf\x13\x95\x3f\x7f\xbc\x12\x96\xb3\x51\x38\x69\x27\x0b\xc8\xb9\xcc\x58\xa1\x4d\x11\x24\x9e\xee\x6b\xea\x8a\xea\x20\xe5\x11\x8a\x67\xfa\xe6\xd7\x9b\xff\x84\x8c\xe4\xf5\x09\x92\x36\xa7\xb1\x34\xc3\xfa\x6c\x5f\x39\xcb\x25\x13\xb5\x87\x83\x08\x93\xe1\xdf\x21\xc1\x3c\xff\x04\x85\xd4\x50\xfc\x48\xf2\x77\x97\x97\x21\x24\x62\x70\x9f\x17\x0d\xff\xa2\x61\x53\xeb\xf3\x31\xdb\xd0\x1f\x41\xf1\xf3\x31\x83\x52\xe3\x28\x0d\x6c\x07\x2d\xed\x35\x45\xff\xee\xb7\x7d\x4b\xf6\x1d\xa0\x1b\x90\xd6\xd0\xb7\x7d\xdf\xb6\x7e\xac\x89\x9f\x18\x7f\x6b\x7a\x63\x8b\xe7\xbd\xf1\xa3\x43\x0c\x50\xbc\xe9\xc3\x68\x49\xc0\x58\xa9\xe2\xf1\xeb\x9c\x63\x3f\xa4\xdf\xfd\x5b\x15\x47\x21\xa0\x6c\xb5\xa2\x35\x49\x3c\xd6\xe5\x60\xab\xac\xcd\x63\x44\x7f\x5c\x3f\x5c\xe7\x8f\xbf\x7d\xf5\x7f\xdc\x35\x71\x1f\xfe\x55\x2c\xde\xf0\x1f\x76\x61\x1c\xd3\x97\x33\x08\x6e\xf0\x9e\x85\x7a\xde\xc3\xff\x9b\x56\x68\x0b\xef\x6d\x9c\x33\x6a\xed\xc7\xc5\xfa\xa7\x3d\x48\xe7\xa0\x45\x82\x83\xa6\x6f\x28\x5c\xd4\xd4\x72\x70\xed\x77\x1b\x89\x33\x9f\xc8\xd6\xe7\x25\xf1\x13\x25\xad\x5c\x0c\x58\xa9\x40\xbb\xad\x1e\xbf\xf6\xfb\x6d\xad\x96\x9b\xc1\xc2\x18\x18\xe0\xdc\x7d\x4a\x96\xec\x24\x78\xa2\x19\x8c\x48\x87\x10\x38\xe3\x47\x24\x1a\x7c\x5e\x40\x47\x93\xec\x7a\xdd\x0d\xad\xe0\x80\x06\xe9\xce\xc4\x4f\xeb\x7a\xd6\xab\xb3\x07\x64\x58\xff\x79\x06\x65\x86\xc9\x4c\x5e\x8b\x6d\xb3\x38\x8b\x4e\xc8\x76\x04\x7b\xb2\x7a\x25\xa4\x3f\xb5\x97\xa0\xe5\xee\xba\xac\x75\x3f\x1c\xca\xd1\xa6\x89\xb5\x80\x94\xb6\xd3\xd9\x4e\x3e\xd3\xc3\xe1\x00\xaa\x4b\xec\x99\x5c\x23\x5c\xdb\x29\x52\x29\xe2\x6d\xa5\x0a\x57\x81\x36\x88\x33\xca\xf0\x0d\x89\x46\xc8\xf5\x38\x03\x95\x87\xe7\x5f\x09\xc0\x38\x91\x6d\xaf\x90\x9f\xe1\x38\x5d\xad\x34\xd6\xd7\xf2\x20\x67\xf9\x06\x38\xec\x09\x90\x95\x75\x58\x76\x04\x4e\xce\xc9\xd8\x28\x15\x55\xc8\xbd\x53\x77\xe1\xf8\x78\x08\x1f\xd0\xc5\x75\x15\xb7\x14\x1a\x31\x58\x1d\x6f\x4b\xf1\xbc\x47\x22\xcd\x7f\xc7\x1b\xf1\x50\xaa\x6a\x45\xf2\xf7\xf7\x7e\xc1\xdc\x94\x7d\x4f\xc9\x9c\x59\xc1\xee\x20\x88\xba\xc9\x9f\xc6\xe5\x1d\x92\x42\xa5\x11\xc5\x2b\x93\x9f\x57\xf9\xc5\xb9\x47\x56\x9d\x3d\x94\xa4\xeb\xb8\x78\xf5\xf6\xcd\x6a\x4e\x07\x8f\x60\x84\x96\x10\x2a\x8f\x70\x13\x16\x10\x7e\xa2\xea\x11\x92\xf2\xf1\xcd\x78\xfb\x8c\x0b\xb9\x6c\x21\x67\x54\x67\x96\xc1\x96\xe8\x6c\xba\xb9\x6c\xc1\xf3\x84\xc2\xa4\x23\xb9\xbd\xe7\x54\x29\x14\xed\x04\x59\x54\xd7\xea\x18\x73\x67\xd0\xdb\x86\x34\x6d\x22\xbf\x73\x76\x27\xaf\xc1\x6a\x50\x6a\x34\xc9\x8b\x9f\x90\xd2\xb6\xa6\x78\xfb\xf2\x82\xb4\xaa\x41\xae\x4c\x9c\x4e\x88\x67\xe3\xe7\xbb\x97\x07\x04\x2f\xf9\x0a\x50\xad\x90\x2d\x83\x08\x1d\x73\xd0\x52\x8d\x6f\xd8\x41\x74\x25\xd9\xfc\x6e\xdd\x0d\x7d\x73\xfe\xca\x85\x4f\x8b\xce\xb4\x1b\x07\x25\x71\xf5\x9c\x19\xbe\x32\x3e\x35\x2c\x4c\xf8\xb2\xd9\xb8\x88\x67\x9a\x3f\x4b\xa9\xdd\x6d\xc4\x31\xb8\xd5\x4f\x89\xf2\x39\x1b\x34\xd2\xe7\xe9\xdb\xca\x47\xe6\x44\x25\xd3\x81\x6d\xfa\x8a\x1d\x0e\xf0\x3a\x51\xac\xe2\x4d\xf4\xee\x27\x01\x0b\x17\x7a\xfd\x04\x07\xd2\x75\xf2\xaa\x8f\x54\x9c\x5c\x1a\x50\xba\x0c\x1f\x49\xae\x91\xb6\xfc\xd1\x45\x4d\x49\x6f\xbf\x4a\x63\xa8\xd4\x85\xe9\x05\xea\x3b\x86\x2e\x99\x08\x21\x2b\xa9\x7f\xa8\x4a\x64\x24\x3b\xaf\x37\xcd\x20\x77\xd2\xc2\xc9\x1d\x6f\xa2\xcb\xa5\x77\x35\xbe\xad\x51\xa2\xd1\x29\xb0\x85\xb3\xb5\x1a\x93\xe4\x8c\xae\xc8\xce\x92\x24\xd0\xe2\x63\x26\xa1\x34\xb6\xb2\xcb\x3f\xe9\xa2\x4c\x69\x50\xfe\x35\xb4\xd7\x87\x75\x3c\xe7\x98\x62\x5f\x18\xd8\x6d\x94\x3b\xb7\xc2\x42\x00\xe7\x84\xc7\x7e\x36\xb1\x76\x7c\xc1\x7b\xa0\xd7\x8d\x88\x5f\xdc\x5a\xda\x66\xd8\x94\xe2\x20\x4b\x50\x15\x49\xc0\x8b\xf3\x37\x2f\xf2\x27\xaa\x3a\x0c\x6a\x6f\x33\x67\x9a\xb2\x56\xbd\x2d\x0d\xd8\xe2\x73\xe7\xac\x05\xc6\x72\x14\x8e\x2f\x3c\x84\x53\x1b\x38\x53\x16\x56\x1b\xec\x13\x83\x16\x07\xb8\xd1\x42\x55\x8c\x3f\x5e\x09\xbd\x07\x7e\x0f\x5d\xa1\x1e\xf8\x6d\x8b\xd4\xda\x55\x14\x4a\x33\x06\xeb\xfa\x0a\x8a\x97\x62\xd8\x1d\x41\xda\xd5\xab\xbe\x1a\x4c\x3a\x96\x31\x71\x42\x9c\x32\xe3\xfb\xef\x5e\x4e\xc0\x46\xba\xf5\xe6\x83\x82\x49\x61\x20\x7c\xdf\x04\x6a\x37\x05\x68\x2c\xbe\x3a\x55\xa5\x8b\xe7\x6f\xf1\xd5\xa9\xc8\x1b\x75\x09\x88\xde\x16\x02\xa2\xb7\x25\x85\xd8\x82\xb6\xec\xea\xfa\x13\x68\x3c\x07\x7b\x41\x19\x63\x41\x4e\x00\xf7\xc0\xfe\xaa\xc5\xa8\x35\x5c\x02\x43\xbc\x8e\xcf\xa8\xb7\xb3\x79\x25\x15\x8b\x4f\xfc\xdb\x10\xed\x88\xab\x32\x28\xf9\xbe\x34\x3d\x89\x71\x47\xf3\xb6\xe2\x7b\x25\xdf\xaf\x2e\xe8\xf3\x2a\xa6\x51\x27\xb5\x49\x2e\x50\xea\xbe\xb7\xb4\xdc\x2f\x9d\x0c\xa0\xef\xed\x6a\xbe\xe4\xfd\x6e\xd7\x4a\x05\xbc\x87\xdf\xf2\x8f\xc5\x2d\xac\xa4\xa1\xd7\x44\xf7\x03\xeb\x66\xea\xe2\x3b\xfa\x73\xf5\xb2\xaf\x93\x20\x6d\xd3\xbd\xe7\x57\xa8\x3e\xca\x43\xf1\xec\x28\x0f\xf9\x49\x48\x71\x38\x94\x24\x6b\x3e\x08\xdb\x44\x86\x4d\x14\x60\xef\xb0\x13\xd5\x6c\xa2\xa2\x2a\xf1\x39\xb7\xa6\xdc\xe9\xbe\x2b\x2b\x69\xf6\xc5\x39\x7d\x20\x24\xf2\x14\x8c\x3d\xb4\x82\x90\x05\x99\x65\x4f\xea\x0b\x55\x49\x55\xf3\x2a\xf1\xdf\x74\x28\x03\x98\x69\xc2\x2d\xba\x78\x9e\x7f\xb3\x74\x87\x8c\x69\x16\x58\xc6\xa8\xd0\x9d\xe9\x27\xef\x0f\x3d\x47\x75\x73\x54\x45\x0c\x43\xe7\x71\x84\xd0\x79\x72\x2c\x4d\xb3\xa6\xcd\xa4\x55\xf9\x71\xd0\x47\x68\x93\xc5\x30\x0d\x1e\xc5\x1a\x14\x43\x7c\x43\x7f\x2f\x40\x94\x14\xc8\x92\x60\xc6\x13\x8b\xdf\xa6\xb0\x1d\x9e\xd0\xa1\xe3\x98\x0c\xf2\x08\x9c\x48\xbf\x08\x14\x09\x3b\x13\xa8\x0a\x8c\x1d\x09\x9b\x96\xac\x6d\x6e\x6b\xc6\x14\x27\x2a\x25\x6b\xa1\xc1\x59\x9d\xa7\x1a\xfb\x52\xd8\x92\xa2\x29\xb3\xfb\xe5\x05\xfe\x99\xdf\x99\x00\xdd\xc9\x87\x2e\xe4\x7e\x8d\x1b\xa5\x9a\xe5\x66\x90\xad\x45\x3c\x4d\xdb\x9f\xa4\xbb\x71\x09\x1a\x7d\xbc\xe6\xa8\x2a\xd1\xd8\xaa\x24\x3a\x95\x9c\x9c\xd5\x8a\x28\xd5\x39\x08\xed\xa2\x03\x99\x6e\xa0\xc7\xc9\xf2\xd0\x80\x36\x0e\x29\x6f\x1b\xb9\xdb\xe1\x35\x08\xc8\x94\xa4\xa4\x7c\xe2\x22\x25\xf3\xe2\xc1\x43\xd8\x5b\xcf\x05\x01\x70\xb8\x05\x96\x42\x5c\xec\xf1\xef\xd5\xdb\xeb\x43\x02\x22\x94\x91\xe5\xb6\x11\x16\x5f\x95\xf3\xd7\x17\x2f\x56\x2e\x0c\x83\x11\xf6\x98\x40\xee\x7a\x7c\xde\x52\xe1\x4f\x0e\xfa\x78\x25\xe3\x4d\x24\xd0\x4e\xbc\x1f\xc5\xbd\x24\xc2\x0d\x62\x63\x93\x3b\xe5\x01\x5e\x6d\x2a\x4a\x6a\x1e\x34\xec\x40\x6b\xa8\xca\x56\x6e\x41\x19\x92\x28\x5d\xf6\xfa\x38\xd4\xe4\x66\x7e\x04\x75\x9c\x74\xe6\x51\x13\xe1\xf6\x5a\x3a\xd4\xfe\x8c\xdc\x5e\xe6\xc8\x86\xaa\x38\xa4\xc4\xa8\x12\x17\xb0\xec\xa4\x8b\xd8\xe3\x11\xe6\x9b\x1d\xb2\x3f\x3e\x8c\xcf\xed\xed\x68\xc1\xd1\x11\x4a\x7e\x25\x19\x9b\x3e\x16\xc1\xd4\x95\x12\xac\xf4\x4d\xb0\x0c\x38\xd1\x9a\xcb\x8f\x5f\xee\xc0\x6e\x09\xf5\xb0\xc6\x79\x7b\x5d\xf8\x48\x00\x54\x92\x47\x25\xe9\x68\x2a\x3c\x30\x6b\x42\xe8\x57\x5a\x1c\x28\x61\x92\x32\x64\x5c\xf9\x84\xca\x72\x2c\xcb\xb1\x2c\x1f\xcb\x96\xda\x70\x2e\xeb\x34\x3b\x9a\x19\x4e\x29\xb4\x12\x95\xe6\x58\x9a\x53\x69\xd2\xce\x70\x40\xf4\x1c\x70\xe3\xf7\xf4\x33\x92\xca\x2f\xc0\x5a\xe8\x0e\x7c\x9a\xdf\x42\x77\xe8\xf5\xcd\x07\x8d\xb8\x70\x27\x2a\x66\xd7\xb8\x8d\xc5\x6e\x42\xe0\xeb\xeb\x03\x44\x6c\x21\xd7\xc0\x23\x3f\x59\x69\x57\x8d\x67\x26\xde\x13\x7e\x72\x63\xe4\x4d\xaa\x59\x04\xa9\xe6\x07\xd4\x55\xc5\x5a\x1c\xad\x22\xae\xc6\xe0\x1e\xbe\xda\xf8\xdb\x1c\x6c\x50\x17\x09\xb1\x6a\x33\x4a\x21\xc7\x4f\xa3\xc4\x6e\xfc\x36\x0a\x2f\xc7\x6f\x44\xa5\x4d\xe9\xb2\x6a\xb3\x36\xa6\xe5\x83\x78\x71\xf1\x32\x7d\xd2\xa3\x42\xcf\x1b\x7f\xae\x06\x27\xbb\xbb\x73\xe8\x8d\xad\x35\x98\x3b\x5f\x44\xf0\xb4\x2d\x6f\x22\xf4\xe2\xbe\x2d\xd4\x37\x7f\x6f\xa5\x85\xbf\xdc\xf9\x62\x7c\x48\xbd\xf0\xd2\xbf\xa6\xa3\xe8\x72\x71\x3d\x3c\xbc\xa3\xab\x35\x38\x17\xb1\x4a\x5c\x1b\x26\xac\x73\xff\x2d\xc7\x6f\xb3\x7a\xdb\xbe\xdf\x4b\x18\x2b\xd2\xb2\x3d\xa2\x8f\x79\x07\x48\xea\x9e\xaa\xb2\x18\xad\x53\xad\xb8\xee\xa9\x4a\xf4\x1b\xdc\xb4\xc0\xe4\xae\xa7\x25\x42\xc7\x55\xd4\x40\x09\x71\xcb\x83\xee\xdf\x5f\x33\xc7\x45\xdb\xf8\x1d\x7f\x5f\xbd\xc1\xef\x73\xc1\x89\x59\x71\x5c\xd2\x59\x7b\x01\x9f\x11\x1f\x42\x56\xd1\x25\x0f\xce\x31\x22\x6c\x29\xbd\xfa\xf8\xc8\x16\x9a\xe0\xe5\x5b\x68\x27\x6c\x30\x74\x42\xb6\x7e\x77\x59\xa8\xb7\xfc\x6a\x11\xe0\x69\x82\x89\x8b\xcd\x40\x86\x25\x25\x3e\x05\xf2\x7d\xf1\x10\xac\x86\xdd\x6e\xf5\x46\xdf\x7c\xd8\xc9\xf7\x29\xec\xec\x92\xf0\x67\x24\x07\x8b\x1f\xa6\xfd\x2e\xde\x14\x2e\x0a\x6f\x08\xb4\x7d\xf1\xfc\xc9\xcb\x6f\x17\xdf\x0e\xd7\x27\xb4\x3d\x11\x04\x1c\x7b\x18\x81\x9f\xbb\x5f\x93\x89\xec\xe5\xc1\xcb\x74\x22\x66\x82\x24\x3a\x87\x65\xf9\xce\x74\xbc\xe5\x96\xeb\x6d\xf1\xc9\xf5\x43\x0f\xc9\xc0\xc1\xe4\x63\xbb\x51\xc6\xbb\xa4\x95\x8f\x33\x34\x0c\xf7\x31\x7e\x66\x1c\xd3\xa1\x15\x52\x95\x16\xde\xdb\x22\xc8\xd8\x4f\x74\x2e\xaa\x2a\x02\x2f\x45\x3b\x56\x59\x9d\x53\xba\x7f\x61\xe5\x65\xaa\xa7\x49\xd7\x10\x54\xc5\x94\x2b\x89\x8e\x29\xec\x3a\x9f\x30\x6f\x21\x90\x80\x07\xc8\x72\x27\x24\x9e\x31\x0e\x5c\xc7\x41\x5e\x5c\x64\x79\xce\x7a\x3b\xb6\x23\x14\x31\xe8\x5f\xe5\x77\x2f\x4f\x35\x66\x40\xd9\xa4\x6f\x67\xaf\x4a\x35\xf3\x3f\x85\x70\x90\xeb\x70\x25\xe8\x4e\xbb\x1b\x31\xbf\xc7\x8b\x68\x0f\xab\x04\xe9\x19\xc5\xf2\x29\x5b\xb6\x76\x76\xdf\x72\x8a\x7f\x45\xdf\x92\x3a\x1a\x0c\x72\x8a\x5e\x39\x12\xd5\xfc\x0e\x4b\x72\x5f\x72\xba\x3e\xe7\x6b\x8e\xae\xb1\xee\xfc\x3d\x7e\xe8\xb3\x1e\x91\xe9\x86\xde\xf5\xba\x02\x4d\x5e\xc2\x4b\x4d\x18\x59\xab\x12\xb9\x5d\x09\x57\xc5\x77\xfc\x31\xc7\x8f\xb9\x54\x39\x7e\x4c\x6a\x05\xa6\x92\xe5\x90\xc2\x85\x61\x89\x85\x92\x4b\xd7\x90\xea\x7a\xd2\x2b\xaa\x5a\x6e\xc5\xc1\x6e\x1b\x91\x36\x61\x56\x8f\xf8\xf3\x02\xda\x4b\x5b\x9a\xe2\xe4\xc8\x55\xe8\x23\x88\xf9\x1f\x6d\xba\x4f\xa7\x3c\x11\xca\xc6\x5d\x9d\x14\xd1\xa6\xab\x7f\x7a\xe8\xa5\x8b\xd9\xf4\xa9\x4f\x8b\x6f\x98\x54\x13\xee\x00\x7b\xc4\xb3\x78\x6c\x11\xd0\x4f\x94\x4f\x90\xb3\xfe\x09\x07\x68\x6a\xe9\x33\x4e\x62\x7c\x7e\xd8\x83\x2f\x08\xad\xe8\xe7\xf2\x1b\xe2\x60\xd7\x07\xdd\x5f\xca\x8a\x5c\xa0\x36\x12\x6c\xfc\x2a\xa6\x00\xe1\x1a\x3a\xb8\xdb\x9b\x8d\xdf\xbc\xe9\xb3\xcf\x10\xc8\x67\x98\x31\x62\x36\x72\x1b\x17\x53\x98\x7a\xcb\x59\x56\x2f\x45\x5b\x3c\x7b\x44\x11\x41\xf1\xef\x76\x0a\x87\x64\x64\x2b\x77\x6c\x7e\x3a\x9a\xd6\xbc\x84\x0d\x28\x43\xc1\x08\x66\xe3\x33\x7a\x97\x3c\xcc\x8f\x2e\xbe\x7b\x3a\x7d\x90\xd9\x9a\xd0\xcd\x9b\xad\x06\x17\x27\x4d\x70\x6b\x51\x89\x03\xab\x78\xe8\xff\xb4\xf0\xd6\x69\x30\xc8\xf8\x08\xfb\xef\xc4\x8a\xb9\xee\x89\x1b\x5b\xec\x1d\xa1\xd6\xce\xb9\x7b\xdb\x2b\xab\xfb\x96\xe3\xa6\x94\xbd\x96\xb5\x54\xc5\x39\x95\xe5\xae\x2c\xa7\xb2\x9c\xcb\x46\x44\x6b\xad\xd8\x36\x14\xa5\x38\xec\x73\x23\x54\xbd\xdc\xe5\x08\x7d\x9a\x0a\x89\x60\x66\x64\x6f\x54\x76\x82\xe7\x48\x98\x8d\x08\x3c\xb0\x19\xcf\x96\x58\x8b\x09\x20\x73\x16\x0b\x2c\x85\x0f\xf2\x15\xa4\x04\xf4\xf3\x94\x88\xc0\x05\x98\x5b\x98\x33\x2d\xd1\x12\x3b\x36\xab\x72\x62\x9a\x6e\x91\x27\xac\xd5\xac\xf6\xf2\xac\x99\x53\xe0\x26\x3e\x52\x79\xba\x12\x49\x55\x5f\xf7\x20\xc9\x1e\xd6\xaf\x4a\xb2\x1a\xf4\xdc\x8f\x71\x58\xc6\xe3\xed\x2a\xad\x5d\xc8\x16\xe6\xeb\x98\xff\x0c\x6a\xfb\x73\x2a\xf3\x7c\x64\x7c\x10\x7c\x6d\xf6\x2b\x9a\x37\x11\x3b\x15\x7d\xb4\x91\x5a\xfb\xb8\x31\x6c\x8a\xf8\xcc\xfd\x76\xfa\x83\x29\xb8\x7f\x36\x7d\xb5\x00\xbf\xf8\x5a\xfa\x5a\x0e\x45\xef\xa0\x02\x2d\x2c\x54\x6e\xd4\xc5\xd3\x9b\x5f\x2b\xd0\x2c\x9b\xe4\xa1\xc2\x12\x8a\x76\xb9\xd5\xdd\x12\xbb\xac\xa0\x8b\xe7\x8e\x21\x83\x56\x2f\x20\x90\x31\x19\x88\xc7\x22\xbe\x86\x4f\xac\xe1\x1a\xf7\x29\x7a\x16\x5b\x0f\x69\x79\xe8\x3c\x26\xe7\xcf\x17\xb9\x20\xd6\x84\x53\xfb\xc1\x16\x3f\x81\xb4\xd1\xe1\x19\x23\x5a\x4f\x2b\xfe\x03\x8a\x58\x5f\xb5\x96\x01\xef\x3c\x93\x76\x59\x48\x5c\x4b\x1b\xf6\x8c\x42\x89\x36\xb2\x6e\x5a\x59\x37\xd6\x85\x13\xbd\x56\x56\xbc\x6f\x40\x5f\xf6\xba\x01\x8a\xab\x2a\x06\x13\x72\x77\x47\xad\xe0\x8d\xa0\x16\x5a\xa9\xc0\x14\x1c\xaf\x33\x9a\x1a\x05\xbd\xfc\x9c\xfe\x24\xdd\x36\x48\x75\x84\x56\xb9\xf8\x98\x5f\x9c\x6c\xaa\xdc\x36\x42\x8b\xad\x05\x4d\x8d\x6e\x9b\x3f\xdc\xea\xf2\xbd\x9d\xb4\xa4\x42\x53\x8a\x8a\x92\xa6\xea\x6d\x29\x74\x4d\x06\xd2\xe7\xba\x1e\x10\x23\x40\xd2\x15\x09\xe7\x20\xec\xf2\xab\x20\xac\x73\x5f\x52\x60\x3a\xbd\x23\x2c\x25\xdd\x65\x71\xda\x02\xf8\xb6\xed\xd5\xd8\xf2\x23\xfc\xb5\x7a\x3b\x07\xa3\xd4\x01\x1e\x8a\xc2\x90\x2c\x00\x39\x4b\x6f\x04\x79\xf6\x28\x00\x78\x88\xb6\xaf\x4f\xa1\x2d\x93\xbf\xec\xeb\x5a\xaa\xda\xc4\xc0\x2c\x67\x0c\x82\xdf\x97\x7d\xbd\xfa\x01\xf4\x11\x37\x4d\xc9\x04\x92\x84\x3f\x89\xe0\x07\xbf\xce\x02\x80\x79\x27\xf6\xf5\x56\xf7\xaa\x78\xa4\x7b\xc5\xde\xb4\xe1\xfb\x28\x74\xf2\x5f\x90\x4e\xad\x06\xe2\x28\xa5\x3d\xb4\x42\x8d\xb0\xc8\x14\x7a\x13\xfd\xdc\xeb\x0e\xf1\xaa\x79\x08\x92\x1d\xf6\x43\x88\x2f\xbf\x04\x03\xef\x61\x3b\x04\x2f\x9e\x08\x62\x74\xb9\x47\xea\x8e\x83\xe5\x88\x61\x47\x21\x16\xdf\xe8\xfe\x48\x1a\x3f\x0f\x31\x0f\x5b\x17\xc6\x4f\x9a\x04\x52\x22\x1c\x41\xda\xc5\x7e\xe3\x6e\x0d\x41\xf9\x40\x00\xde\x25\x9d\x7f\xb2\xf1\xcf\x42\x6c\x00\x0f\x4d\xb1\x73\x39\x58\xaa\xa7\xc5\x5f\x05\x38\x53\xf9\xe4\x3f\x1c\xed\x22\xd4\x12\x5b\xde\x26\xef\x11\x3e\x76\x0e\x2d\x6c\x29\xbe\x1c\x79\xa3\x99\x28\x5d\x4a\x80\xa9\x60\x0e\xb5\x99\x02\x49\xc5\x4c\x03\x83\x32\x1b\x62\xae\x44\xd3\xe6\x43\xb7\x07\xf2\xe3\x1c\xdb\x23\xcb\x00\x86\x44\xf2\x61\x30\x35\x50\x7b\x91\x1e\x7e\x0a\xed\xfb\xce\x5f\x45\xab\x32\x87\x0e\x92\xcf\xf8\x43\xf9\x65\xf4\x80\xc6\xd3\x9a\x6c\xa8\x2f\xe9\x0f\xc5\xb7\x87\xf5\x6c\xbc\x4e\xa7\x3f\xdf\x9c\x8f\x78\xc1\x66\x3f\xf3\xf2\xbf\xf3\xd1\x14\xc9\x82\xb9\x11\x76\x9a\xad\x3c\xc9\x01\x70\xd7\xdc\xbf\x27\x1e\x8c\xb9\x65\x34\xa8\x90\xa7\x7c\xa1\xee\x65\xef\x53\x46\xdd\xfd\xf9\xcb\x77\xc6\x67\x1e\x3a\x0e\x51\xab\x3f\xff\xf9\x1d\x36\xfc\xf3\x5f\xde\x71\xdb\x43\xb7\x01\x25\x94\x42\x04\x83\x13\x1a\x1b\xa7\x10\x41\x63\xbd\x2f\xdf\x99\x7b\x46\x6f\xef\xcd\x5a\x90\x6a\x02\x86\x85\xff\xc5\x15\xd6\x70\x18\x4c\x43\x8d\x1f\x84\x06\x17\xd8\x81\x9e\x84\x9a\x62\x06\x73\xda\xf4\x38\x8c\xd0\xdd\xca\x87\x29\xce\x42\x72\xd3\x30\xa8\x78\xa5\x78\xa6\x61\x9a\x1e\x98\x22\x84\x08\xb5\xb4\x92\x7e\xf1\xc9\x4e\xb8\xf8\x05\x1b\xe4\xa4\x34\x11\xec\x3d\x36\x22\xbe\xc7\xb5\xfe\x85\xa6\xeb\xa6\xe2\xf2\xb2\xfc\x92\x6d\xdb\xde\xfc\xee\x56\x42\xc6\x97\x5f\x32\x0d\xfd\x01\xd4\xef\x6b\x68\x9a\x2d\xe6\x97\xcc\xa7\x56\xf9\x5d\xcd\xed\xb9\x32\x2e\xde\x2f\x7e\x99\x92\x84\x37\xd4\x5e\x92\xc7\x26\x6e\x16\x41\x17\x5a\xf5\x27\xd7\x2f\xd9\x1f\x6f\x71\x69\xfd\xe6\xad\xe2\x4d\xfc\x47\x5b\x9e\x2f\x68\x07\xba\xfe\x67\x8c\xf9\x38\x18\x81\xab\xeb\xdd\xcc\xc3\x02\x6f\x28\xe3\x13\x1d\x6c\x8e\x1e\xcd\x29\xa0\xfe\xf8\xb5\xf3\x89\x74\x32\x87\xb7\xa2\x8e\x7c\x17\x0e\x4f\xfc\x79\xc4\x13\x8b\x2d\xfe\x25\xac\xbb\x8f\x1d\x45\x49\xa2\xac\xa8\xa9\xb5\xb7\xa2\x4e\x56\x80\x86\x4a\x15\xfd\xe4\xe7\x68\x24\x6d\x96\xf1\x83\x8f\x59\x15\x37\xfb\xbb\x47\x48\xb9\xb0\x4e\x21\x49\x25\x92\x05\x1e\xb1\xac\x4f\x96\xe5\x08\x3b\xf2\x54\xa7\x4c\x59\xff\x74\x64\x18\xf7\xe0\xd2\x8d\xe1\xdf\x50\xe5\x0a\xae\x72\x52\x57\x83\xda\xc2\x47\x16\xd6\xf6\xb7\x2c\xc6\x4e\xf7\x5d\xce\xfd\x24\xdd\x39\x93\x3f\xd7\x9d\xa0\xd4\xad\xf8\xa5\x8a\xbb\x9d\x2f\xbc\xb0\x9f\xd8\x57\xf6\xb3\xed\xfb\xf6\x5d\x26\xea\xbe\xb8\xec\x75\x46\x56\x34\xaa\xbf\x2a\x24\xbe\xcf\x57\xc5\xdf\x90\x44\xcb\xbe\x34\xc5\x5d\x93\x7f\xe9\x13\x77\x66\x5f\x76\xfc\xfb\x95\x54\x83\x85\xec\xcb\xc6\x15\x5b\x2e\xad\xf8\xe7\x5b\x51\x67\x5f\x5e\xf1\xdf\x3f\xf6\xdb\x06\xeb\xf5\xca\xd5\xec\x95\xb0\xd9\x97\xd7\xfc\xeb\x6b\xd1\xe8\xcc\xc0\xb6\x57\x95\x29\x68\x22\x39\x8e\xba\x0a\x99\x42\xb3\x8e\x7a\x4a\x0b\xb9\x77\x95\x35\xfd\xa0\x27\xd5\x2c\xd7\x22\x75\x61\x5c\xf0\x56\x20\x5d\x76\x05\xb0\x4f\xbf\xd3\xf0\x88\xb2\xb4\xcd\xa4\x13\x1c\x28\xa8\xec\x1a\xc4\xa4\x93\xaf\xc9\xc4\x31\xd3\xe2\xaa\xf4\x43\x0f\xc3\xc5\x8f\x7e\xc8\x7e\x98\xf8\x8d\x87\xea\x87\x97\xfd\x5c\xe9\xfe\x70\xec\x15\xbc\xcb\x3c\xaf\xdc\x81\x21\xaf\xe1\x9f\x86\x2e\x7f\xde\x6f\x1b\x32\x5b\xca\x1b\x09\x3a\xdf\xb7\x72\xbb\xf7\x9e\x47\x1c\xdb\x82\xbe\x23\x57\x49\x4e\x50\x2e\x34\x77\x29\xd5\x61\x70\x26\x1f\x21\x41\xa8\x4b\x55\x82\x3f\xed\xf5\x61\xb4\x68\x66\x23\xc2\xa6\xdf\x36\x35\x70\x5f\xde\x94\x99\xd8\x0c\xdb\xf7\xe5\xc6\xa9\xaf\xbd\x4a\x3c\xff\xfc\xdf\xff\x9d\x98\x3b\x79\x84\xff\xf8\x8f\xfc\xd5\xc3\x2f\x1c\x67\x4c\x54\x99\x37\x76\x77\x92\xcc\xa8\x4e\x27\xde\x3f\x4d\xaa\xad\x33\x17\x81\x2c\xca\x2b\x31\x26\x42\xce\xfe\xff\x00\x00\x00\xff\xff\x38\x6f\x8e\x1f\x3d\x21\x01\x00" func confLocaleLocale_deDeIniBytes() ([]byte, error) { return bindataRead( @@ -4544,8 +4544,8 @@ func confLocaleLocale_deDeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 73666, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0x1c, 0x6f, 0xfd, 0xaf, 0xcb, 0x80, 0x4f, 0xb3, 0xdd, 0xe9, 0x5f, 0xe9, 0x95, 0x8f, 0x9b, 0xbe, 0x3d, 0xba, 0xb2, 0x3e, 0xa5, 0xc2, 0xc6, 0x5a, 0x5f, 0xe0, 0xbe, 0x9f, 0x88, 0xed, 0xf3}} + info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 74045, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0xda, 0x18, 0xc2, 0x47, 0x31, 0x61, 0x9c, 0x3, 0x64, 0xc3, 0xec, 0xe0, 0xca, 0xf4, 0x5a, 0x1f, 0xe3, 0xa9, 0xe3, 0xc5, 0x1c, 0x5a, 0xa9, 0x9e, 0x8d, 0x13, 0x64, 0xe0, 0x60, 0xcf, 0x25}} return a, nil } @@ -4564,12 +4564,12 @@ func confLocaleLocale_enGbIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-GB.ini", size: 66468, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-GB.ini", size: 66468, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x0, 0x33, 0xbd, 0x58, 0x14, 0x7e, 0x91, 0xc8, 0xa3, 0x18, 0xf7, 0xb0, 0xb8, 0x45, 0x61, 0x7e, 0xf1, 0xf7, 0x10, 0x21, 0x16, 0x82, 0x7e, 0x78, 0xd9, 0x5c, 0xf1, 0x6, 0x35, 0x7a, 0x42}} return a, nil } -var _confLocaleLocale_enUsIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xeb\x72\xdc\x38\xb2\x30\xf8\x9f\x4f\x81\xf6\x09\x85\xbb\x23\xe4\x72\x74\xcf\x77\xbe\xdd\xe8\xb0\x3c\xab\x96\xaf\xe7\xc8\xb6\x8e\x24\x4f\x7f\xb3\x5e\x07\x1b\x45\xa2\xaa\x30\x62\x11\x1c\x02\x54\xb9\x7a\x62\xde\x60\x1f\x60\x9f\x6f\x9f\x64\x03\x79\xc1\x85\x64\x95\xec\x9e\xb3\x7f\xa4\x22\x90\x48\xdc\x13\x99\x89\xcc\x84\xec\xba\xb2\x56\xb6\x12\x67\xe2\x5c\x74\x52\xb7\x8d\xb2\x56\x58\xd5\xac\x9e\x6c\x8c\x75\xaa\x16\xaf\xb5\x13\x56\xf5\xf7\xba\x52\x45\xb1\x31\x5b\x25\xce\xc4\x1b\xb3\x55\x45\x2d\xed\x66\x69\x64\x5f\x8b\x33\xf1\x82\x7f\x17\xea\x4b\xd7\x98\xde\x03\xbd\xc4\x5f\xc5\x46\x35\x9d\x2f\xa3\x9a\xae\xb0\x7a\xdd\x96\xba\x15\x67\xe2\x46\xaf\x5b\xf1\xb6\xc5\x14\x33\x38\x4e\xfa\x30\x38\x4c\x1b\x3a\x4e\xfa\xd8\x15\xbd\x5a\x6b\xeb\x54\x2f\xce\xc4\x35\xfd\x2c\x76\x6a\x69\xb5\xf3\x35\xfd\x8a\xbf\x8a\x4e\xae\xfd\xe7\x95\x5c\xab\xc2\xa9\x6d\xd7\x48\xc8\xbe\xa5\x9f\x45\x23\xdb\xf5\x80\x30\x97\xf4\xb3\xa8\x7a\x25\x9d\x2a\x5b\xb5\x13\x67\xe2\x02\x3e\x16\x8b\x45\x31\x58\xd5\x97\x5d\x6f\x56\xba\x51\xa5\x6c\xeb\x72\x8b\x9d\xfa\x68\x55\x2f\x28\x5d\xc8\xb6\x16\x3e\x1d\x1a\xac\xea\x52\xb7\xa5\xb4\xd4\x6a\x55\x0b\xdd\x0a\x69\x0b\x40\xd5\xca\x2d\x97\xf6\x3f\x0b\xb5\x95\xba\xf1\x63\xe4\xff\x17\x9d\xb4\x76\x67\x60\x20\xaf\xe8\x67\xd1\xab\xd2\xed\x3b\x05\x1d\x7e\x72\xbb\xef\x54\x51\xc9\xce\x55\x1b\xe9\x9b\x89\xbf\x8a\xa2\x57\x9d\xb1\xda\x99\x7e\x0f\x70\xfc\x51\x98\x7e\x2d\x5b\xfd\xbb\x74\xda\xf8\xb1\xfe\x90\x7c\x16\x5b\xdd\xf7\xc6\x0f\xe4\x3b\xf8\x51\xb4\x6a\x57\x7a\x3c\xe2\x4c\xbc\x57\xbb\x14\x8b\xcf\xd9\xea\x75\x8f\xa3\xe8\x33\xdf\xc1\x97\xc7\x82\x79\x84\x09\xb3\x02\xb6\x95\xe9\xef\x28\xf5\x95\xff\x39\x42\x69\xfa\x35\xe5\xe6\xed\x92\xad\x5c\x2b\xca\x7d\x07\x1f\x19\x80\x2d\x64\xbd\xd5\x6d\xd9\xc9\x56\xf9\xa1\x3b\xf7\x5f\xe2\xca\x7f\x15\xb2\xaa\xcc\xd0\xba\xd2\x2a\xe7\x74\xbb\xf6\x73\x70\x8e\x49\xe2\x86\x92\x8a\x24\x2f\xa4\xed\xcd\x10\x66\x59\x9c\x89\xbf\x9a\xa1\x17\x57\xf8\x89\x79\x49\x21\xc8\x0c\x25\x0b\x59\x39\x7d\xaf\x9d\x56\x58\x19\x7f\x14\xdd\xd0\x34\x65\xaf\xfe\x3e\x28\xeb\x7c\xd6\xd5\xd0\x34\xe2\x9a\xbe\x0b\x6d\xed\x00\x25\xde\xc2\x8f\xa2\xa8\x64\x5b\x41\x77\x2e\xe0\x47\x51\x7c\xb2\x4e\xba\xc1\x7e\x86\xc5\x5c\xb6\xc6\x95\x2b\x33\xb4\x35\x2d\x6b\xf1\xde\x38\xf1\xca\x27\x14\xba\x75\x7e\x31\x35\xa5\xdf\x9c\xaa\x2f\x15\x4d\xc6\x5b\x4a\x17\x37\x90\x2e\x5e\xc2\xbc\x14\x9f\x74\x6b\x9d\x6c\x9a\xcf\x05\xfd\x00\x50\xf8\x85\xe3\xef\xb4\x83\x41\xa0\x44\x71\xe3\x54\x67\xfd\x04\x8a\x57\xba\xb7\xee\x89\xd3\x5b\x25\xae\x87\xb6\xa8\x4d\x75\xa7\xfa\xd2\x6f\x6b\xd8\x90\x6f\x57\x62\x6f\x86\xc7\xbd\x12\xfd\xd0\xb6\xba\x5d\x8b\xd7\x66\x6d\x85\x6e\xad\xae\x95\x78\x01\xd0\xa7\xa2\x6b\x94\xb4\x4a\xf4\x4a\xd6\xe2\x99\x14\x4e\xf6\x6b\xe5\xce\x1e\x95\xcb\x46\xb6\x77\x8f\xc4\xa6\x57\xab\xb3\x47\x27\xf6\xd1\xf3\xd7\x83\xae\x55\xa3\x5b\x65\x9f\x3d\x95\xcf\x45\x25\x7b\xb5\x1a\x9a\x66\x2f\x96\x6a\xe5\xf7\xe0\xde\x0c\xa2\xda\xc8\x76\xed\xf7\xdf\xde\x6d\x7c\x85\xba\x15\x6e\xa3\xad\xf0\x63\xf6\x5d\xe1\x47\x5f\x3b\x55\xd6\x4b\x26\x6d\xd0\x20\x48\xee\x95\x15\xef\xf6\x37\xff\x75\x79\x2a\xae\x8c\x75\xeb\x5e\xc1\xef\x9b\xff\xba\xd4\x4e\xfd\xe9\x54\xbc\xbb\xb9\xf9\xaf\x4b\x61\x7a\x71\xab\x5f\xfc\xb2\x28\xea\x65\xc9\xe3\xf2\x42\x3a\xb9\xf4\x5d\x08\x6b\xc0\x67\xe2\x16\x0d\x79\xb0\x51\x3d\xe1\x04\x22\x69\x1d\x6c\x7e\xda\xf8\xb3\xdb\xbc\x5e\x96\x44\x1b\x02\x8e\xf7\x9e\x40\xd4\xcb\x38\xc0\x57\x38\x74\x83\x55\xe2\xed\xfb\xf7\x1f\x5e\xfc\x22\x54\xbb\xd6\xad\x12\x3b\xed\x36\x62\x70\xab\xff\xbd\x5c\xab\x56\xf5\xb2\x29\x2b\xed\xc7\xa6\xb7\xca\x89\x95\xe9\xb1\xa7\x8b\xc2\xda\xa6\xdc\x9a\xda\xd7\x72\x73\x73\x29\xde\x99\xda\xd3\x4a\xb7\x81\x86\xb8\x4d\x61\xff\xde\xf8\xf1\x0a\x15\xde\x6e\x94\x80\x2d\x01\x40\x66\xc5\xc3\x23\x6a\x6a\xe3\x42\x3c\x5b\xf6\xcf\x93\x76\xc9\xa5\x35\xcd\xe0\xa8\xc4\x6e\xa3\x5a\x98\x27\xeb\x64\xef\x84\xb4\x7c\x80\x2c\x0a\xd5\xf7\xa5\xda\x76\x6e\xef\x67\x87\xda\x30\xc6\x8e\x48\x2a\xd9\xb6\xc6\x89\xa5\x12\x00\xbf\x28\x5a\x53\x22\x05\xf0\xe4\xb8\xd6\x56\x2e\x1b\x55\xe2\xc1\xd0\x33\xa5\xfb\xab\x5f\x1c\x58\x90\x20\x44\x06\xe1\x47\xcc\x1f\x36\x40\xf5\xfd\xca\x91\xad\x00\xa4\x82\x48\x48\xda\x42\xa6\x37\x61\xd6\x90\xe4\x84\x84\x49\x0b\x0b\x9e\x06\x5e\x33\xe7\x5d\xd7\xe8\x0a\xab\x7e\x8d\x79\x71\xf9\xf8\xa3\x97\xe6\x3e\x85\x83\xe9\xe7\xbc\x64\x11\x0c\xce\x0f\x69\x2f\x32\xda\x0e\xe5\x37\xaa\x57\x62\x33\xac\xf1\x40\x6a\xcc\x50\x7f\x07\x27\x03\x8f\x6f\xa4\xbf\xe2\xda\x18\x87\x73\x1e\x00\x62\x15\xe7\x4d\x03\xa7\x7d\xaf\xb6\xc6\xf9\x81\xa3\x62\x9e\xc6\xed\x74\xd3\xf8\x9e\x5a\x79\xaf\x6a\xe1\x0c\xee\xb7\x5a\xf7\xaa\xf2\x88\x17\x45\x3f\xb4\x25\x2d\xf6\xeb\xa1\xc5\x05\xcf\x69\xf9\xca\x02\xa8\xed\x60\x9d\xd8\xc8\x7b\xe5\x07\xde\xb3\x1c\xce\xcc\xb6\x13\xba\xd4\x0f\x2d\x6c\xe1\x45\x51\x9b\xad\x04\xf6\xe1\x05\xfc\xa0\xef\x14\xbf\xb6\x42\xae\x56\xaa\x72\x56\xdc\xdc\xbc\x11\x55\x63\x5a\x25\x3e\x5e\x5f\x5a\xbf\x0d\x36\x65\x67\x7a\x60\x35\x6e\xde\x88\x2b\xd3\xbb\x90\x96\x0c\xb4\x87\x68\x87\xed\x52\xf5\x62\xb7\xd1\xd5\x06\x87\xdd\x97\x40\x4a\x2b\xb4\x15\x83\xd5\xed\xfa\x54\x34\xca\xf7\x40\x3b\x5c\x00\xbe\x0f\xbc\xea\x3c\xf8\x4a\x49\x37\xf4\x0a\x98\x89\x72\x39\xe8\xc6\xe9\xb6\xf4\x15\x12\x1e\x20\x0b\xe2\x17\xcc\x80\x12\x48\xb2\x0f\xc0\x97\x9d\xe9\x90\x29\x82\x5d\xb5\x4c\xca\x11\x42\xbf\xe5\xfd\x04\x9a\x4e\xe1\x7a\xb7\xd4\x24\xbf\xe0\x06\x6d\x37\x62\xd5\x9b\xad\xb0\x7b\xeb\xd4\x16\x0a\xd6\x52\x6d\x4d\xbb\x28\x36\xce\x75\x3c\x36\x6f\x6e\x6f\xaf\x70\x70\x42\xea\xb1\xd1\x91\xc9\xda\x85\x55\xd2\x78\xf6\xac\x15\x1e\xad\x5f\xc6\x43\xdf\x8c\x56\xf8\xc7\xeb\x4b\xce\x39\x30\x73\xbe\x09\x4f\xfd\x9f\x9b\x38\x81\xb0\x12\xac\xd9\xaa\x1d\xac\x77\xdd\x0a\x60\xa2\x16\x45\x63\xd6\x65\x6f\x8c\xe3\xe5\x7e\x69\xd6\xb8\xc4\xb3\x8c\x58\xd3\x0b\x5e\xb4\x7e\x70\x76\xbd\x67\x21\x1b\xb3\x06\x82\xe7\xc7\x6b\x51\xa8\x16\x48\x4b\x65\x5a\x6b\x1a\xc5\x94\xf3\x25\xa4\x8a\x0b\x4c\x45\x22\x3a\x03\x19\x66\xe9\xad\xa7\x2c\xb5\x86\x1e\x3b\x83\xf4\xd4\x03\x9c\x0a\xd9\x58\x23\xba\x5e\xb7\xce\x57\x0c\x73\x44\x18\x16\x45\x61\x3a\x5f\x22\xa1\x21\x1f\x28\x21\x12\x0e\xe8\x77\xc8\x07\x16\x12\x56\x8e\xae\x92\xc3\xc9\x6e\x5d\x57\xd2\x49\x74\xf3\xee\xf6\x0a\x8f\x23\x48\x85\x45\x70\x26\x5e\xf5\x66\x1b\x13\xe2\xf8\xbc\xf3\xf8\x00\x46\xd6\x75\xaf\xac\x3d\x15\xd7\xaf\x2e\xc4\xbf\xff\xe9\xa7\x9f\x16\xe2\xad\xf3\x64\xcf\x53\x82\xbf\xf9\x1d\x2c\x69\x16\x22\xa8\xe9\x85\xdb\x28\xf1\xc8\x93\xb1\x47\xe2\x19\xe4\xfe\x1f\xea\x8b\xdc\x76\x8d\x5a\x54\x66\xfb\xdc\xaf\xd2\xad\x74\x8b\xc2\xe7\xa8\x9e\x89\xc6\x8d\x6a\x6b\xcf\xad\x00\x43\x4c\x59\x09\xe9\xa5\xec\x84\x3d\x46\x29\xc0\x8f\xfd\x4a\xf7\xdb\x38\x41\x2c\x1f\xf8\x99\xf2\x39\xcc\x5d\xea\xc6\x73\x53\x7a\xb5\x8f\xa0\xd0\xd3\xf7\x3e\x91\x96\x66\x41\x3b\x8d\x8e\xab\x30\xc6\xc4\x4a\xf9\x15\xf8\xc1\x6d\x54\xcf\xc3\x6d\xe3\x78\x9b\xd5\xca\x33\x2d\xa3\xd5\xf2\x01\x53\x71\xb5\xa4\x20\x61\x99\xbc\x20\x82\x71\xf1\xe2\xbd\x50\xf7\xaa\xf5\x0b\xbb\xeb\x4d\x3d\x54\xb0\x72\x78\xc5\x34\xa2\x57\xd6\x0c\x7d\xa5\x68\xa1\x06\x82\xec\x9b\xe6\xa9\x7e\x25\x9b\x66\xbf\x28\xf8\x60\x5c\xf7\xf2\x5e\x3a\xd9\x27\x55\xbc\xe6\x24\x6a\xfd\x04\x76\xd2\xa8\x50\xc2\xf7\xbc\x1a\xac\xf3\xd4\x03\x5a\x61\xb1\x51\x98\x6d\x85\xec\x95\x18\xba\xc6\xc8\x5a\xd5\x62\xb9\x07\x1a\x6f\xfd\x5a\xa8\xd5\x4a\x0e\x8d\x5b\x14\x2b\x55\x7b\xa2\xa4\xea\x92\xea\x6a\x8c\xb9\x83\xca\x68\xa8\x5e\x31\x80\x38\x27\xa4\x97\x00\x71\xa8\x64\x68\x2c\x95\x0f\x60\xa1\x51\x54\x83\x33\xc0\xa2\xc4\x7c\xd3\xa9\x96\xba\xc1\x8c\x89\xf0\x7c\x47\x2d\x4c\x2b\x1a\xbd\xa4\x4e\xc7\xb1\x1c\x31\x19\x3c\x3a\x37\x5e\x4a\x4e\xf3\x66\x0b\x4c\x06\x15\x16\xbc\x1d\x97\x3d\x15\xa6\x6d\xf6\xc4\x8c\xf8\x2d\x86\x82\x29\xf3\x25\x36\x92\xa5\x20\x06\x32\x45\x22\x69\x30\xcf\x0f\xd5\x5e\x23\xdb\x2b\xee\x65\xa3\x6b\x8f\x91\x11\xf8\xd3\x62\xbe\x2d\x8b\x82\x78\xe5\x92\xe4\xf5\xf2\x5e\x83\x7c\x1c\xb6\x18\xa2\x24\x19\xde\x8f\xf0\x5f\x3c\x80\x97\x50\xec\x6c\xd9\xd0\x9a\x0f\xbe\x93\x36\xc8\xc7\xb8\x4e\x7c\x77\xa1\x06\xcf\xbf\xdb\x53\x71\xaf\x81\x0d\xa0\x45\x0e\xe3\xb2\xf4\x3c\x66\xa3\x7c\x55\x56\x29\xc0\x20\x74\xfb\x74\xe8\xb0\xcc\x82\x84\x43\x92\xd7\x98\xef\xf7\xec\x60\x6d\xda\xc7\x4e\xb4\x0a\xd9\x16\x1e\xd5\x11\xdb\x27\x7a\xbd\xde\x38\xd1\x9a\xdd\x82\xb8\xdf\xde\x3a\x1c\x1d\x90\x2d\x14\xb5\xd4\x41\x23\x78\xef\xc9\xc1\x19\x4f\x5f\x60\xeb\x89\x75\x2f\x5b\x58\x7e\x8c\x58\xd9\xd0\xae\xc0\x10\x42\xde\x44\x36\x45\xa0\xb1\x92\x60\xc2\x7f\x06\xea\x47\x44\x2f\xcd\x23\x6a\x17\x61\xb0\x34\x2b\x1a\xb0\x62\xa4\xae\x24\x00\x96\x6b\x03\x82\x2d\x0b\x7c\x9e\xc3\x2a\x9c\xb2\xae\x5c\x6b\x57\xae\x3c\x09\xf6\x88\x5f\xe1\x0f\xcf\xf2\x29\xeb\xc4\xe3\xb5\x76\x8f\x45\x65\xb6\x5b\xd9\xd6\x3f\x8b\x93\x7b\x92\x1e\xfe\x04\xb2\xaa\xbc\x97\xba\x81\x31\x22\x81\xb9\x57\x28\x24\xdc\xab\xde\xfa\xdd\x53\x1b\x65\x85\xe7\x9a\xed\xd0\x01\xbf\x11\x24\x2f\x12\x10\x6b\xb3\x6b\x3d\x1d\x81\x41\x37\xab\x95\xae\xb4\x6c\xc4\x52\xb7\xb2\xdf\x07\x2c\x70\x3a\x9d\xd8\x53\xf1\xfe\xc3\x2d\x00\xae\x8d\x67\x87\x6a\x06\x58\x14\xba\x85\xf5\xee\xa5\x0c\x5a\x13\xa9\x88\xc5\x49\x1a\xdb\x52\x99\xde\xb3\x04\xd0\x1b\x2e\x78\x80\x81\xf6\xfc\x04\xca\x27\xda\x8b\xb8\x00\x0b\xe5\x02\xaf\xeb\x87\x61\x2b\x5d\xb5\x21\x4e\x18\x17\x91\xf5\x8b\xd0\xb7\xb4\x1a\xfa\x5e\xb5\xb8\xb6\x7e\x16\x27\x56\x3c\x79\x2e\x4e\x92\xe3\xba\xdc\x6a\xeb\x99\xcb\xc0\xa9\xf2\xd9\x2d\x20\x81\x72\xb3\xf3\x39\xf6\x36\x3d\xde\xa1\xa0\x3f\xe3\xc5\x4a\xab\xa6\x1e\xb7\xd7\x33\xf2\x78\x78\xae\xe7\xe6\xda\x67\x0b\xcc\x1e\x90\x28\xd0\xe8\xcc\x2f\x0d\x9f\xae\x65\xa3\x7f\x57\x29\x3f\x98\x0d\x68\xb6\x41\xc3\x8a\xe4\xfd\x97\xcc\x48\xda\x4a\x5e\xaa\x76\x40\x29\xe1\x4c\xfc\xaa\x9a\xca\x6c\xd5\x77\xe2\x57\xf5\xb8\x57\x62\xdd\xc0\x52\x91\x8e\xf4\x02\xc6\x2a\x58\xc8\xa7\x28\x5c\xac\x86\x16\xce\x2e\x27\xef\x14\xa8\x12\xe2\x58\xcd\xb1\x8d\x07\x67\xb7\xf8\xb4\x31\x5b\xf5\xb9\x18\x50\x28\x33\x4d\x1d\xc4\x7a\xd8\xb5\xa6\x47\x3e\x28\xc8\xf8\x11\x26\x6c\x48\xbb\xd3\xae\xda\x94\x41\x6d\xea\x47\xdf\xa9\x2f\x30\xc9\x90\x15\xb5\xa8\x7e\x37\xfb\xac\x62\xbb\x87\x85\xe8\x3b\xfe\x6e\x1f\xd7\xa1\x56\xb6\xb0\x1b\xb3\x03\xad\x64\x80\xb8\xd9\x98\x1d\xe8\x23\x33\xd1\x6d\xb1\x58\x14\x95\x69\x1a\xb9\x34\x7e\x22\xef\x23\xfc\x45\x9a\x9a\x23\xdf\xee\x4b\xd3\xaf\xa9\xda\x5c\x0b\xb7\xdd\x93\xe2\x8f\x72\x51\xf1\x67\x0b\x20\xf3\xa4\x1f\x86\xd3\xe0\xc4\x16\xa4\xef\x5a\xe8\xb6\x04\x75\x1a\xd7\xfc\xb6\x45\xa1\x2a\x6d\x67\x51\x7c\x22\xdd\xf1\xe7\x82\xe1\xb2\x36\x21\x05\xc6\x41\xb7\x99\x8a\xd3\x8e\x74\x9c\xb6\xb0\x4a\xf6\xb0\x03\x6f\xe0\x47\x51\x7c\x92\x83\xdb\x7c\x4e\xb4\xbd\x25\xaf\x3c\xd6\xfa\x82\x46\x92\x28\x73\x64\x2f\x37\xaa\xf3\x9c\xe8\xd6\xc2\x92\x6d\x7a\x25\xeb\x3d\xc9\xad\x61\xf1\xfe\x19\x0f\x42\xdd\xfa\xf3\xe3\xbb\xc2\x1a\x4f\xb2\xca\x6f\x44\xf1\x8b\x6e\x6b\x2c\x9f\x33\x11\xa8\x86\xde\x76\xb0\x4c\x4c\xdf\xef\x4f\x73\x8d\xc6\x46\x5a\xb1\x54\xaa\x65\xc9\xb3\x5e\xb0\xbe\xc8\x2f\x2f\x59\x21\xd5\x01\x45\x39\xec\x40\x2c\x69\x26\xdc\x8d\x6f\x21\x1e\x15\x54\x0b\x9e\x1c\x96\x19\x5d\xcf\xe1\x7d\x73\x15\x7e\xd0\x4b\xe2\xb4\xce\xc4\xf9\xe0\x36\xaa\x75\x2c\x06\xde\x40\x7a\x01\x9c\x2b\xec\xbf\x4a\x36\x45\xaf\xb6\xca\x0b\x97\xe5\x16\x55\xdf\xf8\x25\xde\xa9\x62\x65\xfa\x35\xec\x56\xdc\x4e\x67\xe2\x15\x24\xc4\xfd\xe5\x01\x94\x4b\xcf\x44\x82\xe0\x94\x3f\xf3\xc5\x42\xd9\x9a\x1d\xa8\xa0\xfd\x69\x3d\x9e\xc6\xa1\x03\x36\x80\xcf\x58\xe4\xe1\x40\x7c\xb0\xaa\x75\x71\x32\xce\x45\xab\x76\x22\x85\xa2\x21\x0b\x33\xe2\xe1\x3d\x71\x7c\xb6\x7c\x7e\x62\x9f\x3d\x5d\x3e\x0f\x87\x5c\xb5\x51\xd5\x1d\x6e\x01\xdd\x2e\xcd\x17\xd0\x4b\x11\xa3\xd1\x7a\x92\x70\x52\x8b\x8d\x19\x7a\x92\x0d\xbd\xec\xe4\x14\xe4\x66\x73\xdf\xf5\x86\x98\x8c\x0a\x36\x36\xec\xb1\xb8\xae\x41\x2b\xed\x57\x36\x9c\xc4\xbc\xb4\xbb\xde\x6c\xf4\x52\x3b\x4f\x00\x41\x95\x72\x09\xff\xaf\x28\x59\xd5\x23\x88\x84\x97\xea\x03\xb9\xd6\x56\x74\xa1\x00\x1e\x46\x8d\x59\xaf\x51\x17\xfb\xc0\xf2\xf0\xdc\x25\x0c\x65\xa3\xb7\xda\x4d\x56\xb7\xa7\xe3\x92\x76\x09\xe9\xd1\x79\x9a\xa0\x3b\x71\xa0\x7b\x55\xa9\xd6\x35\xfb\x50\xdf\x4e\x6a\x27\xfe\x24\xb6\xba\x1d\x9c\x97\xe5\x37\xaa\x15\xae\xdf\x0b\xb9\x96\xbe\xda\x8d\xb4\xe5\xd0\xd2\x8c\xa9\x9a\xd7\xfb\x1b\x0d\xac\x84\xaf\x97\x77\x65\x02\x95\xcb\xb7\xe2\xfb\x30\x99\x3f\x2c\x48\xf3\x0d\xa5\xfc\xf1\xee\xdb\xa3\xbd\x30\x26\xe7\x96\x85\xe9\x03\x13\x4a\x80\x42\xc2\x12\x32\xad\x8a\x0b\xa3\xd1\xd5\x1d\x8c\xd7\x72\x70\xce\x78\x41\xbb\xf1\x8b\x11\x46\x2c\xb4\xf8\x02\xa0\x40\x0d\x02\xd8\x7c\x1e\xae\xa6\xf1\x18\x15\x50\xcc\x43\xb8\xf9\xc2\xdf\xf7\xea\x87\x58\x3c\xec\x1d\x28\x41\x28\xb0\x74\xb2\xad\xae\x21\x13\x2f\x4b\x78\xf3\xf1\xa9\x5a\x91\x9a\x39\xcc\x65\x9f\x8f\x05\xe4\xfb\x1d\xa2\xbe\x74\xba\xf7\x22\x57\x0f\x2c\x18\x94\x5e\x8c\xea\x8a\x3a\x89\x69\x8f\x5d\xde\xe2\x78\xf0\x3a\x63\x4a\xbb\x41\xe6\x89\x9b\x27\x1a\xd5\xae\xdd\x06\xb5\x8e\x9e\x71\x77\xc2\x8f\xb7\x13\xff\x13\xd4\xe5\xb2\x72\xaa\xb7\x8b\xa2\x35\x6d\x09\xe4\x28\xd9\x44\xef\x4d\xfb\x04\x49\x14\x4b\x62\xac\xf7\xa5\x4b\x08\xae\xd8\xaf\xb7\xde\x0c\xeb\x0d\xa9\x2a\x0b\xdc\x3d\x6e\x67\xca\x95\xac\x1c\xdc\xcd\xdc\xee\xcc\x13\xfa\xc8\x89\xe1\x04\x18\xc6\x80\x06\x73\x44\x37\xaf\x28\x67\x5a\x46\xb5\x9e\x8c\xf7\xaa\x32\xf7\xaa\xdf\xf3\x5c\xbc\xf4\xa9\x42\x0a\x17\x2b\x67\x10\x31\x8f\x27\x64\x67\x2d\xbe\xa6\xd4\xc3\xf0\x5c\x23\x43\x8a\x8b\x23\xcd\x4c\x3a\x38\xd3\xc2\xee\x60\x27\x23\x83\x7e\xa0\x52\xf8\x66\x0a\x32\x58\x5c\x63\x54\x6a\x51\x14\x9f\xfc\xa2\xfe\x5c\xd0\x4e\x51\xc9\x54\x13\x15\xe1\x1c\xde\x51\x48\x36\x03\x3c\x4b\x54\x7f\x51\xbd\x5e\xed\x11\x28\xa3\x11\x87\x36\x4c\xbe\x5e\xc3\xa9\x1b\x59\xdb\xeb\x94\xb6\x53\xf2\x6a\x68\x4e\xc5\x0e\x79\xde\x58\x26\x28\xb2\x88\x1b\x16\x9e\x52\xc0\xf5\x7b\xf1\x69\x6b\x6a\xd9\x7c\x2e\xf6\x70\xcd\xf8\x57\x65\x8b\x16\xae\x76\x4d\xb1\x35\x35\x16\x7a\x07\x3f\x8a\xe2\xd3\xca\xf4\xdb\xcf\x85\xe7\xa7\xde\x8f\x44\x4f\xcf\x78\x51\x5a\x22\xfc\x40\xd6\xcb\xf4\xea\x3a\xf4\xf9\x6a\x46\x4a\xbd\x56\xf1\x06\x1b\x7e\x85\xce\xdf\xdc\xbc\xb9\x65\xd5\xda\xcd\x1b\x71\xa7\x08\xf7\x1b\xe7\x3a\xfb\x11\x14\xc6\xa8\xfd\xfd\x78\x7d\x59\x5c\xc9\xbd\x17\x08\x31\x99\x3e\x20\xe3\x56\xc9\x2d\x35\xd2\xff\x44\x14\x7e\xb3\x50\xa2\xff\x69\xfa\xf4\xaa\xa4\x00\xa1\xe3\x65\x26\x13\x23\x91\x2b\xde\xab\xdd\x2f\xbd\x6c\x2b\x2e\xec\xb9\xc1\x25\x24\x60\xc9\x0b\xb3\xdd\x6a\x77\x33\x6c\xb7\x12\x36\x06\x7e\x0b\x8b\x09\x94\xfd\x4e\x59\x8b\xf6\x05\x94\xbd\xc5\x04\xca\xbe\xd8\x18\x5d\x25\xb9\x15\x7c\x17\xb7\xbd\x52\x54\xeb\x2b\xbe\x75\x2b\x40\x02\x40\xf6\x14\x7f\x15\x41\xb1\xc2\x37\xbd\xbf\x4d\x6e\xa0\x7e\x2b\x64\xd3\x6d\x24\xc8\x18\x09\x58\x20\x7b\x3e\xb3\x1d\xb6\xaa\xd7\x15\x28\xe7\xa4\xdd\x7c\xff\xa4\xfc\x21\x25\x82\x19\x8a\xda\xb8\x6f\x41\xe3\x7f\x23\x61\x3c\x88\xcd\x36\x0f\x37\xed\x14\x30\x0a\x8f\xf2\x14\x10\x9a\x5e\x40\xb9\x1c\xb3\xd5\xbf\xf3\x58\x00\x2a\xff\x1d\xf0\x9d\x78\x08\x10\x38\x23\x54\xa8\x0f\xf8\x12\x2f\x7c\xf2\x31\x70\x62\x73\xd4\x5b\xf9\xe5\xa1\x82\x5b\x33\x53\x0e\x35\xf3\xb1\x10\xe9\x17\x24\x1e\x6f\x39\x99\x58\xfc\x56\x0c\xfd\x11\xe0\x8f\xd7\x97\x8b\xdf\x0a\xdd\x56\xcd\x50\x1f\x6c\x88\x1d\x96\xd6\xf5\x9e\xed\x7a\x7c\x62\x1f\x7b\x94\xed\x5d\x6b\x76\x6d\x80\xff\x88\xdf\x02\xbe\x7f\x66\x1b\x92\x52\xb7\xa4\xf3\x88\xd6\x24\xa2\xd6\xb5\xe7\x62\x40\x77\xb1\x88\xe7\x69\xaa\xcf\x08\xbb\x1c\xf4\xc1\xa4\x71\x0a\x84\xce\x8b\x08\xa0\xda\x91\x5b\xb5\x88\x76\x2f\xa5\x67\x86\x4b\x2f\x81\xb7\xa9\xc8\xec\x99\x00\xa6\xd2\xc0\x2e\x03\xc4\x02\x2f\x26\xa7\xe5\x46\x64\xe8\x60\x71\xd3\xaf\x67\x4a\x7f\x98\x5e\x9a\x1e\x28\xef\x94\xdc\xce\x20\x08\x04\xe6\x60\x41\x9c\x7b\x28\x04\x87\xce\x88\x42\x4e\xcb\x79\xa8\x45\x1c\xa5\x30\xe0\xe9\xdc\xa4\x0a\x86\x30\xce\xb9\xd6\x2a\x93\xb2\xca\xad\xb6\x3c\x59\xb7\x1b\xd0\x50\xa6\xac\x43\x50\x7a\x37\xaa\xf2\x5c\x35\x2f\x39\x0b\x32\xab\x4f\x01\x93\x02\xd6\x77\x2e\x0a\x38\xaa\x7b\x30\x6d\x4a\xd4\x62\xa4\xa8\xa4\xf3\x72\x2b\xef\x94\xb0\x83\x67\xcd\x36\xd2\x91\x94\x92\x4f\x96\xe7\x92\x01\x15\xd6\x19\x5a\x3e\x41\x6f\x76\xad\x3f\xde\x1e\xc2\x0f\x60\xdf\x88\x3a\xd5\xa3\x4e\x11\x13\xf2\x00\x74\x08\x6d\x50\xf1\xa9\x2f\x1a\xee\xd6\x5e\xeb\x7b\x45\x4a\xbe\xa0\xdb\x84\xbc\x45\xd1\x48\xeb\x4a\xbf\x1e\xb1\xb9\x20\xce\x9a\x7b\xbf\x59\x7d\x7d\x3e\x57\xf4\x7e\xd5\x80\xcd\x0c\x60\x40\xad\x5e\x4b\xfd\xf3\x4b\x31\x4c\x51\xd3\x98\x9d\xaa\x4f\x85\x5f\x45\x6d\x6e\x04\x00\x14\x41\x36\x3b\xb9\xb7\x24\xc1\x30\x5d\x33\x2d\x8d\xd5\xa2\x88\x3a\x42\xbb\x29\xfd\x81\x1b\x98\xf4\x7b\xcf\xc8\xf0\x0a\x31\xab\x78\xdd\xed\xa1\x50\xd7\xf7\xb3\x38\xb1\xc5\x80\xf7\x0b\x00\xbe\x4f\xd0\x80\x71\x0d\x9d\x44\xf7\x09\x53\x44\x28\x4e\xbd\x28\x23\xb4\x7b\x6c\xfd\x3a\x1b\xb6\x28\x02\x2d\xe9\x42\x22\xc8\x6e\xb5\x19\x96\x8d\x7a\x82\x92\xb1\xe6\x55\x1d\x54\x8d\x23\x1e\x38\x34\xeb\xbe\x28\xac\xd3\x4d\xe3\xc7\x98\xcd\xd8\x32\x49\x15\x72\x61\xf3\xc1\x40\xd8\x8d\xee\x84\x81\xcb\xbc\x74\x90\xe2\x82\x4d\x04\x41\x67\x44\xad\x40\xf2\x36\xbd\x70\xbd\x6c\xed\x4a\xc1\xed\xe6\x16\xef\x07\x16\x54\xb5\x97\x2b\xd1\x6c\xed\x40\xcd\xa8\xc4\x80\xaa\xd3\x53\x07\x66\x27\x99\xc8\xbc\x6a\xb4\x2d\x80\x2b\x34\x68\x03\x8c\x69\xc4\x64\xb9\x0d\x7e\x81\x4d\x86\x00\x6e\xd3\xb3\x45\x32\x3b\x0e\xab\x4c\x03\x87\xf5\xc3\x6a\x7a\xa0\xdf\x05\x9a\x6f\x95\xc8\x20\x65\xfb\xe1\x16\x72\x98\x75\x1a\x6f\x89\xe2\x93\x5f\xe7\x9f\x0b\x94\x9d\xca\x70\x45\x79\x81\xb2\x14\x72\xdc\x90\x58\xfc\xcd\xe8\xb6\x84\xfb\xb6\xff\x30\xba\x85\xcb\xb9\x22\x33\x49\x19\xa9\x07\xc9\x20\x6f\x0f\xb6\x32\xcb\x46\x57\x6c\x95\xb7\x2f\x56\x06\x76\x0f\x68\x0f\x5f\xf1\xef\xc2\x3a\xe9\x09\x04\x19\x54\xf8\x5f\x99\x3a\x12\x0b\xa1\xae\xfa\x15\xff\xa6\xd4\x90\x54\x0c\x6d\x48\xf9\x48\x3f\x8b\xc2\xf3\xd5\x0b\x20\xea\x5e\x14\x80\xfb\xd9\x84\x94\xfb\x93\xda\x6f\x6b\xce\x5b\x24\xf0\x9d\x74\x4e\xf5\x2d\xde\xa5\xe0\x96\x4f\x8b\x52\x76\x40\x91\x50\x06\x3f\xb6\x6c\xad\xf8\xb9\x88\x36\x8d\x6c\xce\x38\x77\x8d\x14\x86\x1f\x6f\x5c\x0b\xda\xd3\x96\xd8\xf2\xff\x54\x7b\x5b\x58\x55\x0d\x3d\x0e\xeb\x0d\xfd\x9c\x57\xcf\x92\xbe\x78\x64\xb2\x19\x2f\x03\x6c\x6e\x05\x62\x0b\x5a\x63\x67\xe2\x05\xfe\x60\x05\x55\xd1\xc1\xf4\x25\x76\x99\x34\x9f\xa1\x2b\x64\x96\x9b\x2a\xa6\x72\x2d\x8d\xb6\x02\x91\x00\xa3\xc2\xd7\x75\x70\x2c\xaf\x4c\x2f\x64\xbb\x8f\x17\x7f\xaa\x81\x83\xaf\x4d\xcc\x00\xec\x29\x94\xf3\x60\x3b\xb5\xe4\xbb\xe1\x68\x54\xb3\x95\xb5\x12\xf7\x5a\x06\xc5\x56\xc2\x2e\x85\xf3\x9c\x95\xa5\x99\x0e\x01\xc4\x20\x54\x64\x33\xb7\xc4\xd3\xec\x0c\x6b\x14\xdc\x46\x69\xbc\x9a\x6d\x81\x93\x5a\x0d\x4d\xc3\x67\xe2\xab\xa1\x69\xd0\x44\x6c\x6a\xfe\xec\xab\xa0\x2b\xea\x4b\xfa\x59\x0c\x5d\xed\x85\xd6\x38\x96\x1f\x21\x21\x8c\x65\x9e\x9f\x08\xa3\x30\xaa\x5c\x2c\xa8\x34\x11\xbc\x4e\xa4\xd3\x66\xbf\xe0\xdd\x3c\x63\xe8\x4c\x1b\xbb\x1e\x83\x44\xad\x1f\x50\x2a\xea\x38\x4c\x14\xda\x00\xc1\xd0\xee\xe4\x5e\x6c\xcc\x4e\x34\xba\xbd\xb3\x34\x53\x7e\x9c\x52\xc1\x1c\x14\xb5\x4e\xb7\x83\x22\x51\xc9\xff\x9c\x9a\xd5\x92\xcd\x00\x59\x10\x2c\xf7\xac\x0d\x43\x1b\x03\xda\x00\x62\xb9\x17\x20\x0d\x1e\x36\x56\x18\x5b\x29\xb0\x91\x02\x5f\xbe\x83\x8d\x44\xa4\x6b\x1f\xad\x12\x17\x68\x37\x41\x7b\xac\xda\x18\x63\xe9\x06\x22\x52\x3f\x9f\x06\xca\x40\x22\x7e\x34\x2d\x11\x0f\xce\xda\x39\xdb\x6f\xc0\x3e\xa7\x1d\x54\xd2\x95\x62\x84\xa6\x0d\x75\x41\x57\x8d\xe7\x8c\x13\xed\x33\xb8\x4f\x40\x63\x4a\xbd\x45\x81\xf5\x23\x5b\x6f\xc0\x84\x07\x59\x04\xb2\x17\x79\x7b\xc6\xab\x84\xea\xe5\x2b\xbc\x07\x16\x0b\x2f\x85\xf4\xee\x1a\xa7\x3f\xd0\x25\xd3\x64\xec\x1a\xf7\x23\xe4\xfb\xc1\x4b\xf2\xdf\x83\xe9\x41\xd0\xab\xf8\x3d\x56\x8e\x40\x48\x15\x91\x41\xce\x32\xdc\x5c\xd7\x41\x66\x7b\xd4\xfa\xc9\x8e\xe1\x72\x3b\x69\xb3\x8e\xd3\x1a\x27\xd1\x49\xc2\x5d\x51\x46\x94\x12\xfd\x79\x6c\x1a\xd5\xf6\xaf\xd2\x12\xc6\xb7\x28\x50\x4c\xb1\x41\x3a\x39\x47\x8a\xa9\x2c\xdb\xdf\x87\x7c\x32\xc1\xcf\x08\xab\x62\xe3\xb3\x94\xf4\x76\xbd\x06\x9d\x48\x4e\x82\x27\x44\x37\x23\xb0\x30\x0a\x06\x4c\xa9\x22\x5d\x5d\x14\x8c\xca\x1f\x5b\xf0\x8b\x53\x82\xd6\xed\x46\x81\x3d\x31\x25\xf3\x0e\xe0\x5c\x5c\xf8\xa1\x8d\x8d\x22\x72\x88\x7d\x7d\x41\x09\xa3\x7c\xee\x0c\x66\x03\x77\xae\xed\x5c\x6f\x7a\xcf\xbe\xab\x70\x62\xe8\x16\x2d\xd9\x82\x41\x42\x46\x96\xc4\x0b\xa0\x53\x62\x27\xf1\x12\x88\xa9\xd4\x9f\xc7\xb5\xc7\x05\xf4\x32\xbf\x3e\xc2\xbe\xe5\xdb\xe7\xbb\x42\xd6\x35\x2c\xee\x68\xd8\x51\x03\xe1\xc8\x55\x90\x1e\x2a\x85\x40\xc3\x8f\x90\x5a\x66\x97\x5b\x16\xf5\x4c\x5f\x7f\xa1\xe5\xd9\x8f\xff\x86\xbb\xac\xac\xaa\x78\x97\x15\x1a\x39\xda\x5a\x93\x5e\x4e\xf7\x98\xac\x6b\xe0\x84\x68\x2d\x27\xfc\x0c\xad\xe6\xc0\xd6\xf8\x5a\x50\x7c\xf1\xc3\xf3\x9f\x6a\x0f\xcc\x0f\xad\x04\x38\x93\xb4\x15\x12\x6c\x59\xc1\x00\x1e\x65\x19\x3b\x11\x95\xf3\x39\x3f\x87\x4b\x27\xab\x08\x16\x18\x43\xd9\xee\x3d\xa3\x0f\x16\xc3\xc8\x44\x3b\x23\xd6\x32\x98\x08\x85\x03\x2d\x67\xc5\x35\x5c\xb2\x6d\xf4\x7a\xd3\xec\x85\xde\x76\xa6\x77\xb0\x92\xd8\xd4\x21\x0a\xaf\xfe\xab\x57\x95\x59\xb7\xfa\x77\x18\xd8\x2d\x9a\x3a\x87\xcb\x93\x67\xd6\xf5\xa6\x5d\x3f\x7f\x01\x96\x50\x77\x9e\xf0\x6c\xcc\xee\xcf\xcf\x9e\x52\xba\xb8\x80\x29\x34\x83\x13\xaf\xb5\x7b\x33\x2c\x1f\x5b\xb1\x1e\x74\x0d\x67\xed\x33\x99\xf8\x66\x90\xf5\x14\xda\xa1\xef\xda\x30\x2c\xe0\xa9\x61\x7a\x61\x4d\x73\xaf\x46\x45\xcc\x76\x8b\xd3\xbb\x6c\xd4\x16\x21\xa1\xfd\x60\x70\xa5\x5a\x18\x39\xd5\xd3\xf8\xdc\xdc\xbc\x59\x84\x25\x1e\xe7\x87\xa6\x8d\x19\xd4\x4c\xcb\x42\xcc\xa1\x07\xae\x48\x67\x1a\x4f\x20\x50\xb1\x70\x29\x60\x3c\xa6\xa5\x60\x1e\xad\x67\x56\x26\xfa\x1d\x90\x5a\x3c\x0a\x2e\x2e\xce\x7c\x3b\x90\x01\xf3\x69\xd5\x44\x4b\x4b\x0b\x2b\x59\xbc\xfe\xd0\x61\x71\x1a\x18\xf7\xd0\x3c\x58\xae\xa3\xfd\x4d\x14\x0d\xfb\x4e\xf4\x8c\x3b\x90\x50\x34\x1a\x91\x48\xd3\xc6\x30\x19\x55\x53\x48\xd3\xb8\x15\x29\x35\x43\xd3\x52\xa4\x68\xb8\x20\x95\x05\x7a\xfd\x95\xd4\x6c\x52\x6f\xec\x38\x57\xf7\x15\x14\x0d\xfa\x74\x0e\xc3\x61\x5a\x54\x9c\xd0\x44\x5d\x4a\x34\xc4\x83\x8c\xd6\x94\x89\x98\xf7\xde\xd0\x15\xb0\xe0\x44\x98\x13\xeb\x3c\xab\x92\x6e\x65\xdf\x08\x30\xda\x47\xa3\x43\xd0\xbc\xfc\x6f\xa2\x96\x7b\x5b\x38\x73\xa7\xda\x99\x22\x90\x7e\xa8\x50\xf1\x95\x97\x7a\xc9\xad\x15\x7a\x75\xa1\xac\xe9\x06\xfb\x73\x9a\x87\x3e\x7a\x19\xb8\x59\xad\x7c\xda\x6a\x55\x64\xf7\x66\x64\x59\x87\x66\x98\x69\x16\xbb\x1d\x04\x2b\xd3\x34\x13\x2c\x73\xb2\xeb\x32\xcb\x36\x3a\x60\x53\x2f\xf3\x3d\xeb\x77\x2d\x11\xa4\xe4\x46\x0d\x77\xae\xa7\x5a\xc2\xca\x95\x12\x5d\x23\x2b\xb5\x60\x87\x1b\xb0\xb0\x05\xe2\xe6\x0f\x67\xbe\xd9\xd3\x78\x3f\xde\x18\xab\xc6\xc4\x6e\xa4\x98\x4c\xe4\xc4\x45\xda\xf4\x8d\x73\x1d\x1a\x72\xa4\x3e\x01\x91\x65\x20\x73\x01\x60\x7f\x44\x63\xda\xb5\xea\x83\x9d\xa8\x6f\x52\xd7\x48\xb2\x32\x85\xdd\xeb\xbb\x1b\x78\xa1\x60\xa5\xc0\x26\xa1\x35\x14\x89\x23\xf1\xe9\xc7\xcf\xf6\xe4\xd3\x4f\x9f\xed\xa3\xe7\x57\xaa\xb7\x60\x84\x7f\x8e\xdd\xb8\xf5\xcb\x03\x46\x44\x5a\xba\xe5\xee\x55\xed\x3b\x24\x9b\x53\xa1\x16\xeb\x85\x78\xe6\x87\xe0\xf9\xc9\xa7\x3f\x7d\xb6\xcf\x9e\xc2\xef\xc5\x74\x32\xa3\x15\x3f\xce\xed\xd7\xad\xa5\x4a\xb6\xe5\xdf\x47\x9e\x61\x0f\x8c\x2a\xd8\xf4\xf9\x89\xf2\x07\x2f\x30\xf5\xf9\x12\xe4\x5b\x59\xab\xaa\x5e\x39\x90\xe3\x51\xff\x89\x32\x2e\xa4\x66\x25\x7c\x45\xd3\x9b\xdc\xdb\x8d\x6a\xa9\x1c\xa7\x66\xa5\x48\x3f\xc8\xb7\xa7\xc5\xcc\xbd\x6e\x8e\x2d\x2e\xa6\x91\x46\x36\x18\x0d\x04\x46\x24\x58\x7a\x7c\x57\x64\x77\xd3\x7e\x07\x7f\x15\xd6\x59\x0d\x7d\x8e\xbe\x25\x9e\xb5\x55\xdf\xcd\x4c\x26\x5f\xba\x4c\x27\x53\x1e\x54\x5f\x4e\xb1\x44\x02\x7a\x18\x01\x58\x50\xb4\x28\x13\x8c\x89\xf5\x88\xbc\x1e\xba\xa7\xb7\x61\xed\x1d\x5c\x74\xf9\x45\xbe\x3d\x82\x8a\x48\x67\x76\x07\x4f\x5e\x01\x9e\x7e\x06\x87\x40\xa7\x3c\x27\x23\x7b\xdd\xec\xbf\x95\x2c\x88\x97\xb2\xda\xe4\x34\x09\x28\x0f\x9b\x87\xd3\x19\x51\xa9\x53\xf1\x6c\xf9\x9c\x26\xed\x4e\xa9\x8e\x58\x32\x6c\xd2\x88\x80\x3d\x7b\xba\xcc\xb7\x65\xaf\xd0\x87\xcf\xa9\x29\xc5\xbc\x0e\x79\x47\x07\xe6\x00\x82\xb0\x3a\x12\x34\x39\x85\x3d\xb0\x2c\x0e\x63\xcc\x79\x8c\x11\xb2\x70\xea\x72\xe9\xf1\xb9\x3b\x3d\x3e\xa2\xaf\x2b\x1d\x27\x5f\x45\x8e\xb8\xf0\x9c\x9d\x58\xd0\x1e\x36\xea\x5e\x35\xc8\x78\xd4\x9e\x98\x80\xa1\xc5\xca\xd3\x89\x20\xdb\xba\x43\xab\xfd\x08\xf7\x31\xd3\x8c\xaf\xdd\x3e\xa1\xde\x7c\x54\x58\x76\xc0\x85\x59\x22\x1f\x10\xe4\x87\xd9\x73\xc0\x16\x61\x82\x3c\xdb\xca\x45\x5e\xf3\x2c\xfb\xc9\x01\x40\xe4\x36\xc2\x6e\xc1\xc2\x51\xe9\x1f\x27\x0a\xb8\x7c\xf2\xb3\x82\x75\xed\x4c\xd8\x29\x1b\x34\x70\x16\xe7\x57\x6f\xed\xa2\x08\x15\x32\x52\xd8\x25\xd8\x84\x1d\x6a\xfc\xc1\x0c\xba\x69\x26\x5b\x8d\xf5\x67\x58\x9c\xb8\x5b\x68\x13\xf2\xb7\xa1\x53\x93\x0e\x61\x67\xf2\x7c\x1c\x77\x65\x93\x15\x80\xb5\x41\x4b\xc6\x82\x5a\xe8\xea\x77\xe2\x5d\xbc\x85\xf3\x33\xdb\xed\xbd\xe8\x13\xdc\x31\x4e\xe9\x80\x15\x3b\x10\x5e\x46\x6e\x20\xda\x21\xc5\x17\x9e\x7f\xed\x03\xf3\xcc\x0d\x26\xf6\x39\x9d\xca\x94\x87\x9e\x9d\xcc\xc8\x51\xcf\x16\x9b\x63\xab\x3b\xc6\x93\xf7\xf9\x21\x26\xdb\xac\x72\xfa\x76\x70\x91\xa7\xbd\x4a\x96\xf7\xd5\x6c\xb5\x61\xdb\x63\xd5\xa3\xe5\x2d\x50\x06\x44\x53\x59\x60\x92\x50\xb1\x88\x2b\x22\x61\x17\xa4\x15\x3b\xd5\x34\xe9\xea\xc0\x2b\x1e\x1b\x16\xc9\x48\x6e\xca\x64\x26\xbb\x28\xe0\x42\x60\xd1\x7a\xd9\x17\x1d\x71\x82\x92\x8a\x6e\xb1\x60\x00\xda\x7d\x76\x4d\x65\x17\x58\x0c\x2e\xbf\x02\x39\xba\xa4\xab\xb0\x24\x5a\x44\x02\x95\xf8\xfa\xa0\xff\x69\x7e\xae\xe0\xd8\x27\xf7\x46\xe0\x0f\xa0\xe4\xd6\x12\x01\x02\x16\x55\xad\xe8\x66\x39\xa9\xe4\xc8\x94\xe0\x15\x08\x36\x80\x1b\x98\xa6\x8d\x9a\x1e\xaf\x17\x33\xa0\x07\x5a\x3e\xba\x49\xcf\x5b\x7b\xa4\x71\x69\x15\x99\x0e\x05\x89\x01\xf4\x35\xc1\x0b\x32\xe9\x88\x08\xd2\x92\x8b\xb6\x71\xb4\xde\x33\x4b\x62\x02\x4a\x54\xf9\x2a\xb2\xe6\x4c\xeb\xe3\xdd\x25\x23\xeb\x54\xbf\x95\x2d\x58\xee\xe2\x3d\x0b\xeb\x27\x2e\xce\xdf\xbf\xff\x70\x1b\xd5\x12\x9e\xf8\xb5\x35\xf0\x5a\xec\xf0\x34\x69\x17\xbb\x3d\x85\x5d\x9b\x43\x44\xc7\x2b\x2a\x71\x08\x2e\x95\xfd\x12\x23\xe7\xb5\x01\xad\x0d\xdc\x57\xb3\xf4\x9a\xb5\xbf\x3e\xb8\x42\x3e\xf9\x21\xfe\x5c\xf0\xdd\xff\x07\xff\xbf\x48\xcd\x27\x12\x8b\x16\xa0\xb7\xd1\xf0\x25\x7a\xe4\x8b\xb5\x31\xf5\xc4\x9c\x02\xc4\xd2\x01\x9c\xce\x2a\xb3\xed\x0c\x70\x3e\x2b\x01\x56\xaf\xa7\x7e\x77\x99\x1e\xa8\x24\x88\x34\xad\xfe\xfb\x00\x0a\x29\x30\x52\x5d\x14\xf7\xda\xea\xa5\x6e\x50\x84\xfe\x4b\xf8\xc0\x74\xff\x6b\xe4\x93\x9d\x54\xae\xad\x78\x66\x3b\xd9\x8a\xaa\x91\xd6\x9e\x3d\x1a\xb4\xf0\x7c\xb3\x53\x5f\xdc\xa3\xe7\x57\x3d\xd8\x47\x3e\x7b\xea\x21\x9e\x4f\xd0\x95\x2b\xd3\x57\x78\xdb\x1a\x2c\xc1\x81\x58\x51\xba\xdf\xa6\x2d\x70\x31\xc9\x56\xc5\x81\xff\x03\x75\xae\x4c\x7f\x17\xfb\xf1\x3d\x5d\x30\x98\x15\x12\xec\x7b\xd9\x0c\xf9\x6d\x93\xaf\xdd\x97\xb1\x3f\x14\xe0\x70\x1e\xcb\x82\x93\x00\x84\x30\xf2\x19\xba\x5d\xff\x19\x06\xcd\x1d\x0f\x62\xf2\x46\x35\x9d\x17\x0f\xbf\x2b\xa0\x25\x74\x2b\x3f\x8e\x86\x03\x79\xec\x8d\xed\xf3\xc0\x25\x1b\x52\x67\x66\x23\x89\x6d\x21\x1b\x96\xcc\x92\xd9\xf4\xe4\x14\x3a\x91\xde\x64\xef\xc9\xa0\x2a\x1c\x5b\xb6\xea\x35\x78\x94\x63\x7a\x23\xe1\x82\x3b\x84\x43\x82\xc4\xb5\x76\x7a\xdd\x9a\x3e\x19\x86\x1b\x30\x19\x12\x8b\x90\x25\x38\xc0\x92\x2d\x1a\x5d\xa9\xd6\x02\xb5\xc3\x5f\x9c\x32\x29\x2e\x05\xc3\xc2\xe5\xa3\x3f\x30\x68\x2b\xf8\x1f\xf4\x3d\x53\x8a\x00\xb9\xca\x42\x0e\xce\x94\xba\xd5\x0e\x7c\x89\x82\xeb\x99\x1b\xad\x57\x3c\xa1\xd8\xd8\x09\xfd\xa6\x91\xfa\x13\x1e\x72\x07\xa2\xe9\x21\x3f\xa0\x64\x82\xc8\x7b\x99\xec\x1c\x60\xfc\x20\x41\xa0\xa9\x28\xc5\x52\x2a\xbb\x7e\x68\xf1\xae\x7d\x68\x55\x96\x18\x05\x23\xe4\x03\xda\x3d\x45\xd7\x78\xe2\x7a\x59\xdd\x79\xe2\xd2\xab\x95\xea\x55\x5b\x81\xc3\x82\x74\x89\x22\x03\x4d\x2a\x4c\x4b\x07\x81\x2f\xc6\xc8\x21\xf8\xcf\x3d\xf8\xcd\xa0\xff\x15\x86\xfd\xf1\x29\xdf\x6f\xcc\xd0\xff\xc0\x80\xac\x2a\x0f\x70\x74\xe1\x33\xca\xe7\x76\x92\x42\x81\xac\x0e\x45\xab\xfc\xa1\x20\x7b\x74\xe8\x4e\x74\x1c\x96\xdd\x62\x83\x0b\x22\xe1\x03\xd5\x9d\xdd\xb7\x55\x54\xde\xdd\xc0\x57\xb1\x93\xae\xda\xa0\x0d\xc6\xaf\xf4\x13\x4c\x30\xd6\xf2\x77\x4c\xbd\x09\x1f\xb0\x05\x2c\x6d\x0a\x1b\x17\x30\xad\xdc\x24\x94\x43\x4c\xcc\x8c\x59\xf6\x0b\xf1\x4e\x7e\xd1\xdb\x61\x2b\xfe\xfd\xc7\x9f\x12\x1b\x4d\x72\x04\x58\x4c\x71\x92\x87\x00\xd8\x42\x90\x0b\x6b\x2c\x46\x26\x1d\xbd\x92\xd5\x86\xdc\x56\xcc\xaa\xc4\x20\x32\xc0\x4a\xde\x06\xa3\x34\x4f\xd2\x00\x4e\xd5\x62\x4b\x6d\x08\x80\x50\xd4\xb7\xf4\x24\x37\x36\x59\xcc\x9b\x8c\x8c\x6d\x1e\xbf\xdd\x72\x64\x8c\xe1\xb8\x01\x49\xab\x54\x5d\x7a\x51\x89\xe9\x5e\x66\x41\x5d\x50\x2c\x30\x0e\x7a\x14\x82\x81\x61\xd4\xa3\x34\xf7\xf0\x11\x12\x5c\xa7\x73\xaa\x0e\x7e\x90\xcb\x66\x50\x8f\x9e\xe3\x42\x62\x92\xce\x58\x69\x8b\xbe\xa3\x70\x64\xc9\x1e\x25\x88\x05\xd2\xed\xb8\xde\x2f\x20\x70\x48\x5c\xee\x33\x50\xd9\xa9\x4f\xe2\x96\x4c\x14\x8d\x4f\x5f\xbf\xbd\x05\x3b\xdc\x23\xc5\x4b\xbc\x9b\x29\xd9\x8d\xed\xaf\x18\x0a\x0b\x62\x7c\x24\xd7\xb1\x1c\x47\x4d\xa6\x83\xb1\xdc\x63\xdc\x06\x8e\xdf\xd2\x49\xbf\x34\xb9\x2e\xcf\x67\x68\x6b\x51\xe8\x68\x35\xcc\x67\xc6\x47\x47\xec\xd8\x06\x42\x96\x2f\x2c\xc6\x16\xdd\x5e\x2b\xd9\xb0\xcf\xeb\x5b\x4c\xa4\x82\x3e\x11\x2e\x9e\x72\xab\x2d\x76\xd1\x91\x69\xb8\x1f\x46\x1b\x0c\xf4\xe2\x6a\x48\x6d\xf3\x88\x2a\xd0\x19\x47\x01\xe3\xcc\xaa\xc0\x63\x8a\xd3\xe9\xd0\xf2\x5f\x85\x97\x00\xcb\x46\xb7\x77\xc0\xdc\x75\xfb\x98\x90\xf0\xb2\x17\xa6\xd3\xaa\xfe\x2e\xc9\x63\xe5\xca\x15\xcc\xfe\xff\xfb\x7f\xff\x3f\x4f\x2e\x7c\xbb\x2f\x5c\xdf\x3c\xb9\x60\xc9\xd2\xc3\xe3\x38\x22\x02\xf1\xe1\x3f\x8b\xa1\xdd\x91\xbd\xec\x47\xfc\x55\xf0\x37\x50\xa9\x62\x68\x2d\x99\x60\xc0\x8f\x82\xbe\x3c\xb1\x2a\x28\xd0\x9d\xa7\x52\x45\xd1\x86\x43\xf6\xbd\xc9\xce\xd9\xbf\x0f\xba\xba\x2b\xf1\x42\xed\x4c\xfc\x97\xff\x12\x10\xe4\x8c\x58\x0d\x7f\x6a\x85\x23\x08\x16\xed\xe8\x1c\x4b\xbd\x56\x81\x6e\x91\xf7\x7d\x3c\xb2\x64\xce\x3a\xed\xf9\xd0\x60\xc0\x46\xb7\xaa\xe8\x06\xbb\x41\x19\x8e\x6b\xbb\x1a\xec\x06\x42\xb8\x7c\xc1\x10\x41\x29\x06\x98\x9a\x09\x8e\xa5\xec\x55\xb9\x0d\x5e\x0e\xe3\xdd\x1d\x16\x0e\x39\xd2\xc5\x2b\xb9\xbd\x72\x8b\xa2\xc0\x23\x18\xdd\x1c\x6c\x11\x4e\x55\x3a\x4d\x5d\xaf\x00\x69\xaf\x94\x87\x74\xaa\x67\x03\x43\xd9\xd6\xa5\x93\x6b\x2c\xe9\x59\x1f\x2a\x6a\x7a\xe1\xe4\x9a\x10\x01\xe6\x5f\xe8\x67\xe1\x24\x98\xa3\xdd\xca\xf5\x34\xea\x5e\x37\x34\xcd\x34\x36\x5f\x23\x97\x0a\x92\x2f\xe1\x47\xb1\xf5\x8d\x74\xa6\x55\x78\x7a\xf2\x47\x51\x81\xf3\x86\x0d\x6e\x1c\xb6\x58\x6b\x66\x11\xf2\x36\x50\xf0\x03\xd4\x1d\xe2\x4f\x18\x82\xb2\x97\x3b\x9f\x26\x77\xf8\xb9\xd1\x96\x62\x38\xbe\xc1\x5f\x98\x8c\xf7\x36\x00\x0a\x97\x35\x01\x1e\x24\x10\xda\x23\x57\xfc\x1b\xb3\x9c\xf1\x3c\x5d\x1f\x67\x87\xcd\x79\x9c\x31\x02\x33\x90\xa9\xb6\x1b\xb3\x6b\x8b\x7b\x5d\x2b\x03\x67\x06\xc5\x63\xc0\x28\x96\xcb\xde\xec\x2c\x33\x9d\x7e\xb4\xf1\xd3\x4f\x6f\xfb\x38\xc6\x6e\x78\x73\xfb\xee\xf2\xdf\x05\xe0\xf0\xf3\xb0\x28\xc2\x4c\x2c\xcc\xbd\xea\x29\x68\xc8\x07\xfa\x19\x33\xc9\x5d\x35\x19\x32\x30\xd5\x54\x71\xe4\x02\xa8\x75\xb2\xc9\x20\x6f\x7c\xc2\x0c\x20\x46\x34\x3c\x6f\x9a\x99\x3c\x32\x44\x2a\x97\xfb\x60\x4a\x55\x0b\xb8\xde\xf1\x24\x18\xae\x78\x22\x30\x9b\xdc\x8c\x59\x3f\x92\x21\x46\x1c\x60\xa1\x6a\xbf\xf4\x17\x10\xf7\x12\x2d\xec\xde\xab\x1d\xb2\xb7\x94\x85\x76\x57\x65\xb0\xbf\x03\xff\xa5\x14\xc0\xff\xe3\xec\x97\xb5\x76\x59\x66\xd7\x2b\x58\x07\xd8\x2c\x8b\x24\x0e\x46\x16\x1b\x64\x19\x10\x45\x83\x12\x90\xb5\xa6\x2d\xfd\x91\x5a\xf2\x86\xbb\x40\xb9\xc1\x67\x8a\xd6\xb4\x4f\xe0\xbc\x85\xcc\xac\x11\x40\x8a\xd2\x96\x38\x5e\x42\x0c\xb6\x1d\xac\x2b\x97\xaa\x34\x6d\x29\xe3\xd8\xfc\x95\xed\x86\x97\xe0\x8a\x26\x79\x7f\xfa\x83\x4f\xde\xa1\xf7\x42\x6f\xbc\xa0\x2a\xb8\x1f\x1c\x42\x2e\x45\x0e\x92\x0f\x86\x79\x84\x7e\xa4\x98\x81\xd6\x8e\x19\x7c\x0a\x09\xe9\x61\xd9\xac\x3e\xc5\xc7\x8a\xb3\xa4\x57\xa9\xde\x6e\xd2\x2f\x4f\xb5\x4a\x88\x08\x46\xea\xdf\xb4\x01\x40\xd2\x30\x5c\x58\x54\xd1\x7c\x53\xef\xd0\x66\x15\x9a\x14\x8f\x32\xf0\xf8\xca\xcd\x02\xe6\xaf\xc9\x79\xa1\x79\x66\x0f\x1c\xbd\x79\xb9\x91\x17\x44\x0f\x95\x2d\x16\x8b\xb4\xbe\xa0\x4e\x00\xad\x9d\xe7\xd6\xe3\x21\x7e\x8a\x21\xbc\x80\x9b\xd3\x0e\xef\x46\xe1\xf4\x7c\xba\xf0\xb0\xac\xba\x4c\x0b\xac\x0d\xeb\xa5\x96\x6a\xad\x31\xd8\x27\x08\xd5\x8a\x82\x8c\x44\x24\x4b\x59\xdd\xd9\x4e\x42\xcc\x47\x6c\x0f\x9c\xcf\xa6\x4f\xd6\x6b\xa5\x9a\x12\x8c\xb1\xc5\x99\xc0\xcf\x90\x09\x94\x35\x59\xf4\xe4\x31\x37\x5a\xf3\xb2\xae\x4b\xb7\xed\xd8\xca\xe9\xf1\x89\x7d\xfa\x8c\xbb\xfd\xfc\x71\x02\x15\x01\x1e\xc7\x6d\x59\x63\x60\x5b\xb2\xad\x4c\xf3\xc6\xa6\xc9\x69\x1e\x35\x8d\x0e\xc1\x10\x3c\xb9\x06\x1f\x75\x8e\xde\x26\xd4\x17\xa7\xda\x5a\xd5\x22\x91\x31\x92\xb9\x21\x24\x38\xb4\xcd\xbe\x74\x06\x57\x69\xa4\x36\xd8\x5f\x06\xe0\x61\x27\x55\x19\xb3\xcd\x08\xfe\xc4\x77\xf7\x11\xb8\xa5\x07\xd5\x19\x64\xc4\xea\x22\x03\x11\x6b\x60\xd6\x81\xd5\x6f\x6d\xf0\x78\x8c\x78\x56\x10\xce\x0d\x1c\x60\xa0\x3d\x60\x2f\x80\x41\x3d\x85\x3f\x45\xd9\x43\x7f\x91\xd2\x41\xf6\x0a\x00\x2b\x68\x62\x89\x72\x6f\xca\x74\x24\x46\x96\xba\xe3\xc5\x4b\x64\x6d\xa9\x30\x28\x27\xed\x18\x10\x66\x26\xf1\x37\xa9\x2c\x33\x0d\xa8\x90\x8e\x6a\x6b\x24\xd9\xb8\xd9\x72\x6d\x75\x08\x20\x9b\xea\x4d\x78\x2d\xf0\xf2\x2f\xb5\x2d\x65\xa0\x8e\xad\x63\xd5\x29\x49\xc2\x9d\x24\xc3\x51\x8c\x1e\x23\xf1\xe4\x1d\x31\xce\xc7\x2a\x02\xfa\x00\x75\xd8\xfd\x96\x4e\xf7\x10\x89\x95\x05\x36\x29\x38\x93\xef\x88\x68\x08\xc0\xbb\x57\x73\x30\x06\xb0\x9e\x56\x4b\x41\xa8\x27\xa3\x0a\xd5\xc4\x56\xc5\x8a\x32\x39\x33\x65\x0d\xbf\xbe\x0b\x44\x8d\xcb\xd6\x94\xa8\xc8\x48\x2e\x0e\xb2\xee\xb0\xe9\x06\x93\xef\x91\xe6\x23\xe8\x18\x0e\x55\x44\x16\xb5\xe5\x6e\x93\x54\xcb\x24\x75\x62\x0b\xc6\xf6\xb7\x56\xb7\x95\x8a\xd1\x69\x55\xcd\xf5\x2f\x8e\xab\xf4\x62\x08\x02\xb0\xfb\xa0\x1b\xa8\x9d\x9f\x05\x38\x1a\xb2\x4a\x4c\x1f\xb6\x15\x92\x43\xde\x3f\x6b\xa9\xdb\xb8\xbd\x9c\x01\x5f\x24\x3c\x55\xdc\x26\x39\x41\xf2\x9e\x4e\x96\xf2\x39\x0e\x23\x28\xb8\xe2\x94\x7d\xfd\xa2\x6e\x0d\xd3\x56\x4f\x7a\x3c\x2f\x88\xb3\xe3\x25\x57\x34\xa6\x49\x4e\x32\x9f\x1d\xdb\x03\xb1\x27\x4d\x49\x16\xe1\xb4\x1d\x62\x24\x28\x4c\x7f\x4a\x46\x35\x71\xb2\xa1\xa9\xe8\x85\xea\x25\xc3\x11\x36\x3a\x16\x27\xd8\x88\x10\x3f\x84\xc6\x9f\x03\x76\x58\xd6\xba\x27\x52\x8c\x1f\x24\xac\x46\x62\x43\x2e\x6c\xd0\xfc\xc0\x94\xd9\x51\xfb\x03\x7f\x66\xd9\xd6\xf5\x40\xad\x29\x0e\xe8\x84\xee\x73\x06\x2f\x20\x28\x58\x68\x60\xc2\x1f\x39\x7e\x22\xf4\xcc\xf8\xe7\x70\xa9\x90\xc1\x39\xa3\xd0\x46\xb4\xb2\x62\xfe\x4a\x83\x64\xf8\x4a\xb7\x75\x48\x93\xa0\xc7\x09\x2e\xf1\x21\x3d\x4a\x72\xe4\xb9\x1e\x72\xe8\x6c\x7c\x01\x5a\x52\x4a\xe3\x88\x56\x1f\xfc\xff\x90\xda\xaa\x1d\x29\xca\x77\xaa\x0f\x11\x9f\x30\x9e\xbe\x27\xfb\x20\x73\x25\xc9\x8b\xb1\x9c\x95\x64\x79\x92\xe1\x13\x51\x88\x86\xfc\x34\xbb\x6a\x94\xec\xcb\x50\xfe\xc2\x7f\x8a\x66\x82\x25\x08\x6e\xa9\xdc\x36\xaa\x26\x85\x79\x6f\xe6\xc1\xb0\xba\x14\x12\x6b\xdc\xce\x01\x9b\x4e\xb5\x19\xec\x87\x4e\xb5\xa9\xd8\x98\x21\x36\x56\xd5\x23\xcc\x70\x8b\x33\x0f\x2f\x2d\x44\x4c\x84\x7b\x2c\xfa\x39\x6d\x67\x02\x84\xcd\x94\x33\xa0\xad\x49\xe1\xde\x9b\x09\x10\xed\xdb\xc0\x1e\x8c\x67\x2f\xce\x8f\xda\x4d\x26\x08\x33\x4b\xb0\xac\x09\xf1\xcf\x00\x28\x9c\xfa\x59\x35\x01\x19\x55\x96\xe1\x43\x5c\xe1\x96\x61\x11\x6e\x54\xfd\xee\x92\x9e\xcb\xac\xd5\x0a\x1c\x03\xad\x02\x9d\x6a\xbe\x10\xc6\xc5\x75\xbb\x32\x29\x8d\xf3\x72\xac\x6c\xf7\x54\x0a\xf4\x13\xc1\x98\x11\xa3\xf0\x90\x0e\xe5\x51\xe8\xe9\x23\x0e\xca\x23\x97\x06\x7d\x34\x69\xb4\xd0\x91\x13\x03\xa1\x8f\x1b\x46\x01\x7c\x0e\xb4\x6a\xe6\x82\x04\x86\xc4\x2a\x77\xa8\xc8\x60\xc9\xc1\x0a\x89\xfb\x83\xf0\x4c\x62\x53\x21\x34\x92\x3b\xa0\x55\x88\x23\xbc\x98\x11\xa8\x2d\x86\xe0\x43\xb4\xb0\xbe\x9d\x5c\x8a\x33\x71\x52\xc3\xe2\x0e\x73\xe9\x97\x6e\xcc\xc2\x95\xcc\x99\xa4\xc7\xe1\x89\xce\x66\x38\xcd\xf3\xdc\x02\xde\xd4\xe0\xba\x0c\xb7\x36\xcd\x4c\x89\xa3\x1b\x7c\x0c\x73\x10\xf3\x64\x1b\x53\xc9\x23\xbb\x2d\x42\xac\x75\xab\x0e\xa3\x3e\x50\x8e\x14\xe7\xa0\x2e\x9f\xe6\x2c\x64\xd3\x94\x41\x55\x75\xde\x34\x02\x3f\x66\x41\x2d\x3d\x39\xe2\x8c\x17\x06\x63\x53\x6b\xb2\xef\x99\x2b\x84\xab\xb5\x2e\x97\x7b\x2a\x83\xdb\x0e\x02\xf6\x1e\x28\xb2\x55\xad\x97\x5c\x3c\x3b\x87\x45\xde\x85\x84\x99\x22\x96\x42\x56\x9a\xde\xcd\xe4\x2c\x60\x3d\x3a\x3a\x2a\xec\x2c\x88\x27\x1a\x00\xf2\x01\x7e\xcc\x81\xa0\xc9\x77\x90\xde\xae\x29\x08\x18\x7b\x9b\xcd\x56\xac\xa4\x8d\x25\x2e\x15\x7a\xde\x3f\x5c\x6e\x6b\xac\xf3\xc7\x1c\x5a\xf8\xbf\x33\x10\x78\x03\x3e\x8f\xd4\x13\x0b\x60\x45\x93\x12\x7e\x27\xb1\x32\x0a\x7f\x47\x5d\x54\x62\x7c\x0c\x76\xc7\x64\x3e\x2c\x9f\x4f\x0a\x97\x2b\x79\xa7\x66\x30\xa0\x36\x8b\xa0\x41\x79\x64\x86\xa0\x35\x32\x43\x72\xae\x7c\xc1\xa9\xf8\xe2\xf2\x2d\x1e\xc2\x8e\x8f\x76\x78\x1d\xb2\xf2\x1d\xde\x0e\xdb\x92\xfa\x68\x91\x02\xf0\x57\x28\xce\x23\x50\x4a\x5f\xe5\x6f\xe1\x3b\x76\xf7\xdf\x3c\x87\x7d\x02\x3d\xfd\x8d\x8b\xb1\x77\x23\x42\x27\x81\xbe\xcf\xc9\xe9\x25\x78\xbf\xb0\xf5\x45\x9d\x28\x77\xa8\xd8\x9f\x43\x33\x4d\xe2\xac\x81\xa7\x00\xdc\x7f\xe5\x1a\xea\x8c\xa4\xc1\x07\xf7\x37\xcf\xe2\x46\x05\x10\x9a\x74\x70\xee\x4b\xc1\x7b\x05\xa3\xca\x70\xd7\xf0\x39\xca\x3c\x86\xac\xcf\x0a\xd0\xb1\x19\x97\x18\x81\x8e\x26\x8a\x86\x19\x59\x8a\x67\x52\xe8\x9a\xac\xd9\x1f\x85\xe1\x86\xaf\xe7\xb0\x58\xb2\x41\xc7\xfa\x02\x0e\xfe\xfc\x46\x2c\xc4\xe5\xf6\x6a\x15\xf0\xd0\x25\x77\x8d\xb3\x83\x5d\xc5\x70\x17\x2c\x1b\x7d\x5b\x15\x9d\xa1\xf7\xa0\xae\xe0\x47\xac\x99\x63\x9a\x02\xbf\x7b\x91\x7c\x86\x65\x9e\x59\xe4\x50\x22\x07\xab\xe6\x18\x4b\xa4\xb7\xc8\x5c\x99\x28\xca\x27\x8b\x7f\x7f\x33\x2c\x60\x55\xa6\xbd\x57\xbd\x25\xf7\x05\xc2\x48\x0a\xcc\x97\xb5\x8e\xd3\x33\xd2\x75\x70\xdd\x68\x44\x76\x23\xef\xd5\xe8\x10\x67\x96\x27\xb0\x50\x79\x7e\x65\x1a\x13\x59\x2c\xf8\x1a\x03\xa0\x95\xd4\x49\x3d\xcb\x1d\xc5\xa5\x49\x3b\x17\x22\xa3\xe7\xa7\x0e\x42\xce\x74\x06\x33\x46\x9a\xb2\x3c\x33\x44\x1c\xc3\x06\x42\xdc\x31\x36\x20\x9e\x62\x21\xcf\x75\x00\x0d\x66\x5a\xb3\x60\xf3\x1e\x9b\xc8\x63\xa4\x66\x97\x1a\x84\xe0\xe8\xa5\xa9\xdb\xcc\x12\x93\x70\x1f\x36\xa4\x9b\xaf\x3c\xea\x6e\xb1\xad\x0f\xe8\x6d\x13\x32\xd9\xc9\xde\xe9\x4a\x77\x32\x90\xca\xab\x24\x85\x21\xa5\x73\xb2\xda\xf8\x6d\x9d\x32\x5d\xbf\xa1\xfe\x81\xd4\x0e\x7e\x3d\xa2\x2d\xbb\x17\xb4\x9c\x5c\xfe\x36\x53\x3a\x84\xd2\x4e\x4b\x87\x44\x8f\xe2\xb7\x02\xef\xc2\x12\x71\x2d\xbd\x13\xa3\xcc\xca\x6c\x3b\xd9\xab\x5c\x1b\xeb\x53\x82\x3a\x76\x16\x8e\x67\x89\x81\xdd\xce\x88\x70\x91\x03\x4f\xa7\xf9\x13\x2c\xd7\x23\x82\xc2\x31\xa8\x40\x72\xb4\x10\xb9\xfb\x0c\xa2\x31\x8c\x2b\xa4\x1a\xce\x04\xfd\xa2\xfc\xec\x12\x71\x7c\x79\xc8\x3d\x37\x65\xaf\xec\xd0\xc0\x8c\x80\x47\x19\x7e\xc0\xab\x5b\x8b\x00\x04\xef\x4c\x79\x6e\x2b\xd6\x95\x1c\x22\xf8\x0a\x15\xf9\xb7\xfa\xdc\xa5\xaa\xa4\x67\xd4\xa1\xcd\xbe\xaf\x1b\x25\xeb\xa4\xf7\xbd\x82\xc7\x1e\xc6\xf8\xb7\xaa\x5f\x87\x8e\x7e\x0d\xfe\x6c\x4c\x37\x18\xb3\x1b\x3d\x6c\x9b\xbd\xa8\xf5\x0a\xa8\xae\x13\xa4\x6e\xe0\xea\x36\xd2\x96\xe9\x3b\x65\x7e\x81\x84\xda\x58\x89\x34\x9a\x98\xa5\x72\x3b\x88\x76\x05\xce\x14\xbe\x5e\x54\x95\xd9\x9f\x47\x1e\x53\x4f\xa1\x8e\xa7\x9e\x73\xa9\x89\x70\xff\x1b\x7c\x20\xf9\xa6\x99\x1b\x89\x99\x33\xab\x0e\x88\x1f\xaf\xa1\x1d\x6c\x19\x67\x04\x8c\x10\x70\x3b\x35\x6b\x3e\xf0\x18\x61\x77\xab\x9f\x82\xbb\x95\xd0\xad\x33\x33\x6e\x58\x84\x1f\x30\x11\x53\xc3\xd5\x60\xda\xbf\x86\x5e\x9c\x7c\xfa\x1f\x9f\x79\x4b\x38\xb9\x2c\xd3\xd3\x01\x2d\x56\xc3\x67\x06\x35\x56\xf8\xc4\xbc\xec\xda\x9c\x75\x8c\x94\x4f\x3c\x84\x33\xb8\x78\xa2\x0d\x17\x66\x90\x85\x7a\x3a\x93\xce\x88\x4e\xf5\x9e\x2a\xd2\x68\x06\x9b\xdd\x45\x36\x34\xc0\xed\xf7\xb1\x26\xbf\x6a\x42\xce\xed\x04\x6d\x20\x83\x04\x93\x53\x41\x44\x51\x4b\x27\xcb\x65\xcf\xe6\xf9\xd2\xc9\x60\x93\x39\x8f\x8b\x60\xeb\x21\x46\x63\x22\x5b\x2f\xb8\x0f\x4c\x88\x3b\xb7\x5d\xdb\x12\x3c\xd2\x51\x15\x7c\x4b\x6e\xe6\x8d\xae\x9c\x08\xe9\xda\x52\x38\x24\x7c\x6b\x65\x8d\x2f\xd7\x84\x17\xea\x56\xbd\xb2\x1b\x78\x57\xc2\x03\xac\xd4\x4e\x6c\x0d\x30\xb4\x81\x22\xc9\xb6\x04\x13\x44\xdc\xaf\xa9\x15\x51\xd6\x0d\x32\x29\xa2\x01\xc9\x5e\x8b\x48\x50\x81\xc5\xd6\xd7\x61\x43\x0f\x88\x39\x7c\x91\x22\x04\x25\x2e\xf7\xdb\x1e\xae\x6b\xfc\xc4\x1c\xae\x87\xad\x6c\xd1\xb8\x58\xb7\xc2\xf4\xb5\xea\x29\xe6\x2e\x38\x77\xbb\xcd\x1c\x66\xe4\x4b\x11\x29\xb1\x73\xc9\x0d\x13\xa2\xc5\xf4\xb0\x6c\x3d\x95\xe3\xcb\x5e\x0f\x80\x13\x76\x0d\xe9\x7c\xb1\x4b\xe9\x91\xdc\xc3\xa5\x59\x62\xf4\x17\xf4\xa7\xa9\xc1\x4d\xb2\x88\xc7\x64\x0e\x16\xf4\x1c\xb5\x81\x4d\x34\xb4\x44\x14\xa0\x54\x50\xb6\xff\x46\x7a\xa1\xc7\x2e\x6c\x1c\xda\x5c\xd1\xda\x3d\x1f\xfe\x94\x8c\xb6\xc8\x55\x65\x53\xf9\xfd\xbf\x9d\xd4\x3f\xd0\x63\x5c\x72\xab\xa6\x36\xab\x3e\x11\x47\x2d\xe5\x5f\xfc\x41\xa2\x2d\x84\xb9\x86\x37\x20\x4c\xcf\x23\xb4\x60\xc2\x4a\x42\x53\x62\xb0\x0a\xfc\xd9\x2f\xe9\x91\x97\xc1\x40\xf4\xb2\x56\xed\x12\x02\x44\xf7\x64\xf1\x6e\x89\x19\x1b\xee\xa4\xc6\x1d\x8a\xe1\x22\xb0\x14\x3a\x27\x40\x93\xdb\x4a\x2d\x8a\xc4\x7a\x26\x61\x2e\xa2\xb2\x26\xc9\x9e\xd1\x2c\x25\xb9\xf3\xda\xa5\x31\x40\x1d\x55\xa8\x27\x36\xab\xdb\x94\xf5\xa0\x4a\x12\xfd\xdf\x1b\x20\x25\xfe\x6b\xdc\x02\x16\x79\xc7\x98\x83\xfc\x97\x77\xa8\xb4\xc3\xd2\x9f\xe9\x18\x9d\x1a\x17\x7a\x62\x30\xe4\x0c\x7b\x92\xd0\xdd\x3c\x71\x67\x19\xfa\xd1\x19\x38\x3b\x38\xc1\x47\xd3\xff\x4f\x33\x66\x0c\xba\xd3\xdc\xd8\xe7\x17\x83\x02\x35\xbe\xf8\x9e\x2f\xa7\x7f\xc8\x3b\xa9\x30\x06\x91\xff\x9f\x66\x84\x17\x54\x08\x55\x89\xeb\x90\x30\x02\x72\x4a\x89\x6f\x65\x9c\x06\x2b\x90\xc7\xfb\xfd\x7e\xff\x64\xbb\x7d\x52\xd7\x8f\x67\x7a\x9d\x30\xd1\xa1\xdb\x23\x2b\x08\xd2\x56\x8d\xce\x91\x04\x53\x22\x93\xcc\x8f\x1d\x98\xb4\xa4\xf3\xf4\x11\x14\xb4\x4b\xe5\xc0\xef\x30\x21\x23\xb0\x93\xe2\xec\x59\x7f\x42\x9a\xae\x51\xd1\xeb\xcc\x93\x3c\x8c\x26\x91\xf6\x65\x24\xcf\x25\x59\xa3\x60\xcb\x47\x1b\x18\xac\x1a\x89\xbf\x36\xab\xd8\x98\xd1\xa0\xe0\xf3\x8b\x07\x87\x24\x91\xa3\xe2\xb0\x06\x59\x6a\x06\x70\x5e\x92\x8a\xb5\xff\x77\x4a\x53\x73\xd5\xcf\x2d\x83\x07\xe4\xa9\x62\xa7\xef\xb4\x38\x13\xbf\xea\x3b\x0d\xbf\x17\x14\x1e\x3b\x09\x87\xed\x0c\x64\x7f\x97\xe5\x73\x5f\x7d\x0e\x58\xc4\x6d\xc8\x09\x58\xe0\x8b\x82\xe8\x65\x38\x34\xb5\x68\xf4\x1d\xf2\x1b\xa6\x1a\x40\xd1\xb2\xa7\x60\x68\x7f\x83\xc8\x64\x66\xad\xc0\x0b\x3c\xc8\x30\xda\xd1\xa2\x5a\x60\x85\xb4\xc6\x21\x58\x62\x49\x8f\x52\xd3\x26\x77\xe1\x71\x29\x9f\x8e\xe0\xe9\xb3\xd5\x90\x40\x72\x0b\xa5\x93\xd4\x12\xe1\x31\xb6\x55\x8a\xf5\x3d\x3d\xbe\x85\xf9\x6c\xba\x96\x5b\xaa\xf8\x9e\xa3\xf5\x92\x17\x28\x94\x90\x4b\x33\x90\x81\x17\xa9\x46\x23\x81\xa0\x7e\xc0\x1b\x41\x54\xd3\x8d\x17\x2e\x62\x1d\x60\xe7\x4f\x15\xd0\xd5\xca\x89\x85\x9b\x74\x56\xf1\x40\xb9\x13\x8b\xe0\xb0\xd2\xe1\x45\x63\xba\x42\x21\x5d\x42\xd6\x9f\x98\x37\xee\x0f\xfa\x99\x65\x20\x74\xb0\xcd\x43\xb5\xc6\xe9\x4a\x95\x3f\x32\x1f\x95\xfa\xa2\xa1\xad\xc6\x5a\x11\xeb\xee\xc5\x60\x8e\xcf\xc0\x6c\x90\xdf\xef\xaa\x77\xf0\x68\x44\x98\xa1\xe9\x25\x3c\x2c\x24\x40\xf5\x80\x2b\x64\xc0\x61\x69\x9a\x6d\x32\x88\x1c\x25\x8d\x43\x9d\xb0\x79\xa2\x2d\x66\x9f\xac\xe6\xb4\x05\x4e\x96\x0d\x2f\x44\x26\x59\xc9\x73\x3f\xc4\x23\x25\xdf\x07\xc0\x16\xe8\x91\x45\x51\xd1\x0f\x01\xa1\xa5\x02\xad\xa4\x43\x40\xf0\xc6\x33\x3a\xf5\x1c\x02\x19\x5a\xbe\x23\x3b\x13\x1f\xf9\x77\x04\x9e\x33\xa6\x9d\x64\x96\x4b\x94\xc3\x13\xbf\x28\xf4\xdd\x8e\x12\xb1\xa7\xeb\x00\x95\x7a\x86\xd0\x24\x77\x83\xdd\xc0\x7b\xa2\x41\x03\xcc\x41\x5d\xb9\xa2\x87\xbc\x7f\x0e\x00\x46\x0e\x5e\xf1\xf3\x87\x6c\xfb\x84\xba\x42\xab\x6b\x88\x37\x01\xb7\x8b\x9e\xdd\x7d\xc4\xf9\xa0\xfd\x80\xc0\x06\xc8\x56\x9d\x66\x6c\x23\x45\x4d\x6b\xe1\x45\x49\x36\x5a\x89\xad\x18\x19\xb4\x8d\x33\x46\x16\xad\xe5\xd0\x06\x93\xdf\x68\xdd\x3a\x6d\x6f\xf2\x56\x1b\xde\x14\x81\x03\xba\x76\xe1\x2d\x36\xd3\x92\xfb\xc2\xa4\x29\xe3\x1a\x23\xb1\x7f\x91\x57\xc3\x32\x60\xc2\x06\x1f\x0d\x22\xf8\x5d\xac\xa9\xeb\x8d\x83\x3b\xb7\xd4\x46\xf8\x8a\x13\x67\x56\xcf\xb4\x40\xf0\x7d\xc2\x9c\x64\xf5\xc0\xe3\x69\xa6\xaf\x70\xb1\xc0\x8b\xbf\xb2\xaa\x74\xad\x5a\x27\x9b\x28\x8d\x42\x8c\xd1\x8d\x76\x0a\xa2\x85\x25\xf3\x87\xaf\x8a\xc4\x2d\x80\xa1\x1f\x65\x6a\x53\x0c\x81\x1f\xd9\x5e\x76\xb1\x58\x8c\x97\x79\x49\xed\xc5\x8d\x4c\x9c\xf9\x55\x48\x3b\x02\x3e\x72\xe9\xc2\xca\x05\xe5\x0b\xa6\x1e\xb0\x43\x10\x6b\x78\xd9\x66\x31\x19\xad\x91\x71\x22\x8f\x14\x4c\xda\x72\xb4\x19\x66\x8a\x04\x2e\x83\xc2\x4a\xc4\x31\x25\x4d\x60\xd7\xab\x7b\xd8\x81\x7e\xc4\x79\x5c\x67\x9a\xc1\xda\xf9\x91\x54\xc7\xef\x51\x66\x32\x96\x6e\xad\xf3\x84\x08\xed\x80\x78\x06\xbf\x0e\x67\x08\xa6\x80\x81\x5c\xa0\x9f\x38\x62\xe9\x1b\xcf\x39\xe6\x60\xf3\x4b\x73\xc9\x7a\x9c\x10\xd0\x79\x49\x5d\xc6\x68\x0e\x14\x49\xa6\x35\xed\x93\xb0\x24\x79\x26\x80\xb1\x40\x21\x3f\x47\x1a\x9e\x98\xc9\x6d\x2f\x27\x7d\x0a\xab\xb1\x8c\x0b\xd1\x53\xed\xb0\x48\x77\x1b\x03\xda\x09\x20\x82\x79\x1d\x5f\x87\x2d\xb5\x7b\x25\x5e\xd9\xf4\xe4\x56\xef\x4c\xb2\x1d\xcc\x2a\x1d\xa7\xc9\x20\xc1\x63\x6e\x9e\x95\x8c\x25\xd0\x45\x6c\xdf\x49\x1b\xde\xec\x1f\x29\x42\x36\xaa\xba\x3b\xda\xeb\xec\xa9\xb8\x3f\xda\x59\x34\xb4\x0a\xb8\xc8\xdc\x0a\x3e\x8f\x15\xc3\x31\xc0\x17\x03\x70\x7f\xe1\x3b\xd9\x14\xba\x9b\xec\xa5\xb7\xff\x42\x8b\xb8\x06\x6a\x11\x7c\x4e\x68\x2f\x97\x9e\xd0\xde\xab\x19\x0a\x90\x2e\xb1\xaf\xa5\xbc\x1b\x63\xee\xf0\x41\xc6\x25\xfc\x8c\x39\x6b\xed\x38\xd3\x1f\x14\x6f\xf2\xdc\xa5\xb4\xba\x2a\x13\xd6\xe6\x17\x9f\x30\xc3\xe0\x90\xef\x58\x02\x49\x2e\xac\x53\x50\xbb\x6f\x2b\x7a\x95\xd0\x8f\xcb\xbe\xad\xc4\x7b\xb3\x9b\xa2\xf2\x60\xba\x2d\x59\xe7\x17\x51\xfa\x9c\xf0\xfc\xe4\xc3\x3a\x41\xe4\x9d\x25\xbd\x34\x96\x2c\x45\x8a\xc8\xfc\x81\xdf\x2d\xbd\xd1\x33\x07\x71\xd2\x23\xb2\x3d\x9f\xf6\x88\xbc\x50\xfc\x89\xf8\x75\xf1\x92\xe7\xe2\x24\x8f\x8d\x67\x03\x76\x59\xdf\x7b\x89\xb5\x4e\x9b\x72\x4e\x69\x33\x8d\xf1\xcc\xea\x88\x24\x82\x10\x86\x0f\xc9\x27\xfd\xb3\x0a\x3d\x93\x5b\xd9\x94\x24\xa6\x79\x99\x9b\x9f\xaa\xf7\x49\x49\x23\x9a\xc6\xec\x4a\x0a\xf6\x9d\x56\x71\x0e\x71\x33\x39\x80\x77\xf0\xb5\x00\x84\x10\x49\x2a\x0f\x49\xd0\x61\x10\x80\xbc\x19\xea\xcb\xb4\x19\x9c\x36\x6a\x47\x06\x4a\xcf\xd5\xbf\x64\x50\xe0\xf1\x3f\x5e\x5f\x1e\x01\xe7\x66\xff\x25\x7b\xb5\x78\xe9\x87\x1e\x29\x1f\x92\xf1\x8f\xd7\x97\xd8\x7a\xb7\x51\xfb\xdc\xc4\xcc\xc9\x65\x32\x39\x28\x48\x8f\xc6\x1b\x2f\xcc\xc1\x69\x5c\xf5\x07\x46\x1c\x60\x4a\x82\x19\x0d\x7d\xa3\xd7\x1b\xb7\x53\x10\x56\xe7\x00\xae\x6c\x3e\xf2\x46\x1c\x98\x11\xba\x3a\xfe\xe6\x39\x99\x6b\x68\x98\x9c\x03\xad\x0b\x85\x29\x67\x3c\x51\x60\xa8\x28\x6e\x09\xe7\xfc\x8c\x25\x45\xff\xbb\x27\x2d\x45\x1d\x14\x65\x87\x1b\x27\x5e\x01\xcc\xb4\x3c\x0e\x8d\x75\x7b\xf4\x32\x98\x47\xf0\x5e\x6e\x21\x58\xaa\x87\xfa\xf9\x28\x8e\x05\x3f\xd3\x74\x26\xde\xe3\xaf\xe3\xe0\xd9\xd3\x4e\x7e\xde\xe3\xe7\xb1\xbe\xa6\x91\x6c\x38\x1a\x64\x6a\x05\x8a\xa2\xf6\x3f\xfc\xd9\xf9\x4f\xf1\x0f\xbf\x54\xfe\x29\xfe\xa1\xdb\x5a\x7d\xf9\x27\xdf\x9a\x85\xd7\xc8\x3d\xb9\x3b\x9d\x84\x3c\x41\xd5\xb7\x1f\x04\x28\x96\x9e\xfe\x43\xd3\x8c\x77\x4b\x2e\x35\x51\xf0\xac\x0e\x9f\x4d\xea\xf5\x72\xc0\x93\x8f\xaf\x34\x27\xd1\x81\x96\x53\xa9\x01\xef\x96\x30\x28\x06\x1c\xc8\xe0\xdb\x24\xce\xc4\x5b\x8c\x86\xc1\x77\xe3\xcc\xc9\x40\xf6\xb8\x3c\xee\x30\xba\xfa\xe0\xeb\x3a\xdc\x5b\x03\x9c\x32\x70\xf7\x11\x6e\x39\xd9\xb2\x3b\xca\x99\x12\xdc\x29\x7e\x47\xcb\xc7\x17\xf0\x25\xfe\x4f\xd3\xa6\x92\x38\xde\xf1\x80\x27\x9d\x33\xa5\xf5\x67\x07\x1b\xbc\x24\x82\x32\xdc\x9e\x65\xbe\xe8\x7e\x3b\x3b\x2b\x4c\xaf\xd7\xda\xaf\x38\x7a\x36\x26\x20\x6e\xd5\x8e\x5e\xe7\xd9\x48\x8b\x78\xc3\x5b\x23\x18\xba\x1e\xab\x91\xe1\x81\x5b\x9b\x57\x90\xeb\x48\x16\x23\xb9\x24\xf0\xc3\xf0\xe2\x41\xa2\x35\x68\xef\x55\xef\xc2\xb5\xa9\x13\xb7\x46\x5c\xab\xf5\xd0\xc8\x3e\x0d\x02\x30\x2e\x30\x5e\x90\x8c\x87\xd4\x9b\x70\xe6\xfb\x65\x21\x7a\xc2\x95\x2a\x08\x38\x1c\x00\xdd\x7e\x78\xd9\xa4\xc7\x40\xc2\xe3\x5a\x50\xcf\x64\x41\xd1\xf4\x84\x1e\x5d\xc9\x03\x20\x65\x15\x27\xa3\x41\x6d\x80\x3b\xe4\xb9\x56\x70\x98\x78\x6a\x03\xc6\x41\x9a\x69\x41\xb4\x8a\xe3\x48\x48\x74\xbf\x3c\xd2\xf4\x20\x34\xc6\x68\x1b\x05\x86\x88\x1a\x77\x84\xe2\x37\x4a\xb1\x49\x60\xb3\x9a\x47\xf0\x4f\x09\x01\xbe\x0d\x73\xe6\x49\x13\xfe\xfc\xc0\xaf\xcb\x4c\xc1\x82\x62\x24\x3e\x29\x93\x0f\x4a\x22\x17\x01\x29\xa0\x49\x1a\x3d\x77\x84\x5b\xac\xda\x24\x2f\xb6\x82\xea\x0a\x62\xc6\xd9\x99\xe6\x8d\xa6\x69\x36\xdc\x96\x5e\x25\x6b\x18\xfc\xac\x74\x5b\xeb\x7b\x5d\x0f\xb2\xa1\xb7\xb0\x0e\xe3\xfd\x29\xc7\x5b\x99\x16\x34\x22\x07\x71\x8f\x3a\x04\xb4\x0d\x42\xe5\x3e\xee\xc9\x98\x7c\x15\x9f\xb9\x9a\xed\x91\x27\xbb\xc1\x3c\x8c\x76\x12\x86\x5d\x8d\xcf\xd6\xa4\xba\x7a\x54\xc4\xc3\xfa\xc0\xe0\xdd\xbc\x4a\x7f\x9e\x70\x79\x64\xcf\xf5\xb2\xf7\x38\x81\xfd\x79\x21\x9d\x9c\x05\xe3\x09\xfd\xc0\x1e\x55\x0a\x0a\x01\xcb\x55\x4b\x27\xe3\x6d\x68\x6b\x28\x94\xd6\x52\x56\x77\xb3\x7a\xd6\x59\xfc\x33\xfb\x2b\x55\xe5\xfa\x81\x63\x61\x1c\x3c\xde\x7c\xc5\xfe\x20\x39\x99\x32\xaf\x93\x0b\x87\xeb\x94\x34\x71\x83\xa3\x27\x17\x74\x65\xfc\x76\x45\xa2\xf1\xcb\x1d\x44\xa1\x69\x73\xf4\xe8\xc0\x40\x71\x07\xb2\x87\xa7\xfe\xc8\x68\x1d\x1e\xa8\x48\x88\x1e\x8c\xaf\x76\x18\xdf\x4f\x07\x09\x5b\x12\x05\x8d\x7b\xe3\xe9\xe4\x1e\x4d\x95\xa6\xae\x67\xa7\x14\x54\xc8\xe7\x7a\xa9\xd0\x0f\xf7\x29\x71\x90\xa7\xc1\x64\x98\x1e\x16\x4c\x6c\x38\x71\x0f\x1d\x6e\x21\x9c\x74\xd8\xed\x73\x0e\xe2\xc5\xcc\x1c\xdc\x05\x79\x7e\xa1\x53\x6d\x0d\x16\xb5\x18\x71\x74\xaa\x60\x3a\xbe\x3e\x1e\xb8\x91\x3a\x24\xdf\xcd\x23\x63\xb9\xfb\x81\x67\x52\xa6\x7b\x9e\x8f\xf1\xf7\x6a\x47\xb6\xab\x51\xbe\x95\x77\xc0\x4f\x33\x35\x86\x98\x9a\x4c\x66\x67\x50\xcd\x9e\x03\xf1\x5d\xb0\xd0\x34\x2e\xd0\x1f\x6e\x5e\x1e\x99\x6f\x2e\x22\x5f\x22\x75\xd6\xe5\xc8\x3e\xf7\xbc\xae\xa1\x3f\x99\x9d\xee\xc1\x02\xa3\x80\xb7\x19\xae\x3c\xa8\xfe\x74\xbd\x8c\x2a\xe6\xc8\xfa\xd3\xeb\x09\xd3\xa7\xe6\xa8\x69\xc3\x66\xba\x34\x5b\x2c\x33\xe1\x81\x83\x0c\xd6\x63\x74\x6f\x25\x43\xbd\xf4\x92\x26\x8d\xfa\x98\x1f\x8a\xa3\x35\x7b\x24\x12\x3f\x37\x0a\xef\x6b\x0f\x8d\xdc\xc5\xec\xa8\x51\xb4\xd0\x54\x95\x11\xd5\x5f\x23\x8f\xae\x44\x13\x96\x69\xac\xe1\xe9\xcd\x18\x7e\xca\xf3\x9f\xcb\xc9\xc0\x67\x2f\x71\xe6\x11\xa8\x48\x49\x8a\xaf\x22\x00\xfb\x98\x96\x5d\x8c\x54\x4f\xe1\x3a\x97\xf4\x4f\x60\xf3\xb4\x1d\xaa\x0d\x5e\xdf\x82\x9a\x09\x62\x39\x89\xab\x0f\x37\xb7\x02\x15\xcc\xae\xd7\xeb\xb5\x3f\x53\xc5\xaf\x1b\xd5\x7a\x82\x05\x57\x40\x48\xb4\x4c\x55\x0d\xa8\x8c\x7c\x6d\xd6\xf6\x54\xec\x14\x87\xd0\x6d\x6b\x3a\x61\xd2\x47\x6c\x58\xc3\x82\x76\x90\x62\x63\x2c\xbe\xcc\x61\x3b\x55\xe9\x55\xba\x47\x76\xd4\xc4\x05\xbd\x6c\xc1\xf1\x02\x80\x2d\xa0\xcc\x9f\x67\xc0\xc3\x85\x01\x39\x0e\x85\xeb\x02\xf0\xcd\x59\x2c\xf2\x9d\x42\xc5\x08\x39\x7d\x4d\xb0\xa6\x8b\x9b\x0e\xaf\x5f\x1f\x02\x9d\x0b\x7a\xcb\xb5\x1d\xb3\x10\x80\x47\xd4\xf0\xb8\xd6\x10\x99\x9a\xed\x50\xbf\x62\x11\x4f\xda\x10\x57\x30\xb5\xf7\xab\xc9\x32\xa1\x5a\x38\xd4\xec\x53\x5b\xce\xc4\xad\xb2\x10\x10\x14\xbe\x1f\x00\xe7\x21\xb8\x51\xbe\x4f\x02\x9c\x6f\x40\x7b\x8b\xeb\x2a\x60\xf5\x6b\x42\x59\xb2\x18\xe0\x31\xb2\x53\x8d\xda\x6c\x1d\x49\xe8\x6a\x8f\x63\x37\xee\x27\xee\x0c\x34\x84\xc4\xea\xfe\x3e\xa8\x41\x2d\xc4\x5b\x27\xb6\x72\x0f\x2f\xd1\x82\xbd\xa2\x55\x95\x69\x6b\xcb\x66\x74\xda\x81\x0f\xb7\x15\x43\xc7\x3e\xf5\x93\x29\x99\xb6\xad\x57\xc9\x58\x5d\x87\x8f\x63\x80\x49\x0f\xde\xf8\x96\x3b\x69\xef\x46\x16\x2c\x5e\x3a\xfc\xc6\x5e\xc4\x30\xc5\xa1\x04\x3d\xa7\xa1\xdb\xa3\xed\x4f\xef\x87\x94\x75\x73\x20\xb6\x33\x18\xba\xf2\x9a\x7e\x4e\x81\xd0\x7c\x08\xfa\x84\xbf\xa6\x20\x1d\xbd\x4a\x1e\xde\x27\x9f\x82\x2c\x4d\xed\xc7\xf1\x17\x53\xcf\x8c\xa0\xea\x7b\x0e\x74\xd1\xc9\xde\xaa\x92\x10\x92\x92\x8b\xa2\xf7\x40\x96\xe8\xe2\x0b\xe8\xe0\x9f\x79\x0c\xd9\x60\x15\x05\x7c\x0b\x0f\x78\xe1\x13\x62\x28\x32\xcd\x3e\x1c\x36\x58\x45\xf1\xe0\x42\x99\xc5\x54\xb7\xcf\xfb\x21\x28\xf8\x01\x55\x67\x76\x70\xb3\xbd\xdc\x43\x86\x76\x56\x35\x2b\x7c\xa3\xc3\x4b\xe1\x8a\x83\x1b\xc1\x2d\x48\xbc\x55\x46\xfa\x4d\x2b\x13\xee\x80\xc0\x6b\x36\xb5\x54\xc6\x87\xf5\xb2\xc7\xc2\xc6\x6d\xc2\xd0\x47\xd4\xae\xb7\x28\x41\xc1\xfe\x01\xa5\x3e\xc6\x9c\x3a\x15\x56\x6e\xbb\x24\x3c\x04\xab\xfd\xba\x5e\x59\xf0\x49\x5b\x40\xc8\x66\x7f\x1c\x30\x08\x8a\xa0\x18\x7d\x24\x89\x1c\x1b\x05\x0f\x6d\xa1\x9e\x99\x16\x51\xa4\x5f\xd8\x0b\x10\xe3\x77\x02\x11\x7d\xd2\x00\x88\x5f\x11\x1a\xb3\x94\x04\x1e\x6f\x0c\xde\x64\x04\x3b\x21\xff\x61\x62\xcc\x9a\xf8\x60\x8b\x24\x0b\x75\x70\xfe\x2c\x64\x95\x5b\x62\x10\xee\xc7\xea\xe3\xf5\x65\x7a\x7e\x9d\x0a\xe9\xd9\x15\xd4\xdb\xd4\xca\xc1\xb3\x70\xbd\x5a\xcb\xbe\xe6\x58\x4b\x74\xa6\x6e\xa4\xc3\xb3\xb3\xf7\xc3\xc7\x2a\x17\x88\x80\x48\xb8\x30\x4c\xc6\x9d\x6e\x21\x4e\x31\x48\x5a\xa4\x24\xf5\x42\x6f\x34\xb8\xf2\xe7\xe8\xd0\xf9\xa3\x15\xcf\x69\xae\x08\xfa\xfe\xfd\x7f\xdc\x7c\x78\x7f\x2a\xbe\x3c\xd9\xed\x76\x4f\x7c\xf1\x27\x43\xdf\xa8\xd6\xf7\xa5\x3e\x15\xff\xeb\xdd\xe5\xa9\x50\xae\xfa\x61\x21\xde\x01\xcd\x4b\xce\x21\xb2\xc3\x06\x97\x0e\x30\x6a\x1e\xfa\xe3\xb1\x3e\x02\x4f\x01\x71\xfa\x9e\x3d\x95\xd9\x9d\x78\xb6\x37\xaf\xe2\x76\xcc\x98\x62\x3f\x8d\xe1\xdc\xa6\x49\x06\xc7\xdf\x84\xc1\xa2\xa7\x56\x6e\xe0\xc7\x38\x23\x9e\x38\x00\xc6\x0b\x15\xde\x60\x93\x56\xdc\xbc\x39\xff\xe9\xdf\xff\xa7\x78\xf3\xee\xfc\x42\x6c\xd4\x17\x51\xeb\xb5\xc2\xeb\x56\x26\x10\xf7\x9a\x27\xfd\x7f\x3d\xf1\xab\xe1\xc9\x8d\x5e\xb7\xd2\x0d\xbd\xe2\x05\x80\x94\x2d\xe5\xf9\x1a\x59\xdd\xcd\xbd\xe3\x39\x06\xd1\x95\x69\x69\x00\xde\x56\xa6\xcd\x7b\x8f\x20\xec\x9c\x76\x01\x6e\x69\x51\x19\xef\xd7\x4c\xe0\xdd\x36\xaa\xf5\x47\xd3\xd0\xd4\x39\x57\xb1\x54\xbc\x04\x54\xfd\xe7\x71\x61\x08\x64\x08\xcf\x7e\x9c\x89\xff\x80\x10\x56\x1b\xb6\xe6\xf2\x59\xdc\x3b\x00\x1e\x97\xf5\x9b\xa1\x4c\x04\xd5\x33\xf1\x56\xb4\x5e\x14\x62\x21\x39\xe6\x05\x41\x79\x8c\x83\x54\x96\x67\xe2\x52\x39\xb1\x0d\x2a\x4c\x58\xe3\x88\x6d\x52\x22\x37\xf5\x9d\xcf\xe6\x41\xf9\x25\x8d\x6d\xc8\x66\xb0\xd3\x01\xcc\xfd\xee\x66\xb3\xe7\x31\x12\xb7\x34\x2e\x92\x06\xb3\x9c\xc9\x8a\x91\x8c\x63\x88\x48\x08\xdb\x39\x37\x3b\x14\x5b\x72\x76\xe2\x92\x83\x83\xaf\xbf\x53\x35\xc8\xb8\xcc\x38\x76\xe3\x6c\x76\xa0\xfa\x70\x43\x80\x2e\xab\xa7\xe8\x88\x5b\x9f\x0a\x76\x62\x3d\x25\xfb\xc4\x53\x8e\x7a\x51\x9f\x8a\xa1\x8d\xbf\xd1\x81\x90\xc4\x71\xfe\x04\xfb\x68\xff\x19\xcc\x57\xeb\x53\x7c\x95\x3b\x26\x2c\xa6\x1d\xcd\xec\x53\x32\x7f\x83\x23\xa0\xc1\x64\x27\xb5\x76\xf8\xff\xbf\x37\x69\x57\xa0\x6f\x76\xdf\x56\x9b\xde\xb4\xfa\xf7\x99\xbe\xe1\x75\x51\x74\x41\xc6\x31\x67\x47\xe4\x63\xc0\xf9\x2c\x31\x06\x5a\xe0\xb1\x3b\xe1\xc9\xf3\x69\xdd\x14\x50\x33\xc6\xd3\x3c\x00\x10\x17\x2b\xdb\xfa\x2d\x1b\x0d\xa6\x37\xe0\x33\x39\x7f\x27\x8e\x21\x28\x39\x16\xe5\x38\x23\x0d\x3a\x7d\xf8\x2c\x44\xc5\x74\x20\x5d\xf1\xf0\x62\xf2\x4d\x1c\x2c\x0a\xb8\xf8\xc2\x46\x76\x8a\xc3\x11\x9e\xab\x39\xe6\xc5\x80\xa9\xb5\x5d\x94\xff\x88\x47\x98\xc8\x75\x04\x38\xaa\x63\x22\x4e\xd1\x9a\x99\xea\x50\x62\x0d\x87\x24\x47\x8c\xaa\xc0\x12\x0d\xbf\xd2\x0e\x6f\xf4\xbd\x08\x69\xb9\x20\xcf\x87\x24\xf0\x3f\xf9\x09\x09\x61\x9d\xe0\x30\x49\x39\x1b\x2f\xdd\xe6\x7e\xd9\x1e\x84\x9e\xa7\x73\x8a\xc3\x10\x4f\x9e\xd5\xdc\x8f\x86\xba\xd6\xb6\x32\x7d\x7d\x1c\xf7\x0b\x04\xfa\x23\xd8\xdb\xb5\x93\xcd\x03\x4d\x7f\x41\x50\xdf\x86\x1f\xc7\x84\x5f\xb9\xc1\xd7\x78\x46\x99\xb5\xd9\x4a\x30\xe7\x7d\x01\x3f\x26\x87\xf3\x46\xb6\x2d\xba\x2e\xe0\xaf\x74\xae\xbb\xc6\xec\xf9\xdd\xd4\x17\xf0\xc5\x4f\xc1\x4f\x41\x92\x57\x46\x97\xcf\x2f\xf0\xad\xcf\xd7\xc6\x55\x1b\xf9\xdd\xb3\xa7\xcb\xe7\x9e\x0f\xa7\x7b\x8d\xc6\x98\x3b\xf6\x5a\x92\x35\xec\x9b\xf0\x70\x4e\x17\x5e\xe3\x8c\x36\x37\xb2\xae\xd1\x50\x4a\xb7\x38\x14\xa3\x27\x0a\xe3\x13\x53\xd8\xaa\x11\x97\x06\x73\x10\xda\x49\x63\x1f\x7b\x33\xd7\x99\xa8\xe6\x00\x28\x18\x81\x0d\x3e\xdf\x22\xeb\x27\xc0\x70\x90\x36\x5a\xdc\x6e\xd4\x3e\x08\x4f\xf0\x42\x1e\x5c\x52\xe7\x6f\x01\x41\xf3\xf8\x89\xd4\xf4\x2a\xd5\x94\xf9\x20\xf3\xd3\x2c\x10\x93\x08\xb5\x5f\xed\x5e\xd4\xb1\x19\xa9\x3a\x38\x73\x08\x9a\xeb\xc5\xf4\x4d\xd2\x00\x35\x7e\x3b\x35\xf6\xf4\xe0\xdb\xa9\x69\xd1\xf4\x01\xd5\xa4\x28\x48\x08\x61\x10\x66\x2d\xe0\xb3\x69\x99\x3e\x8f\x1a\xbb\xfa\x15\x2f\xa4\xce\xcf\xdc\x58\xa9\xf5\xe0\x54\x1f\x73\x80\xa9\xd3\xce\x7d\xc5\x5b\xa9\xe3\x30\x7b\x5f\xa1\xdf\x9a\x6b\x4b\x6a\x20\x1d\x1a\xf0\xb5\x5a\xae\xf4\x31\x83\xa9\x73\xd8\x37\x3e\x8f\x30\x8b\xf5\x81\x27\x12\x6a\xbd\x5a\x2d\x30\x54\x74\x69\xcd\xd0\x83\x79\xc4\x2f\xf0\x2d\x6e\xe0\x1b\x41\x28\x50\xe6\x19\x45\xcc\xc4\xc4\xe0\x34\x4a\x5e\xa2\x90\x08\xee\xc2\xa0\x51\x0e\x15\x9e\x89\x17\x7a\xb5\x42\xd7\xe1\xf7\xc6\xc5\xa6\x2c\xb0\x88\xdd\x98\x5d\xe9\x7f\xc1\x8b\xab\x60\x25\xb9\x31\x3b\x2c\x74\xe3\x53\x12\x30\xdb\x35\xda\x95\x14\xa5\xfa\xc6\x7f\x40\x9c\xed\x04\x62\x68\x21\xa6\x26\xc3\x7c\xc4\xcf\x14\xca\xa3\x0c\xc1\x42\xf8\x62\xed\xa4\x0e\x81\x20\x41\xdb\x11\xaf\xdc\x60\xab\x30\xdc\x49\x0d\x84\x10\xd4\x19\x11\x24\x7d\x11\xe9\xa4\x0e\x8a\xff\x08\x41\x03\x0d\xd4\xfd\x97\xb7\xef\xf1\x13\x62\x44\x53\x74\x2f\x08\x16\xfe\x4a\x37\x34\xde\x10\x41\xd2\x0e\x1d\x04\xa2\x54\x35\x07\xc8\xf4\x79\x22\x49\x4e\x9c\x3b\xd3\x70\xe1\x88\xc3\x19\x53\x6e\x65\xbb\x0f\xae\xe8\x37\x66\xab\x48\x95\xb3\x53\x44\x07\x21\xa4\x78\xf4\x84\x35\x46\xf8\x22\x04\xc5\x03\xc2\x37\x83\x1e\x6d\xc1\x11\xd2\x17\x73\x91\xd2\x39\x0f\xc3\xde\x33\xe3\xe7\xc9\x05\x33\x7f\x0c\x51\xf7\x72\x05\x8e\x89\xfe\x7f\x48\xed\x7a\x15\x8b\x5d\xf5\xea\xc9\xb8\x18\x39\x10\xfa\x7f\x21\x4d\x6e\xd0\x79\x25\xce\x40\x9c\x19\xf6\x75\x75\x46\x9c\x58\x8a\x23\x4a\x3b\x3f\x47\x8c\xab\xbf\xa4\xf7\x46\x71\xed\xc3\x4b\x91\x59\x9f\x52\xcf\xc4\x2b\x64\x50\x45\x18\x07\x30\xc7\xc1\xd7\xf6\xba\xde\xd4\x43\xe5\x16\x59\xbb\xb3\xd2\xc8\x91\x2a\x5e\x75\xa2\x31\x6b\xd0\x79\x40\xe0\x67\xb4\x5f\x1e\xda\x5a\xf5\xd6\xa1\xab\x82\x4c\xc8\xbc\xde\x76\x3d\xde\xfc\x30\x7a\x27\xd7\xe1\x35\x40\xb9\xc6\xb0\x33\x31\x0f\xee\x3a\x7c\x8e\xff\x91\x95\x09\x9c\x00\x5f\x53\x24\xd1\x63\x9d\x5c\x03\x63\x5f\xa5\xef\x15\x78\x61\xd4\xb4\xcc\x9c\x27\x0d\xc8\x8e\x38\x4e\x9d\x1e\x6b\x9c\x93\x3b\x25\x25\xd3\x4f\xdb\x96\x02\xa6\x87\x9c\xc6\xc8\x1a\x65\xff\x4b\xfc\xb5\x58\x2c\x66\x56\xcd\xf4\x35\xf8\xae\x57\x4f\xc6\x73\x9d\xc0\x87\x01\xf8\x55\x3d\x6e\x1a\xd1\x19\xdd\x3a\x81\x4e\x76\xd2\x65\x2b\x85\x2f\xbe\x68\x6a\xb5\x69\x9f\xc0\x79\x19\x9b\x31\x76\x2d\x0d\xd5\xd1\x42\x89\x4b\x66\xbc\xaa\xc1\x69\x8f\x77\x04\x78\xed\xe5\xdb\x02\x56\x4f\xdc\x18\xe0\x3e\x3b\xd9\x50\xc8\xef\x47\xa8\xdc\xcc\x61\x06\x18\xcf\x5e\x96\xb7\xc2\x45\xe9\x18\x66\xfe\xb8\xe5\x7a\xc6\x6e\x7a\x95\xe9\x51\x43\x1f\xac\x06\x9c\x5c\x1f\x7d\xf8\x6e\x54\x5b\x7a\x01\x8f\x55\x3c\x70\x9a\x8e\xf7\x40\xee\xf4\x97\xe0\x21\x9e\xc7\x53\x4a\xda\x23\x13\x9e\x67\x82\x8b\x9c\xa4\x93\x7d\x95\x3d\x64\x1c\x4b\x70\x8c\x1e\xe0\x04\xf8\x77\x51\x7c\x32\xfd\xfa\x73\x01\xb7\xac\x10\xd6\x3d\xc4\x63\x4d\xaf\x54\x41\xcd\xec\x61\x7c\x8f\x8e\x01\xbe\x1a\x9a\x26\x42\xe7\xef\xce\xbd\xf6\xdb\x34\x37\x52\xf2\x00\xa8\xe4\x87\x67\xe6\xc8\x47\x85\x5e\x9a\x5b\xf0\x13\x25\xa6\x5f\x47\xaf\xd4\xb4\x3a\x7c\x70\x29\xfa\x3a\xd2\x2b\x0c\x05\xf9\x8e\x9c\x89\x2b\xf8\x51\xe8\xf6\x5e\x3b\xcf\x3f\x6c\x15\x5a\x39\xbe\x85\x04\x38\x6f\x4c\xab\x8a\xcc\xbb\xa2\x80\xe0\xf1\x25\x7b\x56\x9c\xb1\x8f\x05\xa5\x67\x76\x9d\x67\x99\x99\x67\xfa\xa4\x8a\x47\x99\xbb\xd2\x7a\xe4\x30\x2a\x33\x4e\xf6\x1e\x3a\x90\x47\x5f\x12\x86\x10\x52\x8f\x41\x67\xcf\xb8\x79\xea\x30\x70\x00\x4f\xc0\x05\x36\x9f\x2d\x4a\x7e\xb0\xa8\x3c\x66\xdd\x66\x91\xc5\xec\x22\x56\x93\xd0\x9a\x0d\x7a\xe0\xc7\x62\x9e\x4b\x05\x07\x85\x3f\x23\x7c\xf6\x8e\x10\xa9\x5d\x25\x3e\xc3\x88\xc9\xf4\x38\x6f\xaa\x87\x05\x44\x5e\x24\xf9\x73\x31\xff\x34\xd5\x87\xf1\xda\xf8\x03\x8f\x53\x4d\x71\x1c\x7d\x9e\x0a\xd0\xc5\x01\x4d\x1a\x03\xf3\x70\xa0\x11\x81\x95\xfd\x56\x27\xda\xb0\x7f\x3c\xc3\x14\xf6\x4a\x7a\xdb\x46\xce\x1e\xbf\xe2\xaf\x98\xd5\x98\x8a\x3d\x6f\x2f\xe9\xe7\x41\x1b\xa1\x63\x3e\x20\x39\x68\x42\xcc\xb2\x81\x0b\x98\xbe\xd6\xa0\x88\x5c\x4b\x4c\xbf\xfe\xd7\x3c\x4b\xb2\xa7\x52\x27\xad\x96\xf7\xd2\xc9\xfe\x50\xa3\x31\x97\xdb\xfe\xd5\x4d\x1f\x9b\xdd\x65\x14\x66\xac\xad\x9a\x3c\x5e\x0a\x1d\x3c\x5a\x24\x7f\xca\x34\x6d\x70\xb8\x27\x4c\xcc\xde\xc8\x66\x06\x1f\x31\x85\x6d\xf3\x15\x2f\x99\x1e\x30\x9c\x3a\xf6\xa4\xe9\xb8\x95\x9e\x32\x85\x30\x9d\x69\x23\x8f\x96\x48\xb9\x19\x33\x32\xc2\xf9\xe3\xcf\x9c\xce\xdb\xe4\x24\x06\x28\xf4\xaa\x21\x8f\x5f\x54\x8d\xae\x92\x18\xf9\xe3\x37\x7a\xe3\xc8\x01\xdf\x4a\x0e\x98\xd9\x7a\x2b\x88\xd6\x2f\xe8\xff\x46\x77\x65\xf6\xb4\xe9\xbb\x90\x9e\xbc\x72\xfa\x73\x28\x46\x2a\x27\xe2\xa3\xaa\x51\x7a\xa4\xaf\x10\xe0\x81\xdd\x59\x02\x10\x7e\x03\x6f\x39\x9b\x33\x2e\x9f\xd7\x81\xff\xcb\xde\x34\x2a\x34\x54\x5c\x9b\x46\xc5\xe6\xe5\x41\x2a\xf3\x82\xa1\x4c\x48\x27\xfd\x04\xbf\x33\x19\xd2\xf3\xf7\x89\x39\x95\xce\xd8\xf4\xe5\x12\xe0\xc7\x09\x3b\x88\x37\x3f\x8f\xa1\x5b\x78\x22\x80\x4e\xe3\xf7\x66\x57\xe0\x51\xbc\x80\x28\x98\x67\xe2\x3f\x8c\x6e\x29\x25\xaf\x14\xd3\x3c\x67\x14\xdf\xd4\xb9\xf6\x32\x16\x3e\xba\x3d\xcd\x1f\xbd\x1d\x08\x27\x51\x78\x35\x90\xde\xfe\x06\xc6\x9e\x62\xad\xb6\x68\x77\x94\xbf\x7a\x87\x58\x47\x4f\xf9\x60\xf8\x8b\xac\xde\x14\xe2\x6b\x2a\x86\xd0\x06\xe3\xea\x4e\x59\x97\x0f\x0a\xc0\xe0\xd2\xa9\xb6\xdc\x0e\x30\xb6\x88\xed\x80\x08\x0b\x79\x3b\x52\x88\xaf\x69\x87\xaf\x05\x02\xed\xb1\xdf\xc6\xc1\xf6\xc8\xba\x16\x68\x52\x9f\x1a\xd3\xd9\x71\x13\xe3\xeb\x75\xb7\xc9\xf9\x0f\xa6\xc8\xf5\x88\x9f\xb1\x8b\xb9\x23\x15\x73\xd0\x86\x74\x86\xe5\x40\xb7\x80\xd9\xd7\xe8\x1f\x26\x02\x10\x40\xd1\x97\x0c\xa0\x89\xc1\x7f\xf6\x9a\xc6\xf4\x5c\xc2\x76\x45\x16\x11\x78\x05\xa2\x0d\x94\xf9\xf0\x91\x8c\x70\xfc\x9c\x14\xf2\x8b\xe9\xa1\x02\x0c\x23\xcf\x64\x0d\x10\x65\xd8\xab\x7e\x83\x25\xb5\x4e\x91\x05\x62\x0e\x50\x81\x88\x4f\xe1\x78\xc7\xa6\xdc\x5e\x72\xb1\xa4\xe0\xfa\x2c\xf3\x33\x66\xa8\xad\xdc\x8f\x5f\x17\x87\xd0\x17\xd9\xae\x39\x2c\x58\x4d\x9b\x12\xcf\xf5\xd7\xfa\x5e\xb5\x71\xc1\x1c\x14\xae\x16\xe9\x56\x9f\x2e\x90\x84\x5c\xeb\x94\x09\x5e\xf7\x10\xfa\x91\x67\xde\x93\x8e\x64\x61\x00\xfa\x9f\x43\x9f\x2b\xd9\x8e\x69\x03\x58\x68\x2a\xb9\x7d\x7c\x8c\x44\xfc\xe1\xe6\x00\x49\x39\xde\x1e\x20\x19\x18\xe9\xb8\xad\x53\xf2\x70\xac\x59\x48\x0f\xfe\x70\xb3\x80\xc2\x7c\x65\xb3\x4e\xb9\x4d\xc8\xc7\x78\x7a\x31\x47\x29\x8e\xb5\x76\x24\x68\xc1\x32\xbe\x4e\xa5\x2d\x26\x1b\x60\x51\x0c\x92\xe0\xac\x45\x71\xa2\xa0\x5e\x2c\xc6\xfb\x29\x31\x89\x4e\xf6\x54\xe2\x73\xc1\x6d\x01\xe3\x67\xf2\x4d\xa3\xf3\x30\xa2\x6a\x4d\x0b\xf2\x39\x5e\x16\x07\xff\xb5\x04\x39\x5d\x57\xb9\x7e\x4f\x3c\x11\x3c\x9a\x96\xbd\x88\x1a\xee\xa8\x48\x9d\xa5\x43\xec\x98\xe2\x13\xcc\xdc\xe7\xa2\x96\x76\xb3\x34\xb2\x87\xab\x12\xfe\x5d\x64\x71\x09\x8a\x94\x50\x8d\x39\x64\x7c\xf5\x38\x19\xd4\x6c\x3c\xe5\xe0\x36\x5e\x5c\x0c\x72\xc6\x79\x96\x60\xf1\xbd\xfc\x35\x33\x93\xeb\x81\x42\xff\x90\xd3\x04\xf8\xc8\x5b\xa7\xb6\xe2\x3d\x26\x14\x5b\xd3\x6a\xb4\xcf\x7e\x87\xbf\x74\xbb\x2e\xb2\xf8\x55\xaf\xfc\x47\x01\x11\x8b\x28\xe5\x52\x5a\x57\x38\xe3\xe0\xd9\xdb\x5b\xff\xff\x67\x71\x52\x17\xb1\xeb\x8b\xe5\xa0\x9b\x9a\xc3\x43\xfd\xe2\x3f\xc4\xdb\x68\x96\x95\x00\xca\xae\x2b\xef\x91\x58\x76\x5d\xc3\xdd\x62\x37\xb6\x08\xb7\xd6\xae\xe4\xb8\x33\x67\x69\x14\x9a\x14\xc6\xa4\x20\x66\x06\x02\x9b\xe5\x34\x88\x76\xd8\x2c\xff\x31\x81\x08\x77\x12\x08\xc3\x37\x13\x01\xca\x3a\xe9\xb4\x75\xc0\x45\xde\xf0\x6f\x9b\x00\x44\x6b\x45\x8c\x2e\x48\x1f\x29\x0a\x98\x86\x92\xcc\x59\xc3\xb4\xd0\x24\x00\xd6\xc1\xce\x55\xc9\xa3\x0a\x66\x7e\xb5\x74\x72\xc9\xda\xad\x67\x4b\x50\x5a\x2f\x9f\xa3\xe6\xf7\x34\x49\xc8\x16\x5c\x9a\x91\xdd\xbf\xc6\xe4\x9c\xa9\x88\xe9\xf8\x94\x77\x96\x64\x9d\xcc\xeb\x92\xd5\xa4\x16\xbe\x32\x4b\xd3\xd8\x01\x28\xa6\xb0\x2b\x50\x86\xdd\x40\x34\x05\x92\x91\xb2\x2c\xf4\x77\xcb\x92\xd0\xb7\x72\xd4\x13\xd4\xab\xa7\x69\x8d\x59\xeb\x56\xa0\xae\x3e\xef\x1e\x49\x2e\x39\x4e\x0e\x5e\x97\xa1\x80\xa0\xea\x69\xca\x86\xcd\x9e\xb3\x54\xa0\x3f\x69\x02\xd9\x33\x4f\x00\x63\xf4\x6e\xbb\x98\x5b\x48\xac\x90\x08\x8b\x09\xb5\x12\x73\x90\x76\xa7\xf1\x1d\xe3\x1b\xf8\x91\x2e\x22\x78\xa6\xa4\x8c\xa0\xce\x94\xfd\xd0\x46\x4f\x42\x7a\xd3\x24\x7a\x7c\x79\xce\x77\x68\x67\xab\xc1\x82\xd7\x59\x6e\xd5\x28\xd9\x96\x43\xbb\xd4\x6d\x5d\x1a\x7a\x50\xfc\xc2\x27\x8a\xa1\x5d\x82\x15\xe6\x07\xa0\x58\xf6\x68\xa1\x84\xc9\x38\x6f\x1a\x81\x59\x5c\x32\x71\xd5\x9b\xe7\x36\x22\x66\xe2\x5b\xc8\x06\x58\x46\x61\xdb\x46\x36\x4e\x42\x34\x60\xb2\x01\xe2\xec\xaf\xc2\x31\x6a\x65\x84\x08\x68\xbe\xbd\xa9\x70\x44\xfa\x23\x51\xdf\xab\x51\x23\x73\x67\x75\x02\x79\x00\xc3\xa8\x89\xb3\x28\xbe\xbd\x91\xc0\x9a\xb4\x6b\x3c\x98\x0f\x34\x72\x2f\x7a\x55\x99\xbe\x26\x2d\x40\x63\xac\x03\xb2\x8d\x4f\xcf\x1e\x47\x79\xa8\xd5\x47\x71\x7e\x43\x37\xfc\x61\xb2\xae\x62\xf3\x8d\x58\xcb\x7e\x29\xd7\xe8\x9a\x45\x31\xb7\x4c\x1e\x1e\xe0\x40\xf1\x63\x03\x0c\x0d\xaa\x3d\x2b\x3a\x83\xfe\x50\xdb\x7a\x05\xb1\x6a\x64\xd3\x94\xd6\x6e\xc8\x4c\xe4\x5a\xe1\x4d\xd7\xe3\x85\xb5\x9b\xa7\x92\xde\xe6\x57\x60\x50\x61\x1f\xe3\xb3\x4d\xdf\x57\x12\xa2\x1b\xfc\x0c\x91\xa5\xe0\x74\x80\xd2\x2c\x26\xf8\xd1\xfa\xe1\x68\x45\xa3\xbe\x24\x47\x43\x32\xb6\x3d\x34\xc5\xa9\xaf\xea\x01\x07\x03\xba\x86\x24\xba\x45\xab\x14\x98\xe3\x13\x21\x04\xd6\xd8\x58\xc7\x19\xe4\x12\x60\x56\x93\x35\x7f\xa4\x8a\x23\xb3\xf0\xf8\x5b\x6a\x4d\xbb\xe9\x6b\x38\xb2\x86\x7a\xa5\x5b\xed\x26\x5b\xe1\x1a\x92\xb5\x6c\xf4\xef\x7f\x70\x43\xcc\x21\xfe\x57\x37\x44\x9f\xb4\x6a\xdc\xa5\xec\x78\xe8\xef\x55\x5f\x0e\x1d\x71\x48\x37\xf0\x2d\x3e\x76\x23\x26\x09\x0c\xfe\x5b\x57\xae\x4d\x6f\x06\xa7\xf1\x19\x3b\x4c\x13\xaf\x39\xcd\xce\x14\x80\x6b\xa3\x7d\x39\x50\x54\x52\x2e\xf3\x0e\x92\xc5\x47\x78\x87\x30\x96\x02\x0e\x93\xcb\xc8\x06\x94\xeb\xa8\xf5\x07\xd6\x93\x4a\x9d\x73\x46\x52\x92\xca\x98\xa5\x93\x14\x6a\x92\x80\x3f\x50\x4a\x02\x0b\x97\xb5\xaa\x2f\x1b\x63\xee\x86\x0e\x98\x43\x08\x96\x85\xc9\xe2\x12\x92\xc5\xad\x4f\x9e\xd6\xc0\xad\x0a\xc5\x46\x8d\x3a\x54\x6e\xd5\xab\x49\x99\x57\xbd\x9a\xc2\xf3\xc8\x6d\x94\xec\x26\xe3\xf6\x46\xc9\x6e\x32\x6a\x00\x39\x1d\x00\x80\x3d\x3c\x0a\x69\x29\x5d\x83\x4e\x22\x2d\xf1\xb6\x6e\x0e\xd5\xa1\xc1\xa6\x6c\x0c\xdf\x7a\x49\xe7\x40\x09\x62\xc9\xc6\xad\xa2\x0b\xd6\x49\xab\xcc\xf2\x6f\xaa\x72\x96\xa1\x3f\xe0\x67\xca\xb3\x1b\xe3\xac\xeb\x65\xe7\xb9\x69\xf0\x62\xc0\x61\xfa\x85\xd3\x3d\x37\x5d\xdd\x4d\x46\x0a\xa1\xa7\x43\x85\xd0\x87\xc7\x6a\x6b\x3b\xd9\x96\xd6\xf5\x43\xe5\x86\x5e\xd9\x50\xe1\xbb\x9b\x4e\xb6\xe2\x26\x64\x4c\x6a\x9c\x94\x4c\x57\xe8\xb8\xf0\x5c\xcd\x95\xac\x36\x6a\xb6\xea\x0b\x9f\x73\xb4\xee\x49\xd9\xb4\xf2\x49\xf1\xb9\x9d\xd2\x9b\x95\x6e\x3c\x51\x5a\x0e\xd5\x9d\x72\xe5\x46\xda\x4d\xe9\xe0\x61\xd5\x04\xd7\x15\x83\x89\x5f\x00\x4c\xbc\x91\x76\x23\x6e\x41\x81\x39\x83\x75\x5d\x95\x5b\xe5\x24\x58\x7c\x25\x58\x5e\x5f\x88\x77\x94\x3c\x57\x0a\x14\x9b\x25\x09\x51\xb4\x0b\x3d\x53\x9a\x60\xf8\x00\xba\x4f\x92\xab\xce\x03\xc8\x1c\xb6\x56\x7d\xa1\x23\xbd\xda\x57\xf4\x94\xff\x17\xe7\xdb\x70\x8d\x29\x09\x2c\x08\xc2\xeb\x8a\xa5\xc8\x1b\x30\x06\x82\x00\xbe\xaf\x2f\x60\xfb\x4e\x28\x58\x04\x46\xc2\xf5\xfa\x42\x5c\xc9\xc1\xce\x02\x76\x12\x37\xd3\x41\x48\xae\x9e\x01\xb9\xe6\x31\x1c\x55\x6a\x71\x28\x91\xac\xa0\x16\x62\x01\x8e\xdd\x18\x30\xb7\xec\x24\x1a\x03\x7f\xb4\xaa\x17\xef\x30\x88\xee\x95\x4f\x23\xd8\x56\xed\xd2\x0b\xaa\x78\x53\x7e\x8e\x89\x0c\x86\xc2\x09\x88\x24\x98\xc2\xbc\x70\xcd\x76\xf5\x40\xa2\x29\x2f\x0b\x38\x8c\x69\xf1\x00\xed\x8c\xa5\x34\x0e\x04\x1f\xde\x2b\xa4\x74\x70\xe5\xe9\xd5\x5a\x5b\x47\xb1\x58\x20\xe0\x3a\x78\xe8\x5e\x43\x32\x8b\x48\xa9\xd3\xf6\xad\x81\x5e\x26\x1d\xcb\x4d\x51\xb9\x9b\x0f\x07\xa3\x5f\x10\x8e\xf4\x6d\x2c\xea\x19\x08\x2f\x6c\x02\x99\xeb\x66\xd8\x14\x12\x21\xd1\xd1\x12\xef\x89\x9b\xb4\x34\x08\xa7\x2c\xed\x8d\x30\x5c\x82\xe0\x9a\x8c\x72\x27\xad\xdd\x81\x29\x3b\xdf\x1c\xc0\xdd\x8b\xd0\x8e\xdc\x16\xe1\xe6\x02\x0c\xc2\x87\x96\x0c\xf1\xb8\xf5\x31\x5c\x24\xd9\x09\x06\x16\x83\x06\x82\x72\x1e\xba\xa3\x8d\x63\x91\xac\x14\x30\x2e\xca\xd7\xc8\x56\x7e\x41\xe1\x04\x86\x94\x62\xd5\x93\x31\x6a\xe2\x5b\x74\xc1\xb9\x97\x7a\xab\x0f\x96\x65\xb5\xe8\xf7\x37\xca\x89\x27\x3f\xb2\xfb\xea\xba\x31\x4b\x08\xd0\x8b\x51\x86\x1b\x8f\xe2\x07\xc2\xa1\x6d\x99\x2e\x4a\x50\xdf\x73\x83\xe1\x67\xbe\x48\xbb\xde\x6c\xf4\x52\x3b\x9c\x90\x99\x02\x0c\xc0\xcf\xa9\xae\xc3\x5a\xf6\x35\xd1\x12\xcf\x0a\x41\x64\x2c\x9f\x81\x2b\xd4\xf4\x89\x29\x06\xaf\x79\x8c\x14\xe6\x45\x0c\x72\xb8\x98\x60\x48\xca\x24\x2f\xd1\x7a\xb6\x0f\xa3\x71\xa6\x78\xf4\xb6\x33\xbd\x2b\x79\xb1\x3d\x84\x0b\xc1\xc9\x09\x38\xe3\xbd\xe7\x96\x4c\xbc\x2e\xe1\x15\x83\xa4\x9f\x17\xe7\xd1\xdb\xf8\x7c\x6d\xc0\xa3\x3c\xa5\xd9\xb5\x51\x35\x9b\xb4\x14\x9f\xec\xf1\xed\x8d\x91\x4a\x8c\xe7\x4c\x3d\xcf\x0b\x4f\x6d\x7a\x21\x2b\x8d\x38\x13\x02\x44\xc5\xb7\x21\x4d\x1f\x82\x9a\xa0\x77\x01\x29\x6e\xd3\x06\x6c\xa4\x25\x43\xa6\x03\xf5\x6f\x33\x2d\x7c\x56\x7d\xaa\x62\xcb\x1b\x80\xd7\xa2\xc1\xb9\x69\x72\x55\x65\xf3\xa6\xcc\xd8\xb0\x9d\x27\x53\x76\xec\x81\x04\xd3\x53\x30\x8e\x11\x75\xcf\x6c\x05\x32\x2a\x0f\x25\x52\xea\x0d\x09\xb9\xad\x15\x24\xc5\x7b\x34\xbe\x42\x43\x3d\x35\x10\xee\x71\x7d\xc9\x76\xce\x6a\xc3\x12\xf9\x0d\x37\xa6\xa5\x4d\xc0\x94\xe9\x4d\x3b\xa6\x93\x0a\x52\x9c\x89\x5f\xf1\x17\xa5\x83\x1e\x12\xb9\xb7\x9e\xd3\xc6\x2e\x84\x04\xe9\x65\x33\x7f\x72\xff\xae\x0a\x50\xa8\x67\x74\xdb\x1e\x22\xdc\x96\x60\x63\x18\x0f\x7f\x6a\x10\x51\xa7\xac\xa4\x17\x98\x92\x3e\xfc\x8b\x29\x0a\x02\x15\xd6\x21\x64\x61\x4d\xe9\x4c\xb3\x42\x8c\x74\x4a\x9f\x5a\xce\x25\x4d\x26\xf4\xa3\xf6\x26\xb5\x01\xd4\xfc\x61\x92\xb4\xd2\xaa\x6a\xe8\xb5\xdb\x43\xec\x60\x53\x99\x06\xbd\x8f\x21\x0d\xc2\x06\xfb\x34\x6e\xe7\xc8\xbf\x08\x53\x21\x06\xca\x99\x78\x63\x2c\xb7\xbb\xc3\x27\x81\xaf\x4c\xcf\x29\xa0\xdf\xab\xc1\x78\x5d\xb7\xb5\x78\xf1\x3e\x4f\xcf\x0c\xe5\x42\x30\x49\x38\x8d\x3d\xa5\x4a\xae\x8d\x38\x62\x24\x06\x8c\x54\x8b\xf5\x42\xbc\xf8\xf0\xee\xff\x3a\xb1\x29\x42\x3e\x1a\xb9\xba\x2b\xfa\x9e\x83\x49\x8c\xea\x64\xdf\xea\x76\xfd\x33\xbd\xc2\xc5\x38\xe0\xdd\x30\xd3\xa3\x15\x7b\xd7\xf8\x01\x70\xea\x8b\x83\x8b\xd3\xd6\x38\x7a\x00\x7c\xa3\xd7\x1b\xb0\x18\xd1\x8d\x5a\xa3\xa7\x88\xdf\xb6\x0b\x9e\x49\xcf\x77\xd1\x13\x7f\xc0\x6f\xd1\xe5\xd7\x2f\xd2\xaa\x14\x04\x86\x08\x00\xc2\x10\x49\x87\xd1\x2b\xd5\x9c\x8b\xb6\x38\xe7\xdc\x83\xd0\xe3\x97\xd9\x81\x22\x05\x0e\xc1\xb7\xde\xea\x75\xfb\x44\xc3\x83\x38\x9e\x34\xaa\xa6\xa6\x90\x07\x59\x78\xce\xc5\xa4\x06\xb6\x93\x83\x97\x4d\xde\x1f\x6f\x8d\x1d\xb8\xe9\x37\xc3\x43\x2d\xdf\x4a\x0d\x51\x5e\xe1\xff\x18\xec\x5e\xf5\x7a\xb5\x2f\xd7\xbd\x19\xba\x32\xa1\xc9\x67\xe2\x2f\x90\x23\x20\x27\xa1\xd6\x54\x0e\x0b\xd0\x6d\x24\xc4\xe2\x84\xb1\x7e\x0d\xd0\xc9\x6c\xc4\x81\xc7\x12\xf8\x2c\x4b\x80\xc4\x77\x59\x32\x88\xd8\xf0\xca\xb4\x5e\xbe\xc0\xf0\x49\x0d\xda\x0e\x63\xb1\xd0\x0b\xb0\x63\x97\x1a\xde\xd2\xbe\xa4\x50\xe9\x78\x31\x98\xac\x82\x88\xd1\x23\x51\xb5\x17\xb4\xb1\x5b\xb4\x38\x22\xba\x4b\x00\x80\xf0\x45\x1e\x60\x3c\x96\xd6\x17\x05\x0d\xfa\x99\x78\xa5\x5c\xb5\x11\x31\xcb\x17\xa2\xdd\x88\x8e\x60\x5f\x78\xb7\x86\x3e\x43\x65\x59\x97\xf1\x8e\x3a\x00\xa0\x55\x4b\x06\xb1\xf5\x1c\x50\x69\xa5\x3f\x2e\xac\x38\xaf\xc5\xcd\x39\x93\x9a\xad\xeb\x4a\xba\x18\xb8\x79\x77\x7b\x75\x84\x76\x79\x50\xa2\x2b\x00\x99\x10\x17\x9f\x45\x04\x06\xb2\x12\x2a\xc3\x31\xa8\x90\x4e\x59\x8e\xb3\xaa\x6a\x22\x58\x76\x1e\xee\x18\x07\xed\x77\x78\xaf\xac\xeb\x75\xe5\xd0\x41\x0f\xcb\x2c\xc4\xbb\xa1\x71\xba\x6b\x14\xa7\xb0\x29\x2d\x84\x6b\xe8\x64\xcf\x8f\xac\x57\x66\xbb\x95\xe2\xf1\xe9\xe3\x45\x76\x0a\x94\xae\xb1\x31\x76\xed\xed\xe5\x8d\x78\xd9\x56\xfd\x1e\x2d\x6e\xa8\xa7\x77\xba\xf3\x60\x25\xae\x79\xdf\xe1\x3b\xdd\x01\x2c\xae\x75\x26\xb7\x72\x5b\x5a\xd5\xdf\xeb\x2a\xec\xc9\xab\xf3\x77\xa0\xc2\xd3\x95\x4a\x89\x3d\x55\x0d\x8f\x01\xb2\x10\x15\x1b\x71\x3e\x38\x93\x09\x51\x5c\x2a\x79\x73\x6b\x7c\x3c\xa2\xb1\x0c\x8f\xeb\x84\xc7\xce\xa1\x33\x56\x3b\x3b\xfa\x78\x59\x1c\x2a\x16\xb8\xfa\xe4\xfa\x2e\x9e\xc9\x63\x69\x2e\x2f\xfe\x90\x73\xe1\x22\x3b\x6d\x53\xd6\x2b\xc7\xf3\x95\x76\xab\x29\xb2\x84\x4d\x3e\x36\x6e\xb3\x81\x25\xf3\x12\x19\x64\x89\x0c\x00\x19\x10\x8d\x50\x07\x53\xa2\x69\x89\xd4\xd8\x6b\x3a\xc6\x33\xf6\xa0\x47\x6c\x40\x69\x89\x02\xef\xac\x83\x6f\xe9\x01\xd4\xc8\x45\x03\xcc\x72\x8f\x46\x48\x74\x4f\x4d\x36\x15\x91\x51\x8f\xb1\x73\x95\x25\xa8\x34\x44\x2c\x2e\x00\xe0\x7d\x88\x73\x4e\xba\x39\xe2\x9c\xf3\x66\x3c\xc0\x40\x23\x1a\x94\xc0\xc9\x95\x8b\xdd\x3f\x2e\x93\x45\x47\x4c\xc9\xc8\xeb\x83\x8e\x03\xed\x36\xc3\xb2\x94\x9d\x2e\x55\x5b\xa3\x27\xd0\x99\x38\xbf\x7a\x2b\x5e\xd2\x67\x41\x36\x1a\x8b\xd6\xb8\xd2\x82\x4f\xd5\xf7\xe0\x44\xa7\xdc\x0f\x9c\x45\x9a\xf8\x60\xcc\x41\x9a\xf8\x2a\xb3\xe9\x20\xd8\x65\x2f\xdb\x9a\xf7\xfc\x2f\xfe\x03\x3d\xb7\x28\xbb\x1f\xf0\x2c\xc2\xbb\x5a\x18\xcc\x34\x6b\x8b\xae\x6a\x3e\xcb\xff\xcc\x1b\x10\x03\xa8\x8f\x62\xae\x7f\xbc\xbe\x1c\x41\x8e\xd9\xc2\x3c\x37\xe1\x2b\x03\x3b\x99\x43\x6c\x9c\x3f\x17\xea\xda\xb7\x13\x62\xf7\x51\x0c\xaa\x39\x30\xa2\xfc\x00\xe6\x7f\x8f\x60\x2a\xd5\x3b\xf6\x88\xbc\x50\x3d\xa9\x80\xd0\x69\x71\x04\x7a\xa7\xf6\x0c\xf9\x9f\x6a\x3f\x07\xe1\x49\xaf\x3f\xed\xa2\x65\xc9\x3b\xdd\x82\xce\xc2\x93\x60\x36\x31\xc9\xcb\x0c\xad\xfe\x52\x5a\x03\x3a\xd2\xc4\xd9\x02\xdc\x48\xbf\x08\xcc\x48\x44\xef\x51\x69\x0c\xdb\xd5\x1b\xe3\x68\xd4\x2f\x51\x1c\x37\xc6\xcd\x8c\xbb\x59\xad\x1a\xdd\x2a\x9e\xc7\x0f\xf8\x39\x37\x97\x14\xb6\xaa\xec\xcd\x80\xf7\x1d\xeb\xe4\x61\x1e\x4c\xf4\x3b\x6b\xbc\x02\xf0\xb4\x58\xff\x0e\xec\x15\x1d\x12\xaf\x7f\xd7\xdd\x08\x4e\x76\x5d\x09\x3a\xdc\x4e\xa2\xa7\x70\x62\xce\x03\x4a\x5c\x9f\x3e\xe9\xa9\xac\x4b\x69\xad\x72\xb6\x5c\xf5\x66\x5b\xd6\xda\xde\x91\x73\x9e\xc0\x74\x7a\x18\x48\xdb\xbb\x71\x59\x09\xbe\x61\x3c\x44\xf8\x05\xe3\x13\x00\xed\x26\xd9\x40\x37\x6f\xe6\x77\x8f\xb5\x9b\x19\x91\x2c\xc9\x0c\x0b\xfb\xe5\x97\x0e\x9e\x19\xad\xf3\x05\x6e\x37\x2c\xea\x30\x40\xb6\x24\xed\x66\x01\x53\x49\xc3\x72\x6d\x20\x9c\x5b\x32\x14\x76\xe3\x57\xe1\x5a\xb5\x0c\xf2\x9f\xf0\x35\x07\x54\x42\xd0\xc0\x08\x86\x01\x07\xc7\x80\x5b\x5c\x9f\xe8\x6c\xaf\x7f\x57\xf8\x2a\x72\xb2\x70\xef\xd4\x5e\x80\x0c\x0c\x19\xc7\x8a\xda\x99\x52\x36\xeb\x9a\x22\x3b\xea\xfc\x4a\xba\x94\xae\xf4\xf2\xb8\x4b\xee\xae\x1f\x8d\x60\x1e\x09\xe9\xc0\x78\x28\x1b\x2b\x48\x28\xe9\xed\x8a\x12\xe7\x9a\x84\x7a\x17\x9e\xb4\xc0\xe4\xb4\x18\xb0\xc8\x6d\x49\xdc\x22\xf0\xc3\x2d\xc4\xe5\x9c\x01\xa2\xd9\x22\xa0\xf1\x64\x31\xe5\xd5\xdd\x86\x5f\xff\x41\xd2\x8b\x09\x61\x75\xa1\x36\x92\x97\x57\xa2\xf0\x98\x5d\x65\x1e\xfa\xf8\x3a\x00\x08\x34\xb7\x66\xa9\xfe\x06\xbe\xe0\x9c\xcb\xa0\x64\x6b\x75\x59\x6d\xa4\xc3\xc3\xe3\xfc\xfd\xcd\x5b\x70\xc7\xb7\xca\x65\x70\xf0\xd8\x56\x19\xf5\x28\xaf\xf0\xf1\x2d\xd2\xa6\xa4\x90\x5b\xf9\x25\x6a\x56\x41\x69\x8a\xba\x59\x11\x54\xb5\x90\x98\x95\xe9\x7a\x85\xf1\x81\xcb\x46\x57\xaa\xb5\xf4\xfe\x1a\x25\x0a\x4e\xcc\xca\x30\x09\x02\x2a\xbe\x86\x5a\x98\x00\x01\x31\x7f\x3d\xaa\x83\x88\x0f\x52\x44\x3f\x5a\xe5\x56\xaf\xc3\xe3\x86\x44\x8c\x50\x5b\x09\xe3\x1a\x72\xe7\xb0\xf4\x12\xfd\xe4\xcb\x5e\xb5\xb5\xea\x99\x62\x12\x96\x5e\xee\xd0\x8e\x02\x73\x33\x02\x0a\x58\xc8\x07\xbc\x5c\x79\x09\xca\xcf\x3c\x5e\xcd\x56\xfb\xf8\x70\xbb\x80\x3c\x91\xe4\xe5\xed\xa8\xfd\x0a\x59\x00\xb9\xde\xf5\xb2\x83\x67\x51\x5a\x4b\x56\x82\x2f\x21\x57\x00\xf5\xf6\xb9\x22\xe6\xce\x61\x21\x27\x67\xe8\x19\xf4\xca\x37\x38\xc1\x93\xe4\x63\xbf\x20\x3f\xc3\x34\x74\x9e\x00\x27\xd4\xef\x23\x24\x08\x95\x13\xc1\x14\xd6\xa9\x6d\xc7\x4b\x98\xa0\x7d\x92\xe9\x65\xbf\x9f\x2e\x67\x2a\x14\xa2\x02\xef\x3b\x65\x63\xc1\x10\x79\xd2\x27\xcf\x95\xc3\x6e\xc9\x2f\x25\x29\xec\xa8\x1c\xf4\x06\x92\xa6\x8b\x92\x4a\xfa\x42\x1c\xaf\x20\x29\x65\xa9\x04\x17\xa9\x97\x71\x07\xbf\x60\x4b\xca\xd9\xfd\x5b\x2f\x33\x4d\x5e\x4c\x4d\xf5\x5e\x31\x35\xd5\x03\xc6\x54\xe2\xc2\x3e\x26\x1c\x58\xbd\x5c\x58\xdb\xf0\x52\xbc\xb9\xb9\xcc\xd6\x5d\x92\x1b\xc5\xd3\xef\x57\xa6\x17\x8f\x3a\x63\xdd\xba\x57\xf6\x91\x30\x6d\xb3\xff\x21\x29\x41\xb3\x73\x95\x4c\x06\xa5\x8e\x71\xd8\xbf\x37\xda\xa9\x3f\x3d\x42\x0c\xf1\x7c\x25\x5d\x60\xc2\x7c\x92\x26\x70\xfe\x00\xa5\x5c\x62\x9b\x7b\x45\x3e\x4e\xb5\x04\xd3\x25\xe4\x9b\x39\x55\xf8\xd4\x49\xc9\xca\x98\x3b\xad\x62\x51\x1a\xbe\x6b\x2e\x84\xf9\x87\x8a\xcd\x69\xc4\x8e\x97\x80\xef\x64\xef\xd3\xf7\x81\x42\xf4\x0a\x48\xd9\xf5\xe6\xcb\x1e\x65\x28\xe6\xa7\x31\x47\x40\xce\x58\xe2\xc1\x18\x0d\x13\x6c\x81\xa4\x81\x8c\x01\x56\xbe\x25\x56\x9c\x52\x34\x90\x35\xd0\x34\xf8\x40\xab\x66\x10\xf0\xb8\x5d\xce\x14\xe7\xf2\x6a\x2b\x75\x13\xa7\x16\xd5\x6b\xb3\xf3\x0a\x90\x87\x59\x23\xcc\xb6\x03\x58\x63\x94\xfe\x30\xd0\x5f\x40\xb1\x07\x09\x02\x13\x72\xe0\x99\xbd\x82\x19\xc0\xe3\x9d\x89\x57\xbd\xd9\xe6\x19\x33\x3b\x06\x33\xc2\x41\xa2\x1a\x93\x1e\x22\x2f\x2f\x3f\x8c\xea\x54\x8d\x01\xb6\x80\x03\xb2\xbe\xbc\xfc\x20\xf8\x7b\xd4\x97\x3b\xdd\x8d\xb4\x2c\x55\x22\x3d\x60\xce\xa4\x7d\x65\x0a\x83\x0f\x5a\x51\xc4\xda\x24\x23\x2f\xf5\x35\xf2\x09\x42\x1e\x11\x4f\x62\x03\x40\x1d\x5d\x3a\xf5\xc5\x51\xfd\x51\x3f\x9d\x03\xcb\xba\x4e\x80\x4b\x09\x97\x0d\xf0\x8c\x63\x28\x20\x64\x03\x12\x1e\xc4\xc1\xcb\x47\x47\xb5\x35\xf2\x9f\xa4\x99\x85\xdb\x76\x60\x40\x01\x20\x87\x0e\x80\xe5\x0a\xe3\x93\x9c\x89\x57\xf8\xc3\x19\x0c\x4b\x1b\x4b\xfa\x24\x2f\x50\x43\x4c\xe3\x03\x58\x2c\xc6\xff\xb8\x8d\x85\xe2\xc3\xe8\x14\xa9\xd7\xa3\x58\x84\x75\x0e\xdb\x34\x2c\xf3\x91\x16\x60\x76\xbd\xfb\x12\x41\x79\x05\x11\x5c\xca\x86\x8c\x70\xd9\x7e\x01\x5f\x78\x85\xd4\xac\x54\xaf\xac\x97\xf4\xf8\x32\x21\x2b\x7b\xed\xf3\xe2\x45\xc2\x41\x0c\xf8\x14\x69\xb2\x3d\xe1\x69\x1f\x7e\xdf\x54\xc5\x7d\xca\x3e\x14\x73\xc5\xad\x5e\xb7\xa5\x17\x56\x31\xfc\x09\x97\xf6\xc9\x42\xa3\x83\x54\x56\x2e\x88\x84\xa9\xd1\x44\x22\x14\xa6\x6a\xc0\xb4\x1c\x73\x54\x49\x7e\x59\xc9\xce\x55\x1b\x99\x70\x54\x29\x52\xca\x9d\xc7\x32\xa6\xaf\x99\x83\x4b\xc0\x76\x98\xd6\x7e\x15\x56\x33\xee\xe5\x21\xc4\xe6\x70\xbf\x8f\x35\xb5\x0c\x41\x79\xbe\xe6\x58\x60\xb4\xa0\xea\x0f\xeb\x14\x54\xed\xb3\xab\x13\x9e\x5c\xa0\xae\xe1\x22\x09\x66\x2f\xd4\x0f\x5c\x22\xe9\x33\x05\xc9\x91\x8e\xae\x64\xc9\x89\x8e\x1a\x89\x03\x07\x3a\x64\x2e\xba\xde\xdc\x6b\x0a\x52\x44\x3f\x0f\x81\x44\xcc\x0c\x49\xa8\xc7\x05\xf2\x83\xea\x62\x74\xb4\x21\x8c\x17\x0e\x2c\x47\xf9\xf5\x62\xc1\x0d\xf0\x38\x63\xb0\x75\x85\xef\x1f\xde\x83\x65\xc3\xeb\x0b\xc1\x5f\x63\x40\xcf\x0c\x36\x7a\xa5\xd8\x08\xcb\xcb\x35\xfe\x1b\x5d\x7f\xc6\x0d\xb4\xfd\x6a\x74\x9c\x5e\xdc\x5c\xbf\x1a\x1f\xa3\x68\x4b\x17\x7a\x8d\xd6\x73\xb3\xa3\x09\x90\x0b\x59\xcb\x8e\x2f\x4b\xe0\x57\x9e\x7d\xbc\x23\x08\x93\x9e\x9e\x9c\x03\x72\x54\x68\x05\x88\x50\xb3\x8d\xf0\x70\x0b\xf2\x31\x86\x97\xf0\x4c\x83\xd1\x38\x4a\x7c\xf5\x0d\x4d\x0c\x94\xb5\x82\x72\x91\x39\xa7\x37\xe1\x22\x51\x0d\x3e\x2a\x09\x69\x0d\x69\x07\xc8\x6a\xc8\x3f\xcc\x4b\x24\x30\x33\xdc\x6b\x92\x3b\x96\x24\xce\xe7\x44\x88\x04\x3e\x11\x1e\x6e\x26\x02\xc3\x08\x8e\xe5\x85\x57\x33\x82\x02\xc7\x79\x4a\xe4\x7d\x72\x03\x9c\x17\xf6\x29\xa2\xd8\x5c\xd7\x93\xf1\x9a\xc8\x59\x93\x62\x93\xfe\xc6\xc2\x07\xa4\xa7\x09\x8a\x64\x08\x92\xd2\x73\xe2\xd3\x6c\x51\x1e\x95\xa4\xec\x9c\x24\xd5\x69\x30\x1b\x4d\xe8\x00\x26\xcc\x0f\x10\x41\x2f\x28\x52\x08\x0a\x6d\x41\xac\xf4\x34\x90\xa2\x84\x60\x4e\x26\x58\x72\x59\x74\x73\x99\x43\x90\xe8\x62\x1e\x46\xb3\xee\x39\x5c\x09\x1b\xed\xbd\xee\x39\x44\x09\x5e\x30\x8d\x0a\xf0\x91\xc9\x05\x93\xe3\x92\x4b\x8e\x8b\x10\xd9\x5e\xa9\x1a\xc2\xba\xd5\x65\x28\x49\xa4\x3b\xe4\x50\x83\xa3\x96\x89\x9e\x2f\x0e\xc3\x4a\x8f\x16\xcf\x8e\x2a\xc2\x86\xcb\xb4\x84\xa6\xf0\xa3\xfb\x81\xb0\x70\x11\x7e\x39\x20\xe0\xe7\x88\xc0\xb3\x15\x84\xa7\x4b\x68\x35\xde\xa6\x4b\x8f\x33\x29\x00\x30\x10\x5b\x33\x90\xd5\x97\x4f\x11\x94\x32\x2e\x70\xe4\x82\x93\x58\x6e\x2e\xb1\xd6\x09\xdd\x79\xad\x0f\x10\x9c\xb5\x76\x61\x92\x20\x1c\xe4\x46\xaf\x37\xf0\x08\x6e\x32\x55\x18\x02\x71\xdf\x3a\xf9\x45\x84\xfc\x14\x83\x5f\xfb\x50\xba\xd1\x2d\x3a\x62\xf9\x12\xf8\x81\x0a\x32\x90\xa1\xa5\xb0\xba\x5d\x93\x8a\xe5\x87\x83\x08\xca\x24\xd0\x26\xa1\x4a\x43\x6f\xce\xe0\xf3\xa5\xe6\xf1\xf1\x8e\x04\x2c\xc9\x5e\x1c\x21\xf0\xb0\x19\x82\x75\x55\xca\x7e\x4d\xf6\xc0\xb2\x5f\x0f\xe0\x6b\x98\x55\x01\xda\x33\x95\x4c\xdd\xbb\xa0\x6d\x1b\x4d\x1e\x82\xc3\xda\x4c\xa1\x61\x71\xa2\x12\x6c\xa6\x00\xb8\xe5\x27\xf0\x17\xe8\xa6\x3f\x05\x84\xc8\xe8\x11\x0e\x82\xa2\xcf\x80\x91\x89\x33\x02\xbd\xbe\x08\x20\x0c\xd3\x98\x75\x5c\x2f\x97\x66\x3d\xbf\x5e\x3c\x14\xaa\x05\x13\xf5\xac\x87\x46\x6d\xe0\x58\x4f\xeb\xc1\x49\x5d\xf3\x2e\x51\xd5\xf8\xe4\x69\x48\x29\xf6\xae\x5e\x54\x3d\xbe\x29\xe6\xff\xdd\x4a\x7b\x17\xfc\xae\x33\x55\x11\xa7\xd9\x6a\xa3\xea\xa1\x41\x1d\x30\xfe\x8c\xf0\x28\xe7\x81\x7d\x3a\x58\x9b\x73\x06\x28\xfc\xcc\x60\x39\xec\xa1\xff\x99\x01\xa8\x2f\xaa\x1a\x12\x57\x95\x97\xf8\x4d\xb6\xe1\x11\x8d\xe1\x58\x2d\x43\x0b\x16\x2a\x57\x98\x92\xc0\xcc\x84\x3b\x0b\x4d\x27\xad\x3f\x2a\xec\x0f\xd6\x1f\xaa\x07\x93\x0f\x0f\xc5\x1e\xea\xec\x18\x8d\x9f\x6c\x40\x33\x72\x5a\x67\x58\x88\x7d\x8a\x2f\x94\x44\xf6\x1b\x82\xa0\x22\x24\xc5\xc7\x0c\xf0\xe4\x9a\x4c\x22\x9d\x9f\xa1\x50\x2b\x7a\xc6\xca\x06\x45\x5b\xf0\x82\x3d\x6f\x62\xc9\x5a\x65\x10\x2f\xe8\x33\x83\xd1\x2d\x4a\x07\x98\x85\x42\xc6\x5b\x4c\x23\x94\x89\x27\x3e\xdf\xc9\x23\x30\x05\x56\x86\xfb\xef\x1b\x4a\x19\x43\x72\xcd\x00\x74\xde\x34\x93\xd1\x48\x35\x94\x69\x1a\x3c\x92\x98\x84\x4b\x48\xfa\x34\x9e\x46\xce\x32\x1d\xac\xe2\xc5\xa4\xb5\xe1\x62\x9d\x66\x84\xe3\x0a\x3c\xe4\x7c\x59\x7c\xc2\xb1\xff\xcc\xf1\xf7\xc8\xce\x97\xcd\xeb\x13\x97\xb6\x2c\x4c\xfa\x09\x44\xf7\x2e\x7a\xd5\x26\xef\x0e\xe3\x57\x56\x08\x54\x48\xf8\x12\xc8\xc9\xa7\x1f\x3f\x5b\x7e\x0a\xc4\x99\x04\xdf\xa7\x9f\x3e\x7b\x94\x9f\xfe\xf4\x19\xb1\xa2\x4a\x9f\xb1\x76\x03\xbc\x13\x90\x97\xf8\xf1\xb3\x7d\x6a\xfb\xea\xe9\xb8\xac\x90\x6e\x04\xe6\x33\xff\x47\x44\xdc\xc9\x5e\x95\x1c\x37\x96\x16\x25\x26\x6b\x6b\x5a\x8a\x1d\xad\xac\x82\x90\xc1\xf4\xdc\x73\x78\xa5\x91\x5a\xc4\xdf\xa3\xf1\xc1\x5e\xce\x77\x31\x0e\x19\x8d\x33\x3e\x9d\x7d\x26\x7e\xc3\xb7\x23\xe8\x29\xed\xa4\xc0\x53\x34\x92\x7d\x8a\x45\xff\x0d\x3a\xea\x11\xfc\x56\xc0\xbb\x13\x11\x01\x3e\x43\xf1\x2d\x08\xf0\xc1\x8a\x88\x81\x1f\xb0\xf8\xa6\x46\xd0\x0b\x12\xb1\x19\x98\xa0\x6a\x01\x66\x25\x5f\x8f\x08\xc7\x63\xf4\x40\xc7\x6f\xbc\x00\xd3\x87\xc3\x33\x84\xf0\x80\xf7\xc1\xd1\x99\xa0\xc3\x41\xfa\x66\x6c\x34\x54\x63\x74\x61\xc4\xbe\x19\x21\x3c\x24\x3e\xc1\x07\xa9\x7f\xa4\xb3\x38\x78\xf8\x3c\x7a\xb2\x6d\x5b\xb5\xa3\x37\xd3\xff\xf5\x4d\x43\x24\x26\xd4\xc1\x84\x84\xf1\xd3\xe6\xfe\x29\x6e\xee\x59\x74\xbc\xb9\xe1\xc9\x19\x27\xd7\xc9\xce\x96\xeb\xac\xb3\xd0\x44\x28\x43\xfd\x9c\xee\xfd\x14\x21\x07\x41\x02\x94\xdc\x38\xc0\xf9\x8d\x2d\x83\x47\x75\x68\x8b\xe3\x4b\x3a\x93\x07\xd9\xe7\x36\x34\xf1\x5b\xe0\xf9\x4c\x4f\xed\x90\x8f\x72\x12\x9e\xfa\x5f\x9d\x05\x24\xa4\x58\x55\x56\x63\x78\xc8\x88\xea\xf4\x33\x0f\x97\xbd\xaa\xad\xd4\xbf\x30\xac\x07\x2b\x0c\xf6\x70\x54\x21\x3c\xf9\x4c\xa3\x9e\x54\xfc\x6d\x63\x9f\xd5\x56\x7c\x72\xc6\x34\x9f\x0b\xb9\xf6\x33\x21\xd7\xa6\x00\x23\x14\x8c\x77\x07\x80\xad\xd9\x15\xf8\xe9\x7f\xfd\xe8\x09\xf9\x8f\xf4\x38\xa1\x38\xb1\xc5\x8f\x5b\x48\xd8\xea\xd6\xf3\x51\x3e\x61\x03\x09\x1b\x33\xc0\x4b\xd4\x3f\xd6\xf0\x59\xcb\x3d\x7c\xed\xe0\x6b\xa7\xd4\x1d\x16\x06\x06\xe1\x47\xb1\x35\xad\xdb\x40\xca\x1e\xbe\xf7\x4a\xd2\x3b\xd6\xf8\x08\xe2\x99\x3f\x22\xf8\xe3\xc4\x16\x58\x1d\xa5\xf3\xc7\x89\x2d\x7c\xad\x94\x8a\x3f\x4f\x6c\x41\x97\x70\x27\x35\x5c\xbc\xf9\x14\x5f\x3d\x25\xe1\xcf\x13\xe0\xeb\xdc\x86\x11\xe2\xef\x13\x5b\xf8\x76\x50\x22\xfe\x3c\xb1\x45\x2f\x77\x65\x6c\x17\xfd\x82\xd4\xd8\x2a\xfa\x05\xa9\xdc\x26\xf8\x5f\x14\x9f\xea\xde\x74\xbf\x9b\x56\x7d\x2e\x58\x4c\xdd\x2a\x4b\x2e\xac\x2f\x7a\xd3\xb1\xe7\xba\xea\xd1\x0e\xb0\xd1\xd5\x1d\xbe\x02\x09\xf7\xba\x05\x05\x52\x2e\x75\xdb\x0d\xc1\x4e\x82\xdc\x05\x1e\x3b\x16\xf4\xc3\x43\x83\x18\x26\x6b\xdf\xa9\x45\x01\x2c\xbe\x33\xa6\x5c\x82\x38\xf0\x2a\x5c\x22\x7f\xff\x8f\x7f\x00\xbc\xfe\x5d\xfd\xf3\x9f\xe2\xdd\x2f\x3f\x08\xf5\xa5\x52\xaa\xb6\x62\x4b\xce\x69\x0c\xb6\x95\x5f\x5e\x65\x90\x8b\x82\x62\x4e\xd1\x1d\x0d\xc6\x9c\xc2\x6b\x9a\xff\x2f\x00\x00\xff\xff\x25\x65\xf4\xf5\x5f\x0f\x01\x00" +var _confLocaleLocale_enUsIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xeb\x72\xdc\x38\xb2\x30\xf8\x9f\x4f\x81\xf6\x09\x85\xbb\x23\xe4\x72\x74\xcf\x77\xbe\xdd\xe8\xb0\xdc\x2b\xcb\xd7\x33\xb2\xad\x91\xe4\xe9\x6f\xd6\xeb\x60\xa3\x48\x54\x15\x46\x2c\x82\x43\x80\x2a\x57\x4f\xcc\x1b\xec\x03\xec\xf3\xed\x93\x6c\x20\x2f\xb8\x90\x2c\x49\xee\x39\xfb\x47\x2a\x02\x89\xc4\x3d\x91\x99\xc8\x4c\xc8\xae\x2b\x6b\x65\x2b\x71\x22\x4e\x45\x27\x75\xdb\x28\x6b\x85\x55\xcd\xea\xc9\xc6\x58\xa7\x6a\xf1\x46\x3b\x61\x55\x7f\xab\x2b\x55\x14\x1b\xb3\x55\xe2\x44\xbc\x35\x5b\x55\xd4\xd2\x6e\x96\x46\xf6\xb5\x38\x11\x2f\xf9\x77\xa1\xbe\x76\x8d\xe9\x3d\xd0\x2b\xfc\x55\x6c\x54\xd3\xf9\x32\xaa\xe9\x0a\xab\xd7\x6d\xa9\x5b\x71\x22\xae\xf4\xba\x15\xef\x5a\x4c\x31\x83\xe3\xa4\x8f\x83\xc3\xb4\xa1\xe3\xa4\x4f\x5d\xd1\xab\xb5\xb6\x4e\xf5\xe2\x44\x5c\xd2\xcf\x62\xa7\x96\x56\x3b\x5f\xd3\xaf\xf8\xab\xe8\xe4\xda\x7f\x5e\xc8\xb5\x2a\x9c\xda\x76\x8d\x84\xec\x6b\xfa\x59\x34\xb2\x5d\x0f\x08\x73\x4e\x3f\x8b\xaa\x57\xd2\xa9\xb2\x55\x3b\x71\x22\xce\xe0\x63\xb1\x58\x14\x83\x55\x7d\xd9\xf5\x66\xa5\x1b\x55\xca\xb6\x2e\xb7\xd8\xa9\x4f\x56\xf5\x82\xd2\x85\x6c\x6b\xe1\xd3\xa1\xc1\xaa\x2e\x75\x5b\x4a\x4b\xad\x56\xb5\xd0\xad\x90\xb6\x00\x54\xad\xdc\x72\x69\xff\xb3\x50\x5b\xa9\x1b\x3f\x46\xfe\x7f\xd1\x49\x6b\x77\x06\x06\xf2\x82\x7e\x16\xbd\x2a\xdd\xbe\x53\xd0\xe1\x27\xd7\xfb\x4e\x15\x95\xec\x5c\xb5\x91\xbe\x99\xf8\xab\x28\x7a\xd5\x19\xab\x9d\xe9\xf7\x00\xc7\x1f\x85\xe9\xd7\xb2\xd5\xbf\x4b\xa7\x8d\x1f\xeb\x8f\xc9\x67\xb1\xd5\x7d\x6f\xfc\x40\xbe\x87\x1f\x45\xab\x76\xa5\xc7\x23\x4e\xc4\x07\xb5\x4b\xb1\xf8\x9c\xad\x5e\xf7\x38\x8a\x3e\xf3\x3d\x7c\x79\x2c\x98\x47\x98\x30\x2b\x60\x5b\x99\xfe\x86\x52\x5f\xfb\x9f\x23\x94\xa6\x5f\x53\x6e\xde\x2e\xd9\xca\xb5\xa2\xdc\xf7\xf0\x91\x01\xd8\x42\xd6\x5b\xdd\x96\x9d\x6c\x95\x1f\xba\x53\xff\x25\x2e\xfc\x57\x21\xab\xca\x0c\xad\x2b\xad\x72\x4e\xb7\x6b\x3f\x07\xa7\x98\x24\xae\x28\xa9\x48\xf2\x42\xda\xde\x0c\x61\x96\xc5\x89\xf8\x9b\x19\x7a\x71\x81\x9f\x98\x97\x14\x82\xcc\x50\xb2\x90\x95\xd3\xb7\xda\x69\x85\x95\xf1\x47\xd1\x0d\x4d\x53\xf6\xea\x1f\x83\xb2\xce\x67\x5d\x0c\x4d\x23\x2e\xe9\xbb\xd0\xd6\x0e\x50\xe2\x1d\xfc\x28\x8a\x4a\xb6\x15\x74\xe7\x0c\x7e\x14\xc5\x67\xeb\xa4\x1b\xec\x17\x58\xcc\x65\x6b\x5c\xb9\x32\x43\x5b\xd3\xb2\x16\x1f\x8c\x13\xaf\x7d\x42\xa1\x5b\xe7\x17\x53\x53\xfa\xcd\xa9\xfa\x52\xd1\x64\xbc\xa3\x74\x71\x05\xe9\xe2\x15\xcc\x4b\xf1\x59\xb7\xd6\xc9\xa6\xf9\x52\xd0\x0f\x00\x85\x5f\x38\xfe\x4e\x3b\x18\x04\x4a\x14\x57\x4e\x75\xd6\x4f\xa0\x78\xad\x7b\xeb\x9e\x38\xbd\x55\xe2\x72\x68\x8b\xda\x54\x37\xaa\x2f\xfd\xb6\x86\x0d\xf9\x6e\x25\xf6\x66\x78\xdc\x2b\xd1\x0f\x6d\xab\xdb\xb5\x78\x63\xd6\x56\xe8\xd6\xea\x5a\x89\x97\x00\x7d\x2c\xba\x46\x49\xab\x44\xaf\x64\x2d\x9e\x49\xe1\x64\xbf\x56\xee\xe4\x51\xb9\x6c\x64\x7b\xf3\x48\x6c\x7a\xb5\x3a\x79\x74\x64\x1f\x3d\x7f\x33\xe8\x5a\x35\xba\x55\xf6\xd9\x53\xf9\x5c\x54\xb2\x57\xab\xa1\x69\xf6\x62\xa9\x56\x7e\x0f\xee\xcd\x20\xaa\x8d\x6c\xd7\x7e\xff\xed\xdd\xc6\x57\xa8\x5b\xe1\x36\xda\x0a\x3f\x66\xdf\x15\x7e\xf4\xb5\x53\x65\xbd\x64\xd2\x06\x0d\x82\xe4\x5e\x59\xf1\x7e\x7f\xf5\x97\xf3\x63\x71\x61\xac\x5b\xf7\x0a\x7e\x5f\xfd\xe5\x5c\x3b\xf5\xa7\x63\xf1\xfe\xea\xea\x2f\xe7\xc2\xf4\xe2\x5a\xbf\x7c\xb1\x28\xea\x65\xc9\xe3\xf2\x52\x3a\xb9\xf4\x5d\x08\x6b\xc0\x67\xe2\x16\x0d\x79\xb0\x51\x3d\xe1\x04\x22\x69\x1d\x6c\x7e\xda\xf8\xb3\xdb\xbc\x5e\x96\x44\x1b\x02\x8e\x0f\x9e\x40\xd4\xcb\x38\xc0\x17\x38\x74\x83\x55\xe2\xdd\x87\x0f\x1f\x5f\xbe\x10\xaa\x5d\xeb\x56\x89\x9d\x76\x1b\x31\xb8\xd5\xff\x5e\xae\x55\xab\x7a\xd9\x94\x95\xf6\x63\xd3\x5b\xe5\xc4\xca\xf4\xd8\xd3\x45\x61\x6d\x53\x6e\x4d\xed\x6b\xb9\xba\x3a\x17\xef\x4d\xed\x69\xa5\xdb\x40\x43\xdc\xa6\xb0\xff\x68\xfc\x78\x85\x0a\xaf\x37\x4a\xc0\x96\x00\x20\xb3\xe2\xe1\x11\x35\xb5\x71\x21\x9e\x2d\xfb\xe7\x49\xbb\xe4\xd2\x9a\x66\x70\x54\x62\xb7\x51\x2d\xcc\x93\x75\xb2\x77\x42\x5a\x3e\x40\x16\x85\xea\xfb\x52\x6d\x3b\xb7\xf7\xb3\x43\x6d\x18\x63\x47\x24\x95\x6c\x5b\xe3\xc4\x52\x09\x80\x5f\x14\xad\x29\x91\x02\x78\x72\x5c\x6b\x2b\x97\x8d\x2a\xf1\x60\xe8\x99\xd2\xfd\xcd\x2f\x0e\x2c\x48\x10\x22\x83\xf0\x23\xe6\x0f\x1b\xa0\xfa\x7e\xe5\xc8\x56\x00\x52\x41\x24\x24\x6d\x21\xd3\x9b\x30\x6b\x48\x72\x42\xc2\xa4\x85\x05\x4f\x03\xaf\x99\xd3\xae\x6b\x74\x85\x55\xbf\xc1\xbc\xb8\x7c\xfc\xd1\x4b\x73\x9f\xc2\xc1\xf4\x73\x5e\xb2\x08\x06\xe7\x87\xb4\x17\x19\x6d\x87\xf2\x1b\xd5\x2b\xb1\x19\xd6\x78\x20\x35\x66\xa8\xbf\x83\x93\x81\xc7\x37\xd2\x5f\x71\x69\x8c\xc3\x39\x0f\x00\xb1\x8a\xd3\xa6\x81\xd3\xbe\x57\x5b\xe3\xfc\xc0\x51\x31\x4f\xe3\x76\xba\x69\x7c\x4f\xad\xbc\x55\xb5\x70\x06\xf7\x5b\xad\x7b\x55\x79\xc4\x8b\xa2\x1f\xda\x92\x16\xfb\xe5\xd0\xe2\x82\xe7\xb4\x7c\x65\x01\xd4\x76\xb0\x4e\x6c\xe4\xad\xf2\x03\xef\x59\x0e\x67\x66\xdb\x09\x5d\xea\x87\x16\xb6\xf0\xa2\xa8\xcd\x56\x02\xfb\xf0\x12\x7e\xd0\x77\x8a\x5f\x5b\x21\x57\x2b\x55\x39\x2b\xae\xae\xde\x8a\xaa\x31\xad\x12\x9f\x2e\xcf\xad\xdf\x06\x9b\xb2\x33\x3d\xb0\x1a\x57\x6f\xc5\x85\xe9\x5d\x48\x4b\x06\xda\x43\xb4\xc3\x76\xa9\x7a\xb1\xdb\xe8\x6a\x83\xc3\xee\x4b\x20\xa5\x15\xda\x8a\xc1\xea\x76\x7d\x2c\x1a\xe5\x7b\xa0\x1d\x2e\x00\xdf\x07\x5e\x75\x1e\x7c\xa5\xa4\x1b\x7a\x05\xcc\x44\xb9\x1c\x74\xe3\x74\x5b\xfa\x0a\x09\x0f\x90\x05\xf1\x02\x33\xa0\x04\x92\xec\x03\xf0\x65\x67\x3a\x64\x8a\x60\x57\x2d\x93\x72\x84\xd0\x6f\x79\x3f\x81\xa6\x53\xb8\xde\x2d\x35\xc9\x2f\xb8\x41\xdb\x8d\x58\xf5\x66\x2b\xec\xde\x3a\xb5\x85\x82\xb5\x54\x5b\xd3\x2e\x8a\x8d\x73\x1d\x8f\xcd\xdb\xeb\xeb\x0b\x1c\x9c\x90\x7a\xd7\xe8\xc8\x64\xed\xc2\x2a\x69\x3c\x7b\xd6\x0a\x8f\xd6\x2f\xe3\xa1\x6f\x46\x2b\xfc\xd3\xe5\x39\xe7\x1c\x98\x39\xdf\x84\xa7\xfe\xcf\x55\x9c\x40\x58\x09\xd6\x6c\xd5\x0e\xd6\xbb\x6e\x05\x30\x51\x8b\xa2\x31\xeb\xb2\x37\xc6\xf1\x72\x3f\x37\x6b\x5c\xe2\x59\x46\xac\xe9\x25\x2f\x5a\x3f\x38\xbb\xde\xb3\x90\x8d\x59\x03\xc1\xf3\xe3\xb5\x28\x54\x0b\xa4\xa5\x32\xad\x35\x8d\x62\xca\xf9\x0a\x52\xc5\x19\xa6\x22\x11\x9d\x81\x0c\xb3\xf4\xce\x53\x96\x5a\x43\x8f\x9d\x41\x7a\xea\x01\x8e\x85\x6c\xac\x11\x5d\xaf\x5b\xe7\x2b\x86\x39\x22\x0c\x8b\xa2\x30\x9d\x2f\x91\xd0\x90\x8f\x94\x10\x09\x07\xf4\x3b\xe4\x03\x0b\x09\x2b\x47\x57\xc9\xe1\x64\xb7\xae\x2b\xe9\x24\xba\x7a\x7f\x7d\x81\xc7\x11\xa4\xc2\x22\x38\x11\xaf\x7b\xb3\x8d\x09\x71\x7c\xde\x7b\x7c\x00\x23\xeb\xba\x57\xd6\x1e\x8b\xcb\xd7\x67\xe2\x3f\xff\xf4\xd3\x4f\x0b\xf1\xce\x79\xb2\xe7\x29\xc1\xdf\xfd\x0e\x96\x34\x0b\x11\xd4\xf4\xc2\x6d\x94\x78\xe4\xc9\xd8\x23\xf1\x0c\x72\xff\x0f\xf5\x55\x6e\xbb\x46\x2d\x2a\xb3\x7d\xee\x57\xe9\x56\xba\x45\xe1\x73\x54\xcf\x44\xe3\x4a\xb5\xb5\xe7\x56\x80\x21\xa6\xac\x84\xf4\x52\x76\xc2\x1e\xa3\x14\xe0\xc7\x7e\xa5\xfb\x6d\x9c\x20\x96\x0f\xfc\x4c\xf9\x1c\xe6\x2e\x75\xe3\xb9\x29\xbd\xda\x47\x50\xe8\xe9\x07\x9f\x48\x4b\xb3\xa0\x9d\x46\xc7\x55\x18\x63\x62\xa5\xfc\x0a\xfc\xe8\x36\xaa\xe7\xe1\xb6\x71\xbc\xcd\x6a\xe5\x99\x96\xd1\x6a\xf9\x88\xa9\xb8\x5a\x52\x90\xb0\x4c\x5e\x12\xc1\x38\x7b\xf9\x41\xa8\x5b\xd5\xfa\x85\xdd\xf5\xa6\x1e\x2a\x58\x39\xbc\x62\x1a\xd1\x2b\x6b\x86\xbe\x52\xb4\x50\x03\x41\xf6\x4d\xf3\x54\xbf\x92\x4d\xb3\x5f\x14\x7c\x30\xae\x7b\x79\x2b\x9d\xec\x93\x2a\xde\x70\x12\xb5\x7e\x02\x3b\x69\x54\x28\xe1\x7b\x5e\x0d\xd6\x79\xea\x01\xad\xb0\xd8\x28\xcc\xb6\x42\xf6\x4a\x0c\x5d\x63\x64\xad\x6a\xb1\xdc\x03\x8d\xb7\x7e\x2d\xd4\x6a\x25\x87\xc6\x2d\x8a\x95\xaa\x3d\x51\x52\x75\x49\x75\x35\xc6\xdc\x40\x65\x34\x54\xaf\x19\x40\x9c\x12\xd2\x73\x80\x38\x54\x32\x34\x96\xca\x07\xb0\xd0\x28\xaa\xc1\x19\x60\x51\x62\xbe\xe9\x54\x4b\xdd\x60\xc6\x44\x78\xbe\xa3\x16\xa6\x15\x8d\x5e\x52\xa7\xe3\x58\x8e\x98\x0c\x1e\x9d\x2b\x2f\x25\xa7\x79\xb3\x05\x26\x83\x0a\x0b\xde\x8e\xcb\x1e\x0b\xd3\x36\x7b\x62\x46\xfc\x16\x43\xc1\x94\xf9\x12\x1b\xc9\x52\x10\x03\x99\x22\x91\x34\x98\xe7\x87\x6a\x2f\x91\xed\x15\xb7\xb2\xd1\xb5\xc7\xc8\x08\xfc\x69\x31\xdf\x96\x45\x41\xbc\x72\x49\xf2\x7a\x79\xab\x41\x3e\x0e\x5b\x0c\x51\x92\x0c\xef\x47\xf8\xaf\x1e\xc0\x4b\x28\x76\xb6\x6c\x68\xcd\x47\xdf\x49\x1b\xe4\x63\x5c\x27\xbe\xbb\x50\x83\xe7\xdf\xed\xb1\xb8\xd5\xc0\x06\xd0\x22\x87\x71\x59\x7a\x1e\xb3\x51\xbe\x2a\xab\x14\x60\x10\xba\x7d\x3a\x74\x58\x66\x41\xc2\x21\xc9\x6b\xcc\xf7\x7b\x76\xb0\x36\xed\x63\x27\x5a\x85\x6c\x0b\x8f\xea\x88\xed\x13\xbd\x5e\x6f\x9c\x68\xcd\x6e\x41\xdc\x6f\x6f\x1d\x8e\x0e\xc8\x16\x8a\x5a\xea\xa0\x11\xbc\xf7\xe4\xe0\x8c\xa7\x2f\xb0\xf5\xc4\xba\x97\x2d\x2c\x3f\x46\xac\x6c\x68\x57\x60\x08\x21\x6f\x22\x9b\x22\xd0\x58\x49\x30\xe1\x3f\x03\xf5\x23\xa2\x97\xe6\x11\xb5\x8b\x30\x58\x9a\x15\x0d\x58\x31\x52\x57\x12\x00\xcb\xb5\x01\xc1\x96\x05\x3e\xcf\x61\x15\x4e\x59\x57\xae\xb5\x2b\x57\x9e\x04\x7b\xc4\xaf\xf1\x87\x67\xf9\x94\x75\xe2\xf1\x5a\xbb\xc7\xa2\x32\xdb\xad\x6c\xeb\x9f\xc5\xd1\x2d\x49\x0f\x7f\x02\x59\x55\xde\x4a\xdd\xc0\x18\x91\xc0\xdc\x2b\x14\x12\x6e\x55\x6f\xfd\xee\xa9\x8d\xb2\xc2\x73\xcd\x76\xe8\x80\xdf\x08\x92\x17\x09\x88\xb5\xd9\xb5\x9e\x8e\xc0\xa0\x9b\xd5\x4a\x57\x5a\x36\x62\xa9\x5b\xd9\xef\x03\x16\x38\x9d\x8e\xec\xb1\xf8\xf0\xf1\x1a\x00\xd7\xc6\xb3\x43\x35\x03\x2c\x0a\xdd\xc2\x7a\xf7\x52\x06\xad\x89\x54\xc4\xe2\x24\x8d\x6d\xa9\x4c\xef\x59\x02\xe8\x0d\x17\x3c\xc0\x40\x7b\x7e\x02\xe5\x13\xed\x45\x5c\x80\x85\x72\x81\xd7\xf5\xc3\xb0\x95\xae\xda\x10\x27\x8c\x8b\xc8\xfa\x45\xe8\x5b\x5a\x0d\x7d\xaf\x5a\x5c\x5b\x3f\x8b\x23\x2b\x9e\x3c\x17\x47\xc9\x71\x5d\x6e\xb5\xf5\xcc\x65\xe0\x54\xf9\xec\x16\x90\x40\xb9\xd9\xf9\x1c\x7b\x9b\x1e\xef\x50\xd0\x9f\xf1\x62\xa5\x55\x53\x8f\xdb\xeb\x19\x79\x3c\x3c\xd7\x73\x73\xed\xb3\x05\x66\x0f\x48\x14\x68\x74\xe6\x97\x86\x4f\xd7\xb2\xd1\xbf\xab\x94\x1f\xcc\x06\x34\xdb\xa0\x61\x45\xf2\xfe\x4b\x66\x24\x6d\x25\x2f\x55\x3b\xa0\x94\x70\x22\x7e\x55\x4d\x65\xb6\xea\x3b\xf1\xab\x7a\xdc\x2b\xb1\x6e\x60\xa9\x48\x47\x7a\x01\x63\x15\x2c\xe4\x63\x14\x2e\x56\x43\x0b\x67\x97\x93\x37\x0a\x54\x09\x71\xac\xe6\xd8\xc6\x83\xb3\x5b\x7c\xde\x98\xad\xfa\x52\x0c\x28\x94\x99\xa6\x0e\x62\x3d\xec\x5a\xd3\x23\x1f\x14\x64\xfc\x08\x13\x36\xa4\xdd\x69\x57\x6d\xca\xa0\x36\xf5\xa3\xef\xd4\x57\x98\x64\xc8\x8a\x5a\x54\xbf\x9b\x7d\x56\xb1\xdd\xc3\x42\xf4\x1d\x7f\xbf\x8f\xeb\x50\x2b\x5b\xd8\x8d\xd9\x81\x56\x32\x40\x5c\x6d\xcc\x0e\xf4\x91\x99\xe8\xb6\x58\x2c\x8a\xca\x34\x8d\x5c\x1a\x3f\x91\xb7\x11\xfe\x2c\x4d\xcd\x91\x6f\xf7\xa5\xe9\xd7\x54\x6d\xae\x85\xdb\xee\x49\xf1\x47\xb9\xa8\xf8\xb3\x05\x90\x79\xd2\x0f\xc3\x69\x70\x64\x0b\xd2\x77\x2d\x74\x5b\x82\x3a\x8d\x6b\x7e\xd7\xa2\x50\x95\xb6\xb3\x28\x3e\x93\xee\xf8\x4b\xc1\x70\x59\x9b\x90\x02\xe3\xa0\xdb\x4c\xc5\x69\x47\x3a\x4e\x5b\x58\x25\x7b\xd8\x81\x57\xf0\xa3\x28\x3e\xcb\xc1\x6d\xbe\x24\xda\xde\x92\x57\x1e\x6b\x7d\x41\x23\x49\x94\x39\xb2\x97\x1b\xd5\x79\x4e\x74\x6b\x61\xc9\x36\xbd\x92\xf5\x9e\xe4\xd6\xb0\x78\x7f\xc1\x83\x50\xb7\xfe\xfc\xf8\xae\xb0\xc6\x93\xac\xf2\x1b\x51\xbc\xd0\x6d\x8d\xe5\x73\x26\x02\xd5\xd0\xdb\x0e\x96\x89\xe9\xfb\xfd\x71\xae\xd1\xd8\x48\x2b\x96\x4a\xb5\x2c\x79\xd6\x0b\xd6\x17\xf9\xe5\x25\x2b\xa4\x3a\xa0\x28\x87\x1d\x88\x25\xcd\x84\xbb\xf1\x2d\xc4\xa3\x82\x6a\xc1\x93\xc3\x32\xa3\xeb\x39\xbc\x6f\xae\xc2\x0f\x7a\x49\x9c\xd6\x89\x38\x1d\xdc\x46\xb5\x8e\xc5\xc0\x2b\x48\x2f\x80\x73\x85\xfd\x57\xc9\xa6\xe8\xd5\x56\x79\xe1\xb2\xdc\xa2\xea\x1b\xbf\xc4\x7b\x55\xac\x4c\xbf\x86\xdd\x8a\xdb\xe9\x44\xbc\x86\x84\xb8\xbf\x3c\x80\x72\xe9\x99\x48\x10\x9c\xf2\x0b\x5f\x2c\x94\xad\xd9\x81\x0a\xda\x9f\xd6\xe3\x69\x1c\x3a\x60\x03\xf8\x8c\x45\x1e\x0e\xc4\x07\xab\x5a\x17\x27\xe3\x54\xb4\x6a\x27\x52\x28\x1a\xb2\x30\x23\x1e\xde\x13\xc7\x67\xcb\xe7\x47\xf6\xd9\xd3\xe5\xf3\x70\xc8\x55\x1b\x55\xdd\xe0\x16\xd0\xed\xd2\x7c\x05\xbd\x14\x31\x1a\xad\x27\x09\x47\xb5\xd8\x98\xa1\x27\xd9\xd0\xcb\x4e\x4e\x41\x6e\x36\xf7\x5d\x6f\x88\xc9\xa8\x60\x63\xc3\x1e\x8b\xeb\x1a\xb4\xd2\x7e\x65\xc3\x49\xcc\x4b\xbb\xeb\xcd\x46\x2f\xb5\xf3\x04\x10\x54\x29\xe7\xf0\xff\x82\x92\x55\x3d\x82\x48\x78\xa9\x3e\x90\x6b\x6d\x45\x17\x0a\xe0\x61\xd4\x98\xf5\x1a\x75\xb1\xf7\x2c\x0f\xcf\x5d\xc2\x50\x36\x7a\xab\xdd\x64\x75\x7b\x3a\x2e\x69\x97\x90\x1e\x9d\xa7\x09\xba\x13\x07\xba\x57\x95\x6a\x5d\xb3\x0f\xf5\xed\xa4\x76\xe2\x4f\x62\xab\xdb\xc1\x79\x59\x7e\xa3\x5a\xe1\xfa\xbd\x90\x6b\xe9\xab\xdd\x48\x5b\x0e\x2d\xcd\x98\xaa\x79\xbd\xbf\xd5\xc0\x4a\xf8\x7a\x79\x57\x26\x50\xb9\x7c\x2b\xbe\x0f\x93\xf9\xc3\x82\x34\xdf\x50\xca\x1f\xef\xbe\x3d\xda\x0b\x63\x72\x6e\x59\x98\x3e\x30\xa1\x04\x28\x24\x2c\x21\xd3\xaa\xb8\x30\x1a\x5d\xdd\xc0\x78\x2d\x07\xe7\x8c\x17\xb4\x1b\xbf\x18\x61\xc4\x42\x8b\xcf\x00\x0a\xd4\x20\x80\xcd\xe7\xe1\x6a\x1a\x8f\x51\x01\xc5\x3c\x84\x9b\x2f\xfc\x7d\xaf\x7e\x88\xc5\xc3\xde\x81\x12\x84\x02\x4b\x27\xdb\xea\x12\x32\xf1\xb2\x84\x37\x1f\x9f\xaa\x15\xa9\x99\xc3\x5c\xf6\xf9\x58\x40\xbe\xdf\x21\xea\x6b\xa7\x7b\x2f\x72\xf5\xc0\x82\x41\xe9\xc5\xa8\xae\xa8\x93\x98\xf6\xd8\xe5\x2d\x8e\x07\xaf\x33\xa6\xb4\x1b\x64\x9e\xb8\x79\xa2\x51\xed\xda\x6d\x50\xeb\xe8\x19\x77\x27\xfc\x78\x3b\xf1\x3f\x41\x5d\x2e\x2b\xa7\x7a\xbb\x28\x5a\xd3\x96\x40\x8e\x92\x4d\xf4\xc1\xb4\x4f\x90\x44\xb1\x24\xc6\x7a\x5f\xba\x84\xe0\x8a\xfd\x7a\xeb\xcd\xb0\xde\x90\xaa\xb2\xc0\xdd\xe3\x76\xa6\x5c\xc9\xca\xc1\xdd\xcc\xf5\xce\x3c\xa1\x8f\x9c\x18\x4e\x80\x61\x0c\x68\x30\x47\x74\xf3\x82\x72\xa6\x65\x54\xeb\xc9\x78\xaf\x2a\x73\xab\xfa\x3d\xcf\xc5\x2b\x9f\x2a\xa4\x70\xb1\x72\x06\x11\xf3\x78\x42\x76\xd6\xe2\x4b\x4a\x3d\x0c\xcf\x35\x32\xa4\x38\xbb\xa3\x99\x49\x07\x67\x5a\xd8\x1d\xec\x64\x64\xd0\x0f\x54\x0a\xdf\x4c\x41\x06\x8b\x6b\x8c\x4a\x2d\x8a\xe2\xb3\x5f\xd4\x5f\x0a\xda\x29\x2a\x99\x6a\xa2\x22\x9c\xc3\x3b\x0a\xc9\x66\x80\x67\x89\xea\xaf\xaa\xd7\xab\x3d\x02\x65\x34\xe2\xd0\x86\xc9\xd7\x6b\x38\x75\x23\x6b\x7b\x99\xd2\x76\x4a\x5e\x0d\xcd\xb1\xd8\x21\xcf\x1b\xcb\x04\x45\x16\x71\xc3\xc2\x53\x0a\xb8\x7e\x2f\x3e\x6f\x4d\x2d\x9b\x2f\xc5\x1e\xae\x19\xff\xa6\x6c\xd1\xc2\xd5\xae\x29\xb6\xa6\xc6\x42\xef\xe1\x47\x51\x7c\x5e\x99\x7e\xfb\xa5\xf0\xfc\xd4\x87\x91\xe8\xe9\x19\x2f\x4a\x4b\x84\x1f\xc8\x7a\x95\x5e\x5d\x87\x3e\x5f\xcc\x48\xa9\x97\x2a\xde\x60\xc3\xaf\xd0\xf9\xab\xab\xb7\xd7\xac\x5a\xbb\x7a\x2b\x6e\x14\xe1\x7e\xeb\x5c\x67\x3f\x81\xc2\x18\xb5\xbf\x9f\x2e\xcf\x8b\x0b\xb9\xf7\x02\x21\x26\xd3\x07\x64\x5c\x2b\xb9\xa5\x46\xfa\x9f\x88\xc2\x6f\x16\x4a\xf4\x3f\x4d\x9f\x5e\x95\x14\x20\x74\xbc\xca\x64\x62\x24\x72\xc5\x07\xb5\x7b\xd1\xcb\xb6\xe2\xc2\x9e\x1b\x5c\x42\x02\x96\x3c\x33\xdb\xad\x76\x57\xc3\x76\x2b\x61\x63\xe0\xb7\xb0\x98\x40\xd9\xef\x95\xb5\x68\x5f\x40\xd9\x5b\x4c\xa0\xec\xb3\x8d\xd1\x55\x92\x5b\xc1\x77\x71\xdd\x2b\x45\xb5\xbe\xe6\x5b\xb7\x02\x24\x00\x64\x4f\xf1\x57\x11\x14\x2b\x7c\xd3\xfb\xdb\xe4\x06\xea\xb7\x42\x36\xdd\x46\x82\x8c\x91\x80\x05\xb2\xe7\x33\xdb\x61\xab\x7a\x5d\x81\x72\x4e\xda\xcd\xf7\x4f\xca\x1f\x52\x22\x98\xa1\xa8\x8d\xfb\x16\x34\xfe\x37\x12\xc6\x83\xd8\x6c\x73\x7f\xd3\x8e\x01\xa3\xf0\x28\x8f\x01\xa1\xe9\x05\x94\xcb\x31\x5b\xfd\x3b\x8f\x05\xa0\xf2\xdf\x01\xdf\x91\x87\x00\x81\x33\x42\x85\xfa\x80\x2f\xf1\xc2\x27\x1f\x03\x47\x36\x47\xbd\x95\x5f\xef\x2b\xb8\x35\x33\xe5\x50\x33\x1f\x0b\x91\x7e\x41\xe2\xf1\x96\x93\x89\xc5\x6f\xc5\xd0\xdf\x01\xfc\xe9\xf2\x7c\xf1\x5b\xa1\xdb\xaa\x19\xea\x83\x0d\xb1\xc3\xd2\xba\xde\xb3\x5d\x8f\x8f\xec\x63\x8f\xb2\xbd\x69\xcd\xae\x0d\xf0\x9f\xf0\x5b\xc0\xf7\xcf\x6c\x43\x52\xea\x96\x74\x1e\xd1\x9a\x44\xd4\xba\xf6\x5c\x0c\xe8\x2e\x16\xf1\x3c\x4d\xf5\x19\x61\x97\x83\x3e\x98\x34\x4e\x81\xd0\x79\x11\x01\x54\x3b\x72\xab\x16\xd1\xee\xa5\xf4\xcc\x70\xe9\x25\xf0\x36\x15\x99\x3d\x13\xc0\x54\x1a\xd8\x65\x80\x58\xe0\xc5\xe4\xb4\xdc\x88\x0c\x1d\x2c\x6e\xfa\xf5\x4c\xe9\x8f\xd3\x4b\xd3\x03\xe5\x9d\x92\xdb\x19\x04\x81\xc0\x1c\x2c\x88\x73\x0f\x85\xe0\xd0\x19\x51\xc8\x69\x39\x0f\xb5\x88\xa3\x14\x06\x3c\x9d\x9b\x54\xc1\x10\xc6\x39\xd7\x5a\x65\x52\x56\xb9\xd5\x96\x27\xeb\x7a\x03\x1a\xca\x94\x75\x08\x4a\xef\x46\x55\x9e\xab\xe6\x25\x67\x41\x66\xf5\x29\x60\x52\xc0\xfa\xce\x45\x01\x47\x75\x0f\xa6\x4d\x89\x5a\x8c\x14\x95\x74\x5e\x6e\xe5\x8d\x12\x76\xf0\xac\xd9\x46\x3a\x92\x52\xf2\xc9\xf2\x5c\x32\xa0\xc2\x3a\x43\xcb\x27\xe8\xcd\xae\xf5\xc7\xdb\x7d\xf8\x01\xec\x1b\x51\xa7\x7a\xd4\x29\x62\x42\x1e\x80\x0e\xa1\x0d\x2a\x3e\xf5\x55\xc3\xdd\xda\x1b\x7d\xab\x48\xc9\x17\x74\x9b\x90\xb7\x28\x1a\x69\x5d\xe9\xd7\x23\x36\x17\xc4\x59\x73\xeb\x37\xab\xaf\xcf\xe7\x8a\xde\xaf\x1a\xb0\x99\x01\x0c\xa8\xd5\x6b\xa9\x7f\x7e\x29\x86\x29\x6a\x1a\xb3\x53\xf5\xb1\xf0\xab\xa8\xcd\x8d\x00\x80\x22\xc8\x66\x27\xf7\x96\x24\x18\xa6\x6b\xa6\xa5\xb1\x5a\x14\x51\x47\x68\x37\xa5\x3f\x70\x03\x93\x7e\xeb\x19\x19\x5e\x21\x66\x15\xaf\xbb\x3d\x14\xea\xfa\x7e\x16\x47\xb6\x18\xf0\x7e\x01\xc0\xf7\x09\x1a\x30\xae\xa1\x93\xe8\x36\x61\x8a\x08\xc5\xb1\x17\x65\x84\x76\x8f\xad\x5f\x67\xc3\x16\x45\xa0\x25\x5d\x48\x04\xd9\xad\x36\xc3\xb2\x51\x4f\x50\x32\xd6\xbc\xaa\x83\xaa\x71\xc4\x03\x87\x66\xdd\x16\x85\x75\xba\x69\xfc\x18\xb3\x19\x5b\x26\xa9\x42\x2e\x6c\x3e\x18\x08\xbb\xd1\x9d\x30\x70\x99\x97\x0e\x52\x5c\xb0\x89\x20\xe8\x8c\xa8\x15\x48\xde\xa6\x17\xae\x97\xad\x5d\x29\xb8\xdd\xdc\xe2\xfd\xc0\x82\xaa\xf6\x72\x25\x9a\xad\x1d\xa8\x19\x95\x18\x50\x75\x7a\xea\xc0\xec\x24\x13\x99\x57\x8d\xb6\x05\x70\x85\x06\x6d\x80\x31\x8d\x98\x2c\xb7\xc1\x2f\xb0\xc9\x10\xc0\x6d\x7a\xb6\x48\x66\xc7\x61\x95\x69\xe0\xb0\x7e\x58\x4d\xf7\xf4\xbb\x40\xf3\xad\x12\x19\xa4\x6c\x3f\x5c\x43\x0e\xb3\x4e\xe3\x2d\x51\x7c\xf6\xeb\xfc\x4b\x81\xb2\x53\x19\xae\x28\xcf\x50\x96\x42\x8e\x1b\x12\x8b\xbf\x1b\xdd\x96\x70\xdf\xf6\x5f\x46\xb7\x70\x39\x57\x64\x26\x29\x23\xf5\x20\x19\xe4\xed\xc1\x56\x66\xd9\xe8\x8a\xad\xf2\xf6\xc5\xca\xc0\xee\x01\xed\xe1\x6b\xfe\x5d\x58\x27\x3d\x81\x20\x83\x0a\xff\x2b\x53\x47\x62\x21\xd4\x55\xbf\xe6\xdf\x94\x1a\x92\x8a\xa1\x0d\x29\x9f\xe8\x67\x51\x78\xbe\x7a\x01\x44\x1d\xee\x44\x70\xeb\xb2\xf1\x68\x24\xe7\xce\xa9\xbe\x15\x47\xff\x18\xed\x71\x3f\x4a\x6c\x77\xf8\xa5\x88\xd6\x89\x6c\x98\x38\x77\x21\x14\x06\x12\xef\x4e\x0b\xda\x9d\x96\x18\xec\x3f\xab\xbd\x2d\xac\xaa\x86\x1e\x07\xe8\x8a\x7e\xce\x2b\x5a\x49\xf3\x3b\x32\xbe\x8c\x6a\x7d\x9b\xdb\x73\xd8\x82\x56\xcb\x89\x78\x89\x3f\x58\xd5\x54\x74\x30\x11\x89\x85\x25\xcd\x4c\xe8\x0a\x19\xd8\xa6\x2a\xa6\x5c\xdf\xa2\xad\x40\x24\xc0\x72\xf0\xc5\x1b\x1c\xb0\x2b\xd3\x0b\xd9\xee\xe3\x15\x9e\x6a\xe0\x08\x6b\x93\x0b\x7d\x7b\x0c\xe5\x3c\xd8\x4e\x2d\xf9\x96\x37\x9a\xc7\x6c\x65\xad\xc4\xad\x96\x41\x45\x95\x30\x3e\xe1\x64\x66\xb5\x67\xa6\x0d\x00\x81\x06\x55\xd2\xcc\xf7\xf0\x44\x3b\xc3\xba\x01\xb7\x51\x1a\x2f\x59\x5b\xe0\x89\x56\x43\xd3\xf0\xe9\xf6\x7a\x68\x1a\x34\xf6\x9a\x1a\x32\xfb\x2a\xe8\xb2\xf9\x9c\x7e\x16\x43\x57\x7b\xf1\x33\x8e\xe5\x27\x48\x08\x63\x99\xe7\x27\x62\x25\x8c\x2a\x17\x0b\xca\x49\x04\xaf\x13\x39\xb3\xd9\x2f\x78\x5f\xce\x98\x2c\xd3\x16\xad\xc7\x20\x51\x7f\x07\x34\x87\x3a\x0e\x13\x85\xd6\x3c\x30\xb4\x3b\xb9\x17\x1b\xb3\x13\x8d\x6e\x6f\x2c\xcd\x94\x1f\xa7\x54\xc4\x06\x95\xab\xd3\xed\xa0\x48\xe8\xf1\x3f\xa7\x06\xb2\x74\xfb\x4f\xb6\x00\xcb\x3d\xeb\xb5\xd0\x5a\x80\x36\x80\x58\xee\x05\xc8\x75\x87\xcd\x0e\xc6\xf6\x06\x6c\x6e\xc0\xd7\xe8\x60\xed\x10\x29\xd4\x27\xab\xc4\x19\x5a\x40\xd0\x1e\xab\x36\xc6\x58\xba\x4b\x88\x74\xcc\xa7\x81\x5a\x8f\xc8\x18\x4d\x4b\xc4\x83\xb3\x76\xca\x96\x18\xb0\xcf\x69\x07\x95\x74\x39\x18\xa1\x69\x43\x9d\xd1\xa5\xe1\x29\xe3\x44\x4b\x0b\xee\x13\x50\x99\x52\x6f\x51\xf4\xfc\xc4\x76\x18\x30\xe1\x41\xaa\x80\xec\x45\xde\x9e\xf1\x2a\xa1\x7a\xf9\x32\xee\x9e\xc5\xc2\x4b\x21\xbd\x85\xc6\xe9\x0f\x74\xc9\x34\x19\xe3\xc5\xfd\x08\xf9\x7e\xf0\x92\xfc\x0f\x60\x44\x10\x34\x24\x7e\x8f\x95\x23\x10\x52\x2a\x64\x90\xb3\xac\x33\xd7\x75\x90\x6d\x1e\xb5\x7e\xb2\x63\xb8\xdc\x4e\xda\xac\xe3\xb4\xc6\x49\x08\x92\x70\xeb\x93\x11\xa5\x44\x13\x1e\x9b\x46\xb5\xfd\xbb\xb4\x84\xf1\x2d\x0a\x14\x38\x6c\x90\x33\x4e\x91\x62\x2a\xcb\x96\xf4\x21\x9f\x8c\xe9\x33\xc2\xaa\xd8\x8c\x2c\x25\xbd\x5d\xaf\x41\xbb\x91\x93\xe0\x09\xd1\xcd\x08\x2c\x8c\x82\x01\xa3\xa8\x48\x57\x17\x05\xa3\xf2\xc7\x16\xfc\xe2\x94\xa0\x3f\xbb\x52\x60\x19\x4c\xc9\xbc\x03\x38\x17\x17\x7e\x68\x63\xa3\x88\x1c\x62\x5f\x5f\x52\xc2\x28\x9f\x3b\x83\xd9\xc0\x67\x6b\x3b\xd7\x9b\xde\x33\xe2\x2a\x9c\x18\xba\x45\x9b\xb4\x60\x5a\x90\x91\x25\xf1\x12\xe8\x94\xd8\x49\xbc\xce\x61\x2a\xf5\xcb\xb8\xf6\xb8\x80\x5e\xe5\x17\x41\xd8\xb7\x7c\xfb\x7c\x57\xc8\xba\x86\xc5\x1d\x4d\x34\x6a\x20\x1c\xb9\x32\xd1\x43\xa5\x10\x68\xc2\x11\x52\xcb\xec\x9a\xca\xa2\xc6\xe8\xe1\x57\x53\x8f\x8f\xec\xe3\xff\x86\x5b\xa9\xac\xaa\x78\x2b\x15\x1a\x39\xda\x5a\x93\x5e\x4e\xf7\x98\xac\x6b\xe0\x84\x68\x2d\x27\xfc\x0c\xad\xe6\xc0\xd6\xf8\x5a\x50\x10\xf1\xc3\xf3\x67\xb5\x07\xe6\x87\x56\x02\x9c\x49\xda\x0a\x09\x56\xa9\x60\xca\x8e\x52\x89\x9d\x08\xbd\xf9\x9c\x9f\xc2\xf5\x91\x55\x04\x0b\x2c\x9e\x6c\xf7\x9e\x65\x07\xdb\x5f\x64\x87\x9d\x11\x6b\x19\x8c\x7d\xc2\x81\x96\x33\xd5\x1a\xae\xcb\x36\x7a\xbd\x69\xf6\x42\x6f\x3b\xd3\x3b\x58\x49\x6c\xb4\x10\xc5\x50\xff\xd5\xab\xca\xac\x5b\xfd\x3b\x0c\xec\x16\x8d\x96\xc3\x35\xc8\x33\xeb\x7a\xd3\xae\x9f\xbf\x04\x9b\xa6\x1b\x4f\x78\x36\x66\xf7\xcb\xb3\xa7\x94\x2e\xce\x60\x0a\xcd\xe0\xc4\x1b\xed\xde\x0e\xcb\xc7\x56\xac\x07\x5d\xc3\x59\xfb\x4c\x26\x5e\x16\x64\x07\x85\x16\xe5\xbb\x36\x0c\x0b\xf8\x5c\x98\x5e\x58\xd3\xdc\xaa\x51\x11\xb3\xdd\xe2\xf4\x2e\x1b\xb5\x45\x48\x68\x3f\x98\x4e\xa9\x16\x46\x4e\xf5\x34\x3e\x57\x57\x6f\x17\x61\x89\xc7\xf9\xa1\x69\x63\x06\x35\xd3\x97\x10\x73\xe8\x81\x2b\xd2\x7e\xc6\x13\x08\x94\x25\x5c\x0a\x18\x8f\x69\x29\x98\x47\xeb\x99\x95\x89\xa6\x06\xe4\x0f\x8f\x82\x8b\x8b\x13\xdf\x0e\x64\xc0\x7c\x5a\x35\xd1\xb7\xd2\xc2\x4a\x16\xaf\x3f\x74\x58\x30\xf6\x3b\x27\x36\x0f\x96\xeb\x68\x7f\x13\x45\xc3\xbe\x13\x3d\xe3\x0e\x24\x14\x8d\x46\x24\xd2\xb4\x31\x4c\x46\xd5\x14\xd2\x34\x6e\x45\x4a\xcd\xd0\x48\x14\x29\x1a\x2e\x48\x65\x81\x5e\x3f\x90\x9a\x4d\xea\x8d\x1d\xe7\xea\x1e\x40\xd1\xa0\x4f\xa7\x30\x1c\xa6\x45\x15\x08\x4d\xd4\xb9\x44\x93\x3a\xc8\x68\x4d\x99\x08\x6c\x1f\x0c\x5d\xe6\x0a\x4e\x84\x39\xb1\xce\xb3\x2a\xe9\x56\xf6\x8d\x00\xf3\x7b\x34\x1f\x04\x1d\xca\xff\x26\x6a\xb9\xb7\x85\x33\x37\xaa\x9d\x29\x02\xe9\x87\x0a\x15\x0f\xbc\x9e\x4b\xee\x9f\xd0\x3f\x0b\xa5\x46\x37\xd8\x9f\xd3\x3c\xf4\xb6\xcb\xc0\xcd\x6a\xe5\xd3\x56\xab\x22\xbb\x01\x23\x1b\x39\x34\xa8\x4c\xb3\xd8\x81\x20\xd8\x8b\xa6\x99\x60\x63\x93\x5d\x7c\x59\xb6\xb6\x01\xeb\x78\x99\xef\x59\xbf\x6b\x89\x20\x25\x77\x63\xb8\x73\x3d\xd5\x12\x56\xae\x94\xe8\x1a\x59\xa9\x05\xbb\xce\x80\xad\x2c\x10\x37\x7f\x38\xf3\x1d\x9d\xc6\x9b\xee\xc6\x58\x35\x26\x76\x23\x15\x63\x22\x27\x2e\xd2\xa6\x6f\x9c\xeb\xd0\x24\x23\xb5\xee\x8f\x2c\x03\x5d\xfc\x03\xfb\x23\x1a\xd3\xae\x55\x1f\x2c\x3e\x7d\x93\xba\x46\x92\xbd\x28\xec\x5e\xdf\xdd\xc0\x0b\x05\x7b\x03\x36\xee\xac\xa1\x48\x1c\x89\xcf\x3f\x7e\xb1\x47\x9f\x7f\xfa\x62\x1f\x3d\xbf\x50\xbd\x05\x73\xfa\x53\xec\xc6\xb5\x5f\x1e\x30\x22\xd2\xd2\x7d\x75\xaf\x6a\xdf\x21\xd9\x1c\x0b\xb5\x58\x2f\xc4\x33\x3f\x04\xcf\x8f\x3e\xff\xe9\x8b\x7d\xf6\x14\x7e\x2f\xa6\x93\x19\xed\xf1\x71\x6e\x1f\xb6\x96\x2a\xd9\x96\xff\x18\xf9\x78\xdd\x33\xaa\x60\x9d\xe7\x27\xca\x1f\xbc\xc0\xd4\xe7\x4b\x90\xef\x57\xad\xaa\x7a\xe5\x40\x8e\x47\x4d\x26\xca\xb8\x90\x9a\x95\xf0\x15\x4d\xef\x64\xaf\x37\xaa\xa5\x72\x9c\x9a\x95\x22\x4d\x1f\xdf\x83\x16\x33\x37\xb4\x39\xb6\xb8\x98\x46\xba\xd5\x70\xfd\x1f\x18\x91\x60\xb3\xf1\x5d\x91\xdd\x32\xfb\x1d\xfc\x20\xac\xb3\xba\xf6\x1c\x7d\x4b\x3c\x6b\xab\xbe\x9b\x99\x4c\xbe\x3e\x99\x4e\xa6\x3c\xa8\x88\x9c\x62\x89\x04\xf4\x30\x02\xb0\x85\x68\x51\x26\x18\x13\xeb\x11\x79\x3d\x74\xe3\x6e\xc3\xda\x3b\xb8\xe8\xf2\x2b\x79\x7b\x07\x2a\x22\x9d\xd9\x6d\x3a\xd9\xf7\x7b\xfa\x19\x5c\xfb\x9c\xf2\x9c\x8c\xec\x75\xb3\xff\x56\xb2\x20\x5e\xc9\x6a\x93\xd3\x24\xa0\x3c\x6c\xe8\x4d\x67\x44\xa5\x8e\xc5\xb3\xe5\x73\x9a\xb4\x1b\xa5\x3a\x62\xc9\xb0\x49\x23\x02\xf6\xec\xe9\x32\xdf\x96\xbd\x42\x6f\x3c\xa7\xa6\x14\xf3\x32\xe4\xdd\x39\x30\x07\x10\x84\xd5\x91\xa0\xc9\x29\xec\x81\x65\x71\x18\x63\xce\x63\x8c\x90\x85\x53\x97\x4b\x8f\xcf\xdd\xe9\xf1\x11\xbd\x56\xe9\x38\x79\x10\x39\xe2\xc2\x73\x16\x5f\x41\x7b\xd8\xa8\x5b\xd5\x20\xe3\x51\x7b\x62\x02\x26\x13\x2b\x4f\x27\x82\x6c\xeb\x0e\xad\xf6\x3b\xb8\x8f\x99\x66\x3c\x74\xfb\x84\x7a\xf3\x51\x61\xd9\x01\x17\x66\x89\x7c\x40\x90\x1f\x66\xcf\x01\x5b\x84\x09\xf2\x6c\x2b\x17\x79\xc3\xb3\xec\x27\x07\x00\x91\xdb\x08\xbb\x05\x0b\x47\xf5\x7d\x9c\x28\xe0\xf2\xc9\x63\x0a\xd6\xb5\x33\x61\xa7\x6c\xd0\x54\x59\x9c\x5e\xbc\xb3\x8b\x22\x54\xc8\x48\x61\x97\x60\x13\x76\xa8\xbb\x07\x83\xe6\xa6\x99\x6c\x35\xd6\x9f\x61\x71\xe2\x6e\xa1\x4d\xc8\xdf\x86\x4e\x4d\x3a\x84\x9d\xc9\xf3\x71\xdc\x95\x4d\x56\x00\xd6\x06\x2d\x19\x0b\x6a\xa1\xab\xdf\x89\xf7\xf1\x3e\xcd\xcf\x6c\xb7\xf7\xa2\x4f\x70\xac\x38\xa6\x03\x56\xec\x40\x78\x19\x39\x74\x68\x87\x14\x5f\x78\xfe\xb5\x0f\xcc\x33\x37\x98\xd8\xe7\x74\x2a\x53\x1e\x7a\x76\x32\x23\x47\x3d\x5b\x6c\x8e\xad\xee\x18\x4f\xde\xe7\xfb\x98\x6c\xb3\xca\xe9\xdb\xc1\x45\x9e\xf6\x2a\x59\xde\x17\xb3\xd5\x86\x6d\x8f\x55\x8f\x96\xb7\x40\x19\x10\x8d\x5e\x81\x49\x42\xc5\x22\xae\x88\x84\x5d\x90\x56\xec\x54\xd3\xa4\xab\x03\x2f\x6b\x6c\x58\x24\x23\xb9\x29\x93\x99\xec\xa2\x80\x0b\x81\x45\xeb\x65\x5f\x74\xa9\x09\x4a\x2a\xba\x8f\x82\x01\x68\xf7\xd9\x85\x93\x5d\x60\x31\xb8\xc6\x0a\xe4\xe8\x9c\x2e\xb5\x92\xb8\x0f\x09\x54\xe2\xb5\x83\x9e\xa4\xf9\xb9\x82\x63\x9f\xdc\x00\x81\x65\xbf\x92\x5b\x4b\x04\x08\x58\x54\xb5\xa2\x3b\xe2\xa4\x92\x3b\xa6\x04\xaf\x40\xb0\x01\xdc\xc0\x34\x6d\xd4\xf4\x78\x51\x98\x01\xdd\xd3\xf2\xd1\x9d\x78\xde\xda\x3b\x1a\x97\x56\x91\xe9\x50\x90\x18\x40\x5f\x13\xbc\x20\x93\x8e\x88\x20\x2d\xb9\x68\xe5\x46\xeb\x3d\xb3\x09\x26\xa0\x44\x95\xaf\x22\x6b\xce\xb4\x3e\xde\x42\x32\xb2\x4e\xf5\x5b\xd9\x82\x0d\x2e\xde\xb3\xb0\x7e\xe2\xec\xf4\xc3\x87\x8f\xd7\x51\x2d\xe1\x89\x5f\x5b\x03\xaf\xc5\xae\x4b\x93\x76\xb1\x03\x53\xd8\xb5\x39\x44\x74\xa1\xa2\x12\x87\xe0\x52\xd9\x2f\x31\x57\x5e\x1b\xd0\xda\xc0\xcd\x33\x4b\xaf\x59\xfb\xeb\x83\x2b\xe4\xb3\x1f\xe2\x2f\x05\xdf\xe2\x7f\xf4\xff\x8b\xd4\x10\x22\xb1\x4d\x01\x7a\x1b\x4d\x58\xa2\x6f\xbd\x58\x1b\x53\x4f\x0c\x23\x40\x2c\x1d\xc0\x7d\xac\x32\xdb\xce\x00\xe7\xb3\x12\x60\xbf\x7a\xec\x77\x97\xe9\x81\x4a\x82\x48\xd3\xea\x7f\x0c\xa0\x90\x02\x73\xd3\x45\x71\xab\xad\x5e\xea\x06\x45\xe8\xbf\x86\x0f\x4c\xf7\xbf\x46\xde\xd5\x49\xe5\xda\x8a\x67\xb6\x93\xad\xa8\x1a\x69\xed\xc9\xa3\x41\x0b\xcf\x37\x3b\xf5\xd5\x3d\x7a\x7e\xd1\x83\xa5\xe3\xb3\xa7\x1e\xe2\xf9\x04\x5d\xb9\x32\x7d\x85\xf7\xa6\xc1\xa6\x1b\x88\x15\xa5\xfb\x6d\xda\x02\x17\x93\x6c\x55\x1c\xf8\x3f\x50\xe7\xca\xf4\x37\xb1\x1f\xdf\xd3\x05\x83\x59\x21\xc1\xbe\x95\xcd\x90\xdf\x36\xf9\xda\x7d\x19\xfb\x43\x01\xae\xe3\xb1\x2c\x98\xfb\x43\x30\x22\x9f\xa1\xdb\xf5\x2f\x30\x68\xee\xee\x70\x24\x6f\x55\xd3\x79\xf1\xf0\xbb\x02\x5a\x42\xf7\xeb\xe3\xb8\x36\x90\xc7\x7e\xd5\x3e\x0f\x9c\xab\x21\x75\x66\x36\x92\x28\x15\xb2\x61\xc9\x2c\x99\x4d\x4f\x4e\xa1\x13\xe9\x9d\xf4\x9e\x4c\xa3\xc2\xb1\x65\xab\x5e\x83\x6f\x38\xa6\x37\x12\xae\xaa\x43\x60\x23\x48\x5c\x6b\xa7\xd7\xad\xe9\x93\x61\xb8\x02\xe3\x1f\xb1\x08\x59\x82\x43\x25\xd9\xa2\xd1\x95\x6a\x2d\x50\x3b\xfc\xc5\x29\x93\xe2\x52\x30\x2c\x5c\x3e\xfa\x03\x83\xb6\x82\xff\x41\xdf\x33\xa5\x08\x90\xab\x2c\xe4\xe0\x4c\xa9\x5b\xed\xc0\x2b\x28\x38\x91\xb9\xd1\x7a\xc5\x13\x8a\xcd\x96\xd0\x03\x1a\xa9\x3f\xe1\x21\xc7\x1e\x9a\x1e\xf2\xe8\x49\x26\x88\xfc\x90\xc9\x62\x01\xc6\x0f\x12\x04\x1a\x7d\x52\x54\xa4\xb2\xeb\x87\x16\xef\xda\x87\x56\x65\x89\x51\x30\x42\x3e\xa0\xdd\x53\x9c\x8c\x27\xae\x97\xd5\x8d\x27\x2e\xbd\x5a\xa9\x5e\xb5\x15\xb8\x1e\x48\x97\x28\x32\xd0\x38\xc2\xb4\x74\x10\xf8\x62\x8c\x1c\xc2\xf8\xdc\x82\x07\x0c\x7a\x52\x61\x00\x1f\x9f\xf2\xfd\xc6\x0c\xfd\x0f\x0c\xc8\xaa\xf2\x00\x47\x17\x3e\xa3\x7c\x6e\x27\x29\x14\xc8\x7e\x50\xb4\xca\x1f\x0a\xb2\x47\xd7\xec\x44\xc7\x61\xd9\xc1\x35\x38\x13\x12\x3e\x50\xdd\xd9\x7d\x5b\x45\xe5\xdd\x15\x7c\x15\x3b\xe9\xaa\x0d\x5a\x53\xfc\x4a\x3f\xc1\x98\x62\x2d\x7f\xc7\xd4\xab\xf0\x01\x5b\xc0\xd2\xa6\xb0\x71\x01\xd3\xca\x4d\x82\x32\xc4\xc4\xcc\x2c\x65\xbf\x10\xef\xe5\x57\xbd\x1d\xb6\xe2\x3f\x7f\xfc\x29\xb1\xb6\x24\x93\xfe\xc5\x14\x27\xd9\xfa\x83\x2d\x04\x39\xa3\xc6\x62\x64\x9c\xd1\x2b\x59\x6d\xc8\x01\xc5\xac\x4a\x0c\x07\x03\xac\xe4\x75\x30\x2f\xf3\x24\x0d\xe0\x54\x2d\xb6\xd4\x86\x00\x08\x45\x7d\x4b\x8f\x72\xb3\x91\xc5\x41\xe3\x8f\xb1\x01\xe3\x3d\x26\x20\xad\x52\x75\xe9\x85\x1d\xa6\x5c\x99\x35\x73\x41\x71\xb9\x38\x00\x51\x08\xcc\x85\x11\x88\xd2\xdc\xc3\x87\x40\x70\x63\xce\xe9\x32\xf8\x24\x2e\x9b\x41\x3d\x7a\x8e\x4b\x81\x89\x32\x63\xa5\x4d\xf6\x9e\x42\x83\x25\xbb\x8c\x20\x16\x48\x79\xe3\x8a\x3d\x83\x20\x1e\x71\xc1\xce\x40\x65\xe7\x36\x09\x4c\x32\x51\x15\x3e\x7d\xf3\xee\x1a\x6c\x62\xef\x28\x5e\xe2\xed\x4a\xc9\x2e\x65\x7f\xc3\xb0\x54\x10\x6f\x23\xb9\x50\xe5\x98\x66\x32\x1d\x8c\xe5\x1e\x63\x28\x70\x2c\x95\x4e\xfa\xc5\xc5\x75\x79\x4e\x41\x5b\x8b\x62\x43\xab\x61\x42\x33\x4e\x38\x62\xc7\x36\x10\xb2\x7c\x69\x30\xb6\xe8\x82\x5a\xc9\x86\xfd\x4f\xdf\x61\x22\x15\xf4\x89\x70\x75\x94\x5b\x50\xb1\xbb\x8c\x4c\x43\xef\x30\xda\x60\x2c\x17\x57\x43\x6a\x27\x47\xfb\x9a\x4e\x29\x0a\xde\x66\x56\x05\x1e\x34\x9c\x4e\xc7\x8e\xff\x2a\xbc\x0c\x57\x36\xba\xbd\x01\xf6\xac\xdb\xc7\x84\x84\x1b\x3d\x33\x9d\x56\xf5\x77\x49\x1e\xab\x47\x2e\x60\xf6\xff\xdf\xff\xfb\xff\x79\x72\xe6\xdb\x7d\xe6\xfa\xe6\xc9\x19\xcb\x86\x1e\x1e\xc7\x11\x11\x88\x8f\x7f\x2e\x86\x76\x47\xb6\xab\x9f\xf0\x57\xc1\xdf\x40\x67\x8a\xa1\xb5\x64\x44\x01\x3f\x0a\xfa\xf2\xe4\xa6\xa0\xa0\x73\x9e\xce\x14\x45\x1b\x8e\xc9\x0f\x26\x3b\x29\xff\x31\xe8\xea\xa6\xc4\x2b\xb1\x13\xf1\x17\xff\x25\x20\xe0\x18\x31\x0b\xfe\xdc\x09\x87\x08\x2c\xda\xd1\x49\x94\x7a\x90\x02\xe5\x21\x4f\xf8\x78\xe8\xc8\x9c\xf9\xd9\x33\xd9\x67\xc0\x46\xb7\xaa\xe8\x06\xbb\x41\x29\x8c\x6b\xbb\x18\xec\x06\xc2\xa9\x7c\xc5\x70\x3d\x29\x06\x98\x9a\x09\x8e\xa5\xec\x55\xb9\x0d\x1e\x07\xe3\xdd\x1d\x16\x0e\x39\xb5\xc5\x4b\xb5\xbd\x72\x8b\xa2\xc0\x43\x14\x5d\x0e\x6c\x11\xce\x45\x3a\x0f\x5d\xaf\x00\x69\xaf\x94\x87\x74\xaa\x67\x63\x3f\xd9\xd6\xa5\x93\x6b\x2c\xe9\x99\x17\x2a\x6a\x7a\xe1\xe4\x9a\x10\x01\xe6\x17\xf4\xb3\x70\x12\x0c\xca\xae\xe5\x7a\x1a\x01\xaf\x1b\x9a\x66\x1a\x27\xaf\x91\x4b\x05\xc9\xe7\xf0\xa3\xd8\xfa\x46\x3a\xd3\x2a\x3c\xff\xf8\xa3\xa8\xc0\x91\xc2\x06\x97\x0a\x5b\xac\x35\x1f\xf2\x79\x1b\x28\x10\x01\x6a\xff\xf0\x27\x0c\x41\xd9\xcb\x9d\x4f\x93\x3b\xfc\xdc\x68\x4b\xf1\x14\xdf\xe2\x2f\x4c\xc6\x9b\x17\x00\x85\xeb\x96\x00\x0f\x32\x04\xed\x91\x0b\xfe\x8d\x59\xce\x78\xae\xac\x8f\xb3\xc3\x06\x39\xce\x18\x81\x19\xc8\x16\xdb\x8d\xd9\xb5\xc5\xad\xae\x95\x81\x43\x83\x62\x23\x60\x44\xc9\x65\x6f\x76\x96\xd9\x46\x3f\xda\xf8\xe9\xa7\xb7\x7d\x1c\xe3\x28\xbc\xbd\x7e\x7f\xfe\x9f\x02\x70\xf8\x79\x58\x14\x61\x26\x16\xe6\x56\xf5\x14\xc0\xe3\x23\xfd\x8c\x99\xe4\x3a\x9a\x0c\x19\x98\x4d\xaa\x38\x72\x01\xd4\x3a\xd9\x64\x90\x57\x3e\x61\x06\x10\xa3\x0b\x9e\x36\xcd\x4c\x1e\x99\x12\x95\xcb\x7d\x30\x86\xaa\x05\x5c\xd0\x78\x12\x0c\x97\x34\x11\x98\x8d\x66\xc6\xcc\x1b\x49\x01\x23\x1e\xae\x50\xb5\x5f\xfa\x0b\x88\x41\x89\x36\x72\x1f\xd4\x0e\x19\x54\xca\x42\xcb\xa9\x32\x58\xd0\x81\x2f\x51\x0a\xe0\xff\x71\xf6\xab\x5a\xbb\x2c\xb3\xeb\x15\xac\x03\x6c\x96\x45\x12\x07\x23\x8b\x0d\xb2\x0c\x88\xcc\x7d\x09\xc8\x5a\xd3\x96\xfe\x48\x2d\x79\xc3\x9d\x21\xe7\xef\x33\x45\x6b\xda\x27\x70\xde\x42\x66\xd6\x08\x20\x45\x69\x4b\x1c\x2f\x21\x06\xdb\x0e\xd6\x95\x4b\x55\x9a\xb6\x94\x71\x6c\xfe\xc6\x36\xbc\x4b\x70\x0b\x93\xbc\x3f\xfd\xc1\x27\x6f\x90\xef\xe8\x8d\x17\x35\x05\xf7\x83\xc3\xb9\xa5\xc8\x41\x76\xc1\x90\x8b\xd0\x8f\x14\x33\xd0\xda\x31\x8b\x4e\xe1\x19\x3d\x2c\x9b\xb8\xa7\xf8\x58\xf5\x95\xf4\x2a\xd5\xbc\x4d\xfa\xe5\xa9\x56\x09\xd1\xb9\x48\x81\x9b\x36\x00\x48\x1a\x86\xee\x8a\x4a\x96\x6f\xea\x1d\x5a\x9d\x42\x93\xe2\x51\x06\xde\x57\xf9\xc5\xfe\xfc\x45\x37\x2f\x34\xcf\xe5\x81\xd3\x35\x2f\x37\xf2\x48\xe8\xa1\xb2\xc5\x62\x91\xd6\x17\x14\x02\xa0\x77\xf3\xfc\x76\x3c\xc4\x8f\x31\x9c\x16\x70\x73\xda\xe1\xed\x26\x9c\x9e\x4f\x17\x1e\x96\x95\x8f\x69\x81\xb5\x61\xcd\xd2\x52\xad\x35\x06\xde\x04\xb1\x58\x51\xc0\x8f\x88\x64\x29\xab\x1b\xdb\x49\x88\xbf\x88\xed\x81\xf3\xd9\xf4\xc9\x7a\xad\x54\x53\x82\x61\xb4\x38\x11\xf8\x19\x32\x81\xb2\x26\x8b\x9e\xbc\xd7\x46\x6b\x5e\xd6\x75\xe9\xb6\x1d\xdb\x29\x3d\x3e\xb2\x4f\x9f\x71\xb7\x9f\x3f\x4e\xa0\x22\xc0\xe3\xb8\x2d\x6b\x0c\x32\x4b\xd6\x91\x69\xde\xd8\xb8\x38\xcd\xa3\xa6\xd1\x21\x18\x02\x19\xd7\xe0\x2f\xce\x91\xd4\x84\xfa\xea\x54\x5b\xab\x5a\x24\x52\x42\x32\x37\x84\x04\x87\xb6\xd9\x97\xce\xe0\x2a\x8d\xd4\x06\xfb\xcb\x00\x3c\xec\xa4\xec\x62\xb6\x19\xc1\x9f\xf8\xee\x3e\x02\x17\xf1\xa0\xfc\x82\x8c\x58\x5d\x64\x20\x62\x0d\xcc\x3a\xb0\x02\xad\x0d\xde\x87\x11\xcf\x0a\x42\xab\x81\x33\x0a\xb4\x07\x6e\xfc\x31\xc0\xa6\xf0\xa7\x28\x7b\xcb\x2f\x52\x3a\xc8\x16\xfa\x60\xc7\x4c\x2c\x51\xee\xd9\x98\x8e\xc4\xc8\xd6\x76\xbc\x78\x89\xac\x2d\x15\x06\xc8\xa4\x1d\x03\xd2\xcc\x24\x16\x26\x95\x65\xa6\x01\x55\xca\x51\xf1\x8c\x24\x1b\x37\x5b\xae\x6f\x0e\xc1\x5c\x53\xcd\x07\xaf\x05\x5e\xfe\xa5\xb6\xa5\x0c\xd4\xb1\x75\xac\xfc\x24\x59\xb6\x93\x64\xfa\x89\x91\x5c\x24\x9e\xbc\x23\xc6\xf9\xae\x8a\x80\x3e\x40\x1d\x76\xbf\xa5\xd3\x3d\x44\x45\xc5\x9a\x3c\x5a\xce\xe4\x5b\x1e\x1a\x02\xf0\xb4\xd5\x1c\x18\x01\xec\x9f\xd5\x52\x10\xea\xc9\xa8\x42\x35\xb1\x55\xb1\x22\x18\xd8\x50\x59\xc2\x1a\x3e\xbc\x0b\x44\x8d\xcb\xd6\x94\xa8\x8a\x48\x54\xff\x59\x77\xd8\xf8\x82\xc9\xf7\x48\x77\x11\xb4\x04\x87\x2a\x22\x9b\xd8\x72\xb7\x49\xaa\x65\x92\x3a\xb1\xe6\x62\x0b\x5a\xab\xdb\x4a\xc5\x48\xb1\xaa\xe6\xfa\x17\x77\x2b\xe5\x62\x38\x00\xb0\xdc\xa0\x3b\xa4\x9d\x9f\x05\x38\x1a\xb2\x4a\x4c\x1f\xb6\x15\x92\x43\xde\x3f\x6b\xa9\xdb\xb8\xbd\x9c\x01\xbf\x20\x3c\x55\xdc\x26\x39\x41\xf2\x9e\x4e\x96\xf2\x29\x0e\x23\xa8\xa8\xe2\x94\x3d\x7c\x51\xb7\x86\x69\xab\x27\x3d\x9e\x17\xc4\xd9\xf1\x92\x2b\x9a\xc3\x24\x27\x99\xcf\x8e\xed\x81\x38\x90\xa6\x24\x9b\x6e\xda\x0e\x31\x2a\x13\xa6\x3f\x25\xb3\x98\x38\xd9\xd0\x54\xf4\x08\xf5\x92\xe1\x08\x1b\x1d\x8b\x13\x6c\x44\x88\xef\x43\xe3\xcf\x01\x3b\x2c\x6b\xdd\x13\x29\xc6\x0f\x12\x56\x23\xb1\x21\x77\x32\x68\x7e\x60\xca\xec\xa8\xfd\x81\x3f\xb3\x6c\xad\x7a\xa0\xd6\x14\x07\x74\x42\xf7\x39\x83\x17\x10\x14\x2c\x34\x30\xe1\x8f\x1c\x3f\x11\x7a\x66\xfc\x73\xb8\x54\xc8\xe0\x9c\x51\x98\x21\x5a\x59\x31\x7f\xa5\x41\x32\x7c\xad\xdb\x3a\xa4\x49\xd0\xe3\x04\xf7\xf4\x90\x1e\x25\x39\xf2\x22\x0f\x39\x74\x36\xbe\x04\x3d\x27\xa5\x71\x74\xa9\x8f\xfe\x7f\x48\x6d\xd5\x8e\x54\xdd\x3b\xd5\x87\xe8\x4b\x18\xdb\xde\x93\x7d\x90\xb9\x92\xe4\xc5\x58\xce\x4a\xb2\x3c\xc9\xf0\x89\x28\x44\x43\x7e\x9a\x5d\x35\x4a\xf6\x65\x28\x7f\xe6\x3f\x45\x33\xc1\x12\x04\xb7\x54\x6e\x1b\x55\x93\xc2\x7c\x30\xf3\x60\x58\x5d\x0a\x89\x35\x6e\xe7\x80\x4d\xa7\xda\x0c\xf6\x63\xa7\xda\x54\x6c\xcc\x10\x1b\xab\xea\x11\x66\xb8\x87\x99\x87\x97\x16\xa2\x17\xc2\x4d\x14\xfd\x9c\xb6\x33\x01\xc2\x66\xca\x19\xd0\xd6\xa4\x70\x1f\xcc\x04\x88\xf6\x6d\x60\x0f\xc6\xb3\x17\xe7\x47\xed\x26\x13\x84\x99\x25\xd8\xc6\x84\x58\x64\x00\x14\x4e\xfd\xac\x9a\x80\x8c\x2a\xcb\xf0\x21\xae\x70\x4f\xb0\x08\x77\xa2\x7e\x77\x49\xcf\x65\xd6\x6a\x05\x4e\x7a\x56\x81\x56\x34\x5f\x08\xe3\xe2\xba\x5d\x99\x94\xc6\x79\x39\x56\xb6\x7b\x2a\x05\xfa\x89\x60\x8e\x88\x11\x71\x48\x87\xf2\x28\xf4\xf4\x11\x07\xc8\x91\x4b\x83\xfe\x92\x34\x5a\xe8\x54\x89\x41\xc9\xc7\x0d\xa3\x60\x3a\x07\x5a\x35\x73\xc5\x01\x43\x62\x95\x3b\x54\x64\xb0\xe4\x22\x85\xc4\xfd\x5e\x78\x26\xb1\xa9\x10\x1a\xc9\x1d\xd0\x2a\xc4\x11\x5e\xaf\x08\xd4\x16\xc3\xe1\x21\x5a\x58\xdf\x4e\x2e\xc5\x89\x38\xaa\x61\x71\x87\xb9\xf4\x4b\x37\x66\xe1\x4a\xe6\x4c\xd2\xe3\xf0\x44\x67\x33\x9c\xe6\x79\x6e\x01\xef\x5a\x70\x5d\x86\x7b\x97\x66\xa6\xc4\x9d\x1b\x7c\x0c\x73\x10\xf3\x64\x1b\x53\xc9\x3b\x76\x5b\x84\x58\xeb\x56\x1d\x46\x7d\xa0\x1c\x29\xce\x41\x5d\x3e\xcd\x59\xc8\xa6\x29\x83\xaa\xea\xb4\x69\x04\x7e\xcc\x82\x5a\x7a\xfe\xc3\x19\x2f\x0c\xc6\xa6\xd6\x64\xa1\x33\x57\x08\x57\x6b\x5d\x2e\xf7\x54\x06\xb7\x1d\x04\xcf\x3d\x50\x64\xab\x5a\x2f\xb9\x78\x76\x0e\x8b\xbc\x0f\x09\x33\x45\x2c\x85\x8f\x34\xbd\x9b\xc9\x59\xc0\x7a\x74\x74\x54\xd8\x59\x10\x4f\x34\x00\xe4\x23\xfc\x98\x03\x41\xa3\xed\x20\xbd\x5d\x52\x40\x2e\xf6\x17\x9b\xad\x58\x49\x1b\x4b\x9c\x2b\xf4\x82\xbf\xbf\xdc\xd6\x58\xe7\x8f\x39\xb4\xd1\x7f\x6f\x20\x08\x06\x7c\xde\x51\x4f\x2c\x80\x15\x4d\x4a\xf8\x9d\xc4\xca\x28\xfc\x1d\x75\x51\x89\xf9\x30\x58\x0e\x93\x01\xb0\x7c\x3e\x29\x5c\xae\xe4\x8d\x9a\xc1\x80\xda\x2c\x82\x06\xe5\x91\x19\x82\xd6\xc8\x0c\xc9\xb9\xf2\x15\xa7\xe2\xab\xcb\xb7\x78\x08\x01\x3e\xda\xe1\x75\xc8\xca\x77\x78\x3b\x6c\x4b\xea\xa3\x45\x0a\xc0\x5f\xa1\x38\x8f\x40\x29\x7d\x95\xbf\x85\xef\xd8\xdd\xff\xf0\x1c\xf6\x11\xf4\xf4\x37\x2e\xc6\xfe\x89\x08\x9d\x04\xdd\x3e\x25\xb7\x95\xe0\xbf\xc2\xf6\x13\x75\xa2\xdc\xa1\x62\xbf\x84\x66\x9a\xc4\xdd\x02\x4f\x01\xb8\xff\xca\x35\xd4\x19\x49\x83\x0f\xee\x6f\x9e\xc5\x8d\x0a\x20\x34\xe9\xe0\x9e\x97\x82\xf7\x0a\x46\x95\xe1\x2e\xe1\x73\x94\x79\x17\xb2\x3e\x2b\x40\xc7\x66\x5c\x62\x04\x3a\x9a\x28\x1a\x66\x64\x29\x9e\x49\xa1\x6b\xb2\x47\x7f\x14\x86\x1b\xbe\x9e\xc3\x62\xc9\x06\x1d\xeb\x0b\x38\xf8\xf3\x1b\xb1\x10\x97\xdb\xab\x55\xc0\x43\xd7\xd4\x35\xce\x0e\x76\x15\x43\x4f\xb0\x6c\xf4\x6d\x55\x74\x86\xde\x66\xba\x80\x1f\xb1\x66\x8e\x2f\x0a\xfc\xee\x59\xf2\x19\x96\x79\x66\x53\x43\x89\x1c\x38\x9a\xe3\x1d\x91\xde\x22\x73\x46\xa2\x88\x9b\x2c\xfe\xfd\xdd\xb0\x80\x55\x99\xf6\x56\xf5\x96\x1c\x10\x08\x23\x29\x30\x5f\xd5\x3a\x4e\xcf\x48\xd7\xc1\x75\xa3\x19\xd8\x95\xbc\x55\xa3\x43\x9c\x59\x9e\xc0\x42\xe5\xf9\x95\x69\x4c\x64\xb1\xe0\x6b\x0c\x80\x76\x4e\x47\xf5\x2c\x77\x14\x97\x26\xed\x5c\x88\x52\x9e\x9f\x3a\x08\x39\xd3\x19\xcc\x18\x69\xca\xf2\xcc\x10\xfd\x0b\x1b\x08\x31\xc0\xd8\x04\x78\x8a\x85\x7c\xcf\x01\x34\x18\x5a\xcd\x82\xcd\xfb\x5c\x22\x8f\x91\x1a\x4e\x6a\x10\x82\xa3\x9f\xa5\x6e\x33\x5b\x4a\xc2\x7d\xd8\x14\x6e\xbe\xf2\xa8\xbb\xc5\xb6\xde\xa3\xb7\x4d\xc8\x64\x27\x7b\xa7\x2b\xdd\xc9\x40\x2a\x2f\x92\x14\x86\x94\xce\xc9\x6a\xe3\xb7\x75\xca\x74\xfd\x86\xfa\x07\x52\x3b\xf8\xf5\x88\xd6\xe8\x5e\xd0\x72\x72\xf9\xdb\x4c\xe9\x10\xd6\x3a\x2d\x1d\x12\x3d\x8a\xdf\x0a\xbc\x0b\x4b\xc4\xb5\xf4\x4e\x8c\x32\x2b\xb3\xed\x64\xaf\x72\x6d\xac\x4f\x09\xea\xd8\x59\x38\x9e\x25\x06\x76\x3b\x23\xc2\x45\x0e\x3c\x63\xe6\x4f\xb0\x5c\x8f\x08\x0a\xc7\xa0\x02\xc9\xd1\x42\x14\xed\x13\x88\xa7\x30\xae\x90\x6a\x38\x11\xf4\x8b\xf2\xb3\x4b\xc4\xf1\xe5\x21\xf7\xdc\x94\xbd\xb2\x43\x03\x33\x02\x3e\x61\xf8\x01\x2f\x60\x2d\x02\x10\xbc\xf9\xe4\xb9\xad\x58\x57\x72\x88\xe0\x8b\x50\xe4\xa1\xea\x73\x97\xaa\x92\x9e\x51\x87\x36\xfb\xbe\x6e\x94\xac\x93\xde\xf7\x0a\x1e\x5e\x18\xe3\xdf\xaa\x7e\x1d\x3a\xfa\x10\xfc\xd9\x98\x6e\x30\x7e\x36\xfa\xc8\x36\x7b\x51\xeb\x15\x50\x5d\x27\x48\xdd\xc0\xd5\x6d\xa4\x2d\xd3\x37\xc3\xfc\x02\x09\xb5\xb1\x12\x69\x34\x31\x4b\xe5\x76\x10\x79\x0a\xdc\x21\x7c\xbd\xa8\x2a\xb3\x3f\x8f\x7c\x9e\x9e\x42\x1d\x4f\x3d\xe7\x52\x13\xe1\xfe\x0f\xf8\x40\xf2\x4d\x33\x37\x12\x33\x67\x56\x1d\x10\x3f\x5e\x43\x3b\xd8\x32\xce\x08\x18\x21\xe0\x76\x6a\xd6\x7c\xe0\x31\xc2\x0e\x53\x3f\x05\x87\x29\xa1\x5b\x67\x66\x1c\xa9\x08\x3f\x60\x22\xa6\x86\xab\xc1\xb4\x7f\x0f\xbd\x38\xfa\xfc\x3f\xbe\xf0\x96\x70\x72\x59\xa6\xa7\x03\xda\x9c\x86\xcf\x0c\x6a\xac\xf0\x89\x79\xd9\xb5\x39\xeb\x18\x29\x9f\x78\x08\x67\x70\xf1\x44\x2b\x2c\xcc\x20\x1b\xf3\x74\x26\x9d\x11\x9d\xea\x3d\x55\xa4\xd1\x0c\x56\xb7\x8b\x6c\x68\x80\xdb\xef\x63\x4d\x7e\xd5\x84\x9c\xeb\x09\xda\x40\x06\x09\x26\xa7\x82\x88\xa2\x96\x4e\x96\xcb\x9e\x0d\xec\xa5\x93\xc1\xaa\x72\x1e\x17\xc1\xd6\x43\x8c\x8c\x44\xd6\x5a\x70\x1f\x98\x10\x77\x6e\xbb\xb6\x25\xf8\x94\xa3\x2a\xf8\x9a\x1c\xc5\x1b\x5d\x39\x11\xd2\xb5\xa5\xd0\x44\xf8\xee\xc9\x1a\x5f\x91\x09\xaf\xc5\xad\x7a\x65\x37\xf0\xc6\x83\x07\x58\xa9\x9d\xd8\x1a\x60\x68\x03\x45\x92\x6d\x09\x46\x84\xb8\x5f\x53\x2b\xa2\xac\x1b\x64\x52\x44\x03\x92\xbd\xdc\x90\xa0\x02\x93\xad\x87\x61\x43\x1f\x86\x39\x7c\x91\x22\x04\x25\x2e\xf7\xdb\x1e\xae\x6b\xfc\xdc\x1b\xae\x87\xad\x6c\xd1\x3c\x58\xb7\xc2\xf4\xb5\xea\x29\xfe\x2d\xb8\x67\xbb\xcd\x1c\x66\xe4\x4b\x11\x29\xb1\x73\xc9\x0d\x13\xa2\xc5\xf4\xb0\x6c\x3d\x95\xe3\xcb\x5e\x0f\x80\x13\x76\x09\xe9\x7c\xb1\x4b\xe9\x91\xdc\xc3\xa5\x59\x62\xb6\x17\xf4\xa7\xa9\xc1\x4d\xb2\x88\xc7\x64\x0e\x16\xf4\x1c\xb5\x81\x4d\x34\xb4\x44\x14\xa0\x54\x50\xb6\xff\x46\x7a\xa1\xc7\x2e\x6c\x1c\xda\x5c\xd1\x5e\x3d\x1f\xfe\x94\x8c\xb6\xc8\x55\x65\x53\xf9\xfd\x7f\x1c\xd5\x3f\xd0\xc3\x58\x72\xab\xa6\x56\xa7\x3e\x11\x47\x2d\xe5\x5f\xfc\x41\xa2\x2d\x84\x9c\x86\xf7\x18\x4c\xcf\x23\xb4\x60\xc2\x4a\x42\x53\x62\x72\x0a\xfc\xd9\x8b\xf4\xc8\xcb\x60\x20\x92\x58\xab\x76\x09\x01\xa2\x7b\xb2\x78\xb7\xc4\x8c\x0d\x77\x52\xe3\x0e\xc5\x80\x0f\x58\x0a\xdd\x0b\xa0\xc9\x6d\xa5\x16\x45\x62\x3d\x93\x30\x17\x51\x59\x93\x64\xcf\x68\x96\x92\xdc\x79\xed\xd2\x18\xa0\x8e\x2a\xd4\x23\x9b\xd5\x6d\xca\x7a\x50\x25\x89\xfe\x1f\x0c\x90\x12\xff\x35\x6e\x01\x8b\xbc\x63\xcc\x41\xfe\xcb\x3b\x54\xda\x61\xe9\xcf\x74\x8c\x14\x8d\x0b\x3d\x31\x18\x72\x86\x7d\x41\xe8\x6e\x9e\xb8\xb3\x0c\xfd\xe8\x0c\x9c\x1d\x9c\xe0\x65\xe9\xff\xa7\x19\x33\x26\xd9\x69\x6e\xec\xf3\xcb\x41\x81\x1a\x5f\x7c\xcf\x97\xd3\x3f\xe4\x9d\x54\x18\x45\xc8\xff\x4f\x33\xc2\x6b\x26\x84\xaa\xc4\x75\x48\x18\x01\x39\xa5\xc4\x77\x2b\x8e\x83\x15\xc8\xe3\xfd\x7e\xbf\x7f\xb2\xdd\x3e\xa9\xeb\xc7\x33\xbd\x4e\x98\xe8\xd0\xed\x91\x15\x04\x69\xab\x46\xe7\x48\x82\x29\x91\x49\xe6\xc7\x0e\x4c\x5a\xd2\x79\xfa\x04\x0a\xda\xa5\x72\xe0\x39\x98\x90\x11\xd8\x49\x71\xf6\xac\x3f\x21\x4d\xd7\xa8\xe8\x37\xe6\x49\x1e\xc6\x83\x48\xfb\x32\x92\xe7\x92\xac\x51\xe0\xe3\x3b\x1b\x18\xac\x1a\x89\xbf\x36\xab\xd8\x98\xd1\xa0\xe0\x53\x88\x07\x87\x24\x91\xa3\xe2\xb0\x06\x59\x6a\x06\x70\x5e\x92\x8a\xb5\xff\x77\x4a\x53\x73\xd5\xcf\x2d\x83\x7b\xe4\xa9\x62\xa7\x6f\xb4\x38\x11\xbf\xea\x1b\x0d\xbf\x17\x14\xaa\x3a\x09\x4d\xed\x0c\x64\x7f\x97\xe5\x73\x5f\x7d\x0e\x58\xc4\x6d\xc8\x8d\x57\xe0\xeb\x7e\xe8\x27\x38\x34\xb5\x68\xf4\x0d\xf2\x1b\xa6\x1a\x40\xd1\xb2\xa7\x70\x66\x7f\x87\xd8\x62\x66\xad\xc0\x8f\x3b\xc8\x30\xda\xd1\xa2\x5a\x60\x85\xb4\xc6\x21\x70\x61\x49\x0f\x44\xd3\x26\x77\xe1\xa1\x27\x9f\x8e\xe0\xe9\x13\xd2\x90\x40\x72\x0b\xa5\x93\xd4\x12\xe1\x31\x3a\x55\x8a\xf5\x03\x3d\x84\x85\xf9\x6c\xba\x96\x5b\xaa\xf8\x9e\xa3\xf5\x92\x17\x28\x94\x90\x4b\x33\x90\x81\x17\xa9\x46\x23\x81\xa0\x7e\xc0\x7b\x3d\x54\xd3\x95\x17\x2e\x62\x1d\x60\xa9\x4f\x15\xd0\xd5\xca\x91\x85\x9b\x74\x56\xf1\x40\xb9\x23\x8b\xe0\xb0\xd2\xe1\x75\x61\xba\x42\x21\x5d\x42\xd6\x9f\x98\x37\xee\x0f\x7a\x8a\x65\x20\x74\xb0\xcd\x43\xb5\xc6\xe9\x4a\x95\x3f\x32\x1f\x95\x7a\x93\xa1\xad\xc6\x5a\x11\xeb\xee\xc5\x60\x8e\xb0\xc0\x6c\x90\xdf\xef\xaa\x77\xf0\x80\x43\x98\xa1\xe9\x25\x3c\x2c\x24\x40\x75\x8f\x33\x63\xc0\x61\x69\x9a\x6d\x32\x88\x1c\xe7\x8c\x83\x95\xb0\x79\xa2\x2d\x66\x9f\x8f\xe6\xb4\x05\x4e\x96\x0d\xaf\x35\x26\x59\xc9\xd3\x3b\xc4\x23\x25\xdf\x07\xc0\x16\xe8\x53\x45\x11\xca\x0f\x01\xa1\xa5\x02\xad\xa4\x43\x40\xf0\xde\x32\xba\xe5\x1c\x02\x19\x5a\xbe\x23\x3b\x11\x9f\xf8\x77\x04\x9e\x33\xa6\x9d\x64\x96\x4b\x94\xc3\x13\xcf\x26\xf4\xbe\x8e\x12\xb1\xa7\xeb\x00\x95\xfa\x76\xd0\x24\x77\x83\xdd\xc0\xdb\x9e\x41\x03\xcc\x01\x56\xb9\xa2\xfb\xfc\x77\x0e\x00\x46\x0e\x5e\xf1\x53\x84\x6c\xfb\x84\xba\x42\xab\x6b\x88\x18\x01\xb7\x8b\x9e\xdd\x7d\xc4\xf9\xa0\xfd\x80\xd0\x04\xc8\x56\x1d\x67\x6c\x23\xc5\x3d\x6b\xe1\x75\x47\x36\x5a\x89\xad\x18\x19\xb4\x8d\x33\x46\x16\xad\xe5\xd0\x06\x93\xdf\x68\xdd\x3a\x6d\x6f\xf2\x6e\x1a\xde\x14\x81\x0b\xb9\x76\xe1\x5d\x34\xd3\x92\xfb\xc2\xa4\x29\xe3\x1a\x23\xb1\x7f\x99\x57\xc3\x32\x60\xc2\x06\xdf\x19\x06\xf0\xbb\x58\x53\xd7\x1b\x07\x77\x6e\xa9\x8d\xf0\x05\x27\xce\xac\x9e\x69\x81\xe0\xbd\x84\x39\xc9\xea\x81\x87\xcc\x4c\x5f\xe1\x62\x81\xd7\x77\x65\x55\xe9\x5a\xb5\x4e\x36\x51\x1a\x85\x28\xa1\x1b\xed\x14\xc4\xfb\x4a\xe6\x0f\x5f\xf8\x88\x5b\x00\x83\x37\xca\xd4\xa6\x18\x42\x37\xb2\xbd\xec\x62\xb1\x18\x2f\xf3\x92\xda\x8b\x1b\x99\x38\xf3\x8b\x90\x76\x07\xf8\xc8\x29\x0b\x2b\x17\x94\x2f\x98\x7a\xc0\x0e\x41\xac\xe1\x95\x99\xc5\x64\xb4\x46\xc6\x89\x3c\x52\x30\x69\xcb\xd1\x66\x98\x29\x12\xb8\x0c\x0a\x0c\x11\xc7\x94\x34\x81\x5d\xaf\x6e\x61\x07\xfa\x11\xe7\x71\x9d\x69\x06\x6b\xe7\x47\x52\x1d\xbf\x0d\x99\xc9\x58\xba\xb5\xce\x13\x22\xb4\x03\xe2\x19\x7c\x18\xce\x10\x0e\x01\x43\xb1\x40\x3f\x71\xc4\xd2\xf7\x96\x73\xcc\xc1\xe6\x97\xe6\x92\xf5\x38\x21\xb8\xf2\x92\xba\x8c\xf1\x18\x28\x16\x4c\x6b\xda\x27\x61\x49\xf2\x4c\x00\x63\x81\x42\x7e\x8e\x34\x3c\xf7\x92\xdb\x5e\x4e\xfa\x14\x56\x63\x19\x17\xa2\xa7\xda\x61\x91\xee\x36\x06\xb4\x13\x40\x04\xf3\x3a\x1e\x86\x2d\xb5\x7b\x25\x5e\xd9\xf4\xe4\x18\xef\x4c\xb2\x1d\xcc\x2a\x1d\xa7\xc9\x20\xc1\xc3\x6a\x9e\x95\x8c\x25\xd0\x45\x6c\xdf\x49\x1b\xde\xcf\x1f\x29\x42\x36\xaa\xba\xb9\xb3\xd7\xd9\xb3\x6d\x7f\xb4\xb3\x68\x68\x15\x70\x91\xb9\x15\x7c\xde\x55\x0c\xc7\x00\xa3\xf7\xe3\xfe\xc2\x37\xab\x29\x8c\x36\xd9\x4b\x6f\xff\x8d\x16\x71\x0d\xd4\x22\xf8\x9c\xd0\x5e\x2e\x3d\xa1\xbd\x17\x33\x14\x20\x5d\x62\x0f\xa5\xbc\x1b\x63\x6e\xf0\x71\xc4\x25\xfc\x8c\x39\x6b\xed\x38\xd3\x1f\x14\x6f\xf3\xdc\xa5\xb4\xba\x2a\x13\xd6\xe6\x85\x4f\x98\x61\x70\xc8\x77\x2c\x81\x24\x27\xd4\x29\xa8\xdd\xb7\x15\xbd\x10\xe8\xc7\x65\xdf\x56\xe2\x83\xd9\x4d\x51\x79\x30\xdd\x96\xac\xf3\x8b\x28\x7d\x4e\x78\x0a\xf2\x7e\x9d\x20\xf2\xce\x92\x5e\xfd\x4a\x96\x22\xc5\x54\xfe\xc8\x6f\x88\x5e\xe9\x99\x83\x38\xe9\x11\xd9\x9e\x4f\x7b\x44\x5e\x28\xfe\x44\x7c\x58\xc4\xe3\xb9\x48\xc7\x63\xe3\xd9\x80\x5d\xd6\xb7\x5e\x62\xad\xd3\xa6\x9c\x52\xda\x4c\x63\x3c\xb3\x3a\x22\x89\x20\x84\xe1\xa3\xee\x49\xff\xac\x42\xdf\xe2\x56\x36\x25\x89\x69\x5e\xe6\xe6\x67\xe3\x7d\x52\xd2\x88\xa6\x31\xbb\x92\xc2\x75\xa7\x55\x9c\x42\xe4\x4b\x0e\xc1\x1d\x7c\x2d\x00\x21\xc4\x82\xca\x83\x0a\x74\xe8\xc6\x9f\x37\x43\x7d\x9d\x36\x83\xd3\x46\xed\xc8\x40\xe9\xe9\xf8\x57\x0c\x0a\x3c\xfe\xa7\xcb\xf3\x3b\xc0\xb9\xd9\x7f\xcd\x5e\x10\x5e\xfa\xa1\x47\xca\x87\x64\xfc\xd3\xe5\x39\xb6\xde\x6d\xd4\x3e\x37\x31\x73\x72\x99\x4c\x0e\x0a\xd2\xa3\xf1\xc6\x0b\x73\x70\xfb\x56\xfd\x81\x11\x07\x98\x92\x60\x46\x43\xdf\xe8\xf5\xc6\xed\x14\x04\xc6\x39\x80\x2b\x9b\x8f\xbc\x11\x07\x66\x84\xae\x8e\xbf\x79\x4e\xe6\x1a\x1a\x26\xe7\x40\xeb\x42\x61\xca\x19\x4f\x14\x18\x2a\x8a\x6b\xc2\x39\x3f\x63\x49\xd1\xff\xee\x49\x4b\x51\x07\x45\xd9\xe1\xc6\x89\xd7\x00\x33\x2d\x8f\x43\x63\xdd\x1e\xbd\x0c\xe6\x11\x7c\x90\x5b\x08\x77\xea\xa1\x7e\xbe\x13\xc7\x82\x9f\x4c\x3a\x11\x1f\xf0\xd7\xdd\xe0\xd9\x33\x4b\x7e\xde\xe3\xe7\x5d\x7d\x4d\x63\xd1\x70\x3c\xc7\xd4\x0a\x14\x45\xed\x7f\xfa\xb3\xf3\x5f\xe2\x9f\x7e\xa9\xfc\x4b\xfc\x53\xb7\xb5\xfa\xfa\x2f\xbe\x35\x0b\x2f\x83\x7b\x72\x77\x3c\x09\x5a\x82\xaa\x6f\x3f\x08\x50\x2c\x3d\xfd\x87\xa6\x19\xef\x96\x5c\x6a\xa2\xf0\x57\x1d\x3e\x61\xd4\xeb\xe5\x80\x27\x1f\x5f\x69\x4e\xe2\xfb\x2c\xa7\x52\x03\xde\x2d\x61\x58\x0b\x38\x90\xc1\xb7\x49\x9c\x88\x77\x18\xcf\x82\xef\xc6\x99\x93\x81\xec\x71\x79\xdc\x61\x74\xf5\xc1\xd7\x75\xb8\xb7\x06\x38\x65\xe0\xee\x23\xdc\x72\xb2\x65\x77\x94\x33\x25\xb8\x53\xfc\x8e\x96\x8f\x2f\xe1\x4b\xfc\x9f\xa6\x4d\x25\x71\xbc\xe3\x01\x4f\x3a\x67\x4a\xeb\xcf\x0e\x36\x78\x49\x04\x65\xb8\x3d\xcb\x7c\xd1\xfd\x76\x76\x56\x98\x5e\xaf\xb5\x5f\x71\xf4\x84\x4b\x40\xdc\xaa\x1d\xbd\x94\xb3\x91\x16\xf1\x86\x77\x3f\x30\xf8\x3c\x56\x23\xc3\x63\xb3\x36\xaf\x20\xd7\x91\x2c\x46\x72\x49\xe0\x87\xe1\xcd\x82\x44\x6b\xd0\xde\xaa\xde\x85\x6b\x53\x27\xae\x8d\xb8\x54\xeb\xa1\x91\x7d\x1a\x04\x60\x5c\x60\xbc\x20\x19\x0f\xa9\x37\xe1\xcc\xf7\xcb\x42\xf4\x84\x2b\x55\x10\x70\x38\x00\xba\xfd\xf0\xb2\x49\x8f\xa1\x80\xc7\xb5\xa0\x9e\xc9\x82\xa2\xe9\x09\x3d\x80\x92\x87\x30\xca\x2a\x4e\x46\x83\xda\x00\x77\xc8\x73\xad\xe0\x40\xef\xd4\x06\x8c\x64\x34\xd3\x82\x68\x15\xc7\xb1\x8c\xe8\x7e\x79\xa4\xe9\x41\x68\x8c\xb2\x36\x8a\x0c\x11\x35\xee\x08\xc5\xef\x85\x62\x93\xc0\x66\x35\x8f\xc1\x9f\x12\x02\x7c\xa7\xe5\xc4\x93\x26\xfc\xf9\x91\x5f\x7a\x99\x82\x05\xc5\x48\x7c\xde\x25\x1f\x94\x44\x2e\x02\x52\x40\x93\x34\x7a\x7a\x08\xb7\x58\xb5\x49\x5e\x4f\x05\xd5\x15\x44\x7d\xb3\x33\xcd\x1b\x4d\xd3\x6c\xc0\x2c\xbd\x4a\xd6\x30\xf8\x59\xe9\xb6\xd6\xb7\xba\x1e\x64\x43\xef\x52\x1d\xc6\xfb\x53\x8e\xb7\x32\x2d\x68\x44\x0e\xe2\x1e\x75\x08\x68\x1b\x04\xbb\x7d\xdc\x93\x31\xf9\x2a\x3e\x39\x35\xdb\x23\x4f\x76\x83\x79\x18\xed\x24\x0c\x9c\x1a\x9f\x90\x49\x75\xf5\xa8\x88\x87\xf5\x81\xe1\xb7\x79\x95\xfe\x3c\xe1\xf2\xc8\x9e\xeb\x55\xef\x71\x02\xfb\xf3\x52\x3a\x39\x0b\xc6\x13\xfa\x91\x3d\xaa\x14\x14\x02\x96\xab\x96\x4e\xc6\xdb\xd0\xd6\x50\x30\xac\xa5\xac\x6e\x66\xf5\xac\xb3\xf8\x67\xf6\x57\xaa\xca\xf5\x03\xc7\xc2\x38\x78\xbc\xf9\x8a\xfd\x41\x72\x34\x65\x5e\x27\x17\x0e\x97\x29\x69\xe2\x06\x47\x4f\x2e\xe8\xca\xf8\xf5\x89\x44\xe3\x97\x3b\x88\x42\xd3\xe6\xe8\xd1\x81\x81\xe2\x0e\x64\x8f\x40\xfd\x91\xd1\x3a\x3c\x50\x91\x10\xdd\x1b\x21\xed\x30\xbe\x9f\x0e\x12\xb6\x24\x8e\x19\xf7\xc6\xd3\xc9\x3d\x9a\x2a\x4d\x5d\xcf\x8e\x29\x2c\x90\xcf\xf5\x52\xa1\x1f\xee\x63\xe2\x20\x8f\x83\xc9\x30\x3d\xf2\x97\xd8\x70\xe2\x1e\x3a\xdc\x42\x38\xe9\xb0\xdb\xa7\x1c\x86\x8b\x99\x39\xb8\x0b\xf2\xfc\x42\xa7\xda\x1a\x2c\x6a\x31\x66\xe8\x54\xc1\x74\xf7\xfa\xb8\xe7\x46\xea\x90\x7c\x37\x8f\x8c\xe5\xee\x7b\x1e\x3a\x99\xee\x79\x3e\xc6\x3f\xa8\x1d\xd9\xae\x46\xf9\x56\xde\x00\x3f\xcd\xd4\x18\xa2\x62\x32\x99\x9d\x41\x35\x7b\x0e\xc4\x37\xba\x42\xd3\xb8\x40\x7f\xb8\x79\x79\x6c\xbd\xb9\x98\x7a\x89\xd4\x59\x97\x23\xfb\xdc\xd3\xba\x86\xfe\x64\x76\xba\x07\x0b\x8c\x42\xd6\x66\xb8\xf2\xb0\xf8\xd3\xf5\x32\xaa\x98\x63\xe3\x4f\xaf\x27\x4c\x9f\x9a\xa3\xa6\x0d\x9b\xe9\xd2\x6c\xb1\xcc\x84\x07\x0e\x32\x58\x8f\xd1\xbd\x95\x0c\xf5\xd2\x4b\x9a\x34\x6e\x63\x7e\x28\x8e\xd6\xec\x1d\xb1\xf4\xb9\x51\x78\x5f\x7b\x68\xe4\xce\x66\x47\x8d\xe2\x7d\xa6\xaa\x8c\xa8\xfe\x1a\x79\x74\x25\x9a\xb0\x4c\x63\x0d\xcf\x60\xc6\xf8\x53\x9e\xff\x5c\x4e\x06\x3e\x7b\x15\x33\x8f\x40\x45\x4a\x52\x7c\xd7\x00\xd8\xc7\xb4\xec\x62\xa4\x7a\x0a\xd7\xb9\xa4\x7f\x02\x9b\xa7\xed\x50\x6d\xf0\xfa\x16\xd4\x4c\x10\xcb\x49\x5c\x7c\xbc\xba\x16\xa8\x60\x76\xbd\x5e\xaf\xfd\x99\x2a\x7e\xdd\xa8\xd6\x13\x2c\xb8\x02\x42\xa2\x65\xaa\x6a\x40\x65\xe4\x1b\xb3\xb6\xc7\x62\xa7\x38\x08\x6e\x5b\xd3\x09\x93\x3e\x43\xc3\x1a\x16\xb4\x83\x14\x1b\x63\xf1\x6d\x0d\xdb\xa9\x4a\xaf\xd2\x3d\xb2\xa3\x26\x2e\xe8\x6d\x0a\x8e\x17\x00\x6c\x01\x65\xfe\x3c\x03\x1e\x2e\x0c\xc8\x71\x28\x5c\x17\x80\x6f\xce\x62\x91\xef\x14\x2a\x46\xc8\xe9\x6b\x82\x35\x5d\xdc\x74\x78\xfd\x7a\x1f\xe8\x5c\xd8\x5a\xae\xed\x2e\x0b\x01\x78\x06\x0d\x8f\x6b\x0d\xb1\xa5\xd9\x0e\xf5\x01\x8b\x78\xd2\x86\xb8\x82\xa9\xbd\x0f\x26\xcb\x84\x6a\xe1\x50\xb3\x4f\x6d\x39\x11\xd7\xca\x42\x48\x4f\xf8\xbe\x07\x9c\x87\xe0\x4a\xf9\x3e\x09\x70\xbe\x01\xed\x2d\xae\xab\x80\xd5\xaf\x09\x65\xc9\x62\x80\xc7\xc8\x4e\x35\x6a\xb3\x75\x24\xc1\xa7\x3d\x8e\xdd\xb8\x9f\xb8\x33\xd0\x10\x12\xab\xfb\xc7\xa0\x06\xb5\x10\xef\x9c\xd8\xca\x3d\xbc\x0a\x0b\xf6\x8a\x56\x55\xa6\xad\x2d\x9b\xd1\x69\x07\x3e\xdc\x56\x0c\x1d\xfb\xd4\x4f\xa6\x64\xda\xb6\x5e\x25\x63\x75\x19\x3e\xee\x02\x4c\x7a\xf0\xd6\xb7\xdc\x49\x7b\x33\xb2\x60\xf1\xd2\xe1\x37\xf6\x22\x06\x1a\x0e\x25\xe8\x41\x0c\xdd\xde\xd9\xfe\xf4\x7e\x48\x59\x37\x07\x62\x3b\x83\xc1\x27\x2f\xe9\xe7\x14\x08\xcd\x87\xa0\x4f\xf8\x6b\x0a\xd2\xd1\x0b\xe1\xe1\xad\xf0\x29\xc8\xd2\xd4\x7e\x1c\x5f\x98\x7a\x66\x04\x55\xdf\x73\xa0\x8b\x4e\xf6\x56\x95\x84\x90\x94\x5c\x14\xbd\x07\xb2\x44\x17\x5f\x23\x07\xff\xcc\xbb\x90\x0d\x56\x51\xc0\xb7\xf0\x04\x17\x3e\x02\x86\x22\xd3\xec\xd3\x5f\x83\x55\x14\x0f\x2e\x94\x59\x4c\x75\xfb\xbc\x1f\x82\x82\x1f\x50\x75\x66\x07\x37\xdb\xcb\x3d\x64\x68\x67\x55\xb3\xc2\x57\x36\xbc\x14\xae\x38\xb8\x11\xdc\x82\xc4\x5b\x65\xa4\xdf\xb4\x32\xe1\x0e\x08\xbc\x66\x53\x4b\x65\x7c\x1a\x2f\x7b\xee\x6b\xdc\x26\x0c\x7d\x44\xed\x7a\x87\x12\x14\xec\x1f\x50\xea\x63\xcc\xa9\x63\x61\xe5\xb6\x4b\xc2\x43\xb0\xda\xaf\xeb\x95\x05\x9f\xb4\x05\x04\x5d\xf6\xc7\x01\x83\xa0\x08\x8a\xd1\x47\x92\xd8\xaf\x51\xf0\xd0\x16\xea\x99\x69\x11\xc5\xea\x85\xbd\x00\x51\x7a\x27\x10\xd1\x27\x0d\x80\xf8\x1d\xa0\x31\x4b\x49\xe0\xf1\xc6\xe0\x6d\x46\xb0\x13\xf2\x1f\x26\xc6\xac\x89\x0f\xb6\x48\xb2\x50\x07\xe7\xcf\x42\x56\xb9\x25\x06\xe1\x7e\xac\x3e\x5d\x9e\xa7\xe7\xd7\xb1\x90\x9e\x5d\x41\xbd\x4d\xad\x1c\x3c\xec\xd6\xab\xb5\xec\x6b\x8e\xb5\x44\x67\xea\x46\x3a\x3c\x3b\x7b\x3f\x7c\xac\x72\x81\x08\x88\x84\x0b\xc3\x64\xdc\xe8\x16\x22\x0d\x83\xa4\x45\x4a\x52\x2f\xf4\x46\x83\x2b\x7f\x8e\x0e\x9d\x3f\x5a\xf1\x9c\xe6\x8a\xa0\xef\xdf\xff\xd7\xd5\xc7\x0f\xc7\xe2\xeb\x93\xdd\x6e\xf7\xc4\x17\x7f\x32\xf4\x8d\x6a\x7d\x5f\xea\x63\xf1\xbf\xde\x9f\x1f\x0b\xe5\xaa\x1f\x16\xe2\x3d\xd0\xbc\xe4\x1c\x22\x3b\x6c\x70\xe9\x00\xa3\xe6\xa1\xbf\x3b\xd6\x47\xe0\x29\x20\x4e\xdf\xb3\xa7\x32\xbb\x13\xcf\xf6\xe6\x45\xdc\x8e\x19\x53\xec\xa7\x31\x9c\xdb\x34\xc9\xe0\xf8\x9b\x30\x58\xf4\x58\xca\x15\xfc\x18\x67\xc4\x13\x07\xc0\x78\xa1\xc2\x2b\x6a\xd2\x8a\xab\xb7\xa7\x3f\xfd\xe7\xff\x14\x6f\xdf\x9f\x9e\x89\x8d\xfa\x2a\x6a\xbd\x56\x78\xdd\xca\x04\xe2\x56\xf3\xa4\xff\xaf\x27\x7e\x35\x3c\xb9\xd2\xeb\x56\xba\xa1\x57\xbc\x00\x90\xb2\xa5\x3c\x5f\x23\xab\x9b\xb9\x97\x38\xc7\x20\xba\x32\x2d\x0d\xc0\xbb\xca\xb4\x79\xef\x11\x84\x9d\xd3\xce\xc0\x2d\x2d\x2a\xe3\xfd\x9a\x09\xbc\xdb\x46\xb5\xfe\x68\x1a\x9a\x3a\xe7\x2a\x96\x8a\x97\x80\xaa\x7f\x19\x17\x86\x40\x86\xf0\x70\xc7\x89\xf8\x2f\x08\x61\xb5\x61\x6b\x2e\x9f\xc5\xbd\x03\xe0\x71\x59\xbf\x19\xca\x44\x50\x3d\x11\xef\x44\xeb\x45\x21\x16\x92\x63\x5e\x10\x94\xc7\x38\x48\x65\x79\x22\xce\x95\x13\xdb\xa0\xc2\x84\x35\x8e\xd8\x26\x25\x72\x53\xdf\xf9\x6c\x1e\x94\x17\x69\x6c\x43\x36\x83\x9d\x0e\x60\xee\x77\x37\x9b\x3d\x8f\x91\xb8\xa5\x71\x91\x34\x98\xe5\x4c\x56\x8c\x45\x1c\x43\x44\x42\xd8\xce\xb9\xd9\xa1\xd8\x92\xb3\x13\x97\x1c\x1c\x7c\xfd\x9d\xaa\x41\xc6\x65\xc6\xb1\x1b\x67\xb3\x03\xd5\x87\x1b\x02\x74\x59\x3d\x46\x47\xdc\xfa\x58\xb0\x13\xeb\x31\xd9\x27\x1e\x73\xd4\x8b\xfa\x58\x0c\x6d\xfc\x8d\x0e\x84\x24\x8e\xf3\x27\xd8\x47\xfb\xcf\x60\xbe\x5a\x1f\xe3\x0b\xd9\x31\x61\x31\xed\x68\x66\x9f\x92\xf9\x1b\xdc\x01\x1a\x4c\x76\x52\x6b\x87\xff\xff\x7b\x93\x76\x05\xfa\x66\xf7\x6d\xb5\xe9\x4d\xab\x7f\x9f\xe9\x1b\x5e\x17\x45\x17\x64\x1c\x73\x76\x44\xbe\x0b\x38\x9f\x25\xc6\x40\x0b\x3c\x76\x27\x3c\x3f\x3e\xad\x9b\x02\x6a\xc6\x78\x9a\x07\x00\xe2\x62\x65\x5b\xbf\x65\xa3\xc1\xf4\x06\x7c\x26\xe7\xef\xc4\x31\x04\x25\xc7\xa2\x1c\x67\xa4\x61\xa3\x0f\x9f\x85\xa8\x98\x0e\xa4\x2b\x1e\x5e\x4c\xbe\x89\x83\x45\x01\x17\xdf\xc8\xc8\x4e\x71\x38\xc2\x73\x35\xc7\xbc\x18\x30\xb5\xb6\x8b\xf2\x1f\xf1\x08\x13\xb9\x8e\x00\x47\x75\x4c\xc4\x29\x5a\x33\x53\x1d\x4a\xac\xe1\x90\xe4\x88\x51\x15\x58\xa2\xe1\x17\xd3\xe1\x95\xbd\x97\x21\x2d\x17\xe4\xf9\x90\x04\xfe\x27\x3f\x21\x21\xac\x13\x1c\x26\x29\x67\xe3\xa5\xdb\xdc\x2f\xdb\x83\xd0\x03\x73\x4e\x71\x18\xe2\xc9\xc3\x98\xfb\xd1\x50\xd7\xda\x56\xa6\xaf\xef\xc6\xfd\x12\x81\xfe\x08\xf6\x76\xed\x64\x73\x4f\xd3\x5f\x12\xd4\xb7\xe1\xc7\x31\xe1\x77\x6a\xf0\x3d\x9d\x51\x66\x6d\xb6\x12\xcc\x79\x5f\xc2\x8f\xc9\xe1\xbc\x91\x6d\x8b\xae\x0b\xf8\x2b\x9d\xeb\xae\x31\x7b\x7e\xf9\xf4\x25\x7c\xf1\x63\xee\x53\x90\xe4\x9d\xd0\xe5\xf3\x33\x7c\xad\xf3\x8d\x71\xd5\x46\x7e\xf7\xec\xe9\xf2\xb9\xe7\xc3\xe9\x5e\xa3\x31\xe6\x86\xbd\x96\x64\x0d\xfb\x26\x3c\x7d\xd3\x85\xf7\x34\xa3\xcd\x8d\xac\x6b\x34\x94\xd2\x2d\x0e\xc5\xe8\x91\xc1\xf8\x48\x14\xb6\x6a\xc4\xa5\xc1\x1c\x84\x76\xd2\xd8\xc7\xde\xcc\x75\x26\xaa\x39\x00\x0a\x46\x60\x83\x0f\xb0\xc8\xfa\x09\x30\x1c\xa4\x8d\x16\xd7\x1b\xb5\x0f\xc2\x13\xbc\x71\x07\x97\xd4\xf9\x6b\x3e\xd0\x3c\x7e\xe4\x34\xbd\x4a\x35\x65\x3e\xc8\xfc\xb8\x0a\xc4\x24\x42\xed\x57\xbb\x17\x75\x6c\x46\xaa\x0e\xce\x1c\x82\xe6\x7a\x31\x7d\x55\x34\x40\x8d\x5f\x3f\x8d\x3d\x3d\xf8\xfa\x69\x5a\x34\x7d\x02\x35\x29\x0a\x12\x42\x18\x84\x59\x0b\xf8\x6c\x5a\xa6\x0f\x9c\xc6\xae\x3e\xe0\x8d\xd3\xf9\x99\x1b\x2b\xb5\xee\x9d\xea\xbb\x1c\x60\xea\xb4\x73\x0f\x78\xed\x74\x1c\x66\xef\x01\xfa\xad\xb9\xb6\xa4\x06\xd2\xa1\x01\x0f\xd5\x72\xa5\xcf\x11\x4c\x9d\xc3\xbe\xf1\x81\x83\x59\xac\xf7\x3c\x72\x50\xeb\xd5\x6a\x81\xa1\xa2\x4b\x6b\x86\x1e\xcc\x23\x5e\xc0\xb7\xb8\x82\x6f\x04\xa1\x40\x99\x27\x14\x31\x13\x13\x83\xd3\x28\x79\x89\x42\x22\xb8\x0b\x83\x46\x39\x54\x78\x22\x5e\xea\xd5\x0a\x5d\x87\x3f\x18\x17\x9b\xb2\xc0\x22\x76\x63\x76\xa5\xff\x05\x6f\xa6\x82\x95\xe4\xc6\xec\xb0\xd0\x95\x4f\x49\xc0\x6c\xd7\x68\x57\x52\x94\xea\x2b\xff\x01\x71\xb6\x13\x88\xa1\x85\x98\x9a\x0c\xf3\x09\x3f\x53\x28\x8f\x32\x04\x0b\xe1\x8b\xb5\xa3\x3a\x04\x82\x04\x6d\x47\xbc\x72\x83\xad\xc2\x70\x47\x35\x10\x42\x50\x67\x44\x90\xf4\x4d\xa3\xa3\x3a\x28\xfe\x23\x04\x0d\x34\x50\xf7\x17\xef\x3e\xe0\x27\xc4\x88\xa6\xe8\x5e\x10\x2c\xfc\xb5\x6e\x68\xbc\x21\x82\xa4\x1d\x3a\x08\x44\xa9\x6a\x0e\x90\xe9\xf3\x44\x92\x9c\x38\x77\xa6\xe1\xc2\x11\x87\x33\xa6\xdc\xca\x76\x1f\x5c\xd1\xaf\xcc\x56\x91\x2a\x67\xa7\x88\x0e\x42\x48\xf1\xe8\x09\x6b\x8c\xf0\x45\x08\x8a\x07\x84\x6f\x06\x3d\xda\x82\x23\xa4\x2f\xe6\x22\xa5\x73\x1e\x86\xbd\x67\xc6\xcf\x93\x0b\x66\xfe\x18\xa2\xee\xe5\x0a\x1c\x13\xfd\xff\x90\xda\xf5\x2a\x16\xbb\xe8\xd5\x93\x71\x31\x72\x20\xf4\xff\x42\x9a\xdc\xa0\xf3\x4a\x9c\x81\x38\x33\xec\xeb\xea\x8c\x38\xb2\x14\x47\x94\x76\x7e\x8e\x18\x57\x7f\x49\x2f\x86\xe2\xda\x87\xb7\x1e\xb3\x3e\xa5\x9e\x89\x17\xc8\xa0\x8a\x30\x0e\x60\x8e\x83\xef\xe5\x75\xbd\xa9\x87\xca\x2d\xb2\x76\x67\xa5\x91\x23\x55\xbc\xea\x44\x63\xd6\xa0\xf3\x80\xc0\xcf\x68\xbf\x3c\xb4\xb5\xea\xad\x43\x57\x05\x99\x90\x79\xbd\xed\x7a\xbc\xf9\x61\xf4\x4e\xae\xc3\x7b\x7e\x72\x8d\x61\x67\x62\x1e\xdc\x75\xf8\x1c\xff\x23\x2b\x13\x38\x01\xbe\xa6\x48\xa2\xc7\x3a\xb9\x06\xc6\xbe\x4a\xdf\x2b\xf0\xc2\xa8\x69\x99\x39\x4f\x1a\x90\x1d\x71\x9c\x3a\x3d\xd6\x38\x27\x77\x4a\x4a\xa6\x9f\xb6\x2d\x05\x4c\x0f\x39\x8d\x91\x35\xca\xfe\xe7\xf8\x6b\xb1\x58\xcc\xac\x9a\xe9\x7b\xee\x5d\xaf\x9e\x8c\xe7\x3a\x81\x0f\x03\xf0\xab\x7a\xdc\x34\xa2\x33\xba\x75\x02\x9d\xec\xa4\xcb\x56\x0a\x5f\x7c\xd1\xd4\x6a\xd3\x3e\x81\xf3\x32\x36\x63\xec\x5a\x1a\xaa\xa3\x85\x12\x97\xcc\x78\x55\x83\xd3\x1e\xef\x08\xf0\xda\xcb\xb7\x05\xac\x9e\xb8\x31\xc0\x7d\x76\xb2\xa1\x90\xdf\x8f\x50\xb9\x99\xc3\x0c\x30\x9e\xbd\x2c\x6f\x85\x8b\xd2\x31\xcc\xfc\x71\xcb\xf5\x8c\xdd\xf4\x2a\xd3\xa3\x86\x3e\x58\x0d\x38\xb9\xbe\xf3\xe9\xba\x51\x6d\xe9\x05\x3c\x56\x71\xcf\x69\x3a\xde\x03\xb9\xd3\x5f\x82\x87\x78\x1e\x4f\x29\x69\x8f\x4c\x78\x9e\x09\x2e\x72\x92\x4e\xf6\x55\xf6\x14\x71\x2c\xc1\x31\x7a\x80\x13\xe0\xdf\x45\xf1\xd9\xf4\xeb\x2f\x05\xdc\xb2\x42\x58\xf7\x10\x8f\x35\xbd\x52\x05\x35\xb3\x87\xf1\x3d\xba\x0b\xf0\xf5\xd0\x34\x11\x3a\x7f\x39\xee\x8d\xdf\xa6\xb9\x91\x92\x07\x40\x25\x3f\x3c\x14\x47\x3e\x2a\xf4\x56\xdc\x82\x9f\x28\x31\xfd\x3a\x7a\xa5\xa6\xd5\xe1\x93\x49\xd1\xd7\x91\x5e\x61\x28\xc8\x77\xe4\x44\x5c\xc0\x8f\x42\xb7\xb7\xda\x79\xfe\x61\xab\xd0\xca\xf1\x1d\x24\xc0\x79\x63\x5a\x55\x64\xde\x15\x05\x04\x8f\x2f\xd9\xb3\xe2\x84\x7d\x2c\x28\x3d\xb3\xeb\x3c\xc9\xcc\x3c\xd3\x27\x55\x3c\xca\xdc\x95\xd6\x23\x87\x51\x99\x71\xb2\xf7\xd0\x81\x3c\xfa\x92\x30\x84\x90\x7a\x17\x74\xf6\x10\x9b\xa7\x0e\x03\x07\xf0\x04\x5c\x60\xf3\xd9\xa2\xe4\x07\x8b\xca\x63\xd6\x6d\x16\x59\xcc\x2e\x62\x35\x09\xad\xd9\xa0\x07\x7e\x2c\xe6\xb9\x54\x70\x50\xf8\x05\xe1\xb3\x77\x84\x48\xed\x2a\xf1\x21\x45\x4c\xa6\xe7\x75\x53\x3d\x2c\x20\xf2\x22\xc9\x2f\xc5\xc1\xc7\xa5\x3e\x8e\x97\xc7\x3d\xcf\x4b\x01\x9e\x38\x20\x39\x32\x18\xca\x87\xbc\x51\xc5\x9c\xe9\xb7\xfa\xc4\x86\xed\xe0\xf9\x9f\xb0\xf4\xd3\xcb\x33\xf2\xdd\xf8\x15\x7f\xc5\xac\xc6\x54\xec\x48\x7b\x4e\x3f\x0f\x9a\xfc\xdc\xe5\xd2\x91\x83\x26\xb4\x29\x1b\xc8\x80\xe9\xa1\xf6\x41\xe4\x29\x62\xfa\xf5\xbf\xe7\x28\x92\xbd\x5d\x3a\x69\xb5\xbc\x95\x4e\xf6\x87\x1a\x8d\xb9\xdc\xf6\x07\x37\x7d\x6c\x45\x97\x11\x8c\xb1\xf2\x69\xf2\x9a\x28\x74\xf0\xce\x22\xf9\xdb\xa2\x69\x83\xc3\xb5\x5f\x62\xc5\x46\x26\x30\xf8\xaa\x28\xec\x82\x07\x3c\x2d\x7a\xc0\x0e\xea\xae\x37\x46\xc7\xad\xf4\x84\x26\x44\xdd\x4c\x1b\x79\x67\x89\x94\x39\x31\x23\x9b\x9a\x3f\xfe\xee\xe8\xbc\x89\x4d\x62\x4f\x42\xcf\x0c\xf2\xf8\x45\x4d\xe7\x2a\x09\x79\x3f\x7e\x34\x37\x8e\x1c\xb0\xa1\xe4\x4f\x99\xad\xb7\x82\x48\xf7\x82\xfe\x6f\x74\x57\x66\x6f\x8d\xbe\x0f\xe9\xc9\xb3\xa3\x3f\x87\x62\xa4\x41\x22\xb6\xa8\x1a\xa5\x47\x72\x09\xf1\x1a\xd8\x3b\x25\x00\xe1\x37\xb0\x8a\xb3\x39\xe3\xf2\x79\x1d\xf8\xbf\xec\x4d\xa3\x42\x43\xc5\xa5\x69\x54\x6c\x5e\x1e\x73\x32\x2f\x18\xca\x84\x74\x52\x37\xf0\xc3\x8f\x21\x3d\x7f\x30\x98\x53\xe9\xc8\x4c\x1f\x22\x01\xf6\x9a\xb0\x83\xb4\xf2\xf3\x18\xba\x85\x88\xff\x74\xb8\x7e\x30\xbb\x02\x4f\xd6\x05\x04\xb5\x3c\x11\xff\x65\x74\x4b\x29\x79\xa5\x98\xe6\x19\x9d\xf8\x44\xce\xa5\x17\x99\xf0\x15\xec\x69\xfe\xe8\x29\x40\x38\x58\xc2\x23\x80\xf4\x18\x37\xf0\xe9\x14\x3a\xb5\x45\x33\xa2\xfc\x11\x3b\xc4\x3a\x7a\x99\x07\xa3\x59\x64\xf5\xa6\x10\x0f\xa9\x18\x22\x15\x8c\xab\x3b\x66\xd5\x3c\xe8\xf3\x82\x87\xa6\xda\x72\x3b\xc0\x76\x22\xb6\x03\x02\x26\xe4\xed\x48\x21\x1e\xd2\x0e\x5f\x0b\xc4\xcd\x63\x37\x8c\x83\xed\x91\x75\x2d\xd0\x42\x3e\xb5\x8d\xb3\xe3\x26\xc6\xc7\xe8\xae\x93\xe3\x1c\x2c\x8b\xeb\x11\x7b\x62\x17\x73\x47\x2a\xe6\xa0\x49\xe8\x0c\x07\x81\x56\xfe\xb3\xcf\xc3\xdf\x4f\x04\x20\x1e\xa2\x2f\x19\x40\x13\xfb\xfd\xec\x71\x8c\xe9\xb9\x84\xed\x8a\x1c\x1f\xf0\x0d\x44\x1b\x28\xf3\xfe\x23\x19\xe1\xf8\x75\x28\x64\xff\xd2\x43\x05\xf8\x3f\x9e\xc9\x1a\x20\xca\xb0\x57\xfd\x06\x4b\x6a\x9d\x22\x0b\xc4\x1c\xa0\x02\x11\x9f\xc2\xf1\x8e\x4d\x99\xb7\xe4\x9e\x48\xc1\x6d\x58\xe6\x36\xcc\x50\x5b\xb9\x1f\x3f\xf7\x0d\x91\x2c\xb2\x5d\x73\x58\x4e\x9a\x36\x25\x9e\xeb\x6f\xf4\xad\x6a\xe3\x82\x39\x28\x2b\x2d\xd2\xad\x3e\x5d\x20\x09\xb9\xd6\x29\x4f\xbb\xee\x21\x92\x23\xcf\xbc\x27\x1d\xc9\xc2\x00\xf4\x3f\x87\x3e\x57\xb2\x1d\xd3\x06\x30\xb8\x54\x72\xfb\xf8\x2e\x12\xf1\x87\x9b\x03\x24\xe5\xee\xf6\x00\xc9\xc0\xc0\xc5\x6d\x9d\x92\x87\xbb\x9a\x85\xf4\xe0\x0f\x37\x0b\x28\xcc\x03\x9b\x75\xcc\x6d\x42\x3e\xc6\xd3\x8b\x39\x4a\x71\x57\x6b\x47\x72\x13\x2c\xe3\xcb\x54\x78\x62\xb2\x01\x06\xc2\x20\xd8\xcd\x1a\x08\x27\xfa\xe6\xc5\x62\xbc\x9f\x12\x0b\xe7\x64\x4f\x25\x2e\x14\xdc\x16\xb0\x65\x26\x57\x33\x3a\x0f\x23\xaa\xd6\xb4\x20\x6e\xe3\xdd\x6f\x70\x47\x4b\x90\xd3\xed\x93\xeb\xf7\xc4\x13\xc1\x1b\x68\xd9\x03\xa7\xe1\xca\x89\xb4\x53\x3a\x84\x82\x29\x3e\xc3\xcc\x7d\x29\x6a\x69\x37\x4b\x23\x7b\xb8\xf9\xe0\xdf\x45\x16\x66\xa0\x48\x09\xd5\x98\x43\xc6\x67\x88\x93\x41\xcd\xc6\x53\x0e\x6e\xe3\xa5\xbf\x20\x67\x9c\x66\x09\x16\x1f\xb0\x5f\x33\x33\xb9\x1e\x28\x92\x0f\xf9\x40\x80\xcb\xbb\x75\x6a\x2b\x3e\x60\x42\xb1\x35\xad\x46\x73\xeb\xf7\xf8\x4b\xb7\xeb\x22\x0b\x47\xf5\xda\x7f\x14\x10\x80\x88\x52\xce\xa5\x75\x85\x33\x0e\x5e\xb1\xbd\xf6\xff\x7f\x16\x47\x75\x11\xbb\xbe\x58\x0e\xba\xa9\x39\xda\xd3\x0b\xff\x21\xde\x45\x2b\xab\x04\x50\x76\x5d\x79\x8b\xc4\xb2\xeb\x1a\xee\x16\x7b\xa5\x45\xb8\xb5\x76\x25\x87\x91\x39\x49\x83\xca\xa4\x30\x26\x05\x31\x33\x10\xd8\x2c\xa7\x41\xb4\xc3\x66\xf9\x8f\x09\x44\xb8\x62\x40\x18\xbe\x68\x08\x50\xd6\x49\xa7\xad\x03\x2e\xf2\x8a\x7f\xdb\x04\x20\x1a\x1f\x62\xb0\x40\xfa\x48\x51\xc0\x34\x94\x64\x9d\x1a\xa6\x85\x26\x01\xb0\x0e\x76\xae\x4a\x1e\x55\xb0\xda\xab\xa5\x93\x4b\x56\x56\x3d\x5b\x82\x0e\x7a\xf9\x1c\x15\xb9\xc7\x49\x42\xb6\xe0\xd2\x8c\xec\x3a\x35\x26\xe7\x4c\x45\x4c\xc7\xb7\xb5\xb3\x24\xeb\x64\x5e\x97\xac\x26\xb5\xf0\x0d\x58\x9a\xc6\xfe\x3c\x31\x85\x3d\x7b\x32\xec\x06\x82\x23\x90\x8c\x94\x65\xa1\xfb\x5a\x96\x84\xae\x92\xa3\x9e\xa0\x9a\x3c\x4d\x6b\xcc\x5a\xb7\x02\x55\xef\x79\xf7\x48\x72\xc9\x71\x72\x2c\xba\x0c\x05\xc4\x48\x4f\x53\x36\x6c\xc5\x9c\xa5\x02\xfd\x49\x13\xc8\x3c\x79\x02\x18\x83\x71\xdb\xc5\xdc\x42\x62\x85\x44\x58\x4c\xa8\x95\x98\x83\xb4\x3b\x8d\xcf\x12\x5f\xc1\x8f\x74\x11\xc1\xab\x23\x65\x04\x75\xa6\xec\x87\x36\x3a\x06\xd2\x13\x25\xd1\x81\xcb\x73\xbe\x43\x3b\x5b\x0d\x16\xbc\xcc\x72\xab\x46\xc9\xb6\x1c\xda\xa5\x6e\xeb\xd2\xd0\xfb\xe0\x67\x3e\x51\x0c\xed\x12\x8c\x2a\x3f\x02\xc5\xb2\x77\x16\x4a\x98\x8c\xd3\xa6\x11\x98\xc5\x25\x13\xcf\xbb\x79\x6e\x23\x62\x26\xbe\x85\x4c\x7a\x65\x14\xb6\x6d\x64\xe3\x24\x04\xf7\x25\x93\x1e\xce\x7e\x10\x8e\x51\x2b\x23\x44\x40\xf3\xed\x4d\x85\x23\xd2\x1f\x89\xfa\x56\x8d\x1a\x99\xfb\x9e\x13\xc8\x3d\x18\x46\x4d\x9c\x45\xf1\xed\x8d\x04\xd6\xa4\x5d\xe3\xc1\x7c\xa0\x91\x7b\xd1\xab\xca\xf4\x35\x69\x01\x1a\x63\x1d\x90\x6d\x7c\x49\xf6\x6e\x94\x87\x5a\x7d\x27\xce\x6f\xe8\x86\x3f\x4c\xd6\x55\x6c\xbe\x11\x6b\xd9\x2f\xe5\x1a\x3d\xad\x28\x84\x96\xc9\xbd\xfd\x0f\x14\xbf\x6b\x80\xa1\x41\xb5\x67\x45\x67\xd0\x1f\x6a\x5b\xaf\x20\xf4\x8c\x6c\x9a\xd2\xda\x0d\x59\x7d\x5c\x2a\xbc\xb8\x7a\xbc\xb0\x76\xf3\x54\xd2\x53\xfb\x0a\xec\x23\xec\x63\x7c\x85\xe9\xfb\x4a\x42\xb0\x82\x9f\x21\x50\x14\x9c\x0e\x50\x9a\xc5\x04\x3f\x5a\x3f\xdc\x59\xd1\xa8\x2f\xc9\xd1\x90\x8c\x6d\x0f\x4d\x71\xea\x41\x3d\xe0\xd8\x3e\x97\x90\x44\x97\x62\x95\x02\xeb\x7a\x22\x84\xc0\x1a\x1b\xeb\x38\x83\x2c\xfc\xcd\x6a\xb2\xe6\xef\xa8\xe2\x8e\x59\x78\xfc\x2d\xb5\xa6\xdd\xf4\x35\xdc\xb1\x86\x7a\xa5\x5b\xed\x26\x5b\xe1\x12\x92\xb5\x6c\xf4\xef\x7f\x70\x43\xcc\x21\xfe\x77\x37\x44\x9f\xb4\x6a\xdc\xa5\xec\x78\xe8\x6f\x55\x5f\x0e\x1d\x71\x48\x57\xf0\x2d\x3e\x75\x23\x26\x09\xec\xf7\x5b\x57\xae\x4d\x6f\x06\xa7\xf1\x55\x3a\x4c\x13\x6f\x38\xcd\xce\x14\x80\x5b\xa0\x7d\x39\x50\x90\x51\x2e\xf3\x1e\x92\xc5\x27\x78\x56\x30\x96\x02\x0e\x93\xcb\xc8\x06\x94\xeb\x78\x03\x00\xac\x27\x95\x3a\xe5\x8c\xa4\x24\x95\x31\x4b\x27\x29\x72\x24\x01\x7f\xa4\x94\x04\x16\xee\x5e\x55\x5f\x36\xc6\xdc\x0c\x1d\x30\x87\x10\xfb\x0a\x93\xc5\x39\x24\x8b\x6b\x9f\x3c\xad\x81\x5b\x15\x8a\x8d\x1a\x75\xa8\xdc\xaa\x57\x93\x32\xaf\x7b\x35\x85\xe7\x91\xdb\x28\xd9\x4d\xc6\xed\xad\x92\xdd\x64\xd4\x00\x72\x3a\x00\x00\x7b\x78\x14\xd2\x52\xba\x06\x9d\x44\x5a\xe2\x5d\xdd\x1c\xaa\x43\x83\x89\xd8\x18\xbe\xf5\x92\xce\x81\x12\xc4\x92\x8d\x5b\x45\xf7\xa5\x93\x56\x99\xe5\xdf\x55\xe5\x2c\x43\x7f\xc4\xcf\x94\x67\x37\xc6\x59\xd7\xcb\xce\x73\xd3\xe0\x94\x80\xc3\xf4\x82\xd3\x3d\x37\x5d\xdd\x4c\x46\x0a\xa1\xa7\x43\x85\xd0\x87\xc7\x6a\x6b\x3b\xd9\x96\xd6\xf5\x43\xe5\x86\x5e\xd9\x50\xe1\xfb\xab\x4e\xb6\xe2\x2a\x64\x4c\x6a\x9c\x94\x4c\x57\xe8\xb8\xf0\x5c\xcd\x95\xac\x36\x6a\xb6\xea\x33\x9f\x73\x67\xdd\x93\xb2\x69\xe5\x93\xe2\x73\x3b\xa5\x37\x2b\xdd\x78\xa2\xb4\x1c\xaa\x1b\xe5\xca\x8d\xb4\x9b\xd2\xc1\x3b\xa9\x09\xae\x0b\x06\x13\x2f\x00\x4c\xbc\x95\x76\x23\xae\x41\x81\x39\x83\x75\x5d\x95\x5b\xe5\x24\x18\x70\x25\x58\xde\x9c\x89\xf7\x94\x3c\x57\x0a\x14\x9b\x25\x09\x51\xb4\x0b\x3d\x53\x9a\x60\xf8\x08\xba\x4f\x92\xab\x4e\x03\xc8\x1c\xb6\x56\x7d\xa5\x23\xbd\xda\x57\xf4\x32\xff\x57\xe7\xdb\x70\x89\x29\x09\x2c\x08\xc2\xeb\x8a\xa5\xc8\x2b\xb0\xed\x81\x78\xbc\x6f\xce\x60\xfb\x4e\x28\x58\x04\x46\xc2\xf5\xe6\x4c\x5c\xc8\xc1\xce\x02\x76\x12\x37\xd3\x41\x48\xae\x9e\x01\xb9\xe6\x31\x1c\x55\x6a\x71\x28\x91\xac\xa0\x16\x62\x01\x7e\xda\x18\xff\xb6\xec\x24\xda\xf6\x7e\xb2\xaa\x17\xef\x31\x26\xee\x85\x4f\x23\xd8\x56\xed\xd2\x0b\xaa\x78\xf1\x7d\x8a\x89\x0c\x86\xc2\x09\x88\x24\x98\xc2\xbc\x70\xcd\x66\xf2\x40\xa2\x29\x2f\x8b\x1f\x8c\x69\xf1\x00\xed\x8c\xa5\x34\x8e\xeb\x1e\x9e\x1f\xa4\x74\xf0\xcc\xe9\xd5\x5a\x5b\x47\xa1\x55\x20\x7e\x3a\x38\xdc\x5e\x42\x32\x8b\x48\xa9\x0f\xf6\xb5\x81\x5e\x26\x1d\xcb\x2d\x4b\xb9\x9b\xf7\xc7\x96\x5f\x10\x8e\xf4\xa9\x2b\xea\x19\x08\x2f\x6c\xd1\x98\xeb\x66\xd8\xb2\x11\x21\xd1\x6f\x12\xef\x89\x9b\xb4\x34\x08\xa7\x2c\xed\x8d\x30\x9c\x83\xe0\x9a\x8c\x72\x27\xad\xdd\x81\x65\x3a\xdf\x1c\xc0\xdd\x8b\xd0\x8e\xbc\x10\xe1\xe6\x02\xec\xbb\x87\x96\xec\xea\xb8\xf5\x31\xfa\x23\x99\xfd\x05\x16\x83\x06\x82\x72\xee\xbb\xa3\x8d\x63\x91\xac\x14\xb0\x15\xca\xd7\xc8\x56\x7e\x45\xe1\x04\x86\x94\x42\xcf\x93\x6d\x69\xe2\x2a\x74\xc6\xb9\xe7\x7a\xab\x0f\x96\x65\xb5\xe8\xf7\x57\xca\x89\x27\x3f\xb2\x37\xea\xba\x31\x4b\x88\xb7\x8b\x41\x83\x1b\x8f\xe2\x07\xc2\xa1\x6d\x99\x2e\x4a\x50\xdf\x73\x83\xe1\x67\xbe\x48\xbb\xde\x6c\xf4\x52\x3b\x9c\x90\x99\x02\x0c\xc0\xaf\xa3\xae\xc3\x5a\xf6\x35\xd1\x12\xcf\x0a\x41\xa0\x2b\x9f\x81\x2b\xd4\xf4\x89\x65\x05\xaf\x79\x0c\xfc\xe5\x45\x0c\xf2\x9f\x98\x60\x48\xca\x24\x0f\xcb\x7a\xb6\x0f\x83\x6b\xa6\x78\xf4\xb6\x33\xbd\x2b\x79\xb1\xdd\x87\x0b\xc1\xc9\xa7\x37\xe3\xbd\xe7\x96\x4c\xbc\x2e\xe1\x15\x83\xa4\x9f\x17\xe7\x9d\xb7\xf1\xf9\xda\x80\x37\x76\x4a\xb3\x6b\xa3\x6a\x36\x69\x29\xbe\xc0\xe3\xdb\x1b\x03\x8f\x18\xcf\x99\x7a\x9e\x17\x5e\xce\xf4\x42\x56\x1a\x40\x26\xc4\x7b\x8a\x4f\x3d\x9a\x3e\xc4\x28\x41\x67\x01\x52\xdc\xa6\x0d\xd8\x48\x4b\x76\x49\x07\xea\xdf\x66\x5a\xf8\xac\xfa\x54\xc5\x96\x37\x00\xaf\x45\x83\xaf\xd2\xe4\xaa\xca\xe6\x4d\x99\x31\x49\x3b\x4d\xa6\xec\xae\xf7\x0e\x4c\x4f\xb1\x35\x46\xd4\x3d\xb3\x15\xc8\xa8\x3c\x94\x48\xa9\x37\x24\xe4\xa6\x53\x90\x14\xef\xd1\xf8\x0a\x0d\xf5\xd4\x40\xb8\xc7\xf5\x25\xdb\x39\xab\x0d\x4b\xe4\x37\xdc\x98\x96\x36\x01\x53\xa6\x37\xed\x98\x4e\x2a\x48\x71\x22\x7e\xc5\x5f\x94\x0e\x7a\x48\xe4\xde\x7a\x4e\x1b\x7b\x04\x12\xa4\x97\xcd\xfc\xc9\xfd\xbb\x2a\x40\xa1\x9e\xd1\x6d\x7b\x88\x70\x5b\x82\x8d\x51\x39\xfc\xa9\x41\x44\x9d\xb2\x92\x5e\x60\x4a\xfa\x8e\x2f\xa6\x28\x88\x3b\x58\x87\x08\x84\x35\xa5\x33\xcd\x0a\x21\xcf\x29\x7d\x6a\x08\x97\x34\x99\xd0\x8f\xda\x9b\xd4\x06\x50\xf3\x87\x49\xd2\x4a\xab\xaa\xa1\xd7\x6e\x0f\xa1\x80\x4d\x65\x1a\x74\x26\x86\x34\x88\x02\xec\xd3\xb8\x9d\x23\x77\x21\x4c\x85\x90\x26\x27\xe2\xad\xb1\xdc\xee\x0e\x5f\xf8\xbd\x30\x3d\xa7\x80\x7e\xaf\x06\x5b\x74\xdd\xd6\xe2\xe5\x87\x3c\x3d\xb3\x7b\x0b\xb1\x21\xe1\x34\xf6\x94\x2a\xb9\x36\xe2\x00\x90\x18\xff\x51\x2d\xd6\x0b\xf1\xf2\xe3\xfb\xff\xeb\xc8\xa6\x08\xf9\x68\xe4\xea\x2e\xe8\x7b\x0e\x26\xb1\x91\x93\x7d\xab\xdb\xf5\xcf\xf4\xa8\x16\xe3\x80\x67\xc0\x4c\x8f\x46\xe9\x5d\xe3\x07\xc0\xa9\xaf\x0e\x2e\x4e\x5b\xe3\xe8\x3d\xef\x8d\x5e\x6f\xc0\x62\x44\x37\x6a\x8d\x8e\x1f\x7e\xdb\x2e\x78\x26\x3d\xdf\x45\x2f\xf6\x01\xbf\x45\x97\x5f\x2f\xa4\x55\x29\x08\x0c\x11\x00\x84\x21\x92\x0e\x83\x51\xaa\x39\x8f\x6b\x71\xca\xb9\x07\xa1\xc7\x0f\xad\x03\x45\x0a\x1c\x82\x6f\xbd\xd5\xeb\xf6\x89\x86\xf7\x6d\x3c\x69\x54\x4d\x4d\x11\x0c\xb2\x68\x9b\x8b\x49\x0d\x6c\x27\x07\x0f\x95\x7c\xb8\xbb\x35\x76\xe0\xa6\x5f\x0d\xf7\xb5\x7c\x2b\x35\x04\x6d\x85\xff\x63\xb0\x5b\xd5\xeb\xd5\xbe\x5c\xf7\x66\xe8\xca\x84\x26\x9f\x88\xbf\x42\x8e\x80\x9c\x84\x5a\x53\x39\x2c\x40\xb7\x91\x10\x5a\x13\xc6\xfa\x0d\x40\x27\xb3\x11\x07\x1e\x4b\xe0\x2b\x2b\x01\x12\x9f\x59\xc9\x20\x62\xc3\x2b\xd3\x7a\xf9\x02\xa3\x21\x35\x68\x0a\x8c\xc5\x42\x2f\xc0\x2c\x5d\x6a\x78\x1a\xfb\x9c\x22\x9f\xe3\xc5\x60\xb2\x0a\x22\x46\x8f\x44\xd5\x5e\xd0\xc6\x6e\xd1\xe2\x88\xe8\xce\x01\x00\xa2\x11\x79\x80\xf1\x58\x5a\x5f\x14\x34\xe8\x27\xe2\xb5\x72\xd5\x46\xc4\x2c\x5f\x88\x76\x23\xfa\x75\x7d\xe5\xdd\x1a\xfa\x0c\x95\x65\x5d\xc6\x3b\xea\x00\x80\x56\x2d\x19\xc4\xd6\x73\x40\xa5\x95\xfe\xb8\xb0\xe2\xb4\x16\x57\xa7\x4c\x6a\xb6\xae\x2b\xe9\x62\xe0\xea\xfd\xf5\xc5\x1d\xb4\xcb\x83\x12\x5d\x01\xc8\x84\xb8\xf8\x2c\x22\x30\x90\x95\x50\x19\x0e\x29\x85\x74\xca\x72\xd8\x54\x55\x13\xc1\xb2\xf3\x70\x77\x71\xd0\x7e\x87\xf7\xca\xba\x5e\x57\x0e\xfd\xed\xb0\xcc\x42\xbc\x1f\x1a\xa7\xbb\x46\x71\x0a\x5b\xc6\x42\xf4\x85\x4e\xf6\xfc\x66\x7a\x65\xb6\x5b\x29\x1e\x1f\x3f\x5e\x64\xa7\x40\xe9\x1a\x1b\x43\xd1\x5e\x9f\x5f\x89\x57\x6d\xd5\xef\xd1\xe2\x86\x7a\x7a\xa3\x3b\x0f\x56\xe2\x9a\xf7\x1d\xbe\xd1\x1d\xc0\xe2\x5a\x67\x72\x2b\xb7\xa5\x55\xfd\xad\xae\xc2\x9e\xbc\x38\x7d\x0f\x2a\x3c\x5d\xa9\x94\xd8\x53\xd5\xf0\xb6\x1f\x0b\x51\xb1\x11\xa7\x83\x33\x99\x10\xc5\xa5\x92\x27\xb4\xc6\xc7\x23\x1a\xcb\xf0\xb8\x4e\x78\xec\x1c\x3a\x63\xb5\xb3\xa3\x8f\x97\xc5\xa1\x62\x81\xab\x4f\xae\xef\xe2\x99\x3c\x96\xe6\xf2\xe2\xf7\xf9\x0a\x2e\xb2\xd3\x36\x65\xbd\x72\x3c\x0f\xb4\x5b\x4d\x91\x25\x6c\xf2\x5d\xe3\x36\x1b\x27\x32\x2f\x91\x41\x96\xc8\x00\x90\x01\xd1\x08\x75\x30\x25\x9a\x96\x48\x8d\xbd\xa6\x63\x3c\x63\x0f\x7a\x87\x0d\x28\x2d\x51\xe0\x9d\x75\x70\x15\x3d\x80\x1a\xb9\x68\x80\x59\xee\xd1\x08\x89\xee\xa9\xc9\xa6\x22\x32\xea\x31\x14\xae\xb2\x04\x95\x46\x7c\xc5\x05\x00\xbc\x0f\x71\xce\x49\x37\x47\x9c\x73\xde\x8c\x7b\x18\x68\x44\x83\x12\x38\x79\x66\xb1\x37\xc7\x79\xb2\xe8\x88\x29\x19\x39\x71\xd0\x71\xa0\xdd\x66\x58\x96\xb2\xd3\xa5\x6a\x6b\x74\xec\x39\x11\xa7\x17\xef\xc4\x2b\xfa\x2c\xc8\x46\x63\xd1\x1a\x57\x5a\x70\x91\xfa\x1e\x7c\xe2\x94\xfb\x81\xb3\x48\x13\x1f\x8c\x39\x48\x13\x5f\x65\x36\x1d\x04\xbb\xec\x65\x5b\xf3\x9e\x7f\xe1\x3f\xd0\x11\x8b\xb2\xfb\x01\xcf\x22\xbc\xab\x85\xc1\x4c\xb3\xb6\xe8\x79\xe6\xb3\xfc\xcf\xbc\x01\x31\x1e\xfa\x28\x84\xfa\xa7\xcb\xf3\x11\xe4\x98\x2d\xcc\x73\x13\xbe\x32\xb0\x93\x39\xc4\xc6\xf9\x73\xa1\xae\x7d\x3b\x21\x14\x1f\x85\x94\x9a\x03\x23\xca\x0f\x60\xfe\xf7\x08\xa6\x52\xbd\x63\x07\xc7\x33\xd5\x93\x0a\x08\x7d\x10\x47\xa0\x37\x6a\xcf\x90\x7f\x56\xfb\x39\x08\x4f\x7a\xfd\x69\x17\x2d\x4b\xde\xeb\x16\x74\x16\x9e\x04\xb3\x89\x49\x5e\x66\x68\xf5\xd7\xd2\x1a\xd0\x91\x26\xbe\x13\xe0\x15\xfa\x55\x60\x46\x22\x7a\x8f\x4a\x63\x14\xae\xde\x18\x47\xa3\x7e\x8e\xe2\xb8\x31\x6e\x66\xdc\xcd\x6a\xd5\xe8\x56\xf1\x3c\x7e\xc4\xcf\xb9\xb9\xa4\x28\x54\x65\x6f\x06\xbc\xef\x58\x27\xef\xec\x60\xa2\xdf\x59\xe3\x15\x80\xa7\xc5\xfa\x77\x60\xaf\xe8\x90\x78\xf3\xbb\xee\x46\x70\xb2\xeb\x4a\xd0\xe1\x76\x12\x1d\x7f\x13\x73\x1e\x50\xe2\xfa\xf4\x49\x4f\x65\x5d\x4a\x6b\x95\xb3\xe5\xaa\x37\xdb\xb2\xd6\xf6\x86\x7c\xed\x04\xa6\xd3\x3b\x3f\xda\xde\x8c\xcb\x4a\x70\xf5\xe2\x21\xc2\x2f\x18\x9f\x00\x68\x37\xc9\x06\xba\x7a\x3b\xbf\x7b\xac\xdd\xcc\x88\x64\x49\x66\x58\xd8\xaf\xbe\x76\xf0\x6a\x68\x9d\x2f\x70\xbb\x61\x51\x87\x01\xb2\x25\x69\x37\x0b\x98\x4a\x1a\x96\x4b\x03\xd1\xd9\x92\xa1\xb0\x1b\xbf\x0a\xd7\xaa\x65\x90\x3f\xc3\xd7\x1c\x50\x09\x31\x00\x23\x18\xc6\x0f\x1c\x03\x6e\x71\x7d\xa2\xef\xbc\xfe\x5d\xe1\x23\xc7\xc9\xc2\xbd\x51\x7b\x01\x32\x30\x64\xdc\x55\xd4\xce\x94\xb2\x59\xd7\x14\xd9\x51\xe7\x57\xd2\xa5\x74\xa5\x97\xc7\x5d\x72\x77\xfd\x68\x04\xf3\x48\x48\x07\xc6\x43\xd9\x58\x41\x42\x49\x4f\x51\x94\x38\xd7\x24\xd4\xbb\xf0\x42\x05\x26\xa7\xc5\x80\x45\x6e\x4b\xe2\x16\x81\x1f\x6e\x21\xcc\xe6\x0c\x10\xcd\x16\x01\x8d\x27\x8b\x29\xaf\xee\x36\xfc\x98\x0f\x92\x5e\x4c\x08\xab\x0b\xb5\x91\xbc\xbc\x12\x85\xc7\xec\x2a\xf3\xd0\x77\xaf\x03\x80\x40\x73\x6b\x96\xea\xaf\xe0\x0b\xce\xb9\x0c\x4a\xb6\x56\x97\xd5\x46\x3a\x3c\x3c\x4e\x3f\x5c\xbd\x03\xef\x7a\xab\x5c\x06\x07\x6f\x67\x95\x51\x8f\xf2\x1a\xdf\xd2\x22\x6d\x4a\x0a\xb9\x95\x5f\xa3\x66\x15\x94\xa6\xa8\x9b\x15\x41\x55\x0b\x89\x59\x99\xae\x57\x18\xee\xb7\x6c\x74\xa5\x5a\x4b\xcf\xa9\x51\xa2\xe0\xc4\xac\x0c\x93\x20\xa0\xe2\x6b\xa8\x85\x09\x10\x10\xf3\x37\xa3\x3a\x88\xf8\x20\x45\xf4\xa3\x55\x6e\xf5\x3a\xbc\x55\x48\xc4\x08\xb5\x95\x30\xae\x21\x77\x0e\x4b\x2f\xd1\xed\xbd\xec\x55\x5b\xab\x9e\x29\x26\x61\xe9\xe5\x0e\xed\x28\x30\x37\x23\xa0\x80\x85\x5c\xba\xcb\x95\x97\xa0\xfc\xcc\xe3\xd5\x6c\xb5\x8f\xef\xb0\x0b\xc8\x13\x49\x5e\xde\x8e\xda\xaf\x90\x05\x90\xeb\x5d\x2f\x3b\x78\xe5\xa4\xb5\x64\x25\xf8\x0a\x72\x05\x50\x6f\x9f\x2b\x62\xee\x1c\x16\xf2\x59\x86\x9e\x41\xaf\x7c\x83\x13\x3c\x49\x3e\xf6\x0b\xf2\x33\x4c\x43\xe7\x09\x70\x42\xfd\x3e\x41\x82\x50\x39\x11\x4c\x61\x9d\xda\x76\xbc\x84\x09\xda\x27\x99\x5e\xf6\xfb\xe9\x72\xa6\x42\x21\xc8\xef\xbe\x53\x36\x16\x0c\x81\x24\x7d\xf2\x5c\x39\xec\x96\xfc\x5a\x92\xc2\x8e\xca\x41\x6f\x20\x69\xba\x28\xa9\xa4\x2f\xc4\xe1\x07\x92\x52\x96\x4a\x70\x91\x7a\x19\x77\xf0\x4b\xb6\xa4\x9c\xdd\xbf\xf5\x32\xd3\xe4\xc5\xd4\x54\xef\x15\x53\x53\x3d\x60\x4c\x25\x2e\xec\x53\xc2\x81\xd5\xcb\x85\xb5\x0d\x2f\xc5\xab\xab\xf3\x6c\xdd\x25\xb9\x51\x3c\xfd\x7e\x65\x7a\xf1\xa8\x33\xd6\xad\x7b\x65\x1f\x09\xd3\x36\xfb\x1f\x92\x12\x34\x3b\x17\xc9\x64\x50\xea\x18\x87\xfd\x47\xa3\x9d\xfa\xd3\xa3\x31\x06\x3f\x7a\xf0\xd2\x76\x65\x5a\x58\x9a\x7c\x4b\x03\x8f\x5f\xfb\x44\xb4\x61\xb2\xa3\x32\xba\x6e\xd4\xa4\x0c\x18\x13\xa4\x65\xe2\x39\x4e\x3a\xc7\x84\xc9\x25\x8d\xe3\xfc\x41\x4d\xb9\xc4\x9e\xf7\x8a\x7c\xa9\x6a\x09\x26\x52\xc8\x9f\x73\xaa\xf0\xa9\x93\x92\x95\x31\x37\x5a\xc5\xa2\x34\x4d\x97\x5c\x08\xf3\x0f\x15\x9b\xd3\xbc\xdd\x5d\x02\xbe\x13\x1a\x43\xdf\x07\x0a\xd1\xe3\x21\x65\xd7\x9b\xaf\x7b\x94\xd5\x98\x6f\xc7\x1c\x01\x39\x63\xc9\x0a\x43\x3b\x4c\xb0\x05\xd2\x09\xb2\x0c\x58\x13\x97\x58\x71\x4a\x39\x41\xa6\x41\x13\xe4\x03\xad\x9a\x41\xc0\xe3\x76\x3e\x53\x9c\xcb\xab\xad\xd4\x4d\x9c\x5a\x54\xe3\xcd\xce\x2b\x40\x1e\x66\xc1\x30\xdb\x0e\x60\xf5\x51\xfa\x43\x47\x7f\x05\x05\x22\x24\x08\x4c\xc8\x81\x67\xf6\x24\x66\x00\x2f\x79\x22\x5e\xf7\x66\x9b\x67\xcc\xec\x4c\xcc\x08\x07\x96\x6a\x4c\x7a\x58\xbd\x3a\xff\x38\xaa\x53\x35\x06\xd8\x0f\x8e\xe3\xfa\xea\xfc\xa3\xe0\xef\x51\x5f\x6e\x74\x37\xd2\xe6\x54\x89\x94\x82\x39\x93\xf6\x95\x29\x0c\xbe\x83\x45\x81\x6e\x93\x8c\xbc\xd4\x43\xe4\x20\x84\xbc\x43\x0c\x8a\x0d\x00\xb5\x77\xe9\xd4\x57\x47\xf5\x47\x3d\x78\x0e\x2c\xeb\x3a\x01\x2e\x25\x5c\x6a\xc0\xeb\x8f\xa1\x80\x90\x0d\x48\x92\x10\x3e\x2f\x1f\x1d\xd5\xd6\xc8\xe7\x92\x06\x18\x6e\xf5\x81\xd1\x05\x80\x1c\x3a\x00\x96\x2b\x0c\x6b\x72\x22\x5e\xe3\x0f\x67\x30\x9a\x6d\x2c\xe9\x93\xbc\xe0\x0e\xa1\x90\x0f\x60\xb1\x18\x36\xe4\x3a\x16\x8a\xef\xa9\x53\x80\x5f\x8f\x62\x11\xd6\x39\x6c\xd3\xb0\xcc\x47\xda\x86\xd9\xf5\xee\x4b\x04\x25\x19\x04\x7e\x29\x1b\x32\xf6\x65\x3b\x09\x7c\x18\x16\x52\xb3\x52\xbd\xb2\x5e\xa2\xe4\x4b\x8b\xac\xec\xa5\xcf\x8b\x17\x16\x07\x31\xe0\x0b\xa6\xc9\xf6\x84\x17\x81\xf8\x59\x54\x15\xf7\x29\xfb\x6a\xcc\x15\xb7\x7a\xdd\x96\x5e\x28\xc6\xa8\x29\x5c\xda\x27\x0b\x8d\x8e\x58\x59\xb9\x20\x7a\xa6\xc6\x19\x89\xf0\x99\xaa\x1b\xd3\x72\xcc\xb9\x25\xf9\x65\x25\x3b\x57\x6d\x64\xc2\xb9\xa5\x48\x29\x77\x1e\xcb\x98\xbe\x66\x8e\x34\x01\xdb\x61\x5a\xfb\x20\xac\x66\xdc\xcb\x43\x88\xcd\xe1\x7e\xdf\xd5\xd4\x32\xc4\xf2\x79\xc8\xb1\xc0\x68\xe1\x4a\x21\xac\x53\x50\xe9\xcf\xae\x4e\x78\xa9\x81\xba\x86\x8b\x24\x98\xd7\x50\x3f\x70\x89\xa4\xaf\x1b\x24\x47\x3a\xba\xac\x25\x27\x3a\x6a\x3e\x0e\x1c\xe8\x90\xb9\xe8\x7a\x73\xab\x29\xb6\x11\xfd\x3c\x04\x12\x31\x33\x24\xa1\x1e\x17\xc8\x0f\xaa\xb3\xd1\xd1\x86\x30\x5e\x08\xb1\x1c\x1c\xd8\x8b\x1f\x57\xc0\x4b\x8d\xc1\xd6\x15\x3e\x9b\x78\x0b\x16\x14\x6f\xce\x04\x7f\x8d\x01\x3d\x0b\xd4\xe8\x95\x62\x63\x2f\x2f\x3f\xf9\x6f\x74\x31\x1a\x37\xd0\xf6\xab\xd1\x71\x7a\x76\x75\xf9\x7a\x7c\x8c\xa2\xcd\x5e\xe8\x35\x5a\xe9\xcd\x8e\x26\x40\x2e\x64\x2d\x3b\xbe\x94\x81\x5f\x79\xf6\xdd\x1d\x41\x98\xf4\xf4\xe4\x1c\x90\xd7\x42\x2b\x40\x54\x9b\x6d\x84\x87\x5b\x90\x2f\x33\x3c\xa0\x67\x1a\x0c\xdc\x51\xe2\x63\x71\x68\xca\xa0\xac\x15\x94\x8b\x42\x00\x3d\x25\x17\x89\x6a\xf0\x85\x49\x48\x6b\x48\x3b\x40\x56\x43\xfe\x61\x5e\x22\x81\x99\xe1\x92\x93\xdc\xb1\xc4\x72\x3a\x27\xaa\x24\xf0\x89\x90\x72\x35\x11\x4c\x46\x70\x2c\x97\xbc\x9e\x11\x48\x38\x3c\x54\xa2\x57\x20\x77\xc3\x79\xa5\x02\x05\x22\x9b\xeb\x7a\x32\x5e\x13\x79\x6e\x52\x6c\xd2\xdf\x58\xf8\x80\x94\x36\x41\x91\x0c\x41\x52\x7a\x4e\x4c\x9b\x2d\xca\xa3\x92\x94\x9d\x93\xd8\x3a\x0d\xe6\xa9\x09\x1d\xc0\x84\xf9\x01\x22\xe8\x05\x45\x24\x41\xe1\x30\x88\xaf\x9e\x06\x52\x34\x12\xcc\xc9\x04\x58\x2e\x8b\xee\x34\x73\x08\x12\x9d\xcf\xfd\x68\xd6\x3d\x87\x45\x61\xe3\xc0\x37\x3d\x87\x42\xc1\x8b\xac\x51\x01\x3e\x32\xb9\x60\x72\x5c\x72\xc9\x71\x11\x22\xdb\x2b\x55\x43\x34\xb8\xba\x0c\x25\x89\x74\x87\x1c\x6a\x70\x14\xc6\xe8\xd5\xe3\x30\xac\xf4\xd6\xf1\xec\xa8\x22\x6c\xb8\xb4\x4b\x68\x0a\xbf\xd5\x1f\x08\x0b\x17\xe1\x07\x07\x02\x7e\x0e\x24\x3c\x5b\x41\x78\xf1\x84\x56\xe3\x75\xba\xf4\x38\x93\xe2\x06\x03\xb1\x35\x03\x59\x97\xf9\x14\x41\x29\xe3\x02\x77\x5c\xa4\x12\xcb\xcd\x25\xd6\x3a\xa1\x3b\x6f\xf4\x01\x82\xb3\xd6\x2e\x4c\x12\x44\x91\xdc\xe8\xf5\x06\xde\xce\x4d\xa6\x0a\x23\x27\xee\x5b\x27\xbf\x8a\x90\x9f\x62\xf0\x6b\x1f\x4a\x37\xba\x45\x87\x2f\x5f\x02\x3f\x50\x11\x07\xb2\xba\x14\x56\xb7\x6b\x52\xe5\xfc\x70\x10\x41\x99\xc4\xe7\x24\x54\x69\xc4\xce\x19\x7c\xbe\xd4\x3c\x3e\xde\x91\x80\x25\xd9\x8b\x23\x04\x1e\x36\x43\xb0\xae\x4a\xd9\xaf\xc9\xee\x58\xf6\xeb\x01\x7c\x1a\xb3\x2a\x40\x4b\xa7\x92\xa9\x7b\x1f\xb4\x7a\xa3\xc9\x43\x70\x58\x9b\x29\x34\x2c\x4e\x54\xb6\xcd\x14\x00\xf7\xff\x04\xfe\x0c\xc3\x01\x4c\x01\x21\xa0\x7a\x84\x83\x58\xea\x33\x60\x64\x4a\x8d\x40\x6f\xce\x02\x08\xc3\x34\x2b\x1b\xd7\xcb\xf9\xeb\xab\xf9\xf5\xd2\xac\xec\xc2\x3a\xd3\xa3\xbd\xfe\x15\xfe\x4a\x33\xc9\xcf\x81\xc9\x0b\xf9\x39\x20\x35\x09\x70\x66\x9d\x54\x65\xd6\x07\xaa\x32\x6b\xd2\x74\x26\x1a\x67\x0f\x8d\x0a\xce\xb1\xea\xd9\x83\x93\x06\xea\x7d\xa2\x7d\xf2\xc9\xd3\x28\x59\xec\x30\xbe\xa8\x7a\x7c\xf5\xcc\xff\xbb\x96\xf6\x26\xb8\x92\x67\xda\x2f\x4e\xb3\xd5\x46\xd5\x43\x83\x6a\x6d\xfc\x19\xe1\x51\xa4\x04\x93\x7b\x30\xa0\xe7\x0c\xd0\x61\x9a\xc1\x72\x60\x46\xff\x33\x03\x50\x5f\x55\x35\x24\xde\x37\xaf\xf0\x9b\xcc\xdd\x23\x1a\xc3\xe1\x67\x86\x16\x8c\x6e\x2e\x30\x25\x81\x99\x09\xc8\x16\x9a\x4e\x17\x19\x78\x07\x71\xb0\xfe\x50\x3d\x58\xb1\x78\x28\x76\xba\x67\x5f\x6f\xfc\x64\x9b\xa0\x91\x1f\x3e\xc3\x42\x74\x56\x7c\x43\x25\x72\xfa\x10\xa6\x15\x21\x29\x82\x67\x80\x27\x6f\x6b\x92\x1e\xfd\x0c\x85\x5a\xd1\xd9\x57\x36\x28\x45\x83\x63\xef\x69\x13\x4b\xd6\x2a\x83\x78\x49\x9f\x19\x8c\x6e\x51\x10\xc1\x2c\x94\x67\xde\x61\x1a\xa1\x4c\x82\x0b\xb0\x99\x01\x02\x53\xe8\x67\xb8\xd2\xbf\xa2\x94\x31\x24\xd7\x0c\x40\xa7\x4d\x33\x19\x8d\x54\xe9\x9a\xa6\xc1\x33\x8e\x49\x04\x88\xa4\x4f\xe3\x69\xe4\x2c\xd3\xc1\x2a\x5e\x4c\x5a\x1b\x6c\x05\x68\x46\x38\x54\xc2\x7d\xfe\xa4\xc5\x67\x1c\xfb\x2f\x1c\x21\x90\x4c\x97\xd9\x63\x20\xf1\xd2\xcb\x02\xb9\x1f\x41\xfc\xf1\xa2\x57\x6d\xf2\x32\x32\x7e\x65\x85\x40\x5b\x85\x6f\x95\x1c\x7d\xfe\xf1\x8b\xe5\xc7\x4a\x9c\x49\xf0\x7d\xfe\xe9\x8b\x47\xf9\xf9\x4f\x5f\x10\x2b\xde\x52\x30\xd6\x6e\x80\x97\x0c\xf2\x12\x3f\x7e\xb1\x4f\x6d\x5f\x3d\x1d\x97\x15\xd2\x8d\xc0\x7c\xe6\xff\x88\x88\x3b\xd9\xab\x92\x23\xdb\xd2\xa2\xc4\x64\x6d\x4d\x4b\xd1\xad\x95\x55\x10\xd4\x98\x1e\xa4\x0e\xef\x48\x52\x8b\xf8\x7b\x34\x3e\xd8\xcb\xf9\x2e\xc6\x21\xa3\x71\xc6\xc7\xbd\x4f\xc4\x6f\xf8\xba\x05\x3d\xf6\x9d\x14\x78\x8a\x76\xbf\x4f\xb1\xe8\x7f\x40\x47\x3d\x82\xdf\x0a\x78\x19\x23\x22\xc0\x87\x32\xbe\x05\x01\x3e\xa9\x11\x31\xf0\x13\x1b\xdf\xd4\x08\x7a\xe3\x22\x36\x03\x13\x54\x2d\xc0\x52\xe6\xe1\x88\x70\x3c\x46\x4f\x88\xfc\xc6\x0b\x30\x7d\xda\x3c\x43\x08\x4f\x8c\x1f\x1c\x9d\x09\x3a\x1c\xa4\x6f\xc6\x46\x43\x35\x46\x17\x46\xec\x9b\x11\xc2\x53\xe7\x13\x7c\x90\xfa\x47\x3a\x8b\x83\x87\x0f\xb8\x27\xdb\xb6\x55\x3b\x7a\xd5\xfd\xdf\xdf\x34\x44\x62\x42\x1d\x4c\x48\x18\x3f\x6d\xee\x9f\xe2\xe6\x9e\x45\xc7\x9b\x1b\x1e\xc5\x71\x72\x9d\xec\x6c\xb9\xce\x3a\x0b\x4d\x84\x32\xd4\xcf\xe9\xde\x4f\x11\x72\x5c\x27\x40\xc9\x8d\x03\x9c\xdf\xd8\x32\x78\xf6\x87\xb6\x38\xbe\xf5\x33\x79\x32\x7e\x6e\x43\x13\x6b\x07\xce\xdc\xf4\x18\x10\xb9\x5d\x27\x01\xb4\xff\xdd\x59\x40\x42\x8a\x55\x65\x35\x86\xa7\x96\xa8\x4e\x3f\xf3\x70\x7f\xad\xda\x4a\xfd\x1b\xc3\x7a\xb0\xc2\x60\xe2\x47\x15\xc2\xa3\xd4\x34\xea\x49\xc5\xdf\x36\xf6\x59\x6d\xc5\x67\x67\x4c\xf3\xa5\x90\x6b\x3f\x13\x72\x6d\x0a\xb0\xab\xc1\x10\x7e\x00\xd8\x9a\x5d\x81\x9f\xfe\xd7\x8f\x9e\x90\xff\x48\xcf\x27\x8a\x23\x5b\xfc\xb8\x85\x84\xad\x6e\x3d\x1f\xe5\x13\x36\x90\xb0\x31\x03\xbc\x95\xfd\x63\x0d\x9f\xb5\xdc\xc3\xd7\x0e\xbe\x76\x4a\xdd\x60\x61\x60\x10\x7e\x14\x5b\xd3\xba\x0d\xa4\xec\xe1\x7b\xaf\x24\xbd\xb4\x8d\xcf\x34\x9e\xf8\x23\x82\x3f\x8e\x6c\x81\xd5\x51\x3a\x7f\x1c\xd9\xc2\xd7\x4a\xa9\xf8\xf3\xc8\x16\x74\xdf\x77\x54\xc3\x1d\x9f\x4f\xf1\xd5\x53\x12\xfe\x3c\x02\xbe\xce\x6d\x18\x21\xfe\x3e\xb2\x85\x6f\x07\x25\xe2\xcf\x23\x5b\xf4\x72\x57\xc6\x76\xd1\x2f\x48\x8d\xad\xa2\x5f\x90\xca\x6d\x82\xff\x45\xf1\xb9\xee\x4d\xf7\xbb\x69\xd5\x97\x82\x25\xe2\xad\xb2\xe4\x95\xfb\xb2\x37\x1d\x3b\xe3\xab\x1e\x4d\x1b\x1b\x5d\xdd\xe0\x3b\x95\x70\x55\x5d\x50\xa8\xe7\x52\xb7\xdd\x10\x4c\x3f\xc8\x03\xe2\xb1\x63\x9d\x42\x78\x0a\x11\x23\x7f\xed\x3b\xb5\x28\x80\xc5\x77\xc6\x94\x4b\x10\x07\x5e\x87\x7b\xf1\xef\xff\xf9\x4f\x80\xd7\xbf\xab\x7f\xfd\x4b\xbc\x7f\xf1\x83\x50\x5f\x2b\xa5\x6a\x2b\xb6\x74\x2b\xcb\x60\x5b\xf9\xf5\x75\x06\xb9\x28\x28\x8c\x16\x5d\x07\x61\x18\x2d\xbc\x11\xfa\xff\x02\x00\x00\xff\xff\x81\xcb\xa9\x97\x8d\x0f\x01\x00" func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4584,8 +4584,8 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 69471, mode: os.FileMode(0644), modTime: time.Unix(1584887047, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9, 0xc, 0x8d, 0xf3, 0x77, 0x90, 0xb1, 0x1, 0xb2, 0xdf, 0x9, 0x38, 0x99, 0x43, 0xc1, 0xa1, 0xd0, 0xbd, 0x7a, 0x91, 0x1f, 0x8e, 0x69, 0x89, 0xf1, 0xd2, 0xa3, 0x5f, 0xf1, 0x2a, 0x5f, 0xa8}} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 69517, mode: os.FileMode(0644), modTime: time.Unix(1587462591, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0x8c, 0xcf, 0x15, 0x30, 0x41, 0x5c, 0x70, 0xf, 0xd2, 0x5c, 0xa5, 0x1a, 0xb, 0x76, 0xaa, 0x9b, 0x96, 0xf3, 0x41, 0x6d, 0xa6, 0xca, 0x75, 0xba, 0x1a, 0xe7, 0xd, 0x6f, 0x3f, 0x3b, 0xc5}} return a, nil } @@ -4604,7 +4604,7 @@ func confLocaleLocale_esEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 74188, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 74188, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0xb5, 0x87, 0x10, 0x69, 0x7a, 0x6e, 0xb4, 0x99, 0xf2, 0x6, 0xf1, 0x93, 0xc4, 0xc9, 0x6b, 0x10, 0x46, 0xed, 0xb9, 0x33, 0x76, 0x86, 0x71, 0xbf, 0xf7, 0xe3, 0xf3, 0xad, 0xa1, 0x96, 0x78}} return a, nil } @@ -4624,7 +4624,7 @@ func confLocaleLocale_faIrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fa-IR.ini", size: 92107, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fa-IR.ini", size: 92107, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xee, 0x6d, 0xb, 0x6, 0xac, 0x63, 0xf0, 0xc5, 0x33, 0xbe, 0xde, 0xdd, 0xa4, 0xfb, 0xd5, 0x96, 0xbf, 0xf9, 0x45, 0x9b, 0x67, 0x4c, 0xe2, 0x7d, 0x9c, 0x67, 0xbc, 0x70, 0x0, 0xf9, 0x68}} return a, nil } @@ -4644,7 +4644,7 @@ func confLocaleLocale_fiFiIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fi-FI.ini", size: 70349, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fi-FI.ini", size: 70349, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0x4c, 0x67, 0x1d, 0xa8, 0x74, 0xd2, 0xa3, 0x88, 0x20, 0x6, 0x8d, 0x7, 0x58, 0x11, 0x13, 0xd3, 0xb1, 0xd6, 0x67, 0xda, 0x5, 0x5, 0x73, 0x58, 0x9d, 0x2d, 0x27, 0x49, 0x95, 0xa2, 0x24}} return a, nil } @@ -4664,7 +4664,7 @@ func confLocaleLocale_frFrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 74612, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 74612, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0xa5, 0xa2, 0xf5, 0x27, 0x67, 0xc2, 0x30, 0x28, 0x6e, 0x92, 0x1b, 0xc4, 0x3e, 0x6d, 0xfc, 0xa4, 0x44, 0xe7, 0xba, 0xc5, 0xa1, 0x7c, 0xfd, 0x8e, 0x9b, 0xdf, 0xc0, 0xa, 0x31, 0xb6, 0x8f}} return a, nil } @@ -4684,7 +4684,7 @@ func confLocaleLocale_glEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_gl-ES.ini", size: 72149, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_gl-ES.ini", size: 72149, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0xe2, 0xd3, 0x83, 0x1e, 0x78, 0xf8, 0x7d, 0x14, 0xe2, 0x0, 0x8c, 0xcd, 0x9f, 0x51, 0xcd, 0xbb, 0xbf, 0x38, 0x49, 0x81, 0xa9, 0x7e, 0x48, 0xd1, 0xef, 0x16, 0xb7, 0xb5, 0xd1, 0x2d, 0x95}} return a, nil } @@ -4704,7 +4704,7 @@ func confLocaleLocale_huHuIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_hu-HU.ini", size: 73190, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_hu-HU.ini", size: 73190, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x4a, 0x27, 0xce, 0xe4, 0xf0, 0x77, 0x1a, 0x12, 0xbf, 0x54, 0x2f, 0xbb, 0x9b, 0x36, 0x88, 0xf0, 0x19, 0x2f, 0x61, 0x71, 0x92, 0x76, 0x70, 0x34, 0x17, 0x94, 0xa, 0xd0, 0x5d, 0xf, 0xcb}} return a, nil } @@ -4724,7 +4724,7 @@ func confLocaleLocale_idIdIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_id-ID.ini", size: 69120, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_id-ID.ini", size: 69120, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x61, 0x34, 0x9, 0xda, 0x7c, 0x95, 0xd, 0xcd, 0x70, 0xae, 0x70, 0xd, 0xdf, 0x29, 0x32, 0xa8, 0x1d, 0xdf, 0xa6, 0x34, 0xc9, 0xf1, 0xb4, 0x7c, 0xbc, 0xe0, 0xb3, 0x6f, 0xdd, 0xe4, 0x44}} return a, nil } @@ -4744,7 +4744,7 @@ func confLocaleLocale_itItIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 71188, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 71188, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x84, 0xdc, 0x57, 0x80, 0x33, 0x74, 0x43, 0x95, 0x6a, 0x52, 0xc3, 0x29, 0xc7, 0xf8, 0xb1, 0x44, 0x11, 0xaf, 0x74, 0xe, 0x2b, 0x37, 0x2d, 0xdb, 0xd4, 0xd0, 0x40, 0xb2, 0xc9, 0x87, 0x22}} return a, nil } @@ -4764,7 +4764,7 @@ func confLocaleLocale_jaJpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 83244, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 83244, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x1a, 0xe4, 0xfa, 0x1d, 0xcf, 0x13, 0x3c, 0x10, 0xbc, 0x49, 0xbb, 0xd8, 0xcc, 0x8f, 0xb9, 0x24, 0xd1, 0x7f, 0xc7, 0x8d, 0x50, 0x92, 0x41, 0x14, 0x5d, 0xd3, 0xb3, 0xfc, 0xb4, 0x1f, 0x44}} return a, nil } @@ -4784,7 +4784,7 @@ func confLocaleLocale_koKrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ko-KR.ini", size: 74362, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ko-KR.ini", size: 74362, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x1d, 0x12, 0x36, 0x64, 0xdf, 0x26, 0xf, 0x40, 0xd5, 0xbc, 0x2e, 0x4f, 0x9e, 0x5, 0x16, 0x16, 0x98, 0xd7, 0x8f, 0x59, 0xa1, 0x9c, 0xb2, 0x2a, 0x90, 0x6c, 0x54, 0xa1, 0x58, 0x78, 0x87}} return a, nil } @@ -4804,7 +4804,7 @@ func confLocaleLocale_lvLvIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 73387, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 73387, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0xd2, 0x9f, 0x1, 0xcd, 0x15, 0xdd, 0x29, 0x7, 0xe6, 0x7d, 0x2d, 0xa, 0x2b, 0x2a, 0x14, 0x70, 0x3d, 0xf4, 0xcb, 0xd2, 0x9d, 0xb7, 0xcd, 0x40, 0x88, 0x4, 0x8d, 0xdb, 0x92, 0xca, 0xcf}} return a, nil } @@ -4824,7 +4824,7 @@ func confLocaleLocale_nlNlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 69647, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 69647, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0xd7, 0x94, 0x4e, 0xfb, 0x59, 0xa1, 0x4c, 0x63, 0x5b, 0x8e, 0x51, 0xb0, 0x4a, 0xcc, 0x67, 0x51, 0x22, 0x8a, 0x6b, 0x2b, 0x66, 0x9a, 0xdc, 0xf5, 0x55, 0xe1, 0x99, 0x31, 0xc1, 0x1e, 0xd8}} return a, nil } @@ -4844,7 +4844,7 @@ func confLocaleLocale_plPlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 71796, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 71796, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0xe2, 0xed, 0x2f, 0x80, 0xc1, 0xc2, 0x32, 0x3f, 0x8a, 0x7b, 0x33, 0x87, 0x57, 0xaf, 0x68, 0x92, 0x32, 0xc5, 0xbf, 0x29, 0x12, 0x5a, 0x4d, 0xc6, 0x5b, 0x6a, 0x89, 0x18, 0x21, 0x94, 0x98}} return a, nil } @@ -4864,7 +4864,7 @@ func confLocaleLocale_ptBrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 71962, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 71962, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x99, 0x5, 0xc2, 0xa9, 0x9d, 0xf6, 0xf8, 0xd2, 0x67, 0xb9, 0x6f, 0x53, 0x1c, 0x86, 0xaa, 0xac, 0x8e, 0xb8, 0x1a, 0x42, 0x13, 0x3, 0x82, 0x20, 0x41, 0x87, 0xf, 0xb5, 0x5c, 0xbd, 0xf4, 0x42}} return a, nil } @@ -4884,12 +4884,12 @@ func confLocaleLocale_ptPtIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pt-PT.ini", size: 72787, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pt-PT.ini", size: 72787, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x15, 0x1, 0xb0, 0x47, 0xc5, 0xcf, 0x15, 0xc2, 0x18, 0xfb, 0xa8, 0xb4, 0x4, 0xa4, 0xa, 0xda, 0xd1, 0xb0, 0x31, 0x35, 0x20, 0x5f, 0x9, 0x93, 0xbf, 0x4d, 0x23, 0x4b, 0xcc, 0x98, 0x35}} return a, nil } -var _confLocaleLocale_ruRuIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\x7b\x8f\x1c\xc7\xb5\x27\xf8\x7f\x7e\x8a\xa4\x2e\x08\x49\x40\xb3\x04\xc9\x73\x67\x17\x5a\x15\xbd\xb2\x64\x4b\xde\x91\x6c\x8d\x28\x61\x16\xd0\x12\xa9\xec\xaa\xe8\xae\x1c\x56\x65\x96\x33\xb3\xd8\x6c\x19\x17\x60\xb3\x25\x51\x9e\x96\x49\x8b\xd7\x5e\x0b\xb2\x44\x99\x96\xef\x03\xb8\xb8\xd8\x62\x93\x25\x56\xbf\x8a\x80\x3f\x41\xe6\x57\x98\x4f\xb2\x88\x73\x4e\x44\x9c\x88\x8c\xac\x2a\x4a\xba\x8b\x85\x01\x8b\x5d\x19\xef\xc7\x89\xf3\xfc\x9d\x78\x3c\x8e\xfa\xa2\xe8\x75\xab\x6f\xaa\x87\xd5\xa2\xba\x5f\x9d\x55\xd3\xfa\x76\x58\xef\x55\x27\xf5\x7e\xf5\x6d\x75\xbf\x9a\x86\xd5\xc3\xea\x04\x7f\x5b\x54\xf7\xeb\xbd\xfa\x46\x75\x58\xcd\xaa\xb3\xea\xac\x5a\x54\x0f\xaa\x45\xf8\x5a\x52\x5e\xa8\xaf\x57\xb3\xea\x71\xb5\xa8\x1e\x55\xf3\xfa\x46\xb5\xa8\xaf\x57\xf3\xfa\x76\x10\x0c\xb2\x91\xe8\x56\xff\x58\x9d\x54\xd3\xea\x10\x1b\x0f\xfa\x71\x31\xd8\xcc\xe2\xbc\xdf\xad\xbe\xae\xa6\xd5\x59\x35\xab\x4e\xea\x4f\xc3\x7a\xbf\x7a\x5c\x5f\x87\x72\x27\xd0\xbe\x6c\x40\x5c\x1b\x0f\xb3\x5c\x74\xab\xbb\xd5\xfd\xea\x91\x6c\x37\x18\x88\xe1\x58\xd6\x5c\x54\xa7\xd5\xa2\xfe\x4d\xfd\x69\x50\x24\xdb\x69\x94\xa4\xdd\xea\x4e\xfd\x51\xb5\xa8\x1e\xe2\x0f\xd9\xa4\x94\xbf\x1c\xf0\xdf\x26\xe3\x6e\xf5\xe7\x6a\x56\x3d\xa8\xe6\x72\x22\xb2\xbb\xfa\x63\xe8\x28\x17\xdb\x49\x51\x8a\xbc\xed\xfb\x8e\xd8\x2c\x92\x52\x74\xab\x3b\xd5\xac\xba\x7f\xa1\xde\xab\xa6\xd5\x51\x7d\x23\x18\xc7\xdb\xa2\x5b\xdd\xc3\xb2\x30\xe8\x8f\xab\x69\x50\x8a\xd1\x78\x18\xcb\xe2\xff\x5a\x4d\xab\xfb\xd5\x49\xb5\xa8\xce\x82\x61\x9c\x6e\x4f\xa0\xfc\xff\x53\x3d\xaa\x0f\xaa\xe3\xa0\x97\x8b\xb8\x14\x51\x2a\x76\xba\xd5\x3d\x58\xbd\x87\xd5\xb4\xbe\x51\x7f\xda\xe9\x74\x82\x49\x21\xf2\x68\x9c\x67\x5b\xc9\x50\x44\x71\xda\x8f\x46\xb0\x12\x5f\xd7\xd7\xab\x45\xfd\x61\x35\x87\x55\x83\x45\x3f\xa9\x3f\x95\x8b\x53\x1d\xca\xca\xb0\x9c\xb7\xc3\x6a\x1e\xc2\x7a\x2e\xea\x9b\xd5\xac\x9a\xc1\xfc\x45\x3f\x4a\xd2\x28\x2e\x60\x5d\xc2\xea\xb0\x5a\xd4\x9f\x54\x27\xb2\xe4\x71\x35\xad\x8e\x03\xe8\x32\x8d\xe5\x96\x7d\x5e\x9d\xca\x46\x5a\x5a\x0f\xc4\x28\x4e\x86\xdd\xea\xdf\xab\x93\x0e\x14\xaa\x6f\xd6\x37\xaa\x69\x30\x8e\x8b\x62\x27\xa3\x9d\x95\x9d\xcb\xca\x41\x2e\xa2\x72\x77\x0c\x6b\x27\x4f\xce\x43\x38\x22\x33\x6c\xfc\x90\x4e\xcb\x59\xb5\x08\x7a\xf1\xb8\xec\x0d\xe2\x6e\xf5\x45\x35\xad\x1e\xd7\x37\xab\x69\x10\xe4\x62\x9c\x15\x49\x99\xe5\xbb\xb8\x33\xce\x19\xab\x8e\x82\x2c\xdf\x8e\xd3\xe4\x83\xb8\x4c\xb2\xb4\x5b\xdd\xad\xaf\x57\x0f\x70\x27\xaa\x47\x7a\xf7\x46\x49\x9e\x67\x79\xb7\xfa\x63\x35\xab\xaf\xc3\x64\x4f\xaa\x45\x90\x8a\x9d\x48\xb6\xdf\xad\xbe\x82\x91\x1c\x54\x47\xa1\xef\x20\x57\x47\x50\x74\x94\x6c\xe7\xb0\xa7\x5f\xd1\x62\xdc\x0e\xab\xd3\x6a\x5e\x3d\x60\xc7\x04\xcb\x61\x67\x58\x6c\x21\x67\xfa\xa8\xd1\xef\x56\x96\x5f\xb1\x8a\x2c\xf0\x5e\xc1\xff\xd3\xf9\xaf\x66\xde\xe1\x50\x37\x59\xbe\x6d\x0d\x65\xe1\x9f\x79\x9c\xc6\xdb\x02\x0b\x7f\xe3\x5e\x30\xec\xd7\x53\x4d\xce\x2b\x88\xfb\xa3\x24\x8d\xc6\x71\x2a\x86\xf6\x4d\xad\xa6\xd5\x43\x98\xf9\x19\xbb\x26\x38\xb8\x69\x10\xf7\x7a\xd9\x24\x2d\xa3\x42\x94\x65\x92\x6e\x17\x72\x8c\x53\x2a\xb5\xa8\x8e\xaa\x63\x79\xdc\xa6\xd5\xb1\x5c\x8d\x7a\xbf\x3a\x83\x73\xb3\xa4\x70\xb0\x9b\x4d\xf4\x35\x90\x47\x68\x5a\x7f\xa2\x4e\x36\x5d\x02\x2c\x62\xda\x80\x32\xb2\x9b\xb3\x46\x63\x41\xdc\x2b\x93\xab\x49\x99\x88\xa2\x5b\xfd\xae\x3a\xae\x6f\x54\x73\x20\x4c\x0b\x28\xf8\x69\x30\x9e\x0c\x87\x51\x2e\x7e\x35\x11\x45\x59\xc8\x03\x33\xa5\xbe\xf6\xe4\x8d\x39\xab\xa6\x40\x1b\x61\x8d\x60\x01\x83\xa4\x28\x26\x82\x4a\xca\xcb\x7b\x53\xf6\xd2\x8b\xd3\x9e\x5c\xb5\xbb\xf5\x8d\xea\x14\xd6\x7a\x1a\x04\xef\x25\x69\x51\xc6\xc3\xe1\xe5\x80\xfe\xd1\xad\xbe\x01\x72\x3a\x05\x52\x7a\x28\x57\x24\x28\x93\x52\x4e\xd3\xfe\x20\xef\xf0\x59\x7d\x20\xcf\xc3\x27\xd5\x54\x52\x27\x45\x94\xab\xc7\x70\xb2\x0e\x89\x14\xcb\x1d\xac\x1e\xd7\xfb\xf5\x1e\x34\xd6\xcf\x7a\x57\x44\x1e\x49\x8a\x29\x29\xdb\x1f\x70\xe8\xa1\x3c\xea\x4e\x51\x38\x78\xb3\xf0\xb5\x6c\xbb\x90\x74\xe1\xac\xde\x87\x65\x9b\x87\xaf\x42\x13\x1b\x78\x59\xbf\x95\x07\xb8\xde\xaf\x8e\x70\x74\x9a\xc0\xc8\x55\x84\xfa\x2f\xc5\x61\x19\xe7\xdb\xa2\xec\x3e\x15\x6d\x0e\xe3\xf4\xca\x53\xe1\x20\x17\x5b\xdd\xa7\xce\x17\x4f\x5d\xac\x7f\x2b\xcb\xe1\x3b\x02\x27\xbd\x3e\x78\xe9\xb9\xf8\x22\xf4\x57\xcd\xab\x53\x4d\x5e\x3e\x95\xd3\x56\x53\x9b\x55\x0f\x43\xf8\xfd\x94\xa8\x54\x08\xfd\x2d\x2e\xc8\xa9\x54\xf7\x65\x41\x79\x70\x4f\xe9\xc9\xb8\x21\xcf\x27\x6c\x93\xec\x6d\x21\x6f\xf4\x9e\x45\x9c\x67\xe7\x02\xb9\xbd\x49\x29\xa2\xfe\x26\x3e\x7e\x30\x6b\x28\x34\xab\xee\xd7\xfb\x72\x68\xd0\x06\xec\xf3\x4d\xb9\xd7\xe1\x9b\xbb\x97\xfe\xeb\x1b\x1b\xe1\x5b\x59\x51\x6e\xe7\x02\xfe\x7d\xe9\xbf\xbe\x91\x94\xe2\x47\x1b\xe1\x9b\x97\x2e\xfd\xd7\x37\xe4\x28\xe4\xda\xbe\x93\xbc\xfa\x93\x4e\xd0\xdf\x8c\x68\x23\x3d\x87\xff\x7e\x35\x95\xe4\x5f\x6e\xa1\x1c\xd4\x99\x7c\xa2\xa0\x06\xd0\xc8\xbf\x54\xf3\xea\x71\x4b\xa1\x41\x56\x94\xdd\xea\x9f\xf0\xb0\x02\xb1\xc6\x87\xb0\x49\xa1\x3f\x6d\x21\xc5\xfd\xcd\xc8\xa2\xef\x6d\x63\x51\x47\xe6\xf7\x70\xca\x60\xf6\xa1\xbc\xec\xe6\x41\x80\x63\x20\xf7\x1c\xae\xd0\xe3\x10\x8e\xeb\x7d\x58\xb2\x8f\xc3\x9f\xa7\x69\xf6\xea\x4f\xc2\x7a\x4f\xee\xd9\x02\x28\xfe\x75\x3a\xe2\x72\x4b\x26\xe5\xd6\xff\x1a\x6d\x8b\x54\xe4\xf1\x30\xea\x25\x9d\xa0\x28\x86\xd1\x28\xeb\x0b\xa4\xf1\xdf\xca\xd3\x10\x5e\xba\xf4\x46\x30\x8e\xcb\x81\x7c\xf1\xf6\xe1\x6e\x16\xbf\x1a\xca\x6d\x53\x63\xa3\x9f\x43\x79\x24\x3e\x94\xcf\xb1\x3c\x9b\xbe\x29\x55\x47\x6a\xb3\x3a\xe1\x4b\x9b\xf9\x45\x58\x33\xe7\x2c\x6f\xb4\x4d\x4f\xce\x0a\x8e\xec\x49\x7d\xab\xbe\x41\xcd\xc1\xc5\x81\xbe\x67\x74\xa7\xf0\xe6\x34\xee\x54\xbd\x27\x57\x99\xce\xed\x1e\xdd\xd5\x79\xbd\xd7\x09\x44\x9e\x47\x62\x34\x2e\x77\xe5\x31\xb4\xe6\xb9\x7a\x42\xf5\x47\x6a\x42\xf2\x9c\xce\xe4\x33\x24\x27\x04\xe7\xf6\x7e\x7d\x80\x8d\xc0\x38\xe4\x25\xab\x4e\x3b\x41\x9a\x45\x48\xce\x25\x1f\xd1\x4f\x8a\x78\x73\x28\x22\xe4\x79\x72\x7a\x39\xef\x20\x81\xe3\xad\xa9\x77\xe9\x18\x26\x7f\x93\xae\x17\xdc\x13\x97\x43\xba\x25\x87\xb7\xc0\xcb\xfd\x88\x46\x2a\x2f\x4e\xbd\x2f\xf9\x0f\xb9\x70\xb0\xf3\xb8\x42\xb0\xd4\xf3\xa5\xef\x08\x5f\x20\xf5\x10\x79\x0e\xf4\xd2\x36\xd6\x5d\x9c\x40\x1d\x45\xba\xb3\x77\xab\xfb\xf5\x6f\xf0\x75\x7c\x0c\x5d\x4d\x25\x79\x91\x6d\xd7\x07\xb0\xd1\x81\xe4\x9b\x6d\x3e\x09\xf8\x84\x13\xec\x89\x78\x57\x55\x48\x1f\xd8\x6f\xe0\x20\x7c\xab\xd8\x1f\xb9\x4c\xb3\x7a\x8f\x08\x56\xf5\x48\x5e\x5f\xf5\x2a\x1f\xc2\x13\x36\x83\xa3\x26\xb7\xa0\xbe\x5e\xdf\x96\x3c\x67\x7d\xab\xfe\x0d\xfe\xec\x79\xb7\xab\xf9\x39\xe0\x97\x1a\xc7\x09\x39\x2c\xb9\x1b\x7e\x76\x42\x57\xd2\x43\xbd\x23\x0f\x2b\x9e\x58\x49\x50\x0e\xf1\xf1\xf1\xf1\x46\x73\xc9\xff\x87\x40\x37\x1f\xca\x0e\xe1\x08\xd4\x1f\x11\xc5\x9d\xc9\xe3\x1a\x56\x87\x86\x1c\x13\x31\x98\xc1\xdb\x4b\x4d\x74\x82\x7c\x92\x46\xcb\xe9\x99\x2a\x61\x56\x73\x09\xef\x2b\x65\x99\x13\xdc\x0a\xb6\xe9\x0f\xe9\x95\xdf\x97\x04\xf6\x98\x2e\x31\x70\xbf\x66\x8d\x6e\xb5\xac\x51\x48\xe5\xd8\x0d\xaf\xf7\xe1\x30\x74\x82\x7e\x36\x8a\xa5\xf8\xf1\x7b\x90\x49\x66\xd5\x19\xfd\x62\x56\x93\x38\x06\xf5\xb0\x84\xef\xbe\xfd\xc6\x05\x79\x72\x65\x5f\x72\x5b\xf5\x73\x7e\x8c\xa2\x82\xa6\x97\xea\x1a\xc9\x01\x85\x97\x2e\xbd\x2e\x49\xe5\x20\x1a\x67\x79\xd9\xbd\x74\xe9\x75\x3c\x1c\xd7\xeb\x1b\xfa\x57\xdd\xe5\x57\x38\x96\xfa\xba\x2e\x03\x34\xee\x18\xee\xb3\xfc\x1b\xc8\x98\x4b\xf2\xe4\x00\x65\xbb\x9a\x54\xcd\xea\xeb\x9d\xb0\xba\x4b\xdc\xc8\x61\xfd\x29\x71\xee\xe6\xfa\x6c\xd0\x7b\x2c\x97\xd9\x47\x2d\x60\xd0\x93\x42\x44\x9b\x93\x64\x58\x26\x69\x24\x87\x5a\x88\xfc\xaa\x1c\xe5\xe7\xbc\x7f\xb5\x89\x72\xab\x0e\xf5\xa3\x39\x33\x34\xdc\x19\x58\x4b\xab\xd1\x38\x1b\x4b\x39\xef\x8f\x6a\xa7\x90\x3b\x59\xb7\x55\x2d\xee\x5e\x87\x3b\x89\x2c\xc0\x4c\x6d\xc3\x82\xb8\x12\xbc\x6f\x47\x78\xf6\x81\xa7\x01\xea\x23\xd9\x14\x2d\x17\xcb\xeb\x0d\xc4\x47\xee\x38\x2c\xc3\xa0\x2c\xc7\xb8\x79\xf2\x98\xcb\x4d\x09\x5f\x7f\xe7\x9d\xb7\xcc\xef\x4f\xb8\x7d\x0d\xaa\x23\xf7\x06\x6e\x22\xec\x24\x4a\xf1\x92\x65\x04\x91\x12\x08\xd2\x24\x1f\x76\xdf\x7d\xfb\x8d\x76\x8a\x35\xc9\x87\x7a\x14\xff\x0e\x9d\xdd\x68\x90\xc1\x10\x44\x08\xf7\x44\xaf\x77\x88\xe5\x84\x9f\x93\xff\x77\x29\x24\x16\x3d\xb4\x6f\x82\xa4\x15\x20\xa0\x1c\xd3\x5e\x9d\xa9\xb7\x43\xc9\x99\xb3\x4e\x30\xcc\xb6\xa3\x3c\xcb\xca\xe6\xcb\x59\x7d\x5b\xef\x83\x3c\x09\xcf\xbb\x5d\x50\x4f\xec\x0b\x20\x16\x20\x8d\x55\x0f\xf4\xb8\xf9\xdb\xa4\x1e\x60\x39\x01\xab\x4d\x78\x9a\x52\x78\x3f\x7b\x59\x5a\x64\x43\x41\x9c\xcb\x1d\x7e\xf0\x15\xb5\x44\x56\x06\xd8\x9e\x33\xe4\x22\xaa\xb9\xaf\xba\x3a\xb4\x77\x90\x76\xc1\x9d\x40\xf2\x89\x9b\x7a\x6c\x0d\x48\x1e\x8e\x7a\x9f\xf5\x50\xef\x6f\x00\x57\x0f\x9f\x1e\xaa\xe3\x4e\xb3\x3b\xb4\xfa\x97\x07\x21\xc8\xc6\xf2\xcd\x37\x2f\xde\x9f\x81\x4b\xfd\x84\x28\xf3\x19\x09\x1b\x1e\xf9\x09\xe4\xfe\x76\xde\xd6\xe8\x8d\xea\x83\x55\xdb\x58\x1f\x04\xc5\xa8\x1c\x47\xc8\xd4\x7e\x23\x65\xe4\xea\x24\xbc\xf4\xe6\x3b\x6f\xe1\xef\x5b\x79\x36\x92\xef\xeb\x23\xf3\xa7\x61\xfd\x94\xc6\x21\xc4\xf3\xc9\x0e\xd0\x46\xf8\xf6\xcf\x5e\x09\xff\xfe\x47\x2f\xbc\xd0\x09\xf1\x00\x7b\x39\x00\x98\x08\xab\xa8\xf8\xf7\xfa\x43\xa0\xf8\x20\x8c\x84\x4f\xe1\xf3\xfe\x54\xf8\x12\x14\xff\xdf\xc5\xb5\x78\x34\x1e\x8a\x4e\x2f\x1b\x5d\xec\x04\xf2\x27\x91\xd3\xb3\xf5\xef\x8d\xb9\x4e\xe9\xc4\xb3\x81\x6a\xf9\x7b\xae\x15\x29\xd4\x48\x0b\x73\xe3\xaf\xa3\x74\x55\xf2\x04\x6d\x25\xf9\xc8\x39\x7b\x4a\x2b\xf4\x90\x34\x0a\xd7\xab\x6f\x81\x14\x31\x8d\x82\xc3\xbd\x55\x73\x18\x47\x94\x66\x65\xb2\x05\x8a\x16\xc9\x71\xca\x75\xf9\x84\x35\x48\x74\x9e\x78\x81\x7d\xd2\xe5\x48\x3a\x65\xf4\x75\x44\x82\xe5\x7f\x92\x9e\x50\x07\xe5\x1e\x27\xaf\x52\x76\xad\xaf\xd7\xfb\x72\x10\xde\x43\xc6\x4e\x51\x90\x6d\x6d\x0d\x93\xb4\x79\xc5\x98\xfa\xe2\x43\x50\x2e\x1e\x55\x67\xec\x3e\x54\x53\xab\xa6\xba\x5d\x77\x1b\xaf\xd3\x2b\xaf\xfe\x02\xf9\xea\x6f\x81\xeb\x22\x89\x16\x58\x2a\xb8\x4a\x8e\xba\xf3\x94\xf7\x31\x83\x3b\x07\x7c\x92\xe2\xd6\x0f\x42\x3c\x4d\x92\x5c\xa0\x9c\x6b\x71\x46\xf8\xa4\x3c\x84\xed\x04\x9a\x8c\xe2\x81\xbc\xa7\xa0\x1b\x42\xc9\xb7\x13\x28\x06\x7d\x3b\x8f\xaf\xc6\x65\x9c\xfb\x46\xce\xae\xda\x7e\xf8\x1a\x15\x6c\xd4\x6c\x9f\xb9\xaa\x82\x8a\x42\x3f\xd3\x05\x72\x0c\x2c\x33\xbe\x6e\xa0\x87\xa8\xe6\xf2\xc7\x4e\x68\x3f\xde\xf5\xbe\x14\x8f\x70\x3e\x34\x3d\x79\x90\xeb\x83\x0d\xa4\xab\x0f\x60\xcb\xa5\xd0\x35\xab\x4e\x91\xba\xb4\x70\x6f\x92\x9b\xdf\x50\xd7\xd1\x6e\x0b\x5f\x90\x7a\x1f\x2e\xf4\x49\x7d\x93\x5e\x96\x5b\x9d\x60\x4b\xf4\x45\x1e\x97\xa2\x1f\xd1\xbc\x87\x59\x76\x05\x08\xaa\xef\x66\x48\x12\x7f\x8c\x7a\x07\x79\xc4\x65\x1b\x1f\x85\xd5\xef\x4c\x57\x72\x44\x6d\x6d\x6a\x52\xed\xd0\x7b\xe0\x5c\xb1\xe5\xfa\x43\xb8\x1a\x33\x12\x46\x48\xc3\x84\x4c\x01\x9b\x10\xe3\xfb\xe6\x4d\x46\x48\x09\x50\xfe\xb6\x8e\x1c\x5a\xbb\x47\xbc\x97\x5c\x26\x64\xcc\x70\xd3\x40\xf9\x0d\xf4\xfc\x54\xc9\xe2\xf2\x18\xe3\xbb\xbb\xa8\xf7\x48\xc3\x34\x0b\x87\xc9\x26\x9d\x08\x73\xfe\x6c\x01\xd1\x7b\x06\xa7\xa0\x85\xc7\xc3\x71\xdb\xe8\x6f\xe4\x71\x68\x11\x14\xbd\xad\xdb\x4c\xdb\x75\x10\x3b\xd8\x86\x79\x8f\xc9\x77\xeb\x7e\x23\x04\x2a\x26\x8b\x1d\xe3\x7e\xb4\xc8\x8f\xfc\xd9\x60\x62\xad\x66\x51\x2d\x1d\x66\x7d\x60\xb8\x02\xa5\xc5\x6e\x1c\xbd\x63\x54\x6b\xd7\xfb\x4e\x51\x77\xf2\xa0\xbd\x34\x1d\xe9\x6a\xc4\xb4\xb5\x90\xf0\xd6\x95\xea\xa0\xc2\x2b\x17\x11\x19\x4a\xa2\xab\x89\xd8\xf1\x51\x79\xa5\x03\xe3\x9c\xf8\x54\xab\xe8\x8d\x7e\xf8\x96\x51\x3f\xa2\x6e\x14\x76\x01\xc6\xe2\xa8\xdb\xbc\x5d\xab\xf9\xfe\xc5\xde\x07\xde\x0f\x67\x1d\xcf\x96\x90\x0b\x39\x6d\xb9\x4d\x0f\x80\xc0\xb2\xe1\x4c\x51\x7f\xa9\xe7\x61\x0f\x0b\xc8\xd2\x63\x28\x3a\x53\xca\x4b\x7c\xfe\xf7\x58\x73\xf0\xc6\xcd\x91\x99\x86\xd5\x61\xe3\x95\x0d\xee\xd5\x07\xd5\x09\xc8\x81\x8a\x8d\xf5\x2e\xd5\x21\xbe\x7c\xf5\x47\x92\x65\x73\x86\xd1\x21\x2d\x3b\x29\xaf\xc9\x18\x77\x47\x9e\x6b\xd2\x5e\x48\xc1\xea\x36\x34\xc7\x95\xa3\x9e\x03\x69\x34\x2d\x70\xfa\x0d\x37\xbb\x52\x4b\xf2\xb8\xbe\x0e\x64\x17\x9a\x9d\x55\x47\x92\xb0\xd6\x7b\x1b\xad\xcf\x82\xa4\x36\x3f\x7f\x35\xec\x86\xcf\xab\x22\xfb\x78\xc8\x6d\x11\x5b\xd2\x24\xc5\xbc\xc8\x7b\xba\x5c\xe1\xa3\x97\x8f\x14\xc1\x20\x76\xe1\x03\xa4\x16\xa9\x9d\xed\xdc\xaf\x6f\xd6\x9f\x3d\xb9\x92\x89\xda\x5d\xcb\xe2\xb5\x44\x09\x15\x10\x1f\x66\x7d\xe5\xfc\xd7\x43\x43\xcb\x4c\x25\x6c\xd0\x18\xd2\x56\xb0\x8f\xcb\xa6\x41\xf6\x84\x68\x3b\xdb\x2e\x5c\xdb\x01\xbd\xf6\xd9\x76\x11\x94\xa2\x28\xa3\xed\xa4\x8c\xb6\x24\xd3\xd9\x97\x2b\x09\x8c\xdc\x43\x94\x84\xf0\xa4\x3c\xa6\x9b\x37\x03\xbd\x87\xac\xfb\xf4\x76\x52\x3e\x8d\x8f\xc7\x29\x34\xfb\xb0\xde\x7f\x31\x3c\x7f\x95\xf4\xb1\x3f\x92\x6c\xa3\x7c\x22\x93\xa1\x24\x6a\xca\xfc\x22\x25\x39\x38\xf6\x7b\x28\xfb\x9d\xa9\x3b\xfc\x90\x5e\xb3\x6f\xf1\x76\xa2\xce\x41\xe9\xd2\xbd\x66\x06\x54\xa7\xc2\x73\x7f\xa4\x94\x92\x1f\x82\x32\x7f\xae\xb8\x26\x3c\xf2\xf7\x61\x7d\xa6\xa0\xc8\xd9\xc7\xab\xa7\x46\x70\x0b\x25\x85\xf3\xc5\x46\xa8\x15\x83\xfc\xeb\x76\xb6\x39\x49\x86\xfd\x4e\x90\xa4\x57\xe3\x61\xd2\x8f\xfa\x9b\xea\x52\xae\xad\xc4\x57\x93\x54\x0c\x3b\x0d\xed\xa0\x9a\xc1\x72\xa9\x96\x99\x8a\xee\x2b\x62\xa1\xb5\x9e\x02\x78\x23\xae\x5f\x5e\x43\x35\x05\x8d\x6b\xf5\x98\xdc\x8c\x51\x5c\xf6\x06\x92\xbe\xca\x23\xb5\x0f\xba\xcc\xa3\xf6\xdb\x0c\xa3\xae\x6f\x4b\x99\x1e\x25\x7a\xe4\xe2\xfc\xf4\x16\xec\x30\x5c\x5e\x56\xda\xee\x17\xc3\xf3\x45\x78\xe1\x62\x78\xbe\x30\x62\x5d\x34\x4a\x8a\x42\x92\x35\xd4\x79\xd0\x71\x3b\x06\x2e\x78\x5a\x9d\x69\xdd\x06\x70\xde\x46\x86\x9b\x85\x92\x6d\xa1\xcd\x97\x02\xa1\xd9\x15\x26\x19\x82\xa2\xb0\x9a\x41\x81\xf0\x67\x79\x36\x82\x89\xb8\xab\x5f\x2d\x68\xf5\x8b\xf8\xaa\x40\x81\x69\x7b\xd9\xf9\xb7\xb4\x97\xfa\xdd\x96\xd2\xf3\x87\x60\xea\xdd\x37\x9c\x04\x6d\xaa\xb9\x4f\x3f\x83\xff\x84\x65\x16\xca\x5f\x93\x78\x98\x7c\x20\xc2\x78\x3c\x1e\x26\x3d\x60\x72\xac\x53\x60\xd1\x7d\xa5\x1b\xa6\x65\x39\x6b\x3d\x16\x8e\x1e\xe6\xbb\x6a\xd7\x69\x24\x48\x35\x8a\x49\xaf\x27\x8a\x02\xf5\x97\xf7\xe5\x21\x67\xd7\xd0\xb0\x02\xe7\xc2\xea\x4b\x14\x70\xe4\x4e\x1d\x28\xbd\x1f\x59\x13\xa5\x54\x78\x1f\xbe\x29\x6b\x48\x27\xac\xee\xe0\x76\x82\xae\xe8\x86\xd2\x75\xc3\xe5\x99\x69\x1e\xe6\x06\xe9\x99\xe5\x33\x67\xf6\xd9\xd1\xef\xac\xbe\x27\x74\x24\x4f\x90\xcd\xae\x0e\x61\x86\xc1\x7b\x83\x6c\x24\x2e\x07\x13\x54\xc3\x67\xc3\x3e\x28\x1d\x97\x11\xfa\x4f\x95\xe4\xf1\xd3\x0b\x92\x32\x6b\x33\x9a\xae\xcd\xe9\x7e\xb1\x93\x94\xbd\x41\xa4\x1d\x5a\xe4\xf9\x2a\xc5\x35\x50\xef\xe1\x0c\x1b\x1c\xe0\x02\x2c\xde\xf2\x5e\xee\x91\x62\x0d\xcd\xea\xf0\x8a\x79\x1c\x60\x46\xbb\x40\x2f\x8a\x6e\xf5\xa5\x14\x2f\x5a\x74\xf0\x41\x31\xc8\x76\xc0\x3f\x44\x95\xfe\x9a\x64\xca\x47\x8a\x8f\xbb\x8f\x63\xae\x3f\x69\x53\xe4\xcf\xaa\xc3\x4e\xa7\x13\xf4\xb2\xe1\x30\xde\xcc\x24\x5b\x7e\x55\xb7\x76\x0f\xd6\xe8\x14\xb6\xf0\x86\x32\x45\xfb\x47\x32\xda\x8d\xb2\x7c\x5b\x8f\xd7\x6f\xa7\x90\xa5\xd0\x4d\xc2\x14\xe4\x3e\x12\xd3\x00\xf8\x44\xf4\x1e\x72\xa7\x72\xbe\x08\xc8\xea\xde\x49\xd2\x08\x6c\xff\x34\xcc\x3b\xca\x70\x22\xe5\x39\x3f\xb1\xac\x3f\x0a\x82\xf7\xc8\xab\xe8\x72\x40\xf5\x7c\x8e\x25\x73\xb0\xaf\x16\x2d\x06\x89\x6a\x6e\xf9\x9d\x14\x5e\xc7\x13\xb9\x2f\x22\xce\x25\x29\xd6\xb2\x61\x10\xbc\x17\x4f\xca\xc1\x65\xe6\xfa\x13\x91\xcb\x84\xe3\x02\x14\xe2\x03\x8e\xe7\xdc\x12\x36\x8c\x02\x68\x20\xc6\x43\x91\x47\xa3\x02\x28\x08\xe8\x30\x66\xe8\xc8\xe0\x54\xf9\x31\x88\xb7\x86\x3b\x55\xe6\x4d\x79\x25\xcf\x05\x45\xd6\x4b\xe2\x61\xb4\x4e\xb3\x8c\xe2\x4c\x2d\x9d\x69\xfd\xe9\x8f\xc3\xea\x5e\x75\x58\xdf\x36\x16\xae\x19\xdc\x6d\xa4\xa9\x1f\x23\xaf\x5d\x7f\x5a\xdf\x3a\xe7\x88\x80\xe8\xe6\x34\x1a\x97\xa0\xee\x03\xda\x7d\x86\x4d\x6c\x84\xe0\xa5\x04\xf6\x7d\x49\x90\xb4\x9f\x46\xab\x0c\xc4\x0d\x10\xe0\x77\xd1\x09\xfd\xe6\xde\x7a\x8f\x8f\x95\x68\xff\x32\xa2\xb9\x50\x12\xa7\x5c\xb8\xa9\x2b\x24\xcb\xe5\x02\x4e\xee\x0b\xe4\xcd\x91\x78\xe2\x2d\xbe\xf5\xe4\xfa\x38\xd4\x74\x18\x8d\x77\x73\x62\x8b\x4e\x20\x0f\x52\x54\x64\x93\xbc\x67\xfc\x06\xa6\x60\xd3\x9a\x01\x95\x99\xc3\x9b\x75\xac\x0f\xe3\x30\xeb\xc5\xc3\x6e\xf5\x27\xae\x6e\x92\xc7\x2b\xc8\xc5\x48\x8c\x36\xe5\x14\x04\x49\xa1\xc0\xeb\xe9\x07\x10\x8c\x5a\xf5\xed\x60\x2b\xcb\xb7\x81\x26\x2b\x36\xf7\x8f\x60\x1d\x3f\x40\x39\x8c\x33\xb7\xb2\xa4\x58\xa7\xe4\x8f\x95\x63\x5e\x94\x66\x3b\xdd\xea\x2b\xd0\x68\x80\xd9\xce\x3d\xbf\x7f\x84\x4a\x7c\xad\xe6\xa0\x53\xd2\xe7\xb8\xa3\xf8\x70\xd4\x28\x80\x46\xb3\x10\x69\xa9\x0f\x17\xf3\xb6\xa2\x23\x0b\x42\x8f\x71\xa5\xf1\xee\x11\xb8\x49\xc0\xc8\x17\x68\xa8\xb5\x89\x34\xfe\x18\xbe\xb4\x79\xf1\x7c\xf1\xd2\x73\x9b\x17\xfd\x3c\xec\x86\xc5\x58\x2b\x33\xda\x21\x39\x33\x59\xba\xd5\xa3\xb0\xbe\x0d\x2c\xdb\x31\xd8\x42\xe4\xe4\x8c\xbe\xf3\x7c\x3f\x44\xe9\x0c\x75\x8b\x8c\x11\xc3\x86\x3f\xd1\x63\xf6\x9f\xab\x0e\x3a\x40\x09\x24\x9b\x9a\xf0\x18\x4f\x28\xb6\xa6\x70\x45\x90\xaf\xb0\xc9\xcf\x38\xcf\x06\xc9\x66\x52\xca\x57\x9a\xb9\x5d\x2a\x86\x50\x32\x71\xbf\x01\x33\xa8\x5d\x50\x09\xb7\xaa\x34\x0d\xde\x98\xba\x97\x72\x33\xb0\x05\x8d\x2e\xda\x56\xfb\x7b\xdf\xee\x5c\xc0\xd1\x19\x26\xa3\xc4\x1c\xa0\x3b\x92\xff\xd9\x47\x82\xf8\xc8\x55\xd6\x28\x7d\xa5\x5a\x49\x2d\xff\x83\xce\x72\xa5\x49\xab\x85\x4c\x91\xc8\xb4\x80\xf3\x88\x64\xf5\x47\xe8\x76\x88\x3e\x5a\x07\x28\xcf\x28\xfd\xc0\xa9\xed\x55\xc9\x1c\x2d\x1f\xd7\x07\xa0\x1f\xdc\xef\x04\x83\xb8\x88\x26\x29\x5d\x16\xd1\x27\xc2\xf5\x47\xe0\xbf\xa7\x68\x24\xad\x0e\xd5\x29\xd8\x08\xcf\x17\xe7\xc2\xea\x1b\xdc\xa8\x3d\xf6\xc0\x9c\xd1\xab\xd9\xbc\x33\x67\xea\xd1\x52\xc6\x95\x95\xa6\xa0\xf0\x19\x7d\x81\x9e\xed\x84\x8e\xa7\xda\x99\x51\xff\x80\xa2\x41\x11\x11\x73\x85\x41\xd5\xd0\x46\x62\x41\x15\x8a\x75\xce\x60\xf7\xce\x88\x6b\x85\x4e\xf8\x5b\xdb\xa0\x0d\x1b\x78\xe3\xbf\x95\x0b\x8e\x4b\x09\x8a\x9e\x63\x28\xfe\x58\xa9\x7e\xe6\xf2\x44\xd0\x91\x51\xab\xf9\x95\x5d\x4d\xfb\x7a\xd8\xe6\x72\xe5\xe2\xe6\xd8\x79\xe8\xf9\xe6\x07\x49\xaf\x9a\x3d\xc0\x00\xba\x94\x3d\x97\xde\x8e\xeb\xbd\xfa\x96\x64\x28\x9a\x56\x7a\xa7\x3b\x0f\x41\xac\xf7\x50\x1a\x40\xb3\xac\xa1\xd9\xb7\x03\xec\xcf\x10\xf7\x7b\xaa\xa0\x5d\x4c\x31\xf3\x3d\x30\xde\x34\x9e\x76\x45\xfe\x8e\x91\x1c\x2c\x21\xbf\xca\xb6\x7e\x6c\x36\xd2\x2b\xb2\x36\x45\x84\xd3\x8e\x33\x58\x66\x61\x5f\x63\x83\xd8\x12\x68\x8d\xf7\xa1\x3a\xba\xe6\xb5\xd3\x8d\x97\x59\x16\x15\x03\x10\x76\x7f\x0f\xfe\x89\x67\xce\xd2\x2d\x71\x49\x42\x0f\x46\xc9\x32\xfd\x67\xf0\x27\xa8\x4e\xa1\x2b\x90\xc0\x3a\x41\x9a\xa5\x11\xbc\xdf\x86\x68\x7f\x05\x8c\xa8\xfd\x96\xcf\x1a\x7a\x69\xd6\x23\x29\x49\x1b\xee\x92\x6c\x2a\x21\x50\x60\x79\x24\x1f\x91\x73\x4b\x80\xb4\xbb\xdc\xc9\xa2\xad\xb8\x57\x66\xe0\x14\x78\x58\xef\xd7\x1f\x81\xd5\xeb\x58\xfb\x6f\x03\x3b\xd8\xca\x7e\xd4\xb7\x1b\x0d\xc1\x9e\xe0\xd9\xf8\x82\x8e\x00\xd3\x3d\x1d\x2b\x8d\xf6\x43\x5a\x48\xe2\xfd\x80\x8f\x71\x1a\x12\xa9\xe4\xbf\x72\xd1\xcb\xae\x8a\x7c\x97\xce\x9b\xe3\x6c\x7e\xac\x1e\x1d\xdf\xd8\xf1\x91\x5b\xca\x3a\x39\x5d\xaa\xce\x7e\xb8\xd5\x70\x86\x4f\x4b\x72\x08\xb3\xe6\x0a\x3d\x23\x1b\xb6\xac\x83\x59\xd6\xff\xd8\x25\x30\xfa\xac\x27\x1c\xb8\x7e\xcc\xbd\x56\x2f\xeb\x8e\x03\x15\x38\x22\x2b\xec\x5c\xeb\xa0\xce\x3a\x41\xf0\x9e\xa4\x77\x97\x91\x9f\x91\x92\x94\xbe\x17\x9e\x77\x94\x93\xd3\x75\x38\x1c\xdd\x28\xa9\x67\x3d\xea\x5c\xbc\x6a\xfa\x81\xc3\x86\x80\x8b\x59\xe9\xf6\xe0\x92\xcf\x3b\x8d\xa5\x9a\x3b\xfc\x21\x8f\xa5\x20\x69\x43\x6b\x6d\xbc\xf1\x2a\x21\xd0\x85\x45\x75\xc6\xc4\xa0\x15\xea\x1d\xd3\xb4\x72\x03\x58\x5e\x81\xde\xc2\xfb\xe4\x81\x16\xbc\x37\xca\xfa\xf1\xf0\x72\xb0\x2b\x40\x95\x34\x0d\x52\x08\xac\x98\xd5\x37\x82\x51\xd6\x87\x06\x3f\xb7\x29\x4f\x10\xbc\xb7\x95\xe5\xa3\xcb\xc1\xbb\x85\xc8\x7f\x11\x2b\x59\xdf\xe7\xfd\xf7\xb6\x18\x67\xbf\x60\x6a\xfa\x16\x47\xc6\x9f\xe2\x76\xfd\xce\x62\x3c\x3a\x7c\xed\xdf\xf2\x2a\xf0\xdf\x16\x2d\x01\x2a\xcc\x17\x03\x38\x4e\xb2\xe1\x07\x97\x2e\xbd\xfe\x0e\x5a\x23\x70\x3c\xe0\x8c\xa7\xc4\xb3\x69\xf0\x7a\x59\x8e\x8b\x77\xc9\xd5\x0a\x9c\x9d\x82\xb7\xe2\xdd\x61\x16\xf7\xd5\x8f\xb4\xb4\x53\x58\xbf\x1b\xc0\xd5\x1c\x57\xd3\xe0\x1d\x11\x8f\x70\x9e\x5f\xb9\x2e\xa1\x5c\xff\x7e\x10\xbc\x3c\x29\x07\x7c\x41\x7c\xc6\xa7\x6a\x1e\xbc\xdc\x1f\x25\xe9\x4f\x7f\x08\x1b\x43\xf0\x0b\xb1\xf3\x93\x3c\x4e\x7b\x03\x35\x3e\x1d\x79\x82\x61\x2b\x72\xf8\xaf\x64\xa3\x51\x52\x5e\x9a\x8c\x46\xb1\x0a\xd8\x79\x54\xdf\x92\x7b\xae\xc6\x8f\x0f\xae\x2a\xf9\xa6\x28\x0a\x08\x88\x92\xc2\x1d\x90\x1b\x78\x69\xaf\xb3\x53\x06\xa2\xce\x02\x3c\x72\x89\x9f\xa3\xba\xaf\x0c\xb2\x44\x0a\xbe\x77\xea\x03\x3c\x84\x6e\x17\xef\xe4\x42\xd0\xa9\xf2\x39\x56\x07\xaf\x64\x69\x29\x94\xda\xc5\xd8\x24\xe4\x4b\x39\x0b\xb4\xe1\x52\x40\x30\xcf\xfb\x6b\xfa\x12\xbf\x1f\xc4\xc3\xf1\x20\x06\x95\xa0\xa9\xda\xea\x8e\xea\x72\x2b\xd6\xc3\x4f\x4f\x3a\x78\x58\x02\xa9\x3c\x21\x09\x51\xf3\xb3\xb2\x97\x67\x2e\x44\xcf\x4a\xf6\xe5\x0c\x2c\x24\x9a\xe5\xb5\x47\xd2\xcf\xca\xff\x0f\x47\x63\x71\x2f\x53\xf2\xe7\x38\x34\xd7\x43\xde\x5f\x74\x26\x91\xe2\x48\x63\xa0\xc5\xd0\x2c\xde\xdf\xfe\xed\xff\x67\xc3\xd5\x7e\x62\x7b\xd5\x49\xfd\xdb\xfa\x93\xce\xdf\x4e\x82\x22\xf9\x40\xac\x58\x5e\x72\xfd\x41\x97\xce\xf3\x45\xe7\xfd\x00\xb4\xff\xa6\xa2\x33\x51\x38\xf5\xea\x4c\x4e\xb5\x23\x44\x58\x1d\x43\x4b\x47\xc0\x29\x1e\x85\xd8\x60\x35\x0b\xcf\x17\x4d\x9e\xf1\x6f\x27\xc1\x28\xbe\x16\xb5\x8f\xce\xd7\xc9\x29\xbc\x94\x7b\xe8\x54\x58\x9d\x7a\x1b\x7e\x9f\xdc\x00\xf5\xc8\xfd\xdc\xb8\x31\xe8\x80\x70\xbd\xea\x59\x94\xe3\x9d\xe4\x43\xfb\xc2\xad\xc5\xe3\xbb\xee\xd4\x0b\x38\xfe\x49\xda\x1b\x4e\xfa\xeb\x4f\xfd\xe9\xf3\xc5\xd3\x9d\xf7\x83\x49\x7a\x25\xcd\x76\x52\xaa\x06\x4c\x36\x7a\x83\x91\xee\x5b\x05\xdb\x7d\x02\xd1\x47\xc7\xd5\xf4\x45\x15\xb7\x18\x25\x69\x2f\xcb\x73\xd1\x2b\x59\x04\x23\xb3\x09\x2e\xaa\x23\x12\x6a\xa6\x1d\x23\x32\x30\x7b\x9d\xe5\xfa\x37\x5f\xa6\x34\x04\x09\x0e\x5d\x93\xa7\xca\xef\xaa\x63\xc2\x37\xa3\x4d\x21\xd2\xa8\x8c\xaf\x88\x74\x95\x5d\x1b\x15\x19\x67\xe0\x3c\xb3\xe8\x60\x24\x40\x4b\x13\x6d\x8e\xf1\x56\x03\x59\xbe\xdd\xac\xdf\x78\xcb\xbc\x46\x01\xa7\xa5\x52\xc4\xa3\x35\x9a\xb2\x9e\x45\xa7\x09\x3c\xa6\x50\x7d\x52\x88\xbe\xcb\x18\x2c\xd7\x48\x28\x45\x8f\xc7\x47\x1e\x97\x5b\xaf\xb6\xde\x4b\x76\x00\x56\xad\xfa\xbc\xa1\x09\x6d\xb5\x1e\x1f\x59\x9a\xde\x68\x94\x14\x74\x5e\xee\x68\x9b\x9b\x56\xb9\x38\x7e\x7a\xeb\x8a\x54\x74\xd9\x50\x69\x86\x46\x48\xa5\x52\xf1\x9a\x80\x3b\x01\x88\x1a\x39\x04\x14\x33\xab\x76\xaa\x99\xb8\xa6\x46\x6e\xbf\xba\x6f\x78\x2b\x2e\x69\x93\x87\x0c\x1d\xef\x45\x63\x09\x50\xe9\x31\x5f\x72\x06\x3d\xc3\xc9\x76\x52\xc9\xc9\xc2\x78\xbe\x59\xaf\x67\xab\x23\x90\x57\xa6\xf0\xe5\xa4\xfe\xb4\xfe\x58\xfb\x33\x60\x31\x4f\x8f\x86\x9f\x5f\xb7\x3f\x6e\xd3\xa5\x23\x70\x48\xd2\xf7\x19\x85\x7f\x4b\xea\x20\xae\x25\x05\x28\x14\xa6\xbc\xd2\x32\x5b\xfe\x1e\x18\xfd\x67\x5a\x91\x37\xab\x6f\x74\x82\x61\x5c\x94\x91\xbc\x9e\xb0\x34\x18\xf1\x3f\xe5\x91\xc0\xe8\x0f\x75\x02\xe3\x3b\x03\xa1\x62\xb1\xf4\x00\x3f\x6a\x5c\x3e\x77\xcd\x66\xd5\x21\xaa\x09\x1d\x1b\x8e\x76\xbe\x3a\x56\x1e\x55\xf2\x61\x05\x5f\xda\xea\x81\x1c\x56\xdb\x2b\xfa\x11\x30\xcb\x28\x40\x86\xe8\xea\x2e\xbf\xb3\x7e\xab\x59\xfd\x31\xb8\x13\x9c\xd4\xb7\xc0\xe6\xd9\x16\x2a\xd5\x09\x8c\x53\x41\x31\x88\xae\x88\x5d\xbf\xed\x66\x23\x94\x8f\x8c\xbe\x20\xa0\x47\xa1\xbb\xdb\xf0\x94\x21\x81\xed\xd2\xa5\xd7\x2f\x28\xf6\xe1\xc5\xf0\x7c\x11\x4c\xd0\xdd\xef\xaa\xc8\x93\xad\x5d\xdd\x1d\x86\x0c\xba\x6c\xe5\x5a\xad\x82\x5e\x72\x41\x23\xd3\x2f\x22\x06\x1d\x9a\x90\x1c\xb9\x42\x67\xed\x22\x74\x9b\x61\x6c\x5f\x79\x71\xd9\xe6\x0a\xe5\x1e\xd1\xe2\x72\x29\x77\x55\x75\x4b\xa3\x5c\x22\xbd\x03\x41\x53\x6e\x18\x77\xcd\x63\xba\x54\x05\x81\x36\xfd\xa2\x4c\x86\x43\x79\x88\x75\xec\xfe\xd4\x18\x11\x4e\xdd\xd8\xf2\x99\xf2\xd1\x26\xf9\x4d\xf9\x95\xb8\xc1\x99\x4a\xee\x21\xb6\x47\x9f\x2d\x3f\x1e\x00\x18\x18\xce\xc8\x27\xe9\x84\x06\x00\x2e\x7b\x5a\xc1\xac\xfd\x4a\x68\x13\x35\xc1\xa7\xa0\x66\xc5\x70\xc1\x3d\xeb\xd0\xac\x06\x71\x81\xa1\xfa\x14\x8c\x39\x25\xff\x5d\xe6\x3e\x71\xd8\x72\x9e\x61\x48\x2a\x1a\x7c\x1a\x32\x1f\x42\x90\x9e\xa8\x1d\xd4\xef\x3e\x06\xed\x80\x32\x21\x7c\x8a\x86\x5a\xc5\xd8\x5a\xe3\xc6\x07\xdd\x5d\x72\x22\x45\x4b\x70\x07\x9c\x55\x6f\xb2\x71\x4d\x52\x71\xda\xea\x96\xb0\xe1\x9f\xc6\x8a\x15\x56\xde\x0a\xea\x6b\xfd\x51\x88\xe4\x48\xed\xda\xac\x13\x04\x18\xad\x1e\x6d\x82\x60\xcb\xa9\xed\x3f\xd3\x59\x75\x45\xdc\x76\x0a\x1b\x04\xef\x49\x92\x7d\x39\xe8\x0d\xe2\x74\x5b\x44\xca\x75\xff\x73\x57\xdd\xca\x3c\xc0\x83\xff\x9e\x25\x69\x94\xa5\x88\xea\x31\x07\xea\x33\xc3\x93\x07\xaf\xdf\x1e\x05\x67\x02\x02\x06\x60\x16\xf8\x5d\x15\x08\xd5\x60\xd7\x8f\x69\xb0\x95\x0d\x87\xd9\x8e\x76\x66\x78\x48\xca\x7e\xd4\x39\xcc\x83\xa2\x8c\xe5\x43\x86\x23\xd5\xfc\x04\x48\xc1\x58\x13\x1c\x94\x58\x4d\x59\x80\x3e\x39\xbf\xab\x98\x86\x60\x92\xaa\xef\x77\xeb\x1b\x8d\xaf\xc1\x56\x96\x8f\x3a\xc0\x3b\xe5\x02\x42\x46\xfa\x2b\x39\x26\xc9\x9e\xa3\x9d\x0b\xb4\xd3\x3a\x94\xda\xf8\x09\x2f\x3a\xac\xdd\x71\x5c\x96\x22\x4f\xd1\x37\x11\xa6\xbf\xba\x8b\xbf\xfd\xdb\xf9\xe2\x6f\x27\x5a\xf1\xb8\x68\x86\x72\x77\x82\xe0\x3d\x85\x33\x71\x39\xd0\xa0\x14\x16\x24\x4b\x4b\xe4\xbd\x3a\x0e\x2c\xca\x20\xa0\x97\xa0\xe8\x5a\xea\xa3\x79\x50\x88\xde\x24\x87\xed\xfc\x0c\xe6\xba\x00\x26\x61\x8f\x6d\xe9\x52\xc7\x15\xf4\xbf\xf1\x3b\xa4\x30\x77\xb4\x82\x4e\x9d\x13\x04\xd8\x17\x43\x51\x0a\xc3\x1f\xcc\x3d\xee\x24\x41\x30\x9e\x6c\x0e\x93\x9e\xc1\xe5\xb8\x6b\x05\x1f\x1c\xb9\x08\x1d\x0a\xc6\x06\x4d\xc0\x86\x0d\xe7\xd6\xdf\xd5\x1c\x79\xd3\x47\x11\xb8\x4a\x14\x84\x28\xc6\x61\xce\x23\x20\xdb\x34\xcc\xca\x5b\x4c\xf2\x08\xe0\xb9\xe9\x0b\x67\x22\x32\xaf\x59\x62\x72\xf2\x44\x3b\x32\x7f\x63\x16\xf2\xc9\xad\xa6\x08\x81\x70\x8c\x52\x43\xa3\x07\xfb\x2d\xa4\xb6\x17\x96\xd9\x9e\xda\x37\x16\x18\x65\x90\x66\xe2\xa2\x16\x3a\xc8\xfd\xa4\xdf\x6a\x07\x6a\xf5\x97\x5f\x65\x0f\x42\x5d\x76\xfd\x19\xb1\xc2\x9d\x60\x6b\x32\x1c\x12\x2b\xfd\xd7\xea\xf3\xea\x6e\x2b\x18\xd2\x30\xeb\x51\xac\xc8\x97\x44\x1b\x55\x28\x23\x8b\x50\x0d\x26\xe3\x7e\x5c\x0a\x76\x74\x00\x76\x6a\xc1\x6c\x91\xd6\xd1\xb1\x8b\x1b\xbd\xb7\x0f\x09\x46\x59\x16\xe0\xde\x3e\xa6\xe0\x1e\xe0\x83\xee\x73\x23\x44\x47\xd1\xe8\x75\xf1\x8e\xf8\x22\xcd\x10\xab\xc8\x6e\x40\xbb\x08\x50\xc4\xa1\x5d\x7c\xee\xf2\x78\x6a\x28\xf5\x4d\x39\xe6\x47\xe8\xe3\xbc\x50\xfc\x6a\xb3\xb2\x0e\x36\x58\x48\x56\x65\x81\x2e\x12\x68\x94\xe4\x88\x29\xea\x32\x51\xa0\x91\x85\xb1\x03\xde\x31\x65\x92\x4e\x04\xbe\xdf\x27\x80\x0a\xe5\x05\xaa\xa1\x38\x27\x8a\x7a\xda\xdc\x65\x96\xe5\x23\x94\x16\x19\x11\x23\xbd\x94\xd6\xbe\xd4\xfb\x4d\xa5\x7b\x6b\x74\x16\x6b\x92\x05\x63\xc9\x35\xe0\x64\x52\x45\xcb\x4c\x8a\x32\x1b\xe9\x77\xd5\x0d\xaf\x69\xe2\x93\x29\x2f\x04\xd3\x52\x6f\x90\x65\x05\x39\xdd\xa9\x66\x94\x10\xed\xf1\xb9\x33\x15\xe9\x10\xea\x70\x3c\xf7\xc8\x3a\x41\x8c\x52\x9c\xb1\x02\xbd\x88\xaa\x46\xbd\x49\x9e\x8b\xb4\xd4\x0d\xd9\x44\x96\x3c\x43\xb5\xc7\xb6\x3d\x82\x61\x16\xf7\xcd\x12\xc2\xc3\x16\x25\x23\xa5\x3e\x6f\x44\xd8\x1d\x69\x5d\x77\x9b\x2a\x6d\x0e\xc7\x1c\x5f\xfc\x6f\x99\xea\xd8\x9e\xad\xb9\x71\xae\x1b\xfc\xb4\x71\xe2\xac\xd0\x36\xe7\xd2\xc9\x43\x6e\x5d\xcb\x4e\xa0\x6e\x11\xf7\x24\x68\xb3\x4c\x07\xd9\x90\xcb\xd8\x0d\xdf\x76\x53\x50\xee\xae\x29\x68\xa0\xbd\x1c\x3b\x5a\xb9\x3b\xc6\x93\xd0\x16\xb5\x61\x29\xdc\x94\x7f\x08\x09\xc5\xc6\xc9\xc1\xa7\xfc\x69\x1f\xdc\x32\x25\x8f\xb3\x18\x66\xdd\xb9\x5e\x10\x44\x50\x22\x0d\xee\x7a\x86\xd0\xf1\x63\x14\xd9\xc8\x77\xc6\xc2\x72\x01\x5b\x27\x81\x30\x99\xa3\x7e\xca\x46\x88\xfb\xaf\x87\x40\x43\xfa\x8f\x7e\x6b\x9c\x45\xea\x04\xa8\xb9\x2b\x18\xa7\x00\x88\x4e\xab\x0c\xab\x04\x76\xa6\x2a\x7b\xf1\xce\x58\xa8\x38\xc4\x24\xad\x6e\x15\xb5\x88\x3a\x32\x4b\x3e\x3a\x26\x70\x52\x19\xce\x9f\x40\xb1\xb8\x36\x7f\xe2\x67\x4a\xec\x08\x6a\xc9\x59\x38\xa0\x14\x9d\x60\x9c\x27\x68\x80\xbb\x6b\x8f\x53\x7d\x50\x66\x6d\x5f\xa4\x90\x92\x87\x9d\x29\x2a\x02\xa6\x6a\x72\xba\xa5\x57\x68\x28\xf0\xf5\x6f\xa8\x96\xa6\x4f\xb4\x8d\x76\x73\x0c\xa0\x92\xb7\x49\x80\x32\x0f\xac\xc7\x67\x9d\xe6\x37\x14\xf6\x05\x69\xe2\xe4\x36\x1c\x1b\x61\x52\xb9\xec\xda\x9c\x1f\x45\xdc\x6a\xff\xf2\xa6\xa2\x01\x99\xc0\x39\x04\x8a\x28\x04\x01\x54\x34\x85\xe8\x37\xa8\xd4\xb2\x0b\x52\x63\x69\x23\x33\x8c\x53\xe9\xbb\x60\x41\x7f\xec\x2e\x81\x26\x05\x4f\xa6\xc0\xb6\x98\x20\x3e\xc3\x4e\x10\xf7\xfb\x40\xfc\x68\x3f\xc1\xd4\xcf\xfd\xc1\xac\x77\x70\xed\x3e\xa1\xd9\x96\x26\x9b\x95\x31\x46\x4b\x55\xde\x37\x95\x23\xcb\x91\xb7\x10\xa9\xeb\xbc\xdb\x4a\xa6\xd7\xf2\xb5\x64\xfe\xbc\xdc\x13\x4e\xf9\xf3\x4a\x49\xf3\x09\xbc\x78\x39\x09\x5b\xdb\x8f\x57\x29\x5a\x21\x6c\xfe\x37\x70\x8d\x2d\xd7\x5e\xdb\x5f\x8f\xfb\xf7\x5a\x3c\xf2\xc7\xc0\x71\xb5\x3b\x3f\x4a\xee\xdd\xac\x2a\x7b\xc8\xbf\xcb\xe6\x36\xb8\xea\x87\x7a\x87\x95\x4f\x0e\x11\x60\x2d\xd7\x7a\x49\xb0\xed\x2b\x41\x50\x93\x7d\xd4\xc0\x36\xce\x21\x95\x03\x51\x19\x09\x01\x72\xd8\x30\x12\x54\x98\x1c\x87\xcc\x31\x5e\x03\xfa\xf8\xc4\xb6\x35\x5c\x8d\xeb\x4f\xeb\x5b\x9d\x50\x51\x9b\xfa\xb6\x8a\x38\x24\x41\x0e\x59\x01\xc7\x24\x88\x3f\x93\x06\x50\x33\xa5\x08\xd5\x44\xee\x86\x2f\x15\x65\x9e\xa5\xdb\x17\xc9\xc1\x9d\xdc\x02\x35\x84\xed\x8f\x5f\x7a\x8e\x0a\x84\xd5\x5d\x34\xe6\xa3\x6e\xdd\x52\xbd\x22\x9b\x49\xd4\xe7\x31\xe9\x49\x0f\x8d\x82\x50\x85\xe7\xc9\x4b\xf0\x52\xcc\x91\x17\x6d\x54\xb6\x5b\x96\x2e\x59\xae\x07\xe2\x30\x6a\x05\x1a\x8f\xe8\x36\x60\x36\xcc\xb9\xdc\x6e\xfd\x26\xf1\x85\x20\xe6\xe2\x05\xb9\x8f\x63\x69\x13\xa0\x2f\x5d\x7a\x5d\x76\x69\xc8\x90\x77\xf3\xf9\x41\x51\xba\x12\x6e\xcd\xfb\x6c\xe5\x3b\xea\xea\x07\x8e\x74\x7b\x1d\xdd\x20\x88\x6f\xd8\xe0\xd7\xad\xc5\x21\x8c\x05\xc5\x7b\x58\xfd\x6f\xc9\x52\x44\xac\xd8\xa9\xb2\x16\xfa\x4d\x2f\xaa\x1b\x2d\x66\x1a\x4f\x21\xf9\xa9\xb7\xcc\x11\x85\xae\x86\xb9\xbc\x9f\x79\x25\x5c\xe7\x2e\x5a\x04\x5c\xcd\x41\xae\x27\xea\xb8\xce\xa9\xe7\x1c\xd6\xdd\x7e\xcc\xd5\xba\x2c\x79\xce\xf5\xf0\x65\x93\x8d\x0a\xce\x83\xad\xa8\x3f\x61\x49\xf1\x4d\xb5\x54\xb8\x1a\x4c\xc5\x39\x31\x18\x43\x84\xba\x79\x2b\xc0\x1c\x6d\x1f\xeb\xc7\x10\xa8\x87\x78\xf5\xeb\xdb\x98\x91\x5a\x7c\x6b\xf0\x7e\x5d\x03\x7f\x66\xcf\xc1\xee\x65\x29\x3f\xda\xf4\xca\xa0\x39\x8e\x8e\x9d\x65\x78\x9b\x23\x0a\xf1\xb4\x7a\xe4\x3f\xd6\xa8\x15\x4e\xb3\xc8\x28\x7d\xff\x80\xa6\x0d\x2d\x5a\xcc\x55\xc4\x0e\x15\x86\xf3\x53\x4a\x91\x8e\x91\x50\xe0\x7b\xd4\x54\x5a\x3b\x42\xed\x84\x63\x1b\x94\x87\xe0\x7f\x09\xc9\x4c\x78\x14\x94\xd9\x15\x91\x7a\x3b\x80\x27\xec\x18\x0f\xe4\xf7\xea\x22\xf8\x01\xfc\x8f\x99\xeb\xaa\x1c\xeb\xa4\x00\xdc\x6e\x10\xfc\xf7\xeb\xbd\x17\xf9\x77\xc0\xc3\xb4\xc3\xad\xac\xcf\x5b\x5b\xa8\x38\x60\x25\x02\xcb\x0f\x57\x45\xc2\x5b\x2a\x0a\x5e\x84\x44\x2a\xbb\x99\x46\x29\x88\x82\xb4\xfc\x6b\x0b\xa5\x6d\x76\x29\x34\x21\xeb\x72\xe4\x45\x03\xca\xab\x88\xb5\x24\xd7\xe8\x06\x8c\xe6\x5a\x26\xbc\x2f\xf1\xd7\x25\x94\x5e\x8c\x85\x78\x08\xf8\x47\x08\x86\xa4\x6d\x2c\x33\xba\x5b\xb6\xb8\xe9\xd9\x71\xdb\x16\x83\x51\xfd\x33\xa5\xb3\xb1\x04\xeb\x0d\x83\xad\x8a\x10\x98\xc0\xff\xdc\x56\x6d\x37\xb1\x1c\x5d\x4d\xf6\xad\x0e\x5f\xc9\x41\x59\x8e\x15\x9c\x6d\x03\xc5\x8f\x63\xd2\x81\xd4\xcc\x83\x65\xb9\xe5\x77\xf5\xd4\x14\x58\x34\x69\x01\x57\x28\x15\x6d\xb1\xb7\x3d\x52\x51\xbd\xde\x47\x6a\xab\xdb\xc0\x6a\x79\x28\x9b\x89\x9d\x32\x41\xb1\x3a\x6c\x69\x41\x21\x64\xe6\x70\xbc\xf7\xfc\xe5\xe2\xfc\x7b\x2f\x5c\x96\x47\xe4\x6b\x42\x46\x58\x10\x8e\xde\xa7\xee\x73\xc8\xd7\xbf\x9a\xca\x03\xb2\x61\x82\xe3\xe6\xe8\x96\xb6\x11\xbe\x24\x4f\xec\xc5\xf3\xef\xfd\xe8\x72\xf1\xd2\x73\xf0\xef\x4e\xf3\x9a\x28\x58\x8f\x06\x5c\x8e\xd7\x4f\x1d\x65\x86\xf6\x6b\x7e\xcb\xba\xe6\xbd\x38\x8d\x7e\x95\xb7\x78\xa4\xb4\xad\xa1\x07\x19\x71\x7d\x3f\x1a\x1d\x3a\x73\x4c\xcc\x96\x03\x81\xe8\xd1\xb9\xd5\xb7\x6d\xda\xa3\xfc\xf8\x0b\xd1\xcb\x05\xb8\x12\x61\x28\x94\xc7\x99\x5f\xcb\x44\xca\xc1\xb1\x5a\x58\x6d\x95\x03\x91\x36\xa2\x02\xfe\x68\x62\xc5\x0e\x5b\xfd\x9d\xad\x66\xd0\x71\x81\x28\x0f\xf7\x4d\x08\x3c\xe1\x00\xcd\xf0\x83\x19\x07\xf1\x51\x8a\x26\xe3\x73\x24\x5b\x7c\x4c\xe8\xe9\xb7\xea\x1b\xff\x5b\xab\xe8\xb5\x22\xb0\xed\x5c\x60\x45\x53\xc8\xb7\x75\xc9\x60\x8e\x42\x03\x4b\x63\x05\xc0\x2c\x77\xfb\x6a\x17\x0c\x61\x28\xc0\xfb\xb2\xeb\x48\x6a\x9a\x45\x75\x74\xce\x73\xf2\xc9\xc7\xd0\xf6\x7f\x70\x02\x08\x6f\x7f\xd7\x80\x0d\xf0\x96\x68\xf6\xc9\xd0\x1e\xbe\xcb\x2b\xea\x44\x52\xe8\xc3\x3d\x7d\x32\x5e\xcc\xd9\x2b\xfe\xc0\x29\x7a\xf0\x85\x79\xa6\x96\x44\x92\x3c\x54\x80\xbf\x4f\x3e\x99\x6a\xbe\x64\x10\xc8\xc7\xac\x3b\x06\xe4\x1e\x01\xea\xb8\xe5\x65\xa0\xb3\x73\x0c\x2a\xab\x87\xa0\x0b\xd7\x11\x95\x67\x28\xc3\x78\x02\xdd\x1b\x94\xde\x7d\x6a\x1a\xe8\xaf\x4b\x66\xdb\x09\xc1\x2d\xf5\x5b\x39\x23\xa4\xe5\xab\x03\x75\x7c\xfe\xee\x2d\xb2\x16\xf3\x98\x99\x56\x8f\x36\xc2\x97\x36\x2f\xb6\x5c\x15\x2d\xe2\xa0\x68\xf9\x5b\x02\x61\xd6\x6b\xbd\x8c\xd1\x78\xe9\xb9\x4d\xfb\x11\xc9\x05\xa2\x77\x97\xa2\xc1\x28\xdd\xab\x1e\xa0\x7c\x86\xb1\xe2\x76\xe8\x8a\x02\xb2\xe4\xec\x50\x7b\xa8\xd5\x3a\x1d\xfa\xae\x73\x03\x0f\x5d\xf5\x2c\xdf\x62\x4d\xc2\x97\xf6\xed\xde\xe3\xf6\xfe\x1b\xfa\x9d\x35\x67\x67\x8d\xb2\x3e\x38\xe7\xe1\x53\x35\x34\x7a\x03\x03\xf0\x07\x78\xa6\x55\x1f\x24\x37\xaa\x47\xa6\x3a\x43\xdc\x12\x8f\x07\x84\x61\x6a\xfc\xc6\x4e\x24\xc7\x67\x04\x25\x67\x00\x8d\x50\xc0\x68\x82\x29\x7c\x0f\x32\xbb\xbe\x54\xe9\x99\xf1\xf7\x26\xc6\x87\xb6\x10\x52\x4d\xcf\x69\x25\x5c\x0c\x4d\x47\x20\x9c\xb5\xd8\x42\xfe\xa2\xa4\x33\xf5\x10\x7a\xf8\x3e\xa5\x63\xff\x3d\x67\xf8\x02\x7d\x04\x53\xb1\xa3\xba\x68\x45\x2f\x81\xef\x28\x25\x2a\xc2\x7a\x8f\x5d\x0b\xae\x3f\x93\x52\x8c\x96\x19\x95\x40\xa1\x6c\x47\xed\x94\x95\xbd\x03\x6c\x94\x52\x30\x00\x27\xcb\x97\xdf\xfa\x79\x27\xd0\x23\xa5\x21\x10\xac\x0c\x73\x5a\x34\xb4\x91\xcb\xad\xdc\x5a\x43\xc0\x4b\x0a\x95\x52\x31\x12\xae\x30\xb2\x9e\x3a\x82\xe4\x66\x4b\x31\x74\x0a\x9c\xc8\x31\x4a\x27\x66\x95\x69\x85\xff\xb1\x8d\x9c\xb1\x6a\x4e\x25\x3c\x62\x02\x61\xe1\xb8\x9a\x82\x5d\x79\xbe\x57\x7c\xe6\xd6\x62\x9e\xf3\x4a\x27\xb2\x1d\xf4\xbb\xd5\xc2\xc9\x31\x5c\x56\x42\x3e\x64\x57\x94\x5b\x50\x4d\x2f\x78\x57\x5b\x4f\x9d\x35\x04\x25\x64\x7a\x04\x32\x07\xaa\x91\xfa\xd4\x26\xac\xa9\x56\x78\xe9\xeb\xc0\x55\x5e\xfc\xaa\x2c\xd3\x7b\x91\x66\xd0\x3b\x09\x6b\xa4\xfe\x16\xd7\xb0\x64\xb5\x2f\xc5\x92\xde\xd6\x33\x68\xa1\x7a\x0d\xf4\xaf\x0d\x95\xac\x22\x0e\x9e\x0b\xe4\x95\xac\xd7\xa6\x79\x7c\xd5\xb9\x41\xdb\x2f\x5e\xb6\x1e\xbe\xa5\x4a\xb6\x10\x70\xdc\x60\x3e\x88\xb5\x4c\xe8\x2a\xbe\xb4\x40\x2e\x8c\x9f\x75\x42\x3d\x82\x1f\xbf\xa4\xe8\x1a\x5a\x74\x0d\xd9\x74\xb5\xc2\x6b\x2b\x84\xc1\x45\xaf\x93\x66\xa9\xe8\x5a\x47\x5a\xb9\x5d\x6b\xb0\x89\x39\x3a\xfc\x82\x1e\x6c\x99\x2f\x3b\xb4\x37\x14\xf1\x55\xfd\x52\x7f\xed\xfa\xf8\xfa\xfc\x74\x6f\xf1\x8a\x0a\x9e\xe5\x60\x0d\x85\x0b\x22\x68\xec\xb5\xba\xed\x02\x3e\xaf\xe2\xea\x28\x42\x40\xd2\xf7\x0d\x9d\x0c\xc7\x02\xe1\xd5\x0e\xc9\x26\xeb\x8c\x67\xb0\xeb\x1f\x3b\xf4\x8f\xc4\x79\xa1\x8a\x0d\xdc\x1e\xf8\xcf\x6d\xeb\xd4\x92\x00\x8e\xd7\x7c\x92\x85\xf2\xaf\xce\xad\x0d\xce\x8e\xa8\xeb\xaf\x17\x07\x95\x50\x2c\x02\x83\xad\xcd\xfa\x8b\xc0\x87\x6c\xbc\xe6\x68\xd4\x6a\xce\xe8\xf3\xed\x9d\xb3\xf2\x87\xb5\xef\xde\xb9\x40\x5d\x6a\x1d\x70\xef\x68\xfa\x5b\x62\xea\xa9\x16\x77\x94\x23\x8d\x3e\xf7\x8b\x44\xb5\x04\x86\x5f\xe9\x56\xb5\x95\xb5\xbe\xb5\x1c\xe6\xf6\x0c\xf1\x6b\x4c\x18\xc9\x3c\x34\x96\xb7\xea\x0f\x61\x75\xaf\xfa\xb2\xba\x5b\xfd\xdf\xd5\x1f\xaa\xbf\x54\x7f\x60\x46\xb7\x99\xc6\x03\x55\x07\xe1\x9c\x46\x75\x75\xa7\xeb\x07\x03\xb0\xe9\x6d\x35\x73\x56\x49\x1d\x37\x8f\x6b\x84\x9d\x0a\xcf\xa9\x66\xf4\xe9\xd3\x65\xd8\x6b\x56\xda\x0f\x3e\x92\x29\x91\x3d\x78\xe0\xe1\xbe\x3e\xc1\x2d\x7a\x4f\x1e\xa1\xcb\x01\x05\x0c\xdd\xb1\xa3\x6c\x02\x16\xf1\xb5\x34\x28\xdf\xc4\x14\x2a\xec\x95\x3f\x01\x60\xef\x27\x1a\xff\xdf\x44\xf4\xb5\xb4\x82\x91\x44\x08\x84\x8a\xbc\xfb\x7c\x43\xcd\x7f\x41\xa1\x1b\xe4\xf7\xc6\xf7\x5c\x2e\x2a\xf2\xcb\xea\x91\xd1\x5b\xde\x09\xae\x26\x45\xb2\x99\x0c\xc1\x80\x72\x07\x78\x87\xb9\x8a\x6c\xa9\x3f\xc5\xaf\xf2\xa3\xb1\xe0\x8e\xe3\x34\xec\x0d\xe3\xa2\xe8\x3e\x35\x49\xc2\x5c\xf4\xc3\x52\x5c\x2b\x9f\xba\x58\xfd\xc9\x18\x0c\x5f\x7a\x4e\x16\xbb\xd8\x46\x45\xdc\x56\xa3\xad\x2c\xef\x89\xbe\xca\xb7\xc4\xc4\xd2\x96\x5c\x4b\xca\x89\x4f\x83\xed\xaf\x35\xac\xd3\x6a\xae\x06\x86\xde\x9a\xdf\x12\xcb\x46\x9c\xc1\x32\x58\x66\x03\x8a\xc5\x46\xbf\x95\xe5\x57\xd4\xc2\x3c\xc3\x22\x1c\x7c\x2c\x8d\x15\x9a\x4e\xc7\x56\xfb\x18\xcc\x8c\xdd\xcf\x97\x01\xb3\xbe\xfd\x6c\xd0\x1b\x66\xa9\x39\x3a\x7e\xfb\x39\x59\x13\x3c\x69\x67\xaa\xf9\x8f\x43\x32\xb0\x69\xa4\x6f\x17\x85\x7b\x7f\x79\xde\x42\xd3\x91\x5c\xc6\xf8\xe2\xb9\x00\xa6\x8f\xa1\x30\x77\xd9\xa0\xe7\xcb\x1e\x10\xa8\x83\xc8\xb5\x77\xbd\xa9\x3e\xe5\xfc\xb1\x54\xe3\xec\x79\x6a\x9c\xf1\x1c\x30\x8d\xe7\x25\x54\xb9\x3a\xab\x47\xca\x1c\x40\x16\x41\x05\xe2\x68\xc9\xd8\x87\xf6\xf1\xa7\x87\x92\x68\xcf\x5d\x13\xf4\x01\x74\x0d\x3e\x0d\xe3\x74\xdb\xa4\xb1\x85\x9f\xb6\x93\x32\xd9\x4e\xb3\x5c\xb0\x24\x62\x07\x04\xf5\x4a\xcb\xfe\x89\x49\x86\x5b\x1f\x84\x1d\x5d\x23\x18\x26\x3d\x91\x16\xa2\x0b\x67\xf6\x63\x98\xe0\x23\x84\xb8\xc1\x0f\xed\x4d\x6a\x17\xd7\x13\x5e\x13\x66\x10\xf7\x47\xa2\xfb\x36\xfc\x87\xfe\x5a\x6b\x64\x5a\x87\xaf\x12\xee\x4c\x43\xac\x1d\xc4\x93\x32\x8b\x92\x34\x01\x9d\xfc\x99\x01\xa0\xb6\x11\xeb\x6d\x73\x77\xcb\xd3\xca\xf0\x72\xcf\xd4\x15\x65\x3d\xa2\x34\x3e\xb7\xc6\x25\xf7\x50\xa1\x86\xe2\xd9\xb3\x05\xee\x96\x73\xd7\x17\x5b\xf1\x64\xa8\x42\x9c\xc0\x65\x5f\x45\x32\xf9\x93\x69\x50\xb2\xdc\x68\x9c\x4f\x52\xd0\xf8\xdc\xa4\xa8\x62\x94\x95\xf8\xd7\xa6\xa5\x9f\xfb\xaa\x1f\xab\xfc\x4e\xd6\x83\x74\x46\x6e\x57\x64\xeb\xd5\x28\xe0\x2a\x2b\xc8\xa2\xba\x5f\xff\x0f\xf2\x43\x3a\xb0\x53\x5e\x49\x41\xc5\xb5\xcc\xa9\xfc\x53\x6e\x1f\x08\x07\xa1\xd3\xce\x54\x33\x35\xf0\x24\x2d\x45\x7e\x35\x1e\xc2\x1e\x22\xef\x86\xa6\x68\x1b\x81\xd6\x35\xdc\x3c\x83\x5e\x2e\xcf\xaa\x66\xe2\x7e\x3f\x77\x3c\xf2\x1c\x04\x5b\xbb\xa0\x5e\x2a\x2b\x05\x60\x23\xac\x8d\x72\xeb\x68\x16\xe7\x00\x39\x4a\xae\x26\x61\x3e\x5b\x1d\xd5\x09\x38\x13\x14\xbb\x69\xaf\xe1\x4e\x50\xdf\x46\xfd\x9e\x64\xf6\x3e\x22\xa2\xcb\xf3\x03\xef\xc4\x65\x6f\x00\xa1\x61\x5f\xe1\x51\x43\xbc\x38\x8d\x72\x5b\x48\xba\x18\x7f\x00\x25\xfe\x08\x14\xe3\x11\x70\xb8\x37\x31\x81\x2b\x10\xac\xc2\x4b\xd2\xd4\xcb\x2f\x27\x9e\x27\x90\x70\xca\xd0\x33\x9b\xa6\xb4\x85\x75\x87\xd5\x97\x06\x8e\x42\xcb\xc3\x53\xd2\xf7\x10\xbc\xda\xdf\x3f\xff\x82\x07\x2f\xad\xd1\xf5\x50\xa4\xdb\xe5\xa0\x6b\xe9\xb1\x94\x77\x09\x83\x0d\x39\xa0\xe0\xb4\x5c\xc4\xbd\x01\xc1\x3f\x66\x5b\x11\xdc\x3b\x54\x0a\x78\x43\xc3\x55\xc4\xec\xbc\x7a\x80\x0c\xa4\x85\xa4\x61\xdb\x50\x1f\x53\x00\xe8\x4c\x9e\xb9\x43\xf0\xfb\xb3\xb2\x39\xe0\x5d\x68\x41\x30\x06\x98\xe6\x25\xf1\x73\x2d\x20\x0d\x18\x3e\xf7\x7d\xe3\xe7\xfe\x95\x53\x49\x25\xec\xfa\xc5\x07\x1d\xb1\xb7\x34\x98\x2e\x15\xa2\x1f\xc5\x13\xb9\x2f\x7f\xe1\xe9\x77\x75\x1e\xa1\x46\x3e\x8d\xdb\x01\xa5\xe1\xb6\xd3\xe5\x5a\x79\xb8\xab\xb9\x55\xa8\x91\xce\xae\x8d\x26\x1b\x16\xda\xe2\xaa\x24\x3b\x15\x6e\x0e\x27\xe2\xa9\x8b\x76\x22\xef\xea\x94\xb8\x2a\xdd\x1d\xd2\x65\x05\xfe\x0d\xca\xea\x36\xae\x98\xaa\x74\x90\xbd\xd1\xe4\xe4\x9e\xd6\x9f\x5d\xb7\xb3\xb0\xd0\x95\xf7\xd7\xb3\x5c\x23\x7d\x46\x1b\xe3\xe1\xf0\xdc\x6b\x3f\x7f\xc7\x01\x4c\xe9\x2c\x69\x34\x4a\x46\x90\x98\x90\xb0\x83\xc9\x93\x59\x87\xb9\x59\x4e\x11\x6a\x13\x9c\xa7\xb0\x65\xb5\x81\x11\x75\x52\x5f\x01\x4b\x63\xf2\x72\x52\xba\x6d\x46\xc5\xcd\x50\xc7\x22\x87\xec\x02\xa0\x56\x4b\x13\x79\x3c\xbf\x71\x2d\x6a\x5a\xab\x05\xfc\xa2\x3c\xb0\x3a\xe1\x80\x13\xc4\xb0\xf4\xb6\xa9\x2e\x0d\x38\x7d\x2f\x1e\xae\x42\xa6\x77\xa3\x24\x0c\x58\x3d\x00\xe3\x5b\xa6\x3e\x0a\xd4\x6f\x8b\x2c\xd6\xa1\xd9\x8d\x08\x1e\x42\x46\x95\x62\x10\x64\x56\x36\x63\x55\xb1\xf5\x5f\xda\x09\xea\xa9\x13\xf5\x58\x4e\xa5\xec\x88\x61\xf5\xf4\x92\x20\x87\x6a\x1d\x73\xd0\xa4\x01\xa1\x17\x7d\xfa\xde\x64\xd5\xf1\x51\x0f\x7a\xd9\x78\x37\x1a\x26\xe9\x95\x96\x93\x6c\x0a\x18\x95\x44\xa3\x20\xaa\x19\x4c\x49\x0d\xc5\xc3\x11\x3b\xff\xe7\xa7\x9f\x5f\x78\x45\xad\xcc\x2b\x65\x3e\x94\x7f\xe9\x04\x94\x6e\x7b\xf2\xc6\xf5\xb2\x31\x1e\x13\x57\x11\xee\xe9\x3e\x98\xa4\x3b\x0a\x94\x67\x46\x81\x6d\x37\x0c\x22\xd9\x89\xf2\x9a\xa8\x3f\x0d\xa8\xdc\x3d\xeb\xc7\x49\x5a\x50\x7c\x17\x8b\x2d\x03\xc8\x8c\xb9\x13\x64\xfd\xa0\x5a\x04\x58\xf6\x4e\xf3\xe3\x0c\x96\xdd\x23\x65\x04\x41\xaa\xf8\xf3\xaf\xf0\x88\x2c\xf8\x93\x5a\xdf\x0e\x7e\x35\x49\x7a\x57\xa2\xed\x49\x02\x98\x8c\x24\xd2\x1d\xa3\xb3\xc8\x75\xc8\xc2\xb1\xb0\x52\xdc\x2d\x48\xd0\x2a\x07\x49\x41\x74\xec\x0b\x57\xa0\x5a\xc6\x67\x32\x3c\x7b\x78\x7b\x7b\xd9\x68\x14\xa7\xfd\x25\x66\xa1\x36\xc2\xe0\x22\x8b\xe8\xe8\x0b\x92\x1a\x8f\xab\x79\x30\x9e\x14\x03\xd4\xc7\x32\x39\xcc\x86\xb4\x75\x6f\x12\x3a\xda\x7f\xcf\x7e\x37\xe3\x5c\x44\x23\x85\x5a\x77\xa7\x4d\x4c\x57\x60\x13\x48\x87\x78\xea\xce\x4e\x10\x6c\x25\x43\x51\x74\xab\xbf\xaa\x9c\x81\x41\x83\x35\x0f\xca\x5c\x40\x98\x26\xbe\x23\x72\x73\xb6\x92\x61\x29\x72\x05\x54\x10\xa7\xfd\xa8\x8c\xb7\x65\x23\x10\x42\x86\x49\x59\x1f\xa3\x1f\x1f\x36\x62\x00\x1d\x24\x2b\xf7\xa0\xde\xa7\x6e\x44\x61\x3a\x9a\x07\x65\x8c\xa9\x1a\xd4\xdf\x98\x57\x01\x03\x0a\x1f\x82\xd8\x2e\xd7\x7a\x38\x2c\x4c\x76\x32\xc9\xe8\x1c\x68\xda\x8c\x69\x60\x51\x32\x1c\xc6\x9b\x62\x68\x35\x37\x92\x53\x2d\xb3\x54\x36\x09\x3a\xac\xea\x71\x7d\x10\xf4\x00\xbf\xaf\x40\xf7\x0a\xc2\xeb\xab\x0f\x82\xed\x44\x49\x29\xf6\x18\x73\x31\x14\x71\xa1\xc0\x0f\x40\xda\x92\x8c\x67\x32\x14\x51\x1e\xef\x40\x12\x61\x95\xe6\xae\x9a\x57\xc7\xf8\x65\x90\x14\x65\x96\xef\xe2\x57\xf3\xea\xc2\x37\xf4\xaa\x8c\x77\x14\xab\xac\x1c\x29\x67\xda\xbf\xa1\xd9\x9e\x7c\x6e\x62\x24\x6c\x5f\x1b\xf8\x13\x8d\x82\xc1\x84\x9e\x29\x56\x28\x33\x29\x25\xe7\xf2\x98\x68\xbe\x43\x09\xab\xb4\x6e\x9f\xe0\x69\xe3\x42\xcd\xa2\x3a\x22\xd5\x30\x6a\x50\xe0\x3d\xd4\x8f\x83\xd7\x1d\x63\x41\x71\x22\xda\xa3\x2c\xb8\x9a\xf4\x45\x06\x9c\x5b\x31\x19\xcb\xd7\x1b\x50\x8a\xa2\xcd\x3c\xdb\x29\x50\x91\x07\x41\x6c\x48\x99\xf6\x91\xd8\xaf\x48\xd0\xf4\xfa\x3b\x6f\xbe\xf1\xf7\x4a\x51\x30\x03\x73\x54\xfd\xdb\xea\x41\x27\xd0\xa7\xaa\x93\x5d\x15\x39\x26\x96\xbb\x5b\xdd\xaf\x1e\xc9\x25\x37\x1f\x09\x75\xde\x6c\x2f\xc3\xa9\x50\xe6\x5f\xb5\xdf\xba\x52\x51\xc6\x43\x5e\x87\xc2\xd5\xf0\x4e\x28\xf5\xa1\xa7\x5e\x3c\x1c\x6a\x8d\x9a\xe7\x33\x46\xb7\xf6\xa3\xcd\x5d\x1e\xc8\xab\x9e\x31\xf0\x83\x5c\x02\x7d\x15\x82\x8f\xa4\x69\x4d\x85\x48\xda\x62\xf6\x2b\xf0\x6b\xf8\x2a\xfe\x1a\x22\x70\x66\x10\x88\x7e\x52\x66\x79\x47\x12\x49\x8c\x7d\x37\x91\x38\xea\x70\xa8\x32\x18\xef\x4b\xc5\x4c\x7c\xef\x23\x45\xdd\x9c\xe2\xf2\x3f\x54\xf8\xcf\x08\x2f\x83\x0b\x6c\x93\x6e\xa7\xd2\x38\x17\x70\x17\x70\x0e\x4d\xd7\xe2\x66\x28\xfa\x91\xaa\xda\x8b\x53\x40\x4b\x91\xdd\xa6\x59\x1a\x49\x26\x39\x22\xca\xe6\x72\x37\x0a\xf0\xc6\x37\x22\x6e\x06\x32\x89\x71\x8c\x1a\x54\x67\x56\xb5\x26\x0a\x8f\x94\x06\x9e\x70\xdb\x37\xf0\xbe\xbf\x75\x6e\x9e\x6a\x64\x34\x29\xca\x68\x53\x44\x59\x1a\xc5\x5a\x33\xf2\x2f\x1c\xf6\x9b\x8c\xda\x36\xb2\x0c\x75\x84\x16\x42\x8d\x3a\x63\xad\x10\x39\x65\x38\x4e\x61\x87\x76\x90\x39\x1d\xca\x7a\x5f\x8d\x07\xd4\x7e\x9b\x62\x2b\xcb\x05\x2c\x29\x77\x90\x38\x52\xb1\xbb\x54\xa7\x15\x87\x4f\x43\x0b\xb5\x2c\xb8\x46\xc3\x37\x7a\x26\xd5\xbf\x32\xd3\x9a\x65\x75\x6c\x3a\xbe\xf5\x1b\xc4\x57\x45\xb4\x93\x27\xa5\xf2\x35\xe9\x2e\x05\x1d\x62\xce\x13\x96\x89\xec\x8c\xf2\x17\x28\x53\x86\x1d\xfa\x76\x68\x90\x0e\xbc\x3b\x31\xad\x1e\x70\x7f\xb8\x29\x00\x77\xce\xb9\x02\xba\x39\x5b\x42\x22\x81\x29\x6b\x2e\x94\x9e\x63\x0d\x02\xb3\x46\x70\x87\xba\xcd\x52\x5e\x86\x7c\x1a\xea\x4e\x4f\x89\x6c\xcc\xed\x00\x41\x35\x92\x4e\xa7\xc3\x87\xa2\x4d\x23\xfc\x08\xb2\x80\x1e\x13\x97\x6b\x72\x96\x6f\x38\x9e\xe6\x67\x20\x99\x1b\x85\xa6\x6d\x55\x21\x9f\x71\x3b\x95\xc1\x73\x9d\x90\x1f\x79\x07\x4c\xa9\xd1\x1b\x1d\xae\x23\xe6\x81\xcc\xc0\x94\x40\x6c\x53\x10\xf7\x8d\xae\x40\x35\x8f\x53\xf9\xa4\xde\x0f\x37\xe3\xde\x95\x62\x1c\xf7\x84\x5e\x06\xc9\xde\xcf\x31\x37\xba\x26\x2f\x3d\x31\x8c\x00\xb6\x08\xc5\x0d\x85\x4e\xa1\x0a\x00\x0f\x61\x28\xd7\x5f\x09\x3c\x58\xcb\x39\xad\x94\x2b\xee\xf7\xa3\x72\x34\xf6\x44\xa8\x3e\x7d\xbe\x78\xee\x25\xb5\x23\x17\x9f\x66\x15\xbc\x65\x9f\x36\xa4\x5a\x3e\x28\x4d\x54\x08\x5e\xc6\x8f\xaa\xc3\x4b\xd0\x8c\x88\xb9\x24\xe6\x5e\x77\xab\x9c\x1a\xd4\xd5\x6a\xa4\x04\x25\x6c\x6a\x3b\x8d\x3b\xc6\xcb\x2e\x6c\x6d\x1b\x3b\x7e\xd4\x67\x3f\xc9\x45\xaf\x1c\xee\x46\x65\x86\x34\x40\x91\xc4\x7b\x3e\xe7\x1e\xe2\xd8\x78\xde\x50\x74\x61\x54\x04\x8a\xcc\x6f\x4a\x7f\x82\x8d\x5d\x90\x8b\xfa\x14\xe4\xf8\xd0\x26\x38\x35\x0a\x23\x3a\x98\x8e\x6d\xf2\xa7\xad\xb8\x28\x3e\xe8\xe4\x8e\x92\xb3\xff\x94\xd9\x71\x49\x75\xcf\xcc\x4f\x16\x26\xf4\x06\x85\xc9\x38\xb3\x7a\x5c\xef\xf3\xdc\x32\x8b\x7a\xaf\xc3\x9f\x6a\x85\x0e\x06\xb0\x3b\x24\x73\xe9\x60\xe4\xc6\x45\xd3\x1c\x07\x5f\x67\x0f\xcc\x8a\x4b\x01\xe8\x45\xdd\x14\x91\x18\x8d\xcb\x5d\xad\xd0\x33\x66\x88\xf5\x20\xa8\x55\xc3\x4a\x54\x18\xe6\x22\xee\xef\x6a\xe7\x15\xa3\xff\xd7\xe6\xfd\x56\x47\x15\x08\x5c\x26\x46\xb4\x45\xd4\xd1\xdd\xe1\x19\xca\xf2\xdd\x28\x29\xa2\x98\xf1\x2d\xca\x42\xad\x08\xeb\xa1\xa3\xe0\x51\xd9\x71\x9b\xea\x0d\x26\x37\x9d\xb2\xb4\x9d\x16\x69\x22\x6c\x61\x43\xed\xdb\x00\x42\x19\xe9\x87\x01\x16\xbb\x23\x64\xe7\x15\xe1\x07\x75\x65\x73\x0c\x5c\xb3\x6c\x72\xd2\x92\x60\xa8\x78\x7e\x64\xdb\xb5\xa9\x02\x55\xd4\xad\xbb\x65\x93\xa6\x29\x47\x7c\x02\x0d\xfb\xfd\x0b\xd6\x03\xbe\xa8\xaf\x37\xdf\x0b\x98\x83\x5e\xf3\xc6\xf3\xd5\x54\x15\x35\x57\xed\x09\x36\x17\x96\x4d\xfe\x3b\x49\xb7\xa3\x34\x8b\x86\x59\xba\x2d\x72\x7d\xa6\xfe\xdc\xe0\xbf\x14\x04\x8d\xf1\xea\xfc\xd0\x7d\x5f\x9b\x21\x56\x2d\x07\x70\x8d\xa1\xe1\x33\xd0\x8f\x76\x06\x6c\xa0\xde\x78\x5a\xeb\x3e\x31\x0f\x31\x2b\x01\xa8\x64\xd8\x08\x42\x10\x7d\xb0\x38\xd4\x63\x3b\x73\x55\xdf\xee\x2c\xb7\x24\x37\xde\x45\x93\x75\x06\x62\xec\x78\xe6\x19\xcb\xa1\xd1\x40\x6b\x6a\xe4\x02\x07\x90\x4a\x67\xcc\x67\x94\xd2\x79\x82\x4d\xce\x22\x24\xfb\xcc\x3d\x52\x53\x50\x7f\x7a\x22\xe3\xb5\xca\xac\x9b\x73\x0f\xef\x6b\xef\x8a\x4b\x7a\xfe\xaa\xc5\x5f\xdb\x55\xee\x87\x25\x44\x69\xa6\xb8\x02\xf9\x9c\x15\x03\x48\x2b\xa7\xd4\xa8\x0e\x4f\x60\xc6\x1b\x27\x43\x59\x9c\x90\x8f\x14\x23\xd7\x4c\x8f\xbc\xb0\xdf\xf8\xe7\x8c\xe9\xc6\x62\x94\xf5\x31\x9f\x57\x8f\x2e\x60\x7c\xab\x81\x0c\xc7\xd0\x1c\xa7\x67\xe2\x47\x5b\x7b\x76\x18\xb4\x27\xef\x48\xf2\x3d\xc5\x64\xb3\x9f\xe4\x1e\xb6\x02\xe5\x7e\x8b\x46\xb0\xe7\x8b\xf0\x6b\x61\x7d\xb4\x54\x5a\xf8\x17\xe8\x51\xab\xa8\x8a\xb1\x1d\x6b\x8f\x97\x77\x05\x0b\x24\x07\xde\x2e\x08\xd7\x07\xc8\x4d\x29\xed\x92\xe2\x6d\xfc\x8a\x20\x9b\x2f\x58\x54\x87\x4e\xb5\x86\x72\x4a\x7d\x6e\x24\xf4\x6c\x6f\x69\x2b\x49\xfb\x0c\xe2\x4c\xff\x1e\x4f\xca\x41\x86\x48\x90\x38\x20\xfd\x45\x2b\x16\xef\x35\x72\x5e\xa8\x22\xc8\x69\xfe\x1e\x37\x4a\xff\x4a\xb9\x69\xff\x0c\x01\x1c\x40\x53\xf5\xa7\x54\xec\x60\xba\x2b\xf4\xf7\x98\xe9\xdc\xa9\xa9\xd8\xb1\xb2\x78\x3c\xd2\x2a\xbf\x29\x2b\xd2\x69\x2a\xf5\xd8\x47\xf9\x14\xc8\xef\xfa\x86\x81\x88\x57\x2d\xaa\x63\x5e\xaa\x37\x14\x71\x1e\xa9\x86\x1c\x87\x02\x55\xc7\x69\x59\x6b\x0e\xb5\xe2\xd0\xe9\x97\x15\xc0\xbe\x81\x3e\x4c\xc1\xfb\xba\xd1\x37\x2b\xec\x76\xaf\xaa\xf1\x4a\xd9\x58\xa4\x76\x1d\x03\x6e\xe9\xaf\xd1\x1b\x66\x85\xe8\xf3\x3a\x7f\x74\x72\x32\x92\xad\xf9\xb7\x5a\x0b\xca\x6a\xc7\x45\x91\x6c\xa7\x42\x30\x45\xbf\x8b\x63\xd7\x9c\x93\xa9\x64\x19\x19\x16\xbe\x16\xc8\xce\x60\xaf\xa0\x69\x40\x99\x10\x56\x57\x45\x56\xdd\x83\xd3\xa2\x4f\x4f\xbd\xcf\xba\x31\xa7\x43\x1f\xb3\x53\xad\xe4\x76\x8b\x45\xe3\x61\xdc\x13\x4e\x96\xe6\x53\xce\x4d\x5b\x83\x50\x6d\x37\x86\x72\xaa\xb5\x2b\x54\x1e\x5b\x2f\xc5\x68\x3c\x8c\x4b\x51\x74\xc8\x15\xb3\x49\x4b\x48\x8c\x86\x5c\x32\x4a\xc5\xb0\xe0\xf6\xfa\xfa\x33\xe3\x32\xdf\x38\xea\x6e\x37\x49\xba\x95\xa9\x7b\x03\x28\x35\x8f\x29\xe2\x04\xcd\x02\xde\x90\x79\x7c\xb4\x79\x7e\x25\xfe\x6e\xff\xed\xdf\x5c\x6b\x8a\x9e\xeb\xdf\x4e\xdc\xc4\x75\x1e\xab\x0b\x88\x4d\xa4\x42\x69\x0d\x2b\x04\xc5\x37\x26\x3a\x79\x14\xca\xbd\x27\x20\xf0\x85\x0a\xe3\xa0\x25\xc2\x89\x50\xee\xc3\x96\x25\x68\xf3\xb7\x5a\xbd\x47\x93\x42\x00\xc9\xf6\x8e\xb1\xbe\x5d\x5f\x97\x14\xbf\x7d\xed\xd5\xab\xca\x74\xa8\x4f\xf6\x58\xd9\xae\x57\x53\x76\x10\xe9\x05\xc3\x14\xea\xd8\x3b\xd0\x8b\x32\xde\xec\x9e\xef\x53\x6c\x19\x12\x8b\x6a\xf1\x4c\x7d\xf0\xac\x3e\xb6\x92\x46\xe8\x62\x8f\x80\x83\xf4\x14\x23\x4b\x0f\x9d\xee\x2f\xdd\xeb\xc2\x3f\x4b\x56\xbc\x10\x43\xc0\x1c\xfc\x4a\xf9\x52\x1e\x58\x16\xc4\x23\x0f\x7d\xa5\x26\xda\x49\xac\x5b\x80\xf7\x43\x45\x49\xbc\x61\xdd\x39\x95\x39\x75\x99\x5a\x4e\xa0\x8b\x66\xc9\xed\x24\x15\x56\x2f\xad\x74\x70\x65\xbf\xcc\x2d\xc4\xf3\xa5\x13\x0f\x87\x91\x32\x72\x91\x89\xe0\x11\xb3\x75\xf9\x6a\xe0\x44\xfa\xf2\x38\xed\x66\x13\xcf\x7c\x48\xca\xf1\x55\x46\x52\xd5\x8f\x36\x77\xb1\x6e\x7b\xdc\x9b\xaf\xf6\x48\xa4\x65\x92\xa5\x52\xe8\x82\xda\x94\x7f\x16\xdc\x39\xeb\xdb\x2a\x03\xac\x53\xb3\x80\xf4\x93\xf7\xd0\xd1\xc1\xb1\xbe\x37\x4b\x76\xe0\xbe\x94\x86\x41\x38\x42\xc3\x8a\xaf\xa8\xa4\xcc\xb2\xe8\x3d\x6d\x85\x59\x52\x38\x17\x3d\x91\x96\x4a\x35\xf6\x15\xc9\x4c\x87\x5e\x3c\x5e\x5c\x0a\xef\xe8\x44\x5c\xe8\x46\x7e\xff\x1d\x1a\x18\x65\x45\x29\x59\x21\xc0\x57\xfa\xcc\xc8\x9c\xb6\x72\x08\xa3\x2b\xa7\xca\xe5\xa3\x75\x24\xba\xa5\x2f\xd1\x75\x16\xa5\xd7\x15\xad\x48\xea\x80\xe6\x26\xb2\x2d\x71\x0a\x31\xe5\x08\x1c\x00\xbe\x41\x70\x19\xf1\xc5\x46\xfd\x68\x2b\xbe\x22\xfc\x8d\xa0\x51\x8a\x2a\x80\x59\x27\x9b\x90\x3d\x67\x06\x31\x8d\x0f\x41\xa8\x22\x53\x25\x73\x7e\xe6\xef\xf0\xb5\x52\xbb\x31\x90\xb9\x7c\x59\x79\x24\x7a\x2c\x2c\x58\x11\x33\x8b\xde\xf5\x23\xf6\xda\x36\x8a\xa4\x93\x51\x44\x6b\x5a\x74\xdb\xd6\xf1\xc5\xf0\x7c\x5f\xb7\x89\x85\x45\x3f\x8a\xcb\xee\xfb\x14\xb6\x60\xd7\x33\x22\xf9\x89\x59\xdb\xbf\x03\xf1\xfb\x3c\xac\xeb\xfb\xaa\x31\x85\xc9\x8b\x6d\x2a\xd0\x41\x7d\xcd\x74\x2e\x96\xfa\x40\xcb\xdf\x56\xd4\x84\x2b\x92\xfd\xd6\xc0\x2a\x35\x27\x72\xf4\x63\x3d\xe9\xcc\x20\x7e\x7d\x6d\xb1\x04\x76\x5a\xaa\x39\x25\x1b\x59\x74\xec\x17\x04\xfe\xb0\x16\xd4\xdc\x6c\x2c\xa1\x66\x44\x25\xbf\x5e\xb6\x4a\xa4\x92\xb2\x1e\x24\xd3\x5e\x2e\x60\x9b\xa9\x21\x87\x0f\xd6\xea\x03\xa7\xf4\x77\xea\x7e\xb1\xa2\x6d\x62\xfa\xf4\x0d\xfc\xa2\xbd\x3d\xe7\x00\xc2\x49\xd1\xb3\xc3\x53\x91\xf4\x09\xf1\xe6\x29\x7d\x40\xe0\xaf\x8b\x70\x91\xac\x53\x82\x93\x52\xed\xe8\x61\xa2\x19\x9f\x06\xf9\x84\x4d\x92\x68\x9a\x8b\x2d\x68\xd4\x26\xe9\xb2\xe1\xdf\xd6\x37\x24\x07\xc6\x98\x6a\x8a\x70\x30\x92\xe6\xec\x09\xfb\x1c\x67\x45\x29\x2c\xa9\x53\x0f\x66\x38\x8c\x37\xb3\x3c\x06\x6c\x2d\xf9\x40\x4d\xdd\x22\x2d\x01\x40\xf4\x15\x12\xf8\x27\x69\xa4\x32\x26\x82\x8a\xdc\x42\x08\x04\x8b\xb0\xb6\x1c\x21\x5a\x90\xa5\x67\x6a\x26\xbf\x30\x91\xdd\xc7\x21\xe1\x7a\xef\x33\x5c\xcb\x5b\xfa\x4e\xa0\xb9\xd4\xcd\x2c\xaa\xe6\xe6\xd1\xbb\xab\x51\x43\x68\xe0\x3d\x86\x98\x65\xd5\x24\x86\x92\xe7\xf8\x6c\x32\x52\x58\xa8\x97\x0d\xe5\xca\xfd\x33\x32\x2c\x4b\x8a\x4d\xd2\x12\x58\xbf\x16\xc9\xc1\xdc\xb4\xc2\x65\x24\x51\xe2\xd0\xc7\xc1\xae\x87\x2b\xd0\x6a\xf5\xb7\x0b\x7b\xed\x50\x76\x91\x66\xb6\x56\x86\x61\xef\x9d\xda\x92\x90\xe9\x15\x35\xda\x42\xa2\x35\x83\xaf\x93\xdb\x37\x03\x86\x3c\x40\x81\x9c\x97\xeb\x84\x44\x79\x9c\xa8\x36\xff\x38\xb4\x1d\xf8\x4b\x13\x1f\x81\xba\xd6\xa9\x1b\x50\xe7\xc6\x43\xb2\xb7\x6c\x1c\xe7\x65\xd2\x4b\xc6\xb1\x7c\xcf\xce\xf7\xd1\x93\x7f\x4a\x89\x03\xe7\xe8\x73\xa7\xca\xc7\x65\x19\xf7\x06\x92\x98\x19\xf9\xe1\x7d\xdb\xc9\x71\xa3\x5d\x23\x1c\xca\x8b\x45\x58\x29\x0b\x15\x70\x79\x48\x86\xd6\x87\xd5\x71\x35\x7b\xdf\xd3\x51\x3f\xdb\x49\xa5\x48\xb4\xbc\xa3\x3d\x02\x66\x9b\xea\x8e\xde\x0f\xd0\x0b\x8c\x29\x8d\x90\x19\x67\x26\x33\xaf\x4b\x18\xd6\xea\x65\xa3\x71\x9c\x0b\x63\xad\xbd\x47\xa6\xfa\xb3\x56\x2f\x0a\x7f\x4d\x85\x1e\xe1\x56\x7f\x88\xf0\x71\xda\xf4\xa6\xd0\xf0\xb8\x08\xbc\x62\xa8\xda\x79\xd4\xa3\x24\xb6\xc7\xb2\x19\x17\xa2\x4b\x27\x4b\x27\x60\xa0\x45\xb3\xb2\xe1\x3a\x53\xc0\xff\x76\xeb\x3d\x7b\xf4\x54\xcc\x72\xf0\x5b\xea\xd8\xa7\xb6\x22\x8b\x72\x51\x4c\x86\xca\x00\xf3\x48\x3e\x1d\xa0\xcf\x9d\xa2\xc4\x4e\xa2\xd2\x19\x08\xb4\x94\x5c\xaf\xa3\x2b\x97\x03\x29\x56\x94\x99\x1e\x17\x48\x90\x37\x35\x72\x82\x19\xa4\x22\x24\x1b\x61\xfb\xa4\xe7\x3c\x77\x81\x9b\x31\x89\x90\x81\x08\xd3\x16\x1c\x7b\xdc\x71\x8c\x44\xbe\x4d\x2b\xbb\xce\x38\x6e\xa8\x18\x72\x88\x96\x9e\xdb\x9a\xdd\x05\x60\xc6\x20\xc6\xa0\xad\x7c\x39\x31\x19\x74\xea\x5b\x56\x12\x4d\x13\x93\x80\xe3\x1a\xc4\x45\x24\xff\x05\x8f\x9a\x14\x7a\xde\xaf\xbe\x59\x62\x9d\x58\x79\xb6\x4e\x21\xd4\xe9\xa1\x7c\xc7\x01\x66\x06\x4d\xbb\x1f\x23\x10\xa0\xbc\x85\x2f\x3a\x48\x7c\xcf\xc1\x38\x9e\x93\xc2\x40\x9f\x9e\xf3\xbf\x83\x3f\xf0\x51\xa7\xa3\x45\xda\xb8\x7b\x4f\x74\xd2\xa9\x32\xbc\x6d\x78\xa1\x80\xab\xbd\xa9\x38\xd0\x53\x8a\x6b\x56\x2e\x4e\x72\x3c\x7d\x8b\xf9\x78\x46\x6e\xe3\xb3\xa8\x21\x52\x18\x7f\x2f\x68\x8c\x3f\x49\x95\x9a\xc8\x7f\xd4\x2b\x6c\x34\x09\x05\xd4\xf9\x1e\x85\x8e\x2d\x7e\xa0\x9e\xc2\xf3\xef\xfd\xa7\xcb\x85\x9a\x65\xbc\x29\xb9\xed\xab\x22\x2f\x28\x80\xe7\xae\xcb\x4c\x98\x15\x81\xb2\x5e\xf5\xbf\x29\x40\xa6\x0f\xfb\x71\x3c\x73\x9d\xd5\xb0\x3c\xf1\xc3\x65\x86\xe7\xdb\x9f\x9a\x9e\x71\x91\xea\xc9\xa7\x34\x0d\xcc\x81\xcd\xde\x53\x0d\x32\xa8\x77\xd5\x9c\x5c\x5c\x60\x14\xe4\x60\x55\xd9\x89\xb6\xbf\xdd\xf6\x06\xeb\x1a\x78\xc8\x06\xea\x86\x85\x43\x3e\xc3\xc7\x0f\x1b\xef\xc7\x65\x1c\x6d\xe6\x06\x07\xa8\x61\x75\x6d\xed\xc3\x58\x34\xcf\xa4\xa4\x54\xef\xab\xb6\xf1\x99\x47\x69\x54\xa3\x03\xb8\xb0\x26\xb7\xbd\x90\xfb\x2d\xb1\xc4\x6a\x89\x92\x22\xea\x0d\x44\xef\x0a\xe6\x35\xb3\x78\x84\x29\xcf\x2d\xc5\x11\x1f\xa7\x21\xe5\xd3\xff\x10\x3c\x90\x8f\x91\xc4\xfa\xd1\x00\x1d\x2b\xa1\x2f\xe0\x18\x38\x19\x96\xff\x52\x01\x3d\x3c\x42\x75\x2a\x5d\xef\x38\x8d\x20\xe6\x14\xa9\xa3\x83\xdd\xbb\x06\xcd\xf1\x38\x0b\x53\x74\x25\x10\xe4\xfa\xb3\xea\x4c\x47\x59\xc1\xea\xdd\x60\x2e\x0e\x73\x36\x0c\x88\x02\xfb\xee\x23\x69\xf7\x5d\xfe\x41\x86\xa3\xb4\xcc\xed\xe8\xa9\x0c\x3c\x5f\x81\x65\xb2\xe1\x1d\xc2\xb1\xbb\xa9\x10\x25\x54\xf2\x0d\x10\xfe\x1f\x20\x44\x86\x0b\xe3\xe9\x39\x0b\x1d\x8b\x28\xd3\xd0\x90\x9c\x34\x28\xb4\xe5\x46\xd5\x4a\xa1\x73\x21\x1f\x44\xe5\x17\x2a\x1b\x84\x13\x7b\xa7\x3e\xd0\xaf\x19\x52\x68\x2c\x68\x79\x80\x5a\xed\x55\xa7\x86\x17\x01\x7f\x2f\x13\x17\xd9\x8c\xc5\x74\xb2\xe8\x33\xaa\x62\xbf\x88\x8a\xc2\x90\xff\x51\x75\x52\x9d\xa0\xdf\xca\xb1\x42\xc6\xa7\xba\x40\x03\x27\x29\x51\x7e\x68\x83\x3c\x02\xde\x37\xe0\x37\x36\x9a\x53\x93\x24\xe2\x89\xf1\x26\x8e\x5d\xea\x37\xb0\xea\x6c\x3e\xf3\x77\xe7\xfb\xf4\xbe\x18\x0a\xf5\x6d\x6b\x48\x2a\x21\xfe\x00\xb7\x4d\x18\xf0\x2e\xf5\x81\xbc\xec\x0b\xbb\x9f\x39\xaa\x38\x80\x20\x22\xcc\x29\x85\xa2\xd8\x24\x3c\x54\x0f\x3b\x69\xa6\x14\x33\xe8\xa4\xe2\x33\xee\xc3\x9e\xd2\x90\x43\x34\x15\x3b\xe6\x25\xfb\x8a\x41\x01\xb8\x6e\x9e\xba\x29\xcd\x54\xe9\xfc\x2f\x26\x68\x6e\xa6\xc2\xac\x2d\x54\x41\xfd\x38\x5a\x50\x36\xce\x9b\xc4\x22\x40\x1a\x06\x67\xbc\x43\x37\x14\xf2\xaa\x8a\xa4\xa0\x54\xfb\x10\x41\xad\xeb\xb6\x59\x58\xea\x03\x5e\xaa\xd5\xc2\xe2\x29\xd6\xb7\x34\x68\xe1\xf9\xc2\x1a\x6a\x16\xf5\x27\x22\x42\xb5\xf3\x3d\xd4\x5f\xe9\xd0\xb9\x63\xd0\xff\x4f\xab\x33\x77\x80\x8e\x82\xac\xd1\xa5\xab\xb3\xb3\xd7\x26\x2a\x26\x9b\x03\x11\x83\xf1\xf3\x9e\x15\x0f\xcc\x78\x81\xa9\x05\x7b\xdf\x92\x46\xdd\x81\x7b\x06\x79\xb8\x63\x8d\xc6\xcf\x37\x36\x36\x04\xe8\xa1\xda\x90\x7a\x9f\x37\xc1\x6d\xa8\x2a\xea\x1a\x54\x1a\xac\x8c\x1f\x3f\x82\x17\xd0\x6b\x4c\x0e\x0d\x21\x29\x0a\xcf\x34\x1c\xc1\xed\xf0\x19\x30\xc1\xca\xa9\x59\xa0\x68\xcf\xda\xcb\x2b\x20\x2d\x5b\x03\xab\x40\x97\x50\xb1\x9b\xaa\xcb\x68\x2b\xcb\x47\x31\xda\xcd\x10\x58\x06\x69\x97\x41\xd7\x79\xd8\x3a\x24\xd2\x2c\x38\x09\xbc\x42\x46\x07\x6e\x84\x17\xc2\xa7\xab\x07\xf8\xbf\x0b\xf2\xaa\x5c\xa8\x1e\x56\x0f\x9f\xf6\xec\x82\xd1\x3c\x7c\xb1\xe2\x3e\x90\x87\xe2\x7e\x2b\x8e\x5f\x35\x3d\xc7\xdb\xf7\x6a\xc6\x9e\x6c\x97\x21\xd8\x82\x9d\xcb\xcf\xfd\x88\xd9\x27\x84\xe7\x33\xf3\x78\x1b\xfb\xee\xf9\x82\xb0\xde\x60\x5e\xf3\x0d\x00\x27\xa5\xe0\x47\x90\x93\xa6\x8c\x71\xd0\x48\x9e\xa7\x06\x21\x68\x0f\x25\x43\xa4\xca\x08\x26\x62\x67\xc4\x42\x14\x83\x19\x06\xc4\x9a\x05\xf7\x68\x03\xd9\xe7\xa6\xde\xeb\xbb\xaf\x18\x6d\xe9\xe7\xcd\xe0\x90\x55\xab\xd1\xba\xcb\x1c\xd9\xbf\x3e\x38\x67\x5f\xb4\x25\xa9\x3a\x96\x77\xe7\x6b\x66\x35\x4e\xa1\xf1\xb5\xf9\xce\xc9\xb4\xfc\x7c\xfb\xa1\x06\x96\x6b\x01\x2a\x64\x5e\x4a\xf5\x47\xeb\x43\x59\xf9\x66\xb9\xfe\xc5\x5b\x12\x05\x02\x88\xab\x3b\xc9\x95\x04\x41\xa4\xe4\x8a\xca\xbf\x3a\x3b\x62\xd8\xcb\x46\xca\x53\x46\x36\xcd\x44\x05\x6e\xfa\x38\x0c\x55\xc5\x73\x56\x4d\x9d\x70\x6e\xce\x02\x5a\x0c\x10\xf2\x62\x23\x04\x8c\xb3\x99\x2f\xcf\x9f\x9c\xfc\x31\x20\xbb\x78\xad\x2d\xb8\x42\x40\xec\xe4\x8a\x6b\x6c\x65\xdb\x39\x9e\x03\x69\x9a\x1b\xde\xc1\x41\x12\xed\xda\x4a\xf2\xa2\x8c\xc6\xda\x67\x8d\x3d\x26\x94\x8a\x1c\xaf\x8a\x23\xfe\x60\x1b\x54\xcd\xb1\x2e\xc2\x27\x52\x86\x61\x09\xae\x0a\x73\x5a\x3a\xc0\xe2\x98\xc5\xd1\x33\x08\xe3\xf6\xe2\x1f\x82\x8a\xda\xb3\x63\x2f\xd0\xc4\xcf\x1d\x5e\xe1\xd8\x69\x9f\x95\x10\x91\x49\xa7\x1a\x69\xa6\x61\x8e\x96\x67\xb9\xed\xdd\xa2\x15\x2c\xe2\xab\xc2\x0c\xda\x36\x42\xb4\x8c\x16\x50\x5e\x68\xa8\xe0\x5c\x74\xbe\x68\xf3\x46\xd6\x36\xa4\x86\xe4\x79\xbe\xc0\xc6\x80\x50\xc9\xfe\xa3\xcd\x49\x59\x4a\xda\xd1\x6e\x41\xb0\x16\x59\x97\x37\xac\x5c\xc3\x44\x4c\x8b\x8b\x80\x7f\xbc\x8e\x0b\x15\xe8\xdf\x14\x53\x2f\xcd\xca\xa4\x27\xa2\xe7\x29\xd9\x93\x72\x57\x3d\x54\x2f\x82\x89\x80\xa9\x0f\xce\x85\x0a\x00\x63\x3d\x92\x64\x9f\x24\x52\x24\xa1\x73\x8f\xce\x56\xa1\x0f\xaa\x27\x8e\x02\x2e\xe6\x05\x77\xee\xdf\x19\x13\x54\x77\x55\x38\x97\x42\x9d\x72\xcc\x18\x84\xc1\xab\x6e\xd2\x20\x7a\x79\xdd\x53\x38\x93\xdb\x1d\xa8\x8c\xe5\xcd\x0c\xae\x73\xfd\xad\x93\x8d\x29\x27\xf8\x5d\x3a\xb5\xec\x9b\x31\x11\xc2\x23\x73\x0f\xa3\x43\x61\x49\xcf\x94\x88\x4e\x20\x02\xfe\x3a\x9d\xb8\x3f\x4a\x52\x00\x4b\xf2\x03\xcd\xb5\xd5\x83\xf0\x42\x2b\x8e\xa4\xad\xa4\xdc\x9d\x46\x00\x6b\x5b\xe1\x49\xda\x17\x5b\x49\x4a\x19\x4d\x43\xdb\xc9\x8f\x9c\x94\x74\x55\x5f\x4c\x7a\xe3\x63\xb4\x09\x3a\xf4\x16\x79\x76\xdf\xa0\x6f\x13\x04\x9b\xd1\x8f\x23\xd6\x97\x4a\xdc\x42\x30\x22\x4b\x83\x59\xda\xf3\xc4\x58\x71\x0a\x6e\xda\x18\x34\xf1\x5c\x80\x83\x41\x40\xb9\x1d\x33\x91\x27\xc7\x09\x6b\xa9\xaa\x1f\x2e\x5e\xff\x42\xb3\xbe\xbc\x06\x37\x51\xc9\x60\x94\x6e\x8d\xc4\xaa\x0c\xd1\x83\xf9\x58\x6f\x34\x13\xd9\x78\x15\x4f\x73\x94\x63\x21\xd4\xab\x3a\xbb\xb0\x34\x74\xc3\xcc\xa7\x25\x9e\xcf\x2d\xe0\xc4\x7c\x47\x93\x54\x87\xdb\x7b\x8d\xa7\xcc\x3a\xe5\x5f\xd1\xe5\x31\xf8\xb8\x40\x87\x2a\x5e\x6a\x0f\x1e\x99\xd7\x92\xd2\x0f\x93\xb3\x62\xac\x2c\x8b\xfa\x8a\x6d\xf6\xc4\xd4\xb5\x05\x20\x1b\x7b\xa9\xad\x36\x76\xe2\x9d\xce\x99\xc1\x8d\xf3\xac\x14\x3d\x70\x90\xd3\x97\xec\x8f\xd5\x14\x32\x62\xfe\x86\x69\xd6\x59\x18\xff\x92\xba\x74\xf2\x54\x03\x37\x1c\x25\x07\xe9\x85\xd5\xf3\x70\x06\xf4\xcb\xca\xa0\x0e\xb3\x1b\x4f\x8a\x01\x5c\xa6\x13\xb4\xde\xca\x93\xa3\x26\xde\x54\x3e\x53\xba\x0b\xca\x8f\xd8\x1a\x13\x6e\xc3\x1d\x5b\x7e\x1c\xd0\xc0\x29\xb9\xdb\xde\xa7\xfc\xca\x0f\x78\x8a\xcb\xe3\x6a\xca\x36\x94\x72\x98\x9b\xb8\xf5\x86\x73\xad\x56\xea\x74\x3a\x1d\x97\x52\x45\xb4\x6c\x40\xc8\xcd\x4a\x4d\x99\xad\x6c\x49\x15\x06\x9d\xdf\x4c\xeb\x71\xe8\x8e\x03\xd3\xea\x10\xe3\x54\x5f\xa7\x4c\xa6\xd8\xa3\x95\xbc\x4f\x6d\xcf\x4b\x9b\x10\x1f\xba\x79\xb1\xd3\xd8\x66\x3b\x2e\xd5\xdd\x62\xe5\x30\x63\x34\x63\xcb\xea\x1b\x00\x67\x37\x97\x45\xcb\xc9\x00\xf1\x5e\x9e\x0b\xe5\x28\x65\x9f\xaf\x85\x0b\xba\x6b\x93\x13\x35\x02\xe5\x1f\x63\x6b\x51\x09\xf7\x8c\xf3\xe7\x2b\xf5\xe9\x86\x67\x5f\xb0\x28\x5c\x7d\x7a\xd7\xeb\x5a\xd3\x69\xb6\x06\x96\xc9\xc9\xd9\x3e\xbd\x5f\x6a\x78\x33\xca\xb4\xd1\xe8\xdf\x44\x6b\xf1\xb3\x18\x72\x93\x9a\xc1\x47\xa0\x1c\x0b\x07\x7c\xea\x64\x03\x22\xf7\x86\x99\x5e\x71\x45\x12\x58\xf8\x2f\xb0\xe3\x73\xb5\x42\x3a\x50\xcc\x3a\x0c\x56\x80\xe5\x8a\xc5\xf5\xec\xdb\xce\x20\x29\xc5\x30\xd1\xbc\x77\x09\x60\x88\x9f\xc1\xe1\x38\x40\x25\xae\x49\x45\x0b\x37\xfa\xa3\x8d\x10\xad\x02\x96\xd5\x83\xcb\x55\x7c\x99\x56\x1c\x5c\x5f\xf7\x6d\xd1\xe1\x5a\xef\xa1\xdd\xfc\x19\x9e\x11\xe5\xd6\xb9\xef\x1f\xb8\xe1\x40\xf8\x76\x36\xf3\x01\xd0\x3b\x70\xc4\x1c\x12\x88\x21\xf1\x26\x80\x5f\x4a\xd5\x08\x72\x0f\xf1\x12\x19\x60\x04\x17\x53\xc9\x00\x57\xef\x87\xf2\xf0\x86\x74\x78\x97\x6e\xd3\xa4\x80\x1d\x6a\x1d\x13\x83\x14\xad\xec\xf4\xf4\xdf\x7b\x8b\x30\x3c\x8c\x8f\x80\x82\xc4\xda\xf0\x64\x8e\x96\xb5\x56\x8a\x78\xa4\x4d\xd1\xb4\x87\x1b\xf2\x34\x9f\xa8\xf4\x28\x0e\x3a\xea\x7f\xc0\x54\x68\x0c\x8d\x78\x37\x18\x4e\x83\xcd\x50\xcd\xb8\x6c\xc6\xd7\xcb\x9f\x82\xe6\xa1\x9a\x2b\x76\x62\xde\x60\x27\x1c\x31\xa7\x3e\x60\x0c\xc5\x20\xcb\xae\x14\xda\xc9\xb1\x61\x44\x5c\xb4\x88\x49\xa6\x81\xed\xa4\xc4\x36\x24\x67\x55\x7f\x04\xea\x7e\xce\xee\xc7\x45\xd2\x8b\x8c\x40\xc5\x12\xec\xf3\x04\x77\x6c\xa2\xa6\x2e\x21\xec\x2d\x91\xc6\xc2\xea\x8f\x16\x84\xac\xae\x5a\xec\xa6\xbd\x08\xeb\x4b\xf1\xcb\x05\x73\xb5\xa5\xf5\x46\x87\xb2\x72\x92\xca\xbd\xd9\xce\x55\x12\x00\x9d\xc0\xc6\x09\x75\xf7\xa2\xc4\x3a\xe3\x6a\xcd\x81\xd7\x30\x7b\xb7\xe8\x20\x38\x3d\x3e\xd5\xb9\x17\xf6\xd9\xa5\x2e\x40\xec\xbb\x5b\x7f\x68\x50\x96\x8d\x9e\x9d\x10\xc9\x1b\x87\x8f\x6d\x8b\x83\xc4\xd1\x4c\xfd\xc1\xf9\x29\x00\x70\xca\xc5\x38\x43\xe4\x53\x96\xa0\xa0\xc1\xbc\xaa\x24\xf3\x70\x78\xe6\xb8\x78\x14\xa8\xb5\xc0\x2c\x3f\x2c\x4b\xb6\x06\x08\xc0\x1c\xe5\x21\xc3\xf4\xf2\xc3\x76\xb3\x05\x88\xfb\x57\xe3\xb4\x27\xfa\x6c\x52\x7f\x76\xd1\x3d\x54\x3a\xf2\xd6\xa9\xed\x24\x57\x12\xdf\x33\x8f\x0e\xd6\x68\x29\x99\xc1\x78\xfe\x5b\x72\x25\x61\xeb\x59\x08\xc4\x49\x4e\xe3\x61\x84\xca\xcd\xb6\x50\xac\xea\x50\x77\x6e\xde\xe6\x1d\xab\x35\x80\x8f\x8d\xc6\x93\xcd\x61\xd2\x8b\xd8\x90\xfe\xdc\x64\x9c\x3d\xf9\xba\x9d\x74\x1a\xb2\xfe\x05\xe4\xb9\x29\x24\x6f\x9f\x65\x8a\x6d\xc5\x1a\x25\x85\xd0\x94\x40\x95\x8f\xec\xb9\x8a\x6b\x6b\xce\x15\xdc\x36\x3e\xa9\xce\xea\x5b\xf5\x2d\x67\xcd\xac\x36\xa2\x49\x3e\xec\xda\x20\xab\xac\x36\x3e\xd0\x4a\x5d\xdc\xde\x82\xe1\xb6\x39\x7a\x3d\xbe\x61\xec\xe1\x7c\xac\xe1\x66\xa7\x76\x92\x2f\x05\xd3\x67\x0f\xc4\xca\x42\x88\x37\x1d\x01\x7a\xe4\x70\xce\x54\x93\x0b\xc7\x9b\x94\x1d\x4d\x74\x2b\x5d\xef\x5c\x79\x90\xbe\x49\x72\x52\x51\xdf\x96\xc0\x61\x1d\x3c\xe8\x27\x2a\xf3\xb8\x77\xa5\x61\x7b\x5a\x75\x02\xa1\xc7\x07\x04\x72\x29\x4f\x07\xd9\x6c\xbe\xd7\xe8\xac\x83\x6c\xad\xc2\x77\x3a\xca\x60\x30\xd5\x8e\x50\x00\x71\xf2\x43\x9d\xe3\xb5\x97\xce\x3a\xd0\xdf\x6f\x75\x74\xe7\xd4\xad\xba\x03\xee\xc1\xb7\x7a\x39\xf8\x21\x7a\xf9\x01\xef\x89\xef\x6e\x10\x90\x06\x36\x42\x88\x35\xfa\x66\x58\xaf\x16\x1f\x93\xb2\x2f\xdf\xd1\x93\x9f\xbb\x36\x62\x0b\x29\xff\xbb\x2c\x8b\xa7\x6b\xdc\xf9\xa2\xdc\x1d\xa2\x6d\x05\x6d\x27\x61\xf5\x39\x3d\x62\x96\x17\xd3\x1d\x9b\x22\xdd\xb3\x47\xf0\x0d\xa1\xd0\x4f\x43\x03\x07\xfa\xe2\xd2\x1e\x3b\xe9\x64\x24\xf2\xa4\xd7\xad\xfe\xb9\x9a\xd7\x1f\x12\x57\xb2\xe0\xc7\xd4\x57\x2b\x1e\x8e\x07\xb1\xae\xfa\x19\xf0\x5c\x3a\xfa\x1c\x38\x90\xa5\x4d\x99\xd5\xe6\x99\x99\xd6\x4a\xd7\x6d\xe5\x7d\x40\x03\xc0\xaf\x25\xef\xfe\x0f\xe1\xaf\x25\x3f\xf0\x0f\xe1\xaf\x93\xb4\x2f\xae\xfd\x83\xf6\x37\xd5\x3e\xe2\x1a\x1a\xa6\x25\xb9\xf7\x46\xab\x96\x6c\x8e\x66\x29\xf4\xb2\x9d\xda\x21\x0b\x8c\x1f\x9f\x0c\x87\x2b\xa8\xcb\xc9\x05\x2e\xcc\x32\x85\x8a\xd2\x62\xdc\x86\xab\xe0\x73\x69\xe7\x0e\xc9\x6d\xe9\xbb\xc8\x69\xc9\xd2\x53\x3b\xe3\xeb\x50\xc2\x0f\x10\x1a\x00\xd1\xad\x5b\x7d\x5e\x3d\x80\x6d\x6b\xe4\x28\xf4\x01\x25\x2a\x21\xef\xbe\xd1\xb4\xa0\xdd\xd7\x60\x2e\x4d\xeb\x8f\xdc\x5e\x91\x0e\x93\x77\x1c\x79\xd6\x36\xd7\x08\xbf\x5f\x70\x3c\xeb\x8c\xd2\x3a\x06\x08\xa3\x0f\x10\xe0\x41\xa7\x17\x25\x28\x0c\x30\xd9\x31\x1e\x11\x7d\x0e\x01\xa6\xb1\xcc\xa2\x42\xf2\x89\x2a\x28\xca\xab\xf1\xb7\x1c\x50\x97\xe5\x85\xd1\x16\xd6\x6f\x51\xb1\x63\x65\x16\xb0\x88\x4b\x2a\x76\xb0\x4f\xf0\xf0\x2a\x10\xfc\x7f\x9c\x01\xec\x39\xcf\xad\xe8\x49\x4f\xa0\x72\x5a\xcf\xd0\xf7\x3d\x34\xd6\x46\x58\x9b\xdf\x80\x4d\xca\xb2\x5a\x39\xa8\x66\xd5\x29\x57\x40\x82\x3b\x75\xa9\xa2\x4b\x15\xf6\xec\x23\xc7\xaa\x0d\xc1\x24\xfa\xf1\x6b\x41\x8d\x76\x1b\xb5\x81\xec\x1d\x18\x72\x86\x97\xfe\xf8\x7b\x77\xdd\xd1\xd6\xc2\xa5\xc8\xba\x0c\x62\xa9\xb9\x04\x64\x9e\x2c\xa2\xe7\xbb\x17\x42\x4a\xd2\x05\xfe\x2f\x33\x8e\xb8\xee\x8c\x95\x3c\x13\x95\x82\xcc\x99\xe3\x9a\xa3\xdf\xd0\xb6\x8d\x65\xb0\x70\xf6\x04\xa6\x9e\x09\xe8\x98\x57\x7f\x52\x33\xff\x3a\xbb\x57\x49\x35\x86\xa9\x46\xfb\x68\x49\xf6\xe6\x57\xf0\x40\x6a\xb6\x75\xd1\x5c\x0a\xfb\xb5\x4b\x8b\x2d\xf4\xf9\x9d\x29\xab\x8e\x8d\x02\x4a\x06\xb0\xfb\x36\x96\x09\xa5\x37\x6a\x34\xa4\x59\x08\xbb\xb5\xb6\x3b\x6b\xf2\xba\x9f\x1a\xe4\x4b\xf7\x0d\x30\x58\x1b\x2d\x7e\x7a\xe8\xbf\xc1\x12\x81\xab\xfb\xc9\x26\xb1\x2c\x37\x97\x67\x41\xec\x13\xd9\x7c\x08\x59\xbe\xc2\x06\x14\x2b\xe3\x3f\x19\x4a\x3b\x27\x27\xd5\xac\xfe\xd8\x03\x2d\x27\x9b\x7c\xc8\x74\xe5\xa7\x4b\xe0\x93\x97\x8d\xf9\x05\x35\x66\xcb\xdd\x69\xde\x48\xab\xe8\x1b\xe8\x69\x93\xee\x81\xc5\x5d\x25\xbc\x26\x80\x9b\x66\x56\xc9\xdb\x1b\xfe\x9a\x0c\xcd\x6f\x41\x09\x9b\xac\xa9\x23\x6e\x9b\x6f\x3a\x92\x17\x51\x91\xa3\x77\xc8\x0b\x41\x3b\x9e\x2f\x28\x0b\x04\x03\xa5\x57\xb0\x2c\x8e\x3b\x94\x31\xbd\xa1\x45\x50\x5f\x4e\x13\x05\x7b\xdb\xa1\x36\xd5\xfc\xc5\x86\xf0\x8f\xe1\x9e\xf7\xc8\xd2\xa4\x01\x78\x59\xcc\x64\x43\x10\x65\x35\xe9\x5e\xac\xe5\x7c\xf1\x85\x27\xb1\xa7\x27\x93\xa3\x76\x69\xfa\x9f\xd7\x7f\x6f\x43\x41\x22\x2b\x44\xf4\x4c\x27\x63\xe9\xf8\x07\xc6\x0e\xba\x22\xe4\x2d\x29\x10\x17\x26\xbe\xdc\x88\xaa\x66\x18\xb4\xc8\xe7\x0b\x5f\x3f\x96\x9f\xd8\xef\x3d\xab\xd6\xf4\xd4\xa3\xfb\x75\xa3\x3e\xb0\xac\xeb\x3e\xf8\xd7\x15\x59\xc2\xdc\xea\xff\x01\x9b\xd1\x42\xe0\x9e\x7c\x6b\x9a\xbb\xd2\xfa\x20\xda\x19\x39\x75\x3e\x4e\x86\xe2\xba\xc6\x03\xe6\xf4\xf7\xc2\x92\xfe\xf8\x94\x75\xb2\xc1\x95\x78\x82\x1b\x24\xe6\xc1\x81\x51\x0e\xc1\x7a\xfb\x5f\x4b\xca\x0d\x8b\x75\xdf\xf0\xa3\x3e\x20\x0f\xcd\x68\x97\x61\xd3\x81\x18\x98\x14\x47\x10\x41\xd2\x36\x3d\x60\x3c\x89\xa4\xb3\x5c\x89\x27\x6e\x84\x93\xa6\x77\x4a\x58\x9d\x51\xcc\xd6\x1c\x79\x6a\x4a\x34\xc7\x1d\xf6\xdb\xed\x96\xcd\x0b\xf0\x24\xef\xba\x6a\xb8\xfe\xac\x3a\x3b\xd7\xaa\xaa\x35\x6d\x37\x95\xe1\x6d\x02\x54\x43\xff\xef\x74\xed\xa3\xc9\xc4\xac\x7f\xd5\xfa\xac\x31\xad\x79\x7c\x05\x54\x27\xc4\x60\x34\xa3\x6d\x4c\x98\x0d\xe1\x9d\x35\xbb\xd3\x9c\x90\x81\x4c\x68\x4f\x74\x86\xcf\x8d\x0a\x83\x6b\xb0\x47\xa6\xb3\x26\x13\xca\xf2\xd3\x7a\x59\x38\x8e\x1b\xd9\x30\x75\xc4\xfd\x7e\x64\x83\x3f\x34\xa0\xd4\xac\x9c\xed\xf6\x79\x9d\xb6\x37\x64\x36\xf5\x33\x38\x19\x0c\xcb\xfc\x04\xed\xba\x2c\x09\x8c\xd5\x6a\xf3\x06\xd8\x03\xb4\x51\x0b\x3c\xce\x5d\x59\xbe\x04\x8c\xa0\x7d\x06\xde\x06\xdc\x30\x37\x3f\x97\xf7\xa9\x07\xca\x96\xbd\x44\x2d\xb0\xf7\x98\x33\x4e\x93\x01\x63\xd0\x27\xff\xec\xeb\x84\xb2\x76\x03\x8d\xb6\x2b\x68\xd5\xd2\x0b\xbd\xb6\x8f\xb4\x5e\x8d\x5c\x8c\xb2\xab\xa2\x65\x4b\x2d\x80\x10\x73\xf7\x4d\xa7\xdc\x8a\x63\xac\xa1\x36\xb8\xdf\x2a\xc3\x68\x7d\xdb\x72\x5d\xc9\xf2\x6d\x9e\x88\x4e\x8a\xe0\x9b\xee\xd1\xb8\xeb\xe7\xb1\xcf\x1c\x0b\xaf\x7e\x5a\x9c\x33\x89\xc6\x54\x78\x33\xad\x53\x62\xbd\xe2\xf2\xa0\xef\x88\xcd\x41\x96\x5d\x69\x5e\x96\xff\x86\x1f\x1c\x5b\x24\x1e\x22\xfa\x56\xa8\x20\x4f\xcc\x35\x08\x59\x7c\xb9\x7a\x74\x8e\x59\x2b\x4f\x40\x5e\xbf\x8f\x6e\x41\xb8\x3e\xfb\x1a\x8e\x01\x81\x89\x60\xf8\xa7\xdc\x13\x09\x94\x3e\xa8\x53\x7e\x44\x60\x13\x67\x2a\xc7\x2b\xc5\xc4\x36\x9c\x1c\xb5\xba\x05\xe5\xac\x1b\x48\xce\xa5\x4c\xf9\x5a\xb6\x5d\x50\x98\xcb\xd2\x46\x79\x38\x54\x4b\x73\x4a\x9b\x69\xd2\x33\xc9\x69\x71\x37\x8c\xb7\x7e\x79\xe9\x1d\x8d\x76\x38\x05\xb5\x94\x06\x97\x30\x8f\x2e\x03\x93\x7e\xf7\xed\x37\x3a\x61\xf5\x0d\xa1\xb0\xdd\x68\xdc\x41\xa6\x28\x40\xc7\x40\x30\xca\x9d\xae\x48\xf3\xfb\x67\x4f\x56\x2c\x14\x99\xd4\xde\x02\xa2\x0e\xe7\x47\xf1\x67\x0f\xc9\x31\x9e\x67\xd5\xfd\x0b\x68\x46\x6e\xaf\xb6\x3a\xde\xc2\x6a\x68\xdd\xa0\x0b\x4a\xf8\x7d\xb4\xe1\x0b\xbf\x40\xef\x97\x39\x58\x1d\x3c\x91\x18\x4d\xee\x87\x83\x2c\xdc\xea\x84\xd5\x3f\xad\x4f\x4f\x1a\xf3\xe5\xde\x87\x7a\x5a\xcb\x73\x6d\xb8\x8d\x75\x4a\x74\x61\x1a\x26\x57\x45\xbe\xab\xc2\xb8\x0f\x95\xfb\x19\x23\xb7\x98\x13\x84\x3f\xd3\xde\x26\x54\xb6\xe3\x46\x1e\x31\x74\x9e\x20\x62\x7d\x83\xc8\x74\x23\x20\xb8\x61\x85\x75\xf6\x6c\x51\x1d\xae\x1a\x80\x5e\x95\xbf\x60\x27\xcd\x5d\x57\x0e\x96\xcd\x07\xf5\x30\x24\x04\x07\xc4\x7b\x73\x67\x0f\x68\x38\xcd\xec\x90\x70\x20\x94\x26\xa0\x19\x91\x0e\xc7\xe7\x18\x92\xa8\x3f\xdc\x50\x8a\x9a\x6f\x51\x69\x71\x13\xb9\x16\x48\x4d\xc5\x33\x50\x21\x8e\xa6\x72\x55\x65\x87\x86\xf1\xc1\x7a\x4c\xcd\x15\xc9\x05\xdb\x52\x60\x12\xb0\xba\x8e\xc9\xe3\x0d\x4c\x97\xd5\x37\xcb\xf9\x4f\x70\xba\x38\xb3\x6e\x27\x79\xa1\xdc\x85\xb6\x4d\x68\xbd\x25\x75\xd3\x47\xcd\x29\xd6\x1f\xa8\xd2\x3e\xe2\x1b\x34\x97\x61\xc9\x0e\x58\x5a\x87\x99\xc6\xa1\xb7\xf8\x72\x33\x57\x72\x21\x64\x99\xd9\x7c\xa5\x8a\x71\x06\xb9\xb5\x35\xa6\x66\xb3\x10\xc6\xf7\x15\x6e\x3c\xa7\xad\x15\xa0\xb2\xe3\x78\x17\x20\x84\xbc\x38\x0f\x36\xb8\x43\xb3\xf2\x66\xd6\xdf\x85\x03\x6e\x96\x1d\xb5\xe4\xd3\xa6\x0b\x0e\xde\xc8\xd7\x92\x52\xdd\x00\x96\xf8\xc7\x6c\x04\x4f\x86\xff\x1a\x82\xda\xc3\x23\x41\x6f\x27\x1e\xe2\xfb\xd5\x6c\xc3\x17\x28\xa5\x6d\x12\x2a\x31\x3a\x83\x2a\xf7\xba\x61\xab\xcc\xbc\xfa\x52\x53\xe8\xb8\xe5\xd4\x46\xa8\xb8\x76\x1e\x23\xee\x72\xe3\x18\x5f\x29\xfd\xbb\xad\xc9\xe9\x34\x16\x04\x93\x6d\x21\x99\xfa\x83\x32\x14\x23\xe9\x44\x36\x67\xaa\x73\xaa\xcd\xaa\xb3\x0d\x8b\x0b\x7d\xac\xdf\x34\x76\xc2\xf1\x11\x01\x43\x54\x1b\xf2\xa0\x64\x01\x54\x44\xc2\xcc\xc9\xe5\xef\x88\xd1\x34\xbd\x99\xf7\x71\xb2\xd4\x2f\x3a\x04\x87\x08\x9b\x67\xaa\x69\x3c\xd2\xc8\xb1\x26\xb7\xca\xeb\x59\x76\xe5\xe9\xb8\x59\x9a\xc1\x29\xa2\x92\xeb\x23\x62\x25\xb5\x4f\x82\x99\x5b\x43\x7b\x4d\x12\x29\xb5\xd5\xf4\x1d\x7a\xdd\x62\xea\x18\x0b\x48\x5b\xf1\xe5\x4a\xfe\x06\x0d\x8b\x92\xcb\xd1\x76\x44\x4a\x59\x6e\xf1\x4e\xc8\x7b\xe1\xd1\x79\xf7\xed\x37\x28\x4d\x42\x3b\xbc\x80\xe6\xb2\xea\xdb\x10\x0a\xf9\xa5\x49\xb8\x66\x32\xf4\x9a\x4e\xd4\x01\xd7\xf6\xe7\x0d\x85\x29\xa8\x09\xce\x29\xdd\x91\xfb\x46\x60\x20\x33\xba\xe1\x42\xe7\x4d\x0d\xe2\x33\xff\xc7\xa5\x5f\xfe\x62\x83\xa6\x79\xed\xc2\xce\xce\xce\x85\xad\x2c\x1f\x5d\x98\xe4\x43\x91\xca\x1f\xfb\x34\xef\x8d\xf0\x25\x31\xba\x08\x60\x51\x9d\xea\x61\xe7\xa5\xe7\xc4\xe8\xe2\xb3\x9d\x10\x58\x69\x26\x63\x6b\x45\x56\xbb\x62\x94\x71\x78\x67\x0a\x60\x1f\xd0\x80\xbe\x27\x87\xe7\x30\x78\x44\xeb\x8c\x2b\x83\x7a\xe6\x50\x36\xbb\x09\x1c\xb1\x25\x47\xc2\x41\xb4\x72\x53\xfb\x6f\x16\x17\x92\x7a\xb9\x28\xbb\x97\xe0\x3f\xee\xcf\x0a\xf0\x0c\x1e\xe2\xeb\xca\xbc\xa3\xaf\xb5\xe7\xd9\x42\x21\xe6\xd2\xeb\x2f\xbf\xf0\xf7\xff\x39\x7c\xfd\xcd\x97\x5f\xd1\x31\xc0\x4a\x31\x05\xb7\xf6\x13\x2d\x6f\x4e\xab\x87\xf5\xc7\x28\x78\x01\xef\x74\x53\x05\x35\x12\xda\x1c\x9c\x92\x47\xce\xbb\x30\xa3\xdd\xfe\x3f\x2f\x48\x49\xe1\xc2\xa5\x64\x3b\x8d\xcb\x49\x2e\x74\xe0\x9c\x99\xc7\x30\xee\x5d\x01\x11\x10\xef\x34\x61\x29\xb6\x88\x7d\x6e\xbd\xa4\x97\xa5\x66\xf5\x11\x41\xef\xcc\x7e\x97\xb0\xa0\x0d\xc2\xc8\xfc\x45\xae\xca\xfd\x50\x59\x9b\x48\xc2\x38\x36\xea\x00\x7d\x85\x8c\x32\x96\xae\xb7\xed\xa2\x4e\x40\x64\xf7\xe1\x1e\x1d\x28\x6b\xe3\x8f\xdd\x8e\x20\x2f\x6d\x96\x0e\x77\x75\x28\x1a\x30\x5d\xb4\x5a\xf2\xab\x22\x01\x96\x98\xc4\xdd\xab\xb0\xa1\x42\xa4\xfd\x48\x48\x46\x06\x00\xd2\xba\xd5\x97\x84\xe6\x06\xb2\xa1\x3c\xf8\x5a\x8d\x0a\x6c\x3e\xcb\xaa\xe5\xb4\x84\xf1\x22\xc8\x4e\x29\xc9\xf3\x53\x85\xc2\x6e\x83\x69\xd7\x2a\x25\xa3\xc9\x37\xa3\xfb\x6b\xb6\xeb\x03\x91\xf0\x17\x6a\x86\x84\xa9\xd4\xb4\xf5\x6f\xab\x07\x16\x86\x01\x77\x98\x55\x7b\xe7\x43\xac\xf4\x16\x6a\xeb\xc7\x24\x1d\x70\x62\xb7\xdd\x66\xda\xb2\x2d\x7b\x8a\x69\xdf\x0c\x9f\x4a\x14\x38\x01\x27\x79\x72\x75\xe6\x3b\x2c\xdd\xb7\xac\x80\x0d\x76\x8a\xa0\xfd\xb7\x94\xe7\xf6\x0a\x03\x01\xd6\xf3\x65\xef\xf5\x16\x31\x91\x52\x2a\x98\xbe\x11\xa5\xd5\x1c\x13\x8f\x5a\x59\x9d\x0c\x78\x49\x75\xd6\xbb\x7a\x22\x6d\xdc\x18\x0b\xe2\x65\xc3\x42\x72\x61\xa9\x08\xed\x32\x86\x95\xfb\x0c\x98\x9f\x33\x1b\xa5\x1d\xc3\x23\x25\xeb\xb5\xc1\x8f\x43\xc3\x19\x7c\xba\xe1\x9c\x16\x05\xa6\x2f\x3f\x34\xc4\x2e\x94\x7b\xc1\x97\x06\x8c\x25\x0b\x63\xb6\x27\x84\x84\x0d\xd6\xc6\x3a\xe5\xf5\xd5\x68\x3a\x63\xb3\x93\xd4\xb8\x8c\xe8\x4e\xd5\x02\x8e\xac\x4d\x11\x87\x5c\x0a\x6a\x6c\x91\xd5\x06\xed\x91\xaf\xa1\x23\xeb\xc2\x6e\x38\x27\x47\x4f\xc0\xaf\x12\xc4\xae\x28\xa5\x33\xcb\xe8\xdc\x52\x82\xdd\xb2\x13\x8c\x25\x59\x18\xcf\x4a\x7a\xcb\xc9\x59\xa0\x2d\x2d\x94\x61\xdd\x20\x07\x31\x4f\x3d\x3c\xe3\x77\x92\x52\x14\x73\x30\xb1\x87\xe4\x9c\xa4\x1d\x07\x5c\xce\x0b\x15\x25\xf5\x01\x71\xa9\x87\xa4\x67\x6a\x3e\x16\x4a\x36\x24\x8e\x77\x83\xb3\x68\x96\x8f\x62\x53\xbe\x41\xed\xa4\xa3\x85\x04\xfe\xf3\x09\xd4\xec\x4a\xfe\x6a\xb0\xbd\x5a\x9d\xe9\x13\x65\x1b\x2a\x4d\xaa\x64\xf5\xfe\xdf\xd4\x73\xe9\x5c\xa5\xa6\x2e\x5f\xf7\xe5\x68\xc9\xda\x20\xdf\x56\x47\x6b\x60\x92\x01\xa5\x42\x49\x28\x27\x95\xce\x34\x30\x37\x49\x31\xb5\xa3\xa5\xad\x9f\xb5\x38\x35\x45\x59\x94\xf8\xd0\xe4\xef\x20\x87\x16\xf0\x1b\x4c\x00\x68\x58\x4d\xe6\xc4\x6d\x3d\xd0\x46\xc8\x5b\x92\x99\xb7\x20\xb1\x2f\xc9\x56\x20\xe9\x1b\x86\xf4\x4e\xeb\x4f\xda\x1c\x95\xec\xee\xfb\x49\xd1\xcb\xf2\xfe\xf7\x1e\xc0\xab\xd8\xce\x77\x1b\x42\xba\x5d\xc6\xc3\xef\xbf\x08\xaf\x52\x43\x4f\x3a\x08\xdc\x82\x12\xe0\x26\xdf\x91\xff\xef\x7e\xea\x67\xa3\x38\x49\x71\x54\xa7\xf6\x35\x27\x76\x71\x10\xa7\xa9\x18\x76\xc1\x4e\x0e\xe8\x1c\xfc\xb4\x8e\x87\xd9\x6e\x74\x45\xec\x42\xec\x15\xb9\x0c\x50\xa0\x2f\x45\x5f\xb3\x6b\xcd\x99\x56\x56\x55\x11\x92\x97\x36\x2f\x12\x2d\xd9\x23\x49\xec\xb8\x9a\xbe\xf8\xd2\x73\x9b\x17\x99\x17\xcb\x61\xc3\x42\xd3\x48\xff\x6b\x3c\xc9\x67\x4d\xe7\x72\x4c\xb1\x8b\x03\xdd\x68\x26\x38\xd5\xc1\x98\x7c\xf9\x41\x22\x72\xd5\x96\x53\x44\xcd\x9d\x9a\x14\x19\x92\x4a\x1d\x43\x9e\x78\x78\x01\x1c\x01\x09\x8e\x83\x9e\xb4\xe7\x18\xd0\xb0\x9e\x70\xf5\xf4\xeb\xe3\x2e\x7e\xfd\x99\x5b\xdd\x36\xab\x81\x35\xd8\x72\x7a\x20\xc5\xed\x4d\x94\x7f\xc8\x22\xc6\x3c\xff\xf0\x5f\x08\xcb\x01\x9a\xa3\x85\xd6\xdc\x84\xd5\x3c\xbc\x74\xe9\xf5\x0b\x66\x6d\x1b\xcb\xc1\xfd\x33\xb3\xc8\x3a\x39\xc6\x31\x94\xd1\xe5\xfa\xb6\x0a\x41\x5c\x7d\xac\xb8\x1d\xbb\x0d\x6d\xcd\xb7\x76\x5a\x1b\xe2\x51\xd0\x99\x0a\xb2\xe4\xa6\x10\xa9\x14\xcd\xda\x94\x79\xda\x00\xb0\x64\x94\xda\xb9\x74\xee\x60\x83\x69\x44\x65\xab\x4b\x08\xb1\xc2\x2e\xbf\x58\x79\x34\x5c\xaf\x54\x57\x0a\x5d\xac\xc2\x54\xb1\xce\xa9\xec\x9e\xb9\x1b\x68\x4f\x80\xd5\x47\xd4\x8b\xc9\xe5\x3e\xb7\xe7\x5a\x0e\x72\x8b\x69\xe8\x3b\x5f\x8c\xa5\x36\xa3\xf5\xb6\xec\x09\xcc\x47\x2d\x30\x5c\xa4\x74\xf0\xc5\x07\xfb\x23\xdb\x9e\xdc\x0a\xed\x9b\x34\x83\xec\x5a\x7d\x76\xd6\x32\x27\x31\x28\xd4\xc8\x8b\x57\xd8\x0e\xc2\xf2\x25\x48\x25\x7b\x04\x4d\x67\x80\xc3\x20\x2f\x3d\xe0\x9d\x87\x7f\xff\xfc\x0b\xb6\x37\xbb\xeb\xe5\x63\x3a\x1f\x8a\x74\xbb\x1c\x00\x05\xe5\xd4\x0c\xe9\x92\x6e\xa0\x3e\x08\x82\x7e\xb2\xb5\xd5\xd9\xcc\xb3\x9d\x42\x44\x45\x36\xc9\x7b\xa2\x81\x7b\x83\x26\x07\x8c\xa6\x3e\xe3\x99\xb0\x1f\x56\x53\xac\x3f\x8e\x73\xa0\x11\x7f\xb6\x11\xdd\xf1\xa3\x46\xad\x85\xff\xe2\x6f\x00\xf1\x0c\x46\xf8\xab\x71\x32\x8c\x37\x87\xc2\x76\x88\x7b\x35\xd9\xda\x42\x13\x86\x43\x8f\x3b\x58\xbf\x18\x64\x3b\x91\xfc\x57\x54\x94\x71\x59\xe8\xd4\x37\x46\x35\x49\x76\x13\x85\xe0\x08\x31\xdf\xb2\x55\x56\xbf\x18\x0f\x93\x32\xba\x9a\x88\x1d\xf2\xf8\xb7\xd3\xf2\xa1\x8d\x78\x5e\x3d\x64\x55\x26\x69\xb2\x95\x88\x3e\x55\xfa\x03\x41\x0d\x37\x8a\xca\x31\x51\xe6\x12\xe5\x86\x76\xbe\xef\x0a\xc5\x64\xe0\x36\x69\xa9\x0f\x8d\xd3\x9a\xe4\x6d\xe8\xdf\xb2\xa2\x43\x1c\xaa\x05\x73\x6f\x9b\xf3\x92\xb6\xab\xa2\x2e\x45\xbb\x9c\xa4\xdd\x9f\xfc\xfc\x17\xf8\x87\x9c\x01\xe5\xb2\x73\xb6\x9b\x1c\x4c\xd4\xc0\xb0\x38\xa4\xe0\x2d\x26\xe3\x71\x2e\x8a\x02\xbd\xb2\x51\x22\x46\x98\x2a\x1e\x01\xa2\x53\x22\xa3\x77\x98\x46\xa1\x31\xea\xe9\x29\x4b\xd8\x2a\xe9\x01\x04\xdb\xc1\xa9\x32\x86\x77\x0d\x0e\x33\xc5\x45\x03\x17\x1b\x18\x4a\x99\x65\xd1\x28\x4e\x77\x59\xde\x58\x27\x08\x9f\x1b\x5e\xc8\x83\xe6\xc0\x68\x9e\xf5\x38\xe4\x67\x93\x38\xd6\xed\x1a\x8d\x97\x16\x20\x55\x43\xaf\xd1\xdc\xc2\x20\x20\x59\xb3\x43\xff\x2d\x98\xbc\x59\x1f\xe8\xaf\xa9\xd8\x31\x72\xab\x79\x3e\x80\x3c\xa0\x08\xab\x4a\xf6\xf3\x78\xab\xec\x56\xff\x02\x4b\x40\xa6\x84\xea\x58\x7f\x1e\xe7\x42\xb7\x03\x21\x14\x17\x3c\x6d\xac\x4a\xea\xa2\xca\xc5\x03\x11\xf7\xbb\xe6\x3c\xb1\x63\xe6\x60\x26\x85\xe7\x0b\x95\xc8\x7a\xae\x20\x0e\xf7\x1a\xb0\x3e\x27\xe8\x3e\xa3\xdb\x47\x02\x13\xf5\xb2\x3e\xe6\x63\x54\x44\x45\x3d\x9d\x8b\xea\xa1\xb5\x42\x0c\x2c\xf4\x6b\x23\xa7\x6b\xa8\x50\xd3\x07\x8b\x57\xd2\x30\x38\xca\x69\x87\x1e\x06\x29\x2b\x23\x93\xc5\x57\xc5\xea\x82\x0b\xe9\x38\xa4\x6f\x01\xb8\x1b\x58\xfa\x96\xc0\x27\x6d\x7c\x85\xa4\x4b\xd5\xa2\xbe\x89\x4e\x7d\x5e\x85\xb4\x32\x6c\x91\xd5\xae\x99\x88\x1b\xb2\x6e\x28\xf8\x53\xd0\x93\xaa\xc1\x96\xf1\x76\xc4\x75\xde\x28\x0e\xb1\xb5\x25\x4b\x45\xf5\xcf\x44\x7b\x79\xc5\xb6\xcc\x99\x2e\x9f\x63\xa0\xa4\xa1\xf5\x0d\xa6\x3f\xb2\xd1\xbf\x8c\x32\x80\x8d\xb0\x8d\xad\x54\x05\x96\xb2\x92\xaa\x90\x07\xa3\x8d\x1d\x75\xa4\xbb\x94\x88\x0e\x56\xf6\x7a\x03\x5a\x47\x5b\x8c\x15\x6c\x9b\xaa\x3f\xcc\xe2\x3e\x68\xbf\x79\xae\xd6\xe3\x6a\xda\xe9\x74\x3c\xd7\xc9\x0e\x1e\x7a\xbc\xb4\x4b\xcf\x95\x63\x0d\xa9\xd5\xbf\xcb\x23\x1b\x94\xc1\x1a\xd5\x83\xe0\x3a\xa3\xb2\xc2\x59\x7e\xdc\xa4\xa8\x02\x32\xa6\xd3\xa7\x86\x94\xa8\xc4\x3d\x67\x9a\xd9\x32\xec\x90\xbc\xee\x78\x98\x66\x66\x96\x4d\xec\xda\xb9\x45\x07\x20\x2a\xb9\x18\x20\x7c\x9f\xa3\x1f\x33\xa1\x2c\xf6\x84\x01\x82\x92\x88\x95\x07\x83\xf2\x66\x0b\xfd\x82\x4b\x68\x69\xf0\xbc\x24\xca\x4b\x19\x51\x11\xa4\x2b\x2f\x73\x87\xf7\xd4\xf4\x7b\x75\xfa\xc8\xd6\x13\x40\xd9\xb2\xea\xb6\xab\x38\x5c\x21\x27\x27\x32\x8b\xd8\x00\xe8\xb5\x53\x06\x6f\xb4\x26\x83\xdb\x18\xa2\xe5\x5e\x4d\x87\x67\xa9\x4b\x35\xb2\xb0\x2e\x99\xb1\x11\x2a\x79\x6b\x8a\xcc\x37\xf0\x28\x59\x52\xdb\xa5\x62\x54\xa3\x2b\x42\xd3\x76\x29\x9b\x27\x36\x48\x0b\xc0\x0a\xd9\x90\xbc\xd0\x4d\xa3\x2a\x27\x55\xe1\xde\xf2\x79\x10\xbc\x97\xe5\xdb\x97\x03\x70\xff\x94\xdd\x2a\xf7\x51\xd7\x2f\xc0\x1f\x60\x05\xf5\xb6\x26\xc3\xa1\x5d\xf9\x6b\x95\x08\x48\x25\x47\x5a\xb3\x25\x6c\x84\x08\xc3\x9f\x88\xe4\xcf\x1b\x8d\xb4\xe1\xb2\xe3\x6b\x09\x74\x4e\xa7\xa8\x42\x2f\x01\x78\x85\x30\x3f\x12\xf8\x97\x74\x02\xb2\x9a\x65\xf9\x76\x03\xd1\xd6\xe3\xe6\x5a\xdf\x0a\x72\x31\xce\x0c\x34\xa8\xab\xca\x5d\x04\x63\x91\x8d\x25\xa5\xff\x13\xe0\x43\xcd\x83\x24\xbd\x9a\x94\x52\x7a\x18\x09\x88\x7f\x05\x3f\xcf\xea\x01\x84\xdb\xee\x71\xd8\xeb\x07\x0e\x60\x64\xe0\x83\x24\x0a\x86\xd9\x8e\xc8\xa3\x91\x18\x6d\x82\x13\xd1\x37\x4e\xd2\xb3\x39\x15\x90\xa3\x2c\x92\x32\x43\x45\xad\xcf\x72\x36\x57\x53\x97\xac\x84\xec\x6a\x09\xa2\xaf\x05\x6d\xb5\x0f\x5b\xe4\x07\x9c\x97\xed\xb4\x38\x94\xd8\xf0\x58\x58\x72\x45\x23\xfc\x65\x66\xb6\xf8\xa5\x51\xe6\xbf\x55\x50\x32\xa7\x24\x1e\xa2\xda\x84\xef\xfc\x19\xb3\x41\x2b\xce\xca\xc6\xed\x6a\x24\x41\xac\xe6\x1d\x33\x62\x3d\xac\x7f\x61\x2f\x52\x88\x7c\x32\x6b\xab\x9a\xfe\x18\xeb\x8c\x45\x3e\x4a\x8a\xc2\x90\xc8\x2f\x28\x3d\xd7\x11\x66\x3e\x21\x27\x5f\x24\xe3\x26\xb4\x5a\xb3\x51\x5e\xf8\x36\x29\x4b\xf8\x67\xf0\xe3\x20\xd8\xca\xf2\x51\x27\xc5\xb0\xe5\x42\xe4\x57\x11\x7c\x75\xaa\x09\xd2\x62\xe5\x35\x0c\x51\x0f\x03\x3f\x00\x7a\x10\x41\x5e\x72\x67\x4c\xe0\xc0\x4c\x57\xe3\xb8\x2c\x45\x9e\x72\xef\xf1\x6e\xf5\xaf\x2c\xe8\x7f\x79\x4f\x36\xf5\x02\x39\x44\xab\xb5\xa0\x13\x73\x2c\xcc\xa4\xc8\xc3\xc1\xde\xc1\xd5\x23\x5f\x74\x7e\x00\xa4\x5e\x4d\xee\x1c\x3a\x07\x47\xcf\x72\xc7\x43\x84\xa5\x7b\x2e\x94\xd2\x30\xeb\x11\xca\xef\x97\x0a\x62\x90\x5c\x73\x16\xb8\xdb\x5e\xe7\x29\x33\xee\x27\x41\x5e\xb2\x2b\x2f\x0b\x05\x6a\xf3\xee\x5f\x1b\x22\xcc\xc2\xcf\x04\xbc\xa7\x2c\xdf\x5e\x13\xee\x69\xfd\xf4\x93\xf5\x9e\xff\x3c\x91\x13\xb6\x31\x42\x35\xed\x70\xf1\xd5\xb8\x8c\x59\x98\xc5\xef\x48\x08\x99\xd6\xd7\xdb\xce\xe8\x8a\x49\xaf\x8c\x3e\x6c\x79\x4b\x5c\xab\x5d\xdc\xc3\xcc\xa5\x6e\xed\x7f\x47\x2c\xb9\xf5\x1a\x71\x56\x19\x30\x0a\x59\x56\x2f\x00\x80\x78\x44\x71\x06\x87\x14\xe3\x6c\xb1\x3c\x73\x0a\x99\x47\x5c\x1a\x4f\x97\xf8\x0c\xa3\xcb\x3b\xe0\xb7\x74\xc2\xb6\x50\x29\x33\xa5\x27\x0d\x99\xa2\xfa\xf2\xad\x21\xd9\xa9\xa1\x80\xf5\x9e\x54\x6f\x0b\x46\x5a\x99\xb6\x84\x26\xb7\x86\xb4\x4e\x3d\xb3\xb5\x3d\xf2\x0f\xeb\xbd\xfa\xb3\x0b\x3a\x79\xe2\x62\x95\xb6\x95\x79\xdc\x36\x61\x25\x9f\xd4\x40\xbb\x61\x63\x2c\x1e\x59\x3e\x6b\x60\x2e\x37\x2e\x54\xc8\x26\xe2\x9b\x68\xbb\x34\xd5\x1f\xd9\xba\x57\xe0\xa2\x98\x7e\x03\x7c\x5a\xd9\x83\xf3\x8f\xc0\x39\x3e\x86\xdf\x8f\x3a\x41\x40\xfc\x48\x87\xfe\x3b\x48\xc6\xd1\xd5\xa4\x48\x36\x93\x61\x52\xee\x22\x80\xfb\x43\x14\x66\x15\x2c\x86\x9b\xad\x75\xea\x50\xf1\x17\x75\x9b\x08\x02\xc5\x74\x1c\xca\x91\xc3\x29\xa1\x9f\xe5\x7b\x76\x5a\x85\xaf\x1d\x20\xa7\x53\x53\x2f\x4f\xae\x82\x5f\x95\x5b\xe4\xc8\x2d\xd2\xde\xb6\x3d\xa6\x53\x67\x25\xa2\x3c\x1b\x0a\xd4\xfc\x9e\x78\x67\x6d\xa6\xd9\x92\xf8\xd9\x6e\xaf\xc1\xf0\xe9\xef\x18\x48\xe6\xba\x6e\xa9\xaf\x43\x01\x29\x98\x51\x0f\xac\x40\x00\xcd\x67\xe2\x51\x5b\xcc\xcb\x56\x64\xa2\x67\xdf\x0e\xc3\xf3\xc5\x8b\x6e\x5b\x69\xb6\xe3\xe1\x75\x91\x96\x4b\x82\x04\xad\x04\xc8\xe3\x76\xfe\x7b\x96\x50\xb6\xc8\xff\x61\xa7\xa5\xa6\xef\x34\xfc\x3b\x72\x6b\x00\x54\x02\x7f\x96\x32\x98\x24\x30\x14\x31\xce\x10\xbf\xc0\x49\x4a\xdb\x21\x89\xa7\xb4\x2a\xe8\x1d\x25\xa2\x60\x31\x6e\x6d\x51\x85\x48\x34\xb5\x43\x2c\x87\x90\x40\x95\x0a\xbe\x5e\x73\x2b\xdb\x7a\xc3\x3b\x4d\x65\xfb\x68\x09\x51\x25\x56\xb3\x40\x65\x4f\xfb\xfc\x48\xa2\x41\x2d\x50\xb3\xc6\xfa\x13\x3c\x44\x10\x08\x8c\x9b\xd0\x49\xd4\x70\x52\x84\x1a\xbf\x6a\xc8\x1b\xa1\x5c\x70\xe6\x67\xf3\x18\xdd\xd5\xcc\x4d\x69\x40\x12\xa9\x59\x42\xba\x02\xff\x2c\x97\xe0\x71\x78\x2a\xff\x90\x3b\xda\x0c\x21\x18\x4f\x8a\x01\x24\x8a\x05\x01\x61\xb6\x04\x9c\x1d\x20\x89\xed\xd5\xb0\xac\xd2\xe4\xd4\xcd\x72\x28\xc1\xf2\xb3\x2c\x0f\x2a\xdc\x01\x83\x0d\xaa\xd3\x7a\x5f\x2d\x16\x18\xbe\xd9\x53\xf6\x40\xd3\x61\x85\x4d\xc3\x92\xc8\x59\xd9\xa1\xea\xdb\xd4\xc4\x32\xbe\x17\x4b\x00\x25\x2a\x9a\x62\xcb\x1d\x07\x31\xe9\x40\xad\xe4\x2d\x1d\xb2\xeb\x87\xdf\x6b\x78\xd0\xb6\x44\xd7\xd6\xb7\xab\x53\xcb\x76\xc3\xda\xd7\x0d\xac\x87\xd7\xc2\x9a\xf1\x72\x74\x6a\x41\xb5\x20\xfd\x2f\x26\x36\x55\x2f\x6a\x7d\x60\x24\x32\xf2\x43\x67\xcb\xf4\x5d\xf8\x71\xac\x49\x8c\x09\x0a\xdd\x4d\xbd\x9c\xe4\xbb\xcc\x18\xf6\x97\x8d\x21\xee\xf7\xa1\x99\x48\x3d\x0f\xbf\x77\x6c\x61\x73\x0c\x20\xd3\xac\xcc\x9a\x73\x63\x23\x74\xb9\x2f\x9a\xdb\x9a\x03\xe4\x0d\x59\x27\xb7\xf5\x76\xda\xcc\xd7\xda\xba\xbe\x90\xed\xa0\xe1\x53\xf8\x74\x79\x68\xf2\x32\x6c\x1e\x7d\xef\x38\x5f\xd5\x7e\x60\x3b\x9e\x99\xba\x30\x26\x26\x09\xa3\x35\xe5\x35\x52\xde\x77\xf8\xcb\xd5\xb8\x91\xfe\xb5\xf4\x06\x6e\x29\x5c\x74\xe7\x11\xd1\xd7\xea\x5f\xcc\x63\xa9\xef\xce\x8b\x16\xfe\x35\x5f\xbe\xef\xf0\xe0\xb5\x85\xd3\x5b\x5c\x9f\xfd\xf4\xfd\x47\xce\x97\x99\x50\xd6\x98\xaf\x13\x18\x4e\x7e\x64\x9e\x27\xc2\xa3\x4d\x5a\xfe\xc8\xe3\x0b\xb6\xe6\x4c\x1f\xa2\x52\xc4\xcc\xc2\x4f\x01\xe7\x84\x91\xcd\x39\x78\xb6\x12\x2f\x36\xb9\xb8\x39\x9f\x2e\x7f\xf4\x37\x42\xca\x11\x30\xd7\x13\x6f\x3e\x66\x4d\x78\x15\xb8\x43\x6d\xec\x02\xbf\x35\x6b\xe8\x29\xd7\x26\x5a\x04\x81\x00\x0a\xda\x16\x08\x84\x16\x07\x93\x4e\xc7\xa5\xa7\x7a\x5c\x1e\x47\xbb\x36\xa4\xb2\x35\x87\x49\x90\x0f\x04\x28\x68\xb1\xeb\x66\x10\x69\x96\x82\x6d\x01\xfd\xb3\x65\xc9\x3b\x68\xc5\xe5\xee\x6d\xa4\x0b\x3d\x24\x04\x53\x17\xec\x0a\x6d\x95\x6d\x98\x76\xbe\x64\xda\x4e\x5a\x23\xc5\xe6\x38\xf6\xcd\x4e\x10\xbc\x07\xc7\xf6\x72\xd0\x8f\x8b\xc1\x66\x16\xe7\x90\x24\x0b\x13\x26\xa2\x9c\x63\x87\x4a\x01\xfb\xb1\x3c\x55\x40\x90\xe5\xdb\x71\x9a\x7c\x10\x93\xc2\xed\x1f\xcd\x62\x06\xeb\x28\xb3\xe3\x49\x39\x10\x69\x99\x28\x95\xda\xef\xf4\x71\x64\x42\x7e\x00\xca\x89\x6d\x1f\xeb\x43\xf0\x3f\x5d\x8e\xcc\xaa\x54\x4d\x5e\x18\x88\x60\x94\xa5\x09\xc0\x61\x7c\x49\xd4\x4e\x75\x77\x56\x3d\x08\x78\xb6\xbe\xaf\x29\x3d\x9f\x94\x2b\x21\xb1\x98\xfa\x99\x67\x15\x9b\x57\x47\x41\x99\x95\xf1\xb0\x8b\xb8\x43\x72\xe5\x5f\x0c\xcf\xf7\x03\xb3\xc6\x9d\xcd\x49\x32\xec\x63\x3a\xba\x9f\xc8\x7f\x86\x3f\x4f\x11\x8c\x35\xc9\x52\x56\x2c\x1e\x8f\xa3\xab\x22\xef\xbe\x3c\x1e\x0f\x69\x3d\xc2\xab\x22\x2f\xec\x52\xdb\x49\x19\xd1\xaf\x00\xc0\xef\x29\x91\x99\x02\x99\xe7\x3b\x0e\xa7\x4c\x46\x82\x86\x23\xff\xd9\xf8\x4e\x0e\x4e\x58\xa2\x47\x5e\x4e\xba\x4c\x51\xc6\x65\x52\x94\x52\xbe\xbf\xe7\xfa\x24\x55\x53\x56\x30\x1b\x8b\x3c\x36\xca\x58\xee\xc4\xc0\x9b\xdb\x2d\x4a\x31\x02\xb7\xa7\x49\xa1\x9b\x94\x4f\xaa\x05\xfa\x6b\x1c\xb5\x4e\xad\xbd\x9b\xfa\x46\x86\x0b\x5e\xdd\x09\xe1\xe6\x3d\x42\x7e\xde\xf8\xe7\xbd\x96\x6d\x17\x4c\x16\x43\xfd\x32\xa4\xd7\xe9\xa3\xe7\x71\x6b\x3a\x8a\x0d\x5e\xca\x6b\xc7\xb2\x4a\x38\x8e\xc8\xf5\x47\x21\x8b\xf2\xb5\x8a\xb6\x20\x1f\x1d\x6e\xb8\xc3\x7a\xc8\x93\x92\x9c\xa1\x23\xa3\x57\xba\x63\xf5\x5c\x6f\x2b\x20\x7d\x87\x94\x52\x96\xac\xda\xa0\x09\x77\x6a\x71\x2d\xe4\x91\xdb\xa2\x76\x62\x5b\x38\xa3\xd4\x31\x34\xd6\xaf\x3e\xf8\x2f\x67\x7e\x20\x53\x59\xe9\x0c\xa4\xa0\xb5\x4f\x38\xcb\x2c\xc3\x29\xae\x80\xbb\x1d\xde\xd5\x59\x73\x2b\x19\xcc\x68\x63\x57\xd0\xfa\xed\xce\x52\x81\x16\xdc\xe4\xd2\xdf\x21\xf9\xff\x4c\xad\xa2\x2e\xd2\x85\xd5\x83\x4a\x15\xeb\xb6\x7f\xaa\xf2\x4d\xf9\xd7\x36\xf4\x37\xc7\xb9\x8f\x96\x8a\x88\x5e\xdf\x50\x4b\xd6\xb7\x9c\x93\x7b\x9d\x16\x52\x29\x77\xfc\xee\x61\x1d\xdf\x7d\x67\xe6\x44\xaf\xf9\xaa\x9d\x18\x98\x26\x8a\x9d\xa4\xec\x0d\x0c\xe6\xa8\x85\xa3\xef\xad\x91\x4f\x52\x15\x35\x07\xd6\x28\x56\xa8\x37\x14\x71\x1a\x4d\xd2\xcd\x24\xed\x47\x99\x7c\x77\x1a\xc2\xd1\x19\x0b\xcd\x77\xec\x16\xbf\x7c\xf9\xdd\x72\xb0\xb4\x35\x6e\x9c\x59\xd2\xcc\xa4\x1c\x38\x2e\xf2\x0d\x74\x36\x4b\xb4\x00\xef\x50\xdd\x2d\x49\x2b\x49\x0a\xa1\x58\xb1\x51\xd4\x17\x4d\x60\x1d\x84\xc1\x93\x9b\x66\x50\x0f\x2c\x3b\x20\xbd\x92\xe6\x6e\x69\x74\x0a\x04\xc3\x5b\xab\x5f\x86\x54\xf3\xbd\x3b\x74\x26\xde\x90\xa9\x1a\xe3\x01\x9e\x51\x72\x8f\xc9\x55\x51\x78\x2c\x0d\x4a\x49\x2e\x69\x4d\xfd\x11\x0c\x68\xd1\xc6\xda\xcf\xaa\xc3\x15\x1d\x34\xa6\xaa\x5b\x45\xce\xd1\xdb\x66\xab\x05\x6e\xe5\x26\x83\x64\x91\x6e\x23\x4f\xbb\x6c\x72\x16\x39\x0c\x5b\x14\x5c\xe0\xf0\xd6\xce\x71\x9e\xca\xef\xb6\x93\xeb\x6b\xd6\x8b\xef\x1b\x94\xbb\x20\xdf\xb1\x5f\xc0\x24\xb1\xfb\x5e\x7b\xad\x24\x3b\xb4\xdd\x53\x6b\xd4\x44\x22\xac\xf7\x80\x91\xc7\xf4\x58\x90\xa1\x60\x0f\x59\x86\xf6\x87\xb3\xbe\x5d\x7f\xd4\xd2\x03\xc7\x78\xa3\x66\xc1\x4f\xd8\x6d\xd6\x6f\x9d\x61\xed\x37\x2c\x93\x4c\x2c\x55\x40\x9e\x66\x08\xb9\x80\x04\x45\xf1\x70\x18\x15\xc5\x00\x63\x67\x14\x4d\xe4\x39\x98\xd5\x22\x86\x7f\xfb\xb7\x4e\x51\x0c\x9e\x93\x64\x29\xcb\x93\x0f\x04\x44\x76\x14\x7f\x3b\x09\x9f\xd1\x0a\xe3\xeb\x4a\x77\xfa\x22\xd2\x3d\xe4\x87\x58\x18\x8f\x09\xb9\x84\x38\x5c\x50\xba\xc8\xd5\x7f\x76\xe9\xc0\x9c\x88\x4b\x8f\x0d\xf6\xb1\x3d\x70\x14\xda\x0f\x0d\x66\x27\xc5\x2b\x3b\x21\x5b\x2d\xcb\x41\xc9\xac\x9a\x38\x48\x4b\x32\x35\x31\x64\x9a\x71\x2e\x2e\xe4\xa2\x27\x92\xab\x62\x23\x44\xc5\xa0\x94\x95\xc7\x59\x51\xaa\xdf\xdd\x84\xeb\xab\x0f\x8c\x3b\xbc\xc6\x2d\x51\x50\x3d\x3f\x5c\xef\xed\x66\xfe\xc7\xd6\xca\x2c\x56\x04\x4d\xdb\x77\x2b\x17\x49\x9a\x94\x2e\x1d\x92\x72\xdc\x9c\x7c\xe4\xe7\xf8\xe0\xb8\xf9\xb5\xb4\xfd\xbf\x95\x1e\xf0\x23\x85\x16\x38\x2f\x1d\x58\x31\x98\xf5\xe9\xcf\x9a\xfd\x35\xe8\xce\xf5\xe5\x93\xc5\x15\xe3\xd2\x87\xc8\xaf\x8a\x3c\x9a\x8c\x41\xbc\xaa\xee\x28\x6c\x2a\x7c\x16\x31\x25\xe4\x75\xb0\xec\x7a\x50\x2c\xad\x04\xb5\x5c\xa6\xe9\x4d\xf2\x5c\xa4\x65\xb4\x9d\xe5\xd9\xa4\x4c\x52\x81\xf8\x50\xc7\xe0\x88\x38\x07\x61\x86\x3e\x14\x9e\x5a\x23\x31\xca\xf2\xdd\x68\x82\x79\xdb\x4d\xc5\x59\x8b\x43\x56\xa5\x73\x78\x4d\xe5\xd0\xc1\x70\x67\x5a\x05\x61\x57\xb5\x19\x0f\xc1\x19\x06\x60\x5c\x95\xf4\x6b\x55\x44\xc2\xc6\x73\x46\x9b\x96\xa8\x8d\x6c\xb3\x8c\x31\xcf\xf4\xd7\xbc\x9e\x7f\x60\xbc\xfe\x38\x83\x3c\x48\xd1\x30\xcb\xae\x4c\xc6\x20\xd0\x16\x16\x64\x02\xbe\xf5\x0c\xdd\x87\x00\x54\x1a\x43\x50\xd3\x50\x6d\xdc\xb1\xc6\x8c\x69\x85\xbc\x8b\x41\xf5\xb7\x72\xa1\xeb\xde\xa5\xd8\x8f\xfb\x40\x5f\x1f\xae\x6a\x41\x6d\xd2\x40\xc4\xe3\x27\xdf\xa2\x63\xc4\x1b\x62\xed\x41\x3b\x9e\x95\x55\x8a\xd0\x99\x0a\xcc\x43\x9f\xba\x53\xcb\x55\xa1\x75\x94\xbc\xd5\xa4\x3f\x14\xc4\xe3\xb6\xc4\x33\x7e\xbf\xe6\x21\xdc\xb2\x5b\x7d\x81\x53\x73\x4f\x13\xbb\x31\xd5\xac\xa5\x09\x72\x9b\xed\xfb\x37\xe3\x3b\xce\x3e\xdb\xfc\xef\xa2\x57\x16\xc6\xdc\x7d\xac\xbc\xd6\x9f\xb0\xb5\xcd\x2c\x2b\x8b\x32\x8f\xc7\x51\x51\x22\xee\x0f\x6c\xba\x27\x01\x15\x47\xcb\x9b\x21\xa7\xf1\xc8\xb8\xff\xea\xd0\x7b\x4b\xf7\xd1\xbb\xe2\xdb\x7d\x1a\x07\xe8\x85\x35\x9e\x1e\x5a\x37\xc8\x45\x84\xfa\xe0\x67\xbb\x18\xc7\x69\x54\x94\xf9\xa4\x57\x4e\x72\x51\xac\x37\x50\x18\xdb\x31\xe8\x6e\xae\x87\x6f\x5e\x1a\xc7\xe9\xb2\x26\xdb\x4f\xe8\xea\xb6\x7a\x71\x6f\x20\xbe\xe7\xf8\x5e\x91\x6d\x2c\x6d\xf4\x49\x46\xe8\xb6\x36\xce\xb3\xad\x64\x28\x5f\xab\xcd\x49\xef\x8a\x28\xa3\x41\x5c\x0c\xa2\x32\xde\x1c\x0a\xd6\xee\x3f\xc9\xd7\xe6\x02\x68\x00\x50\x4d\xf4\x31\x37\x5c\xcc\x8c\x67\x92\x36\xee\x7f\x48\x49\x69\x18\xbe\xa6\x75\xc2\xb6\x7b\xd1\x48\x94\x31\x84\x23\xb6\x8c\x1f\x0d\x25\x80\x2a\x68\xe1\x94\x29\x76\x19\x78\x73\x97\xb7\xe5\x12\x77\x39\x10\x79\x44\x6a\x3b\x22\x9f\x52\xfe\x5e\x46\x72\x6c\xcb\xb9\xa5\xad\x85\x90\xfa\x75\x89\x6e\x2a\xae\x11\x47\xde\xdb\xed\x41\x0e\x2f\xd4\xc6\x92\x4c\x31\x45\xf7\xf2\x9b\xd4\xc3\x31\xea\xc7\xd7\x9a\x15\x68\x79\xb7\x7b\xa8\x1b\xa5\x08\xc2\x4f\x30\x84\x69\x8f\x01\x48\x83\xe2\x57\xeb\xd8\xef\x2b\xc6\xdf\xdf\x26\xbe\x97\xba\xd1\xcf\x55\x54\x05\x06\x08\x32\xf8\xca\xf0\xb5\x57\x7c\xd5\xc6\x31\x90\x43\x5e\x6f\xaa\x52\x4c\xab\x70\x23\x39\x25\xab\xb6\x9a\x08\x55\xb6\x54\xd6\xf5\x6d\xbc\xf6\x53\x88\x21\x58\x7f\x71\x68\x0a\xe4\xd9\x6e\xc7\x10\xb2\x85\x00\xad\x1b\x6f\x01\x0d\x08\x1d\x40\xb8\x1e\xc5\x69\xbc\x2d\xa2\x71\x0c\xc0\x12\xab\x4c\x0f\x4b\x22\xce\xaa\x39\x35\x9b\x8a\x1d\xe3\xab\xe8\x75\x84\x07\xc7\x06\x4b\xe1\xa2\xaa\x9a\xc0\x33\xfa\x45\x29\x37\xfa\x1c\x01\x87\xa3\x53\x51\xb1\xfe\x28\x01\x53\x45\x8b\x1b\x03\x15\x63\xfc\x72\xd3\xee\x81\x45\xd0\x95\xbf\xcf\x46\x0e\x3c\x0e\x7e\x04\x7c\xb3\x5c\x6c\x27\x45\x49\x19\x60\xb6\x76\x7d\xe8\xbb\xad\xb9\x75\x7c\x06\x10\x90\xb2\x90\xaf\x7d\xc0\xc6\xfd\x31\x1b\x14\xc6\x28\x72\x10\x00\x94\xa8\xb4\xde\xc6\x1c\x40\xb2\xc4\x7a\x83\xff\x39\x02\x92\x14\x67\xb1\xf1\x55\x41\x9b\xb4\xc2\xa0\x4f\xa3\xc0\xed\xcf\x6d\x2d\x6b\x28\xb7\x51\x43\xf5\xcd\x81\x1a\x1e\x3b\x53\x90\xf4\x68\xd8\xad\xfe\x44\x81\xb1\x3a\xa6\x8d\x37\x3f\xcc\xb6\x13\xa5\xa5\xfc\x13\xdc\xad\x79\x75\xa6\x03\x2e\xa7\x4d\x3b\x94\x6e\x7d\x1c\x17\xc5\x0e\x00\xcc\xe8\x18\x38\xb2\x60\x2b\x6f\x50\x8a\xe4\x91\x72\xc6\x86\x85\x71\x6a\x6c\xdd\x73\x05\xca\x0d\x29\x7e\x1b\x51\x98\x6a\xbd\x4c\xd2\x68\x0a\x56\x56\xd9\xa2\xcd\x4b\xa0\x1c\x14\x67\x1a\x1b\xdf\xd2\xa9\xb9\x6a\xde\x86\x56\xcd\x6c\x8c\xb9\x49\x9f\x37\x7c\xbc\x97\x74\x41\x2d\x8c\xe2\x6b\xa8\x2f\x83\x53\x0d\xd6\xbc\xbb\x88\x6d\x03\x57\x84\x41\xa2\x9e\x7a\x60\x01\x96\xc4\x27\xb3\x93\x64\x21\xcc\xb6\x69\xf1\x5a\x86\x83\x26\xfa\x67\xaa\x6f\x74\xc6\x23\xe3\xf3\x73\xe1\x79\x16\x6a\xeb\x8f\x40\x34\x99\x43\x80\xc2\x5c\xa7\xa5\x80\x51\x3f\x00\x45\xf8\x7d\x77\x32\x16\x16\xac\xc9\x73\x46\xae\xa8\xcf\xd2\x40\x93\x22\x62\x84\x07\x3d\x08\x96\x5d\xb6\x16\xed\xea\x54\x9d\xce\x3c\x1b\x24\x9b\x49\x89\x07\x5c\x0a\x33\x1f\x11\x8b\xa7\x0d\x60\x2a\x86\xa5\xfd\xcc\x28\x6c\xd6\x19\x08\x21\x67\x6c\xa4\x48\xfb\xbe\x31\xce\x3a\x4b\xdb\x79\xc2\x74\x5d\xea\x7e\x42\xf6\xc2\xed\xa4\x8c\x10\x0c\xcb\x6b\x7b\x46\xef\x44\xed\x35\xa7\x3a\xe0\x84\x07\xba\x86\x20\x44\x2f\x6c\x95\xd5\x5b\x32\x1a\x67\xb9\x5c\x34\xa0\x1c\x4f\xd6\x23\xfc\xfa\x18\x1e\x51\x37\xc2\x13\x53\x5b\x33\x1a\xd4\xa6\xa5\xf0\xde\x77\x8f\x73\xda\xe3\x75\x2f\x3e\x35\xb8\x3c\x44\x41\xa5\x1f\x37\x3a\x79\x88\x1b\xe3\x2e\xaa\xf4\x18\x95\xc9\x70\x18\x65\x3b\x29\xb9\x35\x7c\x85\x49\x5e\x55\xda\x00\x07\xf4\x67\xa6\x35\x7a\x70\x80\x0c\xdd\xd3\x12\x22\x62\xb0\xaa\x73\x20\x19\x06\xc4\x4a\x07\x61\xaa\xd5\xfb\xc1\x75\x74\x38\xc4\x04\x10\x06\xf1\x93\x07\x43\xe0\x76\x11\x42\x82\x93\x02\x0f\xb8\xb7\x8e\x35\xb7\x41\x5c\x60\x38\xe1\x1a\x37\xd0\x9a\x5c\x23\xa2\x53\x3b\xee\x2d\x30\x49\x5a\xdb\x4c\x69\xcf\xfc\x8e\x8e\x61\xf5\x7b\x93\xaa\x74\xc1\x83\xc9\x28\x23\xdb\x63\xed\x14\xfe\xa9\x42\xea\xb6\x40\x05\xad\xfc\xf2\xfe\x80\x90\x0e\x3f\x23\x56\x9c\xed\x37\xed\x93\x5f\xa2\x9a\xaf\xa6\xe7\x82\x20\xcb\x29\x1d\x89\xcd\xec\x7d\xe3\xf2\x77\x10\xfb\x6d\xfc\x60\x81\xa7\x83\xba\x9c\x2f\x83\x1f\xbc\x01\x95\xf0\x65\x49\x3c\x25\x7a\x9f\x00\x13\xf6\xa4\x6c\x67\x5b\x06\x22\x6a\xb2\xc5\xe3\x1f\x3f\xf2\xc1\xe3\x2f\x4b\xa2\x15\xb0\xc0\x4e\x5c\xf6\x06\xe8\xc2\x82\x72\xcc\xed\xfa\x06\x7d\x2a\xca\x58\xce\xee\x4e\xd3\x4c\xaf\x06\xe3\xc3\x33\xa5\xba\xc9\x07\x2a\xe9\x2b\x42\x8d\x04\xe0\x6c\x63\x31\x57\x05\xe1\xfa\x49\xd6\x64\x19\x57\x85\x15\x53\xb1\xd3\x16\x66\x80\x5c\xb6\x63\x0f\x57\xd5\xd8\x92\xe0\x2f\x0c\x51\x90\x7e\x11\xa9\x94\x8a\xfb\x3c\x59\x3a\xaa\x0b\xf1\x73\x5f\x6c\xc5\x93\x21\x46\x23\xc9\x3d\x3b\x05\xf2\x7c\x53\x61\x03\x50\xa9\x25\xd1\xbd\x6c\xe6\x16\x9c\xe1\xea\x49\x43\x1d\x0b\x97\x79\x75\x9d\x42\xf4\x26\x79\x52\xee\x4a\x32\x5e\x66\xbd\x6c\xa8\xf8\x35\x30\xe6\xcb\xb1\xab\x70\xae\x85\xce\xaa\xab\xf2\x6e\xd2\x84\x1b\xe8\x7c\xf8\xfb\x20\x2b\xca\x2e\x84\x31\xed\xd5\x37\xe8\x37\xf9\x6e\xa1\x8c\x77\x5d\xff\x06\x66\xe9\x7e\xaa\x0f\x1d\x9a\xa1\x61\xc3\x5e\xfd\x85\x5d\xc6\x8e\xd6\x5d\x2b\x27\x34\x46\x6a\x5a\x99\x17\x39\x4b\x75\xac\x5d\xc0\xab\xe5\xf9\x9f\x75\x9e\x71\x82\xd8\x7f\x31\x7c\xf5\x97\x6f\xfe\x5f\xe7\x0b\x3e\x40\xc5\x6c\xfb\xa6\x02\x8b\x77\x1d\x5b\xf7\xd5\x31\x53\xab\x28\x05\x20\x12\x9e\x17\x43\x9e\xb2\x4a\x37\x61\x27\xd5\x54\x19\x2e\xce\x30\x39\x82\xbd\x59\x0c\xfc\xbb\x13\xfa\x95\xa1\x47\xea\x1d\x3c\x40\x5f\x94\x6a\x71\x41\x83\x8a\xcd\x29\xf9\xbe\x6d\x1d\x87\xf4\xfb\xed\x2f\x71\x47\x1d\x73\x29\x49\x6f\x02\x38\xc4\x67\xa8\xd9\xb6\xf6\x42\xe7\x58\x68\xc3\x0f\x67\xad\xf4\xd3\xee\xab\xbf\x58\x55\x32\x2e\xcb\x3c\xd9\x9c\x94\x82\x41\x94\xff\x8e\xfc\x87\xef\x83\x81\x50\xfd\xde\x5a\xc1\xf6\xeb\x5c\x5f\x5c\x6a\x3b\x80\x2a\x4e\xbc\x65\xe0\x3a\x80\xdc\x2b\xe6\x76\x1a\xc3\x74\xae\x37\x9b\x5a\x35\x6d\x14\x2e\x26\xb4\x06\x7f\xa5\x2c\x1a\x27\xc8\xdb\xcb\x7a\xcb\x6b\x8e\xe2\x64\xd8\xad\xfe\x1d\xf6\xfe\x58\xc7\xcb\x9e\x69\x3d\x2c\xcc\x7c\xda\xde\xd2\x55\x91\x27\x5b\xbb\xd1\x76\x9e\x4d\xc6\x91\x09\xd9\x43\x34\xef\xeb\x48\x8b\xe0\x61\xb7\xfc\xb7\x95\x6b\xb4\xd2\xd4\xc8\x33\x6d\xde\xdd\x19\xb5\x8d\x8d\x92\x2b\x2e\x64\x0d\xef\xa7\xdd\x9f\xc4\x85\x08\xe5\x01\xf1\x1d\x2f\xe6\x36\x6b\xb5\xb1\x95\x0c\x4b\xb9\xcb\x3c\xd6\xf0\x10\x25\x05\xe2\x5a\x01\xbf\x86\x57\x31\x4b\xd4\xcb\xd2\x32\x46\x13\x40\x1e\x0d\x01\xa4\xc3\x3e\x6a\xbc\xdb\x0d\x27\x6d\x85\x72\x9d\xdd\xe3\x0e\x60\xad\xbe\x5f\xfc\x1e\x98\x01\xc8\x3e\x45\x3f\x4a\x52\x5c\xe6\x56\x49\x00\x56\x01\x94\x94\xd6\x79\x31\xd8\xdb\xa8\x80\x34\x59\xc4\xc8\xdd\xae\xb9\xf2\xba\xef\x42\xf6\x2a\xe9\x17\x8a\xdf\x98\xbb\x92\x49\xcd\xf6\xc1\x44\x5f\x33\x93\x82\xe0\x27\x49\xda\x37\xb4\x5d\x6d\xc2\x5f\xcd\x8a\xaf\xbc\xe6\xe0\xd1\xee\xad\xb8\x4c\x62\xc3\xca\x23\x29\x19\x46\x45\xdc\x7d\xb3\x08\x5f\xee\x87\x97\x5e\x56\x2f\xe1\xa8\x1c\x47\xe8\x6b\xb5\xfa\xc5\x0d\x2f\xbd\xf9\xce\x5b\xac\x22\x3e\x76\xdf\x54\x8f\xe4\x38\xdd\x8f\xf0\xea\xc9\xdf\x2e\x28\xc9\x4b\xcd\x83\x32\xe0\xe1\x13\x5a\xd8\x79\xef\x67\x26\x3b\xed\x43\xf5\xb4\xea\xf3\xeb\xd4\x5c\x4b\xbd\x63\x91\xab\x33\x0c\xf6\xe5\x3a\x0f\x16\x62\xc1\x3a\xc4\x37\xc3\xc9\x25\x65\x0a\x28\xbb\x12\xb2\xfc\x67\x94\x6f\x44\x39\xb1\x6b\x4c\x3f\xa5\xc8\x47\x61\xfd\x36\x0e\xa8\x9a\x87\x4f\x6f\x3c\xdd\xb1\xf8\xaa\xa8\x1c\x16\x2e\x6b\x05\x3a\x9d\x4f\xe4\x16\x38\x79\xba\xde\x79\xe3\x92\x5a\xe6\x2b\xc9\x58\x56\x8d\x90\xf0\xa8\x0c\x62\x1a\xa6\x86\x09\xa4\x64\xb4\x3e\xae\xf7\x59\xfd\x71\x3c\x8a\x0a\x91\x5f\x4d\x7a\x36\x89\x35\xf9\xfb\xea\x83\xf0\xad\x97\xdf\xb4\xc7\x1a\x4f\xca\x4c\xab\x3d\xf9\xa8\x97\x43\x61\xe3\xeb\xe9\x21\xf8\x9a\x3d\x44\xd5\xa3\xd1\x6c\xcd\x39\x0f\x31\xa5\xd8\xc2\xeb\x2a\xcb\xe1\x99\x92\x31\xd7\x60\x11\x5d\xed\x4d\x7b\x1d\x54\x2d\xfa\xd5\x37\x16\xab\x4b\x97\x66\x8d\xf6\x9a\x80\x42\x4d\xb7\xd4\x53\xe6\x96\x4a\x39\x9f\xda\x98\xe8\xa6\xf6\x57\xe1\xd8\x4d\x15\x64\xdc\xb2\x2b\xbc\x4a\x13\xdc\xb1\x78\xf5\xa5\x80\x16\xeb\xee\x82\xaf\x3b\xce\xc5\xd5\x07\x76\xa7\x3e\xa5\x4a\xf3\x0c\xac\xde\xf6\x15\x09\xab\xd7\x5c\x31\xab\xb1\x08\x25\x94\x16\xdc\x84\x27\x3c\x96\xbc\x49\x27\x4f\xeb\x9a\x9b\xd9\x12\xde\xa7\x82\xfb\xf6\xe9\xd6\x93\xb3\x26\x01\xbd\xad\x86\xf7\x22\xea\x02\x5a\x97\x44\xa1\x2b\xd3\x49\xb7\xa8\x89\xe2\x62\x15\x5a\x2c\x4b\x32\xf0\x90\x7c\x99\x00\x69\x17\xf3\xac\xb6\x7a\x23\x34\x82\x02\x97\x08\x25\xf2\xe3\x46\x23\x1f\xbb\x52\x23\x61\x52\x0d\x95\xc7\xcf\x40\x36\x02\x74\x18\x0d\xc5\xcf\x6d\xc0\x5b\xad\x4c\xa0\x0b\x04\x23\x84\xf7\x90\xdd\xcb\x43\xcb\x2e\x5a\xef\x77\xf8\x46\x3a\xd8\xbe\x6b\xed\xdf\x52\x70\x34\x6c\x1b\xad\x20\x04\x61\x49\xb0\x68\x0d\x83\x8b\x19\x23\x5d\xef\x25\x40\x68\xc4\xd7\x25\xe5\x60\xb2\x19\xc5\xe3\x24\x12\x69\x1f\x3c\x75\x50\x81\x73\x06\x3c\x0d\xf9\xe8\x61\x27\x72\x9b\x5f\x7e\xeb\xe7\x01\x45\xf9\x74\xd2\xac\x8c\x0a\x51\x76\x9f\xc1\xf7\xd4\xa4\x38\x5d\x3c\xab\x8a\x90\x9b\x95\x0a\x0b\x82\x86\x61\xee\x0f\x00\x99\x49\x93\x46\xdb\xa1\x8a\x2a\x6f\xe6\x71\xda\xc7\x07\xe9\x27\xf2\x9f\x21\x88\x2e\xf4\x31\x9f\x20\xf3\x69\x79\x91\xb7\xef\xeb\x29\xaf\x37\x02\x04\xd0\x3f\x03\x68\xec\x9c\x32\x85\x59\x4e\x9d\x26\x94\x89\x66\xd0\x11\xd7\x4a\x29\x21\x0d\x21\x81\xd3\x4f\xe9\x8f\xf0\xdd\xb7\xdf\x70\xca\x91\x3e\xe0\x55\xf8\x8f\xf3\x4d\x2b\x19\xde\xa2\x7f\x38\xdf\x07\xa5\xe4\xc1\xfa\xfd\xbc\xfb\xfa\x3b\xef\xbc\x15\xca\x7f\x89\xa2\xf0\x15\x02\x9e\x0a\x0a\xc9\x7f\x39\x25\x7a\x22\x2f\x11\x5b\xf7\x15\x91\x97\xc9\x56\xd2\x8b\x4b\x11\xca\x1f\x9c\x82\x57\x04\xa2\xd8\x76\xff\x8b\xd8\xf5\x7d\x97\x1c\x85\x64\x35\x55\x90\xd2\x9b\x49\x9a\x8c\x26\x23\xc9\x38\xe8\x68\x25\xbb\xc6\x24\x4d\xae\x45\x45\x06\x3e\x14\x26\xe4\xb2\xfb\x6e\x9a\x5c\x0b\xf1\xe7\xd0\xfc\xec\xd4\x05\x85\x7e\x94\x67\x59\x09\x6b\xfc\x86\xfc\x33\x94\x7f\x7a\x56\x39\xdb\xda\x1a\x26\xa9\xc0\x8d\xfc\x25\xfe\x11\xca\x3f\xdc\xdd\x48\x0a\x60\x55\xf2\x6c\x82\x0e\x68\xdb\xdd\x57\xf1\xa7\x10\x7f\x0a\x87\xd9\xb6\xbb\xd3\xc8\xdd\x6c\x7f\x90\x8c\xbb\x3f\x85\x7f\x87\xaf\x7d\x90\x8c\x9d\x52\xf1\x78\x1c\x81\xdf\xc6\x38\x2e\x07\x56\x24\x98\xfc\x35\x94\xbf\x36\xe6\x17\xf7\xa3\xb8\x28\x44\x59\x44\x5b\x79\x36\x8a\xfa\x49\x71\xa5\xfb\x46\x16\xf7\x43\xfc\x35\x94\xbf\x86\xf2\x57\xb7\x66\x9c\xf6\x93\x74\x1b\x97\x05\xff\x0d\x6b\xa2\x8b\x15\x83\x95\x37\xec\xd2\xa5\xd7\x59\x71\xad\xc6\xc3\x09\xf6\xf9\x27\x3a\xc1\x3f\xbd\x36\xce\x0a\xd1\x0f\xfb\xf6\x49\x2e\x06\xa8\xc6\x52\x9f\xad\xf3\x57\x0c\x3a\xb0\x7f\xb0\x26\x6f\xcb\xad\xb3\xd6\xa1\x18\xc8\x23\xb7\x2d\x52\x2c\xf0\x5f\xe0\xdf\xbe\x22\x11\x24\x93\x55\x85\x42\xf9\x57\xa3\xd8\x08\x0f\x23\x22\xe1\x27\x1f\x88\xa8\x37\x10\xbd\x2b\xfa\x8c\x5e\x11\xbb\xa1\xfc\x39\x84\x9f\x97\x55\x2c\x1a\x75\x0a\x6b\x42\x82\x40\x3f\x6c\x17\xed\x28\x2e\xa3\xa2\x8c\xf3\xb2\xfb\x36\x16\x08\x9f\x72\x4a\x3c\x15\xc6\x65\x08\x45\x78\x73\xf0\x43\xb4\x39\x49\x86\xa5\x24\xe7\xb0\xc1\xdd\x4b\xf2\xc7\x90\x7e\x0c\xf1\x47\x5e\x09\x64\xdd\x34\x02\x31\xeb\x0d\xf8\x77\x28\xff\xed\x29\x02\x7b\x43\x45\xdc\xad\x51\xb4\x38\x19\x0f\x44\x5e\x74\x2f\xc1\x9f\x21\xfd\xa9\x0f\x13\x5a\x62\x5b\xc2\x38\xdb\xfc\xf0\x79\xe5\x65\x47\x00\xbe\x23\x4e\x3c\xaa\x77\x2f\xc1\xbf\x43\xf9\x6f\xab\x4c\x9c\x16\x49\xd4\x1b\xc4\xa5\x7c\x5f\x5e\xfe\xc5\xa5\x9f\x87\xbd\x41\x9c\x17\xa2\xb4\x4a\x6d\x65\xf2\x31\x54\x7a\xfb\x9f\xc9\xbf\x42\xfa\xcb\x2a\x37\x8a\xaf\x19\xe3\xf2\x30\x19\x25\x65\xf7\xcd\xf8\x5a\xa8\x7e\x0a\xe1\x27\xab\xc6\x38\x17\x5b\x22\xcf\x45\x3f\x1a\x26\x3d\x91\x16\xa2\xe8\xbe\xa5\x7e\x0a\xd5\x4f\x56\x0d\x45\x6a\x80\x3e\x6f\x27\xa5\x26\x34\x40\xa6\x5f\x73\xda\x27\x22\x83\x34\x4f\xae\x50\x34\x4a\xb6\x31\x34\x4a\x11\x1d\xf8\x06\xab\x17\xea\x6f\xbe\x36\xf2\x18\x91\xd4\xa3\x5c\xa4\x7d\x91\x23\x4d\xa4\x36\xf2\x78\x07\x08\x7b\x88\xdf\x2c\x12\x09\x6d\x60\xbc\x68\x11\x6d\x89\xb2\x07\x44\x04\xdd\x5c\x7b\xbb\xdd\x57\xf0\x4b\x08\x5f\x42\xf6\xc5\x1e\x43\x3f\x29\xb3\xbc\x03\xc4\x78\x27\x8f\xc7\x91\x7c\x27\xd3\x02\xc2\x48\x7f\x0a\xdf\x42\xa0\xcd\xf2\x5b\x68\xbe\xf9\xda\x20\x7c\x65\x98\x13\xcc\x47\x0e\x56\xb7\xc2\xbe\xe2\x8c\xe0\xab\xd5\xce\x64\x2c\x49\xac\x26\x6d\xef\xc2\x9f\xa1\xb0\x29\x1c\x2f\x59\x8a\xd1\x18\x0f\x2a\x95\x95\x3f\x64\x79\x9c\xef\x36\x0f\x2d\x55\xd1\x59\xfb\x77\xc7\xa2\x50\xd5\xe8\x47\x38\xc5\xde\x21\xe1\x74\xe2\x6b\x40\x6f\x54\x2d\x98\x05\x90\xa8\xe6\xf1\xa3\x7a\xb2\x0a\xc2\xcc\xb3\x3a\x05\x95\x57\x15\xfa\x9b\x2b\x89\x3f\x06\xd6\x62\x7c\xbb\x0e\xac\x35\xf5\xd1\xcc\xf3\x0e\xbb\x83\xfd\x4d\x34\x60\xbc\xce\xa8\x4c\x7f\x13\x0d\x44\xbf\x60\x4c\x58\x7f\x13\xd4\x72\xdd\x77\x0b\x43\xb0\xfa\x9b\x9d\xa2\x18\xe2\x31\xbc\x74\xe9\x0d\xeb\xcc\xb1\x6f\x4a\x69\xf3\xcc\x56\x96\x87\x4f\x8d\xb3\xa2\xdc\xce\x45\xf1\x54\x98\xa5\xc3\xdd\x67\x59\x79\xd8\x9f\xb7\xd8\x76\xd0\x6f\x76\xfd\xe2\x57\xc3\xa4\x14\x3f\x7a\x0a\x6b\x9b\xf7\x93\xcc\x3b\xb4\x40\x97\xe8\xef\x10\xff\x9e\xd8\x97\x4a\x95\x26\x56\x3b\x17\x04\x31\xd6\x8f\x77\x8b\xee\x1b\xf2\xb7\x50\xfd\x16\xca\xdf\x1a\xf5\x7a\x59\x76\x25\x11\xa6\x22\x2c\xd7\xdb\xaa\x0a\x7e\x6d\xab\xa4\x35\xf6\xef\xd2\x3f\x56\x94\x87\xbf\xf5\x3d\xc7\xbf\xda\xaa\xe4\x42\x72\x6b\xe0\xab\x70\x6d\x17\xc5\x4c\xd8\xb5\xb7\xf1\xf7\x10\x7e\x0f\xed\x00\xff\x10\x61\xe9\x1b\x6d\x69\xc2\x05\xd2\x08\x84\x81\x47\xd8\xad\xa1\x5b\x72\xa5\xf0\x53\xdb\x88\x3c\xd5\x71\xb5\xde\xf0\x54\x56\xb5\xc5\x28\x4e\x86\x6a\x2b\x7f\x2a\xff\xf0\xef\x23\x94\x6b\xe3\x70\xf0\x63\x31\x01\x27\xf1\x48\x92\xf9\xe4\x5a\xf7\x12\xfe\x19\xe2\x9f\x76\xd1\xc6\x3d\xc0\x9f\x25\xaf\xd6\xfd\x59\x9e\x8d\xec\x9f\x1b\xb7\x01\x7f\xd6\x8f\x83\x18\x66\xe6\x61\xf8\xe9\x1b\xbf\x74\xfa\x12\xc3\x0c\x5e\x79\x58\x0b\xf9\x3d\x54\x7f\x39\xe3\xbf\x92\x8c\x95\xb2\xef\xd2\x95\x64\x1c\xf6\x18\xa7\x8f\xbf\x37\xc6\x15\xb1\x32\x72\x88\x61\x6f\x52\x94\xd9\x88\x57\xb5\xeb\xac\x96\x23\xb0\x5c\xab\x18\x61\xba\x1e\x0f\xe3\x24\x8d\x4a\x71\xad\x84\x9e\xe1\xcf\x50\xfe\x69\x17\x8d\xfb\x7d\x56\x34\x8a\x87\x65\xf7\xe5\x7e\x9f\x15\x0f\xe3\x21\x48\x5e\x65\x72\xd5\x5d\x11\x91\xf6\x91\x6d\x04\xe3\xcd\x25\x91\xf6\x91\x6f\x84\xcf\x76\x59\x5d\x2c\xda\x8a\x13\x79\x46\x7e\x06\xff\x09\xcb\x2c\x2c\xec\x7a\xf2\x27\x29\x49\xbf\x18\x9e\xbf\xda\xd6\x46\x21\xd2\xb2\xfb\x8e\xa9\x32\x88\x8b\x70\x53\x08\xc9\xc7\xa5\xa5\x6a\xa0\xa3\x4f\x31\x5c\x3f\x3a\xc4\x2f\xdb\x57\xce\x7b\x9a\x65\x79\xad\xb8\x84\xdc\x15\xd1\x10\x82\x68\x5f\xa6\xdf\x42\xf9\x5b\x08\xbf\x59\x75\x72\x51\x48\x29\x4c\x59\x58\x59\xcd\xb7\xe5\x97\x50\x7d\x69\xaf\xff\xab\x49\x92\x8b\x88\x5d\xbb\x7c\xd4\x7d\x1b\x7f\xa5\xb9\xd2\xaf\xcd\x01\xab\xca\x45\xb2\x9d\x46\x52\x84\x4c\xc4\x8e\xae\x2b\x7f\x0c\x93\x34\x94\x3f\x5a\xb5\xb4\xb8\x06\x4a\x65\x62\x87\xb4\xc0\xc6\x7e\xb4\x6a\x29\x3e\x88\x7d\x8f\x7a\xf1\xb8\xec\x0d\x62\xcd\x07\xb1\x6f\x21\x7d\xf3\xb7\xe1\x52\x4a\x06\x79\xa2\xdb\x6a\xa7\x9a\x6b\xb5\x99\xd9\xf3\x6b\x6b\x36\x6b\x9f\xf1\xb2\x61\x46\x94\x4f\x64\x1d\xe2\xae\x1a\x05\xd3\x1a\x9d\x49\x49\xbc\xfc\x27\x51\x96\x52\x93\xc2\x43\x41\xae\xce\x34\x03\x3c\x12\xf0\x9b\x5a\x0e\x43\xf8\x11\x7b\x69\x2d\x3d\xd0\x1e\x38\x9c\xce\x9d\xba\x9d\x71\x9e\x5d\x4d\xe4\xcc\xde\xa2\x7f\xb4\x15\x50\xbd\xa8\x72\x34\x1b\xb7\x38\x7f\x76\x5e\x71\x9e\x29\x2c\x21\x59\xf9\x02\x33\x60\x4b\x26\xfe\x12\xf0\x26\x6e\xa1\xed\x5e\x04\xd1\x6d\x57\xe3\x61\xf7\xb5\x57\x42\xf5\x6f\xb7\x98\x64\xe5\x86\xc9\x16\x46\x9f\x81\xf4\x21\xff\x42\x44\x17\x77\x60\x45\xbe\x65\x3d\x8a\xaf\x5c\x7a\xfb\x67\xee\x63\x88\xf1\x2f\xad\x70\x3b\x61\x75\x0c\xda\xc4\xa9\x55\xbe\x13\xf7\xe3\x71\x29\xf2\xee\xcb\xf8\x5f\xfb\xe3\xb2\x69\x60\x09\xf3\x16\xaa\xdf\x41\xda\x59\xb5\xab\x72\xf1\x78\x85\x0e\xe1\x49\xf6\xb2\xb4\xcc\xb3\x21\x82\x99\x47\x59\x9e\x6c\x27\x69\xf7\x65\xf8\x16\xd2\x37\xe4\xad\x43\xfc\x66\x68\x68\x59\xc6\xbd\x01\xa4\xf6\x55\x94\x54\xff\xd2\x42\x45\xf5\xf7\x36\xc6\x80\x95\x68\xb0\x9c\xec\x9b\x2d\x00\xbc\xec\xe3\xfc\x59\x69\xcd\xf3\x5f\x6a\xf0\xf9\x4e\x29\x64\xf3\x7f\xe6\xe1\xef\x55\x1e\x17\x9a\xe9\xdb\xf8\xa7\x7f\x9a\x3a\x93\x52\x73\xba\x6c\x85\x1a\x22\x51\xa3\x92\x33\x4b\x53\xb5\x45\xd4\x69\x34\xa0\x27\xce\xea\xfa\x64\x1d\x6f\x45\x5c\x0b\x56\xd3\x27\xf6\x8c\x13\x08\xfc\x5a\xa2\xaa\x20\x24\x18\xb4\x01\x7c\xeb\xea\x75\xa9\x7e\x87\xc0\xca\x51\xe2\x22\x69\x50\x92\x40\xfc\x3d\xc4\xdf\x2d\x79\x50\xd5\x44\xc8\x89\x66\xf5\xb7\x35\xb4\xd9\x1a\x8d\x6c\xe7\x0a\x2d\x1d\x83\x28\x5e\xa3\xbf\x43\xfc\xdb\x2d\xae\x5e\x48\x55\x4d\xbf\x8e\xaa\x9e\x5b\x81\xe8\xf5\x96\xe8\x8b\x3c\x2e\x45\x9f\x06\xac\x68\xb6\xfe\x9d\x86\x6a\xf4\x40\xa3\x24\xcf\x33\x4d\x4b\xdf\x84\xbf\xfc\x87\x0e\x4b\x6a\x7b\xa8\x26\x23\xaf\xe2\x0f\x86\x96\xa8\x0a\x94\x3b\x79\x25\xdd\x50\x29\x9b\xed\x6a\x1d\x3c\x94\xef\xf0\x13\xa8\x3e\x51\xf2\x64\x20\xb2\xd9\xa4\xec\xbe\x8a\x7f\x87\xf4\xb7\x5b\xdc\xb5\x9b\x03\x2b\x4d\xda\x6d\xc9\x42\xab\xf2\xdb\x49\xb9\x72\xb0\xaf\xfd\xfc\x1d\x56\x5c\x6f\x14\x64\x09\x1c\x24\xdb\x83\x61\xb2\x3d\x30\x4a\x21\xf9\x73\x58\xec\xa6\x65\x7c\x2d\xd4\x5f\x79\x7d\x79\x0f\xa0\xee\x30\x49\x45\xd1\x85\x8c\x84\xf0\x4f\xbc\x06\x21\x88\xbd\x71\x58\x24\xe9\x36\x69\x44\x9e\x6d\xad\x1e\xf5\x06\x71\x1e\xf7\x4a\x91\x53\x43\xe6\x6f\x6f\x6b\xb2\x8e\xbf\x35\xbc\x99\xd0\x06\xbb\x93\x4e\x75\x59\xd2\xaa\xbe\xdd\x8b\xe2\x7c\xbb\x90\xef\x4a\x9c\x6f\x4f\xe4\x95\x2e\xac\xe6\x41\xbd\x25\xf4\xae\xbd\xa9\xd4\x5d\xee\xbe\x61\x61\x38\x97\xa6\x2c\x1c\x4c\xd4\x52\x79\x8a\xf7\x86\x59\x6a\x5a\x7e\x45\xfe\xe5\x2b\x06\x29\xfd\x55\xa9\xb7\x26\xc3\xa1\xaf\x10\x05\xd6\xc9\x22\xaf\xbd\xa2\x0b\xa8\x12\xc3\x6c\x7b\xb5\x22\x86\x65\x74\x33\x6f\xb3\xac\x89\x1a\x3c\xad\x39\xad\xbe\x46\x04\x71\xb4\x9f\x82\xdb\xf5\x63\xcc\x6d\xb4\x87\x91\x0a\x0f\xc8\x11\x9b\x35\xe1\x58\xb5\xf8\x27\x4f\x9a\x0d\x05\xaf\xd7\xe9\xe5\x59\x6a\xb9\x25\x87\xf2\x17\xfd\x99\x3b\x05\xab\xdf\x8a\xde\x40\xf4\x27\x08\xbc\x3e\xd5\x5e\x5c\x2a\xbd\x8c\xae\x29\xc5\xbd\xea\x4e\xa8\x22\x1a\x6d\xd0\xc4\x69\xf5\x48\x97\x04\xe5\x5e\x36\x29\x74\x6e\xb5\xfa\x00\x8a\x7b\x0b\x8b\x6b\xa2\x37\x31\x10\x00\xbe\x18\xc7\xa6\x3d\xaf\x3a\x62\x9d\x65\x68\x9b\x55\x76\xc3\xdf\x70\x67\x23\x8c\xda\xf8\x18\xd9\xd0\xfa\x40\xd7\xf2\x67\xd2\xd1\x0b\x02\x96\x00\x00\x2a\x24\xd0\xb4\x90\xc7\x3f\x78\xc7\x6e\x81\x4e\xf8\x0c\x90\x0a\x32\x51\x81\xee\xe1\x9f\xe4\x6c\xc7\x51\x14\xa7\xfe\x00\xc2\x23\xdd\x00\x64\xdb\xec\x8b\x52\xf2\xec\xde\x74\x83\xda\x5c\xdf\x02\xc5\xa8\x1a\x92\x72\x28\x9c\xa3\xdf\x73\xb8\x39\x56\xa0\x10\x43\xd1\x83\xf4\x34\x94\xee\x0f\x5d\xd0\x28\x14\xa3\xfe\x4c\x17\xec\x0b\x5e\xf4\x1b\xbb\xa0\x1d\x5f\x0c\xc1\xce\x0a\x5b\xa5\x7a\x50\x2d\x74\x23\x49\x8a\x72\x10\x36\x05\x81\x6c\x9f\x57\x67\x94\x41\x77\x0f\x6f\x9c\xd3\x1a\x1b\x2b\xb9\x5d\x60\x65\xd1\xf7\xe0\x72\x1d\x18\x4f\x7e\x79\x3a\xdc\x9a\x34\x74\x0f\x98\xd7\x8a\x65\xe4\x6e\xf5\xfc\xb7\xe8\x79\x7f\x14\xea\x11\x5f\x36\xcf\x31\x54\x5f\xb3\x71\xf7\x97\xe3\x4e\x63\x82\x06\x0a\xc9\x06\x68\xf4\x8f\x13\x43\x08\x5b\x23\x47\x16\x80\x4e\x0a\xab\x7d\x59\x65\xb8\x82\x48\x23\xe6\x3c\x74\xf2\x4c\x35\x7d\xb6\x0d\xc6\xd5\xca\x9a\x1f\x9e\x2f\x5e\x7a\x2e\xbe\x18\xe4\x82\x12\x0f\x8d\xb3\xae\x0e\x02\xb2\xe1\xe8\x96\x36\x0a\xb9\xe1\x5e\xea\x65\x7d\x71\xf1\xfc\x7b\xcf\x5f\x2e\x5e\x7a\x0e\xfe\x4d\x98\xc4\xba\xc7\xf7\x5e\xb8\x5c\x3c\x75\xf1\xfc\x7b\x3f\xba\x8c\xdd\xa2\xf9\x83\xba\x7d\x44\xf4\xe0\x93\x6a\x4e\x9d\xb1\x8a\xcf\x5f\x2e\x9e\x2b\xf2\xde\x73\x6e\x13\x76\x22\x7a\x59\x4c\x7e\xfc\x4f\xa6\xfd\x71\x0c\x4c\x2a\x18\x53\x9a\xb9\x8d\xeb\x3d\x9d\xd6\x44\x7b\x0f\x91\x4b\xb4\x72\x55\x39\xdf\x6f\xa4\x3f\x0d\xca\x3c\x4e\x8b\x2d\x4a\x43\x66\x16\xec\x4c\x92\xad\xd6\x75\xc7\xd5\x31\x4b\x73\x68\x6f\x05\xed\x04\x6d\x29\x84\xab\x74\xdf\x37\x40\x4f\xb4\x24\x06\x9b\xb0\xde\xe7\xf5\x9f\xc3\xf8\x96\xe7\xb0\xa5\xbf\x83\x65\x92\xed\xbd\x1f\xf4\x86\x59\x61\xda\x7b\x04\x5e\x75\xdf\xa7\xbd\x5c\x64\x63\x91\xea\x06\x31\xc1\x80\x09\x9d\x9d\x7f\xf7\x81\x66\x23\x10\x29\x55\xcb\xe8\xe1\x64\x43\x61\x1a\x47\x40\xea\xe5\x10\xfc\x2c\x61\x53\xd7\xec\x05\xd7\x17\x18\x8e\x5c\xfc\x6a\x22\x8a\xb2\xfb\x3e\xbf\x3b\x26\xa6\x53\xb6\x89\xe0\x67\x7b\xe8\xbb\x4e\x27\x84\xf7\x23\xdb\x69\x5f\x75\xbb\x17\xbe\xf8\x3f\x4c\x2f\xb4\x17\x4e\x37\xec\xcc\x84\x14\x85\x71\xa8\xf3\x69\x7c\xcf\x1e\x47\x22\xdf\xf6\xac\xde\x89\xdc\x77\x84\x70\x3d\x09\x09\x82\xf2\x10\x39\x82\xf5\x96\x0b\x77\x65\x33\x8f\xd3\xde\xa0\x6b\x6f\x07\x4b\xd3\x77\xa8\x52\x64\x7e\x7f\xd2\x40\xc4\x59\xf5\xa8\xfd\xd8\x64\x8f\xac\x1b\x22\x69\x2f\x5c\xf6\xdf\x5b\xd5\xaa\x22\x68\xe3\x09\x00\x97\x6c\xfb\xa8\x99\x49\xf0\x69\x2d\x09\x0c\x1d\x1a\x79\x61\xd9\xb8\x7f\x64\x8f\x5b\xf6\xc1\xdf\x05\xca\x9b\xe9\x1b\x70\x5c\x2e\x69\x6e\x2b\xcb\xaf\xe8\xf7\xe3\x09\x80\xed\x8f\xda\xe8\x17\xc9\x07\x80\xec\x26\x57\xa3\xbb\x1c\x48\x4d\xf1\x7d\x8c\xc2\x02\xc0\xd7\x7a\x1b\xec\xbc\x2e\xf6\x16\xe3\xa3\xc4\xd1\x6a\x25\x27\xc8\x86\x87\x87\x6e\xcd\x01\xaa\xe8\xbd\x99\x95\x7c\x6d\xd5\x4e\x1e\xb7\x2f\xfd\xca\xe1\x91\xdb\xec\x7a\xc3\xb3\x21\x41\x35\x48\x0d\x1f\xa9\xe7\x28\xfb\xd7\x6f\xd9\x00\x83\xf7\xca\x2c\x1b\x5e\x0e\xe2\xed\xac\x4b\xc9\x4a\xa7\xd5\xc3\x00\x1c\xaa\xd2\x6c\xa7\x6b\xa7\x01\x07\xd7\x69\x0d\x63\x1c\x60\x01\x96\x1e\xe9\xf9\xa2\xfb\x3c\x26\x4c\x3a\xae\xf7\x31\xf9\x66\x78\xbe\x08\x9e\x1f\x75\x9f\xa7\x40\x60\x10\xc3\xf0\xc7\x81\x2c\x0b\xf5\xe0\xcf\x7e\xf7\x79\x84\x5d\x3e\xab\x3f\x85\x1f\x76\xe4\x0f\x67\x0a\x36\xa0\xbe\x8d\x2d\x65\x29\xb6\x25\x69\xd1\xed\xfa\x63\xf8\x71\x57\xfe\xf4\x00\x82\xfd\xcf\x17\x41\x21\x7a\x59\xda\x2f\xba\xe7\xfb\xd6\x50\xe4\xa7\x51\x92\x4e\x4a\x01\x9f\xcc\x70\xe4\x87\x41\x36\xc9\xb1\x06\x0c\x88\x72\xa2\x07\x60\xaa\xc6\x94\xfd\x67\xe0\xcc\x7a\xbe\x08\x83\x1d\x21\xae\xe0\xaf\x66\x70\x30\xe2\x51\x96\x96\x03\xd5\x38\x8d\x0f\x90\x50\xcf\x17\xc1\xae\x88\xb1\x03\x08\x6e\x81\x3e\xf3\x78\x27\x52\x63\xe5\x03\x85\x0f\x6a\xa4\x66\x98\xf0\x33\x8e\x13\xfe\x3f\x08\xde\xeb\xe7\xd9\xf8\x83\x2c\x15\x97\x03\xa5\x2c\x1a\x89\xa2\x60\x18\xee\x80\x73\x04\x50\x79\x37\x58\x22\x7d\x79\x8e\x6e\x21\x50\xb3\x72\xf0\x3d\xa6\x9c\xd0\x67\xca\xf1\x97\x02\x9f\x1e\xd9\x59\x77\x3b\x01\x65\xf7\x8d\x92\x74\x3c\x21\x9f\x23\x8c\x9f\x3c\x43\x7c\x0b\x16\x44\x69\xea\x7e\xeb\xc0\x74\x9a\x94\x27\x00\x25\x04\x0e\xc1\xd5\xb4\x13\x80\xd0\x5e\x66\x59\xb4\x29\x85\x7e\x16\xc1\xcb\xd0\x0a\xc3\x67\x7e\xfd\x6b\xd0\x95\x24\x1f\x88\x7f\xf8\x87\xb0\xfa\xb2\xfa\xec\x59\x9e\xee\x1f\xd2\xc7\x50\x02\xe3\x06\xd8\x86\x4a\xef\x6d\x1a\x7e\xe6\xd7\xbf\x1e\xc5\xd7\x7e\xe6\x34\xd8\x09\x28\xe9\x01\x62\x11\x38\x8e\xee\x34\x96\x20\xf8\x7f\x03\x00\x00\xff\xff\x4c\x44\xa6\x26\x23\x8f\x01\x00" +var _confLocaleLocale_ruRuIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\x7b\x8f\x1c\xc7\x95\x37\x08\xff\x9f\x9f\x22\xa9\x01\x21\x09\x68\x16\x21\xf9\x99\xe7\x7d\xa1\x65\xd1\x2b\x4b\xb6\xe4\x5d\xc9\xd6\xa8\x25\xcc\x02\x5a\x22\x95\x5d\x95\xdd\x95\xc3\xac\xcc\x72\x66\x16\x9b\x2d\x63\x00\x36\x5b\x12\xe5\xa7\x69\xd2\xe2\xc8\x6b\x41\x96\x28\xd3\xf2\x5c\x80\xc1\x60\x8b\xcd\x2e\xb1\xfa\x56\x04\xfc\x09\x32\xbf\xc2\xf3\x49\x16\x71\xce\x89\x88\x13\x91\x91\x55\x45\x49\x5e\x2c\x0c\x58\xec\xca\xb8\x5f\x4e\x9c\xeb\xef\x84\xa3\x51\xd0\x8f\x8a\x5e\xb7\xfa\xa6\x3a\xac\xe6\xd5\xc3\xea\xac\x9a\xd4\x77\xfd\x7a\xb7\x3a\xa9\xf7\xaa\x6f\xab\x87\xd5\xc4\xaf\x0e\xab\x13\xfc\x6d\x5e\x3d\xac\x77\xeb\x9b\xd5\x41\x35\xad\xce\xaa\xb3\x6a\x5e\x3d\xaa\xe6\xfe\x6b\x71\x79\xa1\xbe\x51\x4d\xab\x27\xd5\xbc\x7a\x5c\xcd\xea\x9b\xd5\xbc\xbe\x51\xcd\xea\xbb\x9e\x37\xc8\x86\x51\xb7\xfa\x97\xea\xa4\x9a\x54\x07\xd8\xb8\xd7\x0f\x8b\xc1\x46\x16\xe6\xfd\x6e\xf5\x75\x35\xa9\xce\xaa\x69\x75\x52\xdf\xf6\xeb\xbd\xea\x49\x7d\x03\xca\x9d\x40\xfb\xa2\x81\xe8\xfa\x28\xc9\xf2\xa8\x5b\xdd\xaf\x1e\x56\x8f\x45\xbb\xde\x20\x4a\x46\xa2\xe6\xbc\x3a\xad\xe6\xf5\x6f\xea\xdb\x5e\x11\x6f\xa5\x41\x9c\x76\xab\x7b\xf5\x47\xd5\xbc\x3a\xc4\x1f\xb2\x71\x29\x7e\xd9\xe7\xbf\x8d\x47\xdd\xea\x4f\xd5\xb4\x7a\x54\xcd\xc4\x44\x44\x77\xf5\xc7\xd0\x51\x1e\x6d\xc5\x45\x19\xe5\x6d\xdf\xb7\xa3\x8d\x22\x2e\xa3\x6e\x75\xaf\x9a\x56\x0f\x2f\xd4\xbb\xd5\xa4\x3a\xaa\x6f\x7a\xa3\x70\x2b\xea\x56\x0f\xb0\x2c\x0c\xfa\xe3\x6a\xe2\x95\xd1\x70\x94\x84\xa2\xf8\x7f\x54\x93\xea\x61\x75\x52\xcd\xab\x33\x2f\x09\xd3\xad\x31\x94\xff\xbf\xab\xc7\xf5\x7e\x75\xec\xf5\xf2\x28\x2c\xa3\x20\x8d\xb6\xbb\xd5\x03\x58\xbd\xc3\x6a\x52\xdf\xac\x6f\x77\x3a\x1d\x6f\x5c\x44\x79\x30\xca\xb3\xcd\x38\x89\x82\x30\xed\x07\x43\x58\x89\xaf\xeb\x1b\xd5\xbc\xfe\xb0\x9a\xc1\xaa\xc1\xa2\x9f\xd4\xb7\xc5\xe2\x54\x07\xa2\x32\x2c\xe7\x5d\xbf\x9a\xf9\xb0\x9e\xf3\xfa\x56\x35\xad\xa6\x30\xff\xa8\x1f\xc4\x69\x10\x16\xb0\x2e\x7e\x75\x50\xcd\xeb\x4f\xaa\x13\x51\xf2\xb8\x9a\x54\xc7\x1e\x74\x99\x86\x62\xcb\x3e\xaf\x4e\x45\x23\x2d\xad\x7b\xd1\x30\x8c\x93\x6e\xf5\x5f\xd5\x49\x07\x0a\xd5\xb7\xea\x9b\xd5\xc4\x1b\x85\x45\xb1\x9d\xd1\xce\x8a\xce\x45\x65\x2f\x8f\x82\x72\x67\x04\x6b\x27\x4e\xce\x21\x1c\x91\x29\x36\x7e\x40\xa7\xe5\xac\x9a\x7b\xbd\x70\x54\xf6\x06\x61\xb7\xfa\xa2\x9a\x54\x4f\xea\x5b\xd5\xc4\xf3\xf2\x68\x94\x15\x71\x99\xe5\x3b\xb8\x33\xd6\x19\xab\x8e\xbc\x2c\xdf\x0a\xd3\xf8\x83\xb0\x8c\xb3\xb4\x5b\xdd\xaf\x6f\x54\x8f\x70\x27\xaa\xc7\x6a\xf7\x86\x71\x9e\x67\x79\xb7\xfa\x43\x35\xad\x6f\xc0\x64\x4f\xaa\xb9\x97\x46\xdb\x81\x68\xbf\x5b\x7d\x05\x23\xd9\xaf\x8e\x7c\xd7\x41\xae\x8e\xa0\xe8\x30\xde\xca\x61\x4f\xbf\xa2\xc5\xb8\xeb\x57\xa7\xd5\xac\x7a\xc4\x8e\x09\x96\xc3\xce\xb0\xd8\x5c\xcc\xf4\x71\xa3\xdf\xcd\x2c\xbf\x6a\x14\x99\xe3\xbd\x82\xff\xa7\xf3\x5f\x4d\x9d\xc3\xa1\x6e\xb2\x7c\xcb\x18\xca\xdc\x3d\xf3\x30\x0d\xb7\x22\x2c\xfc\x8d\x7d\xc1\xb0\x5f\x47\x35\x31\x2f\x2f\xec\x0f\xe3\x34\x18\x85\x69\x94\x98\x37\xb5\x9a\x54\x87\x30\xf3\x33\x76\x4d\x70\x70\x13\x2f\xec\xf5\xb2\x71\x5a\x06\x45\x54\x96\x71\xba\x55\x88\x31\x4e\xa8\xd4\xbc\x3a\xaa\x8e\xc5\x71\x9b\x54\xc7\x62\x35\xea\xbd\xea\x0c\xce\xcd\x82\xc2\xde\x4e\x36\x56\xd7\x40\x1c\xa1\x49\xfd\x89\x3c\xd9\x74\x09\xb0\x88\x6e\x03\xca\x88\x6e\xce\x1a\x8d\x79\x61\xaf\x8c\xaf\xc5\x65\x1c\x15\xdd\xea\x77\xd5\x71\x7d\xb3\x9a\x01\x61\x9a\x43\xc1\xdb\xde\x68\x9c\x24\x41\x1e\xfd\x6a\x1c\x15\x65\x21\x0e\xcc\x84\xfa\xda\x15\x37\xe6\xac\x9a\x00\x6d\x84\x35\x82\x05\xf4\xe2\xa2\x18\x47\x54\x52\x5c\xde\x5b\xa2\x97\x5e\x98\xf6\xc4\xaa\xdd\xaf\x6f\x56\xa7\xb0\xd6\x13\xcf\x7b\x2f\x4e\x8b\x32\x4c\x92\x2b\x1e\xfd\xa3\x5b\x7d\x03\xe4\x74\x02\xa4\xf4\x40\xac\x88\x57\xc6\xa5\x98\xa6\xf9\x41\xdc\xe1\xb3\x7a\x5f\x9c\x87\x4f\xaa\x89\xa0\x4e\x92\x28\x57\x4f\xe0\x64\x1d\x10\x29\x16\x3b\x58\x3d\xa9\xf7\xea\x5d\x68\xac\x9f\xf5\xae\x46\x79\x20\x28\xa6\xa0\x6c\xbf\xc7\xa1\xfb\xe2\xa8\x5b\x45\xe1\xe0\x4d\xfd\xd7\xb2\xad\x42\xd0\x85\xb3\x7a\x0f\x96\x6d\xe6\xbf\x0a\x4d\xac\xe1\x65\xfd\x56\x1c\xe0\x7a\xaf\x3a\xc2\xd1\x29\x02\x23\x56\x11\xea\x5f\x0a\xfd\x32\xcc\xb7\xa2\xb2\xfb\x4c\xb0\x91\x84\xe9\xd5\x67\xfc\x41\x1e\x6d\x76\x9f\x39\x5f\x3c\x73\xb9\xfe\xad\x28\x87\xef\x08\x9c\xf4\x7a\xff\xd2\xc5\xf0\x32\xf4\x57\xcd\xaa\x53\x45\x5e\x6e\x8b\x69\xcb\xa9\x4d\xab\x43\x1f\x7e\x3f\x25\x2a\xe5\x43\x7f\xf3\x0b\x62\x2a\xd5\x43\x51\x50\x1c\xdc\x53\x7a\x32\x6e\x8a\xf3\x09\xdb\x24\x7a\x9b\x8b\x1b\xbd\x6b\x10\xe7\xe9\x39\x4f\x6c\x6f\x5c\x46\x41\x7f\x03\x1f\x3f\x98\x35\x14\x9a\x56\x0f\xeb\x3d\x31\x34\x68\x03\xf6\xf9\x96\xd8\x6b\xff\xcd\x9d\xf5\x7f\x78\x63\xcd\x7f\x2b\x2b\xca\xad\x3c\x82\x7f\xaf\xff\xc3\x1b\x71\x19\xfd\x68\xcd\x7f\x73\x7d\xfd\x1f\xde\x10\xa3\x10\x6b\xfb\x4e\xfc\xea\x4f\x3a\x5e\x7f\x23\xa0\x8d\x74\x1c\xfe\x87\xd5\x44\x90\x7f\xb1\x85\x62\x50\x67\xe2\x89\x82\x1a\x40\x23\xff\x5c\xcd\xaa\x27\x2d\x85\x06\x59\x51\x76\xab\x7f\xc5\xc3\x0a\xc4\x1a\x1f\xc2\x26\x85\xbe\xdd\x42\x8a\xfb\x1b\x81\x41\xdf\xdb\xc6\x22\x8f\xcc\x67\x70\xca\x60\xf6\xbe\xb8\xec\xfa\x41\x80\x63\x20\xf6\x1c\xae\xd0\x13\x1f\x8e\xeb\x43\x58\xb2\x8f\xfd\x9f\xa7\x69\xf6\xea\x4f\xfc\x7a\x57\xec\xd9\x1c\x28\xfe\x0d\x3a\xe2\x62\x4b\xc6\xe5\xe6\xff\x3f\xd8\x8a\xd2\x28\x0f\x93\xa0\x17\x77\xbc\xa2\x48\x82\x61\xd6\x8f\x90\xc6\x7f\x2b\x4e\x83\xbf\xbe\xfe\x86\x37\x0a\xcb\x81\x78\xf1\xf6\xe0\x6e\x16\xbf\x4a\xc4\xb6\xc9\xb1\xd1\xcf\xbe\x38\x12\x1f\x8a\xe7\x58\x9c\x4d\xd7\x94\xaa\x23\xb9\x59\x1d\xff\xd2\x46\x7e\x19\xd6\xcc\x3a\xcb\x6b\x6d\xd3\x13\xb3\x82\x23\x7b\x52\xdf\xa9\x6f\x52\x73\x70\x71\xa0\xef\x29\xdd\x29\xbc\x39\x8d\x3b\x55\xef\x8a\x55\xa6\x73\xbb\x4b\x77\x75\x56\xef\x76\xbc\x28\xcf\x83\x68\x38\x2a\x77\xc4\x31\x34\xe6\xb9\x7c\x42\xf5\x47\x72\x42\xe2\x9c\x4e\xc5\x33\x24\x26\x04\xe7\xf6\x61\xbd\x8f\x8d\xc0\x38\xc4\x25\xab\x4e\x3b\x5e\x9a\x05\x48\xce\x05\x1f\xd1\x8f\x8b\x70\x23\x89\x02\xe4\x79\x72\x7a\x39\xef\x21\x81\xe3\xad\xc9\x77\xe9\x18\x26\x7f\x8b\xae\x17\xdc\x13\x9b\x43\xba\x23\x86\x37\xc7\xcb\xfd\x98\x46\x2a\x2e\x4e\xbd\x27\xf8\x0f\xb1\x70\xb0\xf3\xb8\x42\xb0\xd4\xb3\x85\xef\x08\x5f\x20\xf9\x10\x39\x0e\xf4\xc2\x36\x56\x5d\x1c\x4f\x1e\x45\xba\xb3\xf7\xab\x87\xf5\x6f\xf0\x75\x7c\x02\x5d\x4d\x04\x79\x11\x6d\xd7\xfb\xb0\xd1\x9e\xe0\x9b\x4d\x3e\x09\xf8\x84\x13\xec\x89\x78\x57\x59\x48\x1d\xd8\x6f\xe0\x20\x7c\x2b\xd9\x1f\xb1\x4c\xd3\x7a\x97\x08\x56\xf5\x58\x5c\x5f\xf9\x2a\x1f\xc0\x13\x36\x85\xa3\x26\xb6\xa0\xbe\x51\xdf\x15\x3c\x67\x7d\xa7\xfe\x0d\xfe\xec\x78\xb7\xab\xd9\x39\xe0\x97\x1a\xc7\x09\x39\x2c\xb1\x1b\x6e\x76\x42\x55\x52\x43\xbd\x27\x0e\x2b\x9e\x58\x41\x50\x0e\xf0\xf1\x71\xf1\x46\x33\xc1\xff\xfb\x40\x37\x0f\x45\x87\x70\x04\xea\x8f\x88\xe2\x4e\xc5\x71\xf5\xab\x03\x4d\x8e\x89\x18\x4c\xe1\xed\xa5\x26\x3a\x5e\x3e\x4e\x83\xc5\xf4\x4c\x96\xd0\xab\xb9\x80\xf7\x15\xb2\xcc\x09\x6e\x05\xdb\xf4\x43\x7a\xe5\xf7\x04\x81\x3d\xa6\x4b\x0c\xdc\xaf\x5e\xa3\x3b\x2d\x6b\xe4\x53\x39\x76\xc3\xeb\x3d\x38\x0c\x1d\xaf\x9f\x0d\x43\x21\x7e\x7c\x06\x32\xc9\xb4\x3a\xa3\x5f\xf4\x6a\x12\xc7\x20\x1f\x16\xff\xdd\xb7\xdf\xb8\x20\x4e\xae\xe8\x4b\x6c\xab\x7a\xce\x8f\x51\x54\x50\xf4\x52\x5e\x23\x31\x20\x7f\x7d\xfd\x75\x41\x2a\x07\xc1\x28\xcb\xcb\xee\xfa\xfa\xeb\x78\x38\x6e\xd4\x37\xd5\xaf\xaa\xcb\xaf\x70\x2c\xf5\x0d\x55\x06\x68\xdc\x31\xdc\x67\xf1\x37\x90\x31\x9b\xe4\x89\x01\x8a\x76\x15\xa9\x9a\xd6\x37\x3a\x7e\x75\x9f\xb8\x91\x83\xfa\x36\x71\xee\xfa\xfa\xac\xd1\x7b\x2c\x96\xd9\x45\x2d\x60\xd0\xe3\x22\x0a\x36\xc6\x71\x52\xc6\x69\x20\x86\x5a\x44\xf9\x35\x31\xca\xcf\x79\xff\x72\x13\xc5\x56\x1d\xa8\x47\x73\xaa\x69\xb8\x35\xb0\x96\x56\x83\x51\x36\x12\x72\xde\x1f\xe4\x4e\x21\x77\xb2\x6a\xab\x4a\xdc\xbd\x01\x77\x12\x59\x80\xa9\xdc\x86\x39\x71\x25\x78\xdf\x8e\xf0\xec\x03\x4f\x03\xd4\x47\xb0\x29\x4a\x2e\x16\xd7\x1b\x88\x8f\xd8\x71\x58\x86\x41\x59\x8e\x70\xf3\xc4\x31\x17\x9b\xe2\xbf\xfe\xce\x3b\x6f\xe9\xdf\x9f\x72\xfb\x1a\x54\x47\xec\x0d\xdc\x44\xd8\x49\x94\xe2\x05\xcb\x08\x22\x25\x10\xa4\x71\x9e\x74\xdf\x7d\xfb\x8d\x76\x8a\x35\xce\x13\x35\x8a\xff\x82\xce\x6e\x36\xc8\xa0\x0f\x22\x84\x7d\xa2\x57\x3b\xc4\x62\xc2\x17\xc5\xff\xad\xfb\xc4\xa2\xfb\xe6\x4d\x10\xb4\x02\x04\x94\x63\xda\xab\x33\xf9\x76\x48\x39\x73\xda\xf1\x92\x6c\x2b\xc8\xb3\xac\x6c\xbe\x9c\xd5\xb7\xf5\x1e\xc8\x93\xf0\xbc\x9b\x05\xd5\xc4\xbe\x00\x62\x01\xd2\x58\xf5\x48\x8d\x9b\xbf\x4d\xf2\x01\x16\x13\x30\xda\x84\xa7\x29\x85\xf7\xb3\x97\xa5\x45\x96\x44\xc4\xb9\xdc\xe3\x07\x5f\x52\x4b\x64\x65\x80\xed\x39\x43\x2e\xa2\x9a\xb9\xaa\xcb\x43\x7b\x0f\x69\x17\xdc\x09\x24\x9f\xb8\xa9\xc7\xc6\x80\xc4\xe1\xa8\xf7\x58\x0f\xf5\xde\x1a\x70\xf5\xf0\xe9\x50\x1e\x77\x9a\xdd\x81\xd1\xbf\x38\x08\x5e\x36\x12\x6f\xbe\x7e\xf1\xfe\x04\x5c\xea\x27\x44\x99\xcf\x48\xd8\x70\xc8\x4f\x20\xf7\xb7\xf3\xb6\x5a\x6f\x54\xef\x2f\xdb\xc6\x7a\xdf\x2b\x86\xe5\x28\x40\xa6\xf6\x1b\x21\x23\x57\x27\xfe\xfa\x9b\xef\xbc\x85\xbf\x6f\xe6\xd9\x50\xbc\xaf\x8f\xf5\x9f\x9a\xf5\x93\x1a\x07\x1f\xcf\x27\x3b\x40\x6b\xfe\xdb\x3f\x7b\xc5\xff\xfb\x1f\xbd\xf8\x62\xc7\xc7\x03\xec\xe4\x00\x60\x22\xac\xa2\xe4\xdf\xeb\x0f\x81\xe2\x83\x30\xe2\x3f\x83\xcf\xfb\x33\xfe\x25\x28\xfe\xbf\x46\xd7\xc3\xe1\x28\x89\x3a\xbd\x6c\x78\xb9\xe3\x89\x9f\xa2\x9c\x9e\xad\xff\x6a\xcc\x75\x42\x27\x9e\x0d\x54\xc9\xdf\x33\xa5\x48\xa1\x46\x5a\x98\x1b\x77\x1d\xa9\xab\x12\x27\x68\x33\xce\x87\xd6\xd9\x93\x5a\xa1\x43\xd2\x28\xdc\xa8\xbe\x05\x52\xc4\x34\x0a\x16\xf7\x56\xcd\x60\x1c\x41\x9a\x95\xf1\x26\x28\x5a\x04\xc7\x29\xd6\xe5\x13\xd6\x20\xd1\x79\xe2\x05\xf6\x48\x97\x23\xe8\x94\xd6\xd7\x11\x09\x16\xff\x89\x7b\x91\x3c\x28\x0f\x38\x79\x15\xb2\x6b\x7d\xa3\xde\x13\x83\x70\x1e\x32\x76\x8a\xbc\x6c\x73\x33\x89\xd3\xe6\x15\x63\xea\x8b\x0f\x41\xb9\x78\x54\x9d\xb1\xfb\x50\x4d\x8c\x9a\xf2\x76\xdd\x6f\xbc\x4e\xaf\xbc\xfa\x0b\xe4\xab\xbf\x05\xae\x8b\x24\x5a\x60\xa9\xe0\x2a\x59\xea\xce\x53\xde\xc7\x14\xee\x1c\xf0\x49\x92\x5b\xdf\xf7\xf1\x34\x09\x72\x81\x72\xae\xc1\x19\xe1\x93\x72\x08\xdb\x09\x34\x19\xc5\x03\x71\x4f\x41\x37\x84\x92\x6f\xc7\x93\x0c\xfa\x56\x1e\x5e\x0b\xcb\x30\x77\x8d\x9c\x5d\xb5\x3d\xff\x35\x2a\xd8\xa8\xd9\x3e\x73\x59\x05\x15\x85\x6e\xa6\x0b\xe4\x18\x58\x66\x7c\xdd\x40\x0f\x51\xcd\xc4\x8f\x1d\xdf\x7c\xbc\xeb\x3d\x21\x1e\xe1\x7c\x68\x7a\xe2\x20\xd7\xfb\x6b\x48\x57\x1f\xc1\x96\x0b\xa1\x6b\x5a\x9d\x22\x75\x69\xe1\xde\x04\x37\xbf\x26\xaf\xa3\xd9\x16\xbe\x20\xf5\x1e\x5c\xe8\x93\xfa\x16\xbd\x2c\x77\x3a\xde\x66\xd4\x8f\xf2\xb0\x8c\xfa\x01\xcd\x3b\xc9\xb2\xab\x40\x50\x5d\x37\x43\x90\xf8\x63\xd4\x3b\x88\x23\x2e\xda\xf8\xc8\xaf\x7e\xa7\xbb\x12\x23\x6a\x6b\x53\x91\x6a\x8b\xde\x03\xe7\x8a\x2d\xd7\x1f\xc2\xd5\x98\x92\x30\x42\x1a\x26\x64\x0a\xd8\x84\x18\xdf\x37\x6b\x32\x42\x52\x80\x72\xb7\x75\x64\xd1\xda\x5d\xe2\xbd\xc4\x32\x21\x63\x86\x9b\x06\xca\x6f\xa0\xe7\xa7\x52\x16\x17\xc7\x18\xdf\xdd\x79\xbd\x4b\x1a\xa6\xa9\x9f\xc4\x1b\x74\x22\xf4\xf9\x33\x05\x44\xe7\x19\x9c\x80\x16\x1e\x0f\xc7\x5d\xad\xbf\x11\xc7\xa1\x45\x50\x74\xb6\x6e\x32\x6d\x37\x40\xec\x60\x1b\xe6\x3c\x26\xdf\xad\xfb\x35\x1f\xa8\x98\x28\x76\x8c\xfb\xd1\x22\x3f\xf2\x67\x83\x89\xb5\x8a\x45\x35\x74\x98\xf5\xbe\xe6\x0a\xa4\x16\xbb\x71\xf4\x8e\x51\xad\x5d\xef\x59\x45\xed\xc9\x83\xf6\x52\x77\xa4\xaa\x11\xd3\xd6\x42\xc2\x5b\x57\xaa\x83\x0a\xaf\x3c\x0a\xc8\x50\x12\x5c\x8b\xa3\x6d\x17\x95\x97\x3a\x30\xce\x89\x4f\x94\x8a\x5e\xeb\x87\xef\x68\xf5\x23\xea\x46\x61\x17\x60\x2c\x96\xba\xcd\xd9\xb5\x9c\xef\x9f\xcd\x7d\xe0\xfd\x70\xd6\xf1\x6c\x01\xb9\x10\xd3\x16\xdb\xf4\x08\x08\x2c\x1b\xce\x04\xf5\x97\x6a\x1e\xe6\xb0\x80\x2c\x3d\x81\xa2\x53\xa9\xbc\xc4\xe7\x7f\x97\x35\x07\x6f\xdc\x0c\x99\x69\x58\x1d\x36\x5e\xd1\xe0\x6e\xbd\x5f\x9d\x80\x1c\x28\xd9\x58\xe7\x52\x1d\xe0\xcb\x57\x7f\x24\x58\x36\x6b\x18\x1d\xd2\xb2\x93\xf2\x9a\x8c\x71\xf7\xc4\xb9\x26\xed\x85\x10\xac\xee\x42\x73\x5c\x39\xea\x38\x90\x5a\xd3\x02\xa7\x5f\x73\xb3\x4b\xb5\x24\x4f\xea\x1b\x40\x76\xa1\xd9\x69\x75\x24\x08\x6b\xbd\xbb\xd6\xfa\x2c\x08\x6a\xf3\xf3\x57\xfd\xae\xff\x82\x2c\xb2\x87\x87\xdc\x14\xb1\x05\x4d\x92\xcc\x8b\xb8\xa7\x8b\x15\x3e\x6a\xf9\x48\x11\x0c\x62\x17\x3e\x40\x72\x91\xda\xd9\xce\xbd\xfa\x56\xfd\xe9\xd3\x2b\x99\xa8\xdd\x95\x2c\x5e\x0b\x94\x50\x1e\xf1\x61\xc6\x57\xce\x7f\x1d\x6a\x5a\xa6\x2b\x61\x83\xda\x90\xb6\x84\x7d\x5c\x34\x0d\xb2\x27\x04\x5b\xd9\x56\x61\xdb\x0e\xe8\xb5\xcf\xb6\x0a\xaf\x8c\x8a\x32\xd8\x8a\xcb\x60\x53\x30\x9d\x7d\xb1\x92\xc0\xc8\x1d\xa2\x24\x84\x27\xe5\x09\xdd\xbc\x29\xe8\x3d\x44\xdd\x67\xb7\xe2\xf2\x59\x7c\x3c\x4e\xa1\xd9\xc3\x7a\xef\x25\xff\xfc\x35\xd2\xc7\xfe\x48\xb0\x8d\xe2\x89\x8c\x13\x41\xd4\xa4\xf9\x45\x48\x72\x70\xec\x77\x51\xf6\x3b\x93\x77\xf8\x90\x5e\xb3\x6f\xf1\x76\xa2\xce\x41\xea\xd2\x9d\x66\x06\x54\xa7\xc2\x73\x7f\x24\x95\x92\x1f\x82\x32\x7f\x26\xb9\x26\x3c\xf2\x0f\x61\x7d\x26\xa0\xc8\xd9\xc3\xab\x27\x47\x70\x07\x25\x85\xf3\xc5\x9a\xaf\x14\x83\xfc\xeb\x56\xb6\x31\x8e\x93\x7e\xc7\x8b\xd3\x6b\x61\x12\xf7\x83\xfe\x86\xbc\x94\x2b\x2b\xf1\xe5\x24\x25\xc3\x4e\x43\xdb\xaf\xa6\xb0\x5c\xb2\x65\xa6\xa2\xfb\x8a\x58\x68\xa5\xa7\x00\xde\x88\xeb\x97\x57\x50\x4d\x41\xe3\x4a\x3d\x26\x36\x63\x18\x96\xbd\x81\xa0\xaf\xe2\x48\xed\x81\x2e\xf3\xa8\xfd\x36\xc3\xa8\xeb\xbb\x42\xa6\x47\x89\x1e\xb9\x38\x37\xbd\x05\x3b\x0c\x97\x97\xa5\xb6\xfb\x25\xff\x7c\xe1\x5f\xb8\xec\x9f\x2f\xb4\x58\x17\x0c\xe3\xa2\x10\x64\x0d\x75\x1e\x74\xdc\x8e\x81\x0b\x9e\x54\x67\x4a\xb7\x01\x9c\xb7\x96\xe1\xa6\xbe\x60\x5b\x68\xf3\x85\x40\xa8\x77\x85\x49\x86\xa0\x28\xac\xa6\x50\xc0\xff\x59\x9e\x0d\x61\x22\xf6\xea\x57\x73\x5a\xfd\x22\xbc\x16\xa1\xc0\xb4\xb5\xe8\xfc\x1b\xda\x4b\xf5\x6e\x0b\xe9\xf9\x43\x30\xf5\xee\x69\x4e\x82\x36\x75\xc9\x7d\x9a\x91\xdd\x69\x86\xf6\x24\xfe\xb6\x49\x55\x74\x43\x89\x63\x1c\x17\xe3\x81\x90\x4a\x64\x5a\xbf\xb3\xd6\xf3\x63\x29\x6c\xbe\xab\x1a\x9e\x46\x82\xe4\xa5\x18\xf7\x7a\x51\x51\xa0\xa2\xf3\xa1\x98\x05\xbb\xaf\x7a\x4a\xe7\xfc\xea\x4b\x94\x84\xc4\x96\xee\x4b\x05\x21\x99\x1d\x85\xf8\xf8\x10\xbe\x49\xb3\x49\xc7\xaf\xee\xe1\xbe\x83\x52\xe9\xa6\x54\x8a\xc3\x2d\x9b\x2a\x66\xe7\x26\x29\xa4\xc5\x7b\xa8\x0f\x84\xa5\x08\x5a\x7e\xa1\xe8\xec\x9e\x20\x3f\x5e\x1d\xc0\x0c\xbd\xf7\x06\xd9\x30\xba\xe2\x8d\x51\x5f\x9f\x25\x7d\xd0\x4e\x2e\x7a\x11\x6e\x4b\x11\xe5\xa7\x17\x04\x09\x57\xf6\x36\x55\x9b\x3f\x10\xc5\x76\x5c\xf6\x06\x81\xf2\x7c\x11\x07\xb1\x8c\xae\x83\x1e\x10\x67\xd8\x60\x15\xe7\x60\x1a\x17\x17\x78\x97\x34\x70\x68\x7f\x87\xe7\xce\xe1\x29\x33\xdc\x01\xc2\x52\x74\xab\x2f\x85\x1c\xd2\xa2\xac\xf7\x8a\x41\xb6\x0d\x8e\x24\xb2\xf4\xd7\x24\x7c\x3e\x96\xe7\xf1\x21\x8e\xb9\xfe\xa4\x4d\xe3\x3f\xad\x0e\x3a\x9d\x8e\xd7\xcb\x92\x24\xdc\xc8\x04\xff\x7e\x4d\xb5\xf6\x00\xd6\xe8\x14\xb6\xf0\xa6\xb4\x59\xbb\x47\x32\xdc\x09\xb2\x7c\x4b\x8d\xd7\x6d\xd0\x10\xa5\xd0\x9f\x42\x17\xe4\xce\x14\x13\x0f\x18\x4a\x74\x33\xb2\xa7\x72\xbe\xf0\xc8\x3c\xdf\x89\xd3\x00\x9c\x04\x68\x98\xf7\xa4\x85\x45\x08\x7e\x6e\xaa\x5a\x7f\xe4\x79\xef\x91\xfb\xd1\x15\x8f\xea\xb9\x3c\x50\x66\x60\x88\x2d\x5a\x2c\x17\xd5\xcc\x70\x50\x29\x9c\x1e\x2a\x62\x5f\xa2\x30\x17\x34\x5b\x09\x91\x9e\xf7\x5e\x38\x2e\x07\x57\x98\x8f\x50\x40\xbe\x15\x96\xaf\x90\x8f\x2f\x3d\x9e\x73\x43\x2a\xd1\x9a\xa2\x41\x34\x4a\xa2\x3c\x18\x16\x40\x41\x40\xd9\x31\x45\x8f\x07\xab\xca\x8f\x41\x0e\xd6\x6c\xac\xb4\x83\x8a\x2b\x79\xce\x2b\xb2\x5e\x1c\x26\xc1\x2a\xcd\x32\x8a\x33\x31\x94\xab\xf5\xed\x1f\xfb\xd5\x83\xea\xa0\xbe\xab\x4d\x61\x53\xb8\xdb\x48\x7c\x3f\x46\xa6\xbc\xbe\x5d\xdf\x39\x67\xc9\x8a\xe8\x0f\x35\x1c\x95\xa0\x17\x04\x22\x7f\x86\x4d\xac\xf9\xe0\xce\x04\x8e\x00\x82\x20\x29\x87\x8e\x56\x61\x89\x5b\x2a\xc0\x41\xa3\xe3\xbb\xed\xc2\xf5\x2e\x1f\x2b\x3d\x12\x8b\x88\xe6\x5c\x8a\xa6\x62\xe1\x26\xb6\x34\x2d\x96\x0b\x58\xbe\x2f\x90\x89\x47\xe2\x89\xb7\xf8\xce\xd3\x2b\xee\x50\x25\xa2\x55\xe3\xcd\x89\xcd\x3b\x9e\x38\x48\x41\x91\x8d\xf3\x9e\x76\x30\x98\x80\xf1\x6b\x0a\x54\x66\x06\x8f\xdb\xb1\x3a\x8c\x49\xd6\x0b\x93\x6e\xf5\x47\xae\x97\x12\xc7\xcb\xcb\xa3\x61\x34\xdc\x10\x53\x88\x48\x5c\x05\xa6\x50\xbd\x94\x60\xfd\xaa\xef\x7a\x9b\x59\xbe\x05\x34\x59\xf2\xc3\x7f\x00\x33\xfa\x3e\x0a\x6c\x9c\x0b\x16\x25\xa3\x55\x4a\xfe\x58\x7a\xf0\x05\x69\xb6\xdd\xad\xbe\x02\xd5\x07\xd8\xf7\xec\xf3\xfb\x07\xa8\xc4\xd7\x6a\x06\xca\x27\x75\x8e\x3b\x92\x61\x47\xd5\x03\xa8\x3e\x8b\x28\x2d\xd5\xe1\x62\x6e\x59\x74\x64\x41\x3a\xd2\x3e\x37\xce\x3d\x02\x7f\x0a\x18\xf9\x1c\x2d\xba\x26\x91\xc6\x1f\xfd\x4b\x1b\x97\xcf\x17\x97\x2e\x6e\x5c\x76\x33\xbb\x6b\x06\x07\x2e\xed\x6d\x07\xe4\xf5\x64\x28\x61\x8f\xfc\xfa\x2e\xf0\x76\xc7\x60\x34\x11\x93\xd3\x8a\xd1\xf3\x7d\x1f\xc5\x38\x54\x42\x32\x8e\x0d\x1b\xfe\x44\x8d\xd9\x7d\xae\x3a\xe8\x29\x15\x21\xd9\x54\x84\x47\xbb\x4c\xb1\x35\x85\x2b\x82\x7c\x85\x49\x7e\x46\x79\x36\x88\x37\xe2\x52\xbc\xd2\xcc\x3f\x53\x72\x8e\x82\xdb\xfb\x0d\xd8\x4b\xcd\x82\x52\x0a\x96\xa5\x69\xf0\xda\x26\xbe\x90\x9b\x81\x2d\x68\x74\xd1\xb6\xda\xdf\xfb\x76\xe7\x11\x1c\x9d\x24\x1e\xc6\xfa\x00\xdd\x13\xfc\xcf\x1e\x12\xc4\xc7\xb6\x56\x47\x2a\x36\xe5\x4a\x2a\x45\x01\x28\x37\x97\xda\xbe\x5a\xc8\x14\xc9\x56\x73\x38\x8f\x48\x56\x7f\x84\xfe\x89\xe8\xcc\xb5\x8f\x82\x8f\x54\x24\x9c\x9a\xee\x97\xcc\x23\xf3\x49\xbd\x0f\x8a\xc4\xbd\x8e\x37\x08\x8b\x60\x9c\xd2\x65\x89\xfa\x44\xb8\xfe\x00\x8c\xfa\x04\xad\xa9\xd5\x81\x3c\x05\x6b\xfe\xf9\xe2\x9c\x5f\x7d\x83\x1b\xb5\xcb\x1e\x98\x33\x7a\x35\x9b\x77\xe6\x4c\x3e\x5a\xd2\x0a\xb3\xd4\x66\xe4\x3f\xa7\x2e\xd0\xf3\x1d\xdf\x72\x69\x3b\xd3\x7a\x22\xd0\x48\x48\x22\xa2\xaf\x30\xe8\x24\xda\x48\x2c\xe8\x4c\xb1\xce\x19\xec\xde\x19\x71\xad\xd0\x09\x7f\x6b\x1b\xb4\x61\x0d\x6f\xfc\xb7\x62\xc1\x71\x29\x41\x23\x74\x0c\xc5\x9f\x48\x1d\xd1\x4c\x9c\x08\x3a\x32\x72\x35\xbf\x32\xab\x29\xa7\x10\xd3\xae\x2e\x7d\xe1\x2c\x83\x10\x3d\xdf\xfc\x20\xa9\x55\x33\x07\xe8\x41\x97\xa2\xe7\xd2\xd9\x71\xbd\x5b\xdf\x11\x0c\x45\xd3\x9c\x6f\x75\xe7\x20\x88\xf5\x2e\x4a\x03\x68\xbf\xd5\x34\xfb\xae\x87\xfd\x69\xe2\xfe\x40\x16\x34\x8b\x49\x66\xbe\x07\x56\x9e\xc6\xd3\x2e\xc9\xdf\x31\x92\x83\x05\xe4\x57\x1a\xe1\x8f\xf5\x46\x3a\x65\xdb\xa6\x88\x70\xda\xb1\x06\xcb\x4c\xf1\x2b\x6c\x10\x5b\x02\xa5\x1a\x3f\x90\x47\x57\xbf\x76\xaa\xf1\x32\xcb\x82\x62\x00\x52\xf1\x67\x20\x16\x9e\x59\x4b\xb7\xc0\x77\x09\x5d\x1d\x05\xcb\xf4\xdf\xc1\xf1\xa0\x3a\x85\xae\x40\x02\xeb\x78\x69\x96\x06\xf0\x7e\x6b\xa2\xfd\x15\x30\xa2\xe6\x5b\x3e\x6d\x28\xb0\x59\x8f\xa4\x4d\x6d\xf8\x55\xb2\xa9\xf8\x40\x81\xc5\x91\x7c\x4c\x5e\x30\x1e\xd2\xee\x72\x3b\x0b\x36\xc3\x5e\x99\x81\xf7\xe0\x41\xbd\x57\x7f\x04\xe6\xb1\x63\xe5\xe8\x0d\xec\x60\x2b\xfb\x51\xdf\x6d\x34\x04\x7b\x82\x67\xe3\x0b\x3a\x02\x4c\x49\x75\x2c\x55\xdf\x87\xb4\x90\xc4\xfb\x01\x1f\x63\x35\x14\xa5\x82\xff\xca\xa3\x5e\x76\x2d\xca\x77\xe8\xbc\x59\x5e\xe9\xc7\xf2\xd1\x71\x8d\x1d\x1f\xb9\x85\xac\x93\xd5\xa5\xec\xec\x87\x5b\x0d\x6b\xf8\xb4\x24\x07\x30\x6b\xae\xf9\xd3\xb2\x61\xcb\x3a\xe8\x65\xfd\xdb\x2e\x81\x56\x7c\x3d\xe5\xc0\xd5\x63\xee\x34\x8f\x19\x77\x1c\xa8\xc0\x11\x99\x6b\x67\x4a\x59\x75\xd6\xf1\xbc\xf7\x04\xbd\xbb\x82\xfc\x8c\x90\xa4\xd4\xbd\x70\xbc\xa3\x9c\x9c\xae\xc2\xe1\xa8\x46\x49\x8f\xeb\xd0\xfb\xe2\x55\x53\x0f\x1c\x36\x04\x5c\xcc\x52\xff\x08\x9b\x7c\xde\x6b\x2c\xd5\xcc\xe2\x0f\x79\xd0\x05\x49\x1b\x4a\x6b\xe3\x0c\x6c\xf1\x81\x2e\xcc\xab\x33\x26\x06\x2d\x51\xef\xe8\xa6\xa5\xbf\xc0\xe2\x0a\xf4\x16\x3e\x24\x57\x35\xef\xbd\x61\xd6\x0f\x93\x2b\xde\x4e\x04\xaa\xa4\x89\x97\x42\x04\xc6\xb4\xbe\xe9\x0d\xb3\x3e\x34\xf8\xb9\x49\x79\x3c\xef\xbd\xcd\x2c\x1f\x5e\xf1\xde\x2d\xa2\xfc\x17\xa1\x94\xf5\x5d\x6e\x82\x6f\x47\xa3\xec\x17\x4c\x9f\xdf\xe2\xf1\xf8\x53\xdc\xae\xdf\x19\x8c\x47\x87\xaf\xfd\x5b\x4e\x4d\xff\xdb\x51\x4b\x24\x0b\x73\xda\x00\x8e\x93\x8c\xfd\xde\xfa\xfa\xeb\xef\xa0\xd9\x02\xc7\x03\x5e\x7b\x52\x3c\x9b\x78\xaf\x97\xe5\xa8\x78\x97\x7c\xb2\xc0\x2b\xca\x7b\x2b\xdc\x49\xb2\xb0\x2f\x7f\xa4\xa5\x9d\xc0\xfa\xdd\x04\xae\xe6\xb8\x9a\x78\xef\x44\xe1\x10\xe7\xf9\x95\xed\x3b\xca\x15\xf5\xfb\xde\xcb\xe3\x72\xc0\x17\xc4\x65\xa5\xaa\x66\xde\xcb\xfd\x61\x9c\xfe\xf4\x87\x30\x46\x78\xbf\x88\xb6\x7f\x92\x87\x69\x6f\x20\xc7\xa7\x42\x54\x30\xbe\x45\x0c\xff\x95\x6c\x38\x8c\xcb\xf5\xf1\x70\x18\xca\xc8\x9e\xc7\xf5\x1d\xb1\xe7\x72\xfc\xf8\xe0\xca\x92\x6f\x46\x45\x01\x91\x53\x42\xb8\x03\x72\x03\x2f\x2d\x57\xa4\x82\xa8\x33\x07\xd7\x5d\xe2\xe7\xa8\xee\x2b\x83\x2c\x16\x82\xef\xbd\x7a\x1f\x0f\xa1\xdd\xc5\x3b\x79\x14\xd1\xa9\x72\x79\x60\x7b\xaf\x64\x69\x19\x49\xb5\x8b\x36\x5e\x88\x97\x72\xea\x29\x0b\x67\x04\x51\x3f\xef\xaf\xe8\x74\xfc\xbe\x17\x26\xa3\x41\x08\x2a\x41\x5d\xb5\xd5\x6f\xd5\xe6\x56\x8c\x87\x9f\x9e\x74\x70\xc5\x04\x52\x79\x42\x12\xa2\xe2\x67\x45\x2f\xcf\x5d\x08\x9e\x17\xec\xcb\x19\x98\x52\x14\xcb\x6b\x8e\xa4\x9f\x95\xff\x2f\x8e\xc6\xe0\x5e\x26\xe4\xf8\x71\xa0\xaf\x87\xb8\xbf\xe8\x75\x22\xc4\x91\xc6\x40\x8b\x44\x2f\xde\x5f\xff\xf3\xff\x63\xc3\x55\x0e\x65\xbb\xd5\x49\xfd\xdb\xfa\x93\xce\x5f\x4f\xbc\x22\xfe\x20\x5a\xb2\xbc\xe4\x23\x84\xbe\x9f\xe7\x8b\xce\xfb\x1e\x68\xff\x75\x45\x6b\xa2\x70\xea\xe5\x99\x9c\x28\x8f\x09\xbf\x3a\x86\x96\x8e\x80\x53\x3c\xf2\xb1\xc1\x6a\xea\x9f\x2f\x9a\x3c\xe3\x5f\x4f\xbc\x61\x78\x3d\x68\x1f\x9d\xab\x93\x53\x78\x29\x77\xd1\xfb\xb0\x3a\x75\x36\xfc\x3e\xf9\x0b\xaa\x91\xbb\xb9\x71\x6d\xf9\x01\xe1\x7a\xd9\xb3\x28\xc6\x3b\xce\x13\xf3\xc2\xad\xc4\xe3\xdb\x7e\xd7\x73\x38\xfe\x71\xda\x4b\xc6\xfd\xd5\xa7\xfe\xec\xf9\xe2\xd9\xce\xfb\xde\x38\xbd\x9a\x66\xdb\x29\x55\x03\x26\x1b\xdd\xc6\x48\xf7\x2d\xa3\xf2\x3e\x81\x30\xa5\xe3\x6a\xf2\x92\x0c\x70\x0c\xe2\xb4\x97\xe5\x79\xd4\x2b\x59\xa8\x23\x33\x1e\xce\xab\x23\x12\x6a\x26\x1d\x2d\x32\x30\xc3\x9e\xe1\x23\x38\x5b\xa4\x34\x04\x09\x0e\x7d\x98\x27\xd2\x41\xab\xa3\xe3\x3c\x83\x8d\x28\x4a\x83\x32\xbc\x1a\xa5\xcb\x0c\xe0\xa8\xc8\x38\x03\x2f\x9b\x79\x07\x43\x06\x5a\x9a\x68\xf3\xa0\x37\x1a\xc8\xf2\xad\x66\xfd\xc6\x5b\xe6\x34\x0a\x58\x2d\x95\x51\x38\x5c\xa1\x29\xe3\x59\xb4\x9a\xc0\x63\x0a\xd5\xc7\x45\xd4\xb7\x19\x83\xc5\x1a\x09\xa9\xe8\x71\x38\xd3\xe3\x72\xab\xd5\x56\x7b\xc9\x0e\xc0\xb2\x55\x9f\x35\x34\xa1\xad\x66\xe6\x23\x43\xd3\x1b\x0c\xe3\x82\xce\xcb\x3d\x65\x73\x53\x2a\x17\xcb\xa1\x6f\x55\x91\x8a\x2e\x1b\x2a\xcd\xd0\x08\x29\x55\x2a\x4e\x5b\x71\xc7\x03\x51\x23\x87\xc8\x63\x66\xfe\x4e\x15\x13\xd7\xd4\xc8\xed\x55\x0f\x35\x6f\xc5\x25\x6d\x72\xa5\xa1\xe3\x3d\x6f\x2c\x01\x2a\x3d\x66\x0b\xce\xa0\x63\x38\xd9\x76\x2a\x38\x59\x18\xcf\x37\xab\xf5\x6c\x74\x04\xf2\xca\x04\xbe\x9c\xd4\xb7\xeb\x8f\x95\xe3\x03\x16\x73\xf4\xa8\xf9\xf9\x55\xfb\xe3\x36\x5d\x3a\x02\x07\x24\x7d\x9f\x51\x9c\xb8\xa0\x0e\xd1\xf5\xb8\x00\x85\xc2\x84\x57\x5a\x64\xf4\xdf\x05\xef\x80\xa9\x52\xe4\x4d\xeb\x9b\x1d\x2f\x09\x8b\x32\x10\xd7\x13\x96\x06\xa1\x01\x26\x3c\x64\x18\x1d\xa7\x4e\x60\x7c\x67\x20\x54\xcc\x17\x1e\xe0\xc7\x8d\xcb\x67\xaf\xd9\xb4\x3a\x40\x35\xa1\x65\xc3\x51\x5e\x5a\xc7\xd2\xf5\x4a\x3c\xac\xe0\x74\x5b\x3d\x12\xc3\x6a\x7b\x45\x3f\x02\x66\x19\x05\x48\x1f\x7d\xe2\xc5\x77\xd6\x6f\x35\xad\x3f\x06\xbf\x83\x93\xfa\x0e\xd8\x3c\xdb\x62\xaa\x3a\x9e\xf6\x3e\x28\x06\xc1\xd5\x68\xc7\x6d\xbb\x59\xf3\xc5\x23\xa3\x2e\x08\xe8\x51\xe8\xee\x36\x5c\x6a\x48\x60\x5b\x5f\x7f\xfd\x82\x64\x1f\x5e\xf2\xcf\x17\xde\x18\xfd\x02\xaf\x45\x79\xbc\xb9\xa3\xba\xc3\xd8\x42\x9b\xad\x5c\xa9\x55\xd0\x4b\xce\x69\x64\xea\x45\xc4\xe8\x44\x1d\xbb\x23\x56\xe8\xac\x5d\x84\x6e\x33\x8c\xed\x49\x77\x2f\xd3\x5c\x21\xfd\x28\x5a\x7c\x33\xc5\xae\xca\x6e\x69\x94\x0b\xa4\x77\x20\x68\xd2\xbf\xe2\xbe\x7e\x4c\x17\xaa\x20\xd0\xa6\x5f\x94\x71\x92\x88\x43\xac\x82\xfc\x27\xda\x88\x70\x6a\x07\xa1\x4f\xa5\x33\x37\xc9\x6f\xd2\x01\xc5\x8e\xe2\x94\x72\x0f\xb1\x3d\xea\x6c\xb9\x81\x03\xc0\xc0\x70\x46\xce\x4b\x27\x34\x00\xf0\xed\x53\x0a\x66\xe5\x30\x42\x9b\xa8\x08\x3e\x45\x3f\x4b\x86\x0b\xee\x59\x87\x66\x35\x08\x0b\x8c\xe9\xa7\xa8\xcd\x09\x39\xfa\x32\xf7\x89\x83\x96\xf3\x0c\x43\x92\x61\xe3\x13\x9f\x39\x1b\x82\xf4\x44\xed\xa0\x7e\xf7\x09\x68\x07\xa4\x09\xe1\x36\x1a\x6a\x25\x63\x6b\x8c\x1b\x1f\x74\x7b\xc9\x89\x14\x2d\x00\x28\xb0\x56\xbd\xc9\xc6\x35\x49\xc5\x69\xab\x5b\xc2\x9a\x7b\x1a\x4b\x56\x58\x7a\x2b\xc8\xaf\xf5\x47\x3e\x92\x23\xb9\x6b\xd3\x8e\xe7\x61\x58\x7b\xb0\x01\x82\x2d\xa7\xb6\xff\x46\x67\xd5\x16\x71\xdb\x29\xac\xe7\xbd\x27\x48\xf6\x15\xaf\x37\x08\xd3\xad\x28\x90\x3e\xfe\x9f\xdb\xea\x56\xe6\x2a\xee\xfd\x53\x16\xa7\x41\x96\x22\xfc\xc7\x0c\xa8\xcf\x14\x4f\x1e\xbc\x7e\xbb\x14\xc5\x09\x50\x19\x00\x6e\xe0\x76\x55\x20\xf8\x83\x1d\x37\xf8\xc1\x66\x96\x24\xd9\xb6\x72\x66\x38\x24\x65\x3f\xea\x1c\x66\x5e\x51\x86\xe2\x21\xc3\x91\x2a\x7e\x02\xa4\x60\xac\x09\x0e\x4a\xac\xa6\x28\x40\x9f\xac\xdf\x65\xf0\x83\x37\x4e\xe5\xf7\xfb\xf5\xcd\xc6\x57\x6f\x33\xcb\x87\x1d\xe0\x9d\xf2\x08\x62\x4b\xfa\x4b\x39\x26\xc1\x9e\xa3\x9d\x0b\xb4\xd3\x2a\xe6\x5a\x3b\x14\xcf\x3b\xac\xdd\x51\x58\x96\x51\x9e\xa2\x13\x23\x4c\x7f\x79\x17\x7f\xfd\xcf\xf3\xc5\x5f\x4f\x94\xe2\x71\xde\x8c\xf9\xee\x78\xde\x7b\x12\x90\xe2\x8a\xa7\xd0\x2b\x0c\xec\x96\x96\x10\x7d\x79\x1c\x58\x38\x82\x47\x2f\x41\xd1\x35\xd4\x47\x33\xaf\x88\x7a\xe3\x1c\xb6\xf3\x53\x98\xeb\x1c\x98\x84\x5d\xb6\xa5\x0b\x1d\x57\xd0\xff\xc6\xed\x90\x12\x8e\x46\x49\xdc\x93\x4e\x2b\x5f\x3b\xa2\x05\xfb\x51\x12\x95\x91\xe6\x0f\x66\x0e\x77\x12\xcf\x1b\x8d\x37\x92\xb8\xa7\x01\x3c\xee\x1b\x51\x0a\x47\x36\x94\x87\xc4\xbb\x41\x13\xb0\x66\xc3\xb9\xf5\x77\x39\x47\xde\x74\x66\x04\xae\x12\x05\x21\x0a\x86\x98\xf1\x50\xc9\x36\x0d\xb3\xf4\x16\x13\x3c\x02\xb8\x78\xba\xe2\x9e\x88\xcc\x2b\x96\x98\xbc\x41\xd1\x8e\xcc\xdf\x98\xb9\x78\x72\xab\x09\x62\x25\x1c\xa3\xd4\xd0\xe8\xc1\x7c\x0b\xa9\xed\xb9\x61\xb6\xa7\xf6\xb5\x05\x46\x1a\xa4\x99\xb8\xa8\x84\x0e\x72\x3f\xe9\xb7\xda\x81\x5a\x1d\xeb\x97\xd9\x83\x50\x97\x5d\x7f\x4a\xac\x70\xc7\xdb\x1c\x27\x09\xb1\xd2\x7f\xa9\x3e\xaf\xee\xb7\xa2\x26\x25\x59\x8f\x82\x4a\xbe\x24\xda\x28\x63\x1e\x99\x17\xa4\x37\x1e\xf5\xc3\x32\x62\x47\x07\xf0\xa9\xe6\xcc\x16\x69\x1c\x1d\xb3\xb8\xd6\x7b\xbb\x20\x63\xa4\x65\x01\xee\xed\x13\x8a\x02\x02\x3e\xe8\x21\x37\x42\x74\x24\x8d\x5e\x15\x18\x89\x2f\xd2\x14\x41\x8d\xcc\x06\x94\x8b\x00\x85\x26\x9a\xc5\x67\x36\x8f\x27\x87\x52\xdf\x12\x63\x7e\x8c\xce\xd0\x73\xc9\xaf\x36\x2b\xab\xa8\x84\xb9\x60\x55\xe6\xe8\x22\x81\x46\x49\x0e\xad\x22\x2f\x13\x45\x24\x19\x60\x3c\xe0\x1d\x53\xc6\xe9\x38\xc2\xf7\xfb\x04\xe0\xa3\x9c\x88\x36\x14\x10\x45\xe1\x51\x1b\x3b\xcc\xb2\x7c\x84\xd2\x22\x23\x62\xa4\x97\x52\xda\x97\x7a\xaf\xa9\x74\x6f\x0d\xe3\x62\x4d\xb2\xa8\x2d\xb1\x06\x9c\x4c\xca\xb0\x9a\x71\x51\x66\x43\xf5\xae\xda\x71\x38\x4d\x20\x33\xe9\x85\xa0\x5b\xea\x0d\xb2\xac\x20\xa7\x3b\xd9\x8c\x14\xa2\x1d\x3e\x77\xba\x22\x1d\x42\x15\xb7\x67\x1f\x59\x2b\xda\x51\x88\x33\x46\x44\x18\x51\xd5\xa0\x37\xce\xf3\x28\x2d\x55\x43\x26\x91\x25\xcf\x50\xe5\xda\x6d\x8e\x20\xc9\xc2\xbe\x5e\x42\x78\xd8\x82\x78\x28\xd5\xe7\x8d\x50\xbc\x23\xa5\xeb\x6e\x53\xa5\xcd\xe0\x98\xe3\x8b\xff\x2d\x53\x1d\x9b\xb3\xd5\x37\xce\xf6\x97\x9f\x34\x4e\x9c\x11\x03\x67\x5d\x3a\x71\xc8\x8d\x6b\xd9\xf1\xe4\x2d\xe2\x9e\x04\x6d\x96\x69\x2f\x4b\xb8\x8c\xdd\x70\x82\xd7\x05\xc5\xee\xea\x82\x1a\x03\xcc\xb2\xa3\x95\x3b\x23\x3c\x09\x6d\xe1\x1d\x86\xc2\x4d\xfa\x87\x90\x50\xac\x9d\x1c\x5c\xca\x9f\xf6\xc1\x2d\x52\xf2\x58\x8b\xa1\xd7\x9d\xeb\x05\x41\x04\x25\xd2\x60\xaf\xa7\x0f\x1d\x3f\x41\x91\x8d\x7c\x67\x0c\xd0\x17\xb0\x75\x12\x5a\x93\x3e\xea\xa7\x6c\x84\xb8\xff\x6a\x08\x34\xa4\xbf\xf5\x5b\x63\x2d\x52\xc7\x43\xcd\x5d\xc1\x38\x05\x80\x7e\x5a\x66\x58\x25\x54\x34\x59\xd9\x09\x8c\xc6\x62\xca\x21\x78\x69\x79\xab\xa8\x45\x54\x21\x5c\xe2\xd1\xd1\x11\x96\xd2\x70\xfe\x14\x8a\xc5\x95\xf9\x13\x37\x53\x62\x86\x5a\x0b\xce\xc2\x42\xaf\xe8\x78\xa3\x3c\x46\x03\xdc\x7d\x73\x9c\xf2\x83\x34\x6b\xbb\x42\x8a\xa4\x3c\x6c\x4d\x51\x12\x30\x59\x93\xd3\x2d\xb5\x42\x49\x84\xaf\x7f\x43\xb5\x34\x79\xaa\x6d\x34\x9b\x63\x48\x96\xbc\x4d\x42\x9e\x79\x64\x3c\x3e\xab\x34\xbf\x26\x63\x33\x48\x13\x27\xb6\xe1\x58\x0b\x93\xd2\x65\xd7\xe4\xfc\x28\x34\x57\xf9\x97\x37\x15\x0d\xc8\x04\xce\x20\xa2\x44\x42\x0d\xa0\xa2\xc9\x47\xbf\x41\xa9\x96\x9d\x93\x1a\x4b\x19\x99\x61\x9c\x52\xdf\x05\x0b\xfa\x63\x7b\x09\x14\x29\x78\x3a\x05\xb6\xc1\x04\xf1\x19\x76\xbc\xb0\xdf\x07\xe2\x47\xfb\x09\xa6\x7e\xee\x0f\x66\xbc\x83\x2b\xf7\x09\xcd\xb6\x34\xd9\xac\x8c\xc1\x5c\xb2\xf2\x9e\xae\x1c\x18\x8e\xbc\x45\x94\xda\xce\xbb\xad\x64\x7a\x25\x5f\x4b\xe6\xcf\xcb\x3d\xe1\xa4\x3f\xaf\x90\x34\x9f\xc2\x8b\x97\x93\xb0\x95\xfd\x78\xa5\xa2\x15\xe2\xeb\x7f\x03\xd7\xd8\x70\xed\x35\xfd\xf5\xb8\x7f\xaf\xc1\x23\x7f\x0c\x1c\x57\xbb\xf3\xa3\xe0\xde\xf5\xaa\xb2\x87\xfc\xbb\x6c\x6e\x83\xab\x3e\x54\x3b\x2c\x7d\x72\x88\x00\x2b\xb9\xd6\x49\x82\x4d\x5f\x09\xc2\xa4\xec\xa3\x06\xb6\x71\x0e\xa9\x1c\x88\xca\x48\x08\x90\xc3\x86\x91\xa0\xc2\xe4\xd8\x67\x8e\xf1\x0a\xf9\xc7\x25\xb6\xad\xe0\x6a\x5c\xdf\xae\xef\x74\x7c\x49\x6d\xea\xbb\x32\x34\x91\x04\x39\x64\x05\x2c\x93\x20\xfe\x4c\x1a\x40\xc5\x94\x22\xa6\x13\xb9\x1b\x5e\x2a\xca\x3c\x4b\xb7\x2e\x93\x83\x3b\xb9\x05\x2a\xac\xdb\x1f\x5f\xba\x48\x05\xfc\xea\x3e\x1a\xf3\x51\xb7\x6e\xa8\x5e\x91\xcd\x24\xea\xf3\x84\xf4\xa4\x07\x5a\x41\x28\xe3\xf8\xc4\x25\xb8\x14\x72\x88\x46\x13\xbe\xed\x8e\xa1\x4b\x16\xeb\x81\x80\x8d\x4a\x81\xc6\x43\xbf\x35\xea\x0d\x73\x2e\x37\x5b\xbf\x45\x7c\x21\x88\xb9\x78\x41\x1e\xe2\x58\xda\x04\xe8\xf5\xf5\xd7\x45\x97\x9a\x0c\x39\x37\x9f\x1f\x14\xa9\x2b\xe1\xd6\xbc\x4f\x97\xbe\xa3\xb6\x7e\xe0\x48\xb5\xd7\x51\x0d\x82\xf8\x86\x0d\x7e\xdd\x5a\x1c\xc2\x58\x50\xbc\x87\xd5\xff\x96\x2c\x45\xc4\x8a\x9d\x4a\x6b\xa1\xdb\xf4\x22\xbb\x51\x62\xa6\xf6\x14\x12\x9f\x7a\x8b\x1c\x51\xe8\x6a\xe8\xcb\xfb\xa9\x53\xc2\xb5\xee\xa2\x41\xc0\xe5\x1c\xc4\x7a\xa2\x8e\xeb\x9c\x7c\xce\x61\xdd\xcd\xc7\x5c\xae\xcb\x82\xe7\x5c\x0d\x5f\x34\xd9\xa8\x60\x3d\xd8\x92\xfa\x13\xe8\x14\xdf\x54\x43\x85\xab\x50\x57\xac\x13\x83\x31\x44\xa8\x9b\x37\x22\xd1\xd1\xf6\xb1\x7a\x0c\x81\x7c\x88\x97\xbf\xbe\x8d\x19\xc9\xc5\x37\x06\xef\xd6\x35\xf0\x67\xf6\x1c\xec\x5e\x96\xf2\xa3\x4d\xaf\x0c\x9a\xe3\xe8\xd8\x19\x86\xb7\x19\xc2\x15\x4f\xaa\xc7\xee\x63\x8d\x5a\xe1\x34\x0b\xb4\xd2\xf7\xf7\x68\xda\x50\xa2\xc5\x4c\x46\xec\x50\x61\x38\x3f\xa5\x10\xe9\x18\x09\x05\xbe\x47\x4e\xa5\xb5\x23\xd4\x4e\x58\xb6\x41\x71\x08\xfe\x7f\x3e\x99\x09\x8f\xbc\x32\xbb\x1a\xa5\xce\x0e\xe0\x09\x3b\xc6\x03\xf9\xbd\xba\xf0\x7e\x00\xff\x63\xe6\xba\x2a\xc6\x3a\x2e\x00\xe0\x1b\x04\xff\xbd\x7a\xf7\x25\xfe\x1d\x80\x33\xcd\x70\x2b\xe3\xf3\xe6\x26\x2a\x0e\x58\x09\xcf\xf0\xc3\x95\x21\xf3\x86\x8a\x82\x17\x21\x91\xca\x6c\xa6\x51\x0a\xa2\x20\x0d\xff\xda\x42\x6a\x9b\x6d\x0a\x4d\x10\xbc\x1c\xa2\x51\xa3\xf7\x4a\x62\x2d\xc8\x35\xba\x01\xa3\xb9\x96\x09\xef\x0b\xfc\x75\x09\xce\x17\x63\x21\x0e\x01\x28\x09\x51\x93\x94\x8d\x65\x4a\x77\xcb\x14\x37\x1d\x3b\x6e\xda\x62\x30\xfc\x7f\x2a\x75\x36\x86\x60\xbd\xa6\x41\x58\x11\x2b\x13\xf8\x9f\xbb\xb2\xed\x26\xe8\xa3\xad\xc9\xbe\xd3\xe1\x2b\x39\x28\xcb\x91\xc4\xbd\x6d\xc0\xfd\x71\xf0\x3a\x90\x9a\x79\xb0\x2c\xb7\xfc\x2e\x9f\x9a\x44\x95\x26\x2d\xe0\x12\xa5\xa2\x29\xf6\xb6\x47\x2a\xca\xd7\xfb\x48\x6e\x75\x1b\xaa\x2d\x0f\x65\xd3\xb1\x53\x3a\x28\x56\x85\x2d\xcd\x29\x84\x4c\x1f\x8e\xf7\x5e\xb8\x52\x9c\x7f\xef\xc5\x2b\xe2\x88\x7c\x4d\x10\x0a\x73\x02\xdc\xbb\x6d\x3f\x87\x7c\xfd\xab\x89\x38\x20\x6b\x3a\x38\x6e\x86\x6e\x69\x6b\xfe\x25\x71\x62\x2f\x9f\x7f\xef\x47\x57\x8a\x4b\x17\xe1\xdf\x9d\xe6\x35\x91\xf8\x1f\x0d\x5c\x1d\xa7\x9f\x3a\xca\x0c\xed\xd7\xfc\x8e\x71\xcd\x7b\x61\x1a\xfc\x2a\x6f\xf1\x48\x69\x5b\x43\x07\x84\xe2\xea\x7e\x34\x2a\x74\xe6\x98\x98\x2d\x0b\x2b\xd1\xa1\x73\xab\xef\x9a\xb4\x47\xfa\xf1\x17\x51\x2f\x8f\xc0\x95\x08\x43\xa1\x1c\xce\xfc\x4a\x26\x92\x0e\x8e\xd5\xdc\x68\xab\x1c\x44\x69\x23\x2a\xe0\x0f\x3a\x56\xec\xa0\xd5\xdf\xd9\x68\x06\x1d\x17\x88\xf2\x70\xdf\x04\xcf\x11\x0e\xd0\x0c\x3f\x98\x72\xb4\x1f\xa9\x68\xd2\x3e\x47\xa2\xc5\x27\x04\xb3\x7e\xa7\xbe\xf9\xbf\xb4\x8a\x5e\x4b\x02\xdb\xce\x79\x46\x34\x85\x78\x5b\x17\x0c\xe6\xc8\xd7\xf8\x35\x46\x00\xcc\x62\xb7\xaf\x76\xc1\x10\x86\x02\xbc\x2f\xbb\x8e\xa4\xa6\x99\x57\x47\xe7\x1c\x27\x9f\x7c\x0c\x4d\xff\x07\x2b\x80\xf0\xee\x77\x0d\xd8\x00\x6f\x89\x66\x9f\x0c\xed\xe1\xbb\xbc\xa2\x56\x24\x85\x3a\xdc\x93\xa7\xe3\xc5\xac\xbd\xe2\x0f\x9c\xa4\x07\x5f\xe8\x67\x6a\x41\x24\xc9\xa1\x44\x06\x7e\xfa\xc9\x54\xb3\x05\x83\x40\x3e\x66\xd5\x31\x20\xf7\x08\x98\xc8\x2d\x2f\x03\x9d\x9d\x63\x50\x59\x1d\x82\x2e\x5c\x45\x54\x9e\xa1\x0c\xe3\x08\x74\x6f\x50\xfa\x25\x08\x23\x0b\x67\xdb\xf1\xc1\x2d\xf5\x5b\x31\x23\xa4\xe5\xcb\x03\x75\x5c\xfe\xee\x2d\xb2\x16\xf3\x98\x99\x54\x8f\xd7\xfc\x4b\x1b\x97\x5b\xae\x8a\x12\x71\x50\xb4\xfc\x2d\xa1\x35\xab\xb5\x5e\xc4\x68\x5c\xba\xb8\x61\x3e\x22\x79\x84\x30\xdf\x65\xd4\x60\x94\x1e\x54\x8f\x50\x3e\xc3\x58\x71\x33\x74\x45\x22\x5e\x72\x76\xa8\x3d\xd4\x6a\x95\x0e\x5d\xd7\xb9\x01\x9c\x2e\x7b\x16\x6f\xb1\x22\xe1\x0b\xfb\xb6\xef\x71\x7b\xff\x0d\xfd\xce\x8a\xb3\x33\x46\x59\xef\x9f\x73\xf0\xa9\x0a\x43\xbd\x01\x16\xf8\x03\x3c\xd3\xb2\x0f\x92\x1b\xe5\x23\x53\x9d\x21\x6e\x89\xc3\x03\x42\x33\x35\x6e\x63\x27\x92\xe3\x33\xc2\xe5\xd1\xc8\x47\x28\x60\x34\xc1\x14\xbe\x07\x99\x5d\x5d\xaa\x74\xcc\xf8\x7b\x13\xe3\x03\x53\x08\xa9\x26\xe7\x94\x12\x2e\x84\xa6\x03\x10\xce\x5a\x6c\x21\x7f\x96\xd2\x99\x7c\x08\x1d\x7c\x9f\xd4\xb1\x7f\xc6\x19\x3e\x4f\x1d\xc1\x34\xda\x96\x5d\xb4\xa2\x97\xc0\x77\x94\x12\x25\x61\x7d\xc0\xae\x05\xd7\x9f\x09\x29\x46\xc9\x8c\x52\xa0\x90\xb6\xa3\x76\xca\xca\xde\x01\x36\x4a\x21\x18\x80\x93\xe5\xcb\x6f\xfd\xbc\xe3\xa9\x91\xd2\x10\x08\x56\x86\x39\x2d\x6a\xda\xc8\xe5\x56\x6e\xad\x21\xe0\x25\x09\x5f\x29\x19\x09\x5b\x18\x59\x4d\x1d\x41\x72\xb3\xa1\x18\x3a\x05\x4e\xe4\x18\xa5\x13\xbd\xca\xb4\xc2\xff\xd2\x46\xce\x58\x35\xab\x12\x1e\xb1\x08\xf1\xe3\xb8\x9a\x82\x5d\x79\xbe\x57\x7c\xe6\xc6\x62\x9e\x73\x4a\x27\xa2\x1d\xf4\xbb\x55\xc2\xc9\x31\x5c\x56\x82\x48\x64\x57\x94\x5b\x50\x75\x2f\x78\x57\x5b\x4f\x9d\x31\x04\x29\x64\x3a\x04\x32\x0b\xd3\x91\xfa\x54\x26\xac\x89\x52\x78\xa9\xeb\xc0\x55\x5e\xfc\xaa\x2c\xd2\x7b\x91\x66\xd0\x39\x09\x63\xa4\xee\x16\x57\xb0\x64\xb5\x2f\xc5\x82\xde\x56\x33\x68\xa1\x7a\x0d\xf4\xaf\x0d\x95\xac\x24\x0e\x8e\x0b\xe4\x94\xac\x57\xa6\x79\x7c\xd5\xb9\x41\xdb\x2d\x5e\xb6\x1e\xbe\x85\x4a\x36\x1f\x00\xda\x60\x3e\x08\xca\x4c\xe8\x2a\xae\xfc\x41\x36\xde\x9f\x71\x42\x1d\x82\x1f\xbf\xa4\xe8\x1a\x5a\x74\x35\xd9\xb4\xb5\xc2\x2b\x2b\x84\xc1\x45\xaf\x93\x66\x69\xd4\x35\x8e\xb4\x74\xbb\x56\x60\x13\x33\x74\xf8\x05\x3d\xd8\x22\x5f\x76\x68\x2f\x89\xc2\x6b\xea\xa5\xfe\xda\xf6\xf1\x75\xf9\xe9\xde\xe1\x15\x25\x3c\xcb\xfe\x0a\x0a\x17\x44\xd0\xd8\x6d\x75\xdb\x05\x20\x5f\xc9\xd5\x51\x84\x80\xa0\xef\x6b\x2a\x6b\x8e\x81\xd6\xab\x1c\x92\x75\x7a\x1a\xc7\x60\x57\x3f\x76\xe8\x1f\x89\xf3\x42\x15\x1b\xb8\x3d\xf0\x9f\xdb\xd6\xa9\x25\x53\x1c\xaf\xf9\x34\x0b\xe5\x5e\x9d\x3b\x6b\x9c\x1d\x91\xd7\x5f\x2d\x0e\x2a\xa1\x58\x04\x06\x5b\x9b\xd5\x17\x81\x0f\x59\x7b\xcd\xd1\xa8\xe5\x9c\xd1\xe7\xdb\x39\x67\xe9\x0f\x6b\xde\xbd\x73\x9e\xbc\xd4\x2a\xe0\xde\xd2\xf4\xb7\xc4\xd4\x53\x2d\xee\x28\x47\x1a\x7d\xee\x17\x89\x6a\x09\x0c\xbf\x52\xad\x2a\x2b\x6b\x7d\x67\x31\x1e\xee\x19\xe2\xd7\xe8\x30\x92\x99\xaf\x2d\x6f\xd5\xef\xfd\xea\x41\xf5\x65\x75\xbf\xfa\xbf\xaa\xdf\x57\x7f\xae\x7e\xcf\x8c\x6e\x53\x05\x1c\x2a\x0f\xc2\x39\x05\xff\x6a\x4f\xd7\x0d\x06\x60\xd2\xdb\x6a\x6a\xad\x92\x3c\x6e\x0e\xd7\x08\x33\x67\x9e\x55\x4d\xeb\xd3\x27\x8b\xb0\xd7\x8c\xfc\x20\x7c\x24\x13\x22\x7b\xf0\xc0\xc3\x7d\x7d\x8a\x5b\xf4\x9e\x38\x42\x57\x3c\x0a\x18\xba\x67\x46\xd9\x78\x2c\xe2\x6b\x61\x50\xbe\x8e\x29\x94\xd8\x2b\x7f\x04\x64\xdf\x4f\x54\xa2\x00\x1d\xd1\xd7\xd2\x0a\x46\x12\x21\x62\x2a\xf2\xee\xb3\x35\x39\xff\x39\x85\x6e\x90\xdf\x1b\xdf\x73\xb1\xa8\xc8\x2f\xcb\x47\x46\x6d\x79\xc7\xbb\x16\x17\xf1\x46\x9c\x80\x01\xe5\x1e\xf0\x0e\x33\x19\xd9\x52\xdf\xc6\xaf\xe2\xa3\xb6\xe0\x8e\xc2\xd4\xef\x25\x61\x51\x74\x9f\x19\xc7\x7e\x1e\xf5\xfd\x32\xba\x5e\x3e\x73\xb9\xfa\xa3\x36\x18\x5e\xba\x28\x8a\x5d\x6e\xa3\x22\x76\xab\xc1\x66\x96\xf7\xa2\xbe\x4c\xcc\xc4\xc4\xd2\x96\xa4\x4c\xd2\x89\x4f\xa1\xf2\xaf\x34\xac\xd3\x6a\x26\x07\x86\xde\x9a\xdf\x12\xcb\x46\x9c\xc1\x22\xfc\x66\x0d\x8a\xc5\x46\xbf\x99\xe5\x57\xe5\xc2\x3c\xc7\x22\x1c\x5c\x2c\x8d\x11\x9a\x4e\xc7\x56\xf9\x18\x4c\xb5\xdd\xcf\x95\x2a\xb3\xbe\xfb\xbc\xd7\x4b\xb2\x54\x1f\x1d\xb7\xfd\x9c\xac\x09\x8e\xfc\x34\xd5\xec\xc7\x3e\x19\xd8\x14\x24\xb8\x0d\xd7\xbd\xb7\x38\xc1\xa1\xee\x48\x2c\x63\x78\xf9\x9c\x07\xd3\xc7\x50\x98\xfb\x6c\xd0\xb3\x45\x0f\x08\xd4\x41\x88\xdb\xfb\xce\x9c\xa0\x62\xfe\x58\xaa\x71\xf6\x1c\x35\xce\x78\xb2\x98\xc6\xf3\xe2\xcb\xa4\x9e\xd5\x63\x69\x0e\x20\x8b\xa0\x04\x71\x34\x64\xec\x03\xf3\xf8\xd3\x43\x49\xb4\xe7\xbe\x0e\xfa\x00\xba\x06\x9f\x92\x30\xdd\xd2\xf9\x6e\xe1\xa7\xad\xb8\x8c\xb7\xd2\x2c\x8f\x58\xb6\xb1\x7d\x82\x7a\xa5\x65\xff\x44\x67\xcd\xad\xf7\xfd\x8e\xaa\xe1\x25\x71\x2f\x4a\x8b\xa8\x0b\x67\xf6\x63\x98\xe0\x63\x84\xb8\xc1\x0f\xed\x4d\x2a\x17\xd7\x13\x5e\x13\x66\x10\xf6\x87\x51\xf7\x6d\xf8\x0f\xfd\xb5\xd2\xc8\x94\x0e\x5f\x66\xe6\x99\xf8\x58\xdb\x0b\xc7\x65\x16\xc4\x69\x0c\x3a\xf9\xc5\xf0\xbf\xca\xdc\xdd\xf2\xb4\x32\xbc\xdc\x33\x79\x45\x59\x8f\x28\x8d\xcf\x8c\x71\x89\x3d\x94\xa8\xa1\x78\xf6\x4c\x81\xbb\xe5\xdc\xf5\xa3\xcd\x70\x9c\xc8\x10\x27\x70\xd9\x97\x91\x4c\xee\xac\x1b\x94\x55\x37\x18\xe5\xe3\x14\x34\x3e\xb7\x28\xaa\x18\x65\x25\xfe\xb5\x69\xe9\xe7\xbe\xea\xc7\x32\x11\x94\xf1\x20\x9d\x91\xdb\x15\xd9\x7a\x15\x5c\xb8\x4c\x1f\x32\xaf\x1e\xd6\xff\x83\xfc\x90\xf6\xcd\xdc\x58\x42\x50\xb1\x2d\x73\x32\x51\x95\xdd\x07\xc2\x41\xa8\xfc\x34\xd5\x54\x0e\x3c\x4e\xcb\x28\xbf\x16\x26\xb0\x87\xc8\xbb\xa1\x29\xda\x44\xa0\xb5\x0d\x37\xcf\xa1\x97\xcb\xf3\xb2\x99\xb0\xdf\xcf\x2d\x8f\x3c\x0b\xc1\xd6\x2c\xa8\x96\xca\xc8\x15\xd8\x08\x6b\xa3\x24\x3c\x8a\xc5\xd9\x47\x8e\x92\xab\x49\x98\xcf\x56\x47\x76\x02\xce\x04\xc5\x4e\xda\x6b\xb8\x13\xd4\x77\x51\xbf\x27\x98\xbd\x8f\x88\xe8\xf2\x44\xc2\xdb\x61\xd9\x1b\x40\x68\xd8\x57\x78\xd4\x10\x2f\x4e\xa1\xdc\x16\x82\x2e\x86\x1f\x40\x89\x3f\x00\xc5\x78\x0c\x1c\xee\x2d\xcc\xf4\x0a\x04\xab\x70\x92\x34\xf9\xf2\x8b\x89\xe7\x31\x64\xa6\xd2\xf4\xcc\xa4\x29\x6d\x61\xdd\x7e\xf5\xa5\x86\xa3\x50\xf2\xf0\x84\xf4\x3d\x04\xaf\xf6\xf7\x2f\xbc\xe8\xc0\x4b\x6b\x74\x9d\x44\xe9\x56\x39\xe8\x1a\x7a\x2c\xe9\x5d\xc2\x60\x43\xf6\x29\x38\x2d\x8f\xc2\xde\x80\xe0\x1f\xb3\xcd\x00\xee\x1d\x2a\x05\x9c\xa1\xe1\x32\x62\x76\x56\x3d\x42\x06\xd2\x40\xd2\x30\x6d\xa8\x4f\x28\x00\x74\x2a\xce\xdc\x01\xf8\xfd\x19\x69\x1f\xf0\x2e\xb4\x20\x18\x03\x4c\xf3\x82\xf8\xb9\x16\x90\x06\x0c\x9f\xfb\xbe\xf1\x73\xff\xc1\xa9\xa4\x14\x76\xdd\xe2\x83\x8a\xd8\x5b\x18\x4c\x97\x46\x51\x3f\x08\xc7\x62\x5f\xfe\xcc\xf3\xf4\xaa\x84\x43\x8d\xc4\x1b\x77\x3d\xca\xd7\x6d\xe6\xd5\x35\x12\x76\x57\x33\xa3\x50\x23\xef\x5d\x1b\x4d\xd6\x2c\xb4\xc1\x55\x09\x76\xca\xdf\x48\xc6\xd1\x33\x97\xcd\x8c\xdf\xd5\x29\x71\x55\xaa\x3b\xa4\xcb\x12\xfc\x1b\x94\xd5\x6d\x5c\x31\x55\xe9\x20\x7b\xa3\xc8\xc9\x03\xa5\x3f\xbb\x61\xa6\x6b\xa1\x2b\xef\xae\x67\xb8\x46\xba\x8c\x36\xda\xc3\xe1\xe2\x6b\x3f\x7f\xc7\x02\x4c\xe9\x2c\x68\x34\x88\x87\x90\xc1\x90\xb0\x83\xc9\x93\x59\x85\xb9\x19\x4e\x11\x72\x13\xac\xa7\xb0\x65\xb5\x81\x11\xb5\x72\x64\x01\x4b\xa3\x13\x78\x52\x5e\x6e\x46\xc5\xf5\x50\x47\x51\x0e\x69\x08\x40\xad\x96\xc6\xe2\x78\x7e\x63\x5b\xd4\x94\x56\x0b\xf8\x45\x71\x60\x55\x66\x02\x2b\x88\x61\xe1\x6d\x93\x5d\x6a\x70\xfa\x5e\x98\x2c\x43\xa6\xb7\xa3\x24\x34\x58\x3d\x00\xe3\x1b\xa6\x3e\x0a\xd4\x6f\x8b\x2c\x56\xa1\xd9\x8d\x08\x1e\x42\x46\x15\x62\x10\xa4\x60\xd6\x63\x95\xb1\xf5\x5f\x9a\x99\xec\xa9\x13\xf9\x58\x4e\x84\xec\x88\x61\xf5\xf4\x92\x20\x87\x6a\x1c\x73\xd0\xa4\x01\xa1\x8f\xfa\xf4\xbd\xc9\xaa\xe3\xa3\xee\xf5\xb2\xd1\x4e\x90\xc4\xe9\xd5\x96\x93\xac\x0b\x68\x95\x44\xa3\x20\xaa\x19\x74\x49\x05\xc5\xc3\x11\x3b\xff\xe7\xed\xcf\x2f\xbc\x22\x57\xe6\x95\x32\x4f\xc4\x5f\x2a\x53\xa5\xdd\x9e\xb8\x71\xbd\x6c\x84\xc7\xc4\x56\x84\x3b\xba\xf7\xc6\xe9\xb6\x04\xe5\x99\x52\x60\xdb\x4d\x8d\x48\x76\x22\xbd\x26\xea\xdb\x1e\x95\x7b\x60\xfc\x38\x4e\x0b\x8a\xef\x62\xb1\x65\x00\x99\x31\xb3\x82\xac\x1f\x55\x73\x0f\xcb\xde\x6b\x7e\x9c\xc2\xb2\x3b\xa4\x0c\xcf\x4b\x25\x7f\xfe\x15\x1e\x91\x39\x7f\x52\xeb\xbb\xde\xaf\xc6\x71\xef\x6a\xb0\x35\x8e\x01\x93\x91\x44\xba\x63\x74\x16\xb9\x01\xe9\x3a\xe6\x46\x2e\xbc\x39\x09\x5a\xe5\x20\x2e\x88\x8e\x7d\x61\x0b\x54\x8b\xf8\x4c\x86\x67\x0f\x6f\x6f\x2f\x1b\x0e\xc3\xb4\xbf\xc0\x2c\xd4\x46\x18\x6c\x64\x11\x15\x7d\x41\x52\xe3\x71\x35\xf3\x46\xe3\x62\x80\xfa\x58\x26\x87\x99\x90\xb6\xf6\x4d\x42\x47\xfb\xef\xd9\xef\x46\x98\x47\xc1\x50\xa2\xd6\xdd\x6b\x13\xd3\x25\xd8\x04\xd2\x21\x9e\xe3\xb3\xe3\x79\x9b\x71\x12\x15\xdd\xea\x2f\x32\xb9\xa0\xd7\x60\xcd\xbd\x32\x8f\x20\x4c\x13\xdf\x11\xb1\x39\x9b\x71\x52\x46\xb9\x04\x2a\x08\xd3\x7e\x50\x86\x5b\xa2\x11\x08\x21\xc3\xec\xad\x4f\xd0\x8f\x0f\x1b\xd1\x80\x0e\x82\x95\x7b\x54\xef\x51\x37\x51\xa1\x3b\x9a\x79\x65\x88\xa9\x1a\xe4\xdf\x98\x57\x01\x03\x0a\x0f\x41\x6c\x17\x6b\x9d\x24\x85\x4e\x63\x26\x18\x9d\x7d\x45\x9b\x31\x5f\x2c\x4a\x86\x49\xb8\x11\x25\x46\x73\x43\x31\xd5\x32\x4b\x45\x93\xa0\xc3\xaa\x9e\xd4\xfb\x5e\x0f\xf0\xfb\x0a\x74\xaf\x20\xbc\xbe\x7a\xdf\xdb\x8a\xa5\x94\x62\x8e\x31\x8f\x92\x28\x2c\x24\xf8\x01\x48\x5b\x82\xf1\x8c\x93\x28\xc8\xc3\x6d\xc8\x36\x2c\xf3\xe1\x55\xb3\xea\x18\xbf\x0c\xe2\xa2\xcc\xf2\x1d\xfc\xaa\x5f\x5d\xf8\x86\x5e\x95\xe1\xb6\x64\x95\xa5\x23\xe5\x54\xf9\x37\x34\xdb\x13\xcf\x4d\x88\x84\xed\x6b\x0d\x7f\xa2\x50\x30\x98\xd0\x33\xc1\x0a\x65\x26\xa4\xe4\x5c\x1c\x13\xc5\x77\x48\x61\x95\xd6\xed\x13\x3c\x6d\x5c\xa8\x99\x57\x47\xa4\x1a\x46\x0d\x0a\xbc\x87\xea\x71\x70\xba\x63\xcc\x29\x4e\x44\x79\x94\x79\xd7\xe2\x7e\x94\x01\xe7\x56\x8c\x47\xe2\xf5\x06\x94\xa2\x60\x23\xcf\xb6\x0b\x54\xe4\x41\x10\x1b\x52\xa6\x3d\x24\xf6\x4b\x32\x39\xbd\xfe\xce\x9b\x6f\xfc\xbd\x54\x14\x4c\xc1\x1c\x55\xff\xb6\x7a\xd4\xf1\xd4\xa9\xea\x64\xd7\xa2\x1c\x33\xd0\xdd\xaf\x1e\x56\x8f\xc5\x92\xeb\x8f\x84\x3a\xaf\xb7\x97\xe1\x54\x48\xf3\xaf\xdc\x6f\x55\xa9\x28\xc3\x84\xd7\xa1\x70\x35\xbc\x13\x52\x7d\xe8\xa8\x17\x26\x89\xd2\xa8\x39\x3e\x63\x74\x6b\x3f\xd8\xd8\xe1\x81\xbc\xf2\x19\x03\x3f\xc8\x05\xd0\x57\x3e\xf8\x48\xea\xd6\x64\x88\xa4\x29\x66\xbf\x02\xbf\xfa\xaf\xe2\xaf\x3e\x02\x67\x7a\x5e\xd4\x8f\xcb\x2c\xef\x08\x22\x89\xb1\xef\x3a\x12\x47\x1e\x0e\x59\x06\xe3\x7d\xa9\x98\x8e\xef\x7d\x2c\xa9\x9b\x55\x5c\xfc\x87\x0a\xff\x09\xe1\x65\x70\x81\x4d\xd2\x6d\x55\x1a\xe5\x11\xdc\x05\x9c\x43\xd3\xb5\xb8\x19\x8a\x7e\x24\xab\xf6\xc2\x14\xd0\x52\x44\xb7\x69\x96\x06\x82\x49\x0e\x88\xb2\xd9\xdc\x8d\x04\xbc\x71\x8d\x88\x9b\x81\x74\x62\x1c\xad\x06\x55\x29\x58\x8d\x89\xc2\x23\xa5\x80\x27\xec\xf6\x35\xbc\xef\x6f\xad\x9b\x27\x1b\x19\x8e\x8b\x32\xd8\x88\x82\x2c\x0d\x42\xa5\x19\xf9\x77\x0e\xfb\x4d\x46\x6d\x13\x59\x86\x3a\x42\x0b\xa1\x42\x9d\x31\x56\x88\x9c\x32\x2c\xa7\xb0\x03\x33\xc8\x9c\x0e\x65\xbd\x27\xc7\x03\x6a\xbf\x8d\x68\x33\xcb\x23\x58\x52\xee\x20\x71\x24\x63\x77\xa9\x4e\x2b\x0e\x9f\x82\x16\x6a\x59\x70\x85\x86\xaf\xf5\x4c\xb2\x7f\x69\xa6\xd5\xcb\x6a\xd9\x74\x5c\xeb\x37\x08\xaf\x45\xc1\x76\x1e\x97\xd2\xd7\xa4\xbb\x10\x74\x88\x39\x4f\x18\x26\xb2\x33\xca\x5f\x20\x4d\x19\x66\xe8\xdb\x81\x46\x3a\x70\xee\xc4\xa4\x7a\xc4\xfd\xe1\x26\x00\xdc\x39\xe3\x0a\xe8\xe6\x6c\x09\x89\x04\xa6\xac\xb8\x50\x7a\x8e\x15\x08\xcc\x0a\xc1\x1d\xf2\x36\x0b\x79\x19\xf2\x69\xc8\x3b\x3d\x21\xb2\x31\x33\x03\x04\xe5\x48\x3a\x9d\x0e\x1f\x8a\x32\x8d\xf0\x23\xc8\x02\x7a\x74\x5c\xae\x4e\x6e\xbe\x66\x79\x9a\x9f\x81\x64\xae\x15\x9a\xa6\x55\x85\x7c\xc6\xcd\x54\x06\x17\x3b\x3e\x3f\xf2\x16\x98\x52\xa3\x37\x3a\x5c\x47\xcc\x03\x99\x81\x29\x81\xd8\x26\x21\xee\x1b\x5d\x81\x6a\x1e\xa7\xf2\x49\xbd\xe7\x6f\x84\xbd\xab\xc5\x28\xec\x45\x6a\x19\x04\x7b\x3f\xc3\x24\xea\x8a\xbc\xf4\xa2\x24\x00\xd8\x22\x14\x37\x24\x3a\x85\x2c\x00\x3c\x84\xa6\x5c\x7f\x21\xf0\x60\x25\xe7\xb4\x52\xae\xb0\xdf\x0f\xca\xe1\xc8\x11\xa1\xfa\xec\xf9\xe2\xe2\x25\xb9\x23\x97\x9f\x65\x15\x9c\x65\x9f\xd5\xa4\x5a\x3c\x28\x4d\x54\x08\x5e\xc6\x8d\xaa\xc3\x4b\xd0\x8c\x88\xb9\x24\xe6\x5e\x75\x2b\x9d\x1a\xe4\xd5\x6a\xe4\x0e\x25\x6c\x6a\x33\xdf\x3b\xc6\xcb\xce\x4d\x6d\x1b\x3b\x7e\xd4\x67\x3f\xce\xa3\x5e\x99\xec\x04\x65\x86\x34\x40\x92\xc4\x07\x2e\xe7\x1e\xe2\xd8\x78\x82\x51\x74\x61\x94\x04\x8a\xcc\x6f\x52\x7f\x82\x8d\x5d\x10\x8b\xfa\x0c\xe4\xf8\x50\x26\x38\x39\x0a\x2d\x3a\xe8\x8e\x4d\xf2\xa7\xac\xb8\x28\x3e\xa8\x2c\x90\x82\xb3\xbf\xcd\xec\xb8\xa4\xba\x67\xe6\x27\x03\x13\x7a\x8d\xc2\x64\xac\x59\x3d\xa9\xf7\x78\x6e\x99\x79\xbd\xdb\xe1\x4f\xb5\x44\x07\x03\xd8\x1d\x92\xb9\x54\x30\x72\xe3\xa2\x29\x8e\x83\xaf\xb3\x03\x66\xc5\xa6\x00\xf4\xa2\x6e\x44\x41\x34\x1c\x95\x3b\x4a\xa1\xa7\xcd\x10\xab\x41\x50\xcb\x86\xa5\xa8\x90\xe4\x51\xd8\xdf\x51\xce\x2b\x5a\xff\xaf\xcc\xfb\xad\x8e\x2a\x10\xb8\x4c\x8c\x68\x8b\xa8\xa3\xba\xc3\x33\x94\xe5\x3b\x41\x5c\x04\x21\xe3\x5b\xa4\x85\x5a\x12\xd6\x03\x4b\xc1\x23\xd3\xe8\x36\xd5\x1b\x4c\x6e\x3a\x65\xf9\x3d\x0d\xd2\x44\xd8\xc2\x9a\xda\xb7\x01\x84\x32\xd2\x0f\x03\x2c\x76\x86\xc8\xce\x4b\xc2\x0f\xea\xca\xe6\x18\xb8\x66\x59\x27\xaf\x25\xc1\x50\xf2\xfc\xc8\xb6\x2b\x53\x05\xaa\xa8\x5b\x77\xcb\x24\x4d\x13\x8e\xf8\x04\x1a\xf6\x87\x17\x8c\x07\x7c\x5e\xdf\x68\xbe\x17\x30\x07\xb5\xe6\x8d\xe7\xab\xa9\x2a\x6a\xae\xda\x53\x6c\x2e\x2c\x9b\xf8\x77\x9c\x6e\x05\x69\x16\x24\x59\xba\x15\xe5\xea\x4c\xfd\xa9\xc1\x7f\x49\x08\x1a\xed\xd5\xf9\xa1\xfd\xbe\x36\x43\xac\x5a\x0e\xe0\x0a\x43\xc3\x67\xa0\x1f\x6c\x0f\xd8\x40\x9d\xf1\xb4\xc6\x7d\x62\x1e\x62\x46\xa6\x50\xc1\xb0\x11\x84\x20\xfa\x60\x71\xa8\xc7\x76\xe6\xaa\xbe\xdb\x59\x6c\x49\x6e\xbc\x8b\x3a\xeb\x0c\xc4\xd8\xf1\xcc\x33\x86\x43\xa3\x86\xd6\x54\xc8\x05\x16\x20\x95\x4a\xad\xcf\x28\xa5\xf5\x04\xeb\x9c\x45\x48\xf6\x99\x7b\xa4\xa2\xa0\xee\xf4\x44\xda\x6b\x95\x59\x37\x67\x0e\xde\xd7\xdc\x15\x9b\xf4\xfc\x45\x89\xbf\xa6\xab\xdc\x0f\x4b\x88\xd2\x4c\x72\x05\xe2\x39\x2b\x06\x90\x56\x4e\xaa\x51\x2d\x9e\x40\x8f\x37\x8c\x13\x51\x9c\x90\x8f\x24\x23\xd7\xcc\xfb\x3a\x37\xdf\xf8\x8b\xda\x74\x63\x30\xca\xea\x98\xcf\xaa\xc7\x17\x30\xbe\x55\x43\x86\x63\x68\x8e\xd5\x33\xf1\xa3\xad\x3d\x5b\x0c\xda\xd3\x77\x24\xf8\x9e\x62\xbc\xd1\x8f\x73\x07\x5b\x81\x72\xbf\x41\x23\xd8\xf3\x45\xf8\xb5\xb0\x3e\x4a\x2a\x2d\xdc\x0b\xf4\xb8\x55\x54\xc5\xd8\x8e\x95\xc7\xcb\xbb\x82\x05\x12\x03\x6f\x17\x84\xeb\x7d\xe4\xa6\xa4\x76\x49\xf2\x36\x6e\x45\x90\xc9\x17\xcc\xab\x03\xab\x5a\x43\x39\x25\x3f\x37\x12\x7a\xb6\xb7\xb4\x19\xa7\x7d\x06\x71\xa6\x7e\x0f\xc7\xe5\x20\x43\x24\x48\x1c\x90\xfa\xa2\x14\x8b\x0f\x1a\x39\x2f\x64\x11\xe4\x34\x3f\xc3\x8d\x52\xbf\x52\x6e\xda\x3f\x41\x00\x07\xd0\x54\xf5\x29\x8d\xb6\x31\xdd\x15\xfa\x7b\x4c\x55\xee\xd4\x34\xda\x36\xb2\x78\x3c\x56\x2a\xbf\x09\x2b\xd2\x69\x2a\xf5\xd8\x47\xf1\x14\x88\xef\xea\x86\x81\x88\x57\xcd\xab\x63\x5e\xaa\x97\x44\x61\x1e\xc8\x86\x2c\x87\x02\x59\xc7\x6a\x59\x69\x0e\x95\xe2\xd0\xea\x97\x15\xc0\xbe\x81\x3e\x4c\xc0\xfb\xba\xd1\x37\x2b\x6c\x77\x2f\xab\xf1\x4a\xd9\x28\x4a\xcd\x3a\x1a\xdc\xd2\x5d\xa3\x97\x64\x45\xd4\xe7\x75\xfe\x60\xe5\x64\x24\x5b\xf3\x6f\x95\x16\x94\xd5\x0e\x8b\x22\xde\x4a\xa3\x88\x29\xfa\x6d\x1c\xbb\xe6\x9c\x74\x25\xc3\xc8\x30\x77\xb5\x40\x76\x06\x73\x05\x75\x03\xd2\x84\xb0\xbc\x2a\xb2\xea\x0e\x9c\x16\x75\x7a\xea\x3d\xd6\x8d\x3e\x1d\xea\x98\x9d\x2a\x25\xb7\x5d\x2c\x18\x25\x61\x2f\xb2\xb2\x34\x9f\x72\x6e\xda\x18\x84\x6c\xbb\x31\x94\x53\xa5\x5d\xa1\xf2\xd8\x7a\x19\x0d\x47\x49\x58\x46\x45\x87\x5c\x31\x9b\xb4\x84\xc4\x68\xc8\x25\x23\x55\x0c\x73\x6e\xaf\xaf\x3f\xd5\x2e\xf3\x8d\xa3\x6e\x77\x13\xa7\x9b\x99\xbc\x37\x80\x52\xf3\x84\x22\x4e\xd0\x2c\xe0\x0c\x99\xc7\x47\x9b\xe7\x57\xe2\xef\xf6\x5f\xff\xd3\xb6\xa6\xa8\xb9\xfe\xf5\xc4\x4e\x5c\xe7\xb0\xba\x80\xd8\x44\x2a\x94\xd6\xb0\x42\x50\x7c\x63\xa2\x93\xc7\xbe\xd8\x7b\x02\x02\x9f\xcb\x30\x0e\x5a\x22\x9c\x08\xe5\x3e\x6c\x59\x82\x36\x7f\xab\xe5\x7b\x34\x2e\x22\x20\xd9\xce\x31\xd6\x77\xeb\x1b\x82\xe2\xb7\xaf\xbd\x7c\x55\x99\x0e\xf5\xe9\x1e\x2b\xd3\xf5\x6a\xc2\x0e\x22\xbd\x60\x98\x42\x1d\x7b\x07\x7a\x51\x86\x1b\xdd\xf3\x7d\x8a\x2d\x43\x62\x51\xcd\x9f\xab\xf7\x9f\x57\xc7\x56\xd0\x08\x55\xec\x31\x70\x90\x8e\x62\x64\xe9\xa1\xd3\xfd\xa5\x7d\x5d\xf8\x67\xc1\x8a\x17\x51\x02\x98\x83\x5f\x49\x5f\xca\x7d\xc3\x82\x78\xe4\xa0\xaf\xd4\x44\x3b\x89\xb5\x0b\xf0\x7e\xa8\x28\x89\x37\xac\x3b\xab\x32\xa7\x2e\x13\xc3\x09\x74\xde\x2c\xb9\x15\xa7\x91\xd1\x4b\x2b\x1d\x5c\xda\x2f\x73\x0b\x71\x7c\xe9\x84\x49\x12\x48\x23\x17\x99\x08\x1e\x33\x5b\x97\xab\x06\x4e\xa4\x2f\x8e\xd3\x4e\x36\x76\xcc\x87\xa4\x1c\x57\x65\x24\x55\xfd\x60\x63\x07\xeb\xb6\xc7\xbd\xb9\x6a\x0f\xa3\xb4\x8c\xb3\x54\x08\x5d\x50\x9b\xf2\xcf\x82\x3b\x67\x7d\x57\x66\x80\xb5\x6a\x16\x90\x7e\xf2\x01\x3a\x3a\x58\xd6\xf7\x66\xc9\x0e\xdc\x97\x52\x33\x08\x47\x68\x58\x71\x15\x15\x94\x59\x14\x7d\xa0\xac\x30\x0b\x0a\xe7\x51\x2f\x4a\x4b\xa9\x1a\xfb\x8a\x64\xa6\x03\x27\x1e\x2f\x2e\x85\x73\x74\x51\x58\xa8\x46\x3e\xfb\x0e\x0d\x0c\xb3\xa2\x14\xac\x10\xe0\x2b\x7d\xaa\x65\x4e\x53\x39\x84\xd1\x95\x13\xe9\xf2\xd1\x3a\x12\xd5\xd2\x97\xe8\x3a\x8b\xd2\xeb\x92\x56\x04\x75\x40\x73\x13\xd9\x96\x38\x85\x98\x70\x04\x0e\x00\xdf\x20\xb8\x8c\xf0\x72\xa3\x7e\xb0\x19\x5e\x8d\xdc\x8d\xa0\x51\x8a\x2a\x80\x59\x27\x1b\x93\x3d\x67\x0a\x31\x8d\x87\x20\x54\x91\xa9\x92\x39\x3f\xf3\x77\xf8\x7a\xa9\xdc\x18\xc8\x5c\xbe\xa8\x3c\x12\x3d\x16\x16\x2c\x89\x99\x41\xef\xfa\x01\x7b\x6d\x1b\x45\xd2\xf1\x30\xa0\x35\x2d\xba\x6d\xeb\xf8\x92\x7f\xbe\xaf\xda\xc4\xc2\x51\x3f\x08\xcb\xee\xfb\x14\xb6\x60\xd6\xd3\x22\xf9\x89\x5e\xdb\xbf\x03\xf1\xfb\x3c\xac\xeb\xfb\xb2\x31\x89\xc9\x8b\x6d\x4a\xd0\x41\x75\xcd\x54\x2e\x96\x7a\x5f\xc9\xdf\x46\xd4\x84\x2d\x92\xfd\x56\xc3\x2a\x35\x27\x72\xf4\x63\x35\xe9\x4c\x23\x7e\x7d\x6d\xb0\x04\x66\x5a\xaa\x19\x25\x1b\x99\x77\xcc\x17\x04\xfe\x30\x16\x54\xdf\x6c\x2c\x21\x67\x44\x25\xbf\x5e\xb4\x4a\xa4\x92\x32\x1e\x24\xdd\x5e\x1e\xc1\x36\x53\x43\x16\x1f\xac\xd4\x07\x56\xe9\xef\xd4\xfd\x7c\x49\xdb\xc4\xf4\xa9\x1b\xf8\x45\x7b\x7b\xd6\x01\x84\x93\xa2\x66\x87\xa7\x22\xee\x13\xe2\xcd\x33\xea\x80\xc0\x5f\x97\xe1\x22\x19\xa7\x04\x27\x25\xdb\x51\xc3\x44\x33\x3e\x0d\xf2\x29\x9b\x24\xd1\x34\x8f\x36\xa1\x51\x93\xa4\x8b\x86\x7f\x5b\xdf\x14\x1c\x18\x63\xaa\x29\xc2\x41\x4b\x9a\xd3\xa7\xec\x73\x94\x15\x65\x64\x48\x9d\x6a\x30\x49\x12\x6e\x64\x79\x08\xd8\x5a\xe2\x81\x9a\xd8\x45\x5a\x02\x80\xe8\x2b\x24\xf0\x8f\xd3\x40\x66\x4c\x04\x15\xb9\x81\x10\x08\x16\x61\x65\x39\x42\xb4\x20\x43\xcf\xd4\x4c\x7e\xa1\x23\xbb\x8f\x7d\xc2\xf5\xde\x63\xb8\x96\x77\xd4\x9d\x40\x73\xa9\x9d\x59\x54\xce\xcd\xa1\x77\x97\xa3\x86\xd0\xc0\x07\x0c\x31\xcb\xa8\x49\x0c\x25\xcf\xf1\xd9\x64\xa4\xb0\x50\x2f\x4b\xc4\xca\xfd\x1b\x32\x2c\x0b\x8a\x8d\xd3\x12\x58\xbf\x16\xc9\x41\xdf\xb4\xc2\x66\x24\x51\xe2\x50\xc7\xc1\xac\x87\x2b\xd0\x6a\xf5\x37\x0b\x3b\xed\x50\x66\x91\x66\xb6\x56\x86\x61\xef\x9c\xda\x82\x90\xe9\x25\x35\xda\x42\xa2\x15\x83\xaf\x92\xdb\x37\x03\x86\x1c\x40\x81\x9c\x97\xeb\xf8\x44\x79\xac\xa8\x36\xf7\x38\x94\x1d\xf8\x4b\x1d\x1f\x81\xba\xd6\x89\x1d\x50\x67\xc7\x43\xb2\xb7\x6c\x14\xe6\x65\xdc\x8b\x47\xa1\x78\xcf\xce\xf7\xd1\x93\x7f\x42\x89\x03\x67\xe8\x73\x27\xcb\x87\x65\x19\xf6\x06\x82\x98\x69\xf9\xe1\x7d\xd3\xc9\x71\xad\x5d\x23\xec\x8b\x8b\x45\x58\x29\x73\x19\x70\x79\x40\x86\xd6\xc3\xea\xb8\x9a\xbe\xef\xe8\xa8\x9f\x6d\xa7\x42\x24\x5a\xdc\xd1\x2e\x01\xb3\x4d\x54\x47\xef\x7b\xe8\x05\xc6\x94\x46\xc8\x8c\x33\x93\x99\xd3\x25\x0c\x6b\xf5\xb2\xe1\x28\xcc\x23\x6d\xad\x7d\x40\xa6\xfa\xb3\x56\x2f\x0a\x77\x4d\x89\x1e\x61\x57\x3f\x44\xf8\x38\x65\x7a\x93\x68\x78\x5c\x04\x5e\x32\x54\xe5\x3c\xea\x50\x12\x9b\x63\xd9\x08\x8b\xa8\x4b\x27\x4b\x25\x60\xa0\x45\x33\xb2\xe1\x5a\x53\xc0\xff\x76\xeb\x5d\x73\xf4\x54\xcc\x70\xf0\x5b\xe8\xd8\x27\xb7\x22\x0b\xf2\xa8\x18\x27\xd2\x00\xf3\x58\x3c\x1d\xa0\xcf\x9d\xa0\xc4\x4e\xa2\xd2\x19\x08\xb4\x94\x5c\xaf\xa3\x2a\x97\x03\x21\x56\x94\x99\x1a\x17\x48\x90\xb7\x14\x72\x82\x1e\xa4\x24\x24\x6b\x7e\xfb\xa4\x67\x3c\x77\x81\x9d\x31\x89\x90\x81\x08\xd3\x16\x1c\x7b\xec\x71\x0c\xa3\x7c\x8b\x56\x76\x95\x71\xdc\x94\x31\xe4\x10\x2d\x3d\x33\x35\xbb\x73\xc0\x8c\x41\x8c\x41\x53\xf9\x72\xa2\x33\xe8\xd4\x77\x8c\x24\x9a\x3a\x26\x01\xc7\x35\x08\x8b\x40\xfc\x0b\x1e\x35\x21\xf4\xbc\x5f\x7d\xb3\xc0\x3a\xb1\xf4\x6c\x9d\x42\xa8\xd3\xa1\x78\xc7\x01\x66\x06\x4d\xbb\x1f\x23\x10\xa0\xb8\x85\x2f\x59\x48\x7c\x17\x61\x1c\x17\x85\x30\xd0\xa7\xe7\xfc\xef\xe0\x0f\x7c\xd4\xe9\x68\x91\x36\xee\xc1\x53\x9d\x74\xaa\x0c\x6f\x1b\x5e\x28\xe0\x6a\x6f\x49\x0e\xf4\x94\xe2\x9a\xa5\x8b\x93\x18\x4f\xdf\x60\x3e\x9e\x13\xdb\xf8\x3c\x6a\x88\x24\xc6\xdf\x8b\x0a\xe3\x4f\x50\xa5\x26\xf2\x1f\xf5\x0a\x1b\x4d\x42\x01\x75\xbe\x4b\xa1\x63\xf3\x1f\xa8\x27\xff\xfc\x7b\xff\xed\x4a\x21\x67\x19\x6e\x08\x6e\xfb\x5a\x94\x17\x14\xc0\x73\xdf\x66\x26\xf4\x8a\x40\x59\xa7\xfa\x5f\x17\x20\xd3\x87\xf9\x38\x9e\xd9\xce\x6a\x58\x9e\xf8\xe1\x32\xc3\xf3\xed\x4e\x4d\xcf\xb8\x48\xf9\xe4\x53\x9a\x06\xe6\xc0\x66\xee\xa9\x02\x19\x54\xbb\xaa\x4f\x2e\x2e\x30\x0a\x72\xb0\xaa\xec\x44\x9b\xdf\xee\x3a\x83\x75\x35\x3c\x64\x03\x75\xc3\xc0\x21\x9f\xe2\xe3\x87\x8d\xf7\xc3\x32\x0c\x36\x72\x8d\x03\xd4\xb0\xba\xb6\xf6\xa1\x2d\x9a\x67\x42\x52\xaa\xf7\x64\xdb\xf8\xcc\xa3\x34\xaa\xd0\x01\x6c\x58\x93\xbb\x4e\xc8\xfd\x96\x58\x62\xb9\x44\x71\x11\xf4\x06\x51\xef\x2a\xe6\x35\x33\x78\x84\x09\xcf\x2d\xc5\x11\x1f\x27\x3e\xe5\xd3\xff\x10\x3c\x90\x8f\x91\xc4\xba\xd1\x00\x2d\x2b\xa1\x2b\xe0\x18\x38\x19\x96\xff\x52\x02\x3d\x3c\x46\x75\x2a\x5d\xef\x30\x0d\x20\xe6\x14\xa9\xa3\x85\xdd\xbb\x02\xcd\x71\x38\x0b\x53\x74\x25\x10\xe4\xfa\xd3\xea\x4c\x45\x59\xc1\xea\xdd\x64\x2e\x0e\x33\x36\x0c\x88\x02\xfb\xee\x23\x69\xf7\x5d\xfe\x41\x86\x23\xb5\xcc\xed\xe8\xa9\x0c\x3c\x5f\x82\x65\xb2\xe1\x1d\xc0\xb1\xbb\x25\x11\x25\x64\xf2\x0d\x10\xfe\x1f\x21\x44\x86\x0d\xe3\xe9\x38\x0b\x1d\x83\x28\xd3\xd0\x90\x9c\x34\x28\xb4\xe1\x46\xd5\x4a\xa1\xf3\x48\x3c\x88\xd2\x2f\x54\x34\x08\x27\xf6\x5e\xbd\xaf\x5e\x33\xa4\xd0\x58\xd0\xf0\x00\x35\xda\xab\x4e\x35\x2f\x02\xfe\x5e\x3a\x2e\xb2\x19\x8b\x69\x65\xd1\x67\x54\xc5\x7c\x11\x25\x85\x21\xff\xa3\xea\xa4\x3a\x41\xbf\x95\x63\x89\x8c\x4f\x75\x81\x06\x8e\x53\xa2\xfc\xd0\x06\x79\x04\xbc\xaf\xc1\x6f\x4c\x34\xa7\x26\x49\xc4\x13\xe3\x4c\x1c\xbb\xd0\x6f\x60\xd9\xd9\x7c\xee\xef\xce\xf7\xe9\x7d\xd1\x14\xea\xdb\xd6\x90\x54\x42\xfc\x01\x6e\x9b\x30\xe0\x6d\xea\x03\x79\xd9\xe7\x66\x3f\x33\x54\x71\x00\x41\x44\x98\x53\x0a\x45\x31\x49\xb8\x2f\x1f\x76\xd2\x4c\x49\x66\xd0\x4a\xc5\xa7\xdd\x87\x1d\xa5\x21\x87\x68\x1a\x6d\xeb\x97\xec\x2b\x06\x05\x60\xbb\x79\xaa\xa6\x14\x53\xa5\xf2\xbf\xe8\xa0\xb9\xa9\x0c\xb3\x36\x50\x05\xd5\xe3\x68\x40\xd9\x58\x6f\x12\x8b\x00\x69\x18\x9c\xf1\x0e\xdd\x94\xc8\xab\x32\x92\x82\x52\xed\x43\x04\xb5\xaa\xdb\x66\x61\xa9\xf7\x79\xa9\x56\x0b\x8b\xa3\x58\xdf\xd0\xa0\xf9\xe7\x0b\x63\xa8\x59\xd0\x1f\x47\x01\xaa\x9d\x1f\xa0\xfe\x4a\x85\xce\x1d\x83\xfe\x7f\x52\x9d\xd9\x03\xb4\x14\x64\x8d\x2e\x6d\x9d\x9d\xb9\x36\x41\x31\xde\x18\x44\x21\x18\x3f\x1f\x18\xf1\xc0\x8c\x17\x98\x18\xb0\xf7\x2d\x69\xd4\x2d\xb8\x67\x90\x87\x3b\xc6\x68\xdc\x7c\x63\x63\x43\x80\x1e\xca\x0d\xa9\xf7\x78\x13\xdc\x86\x2a\xa3\xae\x41\xa5\xc1\xca\xb8\xf1\x23\x78\x01\xb5\xc6\xe4\xd0\xe0\x93\xa2\xf0\x4c\xc1\x11\xdc\xf5\x9f\x03\x13\xac\x98\x9a\x01\x8a\xf6\xbc\xb9\xbc\x11\xa4\x65\x6b\x60\x15\xa8\x12\x32\x76\x53\x76\x19\x6c\x66\xf9\x30\x44\xbb\x19\x02\xcb\x20\xed\xd2\xe8\x3a\x87\xad\x43\x22\xcd\x82\x95\xc0\xcb\x67\x74\xe0\xa6\x7f\xc1\x7f\xb6\x7a\x84\xff\xbb\x20\xae\xca\x85\xea\xb0\x3a\x7c\xd6\xb1\x0b\x5a\xf3\xf0\xc5\x92\xfb\x40\x1e\x8a\x7b\xad\x38\x7e\xd5\xe4\x1c\x6f\xdf\xa9\x19\x7b\xba\x5d\x86\x60\x0b\x76\x2e\x3f\x77\x23\x66\x9f\x10\x9e\xcf\xd4\xe1\x6d\xec\xba\xe7\x73\xc2\x7a\x83\x79\xcd\xd6\x00\x9c\x94\x82\x1f\x41\x4e\x9a\x30\xc6\x41\x21\x79\x9e\x6a\x84\xa0\x5d\x94\x0c\x91\x2a\x23\x98\x88\x99\x11\x0b\x51\x0c\xa6\x18\x10\xab\x17\xdc\xa1\x0d\x64\x9f\x9b\x7a\xaf\xef\xbe\x62\xb4\xa5\x9f\x37\x83\x43\x96\xad\x46\xeb\x2e\x73\x64\xff\x7a\xff\x9c\x79\xd1\x16\xa4\xea\x58\xdc\x9d\xab\x99\xe5\x38\x85\xda\xd7\xe6\x3b\x27\xd3\x72\xf3\xed\x07\x0a\x58\xae\x05\xa8\x90\x79\x29\xd5\x1f\xad\x0e\x65\xe5\x9a\xe5\xea\x17\x6f\x41\x14\x08\x20\xae\x6e\xc7\x57\x63\x04\x91\x12\x2b\x2a\xfe\xea\x6c\x47\x49\x2f\x1b\x4a\x4f\x19\xd1\x34\x13\x15\xb8\xe9\xe3\xc0\x97\x15\xcf\x19\x35\x55\xc2\xb9\x19\x0b\x68\xd1\x40\xc8\xf3\x35\x1f\x30\xce\xa6\xae\x3c\x7f\x62\xf2\xc7\x80\xec\xe2\xb4\xb6\xe0\x0a\x01\xb1\x13\x2b\xae\xb0\x95\x4d\xe7\x78\x0e\xa4\xa9\x6f\x78\x07\x07\x49\xb4\x6b\x33\xce\x8b\x32\x18\x29\x9f\x35\xf6\x98\x50\x2a\x72\xbc\x2a\x96\xf8\x83\x6d\x50\x35\xcb\xba\x08\x9f\x48\x19\x86\x25\xb8\x2a\xcc\x6a\x69\x1f\x8b\x63\x16\x47\xc7\x20\xb4\xdb\x8b\x7b\x08\x32\x6a\xcf\x8c\xbd\x40\x13\x3f\x77\x78\x85\x63\xa7\x7c\x56\x7c\x44\x26\x9d\x28\xa4\x99\x86\x39\x5a\x9c\xe5\xb6\x77\x8b\x56\xb0\x08\xaf\x45\x7a\xd0\xa6\x11\xa2\x65\xb4\x80\xf2\x42\x43\x05\xe7\xa2\xf3\x45\x9b\x37\xb2\xb2\x21\x35\x24\xcf\xf3\x05\x36\x06\x84\x4a\xf4\x1f\x6c\x8c\xcb\x52\xd0\x8e\x76\x0b\x82\xb1\xc8\xaa\xbc\x66\xe5\x1a\x26\x62\x5a\x5c\x04\xfc\xe3\x75\x6c\xa8\x40\xf7\xa6\xe8\x7a\x69\x56\xc6\xbd\x28\x78\x81\x92\x3d\x49\x77\xd5\x03\xf9\x22\xe8\x08\x98\x7a\xff\x9c\x2f\x01\x30\x56\x23\x49\xe6\x49\x22\x45\x12\x3a\xf7\xa8\x6c\x15\xea\xa0\x3a\xe2\x28\xe0\x62\x5e\xb0\xe7\xfe\x9d\x31\x41\x55\x57\x85\x75\x29\xe4\x29\xc7\x8c\x41\x18\xbc\x6a\x27\x0d\xa2\x97\xd7\x3e\x85\x53\xb1\xdd\x9e\xcc\x58\xde\xcc\xe0\x3a\x53\xdf\x3a\xd9\x88\x72\x82\xdf\xa7\x53\xcb\xbe\x69\x13\x21\x3c\x32\x0f\x30\x3a\x14\x96\xf4\x4c\x8a\xe8\x04\x22\xe0\xae\xd3\x09\xfb\xc3\x38\x05\xb0\x24\x37\xd0\x5c\x5b\x3d\x08\x2f\x34\xe2\x48\xda\x4a\x8a\xdd\x69\x04\xb0\xb6\x15\x1e\xa7\xfd\x68\x33\x4e\x29\xa3\xa9\x6f\x3a\xf9\x91\x93\x92\xaa\xea\x8a\x49\x6f\x7c\x0c\x36\x40\x87\xde\x22\xcf\xee\x69\xf4\x6d\x82\x60\xd3\xfa\x71\xc4\xfa\x92\x89\x5b\x08\x46\x64\x61\x30\x4b\x7b\x9e\x18\x23\x4e\xc1\x4e\x1b\x83\x26\x9e\x0b\x70\x30\x08\x28\xb7\xa3\x27\xf2\xf4\x38\x61\x2d\x55\xd5\xc3\xc5\xeb\x5f\x68\xd6\x17\xd7\xe0\x16\x2a\x19\xb4\xd2\xad\x91\x58\x95\x21\x7a\x30\x1f\xeb\xb5\x66\x22\x1b\xa7\xe2\x69\x86\x72\x2c\x84\x7a\x55\x67\x17\x16\x86\x6e\xe8\xf9\xb4\xc4\xf3\xd9\x05\xac\x98\xef\x60\x9c\xaa\x70\x7b\xa7\xf1\x94\x59\xa7\xdc\x2b\xba\x38\x06\x1f\x17\xe8\x40\xc6\x4b\xed\xc2\x23\xf3\x5a\x5c\xba\x61\x72\x96\x8c\x95\x65\x51\x5f\xb2\xcd\x8e\x98\xba\xb6\x00\x64\x6d\x2f\x35\xd5\xc6\x56\xbc\xd3\x39\x3d\xb8\x51\x9e\x95\x51\x0f\x1c\xe4\xd4\x25\xfb\x43\x35\x81\x8c\x98\xbf\x61\x9a\x75\x16\xc6\xbf\xa0\x2e\x9d\x3c\xd9\xc0\x4d\x4b\xc9\x41\x7a\x61\xf9\x3c\x9c\x01\xfd\x32\x32\xa8\xc3\xec\x46\xe3\x62\x00\x97\xe9\x04\xad\xb7\xe2\xe4\xc8\x89\x37\x95\xcf\x94\xee\x82\xf2\x23\xb6\xc6\x84\x9b\x70\xc7\x86\x1f\x07\x34\x70\x4a\xee\xb6\x0f\x29\xbf\xf2\x23\x9e\xe2\xf2\xb8\x9a\xb0\x0d\xa5\x1c\xe6\x3a\x6e\xbd\xe1\x5c\xab\x94\x3a\x9d\x4e\xc7\xa6\x54\x01\x2d\x1b\x10\x72\xbd\x52\x13\x66\x2b\x5b\x50\x85\x41\xe7\x37\xd3\x7a\x1c\xd8\xe3\xc0\xb4\x3a\xc4\x38\xd5\x37\x28\x93\x29\xf6\x68\x24\xef\x93\xdb\x73\x69\x03\xe2\x43\x37\x2e\x77\x1a\xdb\x6c\xc6\xa5\xda\x5b\x2c\x1d\x66\xb4\x66\x6c\x51\x7d\x0d\xe0\x6c\xe7\xb2\x68\x39\x19\x20\xde\x8b\x73\x21\x1d\xa5\xcc\xf3\x35\xb7\x41\x77\x4d\x72\x22\x47\x20\xfd\x63\x4c\x2d\x2a\xe1\x9e\x71\xfe\x7c\xa9\x3e\x5d\xf3\xec\x73\x16\x85\xab\x4e\xef\x6a\x5d\x2b\x3a\xcd\xd6\xc0\x30\x39\x59\xdb\xa7\xf6\x4b\x0e\x6f\x4a\x99\x36\x1a\xfd\xeb\x68\x2d\x7e\x16\x7d\x6e\x52\xd3\xf8\x08\x94\x63\x61\x9f\x4f\x9d\x6c\x40\xe4\xde\x30\x55\x2b\x2e\x49\x02\x0b\xff\x05\x76\x7c\x26\x57\x48\x05\x8a\x19\x87\xc1\x08\xb0\x5c\xb2\xb8\x8e\x7d\xdb\x1e\xc4\x65\x94\xc4\x8a\xf7\x2e\x01\x0c\xf1\x53\x38\x1c\xfb\xa8\xc4\xd5\xa9\x68\xe1\x46\x7f\xb4\xe6\xa3\x55\xc0\xb0\x7a\x70\xb9\x8a\x2f\xd3\x92\x83\xeb\xea\xbe\x2d\x3a\x5c\xe9\x3d\x94\x9b\x3f\xc3\x33\xa2\xdc\x3a\x0f\xdd\x03\xd7\x1c\x08\xdf\xce\x66\x3e\x00\x7a\x07\x8e\x98\x43\x02\x31\x24\xce\x04\xf0\x0b\xa9\x1a\x41\xee\x21\x5e\x22\x03\x8c\xe0\x62\x2a\x19\xe0\xea\x3d\x5f\x1c\x5e\x9f\x0e\xef\xc2\x6d\x1a\x17\xb0\x43\xad\x63\x62\x90\xa2\x95\x99\x9e\xfe\x7b\x6f\x11\x86\x87\xf1\x11\x50\x90\x58\x1b\x9e\xcc\xd1\xa2\xd6\xca\x28\x1c\x2a\x53\x34\xed\xe1\x9a\x38\xcd\x27\x32\x3d\x8a\x85\x8e\xfa\x37\x98\x0a\x8d\xa1\x11\xef\x06\xc3\x69\xb0\x19\xb2\x19\x9b\xcd\xf8\x7a\xf1\x53\xd0\x3c\x54\x33\xc9\x4e\xcc\x1a\xec\x84\x25\xe6\xd4\xfb\x8c\xa1\x18\x64\xd9\xd5\x42\x39\x39\x36\x8c\x88\xf3\x16\x31\x49\x37\xb0\x15\x97\xd8\x86\xe0\xac\xea\x8f\x40\xdd\xcf\xd9\xfd\xb0\x88\x7b\x81\x16\xa8\x58\x82\x7d\x9e\xe0\x8e\x4d\x54\xd7\x25\x84\xbd\x05\xd2\x98\x5f\xfd\xc1\x80\x90\x55\x55\x8b\x9d\xb4\x17\x60\x7d\x21\x7e\xd9\x60\xae\xa6\xb4\xde\xe8\x50\x54\x8e\x53\xb1\x37\x5b\xb9\x4c\x02\xa0\x12\xd8\x58\xa1\xee\x4e\x94\x58\x6b\x5c\xad\x39\xf0\x1a\x66\xef\x16\x1d\x04\xa7\xc7\xa7\x2a\xf7\xc2\x1e\xbb\xd4\x05\x88\x7d\xf7\xeb\x0f\x35\xca\xb2\xd6\xb3\x13\x22\x79\xe3\xf0\xb1\x6d\xb1\x90\x38\x9a\xa9\x3f\x38\x3f\x05\x00\x4e\x79\x34\xca\x10\xf9\x94\x25\x28\x68\x30\xaf\x32\xc9\x3c\x1c\x9e\x19\x2e\x1e\x05\x6a\xcd\x31\xcb\x0f\xcb\x92\xad\x00\x02\x30\x47\xb9\xcf\x30\xbd\xdc\xb0\xdd\x6c\x01\xc2\xfe\xb5\x30\xed\x45\x7d\x36\xa9\x3f\xd9\xe8\x1e\x32\x1d\x79\xeb\xd4\xb6\xe3\xab\xb1\xeb\x99\x47\x07\x6b\xb4\x94\x4c\x61\x3c\xff\x18\x5f\x8d\xd9\x7a\x16\x11\xe2\x24\xa7\x61\x12\xa0\x72\xb3\x2d\x14\xab\x3a\x50\x9d\xeb\xb7\x79\xdb\x68\x0d\xe0\x63\x83\xd1\x78\x23\x89\x7b\x01\x1b\xd2\x9f\x9a\x8c\xb3\x23\x5f\xb7\x95\x4e\x43\xd4\xbf\x80\x3c\x37\x85\xe4\xed\xb1\x4c\xb1\xad\x58\xa3\xa4\x10\x9a\x10\xa8\xf2\x91\x39\xd7\xe8\xfa\x8a\x73\x05\xb7\x8d\x4f\xaa\xb3\xfa\x4e\x7d\xc7\x5a\x33\xa3\x8d\x60\x9c\x27\x5d\x13\x64\x95\xd5\xc6\x07\x5a\xaa\x8b\xdb\x5b\xd0\xdc\x36\x47\xaf\xc7\x37\x8c\x3d\x9c\x4f\x14\xdc\xec\xc4\x4c\xf2\x25\x61\xfa\xcc\x81\x18\x59\x08\xf1\xa6\x23\x40\x8f\x18\xce\x99\x6c\x72\x6e\x79\x93\xb2\xa3\x89\x6e\xa5\xab\x9d\x2b\x07\xd2\x37\x49\x4e\x32\xea\xdb\x10\x38\x8c\x83\x07\xfd\x04\x65\x1e\xf6\xae\x36\x6c\x4f\xcb\x4e\x20\xf4\xf8\x88\x40\x2e\xc5\xe9\x20\x9b\xcd\xf7\x1a\x9d\x71\x90\x8d\x55\xf8\x4e\x47\x19\x0c\xa6\xca\x11\x0a\x20\x4e\x7e\xa8\x73\xbc\xf2\xd2\x19\x07\xfa\xfb\xad\x8e\xea\x9c\xba\x95\x77\xc0\x3e\xf8\x46\x2f\xfb\x3f\x44\x2f\x3f\xe0\x3d\x71\xdd\x0d\x02\xd2\xc0\x46\x08\xb1\x46\xdd\x0c\xe3\xd5\xe2\x63\x92\xf6\xe5\x7b\x6a\xf2\x33\xdb\x46\x6c\x20\xe5\x7f\x97\x65\x71\x74\x8d\x3b\x5f\x94\x3b\x09\xda\x56\xd0\x76\xe2\x57\x9f\xd3\x23\x66\x78\x31\xdd\x33\x29\xd2\x03\x73\x04\xdf\x10\x0a\xfd\xc4\xd7\x70\xa0\x2f\x2d\xec\xb1\x93\x8e\x87\x51\x1e\xf7\xba\xd5\xbf\x55\xb3\xfa\x43\xe2\x4a\xe6\xfc\x98\xba\x6a\x85\xc9\x68\x10\xaa\xaa\x9f\x02\xcf\xa5\xa2\xcf\x81\x03\x59\xd8\x94\x5e\x6d\x9e\x99\x69\xa5\x74\xdd\x46\xde\x07\x34\x00\xfc\x5a\xf0\xee\xff\xec\xff\x5a\xf0\x03\xff\xec\xff\x3a\x4e\xfb\xd1\xf5\x7f\x56\xfe\xa6\xca\x47\x5c\x41\xc3\xb4\x24\xf7\x5e\x6b\xd5\x92\xcd\xd0\x2c\x85\x5e\xb6\x13\x33\x64\x81\xf1\xe3\xe3\x24\x59\x42\x5d\x4e\x2e\x70\x61\x96\x29\x54\xa4\x16\xe3\x2e\x5c\x05\x97\x4b\x3b\x77\x48\x6e\x4b\xdf\x45\x4e\x4b\x86\x9e\xda\x1a\x5f\x87\x12\x7e\x80\xd0\x00\x88\x6e\xdd\xea\xf3\xea\x11\x6c\x5b\x23\x47\xa1\x0b\x28\x51\x0a\x79\x0f\xb5\xa6\x05\xed\xbe\x1a\x73\x69\x52\x7f\x64\xf7\x8a\x74\x98\xbc\xe3\xc8\xb3\xb6\xb9\x46\xf8\xfd\x82\xe5\x59\xa7\x95\xd6\x21\x40\x18\x7d\x80\x00\x0f\x2a\xbd\x28\x41\x61\x80\xc9\x8e\xf1\x88\xe8\x73\x08\x30\x8d\x65\x16\x14\x82\x4f\x94\x41\x51\x4e\x8d\xbf\xe1\x80\xba\x28\x2f\x8c\xb2\xb0\x7e\x8b\x8a\x1d\x23\xb3\x80\x41\x5c\xd2\x68\x1b\xfb\x04\x0f\xaf\x02\xc1\xff\x47\x19\xc0\x9e\xf3\xdc\x8a\x8e\xf4\x04\x32\xa7\xf5\x14\x7d\xdf\x7d\x6d\x6d\x84\xb5\xf9\x0d\xd8\xa4\x0c\xab\x95\x85\x6a\x56\x9d\x72\x05\x24\xb8\x53\x97\x32\xba\x54\x62\xcf\x3e\xb6\xac\xda\x10\x4c\xa2\x1e\xbf\x16\xd4\x68\xbb\x51\x13\xc8\xde\x82\x21\x67\x78\xe9\x4f\xbe\x77\xd7\x1d\x65\x2d\x5c\x88\xac\xcb\x20\x96\x9a\x4b\x40\xe6\xc9\x22\x78\xa1\x7b\xc1\xa7\x24\x5d\xe0\xff\x32\xe5\x88\xeb\xd6\x58\xc9\x33\x51\x2a\xc8\xac\x39\xae\x38\xfa\x35\x65\xdb\x58\x04\x0b\x67\x4e\x60\xe2\x98\x80\x8a\x79\x75\x27\x35\x73\xaf\xb3\x7d\x95\x64\x63\x98\x6a\xb4\x8f\x96\x64\x67\x7e\x05\x07\xa4\x66\x5b\x17\xcd\xa5\x30\x5f\xbb\xb4\xd8\x44\x9f\xdf\xa9\xb4\xea\x98\x28\xa0\x64\x00\x7b\x68\x62\x99\x50\x7a\xa3\x46\x43\x8a\x85\x30\x5b\x6b\xbb\xb3\x3a\xaf\xfb\xa9\x46\xbe\xb4\xdf\x00\x8d\xb5\xd1\xe2\xa7\x87\xfe\x1b\x2c\x11\xb8\xbc\x9f\x6c\x12\x8b\x72\x73\x39\x16\xc4\x3c\x91\xcd\x87\x90\xe5\x2b\x6c\x40\xb1\x32\xfe\x93\xa1\xb4\x73\x72\x52\x4d\xeb\x8f\x1d\xd0\x72\xa2\xc9\x43\xa6\x2b\x3f\x5d\x00\x9f\xbc\x68\xcc\x2f\xca\x31\x1b\xee\x4e\xb3\x46\x5a\x45\xd7\x40\x4f\x9b\x74\x0f\x2c\xee\x32\xe1\x35\x01\xdc\x34\xb3\x4a\xde\x5d\x73\xd7\x64\x68\x7e\x73\x4a\xd8\x64\x4c\x1d\x71\xdb\x5c\xd3\x11\xbc\x88\x8c\x1c\xbd\x47\x5e\x08\xca\xf1\x7c\x4e\x59\x20\x18\x28\xbd\x84\x65\xb1\xdc\xa1\xb4\xe9\x0d\x2d\x82\xea\x72\xea\x28\xd8\xbb\x16\xb5\xa9\x66\x2f\x35\x84\x7f\x0c\xf7\x7c\x40\x96\x26\x05\xc0\xcb\x62\x26\x1b\x82\x28\xab\x49\xf7\x62\x25\xe7\x8b\x2f\x1c\x89\x3d\x1d\x99\x1c\x95\x4b\xd3\xff\xbc\xf1\x99\x09\x05\x89\xac\x10\xd1\x33\x95\x8c\xa5\xe3\x1e\x18\x3b\xe8\x92\x90\xb7\xa4\x40\x9c\xeb\xf8\x72\x2d\xaa\xea\x61\xd0\x22\x9f\x2f\x5c\xfd\x18\x7e\x62\x9f\x39\x56\xad\xe9\xa9\x47\xf7\xeb\x66\xbd\x6f\x58\xd7\x5d\xf0\xaf\x4b\xb2\x84\xd9\xd5\xff\x06\x9b\xd1\x42\xe0\x9e\x7e\x6b\x9a\xbb\xd2\xfa\x20\x9a\x19\x39\x55\x3e\x4e\x86\xe2\xba\xc2\x03\x66\xf5\xf7\xe2\x82\xfe\xf8\x94\x55\xb2\xc1\xa5\x78\x82\x6b\x24\xe6\xc1\x81\x91\x0e\xc1\x6a\xfb\x5f\x8b\xcb\x35\x83\x75\x5f\x73\xa3\x3e\x20\x0f\xcd\x68\x97\x66\xd3\x81\x18\xe8\x14\x47\x10\x41\xd2\x36\x3d\x60\x3c\x89\xa4\xb3\x5c\x89\x27\x76\x84\x93\xa2\x77\x52\x58\x9d\x52\xcc\xd6\x0c\x79\x6a\x4a\x34\xc7\x1d\xf6\xdb\xed\x96\xcd\x0b\xf0\x34\xef\xba\x6c\xb8\xfe\xb4\x3a\x3b\xd7\xaa\xaa\xd5\x6d\x37\x95\xe1\x6d\x02\x54\x43\xff\x6f\x75\xed\xa2\xc9\xc4\xac\x7f\xd5\xfa\xac\x31\xad\x79\x78\x15\x54\x27\xc4\x60\x34\xa3\x6d\x74\x98\x0d\xe1\x9d\x35\xbb\x53\x9c\x90\x86\x4c\x68\x4f\x74\x86\xcf\x8d\x0c\x83\x6b\xb0\x47\xba\xb3\x26\x13\xca\xf2\xd3\x3a\x59\x38\x8e\x1b\xd9\x30\x75\x84\xfd\x7e\x60\x82\x3f\x34\xa0\xd4\x8c\x9c\xed\xe6\x79\x9d\xb4\x37\xa4\x37\xf5\x53\x38\x19\x0c\xcb\xfc\x04\xed\xba\x2c\x09\x8c\xd1\x6a\xf3\x06\x98\x03\x34\x51\x0b\x1c\xce\x5d\x59\xbe\x00\x8c\xa0\x7d\x06\xce\x06\xec\x30\x37\x37\x97\x77\xdb\x01\x65\xcb\x5e\xa2\x16\xd8\x7b\xcc\x19\xa7\xc8\x80\x36\xe8\x93\x7f\xf6\x0d\x42\x59\xbb\x89\x46\xdb\x25\xb4\x6a\xe1\x85\x5e\xd9\x47\x5a\xad\x46\x1e\x0d\xb3\x6b\x51\xcb\x96\x1a\x00\x21\xfa\xee\xeb\x4e\xb9\x15\x47\x5b\x43\x4d\x70\xbf\x65\x86\xd1\xfa\xae\xe1\xba\x92\xe5\x5b\x3c\x11\x9d\x10\xc1\x37\xec\xa3\x71\xdf\xcd\x63\x9f\x59\x16\x5e\xf5\xb4\x58\x67\x12\x8d\xa9\xf0\x66\x1a\xa7\xc4\x78\xc5\xc5\x41\xdf\x8e\x36\x06\x59\x76\xb5\x79\x59\xfe\x11\x3f\x58\xb6\x48\x3c\x44\xf4\xad\x90\x41\x9e\x98\x6b\x10\xb2\xf8\x72\xf5\xe8\x0c\xb3\x56\x9e\x80\xbc\xfe\x10\xdd\x82\x70\x7d\xf6\x14\x1c\x03\x02\x13\xc1\xf0\x4f\xb9\x27\x12\x28\x7d\x50\xa7\xfc\x98\xc0\x26\xce\x64\x8e\x57\x8a\x89\x6d\x38\x39\x2a\x75\x0b\xca\x59\x37\x91\x9c\x0b\x99\xf2\xb5\x6c\xab\xa0\x30\x97\x85\x8d\xf2\x70\xa8\x96\xe6\xa4\x36\x53\xa7\x67\x12\xd3\xe2\x6e\x18\x6f\xfd\x72\xfd\x1d\x85\x76\x38\x01\xb5\x94\x02\x97\xd0\x8f\x2e\x03\x93\x7e\xf7\xed\x37\x3a\x7e\xf5\x0d\xa1\xb0\xdd\x6c\xdc\x41\xa6\x28\x40\xc7\x40\x30\xca\x9d\x2e\x49\xf3\xfb\x27\x47\x56\x2c\x14\x99\xe4\xde\x02\xa2\x0e\xe7\x47\xf1\x67\x07\xc9\xd1\x9e\x67\xd5\xc3\x0b\x68\x46\x6e\xaf\xb6\x3c\xde\xc2\x68\x68\xd5\xa0\x0b\x4a\xf8\x7d\xb4\xe6\x0a\xbf\x40\xef\x97\x19\x58\x1d\x1c\x91\x18\x4d\xee\x87\x83\x2c\xdc\xe9\xf8\xd5\xbf\xae\x4e\x4f\x1a\xf3\xe5\xde\x87\x6a\x5a\x8b\x73\x6d\xd8\x8d\x75\x4a\x74\x61\x4a\xe2\x6b\x51\xbe\x23\xc3\xb8\x0f\xa4\xfb\x19\x23\xb7\x98\x13\x84\x3f\xd3\xce\x26\x64\xb6\xe3\x46\x1e\x31\x74\x9e\x20\x62\x7d\x93\xc8\x74\x23\x20\xb8\x61\x85\xb5\xf6\x6c\x5e\x1d\x2c\x1b\x80\x5a\x95\x3f\x63\x27\xcd\x5d\x97\x0e\x96\xcd\x07\xf5\xc0\x27\x04\x07\xc4\x7b\xb3\x67\x0f\x68\x38\xcd\xec\x90\x70\x20\xa4\x26\xa0\x19\x91\x0e\xc7\xe7\x18\x92\xa8\x1f\xae\x49\x45\xcd\xb7\xa8\xb4\xb8\x85\x5c\x0b\xa4\xa6\xe2\x19\xa8\x10\x47\x53\xba\xaa\xb2\x43\xc3\xf8\x60\x35\xa6\xe6\x8a\xe4\x11\xdb\x52\x60\x12\xb0\xba\x8a\xc9\xe3\x0d\x4c\x16\xd5\xd7\xcb\xf9\xaf\x70\xba\x38\xb3\x6e\x26\x79\xa1\xdc\x85\xa6\x4d\x68\xb5\x25\xb5\xd3\x47\xcd\x28\xd6\x1f\xa8\xd2\x1e\xe2\x1b\x34\x97\x61\xc1\x0e\x18\x5a\x87\xa9\xc2\xa1\x37\xf8\x72\x3d\x57\x72\x21\x64\x99\xd9\x5c\xa5\x8a\x51\x06\xb9\xb5\x15\xa6\x66\xb3\x10\xc6\xf7\x15\x76\x3c\xa7\xa9\x15\xa0\xb2\xa3\x70\x07\x20\x84\x9c\x38\x0f\x26\xb8\x43\xb3\xf2\x46\xd6\xdf\x81\x03\xae\x97\x1d\xb5\xe4\x93\xa6\x0b\x0e\xde\xc8\xd7\xe2\x52\xde\x00\x96\xf8\x47\x6f\x04\x4f\x86\xff\x1a\x82\xda\xc3\x23\x41\x6f\x27\x1e\xe2\x87\xd5\x74\xcd\x15\x28\xa5\x6c\x12\x32\x31\x3a\x83\x2a\x77\xba\x61\xcb\xcc\xbc\xea\x52\x53\xe8\xb8\xe1\xd4\x46\xa8\xb8\x66\x1e\x23\xee\x72\x63\x19\x5f\x29\xfd\xbb\xa9\xc9\xe9\x34\x16\x04\x93\x6d\x21\x99\xfa\xbd\x34\x14\x23\xe9\x44\x36\x67\xa2\x72\xaa\x4d\xab\xb3\x35\x83\x0b\x7d\xa2\xde\x34\x76\xc2\xf1\x11\x01\x43\x54\x1b\xf2\xa0\x60\x01\x64\x44\xc2\xd4\xca\xe5\x6f\x89\xd1\x34\xbd\xa9\xf3\x71\x32\xd4\x2f\x2a\x04\x87\x08\x9b\x63\xaa\x69\x38\x54\xc8\xb1\x3a\xb7\xca\xeb\x59\x76\xf5\xd9\xb0\x59\x9a\xc1\x29\xa2\x92\xeb\x23\x62\x25\x95\x4f\x82\x9e\x5b\x43\x7b\x4d\x12\x29\xb5\xd5\xf4\x1d\x7a\xdd\x60\xea\x18\x0b\x48\x5b\xf1\xe5\x52\xfe\x06\x0d\x8b\x82\xcb\x51\x76\x44\x4a\x59\x6e\xf0\x4e\xc8\x7b\xe1\xd1\x79\xf7\xed\x37\x28\x4d\x42\x3b\xbc\x80\xe2\xb2\xea\xbb\x10\x0a\xf9\xa5\x4e\xb8\xa6\x33\xf4\xea\x4e\xe4\x01\x57\xf6\xe7\x35\x89\x29\xa8\x08\xce\x29\xdd\x91\x87\x5a\x60\x20\x33\xba\xe6\x42\x67\x4d\x0d\xe2\x73\xff\xdb\xfa\x2f\x7f\xb1\x46\xd3\xbc\x7e\x61\x7b\x7b\xfb\xc2\x66\x96\x0f\x2f\x8c\xf3\x24\x4a\xc5\x8f\x7d\x9a\xf7\x9a\x7f\x29\x1a\x5e\x06\xb0\xa8\x4e\x75\xd8\xb9\x74\x31\x1a\x5e\x7e\xbe\xe3\x03\x2b\xcd\x64\x6c\xa5\xc8\x6a\x57\x8c\x32\x0e\xef\x4c\x02\xec\x03\x1a\xd0\xf7\xe4\xf0\x2c\x06\x8f\x68\x9d\x76\x65\x90\xcf\x1c\xca\x66\xb7\x80\x23\x36\xe4\x48\x38\x88\x46\x6e\x6a\xf7\xcd\xe2\x42\x52\x2f\x8f\xca\xee\x3a\xfc\xc7\xfe\x59\x02\x9e\xc1\x43\x7c\x43\x9a\x77\xd4\xb5\x76\x3c\x5b\x28\xc4\xac\xbf\xfe\xf2\x8b\x7f\xff\xdf\xfd\xd7\xdf\x7c\xf9\x15\x15\x03\x2c\x15\x53\x70\x6b\x3f\x51\xf2\xe6\xa4\x3a\xac\x3f\x46\xc1\x0b\x78\xa7\x5b\x32\xa8\x91\xd0\xe6\xe0\x94\x3c\xb6\xde\x85\x29\xed\xf6\xff\x71\x41\x48\x0a\x17\xd6\xe3\xad\x34\x2c\xc7\x79\xa4\x02\xe7\xf4\x3c\x92\xb0\x77\x15\x44\x40\xbc\xd3\x84\xa5\xd8\x22\xf6\xd9\xf5\xe2\x5e\x96\xea\xd5\x47\x04\xbd\x33\xf3\x5d\xc2\x82\x26\x08\x23\xf3\x17\xb9\x26\xf6\x43\x66\x6d\x22\x09\xe3\x58\xab\x03\xd4\x15\xd2\xca\x58\xba\xde\xa6\x8b\x3a\x01\x91\x3d\x84\x7b\xb4\x2f\xad\x8d\x3f\xb6\x3b\x82\xbc\xb4\x59\x9a\xec\xa8\x50\x34\x60\xba\x68\xb5\xc4\x57\x49\x02\x0c\x31\x89\xbb\x57\x61\x43\x45\x94\xf6\x83\x48\x30\x32\x00\x90\xd6\xad\xbe\x24\x34\x37\x90\x0d\xc5\xc1\x57\x6a\x54\x60\xf3\x59\x56\x2d\xab\x25\x8c\x17\x41\x76\x4a\x4a\x9e\xb7\x25\x0a\xbb\x09\xa6\x5d\xcb\x94\x8c\x3a\xdf\x8c\xea\xaf\xd9\xae\x0b\x44\xc2\x5d\xa8\x19\x12\x26\x53\xd3\xd6\xbf\xad\x1e\x19\x18\x06\xdc\x61\x56\xee\x9d\x0b\xb1\xd2\x59\xa8\xad\x1f\x9d\x74\xc0\x8a\xdd\xb6\x9b\x69\xcb\xb6\xec\x28\xa6\x7c\x33\x5c\x2a\x51\xe0\x04\xac\xe4\xc9\xd5\x99\xeb\xb0\x74\xdf\x32\x02\x36\xd8\x29\x82\xf6\xdf\x92\x9e\xdb\x4b\x0c\x04\x58\xcf\x95\xbd\xd7\x59\x44\x47\x4a\xc9\x60\xfa\x46\x94\x56\x73\x4c\x3c\x6a\x65\x79\x32\xe0\x05\xd5\x59\xef\xf2\x89\x34\x71\x63\x0c\x88\x97\x35\x03\xc9\x85\xa5\x22\x34\xcb\x68\x56\xee\x53\x60\x7e\xce\x4c\x94\x76\x0c\x8f\x14\xac\xd7\x1a\x3f\x0e\x0d\x67\xf0\xc9\x9a\x75\x5a\x24\x98\xbe\xf8\xd0\x10\xbb\x50\xee\x05\x5f\x1a\x30\x96\xcc\xb5\xd9\x9e\x10\x12\xd6\x58\x1b\xab\x94\x57\x57\xa3\xe9\x8c\xcd\x4e\x52\xe3\x32\xa2\x3b\x55\x0b\x38\xb2\x32\x45\x1c\x70\x29\xa8\xb1\x45\x46\x1b\xb4\x47\xae\x86\x8e\x8c\x0b\xbb\x66\x9d\x1c\x35\x01\xb7\x4a\x10\xbb\xa2\x94\xce\x2c\xa3\x73\x4b\x09\x76\xcb\x4e\x30\x96\x64\xae\x3d\x2b\xe9\x2d\x27\x67\x81\xb6\xb4\x50\x9a\x75\x83\x1c\xc4\x3c\xf5\xf0\x94\xdf\x49\x4a\x51\xcc\xc1\xc4\x0e\xc9\x39\x49\x39\x0e\xd8\x9c\x17\x2a\x4a\xea\x7d\xe2\x52\x0f\x48\xcf\xd4\x7c\x2c\xa4\x6c\x48\x1c\xef\x1a\x67\xd1\x0c\x1f\xc5\xa6\x7c\x83\xda\x49\x4b\x0b\x09\xfc\xe7\x53\xa8\xd9\xa5\xfc\xd5\x60\x7b\x95\x3a\xd3\x25\xca\x36\x54\x9a\x54\xc9\xe8\xfd\x1f\xe5\x73\x69\x5d\xa5\xa6\x2e\x5f\xf5\x65\x69\xc9\xda\x20\xdf\x96\x47\x6b\x60\x92\x01\xa9\x42\x89\x29\x27\x95\xca\x34\x30\xd3\x49\x31\x95\xa3\xa5\xa9\x9f\x35\x38\x35\x49\x59\xa4\xf8\xd0\xe4\xef\x20\x87\x16\xf0\x1b\x4c\x00\x68\x58\x4d\x66\xc4\x6d\x3d\x52\x46\xc8\x3b\x82\x99\x37\x20\xb1\xd7\x45\x2b\x90\xf4\x0d\x43\x7a\x27\xf5\x27\x6d\x8e\x4a\x66\xf7\xfd\xb8\xe8\x65\x79\xff\x7b\x0f\xe0\x55\x6c\xe7\xbb\x0d\x21\xdd\x2a\xc3\xe4\xfb\x2f\xc2\xab\xd4\xd0\xd3\x0e\x02\xb7\xa0\x04\xb8\xc9\x77\xc4\xff\xdb\x9f\xfa\xd9\x30\x8c\x53\x1c\xd5\xa9\x79\xcd\x89\x5d\x1c\x84\x69\x1a\x25\x5d\xb0\x93\x03\x3a\x07\x3f\xad\xa3\x24\xdb\x09\xae\x46\x3b\x10\x7b\x45\x2e\x03\x14\xe8\x4b\xd1\xd7\xec\x5a\x73\xa6\x95\x55\x95\x84\xe4\xd2\xc6\x65\xa2\x25\xbb\x24\x89\x1d\x57\x93\x97\x2e\x5d\xdc\xb8\xcc\xbc\x58\x0e\x1a\x16\x9a\x46\xfa\x5f\xed\x49\x3e\x6d\x3a\x97\x63\x8a\x5d\x1c\xe8\x5a\x33\xc1\xa9\x0a\xc6\xe4\xcb\x0f\x12\x91\xad\xb6\x9c\x20\x6a\xee\x44\xa7\xc8\x10\x54\xea\x18\xf2\xc4\xc3\x0b\x60\x09\x48\x70\x1c\xd4\xa4\x1d\xc7\x80\x86\xf5\x94\xab\xa7\x5e\x1f\x7b\xf1\xeb\x4f\xed\xea\xa6\x59\x0d\xac\xc1\x86\xd3\x03\x29\x6e\x6f\xa1\xfc\x43\x16\x31\xe6\xf9\x87\xff\x42\x58\x0e\xd0\x1c\xcd\x95\xe6\xc6\xaf\x66\xfe\xfa\xfa\xeb\x17\xf4\xda\x36\x96\x83\xfb\x67\x66\x81\x71\x72\xb4\x63\x28\xa3\xcb\xf5\x5d\x19\x82\xb8\xfc\x58\x71\x3b\x76\x1b\xda\x9a\x6b\xed\x94\x36\xc4\xa1\xa0\xd3\x15\x44\xc9\x8d\x28\x4a\x85\x68\xd6\xa6\xcc\x53\x06\x80\x05\xa3\x54\xce\xa5\x33\x0b\x1b\x4c\x21\x2a\x1b\x5d\x42\x88\x15\x76\xf9\xc5\xd2\xa3\x61\x7b\xa5\xda\x52\xe8\x7c\x19\xa6\x8a\x71\x4e\x45\xf7\xcc\xdd\x40\x79\x02\x2c\x3f\xa2\x4e\x4c\x2e\xfb\xb9\x3d\xd7\x72\x90\x5b\x4c\x43\xdf\xf9\x62\x2c\xb4\x19\xad\xb6\x65\x4f\x61\x3e\x6a\x81\xe1\x22\xa5\x83\x2b\x3e\xd8\x1d\xd9\xf6\xf4\x56\x68\xd7\xa4\x19\x64\xd7\xf2\xb3\xb3\x92\x39\x89\x41\xa1\x06\x4e\xbc\xc2\x76\x10\x96\x2f\x41\x2a\xd9\x25\x68\x3a\x0d\x1c\x06\x79\xe9\x01\xef\xdc\xff\xfb\x17\x5e\x34\xbd\xd9\x6d\x2f\x1f\xdd\x79\x12\xa5\x5b\xe5\x00\x28\x28\xa7\x66\x48\x97\x54\x03\xf5\xbe\xe7\xf5\xe3\xcd\xcd\xce\x46\x9e\x6d\x17\x51\x50\x64\xe3\xbc\x17\x35\x70\x6f\xd0\xe4\x80\xd1\xd4\x67\x3c\x13\xf6\x61\x35\xc1\xfa\xa3\x30\x07\x1a\xf1\x27\x13\xd1\x1d\x3f\x2a\xd4\x5a\xf8\x2f\xfe\x06\x10\xcf\x60\x84\xbf\x16\xc6\x49\xb8\x91\x44\xa6\x43\xdc\xab\xf1\xe6\x26\x9a\x30\x2c\x7a\xdc\xc1\xfa\xc5\x20\xdb\x0e\xc4\xbf\x82\xa2\x0c\xcb\x42\xa5\xbe\xd1\xaa\x49\xb2\x9b\x48\x04\x47\x88\xf9\x16\xad\xb2\xfa\xc5\x28\x89\xcb\xe0\x5a\x1c\x6d\x93\xc7\xbf\x99\x96\x0f\x6d\xc4\xb3\xea\x90\x55\x19\xa7\xf1\x66\x1c\xf5\xa9\xd2\xef\x09\x6a\xb8\x51\x54\x8c\x89\x32\x97\x48\x37\xb4\xf3\x7d\x5b\x28\x26\x03\xb7\x4e\x4b\x7d\xa0\x9d\xd6\x04\x6f\x43\xff\x16\x15\x2d\xe2\x50\xcd\x99\x7b\xdb\x8c\x97\x34\x5d\x15\x55\x29\xda\xe5\x38\xed\xfe\xe4\xe7\xbf\xc0\x3f\xc4\x0c\x28\x97\x9d\xb5\xdd\xe4\x60\x22\x07\x86\xc5\x21\x05\x6f\x31\x1e\x8d\xf2\xa8\x28\xd0\x2b\x1b\x25\x62\x84\xa9\xe2\x11\x20\x2a\x25\x32\x7a\x87\x29\x14\x1a\xad\x9e\x9e\xb0\x84\xad\x82\x1e\x40\xb0\x1d\x9c\x2a\x6d\x78\x57\xe0\x30\x13\x5c\x34\x70\xb1\x81\xa1\x94\x59\x16\x0c\xc3\x74\x87\xe5\x8d\xb5\x82\xf0\xb9\xe1\x85\x3c\x68\xf6\xb5\xe6\x59\x8d\x43\x7c\xd6\x89\x63\xed\xae\xd1\x78\x69\x00\x52\x35\xf4\x1a\xcd\x2d\xf4\x3c\x92\x35\x3b\xf4\xdf\x82\xc9\x9b\xf5\xbe\xfa\x9a\x46\xdb\x5a\x6e\xd5\xcf\x07\x90\x07\x14\x61\x65\xc9\x7e\x1e\x6e\x96\xdd\xea\xdf\x61\x09\xc8\x94\x50\x1d\xab\xcf\xa3\x3c\x52\xed\x40\x08\xc5\x05\x47\x1b\xcb\x92\xba\xc8\x72\xe1\x20\x0a\xfb\x5d\x7d\x9e\xd8\x31\xb3\x30\x93\xfc\xf3\x85\x4c\x64\x3d\x93\x10\x87\xbb\x0d\x58\x9f\x13\x74\x9f\x51\xed\x23\x81\x09\x7a\x59\x1f\xf3\x31\x4a\xa2\x22\x9f\xce\x79\x75\x68\xac\x10\x03\x0b\xfd\x5a\xcb\xe9\x0a\x2a\x54\xf7\xc1\xe2\x95\x14\x0c\x8e\x74\xda\xa1\x87\x41\xc8\xca\xc8\x64\xf1\x55\x31\xba\xe0\x42\x3a\x0e\xe9\x5b\x00\xee\x06\x96\xbe\x25\xf0\x49\x19\x5f\x21\xe9\x52\x35\xaf\x6f\xa1\x53\x9f\x53\x21\x2d\x0d\x5b\x64\xb5\x6b\x26\xe2\x86\xac\x1b\x12\xfe\x14\xf4\xa4\x72\xb0\x65\xb8\x15\x70\x9d\x37\x8a\x43\x6c\x6d\xc9\x52\x51\xfd\x1b\xd1\x5e\x5e\xb1\x2d\x73\xa6\xcd\xe7\x68\x28\x69\x68\x7d\x8d\xe9\x8f\x4c\xf4\x2f\xad\x0c\x60\x23\x6c\x63\x2b\x65\x81\x85\xac\xa4\x2c\xe4\xc0\x68\x63\x47\x1d\xe9\x2e\x25\xa2\x83\x95\xbd\xd1\x80\xd6\x51\x16\x63\x09\xdb\x26\xeb\x27\x59\xd8\x07\xed\x37\xcf\xd5\x7a\x5c\x4d\x3a\x9d\x8e\xe3\x3a\x99\xc1\x43\x4f\x16\x76\xe9\xb8\x72\xac\x21\xb9\xfa\xf7\x79\x64\x83\x34\x58\xa3\x7a\x10\x5c\x67\x64\x56\x38\xc3\x8f\x9b\x14\x55\x40\xc6\x54\xfa\x54\x9f\x12\x95\xd8\xe7\x4c\x31\x5b\x9a\x1d\x12\xd7\x1d\x0f\xd3\x54\xcf\xb2\x89\x5d\x3b\x33\xe8\x00\x44\x25\x17\x03\x84\xef\xb3\xf4\x63\x3a\x94\xc5\x9c\x30\x40\x50\x12\xb1\x72\x60\x50\xde\x6a\xa1\x5f\x70\x09\x0d\x0d\x9e\x93\x44\x39\x29\x23\x2a\x82\x54\xe5\x45\xee\xf0\x8e\x9a\x6e\xaf\x4e\x17\xd9\x7a\x0a\x28\x5b\x56\xdd\x74\x15\x87\x2b\x64\xe5\x44\x66\x11\x1b\x00\xbd\x76\xca\xe0\x8d\x56\x64\x70\x1b\x43\x34\xdc\xab\xe9\xf0\x2c\x74\xa9\x46\x16\xd6\x26\x33\x26\x42\x25\x6f\x4d\x92\xf9\x06\x1e\x25\x4b\x6a\xbb\x50\x8c\x6a\x74\x45\x68\xda\x36\x65\x73\xc4\x06\x29\x01\x58\x22\x1b\x92\x17\xba\x6e\x54\xe6\xa4\x2a\xec\x5b\x3e\xf3\xbc\xf7\xb2\x7c\xeb\x8a\x07\xee\x9f\xa2\x5b\xe9\x3e\x6a\xfb\x05\xb8\x03\xac\xa0\xde\xe6\x38\x49\xcc\xca\x5f\xcb\x44\x40\x32\x39\xd2\x8a\x2d\x61\x23\x44\x18\xfe\x48\x24\x7f\xd6\x68\xa4\x0d\x97\x1d\x5f\x4b\xa0\x73\x2a\x45\x15\x7a\x09\xc0\x2b\x84\xf9\x91\xc0\xbf\xa4\xe3\x91\xd5\x2c\xcb\xb7\x1a\x88\xb6\x0e\x37\xd7\xfa\x8e\x97\x47\xa3\x4c\x43\x83\xda\xaa\xdc\xb9\x37\x8a\xb2\x91\xa0\xf4\x7f\x04\x7c\xa8\x99\x17\xa7\xd7\xe2\x52\x48\x0f\xc3\x08\xe2\x5f\xc1\xcf\xb3\x7a\x04\xe1\xb6\xbb\x1c\xf6\xfa\x91\x05\x18\xe9\xb9\x20\x89\xbc\x24\xdb\x8e\xf2\x60\x18\x0d\x37\xc0\x89\xe8\x1b\x2b\xe9\xd9\x8c\x0a\x88\x51\x16\x71\x99\xa1\xa2\xd6\x65\x39\x9b\xc9\xa9\x0b\x56\x42\x74\xb5\x00\xd1\xd7\x80\xb6\xda\x83\x2d\x72\x03\xce\x8b\x76\x5a\x1c\x4a\x4c\x78\x2c\x2c\xb9\xa4\x11\xfe\x32\x33\x5b\xfc\xc2\x28\xf3\xdf\x4a\x28\x99\x53\x12\x0f\x51\x6d\xc2\x77\xfe\x8c\xd9\xa0\x25\x67\x65\xe2\x76\x35\x92\x20\x56\xb3\x8e\x1e\xb1\x1a\xd6\xbf\xb3\x17\xc9\x47\x3e\x99\xb5\x55\x4d\x7e\x8c\x75\x46\x51\x3e\x8c\x8b\x42\x93\xc8\x2f\x28\x3d\xd7\x11\x66\x3e\x21\x27\x5f\x24\xe3\x3a\xb4\x5a\xb1\x51\x4e\xf8\x36\x21\x4b\xb8\x67\xf0\x63\xcf\xdb\xcc\xf2\x61\x27\xc5\xb0\xe5\x22\xca\xaf\x21\xf8\xea\x44\x11\xa4\xf9\xd2\x6b\xe8\xa3\x1e\x06\x7e\x00\xf4\x20\x82\xbc\xe4\xce\x98\xc0\x81\xe9\xae\x46\x61\x59\x46\x79\xca\xbd\xc7\xbb\xd5\x7f\xb0\xa0\xff\xc5\x3d\x99\xd4\x0b\xe4\x10\xa5\xd6\x82\x4e\xf4\xb1\xd0\x93\x22\x0f\x07\x73\x07\x97\x8f\x7c\xde\xf9\x01\x90\x7a\x15\xb9\xb3\xe8\x1c\x1c\x3d\xc3\x1d\x0f\x11\x96\x1e\xd8\x50\x4a\x49\xd6\x23\x94\xdf\x2f\x25\xc4\x20\xb9\xe6\xcc\x71\xb7\x9d\xce\x53\x7a\xdc\x4f\x83\xbc\x64\x56\x5e\x14\x0a\xd4\xe6\xdd\xbf\x32\x44\x98\x81\x9f\x09\x78\x4f\x59\xbe\xb5\x22\xdc\xd3\xea\xe9\x27\xeb\x5d\xf7\x79\x22\x27\x6c\x6d\x84\x6a\xda\xe1\xc2\x6b\x61\x19\xb2\x30\x8b\xdf\x91\x10\x32\xa9\x6f\xb4\x9d\xd1\x25\x93\x5e\x1a\x7d\xd8\xf2\x96\xd8\x56\xbb\xb0\x87\x99\x4b\xed\xda\xff\x85\x58\x72\xab\x35\x62\xad\x32\x60\x14\xb2\xac\x5e\x00\x00\xf1\x98\xe2\x0c\x0e\x28\xc6\xd9\x60\x79\x66\x14\x32\x8f\xb8\x34\x8e\x2e\xf1\x19\x46\x97\x77\xc0\x6f\xe9\xf8\x6d\xa1\x52\x7a\x4a\x4f\x1b\x32\x45\xf5\xc5\x5b\x43\xb2\x53\x43\x01\xeb\x3c\xa9\xce\x16\xb4\xb4\x32\x69\x09\x4d\x6e\x0d\x69\x9d\x38\x66\x6b\x7a\xe4\x1f\xd4\xbb\xf5\xa7\x17\x54\xf2\xc4\xf9\x32\x6d\x2b\xf3\xb8\x6d\xc2\x4a\x3e\xad\x81\x76\xcd\xc4\x58\x3c\x32\x7c\xd6\xc0\x5c\xae\x5d\xa8\x90\x4d\xc4\x37\xd1\x74\x69\xaa\x3f\x32\x75\xaf\xc0\x45\x31\xfd\x06\xf8\xb4\xb2\x07\xe7\x5f\x80\x73\x7c\x02\xbf\x1f\x75\x3c\x8f\xf8\x91\x0e\xfd\x77\x10\x8f\x82\x6b\x71\x11\x6f\xc4\x49\x5c\xee\x20\x80\xfb\x21\x0a\xb3\x12\x16\xc3\xce\xd6\x3a\xb1\xa8\xf8\x4b\xaa\x4d\x04\x81\x62\x3a\x0e\xe9\xc8\x61\x95\x50\xcf\xf2\x03\x33\xad\xc2\xd7\x16\x90\xd3\xa9\xae\x97\xc7\xd7\xc0\xaf\xca\x2e\x72\x64\x17\x69\x6f\xdb\x1c\xd3\xa9\xb5\x12\x41\x9e\x25\x11\x6a\x7e\x4f\x9c\xb3\xd6\xd3\x6c\x49\xfc\x6c\xb6\xd7\x60\xf8\xd4\x77\x0c\x24\xb3\x5d\xb7\xe4\xd7\x24\x82\x14\xcc\xa8\x07\x96\x20\x80\xfa\x33\xf1\xa8\x2d\xe6\x65\x23\x32\xd1\xb1\x6f\x07\xfe\xf9\xe2\x25\xbb\xad\x34\xdb\x76\xf0\xba\x48\xcb\x05\x41\x82\x56\x3c\xe4\x71\x3b\xff\x94\xc5\x94\x2d\xf2\x7f\x98\x69\xa9\xe9\x3b\x0d\xff\x9e\xd8\x1a\x00\x95\xc0\x9f\x85\x0c\x26\x08\x0c\x45\x8c\x33\xc4\x2f\x70\x92\x52\x76\x48\xe2\x29\x8d\x0a\x6a\x47\x89\x28\x18\x8c\x5b\x5b\x54\x21\x12\x4d\xe5\x10\xcb\x21\x24\x50\xa5\x82\xaf\xd7\xcc\xc8\xb6\xde\xf0\x4e\x93\xd9\x3e\x5a\x42\x54\x89\xd5\x2c\x50\xd9\xd3\x3e\x3f\x92\x68\x50\x0b\xd4\xac\xb1\xfa\x04\x0f\x10\x04\x02\xe3\x26\x54\x12\x35\x9c\x14\xa1\xc6\x2f\x1b\xf2\x9a\x2f\x16\x9c\xf9\xd9\x3c\x41\x77\x35\x7d\x53\x1a\x90\x44\x72\x96\x90\xae\xc0\x3d\xcb\x05\x78\x1c\x8e\xca\x3f\xe4\x8e\x36\x43\x08\x46\xe3\x62\x00\x89\x62\x41\x40\x98\x2e\x00\x67\x07\x48\x62\x73\x35\x0c\xab\x34\x39\x75\xb3\x1c\x4a\xb0\xfc\x2c\xcb\x83\x0c\x77\xc0\x60\x83\xea\xb4\xde\x93\x8b\x05\x86\x6f\xf6\x94\x3d\x52\x74\x58\x62\xd3\xb0\x24\x72\x46\x76\xa8\xfa\x2e\x35\xb1\x88\xef\xc5\x12\x40\x89\x8a\xa6\xd8\x72\xcf\x42\x4c\xda\x97\x2b\x79\x47\x85\xec\xba\xe1\xf7\x1a\x1e\xb4\x2d\xd1\xb5\xf5\xdd\xea\xd4\xb0\xdd\xb0\xf6\x55\x03\xab\xe1\xb5\xb0\x66\x9c\x1c\x9d\x5c\x50\x25\x48\xff\xbb\x8e\x4d\x55\x8b\x5a\xef\x6b\x89\x8c\xfc\xd0\xd9\x32\x7d\x17\x7e\x1c\x6b\x12\x63\x82\x42\x77\x53\x2f\x27\xf8\x2e\x3d\x86\xbd\x45\x63\x08\xfb\x7d\x68\x26\x90\xcf\xc3\x67\x96\x2d\x6c\x86\x01\x64\x8a\x95\x59\x71\x6e\x6c\x84\x36\xf7\x45\x73\x5b\x71\x80\xbc\x21\xe3\xe4\xb6\xde\x4e\x93\xf9\x5a\x59\xd7\xe7\xb3\x1d\xd4\x7c\x0a\x9f\x2e\x0f\x4d\x5e\x84\xcd\xa3\xee\x1d\xe7\xab\xda\x0f\x6c\xc7\x31\x53\x1b\xc6\x44\x27\x61\x34\xa6\xbc\x42\xca\xfb\x0e\x7f\xb9\x1a\x37\xd2\xbd\x96\xce\xc0\x2d\x89\x8b\x6e\x3d\x22\xea\x5a\xfd\xbb\x7e\x2c\xd5\xdd\x79\xc9\xc0\xbf\xe6\xcb\xf7\x1d\x1e\xbc\xb6\x70\x7a\x83\xeb\x33\x9f\xbe\xbf\xe5\x7c\x99\x09\x65\x85\xf9\x5a\x81\xe1\xe4\x47\xe6\x78\x22\x1c\xda\xa4\xc5\x8f\x3c\xbe\x60\x2b\xce\xf4\x10\x95\x22\x7a\x16\x6e\x0a\x38\x23\x8c\x6c\xce\xc1\xb3\x95\x78\xa9\xc9\xc5\xcd\xf8\x74\xf9\xa3\xbf\xe6\x53\x8e\x80\x99\x9a\x78\xf3\x31\x6b\xc2\xab\xc0\x1d\x6a\x63\x17\xf8\xad\x59\x41\x4f\xb9\x32\xd1\x22\x08\x04\x50\xd0\xb6\x40\x20\xb4\x38\x98\x74\x3a\x36\x3d\x55\xe3\x72\x38\xda\xb5\x21\x95\xad\x38\x4c\x82\x7c\x20\x40\x41\x83\x5d\xd7\x83\x48\xb3\x14\x6c\x0b\xe8\x9f\x2d\x4a\xde\x43\x2b\x2e\x77\x6f\x23\x5d\xe8\x01\x21\x98\xda\x60\x57\x68\xab\x6c\xc3\xb4\x73\x25\xd3\xb6\xd2\x1a\x49\x36\xc7\xb2\x6f\x76\x3c\xef\x3d\x38\xb6\x57\xbc\x7e\x58\x0c\x36\xb2\x30\x87\x24\x59\x98\x30\x11\xe5\x1c\x33\x54\x0a\xd8\x8f\xc5\xa9\x02\xbc\x2c\xdf\x0a\xd3\xf8\x83\x90\x14\x6e\xff\xa2\x17\xd3\x5b\x45\x99\x1d\x8e\xcb\x41\x94\x96\xb1\x54\xa9\xfd\x4e\x1d\x47\x26\xe4\x7b\xa0\x9c\xd8\x72\xb1\x3e\x04\xff\xd3\xe5\xc8\xac\x52\xd5\xe4\x84\x81\xf0\x86\x59\x1a\x03\x1c\xc6\x97\x44\xed\x64\x77\x67\xd5\x23\x8f\x67\xeb\xfb\x9a\xd2\xf3\x09\xb9\x12\x12\x8b\xc9\x9f\x79\x56\xb1\x59\x75\xe4\x95\x59\x19\x26\x5d\xc4\x1d\x12\x2b\xff\x92\x7f\xbe\xef\xe9\x35\xee\x6c\x8c\xe3\xa4\x8f\xe9\xe8\xaa\xcf\x1b\xa1\x7a\x77\xc9\x63\xfe\x21\xfc\x7a\x5c\x4d\x59\xcd\x70\x34\x0a\xae\xa1\x78\x49\x09\x8d\xb4\x6b\x1a\x53\x37\xd6\x77\x59\x9d\xad\xb8\x14\x75\x0a\x58\x4e\x5e\xef\xb5\xb8\xe4\xc5\xb2\x96\x52\x59\x63\xe4\x65\x3c\x04\x29\x8e\xe2\xac\xf9\x60\x67\x8d\xc2\xd2\x31\x8a\x67\x32\x69\xa9\x50\x94\x61\x19\x17\x65\xdc\x43\xf0\x35\xc3\xb1\xa9\x9a\xb0\x82\xd9\x28\xca\x43\xad\xd1\xe5\x9e\x10\xbc\xb9\x9d\xa2\x8c\x86\xe0\x3b\x35\x2e\x54\x93\xe2\x5d\x36\x90\x83\xb5\xb7\xd7\xa9\x71\x00\x26\xae\x91\xd1\xae\xdd\xf3\xe1\xfa\x3e\x46\xa1\x40\x3b\xf9\xbd\x96\x6d\x15\x4c\xa0\x43\x25\x35\xe4\xe8\xe9\xa3\xfb\x72\x6b\x4e\x8b\x35\x5e\xca\x69\x0c\x33\x4a\x58\xde\xcc\xf5\x47\x3e\x0b\x15\x36\x8a\xb6\xc0\x27\x1d\xac\xd9\xc3\x3a\xe4\x99\x4d\xce\xd0\x1b\xd2\x29\x22\xb2\x7a\xb6\xcb\x16\xd0\xcf\x03\xca\x4b\x4b\xa6\x71\x50\xa7\x5b\xb5\xb8\x2a\xf3\xc8\x6e\x51\x79\xc2\xcd\xad\x51\xaa\x40\x1c\xe3\x57\x17\x86\x98\x35\x3f\x10\xcc\x8c\x9c\x08\x42\x5a\xdb\x23\xb0\x66\x96\x26\x15\x57\xc0\xde\x0e\xe7\xea\xac\xb8\x95\x0c\xab\xb4\xb1\x2b\x68\x42\xb7\x67\x29\x91\x0f\x6e\x71\x11\xf2\x80\x9c\x88\x26\x46\x51\x1b\x2e\xc3\xe8\x41\xe6\x9b\xb5\xdb\x3f\x95\x49\xab\xdc\x6b\xeb\xbb\x9b\xe3\x2c\x4c\x4b\x45\x84\xc0\x6f\xe8\x36\xeb\x3b\xd6\xc9\xbd\x41\x0b\x29\x35\x44\x6e\x1f\xb3\x8e\xeb\xbe\x33\x9b\xa4\xd3\x06\xd6\x4e\x0c\x74\x13\xc5\x76\x5c\xf6\x06\x1a\xb8\xd4\x00\xe3\x77\xd6\xc8\xc7\xa9\x0c\xbd\x03\x93\x16\x2b\xd4\x4b\xa2\x30\x0d\xc6\xe9\x46\x9c\xf6\x83\x4c\x3c\x5e\x0d\x09\xeb\x8c\xc5\xf7\x5b\xc6\x8f\x5f\xbe\xfc\x6e\x39\x58\xd8\x1a\xb7\xf0\x2c\x68\x66\x5c\x0e\x2c\x3f\xfb\x06\xc4\x9b\x21\x9f\x80\x8b\xa9\xea\x96\x44\x9e\x38\x85\x78\xae\x50\x6b\xfb\x8b\x26\x3a\x0f\x62\xe9\x89\x4d\xd3\xd0\x09\x86\x31\x91\x9e\x5a\x7d\xb7\x14\xc4\x05\x22\xea\xad\xd4\x2f\x83\xbb\xf9\xde\x1d\x5a\x13\x6f\x08\x66\x8d\xf1\x00\xe3\x29\x58\xd0\xf8\x5a\x54\x38\xcc\x15\x52\xd3\x2e\x68\x4d\xfd\x11\x0c\x68\xde\x26\x1f\x4c\xab\x83\x25\x1d\x34\xa6\xaa\x5a\x45\xf6\xd3\xd9\x66\xab\x19\x6f\xe9\x26\x83\x78\x92\x6e\x21\x63\xbc\x68\x72\x06\x39\xf4\x5b\xb4\x64\xe0\x35\xd7\xce\xb6\x9e\x8a\xef\xa6\xa7\xac\xc9\x74\xb8\x06\x65\x2f\xc8\x77\xec\x17\x80\x4d\xcc\xbe\x57\x5e\x2b\xc1\x32\x6d\xf5\xe4\x1a\x35\xe1\x0c\x35\xff\x52\xef\xf9\x90\xe6\x60\x17\x59\x86\xf6\x87\xb3\xbe\x5b\x7f\xd4\xd2\x03\x07\x8a\x93\x6c\xd1\xc4\xd1\xac\xdb\xc4\xc3\xda\x6f\x98\x37\x99\x6c\x2b\xd1\x40\xf5\x10\xf2\x08\xb2\x1c\x85\x49\x12\x14\xc5\x00\x03\x70\x24\x4d\xe4\x89\x9c\xe5\x22\xfa\x7f\xfd\xcf\x4e\x51\x0c\x2e\x0a\xb2\x94\xe5\xf1\x07\x11\x84\x87\x14\x7f\x3d\xf1\x9f\x53\x5a\xe7\x1b\x52\x01\xfb\x12\xd2\x3d\xe4\x87\x58\x2c\x90\x8e\xdb\x84\x60\x5e\xd0\xdc\x88\xd5\x7f\x7e\xe1\xc0\xac\xb0\x4d\x87\x21\xf7\x89\x39\x70\x94\xfc\x0f\x34\xf0\x27\x05\x3d\x5b\x71\x5f\x2d\xcb\x41\x19\xb1\x9a\x60\x4a\x0b\xd2\x3d\x31\x78\x9b\x51\x1e\x5d\xc8\xa3\x5e\x14\x5f\x8b\xd6\x7c\xd4\x2e\x0a\x81\x7b\x94\x15\xa5\xfc\xdd\xce\xda\xbe\xfc\xc0\xd8\xc3\x6b\xdc\x12\x89\xf7\xf3\xc3\xf5\xde\xee\x2b\xf0\xc4\x58\x99\xf9\x92\xc8\x6b\xf3\x6e\xe5\x51\x9c\xc6\xa5\x4d\x87\x84\x30\x38\x23\x47\xfb\x19\x3e\x38\x76\x92\x2e\xe5\x44\xd0\x4a\x0f\xf8\x91\x42\x33\x9e\x93\x0e\x2c\x19\xcc\xea\xf4\x67\xc5\xfe\x1a\x74\xe7\xc6\xe2\xc9\xe2\x8a\x71\xe9\x23\xca\xaf\x45\x79\x30\x1e\xd9\x82\x17\x5c\x6b\xcc\x2b\x79\x03\xcc\xc3\x0e\x28\x4c\x23\xcb\x2d\x97\x69\x7a\xe3\x3c\x8f\xd2\x32\xd8\xca\xf2\x6c\x5c\xc6\x69\x84\x20\x53\xc7\xe0\xcd\x38\x03\x61\x86\x3e\x14\x8e\x5a\xc3\x68\x98\xe5\x3b\xc1\x18\x93\xbf\xeb\x8a\xd3\x16\xaf\xae\x4a\x25\x02\x9b\x88\xa1\x83\xf5\x4f\xb7\x0a\x12\xb3\x6c\x33\x4c\xc0\xa3\x06\xb0\x60\xa5\x08\x6d\x54\x44\xc2\xc6\x13\x4f\xeb\x96\xa8\x8d\x6c\xa3\x0c\x31\x59\xf5\xd7\xbc\x9e\x7b\x60\xbc\xfe\x28\x83\x64\x4a\x41\x92\x65\x57\xc7\x23\x10\x75\x0b\x03\x77\x01\xdf\x7a\x06\x11\x44\x28\x2c\x8d\x21\xc8\x69\xc8\x36\xee\x19\x63\xc6\xdc\x44\xce\xc5\xa0\xfa\x9b\x79\xa4\xea\xde\xa7\x00\x92\x87\x40\x5f\x0f\x97\xb5\x20\x37\x69\x10\x85\xa3\xa7\xdf\xa2\x63\x04\x2d\x62\xed\x41\x3b\x8e\x95\x95\xda\xd4\xa9\x8c\xee\x43\xc7\xbc\x53\xc3\xdf\xa1\x75\x94\xbc\xd5\xb8\x9f\x44\xc4\xe3\xb6\x04\x45\x7e\xbf\xe6\x21\x66\xb3\x5b\x7d\x81\x53\xb3\x4f\x13\xbb\x31\x86\xba\x85\x37\x41\xbe\xb7\x7d\xf7\x66\x7c\xc7\xd9\x67\x1b\xff\x14\xf5\xca\x42\xdb\xcc\x8f\xa5\xeb\xfb\x53\xb6\xb6\x91\x65\x65\x51\xe6\xe1\x28\x28\x4a\x04\x0f\x82\x4d\x77\x64\xb1\xe2\x90\x7b\x53\xe4\x34\x1e\x6b\x1f\x62\x15\xbf\x6f\xe8\x3e\x7a\x57\x5d\xbb\x4f\xe3\x00\xe5\xb2\x02\xe5\x43\x13\x09\xf9\x99\x50\x1f\xfc\x6c\x17\xa3\x30\x0d\x8a\x32\x1f\xf7\xca\x71\x1e\x15\xab\x0d\x14\xc6\x76\x0c\xba\x9b\x1b\xfe\x9b\xeb\xa3\x30\x5d\xd4\x64\xfb\x09\x5d\xde\x56\x2f\xec\x0d\xa2\xef\x39\xbe\x57\x44\x1b\x0b\x1b\x7d\x9a\x11\xda\xad\x8d\xf2\x6c\x33\x4e\xc4\x6b\xb5\x31\xee\x5d\x8d\xca\x60\x10\x16\x83\xa0\x0c\x37\x92\x88\xb5\xfb\xaf\xe2\xb5\xb9\x00\x1a\x00\x54\x13\x7d\xcc\xad\x1f\x53\xed\xde\xa4\x3c\x04\x3e\xa4\xcc\x36\x0c\xa4\xd3\x38\x61\x5b\xbd\x60\x18\x95\x21\xc4\x34\xb6\x8c\x1f\xad\x2d\x00\x4d\x68\x80\x9d\x49\x76\x19\x78\x73\x9b\xb7\xe5\x12\x77\x39\x88\xf2\x80\xd4\x76\x44\x3e\x85\xfc\xbd\x88\xe4\x98\xe6\x77\x43\xe5\x0b\x71\xf9\xab\x12\xdd\x34\xba\x4e\x1c\x79\x6f\xa7\x07\x89\xc0\x50\xa5\x4b\x32\xc5\x04\x7d\xd4\x6f\x51\x0f\xc7\xa8\x64\x5f\x69\x56\xa0\x2a\xde\xea\x91\xd6\x14\xc3\x10\x3f\xc1\x38\xa8\x5d\x86\x42\x0d\xda\x63\xa5\xa8\x7f\x28\x19\x7f\x77\x9b\xf8\x5e\xaa\x46\x3f\x97\xa1\x19\x18\x65\xc8\x30\x30\xfd\xd7\x5e\x71\x55\x1b\x85\x40\x0e\x79\xbd\x89\xcc\x53\x2d\x63\x96\xc4\x94\x8c\xda\x72\x22\x54\xd9\xd0\x7b\xd7\x77\xf1\xda\x4f\x20\x10\x61\xf5\xc5\xa1\x29\x90\x7b\xbc\x19\x88\xc8\x16\x02\xb4\x6e\xbc\x05\xb4\x42\x74\x00\x26\x7b\x18\xa6\xe1\x56\x14\x8c\x42\x40\xa7\x58\x66\xbf\x58\x10\xb6\x56\xcd\xa8\xd9\x34\xda\xd6\x0e\x8f\x4e\x6f\x7a\xf0\x8e\x30\x14\x2e\xb2\xaa\x8e\x5e\xa3\x5f\xa4\x72\xa3\xcf\x61\x74\x38\xc4\x15\x15\xeb\x0f\x63\xb0\x77\xb4\xf8\x42\x50\x31\xc6\x2f\x37\x8d\x27\x58\x04\xe3\x01\xfa\x6c\xe4\xc0\xe3\xe0\x47\x00\x49\xcb\xa3\xad\xb8\x28\x29\x8d\xcc\xe6\x8e\x0b\xc2\xb7\x35\x41\x8f\xcb\x8a\x02\x52\x16\xf2\xb5\x8f\xd8\xb8\x3f\x66\x83\xc2\x40\x47\x8e\x24\x80\x12\x95\xd2\xdb\xe8\x03\x48\xe6\x5c\x27\x82\x00\x87\x51\x12\xe2\x2c\x36\xbe\x2c\xf2\x93\x56\x18\xf4\x69\x14\xfd\xfd\xb9\xa9\x65\xf5\xc5\x36\x2a\xbc\xbf\x19\x50\xc3\x63\x6b\x0a\x82\x1e\x25\xdd\xea\x8f\x14\x5d\xab\x02\xe3\x78\xf3\x49\xb6\x15\x4b\x2d\xe5\x1f\xe1\x6e\xcd\xaa\x33\x15\xb5\x39\x69\x1a\xb3\x54\xeb\xa3\xb0\x28\xb6\x01\xa5\x46\x05\xd2\x91\x19\x5c\xba\x94\x52\x38\x90\x90\x33\xd6\x0c\xa0\x54\x6d\x30\x9f\x49\x64\x6f\xc8\x13\xdc\x08\xe5\x94\xeb\xa5\x33\x4f\x53\xc4\xb3\x4c\x39\xad\x5f\x02\xe9\xe5\x38\x55\x00\xfb\x86\x4e\xcd\x56\xf3\x36\xb4\x6a\x7a\x63\xf4\x4d\xfa\xbc\xe1\x28\xbe\xa0\x0b\x6a\x61\x18\x5e\x47\x7d\x19\x9c\x6a\xb0\x4e\xdd\x47\x80\x1c\xb8\x22\x0c\x57\xf5\xd4\x81\x2d\xb0\x20\xc8\x99\x9d\x24\x03\xa6\xb6\x4d\x8b\xd7\x32\x1c\xb4\xf3\x3f\x57\x7d\xa3\xd2\x26\x69\xc7\xa1\x0b\x2f\xb0\x78\x5d\x77\x18\xa3\x4e\x3f\x02\x14\xe6\x06\x2d\x05\x8c\xfa\x11\x28\xc2\x1f\xda\x93\x31\x00\x65\x75\xb2\x34\xf2\x67\x7d\x9e\x06\x1a\x17\x01\x23\x3c\xe8\x86\xb0\xe8\xb2\xb5\x68\x57\x27\xf2\x74\xe6\xd9\x20\xde\x88\x4b\x3c\xe0\x42\x98\xf9\x88\x58\x3c\x65\x00\x93\x81\x30\xed\x67\x46\x02\xbc\x4e\x41\x08\x39\x63\x23\x45\xda\xf7\x8d\xf6\xf8\x59\xd8\xce\x53\xe6\xfc\x92\xf7\x13\x52\x20\x6e\xc5\x65\x80\x88\x5a\x4e\x03\x36\xba\x38\x2a\xd7\x3b\xd9\x01\x27\x3c\xd0\x35\x44\x32\x3a\xb1\xaf\x8c\xde\xe2\xe1\x28\xcb\xc5\xa2\x01\xe5\x78\xba\x1e\xe1\xd7\x27\xf0\x88\xda\x61\xa2\x98\x1f\x9b\xd1\xa0\x36\x2d\x85\xf3\xbe\x3b\x3c\xdc\x9e\xac\x7a\xf1\xa9\xc1\xc5\x71\x0e\x32\x87\xb9\xd6\xc9\x43\xf0\x19\xf7\x73\xa5\xc7\xa8\x8c\x93\x24\xc8\xb6\x53\xf2\x8d\xf8\x0a\x33\xc5\xca\xdc\x03\x16\x72\xd0\x54\x69\xf4\xe0\x00\x69\xba\xa7\x24\x44\x04\x72\x95\xe7\x40\x30\x0c\x08\xb8\x0e\xc2\x54\xab\x0b\x85\xed\x2d\x71\x80\x59\x24\x34\x6c\x28\x8f\xa8\xc0\xed\x22\x98\x05\x2b\x8f\x1e\x70\x6f\x1d\x63\x6e\x83\xb0\xc0\x98\xc4\x15\x6e\xa0\x31\xb9\x46\x58\xa8\xf2\xfe\x9b\x63\xa6\xb5\xb6\x99\xd2\x9e\xb9\xbd\x25\xfd\xea\x33\x9d\xef\x74\xce\x23\xd2\x28\xad\xdb\x13\xe5\x59\x7e\x5b\xc2\x7d\x1b\xc8\x84\x46\x92\x7a\x77\x54\x49\x87\x9f\x11\x23\x58\xf7\x9b\xf6\xc9\x2f\x50\xcd\x57\x93\x73\x9e\x97\xe5\x94\xd3\xc4\x64\xf6\xbe\xb1\xf9\x3b\x08\x20\xd7\xce\xb4\xc0\xd3\x41\x5d\xce\x97\xc1\x0f\xce\xa8\x4c\xf8\xb2\x20\x28\x13\x5d\x58\x80\x09\x7b\x5a\xb6\xb3\x2d\x8d\x11\x35\xd9\x12\x36\x80\x1f\xf9\xe0\xf1\x97\x05\x21\x0f\x58\x60\x3b\x2c\x7b\x03\xf4\x83\x41\x39\xe6\x6e\x7d\x93\x3e\x15\x65\x28\x66\x77\xaf\x69\xa6\x97\x83\x71\x81\xa2\x52\xdd\xf8\x03\x99\x39\x16\xf1\x4a\x3c\xf0\xd8\x31\x98\xab\x82\xc0\x01\x05\x6b\xb2\x88\xab\xc2\x8a\x69\xb4\xdd\x16\xab\x80\x5c\xb6\x65\x0f\x97\xd5\xd8\x92\xe0\x2f\x0c\x96\x90\x7e\x89\x52\x21\x15\xf7\x79\xc6\x75\x54\x17\xe2\xe7\x7e\xb4\x19\x8e\x13\x0c\x69\x12\x7b\x76\x0a\xe4\xf9\x96\x04\x18\xa0\x52\x0b\x42\x84\xd9\xcc\x0d\x4c\xc4\xe5\x93\x86\x3a\x06\xb8\xf3\xf2\x3a\x45\xd4\x1b\xe7\x71\xb9\x23\xc8\x78\x99\xf5\xb2\x44\xf2\x6b\x60\xcc\x17\x63\x97\x31\x61\x73\x95\x9a\x57\x26\xef\xa4\x09\x37\x20\xfe\xf0\xf7\x41\x56\x94\x5d\x88\x85\xda\xad\x6f\xd2\x6f\xe2\xdd\x42\x19\xef\x86\xfa\x0d\xcc\xd2\xfd\x54\x1d\x3a\x34\x43\xc3\x86\xbd\xfa\x0b\xb3\x8c\x19\xf2\xbb\x52\x62\x69\x0c\xf7\x34\xd2\x37\x72\x96\xea\x58\xf9\x91\x57\x8b\x93\x48\xab\x64\xe5\x84\xd3\xff\x92\xff\xea\x2f\xdf\xfc\x3f\xcf\x17\x7c\x80\x92\xd9\x76\x4d\x05\x16\xef\x06\xb6\xee\xaa\xa3\xa7\x56\x51\x1e\x41\x24\x3c\x2f\xf9\x3c\xef\x95\x6a\xc2\xcc\xcc\x29\xd3\x64\x9c\x61\x86\x05\x73\xb3\x18\x82\x78\xc7\x77\x2b\x43\x8f\xe4\x3b\xb8\x8f\xbe\x28\xd5\xfc\x82\x42\x26\x9b\x51\x06\x7f\xd3\x3a\x0e\x39\xfc\xdb\x5f\xe2\x8e\x3c\xe6\x42\x92\xde\x00\x84\x89\x4f\x51\xb3\x6d\xec\x85\x4a\xd4\xd0\x06\x42\xce\x5a\xe9\xa7\xdd\x57\x7f\xb1\xac\x64\x58\x96\x79\xbc\x31\x2e\x23\x86\x73\xfe\x3b\x72\x42\x7e\x08\x06\x42\xf9\x7b\x6b\x05\xd3\x39\x74\x75\x71\xa9\xed\x00\xca\x60\xf3\x96\x81\xab\x28\x74\xa7\x98\xdb\x69\x0c\xd3\xba\xde\x6c\x6a\xd5\xa4\x51\xb8\x18\xd3\x1a\xfc\x85\x52\x71\x9c\x20\x6f\x2f\xea\x2d\xae\x39\x0c\xe3\xa4\x5b\xfd\x17\xec\xfd\xb1\x0a\xba\x3d\x53\x7a\x58\x98\xf9\xa4\xbd\xa5\x6b\x51\x1e\x6f\xee\x04\x5b\x79\x36\x1e\x05\x3a\xee\x8f\x9c\x00\x91\x16\xc1\xc3\x6e\x38\x81\x4b\xff\x6a\xa9\xa9\x11\x67\x5a\xbf\xbb\x53\x6a\x1b\x1b\x25\x7f\x5e\x48\x3d\xde\x4f\xbb\x3f\x09\x8b\xc8\x17\x07\xc4\x75\xbc\x98\xef\xad\xd1\xc6\x66\x9c\x94\x62\x97\x79\xc0\xe2\x01\x4a\x0a\xc4\xb5\x02\x08\x0e\xaf\xa2\x97\xa8\x97\xa5\x65\x88\x26\x80\x3c\x48\x00\xe9\xc3\x3c\x6a\xbc\xdb\x35\x2b\xf7\x85\xf4\xbf\xdd\xe5\x0e\x60\xad\xbe\x5f\xfc\x1e\xe8\x01\x88\x3e\xa3\x7e\x10\xa7\xb8\xcc\xad\x92\x00\xac\x02\x28\x29\x8d\xf3\xa2\x01\xbc\x51\x01\xa9\x53\x91\x91\xbb\x5d\x73\xe5\x55\xdf\x85\xe8\x55\xd0\x2f\x14\xbf\x31\x01\x26\x93\x9a\xcd\x83\x89\xbe\x66\x3a\x8f\xc1\x4f\xe2\xb4\xaf\x69\xbb\xdc\x84\xbf\xe8\x15\x5f\x7a\xcd\xc1\x2d\xde\x59\x71\x91\xc4\x86\x95\x87\x42\x32\x0c\x8a\xb0\xfb\x66\xe1\xbf\xdc\xf7\xd7\x5f\x96\x2f\xe1\xb0\x1c\x05\xe8\x6b\xb5\xfc\xc5\xf5\xd7\xdf\x7c\xe7\x2d\x56\x11\x1f\xbb\x6f\xaa\xc7\x62\x9c\xf6\x47\x78\xf5\xc4\x6f\x17\xa4\xe4\x25\xe7\x41\x69\xf4\xf0\x09\x2d\xcc\xe4\xf9\x53\x9d\xe2\xf6\x50\x3e\xad\xea\xfc\x5a\x35\x57\x52\xef\x18\xe4\xea\x0c\x23\x86\xb9\xce\x83\xc5\x69\xb0\x0e\xf1\xcd\xb0\x12\x52\xe9\x02\xd2\xae\x84\x2c\xff\x19\x25\x2d\x91\x9e\xf0\x0a\x18\x50\x2a\xf2\x51\x58\xbf\x8b\x03\xaa\x66\xfe\xb3\x6b\xcf\x76\x0c\xbe\x2a\x28\x93\xc2\x66\xad\x40\xa7\xf3\x89\xd8\x02\x2b\xd9\xd7\x3b\x6f\xac\xcb\x65\xbe\x1a\x8f\x44\xd5\x00\x09\x8f\x4c\x43\xa6\xb0\x6e\x98\x40\x4a\x46\xeb\xe3\x7a\x8f\xd5\x1f\x85\xc3\xa0\x88\xf2\x6b\x71\xcf\x24\xb1\x3a\x09\x60\xbd\xef\xbf\xf5\xf2\x9b\xe6\x58\xc3\x71\x99\x29\xb5\x27\x1f\xf5\x62\x3c\x6d\x7c\x3d\x1d\x04\x5f\xb1\x87\xa8\x7a\xd4\x9a\xad\x19\xe7\x21\x26\x14\xa0\x78\x43\xa6\x4a\x3c\x93\x32\xe6\x0a\x2c\xa2\xad\xbd\x69\xaf\x83\xaa\x45\xb7\xfa\xc6\x60\x75\xe9\xd2\xac\xd0\x5e\x13\x95\xa8\xe9\x96\x7a\xca\xdc\x52\x29\x71\x54\x1b\x13\xdd\xd4\xfe\x4a\x30\xbc\x89\xc4\x9d\x5b\x74\x85\x97\x69\x82\x3b\x06\xaf\xbe\x10\x15\x63\xd5\x5d\x70\x75\xc7\xb9\xb8\x7a\xdf\xec\xd4\xa5\x54\x69\x9e\x81\xe5\xdb\xbe\x24\xeb\xf5\x8a\x2b\x66\x34\x16\xa0\x84\xd2\x02\xbe\xf0\x94\xc7\x92\x37\x69\x25\x7b\x5d\x71\x33\x5b\x62\x04\x65\x84\xe0\x1e\xdd\x7a\x72\xd6\x24\xb4\xb8\xe5\x18\x61\x44\x5d\x40\xeb\x12\x4b\x88\x66\x3a\xe9\x06\x35\x91\x5c\xac\x84\x9c\x65\x99\x0a\x0e\xc9\x97\x09\xe0\x7a\x31\x59\x6b\xab\x37\x42\x23\xb2\x70\x81\x50\x22\x3e\xae\x35\x92\xba\x4b\x35\x12\x66\xe6\x90\xc9\x00\x35\xee\x23\xe0\x8f\xd1\x50\xdc\xdc\x06\xbc\xd5\xd2\x04\x3a\x47\x44\x43\x78\x0f\xd9\xbd\x3c\x30\xec\xa2\xf5\x5e\x87\x6f\xa4\x05\x10\xbc\xd2\xfe\x2d\x44\x58\xc3\xb6\xd1\x0a\x42\x38\x98\x84\xad\xd6\x30\xb8\xe8\x31\xd2\xf5\x5e\x80\xa6\x46\x7c\x5d\x5c\x0e\xc6\x1b\x41\x38\x8a\x83\x28\xed\x83\xa7\x0e\x2a\x70\xce\x80\xa7\x21\x1f\x3d\xec\x44\x6c\xf3\xcb\x6f\xfd\xdc\xa3\x50\xa1\x4e\x9a\x95\x41\x11\x95\xdd\xe7\xf0\x3d\xd5\x79\x52\xe7\xcf\xcb\x22\xe4\x66\x25\x63\x8b\xa0\x61\x98\xfb\x23\x80\x77\x52\xa4\xd1\x74\xa8\xa2\xca\x1b\x79\x98\xf6\xdb\x20\xb3\x1e\xe2\x79\x06\x28\x61\x2a\x9f\x8f\x91\x1f\x35\x1c\xcb\xdb\xb7\xfa\x94\xd7\x1b\x02\xb2\xe8\x9f\x00\x8c\x76\x46\x19\xc8\x0c\x3f\x4f\x1d\x22\x45\x93\xea\x44\xd7\x4b\x21\x34\x25\x90\x18\x0a\x24\x57\x99\x46\xef\xc8\x7f\xf7\xed\x37\xac\xd2\x4d\x45\x81\xf9\xbd\x55\x03\x61\x95\x1b\x94\x82\x51\xeb\xf7\xf3\xee\xeb\xef\xbc\xf3\x16\xb0\x7c\xc0\x32\xed\xba\xca\x19\x1a\x07\x5f\x54\xb0\x4a\xf5\xa2\xbc\x24\x30\xdf\xbf\x90\x4b\x2a\xee\x85\x71\x48\x6f\xea\x35\xa6\x7a\x57\xa3\x1d\xab\x9a\x86\xfc\xb6\x8a\x0a\xbe\x44\x30\xac\x2a\x12\xea\x4b\xa9\x60\x35\xe1\xaa\x0f\x58\x80\x94\x60\x4d\xcc\x56\xc6\x69\x7c\x3d\x28\x32\xf0\xce\xd0\x11\xa1\xdd\x77\xd3\xf8\xba\x8f\x3f\xfb\xfa\x67\xab\x2e\x98\x0a\x82\x3c\xcb\x4a\xd8\xaa\x37\xc4\x9f\xbe\xf8\xd3\xb1\x4d\xd9\xe6\x66\x12\xa7\x11\x9d\x07\x8a\x94\x43\x45\x02\x87\xec\x84\x43\x62\xef\x70\x5c\x00\x5f\x94\x67\x63\xf4\x76\xdb\xea\xbe\x8a\x3f\xf9\xf8\x93\x9f\x64\x5b\xf6\x19\x42\x56\x6a\xeb\x03\x94\x0e\x4d\x0e\xea\xb5\x0f\xe2\x91\x55\x3e\x1c\x8d\x02\x70\x17\x19\x85\xe5\xa0\xfb\xf2\x68\x94\x50\x54\x9f\x2f\x7e\xf5\xc5\xaf\x8d\xc9\x87\xfd\x20\x2c\x8a\xa8\x2c\x82\xcd\x3c\x1b\x06\xfd\xb8\xb8\xda\x7d\x23\x0b\xfb\x3e\xfe\xea\x8b\x5f\x7d\xf1\xab\x5d\x33\x4c\xfb\x71\xba\x85\x6b\x86\xff\x86\x05\x53\xc5\x8a\xc1\xd2\x8b\xbd\xbe\xfe\x3a\x2b\xae\xb4\x87\x3f\xc5\xff\xf2\x4f\x74\x3f\x7e\x7a\x7d\x94\x15\x51\xdf\xc7\x3f\x79\x01\x38\xcb\xf2\xb3\xf8\x83\x7f\x84\xcd\x85\x35\x79\x5b\xec\xab\xb1\x0e\xc5\x40\x1c\xd7\xad\x28\xc5\x02\xff\x3b\xfc\xdb\x55\x24\x80\x44\xb8\xb2\x90\x2f\xfe\x6a\x14\x1b\xc6\x69\x3c\x1c\x0f\x11\xc5\x3f\xfe\x20\x0a\x7a\x83\xa8\x77\xd5\x4c\xfc\x8b\xbe\x19\x8d\x53\x3e\x47\xf4\x87\x13\x44\xfe\x76\x5d\x18\x47\xfb\x85\xe3\xbe\x48\xe3\x94\x52\x18\xb7\xb6\x96\x47\x04\x7b\x62\xfa\x97\x07\x61\x19\x14\x65\x98\x97\xdd\xb7\xb1\x80\xff\x8c\x55\xe2\x19\x3f\x2c\x7d\x28\xc2\x9b\x83\x1f\x82\x8d\x71\x9c\x94\xe2\x2d\x82\x63\xd2\x5d\x17\x3f\xfa\xf4\xa3\x8f\x3f\xf2\x4a\x20\xa8\xa7\x01\xc8\x88\x6f\xc0\xbf\x7d\xf1\x6f\x47\x11\xd8\x61\x2a\x62\x6f\xb0\x7c\x48\xe2\xd1\x20\xca\x8b\xee\x3a\xfc\xe9\xd3\x9f\xea\x48\xa2\x19\xb9\x25\x90\xb5\x2d\x88\x80\x57\x5e\x74\x90\xe0\x3b\x22\xe5\xa3\x6e\x7a\x1d\xfe\xed\x8b\x7f\x1b\x65\xc2\xb4\x88\x83\xde\x20\x2c\xc5\xe3\xf8\xf2\x2f\xd6\x7f\xee\xf7\x06\x61\x5e\x44\xa5\x51\x6a\x33\x13\x2f\xb9\x34\x3a\xfc\x4c\xfc\xe5\xd3\x5f\x46\xb9\x61\x78\x5d\x5b\xc6\x93\x78\x18\x97\xdd\x37\xc3\xeb\xbe\xfc\xc9\x87\x9f\x8c\x1a\xa3\x3c\xda\x8c\xf2\x3c\xea\x07\x49\xdc\x8b\xd2\x22\x2a\xba\x6f\xc9\x9f\x7c\xf9\x93\x51\x43\x92\x2e\x78\x34\xb6\x84\xf4\x75\xaf\xde\xb7\xa8\x11\x3c\x37\xaf\x59\x5d\x11\xfd\x42\x0a\x2b\x16\x2b\x18\xc6\x5b\x18\xe2\x45\x97\xdc\x87\x6f\xb0\x90\xbe\xfa\xe6\x6a\x23\x0f\x11\x56\x3e\xc8\xa3\xb4\x1f\xe5\x48\x81\xa9\x8d\x3c\xdc\xf6\xc5\x37\x1f\xbf\xf9\xe2\x9b\xd1\x06\x46\xc4\x16\xc1\x66\x54\xf6\x80\x2a\xa1\xbb\x6e\x6f\xa7\xfb\x0a\x7e\xf1\xe1\x8b\xcf\xbe\x98\x63\xe8\xc7\x65\x96\x77\x80\xf4\x6f\xe7\xe1\x28\x10\x8f\x7b\x5a\x40\x38\xec\x4f\xe1\x9b\x2f\xbe\xf9\xe2\x9b\xaf\xbf\xb9\xda\x20\xb0\x69\x98\x13\xcc\x47\x0c\x56\xb5\xc2\xbe\xe2\x8c\xe0\xab\xd1\xce\x78\x24\x68\xb6\xa2\x95\xef\xc2\x9f\x7e\x64\x92\x4c\x5e\xb2\x8c\x86\x23\x3c\xb3\x54\x56\xfc\x90\xe5\x61\xbe\xd3\x3c\xbf\x54\x45\x6a\x50\xc4\xd9\x2d\x64\x35\xfa\x11\x0e\xb4\x73\x48\x38\x9d\xf0\x3a\x50\x26\x59\x0b\x66\x21\x7e\x70\x9c\x44\xaa\x27\xaa\x20\xe6\x3e\xab\x53\x50\x79\x59\xa1\xbf\xb1\xf4\x35\xc1\x00\x61\x0c\xf6\x57\x01\xc2\xba\x3e\x9a\xab\xde\x61\xd7\xb1\xbf\x81\x86\x98\xd7\x19\xc1\xe9\x6f\xa0\xa1\xeb\x17\xe1\x90\x97\x03\xc6\xf1\xdd\x42\xd3\xae\xfe\x46\xa7\x28\x12\x3c\x86\xeb\xeb\x6f\x18\x67\x8e\x7d\x93\xca\xa7\xe7\x36\xb3\xdc\x7f\x66\x94\x15\xe5\x56\x1e\x15\xcf\xf8\x59\x9a\xec\x3c\xcf\xca\xc3\xfe\xbc\xc5\xb6\x83\x7e\x33\xeb\x17\xbf\x4a\xe2\x32\xfa\xd1\x33\x58\x5b\x3f\xc8\x64\xa6\xa2\x05\x5a\xa7\xbf\x7d\xfc\x7b\x6c\x5e\x2a\x59\x9a\x44\x86\x3c\x22\xbc\xb5\x7e\xb8\x53\x74\xdf\x10\xbf\xf9\xf2\x37\x5f\xfc\xd6\xa8\xd7\xcb\xb2\xab\x71\xa4\x2b\xc2\x72\xbd\x2d\xab\xe0\xd7\xb6\x4a\xca\xf2\xf0\x2e\xfd\x63\x49\x79\xf8\x5b\xdd\x73\xfc\xab\xad\x4a\x1e\x09\x1e\x12\x7c\x2e\xae\xef\xa0\xb8\x0c\xbb\xf6\x36\xfe\xee\xc3\xef\xbe\x89\x76\xe0\x23\x46\x7f\xa3\x2d\x45\xb8\x40\xaa\x82\x70\xf6\x00\xbb\xd5\x74\x4b\xac\x14\x7e\x6a\x1b\x91\xa3\x3a\xae\xd6\x1b\x8e\xca\xb2\x76\x34\x0c\xe3\x44\x6e\xe5\x4f\xc5\x1f\xee\x7d\x84\x72\x6d\x2c\x13\x7e\x2c\xc6\xe0\xec\x1e\x08\x8a\x1f\x5f\xef\xae\xe3\x9f\x3e\xfe\x69\x16\x6d\xdc\x03\xfc\x59\x30\x7f\xdd\x9f\xe5\xd9\xd0\xfc\xb9\x71\x1b\xf0\x67\xf5\x4e\x44\x49\xa6\x98\xdb\xd7\x7f\xfa\xc6\x2f\xad\xbe\xa2\x24\x83\x07\x1f\xd6\x42\x7c\xf7\xe5\x5f\xd6\xf8\xaf\xc6\x23\xa9\xb4\x5c\xbf\x1a\x8f\x7c\x21\x8f\xc4\x9b\x62\xef\x22\x1f\x7f\x6f\x8c\x2b\x60\x65\xc4\x10\xfd\xde\xb8\x28\xb3\x21\xaf\x6a\xd6\xd1\x32\xce\x2b\xac\x75\xf1\x83\x59\x4e\xc9\x34\x82\xf9\x6b\x7e\x16\x5d\x8f\x92\x30\x4e\x83\x32\xba\x5e\x42\xcf\xf0\xa7\x2f\xfe\x34\x8b\x86\xfd\x3e\x2b\x1a\x84\x49\xd9\x7d\xb9\xdf\x67\xc5\xfd\x30\x01\xd9\xb1\x8c\xaf\xd9\x2b\x12\xa5\x7d\xe4\x43\xc1\x08\xb5\x1e\xa5\x7d\x64\x44\xe1\xb3\x59\x56\x15\x0b\x36\xc3\x58\x9c\x91\x9f\xc1\x7f\xfc\x32\xf3\x0b\xb3\x9e\xf8\xe9\xd9\xf3\xc5\xb3\x2f\xf9\xe7\xaf\xb5\xb5\x51\x44\x69\xd9\x7d\x47\x57\x19\x84\x85\xbf\x11\x45\x82\xa5\x4b\x4b\xd9\x40\x47\x9d\x62\xb8\x7e\x74\x88\x5f\x36\xaf\x9c\xf3\x34\x8b\xf2\x4a\x01\x0b\x89\x3c\x82\x04\x82\x81\x5f\xa6\xdf\x7c\xf1\x9b\x0f\xbf\x19\x75\xf2\xa8\x10\x32\x9f\xb4\x14\xb3\x9a\x6f\x8b\x2f\xbe\xfc\xd2\x5e\xff\x57\xe3\x38\x8f\x02\x76\xed\xf2\x61\xf7\x6d\xfc\x95\xe6\x4a\xbf\x36\x07\x2c\x2b\x17\xf1\x56\x1a\x08\x21\x36\x8e\xb6\x55\x5d\xf1\xa3\x1f\xa7\xbe\xf8\xd1\xa8\xa5\x24\x41\x50\x8e\x13\x3b\xa4\x64\x41\xf6\xa3\x51\x4b\xf2\x41\xec\x7b\xd0\x0b\x47\x65\x6f\x10\x2a\x3e\x88\x7d\xf3\xe9\x9b\xbb\x0d\x9b\x52\x32\xfc\x17\xd5\x56\x3b\xd5\x5c\xa9\xcd\xcc\x9c\x5f\x5b\xb3\x59\xfb\x8c\x17\x0d\x33\xa0\xe4\x2a\xab\x10\x77\xd9\x28\x98\x08\xe9\x4c\x0a\xe2\xe5\x3e\x89\xa2\x94\x9c\x14\x1e\x0a\x72\xd9\xa6\x19\xe0\x91\x80\xdf\xe4\x72\x68\xc2\x8f\x40\x54\x2b\xe9\xb3\x76\xc1\x71\x76\x66\xd5\xed\x8c\xf2\xec\x5a\x2c\x66\xf6\x16\xfd\xa3\xad\x80\xec\x45\x96\xa3\xd9\xd8\xc5\xf9\xb3\xf3\x8a\xf5\x4c\x61\x09\xc1\xd5\x17\x98\x0e\x5c\x30\xf1\xeb\xc0\x9b\xd8\x85\xb6\x7a\x01\x44\xe9\x5d\x0b\x93\xee\x6b\xaf\xf8\xf2\xdf\x76\x31\xc1\xca\x25\xf1\x26\x46\xd1\x81\x20\x22\xfe\xf2\xc5\x5f\x8d\x81\x15\xf9\xa6\xf1\x28\xbe\xb2\xfe\xf6\xcf\xec\xc7\x10\xe3\x78\x5a\xb1\x87\x84\x5c\x3b\xad\x3f\xd1\x52\x2d\x94\xef\x84\xfd\x70\x54\x46\x79\xf7\x65\xfc\xaf\xf9\x71\xd1\x34\xb0\x84\x7e\x0b\xe5\xef\x20\xf8\x2c\xdb\x55\xae\x3f\x13\x15\x3a\x04\xae\xd9\xcb\xd2\x32\xcf\x12\x44\x76\x0f\xb2\x3c\xde\x8a\xd3\xee\xcb\xf0\xcd\xa7\x6f\xc8\x5b\xfb\xf8\x4d\xd3\xd0\xb2\x0c\x7b\x03\xc8\x73\x2c\x29\xa9\xfa\xa5\x85\x8a\xaa\xef\x6d\x8c\x01\x2b\xd1\x60\x39\xd9\x37\x53\x00\x78\xd9\xc5\xf9\xb3\xd2\x8a\xe7\x5f\x6f\xf0\xf9\x56\x29\x64\xf3\x7f\xe6\xe0\xef\x65\x52\x1b\x9a\xe9\xdb\xf8\xa7\x7b\x9a\x2a\xad\x54\x73\xba\x6c\x85\x1a\x22\x51\xa3\x92\x35\x4b\x5d\xb5\x45\xd4\x69\x34\xa0\x26\xce\xea\xba\x64\x1d\x67\x45\x5c\x0b\x56\xd3\x25\xf6\x8c\x62\x08\x60\x5b\xa0\xb5\x20\x44\x1b\xb4\x65\x7c\x6b\x2b\xa3\xa9\x7e\x87\x90\xdb\x51\xe2\x22\x69\x50\x90\x40\xfc\xdd\xc7\xdf\x0d\x79\x50\xd6\x44\xe8\x8c\x66\xf5\xb7\x15\xce\xdb\x0a\x8d\x6c\xe5\x12\x3a\x1e\x83\x41\x5e\xa3\xbf\x7d\xfc\xdb\x2e\x2e\x5f\x48\x59\x4d\xbd\x8e\xb2\x9e\x5d\x81\xe8\xf5\x66\xd4\x8f\xf2\xb0\x8c\xfa\x34\x60\x49\xb3\xd5\xef\x34\x54\xad\x12\x1a\xc6\x79\x9e\x29\x5a\xfa\x26\xfc\xe5\x3e\x74\x58\x52\xd9\x75\x15\x19\x79\x15\x7f\xd0\xb4\x44\x56\xa0\x44\xd2\x4b\xe9\x86\xcc\x5f\x6d\x56\xeb\xe0\xa1\x7c\x87\x9f\x40\xf9\x89\x32\x49\x03\x91\xcd\xc6\x65\xf7\x55\xfc\xdb\xa7\xbf\xed\xe2\xb6\xfd\x1f\x58\xe9\x77\xde\x58\x97\x2c\xb4\x2c\xbf\x15\x97\x4b\x07\xfb\xda\xcf\xdf\x61\xc5\xd5\x46\x41\xca\xc4\x41\xbc\x35\x48\xe2\xad\x41\xa9\xb6\x4b\xfc\xec\x17\x3b\x69\x19\x5e\xf7\xd5\x57\x5e\x5f\xdc\x03\xa8\x9b\xc4\x69\x54\x74\x21\x3d\x23\xfc\x13\xaf\x81\x0f\x62\x6f\xe8\x17\x71\xba\x45\x1a\x91\xe7\x5b\xab\x07\xbd\x41\x98\x87\xbd\x32\xca\xa9\x21\xfd\xb7\xb3\x35\x51\xc7\xdd\x1a\xde\x4c\x68\x83\xdd\x49\xab\xba\x28\x69\x54\xdf\xea\x05\x61\xbe\x55\x88\x77\x25\xcc\xb7\xc6\xe2\x4a\x17\x46\xf3\xa0\xde\x8a\xd4\xae\xbd\x29\xd5\x5d\xf6\xbe\x61\x61\x38\x97\xba\x2c\x1c\x4c\xd4\x52\x39\x8a\xf7\x92\x2c\xd5\x2d\xbf\x22\xfe\x72\x15\x1b\x8d\x93\x44\x95\x7a\x6b\x9c\x24\xae\x42\x14\x20\x28\x8a\xbc\xf6\x8a\x2a\x20\x4b\x24\xd9\xd6\x72\x45\x0c\x4b\x6f\xa7\xdf\x66\x51\x13\x35\x78\x4a\x89\x5a\x7d\x8d\x70\xea\x68\x07\x06\xf7\xf1\x27\x98\xe8\x69\x17\x23\x2e\x1e\x91\x43\x39\x6b\xc2\x32\xc5\xf1\x4f\x8e\x9c\x23\x12\x6b\xb0\xd3\xcb\xb3\xd4\x70\xaf\xf6\xc5\x2f\xea\x33\x77\x6e\x96\xbf\x15\xbd\x41\xd4\x1f\x23\x0a\xfd\x44\x79\xa3\xc9\x5c\x3b\xaa\xa6\x10\xf7\xaa\x7b\xbe\x8c\xcc\x34\x11\x24\x27\xd5\x63\x55\x12\x94\x7b\xd9\xb8\x50\x89\xe6\xea\x7d\x28\xee\x2c\x1c\x5d\x8f\x7a\x63\x0d\x65\xe0\x8a\xd5\x6c\x1a\x21\xab\x23\xd6\x59\x86\x36\x66\x69\xec\xfc\x0d\x77\x9a\xc2\xe8\x93\x8f\x91\x0d\xad\xf7\x55\x2d\x77\x5a\x21\xb5\x20\x60\x14\x00\xd4\x46\x02\x7f\xf3\x79\x1c\x87\x73\xec\x06\x78\x86\xcb\x6a\x2a\xf1\x23\x25\x78\x20\xfe\x49\x4e\x83\x1c\x52\x72\xe2\x0e\x84\x3c\x52\x0d\x40\xea\xd1\x7e\x54\x0a\x9e\xdd\x99\x7b\x51\xb9\x1d\xb4\xe0\x52\xca\x86\x84\x1c\x0a\xe7\xe8\x33\x0e\x9b\xc7\x0a\x14\x51\x12\xf5\x20\x57\x0f\xe5\x3e\x44\x57\x3a\x0a\x29\xa9\x3f\x55\x05\xfb\x11\x2f\xfa\x8d\x59\xd0\x8c\x93\x86\xa0\x6d\x89\x11\x53\x3d\xaa\xe6\xaa\x91\x38\x45\x39\x08\x9b\x02\x23\xe9\xe7\xd5\x99\x61\x11\xb5\x5b\x63\x63\x25\xf7\x11\xac\x1c\xf5\x1d\xf8\x62\xfb\x3a\x22\x41\x9c\x0e\xbb\x26\x0d\xdd\x01\x4a\xb6\x64\x19\x79\x78\x00\xff\x2d\x78\xc1\x1d\x4d\x7b\xc4\x97\xcd\x71\x0c\xe5\xd7\x6c\xd4\xfd\xe5\xa8\xd3\x98\xa0\x86\x74\x32\x81\x26\xdd\xe3\xc4\x50\xc8\xd6\x08\x98\x39\x40\xb5\xc2\x6a\x5f\x91\xe9\xbe\x20\x62\x8a\x39\x41\x9d\x3c\x57\x4d\x9e\x6f\xc3\xb4\x65\x39\xec\x9f\xb9\xec\x9f\x2f\x2e\x5d\x0c\x2f\x7b\x79\x44\x59\x98\x46\x59\x57\x05\x33\x99\xb0\x7a\x0b\x1b\x85\x44\x79\x97\x7a\x59\x3f\xba\x7c\xfe\xbd\x17\xae\x14\x97\x2e\xc2\xbf\x09\xa0\x59\xf5\xf8\xde\x8b\x57\x8a\x67\x2e\x9f\x7f\xef\x47\x57\xb0\x5b\x34\x7f\x50\xb7\x8f\x89\x1e\x7c\x52\xcd\xa8\x33\x56\xf1\x85\x2b\xc5\xc5\x22\xef\x5d\xb4\x9b\x30\xb3\xf2\x8b\x62\xe2\xe3\x7f\xd3\xed\x8f\x42\x60\x52\xc1\x98\xd2\x4c\xf4\x5c\xef\xaa\x1c\x2f\xca\x0b\x8a\x5c\xbb\xa5\xcb\xcd\xf9\x7e\x23\x17\xac\x57\xe6\x61\x5a\x6c\x52\x4e\x36\xbd\x60\x67\x82\x6c\xb5\xae\x3b\xae\x8e\x5e\x9a\x03\x73\x2b\x68\x27\x68\x4b\x21\xec\xa6\xfb\xbe\x06\xac\xa2\x25\xd1\x18\x8b\xf5\x1e\xaf\x7f\x11\xe3\x74\x2e\x62\x4b\x7f\x07\xcb\x24\xda\x7b\xdf\xeb\x25\x59\xa1\xdb\x7b\x0c\xde\x81\xdf\xa7\xbd\x3c\xca\x46\x51\xaa\x1a\xc4\x6c\x0b\x3a\x04\x78\xf6\xdd\x07\x9a\x0d\x41\xa4\x94\x2d\xa3\xa7\x96\x09\xe9\xa9\x1d\x1a\xa9\x97\x03\xf0\x17\x85\x4d\x5d\xb1\x17\x5c\x5f\x60\x38\xf2\xe8\x57\xe3\xa8\x28\xbb\xef\xf3\xbb\xa3\x63\x53\x45\x9b\x08\xe2\xb6\x8b\x3e\xf8\x74\x42\x78\x3f\xa2\x9d\xf6\x55\x37\x7b\xe1\x8b\xff\xc3\xf4\x42\x7b\x61\x75\xc3\xce\x8c\x4f\xd1\x24\x07\x2a\xb9\xc8\xf7\xec\x71\x18\xe5\x5b\x8e\xd5\x3b\x11\xfb\x8e\x50\xb4\x27\x3e\x41\x69\x1e\x20\x47\xb0\xda\x72\xe1\xae\x6c\xe4\x61\xda\x1b\x74\xcd\xed\x60\x39\x0b\x0f\x64\xbe\xd0\xef\x4f\x1a\x88\x38\xcb\x1e\x95\x3f\x9e\xe8\x91\x75\x43\x24\xed\xc5\x2b\xee\x7b\x2b\x5b\x95\x04\x6d\x34\x06\x00\x96\x2d\x17\x35\xd3\xd9\x4e\x8d\x25\x81\xa1\x43\x23\x2f\x2e\x1a\xf7\x8f\xcc\x71\x8b\x3e\xf8\xbb\x40\x49\x44\x5d\x03\x0e\xcb\x05\xcd\x6d\x66\xf9\x55\xf5\x7e\x3c\x05\xca\xff\x51\x1b\xfd\x22\xf9\x00\x10\xea\xc4\x6a\x74\x17\x03\xc2\x49\xbe\x8f\x51\x58\x00\x2a\x5b\x6d\x83\xad\xd7\xc5\xdc\x62\x7c\x94\x38\xea\xae\xe0\x04\xd9\xf0\xf0\xd0\xad\x38\x40\x19\x85\x38\x35\x32\xd1\x2d\xdb\xc9\xe3\xf6\xa5\x5f\x3a\x3c\x72\xff\x5d\x6d\x78\x26\xb4\xa9\x02\xdb\xe1\x23\x75\x1c\x65\xf7\xfa\x2d\x1a\xa0\xf7\x5e\x99\x65\xc9\x15\x2f\xdc\xca\xba\x94\xb9\x75\x52\x1d\x7a\xe0\xa1\x95\x66\xdb\x5d\x33\x27\x3a\xb8\x80\x2b\x38\x66\x0f\x0b\xb0\x5c\x51\x2f\x14\xdd\x17\x30\x7b\xd4\x71\xbd\x87\x99\x48\xfd\xf3\x85\xf7\xc2\xb0\xfb\x02\x79\x22\x81\x18\x86\x3f\x0e\x44\x59\xa8\x07\x7f\xf6\xbb\x2f\x20\x7c\xf4\x59\x7d\x1b\x7e\xd8\x16\x3f\x9c\x49\xf8\x83\xfa\x2e\xb6\x94\xa5\xd8\x96\xa0\x45\x77\xeb\x8f\xe1\xc7\x1d\xf1\xd3\x23\x00\x2d\x38\x5f\x78\x45\xd4\xcb\xd2\x7e\xd1\x3d\xdf\x37\x86\x22\x3e\x0d\xe3\x74\x5c\x46\xf0\x49\x0f\x47\x7c\x18\x64\xe3\x1c\x6b\xc0\x80\x28\x41\xbc\x07\xa6\x6a\x51\x18\x01\x7c\x8e\xfc\xf3\x85\xef\x6d\x47\xd1\x55\xfc\x55\x0f\x0e\x46\x3c\xcc\xd2\x72\x20\x1b\xa7\xf1\x01\xa2\xeb\xf9\xc2\xdb\x89\x42\xec\x00\x82\x74\xa0\xcf\x3c\xdc\x0e\xe4\x58\xf9\x40\xe1\x83\x1c\xa9\x1e\x26\xfc\x8c\xe3\x84\xff\xf7\xbc\xf7\xfa\x79\x36\xfa\x20\x4b\xa3\x2b\x9e\x54\x16\x0d\xa3\xa2\x60\x80\xf6\x80\xd7\x04\x90\x7f\xe0\x75\xfc\xa1\x72\xad\x84\xc4\xb7\x13\x95\x1e\x1d\x28\xc5\xac\x3a\x26\x88\x74\xc5\x34\x71\xf8\x30\x4c\xd4\x48\xa9\x8e\x83\x38\x1d\x8d\xc9\xfd\x08\xe3\x40\xcf\x10\xa7\x83\x05\x83\xea\xba\xdf\x5a\x70\xa3\x3a\xff\x0b\x40\x22\x81\x63\x73\x35\xe9\x78\x20\xb4\x97\x59\x16\x6c\x08\xa1\x9f\x45\x22\x33\xd4\x45\xff\xb9\x5f\xff\x1a\x74\x25\xf1\x07\xd1\x3f\xff\xb3\x5f\x7d\x59\x7d\xfa\xbc\x0f\x78\x6d\x27\xf5\xed\xfa\x13\xcc\xa5\x43\xd9\x9c\x1b\xa0\x21\xd2\x71\x52\x37\xfc\xdc\xaf\x7f\x3d\x0c\xaf\xff\xcc\x6a\xb0\xe3\x51\x06\x08\xf4\x2d\xb5\x1c\xf6\x69\x2c\x9e\xf7\xff\x04\x00\x00\xff\xff\x96\xba\xd9\xa9\x59\x90\x01\x00" func confLocaleLocale_ruRuIniBytes() ([]byte, error) { return bindataRead( @@ -4904,8 +4904,8 @@ func confLocaleLocale_ruRuIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 102179, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x6, 0x64, 0xb8, 0x9, 0x90, 0x8a, 0x31, 0x4c, 0xb7, 0x2a, 0xc9, 0x84, 0xd6, 0x2b, 0x52, 0xc4, 0x1b, 0x39, 0x2, 0xf8, 0xbd, 0x48, 0xd6, 0x9d, 0xdf, 0x1c, 0xa3, 0x28, 0x39, 0xdd, 0x67}} + info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 102489, mode: os.FileMode(0644), modTime: time.Unix(1586169337, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0xc3, 0x29, 0xf4, 0x53, 0x64, 0x3a, 0x5, 0x3d, 0xee, 0xe1, 0x7a, 0x38, 0x95, 0x60, 0x23, 0xc8, 0x8e, 0x75, 0xda, 0xb4, 0x33, 0x65, 0x93, 0x87, 0x43, 0xb0, 0xe, 0x59, 0x64, 0x88, 0xd3}} return a, nil } @@ -4924,7 +4924,7 @@ func confLocaleLocale_skSkIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_sk-SK.ini", size: 72953, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_sk-SK.ini", size: 72953, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x57, 0x7b, 0x43, 0xce, 0xce, 0x99, 0x75, 0x34, 0x6a, 0xbc, 0x61, 0xd1, 0xa0, 0xc3, 0xb3, 0xf8, 0xe1, 0xfd, 0x7b, 0x43, 0xa5, 0xfe, 0xbb, 0x19, 0xf5, 0xd2, 0x1, 0xa, 0xb6, 0xe7, 0x8f}} return a, nil } @@ -4944,7 +4944,7 @@ func confLocaleLocale_srSpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_sr-SP.ini", size: 94358, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_sr-SP.ini", size: 94358, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xd9, 0x39, 0x80, 0x9c, 0x3c, 0xe8, 0x5e, 0xd, 0xc1, 0x4c, 0xaf, 0xa5, 0x1c, 0x35, 0xd0, 0x31, 0x65, 0x90, 0x6a, 0x19, 0x61, 0x68, 0x4b, 0x0, 0xd4, 0xef, 0xc6, 0x9c, 0x36, 0xa4, 0xda}} return a, nil } @@ -4964,12 +4964,12 @@ func confLocaleLocale_svSeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_sv-SE.ini", size: 69522, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_sv-SE.ini", size: 69522, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0x14, 0x98, 0x48, 0xe1, 0xd5, 0x90, 0xd9, 0x4f, 0xf, 0x95, 0xe2, 0x61, 0xbf, 0x40, 0x56, 0x77, 0x96, 0xd6, 0x4e, 0x6a, 0xc1, 0x53, 0xbb, 0x8c, 0xf7, 0x43, 0xaa, 0x21, 0x53, 0xc4, 0xd7}} return a, nil } -var _confLocaleLocale_trTrIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xcd\x92\x1c\x37\x92\x30\x78\xcf\xa7\x80\x38\x46\xa3\x64\x56\x4a\x99\xba\x67\xbe\x5d\x93\x29\xd4\x5b\xa5\xa2\xc8\xfe\x48\x4a\x1c\x15\xd5\xf3\x71\xb4\xb4\x10\x32\x03\x95\x89\x8e\x08\x44\x0e\x80\xa8\x62\xe4\x58\x9f\xfb\xb2\xe7\xb6\x3d\xb4\x75\x1d\x79\x55\x5d\x74\xaa\x5b\x56\xbd\xc8\x3e\xc9\x1a\xdc\x1d\x7f\x91\x91\x45\x4a\xdb\x6b\x26\x13\x2b\x03\x0e\xc0\xf1\xe7\x70\x77\xf8\x0f\xdf\x6c\xca\x4a\x98\x65\xf1\x4c\xa8\x4a\x32\xd3\xab\x7e\xd9\xab\x7e\x5b\x71\xb6\xe0\xfa\xf6\x5a\x55\xb7\xd7\x9a\x2f\x64\x23\x96\xe2\xf6\x4a\x2a\xb9\x65\x5b\xbe\x6e\x85\x35\x72\xcb\x16\x52\xb3\x27\xd2\x32\x23\xf4\x85\x34\x72\x36\x5b\x77\xad\x28\x8e\x15\x67\x67\x7c\x38\xe7\xb3\x8a\x9b\xf5\xa2\xe3\xba\x2a\x5e\x72\xd5\xcd\xc4\xdb\x4d\xd3\x69\x51\x3c\x13\x77\x57\xe7\xc2\xce\xd6\xa2\xd9\x14\xaf\xb9\xae\x6e\xaf\xdb\x99\x91\x2b\x55\x4a\x55\x3c\x91\x5a\xde\x5d\xb1\xd7\x7c\x83\x9f\xba\xde\x16\xbb\xbf\xde\x5e\xd7\xb7\xd7\xe9\xe7\x7e\x53\x3c\xe3\x43\xd5\x35\x33\x2d\x56\xd2\x58\xa1\x8b\xdd\xdf\x07\xc1\xbe\x6b\x66\x97\x62\x61\xa4\x15\xc5\x7f\x88\x05\x73\x7f\x18\x39\xdb\xf0\x95\x28\x10\x27\x2b\xda\x4d\xc3\xad\x28\xee\xfe\xc1\x17\x4d\xa7\x66\x0d\x57\xab\xde\x95\x9f\xca\x66\xb6\xd4\x82\x5b\x51\x2a\x71\x59\x7c\xd7\xf4\x77\x57\xb6\xd7\xf3\xf9\x7c\xd6\x1b\xa1\xcb\x8d\xee\xce\x65\x23\x4a\xae\xaa\xb2\x85\x71\xf4\x4d\xc3\xd5\xed\xf5\xf2\xf6\x9a\x61\xa1\x64\x17\x82\x55\x7c\xcd\xd9\x39\xdf\x36\xdc\xdc\x5e\x03\xb6\xa2\x2a\xa5\x2a\xb9\xf1\x83\x1b\xf8\x86\xab\x2f\x66\xd0\xac\xe2\x6d\xde\xd2\x71\x75\x7b\x3d\x13\x2d\x97\x4d\xf1\xf8\xd3\x97\x9d\xb1\x7c\xb6\xe1\xc6\x5c\x76\x30\x8d\xba\x6b\xf8\x4c\x8b\xd2\x0e\x1b\x51\xbc\x12\xb5\xe6\x6e\x09\xb4\x54\xb3\x25\xdf\xd8\xe5\x9a\x17\x5f\xe3\xbf\xb3\x99\x16\x9b\xce\x48\xdb\xe9\xa1\x38\x15\x9b\x6e\xd6\xe9\x15\x57\x72\xcb\xad\xec\x54\xf1\x1d\xfd\x30\x43\xa7\x66\xad\xd4\xba\xd3\xc5\x6b\xae\xcc\xed\x75\xcb\x67\x4a\x5c\x96\xae\x76\xf1\x5a\x28\xc9\xa0\xb2\xfb\xd4\xca\x95\x76\x33\x07\x5f\x9f\xec\x7e\xd9\xbd\xa3\xcf\x58\xdb\x7d\xcd\x9a\x38\xef\x74\x8d\x9f\x77\x7f\xe5\x96\x37\xb1\xa5\x4e\xaf\xb0\x20\x47\x83\x2b\xbe\x12\x50\x98\x7e\x6f\xdc\x3e\x64\xaf\x77\xbf\x28\x61\x67\xbc\x6a\xa5\x2a\x37\x5c\x89\xa6\xc0\x4f\xb2\x65\x2f\xdd\x4f\x39\xe3\xcb\x65\xd7\x2b\x5b\x1a\x61\xad\x54\x2b\x53\x3c\x15\x86\x6f\xd8\xf1\xc0\x35\xb4\x31\x0b\x05\xf4\x69\x36\x74\x7d\x58\xd7\xe2\x25\x2e\xa1\x92\x5b\xfc\x3e\x86\xbe\xbd\x56\xb7\xd7\xdb\xd9\x8c\x2f\xad\xbc\x90\x56\x0a\x53\x1c\xd7\xf0\xa7\x68\x84\x9e\x6d\xfa\xa6\x29\xb5\xf8\xaf\x5e\x18\x6b\x8a\x53\x77\x5a\xee\xae\x64\xdd\xc8\x9a\xdd\xfe\x6c\xac\xfb\x3d\x93\xc6\xf4\xc2\x14\x67\x9d\xee\xdd\xb0\x66\xb3\x25\x57\x4b\xd1\x14\xb7\x3f\x6f\x2c\x6f\x66\xb3\x1f\xa5\x32\x96\x37\xcd\x9b\x19\xfd\x51\x3c\xeb\x75\xdf\xf4\xed\xcc\x4a\xdb\x88\xe2\xf6\xe7\xa6\x66\xcf\xc4\xd6\x4d\x68\xe3\x0e\x84\xbd\xbd\xd6\x2d\x67\xb7\x3f\xef\xde\x49\xc5\x08\x18\xb6\x50\x8b\x43\xae\xba\x65\x2d\x74\xe9\x8e\x9a\xd0\xc5\x93\x6e\x65\x1e\xf5\xec\x14\x3e\x32\xe9\x2a\x55\x82\xd5\xb4\xfb\x86\x4e\x1b\xf7\xef\x96\x2d\x7a\x66\xdc\x69\xa9\x38\x5b\x0b\xbd\xe6\x6a\x25\xe1\xb0\x57\xe9\xa8\x06\xbe\x69\x79\xc5\x15\xdb\xfd\xa2\x96\x82\x35\xbb\x1b\x7b\x2e\x14\xfb\x92\x33\xcb\xf5\x4a\xd8\xe2\x41\xb9\x68\xb8\xaa\x1f\xb0\xb5\x16\xe7\xc5\x83\x87\xe6\xc1\x57\xf5\xed\x75\xc3\x2f\xfa\x6d\xff\xe5\x67\xfc\x2b\x56\xc9\xba\xe6\xb6\x91\x4b\xc1\xba\xba\x1f\x1c\xdd\xf9\x68\xe6\xa6\x50\x5a\x51\x56\x0b\x24\x4c\x0e\x67\xf6\x62\x38\xfb\xf7\xe7\x47\xcc\x1d\x87\x95\x16\xf0\xf7\xd9\xbf\x3f\x97\x56\xfc\xfe\x88\xbd\x38\x3b\xfb\xf7\xe7\xec\x42\x0c\x9c\xbd\x92\xa7\x27\x8f\x06\xc1\xe4\xda\xca\x81\xef\xde\xb1\xaa\x1f\xb8\x9e\xcf\xaa\x45\x89\x13\xf8\x27\xa1\xa5\xe5\x0b\x37\xca\x64\x5f\xb8\x62\x77\x9e\xd2\xd2\x57\xbb\x1b\xbd\xbb\x99\xad\x3b\x63\x8b\x33\xa0\x8a\x70\x5c\xd3\xa3\xba\x77\x2e\xab\x45\x09\xc7\x39\xeb\xa5\xc2\x0e\x68\x05\x9e\xd3\x2c\xc1\x80\x70\x05\xd8\x1f\xbf\xfd\xf6\xbb\xd3\x13\xd6\x76\xd6\xed\x8b\x9e\xf5\xf6\xfc\x7f\x2f\x57\x42\x09\xcd\x9b\x72\x29\x59\xcd\x35\xaf\xad\xd0\xcc\x08\x2b\x87\x26\x2e\x98\x9a\xcf\x8c\x69\xca\xb6\xab\x44\x71\x76\xf6\x9c\x9d\xb8\xf6\x5a\x47\xee\xec\xba\x78\xdd\x35\x33\xf3\x5f\x8d\x9b\x4a\xea\x9b\x66\x8c\x5d\x44\xf4\xdc\x7f\xac\xea\xcc\xc0\xd9\xd0\x35\xfd\x9c\x7d\xb9\xd0\x5f\x79\x1c\xd7\x72\xdb\x0a\x2b\xd8\x82\xdf\x5d\x35\xbc\xba\xbd\xbe\xbd\xc2\x33\x50\x71\x56\x0b\x23\x15\xd4\x49\xb1\x11\x5a\x97\xa2\xdd\xd8\xc1\xad\x1e\x60\x71\xa8\x4f\xa8\xb9\xe8\xee\xae\x58\xd7\xf0\x96\x6f\xe7\x33\xd5\x95\x78\xb8\x1d\x7d\xad\xa4\xe1\x8b\x46\x94\x48\xdc\x35\xd2\xac\x13\xa9\xd9\x80\x67\x7e\x29\xd9\x5a\x18\xbe\xb8\xbd\x66\x1d\xd1\x69\xdc\x8b\x75\x42\x49\x6b\x3e\x54\xd0\x1d\xab\xc4\x85\x16\xac\x72\x27\xe6\xf6\x9a\x2d\xdc\x95\x56\xbb\x5e\x0d\x8e\x27\x45\xdc\x13\x18\x5a\xd9\xd7\xa1\xbf\x0d\xac\xb1\x71\xf5\x53\xb4\x67\x7e\xa1\x70\x83\x3d\x11\x4a\x34\xec\x87\x61\xd5\xbb\xf2\x64\x8f\xb9\x8b\x16\x36\x47\x2c\xab\x92\xcf\x7e\x8d\x4e\x7a\xcd\x07\xce\xba\x84\xfe\xb9\x63\xd1\x2b\xb6\xe6\x5a\xd6\x9c\x49\xd3\x4a\x25\x59\xdd\x0d\xbd\xfa\x08\x68\x3c\x4e\xb4\xa3\xad\xec\xd9\xee\x97\x9a\x9d\xca\xad\x54\x32\x16\xf9\xa6\x5f\xed\x6e\x5a\xd6\x6f\x79\x0d\x77\x76\x25\x36\x1d\x52\xd6\x45\xcf\x2a\x57\x45\xc0\x84\x89\x0a\xee\xfa\xda\x4a\x3d\x9f\xe9\x5e\x95\xb0\xeb\x53\x7a\xc3\x1d\xa1\x89\x87\xc0\xc3\xf8\x6e\x92\x32\xdc\x5d\x62\xe3\xc6\xc0\x6a\x87\x1b\x74\xe4\xba\xba\x10\x8c\x88\xd1\xee\x5d\x4a\xca\x06\xce\x84\xbb\x23\x65\xcb\xe4\x56\x49\xd6\x35\xad\x2b\x76\x5c\xc8\x7c\x56\x75\x2d\x97\xaa\x38\x6e\xb8\xa2\x73\x05\x1f\xe2\xdc\x1d\xb1\xb3\xb3\xa7\xac\x6e\x3a\xc5\x16\xfc\xf6\xaa\xe1\xca\x3a\x82\x83\xa4\x9b\x09\x5b\xcb\x46\x68\x77\x68\xd6\xe5\xa6\xd3\xb6\x70\xd0\x2f\x3b\x6d\xfb\xf0\x29\x9c\x95\xb3\xa7\x91\x19\xea\x15\x73\x65\x71\xab\x37\x40\x2c\x8f\x70\x27\xe0\x76\x82\x4d\xcd\x59\xc5\x01\x85\xdd\x2f\x5b\xd1\x34\x12\x38\xa6\xc9\xdd\x07\xc7\xa5\x37\xa2\x5c\xf4\xb2\xb1\x52\x95\x0e\x01\xc7\x47\x09\x77\x93\xea\x46\x38\x2a\xcb\x22\x16\x26\x39\x67\x07\xea\x95\x9b\x6e\xd3\x6f\x0a\xb7\xb8\xf2\xee\xaa\x11\x6d\x23\x34\xd0\xf7\xb4\x15\xe5\x0e\x89\x71\x0c\x53\x0b\xdf\xb9\xae\x39\xdb\xb8\x09\xdd\xe8\x6e\xa5\x79\xeb\x58\x3e\xae\x18\x1f\xf4\xed\x75\x03\xeb\x81\xc7\x7f\x00\x8c\xd7\xd6\x6e\x70\xea\x9e\xbe\x7a\xf5\x92\xe6\x2e\x7c\xf4\x93\xe7\xb7\x38\xae\xbf\x54\x8d\x18\x90\x7d\x84\x69\x9c\xc3\xa6\xef\x75\x13\x8f\xc2\x49\x58\x2c\x43\x67\xa2\xd7\x4d\xba\xac\xae\xb7\xcf\xdc\xff\xce\x0e\xae\xee\x85\x60\xe2\xd3\x8d\xe3\x97\x2a\x5e\x4b\xb6\xe0\x5b\x47\x02\xa0\x45\xbc\x0b\xe3\xfa\x37\xdd\xaa\xd4\x5d\x67\xf1\xe4\x3c\xd9\xdd\xa8\x66\x77\x53\xb3\x53\x47\x07\x89\xdb\xe8\x9a\x3e\x07\x0b\x57\xa8\x87\xae\x02\x34\x12\x34\xd7\x5f\xc3\x97\xdc\x11\x49\xdc\xe7\xf3\x99\x50\x40\xc5\x96\x9d\x32\x5d\x23\x90\x50\x3f\x83\x1f\xec\x45\x57\x39\x5a\xff\xd8\xd6\x6e\x7e\xee\xae\xac\xd4\x53\xe0\xb4\xa8\x80\x1a\x6b\x5d\x1d\xce\x44\xed\xa8\x8f\xe6\x35\x3b\xc2\x75\x5a\x72\x56\x43\x9d\x5e\xb1\x15\xe1\x07\x8b\x2f\x1d\x5a\x78\x76\x66\xdd\xc6\x11\xd1\x40\xa8\x88\x27\x11\x38\xf7\xf1\x3a\x44\xd6\x93\x80\x88\x01\x65\x67\xc8\xe0\xa7\xac\x54\x6b\x37\x25\x5e\x8e\x2f\x5e\xbd\x64\x67\xb4\xbd\xf0\xfb\xb9\xee\xda\xe2\x99\x6c\x2b\xa1\xe2\x07\x3f\x81\xdf\x7f\xf3\x35\xfb\xb7\xdf\xff\xee\x77\xcc\x58\xae\x2a\xe0\xfe\x15\x67\xfd\xb0\x82\x53\xe6\x7a\x7b\x50\x43\xd5\x07\x8c\x57\xda\x5d\x33\x72\x3b\x67\x27\x8e\x23\xa9\xc4\x52\x00\x1f\x42\x0b\x4d\x00\x78\xf7\x3f\xb8\xfd\xd9\xc8\xf6\x01\xfb\x52\x1a\xd9\xfe\x1f\xbc\xe1\x8a\x57\x72\xbe\xec\xda\xaf\xd8\x02\xef\x45\x77\x16\x5c\x6d\xa8\xe5\xa6\x70\x21\x1b\x47\xe5\xdc\x80\x85\x46\x42\xf7\x64\xf7\x8b\xaa\x84\x16\x8a\x3d\xc6\x3e\x7c\x69\xb8\x11\x22\xc4\x4b\x7f\x23\x04\x19\xc4\x2d\xdd\xb9\xd4\xad\x93\x4d\x6e\xaf\x2d\xfb\x4e\xc1\xb9\xb9\xbd\xce\xd7\x19\x66\x58\x75\x56\x9e\x0f\x61\x8a\x4f\x64\x53\x49\x2d\x5b\x5a\xb7\x0c\x9e\xce\x37\x88\x59\x4b\x41\x6b\x83\x53\xee\xb6\xfd\xa9\xbc\xbd\x12\x9a\x16\x29\x59\xa3\xee\xfc\xbc\x91\x8a\xb6\xdd\xee\xaf\xe2\x42\xcb\x96\x9d\x12\x19\x72\xfb\x2f\xef\x25\x05\xa7\x6d\xf7\xf5\xe9\xb7\x8f\xe4\x11\xdb\xdd\x68\xe0\xb3\x61\xff\x39\xc9\x50\x36\x62\x92\xaa\x1d\x31\xeb\x2e\x99\x9a\x0f\x8a\xa7\x27\x84\x0d\x42\x8b\xc6\xef\x5a\x47\x8b\xdc\x49\xa9\x2d\x52\x75\xba\xeb\x57\x9a\x5f\x70\xcb\x75\xf1\x84\xfe\xf0\xdb\x0e\x64\x10\xd7\x99\xc7\xfd\x04\x3a\xdb\xab\xe8\x09\xa0\xaf\x7e\x21\x90\x0e\x13\x3e\x88\xc9\x14\xda\x73\x06\x77\x23\x56\x6b\xb8\x4e\xb9\x08\xf7\xd3\x72\xcd\xcf\x89\x30\x0e\x70\xb6\x94\xd4\xb8\xeb\x2e\xb8\x36\x6e\x8d\x1d\x05\xad\xdd\x4d\xa5\xe7\xb3\x73\x51\x09\x27\x28\x55\x25\xe1\xd5\x74\x5d\xdd\x6f\x1c\xff\xe2\xe6\xba\x75\x22\xe0\x33\x77\xc7\xb1\x33\xd9\xae\xdc\x06\x3e\xd6\xbc\xe5\x66\x62\xa7\x1c\x68\x8a\x46\xfa\x5c\x2e\x68\xac\x8f\xdc\xcd\x33\xb8\xfe\xdd\x0e\x0f\xbd\xf0\xdd\xbb\xdb\xeb\xda\x8f\xff\xf6\x9a\x58\x3a\x49\x03\x6c\x79\x4d\x2c\x68\x56\x29\x4c\x03\x4f\xd0\x12\x09\x5a\x8e\xb4\x4d\x72\x68\xa8\x44\x80\xff\x2b\xc1\x50\x40\x6f\xdd\xf4\xdc\xbf\x80\x69\x1b\x34\xb4\x31\x17\x51\x43\xcb\x35\xb5\x5c\x53\xcb\xe6\x30\x7b\x77\xc4\x06\xde\x38\xe6\x6e\xc9\x13\xa6\x71\x70\x42\xa7\xe3\x1c\x37\x6e\x7c\x9e\x75\xf4\x84\xc0\xd3\xdf\x5c\x92\x7e\x34\x8c\x57\x25\x87\xfb\xb5\x18\xd3\x94\x53\x6d\x56\x75\xb7\x57\x1a\xae\x41\x57\xb6\x12\x5a\xd4\xc6\x4d\x30\xc8\x41\x5a\x94\xa4\x18\x29\x2f\xa4\xb8\x44\x1d\x06\x6e\xe4\x27\xbb\x5f\xf4\xee\x46\xd9\xdd\x8d\xbb\x5e\x17\xb2\x69\x45\xed\x05\xc1\xa8\x44\xc1\xd9\x7f\x21\x96\x8b\x5e\xb3\x67\xb7\xd7\xcd\x64\xbb\x34\x84\xd7\x61\xc6\x56\x41\x51\xd1\x82\xde\x65\x74\x20\x4c\x44\x63\x35\x46\x43\xea\x23\xb6\x95\x03\xd7\xc2\xee\xde\x39\xd2\x99\x2c\x44\x6c\xf6\x33\x9c\x90\xa4\x25\x35\xdd\xd8\x9c\x44\x7e\x92\xc6\x51\x26\xbc\xfb\x47\xcf\xb8\xa2\x89\xbc\x4f\x24\xa8\xd9\xd6\xc9\x54\x15\x47\xd1\xb5\x81\xdb\xe4\x88\xc9\xa6\xce\x24\x85\xce\x76\x2d\xb7\x32\xdc\xab\xe9\x86\x41\xa6\xc1\xad\xa1\xe1\x6b\xb9\x71\x20\x81\x74\x21\x6a\x48\x8f\xa3\xa4\xf0\x94\xd0\x48\x98\x7f\x80\x9b\x56\xf5\x8c\x04\x0e\x12\x25\xe9\x22\x19\x7f\x87\xa3\x44\x1b\x86\x6a\xa2\xaa\x28\xf6\x4e\x17\x8a\xbb\x96\x48\x89\x50\xae\xba\x95\xf1\xb2\xff\xb3\x5e\xcf\xac\x30\xb6\x5c\x49\x5b\x9e\xbb\xbb\xad\x2a\x1e\xad\xa4\x7d\xc4\xea\xae\xed\x2d\x73\x65\x12\x78\x3e\x87\xb9\xb9\xbd\xde\x7e\xc1\x1e\x5e\x90\x24\xf9\x7b\x77\x6b\x39\x52\x24\x1b\x77\x02\x8a\xd7\x70\xbd\x31\x03\xb2\x72\xbb\xbb\x51\xbb\x9b\xad\x17\xcc\x1f\xed\x6e\x58\x25\x8c\x15\x75\x23\x5a\x09\xec\xb2\x57\x11\x3c\x34\x8f\x2a\xa1\x98\x16\xa6\x95\xb1\x32\xfb\x78\xd5\x39\xae\xb6\xca\xda\x63\xa7\x8f\x6f\xff\x71\xfb\xf3\xf3\x4f\x98\x54\x15\x92\x1e\xa9\x2e\x78\x23\x2b\x27\x63\xd2\xae\xc8\x24\x6e\xee\xa7\x9d\xad\xc4\xee\x9d\xd0\x46\xe2\x10\x7c\xb5\x91\xcc\x94\xc8\x25\xa3\x0a\x41\xb2\x71\x83\x6e\xb9\x5d\xae\x8b\x91\xde\x25\xd9\x43\x26\xf4\xd7\xc8\x6c\x6f\xe1\xc6\xfb\x82\x3d\x34\xec\xd3\xaf\xd8\x43\x13\x59\xa7\xb2\x95\xc6\xb8\x3d\x8d\xb2\x88\xe3\xa3\xb8\xe2\xac\xe5\xb5\xdb\x6d\xc4\xfc\x54\x02\x98\x59\xcf\xee\x32\xd5\xd5\xb0\xb8\xcc\x91\x89\x3a\x4e\x46\x64\xbc\xa0\xa1\xf3\x4e\xb7\x8c\x03\x12\x11\xad\x80\xca\xc5\xcc\xf0\x0b\x81\xdc\xca\xca\xef\x82\xd7\x7c\x03\xf7\x58\x45\x63\xf3\xc2\x60\x2b\x2a\x49\x13\x18\xb7\xcc\x37\xf0\x0f\xb3\x1d\x73\x5f\x25\x6f\xe4\x56\x30\xbe\xd9\x34\x72\x09\x64\x3c\x9b\xf1\xec\x04\x27\x5b\x15\x08\xf1\x3d\xeb\x85\xbb\xd7\xf4\xcb\xa5\x30\xa6\x78\x21\xf4\x9a\x2f\xf8\x47\x5e\x70\xb4\x42\x2f\xe5\x9a\xb9\x56\x49\x33\x8d\xf4\x60\xf7\xae\xab\x59\xdb\xdb\xa6\x1f\xfa\xed\x11\xab\xc5\x70\xee\xd6\x16\xae\x42\x20\x34\x1f\x05\xc4\x0e\x08\x02\x87\xb7\xc4\xec\xc7\x75\xd7\x8a\x37\xb3\x1e\x65\xf6\xae\xa9\x72\x89\x17\x8e\x34\x72\x06\x63\xe5\xad\x87\xa6\x03\x6e\x2e\xa5\x5d\xae\xcb\xa0\x22\x77\x8b\x61\xc5\x5b\x0b\xaa\xf2\x81\xb3\x27\x62\xf7\xce\x2b\xc2\xdb\x01\x36\xad\x81\x0d\x0b\x53\xd5\xce\xcc\xba\xbb\x04\x35\xb4\x2f\x0a\x5a\x67\x90\xb8\x1d\x29\x75\x1c\xe9\x7c\x3e\x9f\x2d\xbb\xa6\xe1\x8b\xce\xdd\xaf\x17\x1e\xfc\x19\xb7\xf5\xed\xf5\xc0\xd9\x31\xb2\x08\xd4\xb2\xeb\xaa\xd3\x2b\xb3\xaf\x80\x6d\x5d\x11\xaa\x7a\x0d\x69\x8a\xe9\x3b\x5c\x20\xa0\xf9\x7f\x68\xb2\x5b\x69\x46\xfa\xce\xb9\x54\x25\x68\x54\x47\x83\x40\x55\xd2\x6c\xf6\x23\x3d\x0c\xbc\x99\x65\x00\xa0\x6f\x33\xe9\xec\xba\x8f\xa9\x16\x7b\x0f\xcd\x99\x11\x5c\x2f\xd7\xc5\xb1\x76\xcd\xf2\xde\xae\xdf\x24\x2a\xfd\x92\x14\xc4\xa8\x7a\x46\xe5\xb0\xd7\xf2\x47\x16\x7e\x2d\x36\x8e\xdf\x6f\xcd\x0a\x14\x4e\x74\xa7\x80\x5a\xf4\x82\x6b\xd6\xde\x5e\xff\x81\xdd\xfd\x43\xb6\x95\x4c\xae\x33\xd8\x55\xa6\x5b\x4a\xde\x94\x53\x2d\xfd\x27\xb7\x02\xb8\xac\x7b\xdb\xa3\x63\x0e\x8d\xe5\xbc\x11\x3e\x3f\xb4\x1b\x5b\xec\xfe\xbe\x5d\x21\xa1\x3d\x0a\x4c\xc5\x01\x0d\x43\x53\xdd\x5e\xcf\x99\xd7\xe6\x19\x69\x45\xbc\xd8\x0c\x28\x12\xa5\xb6\x72\xc1\x2d\x87\x5d\xbe\xcf\xd5\x39\xe4\xdd\xe5\x32\xea\xd3\x49\x36\x91\x6b\xf1\xc2\x98\x39\xc0\x88\x11\x1e\x33\xb7\x1a\xa5\xe9\x7a\xbd\x14\xc5\x6b\xbc\x55\x1d\x41\x6f\x81\x4f\x54\x20\x36\xcf\x9a\x6e\xc9\x9b\xe2\xb5\x13\x16\x66\x5a\xb4\xa2\x5d\x38\x14\x44\x71\x02\x0b\xc6\x1d\xd5\x6d\xf8\xec\xbc\xd3\x2b\x38\xb3\xd9\xd5\xd8\xde\x5e\xb3\x1f\x54\x6f\x6d\xdf\x02\x84\xd8\x83\x70\x73\x7e\x7b\xed\x66\x9c\xf5\x00\xa8\xfa\xed\x1f\xfc\x73\x52\xa9\xba\xcb\xb8\xe0\x1c\xa0\x50\x8d\xbc\x8c\xab\x15\x56\x0a\x67\xbe\x57\x73\x7f\x51\x23\xef\x0a\x82\x9d\x11\xca\xfa\xd5\xfa\x72\xf1\xd5\x43\xf3\xe5\x67\x8b\xaf\xa2\x2c\x2b\x90\x09\x05\x75\xfa\xe4\x24\xae\x50\xc0\x74\xf2\x60\xb2\xc4\xee\x42\x6e\x23\xa7\x64\x79\xcb\x5b\x57\xd3\x73\xf0\xe1\x6e\xad\x98\xe1\xdc\x06\xe5\x7e\x2e\x2a\x2b\xb9\x95\xac\xee\x94\xd5\x5d\xc3\x44\xe5\x96\x1c\x9e\x33\x04\x1e\x50\x7f\x40\x9e\xc6\x4d\xea\x68\x5a\x6d\xe5\x79\x60\xfd\x67\x1b\xdd\xad\xe5\x42\x5a\x47\x3d\xa5\x2a\xbe\xb3\xbd\xee\x5b\x14\x35\x88\xc1\x1d\xb8\xe1\xf5\x08\x0e\x19\xb7\xa4\xe1\x86\xb3\x2e\x54\x6d\xf1\xdd\x01\x2a\x3a\xc1\xc4\xed\xa0\xc8\x2f\x8c\xb7\x2e\x73\xf2\xa7\x6c\x84\x05\x45\xa1\x08\xbb\x57\x0b\x98\xfb\x46\xb6\xd2\x4e\x9d\x97\x6d\x38\x85\xd3\x33\x6f\x79\x23\x36\x70\xa1\x80\xce\xc1\x9f\x9c\xdf\xb3\x8a\xd7\xb2\xe6\x6c\xe1\x78\x99\x41\x6e\x98\xc5\x87\xb7\x4a\x28\x31\xb8\x8e\xd7\xdc\x94\xbd\xa2\xad\x20\x2a\x3c\x35\x74\x5f\xb1\x87\xe6\x28\xf4\xa7\x5a\x8e\x0c\xf5\xbe\x16\x43\x01\x39\xf8\x38\xec\x98\x4f\xe6\xec\xe4\x20\xa6\xbc\x69\x79\x75\x7b\x3d\x18\x3f\x6f\xac\xe2\xb0\xaf\x8c\x63\x1d\xf6\xf6\xad\xe1\x61\x2e\xdd\x3e\x72\x67\x0d\x94\x64\xd5\xee\xe6\xf6\xaa\x15\x83\x60\xf6\xf6\xba\xf6\x4a\x3e\x98\x46\x1a\xc4\xe9\x54\xf7\xb0\x01\x71\x0a\x1c\x22\x41\x88\x44\xdd\x75\x6c\x6a\x06\xed\xb8\xe6\x2c\xb6\x86\xe7\x90\x99\xdb\xeb\x73\x38\xca\x7b\xad\x7e\xec\xc6\x50\x09\xf5\x89\x3f\x05\x4e\xa8\x39\xd4\x3a\x36\x3c\x7d\xc8\xcf\x7c\x17\x00\xe9\xef\xfb\x25\x68\x42\x92\x1d\x91\xcc\x6e\x0d\x0a\xb9\x6d\xbc\xf0\xf1\x1a\x77\xbc\xa8\x13\xd1\xdd\x29\xec\xef\xae\xe6\xa3\x5e\xbd\x56\x2b\xeb\x3c\x19\xdf\x61\xec\x43\x0b\xb6\xeb\x4a\xb3\x76\x2c\x20\x4d\x4f\xbf\xed\x55\xd3\xdf\x5e\xf5\xec\x7f\x84\xb7\x1f\xc7\x2f\xf3\x6d\xf2\x58\xa2\x4a\x20\x96\xc9\x9d\x86\x1a\x96\x96\x0f\x5c\x05\x11\xd7\x71\xe7\x77\x57\xf2\x5c\x0b\xd2\x2b\xc1\x6b\x1a\xd7\x6e\x73\x34\xf8\xa0\x33\x34\xdc\xbf\xeb\x59\xe9\x88\xee\x16\x55\x6e\xb3\x19\x9e\x5b\x7b\xd9\x95\xe7\x7c\x69\x3b\x5d\xdc\xfe\x5c\x4b\x4f\x88\x1c\xb5\x0f\x93\xb7\x07\x0a\xf3\x03\xb3\xfd\x4c\xb6\x8d\xac\xd3\x89\xbe\xfb\x87\xc3\x07\xe6\x7b\xbf\x9e\x50\xee\xd6\xd1\x62\xd9\x5d\x08\x3d\xe0\x82\x41\xb7\xe7\xbc\xb6\xbb\x5f\x74\xb3\xbb\x61\x75\xaf\x2d\xd7\xb4\x64\x70\x09\xab\xfd\x86\x7c\x13\x7b\xb5\x9f\x51\xed\xc3\x55\xb0\xd7\x67\x69\x2f\x87\x10\x0d\xc3\x1c\xf7\x82\x93\x7e\x2f\x86\x51\x1e\x39\xd8\x6d\x7c\x70\x40\xaa\x01\x3b\x72\xc4\xce\xcf\x67\xb3\x1f\xdd\xe1\x7a\x83\x94\xdc\xf1\x3a\x7e\x4f\x84\x87\xbc\x8c\x9c\xf3\x9c\x9c\x87\x5a\xde\xe6\x60\xef\xbe\xf0\x6b\xf7\xde\x43\x67\xb2\x43\x17\x78\x08\xcf\xc0\x93\x52\xd4\xcb\x96\xcd\xed\xf5\x11\x5b\x77\x77\x57\x2b\xd1\x54\xf0\xec\x1e\x6a\x90\x6e\xf4\x69\x5a\x38\xfb\xb1\xed\x2a\xde\xbc\x99\x0d\xc2\x14\x8f\x2f\x84\x9d\xa9\xae\x78\xea\x9a\xd4\xb3\xb6\xab\x1c\xfc\xe9\xee\x66\x2b\x94\x63\x3c\x7f\x74\xf2\xcf\x9b\xd9\x0f\x46\xe8\x6f\x27\xa5\xee\xef\xc5\xa6\x83\x12\x90\x01\x1d\x2d\x9d\x3d\x9e\x18\xff\xec\xe5\x48\x2e\xff\x5e\xc0\x4b\x71\x94\xc6\x89\x60\xa1\xfe\x5f\xcd\xce\xce\x9e\xbe\x42\xf5\xec\xd9\x53\x27\xcd\xad\x6d\x78\x21\x80\x4e\x9e\x5a\xbb\x31\x3f\xe8\xa6\xc0\xc7\x8c\xfc\xe1\xe3\x25\x1f\x9a\x8e\x57\xae\xf8\xb5\x93\x43\xf2\xd2\x57\x82\xb7\x80\xf2\x2b\xc7\x54\xb5\xf0\x12\x38\x3b\xee\xed\x1a\x3e\xe6\x2c\x15\xf4\x75\xec\xc4\xae\xc7\x23\xf5\x40\xa4\xb7\xb3\xd9\xb7\xe2\xf2\x44\x73\xb5\xf4\x2d\x38\xb6\x64\xf7\x4b\x03\xba\x50\xd7\xc0\xd7\x5d\xdb\x4a\x7b\xd6\xb7\x2d\x87\x83\x04\xaf\x4a\xa8\x54\xb5\x92\x4a\x5f\x08\x63\xf8\x4a\xc4\xd2\x56\x18\xfe\xe7\x50\xf9\xeb\x75\x27\x97\x49\x29\x0a\x6d\x72\xf6\x4a\x0b\x81\xf3\x1f\x1e\x9f\x67\x5f\x3b\x09\x48\xd9\xe2\xf6\x67\xb7\xc1\x65\x3d\x0b\xba\x2a\x01\x16\x26\x3f\x65\x2f\xaf\x3f\xcd\x78\xb3\x59\x73\x90\xa0\x02\x40\x94\xc0\x89\x6e\x1e\x31\x50\xcf\x1a\xde\xe0\xe1\x71\x24\xee\xe3\x4f\xcb\x4f\xfc\xc3\x62\xde\x4c\xd5\xd9\x0f\x69\xea\x28\x36\x03\x8d\x82\x4c\x7e\xb8\x45\xd3\x4c\xa2\xc8\x9b\x73\x4e\x77\x4c\x86\xa2\x23\xff\xbb\x77\x72\xbb\x92\xe3\x1e\x3c\x26\x8d\x20\xed\xb3\x23\x00\x5b\x86\xc0\xd9\x53\xe9\x4f\x33\x23\xb7\x71\xde\xf0\x46\xa9\x99\x50\x24\x22\x3e\x34\x23\x70\x10\xd0\xd3\x2a\x78\xdf\x3c\x34\xd1\xfa\x40\x3a\xbc\x5b\xd1\xc8\x4a\x42\x0d\xfe\x76\xaf\x46\x68\xfc\x50\x25\x7c\x5c\xc2\x1a\x8f\xe2\x54\x4c\xbc\xe9\x10\x71\x7b\x34\xeb\x75\xb3\x3f\x77\xae\x42\xa2\x14\x21\xe0\x9f\x66\x52\x2d\x9b\xbe\x8a\x38\x3d\x7a\x68\x1e\x8d\x71\xe8\x55\xad\xba\x4b\x45\x30\x27\xb2\x91\xca\xb1\x40\x8a\xad\xb9\xe5\x5f\x78\x3b\xaa\x52\xaa\x65\xa7\xb5\x58\x5a\xaf\x07\x66\xc2\xed\xe1\xbb\xab\x56\x54\x72\x1e\xaf\xef\xa8\x1c\xa2\xeb\xfb\x42\x90\xad\x40\x7a\xe9\xf1\x41\x45\x3c\xa3\xe5\x57\xb9\x10\x42\x95\x96\xd7\x42\x15\x27\x7d\xa6\x37\x72\x27\x90\x38\x56\xb7\x4e\xc8\x13\xcf\xf1\x59\x7f\xa2\x6a\xe5\xe9\xd8\x44\x9d\x4e\xaf\xa6\xaa\xa4\x46\x06\x87\xaa\x5a\xc1\xdb\xa9\xba\x16\x69\xd0\x81\x5a\xb8\xcc\x50\xa3\x37\xa2\x72\x15\x46\xcb\x8b\x75\xfc\x78\xdb\x8a\xcf\xe3\x9c\x84\xa9\x8d\x4b\xf0\x6c\x3c\x31\xb0\xfd\x69\x9a\xdd\xba\x35\x23\x11\xb3\x6c\xa5\xc1\x55\x39\x13\xa0\x86\x56\xac\xde\xe3\x44\x6a\x2f\x78\x66\x13\x8f\xc2\x85\xbc\xbb\xaa\x65\x72\xc9\xc2\x7d\xaf\xc1\x92\x2f\x51\x23\x82\x4a\xd7\x5f\xb3\x2b\xa9\x2b\xaf\x8a\x82\xe5\x40\x5b\x0d\x45\x5d\xb2\xae\xa9\x1c\x57\x07\xcf\x48\xa2\x95\x8a\xa1\x04\xb9\xd7\x72\x77\xa9\xdc\x1d\x78\x6f\xd3\x86\x3b\xd9\xea\xb7\xf6\x10\xae\xef\xa9\xf6\x37\xfe\x4a\x7f\x5f\xb3\x41\x37\x2a\xde\x4a\x63\x8b\x13\xd1\x48\x6d\x71\xaa\x93\xe9\x5c\xf4\x4d\xaf\x38\x88\x2b\xf3\x59\xc3\x8d\x2d\xdd\x76\x84\x31\x82\xbc\x4d\x3b\x09\x0e\xa9\x34\xf8\x48\xeb\xf7\x17\x28\x97\x71\xa4\x0e\x25\x22\x4a\xee\xf0\xd7\xf0\x7e\x06\x6d\x27\x06\x22\x51\x1b\x6a\xd6\x65\x2d\x86\x8c\xd7\x1f\xdf\xc8\xdb\x84\x85\x1d\x10\xc1\xfa\x0b\xf6\xd0\xcc\x7a\x7c\xde\xb9\x10\x5a\x9e\x0f\xa1\x29\xc7\x39\xbf\xb7\x11\xb0\x0b\x99\xb3\x6f\x78\xcd\xed\x18\x6e\x6f\x3a\x7b\x27\x7f\xdd\x5d\x01\x7e\x43\xa7\xfb\x44\xe4\x24\xe9\x6a\x24\xa9\xbb\xed\x4d\xfa\xd7\x3d\xb6\x1a\x0c\x93\x12\xad\x3d\xf4\x82\x3a\x4b\x63\x65\xd3\xb8\x19\x47\xa3\xce\x44\x06\xe7\x48\x44\xf1\xd5\x10\x37\xd6\x05\xd7\x73\xb6\xfb\x9b\x5a\x8a\x46\xd6\x0d\xac\x85\xfb\x3e\xf4\xcc\xc8\xa6\x15\x6e\x83\xa0\xb4\xe9\x3a\x73\x32\xb1\x84\xb7\x11\xab\xb9\x32\xe7\x42\x33\x61\x11\x08\x1e\xb2\xa4\x9b\x0d\xea\xdf\xc9\xc8\x9d\x5e\xa5\xdd\xb3\xbb\x2b\x78\xc7\x71\x9d\xe7\x16\x4f\x6c\x77\x33\x08\x23\xc7\x98\xa4\x40\x60\x79\xf8\xee\xf6\xba\x6e\x53\x19\xd8\xd5\x23\xbb\x9b\xad\x8c\x28\x27\xd8\xb8\xdd\x37\x9a\x91\x31\x2d\x5c\xf3\x86\x93\x01\x49\x30\x93\x0a\x1b\xb1\xea\x75\xdf\xba\xb3\x30\x42\x8e\xec\x54\x7f\xf3\x2c\xcd\xd0\x6a\xb2\x5c\x00\x47\x96\x9c\xab\xa7\xa2\x12\xe7\xac\xe2\x0d\x6b\xc5\xc5\xb2\xb7\x09\xdf\xef\x4e\xe0\x9b\xd9\x72\xcd\xd5\x4a\xd0\x0b\x31\x99\xb1\xe2\xe3\x8a\x92\x89\x68\x37\xfb\x73\x27\x55\xd9\xa9\xe2\xee\x1f\xbd\x72\xc4\xcf\xa2\x6a\x0e\xac\x5a\x83\xb1\xb0\x14\x51\x01\x4b\x96\xae\x03\x59\xb5\x79\x6b\xd7\xd9\x79\xd7\x34\xdd\xa5\xd0\xc6\xb1\xa2\x72\x83\xcf\x7c\x33\x63\xb9\x23\x32\xc5\x6b\x6c\x76\xeb\xf5\x38\x41\xb7\x8c\xd5\xa4\x5a\x61\x35\xf6\xb8\x72\xc4\xc2\x55\xc5\x12\xff\xd9\xce\x7a\x95\x7c\x59\x48\xff\x5e\x3c\x73\x5c\xfd\x1c\xee\x08\x27\x86\xe8\x0b\x77\x10\xc6\x37\x03\x5c\xf9\xf9\xb4\x93\x31\x13\xde\x4d\xb1\x8d\x0d\xb7\x56\x68\x85\x6f\x5a\x30\xa2\xfd\xe6\x54\xc5\xb1\xc5\xb6\xab\x44\x03\xca\x95\xad\x54\x60\xce\xd8\xb4\xc2\x49\xc9\x3f\x7a\x3b\xe1\x37\xb3\xdc\x92\x78\xcf\x3c\x94\x16\xe8\x18\xfe\x99\x11\x5d\x31\x20\x29\x1c\x23\xa9\xf0\x66\xca\xcb\x5e\xc3\xb4\xef\x6e\x2e\x84\x6a\x64\x3d\x52\x8c\x4f\x69\xe8\x67\xc9\xe3\x8b\x09\x96\x55\xae\xa0\x12\x8d\xb0\xc2\x9f\x3b\x76\x26\x9b\xd9\x6c\xd3\x2f\x1a\xb9\x0c\xa6\xcf\x4f\x85\xae\x85\x11\xfe\x31\xc0\xe3\x4f\x06\xef\xa0\xb9\xdb\x93\x0b\xd9\x9a\x2a\xa1\x91\x81\xbd\xbd\x06\x8b\x8b\x75\xa6\xe1\x93\xcd\x4a\x02\xbb\xe6\xfe\x25\xe1\xa4\x11\xba\x02\x03\xc0\x4b\xb1\x60\xf0\x68\xe7\x08\x50\xb7\x11\xda\x8f\xa5\x8a\x2f\x6b\xc9\x63\x6b\x60\x0b\x02\xa3\x40\xda\xea\x6a\xa4\xfc\x18\x3d\x56\xd3\x43\x7c\xb6\xb0\x41\x8f\x9a\x6b\x3e\xc0\x3a\xec\xbc\x6f\x1a\xbc\x7d\x8f\x2b\x76\xd6\x0d\xbc\xca\x5c\x0a\xce\xd0\xa5\xa0\xe9\x96\x64\xf3\xd0\xa9\xbe\x9d\xf5\x9b\xca\xc9\xd0\x23\x5b\x72\xf6\x64\x77\xe3\x48\x44\x23\x46\x00\x41\x26\x8e\x46\xe7\x81\x7a\x0f\x0d\x07\x2b\x2e\xa8\xa7\x1c\xaf\x49\x07\xfc\xa0\xbb\x00\xd0\xbf\xd3\x30\x12\xd9\x54\x72\x5c\xc7\xab\x43\x81\x53\x8c\x46\xdc\x47\x7b\xeb\xe5\xf9\x1e\xb8\x6f\x47\x66\x76\x64\x41\x37\x04\xfb\xd0\x65\xa7\xac\x54\xbd\x93\xa2\x2f\x78\xeb\x4e\xee\xc8\xa0\x9d\xcc\x55\xc8\x78\x65\x31\x94\xa9\x8c\x3d\x70\x78\xf0\x17\x0c\x4f\x04\x5a\xc1\x7c\x90\xf5\x4c\x5a\xc1\x49\xb2\xde\x20\xa3\x37\xb6\x6b\x3d\x21\xdc\xfd\x6d\xeb\x88\x16\xfc\x18\x5b\x70\x2c\xd7\x5d\x67\xe8\x51\x08\xa1\x41\xfa\x3d\xf6\x76\x47\xbb\x77\x7e\xc1\xb2\x43\xcb\x52\x57\x80\x64\x71\xf1\x88\x95\xcb\x5e\x6b\xa1\xac\xaf\x43\xe5\x11\x05\x77\xf4\xfa\x8d\x13\xf1\xe3\xe8\x80\xf8\x94\xb2\x75\x32\xf4\x6b\xb4\x2d\x12\xde\x24\xdb\xdd\x8b\xee\xb4\xb5\xf8\xdb\x24\x12\x44\x86\x5d\xd8\x4d\x84\x25\x4f\x1d\x16\xee\xd9\x57\x7e\x93\x4c\x19\x19\xc4\x6b\xa3\x6b\x12\x86\xf1\x05\x5e\x41\x44\xd1\xdc\xfc\x45\x53\x69\x37\x83\xc1\x43\xc5\x0e\x1b\x9c\xdf\xbc\x7c\x13\x7a\x20\x16\x87\xf4\x26\x13\x3c\xbf\x9f\xbe\x31\x97\x3f\x42\x3a\x1e\xa5\xa0\x8a\xca\x86\x5c\x65\xe7\x62\xce\x12\x34\x88\x7f\x43\xd2\x00\x86\x1f\xf1\x45\x0f\x6d\x82\x48\x15\x1a\xfa\xa2\xbe\x7f\x0d\xe1\xc1\xae\xee\x23\x38\x28\x2e\x99\x60\x0a\x78\xec\x48\x6c\x23\xb4\xf4\x1e\x31\x87\xca\x95\xf4\x6e\x31\x28\x70\x01\xa1\x3e\x71\x77\xde\x52\x36\xfb\x2f\x3f\x7b\x64\x18\xbc\x95\xd0\x78\x30\x58\x0c\x93\xbe\x7a\x8a\xfe\x6a\x09\x7a\x20\xdf\x81\xff\x40\x8a\xc3\xd0\xef\xc0\x37\xfe\x40\x60\x89\xdb\xf6\x1e\xc1\x46\x00\xd1\x0c\x86\xa5\xee\x16\x1d\x15\xd2\x30\xc6\x22\xa3\x02\x76\x4e\x68\x23\xf0\xf2\x49\x98\x58\xa2\x5a\x0a\xad\x0f\x69\x94\x9a\x84\x25\x57\x4b\x2a\x4f\xb2\x18\x52\x2a\xc7\x7f\xd5\x4c\x1a\xeb\x78\x2f\xd6\xf6\x06\xdf\x02\x47\x88\xf8\x9d\x95\xdf\x7d\xd9\xee\x82\xc6\x2b\xf9\xd1\x8c\x57\x15\x6c\x77\x32\xc7\x71\x9b\x6c\x24\xf2\x8a\xba\x11\x00\x96\x2b\x5a\xf3\xcf\x65\xf6\x9e\x68\x84\xb2\x05\xb0\x1f\x34\x07\xbf\xe6\xf1\x70\xce\x92\xc7\x9b\xdf\xfa\x7c\xb8\x12\x28\xcf\xc1\x63\x69\x3f\x16\x48\x02\xd6\x7e\xa6\x26\xc6\x3d\xbe\xda\xdc\x78\x91\xfa\xd0\xee\x3e\xc8\x08\xa9\xd4\xed\xab\x02\x21\x8c\x8a\xd9\x63\x37\x69\xae\x22\xed\x95\xa3\x89\x0d\x01\x27\x1e\xae\x8b\x44\x68\x6b\x52\x79\xac\x91\xc6\x8a\xca\xed\x8a\x93\x3e\x03\x08\xf6\x91\x68\xff\x65\xe8\x3a\x44\x8e\x27\x91\x09\xa0\x33\xf0\x57\xf0\x96\x6f\x15\x52\x37\x83\x63\x5d\xf4\x28\xa8\xba\xdd\xc8\x2c\xf9\x58\x01\xb9\x00\x32\x65\x3a\xc5\x2a\xa1\xc5\x52\x30\x37\xcc\x16\x35\x54\x30\x2e\x7a\x56\xfa\xd2\x58\xdd\xa9\xd5\x57\xdf\xba\xc5\x6d\xd0\xd2\xc0\x1b\x99\x2b\x10\xdb\x9a\x36\xdb\xc2\x5f\x7e\x46\x35\xd8\x13\x69\x9f\xf6\x8b\x47\x6e\x9c\x5f\xf2\xd4\x05\x0b\xa8\xd2\x94\x1c\x1b\xcd\xe6\xc0\x3b\x2b\xf8\x6a\xa9\x9e\x49\x47\x89\xc5\x00\x9c\xef\x80\x2e\x0e\x9e\x42\xe8\xda\x6d\x10\xae\xef\xae\x1c\xfc\xdd\x55\xee\x2c\x9a\x75\xbd\x02\x31\x62\xa3\xbb\x05\x79\x27\x40\x3f\xbb\x77\xbb\x5f\xb6\xbb\x1b\xda\x4f\xee\x0c\xb9\x95\x4e\x36\x83\xbb\xbc\xfd\x7a\xd7\x62\x48\xf4\x4a\x28\x97\xd0\x38\x48\x85\x70\x7b\x25\x73\xbd\x92\xaf\x06\x6c\xd0\x7e\xb5\x23\xd2\xcd\x49\x23\xdb\xc4\xb7\x0a\xaa\xfa\x6a\x61\xdf\xdd\xfe\x6c\x5a\x09\x9f\x97\x63\x65\x35\x6d\xd1\xfc\x28\x64\xd3\x1c\x45\x93\xd1\x59\xf8\xc8\xd3\x4b\x18\xb8\x6c\x02\xca\x81\x5e\xe6\xb3\x81\x54\x73\x0c\x14\xe8\xe6\x78\x6d\x3f\x90\x6e\x92\xdf\x8d\xbb\x03\x2a\xc1\x6a\xee\x84\x38\x9d\xde\x00\xf7\xd3\xce\x3d\x74\xfc\x44\xe4\x73\x70\x90\x78\xba\x5b\x01\xa7\xc3\xad\xa0\xe5\x5a\xae\x51\x5d\x04\x4b\x76\xd6\x25\xda\x42\xf0\x15\xf3\xb2\x29\xcc\x33\x27\xd1\x94\x0d\x5d\x0d\xcb\x63\xac\x63\x8f\xfc\x8c\xf8\x1d\xe2\x0e\xdc\xff\x06\x4c\xd0\x9e\xf3\xa3\x1b\xed\xcc\x76\xb5\x50\xa3\xba\xde\x1d\x29\x0e\xe1\x7d\xad\xcc\xc6\x4f\xa6\xe9\xeb\xe3\x58\x6f\x93\x00\x43\xc7\xbd\x29\x4e\x7b\xdd\xb7\x5f\xa4\x05\x9d\x2a\x50\x34\xcb\x3e\x9e\x9f\x17\xcf\xf8\xc6\x31\x45\xb3\xec\x61\x12\x4c\x33\x81\xdd\x4d\xbf\x13\xcf\x52\x9c\xa6\x36\x3a\x29\x00\xd8\x71\x65\x8f\x91\xa6\x48\xcd\xb9\x1c\xb7\xb0\x22\x89\x14\x6e\xa0\x41\x68\xc1\x90\x54\x24\x8f\x96\x09\x85\x4d\x4f\xbf\x3b\xff\xf7\xff\xf4\x16\x87\x6a\xce\x1e\x03\x4f\xb2\xaf\xb0\xed\xa3\x63\x91\xb7\xf6\xa3\xe5\x01\x93\x9c\x85\xb0\x8e\xde\xe3\x4e\x0f\x1a\x99\xf4\x29\x96\xec\x7b\x89\xe3\x4b\x59\xbc\x64\x22\xd6\xd6\x6e\x8a\xc4\xe3\x28\x7a\x53\x51\x9f\x47\x8c\x6b\xeb\x04\xe5\x6a\x77\xb3\xdd\x57\xda\x5f\x88\xd0\x27\xf6\x93\x78\x1a\x06\x0d\x9f\x27\xb6\xbd\x23\xa9\xc9\x44\xfd\xf8\xf9\x1b\xf3\xf0\xc7\xdf\xbd\x71\x13\x02\x4e\x02\x46\x34\xec\x31\xed\xc1\xff\x29\x6c\xa7\x7a\x9a\x73\x9c\x9d\x85\x68\xc0\x85\x20\x1b\x99\x23\xfa\x47\x6c\xf7\x8b\x56\x40\x87\xd9\x97\x6e\x35\xbf\x7a\xf8\xe3\xef\xdf\x98\x2f\x3f\x83\xbf\xe7\xfb\x5b\x26\x38\x06\xbd\x67\xc7\x4e\xf9\x29\xa4\x9b\x78\xc9\x55\xf9\x5f\xd1\xd3\x15\xad\x7c\x2d\xf8\x12\x78\x6e\xe3\xfe\x95\x4d\xf4\xf1\x2a\x3f\x06\xfe\xd9\xdd\x88\xa5\x16\xb6\xf8\x53\xf2\x08\x00\x8f\xec\x19\xb4\x5d\x0b\x35\x7e\xa6\x07\x2b\x49\xd3\x29\xcd\xd3\x6d\xa1\xfa\x89\xea\xa8\xfe\x0d\x06\x30\xb3\x89\x97\xfb\xd0\xec\x93\x44\x7d\x9e\xbd\xfc\x7b\x5b\x92\xa3\x26\x57\xec\x92\xe5\xd0\x47\xb3\xcc\xfc\xc0\x51\xba\x7b\x1b\xcd\x5f\x4d\x9a\x91\x99\x54\x54\x7a\x39\x5e\x43\x4c\x76\x42\x4b\x8d\x6f\x5f\x7b\x86\x15\x7b\xcb\x92\x7a\x7d\xb4\x29\xef\x0b\x2a\xe6\x2f\x1e\x5e\x4c\xb4\xed\xe9\x7e\xaa\xe8\xc5\x65\x97\xef\xeb\x2e\x97\xdb\x0e\xd9\x12\x8e\x66\x2d\x25\x58\x1f\xba\x87\x83\x15\x08\x7b\x46\x14\xeb\x9e\x36\x31\x3e\xc6\x98\xc4\xb1\x23\xb4\x3b\x5b\xc6\xb3\xf7\x9e\x5d\x1d\x89\x95\xf2\xe4\xca\x9b\x2e\x8f\xae\x90\x39\x7b\x2a\x34\x3c\x73\x64\xd6\x20\xd1\x03\xae\x16\xdb\x44\x44\x5b\x38\xd6\xf3\xcb\xc5\x57\x61\x23\xf4\x11\xcb\x7d\x8a\x0d\x26\x76\x5f\x7e\xb6\xc8\x69\x80\x16\xe8\xc8\x6c\xc5\xf8\x0e\xd8\x9b\x2a\xe0\xcb\xc9\xec\xc1\x93\xb1\x0f\x6a\x8a\xb6\xdd\xfe\x54\x0e\xa3\xd6\x92\xad\x10\x3c\x10\x3e\xa8\x83\x8c\xf9\xda\xbb\x95\xb2\xfd\x15\x08\x70\x53\xf5\x1f\x4d\x5c\x94\x1f\xbc\x95\x0e\x5e\xa8\xbe\xa1\x60\xf9\xb8\x09\xab\xe1\x58\x1c\x23\x2e\xa4\x1b\xf8\xf6\xe8\xd0\x5e\x47\xf5\xf9\xfb\x4e\x0d\x78\xf4\x02\x49\xe3\x5b\xfe\xa1\xdc\xda\x04\x9a\x7e\xee\x26\xa9\xc2\x6f\x39\xa5\x5e\xc0\xe3\xd0\x6e\x09\xcc\x55\xb1\x77\xa7\x1d\x90\xf8\xc2\x0a\x3b\x81\x00\xab\xc2\xa2\x8e\xaa\xdd\x5e\xb3\xdd\xdf\xb5\xb0\xc8\xba\xd1\x59\x85\x2f\xc1\x2b\x60\xc4\xc0\x41\x47\x47\x68\x08\x77\xfc\xf2\x8f\x8f\xc8\xb9\x87\xa0\xd2\x83\xe8\xdd\xc2\x02\x06\x7e\x25\x35\x1a\x2c\x8c\x19\x43\xb8\x76\x33\x06\xdb\xf2\xc0\x56\xa7\x92\x64\x50\xa9\x60\xab\x20\x61\xec\x8f\x0b\x65\x8d\x30\x0f\x38\x07\x87\x86\x9f\x83\xe1\x5a\x0a\x13\xc0\x33\x51\x2f\x5b\x40\xf4\xed\x04\x39\xd9\x4a\xfd\x11\xda\x9c\xba\x5b\x12\x54\xb3\xad\xf7\xdc\x8e\xee\x15\x6b\xd1\x0a\x30\x2a\x04\x8b\x75\x4f\x54\xea\x6e\x33\xf0\x51\x90\x88\xe4\xb1\x38\x48\x38\x38\x0a\x27\xe3\xa4\xbb\x22\x0a\x3a\x87\xb6\x07\xee\x0d\x14\x7c\x26\x6b\x06\x7e\xbd\xf6\x2d\x4c\xad\x4f\x2a\x0a\xa5\xc4\xf9\x9f\x2c\x0b\xa5\x83\x8d\xe6\x6f\x07\x11\xcb\x16\x24\x76\xe6\x0e\x11\xfb\x21\x67\x8c\x82\x02\xb7\x15\x83\x74\xb8\xf5\xaa\xb7\xe0\xe4\xe7\xee\xf9\xb0\x9d\xf0\xe9\xd0\x14\xaf\xdc\x17\x76\x29\xed\x9a\x19\xde\x0a\xe6\xca\x18\x6f\xb4\xe0\xd5\xc0\x10\x66\x3e\x83\xf7\xa4\xb9\xea\x94\x28\x9e\xca\xdd\xbb\xf1\x6b\x2c\x3d\x7f\xe2\x8b\x6c\xea\x47\x37\xc7\x8a\x8d\xe0\x17\x9e\x5a\x7e\x37\x7a\xa0\xc5\x97\xb7\x14\x0e\x96\x69\x1a\xac\xba\xbd\xae\x6d\x20\x66\xb0\x0e\xa4\x6a\x01\xe7\xfe\x5a\x6e\x1a\xb7\xd5\x72\x8e\xdf\xdd\x88\x35\xa2\x73\xef\x92\xe0\x13\x1a\x22\x51\x1c\x23\x5a\xc9\x27\xc2\xff\x54\x6c\xba\x04\xef\x14\x00\x29\xcb\x5f\xf1\xa9\x2b\xc1\x13\x5e\xcd\xc7\x17\xfb\x87\x62\x95\x76\xe0\xf7\x09\x68\x09\x5c\xab\x14\xad\x21\xdd\x1c\x61\xa2\xdc\x76\xf8\x68\xe6\x37\xda\xb4\xdd\xfe\x99\x13\xaf\x3d\x48\x7c\xff\x41\x71\x66\x64\x14\x0a\xbe\xcb\xe0\x0a\x49\x3e\xda\x21\x0a\x08\x88\x27\xa4\x54\x7a\xf2\xf8\xfb\xdb\x9f\xd9\xf1\xf3\x3f\x7e\x7b\xfc\xe2\xf8\x3f\x83\xae\xe9\xa3\xe0\xae\x38\xc2\x07\xce\xeb\x20\xc1\x0f\xbe\xe1\x23\x6c\x69\xca\xf1\x62\xc4\x93\x3d\x02\xf0\x47\x1a\xfd\xc4\x26\x50\xfc\x50\xbd\xee\xec\x47\x37\xd1\x6f\x66\x68\x75\x72\x06\x0f\xf9\xd1\x92\x0a\x6d\x40\x91\xdc\x46\xf3\x2a\xd2\xc0\xdd\xfe\x3c\xc8\x68\x1d\x21\x9d\x2c\x03\x6a\x2c\x7c\xf6\xaf\x6f\xaf\x0d\x3f\x62\x78\xe7\xf1\x88\xe2\x85\x60\x0b\xa1\xb6\x68\x47\x5e\x8b\x46\xd2\xb3\x27\xb1\x38\xbd\x9e\xcf\x2e\xa4\x91\xee\x82\x81\x77\x5e\x90\xb2\x77\x37\xee\xbe\xad\xb1\xc4\x15\xc4\x08\x18\xd8\xfb\x97\x66\xc3\x15\x5b\x36\xdc\x98\xe2\x41\x2f\x99\x16\x15\xb3\xe2\xad\x7d\xf0\x15\xbc\x75\x7d\xf9\x99\x2b\xff\x6a\xaf\x7e\x79\xde\xe9\xa5\xa8\x8a\xb3\xb1\x1b\x45\x7a\xc4\x78\x42\xf3\xe4\x07\xf6\xe4\x57\x02\xdf\x9b\x20\x58\xc8\xb6\xd3\x70\x0b\x24\x48\x9c\x77\xba\xf6\x23\xf9\x98\xde\x1f\xdd\x9d\xeb\x9f\x42\x40\xae\x00\x54\x76\xef\xb8\xe5\x4d\xe3\x15\xd5\xa3\xe7\xc6\x4f\x66\xcb\xa6\x53\x61\x61\x9e\x35\x8e\x34\x01\x77\xa7\x30\xb0\x09\x1b\x30\x96\xdc\x41\xe7\x9d\x7b\x43\x53\x51\x20\x3a\x90\xad\x17\xa9\xe1\xad\xbb\x36\xc8\xa1\x19\xf4\xde\x1f\xcd\x60\x44\x60\x39\x72\x8a\xa6\x31\x18\xdf\x0c\x5d\x93\x6a\xf4\xc2\x3c\xe9\x35\x06\xc7\xca\x8a\xf6\x96\xd6\x17\xab\xe8\x16\xe2\x03\xe6\xac\xd2\x5d\x71\x8b\x66\x42\xd3\x96\xfa\xb0\x69\xe1\xb0\xa0\x96\x08\xf4\x4a\xf0\xb1\xe1\x6a\x05\x81\xed\xe0\xd7\x4a\x5a\xb9\x52\x9d\x0e\x73\x38\x0f\x5f\xd8\xdd\x15\x84\xc3\x0b\x6c\x98\x11\xbb\x77\xb3\x46\x2e\x85\x32\xa2\x78\x2e\x0d\x57\xc6\xff\x0c\xdb\x52\x6a\xd6\x40\x49\x7c\x9f\x34\xe0\x8a\x33\x73\x17\x0c\xf9\x6d\x75\x75\x4f\x3f\xd3\x7a\x0b\x2c\xf1\xdd\xf6\xbe\x22\xef\x6d\x57\x4a\x25\xad\xdf\xf4\x03\x15\x35\xe1\x55\xf4\x22\x45\x36\x61\xe4\xbd\xa7\x5f\x58\x98\xe8\xdc\x57\x89\x73\xde\x37\xde\xb6\xa6\xf8\x53\x12\xb4\xe1\x94\x37\x14\xff\xae\xdc\xe8\x5e\x89\xe2\xa4\xaf\x78\xf6\x05\x67\xf6\x87\x2d\xf7\x46\xbe\x83\x23\xca\xbb\x1b\xbb\xbb\x51\x10\x4f\xc9\x72\xf5\xa9\xdc\x82\x79\xb3\x16\xe7\x42\x73\x65\x9a\x84\xdf\xf0\x8d\x49\x65\x85\xbe\xe0\x0d\x79\x4f\xb2\x63\xcd\xc9\x05\x83\x7d\x6c\x38\xb7\x9f\x78\x40\x5e\x55\x1a\x84\x18\x82\x43\x4b\xf4\xbc\x10\x91\x0a\xe6\x7b\x42\x8b\xba\x91\x41\x27\x14\x5f\xc0\xf0\x11\xc6\x0a\x34\x95\xab\x7a\xdd\xab\xb9\x6f\x0a\xb4\xab\x66\x50\x4b\xd2\xaf\x3e\xbe\xbb\xda\x3a\x4e\x03\xb6\xcf\x25\xb7\xcb\xb5\xd0\x4e\x1c\xd8\xba\x33\xa8\xbc\x89\xcf\x8a\x3b\xb2\x96\x58\xf9\x0c\x5c\xa1\x75\x8f\xae\x4d\xd8\xcf\x68\x7a\x12\x36\xa6\x96\x10\x7d\xc6\xef\x00\x34\xba\x0f\x7b\xd5\x38\x89\xf7\x05\xaf\x8d\x6c\xfb\x96\xfd\xdb\xe7\xbf\x8b\xf6\xc3\xc1\x17\x66\xbe\xdf\x58\x23\xd4\xca\xae\xfd\x93\x74\x62\x1c\x4d\x86\x42\x5a\xf0\xe5\x9a\xbc\xc1\xba\xf3\x12\xb6\x07\x28\xd3\xf9\x5a\x6e\x8e\x58\xeb\x3b\x7c\x58\x21\x79\x4d\xa4\x4f\xa8\xe4\xc4\x82\xbe\xe1\x77\x57\xad\x77\xf9\x9e\x4f\x59\x20\x9d\x86\x8b\x21\x31\x3d\x32\x10\xd5\xe6\x57\x18\x1e\x85\x56\x54\x25\x0e\x5b\x1c\x91\xa9\x98\x12\xa2\x2a\x79\x6f\xd7\x23\xb3\xff\x27\xb8\x0f\x2a\xa9\x67\x14\xac\x11\x03\xdb\x41\xb0\x46\x1f\xd2\x2e\x2d\x19\xdf\x30\x8e\xfe\x64\xb4\xdf\x11\x7d\xb6\x68\x7a\xf1\xe0\xab\x01\xb6\x63\x42\xfa\x89\x17\x0e\x0d\xa6\x14\x11\x7b\x7c\x6c\x6d\x44\x65\x8e\xe4\xdb\xef\x6e\x47\xbf\xe3\xde\x9e\x80\x08\xd7\x7f\x54\xc5\x7e\xf6\xe4\x8f\xaf\xd8\x0f\xdf\x3f\x7f\x84\x72\x94\x8f\xdf\x73\xb0\x76\x29\x5b\x88\x4b\x85\x7e\xa5\x27\x44\x5c\x87\x9e\xe2\xd1\x60\x50\x2c\x8c\x45\x27\x1b\xc1\x2c\x77\x52\x6c\x90\x08\xc2\xb4\xa7\x9d\x6c\x84\x06\xb7\x7d\x90\x38\x94\x0c\x36\x00\x31\x9e\x1a\x3e\x43\x31\x47\x17\xdc\x56\x92\x5b\x05\xd2\xd3\xd0\xd5\xb1\x95\xe8\x80\xbe\xe4\x0d\x79\x9f\x07\xbf\x33\x44\x0e\xfc\xcf\x3f\x62\x27\xbb\x5f\x86\x06\xe3\x16\x0d\x5d\xe3\x5a\xf1\x96\x85\x6e\x34\x80\xa3\xb7\x09\xf1\x8d\x93\x89\x28\x2e\xc1\x9e\x1e\xc5\x9f\x7e\xb8\xa5\xee\xae\x7a\x77\xd5\x0c\x14\xb6\xd3\xdc\x5e\xc3\x39\x16\x55\x2c\x46\x3b\xcb\xf4\x96\x9a\x2d\xbb\xcd\x50\x36\x52\xd5\xc5\x33\x14\xfb\xe2\x97\x28\xed\x60\x89\x02\x4d\x40\x2c\x26\x0d\x10\x16\x46\x85\xf0\xff\xf3\x7f\xfd\xdf\x9f\x7e\x8d\x6f\x8b\x5f\x5b\xdd\x7c\xfa\x35\xb3\xfd\xdd\x15\x52\x51\xce\x16\x70\x9c\x5c\x2b\x6e\xbe\x43\x65\xf6\x8a\xb7\xbc\x9d\xf5\x0a\x68\x15\x12\x2a\x60\x37\xc9\x5c\x30\xf9\x3c\xeb\x95\x01\x2b\x1f\xa2\x5a\xb7\xd7\xec\x19\xca\x59\xb3\xec\x3b\xdd\xd3\x81\x8c\xcd\x66\x6a\xef\x66\x65\xaf\xbb\x7a\xf6\x5f\xbd\x5c\xd6\xe5\xaa\x97\x95\x28\x9e\xba\x8a\xb7\xd7\xec\x04\x02\xa5\xa9\xd5\xed\xf5\xee\x1d\xc4\x5a\x81\xd7\x53\xe2\x5a\xec\x5a\x9a\x60\x6d\x4a\xbb\xb0\x86\x3b\x2c\xf5\x50\x07\x1a\xb7\xec\xda\x96\x2b\x37\xd0\xb6\xb7\xcc\x80\xdb\x33\x5a\x22\xc6\xc7\xff\x94\x5e\xcd\x36\xbd\x59\xa3\xc4\x87\x3d\xfc\x09\x62\xdb\x90\x61\xad\xef\x6b\xaf\x31\x32\x15\x98\x2d\xb8\x16\x65\x4b\x6e\x3c\x9e\x10\xac\x05\xc4\xf2\x58\x93\x3c\xe8\x9f\x56\x7d\x10\x94\x60\x82\x7a\x2e\x1b\x61\x0a\x1f\x39\x6d\x46\x17\xac\xbb\x54\xad\x16\xa2\x38\xbe\xbd\xe2\xbb\x77\x0e\xca\x0a\xed\x4d\x5b\xb9\xaa\x4a\xcb\x57\x0e\x0a\x97\x1c\xe3\x73\x31\x94\x9f\x1c\xac\x16\x8d\xa0\xb6\x5c\xeb\x6e\x25\xf4\xcc\xf2\x95\x29\x30\xc4\x25\xbb\xfd\x19\xf8\xd4\xbd\x80\xaa\x9b\xbe\x69\xa6\x82\xaf\x42\x38\xb4\x59\xc3\x17\xa2\x31\xc5\x63\x2b\x6b\x61\xdd\x3d\xd1\x3a\xec\x6d\xa7\x84\x93\xce\x9b\xae\x15\x56\x0b\xf6\x8a\xd3\xce\x9b\x2d\xc1\x85\xc9\x04\xef\x25\x57\x65\x25\x3d\x1b\x21\x4c\x71\x82\xde\x52\xee\xbb\x43\x99\x1b\x87\x0b\x06\x2f\x01\xb3\x56\xd9\x88\x52\xf3\xcb\xe2\x29\x6f\xf1\xc7\x5a\x1a\x08\xc8\xeb\x0e\x7b\x2b\xef\xae\xf0\x2b\xbe\xbc\x21\x1c\x0b\xc2\x00\x55\x71\x04\x87\xe3\x61\xf3\xd2\x45\xf4\x0b\x43\x10\xdb\x39\x4e\x4f\xd3\xf2\x01\x93\x64\x84\x06\x53\x9f\xe8\x3f\x0b\x61\x31\x16\xbb\x9b\x01\x45\x8c\x4a\x74\x70\xff\x98\x7e\xe3\x48\x24\x86\x28\x5e\xe8\xee\xd2\x08\x5d\xbc\xe2\xda\xf1\x47\x9e\x79\x7e\xfa\xea\xc5\xf3\x7f\x63\x50\x07\x78\xf2\x5a\x58\x34\x2d\x4e\xa2\xbb\xcc\x67\x61\xc1\xe6\xdd\x85\xd0\x10\xae\x08\x1f\xda\x57\x71\x44\x01\x84\xbc\xce\xc3\x4c\x82\x8f\x39\x4b\xe6\x33\x40\x1a\xcb\x9b\x04\xf0\xb1\xa9\x25\x18\x75\x4c\xc1\xf2\xa6\x29\x4e\x88\x33\x9b\x2a\x47\xab\xb9\xaa\x5c\x0c\x05\xbc\xb1\x65\x91\xbd\xe0\xe9\x2d\xb3\x90\x8b\x15\xbd\xdd\xd7\x61\x3e\x92\xba\xdb\xdd\xa4\xa6\x73\x33\x51\x49\xdb\xe9\x39\x44\x43\x96\x0d\xf9\xd8\xc1\x0a\xf9\x22\xb4\x07\xc4\x52\x38\x46\xe0\x54\x08\x86\x80\x1e\xc4\xfd\x93\x00\xc0\xab\x23\xb8\x39\x52\xf9\x46\x0b\xd8\x41\x88\x64\xbe\xfd\x41\x9a\xdb\xfd\x4d\x39\xfe\xd4\xc3\x2f\xb9\x02\xeb\x72\xd7\xac\xea\x54\xe9\xee\xf8\x12\x0f\xf2\x0b\xb7\xb2\x41\x9d\xeb\x03\xb8\x85\x1e\x95\x13\x3a\x32\xb4\x80\xac\x01\x6e\x7e\xeb\x39\xfc\xc7\x18\xb6\xbd\xb1\xe5\x42\x94\x9d\x2a\xb9\x9f\x3c\x0f\x5f\xf1\x89\xb0\xc2\x49\x5c\x32\xef\x92\x58\x09\xef\xb2\x16\xa3\xb6\x62\xeb\x20\x59\x2d\xc4\xb9\x13\x6c\xdc\xa7\x38\x8f\x1e\x8f\x56\x38\xd1\x1b\xe3\x14\x47\x87\x06\x59\x4b\x56\x77\xa0\x55\x81\x90\x37\xb1\x69\xdf\xb2\xd7\xe3\x4d\x0e\xd2\xb1\xf6\xe9\xf8\xd6\xfc\x42\x94\x97\x5a\x5a\xaf\xf1\xfe\xb0\x21\x0e\x7c\xdb\xf2\x44\x81\xb4\x05\x95\x69\x12\x0d\x0c\x22\x93\xd1\x48\xd1\x1c\x1b\x90\xf2\x17\xed\xc3\x44\xfa\x9a\x34\xae\xf0\x7b\xd0\x71\x9e\x10\xe5\x21\x6e\x25\xff\x2e\x05\xce\x39\xf3\xac\x9b\xa0\x03\x29\x20\x9e\x2c\x98\xaa\x04\x62\x72\xe4\xa3\xe3\xa0\xf5\xa6\x13\xc9\x3e\x83\x1b\xbb\x0f\xb7\x35\x45\x2f\x40\x30\xd2\x69\xc6\x41\x73\x7a\xa4\x5e\x00\xc7\xa5\x38\x5b\xc9\x0a\xb8\x2d\x37\x64\x39\x6e\xca\xe3\xd5\xe9\xc2\xdd\x17\xc9\x3e\x5e\x8a\xa6\x04\x57\x84\x42\x82\xc1\xb1\x2f\x01\xc2\x7d\xf8\x40\x20\x41\xf7\xd0\xbc\xaa\x4a\xdb\x6e\x9a\xe2\xd1\x43\xf3\xd9\x97\x7e\xf0\x5f\x3d\x42\xd3\xbc\x08\x84\x9a\xb9\xf4\x23\xd2\x13\xfc\x1e\x08\x47\xbe\x79\xb0\x30\xd9\x2b\x84\x1b\x5d\xb8\xc8\x5c\x84\x60\x9c\xde\x1d\x67\x25\x14\xa8\xe9\x48\x33\x9f\xc8\x4a\x0c\x63\x50\x28\x96\xac\x17\x35\x59\x49\x2d\x96\xb6\x19\x4a\xdb\xe1\x96\xf5\xb7\x31\x3c\xdd\x38\x12\x47\x7a\x3c\xcf\xdc\xa3\xf3\xef\xa7\x6e\xb4\x0f\x20\xea\x84\xb7\x1d\xbb\xbb\xea\x17\x68\x6e\xe8\x43\x6b\xf8\x9e\x22\xab\x12\x8f\xb1\xe5\x7c\xbd\xde\xdd\x58\x08\xb8\xf8\x4e\xd4\xad\x60\x12\x03\x9e\x53\xec\x58\x1b\x16\x7e\xee\x35\x89\xc0\xc9\x40\x37\xb1\xd7\x28\x7f\xcd\x53\xc2\xe9\x1d\x62\xc0\xe2\xdf\xcd\xd6\x6b\x78\x7f\xe8\x17\x62\xbc\x6f\x73\xe3\xf3\xf1\x66\x26\xb2\xb7\x10\x18\xe9\x99\x88\x29\x58\x6c\x90\x5f\x71\x8b\x81\x0d\x42\x7b\x9e\x5f\x41\x7d\xb9\xd7\xa9\x3f\x7a\xc8\x0c\x7b\xc4\xee\xfe\x01\x73\xe4\xe9\x49\xc5\xe9\x75\xfe\x82\xc7\xf3\x8a\x2b\xd2\xe9\xa1\x94\xa6\xe4\x78\xf0\x76\x7f\x37\xd6\xb1\xf2\x10\x80\xc3\xb5\xf5\x88\xac\x8e\xe5\x51\xd2\xd6\x22\x1e\x1e\xaf\x72\x40\x52\x02\x52\x68\x4a\x0e\xa0\x65\x33\xb4\xc0\x22\xa0\xee\x98\xc8\xc1\x11\x78\x58\x38\x58\xbc\x80\x1d\x0d\x4c\xad\xa1\x05\xba\xbd\xba\xae\x8c\x68\x17\x1d\xa8\x0e\xf8\xed\xd5\x3e\x1d\x80\x3e\xc2\x60\xd2\x99\x43\x91\x37\xa0\x4d\x1e\x4a\x01\xfb\x6a\x4c\xbc\xdc\xdf\x52\xad\x4a\xd5\x95\x4d\xa7\x56\x42\xfb\x59\xf5\xbe\xfb\xd1\xcd\x11\x3a\x41\xe3\x57\xb2\xb6\xc1\x3e\x40\x90\x4a\xdb\xc4\x63\x5e\x95\x97\xeb\xa4\x87\xd0\x20\x84\x37\x09\x21\xcc\x53\xc5\x3d\x74\x10\x8d\x06\xc7\x86\xe2\xdf\x8a\xf8\x09\x03\x39\x3b\x46\x26\xd0\xc0\x7b\x95\x89\x27\xe3\x70\x1f\x5f\x7e\xc6\xbf\x1a\xf9\x5e\x80\x82\x86\x39\x2c\xe1\x01\x12\xee\x81\xa9\x63\x02\xd1\x05\x80\xa9\xb4\x34\x16\x03\x0d\x12\x48\x3e\x17\xd3\x7b\x95\x57\xc1\xc7\x0f\x03\x09\xc3\x32\xd9\xa9\x2d\xab\x3a\x4f\x36\x1d\x19\x31\xeb\xee\xd2\x09\x92\xc6\x3a\x39\x58\x2c\x45\xbd\x9f\x07\x60\xe4\x95\xe6\xb1\x81\x28\xc2\x5d\x49\x8e\x0a\xb0\xf5\xb3\xdd\x99\x70\x5a\x10\x62\x8e\x7d\x96\x3c\xc9\xa3\x3b\x26\x73\x02\x2b\x18\xfe\xa3\x3d\xed\xb8\x6d\xba\x09\x27\xda\x26\x67\x01\x40\xf6\xee\x4a\xd4\xb2\x09\x86\xe0\x21\x9c\x5d\x42\xfd\x4d\xbf\xa8\xa4\x2e\x8e\x1b\x4b\x22\xf5\xe3\xba\x11\x09\x61\x21\x8f\x50\x18\x4e\x60\xd7\xcc\xa8\x4f\x8a\x0c\x8b\x83\x39\x80\x79\x5a\x1d\x46\x20\x75\x91\x84\x9d\x86\x06\x07\xe1\xf9\x3f\x2f\x80\x78\x02\x3f\x96\x1e\xa4\x82\x18\xab\xa2\x92\x4d\x2b\x8c\x1c\x81\xe7\x72\x8b\x2f\xa3\x08\x69\x21\x20\x03\x3a\xdd\xf8\xd2\x73\xa9\xaa\xe2\xa4\x6f\xc2\x07\xde\xdb\x35\xa4\x06\xd9\xf2\xd8\x86\x17\x16\x5f\x08\xc3\xff\x1c\xbe\xc2\x55\xf8\x0a\xec\x36\xfd\x27\x8c\x78\x07\x46\x57\x8e\x6f\x0f\xdf\x95\xb8\xf4\xdf\xdd\x0e\x0f\x81\xe2\x94\xb8\x24\xbb\x59\x27\xd0\x25\x5f\xe7\x7b\xa2\x5b\x52\xe6\x68\x89\x2b\xa6\x52\x90\xcf\x93\xe2\x65\x23\xb8\x2e\xc7\x0d\x48\x66\x45\x0b\x5c\x71\x02\x1a\xe4\xc1\x91\x38\x78\x7b\x3d\xea\xef\x30\xe0\x74\xef\x87\xe0\x83\x9e\xf8\xd5\x3e\x32\xdd\x46\xa8\xf7\x57\x3c\xde\xbd\xcb\xbb\xeb\x8c\xa8\xd2\x6a\x7c\xe3\x1f\x17\xa6\x44\xdc\xa4\x2a\x37\x90\xab\x46\x14\xc7\x96\x2b\xae\xf6\x07\x91\x02\x60\x5c\xd9\x09\xac\x55\x57\x8e\x1a\xa2\x58\xc7\xc9\xbc\x20\x17\x81\x52\x7b\x54\xd2\xc7\x46\x68\x39\xd1\xde\x03\x16\x6c\xaf\xb0\xdc\x34\x7c\x29\x28\xa4\x22\xad\xbb\xe7\x06\xb2\x5e\xf2\xad\x31\xee\x0c\xdb\xf2\x39\x81\xcc\x1c\x9f\x24\xc1\xaf\xd7\x91\x5d\x30\xd9\x6f\xb3\xd7\x19\x81\x0d\xd5\xbb\x1b\x78\xb7\xc2\x93\x3a\x48\x75\xa8\x45\xa9\xce\xbb\xe2\x29\x6a\x53\xa8\xae\xbb\xc0\xd0\x0d\x89\x3e\xa4\xf1\x6a\x89\x3f\x4e\xa3\x74\x3d\x48\x26\xe2\x81\x8f\xd9\x05\xdc\x19\xdd\x2f\xa8\x08\x45\x5d\x4a\xac\x89\xf2\xce\x81\x61\x00\xfe\x83\x9c\xb2\x84\x3d\x30\x90\xe4\xf1\x86\xd0\x36\xc2\x4a\xff\x6e\x73\xa0\x52\x6f\x44\xf1\x83\x11\xcc\xb1\xa3\x0c\x0a\x5d\xad\x43\xd0\x9e\xae\x47\x89\x98\x96\x8d\xde\x7b\x22\xad\x45\x42\x99\x10\xdc\x31\xbd\xa5\x1e\xe0\x0c\x59\xbe\x28\x1e\x56\xc4\x43\x87\xdd\xe1\x0e\x8a\x2f\xaa\xc3\x21\xf1\xc5\xa4\xb1\x4a\x37\xcf\x54\x91\xe3\x63\x8c\x68\xc4\xd2\x52\x9c\x09\x99\x2c\xf2\xa8\xc2\xd4\x51\xb6\x19\x71\x19\x03\x4e\xb4\x5e\x8f\xaa\x4e\xf4\x73\xe0\x1c\xc7\xd2\x95\x54\x62\xaa\x6d\x8e\xc7\x75\xbf\x45\x4c\x36\xb5\xbb\xd1\x13\xdf\xe7\xbc\x69\x4a\x52\xc3\x41\x14\xf5\xa0\x8b\x9b\x82\x35\x94\x0e\xcb\x76\x4e\x14\x2d\xce\x20\x6a\xec\x14\x9a\x00\x8e\x27\xb8\x2a\x17\x83\x87\x96\xd1\x46\xb0\xea\xeb\x98\x94\x69\xa2\x72\x2b\x94\x95\x9d\x72\xcc\x26\x55\xae\xc0\x46\x76\x6d\x20\xaa\xed\xb8\x43\x03\x31\x78\x6f\xaf\x35\x8f\xbb\x27\x29\x9a\xc3\x0e\xb5\xc5\x63\x85\x37\xd6\x04\x84\xa3\x45\x08\x21\xdc\x5d\x37\x01\xa1\xc5\x52\x28\x4b\x42\xe3\x6b\xcc\x19\x02\x2f\x6e\x55\xea\x99\x09\x7a\xc1\x29\x0c\x04\x37\xa3\xca\x5e\x34\xf8\xf0\x46\xda\xce\x58\x77\x0b\x0b\x05\x98\x82\x52\x70\xe8\x74\xdf\x7a\xdf\xa2\xa9\x79\xc1\xae\x93\x6a\x7c\x7b\xa0\x92\x3b\x6f\xa8\x5f\x4b\x2c\xda\xc1\x98\x9d\x8c\xcf\xf9\x57\x13\x3a\xb7\x5a\x68\x72\x23\x07\xff\x89\x71\x5b\xe5\x39\xaf\xc5\x41\x85\xdd\x74\x65\xd0\x89\x75\xbd\x41\x5a\x1e\x97\x43\x89\xb7\xb6\x38\x73\xfc\x7f\xfc\x86\x44\x02\x28\xff\xf1\x3e\x8d\xa8\xa8\xc8\xbb\x5a\xf8\x86\xfa\xb6\xa4\x19\x31\x8e\x84\xc0\x7c\x84\x8a\x58\x20\xaa\x92\xdb\xe2\xa7\x30\x15\xff\xe2\x44\x83\x87\x38\x0b\x3e\xd2\xb8\xab\x86\xcf\x24\x3f\xf9\xda\xde\x9b\x18\x1b\x09\x39\x25\x4e\x7a\x84\xa6\x48\x1c\x60\xe6\x12\xc4\x25\xb7\xb7\xc1\xda\xae\x85\x84\x09\xdb\x3f\x04\x3c\xbb\xe0\xaa\x44\xb7\x50\xd4\xe7\xd7\x28\x4b\x65\x14\x11\x7e\xc0\x60\x6d\x5e\xe0\xd1\x41\x80\xd7\x7e\xf9\x9d\xd0\x5f\xa7\xd0\x5a\xc0\x7c\x12\x18\xc9\x2f\x3c\x72\x29\x54\x7e\x4f\x73\xc3\x7e\x25\xba\xcb\xfd\x16\x0c\xe0\xa3\x95\xa2\xd9\x96\x15\x39\x52\x3c\x08\x13\x0f\xbf\xbe\x82\x3d\x84\xde\x13\x0e\x65\x9b\x4c\x3a\xa2\xf5\xab\xda\x48\xf0\x4c\x5b\x22\x66\x5d\x8b\xf3\x5f\xd1\x16\x1a\x65\x89\x10\xff\xc6\x60\x2a\x30\x79\x77\x85\x76\x27\xd6\xca\xd0\xc1\xa6\x83\x7c\x87\x2f\xe1\x9f\xd8\xab\x0f\xf2\xdc\x69\x8a\xee\xbc\x4c\xce\x52\x6a\xf8\x44\xdf\x7c\x02\x00\x1f\x64\x0d\x74\x2b\x99\xbf\x5e\x4c\x57\x88\x56\x31\xe0\xff\xd9\xdf\x5d\x81\xa5\x0f\xc6\x0f\x89\x22\xab\x6f\x16\x35\xb0\x5e\x01\xec\xb1\xcb\x34\x33\x1e\x01\x7e\x21\x20\x8b\xe3\x1e\x47\x80\xc9\x67\x22\x57\x97\x17\x2f\xbb\xa6\x0b\x4c\x9f\x16\x6a\x25\xc7\xe5\xbd\xb2\xee\x4c\x8a\xec\xde\xc6\xc2\xb8\x39\x4d\x64\x0a\x70\xba\x73\xc0\xc9\x71\x60\x11\x69\xf6\xce\x64\x93\x7f\xa7\x30\x84\x84\x59\x54\x40\x4c\xd4\x06\x27\x68\x84\x43\xd3\xb7\x49\x90\xe8\x84\x06\xa0\xa9\x07\x34\x28\x8b\xf0\xb3\x18\xfb\xbb\x1a\xba\x82\x81\x7b\xcc\x7c\xa2\x7f\xa5\x3f\xf4\x34\x52\xc1\x2d\x1a\xf1\x9f\x54\x3a\x27\x54\x72\xc3\xb5\x95\x4b\xb9\xe1\x44\x29\x9f\xc1\xc6\xb9\xbd\x6e\x93\xfd\xc9\xad\xe5\xcb\xb5\x3b\xdb\x91\x65\xfb\x89\x3d\x78\x68\xd8\xa3\x47\x6c\x90\xf1\xe1\xd3\x88\xba\x15\x95\xc8\x55\x31\x89\x9e\x85\xfd\x34\xd1\x64\xd5\x5d\x2a\xc7\x53\x16\x3f\xb9\x6d\xed\xda\xbb\xfd\x19\x2d\x26\x26\x1b\xc0\x57\xc4\x28\x8c\x4e\xe7\x72\x44\xa0\x65\xd7\x6e\xb8\x16\x87\x55\xcd\xcf\xa2\x67\x2c\x18\x4b\x4c\x56\xf3\x5a\xe0\x5a\xb2\x0a\xf4\x16\x75\x5e\x0b\x1c\xf5\xf3\x96\x09\xf1\x4c\x13\x43\x5a\x57\x24\x21\x10\xa2\x2b\xef\x6d\xc1\x8d\x28\xac\x68\x45\x33\x46\x03\xff\x2d\xea\x49\x64\xb3\xd7\x5b\x78\xb5\x0d\x6f\xb4\x34\x53\x5d\xa9\x85\xe9\x1b\x6b\xdc\xd5\xda\xef\xde\xe5\x41\xbf\x3c\x90\x5d\x3b\x66\xcc\x76\xa1\xbb\xd1\xdc\x90\x7d\x75\x78\x74\xbe\xbb\x12\x83\xbb\xa1\x8e\xd8\xee\xdd\xee\x46\xd5\xbb\x1b\x06\xc8\xbb\xd9\xe0\x8a\x43\x48\x24\xf0\xdd\x1d\x77\xd1\x0a\xbd\xa2\xd1\x1e\xe8\x22\x6d\x3e\xb6\x2e\x6b\xd2\x49\x2b\xb7\x25\xb8\x96\x6b\x89\x9e\xf2\x10\xda\x50\xd7\x4d\xec\x6a\xcd\x4d\x99\x66\xfc\x2c\x7e\x3a\xc1\x07\xa5\x35\x44\x6b\xc2\xc5\x49\xe2\x4d\x4f\x2c\x13\xbb\xe0\xfa\x8b\x91\xe7\xdf\x67\xd0\xfa\x67\x8e\x59\xaa\xe8\x7a\xf8\x17\xf8\xe1\x08\xf0\x4f\x7e\xd5\x50\x7c\x9e\xdc\x96\x51\xc2\x45\x58\x20\xa5\x44\xda\xf7\x9c\x00\xbd\xfb\x6a\x2d\x83\x87\xe0\xef\x92\xc2\xa0\x3c\x92\x4a\x02\xb3\x55\x81\x95\x0c\xe5\x0a\xb2\x74\x7e\x90\x66\x50\x77\x30\xf3\xc4\x31\x1d\xec\xf5\xe1\x8f\xff\xfa\xc6\xfc\x7f\xed\xbb\xf2\x27\xd0\xf2\x85\xe3\x70\x2e\x84\x36\x64\xde\xd5\xad\x17\xc2\x66\xa5\xfb\xea\xb0\x58\x4a\x16\x0c\xa9\x5e\x5c\x85\x97\x4f\x82\x23\x9e\xc5\x76\xb8\xb5\x7c\x2c\x1a\x98\x02\xc2\x15\x73\x45\xe8\xdd\x3b\x51\xa7\xb3\x93\x05\x57\x58\xf4\xd3\xe7\x55\x86\x68\xda\xee\x36\x0a\xc7\x16\x27\x33\xe9\x0c\x02\xfb\xc4\xfd\xe7\xcb\xa7\x5b\xcd\xe8\xf2\x22\x6b\xe3\x23\x6a\xa4\xe2\x96\x97\x0b\xdd\x85\x10\x92\x53\xb8\xa1\x0d\x94\x91\x47\x89\x79\x6e\x6a\x61\xa8\x90\xe8\x83\x36\x44\x89\x4a\x28\xc8\x2c\xb0\xe8\xb6\x3d\x05\xcc\xc6\xbe\xa4\x29\x97\x6b\xb1\xac\xa5\x5a\x15\xbb\xbf\x72\x48\xe7\x8c\xc6\xbb\x56\x77\xcd\xee\x86\x92\xbe\x40\xf8\x3c\x6f\xd6\xb8\x90\xba\x86\x2c\xae\x18\x7e\xdd\x3b\x5b\x43\xce\x20\x1f\x7b\xb7\xc1\x08\xec\x74\x32\xb8\x2a\xc1\x82\x14\x29\x80\xbf\x3d\x27\xa7\x67\x9c\xf3\x27\x9d\x22\x9f\x7a\x28\xb4\x0a\x96\x7a\xa3\x86\xe3\x28\xe0\xaa\x55\x3e\xf6\xc3\xa1\x65\xbe\xbf\x47\x08\x26\x76\xa8\xbf\x68\x2c\x1c\x7b\xbc\xbd\xc6\xc8\x09\xfb\xdb\xcc\x09\x80\x69\xe3\x71\x7a\x90\x8b\xc6\x36\xf1\x54\x4c\x6e\xe5\x44\x21\x15\x0e\x80\xa3\xa6\xfe\x91\xdd\x35\xe0\xd6\x31\xad\x1b\x1f\xd8\x89\x2d\xf6\xa6\xb0\x8c\x27\xb7\x0d\x3c\x53\x46\x13\xce\xe2\x95\x7f\x3a\x3c\x4e\x8d\x41\xd3\xfd\x9f\x53\xd9\x49\x9a\xa7\x24\x8b\x98\x50\x5d\x38\xaf\xbd\x22\x7a\x04\x6d\xd0\x93\xc8\x4f\x89\x4c\xd2\xf2\x83\xa7\x37\x9a\x57\xb3\xdd\x5f\xe9\x7e\xa0\x40\xa7\x14\xca\x15\x3c\x45\x7c\xf4\x88\x94\x28\xe2\xe9\xc0\x0c\x1b\xc4\x5f\x26\xd6\x58\xd3\x17\x01\xfb\xf8\x5f\x1e\x56\x9f\x80\xdf\x40\xd6\x92\xa8\x1b\xb0\xae\xf1\xb4\x9f\x64\x43\xba\x8b\xe1\x0d\x72\x90\x10\x58\x6a\xa2\x1c\x62\x2e\x2a\x71\x19\x28\xa0\x8f\xa1\x05\xab\x85\xaf\x60\xc0\x59\xf9\x17\xdc\x06\xfd\x43\x31\xcd\x15\x04\xa9\xa4\xad\x85\xcf\xad\xfe\x01\x65\x3b\x9f\x25\xa6\x53\x91\x51\xda\x53\x9a\x27\x40\xa9\x26\x8e\xa4\xec\xa4\x34\xd3\xc6\x79\x49\x7b\x5c\x5e\x79\x19\x9c\x3d\x34\x59\xff\x5d\x59\xf5\xa2\x04\xc5\xc8\x89\xb4\x8e\x03\xa6\xcb\x7b\xe8\xea\x31\x0e\x4e\xc4\xdf\x6b\x99\xe4\xdd\x7c\x4c\xa5\xe9\x17\x6b\xc1\x2b\x27\x38\x11\x43\x1d\x43\xa5\xa0\x03\x93\xf0\x8c\x33\x79\xb5\x8f\x74\x73\xd1\xc7\x7f\x9e\x75\x89\xf7\xf7\xde\xcb\x41\xb8\xba\x13\x58\x14\x85\xc0\xb2\x70\x34\x65\x63\x7b\xff\xb4\x68\x34\x1b\xaf\x70\x36\x3e\x96\xb9\x95\xc1\x27\xf9\x3c\x08\xae\x0b\xaf\xd0\x4f\x0a\x42\xb6\x2d\x6a\xb4\x3c\xef\x74\xcb\xed\x68\xa6\xf1\x63\x9a\xc3\x69\xce\x1e\x0d\xc3\x30\x7c\xda\xb6\x9f\x56\xd5\x23\x78\x85\x6b\x80\x7c\xfb\x38\xd9\xfb\x53\x92\xb8\xca\x8d\x66\x72\x2f\x72\x4a\xee\xbd\x9b\xb4\x04\x62\xdb\x78\x6a\xdd\x09\x0d\xa2\xdc\x08\x38\x59\xe6\xbc\xdb\x60\xcd\xeb\xd8\x6c\xbe\xe6\x4c\x0e\x32\x31\xc4\x48\xf3\x44\xba\xb5\x67\x52\x19\xee\x9d\xe5\x6a\xee\xf3\xe3\x41\xca\x29\x47\xb2\xd1\x92\x25\x1d\x73\x26\x13\x27\x05\x24\x46\xfe\xca\x41\x24\xce\x63\xe3\x8d\x48\x79\x98\x47\x92\x49\xee\x74\x88\xcf\x88\x8e\x37\xc8\xf6\x58\x70\xcb\x1c\xed\x55\x14\x5a\x27\x40\x13\x3f\xcc\x3d\x24\x52\xef\xcb\x91\xc8\x0a\x52\x6a\x26\xb7\xfe\x46\x91\x75\x0a\xa5\x83\xdb\x6a\x52\x74\x9d\x5d\xca\x5a\x16\xff\x21\x6b\x09\x7f\xcd\x2f\x45\xb3\xec\x5a\x01\x5f\x1e\x0d\x82\xa5\x59\x09\x3e\xca\x40\x70\xec\x0e\xee\x88\x6d\x74\xf7\x67\x01\x41\x68\x21\x42\x07\x9a\xe8\x8b\x2c\x36\x92\x13\xea\xfc\xbe\x82\xd4\x50\xbc\x11\x6c\x25\xec\x18\x6e\x10\x1a\xec\x28\xa0\x2b\x3a\x29\xe7\x52\x1b\x5b\x6e\x30\xf2\x7e\x53\x47\x9e\x28\x18\x05\x03\x34\x00\x40\xd2\x48\xfc\x4d\xa2\x5c\xfc\x1c\x45\x39\x28\xc7\x80\x7d\x2b\x32\x54\x44\x88\xef\xb2\x16\xbd\x09\x64\x6e\xc6\xe4\x16\x3c\x71\x4d\x4d\xac\xf7\x54\x67\xbd\x95\xd8\x1e\xfd\xa1\x21\x41\x2e\xba\x88\xd2\x00\xc6\xd9\xa0\x15\x82\x62\x70\x53\xa1\xee\xe0\x35\xed\xa1\x01\x0d\x99\x87\xad\x82\xe5\x88\xbb\x17\xa0\x0a\x1c\x09\xd7\x62\xb9\xe8\xad\xed\x54\xd4\xe3\x64\xa3\xf4\xa5\x71\xb0\x7e\x8c\xe8\x32\x99\x80\x04\xcc\xdc\x55\xbb\x07\xa4\x3a\x2b\x97\xa2\xfc\x3c\x71\xaf\x44\xa1\xe6\xc1\x43\xf3\xc0\xcb\x34\x80\xb0\x89\x07\xc1\x6f\x67\xcf\xed\x26\x91\xb5\xc3\xda\x8d\xed\x39\x8e\x43\xa8\x2a\xca\x65\xec\x36\x5b\x68\x39\x35\xe7\x08\x4d\x98\x90\x34\x34\x99\x4e\x32\x84\x05\xb7\x9f\x74\xdd\x1e\x9a\xd9\xcc\xc7\xb3\x2d\x7c\x46\x68\xff\x61\x8e\x29\xa4\x4d\xf1\x0a\x92\x38\x80\x43\x90\x2f\x4a\x72\xcc\x75\x0a\x24\x2d\x60\x64\xe4\xed\x95\x3c\x00\x34\x87\xac\x80\x31\x33\xc5\x21\x30\xb0\xa8\x2c\x5e\xf3\xed\x21\x00\x37\x41\xc5\x77\x75\x7f\xa8\xbc\x57\x95\x38\x97\xca\x49\x4a\x02\x5e\x39\x93\x96\x82\x59\x31\x70\x52\xd9\x88\x7c\x51\xb9\x00\x55\x85\x23\x4d\x40\xc4\x7d\x6c\xf7\xc8\x17\x01\x35\x45\xbf\xca\x94\x6b\xfc\x9b\xa2\x6c\xd5\xad\xac\xf3\xf0\x64\xd2\x3a\x9e\x3c\xf4\x74\x8f\x55\x31\xa0\x75\x08\x12\xc9\x4d\x06\x0e\x6c\xda\x11\xab\xbb\x0a\x78\x3a\x64\xe9\x40\x74\x03\xb3\x3c\x48\x70\x05\xe8\xa2\xa9\xde\x85\x96\xad\x1b\x48\x62\x28\x4b\x03\x7b\x00\x9a\x96\x07\xd4\xa2\x0f\x70\xc2\x17\x3d\xc4\xfe\x03\xe1\x28\x60\x45\x6f\x52\x31\x1c\xea\xa8\x64\x64\x36\x5d\xf6\x2a\x18\x9d\xef\x63\x3f\xa4\x86\x58\xec\xc8\xfb\xe8\x90\x99\x14\xe8\x0b\x9e\x48\xeb\x53\x84\x66\xef\x41\xde\x1e\x5d\x91\x41\xfa\x7b\xd0\xf0\xb7\x02\xb9\x3c\xa8\x5e\x65\xd9\x9c\xc9\x06\xf2\x60\xf8\xd4\x8f\x62\xfb\x1b\xdd\x59\xb1\x84\x97\x4a\xbf\x9f\x60\xbf\xf8\x05\xcc\xf6\xd5\x3e\x70\xc8\x69\x4b\x5b\x09\x7c\x68\xd9\x82\x1b\xcc\x32\x7a\xc4\x06\x08\x91\x8c\x2c\x20\xde\x54\xad\x40\x17\xe3\x81\x6f\x31\x8a\x21\x2c\xf9\xc2\xed\x6f\x27\x10\x2f\x7d\xca\x5a\x52\xe8\xb1\xba\xd3\xfd\xd0\xa7\x9b\x8e\x22\xe0\xf2\x4c\x94\x80\xd7\xfc\xf9\x7c\x3e\x3e\x05\x25\x21\x2d\x31\x7a\xf8\x42\x30\x37\xbe\x96\xdf\x03\x97\x0c\xca\xb3\xc7\x50\x05\xba\x10\x4a\xf8\x04\xf5\x68\x3f\x20\xb7\x2c\x24\x3e\x9b\xef\xcd\x55\x66\xcd\x7a\xd2\x87\x8d\xe2\x5a\xbc\x17\xd8\x87\xee\xb9\xb8\x10\x56\x4e\xc6\x2a\x71\xd3\x18\xf4\x17\x4a\x3a\x11\x16\x62\xb2\xee\xb5\xea\x5f\x49\x72\x71\x34\x58\xd6\x4a\xe0\x46\x06\x9c\x75\xb7\x20\x28\xdd\xb9\x8f\xab\xe8\x94\xf7\x41\xad\x06\x0e\x0a\x87\x29\x28\xf4\x8a\xef\x65\x98\x1e\x48\x9a\x6a\xcc\xcf\xb1\xa3\x35\xa3\xbc\xdd\xec\x59\xd7\x4a\x0b\xc1\x5f\x6b\x24\x69\x03\x49\xa6\x14\x3d\xca\x77\x2a\x2d\x32\x67\xa2\x91\x89\x5d\xaf\x23\x20\x0b\x27\xb0\x9a\xdb\x6b\x6f\x6b\xe1\x3a\xf4\xb5\x52\x95\x86\xcf\xb8\xb2\x3f\xea\xcb\xb5\x43\x41\x86\x6b\xdd\x0a\x6d\x8a\x93\x64\x33\x1f\xa5\x6d\xd6\xb2\x65\xd2\xa2\x4a\x86\x7d\x58\x63\xf7\x4e\x21\x28\xf8\x92\xa3\x03\x5d\xdc\x39\x31\x1c\x52\xea\xd4\xde\xc2\x7a\xce\x12\x94\x40\x61\x60\x63\x48\x5c\x94\xe8\x47\x01\x7f\x47\xc6\xcf\x41\xb7\x15\x52\xf2\xed\xde\xb1\xaa\x1f\xf8\xfd\x73\x82\x69\x4f\x13\xe4\x71\xf0\x60\x7c\x99\x77\x78\x5f\x2b\x68\xe7\x57\x4e\xe5\x50\xbd\xbd\x66\x5c\xf3\xfb\x2a\x5b\xc1\x5b\x53\x7c\x97\x86\xfe\xf0\xca\xbe\xc5\x24\x5e\x98\xae\xc3\x87\xaf\x7f\x1f\x52\xd8\xfc\xab\x58\x27\xc7\x27\x86\x4a\x87\xea\xfb\xe4\x1a\x2f\xa5\x83\x54\xe5\x43\x48\xf6\xba\xeb\x6a\x03\xf1\xdc\x13\xff\xb0\x50\xba\x92\x16\x01\xdc\x55\x33\x05\xb0\xe0\x46\x2e\xcb\xc0\x29\xbd\x82\x67\x89\x3d\x7e\x89\x3c\x2d\x13\x86\x4a\xf1\x24\x2b\x78\x80\x33\x83\x5a\x52\x6e\xdd\x82\x12\x8c\x9e\x09\x55\xeb\x0e\x54\x0c\x8f\xed\x7e\x8b\xae\x82\x54\x6e\x8a\x56\xe0\x4c\x0b\x2d\x1b\x5f\x07\x93\x68\x38\x32\xe1\xe4\xa4\x2a\x4f\xbe\x1d\xb5\xa7\xbc\x6e\x40\x0c\x22\x9b\xde\x5c\xc9\x9a\xe8\x56\x23\x9e\x8e\x13\xfb\x1e\xe2\xf9\x25\x91\xf0\xc7\xeb\x36\xe6\x1f\xb3\x48\xe9\xc9\xfd\x03\x1e\x55\xda\xdd\xbc\xf7\xc5\xa7\x1f\x85\xa0\x57\xe8\xbc\x03\x1a\x00\x77\x9a\x31\x6a\x0f\x90\xee\x71\x70\xfa\xd0\x15\xaf\x2e\x9c\xa8\x5d\x45\xcc\x9e\x08\x57\x0f\x43\xc9\x8f\x17\xcd\x31\xc9\xc4\x59\x01\x6f\x7d\x7b\xed\xe8\xb8\xef\x20\x44\x3c\x8c\xa3\x36\x02\x5d\xfb\x15\x6f\x4a\x10\x1d\x5f\x0b\x20\x82\xb2\x66\x97\x20\x32\xc6\x78\xb4\x2a\x41\xaa\x69\xba\xcb\x92\xf2\x30\xc4\x3e\xc1\x0d\x7c\xf7\xcb\x16\xa2\x8a\xfb\xac\x3b\xd4\x8e\xa0\x00\xc4\x3e\xea\x25\x19\x01\x7a\x3f\xe5\x1c\x25\xf1\x36\x45\xe9\x29\xd7\x72\x29\x51\x5a\x40\x64\x22\x74\x06\x59\xf6\xba\xc9\xa0\xb3\x50\x18\xf7\x54\x42\xf4\xff\x33\x4d\xfc\x7f\x84\xaf\xb5\x21\xbb\x68\x05\xff\x27\xef\xd3\xd8\xee\xc0\x81\x79\x46\x09\x39\xca\x45\xb1\x2f\x7c\xd0\xc5\x0e\xd0\x66\x54\x6e\x91\xcb\x19\x3e\x68\x51\xa0\x7e\x69\x35\x5f\xd6\x42\x27\xab\xb3\xe6\xe7\xf2\x1c\x95\x0e\xa1\xc5\x10\xf9\xf9\xc0\x4a\xa5\xb8\x4c\xaf\x95\xed\x36\x4d\xdf\x78\xe3\xb4\x51\x96\x0c\xcf\x49\xff\x8a\xf5\xcb\xb1\xa7\xa5\x41\xa4\x2d\x65\x5f\x31\xf7\x2c\x2a\x55\x4c\xd7\xf5\x99\x23\x0e\x18\xd6\xc1\xfd\x44\x7f\xfa\xfb\xab\xfe\xff\xb8\xba\x69\x2f\xa4\x5a\x24\x3c\x71\xad\x5f\xc5\x41\x46\xbf\x57\xf6\x0d\xe9\x1b\xf7\xdb\xc1\xf9\x32\x76\x68\x84\x6f\xe8\x29\xb7\x3c\x0e\xd8\x48\x76\x5c\xc5\x3c\xf7\x67\x56\x36\xf2\x8b\x7b\xdb\x99\xab\xbe\x15\x5a\x2e\x9d\x24\x0d\x89\xfa\xee\x87\x86\xf4\x7f\xbe\xca\x71\x73\x4e\x7f\xd7\xf7\x8d\xd9\x73\xaa\x79\x28\xd9\xa3\x24\xea\xd0\x85\x00\xfb\x56\x06\x42\x90\xf1\xa1\x68\x51\xcd\xf0\xdf\x09\x5f\xf0\x17\xf6\xdf\xae\xd2\x5f\xd8\x7f\x23\xe4\x5f\xbc\xfe\xc1\xf6\xb6\x5f\x82\x9a\x6c\xca\xea\x37\xde\xda\x7d\xd3\x24\x1b\x9c\xa2\x6f\x79\xe9\xc4\xdd\xd4\x06\xd6\xd8\x51\x12\x30\x33\xf2\x7a\x4e\x90\x0d\x6d\xea\x70\x1c\xb8\x21\xcf\xec\x4f\x1f\x56\x7a\x20\xc4\xc8\x34\xc0\x2c\x98\x0d\x5f\x8a\xe2\xa4\xbb\xbb\x6a\xfa\xda\x42\xa6\xe2\xb1\xf6\x72\xe8\x6a\xc3\x87\x71\x23\x78\x56\xe9\xb5\x0a\xdf\x6a\x5f\xc5\xb7\x0d\x39\x7e\xbb\x46\x07\x4c\x7a\x0f\x82\x54\x34\xa0\xbc\x25\x12\x80\x31\x3c\xf6\x8f\x67\xc5\xc1\x71\x69\xdb\x29\x51\xbc\x12\xeb\x46\xd6\x82\x1d\xc3\xf4\x27\xd7\x1b\xbe\xe1\x81\x6b\xaa\xed\x4a\xe3\xae\xb8\x98\xf3\x8c\x1c\x50\x3b\x2d\xff\x2c\x15\x6f\x28\xb5\x14\x64\x2a\x72\xcc\x7c\x12\x2f\x38\xb6\xa8\xc4\x25\x65\x86\x5b\x73\x83\x0d\x82\xb3\x3f\x28\xaf\xa8\x81\x24\x94\x79\x25\xd2\x78\xb0\x18\x4e\x0c\x93\x7b\x79\x7d\x13\x59\x34\xa0\x3d\xa0\x91\x2d\x89\x62\xa9\x8c\x08\xcf\xea\xc1\x0a\x4a\x42\x26\xa7\x81\xb3\xd3\xdd\x2f\x6a\x77\x73\x77\x65\x77\x37\x7a\x0f\x3a\xf0\xde\x18\x54\x22\xd1\xd0\xc5\xd0\x05\xe0\xc4\x1c\xdb\x10\xc9\x46\x64\x51\x85\x06\xae\xa0\x90\x56\x10\x93\x1e\xef\xf5\x84\x6a\x37\x53\x7e\x5e\x7c\x1a\xab\x05\x2f\xba\x34\xaa\x85\x4a\xb1\x80\x2e\x33\x04\x76\x37\x3a\xf8\x9e\xde\xd7\xa1\x37\xc5\x44\x13\x83\x10\xd7\x6c\x0f\x0e\xc3\x2f\x52\x50\x97\x2c\x5c\xe6\x7d\x38\x34\xd5\xee\x26\x27\x8c\x90\x2c\x0c\xe3\xd5\x60\xcc\xd0\xe3\xda\xa6\xbc\x8a\x07\x49\x5e\xba\x61\x63\x25\x2b\x9f\x50\x86\x81\xd2\x8d\x86\x10\x60\x18\x93\x92\x54\x05\xd9\xb3\x9f\xea\xb7\x69\x23\x69\x38\x40\x8e\x91\x4d\xe0\x35\x63\x1f\x91\x74\x49\xc2\xce\xdc\x1c\xb9\x56\xc4\x60\x44\x33\xc6\x89\x49\x13\x22\xfa\x51\xa8\x94\xbd\x08\x7a\xf7\x74\xf3\xbb\xfd\x6e\xf2\x54\x6e\xae\x79\x10\xf1\x31\x15\x08\xcc\x24\x2a\x92\x40\xea\x95\x03\xbe\x46\xe4\x18\x6c\x51\xb5\x30\x38\x41\x6f\xff\x20\x06\x24\x1c\xe5\x0e\x51\x62\xfd\x33\xf2\x56\xb2\x0e\x76\xc5\x7e\x6e\x8d\xcc\xa9\x23\x58\x50\xf8\xd0\xd3\x63\x06\x14\x4c\x0c\x81\x05\xfb\x13\x26\x46\xc4\x67\xde\x29\xb0\xf8\xee\x40\xb6\x1a\x64\x2c\x57\x8b\x2d\x33\xb2\x09\x2e\x95\x96\xbb\xbb\xb7\xa2\x8d\x8e\x2f\x0d\x51\x61\x39\xa1\x87\x9e\xec\x6c\xf2\xd4\xb1\x87\x64\xd1\xc3\xfe\x83\x78\x5e\x52\x71\xa3\xe9\xda\xbe\xbe\x22\x06\x41\x9d\xe8\x24\x7d\xb4\x39\x25\xdd\x5c\x32\xbc\xa9\x77\x9b\x4c\x9f\x0a\x73\x77\xd2\x33\x0a\x46\x94\xcd\x5b\x3a\x65\x09\x2d\xfe\xe7\xce\xd7\xbd\x53\xb5\xc2\x08\x7b\xe8\xbe\xb9\x17\x4c\xf1\x70\x2b\xbf\xcb\xc9\xdc\x4a\x5a\x0c\x4f\x04\x1a\x5e\xff\x76\x76\xe4\x4d\xca\x81\xa2\xc9\xbb\x2b\x50\xc3\xd7\xbb\x77\x32\x06\xce\xac\xe0\xe1\x49\x62\xe2\xa2\x1a\x75\xab\x22\x7a\xf1\x82\x15\x1b\xda\xc7\xc9\xc9\xc0\x90\xfa\x30\x8e\x70\xe1\x7d\x8e\x81\x1f\x83\x6d\x45\xb4\x36\xf0\x61\xd3\xbc\x29\x11\x66\xf1\xbd\xbd\x6e\x41\xb1\x4e\x0f\x60\xb9\x76\x79\x72\x43\x4c\xbf\xdc\x1d\x92\x44\xf3\xaa\x1f\xa4\x2a\x98\x3a\xef\x78\x7f\xd3\x63\xd1\x5a\x6e\x12\xb1\x9c\xd7\xc0\xa2\x23\xbd\x7e\xe5\xb3\x3c\xa6\x92\x7b\x68\x25\xbd\x1b\x8e\xd0\xfc\x22\x5c\xff\x29\x36\x31\x57\x24\xbc\xcb\xe6\xb7\x51\x12\x6c\x73\x1c\x64\x33\x11\x7b\xab\x32\xb3\x0a\x47\x1b\x0d\x6f\x1a\x4e\x39\x55\x0e\x41\x8f\x42\x69\x87\x5a\x21\x7d\xcf\x78\x07\x64\x5d\x65\x27\x2e\x6b\x36\x3e\x29\x87\x26\x29\x9d\xc9\xbd\xe0\x7b\xfc\xf1\x11\xa9\xc1\x27\xf6\x58\xef\x79\x0c\xcc\x19\x7b\xe8\x72\x79\xff\x5b\x72\x40\x49\x8b\xb6\xbb\x10\xd3\xf3\x13\xc7\xb1\x4f\x89\x12\x25\x5c\xe6\xb0\x98\xf1\xf9\x9a\x67\x1a\x77\x48\xd6\x1c\x03\xc3\x39\xee\x71\x31\x9a\xdd\x34\x7c\x2e\xde\x79\x71\x7d\xbc\x80\x49\x9e\x71\xdb\x79\xbe\xc4\x97\x62\xb1\xee\xba\x3a\x6a\xbe\x1c\x57\x91\xef\x04\xd0\x7c\xd1\x95\x22\x16\x91\x7f\x3f\x82\x40\x6c\xec\xe5\x77\x67\xaf\x5c\x2f\x03\xb3\xc2\xca\x3a\x3e\x37\xb0\x95\x5c\xc8\xca\x31\xd8\x7a\x0e\xe1\xb5\x1f\x59\xce\x94\x40\xe7\xa4\x68\x71\xdb\x35\x86\x1f\x91\x99\x2c\x3c\x58\xc4\x48\xdd\xf8\xd6\x03\xc1\x48\x17\x6e\xcf\x6b\xd9\xfa\x54\x6c\x70\x95\x40\xea\x55\x8e\x14\xc2\x51\x60\x70\x20\xc6\x9c\xe3\x70\x9d\x0e\xf2\xfe\x10\x9f\xb9\xba\x2f\x86\xe8\xfa\xf2\x33\xfe\xd5\x23\x10\x5b\xfb\x66\x5a\x28\xa2\x69\x8b\xbb\x37\x9d\xbf\xbd\x9b\x79\x04\x1c\xb8\xb3\x4b\x9a\x4e\xac\x93\x18\x43\x2c\x30\xd8\x09\xc6\xfe\x80\x5d\x9b\x5b\xed\x83\xa5\x80\xa3\x93\xf6\xf6\xba\x05\x13\x1b\x70\xff\xfe\x95\xa6\x11\x87\x11\xf4\x7b\xf9\x3f\x22\x82\xef\xa1\xb0\xd4\xc4\xdc\xe2\x83\x45\x23\x2f\x84\x1e\x8a\x57\xc2\x58\x76\x1a\x30\x4d\x05\xa2\xc9\x0a\xf9\x2e\x73\xbd\x66\xa9\x0b\x21\x4b\xa0\xb1\x99\x54\x69\xf8\xda\xe2\xb3\x2a\x3c\x8a\xd5\xb8\x15\x7d\xda\x33\xf5\xbe\x0e\xfd\x48\x01\xd3\x64\x3d\x8e\xd2\x09\xae\xfb\x41\x03\x17\x1c\xb3\x95\xb1\x13\x08\x94\x37\xb5\x0a\x8a\xdc\x11\x76\x37\x68\x04\xeb\xad\x56\x0d\x57\x72\x10\xf0\x52\xe9\xed\x49\xf7\x90\xd3\x22\xcc\x9d\x37\x4b\xb4\xc2\x34\xb2\xe5\xf6\x3e\xe0\x84\xf8\xa8\x25\x85\x6a\xbf\x40\x23\x29\xac\xbe\x37\x04\x8a\xef\x0e\xe2\x15\x98\x6c\x59\xe1\x41\x29\xa1\x71\x66\xc0\x51\xff\xca\x51\xe0\x73\x58\x38\x5b\x53\x20\x66\xd3\x29\x23\x8a\xaf\xc5\x05\xdf\xe4\x0a\x57\x02\x41\x23\x2c\x13\x8c\xdd\x26\x81\x36\x7c\x00\x4f\x0e\x4c\x95\x39\x01\xb0\xe8\x2a\x08\xa8\x7c\x51\x89\x7d\x7d\x3e\xee\xb7\x27\xd2\xa6\x54\xed\x89\xb4\x8f\xa4\xc2\x6c\x8d\x46\x66\x2f\xca\xab\xdd\xcd\xee\x9d\x57\x5d\x85\x29\xc4\xc4\xa2\x49\x56\xa0\x43\x76\xdf\x19\xc3\x4f\xcf\x48\x75\x8c\x9b\xa6\x84\x4a\xb4\x23\xc1\xe6\x3c\x93\x56\xc5\x20\x26\x09\x12\x8d\x08\x83\x78\xc5\x18\x42\x35\x64\xc2\x3a\xf7\x51\xda\x05\xe6\x00\xaa\x83\xbf\x9f\xa3\x04\x49\x10\x7b\x4a\x5e\x06\xc7\xbd\xbb\xbb\x8a\x4f\x89\x47\xe1\x40\x4e\xbf\x35\x82\x99\xb3\xd0\x7c\x81\xb2\x14\xf1\xc6\x7b\xba\x3d\x8f\x25\x44\xd9\x26\x04\x31\xce\xf6\x1e\x48\xcc\xa7\x46\x50\x1e\xb3\x3d\xae\x8e\x6a\x14\xe1\xfa\x9a\x78\x5d\x48\xae\x3a\x5a\x73\xc8\xde\xde\x8a\xa1\xe2\x8a\x53\x56\x43\xa0\x1c\xde\xab\x40\xd6\x8e\xac\xe4\xf7\x51\xa6\xc5\x84\xd0\xa8\xa0\x49\x73\x37\x60\x70\x54\x20\x1c\x88\x00\x05\x42\x0c\x11\xe6\x97\xdc\xdf\x91\x61\xa9\xd9\xc7\xff\xf3\xec\xbb\x6f\x8f\xd8\xdb\x4f\x2f\x2f\x2f\x3f\x75\x12\xe4\xa7\xbd\x6e\x84\x72\xad\x55\x47\xec\x7f\xbd\x78\x7e\xc4\x2e\x16\x9f\xc4\xb0\x30\x0b\x70\xec\xd7\x89\x85\x25\x22\x99\xe9\x4c\xfe\x99\x17\x61\x32\xea\x16\xd2\x38\x1c\xbe\x15\xe9\x30\x82\x6e\xd9\x1d\xc8\x44\x41\x9b\x3d\x16\xd0\xda\xa2\x1f\xb9\x4f\x98\xe7\xc3\xd1\x26\xcc\x12\x24\x75\x7a\x22\xb7\x8d\x1c\x7f\xf5\x07\x77\xdb\xc8\x23\x5a\x85\xff\xf5\xa9\x5b\xd3\x4f\xcf\xe4\x4a\x71\xdb\x6b\xe1\x57\x64\x81\xe4\x03\xe2\x2a\xbb\xc5\x3d\x7b\x7a\xfc\xbb\x7f\xfb\x1f\x6c\xdd\xf2\x25\x5b\x8b\xb7\x95\x5c\x39\xd2\x3f\xec\x6e\xea\xdd\x8d\xe7\x96\x42\xd6\xcc\xfd\x2d\x6c\x1a\xbe\xac\x0f\xa7\x5e\x1e\x03\xca\x65\xa7\x60\x3e\xce\x64\xbb\x12\x87\x26\x04\x61\xd1\x8f\xf1\x7b\xa1\x12\xcd\xb0\xb8\x10\x49\xe0\x7b\xdc\x32\x81\x87\x0a\x9b\x69\x29\xea\x3f\x8c\xeb\x40\x10\xd0\x4e\x35\x43\xf1\x9a\x37\xee\xf6\x5c\x72\x9a\x29\xbc\x28\xfd\xfc\xb8\x5d\x3f\x1f\x57\x36\x42\x55\xa5\x70\x57\x0b\x78\x50\x85\xbc\x93\x4f\x49\x0e\x4c\xa2\x74\x85\xb8\xea\x2d\x1a\x9a\x8d\x5a\x42\xbb\x92\xe2\x5b\x78\x20\x8e\xa0\x41\xaf\x04\xe2\x57\x3e\xc5\x54\x11\xad\xa2\x83\xb5\xe1\x64\x31\xe9\xa5\xf7\x03\x87\x66\x06\xc1\xfb\xd3\x19\xfc\x35\x27\x4b\x46\xad\xfa\xf0\x16\xc8\xf4\x8c\xab\xe4\xf1\x61\x27\x0a\xd3\xc7\x21\x1f\x37\x37\xdb\x29\x71\xbd\x8a\x97\xbd\x59\x4f\x2e\x64\xae\x9e\xe0\x20\xec\x6f\x26\x80\xc7\x01\x50\x27\x8b\xd3\xa7\xb3\xe0\x29\x7f\x84\x3e\xd0\xfe\x47\xe2\xcc\xec\x3f\x85\xa8\x8f\x95\x3c\x82\x28\x0d\xf0\xd5\xfd\xd1\xe2\xe3\x04\x4d\x54\x2a\x37\x1f\x8d\x66\xef\x88\x74\x9c\x2d\x53\x5d\x8d\x29\x6a\x31\x66\x40\x05\x7f\xb1\x8a\x33\x88\xdc\xb7\x2f\xe5\xfa\xc9\x48\xcc\x6d\xe8\x6e\xd8\xfd\x55\xec\x9d\x98\x7d\x03\x1a\x07\x95\x18\x63\xfc\x93\xc6\x4d\x29\xd7\x3e\x68\xe4\xf5\xbe\x39\xf9\xc4\x74\xc0\x96\x33\xf1\xb9\xff\xc0\x44\xe0\x03\x93\x77\x80\xc7\xb5\x04\x37\xf8\xbd\xdd\x9e\x41\x92\xdc\xdc\xa9\x10\x3c\x80\x38\xda\x6c\x98\x84\xc4\x9e\xfc\x8a\x0d\x52\x68\xdb\xe2\x35\x38\xc8\x1e\x28\xcd\x77\x2c\x24\x63\x70\xd0\x0d\x84\x14\x21\x6b\xbd\x54\x16\x85\xf8\xaf\x18\xf6\x75\xfc\x35\x09\x4a\xee\x57\xcf\x8b\x9a\x74\x6b\x27\xe9\x7a\x2a\x61\xf9\x00\x31\x4a\xf9\x7d\x64\xdc\x31\x04\xc0\x0d\x64\x6a\x8d\x44\x00\x98\x50\x6c\x10\xbf\x31\x25\x32\x2b\x19\x4d\xf1\xc7\xf0\x59\x37\xa9\x6c\x73\x40\xbf\x44\x34\xe8\x40\x37\x19\xd1\xc2\x00\x22\x5e\x9a\x91\x70\xf0\x55\x22\x70\x65\x14\x00\xf0\xa0\x2b\x17\xce\xcd\xf8\xc2\x85\xc8\x67\x70\x13\x45\x3e\x09\xb5\xad\x5b\x9e\x27\xee\x3d\x73\x50\xc0\x1c\x08\x65\xc5\x4a\xa3\x81\x89\xea\x83\xa9\x54\xde\x68\x25\xcd\xb2\xd3\xd5\x7b\x9b\x3d\x45\xb8\xbd\x86\x0f\x36\xab\x56\x96\x37\xef\x47\xf7\x94\x00\x3f\xa4\x61\x9c\x80\x03\xc9\xb5\xc6\x60\x55\xd7\x72\xa9\x8a\x63\x27\xa1\x4f\xdd\xfe\xcb\x35\x57\x4a\x34\x4e\x2c\xe3\x99\xca\x79\xd3\x74\x03\x26\xb9\x8e\x8b\x95\x65\x3e\x9b\x04\x0e\x59\xa0\x17\x5f\x7d\xa7\x2d\xaf\xd9\x93\xce\x2e\xd7\xfc\xa3\x2f\x3f\x5b\x24\xc9\x41\x3b\x28\x8a\xd9\xcd\x62\xa8\x56\x54\x00\x18\x4c\x97\x1a\x9d\x50\x29\x2f\xea\x28\xfd\x2a\x26\xd9\xc9\xe4\x6f\xcc\x03\x7d\x60\x31\x02\x9a\x13\x43\xda\xd3\x2e\x46\x68\x7f\xd7\x86\x2a\xa3\xc4\xdc\x8a\x0d\x81\x7d\xe9\xea\x9e\x02\xe8\x3b\x56\x03\x42\x5f\xc6\x61\x03\xbe\x64\x64\x31\x4e\xf0\x8d\xa9\x92\x42\xba\xfd\xa6\x21\x0f\x8a\xf8\x98\xda\x95\xe9\xa2\x3c\x15\x7a\xcd\xd5\x8a\x1e\x28\xf7\x70\x23\xb5\x67\x2b\xaa\xf1\x7b\x54\xee\x9d\x35\x35\xdc\xbd\x3c\xd1\x01\x28\x4f\x65\xbd\x3f\x23\x34\x1d\x87\xb2\x5a\xa7\xcd\xc4\xd4\xd6\x7b\x0e\x02\x93\xa3\x49\xfc\x04\xb2\x45\xdd\xcb\x5f\x3d\x59\xfb\x70\x1a\xeb\xe9\xf5\x26\x95\xd9\xd4\x36\xa1\xa4\x6e\xf7\x56\x8c\x8f\x9b\xd3\x53\x94\x2b\xd2\x3c\xc3\xf4\xcf\xcd\x6d\x7d\x1f\x7a\xe1\x71\x61\x6a\xae\xee\xd7\xa2\xa5\xd9\x4c\x22\xd7\xf8\x6b\x13\xa3\x4c\x36\x77\x4f\x72\x94\x4a\x9e\x9f\xcf\x31\xd4\x7b\x69\xba\x5e\x2f\x21\x0a\x8b\xe2\xb7\x57\x9c\x3d\xd9\xfd\xb2\xe5\x16\x41\x36\x5c\xbb\x9d\x2b\x16\xe2\x42\x0c\x0a\xbf\x91\xd7\x30\xf9\xe7\xe3\x37\x70\x23\x07\x95\xf5\x05\x97\x0d\x24\x99\xfe\x06\x6d\x0b\x40\x41\x87\xcf\x97\xec\x75\x57\xcf\x11\xde\xac\xbb\xcb\xd2\xfd\x05\x09\xaf\x4d\x06\x7c\xea\x95\x51\x14\x74\x34\xa9\x61\x36\x8d\xb4\x25\xc6\x95\x0f\x11\xe5\x77\x37\x10\x79\x3d\x01\xeb\x95\x3c\x97\xa2\x42\x40\x72\x78\x95\x75\x1a\x56\x1f\x61\x5d\xd7\x14\xa2\xc0\x8b\x36\x90\x08\x26\xc6\x01\x00\xfb\x40\xd0\xca\x24\xd2\x4f\x13\xb3\xa1\x3d\xac\x88\x2c\xc4\xe2\x8b\xac\x14\x5e\x28\x42\x21\xcd\xbb\x54\xc5\xc9\x1f\xbf\xc5\x1f\x10\xb6\x3d\x0f\xfd\x9e\x66\xdc\x46\x20\x88\xeb\x6a\xfa\xcd\x46\x0b\x03\x94\x02\x42\xb8\x9e\x73\x5d\x83\x0b\x78\x8c\xea\x9f\x58\xa1\x29\x26\xd7\x6d\xe0\xaa\xb1\x1d\xdb\x75\x65\xcb\xd5\x40\x11\x0f\x4e\x7a\x68\x23\x18\x7c\x42\x4b\xa8\x43\xc0\x20\xb1\x89\xc9\x0d\x78\xaf\x67\x0e\xc1\x0b\xbe\x4d\x03\xc4\xaf\x7c\x88\x58\x70\xbd\x98\xf9\x6c\x08\xf3\xa9\xac\x08\xbe\x0c\xf3\x5d\x10\x6b\x09\x8f\x6a\x08\x13\x00\x2a\xcd\xcf\x6d\xf1\x8a\x9b\x86\xd7\xe1\xe3\x46\x0b\x5f\x69\xf7\x37\xb5\x57\x07\xdc\x3f\x43\xf8\x79\xff\x95\xaf\x05\xaf\x8a\x87\x06\x52\xb7\x13\x33\x0a\x16\x00\xe9\x4b\xec\xc3\x2a\x59\x66\xda\xdf\xbe\x01\x3c\x26\x90\x64\x16\xcf\x4a\xcd\x9e\x75\x55\x9f\x8d\x25\xfa\x91\xee\xfe\x8e\x5b\x8d\x0d\x52\x89\x24\x6c\xba\xef\x1a\x0d\x98\x88\x3f\x9e\x67\xb8\x27\xad\x9c\x02\x67\xeb\xef\x30\xef\x33\xee\x98\xc8\x06\x95\x9f\x4e\xc4\x18\x19\x76\x2b\x06\x29\x9f\xe1\x89\x24\x84\x7b\x40\x46\x12\xf3\x3a\xa1\x4d\x13\x25\x4a\xc3\xf7\xa2\x5e\x47\x14\x2c\x5f\xa1\xb2\xee\x24\x4a\xd6\x10\x80\x29\x02\x80\x4e\xe9\xa9\xa8\xc4\x79\x56\x8b\x58\x95\x2c\xf5\x48\x22\x9e\xa3\x6d\x11\xd9\x9f\xc0\xc8\x29\x9d\x89\xc1\x10\xd7\xd1\x51\x3a\x34\x9a\xdf\xad\xfe\xf3\xde\x7d\xea\x0b\xa2\x9f\x58\xb2\x55\x80\x08\xf8\xf4\x07\xfe\x7b\xd3\x71\xc7\x4a\x92\x0e\x59\x81\xb3\xd0\x7c\x3e\xb1\xc3\xc2\xcd\xe3\x06\xb3\xfb\x25\x6e\x9d\xdd\x8d\x9e\x02\x8f\x72\x0b\x01\xc2\x53\x37\x24\x58\x6d\x05\x5b\xbb\x23\xa3\xe1\xcd\x3d\xa6\x49\x8d\x11\xbe\x2a\x74\xf8\xdc\x46\x44\x72\x07\xe1\xd0\x5f\xbf\x68\xa4\x59\xfb\x13\xb5\xbb\x61\xaf\x69\x27\xc5\xdd\x0a\xf9\x2a\xe3\xe9\x01\x5d\x18\xb9\x54\x66\x9b\xcd\x9f\xa4\x08\x75\x3a\x3e\x3a\x24\x9d\x78\xc8\x93\x9e\xc5\x8e\xcf\x64\x93\xc3\x41\xf8\x15\xf2\xcc\xc2\x57\xdd\x71\x71\x98\xd2\x30\x43\x7b\xef\x60\xfd\xe0\xdf\xbf\x9e\x48\x1b\xf7\x10\x1c\x9a\x5f\xf7\xe0\xb5\xd7\xb9\xbf\xaa\x3d\x8e\x93\xb7\xf3\xf8\x2c\xe4\x3e\x98\xb8\x1d\xb2\xc3\x01\x3e\x30\xd1\x58\xca\xbb\xa6\x25\x4c\xd6\x5e\x93\xe4\x54\x9f\xc6\x38\x23\xcf\xf9\x46\x86\x48\xda\x01\x7d\x0a\x5f\x65\x0a\x1f\xb6\x0a\xae\xf1\x1f\x3b\xbd\x7a\x33\x83\xe7\x62\xc8\xd5\x80\x4f\xcb\xe9\xdb\x30\xca\x28\x0e\xe2\xbc\x6f\x9a\xc3\x60\xaf\x78\x1b\x41\xf7\x92\x5f\xee\x7e\xd1\xab\xdd\x8d\x43\x92\x2c\x3d\x6f\xaf\x0d\x64\xe1\xcb\xb2\x5e\xea\xb9\xcf\x63\xd4\xe9\x55\xde\x7c\x50\xe9\x41\x76\x23\xef\x7a\xfa\x24\x4d\xb4\xb2\x11\xdd\x06\xcc\xa8\xc8\x87\x7e\x26\xd5\x85\xb4\x8e\x3d\x69\x45\xa7\x20\xe0\x8e\x4f\x68\x77\xca\x2f\x84\x65\x8f\xed\x0c\xbd\x48\x1e\x63\x5a\xd8\x19\x64\x81\x28\x5b\xd1\x2e\x84\x36\x05\x79\xac\xd0\x57\xc8\xb2\x2a\x6d\x07\x12\x33\x25\xea\x4a\xb3\x2e\xb9\x96\x28\xda\x70\x2d\x37\x11\x5f\x37\x1d\xe3\x30\x0b\x0e\x96\x32\x36\x3b\x58\x98\x36\xf8\x76\x10\xd0\x4f\x26\x1a\x0d\x42\x1a\x50\xc7\xa7\x5a\x70\x7f\xc1\x04\xaf\x6b\x93\x3e\x71\x2e\x7a\xb4\xf8\x25\x2b\xdd\xd4\x08\x2d\xf4\x94\xd0\x1a\x6c\x88\x29\x47\x61\xea\x1a\x28\xeb\x1f\x10\x30\xcb\x55\x86\xc7\x0e\x81\x8f\x1c\xf4\x4a\x2e\x50\xe0\x01\x0b\x57\xcc\x46\x6e\x82\x25\xa0\x95\xfa\x0f\xb3\xa9\x74\x77\xd9\xd2\x26\x39\x00\xc2\x01\x90\x06\x2d\x59\x3f\x38\xf5\xdd\x7e\x8b\x98\xfa\x0e\x1b\x8e\x01\x25\xb0\x99\x38\xaf\x01\x25\x7c\xf8\xc4\x69\x80\x99\x4b\x90\x19\xa3\x12\xb8\xe5\xc3\xee\xcd\x67\xd1\x40\x28\x16\x86\x13\x54\xb8\xd3\x72\xfb\xb3\x91\x6d\xf6\xf8\x08\xbe\x31\x53\x5e\x31\x4d\xb7\x44\xa7\xe8\xe7\x5d\x0d\x43\x3c\x68\xa6\x74\xbf\xc3\x4c\x0e\x1c\x48\x59\x3e\x79\xa1\x81\x0f\xb0\x6b\x22\x0f\x9c\x4e\xaf\xee\x75\xc0\xc9\x53\x41\x7b\xb9\x2a\x7d\x14\x1d\xfb\xe8\xb0\x8a\x1f\x76\xc6\xa1\x61\xf0\x0b\x6e\xb9\x9e\x1c\x45\xaf\x18\x96\x1e\x18\xce\x28\x4f\xc3\x9e\xdd\x5f\xd6\xd6\xa4\xed\x9f\x4f\x4f\x7c\xd2\xb3\xf7\x03\xd3\xbc\x64\xf3\x3c\x36\x8a\xdb\x17\x28\xc1\x3d\xf7\x03\x2d\xfe\x3e\x3a\x64\xda\x35\x9d\x47\xf9\xf6\x1a\x63\xcd\x8e\x11\x75\xd4\x6a\x3f\x0b\xf7\xd8\xba\x2a\x01\xf6\x34\xa1\xbb\x6f\x68\xbf\xc5\xbe\x24\x79\x6b\x1f\x35\x1f\xad\x5c\xfc\x6c\xa4\x39\x88\x21\xbb\x24\x71\xe0\x41\xe3\xeb\x73\x4e\xa4\xba\x5a\xcf\x2f\xce\x67\x33\xa2\xf8\x73\xfa\x77\x2d\x37\x65\x92\x59\x79\xf7\xf7\x41\x34\xa9\xf4\xe7\x73\xe9\x7e\x11\x2a\xa2\x63\x4f\xf1\x94\xfc\x74\x7c\x6c\xa2\xac\x34\x04\xe0\x02\x67\x9f\x81\x6f\x62\xb9\x96\x17\xdc\x3a\x59\x64\x2b\x9a\xf1\x57\x5f\x6d\xe4\x03\x94\xd6\xc7\x7f\x4b\xdd\x41\x66\x98\x41\xb0\xef\xbb\x26\xc5\x2e\x0b\xdc\x9a\x57\x02\xf8\xf0\x0d\x4d\xd4\x0a\x9f\xd5\xd0\x7f\xce\xf2\x9d\xfb\x8f\x74\xb9\xd2\x02\x41\xa6\x92\x10\x60\xd3\xdd\x9c\x20\xd6\xb2\x87\xe6\x8b\x71\x0d\xd5\x5d\x7a\x07\xc5\x70\x0d\xe3\x3d\x3c\xff\x73\x27\xc1\xa6\xcf\xf5\x83\x5f\xb2\xae\xf1\x93\xe3\xa3\x7c\x72\xac\xef\x40\xb9\x47\x2a\x57\xb9\x0f\xb0\x77\xc3\x1d\xb1\x7c\xaf\x28\xc8\x21\x12\xa5\xe5\x21\x78\xa3\x5e\x08\x4a\xad\x38\x78\xd3\x31\xa0\x41\xd8\x45\x96\xa1\xeb\x35\x24\xdf\x1a\x21\x91\x42\xec\xdf\xb3\xfb\x48\x74\x75\x1f\x3a\x02\xbe\x08\x74\x70\x3e\x26\xf7\xa6\x37\x6b\xc6\xed\x04\x26\x10\x00\x23\x60\x12\x8c\xf2\x47\xd8\xa4\x50\xef\xc5\x86\xef\xf7\xef\xe4\x3f\x91\x58\x08\x82\x79\x9d\x43\x0a\x62\x4d\xa6\xf6\x75\x09\x6a\x3e\xeb\x65\xa6\x18\xa5\x2e\x33\xf5\x14\x84\xd8\xc2\x3a\x7b\x17\x2b\x7e\x86\x1d\x6c\xf6\x78\x91\xb3\x60\x8a\x3f\x49\x0a\x12\x95\x8b\xe5\x2d\x3a\x2a\x18\x70\x82\xca\xc9\x49\x48\x94\x93\xfb\x34\x18\x99\xe8\x64\x48\x75\x4c\xf8\x78\x16\x11\xd8\x37\xa0\x0f\x42\xfb\xb9\xfe\x90\x0b\x19\x21\x7d\x66\x38\xc7\x39\x9e\xf4\x8e\x6f\x5c\xe0\x5b\x8d\x5f\xb4\x0a\xca\x88\x21\x8d\x9d\x19\xb2\xb6\xdc\x6b\x85\x48\x37\x3a\x45\x13\xd1\xde\x07\xca\xd9\xb8\x5c\xf7\x49\x3c\xaf\x57\xcd\xf8\xb4\xee\xa9\x11\x2c\xb1\xd0\x64\x03\x0b\x36\x1d\x60\xad\x79\x2f\x59\xdf\xc7\xc2\xdf\xda\x7f\x12\x18\x2d\xd3\x6f\x8c\x6a\x5a\xe1\x39\x4f\x0f\xf7\x41\x9e\x14\x54\xff\xc1\x1f\xa5\x12\x71\x5f\x00\xa5\x48\x74\x33\x5b\x25\xbf\x08\xa3\xdd\xa3\x00\x60\x2f\x93\xb4\x99\x1d\xd5\x84\x2c\x8c\x29\xc2\x6f\x40\x0c\xa8\xc7\x21\xc4\x3c\x55\x38\x8c\x0f\xd1\x06\x3a\x81\x63\xba\xf0\x5b\xf0\xf1\x87\xe0\xfd\x38\x1d\x8d\xfa\x3e\x8c\xe3\x90\xd9\x7f\xfb\xf7\xa5\x41\x64\x28\x67\x12\x16\x6c\xf6\x53\xdf\x44\xa0\x0e\x60\x0a\x0d\x22\x60\x6a\x0a\x8d\x1a\x6f\xb4\x81\x1e\x9d\x9d\xd0\xe8\x10\x9b\x34\x7d\x7a\x7e\xc8\x2e\x1b\xfc\xe0\xfc\xcd\x17\x1b\x51\x9d\x02\x91\x1d\x5f\xa9\x37\x5d\xf1\xb8\xa6\x74\x60\xbb\x77\xbc\xa1\x9c\xde\xa0\x87\xa1\x98\x3e\x79\x26\xab\xe0\xe0\x81\x61\x2d\x53\x1d\xd5\xec\x47\x58\xa3\x37\xb3\x8a\x9b\xf5\xa2\xe3\xba\x2a\xd2\xe4\xbf\xb3\xa9\xa8\x0b\x33\x4f\xb8\x50\xc8\xf8\x2e\x63\xab\x51\x36\x0e\x33\x48\x93\x37\xe3\xbd\x5d\x0b\x65\xe5\xd2\x87\x55\xda\x4a\x85\xc9\x9c\xd4\xb9\x5c\x15\xaf\x29\xfb\x02\x7a\xb2\xce\xc8\x07\xa3\x38\x83\xc8\x23\xec\x84\x4c\xa8\x21\xd1\x6d\xa7\x5c\xdb\x3e\x47\xf2\x6c\x14\x3e\x6c\x06\x41\xa1\x30\x04\x57\xa7\x66\xb6\xb3\xbc\x29\x5e\x75\x9b\x86\xb7\x5f\xb0\x87\xd5\x2c\x8e\x73\xbe\xe8\x65\x53\x61\x1c\xae\x13\xf7\x27\xfb\xa3\x42\xcb\x34\xd9\xa9\x04\x8c\x6f\x36\xe5\x85\xd0\xc5\xf1\x66\xd3\x10\xfa\xec\xc2\x89\x71\x19\xd4\x4a\xda\x92\xbe\x82\x55\xe6\x04\x44\x17\x01\xba\x89\x72\x44\xc7\xca\x56\x10\x3a\xee\xcf\xbd\x72\x1f\xeb\x14\x20\xf0\x47\x02\x63\x2c\xb7\x8e\xea\xa1\x0d\x25\xfe\x5d\x27\xe5\xdd\x46\x68\x5a\x35\xf2\xf3\x72\x53\x9a\xd4\x1f\xdc\x7c\xc3\x63\x46\x1f\x66\x9f\x66\x9a\x1e\x34\xa6\x7a\xc3\x49\x7c\xd2\xad\x0c\x18\xf8\x79\xf7\xd3\x8a\x43\x28\x9c\x0a\x1e\x79\xeb\xd4\xe1\x21\x7e\xee\x32\x07\x80\xf8\x7d\x05\xf9\x76\xe9\xf5\x29\x2d\xa8\xc0\xd9\x24\xfe\x96\x80\x5c\xfa\x65\xa0\x0c\xd8\xe9\xb7\x35\xd7\xa2\x16\x36\xfd\x44\x17\x49\xfa\x09\x3c\x8f\xb2\xa6\x9c\x78\x92\x43\x98\x81\xd3\x8b\x6d\xfa\x1d\xfc\xd7\xb3\x9a\xe0\xb1\x99\x55\x45\x65\x5a\x36\x48\xcc\x4a\x50\xe3\x93\x55\x0e\x9e\x59\x74\x27\xd3\x38\x0a\xfc\x97\x8d\x08\x54\x70\xd9\xe4\x80\xb5\x04\x1a\x55\xcb\x11\xbe\xc0\x87\x26\xb8\x64\x09\x57\xa8\x4e\xd6\x7a\x8d\x1a\xc0\x89\xdd\xe4\xad\x62\x51\x44\x04\x45\xd2\x14\x94\xb9\x94\x76\x89\xe9\xe1\x27\xcb\x75\xaf\x8a\xdd\x5f\x03\x3d\x4b\x37\xe6\xb2\x11\x5c\x95\xbd\x5a\x48\x55\x95\x9d\x23\x26\x05\x19\x24\x92\x21\x13\xfb\xee\xb8\xb7\xeb\x47\xc8\xe2\xf8\xd8\x9f\xf7\xd5\x8f\x51\x58\xf2\x76\x80\x75\x0b\x8d\x4d\x33\x01\xb1\x5d\xe2\x25\xa4\x02\x7b\x1f\x1e\x05\x5d\x53\x3c\xb6\xb5\x8c\x79\x6d\xa0\xd9\xf8\xd0\x0f\x69\x54\x3f\xa4\x99\x80\xe6\x4b\x6e\xe4\x79\xe2\x51\xe1\xdb\xfa\x40\x0c\xe1\xb6\x72\xf7\x96\xbc\xf0\xe9\x8d\x2a\xbc\xaf\xee\xae\xe4\x85\x8f\x60\x35\x85\x54\x56\x33\x7a\x1d\x4c\xb4\xf0\x81\xa8\x00\x2f\xa0\x56\x78\x29\x02\xb1\xcc\xed\xc5\x81\xa7\xb3\x31\x96\x26\xf4\x52\xf3\xe1\xf6\xda\x36\xc9\x43\xf9\x7b\x1a\x0e\x98\xfe\xfa\x0e\xde\x37\x0e\x47\xeb\x57\x4b\xc2\x9f\x2e\xb8\x8a\x43\x0c\xeb\x0d\x04\xcd\xe0\xf7\x44\x63\x3e\xd0\xce\xfe\xc4\xde\xd3\x68\xae\x13\xcb\x9a\x47\x45\x52\xec\x43\x0b\x88\xb0\xc3\x9b\xa6\x34\x66\x0d\x26\x22\x8f\xe6\xc6\xac\x3f\xc3\x74\x88\x72\x2b\xc0\x56\x22\xc9\xfe\xa8\x28\x1c\x39\x24\xeb\xe4\x5b\xf6\x71\x25\xeb\x9a\xdb\x2f\xd0\x11\xaa\x8f\x5b\x3a\xb1\xd3\x49\x55\x2b\x9f\xdc\xdb\x7b\x3e\xce\x8c\xca\x8f\x37\x73\x82\x04\x52\xf4\x03\xe3\xc2\xf8\x46\xaf\x72\xf1\x31\x5a\x43\x36\xc0\x09\x1e\xa5\x3e\x21\x28\x7e\x79\x1b\x3b\x04\x61\x35\x57\xcb\xb8\x47\x7c\xf5\xd4\x9c\xd1\xde\xd3\xff\xe4\xfa\x41\xc4\x29\x9f\xba\xee\x43\x11\x81\x0d\xea\x51\xc9\xb7\xe2\xbe\x69\x65\x8a\x90\x54\xd2\xfe\xa6\xc3\x85\x3d\xf9\x11\x87\xb0\xab\xf7\xb7\xfd\x2b\xcf\xd7\xa1\xc5\x4d\x8d\x9d\xe7\x29\x77\x06\x0a\x71\x5d\xf6\x1b\xe0\x88\xce\xc0\x9f\x4e\xf5\x8a\x1d\x0f\xbc\xb6\x9c\x3d\xe3\x4d\xcb\xe1\x01\x4f\x18\x99\x12\xfa\x5e\x6b\xc7\x25\xaf\x3a\xdd\xf5\x56\xaa\x10\xcc\x91\x3d\xf1\x5f\x1e\xe5\x3c\x8f\xaf\xd1\x8a\xb6\xd3\x43\xd9\x43\x10\x58\x5f\xe9\xc4\xad\x53\xcd\x3c\xff\xdb\x66\x37\x1b\x30\x97\xbe\x1e\x6f\x40\x3d\x8e\xb1\x39\x1b\x51\x5b\x81\x9e\x13\x8e\x60\x23\xff\xc9\x5e\x67\xfd\x52\xbd\x6e\x61\x39\x84\xf4\x7c\xdc\x54\x82\x3d\x86\x84\x6e\xd4\x6d\x02\xbc\xe9\x20\x06\x50\xd9\x74\x5d\xdd\x6f\x80\x4b\x44\x16\x0e\x5e\x5c\x21\xf3\x29\xfb\x4f\xde\x52\xd4\xe6\xfd\x5e\x3c\x76\x54\x33\xa0\xf8\x5a\x68\x76\x8c\x39\xe3\xef\xad\x7f\xae\xc5\x64\xdd\x93\xee\xee\x8a\x37\xf6\x50\x6d\x3f\xb7\x6b\xc1\x37\xa3\x99\x7d\x4d\x02\xcb\x81\xb9\x85\x1a\xf7\x4d\x51\xa8\x0f\xf8\xdc\x5e\xc9\x03\x95\x65\xd5\x60\xfc\x15\x08\xbe\xf2\xc1\xb5\xc0\x96\x2d\xc8\x3d\x6d\xf5\x6b\x2a\xd3\x6b\x67\x55\x9c\x09\xbd\x10\xc6\xb2\x13\xf0\x35\xf2\x2f\x37\xef\x6f\xa7\x5b\xfc\x59\x2c\xad\x29\x02\xe0\xb7\xc2\x28\xd4\xee\x24\xf2\x40\xd7\x59\x63\x35\xdf\x38\x76\x1d\x1c\x3b\x42\x08\xe5\xf7\xcc\x2d\xc2\xff\xd6\xc9\x6d\xcd\x86\xab\xd2\x58\xdd\x2f\x6d\xaf\x85\xa1\x8e\xf3\xa9\x7a\x71\xb6\xe1\x8a\x91\x54\x37\xda\x51\xe3\xfa\x93\x18\xdc\xd7\xc0\x92\x2f\xd7\xe2\x30\x06\xee\xc4\xbd\xf8\xda\xc1\x7c\x68\xfd\x69\x0c\xee\x69\x62\xa3\xbb\x73\x77\xe5\xad\xca\x45\xbf\xac\x85\x2d\xd7\xdc\xac\x4b\x0b\xa9\x95\xa7\x0f\x34\x80\xb1\xa7\xdc\xac\xd9\x2b\xbe\x68\x9c\xf4\xff\x12\x1a\x41\xe3\xb3\xc8\x13\x2c\xcb\x56\x58\x0e\x86\x68\x93\x2d\x3d\xf9\x9a\xbd\x20\x80\x94\x89\xb6\x6b\xa1\x4b\x12\xdf\xe8\xb0\x3b\x96\x7a\xb2\x89\x53\xd4\xa3\x92\x78\x47\xc7\x7f\x3c\x44\x25\xde\x12\x77\xb2\x1c\x96\x8d\xf0\x99\x06\x5d\xff\xa7\xbb\x5f\xd4\x6a\x77\x63\x76\x37\x09\x3c\xc8\xdd\xab\x25\x0a\xb0\x67\x1d\x20\x0a\x34\x81\x1c\x10\x4f\xf2\xdd\x8b\xb4\xd3\xc3\x13\x81\x74\x6d\xf7\x1a\x13\x67\x4c\x80\x6e\xb8\x3b\x93\xf7\xc2\x7a\x2c\x10\x94\xd0\x98\x80\xa3\x8e\x4d\xe1\xb1\xc4\xe1\xa3\xba\x63\x0e\x5e\xee\x2d\x57\x7c\x25\xca\x0d\x07\x33\xe8\xc4\x59\x8a\x74\x53\x2d\x7b\xe9\x8a\x24\xd5\x51\xe2\x32\x3c\x72\xc1\x03\xfc\x53\xb0\x42\x0e\x2f\xf0\x04\x45\xee\x83\xb2\xa5\x0f\x9e\xe1\xaf\xd0\x81\x20\x86\x1c\x95\x77\x57\x1e\x64\x14\x5d\x1a\xbf\x66\xdc\x27\x7d\xa3\x2c\xa3\xc1\xf3\x08\x3c\x88\xb0\x08\xdc\xa2\xb4\x58\xb9\x35\xc7\xa0\x33\xe7\x43\x3a\xaa\x81\x83\x59\x8d\xe3\xed\x82\xba\x45\xb2\x27\xc8\x99\x24\x43\xcc\x6c\x6a\xd1\xd0\xfa\xde\x8c\x06\x73\xaa\x9b\xe7\xa0\xa3\x81\x81\x18\x86\x66\x9b\xaf\x51\x0d\x88\x46\x21\xec\x99\x97\x88\x09\xd2\xed\xe7\xa6\x78\x2d\xb4\x68\xd2\xba\x4d\xb7\x92\x24\x7c\x66\xf5\x07\xc1\x28\xe1\x1f\xba\x68\x62\x95\x0d\x37\xe6\x12\x8c\xf9\xf1\xe9\x21\x26\x4a\x6a\x45\x6a\xb2\xa0\xd1\x27\x34\x7a\x91\x42\x80\x20\xda\x19\x21\xa0\x27\xd9\x32\xe2\x6c\xe0\x5a\x13\x55\xb8\xe7\xc5\x3a\xce\x45\xd8\x2b\xae\xea\x22\x35\x57\x42\x98\x96\xbf\x45\xc9\x0b\xd6\x54\x76\xaa\x08\xc6\xb3\xa0\x67\xfc\x2e\xe4\xb5\x61\xcf\x65\x2b\xad\x3c\x54\x0f\x55\xae\x1f\x3f\x01\x4e\x3b\x8d\x0a\xdd\x40\xb5\x10\x22\xcc\x8f\xff\xd3\xcf\x29\xc8\xfd\x27\xd4\xa2\x34\x65\xdc\xa4\x27\x3d\x2d\x3a\xaf\xad\x13\xfa\x62\x32\x27\x9a\x63\xdd\xad\xe5\x42\x5a\x5c\x9a\x08\xde\xb9\xed\xd0\x62\xa2\x9a\x81\x33\xa1\x56\x31\xb7\x6b\xec\x06\x36\xba\xaf\x73\x94\x44\x77\x92\xa8\x2d\x4c\x4d\x3a\xfc\x3e\x80\x30\x69\x4e\x92\x02\x97\x93\x58\x39\x73\x8d\x9e\xc8\x4b\x0d\xb1\x8c\x45\xd4\x3f\x53\xcb\x59\xb3\xb2\xdd\x74\xda\x8d\xc5\xed\xbe\x04\x2f\xb7\x0f\x13\xce\x19\xed\xda\x31\x98\xd4\x87\x76\x90\x6f\x24\xda\x40\x2f\xe9\x5a\x49\x1d\x81\x11\x7c\xff\xb9\xdf\xef\x9b\x33\xe9\x8f\x84\xb1\xb2\x69\xca\xee\x52\xa1\x8a\x38\xcc\xbd\x80\x2c\xb7\x3e\x60\x99\xe3\xa1\x31\x4a\x8b\x77\x97\xaf\x38\x85\x78\x87\x80\x74\xac\xf3\x71\x84\x0c\xc5\x4c\x46\xdf\xb6\xdc\x10\x25\x86\x74\xb1\x0e\x86\xdc\x69\x53\x3c\xd6\xdc\x80\xfd\x14\xa1\xb1\x70\xdc\x44\xc4\x24\x55\xfb\x39\x29\xf7\x66\x10\x68\x9b\x0b\x71\xdd\x32\x6c\x72\x50\xe5\x6d\x60\x20\x7b\x0e\xa2\x96\xc3\x04\xc4\x33\xa4\xf6\x0c\xe7\x70\xc6\xa7\xd3\x66\x74\x9a\xa2\x97\x64\x77\x40\x66\x8b\x30\xbe\x04\xa0\x4a\x42\xdd\xe1\x77\x6e\xd7\x05\x9f\x82\x59\x17\x3e\xd7\xcd\x50\x5b\x0e\xd4\x3c\xef\x0d\x4e\xf9\xb8\x17\x04\xce\x5e\xd2\xf1\x53\xd2\x33\x7e\xc8\x5f\xf3\xf1\xdb\x25\xb7\x10\xd1\x9d\x14\xba\x68\xc1\xec\x0a\x8c\xe5\x1a\xb8\x4d\xd0\x9b\x06\x1d\xfe\x7c\xec\x92\x49\xd0\x72\xeb\x38\xea\xa1\xb7\x33\x50\xeb\x67\x84\xdc\x4c\x51\x72\x8c\xa6\x49\xc0\x31\xc7\x12\x5a\x1f\xc3\x23\x08\x15\xc5\x51\xe0\x87\x98\xae\x1b\x7f\x0b\xe5\x58\xac\xc9\xbb\x12\x01\x28\x30\x7e\x1a\x8c\x9f\x4a\x26\x8d\xf5\x12\xf4\xa1\x2b\xc0\xdd\x7b\x97\x25\x85\xf1\x8a\xa1\x1b\x05\xcb\x8c\x58\xf6\x5a\xda\x01\x02\x3c\x77\xcb\xae\x71\xad\x5f\x08\xd5\xc8\xda\x9d\x65\xdb\xd5\x5d\x13\x1a\xda\xf3\xb8\xc2\xcf\xeb\xce\x58\x12\x6f\xe9\x8b\xa3\x39\xc5\xcb\x4e\x5b\xfa\x0d\x3a\xcb\x4a\x91\xa2\xb2\xe5\xec\xf4\xdb\x47\x32\x2f\xf3\x57\xda\x38\xea\x66\x88\x0b\xa9\x29\x66\xa6\xb7\x85\xc1\xe4\x3a\xe3\xd8\x99\x47\x6c\xf7\x37\x0d\xc1\xd6\x15\x3b\xfd\xee\xc5\xff\xf9\xd0\xa4\xdd\xf8\xfb\x33\x22\xf2\x92\xeb\xae\x01\xce\x6a\x02\xcc\xe3\xf4\xc3\xe0\x16\xff\x0b\x76\xd2\xb3\x0d\xc0\x1f\xb1\x35\x6f\xd9\x9a\x37\xe4\xd7\xd3\x0a\x2b\x93\x84\xf8\x48\x4d\x0d\xe5\xc7\xab\xc9\x6e\x10\x5d\x5b\x5e\xef\x6e\x6a\xe3\xae\x6a\x77\x1f\x50\xaa\x19\x38\xc7\xfe\x16\x1b\xe0\xae\xa6\x15\x77\x5c\x1c\xa6\xce\x4c\x5d\xdd\x41\x56\x7e\x85\x4f\x14\x29\x64\xa5\x32\xb8\x64\x92\xb9\xb5\x5a\x2e\x7a\x2b\xa6\x9d\xe7\xc1\x94\x06\xf3\x83\x1c\x82\x3f\x1c\x32\x29\x2e\xd2\x2a\xa4\x28\x6e\x39\x84\x48\x60\x1c\xc0\xf6\x6e\xe8\x31\x67\x32\xee\x94\x4e\x51\x53\xb3\xe3\x0a\x23\x7c\x4c\x23\x67\x7a\x1c\xcb\x59\x37\xf0\xea\xbe\x51\xb4\x5c\x36\xc5\xe3\x4f\x37\x9d\xb1\x7c\x1f\xee\x42\x68\x79\x3e\x94\x2b\xdd\xf5\x9b\x32\xda\x2e\x15\x4f\x74\xbf\x89\x84\x5d\x49\x8a\x5c\xdf\x70\xaa\x87\x15\xe8\x31\x15\xa2\x9c\x56\x0a\x2b\x65\x4b\xc4\x4e\xbf\xcd\x2a\x60\xde\x1f\x04\xfc\x06\x32\xfe\x18\x99\x01\x44\xbc\x97\x9d\x72\xd2\x0f\x06\xad\x6a\xa4\xb1\xd9\xd4\x3f\x77\xdc\x81\x91\x14\x9f\xc3\x49\x56\x80\xf0\x78\xbe\xa0\x72\x6c\x13\x63\x9f\x94\x52\xe1\x80\x01\x0f\xcb\xb1\x31\x0c\x8e\x91\x6d\x8d\x83\xb3\x6f\x5c\x13\xee\xbc\xe0\x69\x82\x71\xb2\xf8\x70\x56\x4b\x3f\xd1\xc8\xbf\xec\xde\x89\x9a\x9a\xa0\x09\x48\xbb\x19\xcd\x03\xbe\xba\x13\x5c\xb4\xc6\x19\x41\xb5\x8e\xe1\x2a\x0d\x2f\x5e\x18\xb7\x51\xce\x8e\x3d\x51\x6b\xed\xa6\x84\x17\x96\xb3\x17\xaf\x5e\xb2\x9c\x9c\x67\xa4\xd1\x41\x22\xf9\x72\x80\x48\xc3\x4c\x9f\x14\x02\x25\x83\x42\x47\xce\x7c\x89\x0f\x07\x86\x04\xd1\xe0\x5b\x30\xf3\x16\x18\x44\x1f\xd3\x1b\x63\x54\xc1\x13\x96\xa7\x42\xc3\x11\x81\x43\xa4\xc8\x9c\x1b\x74\xf8\x69\x06\x89\x49\x6e\x9e\xed\xfe\xda\xd5\x4d\xef\xab\x23\x1b\x77\x21\xf5\x6a\x77\xd3\x34\x82\x3d\x3a\x7a\x94\xb2\x19\x68\x73\x93\xde\x40\xa5\x6d\x4c\xf1\xea\xf9\x19\xbb\xfb\x87\x3c\xd7\xe0\x18\x33\x40\x48\xd3\x70\x2b\xf9\x59\xa8\xe5\xc6\x01\x97\x78\x4a\xa0\xce\x29\x9d\x83\x10\xce\xf5\xd8\x86\x43\xb1\xe1\x6d\x69\x84\xbe\x90\x4b\x3a\xc7\x2f\x8f\x5f\xb0\x33\xf7\xc1\xa4\x97\x06\x61\x01\x79\x35\xbd\x50\x57\x7c\xe7\x93\x72\x7a\x41\xce\x0d\x7c\x02\x27\x10\xc5\xf2\x65\x3d\x4e\x7c\x65\xa3\x24\x42\xb3\x9f\x32\xff\x43\x56\x0d\x22\xf4\xe4\x37\x2f\xee\x1c\x48\x9a\xd6\xba\x6b\xb0\x0a\x83\xcd\x84\x8f\xf1\xcb\x27\xd8\x3b\x04\xfe\x20\x97\x32\xf3\x3e\x0f\xb9\x6c\xce\xb3\x7b\x3e\x69\x21\x43\xf8\x03\xac\x8a\xd3\x66\xee\x9b\xa6\xc8\xa2\xfb\x09\xf0\xb1\x3a\x73\x59\x14\x8d\xa9\x52\x98\x12\x19\x0e\xb0\x92\xca\x3b\x40\x63\xa9\x7d\xd8\x10\x88\x38\x83\x0e\xaf\x2e\xef\x31\x7b\xa2\xad\x08\x6c\xb9\x24\x27\xdd\xbd\xc6\xd6\x1c\x7c\x3f\xb6\xe1\xc2\x09\x46\x32\x69\x18\x29\x5f\x84\xa6\xbb\x23\xc3\x12\xe4\xd8\x83\x57\x36\xa0\x97\x4b\x0f\xa9\x18\x08\x81\x83\x49\xa8\xdb\xbd\x13\x17\x98\xde\x35\x19\x7b\xca\xad\xe7\xd3\x34\xc9\xb5\x63\x4d\x54\x09\x90\x93\x1b\xba\xb9\xa0\xed\xfd\x68\xc3\x91\x4f\x0b\xda\xc9\xf8\x6e\x57\xd2\xae\xfb\x45\xc9\x37\xb2\x14\xaa\x02\x9d\x7b\x71\xfc\xf2\x8f\xec\x31\xfd\x98\x91\xb9\xca\x5c\x75\xb6\x34\xc2\x16\x1f\xc3\x86\x0a\xce\xd9\x9f\xf8\x72\x7a\xbc\x20\xe3\x16\xa4\x8c\x2c\xb7\x71\x71\x5c\x13\x41\x2f\x34\x57\x15\x39\xab\xb9\x3f\x99\xfb\xd3\x17\xea\x1e\x2f\xb0\xec\x65\xbc\xe5\xe9\x35\x93\x34\xe5\xa0\xdb\xae\x12\x63\xe8\x17\x5d\xd5\xe7\xc8\xc5\xe0\xf8\xbd\x6e\x8a\xc7\xf4\x83\xfd\xf0\xfd\xf3\x11\x1c\xf1\xad\xa7\xf0\xcf\xa8\x2c\xf0\xbd\x2f\xe9\x8f\x51\xf9\xda\xba\xbb\xa4\xaa\x74\x01\x01\x17\xdd\x5f\xc2\x98\x29\x20\xb8\x2a\x00\xc8\xfd\x35\x82\x58\x0a\x6d\xd1\xb9\xf4\x6b\xa1\xad\x3c\x97\x4b\x6e\x05\x73\x1f\x46\x80\xb5\x40\x9f\xd0\xe2\x99\x18\xa6\xca\x1d\x25\x76\x77\xa3\x37\xc4\x79\x21\x15\xa8\x54\x1c\x59\xf6\x16\x39\x79\x8d\x5e\xc9\xb7\xa5\xe9\x40\xc9\x1b\xed\xd8\x8a\x1f\x94\x7c\xcb\xf0\x33\x8b\x9f\x47\x75\x41\x6f\x50\xea\xae\xb3\x30\xc7\xcf\xdd\x4f\xe6\x7e\x4e\xcc\x72\x77\x7e\xee\x0e\x33\x2e\xde\x77\xf8\x03\x9c\x47\xc6\xab\x21\x0d\x90\x7e\xdd\xf5\xf8\x1e\xb4\x2a\x4e\xf1\x13\xc3\x4f\xac\xe9\x56\xe3\x95\xc6\xdb\x62\xb5\x95\x9b\xe2\x31\xfc\xcd\x9e\x6c\xe5\x66\x04\xc5\x37\x9b\x12\xd4\xce\x1b\x6e\xd7\x99\xb5\x93\xfb\xca\xdc\xd7\xbd\xf1\xf1\xaa\xe4\xc6\x08\x6b\xca\x73\xdd\xb5\x65\x25\x4d\x5d\x3c\xef\x78\xc5\xf0\x2b\x73\x5f\x99\xfb\x3a\xae\xc9\x55\x25\xd5\x0a\xa7\x05\xff\x86\x39\x09\x60\x66\x1d\x0e\xcf\xd9\xd3\xc3\x27\xc7\x98\x75\x90\x09\x71\x64\x55\x5a\x44\x5b\xf7\xf1\xdb\x4d\x67\x44\xc5\xaa\x7c\x0b\x9b\x35\x8a\x5a\xbe\x38\xdb\x78\x66\x3d\x87\x85\x83\xc9\xf8\xde\xad\x59\x36\x01\x66\xed\xf6\xda\x4a\x28\x04\x78\x06\x7f\x4f\x81\x94\x10\xb4\xd1\x03\x61\x10\xc8\x31\x58\x8b\xbb\x10\x63\x16\xc8\xad\xc0\xf4\xe2\x61\x73\xd6\x62\x60\xee\x33\x83\xcf\xf7\x55\x34\x7b\x75\x4c\x36\x20\x41\xf6\xe0\xf9\xd3\x7f\xc9\x6d\x69\x2c\xd7\xb6\xf8\x1e\x01\xd8\x83\x11\xc4\x03\xc6\x2d\x03\x90\xb4\x39\xf8\x50\x2e\x7a\xd9\x58\x47\x72\x61\x65\x8b\x33\xf7\x91\xd1\x47\x86\x1f\xd3\x4a\xc0\x3f\xab\x12\xd8\x46\x60\x9a\x15\x73\x7f\x4f\x80\xc0\xda\x10\xc8\x78\x69\x3c\x7d\x95\x9b\xb5\xd0\xa6\x38\x83\x9f\x8c\x7e\x86\x5d\x84\x7a\x50\xdc\x46\xa8\x4e\x39\xb4\x8f\x1c\xe4\x7d\xeb\x0d\xe5\x18\x91\x00\x15\x05\x67\xf0\x37\x73\x7f\x67\x30\x5c\x19\x59\x2e\xd7\xdc\xba\xdb\xe1\xf8\xdb\xb3\x3f\xb2\xe5\x9a\x6b\x23\x6c\x06\x75\xde\xb9\xdb\xc9\xab\x68\xbe\x71\xbf\x18\xfd\xca\xe0\x5a\xfe\x36\xea\x71\x41\x5f\x5b\xbc\xe0\x6f\x99\xff\x84\x2a\xdc\xac\xc6\x06\x72\x95\x6b\x51\x95\x8d\x5c\x0a\x65\x84\x29\x5e\xfa\x4f\xcc\x7f\xca\x6a\x78\x82\x02\x54\x78\x25\x6d\x20\x27\x40\x8c\x9f\x8c\xda\x27\x52\x82\x94\xcd\xcd\x50\xd9\xca\x15\xa5\xca\x24\xd2\x02\x65\x30\x7b\x2c\x94\x4d\xb5\xa1\x39\x06\x0c\x28\xb5\x50\x95\xd0\x48\xf9\xa8\x0d\xcd\x2f\x81\x7c\x33\x2c\xcb\x08\x21\xb4\x41\x69\xc0\xcb\x73\x61\x97\x40\x2a\xf0\xa5\x79\x39\x14\x5f\x63\x09\x83\x12\x96\x94\xe4\x38\x54\xd2\x76\x7a\x0e\x24\xf7\x52\xf3\x0d\x24\xa9\x51\x06\x2c\x23\x1f\x43\x19\x03\x0a\xec\xca\x58\x2c\x9b\x6a\x83\x7c\xb3\x61\x4c\x30\x1e\x87\x6c\x68\x25\x29\xc5\x11\x41\x69\xd6\x4e\xbf\x71\x84\x34\xd0\xb1\x1f\xe0\x27\x13\x39\x39\x4b\x21\xad\x68\x37\xb8\x51\x09\xd6\x7d\xe8\x34\xd7\xc3\xfe\xa6\xa5\x2a\x21\x04\xf3\xb0\x11\xc6\x57\xa3\x8f\xb0\x8b\x27\x51\xc2\xe1\xf0\xb7\x40\x5c\x7c\x2d\x18\x05\xd0\xa3\xfd\xed\x47\xf5\x5c\x15\x0c\xcd\x90\xd4\x31\x04\xef\x2b\x54\x0b\x7f\x36\xff\x14\x6d\x46\x0f\x1f\xd1\x6a\x41\xda\xc0\xe4\xc8\x55\x0b\x54\x9f\x3d\x4d\x28\x48\xb5\x40\x35\xe2\xb7\x09\x0f\x55\x2d\x40\x8c\x2f\x7e\x30\x91\x18\x55\x8b\xb9\x31\x0d\xee\xba\xb3\xb3\xe7\xd9\x16\x4b\xca\xbc\xb0\xf9\xf1\x79\xa7\xd9\x83\x4d\x67\xec\x4a\x0b\xf3\x80\x75\xaa\x19\x3e\x49\xe0\x61\x39\x5e\x26\xb3\x4f\xdf\xf2\xfa\xe6\xbf\x1a\x69\xc5\xef\x1f\x60\xed\x78\x29\x92\x1a\xd1\x5f\x79\xf4\x9b\xe1\xef\x3e\x3f\x43\x1e\x9a\x58\x5d\x2d\xc8\xf1\xaa\xe2\x83\x29\x9e\xbb\x6f\xcc\x7f\x63\xee\xdb\x5e\xbd\x65\xd7\xd5\x52\xc4\x8a\x30\x5d\xdf\xfb\x2a\x58\x7a\xa8\x52\x50\x80\xfd\x40\x7f\xbc\x07\x1e\x7e\x87\x63\x8d\xbf\x0e\x55\xd1\xc2\xb1\x60\xf0\x26\xf2\x76\x40\xb9\x07\x56\xed\x7b\xfc\xce\xe0\x3b\xcb\x0d\xc9\x19\x46\x98\xd8\x6b\x2b\xd0\x29\x90\x06\xc0\x9c\xb9\xc4\x6e\x23\x99\x72\x33\x85\x45\x87\x30\x9a\xa8\x8e\xb3\xf5\x7c\xa2\xb2\xaf\x2d\x5a\x2e\x1b\xbf\x94\x8f\xdd\x8f\xe9\x75\x04\xb8\x43\xdc\x0b\x16\x9a\x1e\x0c\x41\x4a\x47\xd5\xe5\xdb\xe2\x0c\x7f\x32\xfc\x99\x83\xee\x9d\x03\xfc\xec\x18\xb0\xe2\x1b\xdd\xb5\xf9\xe7\xbd\xd3\x80\x9f\xc3\x5d\x20\x9a\x2e\xde\x03\x8f\x9f\x7f\x37\xea\x4b\x34\x1d\xdc\xe0\x30\x17\xae\x9c\xf9\x5f\x23\xfc\x6b\xb9\xf1\x9a\x8f\xb3\x5a\x6e\xd8\x32\x61\xdf\xf1\xfb\x1e\x5e\x65\x02\xe3\x50\x64\xcb\xde\xd8\xae\x4d\xab\xe6\x75\xde\x2f\x1c\x20\xdc\x41\xd9\x20\x76\xbd\x69\xb8\x54\xa5\x15\x6f\x2d\xf4\x0c\x3f\x99\xfb\x99\x83\xf2\xaa\x4a\x40\x4b\xde\xd8\xe2\xb8\xaa\x12\x70\xc6\x1b\x10\xa7\xac\xbc\x18\xcf\x88\x50\x15\xb2\x84\xa0\x54\x3d\x13\xaa\xa2\xc0\xe0\xee\x77\x0e\x1b\xc0\xca\x73\x2e\xdd\x1e\xf9\x06\xfe\x61\xb6\x63\x26\xaf\xe7\x3e\x39\x29\xf7\x0b\xf6\xf0\xe2\x50\x1b\x46\x28\x8b\xb1\xc2\xb1\xca\x9a\x1b\xb6\x10\x68\xe1\x68\x7d\x03\xf3\xb0\x8b\xe1\xf8\xd1\x26\x3e\xce\x8f\xdc\xe4\x6e\x76\xf0\x41\x55\x04\xd1\x65\xca\x06\x4c\x8d\x8f\xe9\x1b\x73\xdf\x18\x7c\xcb\xea\x68\x61\x9c\x68\xe5\x1f\x0d\x92\x9a\xdf\xbb\x12\xe6\x4b\x0e\xd7\xc7\xbc\xb3\xc9\xb1\xd3\x6d\xf1\x3d\x7e\xa5\xb1\xd2\xd7\x7d\x84\x7d\x65\x23\x57\xaa\x74\x72\xa1\x14\x97\xa1\xae\xfb\xc8\xa4\x62\xee\x63\x56\x2b\xc8\x60\xa0\x79\x23\xee\x27\x48\x61\xc9\xc7\xac\x96\x67\x7b\x92\xf2\x72\xc9\x37\x76\xb9\xe6\x81\xed\x49\xca\x18\x95\x4d\xb7\x31\xa6\x94\x89\x6b\x4d\x68\xeb\x30\xd5\xfc\xa0\x36\xbb\x7c\x7c\x87\x9a\xed\x0e\x8f\xf8\x3e\x34\x4b\x0a\x0d\xf4\x21\xc4\xdd\x37\x0a\xaa\x78\xda\x93\x8e\x78\x4d\xef\x44\x07\xe5\x07\x85\x9b\x82\xac\x5d\x68\x04\xb8\x25\xe0\x9b\x9f\x8e\x48\xf8\xd1\x4b\x8d\xfa\xf8\x0e\xb5\x55\x87\xa5\x4f\x04\x9f\x6f\x74\x77\x21\xdd\x60\x5e\xd2\x1f\x87\x00\x7c\xc3\x1e\x8e\x06\x30\x06\x4f\x6f\x9a\xaf\x47\x37\x13\x42\x38\x66\xdd\x60\x88\x64\xc7\xa6\x9f\x01\x3b\x32\x06\x5a\x2d\x31\x71\xe4\x05\x6f\x8a\x27\x5f\x33\xff\xf7\x18\xcc\x31\x6b\x8d\x3c\x47\xf3\x4e\x90\x2f\xdc\x2f\xf4\x3e\x1a\x23\x66\xf4\x79\x76\x0f\x7e\x7d\xf6\xfd\x37\xe3\xfb\x0f\xad\xeb\x68\xa4\xbb\xbf\xa9\x05\x9a\xd0\x1e\x9c\x45\x80\x9f\xf3\x8a\x6f\xac\xd0\xc5\x31\xfe\x9b\x17\xde\x37\x0c\x84\x88\xd7\x9f\xff\x0e\xf2\x0c\x61\x01\xa2\xcc\x41\x04\x1c\xe4\x9c\xbc\x92\x97\x98\xe8\x18\x03\x7a\x94\x9d\x96\x2b\xa9\x8a\x63\x28\x63\x54\x86\x6c\x33\xc3\xb2\x48\x2f\xad\xe5\xcb\x35\xc4\xa9\xf5\x54\x33\x7c\x39\x40\x31\x43\xf9\x21\x26\x20\x81\xd8\x63\x2f\x93\xb2\x9c\xb7\x3f\x9e\x62\xea\x13\xe8\xc0\xce\x9f\xed\xb1\xf0\x23\x28\xe4\xe0\xbf\x99\x60\xdd\x7d\x94\x28\x1a\xe9\xf7\xf8\x73\x7a\x98\x21\x70\xd9\xfe\x70\x93\x19\xda\x93\x76\xf6\x2a\x8d\x46\x19\xab\x1e\x90\x62\xf6\x1a\x08\x03\x4f\xea\x4e\x89\x31\x93\x15\x71\x2e\x92\x9a\x53\x12\xcd\x46\x82\x3d\x69\x9c\x16\x23\xef\xa1\x1e\x04\x3d\xa7\xf8\x21\x28\x3a\x91\x58\xe7\x88\x1b\x45\x0e\xc1\xef\x99\x60\xe7\x6b\xa2\x67\xce\x7e\xf5\xef\x83\xb7\xe9\x07\x34\xb2\xd2\x3e\x80\x09\x1a\xe2\x3d\xa1\xdf\x0c\x7f\x8f\xc1\xfd\xdd\xe7\xab\x85\x7b\xcf\xd7\x1b\x57\x20\x4a\x7c\x2e\x2a\xa1\xb9\x15\x15\x21\xec\xa9\x71\xf8\x4e\xa8\x46\xed\x0d\x25\x88\xa6\xc9\x7c\x01\xbf\xa6\xb7\x18\x42\x86\x17\xa8\x40\x2d\x4e\xf1\x43\x24\x19\xbe\x82\xcf\xa7\x40\x6d\x8f\x72\x08\x1c\x5c\xb1\x90\x87\x05\xb6\xe0\xab\x74\xbf\xf9\x22\x8a\x67\x0c\xb4\xb4\xeb\x6d\x71\x8a\xbf\x19\xfd\x1e\x83\x8f\x9f\x07\x81\x49\x26\x65\xb4\x63\x8e\x3d\xfc\x4a\x06\xb2\xf2\x44\xda\xc3\x18\xae\xa4\x0d\x2b\x04\x61\x29\xd7\x72\xb5\x6e\xe4\x6a\x1d\xd5\x3a\xee\x33\x33\x83\xb2\xfc\x2d\x0b\xa5\x69\x7d\xb7\xdd\xa1\x6e\x23\x95\x30\xc5\xa9\x83\x87\x3f\x71\xb7\x33\x90\x64\x39\x33\x52\xad\x48\xa7\xf1\xc9\xc1\xea\xe5\x72\xcd\x35\x5f\x42\x56\x7c\x68\x28\xfe\x9e\x6c\xcd\xd5\x99\x6e\x0d\x0f\x20\xb4\x91\x1c\xbd\x51\x75\x07\x99\x55\x5f\x2d\x4b\xae\x57\x60\xe5\xcb\xf5\xaa\x77\x27\xd7\x64\xcd\x83\x82\x4a\x84\xe5\x7a\xe1\x15\x56\xe3\x05\x43\x60\xd8\x90\x11\x16\x76\x24\xea\x99\x26\xc0\x97\x4d\xa7\x62\xcb\x5f\xbb\x5f\x53\x60\x10\xee\xdd\x43\xbd\xec\x9b\x66\x0a\x88\xcc\x95\x1d\xc8\x93\xaf\x03\x80\x87\x68\xba\x95\xdf\x1d\xcf\xbb\xd5\xe1\xdd\xe1\xe0\x50\xe3\x16\x34\x9d\x0e\xfe\xd4\x5b\xde\x3c\xdb\xfd\x52\xb3\xd7\x5d\xd3\xa7\x15\x40\x41\xf2\xa2\xab\xd2\x6f\x53\xe1\xa5\xbc\x63\xf6\x7c\xa9\x3b\x55\x7c\xad\x3b\x05\xa1\x6a\x04\x78\x06\x86\xc2\xc4\xc2\xcb\x7f\x32\xcb\xb5\xa8\xfa\x46\x38\xae\x68\xa5\x79\x2c\x50\x4e\x0e\xf3\x66\xe7\x60\xa4\x1d\x8a\x40\xab\xd6\xf5\xa6\x00\x4b\xc1\xbd\x62\xf1\x56\x2c\xfb\xe0\xec\x32\x7a\x0a\x4b\xcc\xbd\x63\x73\x1d\xbc\x32\x7a\x48\x8e\xd1\x38\xc5\xee\x5d\xe2\x71\x3e\x1f\x87\x45\x0b\x03\x00\xdd\x79\xea\x35\xef\x0d\xdf\x27\x11\x9a\xc4\xe7\xf6\x7a\xe6\x9d\xde\xbd\x13\x36\xfe\x44\xbb\x95\x7d\x3f\x78\x19\xc0\x21\xf2\x6a\x25\xac\xe3\x74\x89\xa9\xf6\x70\x0c\x02\x6f\xfa\xe7\xea\x24\x1a\xab\xaf\xeb\x04\xb6\x91\x33\x78\xc0\x42\x34\x62\x09\x91\xcd\xc0\xa5\x0d\xa3\x80\xba\x05\x0f\x10\x95\x38\x08\x03\xcf\xde\xe8\xf5\x12\xc0\xa5\x42\x69\x00\x2b\x41\x7c\x45\xb1\x7b\x27\x5b\xc9\x5e\x09\x0d\x81\xd6\x76\x7f\x15\x17\x52\x27\xed\xc3\x03\x38\xc2\x83\x37\x0d\xa4\xeb\x06\x43\x60\x78\x53\x1f\x01\x7a\x34\xb2\x69\xca\x00\x51\x81\x28\x37\xd9\x87\xf2\x73\x78\x1c\x48\x87\x95\x2d\xb3\xff\xde\x6d\xfc\x34\xed\x61\xe8\x63\x31\xe2\x2a\x2d\xd2\xee\x27\x5d\x49\x67\x3f\xe2\xc4\xbf\xf1\xa1\xfb\xc0\x60\x17\xdc\x50\xb3\xe8\xef\x0f\x0d\x84\x2d\xcf\x12\x82\x68\xa1\x42\xc2\x64\x4c\x8a\xf2\xf0\xc7\xcf\xdf\x98\x24\x27\x8a\x22\xbf\x5c\xb2\x8a\x89\x2d\xfe\xf8\xbb\x37\xae\xd1\x1f\x7f\xff\x06\xdb\x85\x18\x95\xf8\xf4\x5e\xc9\x19\xaa\xd4\xa9\xe1\x58\xe7\x73\xac\xf3\xaf\x54\x67\x1b\x5c\x3a\x58\x0e\xf4\x99\xd1\xcb\xcf\x26\xba\x80\x98\x4c\x3e\x42\x87\x05\x62\xd4\x6e\xb8\x16\x14\xc9\x00\xa2\xf7\x3e\xac\x7c\x98\xda\x46\x68\xb2\xdc\xa9\xb9\xbe\xbb\x72\x74\xcc\x1f\x14\x34\x2a\x48\x83\xa4\xcc\x42\x26\xca\x64\xfe\x70\x4a\xc2\x7c\x4c\xcc\xe7\xa3\x90\xf7\xb7\xa9\x1c\x3e\xb8\x04\x60\xeb\x5a\xfc\x94\xc0\x7f\x86\xe6\xaf\x9f\x61\xcd\x7f\x81\xb1\xc1\xa0\x20\x4c\x40\xaf\x7a\xc6\x77\xef\xec\xed\xf5\x4f\xb3\x65\xd3\x99\xdf\xd6\x02\x24\xf0\x80\x36\xb4\xe8\x36\x42\xfd\xa6\x46\xac\xa8\x35\xd7\x11\x1b\xca\x97\xf1\xeb\x9b\xe2\x18\xf0\x80\x0d\x7c\x5b\x41\x4b\x38\x35\x59\xe6\x92\xac\x3d\x48\x55\xbe\xdf\x5c\x16\xe6\x37\xa6\x09\xf4\xfb\xb8\xea\xfd\x94\xfd\xb3\x5a\xde\x9b\xc6\x7f\x56\xc3\xa3\xa9\x85\x3c\xec\xbf\xbd\xf1\x36\x69\x39\xe6\x6f\xaf\x64\x98\xe9\x85\xe6\x6a\xb9\x2e\x3e\xe4\x64\x71\xcb\x0e\x9f\x52\x88\x74\x73\x77\xd5\x2f\x84\x19\xe5\x13\x22\x92\xe5\x3b\x22\x02\xf2\xbb\x48\x40\x1e\xdd\x5e\xab\x89\x96\x7d\xb7\xbe\x51\x9f\x52\x08\x52\xfc\x58\xbe\x2a\x28\x65\x4c\x3a\x1b\x80\x37\xd4\xf6\x13\x71\xb0\xdd\x47\x9c\x49\x30\xa0\xac\xa4\x47\xd1\x35\xfa\xeb\xf1\x43\x34\x22\x7e\x90\xc6\x68\x44\xd3\x22\x65\x25\x23\x41\x72\x8d\x08\x49\x8e\x1c\x59\x20\x6e\x0f\xbc\xbc\x21\xc1\x51\x42\xa1\x30\xb8\x47\xc5\xa7\x10\xf9\xd7\xb0\xe6\x9b\xce\xf4\x68\xca\x79\x78\x3d\x59\x85\x49\xda\x99\xb8\xbb\x92\x16\xc7\x9f\xf6\x4c\xa9\xa4\x62\x87\xb0\xb2\xf7\x4f\x32\xbc\xf7\x42\x85\x7b\xe6\xa9\xee\x54\xdf\xf6\x87\x3b\x26\x6b\xb6\xfb\x46\x3a\x6a\x0a\x47\xba\xbf\x60\x09\x3a\xb1\x2f\xcc\x64\x8e\x4b\x34\xfb\xd1\x76\x5d\xf3\x66\xc6\x57\x5d\x01\x76\x64\x33\x30\x26\x81\x08\x7d\x57\x3d\xe3\xaa\xe2\x6a\x86\xbf\x64\x5b\xc9\xd9\xe7\xa6\xf8\xdc\x27\x73\x7c\x68\x66\x9f\xb7\xc5\xe7\xcc\x75\x5e\x73\xf8\xb9\x86\x52\x6e\xe1\x47\x55\x7c\x0e\xe6\x7d\xf0\xe3\xb2\xf8\x9c\xad\xf9\xb9\x45\xb8\xb6\x53\xc5\xe7\x8c\x0f\xf0\x63\x28\x3e\x87\xb8\x31\xee\x87\x11\xcb\x4e\x55\xa6\x78\x58\x25\xbd\xb4\x52\xf5\x56\xc0\xc7\xd8\xd7\xba\xeb\x35\xc1\x61\x7f\xf0\x06\xf7\xb0\x0a\x5d\x5e\x0a\x51\xc3\x87\xd0\x6d\xdb\x29\xbb\x86\x4f\xd8\xf3\x20\x38\x36\xe1\x7b\xd7\xfc\xb2\xf4\x18\x60\xf7\xe0\xa7\xc1\x2f\x4b\x8f\x02\xf6\x0f\xfe\x18\xfc\xb2\x44\x1c\xe0\xff\xb3\xd9\x8f\x95\xee\x36\xdb\x4e\x89\x37\x33\x2f\x0d\xb7\xc2\x80\x77\xec\x69\x70\xd1\x87\x8c\x71\xfb\xb1\xdc\x31\x37\x0a\xc6\x35\xb7\xc0\xfc\xa0\x31\x3d\x05\x78\x2e\xa5\xda\xf4\x64\xfd\x70\xd2\x83\xf1\x1e\xa6\x80\x1c\xb7\x3b\xc4\xc4\xe2\x33\x90\x36\x6c\xd7\x95\x0b\xb9\x42\x0c\x30\x19\xaa\x62\x8b\x6e\xe8\x6d\xff\xc5\xc7\xff\xfd\xdf\x20\xce\xc9\xad\xf8\xcb\x5f\xd8\x8b\x93\x4f\x18\x38\x96\x30\xb4\x8c\x25\x4b\x4b\x08\x74\x03\xe6\x86\xc1\x07\x0e\xaa\xbb\xda\x2d\x7f\xfb\x4d\xd6\xc0\x7c\x46\xa1\xb4\x62\x32\x02\xe6\x03\x6a\xcd\xfe\xdf\x00\x00\x00\xff\xff\x8b\x93\x85\x8c\x24\x1a\x01\x00" +var _confLocaleLocale_trTrIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\x4d\x93\x1c\x37\x92\x28\x78\xcf\x5f\x01\x71\x8c\x46\xc9\xac\x94\x34\x75\xbf\x79\xbb\x26\x53\xa8\xb7\x4a\xc5\x26\xfb\x91\x94\xf8\x54\x54\xcf\xe3\x68\x69\x21\x64\x06\x2a\x13\x1d\x08\x20\x07\x40\x54\x31\x72\x6c\xce\x7d\xd9\x73\xdb\x1e\xda\xba\x8e\xbc\xaa\x2e\x3a\xd5\x2d\xab\xfe\xc8\xfe\x92\x35\xb8\xe3\x33\x32\xb2\x48\x69\x7b\xcd\x64\x62\x65\xc0\x01\x38\xbe\x1c\xee\x0e\xff\xa0\x9b\x4d\xdd\x30\xb3\xac\x9e\x33\xd9\x70\x62\x7a\xd9\x2f\x7b\xd9\x6f\x1b\x4a\x16\x54\xdf\x5e\xcb\xe6\xf6\x5a\xd3\x05\x17\x6c\xc9\x6e\xaf\xb8\xe4\x5b\xb2\xa5\xeb\x8e\x59\xc3\xb7\x64\xc1\x35\x79\xca\x2d\x31\x4c\x5f\x70\xc3\x67\xb3\xb5\xea\x58\x75\x2c\x29\x39\xa3\xc3\x39\x9d\x35\xd4\xac\x17\x8a\xea\xa6\x7a\x45\xa5\x9a\xb1\x77\x1b\xa1\x34\xab\x9e\xb3\xbb\xab\x73\x66\x67\x6b\x26\x36\xd5\x1b\xaa\x9b\xdb\xeb\x6e\x66\xf8\x4a\xd6\x5c\x56\x4f\xb9\xe6\x77\x57\xe4\x0d\xdd\xe0\x27\xd5\xdb\x6a\xf7\xd7\xdb\xeb\xf6\xf6\x3a\xff\xdc\x6f\xaa\xe7\x74\x68\x94\x98\x69\xb6\xe2\xc6\x32\x5d\xed\xfe\x3e\x30\xf2\x9d\x98\x5d\xb2\x85\xe1\x96\x55\xff\xc6\x16\xc4\xfd\x61\xf8\x6c\x43\x57\xac\x42\x9c\x2c\xeb\x36\x82\x5a\x56\xdd\xfd\x83\x2e\x84\x92\x33\x41\xe5\xaa\x77\xe5\xa7\x5c\xcc\x96\x9a\x51\xcb\x6a\xc9\x2e\xab\xef\x44\x7f\x77\x65\x7b\x3d\x9f\xcf\x67\xbd\x61\xba\xde\x68\x75\xce\x05\xab\xa9\x6c\xea\x0e\xc6\xd1\x0b\x41\xe5\xed\xf5\xf2\xf6\x9a\x60\x21\x27\x17\x8c\x34\x74\x4d\xc9\x39\xdd\x0a\x6a\x6e\xaf\x01\x5b\xd6\xd4\x5c\xd6\xd4\x84\xc1\x0d\x74\x43\xe5\x97\x33\x68\x56\xd2\xae\x6c\xe9\xb8\xb9\xbd\x9e\xb1\x8e\x72\x51\x3d\xf9\xfc\x95\x32\x96\xce\x36\xd4\x98\x4b\x05\xd3\xa8\x95\xa0\x33\xcd\x6a\x3b\x6c\x58\xf5\x9a\xb5\x9a\xba\x25\xd0\x5c\xce\x96\x74\x63\x97\x6b\x5a\x7d\x83\xff\xce\x66\x9a\x6d\x94\xe1\x56\xe9\xa1\x3a\x65\x1b\x35\x53\x7a\x45\x25\xdf\x52\xcb\x95\xac\xbe\xf3\x3f\xcc\xa0\xe4\xac\xe3\x5a\x2b\x5d\xbd\xa1\xd2\xdc\x5e\x77\x74\x26\xd9\x65\xed\x6a\x57\x6f\x98\xe4\x04\x2a\xbb\x4f\x1d\x5f\x69\x37\x73\xf0\xf5\xe9\xee\x97\xdd\x7b\xff\x19\x6b\xbb\xaf\x45\x13\xe7\x4a\xb7\xf8\x79\xf7\x57\x6a\xa9\x48\x2d\x29\xbd\xc2\x82\x12\x0d\x2a\xe9\x8a\x41\x61\xfe\x5d\xb8\x7d\x48\xde\xec\x7e\x91\xcc\xce\x68\xd3\x71\x59\x6f\xa8\x64\xa2\xc2\x4f\xbc\x23\xaf\xdc\x4f\x3e\xa3\xcb\xa5\xea\xa5\xad\x0d\xb3\x96\xcb\x95\xa9\x9e\x31\x43\x37\xe4\x78\xa0\x1a\xda\x98\xc5\x02\xff\x69\x36\xa8\x3e\xae\x6b\xf5\x0a\x97\x50\xf2\x2d\x7e\x1f\x43\xdf\x5e\xcb\xdb\xeb\xed\x6c\x46\x97\x96\x5f\x70\xcb\x99\xa9\x8e\x5b\xf8\x93\x09\xa6\x67\x9b\x5e\x88\x5a\xb3\xff\xe8\x99\xb1\xa6\x3a\x75\xa7\xe5\xee\x8a\xb7\x82\xb7\xe4\xf6\x67\x63\xdd\xef\x19\x37\xa6\x67\xa6\x3a\x53\xba\x77\xc3\x9a\xcd\x96\x54\x2e\x99\xa8\x6e\x7f\xde\x58\x2a\x66\xb3\x1f\xb9\x34\x96\x0a\xf1\x76\xe6\xff\xa8\x9e\xf7\xba\x17\x7d\x37\xb3\xdc\x0a\x56\xdd\xfe\x2c\x5a\xf2\x9c\x6d\xdd\x84\x0a\x77\x20\xec\xed\xb5\xee\x28\xb9\xfd\x79\xf7\x9e\x4b\xe2\x81\x61\x0b\x75\x38\xe4\x46\x2d\x5b\xa6\x6b\x77\xd4\x98\xae\x9e\xaa\x95\x79\xd4\x93\x53\xf8\x48\xb8\xab\xd4\x30\xd2\xfa\xdd\x37\x28\x6d\xdc\xbf\x5b\xb2\xe8\x89\x71\xa7\xa5\xa1\x64\xcd\xf4\x9a\xca\x15\x87\xc3\xde\xe4\xa3\x1a\xe8\xa6\xa3\x0d\x95\x64\xf7\x8b\x5c\x32\x22\x76\x37\xf6\x9c\x49\xf2\x15\x25\x96\xea\x15\xb3\xd5\x83\x7a\x21\xa8\x6c\x1f\x90\xb5\x66\xe7\xd5\x83\x87\xe6\xc1\xd7\xed\xed\xb5\xa0\x17\xfd\xb6\xff\xea\x31\xfd\x9a\x34\xbc\x6d\xa9\x15\x7c\xc9\x88\x6a\xfb\xc1\xd1\x9d\x4f\x66\x6e\x0a\xb9\x65\x75\xb3\x40\xc2\xe4\x70\x26\x2f\x87\xb3\xff\xf9\xe2\x88\xb8\xe3\xb0\xd2\x0c\xfe\x3e\xfb\x9f\x2f\xb8\x65\xbf\x3f\x22\x2f\xcf\xce\xfe\xe7\x0b\x72\xc1\x06\x4a\x5e\xf3\xd3\x93\x47\x03\x23\x7c\x6d\xf9\x40\x77\xef\x49\xd3\x0f\x54\xcf\x67\xcd\xa2\xc6\x09\xfc\x33\xd3\xdc\xd2\x85\x1b\x65\xb6\x2f\x5c\xb1\x3b\x4f\x79\xe9\xeb\xdd\x8d\xde\xdd\xcc\xd6\xca\xd8\xea\x0c\xa8\x22\x1c\xd7\xfc\xa8\xee\x9d\xcb\x66\x51\xc3\x71\x2e\x7a\x69\xb0\x03\xbf\x02\x2f\xfc\x2c\xc1\x80\x70\x05\xc8\x9f\xbe\xfd\xf6\xbb\xd3\x13\xd2\x29\xeb\xf6\x45\x4f\x7a\x7b\xfe\xbf\xd7\x2b\x26\x99\xa6\xa2\x5e\x72\xd2\x52\x4d\x5b\xcb\x34\x31\xcc\xf2\x41\xa4\x05\x93\xf3\x99\x31\xa2\xee\x54\xc3\xaa\xb3\xb3\x17\xe4\xc4\xb5\xd7\x39\x72\x67\xd7\xd5\x1b\x25\x66\xe6\x3f\x84\x9b\x4a\xdf\xb7\x9f\x31\x72\x91\xd0\x73\xff\x91\x46\x99\x81\x92\x41\x89\x7e\x4e\xbe\x5a\xe8\xaf\x03\x8e\x6b\xbe\xed\x98\x65\x64\x41\xef\xae\x04\x6d\x6e\xaf\x6f\xaf\xf0\x0c\x34\x94\xb4\xcc\x70\x09\x75\x72\x6c\x98\xd6\x35\xeb\x36\x76\x70\xab\x07\x58\x1c\xea\x13\x6a\x2e\xd4\xdd\x15\x51\x82\x76\x74\x3b\x9f\x49\x55\xe3\xe1\x76\xf4\xb5\xe1\x86\x2e\x04\xab\x91\xb8\x6b\xa4\x59\x27\x5c\x93\x01\xcf\xfc\x92\x93\x35\x33\x74\x71\x7b\x4d\x94\xa7\xd3\xb8\x17\xdb\x8c\x92\xb6\x74\x68\xa0\x3b\xd2\xb0\x0b\xcd\x48\xe3\x4e\xcc\xed\x35\x59\xb8\x2b\xad\x75\xbd\x1a\x1c\x4f\x8e\x78\x20\x30\x7e\x65\xdf\xc4\xfe\x36\xb0\xc6\xc6\xd5\xcf\xd1\x9e\x85\x85\xc2\x0d\xf6\x94\x49\x26\xc8\x0f\xc3\xaa\x77\xe5\xd9\x1e\x73\x17\x2d\x6c\x8e\x54\xd6\x64\x9f\xc3\x1a\x9d\xf4\x9a\x0e\x94\xa8\x8c\xfe\xb9\x63\xd1\x4b\xb2\xa6\x9a\xb7\x94\x70\xd3\x71\xc9\x49\xab\x86\x5e\x7e\x02\x34\x1e\x27\xda\xd1\x56\xf2\x7c\xf7\x4b\x4b\x4e\xf9\x96\x4b\x9e\x8a\x42\xd3\xaf\x77\x37\x1d\xe9\xb7\xb4\x85\x3b\xbb\x61\x1b\x85\x94\x75\xd1\x93\xc6\x55\x61\x30\x61\xac\x81\xbb\xbe\xb5\x5c\xcf\x67\xba\x97\x35\xec\xfa\x9c\xde\x50\x47\x68\xd2\x21\x08\x30\xa1\x9b\xac\x0c\x77\x17\xdb\xb8\x31\x90\xd6\xe1\x06\x1d\xb9\xae\x2e\x18\xf1\xc4\x68\xf7\x3e\x27\x65\x03\x25\xcc\xdd\x91\xbc\x23\x7c\x2b\x39\x51\xa2\x73\xc5\x8e\x0b\x99\xcf\x1a\xd5\x51\x2e\xab\x63\x41\xa5\x3f\x57\xf0\x21\xcd\xdd\x11\x39\x3b\x7b\x46\x5a\xa1\x24\x59\xd0\xdb\x2b\x41\xa5\x75\x04\x07\x49\x37\x61\xb6\xe5\x82\x69\x77\x68\xd6\xf5\x46\x69\x5b\x39\xe8\x57\x4a\xdb\x3e\x7e\x8a\x67\xe5\xec\x59\x62\x86\x7a\x49\x5c\x59\xda\xea\x02\x88\xe5\x11\xee\x04\xdc\x4e\xb0\xa9\x29\x69\x28\xa0\xb0\xfb\x65\xcb\x84\xe0\xc0\x31\x4d\xee\x3e\x38\x2e\xbd\x61\xf5\xa2\xe7\xc2\x72\x59\x3b\x04\x1c\x1f\xc5\xdc\x4d\xaa\x05\x73\x54\x96\x24\x2c\x4c\x76\xce\x0e\xd4\xab\x37\x6a\xd3\x6f\x2a\xb7\xb8\xfc\xee\x4a\xb0\x4e\x30\x0d\xf4\x3d\x6f\x45\xba\x43\x62\x1c\xc3\xd4\xc1\x77\xaa\x5b\x4a\x36\x6e\x42\x37\x5a\xad\x34\xed\x1c\xcb\x47\x25\xa1\x83\xbe\xbd\x16\xb0\x1e\x78\xfc\x07\xc0\x78\x6d\xed\x06\xa7\xee\xd9\xeb\xd7\xaf\xfc\xdc\xc5\x8f\x61\xf2\xc2\x16\xc7\xf5\xe7\x52\xb0\x01\xd9\x47\x98\xc6\x39\x6c\xfa\x5e\x8b\x74\x14\x4e\xe2\x62\x19\x7f\x26\x7a\x2d\xf2\x65\x75\xbd\x3d\x76\xff\x3b\x3b\xb8\xba\x17\x8c\xb0\xcf\x37\x8e\x5f\x6a\x68\xcb\xc9\x82\x6e\x1d\x09\x80\x16\xf1\x2e\x4c\xeb\x2f\xd4\xaa\xd6\x4a\x59\x3c\x39\x4f\x77\x37\x52\xec\x6e\x5a\x72\xea\xe8\xa0\xe7\x36\x94\xe8\x4b\xb0\x78\x85\x06\xe8\x26\x42\x23\x41\x73\xfd\x09\xba\xa4\x8e\x48\xe2\x3e\x9f\xcf\x98\x04\x2a\xb6\x54\xd2\x28\xc1\x90\x50\x3f\x87\x1f\xe4\xa5\x6a\x1c\xad\x7f\x62\x5b\x37\x3f\x77\x57\x96\xeb\x29\x70\xbf\xa8\x80\x1a\xe9\x5c\x1d\x4a\x58\xeb\xa8\x8f\xa6\x2d\x39\xc2\x75\x5a\x52\xd2\x42\x9d\x5e\x92\x95\xc7\x0f\x16\x9f\x3b\xb4\xf0\xec\xcc\xd4\xc6\x11\xd1\x48\xa8\x3c\x4f\xc2\x70\xee\xd3\x75\x88\xac\xa7\x07\xf2\x0c\x28\x39\x43\x06\x3f\x67\xa5\x3a\xbb\xa9\xf1\x72\x7c\xf9\xfa\x15\x39\xf3\xdb\x0b\xbf\x9f\x6b\xd5\x55\xcf\x79\xd7\x30\x99\x3e\x84\x09\xfc\xfe\x8f\xdf\x90\x7f\xfd\xfd\xef\x7e\x47\x8c\xa5\xb2\x01\xee\x5f\x52\xd2\x0f\x2b\x38\x65\xae\xb7\x07\x2d\x54\x7d\x40\x68\xa3\xdd\x35\xc3\xb7\x73\x72\xe2\x38\x92\x86\x2d\x19\xf0\x21\x7e\xa1\x3d\x00\xde\xfd\x0f\x6e\x7f\x36\xbc\x7b\x40\xbe\xe2\x86\x77\xff\x07\x15\x54\xd2\x86\xcf\x97\xaa\xfb\x9a\x2c\xf0\x5e\x74\x67\xc1\xd5\x86\x5a\x6e\x0a\x17\x5c\x38\x2a\xe7\x06\xcc\x34\x12\xba\xa7\xbb\x5f\x64\xc3\x34\x93\xe4\x09\xf6\x11\x4a\xe3\x8d\x90\x20\x5e\x85\x1b\x21\xca\x20\x6e\xe9\xce\xb9\xee\x9c\x6c\x72\x7b\x6d\xc9\x77\x12\xce\xcd\xed\x75\xb9\xce\x30\xc3\x52\x59\x7e\x3e\xc4\x29\x3e\xe1\xa2\xe1\x9a\x77\x7e\xdd\x0a\x78\x7f\xbe\x41\xcc\x5a\x32\xbf\x36\x38\xe5\x6e\xdb\x9f\xf2\xdb\x2b\xa6\xfd\x22\x65\x6b\xa4\xce\xcf\x05\x97\x7e\xdb\xed\xfe\xca\x2e\x34\xef\xc8\xa9\x27\x43\x6e\xff\x95\xbd\xe4\xe0\x7e\xdb\x7d\x73\xfa\xed\x23\x7e\x44\x76\x37\x1a\xf8\x6c\xd8\x7f\x4e\x32\xe4\x82\x4d\x52\xb5\x23\x62\xdd\x25\xd3\xd2\x41\xd2\xfc\x84\x90\x81\x69\x26\xc2\xae\x75\xb4\xc8\x9d\x94\xd6\x22\x55\xf7\x77\xfd\x4a\xd3\x0b\x6a\xa9\xae\x9e\xfa\x3f\xc2\xb6\x03\x19\xc4\x75\x16\x70\x3f\x81\xce\xf6\x2a\x06\x02\x18\xaa\x5f\x30\xa4\xc3\x1e\x1f\xc4\x64\x0a\xed\x39\x81\xbb\x11\xab\x09\xaa\x73\x2e\xc2\xfd\xb4\x54\xd3\x73\x4f\x18\x07\x38\x5b\x92\x6b\xdc\x75\x17\x54\x1b\xb7\xc6\x8e\x82\xb6\xee\xa6\xd2\xf3\xd9\x39\x6b\x98\x13\x94\x9a\xda\xe3\x25\x94\x6a\xfb\x8d\xe3\x5f\xdc\x5c\x77\x4e\x04\x7c\xee\xee\x38\x72\xc6\xbb\x95\xdb\xc0\xc7\x9a\x76\xd4\x4c\xec\x94\x03\x4d\xf9\x91\xbe\xe0\x0b\x3f\xd6\x47\xee\xe6\x19\x5c\xff\x6e\x87\xc7\x5e\xe8\xee\xfd\xed\x75\x1b\xc6\x7f\x7b\xed\x59\x3a\xee\x07\xd8\xd1\xd6\xb3\xa0\x45\xa5\x38\x0d\x34\x43\x8b\x65\x68\x39\xd2\x36\xc9\xa1\xa1\x12\x01\xfe\x2f\x19\x41\x01\xbd\x73\xd3\x73\xff\x02\xe6\x6d\xf8\xa1\x8d\xb9\x88\x16\x5a\x6e\x7d\xcb\xad\x6f\xd9\x1c\x66\xef\x8e\xc8\x40\x85\x63\xee\x96\x34\x63\x1a\x07\x27\x74\x3a\xce\x71\xe3\xc6\x17\x58\xc7\x40\x08\x02\xfd\x2d\x25\xe9\x47\xc3\x78\x55\x4a\xb8\x5f\x8b\xb1\x9f\x72\x5f\x9b\x34\xea\xf6\x4a\xc3\x35\xe8\xca\x56\x4c\xb3\xd6\xb8\x09\x06\x39\x48\xb3\xda\x2b\x46\xea\x0b\xce\x2e\x51\x87\x81\x1b\xf9\xe9\xee\x17\xbd\xbb\x91\x76\x77\xe3\xae\xd7\x05\x17\x1d\x6b\x83\x20\x98\x94\x28\x38\xfb\x2f\xd9\x72\xd1\x6b\xf2\xfc\xf6\x5a\x4c\xb6\xeb\x87\xf0\x26\xce\xd8\x2a\x2a\x2a\x3a\xd0\xbb\x8c\x0e\x84\x49\x68\xac\xc6\x68\x70\x7d\x44\xb6\x7c\xa0\x9a\xd9\xdd\x7b\x47\x3a\xb3\x85\x48\xcd\x3e\xc6\x09\xc9\x5a\x92\xd3\x8d\xcd\xbd\xc8\xef\xa5\x71\x94\x09\xef\xfe\xd1\x13\x2a\xfd\x44\xde\x27\x12\xb4\x64\xeb\x64\xaa\x86\xa2\xe8\x2a\xe0\x36\x39\x22\x5c\xb4\x85\xa4\xa0\xac\xea\xa8\xe5\xf1\x5e\xcd\x37\x0c\x32\x0d\x6e\x0d\x0d\x5d\xf3\x8d\x03\x89\xa4\x0b\x51\x43\x7a\x9c\x24\x85\x67\x1e\x8d\x8c\xf9\x07\xb8\x69\x55\xcf\x48\xe0\xf0\xa2\xa4\xbf\x48\xc6\xdf\xe1\x28\xf9\x0d\xe3\x6b\xa2\xaa\x28\xf5\xee\x2f\x14\x77\x2d\x79\x25\x42\xbd\x52\x2b\x13\x64\xff\xe7\xbd\x9e\x59\x66\x6c\xbd\xe2\xb6\x3e\x77\x77\x5b\x53\x3d\x5a\x71\xfb\x88\xb4\xaa\xeb\x2d\x71\x65\x1c\x78\x3e\x87\xb9\xb9\xbd\xde\x7e\x49\x1e\x5e\x78\x49\xf2\xf7\xee\xd6\x72\xa4\x88\x0b\x77\x02\xaa\x37\x70\xbd\x11\x03\xb2\x72\xb7\xbb\x91\xbb\x9b\x6d\x10\xcc\x1f\xed\x6e\x48\xc3\x8c\x65\xad\x60\x1d\x07\x76\x39\xa8\x08\x1e\x9a\x47\x0d\x93\x44\x33\xd3\xf1\x54\x99\x7c\xba\x52\x8e\xab\x6d\x8a\xf6\xc8\xe9\x93\xdb\x7f\xdc\xfe\xfc\xe2\x33\xc2\x65\x83\xa4\x87\xcb\x0b\x2a\x78\xe3\x64\x4c\xbf\x2b\x0a\x89\x9b\x86\x69\x27\x2b\xb6\x7b\xcf\xb4\xe1\x38\x84\x50\x6d\x24\x33\x65\x72\xc9\xa8\x42\x94\x6c\xdc\xa0\x3b\x6a\x97\xeb\x6a\xa4\x77\xc9\xf6\x90\x89\xfd\x09\x5e\xec\x2d\xdc\x78\x5f\x92\x87\x86\x7c\xfe\x35\x79\x68\x12\xeb\x54\x77\xdc\x18\xb7\xa7\x51\x16\x71\x7c\x14\x95\x94\x74\xb4\x75\xbb\xcd\x33\x3f\x0d\x03\x66\x36\xb0\xbb\x44\xaa\x16\x16\x97\x38\x32\xd1\xa6\xc9\x48\x8c\x17\x34\x74\xae\x74\x47\x28\x20\x91\xd0\x8a\xa8\x5c\xcc\x0c\xbd\x60\xc8\xad\xac\xc2\x2e\x78\x43\x37\x70\x8f\x35\x7e\x6c\x41\x18\xec\x58\xc3\xfd\x04\xa6\x2d\x13\x59\x77\x94\x0e\x80\x11\xef\x68\x73\x7b\x5d\x4c\x75\x71\x74\xb3\x3d\x0a\x14\xf8\x9e\x85\xc2\x6d\x6b\xfa\xe5\x92\x19\x53\xbd\x64\x7a\x4d\x17\xf4\x93\x20\x31\x5a\xa6\x97\x7c\x4d\x5c\xab\x5e\x25\x8d\x84\x60\xf7\x5e\xb5\xa4\xeb\xad\xe8\x87\x7e\x7b\x44\x5a\x36\x9c\xbb\x45\x85\x3b\x10\x28\xcc\x27\x11\xb1\x03\x12\xc0\xe1\xbd\x30\xfb\x71\xad\x3a\xf6\x76\xd6\xa3\xb0\xae\x44\x53\x8a\xba\x70\x96\x91\x25\x18\x6b\x6d\x03\xb4\x3f\xd9\xe6\x92\xdb\xe5\xba\x8e\xba\x71\xb7\x0a\x96\xbd\xb3\xa0\x23\x1f\x28\x79\xca\x76\xef\x83\x06\xbc\x1b\x60\xb7\x1a\xd8\xa9\x30\x55\xdd\xcc\xac\xd5\x25\xe8\x9f\x43\x51\x54\x37\x83\xa8\xed\x68\xa8\x63\x45\xe7\xf3\xf9\x6c\xa9\x84\xa0\x0b\xe5\x2e\xd6\x8b\x00\xfe\x9c\xda\xf6\xf6\x7a\xa0\xe4\x18\x79\x03\xdf\xb2\xeb\x4a\xe9\x95\xd9\xd7\xbc\x76\xae\x08\x75\xbc\xc6\xab\x88\xfd\x77\xb8\x39\x40\xe5\xff\xd0\x14\xd7\xd1\xcc\x2b\x3a\xe7\x5c\xd6\xa0\x4a\x1d\x0d\x02\x75\x48\xb3\xd9\x8f\xfe\x45\xe0\xed\xac\x00\x00\x45\x9b\xc9\x67\xd7\x7d\xcc\xd5\xd7\x7b\x68\xce\x0c\xa3\x7a\xb9\xae\x8e\xb5\x6b\x96\xf6\x76\xfd\x36\xd3\xe5\xd7\x5e\x33\x8c\x3a\x67\xd4\x0a\x07\xf5\x7e\xe2\xdd\xd7\x6c\xe3\x18\xfd\xce\xac\x40\xd3\xe4\x2f\x13\xd0\x87\x5e\x50\x4d\xba\xdb\xeb\x3f\x90\xbb\x7f\xf0\xae\xe1\xd9\x3d\x06\xbb\xca\xa8\x25\xa7\xa2\x9e\x6a\xe9\xdf\xa9\x65\xc0\x5e\xdd\xdb\x9e\x3f\xdf\xd0\x58\xc9\x14\xe1\xbb\x43\xb7\xb1\xd5\xee\xef\xdb\x15\x52\xd8\xa3\xc8\x4d\x1c\x50\x2d\x88\xe6\xf6\x7a\x4e\x82\x1a\xcf\x70\xcb\xd2\x8d\x66\x40\x83\xc8\xb5\xe5\x0b\x6a\x29\xec\xf2\x7d\x76\xce\x21\xef\x6e\x95\x51\x9f\x4e\xa4\x49\xec\x4a\x90\xc2\xcc\x01\x0e\xcc\xe3\x31\x73\xab\x51\x1b\xd5\xeb\x25\xab\xde\xe0\x75\xea\x28\x79\x07\x0c\xa2\x04\x79\x79\x26\xd4\x92\x8a\xea\x8d\x93\x12\x66\x9a\x75\xac\x5b\x38\x14\x58\x75\x02\x0b\xe6\xc8\x8b\x16\x74\x76\xae\xf4\x0a\xce\x6c\x71\x27\x76\xb7\xd7\xe4\x07\xd9\x5b\xdb\x77\x00\xc1\xf6\x20\xdc\x9c\xdf\x5e\xbb\x19\x27\x3d\x00\xca\x7e\xfb\x87\xf0\x8e\x54\x4b\x75\x99\x16\x9c\x02\x14\xea\x8f\x97\x69\xb5\xe2\x4a\xe1\xcc\xf7\x72\x1e\x6e\x68\x64\x5a\x41\xa2\x33\x4c\xda\xb0\x5a\x5f\x2d\xbe\x7e\x68\xbe\x7a\xbc\xf8\x3a\x09\xb1\x0c\xb9\x4f\xd0\xa3\x4f\x4e\xe2\x0a\x25\x4b\x27\x08\x66\x4b\xec\x6e\xe2\x2e\xb1\x48\x96\x76\xb4\x73\x35\x03\xeb\x1e\x2f\xd5\x86\x18\x4a\x6d\xd4\xea\x97\x32\xb2\xe4\x5b\x4e\x5a\x25\xad\x56\x82\xb0\xc6\x2d\x39\xbc\x63\x30\x3c\xa0\xe1\x80\x3c\x4b\x9b\xd4\xd1\xb4\xd6\xf2\xf3\xc8\xf3\xcf\x36\x5a\xad\xf9\x82\x5b\x47\x3d\xb9\xac\xbe\xb3\xbd\xee\x3b\x94\x31\x3c\x67\x3b\x50\x43\xdb\x11\x1c\x72\x6c\x59\xc3\x82\x12\x15\xab\x76\xf8\xe0\x00\x15\x9d\x44\xe2\x76\x50\x62\x14\xc6\x5b\x97\x38\xc1\x93\x0b\x66\x41\x43\xc8\xe2\xee\xd5\x0c\xe6\x5e\xf0\x8e\xdb\xa9\xf3\xb2\x8d\xa7\x70\x7a\xe6\x2d\x15\x6c\x03\x17\x0a\x28\x1b\xc2\xc9\xf9\x3d\x69\x68\xcb\x5b\x4a\x16\x8e\x89\x19\xf8\x86\x58\x7c\x71\x6b\x98\x64\x83\xeb\x78\x4d\x4d\xdd\x4b\xbf\x15\x58\x83\xa7\xc6\xdf\x57\xe4\xa1\x39\x8a\xfd\xc9\x8e\x22\x27\xbd\xaf\xbe\x90\x40\x0e\x3e\x8d\x3b\xe6\xb3\x39\x39\x39\x88\x29\x15\x70\xcb\x0e\x26\xcc\x1b\x69\x28\xec\x2b\xe3\x78\x86\xbd\x7d\x6b\x68\x9c\x4b\xb7\x8f\xdc\x59\x03\xed\x58\xb3\xbb\xb9\xbd\xea\xd8\xc0\x88\xbd\xbd\x6e\x83\x76\x0f\xa6\xd1\x0f\xe2\x74\xaa\x7b\xd8\x80\x38\x05\x0e\x91\x28\x3d\xa2\xd2\x3a\x35\x35\x83\x76\x5c\x73\x16\x5b\xc3\x73\x48\xcc\xed\xf5\x39\x1c\xe5\xbd\x56\x3f\x75\x63\x68\x98\xfc\x2c\x9c\x02\x27\xcd\x1c\x6a\x1d\x1b\x9e\x3e\xe4\x67\xa1\x0b\x80\x0c\xf7\xfd\x12\x54\x20\xd9\x8e\xc8\x66\xb7\x05\x4d\xdc\x36\x5d\xf8\x78\x8d\x3b\x26\xd4\xc9\xe6\xee\x14\xf6\x77\x57\xf3\x51\xaf\x41\x9d\x55\x74\x9e\x8d\xef\x30\xf6\xb1\x05\xab\x54\x6d\xd6\x8e\xf7\xf3\xd3\xd3\x6f\x7b\x29\xfa\xdb\xab\x9e\xfc\xf7\xf8\xe8\xe3\x18\x65\xba\xcd\x5e\x49\x64\x0d\xc4\x32\xbb\xd3\x50\xb5\xd2\xd1\x81\xca\x28\xdb\x3a\xb6\xfc\xee\x8a\x9f\x6b\xe6\x15\x4a\xf0\x8c\x46\xb5\xdb\x1c\x02\x5f\x72\x06\x41\xc3\x83\x9e\xe5\x8e\xe8\x6e\x51\xd7\x36\x9b\xe1\xb9\xb5\x97\xaa\x3e\xa7\x4b\xab\x74\x75\xfb\x73\xcb\x03\x21\x72\xd4\x3e\x4e\xde\x1e\x28\xcc\x0f\xcc\xf6\x73\xde\x09\xde\xe6\x13\x7d\xf7\x0f\x87\x0f\xcc\xf7\x7e\x3d\x26\xdd\xad\xa3\xd9\x52\x5d\x30\x3d\xe0\x82\x41\xb7\xe7\xb4\xb5\xbb\x5f\xb4\xd8\xdd\x90\xb6\xd7\x96\x6a\xbf\x64\x70\x09\xcb\xfd\x86\x42\x13\x7b\xb5\x9f\xfb\xda\x87\xab\x60\xaf\xcf\xf3\x5e\x0e\x21\x1a\x87\x39\xee\x05\x27\xfd\x5e\x0c\x93\x20\x72\xb0\xdb\xf4\xd2\x80\x54\x03\x76\xe4\x88\x8f\x9f\xcf\x66\x3f\xba\xc3\xf5\x16\x29\xb9\xe3\x75\xc2\x9e\x88\x2f\x78\x05\x39\xa7\x25\x39\x8f\xb5\x82\xb1\xc1\xde\x7d\x11\xd6\xee\x83\x87\xce\x14\x87\x2e\xf2\x10\x81\x81\xf7\xda\xd0\x20\x54\x8a\xdb\xeb\x23\xb2\x56\x77\x57\x2b\x26\x1a\x78\x6f\x8f\x35\xbc\x52\xf4\x59\x5e\x38\xfb\xb1\x53\x0d\x15\x6f\x67\x03\x33\xd5\x93\x0b\x66\x67\x52\x55\xcf\x5c\x93\x7a\xd6\xa9\xc6\xc1\x9f\xee\x6e\xb6\x4c\x3a\xc6\xf3\x47\x27\xf8\xbc\x9d\xfd\x60\x98\xfe\x76\x52\xdc\xfe\x9e\x6d\x14\x94\x80\xf0\xe7\x68\xe9\xec\xc9\xc4\xf8\x67\xaf\x46\x02\xf9\xf7\x0c\x9e\x88\x93\x18\xee\x09\x16\x2a\xfe\xe5\xec\xec\xec\xd9\x6b\xd4\xcb\x9e\x3d\x73\x62\xdc\xda\xc6\xa7\x01\xe8\xe4\x99\xb5\x1b\xf3\x83\x16\x15\xbe\x62\x94\x2f\x1e\xaf\xe8\x20\x14\x6d\x5c\xf1\x1b\x27\x87\x94\xa5\xaf\x19\xed\x00\xe5\xd7\x8e\xa9\xea\xe0\x09\x70\x76\xdc\xdb\x35\x7c\x2c\x59\x2a\xe8\xeb\xd8\x89\x5d\x4f\x46\x7a\x81\x44\x6f\x67\xb3\x6f\xd9\xe5\x89\xa6\x72\x19\x5a\x70\x6c\xc9\xee\x17\x01\x4a\x50\xd7\xc0\x37\xaa\xeb\xb8\x3d\xeb\xbb\x8e\xc2\x41\x82\xe7\x24\xd4\xa6\x5a\xee\x4b\x5f\x32\x63\xe8\x8a\xa5\xd2\x8e\x19\xfa\x97\x58\xf9\x9b\xb5\xe2\xcb\xac\x14\x85\x36\x3e\x7b\xad\x19\xc3\xf9\x8f\xaf\xce\xb3\x6f\x9c\x04\x24\x6d\x75\xfb\xb3\xdb\xe0\xbc\x9d\x45\x25\x15\x03\xd3\x92\x9f\x8a\x27\xd7\x9f\x66\x54\x6c\xd6\x14\x24\xa8\x08\x90\x44\x6f\x4f\x37\x8f\x08\xe8\x65\x0d\x15\x78\x78\x1c\x89\xfb\xf4\xf3\xfa\xb3\xf0\xa2\x58\x36\xd3\x28\xfb\x31\x4d\x1d\xa5\x66\xa0\x51\x10\xc6\x0f\xb7\x68\xc4\x24\x8a\x54\x9c\x53\x7f\xc7\x14\x28\x3a\xf2\xbf\x7b\xcf\xb7\x2b\x3e\xee\x21\x60\x22\x98\x57\x3b\x3b\x02\xb0\x25\x08\x5c\xbc\x91\xfe\x34\x33\x7c\x9b\xe6\x0d\x6f\x94\x96\x30\xe9\x45\xc4\x87\x66\x04\x0e\x02\x7a\x5e\x05\xef\x9b\x87\x26\x99\x1d\x70\x87\x77\xc7\x04\x6f\x38\xd4\xa0\xef\xf6\x6a\xc4\xc6\x0f\x55\xc2\x57\x25\xac\xf1\x28\x4d\xc5\xc4\x63\x8e\x27\x6e\x8f\x66\xbd\x16\xfb\x73\xe7\x2a\x64\xda\x10\x0f\xfc\xd3\x8c\xcb\xa5\xe8\x9b\x84\xd3\xa3\x87\xe6\xd1\x18\x87\x5e\xb6\x52\x5d\x4a\x0f\x73\xc2\x05\x97\x8e\x05\x92\x64\x4d\x2d\xfd\x32\x18\x50\xd5\x5c\x2e\x95\xd6\x6c\x69\x83\x02\x98\x30\xb7\x87\xef\xae\x3a\xd6\xf0\x79\xba\xbe\x93\x56\xc8\x5f\xdf\x17\xcc\x1b\x09\xe4\x97\x1e\x1d\x64\xc2\x33\x99\x7c\xd5\x0b\xc6\x64\x6d\x69\xcb\x64\x75\xd2\x17\x0a\x23\x77\x02\x3d\xc7\xea\xd6\x09\x79\xe2\x39\xbe\xe7\x4f\x54\x6d\x02\x1d\x9b\xa8\xa3\xf4\x6a\xaa\x4a\x6e\x5d\x70\xa8\xaa\x65\xb4\x9b\xaa\x6b\x91\x06\x1d\xa8\x85\xcb\x0c\x35\x7a\xc3\x1a\x57\x61\xb4\xbc\x58\x27\x8c\xb7\x6b\xe8\x3c\xcd\x49\x9c\xda\xb4\x04\xcf\xc7\x13\x03\xdb\xdf\x4f\xb3\x5b\x37\x31\x12\x31\xeb\x8e\x1b\x5c\x95\x33\x06\xfa\x67\x49\xda\x3d\x4e\xa4\x0d\x82\x67\x31\xf1\x28\x5c\xf0\xbb\xab\x96\x67\x97\x2c\xdc\xf7\x1a\x4c\xf8\x32\xfd\x21\xe8\x72\xc3\x35\xbb\xe2\xba\x09\xaa\x28\x58\x0e\x34\xd2\x90\xbe\x4b\xa2\x44\xe3\xb8\x3a\x78\x3f\x62\x1d\x97\x04\x25\xc8\xbd\x96\xd5\xa5\x74\x77\xe0\xbd\x4d\x1b\xea\x64\xab\xdf\xda\x43\xbc\xbe\xa7\xda\xdf\x84\x2b\xfd\x43\xcd\x46\xa5\x28\x7b\xc7\x8d\xad\x4e\x98\xe0\xda\xe2\x54\x67\xd3\xb9\xe8\x45\x2f\x51\x29\x38\x9f\x09\x6a\x6c\xed\xb6\x23\x8c\x11\xe4\x6d\xbf\x93\xe0\x90\x72\x83\xaf\xb3\x61\x7f\x81\x56\x19\x47\xea\x50\xf2\x44\xc9\x1d\xfe\x16\x1e\xce\xa0\xed\xcc\x32\x24\xa9\x41\xcd\xba\x6e\xd9\x50\xf0\xfa\xe3\x1b\x79\x9b\xb1\xb0\x03\x22\xd8\x7e\x49\x1e\x9a\x59\x8f\xef\x3a\x17\x4c\xf3\xf3\x21\x36\xe5\x38\xe7\x0f\x36\x02\x06\x21\x73\xf2\x47\xda\x52\x3b\x86\xdb\x9b\xce\xde\xc9\x5f\x77\x57\x80\xdf\xa0\x74\x9f\x89\x9c\x5e\xba\x1a\x49\xea\x6e\x7b\x7b\xc5\xeb\x1e\x5b\x0d\x16\x49\x99\xba\x1e\x7a\x41\x9d\xa5\xb1\x5c\x08\x37\xe3\x68\xcd\x99\xc9\xe0\x14\x89\x28\x3e\x17\xe2\xc6\xba\xa0\x7a\x4e\x76\x7f\x93\x4b\x26\x78\x2b\x60\x2d\xdc\xf7\xa1\x27\x86\x8b\x8e\xb9\x0d\x82\xd2\xa6\xeb\xcc\xc9\xc4\x1c\x1e\x45\xac\xa6\xd2\x9c\x33\x4d\x98\x45\x20\x78\xc1\xe2\x6e\x36\x7c\xff\x4e\x46\x56\x7a\x95\x77\x4f\xee\xae\xe0\x01\xc7\x75\x5e\x9a\x3a\x91\xdd\xcd\xc0\x0c\x1f\x63\x92\x03\x81\xc9\xe1\xfb\xdb\xeb\xb6\xcb\x65\x60\x57\xcf\x1b\xdc\x6c\x79\x42\x39\xc3\xc6\xed\xbe\xd1\x8c\x8c\x69\xe1\x9a\x0a\xea\x2d\x47\xa2\x7d\x54\xdc\x88\x4d\xaf\xfb\xce\x9d\x85\x11\x72\xde\x40\xf5\x37\xcf\xd2\x0c\xcd\x25\xeb\x05\x70\x64\xd9\xb9\x7a\xc6\x1a\x76\x4e\x1a\x2a\x48\xc7\x2e\x96\xbd\xcd\xf8\x7e\x77\x02\xdf\xce\x96\x6b\x2a\x57\xcc\x3f\x0d\x7b\xfb\x55\x7c\x55\x91\x3c\x13\xed\x66\x7f\x51\x5c\xd6\x4a\x56\x77\xff\xe8\xa5\x23\x7e\x16\x55\x73\x60\xce\x1a\xad\x84\x39\x4b\x0a\x58\x6f\xe2\x3a\x78\x73\xb6\x60\xe6\x3a\x3b\x57\x42\xa8\x4b\xa6\x8d\x63\x45\xf9\x06\xdf\xf7\x66\xc6\x52\x47\x64\xaa\x37\xd8\xec\x36\xe8\x71\xa2\x6e\x19\xab\x71\xb9\xc2\x6a\xe4\x49\xe3\x88\x85\xab\x8a\x25\xe1\xb3\x9d\xf5\x32\xfb\xb2\xe0\xe1\xa1\x78\xe6\xb8\xfa\x39\xdc\x11\x4e\x0c\xd1\x17\xee\x20\x8c\x6f\x06\xb8\xf2\xcb\x69\xf7\x56\x4c\x78\x37\xa5\x36\x36\xd4\x5a\xa6\x25\x3e\x66\xc1\x88\xf6\x9b\x93\x0d\xc5\x16\x3b\xd5\x30\x01\xca\x95\x2d\x97\x60\xc7\x28\x3a\xe6\xa4\xe4\x1f\x83\x81\xf0\xdb\x59\x69\x42\xbc\x67\x17\xea\x17\xe8\x18\xfe\x99\x79\xba\x62\x40\x52\x38\x46\x52\x11\xec\x93\x97\xbd\x86\x69\xdf\xdd\x5c\x30\x29\x78\x3b\x52\x8c\x4f\x69\xe8\x67\x74\xb3\x11\x7c\xe9\xf5\xe2\xe1\x5d\xc6\x15\x34\x4c\x30\xcb\xc2\xb9\x23\x67\x5c\xcc\x66\x9b\x7e\x21\xf8\x32\xda\x3c\x3f\x63\xba\x65\x86\x85\xc7\x80\x80\xbf\xb7\x74\x07\xcd\xdd\x9e\x5c\x48\xd6\xbe\x12\x5a\x17\xd8\xdb\x6b\x30\xb5\x58\x17\x1a\x3e\x2e\x56\x1c\xd8\x35\xf7\xaf\x17\x4e\x04\xd3\x0d\x58\xfe\x5d\xb2\x05\x81\xd7\x3a\x47\x80\xd4\x86\xe9\x30\x96\x26\x3d\xa9\x65\xaf\xac\x91\x2d\x88\x8c\x82\xd7\x56\x37\x23\xe5\xc7\xe8\x95\xda\xbf\xc0\x17\x0b\x1b\xf5\xa8\xa5\xe6\x03\xcc\xc2\xce\x7b\x21\xf0\xf6\x3d\x6e\xc8\x99\x1a\x68\x53\xf8\x12\x9c\xa1\x2f\x81\x50\x4b\x6f\xec\xa0\x64\xdf\xcd\xfa\x4d\xe3\x64\xe8\x91\x11\x39\x79\xba\xbb\x71\x24\x42\xb0\x11\x40\x94\x89\x93\xb5\x79\xa4\xde\x83\xa0\x60\xbe\x05\xf5\xa4\xe3\x35\xfd\x01\x3f\xe8\x27\x00\xf4\xef\x34\x8e\x84\x8b\x86\x8f\xeb\x04\x75\x28\x70\x8a\xc9\x7a\xfb\x68\x6f\xbd\x02\xdf\x03\xf7\xed\xc8\xbe\xce\x9b\xce\x0d\xd1\x30\x74\xa9\xa4\xe5\xb2\x77\x52\xf4\x05\xed\xdc\xc9\x1d\x59\xb2\x7b\x3b\x15\x6f\xb5\xb2\x18\xea\x5c\xc6\x1e\x28\xbc\xf4\x33\x82\x27\x02\xcd\x5f\x3e\xca\x6c\x26\xaf\xe0\x24\xd9\x60\x89\xd1\x1b\xab\xba\x40\x08\x77\x7f\xdb\x3a\xa2\x05\x3f\xc6\xa6\x1b\xcb\xb5\x52\xc6\x3f\x0a\x21\x34\x48\xbf\xc7\xc1\xe0\x68\xf7\x3e\x2c\x58\x71\x68\x49\xee\x03\x90\x2d\x2e\x1e\xb1\x7a\xd9\x6b\xcd\xa4\x0d\x75\x7c\x79\x42\xc1\x1d\xbd\x7e\xe3\x44\xfc\x34\x3a\x20\x3e\x35\xef\x9c\x0c\xfd\x06\x8d\x8a\x58\xb0\xc5\x76\xf7\xa2\x3b\x6d\x1d\xfe\x36\x99\x04\x51\x60\x17\x77\x93\xc7\x92\xe6\x9e\x0a\xf7\xec\xab\xb0\x49\xa6\xac\x0b\xd2\xb5\xa1\x44\xc6\x30\xbe\xc4\x2b\xc8\x53\x34\x37\x7f\xc9\x46\xda\xcd\x60\x74\x4d\xb1\xc3\x06\xe7\xb7\x2c\xdf\xc4\x1e\x3c\x8b\xe3\xf5\x26\x13\x3c\x7f\x98\xbe\x31\x97\x3f\x42\x3a\x1d\xa5\xa8\x8a\x2a\x86\xdc\x14\xe7\x62\x4e\x32\x34\x3c\xff\x86\xa4\x01\x2c\x3e\xd2\x8b\x1e\x1a\x03\x79\x55\x68\xec\xcb\xf7\xfd\x6b\x08\x0f\x76\x75\x1f\xc1\x41\x71\xc9\x44\x1b\xc0\x63\x47\x62\x05\xd3\x3c\xb8\xc2\x1c\x2a\x97\x3c\xf8\xc3\xa0\xc0\x05\x84\xfa\xc4\xdd\x79\x4b\x2e\xf6\x5f\x7e\xf6\xc8\x30\xb8\x29\xa1\xd5\x60\x34\x15\xf6\xfa\xea\x29\xfa\xab\x39\xe8\x81\x42\x07\xe1\x83\x57\x1c\xc6\x7e\x07\xba\x09\x07\x02\x4b\xdc\xb6\x0f\x08\x0a\x06\x44\x33\x5a\x94\xba\x5b\x74\x54\xe8\x87\x31\x16\x19\x25\xb0\x73\x4c\x1b\x86\x97\x4f\xc6\xc4\x7a\xaa\x25\xd1\xec\xd0\x8f\x52\x7b\x61\xc9\xd5\xe2\x32\x90\x2c\x82\x94\xca\xf1\x5f\x2d\xe1\xc6\x3a\xde\x8b\x74\xbd\xc1\xb7\xc0\x11\x22\x61\x67\x95\x77\x5f\xb1\xbb\xa0\xf1\x86\x7f\x32\xa3\x4d\x03\xdb\xdd\xdb\xe1\xb8\x4d\x36\x12\x79\x59\x2b\x18\x80\x95\x8a\xd6\xf2\x73\x5d\xbc\x27\x1a\x26\x6d\x05\xec\x87\x9f\x83\x5f\xf3\x78\x38\x27\xd9\xe3\xcd\x6f\x7d\x3e\x5c\x31\x94\xe7\xe0\xb1\xb4\x1f\x0b\x24\x11\xeb\x30\x53\x13\xe3\x1e\x5f\x6d\x6e\xbc\x48\x7d\xfc\xee\x3e\xc8\x08\xc9\xdc\xdf\xab\x01\x21\xcc\x17\x93\x27\x6e\xd2\x5c\x45\xbf\x57\x8e\x26\x36\x04\x9c\x78\xb8\x2e\x32\xa1\x4d\xe4\xf2\x98\xe0\xc6\xb2\xc6\xed\x8a\x93\xbe\x00\x88\x86\x91\x68\xf8\x65\xfc\x75\x88\x1c\x4f\x26\x13\x40\x67\xe0\xa8\x10\x4c\xde\x1a\xa4\x6e\x06\xc7\xba\xe8\x51\x50\x75\xbb\x91\x58\xef\x5c\x05\xe4\x02\xc8\x94\x51\x92\x34\x4c\xb3\x25\x23\x6e\x98\x1d\x6a\xa8\x60\x5c\xfe\x59\xe9\x2b\x63\xb5\x92\xab\xaf\xbf\x75\x8b\x2b\xd0\xd2\x20\x58\x97\x4b\x10\xdb\x44\x57\x6c\xe1\xaf\x1e\xfb\x1a\xe4\x29\xb7\xcf\xfa\xc5\x23\x37\xce\xaf\x68\xee\x7b\x05\x54\x69\x4a\x8e\x4d\xf6\x72\xe0\x96\x15\x9d\xb4\x64\x4f\xb8\xa3\xc4\x6c\x00\xce\x77\x40\xdf\x86\x40\x21\x74\xeb\x36\x08\xd5\x77\x57\x0e\xfe\xee\xaa\xf4\x12\x2d\xba\x5e\x81\x18\xb1\xd1\x6a\xe1\xdd\x12\xa0\x9f\xdd\xfb\xdd\x2f\xdb\xdd\x8d\xdf\x4f\xee\x0c\xb9\x95\xce\x36\x83\xbb\xbc\xc3\x7a\xb7\x6c\xc8\xf4\x4a\x28\x97\xf8\x71\x78\x15\xc2\xed\x15\x2f\xf5\x4a\xa1\x1a\xb0\x41\xfb\xd5\x8e\xbc\x6e\x8e\x1b\xde\x65\x4e\x55\x50\x35\x54\x8b\xfb\xee\xf6\x67\xd3\x71\xf8\xbc\x1c\x2b\xab\xfd\x16\x2d\x8f\x42\x31\xcd\x49\x34\x19\x9d\x85\x4f\x02\xbd\x84\x81\x73\x11\x51\x8e\xf4\xb2\x9c\x0d\xa4\x9a\x63\xa0\x48\x37\xc7\x6b\xfb\x91\x74\xd3\x3b\xdc\xb8\x3b\xa0\x61\xa4\xa5\x4e\x88\xd3\xf9\x0d\x70\x3f\xed\xdc\x43\x27\x4c\x44\x39\x07\x07\x89\xa7\xbb\x15\x70\x3a\xdc\x0a\x5a\xaa\xf9\x1a\xd5\x45\xb0\x64\x67\x2a\xd3\x16\x82\x93\x58\x90\x4d\x61\x9e\xa9\x17\x4d\xc9\xa0\x5a\x58\x1e\x63\x1d\x7b\x14\x66\x24\xec\x10\x77\xe0\xfe\x37\x60\x82\xf6\xbc\x1e\xdd\x68\x67\x56\xb5\x4c\x8e\xea\x06\x3f\xa4\x34\x84\x0f\xb5\x32\x1b\x3f\x99\xe6\xaf\x8f\x63\xbd\x4d\x06\x0c\x1d\xf7\xa6\x3a\xed\x75\xdf\x7d\x99\x17\x28\x59\xa1\x68\x56\x7c\x3c\x3f\xaf\x9e\xd3\x8d\x63\x8a\x66\xc5\xc3\x24\xd8\x64\x02\xbb\x9b\x7f\xf7\x3c\x4b\x75\x9a\xdb\xe8\xe4\x00\x60\xc7\x55\x3c\x46\x9a\x2a\x37\xe7\x72\xdc\xc2\xca\x4b\xa4\x70\x03\x0d\x4c\x33\x82\xa4\x22\x7b\xb4\xcc\x28\x6c\x7e\xfa\xdd\xf9\xbf\xff\x67\x30\x35\x94\x73\xf2\x04\x78\x92\x7d\x85\x6d\x9f\x3c\x8a\x82\xb5\x9f\x5f\x1e\x30\xc9\x59\x30\xeb\xe8\x3d\xee\xf4\xa8\x91\xc9\x9f\x62\xbd\x61\xaf\xe7\xf8\x72\x16\x2f\x9b\x88\xb5\xb5\x9b\x2a\x73\x35\x4a\x6e\x54\xbe\xcf\x23\x42\xb5\x75\x82\x72\xb3\xbb\xd9\xee\x2b\xed\x2f\x58\xec\x13\xfb\xc9\x5c\x0c\xa3\x86\x2f\x10\xdb\xde\x91\xd4\x6c\xa2\x7e\xfc\xe2\xad\x79\xf8\xe3\xef\xde\xba\x09\x01\xef\x00\xc3\x04\x79\xe2\xf7\xe0\xff\x60\x56\xc9\xde\xcf\x39\xce\xce\x82\x09\xf0\x1d\x28\x46\xe6\x88\xfe\x11\xd9\xfd\xa2\x25\xd0\x61\xf2\x95\x5b\xcd\xaf\x1f\xfe\xf8\xfb\xb7\xe6\xab\xc7\xf0\xf7\x7c\x7f\xcb\x44\x8f\xa0\x0f\xec\xd8\x29\x07\x85\x7c\x13\x2f\xa9\xac\xff\x23\xb9\xb8\xa2\x79\xaf\x05\x27\x82\xc0\x6d\xdc\xbf\xb2\x99\x3e\x5e\x96\xc7\x20\x3c\xbb\x1b\xb6\xd4\xcc\x56\x7f\xce\x1e\x01\xe0\x91\xbd\x80\xb6\x6b\x26\xc7\xcf\xf4\x60\x25\x69\x94\xd4\x34\xdf\x16\xb2\x9f\xa8\x8e\xea\xdf\x68\x00\x33\x9b\x78\xb9\x8f\xcd\x3e\xcd\xd4\xe7\xc5\xcb\x7f\xb0\x25\x39\x12\xa5\x62\xd7\x5b\x0e\x7d\x32\x2b\xcc\x0f\x1c\xa5\xbb\xb7\xd1\xf2\xd5\x44\x8c\xcc\xa4\x92\xd2\xcb\xf1\x1a\x6c\xb2\x13\xbf\xd4\xf8\xf6\xb5\x67\x58\xb1\xb7\x2c\xb9\xbb\x47\x97\xf3\xbe\xa0\x62\xfe\xf2\xe1\xc5\x44\xdb\x81\xee\xe7\x8a\x5e\x5c\x76\xfe\xa1\xee\x4a\xb9\xed\x90\x2d\xe1\x68\xd6\x72\x82\xf5\xb1\x7b\x38\x5a\x81\x90\xe7\x9e\x62\xdd\xd3\x26\x06\xc6\x18\x93\x38\x72\x84\x76\x67\xcb\x74\xf6\x3e\xb0\xab\x13\xb1\x92\x81\x5c\x05\xd3\xe5\xd1\x15\x32\x27\xcf\x98\x86\x67\x8e\xc2\x1a\x24\xb9\xbe\xb5\x6c\x9b\x89\x68\x0b\xc7\x7a\x7e\xb5\xf8\x3a\x6e\x84\x3e\x61\xb9\x4f\xb1\xc1\xc4\xee\xab\xc7\x8b\x92\x06\x68\x86\x1e\xcc\x96\x8d\xef\x80\xbd\xa9\x02\xbe\xdc\x9b\x3d\x04\x32\xf6\x51\x4d\xf9\x6d\xb7\x3f\x95\xc3\xa8\xb5\x6c\x2b\x44\xd7\x83\x8f\xea\xa0\x60\xbe\xf6\x6e\xa5\x62\x7f\x45\x02\x2c\x9a\xfe\x93\x89\x8b\xf2\xa3\xb7\xd2\xc1\x0b\x35\x34\x14\x2d\x1f\x37\x71\x35\x1c\x8b\x63\xd8\x05\x77\x03\xdf\x1e\x1d\xda\xeb\xa8\x3e\xff\xd0\xa9\x01\x57\x5e\x20\x69\x74\x4b\x3f\x96\x5b\x9b\x40\x33\xcc\xdd\x24\x55\xf8\x2d\xa7\x34\x08\x78\x14\xda\xad\x81\xb9\xaa\xf6\xee\xb4\x03\x12\x5f\x5c\x61\x27\x10\x60\x55\x58\xd4\x51\xb5\xdb\x6b\xb2\xfb\xbb\x66\x16\x59\x37\x7f\x56\xe1\x4b\xf4\x0a\x18\x31\x70\xd0\xd1\x11\x1a\xc2\x1d\xbf\xfa\xd3\x23\xef\xd5\xe3\xa1\xf2\x83\x18\xfc\xc1\x22\x06\x61\x25\x35\x1a\x2c\x8c\x19\x43\xb8\x76\x0b\x06\xdb\xd2\xc8\x56\xe7\x92\x64\x54\xa9\x60\xab\x20\x61\xec\x8f\x0b\x65\x8d\x38\x0f\x38\x07\x87\x86\x5f\x82\xe1\x5a\x32\x13\xc1\x0b\x51\xaf\x58\x40\x74\xea\x04\x39\xd9\x72\xfd\x09\xda\x9c\xba\x5b\x12\x54\xb3\x5d\x70\xd9\x4e\xee\x15\x6b\xd6\x31\x30\x2a\x04\x8b\xf5\x40\x54\x5a\xb5\x19\xe8\x28\x3a\x44\xf6\x58\x1c\x25\x1c\x1c\x85\x93\x71\xf2\x5d\x91\x04\x9d\x43\xdb\x03\xf7\x06\x0a\x3e\x93\x35\x23\xbf\xde\x86\x16\xa6\xd6\x27\x17\x85\x72\xe2\xfc\x4f\x96\x85\xf2\xc1\x26\xf3\xb7\x83\x88\x15\x0b\x92\x3a\x73\x87\x88\xfc\x50\x32\x46\x51\x81\xdb\xb1\x81\x3b\xdc\x7a\xd9\x5b\xf0\xee\x73\xf7\x7c\xdc\x4e\xf8\x74\x68\xaa\x63\x10\x6d\x69\x43\xbd\xd7\x9a\xe1\xdd\x2a\xb0\x11\x17\x14\xfc\xc1\xf5\xca\xcc\xa5\x92\xac\x7a\xc6\x77\xef\xc7\x2f\xb1\xfe\xe9\x13\x5f\x63\x73\xe7\xb9\x39\x56\x14\x8c\x5e\x04\x4a\xf9\xdd\xe8\x71\x16\x5f\xdd\x72\x38\x58\xa2\x69\xb0\xe6\xf6\xba\xb5\x91\x90\xc1\x1a\x78\x35\x0b\x78\xf4\xb7\x7c\x23\xdc\x36\x2b\xb9\x7d\x77\x1b\xb6\x88\xce\xbd\xcb\x81\xcf\x67\x88\x44\x75\x8c\x68\x65\x9f\x3c\xfe\xa7\x6c\xa3\x32\xbc\x73\x00\xa4\x2a\x7f\xc5\x67\xae\x0c\x4f\x78\x31\x1f\x5f\xea\x1f\x8b\x55\xde\x41\xd8\x23\xa0\x21\x70\xad\xfa\x10\x0d\xf9\xc6\x88\x13\xe5\xb6\xc2\x27\xb3\xb0\xc9\xa6\x6d\xf6\xcf\x9c\x68\x1d\x40\xd2\xdb\x0f\x8a\x32\x23\x83\x50\x70\x58\x06\xff\x47\xef\x98\x1d\x43\x7f\x80\x68\xe2\x15\x4a\x4f\x9f\x7c\x7f\xfb\x33\x39\x7e\xf1\xa7\x6f\x8f\x5f\x1e\xff\x7b\xd4\x33\x7d\x12\x7d\x14\x47\xf8\xc0\x59\x1d\x38\x38\xbf\x0b\x3a\xc2\xd6\x4f\x39\x5e\x8a\x78\xaa\x47\x00\xe1\x38\xa3\x8f\xd8\x04\x8a\x1f\xab\xd3\x9d\xfd\xe8\x26\xfa\xed\x0c\x2d\x4e\xce\xe0\x11\x3f\x59\x51\xa1\xfd\x27\x92\xda\x64\x5a\xe5\xb5\x6f\xb7\x3f\x0f\x3c\x59\x46\x70\x27\xc7\x80\x0a\x0b\x9f\xfc\xdb\xdb\x6b\x43\x8f\x08\xde\x77\x34\xa1\x78\xc1\xc8\x82\xc9\x2d\xda\x90\xb7\x4c\x70\xff\xe4\xe9\xd9\x9b\x5e\xcf\x67\x17\xdc\x70\x77\xb9\xc0\x1b\x2f\x48\xd8\xbb\x1b\x77\xd7\xb6\x58\xe2\x0a\x52\xd8\x0b\xec\xfd\x2b\xb3\xa1\x92\x2c\x05\x35\xa6\x7a\xd0\x73\xa2\x59\x43\x2c\x7b\x67\x1f\x7c\x0d\xef\x5c\x5f\x3d\x76\xe5\x5f\xef\xd5\xaf\xcf\x95\x5e\xb2\xa6\x3a\x1b\xbb\x50\xe4\x47\x8c\x66\xf4\x8e\x7f\x64\x4f\x61\x25\xf0\xad\x09\x22\x84\x6c\x95\x86\x1b\x20\x43\xe2\x5c\xe9\x36\x8c\xe4\x53\xff\xf6\xe8\xee\xdb\xf0\x0c\x02\x32\x05\xa0\xb2\x7b\x4f\x2d\x15\x22\x28\xa9\x47\x4f\x8d\x9f\xcd\x96\x42\xc9\xb8\x30\xcf\x85\x23\x4d\xc0\xd9\x49\x8c\x66\x42\x06\x0c\x20\x77\xd0\x71\xe7\xde\x78\x54\x3e\xfa\x1c\xc8\xd5\x8b\xdc\xe8\xd6\x51\x4f\xef\xc5\x0c\x3a\xef\x4f\x66\x30\x22\xb0\x1a\x39\x45\xb3\x18\x0c\x6a\x86\x6e\x49\x2d\xba\x5e\x9e\xf4\x1a\x23\x62\x15\x45\x7b\x4b\x1b\x8a\x65\x72\x09\x09\x51\x72\x56\xf9\xae\xb8\x45\x13\xa1\x69\x2b\x7d\xd8\xb4\x70\x58\x50\x43\x04\x3a\x25\xf8\x28\xa8\x5c\x41\x34\x3b\xf8\xb5\xe2\x96\xaf\xa4\xd2\x71\x0e\xe7\xf1\x0b\xb9\xbb\x82\x18\x78\x91\x05\x33\x6c\xf7\x7e\x26\xf8\x92\x49\xc3\xaa\x17\xdc\x50\x69\xc2\xcf\xb8\x2d\xb9\x26\x02\x4a\xd2\xdb\xa4\x01\x37\x9c\x99\x66\xb4\xf1\x3e\x5b\xaa\xed\xfd\xcf\xbc\xde\x02\x4b\x42\xb7\x7d\xa8\x48\x7b\xab\x6a\x2e\xb9\x0d\x9b\x7e\xf0\x45\x22\xbe\x88\x5e\xe4\xc8\x66\x4c\x7c\xf0\xf2\x8b\x0b\x93\x1c\xfb\x1a\x76\x4e\x7b\x11\xec\x6a\xaa\x3f\x67\x91\x1a\x4e\xa9\xf0\x41\xef\xea\x8d\xee\x25\xab\x4e\xfa\x86\x16\x5f\x70\x66\x7f\xd8\xd2\x60\xe0\x3b\x38\xa2\xbc\xbb\xb1\xbb\x1b\x09\x41\x94\x2c\x95\x9f\xf3\x2d\x98\x36\x6b\x76\xce\x34\x95\x46\x64\xbc\x46\x68\x8c\x4b\xcb\xf4\x05\x15\xde\x73\x92\x1c\x6b\xea\xdd\x2f\xc8\xa7\x86\x52\xfb\x59\x00\xa4\x4d\xa3\x41\x80\xf1\x70\x68\x85\x5e\x16\x22\x52\xd1\x74\x8f\x69\xd6\x0a\x1e\xf5\x41\xe9\xf5\x0b\x1f\x60\x2c\x43\x33\xb9\xa6\xd7\xbd\x9c\x87\xa6\x40\xb3\x6a\x06\xb9\xf4\xba\xd5\x27\x77\x57\x5b\xc7\x65\xc0\xf6\xb9\xa4\x76\xb9\x66\xda\x89\x02\x5b\x77\x06\x65\x30\xef\x59\x51\x47\xd6\x32\x0b\x9f\x81\x4a\xb4\xec\xd1\xad\x89\xfb\x19\xcd\x4e\xe2\xc6\xd4\x1c\x42\xce\x84\x1d\x80\x06\xf7\x71\xaf\x1a\x27\xed\xbe\xa4\xad\xe1\x5d\xdf\x91\x7f\xfd\xe2\x77\xc9\x76\x38\xfa\xc1\xcc\xf7\x1b\x13\x4c\xae\xec\x3a\x3c\x47\x67\x86\xd1\xde\x48\x48\x33\xba\x5c\x7b\x4f\x30\x75\x5e\xc3\xf6\x00\x45\xba\x63\x83\x8e\x48\x17\x3a\x7c\xd8\x20\x79\xcd\x24\x4f\xa8\xe4\x44\x82\x5e\xd0\xbb\xab\x2e\xf8\x79\xcf\xa7\xac\x8f\x4e\xe3\xc5\x90\x99\x1d\x19\x08\x65\xf3\x2b\x8c\x8e\x62\x2b\xb2\x61\x87\xad\x8d\xbc\x99\x98\x64\xac\xa9\x69\x6f\xd7\x23\x93\xff\xa7\xb8\x0f\x1a\xae\x67\x3e\x42\x23\x46\xb3\x83\x08\x8d\x21\x8e\x5d\x5e\x32\xbe\x61\x1c\xfd\x29\x68\xbf\x23\xfa\x64\x21\x7a\xf6\xe0\xeb\x01\xb6\x63\x46\xfa\x3d\x1f\x1c\x1b\xcc\x29\x22\xf6\xf8\xc4\xda\x84\xca\x1c\xc9\x77\xd8\xdd\x8e\x7e\xa7\xbd\x3d\x01\x11\xaf\xff\xa4\x86\x7d\xfc\xf4\x4f\xaf\xc9\x0f\xdf\xbf\x78\x84\x32\x54\x08\xda\x73\xb0\x76\xcd\x3b\x08\x46\x85\x3e\xa5\x27\x9e\xb8\x0e\xbd\x0f\x42\x83\x91\xb0\x30\x00\x1d\x17\x8c\x58\xea\x24\xd8\x28\x0d\xc4\x69\xcf\x3b\xd9\x30\x0d\xbe\xfa\x20\x6d\x48\x1e\xdf\xff\x53\x10\x35\x7c\x82\x22\x8e\x2e\xb8\xad\xc4\xb7\x12\x24\xa7\x41\xb5\xa9\x95\xe4\x7c\xbe\xa4\xc2\x7b\x9e\x47\x9f\x33\x44\x0e\x7c\xcf\x3f\x21\x27\xbb\x5f\x06\x81\xc1\x8a\x06\x25\x5c\x2b\xc1\xaa\xd0\x8d\x06\x70\x0c\xf6\x20\xa1\x71\x6f\x1e\x8a\x4b\xb0\xa7\x43\x09\xa7\x1f\x6e\xa9\xbb\xab\xde\x5d\x35\x83\x8f\xd5\x69\x6e\xaf\xe1\x1c\xb3\x26\x15\xa3\x8d\x65\x7e\x4b\xcd\x96\x6a\x33\xd4\x82\xcb\xb6\x7a\x8e\x22\x5f\xfa\x92\x24\x1d\x2c\x91\xa0\x05\x48\xc5\x5e\xfb\x83\x85\x49\x19\xfc\xff\xfc\x5f\xff\xf7\xe7\xdf\xe0\xbb\xe2\x37\x56\x8b\xcf\xbf\x21\xb6\xbf\xbb\x42\x2a\x4a\xc9\x02\x8e\x93\x6b\xc5\xcd\x77\xac\x4c\x5e\xd3\x8e\x76\xb3\x5e\x02\xad\x42\x42\x05\xec\xa6\x37\x15\xcc\x3e\xcf\x7a\x69\xc0\xc2\xc7\x53\xad\xdb\x6b\xf2\x1c\x65\xac\x59\xf1\xdd\xdf\xd3\x91\x8c\xcd\x66\x72\xef\x66\x25\x6f\x54\x3b\xfb\x8f\x9e\x2f\xdb\x7a\xd5\xf3\x86\x55\xcf\x5c\xc5\xdb\x6b\x72\x02\xf1\x0f\xe4\xea\xf6\x7a\xf7\x1e\x02\xac\xc0\xcb\xa9\xe7\x5a\xec\x9a\x9b\x68\x69\xea\x77\x61\x0b\x77\x58\xee\x9d\x0e\x34\x6e\xa9\xba\x8e\x4a\x37\xd0\xae\xb7\xc4\x80\xcb\x33\x5a\x21\xa6\x87\xff\x9c\x5e\xcd\x36\xbd\x59\xa3\xb4\x87\x3d\xfc\x19\x02\xda\x78\xa3\xda\xd0\xd7\x5e\x63\xde\x4c\x60\xb6\xa0\x9a\xd5\x9d\x77\xe1\x09\x84\x60\xcd\x20\x80\xc7\xda\xcb\x83\xe1\x59\x35\x44\x3e\x89\xe6\xa7\xe7\x5c\x30\x53\x85\x70\x69\x33\x7f\xc1\xba\x4b\xd5\x6a\xc6\xaa\xe3\xdb\x2b\xba\x7b\xef\xa0\x2c\xd3\xc1\xac\x95\xca\xa6\xb6\x74\xe5\xa0\x70\xc9\x31\x28\x17\x41\xf9\xc9\xc1\x6a\x26\x98\x6f\xcb\xb5\xee\x56\x42\xcf\x2c\x5d\x99\x0a\xe3\x5a\x92\xdb\x9f\x81\x4f\xdd\x8b\xa2\xba\xe9\x85\x98\x8a\xb8\x0a\x31\xd0\x66\x82\x2e\x98\x30\xd5\x13\xcb\x5b\x66\xdd\x3d\xd1\x39\xec\xad\x92\xcc\x49\xe6\x42\x75\xcc\x6a\x46\x5e\x53\xbf\xf3\x66\x4b\x70\x5f\x32\xd1\x73\xc9\x55\x59\xf1\xc0\x46\x30\x53\x9d\xa0\xa7\x94\xfb\xee\x50\xa6\xc6\xe1\x82\x11\x4b\xc0\xa4\x95\x0b\x56\x6b\x7a\x59\x3d\xa3\x1d\xfe\x58\x73\x03\x51\x78\xdd\x61\xef\xf8\xdd\x15\x7e\xc5\x57\x37\x84\x23\x51\x18\xf0\x55\x1c\xc1\xa1\x78\xd8\x82\x74\x91\x7c\xc2\x10\xc4\x2a\xc7\xe9\x69\xbf\x7c\xc0\x24\x19\xa6\xc1\xcc\x27\xf9\xce\x42\x48\x8c\xc5\xee\x66\x40\x11\xa3\x61\x0a\xee\x1f\xd3\x6f\x1c\x89\xc4\xb8\xc4\x0b\xad\x2e\x0d\xd3\xd5\x6b\xaa\x1d\x7f\x14\x98\xe7\x67\xaf\x5f\xbe\xf8\x57\x02\x75\x80\x27\x6f\x99\x45\xb3\xe2\x2c\xa4\xcb\x7c\x16\x17\x6c\xae\x2e\x98\x86\x18\x45\xf8\xc8\xbe\x4a\x23\x8a\x20\xde\xe3\x3c\xce\x24\xf8\x97\x93\x6c\x3e\x23\xa4\xb1\x54\x64\x80\x4f\x4c\xcb\xc1\xa0\x63\x0a\x96\x0a\x51\x9d\x78\xce\x6c\xaa\x1c\x2d\xe6\x9a\x7a\x31\x54\xf0\xbe\x56\x84\xf3\x82\x67\xb7\xc2\x3a\x2e\x55\x0c\x36\x5f\x87\xf9\x48\xdf\xdd\xee\x26\x37\x9b\x9b\xb1\x86\x5b\xa5\xe7\x10\x02\x99\x0b\xef\x5f\x07\x2b\x14\x8a\xd0\x16\x10\x4b\xe1\x18\x81\x43\x21\x18\x01\x06\x10\xf7\x4f\x06\x00\x2f\x8e\xe0\xe2\xe8\xcb\x37\x9a\xc1\x0e\x42\x24\xcb\xed\x0f\xd2\xdc\xee\x6f\xd2\xf1\xa7\x01\x7e\x49\x25\x58\x96\xbb\x66\xa5\x92\xb5\xbb\xe3\x6b\x3c\xc8\x2f\xdd\xca\x46\x55\x6e\x88\xda\x16\x7b\x94\x4e\xe8\x28\xd0\x02\xb2\x06\xb8\x85\xad\xe7\xf0\x1f\x63\xd8\xf5\xc6\xd6\x0b\x56\x2b\x59\xd3\x30\x79\x01\xbe\xa1\x13\xb1\x84\xb3\x60\x64\xc1\x1d\xb1\x61\xc1\x5d\x2d\x85\x6a\xc5\xd6\x41\xb2\x5a\xb0\x73\x27\xd8\xb8\x4f\x69\x1e\x03\x1e\x1d\x73\xa2\x37\x06\x27\x4e\xce\x0c\xbc\xe5\xa4\x55\xa0\x55\x81\x38\x37\xa9\xe9\xd0\x72\xd0\xe1\x4d\x0e\xd2\xb1\xf6\xf9\xf8\xd6\xf4\x82\xd5\x97\x9a\xdb\xa0\xed\xfe\xb8\x21\x0e\x74\xdb\xd1\x4c\x81\xb4\x05\x75\x69\x16\x02\x0c\xc2\x91\xf9\x91\xa2\x29\x36\x20\x15\x2e\xda\x87\x99\xf4\x35\x69\x58\x11\xf6\xa0\xe3\x3c\x21\xc2\x43\xda\x4a\xe1\x4d\x0a\x1c\x73\xe6\x45\x37\x51\x07\x52\x41\x10\x59\x30\x53\x89\xc4\xe4\x28\x44\xc6\x41\xcb\x4d\x27\x92\x3d\x86\x1b\xbb\x8f\xb7\xb5\x8f\x5c\x80\x60\x5e\x9f\x99\x06\x4d\xfd\x03\xf5\x02\x38\x2e\x49\xc9\x8a\x37\xc0\x6d\xb9\x21\xf3\x71\x53\x01\x2f\xa5\x2b\x77\x5f\x64\xfb\x78\xc9\x44\x0d\x6e\x08\x15\x07\x63\xe3\x50\x02\x84\xfb\xf0\x81\x40\x82\x1e\xa0\x69\xd3\xd4\xb6\xdb\x88\xea\xd1\x43\xf3\xf8\xab\x30\xf8\xaf\x1f\xa1\x59\x5e\x02\x42\xcd\x5c\xfe\x11\xe9\x09\x7e\x8f\x84\xa3\xdc\x3c\x58\x98\xed\x15\x8f\x9b\xbf\x70\x91\xb9\x88\x11\x38\x83\x2b\xce\x8a\x49\x50\xd3\x79\xad\x7c\x26\x2b\x11\x8c\x3f\x21\x49\xb6\x5e\xbe\xc9\x86\x6b\xb6\xb4\x62\xa8\xad\xc2\x2d\x1b\x6e\x63\x78\xb6\x71\x24\xce\xeb\xf1\x02\x73\x8f\x8e\xbf\x9f\xbb\xd1\x3e\x80\x88\x13\xc1\x6e\xec\xee\xaa\x5f\xa0\xa9\x61\x08\xab\x11\x7a\x4a\xac\x4a\x3a\xc6\x96\xd2\xf5\x7a\x77\x63\x21\xca\xe2\x7b\xd6\x76\x8c\x70\x8c\x72\x1e\x42\x42\xc5\x85\x9f\x07\x4d\x22\x70\x32\xd0\x4d\xea\x35\xc9\x5f\xf3\x9c\x70\x06\x67\x18\xb0\xf6\x77\xb3\xf5\x06\xde\x1e\xfa\x05\x1b\xef\xdb\xd2\xf0\x7c\xbc\x99\x3d\xd9\x5b\x30\x0c\xef\xec\x89\x29\x58\x6b\x78\x9f\xe2\x0e\x83\x1a\xc4\xf6\x02\xbf\x22\x34\xa3\xcd\x10\xf4\xe9\x8f\x1e\x12\x43\x1e\x91\xbb\x7f\xc0\x1c\x05\x7a\xd2\xd0\x5c\xa5\x1e\xb6\x00\xac\x88\xd2\x43\xcd\x4d\x4d\xf1\xe0\xed\xfe\x6e\xac\x63\xe5\x21\xf8\x86\x6b\xeb\x91\xb7\x38\xe6\x47\x59\x5b\x8b\x74\x78\x82\xca\x01\x49\x09\x48\xa1\x39\x39\x80\x96\xcd\xd0\x01\x8b\x80\xba\x63\x4f\x0e\x8e\xc0\xbb\xc2\xc1\xe2\x05\xec\x68\x60\x6e\x09\xcd\xd0\xe5\xd5\x75\x65\x58\xb7\x50\xa0\x3a\xa0\xb7\x57\xfb\x74\x00\xfa\x88\x83\xc9\x67\x0e\x45\xde\x88\xb6\xf7\x4e\x8a\xd8\x37\x63\xe2\xe5\xfe\xe6\x72\x55\x4b\x55\x0b\x25\x57\x4c\x87\x59\x0d\x7e\xfb\xc9\xc5\x11\x3a\x41\xc3\x57\x6f\x69\x83\x7d\x80\x20\x95\xb7\x89\xc7\xbc\xa9\x2f\xd7\x59\x0f\xb1\x41\x08\x6d\x12\xe3\x96\xe7\x8a\x7b\xe8\x20\x19\x0c\x8e\x8d\xc4\xbf\x65\xe9\x13\x46\x6f\x76\x8c\x4c\xa4\x81\xf7\x2a\x13\x4f\xc6\xa1\x3e\xbe\x7a\x4c\xbf\x1e\xf9\x5d\x80\x82\x86\x38\x2c\xe1\xf1\x11\xee\x81\xa9\x63\x02\x91\x05\x80\xa9\xb4\x7e\x2c\x06\x1a\xf4\x20\xe5\x5c\x4c\xef\x55\xda\x44\xff\x3e\x8c\x1e\x0c\xcb\x64\xa7\xb6\xac\x54\x81\x6c\x3a\x32\x62\xd6\xea\xd2\x09\x92\xc6\x3a\x39\x98\x2d\x59\xbb\x1f\xfc\x7f\xe4\x91\x16\xb0\x81\xd0\xc1\xaa\xf6\x4e\x0a\xb0\xf5\x8b\xdd\x99\x71\x5a\x10\x57\x8e\x3c\xce\x9e\xe3\xd1\x15\x93\x38\x81\x15\x8c\xfe\xd1\x96\x76\xdc\xb6\xbf\x09\x27\xda\xf6\x8e\x02\x80\xec\xdd\x15\x6b\xb9\x88\x46\xe0\x31\x86\x5d\x46\xfd\x4d\xbf\x68\xb8\xae\x8e\x85\xf5\x22\xf5\x93\x56\xb0\x8c\xb0\x78\x6f\x50\x18\x4e\x64\xd7\xcc\xa8\x4f\x1f\x0e\x16\x07\x73\x00\xf3\xbc\x3a\x8c\x80\xeb\x2a\x8b\x35\x0d\x0d\x0e\x2c\xf0\x7f\x41\x00\x09\x04\x7e\x2c\x3d\x70\x09\x81\x55\x59\xc3\x45\xc7\x0c\x1f\x81\x97\x72\x4b\x28\xf3\xd1\xd1\x62\x30\x06\x74\xb8\x09\xa5\xe7\x5c\x36\xd5\x49\x2f\xe2\x07\xda\xdb\x35\xe4\x03\xd9\xd2\xd4\x46\x10\x16\x5f\x32\x43\xff\x12\xbf\xc2\x55\xf8\x1a\x6c\x36\xc3\x27\x8c\x76\x07\x06\x57\x8e\x6f\x8f\xdf\x25\xbb\x0c\xdf\xdd\x0e\x8f\x41\xe2\x24\xbb\xf4\x36\xb3\x4e\xa0\xcb\xbe\xce\xf7\x44\xb7\xac\xcc\xd1\x12\x57\xec\x4b\x41\x3e\xcf\x8a\x97\x82\x51\x5d\x8f\x1b\xe0\xc4\xb2\x0e\xb8\xe2\x0c\x34\xca\x83\x23\x71\xf0\xf6\x7a\xd4\xdf\x61\xc0\xe9\xde\x0f\xc1\x47\x3d\xf1\xeb\x7d\x64\xd4\x86\xc9\x0f\x57\x3c\xde\xbd\x2f\xbb\x53\x86\x35\x79\x35\xba\x09\x8f\x0b\x53\x22\x6e\x56\x95\x1a\x48\x50\xc3\xaa\x63\x4b\x25\x95\xfb\x83\xc8\x01\x30\x98\xec\x04\xd6\x52\xd5\xa3\x86\x7c\x80\xe3\x6c\x5e\x90\x8b\x40\xa9\x3d\x29\xe9\x53\x23\x7e\x39\xd1\xd6\x03\x16\x6c\xaf\xb0\xde\x08\xba\x64\x3e\x9c\xa2\x5f\xf7\xc0\x0d\x14\xbd\x94\x5b\x63\xdc\x19\xb6\x15\x12\x01\x99\x39\x3e\x49\x82\x4f\xaf\x23\xbb\x60\xae\xdf\x15\xaf\x33\x0c\x1b\x6a\x77\x37\xf0\x6e\x85\x27\x75\xe0\xf2\x50\x8b\x5c\x9e\xab\xea\x19\x6a\x53\x7c\x5d\x77\x81\xa1\x0b\x92\xff\x90\x07\xa9\xf5\xfc\x71\x1e\xa1\xeb\x41\x36\x11\x0f\x42\xbc\x2e\xe0\xce\xfc\xfd\x82\x8a\x50\xd4\xa5\xa4\x9a\x28\xef\x1c\x18\x06\xe0\x3f\xf0\x29\x2b\xd8\x03\x03\xc9\x1e\x6f\x3c\xda\x86\x59\x1e\xde\x6d\x0e\x54\xea\x0d\xab\x7e\x30\x8c\x38\x76\x94\x40\xa1\xab\x75\x08\x3a\xd0\xf5\x24\x11\xfb\x65\xf3\xef\x3d\x89\xd6\x22\xa1\xcc\x08\xee\x98\xde\xfa\x1e\xe0\x0c\x59\xba\xa8\x1e\x36\x9e\x87\x8e\xbb\xc3\x1d\x94\x50\xd4\xc6\x43\x12\x8a\xbd\xc6\x2a\xdf\x3c\x53\x45\x8e\x8f\x31\x4c\xb0\xa5\xf5\x31\x26\x78\xb6\xc8\xa3\x0a\x53\x47\xd9\x16\xc4\x65\x0c\x38\xd1\x7a\x3b\xaa\x3a\xd1\xcf\x81\x73\x9c\x4a\x57\x5c\xb2\xa9\xb6\x29\x1e\xd7\xfd\x16\x31\xc3\xd4\xee\x46\x4f\x7c\x9f\x53\x21\x6a\xaf\x86\x83\xd0\xe9\x51\x17\x37\x05\x6b\x7c\x0e\x2c\xab\x9c\x28\x5a\x9d\xf1\x2d\xf3\xdd\x4e\x81\xe3\x09\x6e\xea\xc5\x10\xa0\x79\xb2\x0f\x6c\xfa\x36\x65\x62\x9a\xa8\xdc\x31\x69\xb9\x92\x8e\xd9\xf4\x95\x1b\xb0\x8f\x5d\x1b\x08\x65\x3b\xee\xd0\x40\xe0\xdd\xdb\x6b\x4d\xd3\xee\xc9\x8a\xe6\xb0\x43\x6d\xf5\x44\xe2\x8d\x35\x01\xe1\x68\x11\x42\x30\x77\xd7\x4d\x40\x68\xb6\x64\xd2\x7a\xa1\xf1\x0d\x26\x0a\x81\x17\xb7\x26\xf7\xca\x04\xbd\xe0\x14\x06\x8c\x9a\x51\xe5\x20\x1a\x7c\x7c\x23\x9d\x32\xd6\xdd\xc2\x4c\x02\xa6\xa0\x14\x1c\x94\xee\xbb\xe0\x57\x34\x35\x2f\xd8\x75\x56\x8d\x6e\x0f\x54\x72\xe7\x0d\xf5\x6b\x99\x35\x3b\x18\xb2\x7b\xc3\x73\xfa\xf5\x84\xce\xad\x65\xda\xbb\x90\x83\xef\xc4\xb8\xad\xfa\x9c\xb6\xec\xa0\xc2\x6e\xba\x32\xe8\xc4\x54\x6f\x90\x96\xa7\xe5\x90\xec\x9d\xad\xce\x1c\xff\x9f\xbe\x21\x91\x00\xca\x7f\xbc\x4f\x23\x1a\x5f\x14\xdc\x2c\x42\x43\x7d\x57\xfb\x19\x31\x8e\x84\xc0\x7c\xc4\x8a\x58\xc0\x9a\x9a\xda\xea\xa7\x38\x15\xff\xe2\x44\x83\x87\x38\x0b\x21\xbc\xb8\xab\x86\xcf\x24\x3f\x85\xda\xc1\x93\x18\x1b\x89\x89\x24\x4e\x7a\x84\xf6\x51\x38\xc0\xcc\x25\x8a\x4b\x6e\x6f\x83\xa5\x5d\x07\x59\x12\xb6\x7f\x88\x78\xaa\xe8\xa6\xe4\x6f\xa1\xa4\xcf\x6f\x51\x96\x2a\x28\x22\xfc\x80\xc1\xda\xb2\x20\xa0\x83\x00\x6f\xc2\xf2\x3b\xa1\xbf\xcd\xa1\x35\x83\xf9\xf4\x60\x5e\x7e\xa1\x89\x4b\xf1\xe5\xf7\x34\x37\xec\x57\xf2\x77\x79\xd8\x82\x11\x7c\xb4\x52\x7e\xb6\x79\xe3\x9d\x28\x1e\xc4\x89\x87\x5f\x5f\xc3\x1e\x42\xcf\x09\x87\xb2\xcd\x26\x1d\xd1\xfa\x55\x6d\x64\x78\xe6\x2d\x79\x66\x5d\xb3\xf3\x5f\xd1\x16\x1a\x65\xb1\x18\xfb\xc6\x60\xfe\x2f\x7e\x77\x85\x76\x27\xd6\xf2\xd8\xc1\x46\x41\x92\xc3\x57\xf0\x4f\xea\x35\x04\x78\x56\xda\x47\x76\x5e\x66\x67\x29\x37\x7c\xf2\xdf\x42\xd4\xff\x10\x60\x0d\x74\x2b\x85\xaf\x5e\xca\x51\x88\x56\x31\xe0\xfb\xd9\xdf\x5d\x81\xa5\x0f\xc6\x0e\x49\x22\x6b\x68\x16\x35\xb0\x41\x01\x1c\xb0\x2b\x34\x33\x01\x01\x7a\xc1\x20\x75\xe3\x1e\x47\x80\x19\x67\x12\x57\x57\x16\x2f\x95\x50\x91\xe9\xd3\x4c\xae\xf8\xb8\xbc\x97\xd6\x9d\x49\x56\xdc\xdb\x58\x98\x36\xa7\x49\x4c\x01\x4e\x77\x09\x38\x39\x0e\x2c\xf2\x9a\xbd\x33\x2e\xca\xef\x3e\x04\xa1\xc7\x2c\x29\x20\x26\x6a\x83\x03\x34\xc2\xa1\xe9\xdb\x24\x48\x72\x40\x03\xd0\xdc\xfb\x19\x94\x45\xf8\x99\x8d\x7d\x5d\x8d\xbf\x82\x81\x7b\x2c\xfc\xa1\x7f\xa5\x2f\xf4\x34\x52\xd1\x25\x1a\xf1\x9f\x54\x3a\x67\x54\x72\x43\xb5\xe5\x4b\xbe\xa1\x9e\x52\x3e\x87\x8d\x73\x7b\xdd\x65\xfb\x93\x5a\x4b\x97\x6b\x77\xb6\x13\xcb\xf6\x13\x79\xf0\xd0\x90\x47\x8f\xc8\xc0\xd3\xc3\xa7\x61\x6d\xc7\x1a\x56\xaa\x62\x32\x3d\x0b\xf9\x69\xa2\xc9\x46\x5d\x4a\xc7\x53\x56\x3f\xb9\x6d\xed\xda\xbb\xfd\x19\x2d\x26\x26\x1b\xc0\x57\xc4\x24\x8c\x4e\x27\x70\x44\xa0\xa5\xea\x36\x54\xb3\xc3\xaa\xe6\xe7\xc9\x2b\x16\x8c\x25\x26\xab\x05\x2d\x70\xcb\x49\x03\x7a\x8b\xb6\xac\x05\x4e\xfa\x65\xcb\x1e\xf1\x42\x13\xe3\xb5\xae\x48\x42\x20\x3c\x57\xd9\xdb\x82\x1a\x56\x59\xd6\x31\x31\x46\x03\xff\xad\xda\x49\x64\x8b\xd7\x5b\x78\xb5\x8d\x6f\xb4\x7e\xa6\x54\xad\x99\xe9\x85\x35\xee\x6a\xed\x77\xef\xcb\x80\x5f\x01\xc8\xae\x1d\x33\x66\x55\xec\x6e\x34\x37\xde\xb6\x3a\x3e\x3a\xdf\x5d\xb1\xc1\xdd\x50\x47\x64\xf7\x7e\x77\x23\xdb\xdd\x0d\x01\xe4\xdd\x6c\x50\x49\x21\x1c\x12\xf8\xed\x8e\xbb\xe8\x98\x5e\xf9\xd1\x1e\xe8\x22\x6f\x3e\xb5\xce\x5b\xaf\x93\x96\x6e\x4b\x50\xcd\xd7\x1c\xbd\xe4\x21\xac\xa1\x6e\x45\xea\x6a\x4d\x4d\x9d\xa7\xf9\xac\x7e\x3a\xc1\x07\xa5\x35\x44\x6a\xc2\xc5\xc9\x62\x4d\x4f\x2c\x13\xb9\xa0\xfa\xcb\x91\xd7\xdf\x63\x68\xfd\xb1\x63\x96\x1a\x7f\x3d\xfc\x0b\xfc\x70\x04\xf8\xa7\xb0\x6a\x28\x3e\x4f\x6e\xcb\x24\xe1\x22\x2c\x90\x52\x4f\xda\xf7\x1c\x00\x83\xeb\x6a\xcb\xa3\x77\xe0\xef\xb2\xc2\xa8\x3c\xe2\x92\x03\xb3\xd5\x80\x95\x8c\x4f\x10\x64\xfd\xf9\x41\x9a\xe1\xbb\x83\x99\xf7\x1c\xd3\xc1\x5e\x1f\xfe\xf8\xdf\xde\x9a\xff\xaf\x7d\x37\xe1\x04\x5a\xba\x70\x1c\xce\x05\xd3\xc6\x9b\x77\xa9\xf5\x82\xd9\xa2\x74\x5f\x1d\x96\x4a\xbd\x05\x43\xae\x17\x97\xf1\xe5\xd3\xc3\x79\x9e\xc5\x2a\xdc\x5a\x21\x0e\x0d\x4c\x81\xc7\x15\xf3\x44\xe8\xdd\x7b\xd6\xe6\xb3\x53\x04\x56\x58\xf4\xd3\xe7\x95\xc7\x48\xda\xee\x36\x8a\xc7\x16\x27\x33\xeb\x0c\x82\xfa\xa4\xfd\x17\xca\xa7\x5b\x2d\xe8\xf2\xa2\x68\xe3\x13\xdf\x48\x43\x2d\xad\x17\x5a\xc5\xf0\x91\x53\xb8\xa1\x0d\x94\xe1\x47\x99\x79\x6e\x6e\x61\x28\x91\xe8\x83\x36\x44\xb2\x86\x49\xc8\x2a\xb0\x50\xdb\xde\x07\xcb\xc6\xbe\xb8\xa9\x97\x6b\xb6\x6c\xb9\x5c\x55\xbb\xbf\x52\xc8\xe1\x8c\xc6\xbb\x56\x2b\xb1\xbb\xf1\x99\x5e\x20\x74\x5e\x30\x6b\x5c\x70\xdd\x42\xea\x56\x0c\xbd\x1e\x1c\xad\x21\x51\x50\x88\xbb\x2b\x30\xfa\xba\x3f\x19\x54\xd6\x60\x41\x8a\x14\x20\xdc\x9e\x93\xd3\x33\x4e\xf4\x93\x4f\x51\xc8\x37\x14\x5b\x05\x4b\xbd\x51\xc3\x69\x14\x70\xd5\xca\x10\xf7\xe1\xd0\x32\xdf\xdf\x23\x04\x12\x3b\xd4\x5f\x32\x16\x4e\x3d\xde\x5e\x63\xd4\x84\xfd\x6d\xe6\x04\xc0\xbc\xf1\x34\x3d\xc8\x45\x63\x9b\x78\x2a\x26\xb7\x72\xa6\x90\x8a\x07\xc0\x51\xd3\xf0\xc8\xee\x1a\x70\xeb\x98\xd7\x4d\x0f\xec\x9e\x2d\x0e\xa6\xb0\x84\x66\xb7\x0d\x3c\x53\x26\x13\xce\xea\x75\x78\x3a\x3c\xce\x8d\x41\xf3\xfd\x5f\x52\xd9\x49\x9a\x27\x39\x49\x98\xf8\xba\x70\x5e\x7b\xe9\xe9\x11\xb4\xe1\x9f\x44\x7e\xca\x64\x92\x8e\x1e\x3c\xbd\xc9\xbc\x9a\xec\xfe\xea\xef\x07\x1f\xe4\xd4\x87\x71\x05\x4f\x91\x10\x39\x22\x27\x8a\x78\x3a\x30\xbb\x86\xe7\x2f\x33\x6b\xac\xe9\x8b\x80\x7c\xfa\x2f\x0f\x9b\xcf\xc0\x6f\xa0\x68\x89\xb5\x02\xac\x6b\x02\xed\xf7\xb2\xa1\xbf\x8b\xe1\x0d\x72\xe0\x10\x54\x6a\xa2\x1c\xe2\x2d\x4a\x76\x19\x29\x60\x88\x9f\x05\xab\x85\xaf\x60\xc0\x59\x85\x17\x5c\x81\xbe\xa1\x98\xdb\x0a\x02\x54\xfa\xad\x85\xcf\xad\xe1\x01\x65\x3b\x9f\x65\xa6\x53\x89\x51\xda\x53\x9a\x67\x40\xb9\x26\xce\x4b\xd9\x59\x69\xa1\x8d\x0b\x92\xf6\xb8\xbc\x09\x32\x38\x79\x68\x8a\xfe\x55\xdd\xf4\xac\x06\xc5\xc8\x09\xb7\x8e\x03\xf6\x97\xf7\xa0\xda\x31\x0e\x4e\xc4\xdf\x6b\xd9\xcb\xbb\xe5\x98\x6a\xd3\x2f\xd6\x8c\x36\x4e\x70\xf2\x0c\x75\x0a\x93\x82\x0e\x4c\x2c\x30\xce\xde\xa3\x7d\xa4\x9b\x4b\xfe\xfd\xf3\xa2\x4b\xbc\xbf\xf7\x5e\x0e\xe2\xd5\x9d\xc1\xa2\x28\x04\x96\x85\xa3\x29\x1b\xdb\xfb\xe7\x45\xa3\xd9\x78\x8d\xb3\xf1\x29\x2f\xad\x0c\x3e\x2b\xe7\x81\x51\x5d\x05\x85\x7e\x56\x10\x53\x6c\xf9\x46\xeb\x73\xa5\x3b\x6a\x47\x33\x8d\x1f\xf3\xfc\x4d\x73\xf2\x68\x18\x86\xe1\xf3\xae\xfb\xbc\x69\x1e\xc1\x2b\x9c\x00\xf2\x1d\x62\x64\xef\x4f\x49\xe6\x26\x37\x9a\xc9\xbd\xa8\x29\xa5\xe7\x6e\xd6\x12\x88\x6d\xe3\xa9\x75\x27\x34\x8a\x72\x23\xe0\x6c\x99\xcb\x6e\xa3\x35\xaf\x63\xb3\xe9\x9a\x12\x3e\xf0\xcc\x10\x23\x4f\x0e\xe9\xd6\x9e\x70\x69\x68\x70\x96\x6b\x69\x48\x8a\x07\xe9\xa6\x1c\xc9\x46\x4b\x96\x7c\xcc\x85\x4c\x9c\x15\x78\x31\xf2\x57\x0e\x22\x73\x1e\x1b\x6f\x44\x9f\x7c\x79\x24\x99\x94\x0e\x87\xf8\x8c\xe8\x78\x83\x62\x8f\x45\x97\xcc\xd1\x5e\x45\xa1\x75\x02\x34\xf3\xc1\xdc\x43\x22\xf7\xbc\x1c\x89\xac\x20\xa5\x16\x72\xeb\x6f\x14\x59\xa7\x50\x3a\xb8\xad\x26\x45\xd7\xd9\x25\x6f\x79\xf5\x6f\xbc\xe5\xf0\xd7\xfc\x92\x89\xa5\xea\x18\x7c\x79\x34\x30\x92\x67\x24\xf8\xa4\x00\xc1\xb1\x3b\xb8\x23\xb2\xd1\xea\x2f\x0c\x02\xd0\x42\x74\x0e\x34\xd1\x67\x45\x5c\x24\x27\xd4\x85\x7d\x05\x69\xa1\xa8\x60\x64\xc5\xec\x18\x6e\x60\x1a\xec\x28\xa0\x2b\x7f\x52\xce\xb9\x36\xb6\xde\x60\xd4\x7d\xd1\x26\x9e\x28\x1a\x05\x03\x34\x00\x40\xa6\x48\xfc\xed\x45\xb9\xf4\x39\x89\x72\x50\x8e\xc1\xfa\x56\xde\x50\x11\x21\xbe\x2b\x5a\x0c\x26\x90\xa5\x19\x93\x5b\xf0\xcc\x2d\x35\xb3\xde\x93\xca\x06\x2b\xb1\x3d\xfa\xe3\x87\x04\x09\xe8\x12\x4a\x03\x18\x67\x83\x56\x08\x8a\xc1\x4d\xc5\x77\x07\xaf\x69\x0f\x0d\x68\xc8\x02\x6c\x13\x2d\x47\xdc\xbd\x00\x55\xe0\x48\xb8\x16\xeb\x45\x6f\xad\x92\x49\x8f\x53\x8c\x32\x94\xa6\xc1\x86\x31\xa2\xcb\x64\x06\x12\x31\x73\x57\xed\x1e\x90\x54\x96\x2f\x59\xfd\x45\xe6\x5e\x89\x42\xcd\x83\x87\xe6\x41\x90\x69\x00\x61\x93\x0e\x42\xd8\xce\x81\xdb\xcd\xa2\x6a\xc7\xb5\x1b\xdb\x73\x1c\xc7\x30\x55\x3e\x81\xb1\xdb\x6c\xb1\xe5\xdc\x9c\x23\x36\x61\x62\xa6\xd0\x6c\x3a\xbd\x21\x2c\xb8\xfd\xe4\xeb\xf6\xd0\xcc\x66\x21\x96\x6d\x15\xd2\x40\x87\x0f\x73\xcc\x1b\x6d\xaa\xd7\x90\xc0\x01\x1c\x82\x42\x51\x96\x5f\x4e\x49\x90\xb4\x80\x91\xe1\xb7\x57\xfc\x00\xd0\x1c\x32\x02\xa6\xac\x14\x87\xc0\xc0\xa2\xb2\x7a\x43\xb7\x87\x00\xdc\x04\x55\xdf\xb5\xfd\xa1\xf2\x5e\x36\xec\x9c\x4b\x27\x29\x31\x78\xe5\xcc\x5a\x8a\x66\xc5\xc0\x49\x15\x23\x0a\x45\xf5\x02\x54\x15\x8e\x34\x01\x11\x0f\x71\xdd\x13\x5f\x04\xd4\x14\xfd\x2a\x73\xae\xf1\x6f\xd2\xa7\xa8\xee\x78\x5b\x86\x26\xe3\xd6\xf1\xe4\xb1\xa7\x7b\xac\x8a\x01\xad\x43\x90\x48\x6e\x0a\x70\x60\xd3\x8e\x48\xab\x1a\xe0\xe9\x90\xa5\x03\xd1\x0d\xcc\xf2\x20\xb9\x15\xa0\x8b\xa6\x7a\x17\x9a\x77\x6e\x20\x99\xa1\xac\x1f\xd8\x03\xd0\xb4\x3c\xf0\x2d\x86\xe0\x26\x74\xd1\x43\xdc\x3f\x10\x8e\x22\x56\xfe\x4d\x2a\x85\x42\x1d\x95\x8c\xcc\xa6\xeb\x5e\x46\xa3\xf3\x7d\xec\x87\xdc\x10\x8b\x1c\x05\x1f\x1d\x6f\x26\x05\xfa\x82\xa7\xdc\x86\xbc\xa0\xc5\x7b\x50\xb0\x47\x97\xde\x20\xfd\x03\x68\x84\x5b\xc1\xbb\x3c\xc8\x5e\x16\x29\x9c\xbd\x0d\xe4\xc1\xd0\xa9\x9f\xa4\xf6\x37\x5a\x59\xb6\x84\x97\xca\xb0\x9f\x60\xbf\x84\x05\x2c\xf6\xd5\x3e\x70\x4c\x64\xeb\xb7\x12\xf8\xd0\x92\x05\x35\x98\x5a\xf4\x88\x0c\x10\x1e\x19\x59\x40\xbc\xa9\x3a\x86\x2e\xc6\x03\xdd\x62\x04\x43\x58\xf2\x85\xdb\xdf\x4e\x20\x5e\x86\x3c\xb5\x5e\xa1\x47\x5a\xa5\xfb\xa1\xcf\x37\x9d\x8f\x7e\x4b\x0b\x51\x02\x5e\xf3\xe7\xf3\xf9\xf8\x14\xd4\x1e\x69\x8e\x91\xc3\x17\x8c\xb8\xf1\x75\xf4\x1e\xb8\x6c\x50\x81\x3d\x86\x2a\xd0\x05\x93\x2c\x64\xa5\x47\xfb\x01\xbe\x25\x31\xe9\xd9\x7c\x6f\xae\x0a\x6b\xd6\x93\x3e\x6e\x14\xd7\xe2\xbd\xc0\x21\x6c\xcf\xc5\x05\xb3\x7c\x32\x4e\x89\x9b\xc6\xa8\xbf\x90\xdc\x89\xb0\x10\x8f\x75\xaf\xd5\xf0\x4a\x52\x8a\xa3\xd1\xb2\x96\x03\x37\x32\xe0\xac\xbb\x05\x41\xe9\xce\x7d\x5c\x25\xa7\xbc\x8f\x6a\x35\x72\x50\x38\x4c\xe6\xc3\xae\x84\x5e\x86\xe9\x81\xe4\x69\xc6\xc2\x1c\x3b\x5a\x33\x4a\xd6\x4d\x9e\xab\x8e\x5b\x08\xfc\xda\x22\x49\x1b\xbc\x64\xea\x23\x47\x85\x4e\xb9\x45\xe6\x8c\x09\x9e\xd9\xf5\x3a\x02\xb2\x70\x02\xab\xb9\xbd\x0e\xb6\x16\xae\xc3\x50\x2b\x57\x69\x84\x6c\x2b\xfb\xa3\xbe\x5c\x3b\x14\x78\xbc\xd6\x2d\xd3\xa6\x3a\xc9\x36\xf3\x51\xde\x66\xcb\x3b\xc2\x2d\xaa\x64\xc8\xc7\x35\x76\xef\x14\x82\x82\x2f\x3b\x3a\xd0\xc5\x9d\x13\xc3\x21\x9d\x4e\x1b\x2c\xac\xe7\x24\x43\x09\x14\x06\x36\x85\xc3\x45\x89\x7e\x14\xec\x77\x64\xfc\x1c\x75\x5b\x31\x1d\xdf\xee\x3d\x69\xfa\x81\xde\x3f\x27\x98\xf2\x34\x43\x1e\x07\x0f\xc6\x97\x65\x87\xf7\xb5\x82\x76\x7e\xf5\x54\xfe\xd4\xdb\x6b\x42\x35\xbd\xaf\xb2\x65\xb4\x33\xd5\x77\x79\xe8\x8f\xa0\xec\x5b\x4c\xe2\x85\xa9\x3a\x42\xe8\xfa\x0f\x21\x85\xcd\xbf\x4e\x75\x4a\x7c\x52\x98\x74\xa8\xbe\x4f\xae\xf1\x52\x3a\x48\x55\x3e\x86\x64\xaf\x95\x6a\x0d\xc4\x72\xcf\xfc\xc3\x62\xe9\x8a\x5b\x04\x70\x57\xcd\x14\xc0\x82\x1a\xbe\xac\x23\xa7\xf4\x1a\x9e\x25\xf6\xf8\x25\xef\x69\x99\x31\x54\x92\x66\xa9\xc0\x23\x9c\x19\xe4\xd2\xe7\xd5\xad\x7c\x72\xd1\x33\x26\x5b\xad\x40\xc5\xf0\xc4\xee\xb7\xe8\x2a\x70\xe9\xa6\x68\x05\xce\xb4\xd0\xb2\x09\x75\x30\x81\x86\x23\x13\x4e\x4e\x6a\xca\x8c\xdb\x49\x7b\x4a\x5b\x01\x62\x90\xb7\xe9\x2d\x95\xac\x99\x6e\x35\xe1\xe9\x38\xb1\xef\x21\x96\x5f\x16\x05\x7f\xbc\x6e\x63\xfe\xb1\x88\x92\x9e\xdd\x3f\xe0\x51\xa5\xdd\xcd\x7b\x5f\x6c\xfa\x51\xf8\x79\x89\xce\x3b\xa0\x01\x70\xa7\x19\x23\xf6\x00\xe9\x1e\x07\xa6\x8f\x5d\xd1\xe6\xc2\x89\xda\x4d\xc2\xec\x29\x73\xf5\x30\x8c\xfc\x78\xd1\x1c\x93\xec\x39\x2b\xe0\xad\x6f\xaf\x1d\x1d\x0f\x1d\xc4\x68\x87\x69\xd4\x86\xa1\x6b\xbf\xa4\xa2\x06\xd1\xf1\x0d\x03\x22\xc8\x5b\x72\x09\x22\x63\x8a\x45\x2b\x33\xa4\x84\x50\x97\xb5\xcf\xc1\x90\xfa\x04\x37\xf0\xdd\x2f\x5b\x88\x28\x1e\x32\xee\xf8\x76\x98\x0f\x3e\x1c\x22\x5e\x7a\x23\xc0\xe0\xa7\x5c\xa2\xc4\xde\xe5\x28\x3d\xa3\x9a\x2f\x39\x4a\x0b\x88\x4c\x82\x2e\x20\xeb\x5e\x8b\x02\xba\x08\x85\x71\x4f\x25\x44\xff\xdf\xf3\x6c\xff\x47\xf8\x5a\x1b\x33\x8b\x36\xf0\x7f\xef\x7d\x9a\xda\x1d\x28\x30\xcf\x28\x21\x27\xb9\x28\xf5\x85\x0f\xba\xd8\x01\xda\x8c\xf2\x2d\x72\x39\xc3\x47\x2d\x0a\xd4\xaf\xad\xa6\xcb\x96\xe9\x6c\x75\xd6\xf4\x9c\x9f\xa3\xd2\x21\xb6\x18\xa3\x3e\x1f\x58\xa9\x1c\x97\xe9\xb5\xb2\x6a\x23\x7a\x11\x8c\xd3\x46\x19\x32\x02\x27\xfd\x2b\xd6\xaf\xc4\xde\x2f\x0d\x22\x6d\x7d\xe6\x15\x73\xcf\xa2\xfa\x8a\xf9\xba\x3e\x77\xc4\x01\xc3\x3a\xb8\x9f\xe8\x4f\x7f\x7f\xd5\xff\x1f\x57\x37\xef\xc5\xab\x16\x3d\x9e\xb8\xd6\xaf\xd3\x20\x93\xdf\x2b\xf9\xa3\xd7\x37\xee\xb7\x83\xf3\x65\xec\x20\x58\x68\xe8\x19\xb5\x34\x0d\xd8\x70\x72\xdc\xa4\xe4\xf6\x67\x96\x0b\xfe\xe5\xbd\xed\xcc\x65\xdf\x31\xcd\x97\x4e\x92\x86\x24\x7d\xf7\x43\x43\xea\xbf\x50\xe5\x58\x9c\xfb\xbf\xdb\xfb\xc6\x1c\x38\xd5\x32\x8c\xec\x51\x16\x75\xe8\x82\x81\x7d\x2b\x01\x21\xc8\x84\x30\xb4\xa8\x66\xf8\xcf\x8c\x2f\xf8\x2f\xf2\x9f\xae\xd2\x7f\x91\xff\x44\xc8\xff\x0a\xfa\x07\xdb\xdb\x7e\x09\x6a\xb2\x29\xab\xdf\x74\x6b\xf7\x42\x64\x1b\xdc\x47\xdf\x0a\xd2\x89\xbb\xa9\x0d\xac\xb1\xa3\x24\x60\x66\x14\xf4\x9c\x20\x1b\xda\xdc\xe1\x38\x72\x43\x81\xd9\x9f\x3e\xac\xfe\x81\x10\x23\xd3\x00\xb3\x60\x36\x74\xc9\xaa\x13\x75\x77\x25\xfa\xd6\x42\x96\xe2\xb1\xf6\x72\x50\xad\xa1\xc3\xb8\x11\x3c\xab\xfe\xb5\x0a\xdf\x6a\x5f\xa7\xb7\x0d\x3e\x7e\xbb\x46\x07\x4c\xff\x1e\x04\x69\x68\x40\x79\xeb\x49\x00\xc6\xf0\xd8\x3f\x9e\x0d\x05\xc7\xa5\xad\x92\xac\x7a\xcd\xd6\x82\xb7\x8c\x1c\xc3\xf4\x67\xd7\x1b\xbe\xe1\x81\x6b\xaa\x55\xb5\x71\x57\x5c\xca\x77\xe6\x1d\x50\x95\xe6\x7f\xe1\x92\x0a\x9f\x56\x0a\xb2\x14\x39\x66\x3e\x8b\x15\x9c\x5a\x94\xec\xd2\x67\x85\x5b\x53\x83\x0d\x82\xb3\x3f\x28\xaf\x7c\x03\x59\x18\xf3\x86\xe5\xb1\x60\x31\x9c\x18\x26\xf6\x0a\xfa\x26\x6f\xd1\x80\xf6\x80\x86\x77\x5e\x14\xcb\x65\x44\x78\x56\x8f\x56\x50\x1c\xb2\x38\x0d\x94\x9c\xee\x7e\x91\xbb\x9b\xbb\x2b\xbb\xbb\xd1\x7b\xd0\x91\xf7\xc6\xa0\x12\x99\x86\x2e\x85\x2e\x00\x27\xe6\xd4\x06\xcb\x36\x22\x49\x2a\x34\x70\x05\x85\x94\x82\x98\xf0\x78\xaf\x27\x54\xbb\x99\xfa\x8b\xea\xf3\x54\x2d\x7a\xd1\xe5\x51\x2d\x64\x8e\x05\x74\x59\x20\xb0\xbb\xd1\xd1\xf7\xf4\xbe\x0e\x83\x29\x26\x9a\x18\xc4\xb8\x66\x7b\x70\x18\x7a\xd1\x07\x75\x29\x42\x65\xde\x87\x83\x68\x76\x37\x25\x61\x84\x44\x61\x18\xaf\x06\xe3\x85\x1e\xb7\x36\xe7\x55\x02\x48\xf6\xd2\x0d\x1b\x2b\x5b\xf9\x8c\x32\x0c\x3e\xd5\x68\x0c\x01\x86\xf1\x28\xbd\xaa\xa0\x78\xf6\x93\xfd\x36\x6f\x24\x0f\x07\x48\x31\xb2\x09\xbc\x66\xec\x23\x92\x2f\x49\xdc\x99\x9b\x23\xd7\x0a\x1b\x0c\x13\x63\x9c\x08\x37\x31\xa2\x9f\x0f\x95\xb2\x17\x41\xef\x9e\x6e\x7e\xb7\xdf\x4d\x99\xc6\xcd\x35\x0f\x22\x3e\xa6\x01\x81\x99\x44\x45\x12\x48\xbd\x7c\xc0\xd7\x88\x12\x83\x2d\xaa\x16\x06\x27\xe8\xed\x1f\xc4\x88\x84\xa3\xdc\x31\x42\x6c\x78\x46\xde\x72\xa2\x60\x57\xec\xe7\xd5\x28\x9c\x3a\xa2\x05\x45\x08\x3b\x3d\x66\x40\xc1\xc4\x10\x58\xb0\x3f\x63\x52\x44\x7c\xe6\x9d\x02\x4b\xef\x0e\xde\x56\xc3\x1b\xcb\xb5\x6c\x4b\x0c\x17\xd1\xa5\xd2\x52\x77\xf7\x36\x7e\xa3\xe3\x4b\x43\x52\x58\x4e\xe8\xa1\x27\x3b\x9b\x3c\x75\xe4\xa1\xb7\xe8\x21\xff\xe6\x79\x5e\xaf\xe2\x46\xd3\xb5\x7d\x7d\x45\x0a\x80\x3a\xd1\x49\xfe\x68\x73\xea\x75\x73\xd9\xf0\xa6\xde\x6d\x0a\x7d\x2a\xcc\xdd\x49\x4f\x7c\x30\xa2\x62\xde\xf2\x29\xcb\x68\xf1\x3f\x77\xbe\xee\x9d\xaa\x15\x46\xd8\x43\xf7\xcd\xbd\x60\x8a\x87\x5b\xf9\x5d\x49\xe6\x56\xdc\x62\x78\x22\xd0\xf0\x86\xb7\xb3\xa3\x60\x52\x0e\x14\x8d\xdf\x5d\x81\x1a\xbe\xdd\xbd\xe7\x29\x70\x66\x03\x0f\x4f\x1c\x93\x16\xb5\xa8\x5b\x65\xc9\x8b\x17\xac\xd8\xd0\x3e\x8e\x4f\x06\x86\xd4\x87\x71\x84\x0b\xef\x0b\x0c\xfc\x18\x6d\x2b\x92\xb5\x41\x08\x9b\x16\x4c\x89\x30\x83\xef\xed\x75\x07\x8a\x75\xff\x00\x56\x6a\x97\x27\x37\xc4\xf4\xcb\xdd\x21\x49\xb4\xac\xfa\x51\xaa\x82\xa9\xf3\x8e\xf7\xb7\x7f\x2c\x5a\xf3\x4d\x26\x96\xd3\x16\x58\x74\xa4\xd7\xaf\x43\x86\xc7\x5c\x72\x8f\xad\xe4\x77\xc3\x11\x9a\x5f\xc4\xeb\x3f\xc7\x26\xe5\x89\x84\x77\xd9\xf2\x36\xca\x82\x6d\x8e\x83\x6c\x66\x62\x6f\x53\x17\x56\xe1\x68\xa3\x11\x4c\xc3\x7d\x3e\x95\x43\xd0\xa3\x30\xda\xb1\x56\x4c\xdd\x33\xde\x01\x45\x57\xc5\x89\x2b\x9a\x4d\x4f\xca\xb1\x49\x9f\xca\xe4\x5e\xf0\x3d\xfe\xf8\xc8\xab\xc1\x27\xf6\x58\x1f\x78\x0c\xcc\x17\x7b\xe8\x72\xf9\xf0\x5b\x72\x44\x49\xb3\x4e\x5d\xb0\xe9\xf9\x49\xe3\xd8\xa7\x44\x99\x12\xae\x70\x58\x2c\xf8\x7c\x4d\x0b\x8d\x3b\x24\x6a\x4e\x81\xe1\x1c\xf7\xb8\x18\xcd\x6e\x1e\x3e\x17\xef\xbc\xb4\x3e\x41\xc0\xf4\x9e\x71\xdb\x79\xb9\xc4\x97\x6c\xb1\x56\xaa\x4d\x9a\x2f\xc7\x55\x94\x3b\x01\x34\x5f\xfe\x4a\x61\x8b\xc4\xbf\x1f\x41\x20\x36\xf2\xea\xbb\xb3\xd7\xae\x97\x81\x58\x66\x79\x9b\x9e\x1b\xc8\x8a\x2f\x78\xe3\x18\x6c\x3d\x87\xd0\xda\x8f\x2c\x25\x92\xa1\x73\x52\xb2\xb8\x55\xc2\xd0\x23\x6f\x26\x0b\x0f\x16\x29\x4a\x37\xbe\xf5\x40\x30\xd2\x85\xdb\xf3\x9a\x77\x21\x0d\x1b\x5c\x25\x90\x76\x95\x22\x85\x70\x14\x18\x1c\x88\x31\xdf\x38\x5c\xa7\x03\xbf\x3f\xc4\x67\xa9\xee\x4b\x21\xba\xbe\x7a\x4c\xbf\x7e\x04\x62\x6b\x2f\xa6\x85\x22\x3f\x6d\x69\xf7\xe6\xf3\xb7\x77\x33\x8f\x80\x23\x77\x76\xe9\xa7\x13\xeb\x64\xc6\x10\x0b\x0c\x76\x82\xb1\x3f\x60\xd7\x96\x56\xfb\x60\x29\xe0\xe8\xa4\xbd\xbd\xee\xc0\xc4\x06\xdc\xbf\x7f\xa5\x69\xc4\x61\x04\xc3\x5e\xfe\xb7\x84\xe0\x07\x28\xac\x6f\x62\x6e\xf1\xc1\x42\xf0\x0b\xa6\x87\xea\x35\x33\x96\x9c\x46\x4c\x73\x81\x68\xb2\x42\xb9\xcb\x5c\xaf\x45\xda\x42\xc8\x10\x68\x6c\x21\x55\x1a\xba\xb6\xf8\xac\x0a\x8f\x62\x2d\x6e\xc5\x90\xf2\x4c\x7e\xa8\xc3\x30\x52\xc0\x34\x5b\x8f\xa3\x7c\x82\xdb\x7e\xd0\xc0\x05\xa7\x4c\x65\xe4\x04\x02\xe5\x4d\xad\x82\xf4\xee\x08\xbb\x1b\x34\x82\x0d\x56\xab\x86\x4a\x3e\x30\x78\xa9\x0c\xf6\xa4\x7b\xc8\x69\x16\xe7\x2e\x98\x25\x5a\x66\x04\xef\xa8\xbd\x0f\x38\x23\x3e\x72\xe9\xc3\xb4\x5f\xa0\x91\x14\x56\xdf\x1b\x82\x8f\xed\x0e\xe2\x15\x98\x6c\x59\x16\x40\x7d\x32\xe3\xc2\x80\xa3\xfd\x95\xa3\xc0\xe7\xb0\x78\xb6\xa6\x40\xcc\x46\x49\xc3\xaa\x6f\xd8\x05\xdd\x94\x0a\x57\x0f\x82\x46\x58\x26\x1a\xbb\x4d\x02\x6d\xe8\x00\x9e\x1c\x98\x26\x73\x02\x60\xa1\x1a\x08\xa8\x7c\xd1\xb0\x7d\x7d\x3e\xee\xb7\xa7\xdc\xe6\x54\xed\x29\xb7\x8f\xb8\xc4\x4c\x8d\x86\x17\x2f\xca\xab\xdd\xcd\xee\x7d\x50\x5d\xc5\x29\xc4\xa4\xa2\x59\x46\xa0\x43\x76\xdf\x05\xc3\xef\x9f\x91\xda\x14\x37\x4d\x32\x99\x69\x47\xa2\xcd\x79\x21\xad\xb2\x81\x4d\x12\x24\x3f\x22\x0c\xe2\x95\x62\x08\xb5\x90\x05\xeb\x3c\x44\x69\x67\x98\xff\xa7\x8d\xfe\x7e\x8e\x12\x64\x01\xec\x7d\xe2\x32\x38\xee\xea\xee\x2a\x3d\x25\x1e\xc5\x03\x39\xfd\xd6\x08\x66\xce\x4c\xd3\x05\xca\x52\x9e\x37\xde\xd3\xed\x05\x2c\x21\xca\xb6\x47\x10\xe3\x6c\xef\x81\xa4\x5c\x6a\x1e\x2a\x60\xb6\xc7\xd5\xf9\x1a\x55\xbc\xbe\x26\x5e\x17\xb2\xab\xce\xaf\x39\x64\x6e\xef\xd8\xd0\x50\x49\x7d\x46\x43\xa0\x1c\xc1\xab\x80\xb7\x8e\xac\x94\xf7\x51\xa1\xc5\x84\xd0\xa8\xa0\x49\x73\x37\x60\x74\x54\xf0\x38\x78\x02\x14\x09\x31\x44\x98\x5f\xd2\x70\x47\xc6\xa5\x26\x9f\xfe\x8f\xb3\xef\xbe\x3d\x22\xef\x3e\xbf\xbc\xbc\xfc\xdc\x49\x90\x9f\xf7\x5a\x30\xe9\x5a\x6b\x8e\xc8\xff\x7a\xf9\xe2\x88\x5c\x2c\x3e\x4b\x61\x61\x16\xe0\xd8\xaf\x33\x0b\x4b\x44\xb2\xd0\x99\xfc\x33\x2f\xc2\x6c\xd4\x1d\xa4\x70\x38\x7c\x2b\xfa\xc3\x08\xba\x65\x77\x20\x33\x05\x6d\xf1\x58\xe0\xd7\x16\xfd\xc8\x43\xb2\xbc\x10\x8e\x36\x63\x96\x20\xa1\xd3\x53\xbe\x15\x7c\xfc\x35\x1c\xdc\xad\xe0\x47\x7e\x15\xfe\xd7\xe7\x6e\x4d\x3f\x3f\xe3\x2b\x49\x6d\xaf\x59\x58\x91\x05\x92\x0f\x88\xab\xec\x16\xf7\xec\xd9\xf1\xef\xfe\xf5\xbf\x93\x75\x47\x97\x64\xcd\xde\x35\x7c\xe5\x48\xff\xb0\xbb\x69\x77\x37\x81\x5b\x8a\x19\x33\xf7\xb7\xb0\x11\x74\xd9\x1e\x4e\xbb\x3c\x06\xe4\x4b\x25\x61\x3e\xce\x20\xcb\xc2\x81\x09\x41\x58\xf4\x63\xfc\x9e\xc9\x4c\x33\xcc\x2e\x58\x16\xf8\x1e\xb7\x4c\xe4\xa1\xe2\x66\x5a\xb2\xf6\x0f\xe3\x3a\x10\x04\x54\x49\x31\x54\x6f\xa8\x70\xb7\xe7\x92\xfa\x99\xc2\x8b\x32\xcc\x8f\xdb\xf5\xf3\x71\x65\xc3\x64\x53\x33\x77\xb5\x80\x07\x55\xcc\x39\xf9\xcc\xcb\x81\x59\x94\xae\x18\x57\xbd\x43\x43\xb3\x51\x4b\x68\x57\x52\x7d\x0b\x0f\xc4\x09\x34\xea\x95\x40\xfc\x2a\xa7\xd8\x57\x44\xab\xe8\x68\x6d\x38\x59\xec\xf5\xd2\xfb\x81\x43\x0b\x83\xe0\xfd\xe9\x8c\xfe\x9a\x93\x25\xa3\x56\x43\x78\x0b\x64\x7a\xc6\x55\xca\xf8\xb0\x13\x85\xf9\xe3\x50\x88\x9b\x5b\xec\x94\xb4\x5e\xd5\xab\xde\xac\x27\x17\xb2\x54\x4f\x50\x10\xf6\x37\x13\xc0\xe3\x00\xa8\x93\xc5\xf9\xd3\x59\xf4\x94\x3f\x42\x1f\xe8\xf0\x23\x73\x66\x0e\x9f\x62\xd4\xc7\x86\x1f\x41\x94\x06\xf8\xea\xfe\xe8\xf0\x71\xc2\x4f\x54\x2e\x37\x1f\x8d\x66\xef\xc8\xeb\x38\x3b\x22\x55\x8b\xe9\x69\x31\x66\x40\x03\x7f\x91\x86\x12\x88\xdc\xb7\x2f\xe5\x86\xc9\xc8\xcc\x6d\xfc\xdd\xb0\xfb\x2b\xdb\x3b\x31\xfb\x06\x34\x0e\x2a\x33\xc6\xf8\x27\x8d\xdb\xa7\x5b\xfb\xa8\x91\xb7\xfb\xe6\xe4\x13\xd3\x01\x5b\xce\xa4\xe7\xfe\x03\x13\x81\x0f\x4c\xc1\x01\x1e\xd7\x12\xdc\xe0\xf7\x76\x7b\x01\xe9\xe5\x66\x25\x63\xf0\x00\xcf\xd1\x16\xc3\xf4\x48\xec\xc9\xaf\xd8\xa0\x0f\x6d\x5b\xbd\x01\x07\xd9\x03\xa5\xe5\x8e\x85\x64\x0c\x0e\x5a\x40\x48\x11\x6f\xad\x97\xcb\xa2\x10\xff\x15\xc3\xbe\x8e\xbf\x66\x41\xc9\xc3\xea\x05\x51\xd3\xdf\xda\x59\xaa\x9e\x86\x59\x3a\x40\x8c\x52\x7a\x1f\x19\x77\x0c\x01\x70\x03\x85\x5a\x23\x13\x00\x26\x14\x1b\x9e\xdf\x98\x12\x99\x25\x4f\xa6\xf8\x63\xf8\xa2\x9b\x5c\xb6\x39\xa0\x5f\xf2\x34\xe8\x40\x37\x05\xd1\xc2\x00\x22\x41\x9a\xe1\x70\xf0\x65\x26\x70\x15\x14\x00\xf0\xf0\x57\x2e\x9c\x9b\xf1\x85\x0b\x91\xcf\xe0\x26\x4a\x7c\x12\x6a\x5b\xb7\xb4\x4c\xda\x7b\xe6\xa0\x80\x39\x60\xd2\xb2\x95\x46\x03\x13\xd9\x47\x53\xa9\xb2\xd1\x86\x9b\xa5\xd2\xcd\x07\x9b\x3d\x45\xb8\xbd\x86\x0f\x36\x2b\x57\x96\x8a\x0f\xa3\x7b\xea\x01\x3f\xa6\x61\x9c\x80\x03\x89\xb5\xc6\x60\x8d\xea\x28\x97\xd5\xb1\x93\xd0\xa7\x6e\xff\xe5\x9a\x4a\xc9\x84\x13\xcb\x68\xa1\x72\xde\x08\x35\x60\x82\xeb\xb4\x58\x45\xd6\xb3\x49\xe0\x98\x01\x7a\xf1\xf5\x77\xda\xd2\x96\x3c\x55\x76\xb9\xa6\x9f\x7c\xf5\x78\x91\x25\x06\x55\x50\x94\x32\x9b\xa5\x50\xad\xa8\x00\x30\x98\x2a\x35\x39\xa1\xfa\x9c\xa8\xa3\xd4\xab\x98\x64\xa7\x90\xbf\x31\x07\xf4\x81\xc5\x88\x68\x4e\x0c\x69\x4f\xbb\x98\xa0\xc3\x5d\x1b\xab\x8c\x92\x72\x4b\x32\x44\xf6\x45\xb5\xbd\x0f\xa0\xef\x58\x0d\x08\x7d\x99\x86\x0d\xf8\x7a\x23\x8b\x71\x72\x6f\x4c\x95\x14\x53\xed\x0b\xe1\x3d\x28\xd2\x63\xaa\xaa\xf3\x45\x79\xc6\xf4\x9a\xca\x95\x7f\xa0\xdc\xc3\xcd\xab\x3d\x3b\xd6\x8c\xdf\xa3\x4a\xef\xac\xa9\xe1\xee\xe5\x88\x8e\x40\x65\x1a\xeb\xfd\x19\xf1\xd3\x71\x28\xa3\x75\xde\x4c\x4a\x6b\xbd\xe7\x20\x30\x39\x9a\xcc\x4f\xa0\x58\xd4\xbd\xdc\xd5\x93\xb5\x0f\xa7\xb0\x9e\x5e\x6f\xaf\x32\x9b\xda\x26\x3e\xa1\xdb\xbd\x15\xd3\xe3\xe6\xf4\x14\x95\x8a\xb4\xc0\x30\xfd\x73\xf3\x5a\xdf\x87\x5e\x7c\x5c\x98\x9a\xab\xfb\xb5\x68\x79\x36\x93\xc4\x35\xfe\xda\xc4\x28\x93\xcd\xdd\x93\x1c\xa5\xe1\xe7\xe7\x73\x0c\xf5\x5e\x1b\xd5\xeb\x25\x44\x61\x91\xf4\xf6\x8a\x92\xa7\xbb\x5f\xb6\xd4\x22\xc8\x86\x6a\xb7\x73\xd9\x82\x5d\xb0\x41\xe2\x37\xef\x35\xec\xfd\xf3\xf1\x1b\xb8\x91\x83\xca\xfa\x82\x72\x01\x09\xa6\xff\x88\xb6\x05\xa0\xa0\xc3\xe7\x4b\xf2\x46\xb5\x73\x84\x37\x6b\x75\x59\xbb\xbf\x20\xd9\xb5\x29\x80\x4f\x83\x32\xca\x07\x1d\xcd\x6a\x98\x8d\xe0\xb6\xc6\xb8\xf2\x31\xa2\xfc\xee\x06\x22\xaf\x67\x60\xbd\xe4\xe7\x9c\x35\x08\xe8\x1d\x5e\x79\x9b\x87\xd5\x47\x58\xd7\xb5\x0f\x51\x10\x44\x1b\x48\x04\x93\xe2\x00\x80\x7d\x20\x68\x65\x32\xe9\x47\xa4\x6c\x68\x0f\x1b\x4f\x16\x52\xf1\x45\x51\x0a\x2f\x14\xb1\xd0\xcf\x3b\x97\xd5\xc9\x9f\xbe\xc5\x1f\x10\xb6\xbd\x0c\xfd\x9e\x67\xdb\x46\x20\x88\xeb\x6a\xfa\xcd\x46\x33\x03\x94\x02\x42\xb8\x9e\x53\xdd\x82\x0b\x78\x8a\xea\x9f\x59\xa1\x49\xc2\xd7\x5d\xe4\xaa\xb1\x1d\xab\x54\xdd\x51\x39\xf8\x88\x07\x27\x3d\xb4\x11\x0d\x3e\xa1\x25\xd4\x21\x60\x90\xd8\xcc\xe4\x06\xbc\xd7\x0b\x87\xe0\x05\xdd\xe6\x01\xe2\x57\x21\x44\x2c\xb8\x5e\xcc\x42\x36\x84\xf9\x54\x56\x84\x50\x86\xf9\x2e\x3c\x6b\x09\x8f\x6a\x08\x13\x01\x1a\x4d\xcf\x6d\xf5\x9a\x1a\x41\xdb\xf8\x71\xa3\x59\xa8\xb4\xfb\x9b\xdc\xab\x03\xee\x9f\x31\xfc\x7c\xf8\x4a\xd7\x8c\x36\xd5\x43\x03\x69\xdb\x3d\x33\x0a\x16\x00\xf9\x4b\xec\xc3\x26\x5b\x66\xbf\xbf\x43\x03\x78\x4c\x20\xc1\x2c\x9e\x95\x96\x3c\x57\x4d\x5f\x8c\x25\xf9\x91\xee\xfe\x8e\x5b\x8d\x0c\x5c\xb2\x2c\x6c\x7a\xe8\x1a\x0d\x98\x3c\x7f\x3c\x2f\x70\xcf\x5a\x39\x05\xce\x36\xdc\x61\xc1\x67\xdc\x31\x91\x02\x95\x9f\x4e\xc4\x18\x19\x76\x4b\x02\xe9\x9e\xe1\x89\x24\x86\x7b\x40\x46\x12\xf3\x3a\xa1\x4d\x93\x4f\x94\x86\xef\x45\xbd\x4e\x28\x58\xba\x42\x65\xdd\x49\x92\xac\x21\x00\x53\x02\x00\x9d\xd2\x33\xd6\xb0\xf3\xa2\x96\x67\x55\x8a\xd4\x23\x99\x78\x8e\xb6\x45\xde\xfe\x04\x46\xee\xd3\x99\x18\x0c\x71\x9d\x1c\xa5\x63\xa3\xe5\xdd\x1a\x3e\xef\xdd\xa7\xa1\x20\xf9\x89\x65\x5b\x05\x88\x40\x48\x7f\x10\xbe\x0b\x45\x1d\x2b\xe9\x75\xc8\x12\x9c\x85\xe6\xf3\x89\x1d\x16\x6f\x1e\x37\x98\xdd\x2f\x69\xeb\xec\x6e\xf4\x14\x78\x92\x5b\x3c\x20\x3c\x75\x43\x72\xd5\x8e\x91\xb5\x3b\x32\x1a\xde\xdc\x53\x8a\xd4\x14\xe1\xab\x41\x87\xcf\x6d\x42\xa4\x74\x10\x8e\xfd\xf5\x0b\xc1\xcd\x3a\x9c\xa8\xdd\x0d\x79\xe3\x77\x52\xda\xad\x90\xaf\x32\x9d\x1e\xd0\x85\x79\x97\xca\x62\xb3\x85\x93\x94\xa0\x4e\xc7\x47\xc7\x4b\x27\x01\xf2\xa4\x27\xa9\xe3\x33\x2e\x4a\x38\x08\xbf\xe2\x3d\xb3\xf0\x55\x77\x5c\x1c\xa7\x34\xce\xd0\xde\x3b\x58\x3f\x84\xf7\xaf\xa7\xdc\xa6\x3d\x04\x87\xe6\xd7\x3d\x78\xed\x75\x1e\xae\xea\x80\xe3\xe4\xed\x3c\x3e\x0b\xa5\x0f\x26\x6e\x87\xe2\x70\x80\x0f\x4c\x32\x96\x0a\xae\x69\x19\x93\xb5\xd7\xa4\x77\xaa\xcf\x63\x9c\x79\xcf\x79\xc1\x63\x24\xed\x88\xbe\x0f\x5f\x65\xaa\x10\xb6\x0a\xae\xf1\x1f\x95\x5e\xbd\x9d\xc1\x73\x31\xe4\x6a\xc0\xa7\xe5\xfc\x6d\x18\x65\x14\x07\x71\xde\x0b\x71\x18\xec\x35\xed\x12\xe8\x5e\xf2\xcb\xdd\x2f\x7a\xb5\xbb\x71\x48\x7a\x4b\xcf\xdb\x6b\x03\x59\xf8\x8a\xac\x97\x7a\x1e\xf2\x18\x29\xbd\x2a\x9b\x8f\x2a\x3d\xc8\x6e\x14\x5c\x4f\x9f\xe6\x89\x56\x36\x4c\x6d\xc0\x8c\xca\xfb\xd0\xcf\xb8\xbc\xe0\xd6\xb1\x27\x1d\x53\x12\x02\xee\x84\x84\x76\xa7\xf4\x82\x59\xf2\xc4\xce\xd0\x8b\xe4\x09\xa6\x85\x9d\x41\x16\x88\xba\x63\xdd\x82\x69\x53\x79\x8f\x15\xff\x15\xb2\xac\x72\xab\x40\x62\xf6\x89\xba\xf2\xac\x4b\xae\x25\x1f\x6d\xb8\xe5\x9b\x84\xaf\x9b\x8e\x71\x98\x05\x07\xeb\xb3\x35\x3b\x58\x98\x36\xf8\x76\x10\x30\x4c\x26\x1a\x0d\x42\x1a\x50\xc7\xa7\x5a\x70\x7f\xc1\x04\xaf\x6b\x93\x3f\x71\x2e\x7a\xb4\xf8\xf5\x56\xba\xb9\x11\x5a\xec\x29\xa3\x35\xd8\x10\x91\x8e\xc2\xb4\x2d\x50\xd6\x3f\x20\x60\x91\xab\x0c\x8f\x1d\x02\x1f\x39\xe8\x15\x5f\xa0\xc0\x03\x16\xae\x98\x89\xdc\x44\x4b\x40\xcb\xf5\x1f\x66\x53\xe9\xee\x8a\xa5\xcd\x72\x00\xc4\x03\xc0\x0d\x5a\xb2\x7e\x74\xea\xbb\xfd\x16\x31\xf5\x1d\x36\x9c\x02\x4a\x60\x33\x69\x5e\x23\x4a\xf8\xf0\x89\xd3\x00\x33\x97\x21\x33\x46\x25\x72\xcb\x87\xdd\x9b\xcf\x92\x81\x50\x2a\x8c\x27\xa8\x72\xa7\xe5\xf6\x67\xc3\xbb\xe2\xf1\x11\x7c\x63\xa6\xbc\x62\x84\x5a\xa2\x53\xf4\x0b\xd5\xc2\x10\x0f\x9a\x29\xdd\xef\x30\x53\x02\x47\x52\x56\x4e\x5e\x6c\xe0\x23\xec\x9a\xbc\x07\x8e\xd2\xab\x7b\x1d\x70\xca\x54\xd0\x41\xae\xca\x1f\x45\xc7\x3e\x3a\xa4\xa1\x87\x9d\x71\xfc\x30\xe8\x05\xb5\x54\x4f\x8e\xa2\x97\x04\x4b\x0f\x0c\x67\x94\xa7\x61\xcf\xee\xaf\x68\x6b\xd2\xf6\x2f\xa4\x27\x3e\xe9\xc9\x87\x81\xfd\xbc\x14\xf3\x3c\x36\x8a\xdb\x17\x28\xc1\x3d\xf7\x23\x2d\xfe\x3e\x39\x64\xda\x35\x9d\x47\xf9\xf6\x1a\x63\xcd\x8e\x11\x75\xd4\x6a\x3f\x0b\xf7\xd8\xba\x2a\x03\x0e\x34\x41\xdd\x37\xb4\xdf\x62\x5f\x92\xbd\xb5\x8f\x9a\x4f\x56\x2e\x61\x36\xf2\x1c\xc4\x90\x5d\xd2\x73\xe0\x51\xe3\x1b\x72\x4e\xe4\xba\xda\xc0\x2f\xce\x67\x33\x4f\xf1\xe7\xfe\xdf\x35\xdf\xd4\x59\x66\xe5\xdd\xdf\x07\x26\x72\xe9\x2f\xe4\xd2\xfd\x32\x56\x44\xc7\x9e\xea\x99\xf7\xd3\x09\xb1\x89\x8a\xd2\x18\x80\x0b\x9c\x7d\x06\xba\x49\xe5\x9a\x5f\x50\xeb\x64\x91\x2d\x13\xe3\xaf\xa1\xda\xc8\x07\x28\xaf\x8f\xff\xd6\x5a\x41\x66\x98\x81\x91\xef\x95\xc8\xb1\x2b\x02\xb7\x96\x95\x00\x3e\x7e\x43\x13\xb5\x2a\x64\x35\x0c\x9f\x8b\x7c\xe7\xe1\xa3\xbf\x5c\xfd\x02\x41\xa6\x92\x18\x60\xd3\xdd\x9c\x20\xd6\x92\x87\xe6\xcb\x71\x0d\xa9\x2e\x83\x83\x62\xbc\x86\xf1\x1e\x9e\xff\x45\x71\xb0\xe9\x73\xfd\xe0\x97\xa2\x6b\xfc\xe4\xf8\xa8\x90\x1c\xeb\x3b\x50\xee\x79\x95\x2b\xdf\x07\xd8\xbb\xe1\x8e\x48\xb9\x57\x24\xe4\x10\x49\xd2\xf2\x10\xbd\x51\x2f\x98\x4f\xad\x38\x04\xd3\x31\xa0\x41\xd8\x45\x91\xa1\xeb\x0d\x24\xdf\x1a\x21\x91\x43\xec\xdf\xb3\xfb\x48\xa8\xb6\x8f\x1d\x01\x5f\x04\x3a\xb8\x10\x93\x7b\xd3\x9b\x35\xa1\x76\x02\x13\x08\x80\x11\x31\x89\x46\xf9\x23\x6c\x72\xa8\x0f\x62\x43\xf7\xfb\x77\xf2\x1f\xcb\x2c\x04\xc1\xbc\xce\x21\x05\xb1\x26\x73\xfb\xba\x0c\xb5\x90\xf5\xb2\x50\x8c\xfa\x2e\x0b\xf5\x14\x84\xd8\xc2\x3a\x7b\x17\x2b\x7e\x86\x1d\x6c\xf6\x78\x91\xb3\x68\x8a\x3f\x49\x0a\x32\x95\x8b\xa5\x1d\x3a\x2a\x18\x70\x82\x2a\xc9\x49\x4c\x94\x53\xfa\x34\x18\x9e\xe9\x64\xbc\xea\xd8\xe3\x13\x58\x44\x60\xdf\x80\x3e\x30\x1d\xe6\xfa\x63\x2e\x64\x84\x0c\x99\xe1\x1c\xe7\x78\xd2\x3b\xbe\x71\x81\x6f\x35\x61\xd1\x1a\x28\xf3\x0c\x69\xea\xcc\x78\x6b\xcb\xbd\x56\x3c\xe9\x46\xa7\x68\x4f\xb4\xf7\x81\x4a\x36\xae\xd4\x7d\x7a\x9e\x37\xa8\x66\x42\x5a\xf7\xdc\x08\xd6\xb3\xd0\xde\x06\x16\x6c\x3a\xc0\x5a\xf3\x5e\xb2\xbe\x8f\x45\xb8\xb5\xff\xcc\x30\x5a\x66\xd8\x18\xcd\xb4\xc2\x73\x9e\x1f\xee\x83\x3c\x29\xa8\xfe\xa3\x3f\x4a\xc3\xd2\xbe\x00\x4a\x91\xe9\x66\xb6\x92\x7f\x19\x47\xbb\x47\x01\xc0\x5e\x26\x6b\xb3\x38\xaa\x19\x59\x18\x53\x84\xdf\x80\x18\x50\x8f\x43\x88\x05\xaa\x70\x18\x1f\x4f\x1b\xfc\x09\x1c\xd3\x85\xdf\x82\x4f\x38\x04\x1f\xc6\xe9\x68\xd4\xf7\x61\x1c\x87\xc2\xfe\x3b\xbc\x2f\x0d\xac\x40\xb9\x90\xb0\x60\xb3\x9f\x86\x26\x22\x75\x00\x53\x68\x10\x01\x73\x53\x68\xd4\x78\xa3\x0d\xf4\xe8\xec\xc4\x46\x87\xd4\xa4\xe9\xf3\xf3\xe3\xed\xb2\xc1\x0f\x2e\xdc\x7c\xa9\x11\xa9\x24\x88\xec\xf8\x4a\xbd\x51\xd5\x93\xd6\xa7\x03\xdb\xbd\xa7\xc2\xe7\xf4\x06\x3d\x8c\x8f\xe9\x53\x66\xb2\x8a\x0e\x1e\x18\xd6\x32\xd7\x51\xcd\x7e\x84\x35\x7a\x3b\x6b\xa8\x59\x2f\x14\xd5\x4d\x95\x27\xff\x9d\x4d\x45\x5d\x98\x05\xc2\x85\x42\xc6\x77\x05\x5b\x8d\xb2\x71\x9c\x41\x3f\x79\x33\xda\xdb\x35\x93\x96\x2f\x43\x58\xa5\x2d\x97\x98\xcc\x49\x9e\xf3\x55\xf5\xc6\x67\x5f\x40\x4f\xd6\x99\xf7\xc1\xa8\xce\x20\xf2\x08\x39\xf1\x26\xd4\x90\xe8\x56\x49\xd7\x76\xc8\x91\x3c\x1b\x85\x0f\x9b\x41\x50\x28\x0c\xc1\xa5\xe4\xcc\x2a\x4b\x45\xf5\x5a\x6d\x04\xed\xbe\x24\x0f\x9b\x59\x1a\xe7\x7c\xd1\x73\xd1\x60\x1c\xae\x53\xa6\x21\x62\xd0\x09\x86\xbb\xcc\x80\xe8\x66\x53\x5f\x30\x5d\xfd\x30\xac\x20\x97\x57\xd2\xf6\x64\x40\x2b\x6e\x1d\x90\xdb\xe1\x55\x16\xd2\xa7\x84\x51\x09\x44\x4d\x42\x20\x3e\x96\x77\x2c\xe2\x03\x37\xdf\xed\xf5\x1e\x90\x7f\xbb\x08\x60\x31\xe4\x7e\x06\x68\x2c\xb5\x8e\x00\xa2\x39\x25\xfe\xdd\x66\xe5\x6a\xc3\xb4\x5f\x40\xef\xf2\xe5\x66\x37\xab\x3f\xb8\xa9\x87\x77\x8d\x3e\x2e\x84\x9f\x74\xff\xb6\x31\xd5\x1b\xce\xe7\x53\xb5\x32\x60\xeb\x17\x3c\x51\x1b\x0a\x51\x71\x1a\x78\xef\x6d\x73\xdf\x87\xf4\x59\x15\xbe\x00\xe9\xfb\x0a\x52\xef\xfa\x87\xa8\xbc\xa0\x01\xbf\x93\xf4\x9b\x03\x72\xf9\x97\xc1\x27\xc3\xce\xbf\xad\xa9\x66\x2d\xb3\xf9\x27\x7f\xa7\xe4\x9f\xc0\x09\xa9\x68\xca\x49\x2a\x25\x84\x19\xa8\x7f\xbc\xcd\xbf\x83\x2b\x7b\x51\x13\x9c\x37\x8b\xaa\xb8\xfa\xc5\x20\x31\x41\x41\x8b\xaf\x57\x25\x78\x61\xdc\x9d\x4d\xe3\x28\x06\x60\x31\x22\xd0\xc6\x15\x93\x03\x86\x13\x68\x5f\xcd\x47\xf8\x02\x4b\x9a\xe1\x52\xe4\x5e\xf1\x75\x8a\xd6\x5b\x54\x06\x4e\xec\xa6\x60\x20\x8b\xd2\x22\xe8\x94\xa6\xa0\xcc\x25\xb7\x4b\xcc\x14\x3f\x59\xae\x7b\x59\xed\xfe\x1a\x49\x5b\xbe\x31\x97\x82\x51\x59\xf7\x72\xc1\x65\x53\x2b\x47\x57\x2a\x6f\x9b\xe8\x6d\x9a\xc8\x77\xc7\xbd\x5d\x3f\x42\x6e\x27\x84\x01\xbd\xaf\x7e\x0a\xc8\x52\xb6\x03\x5c\x5c\x6c\x6c\x9a\x1f\x48\xed\x7a\xb6\x82\x4b\x30\xfd\xa1\x49\xe6\x35\xd5\x13\xdb\xf2\x94\xe2\x06\x9a\x4d\x6f\xfe\x90\x51\xf5\x63\x9a\x89\x68\xbe\xa2\x86\x9f\x67\xce\x15\xa1\xad\x8f\xc4\x10\x2e\x2e\x77\x85\xf1\x8b\x90\xe9\xa8\xc1\xab\xeb\xee\x8a\x5f\x84\x60\x56\x53\x48\x15\x35\x93\x03\xc2\x44\x0b\x1f\x89\x0a\xb0\x05\x72\x85\xf7\x23\x90\xce\xd2\x74\x1c\xd8\x3b\x9b\xc2\x6a\x42\x2f\x2d\x1d\x6e\xaf\xad\xc8\xde\xcc\x3f\xd0\x70\xc4\xf4\xd7\x77\xf0\xa1\x71\x38\xca\xbf\x5a\x7a\xfc\xfd\x5d\xd7\x50\x08\x67\xbd\x81\xf8\x19\xf4\x9e\xc0\xcc\x07\xda\xd9\x9f\xd8\x7b\x1a\x2d\xd5\x63\x45\xf3\xa8\x53\x4a\x7d\x68\x06\xc1\x76\xa8\x10\xb5\x31\x6b\xb0\x16\x79\x34\x37\x66\xfd\x18\x33\x23\xf2\x2d\x03\xb3\x89\x2c\x11\xa4\xf4\x91\xc9\x21\x6f\x27\xdd\x92\x4f\x1b\xde\xb6\xd4\x7e\x89\x3e\x51\x7d\xda\xd2\x99\xc9\x4e\xae\x65\xf9\xec\xde\xde\xcb\x71\x16\x54\x7e\xbc\x99\x33\x24\x90\xa2\x1f\x18\x17\x86\x3a\x7a\x5d\x4a\x92\xc9\x30\x52\x00\x53\x78\x94\xbb\x87\xa0\x24\x16\xcc\xed\x10\x84\xb4\x54\x2e\xd3\x1e\x09\xd5\x73\xcb\x46\x7b\x4f\xff\x93\xeb\x07\xc1\xa7\x42\x16\xbb\x8f\x45\x04\x36\x68\x40\xa5\xdc\x8a\xfb\x56\x96\x39\x42\x5c\x72\xfb\x9b\x0e\x17\xf6\x14\x46\x1c\x23\xb0\xde\xdf\xf6\xaf\x3c\x5f\x87\x16\x37\xb7\x7b\x9e\xe7\x8c\x1a\xe8\xc6\x75\xdd\x6f\x80\x37\x3a\x03\xd7\x3a\xd9\x4b\x72\x3c\xd0\xd6\x52\xf2\x9c\x8a\x8e\xc2\x5b\x5e\xc9\x01\x2d\x7b\xad\x1d\xc3\xbc\x52\x5a\xf5\x96\xcb\x18\xd7\x91\x3c\x0d\x5f\x1e\x95\x3c\x4f\xa8\xd1\xb1\x4e\xe9\xa1\xee\x21\x1e\x6c\xa8\x74\xe2\xd6\xa9\x25\x81\x15\xee\x8a\x9b\x0d\xf8\xcc\x50\x8f\x0a\xd0\x94\x63\x98\x4e\xc1\x5a\xcb\xd0\x89\xc2\x11\x6c\x64\x45\xc9\x9b\xa2\x5f\x5f\x4f\x2d\x2c\x85\xe8\x9e\x4f\x44\xc3\xc8\x13\xc8\xed\xe6\xbb\xcd\x80\x37\x0a\xc2\x01\xd5\x42\xa9\xb6\xdf\x00\xbf\x88\x2c\x1c\x3c\xbe\x42\x12\x54\xf2\xef\x8e\x6f\x44\x99\x65\xaf\x97\x80\x9d\xaf\x19\x51\x7c\xc3\x34\x39\xc6\xf4\xf1\xf7\xd6\x3f\xd7\x6c\xb2\xee\x89\xba\xbb\xa2\xc2\x1e\xaa\x1d\xe6\x76\xcd\xe8\x66\x34\xb3\x6f\xbc\xec\x72\x60\x6e\xa1\xc6\x7d\x53\x14\xeb\x03\x3e\xb7\x57\xfc\x40\x65\xde\x08\x0c\xc5\x02\x71\x58\x3e\xba\x16\x98\xb5\x45\x11\xa8\x6b\x7e\x4d\x65\xff\xf0\xd9\x54\x67\x4c\x2f\x98\xb1\xe4\x04\xdc\x8e\xc2\x23\xce\x87\xdb\x51\x8b\xbf\xb0\xa5\x35\x55\x04\xfc\x96\x19\x89\x8a\x9e\x4c\x28\x50\xca\x1a\xab\xe9\xc6\xb1\xeb\xe0\xe3\x11\xa3\x29\x7f\x60\x6e\x11\xfe\xb7\x4e\x6e\x67\x36\x54\xd6\xc6\xea\x7e\x69\x7b\xcd\x8c\xef\xb8\x9c\xaa\x97\x67\x1b\x2a\x89\x17\xf0\x46\x3b\x6a\x5c\x7f\x12\x83\xfb\x1a\x58\xd2\xe5\x9a\x1d\xc6\xc0\x9d\xb8\x97\xdf\x38\x98\x8f\xad\x3f\x8d\xc1\x3d\x4d\x6c\xb4\x3a\x77\x57\xde\xaa\x5e\xf4\xcb\x96\xd9\x7a\x4d\xcd\xba\xb6\x90\x65\x79\xfa\x40\x03\x18\x79\x46\xcd\x9a\xbc\xa6\x0b\xa1\x4c\x4f\x5e\x41\x23\x68\x87\x96\x78\x82\x65\xdd\x31\x4b\xc1\x26\x6d\xb2\xa5\xa7\xdf\x90\x97\x1e\x20\x67\xa2\xed\x9a\xe9\xda\x8b\x6f\xfe\xb0\x3b\x96\x7a\xb2\x89\x53\x54\xa9\x7a\xf1\xce\x1f\xff\xf1\x10\x25\x7b\xe7\xb9\x93\xe5\xb0\x14\x2c\x24\x1d\x74\xfd\x9f\xee\x7e\x91\xab\xdd\x8d\x29\x04\x59\x10\xc1\x57\x4b\x14\x65\xcf\x14\x20\xfa\xef\x28\xc9\x82\x41\xd7\x49\xb9\x7b\x91\x76\x06\x78\x4f\x20\x5d\xdb\xbd\xc6\x1c\x1a\x13\xa0\x1b\xea\xce\xe4\xbd\xb0\x01\x0b\x04\xf5\x68\x4c\xc0\xf9\x8e\x4d\x15\xb0\xc4\xe1\xa3\xe6\x63\x0e\x0e\xef\x1d\x95\x74\xc5\xea\x0d\x05\x8b\xe8\xcc\x6f\xca\xab\xa9\x3a\xf2\xca\x15\x71\x5f\x47\xb2\xcb\xf8\xde\x05\x6f\xf1\xcf\xc0\x20\x39\x3e\xc6\x7b\x28\xef\x49\xc8\x3b\xff\x21\x30\xfc\x0d\xfa\x12\xa4\xe8\xa3\xfc\xee\x2a\x80\x8c\x02\x4d\xe3\xd7\x82\xfb\xf4\xdf\x7c\xc2\xd1\xe8\x84\x04\xce\x44\x58\x04\x1e\x52\x9a\xad\xdc\x9a\x63\xfc\x99\xf3\x21\x1f\xd5\x40\xc1\xc2\xc6\xf1\x76\x51\xf3\xc2\xc9\x53\xe4\x4c\xb2\x21\x16\xe6\xb5\x68\x73\x7d\x6f\x72\x83\xb9\xaf\x5b\xa6\xa3\xf3\x03\x03\x31\x0c\x2d\x38\xdf\xa0\x46\x10\xed\x43\xc8\xf3\x20\x11\x7b\x48\xb7\x9f\x45\xf5\x86\x69\x26\xf2\xba\x42\xad\xb8\x17\x3e\x8b\xfa\x03\x23\x3e\xf7\x1f\x7a\x6b\x62\x95\x0d\x35\xe6\x12\xec\xfa\xf1\x15\x22\xe5\x4c\xea\x58\x6e\xbd\xa0\xd1\x3d\x34\x39\x94\x42\xac\x20\xbf\x33\x62\x6c\x4f\x6f\xd6\x88\xb3\x81\x6b\xed\xa9\xc2\x3d\x8f\xd7\x69\x2e\xe2\x5e\x71\x55\x17\xb9\xe5\x12\xc2\x74\xf4\x1d\x4a\x5e\xb0\xa6\x5c\xc9\x2a\xda\xd1\x82\xca\xf1\xbb\x98\xe2\x86\xbc\xe0\x1d\xb7\xfc\x50\x3d\xd4\xbe\x7e\xfa\x14\x38\xed\x3c\x40\xb4\x80\x6a\x31\x5a\x58\x18\xff\xe7\x5f\xf8\x78\xf7\x9f\xf9\x16\xb9\xa9\xd3\x26\x3d\xe9\xfd\xa2\xd3\xd6\x3a\xa1\x2f\xe5\x75\xf2\x73\xac\xd5\x9a\x2f\xb8\xc5\xa5\x49\xe0\xca\x6d\x87\x0e\x73\xd6\x0c\x94\x30\xb9\x4a\x69\x5e\x53\x37\xb0\xd1\x43\x9d\xa3\x2c\xd0\x13\x47\xc5\x61\x6e\xdd\x11\xf6\x01\x44\x4c\x73\x92\x14\x78\x9f\xa4\xca\x85\x97\xf4\x44\x8a\x6a\x08\x6b\xcc\x92\x2a\xda\xb7\x5c\x34\xcb\xbb\x8d\xd2\x6e\x2c\x6e\xf7\x65\x78\xb9\x7d\x98\x71\xce\x68\xe2\x8e\x71\xa5\x3e\xb6\x83\x72\x23\xf9\x0d\xf4\xca\x5f\x2b\xb9\x4f\x30\x82\xef\xbf\xfc\x87\x7d\x73\xc6\xc3\x91\x30\x96\x0b\x51\xab\x4b\x89\xda\xe2\x38\xf7\x0c\x12\xde\x86\xd8\x65\x8e\x87\xc6\x80\x2d\xc1\x73\xbe\xa1\x3e\xda\x3b\xc4\xa6\x23\x2a\x84\x14\x32\x3e\x7c\x32\xba\xb9\x95\x36\x29\x29\xba\x8b\x75\x30\xde\xb3\x36\xc7\x63\x4d\x0d\x98\x52\x79\x34\x16\x8e\x9b\x48\x98\xe4\x6a\x3f\x27\xe5\xde\x0c\x0c\xcd\x74\x21\xc4\x5b\x81\x4d\x09\x2a\x83\x39\x0c\x24\xd2\x41\xd4\x4a\x98\x88\x78\x81\xd4\x9e\x0d\x1d\xce\xf8\x74\x06\x0d\xa5\x7d\x20\x93\xe2\x0e\x28\xcc\x12\xc6\x97\x00\x54\xc9\xa8\x3b\xfc\x2e\x4d\xbc\xe0\x53\xb4\xf0\xc2\x97\xbb\x19\x2a\xce\x81\x9a\x97\xbd\xc1\x29\x1f\xf7\x82\xc0\xc5\xa3\x3a\x7e\xca\x7a\xc6\x0f\xe5\xc3\x3e\x7e\xbb\xa4\x16\x82\xbb\x7b\x85\x2e\x1a\x33\xbb\x02\x63\xa9\x06\x6e\x13\xf4\xa6\x51\x9d\x3f\x1f\x7b\x67\x7a\x68\xbe\x75\x1c\xf5\xd0\xdb\x19\x68\xf8\x0b\x42\x6e\xa6\x28\x39\x06\xd6\xf4\xc0\x29\xdd\x12\x1a\x22\xc3\x7b\x88\x2f\x4a\xa3\xc0\x0f\x29\x73\x37\xfe\x66\xd2\xb1\x58\x93\x77\x25\x02\xf8\x18\xf9\x79\x5c\x7e\x5f\x32\x69\xb7\x97\xa1\x0f\x5d\x01\xee\xc1\xd1\x2c\x2b\x4c\x57\x8c\xbf\x51\xb0\xcc\xb0\x65\xaf\xb9\x1d\x20\xd6\xb3\x5a\x2a\xe1\x5a\xbf\x60\x52\xf0\xd6\x9d\x65\xab\x5a\x25\x62\x43\x7b\xce\x57\xf8\x79\xad\x8c\xf5\xe2\xad\xff\xe2\x68\x4e\xf5\x4a\x69\xeb\x7f\x83\xce\xb2\x91\x5e\x51\xd9\x51\x72\xfa\xed\x23\x5e\x96\x85\x2b\x6d\x1c\x80\x33\x86\x88\xd4\x3e\x7c\x66\x30\x8b\xc1\x3c\x3b\xe3\x30\x9a\x47\x64\xf7\x37\x0d\x71\xd7\x25\x39\xfd\xee\xe5\xff\xf9\xd0\xe4\xdd\x84\xfb\x33\x21\xf2\x8a\x6a\x25\x80\xb3\x9a\x00\x0b\x38\xfd\x30\xb8\xc5\xff\x92\x9c\xf4\x64\x03\xf0\x47\x64\x4d\x3b\xb2\xa6\xc2\xbb\xf8\x74\xcc\xf2\x2c\x37\x3e\x52\x53\xe3\x53\xe5\xb5\xde\x84\x10\xbd\x5c\xde\xec\x6e\x5a\xe3\xae\x6a\x77\x1f\xf8\xac\x33\x70\x8e\xc3\x2d\x36\xc0\x5d\xed\x57\xdc\x71\x71\x98\x45\x33\xf7\x7a\x07\x59\xf9\x35\x3e\x51\xe4\x90\x8d\x2c\xe0\xb2\x49\xa6\xd6\x6a\xbe\xe8\x2d\x9b\xf6\xa3\x07\xab\x1a\x4c\x15\x72\x08\xfe\x70\xf4\xa4\xb4\x48\xab\x98\xad\xb8\xa3\x10\x2d\x81\x50\x00\xdb\xbb\xa1\xc7\x9c\xc9\xb8\x53\x7f\x8a\x44\x4b\x8e\x1b\x0c\xf6\x31\x8d\x9c\xe9\x71\x2c\x67\x6a\xa0\xcd\x7d\xa3\xe8\x28\x17\xd5\x93\xcf\x37\xca\x58\xba\x0f\x77\xc1\x34\x3f\x1f\xea\x95\x56\xfd\xa6\x4e\x66\x4c\xd5\x53\xdd\x6f\x12\x61\x97\xdc\x07\xb1\x17\xd4\xd7\xc3\x0a\xfe\x5d\x15\x02\x9e\x36\x12\x2b\x15\x4b\x44\x4e\xbf\x2d\x2a\x60\x0a\x20\x04\xfc\x23\x24\xff\x31\xbc\x00\x48\x78\x2f\x95\x74\xd2\x0f\xc6\xaf\x12\xdc\xd8\x62\xea\x5f\x38\xee\xc0\x70\x1f\xaa\xc3\x49\x56\x80\xf0\x78\xbe\xa0\x72\x6a\x13\xc3\xa0\xd4\x5c\xe2\x80\x01\x0f\x4b\xb1\x31\x8c\x93\x51\x6c\x8d\x83\xb3\x6f\x5c\x13\xee\xbc\xe0\x69\x82\x71\x92\xf4\x70\xd6\xf2\x30\xd1\xc8\xbf\xec\xde\xb3\xd6\x37\xe1\x27\x20\xef\x66\x34\x0f\xf8\x00\xef\xe1\x92\x61\xce\x08\xaa\x73\x0c\x57\x6d\x68\xf5\xd2\xb8\x8d\x72\x76\x1c\x88\x5a\x67\x37\x35\xbc\xb0\x9c\xbd\x7c\xfd\x8a\x94\xe4\xbc\x20\x8d\x0e\x12\xc9\x97\x03\x44\x1a\x66\xfa\xac\x10\x28\x19\x14\x3a\x72\x16\x4a\x42\x64\x30\x24\x88\x06\x9f\x85\x49\x30\xc6\xf0\xf4\x31\xbf\x31\x46\x15\x02\x61\x79\xc6\x34\x1c\x11\x38\x44\xd2\x5b\x76\x83\x0e\x3f\x4f\x26\x31\xc9\xcd\x93\xdd\x5f\x55\x2b\xfa\x50\x1d\xd9\xb8\x0b\xae\x57\xbb\x1b\x21\x18\x79\x74\xf4\x28\x67\x33\xd0\xfc\x26\xbf\x81\x6a\x2b\x4c\xf5\xfa\xc5\x19\xb9\xfb\x07\x3f\xd7\xe0\x23\x33\x40\x74\xd3\x78\x2b\x85\x59\x68\xf9\xc6\x01\xd7\x78\x4a\xa0\xce\xa9\x3f\x07\x31\xb2\xeb\xb1\x8d\x87\x62\x43\xbb\xda\x30\x7d\xc1\x97\xfe\x1c\xbf\x3a\x7e\x49\xce\xdc\x07\x93\x5f\x1a\x1e\x0b\x48\xb1\x19\x84\xba\xea\xbb\x90\x9f\x33\x08\x72\x6e\xe0\x13\x38\x81\x28\x56\x2e\xeb\x71\xe6\x36\x9b\x24\x11\x3f\xfb\x39\xf3\x3f\x14\xd5\x20\x58\x4f\x79\xf3\xe2\xce\x81\xfc\x69\x9d\xbb\x06\x9b\x38\xd8\x42\xf8\x18\xbf\x7c\x82\xe9\x43\xe4\x0f\x4a\x29\xb3\xec\xf3\x90\xf7\xe6\xbc\xb8\xe7\xb3\x16\x0a\x84\x3f\xc2\xc0\x38\x6f\xe6\xbe\x69\x4a\x2c\x7a\x98\x80\x10\xb6\xb3\x94\x45\xd1\xae\x2a\x87\xa9\x91\xe1\x00\x83\xa9\xb2\x03\xb4\x9b\xda\x87\x8d\x31\x89\x0b\xe8\xf8\xea\xf2\x01\x0b\x28\xbf\x15\x81\x2d\xe7\xde\x5f\x77\xaf\xb1\x35\x05\x37\x90\x6d\xbc\x70\xa2\xbd\x4c\x1e\x51\x2a\x14\xa1\x15\xef\xc8\xc6\x04\x39\xf6\xe8\xa0\x0d\xe8\x95\xd2\x43\x2e\x06\x42\x0c\x61\x2f\xd4\xed\xde\xb3\x0b\xcc\xf4\x9a\x8d\x3d\xe7\xd6\xcb\x69\x9a\xe4\xda\xb1\x26\xaa\x04\xbc\xbf\x1b\x7a\xbc\xa0\x19\xfe\x68\xc3\x79\xf7\x16\x34\x99\x09\xdd\xae\xb8\x5d\xf7\x8b\x9a\x6e\x78\xcd\x64\x03\x3a\xf7\xea\xf8\xd5\x9f\xc8\x0f\xbb\xf7\xe4\x5b\x1f\xf0\x62\xe6\xad\x57\xe6\x52\xd9\xda\x30\x5b\x7d\x0a\x9b\x2a\xfa\x6a\x7f\x16\xca\xfd\x03\x86\xb7\x75\x41\xea\x48\x4a\x93\x17\xd7\x9c\x87\x5e\x68\x2a\x1b\x3c\xf2\x2f\xa9\x6e\x29\xba\xad\xf9\x42\xdd\xe3\x25\x56\xbc\x8e\x77\x34\xbf\x6a\x4c\x09\xdd\xa9\x86\x8d\xa1\x5f\xaa\xa6\x2f\x91\x4b\xb1\xf2\x7b\x2d\xaa\x53\x50\x4e\xff\xf0\xfd\x8b\x11\xd0\x1e\xe3\x5a\x16\x47\xde\x37\x70\xbc\xa3\xf2\xb5\x75\xf7\x49\xd3\xe8\x0a\xe2\x2f\xd2\x06\xee\xa0\x09\x18\xb8\x2d\x00\x66\x03\xb7\x45\x09\xb2\x64\xda\xa2\xaf\xe9\x19\xd3\x96\x9f\xf3\x96\x46\x9e\x71\x04\xda\x32\x74\x12\xad\xbc\x9f\xf6\x21\x38\x47\x97\xdd\x4d\x19\x4c\x74\x9e\x80\x78\xea\x48\x74\xb2\xd4\x29\x6b\xf4\x92\xbf\xab\x8d\x02\x95\x6f\x32\x70\xab\x7e\x90\xfc\x1d\x31\xaa\x65\x16\x0c\xd6\x46\x95\x40\x7d\x50\x6b\xa5\x2c\x46\x9a\x02\xed\x41\xbb\xfb\xa5\x0d\xa9\x0b\x4a\x70\x75\x7e\xee\x8e\x75\x58\x42\x48\x72\x16\xe2\x97\xb5\x7c\x33\x5e\x1c\x6e\xe0\x2a\xd0\xaa\xc7\xf7\xa1\x15\xdc\xf8\xde\xbf\x61\xc9\x83\xc3\xe5\xed\x15\xba\x74\x4e\xc5\x43\x1b\x6f\x0a\xbc\x5c\x56\x5b\xc7\xc4\x6d\xf9\xe6\xd1\x28\xf0\x7d\x09\x4d\x37\x9b\x1a\xb4\xd5\x1b\x6a\xd7\xc9\x62\xea\x02\x83\xdc\x8b\xf1\x32\x42\xc0\x2d\x6a\x0c\xb3\xa6\x3e\xd7\xaa\xab\x1b\x6e\x5a\x27\xae\x89\x90\x7f\x81\xb8\x2f\xee\x6c\x0e\xe0\xdf\x38\xae\x4f\x65\xc3\xe5\x0a\x66\x12\x6c\xdd\x45\xd8\xb5\x6e\x26\x23\xb0\x59\xc7\x83\x77\xf6\xec\xf0\xa9\x33\x66\x1d\x65\x4a\xb0\xd7\xc8\x0b\xfc\xbe\x7f\x49\x75\xbf\x25\x2d\xb2\x0a\x81\xdd\xc8\xe1\x60\xdf\xe6\x50\xee\x43\x0e\x00\x4b\x0f\xd3\xf3\xdc\xad\x7a\x31\x2b\x66\xed\xb6\xeb\x8a\x49\x0f\x00\x7f\x4f\x81\xd4\x10\x08\x12\x80\xc2\xb6\x86\xe0\x92\x63\xd0\x8e\x4b\xde\xf5\x1d\xc6\x42\xe0\x5b\x86\x69\xcb\xfd\xde\xf6\x2f\xed\x64\xe1\xa4\xf7\x9e\x34\x0c\xb4\x0b\xfc\xbe\xfa\x66\xaa\x2a\x72\x67\xf9\x10\x99\xb7\x3a\x2f\xad\x0a\x6a\x6a\x6b\x63\xa9\xb6\x85\x7d\xa1\xa5\xe4\x01\x5e\x3e\xbc\x4e\x6f\xff\x0f\x48\x69\x78\x90\x37\x0f\x6d\xd4\x8b\x9e\x0b\xeb\xa8\x3b\x6c\x85\x2c\x13\x0a\x06\x5e\xf5\x81\xe3\x05\x2d\x26\x1f\x18\x76\x59\x03\x9f\x7a\x2c\x29\xe9\x68\xcb\x25\x64\x21\x73\x3b\x7a\x02\x32\x8a\xdf\x8f\xfa\x7d\x98\x40\xd4\xf9\x66\xcd\xb4\x09\x54\xfd\xee\x0a\xb9\x40\x9d\x76\x20\xea\x60\x71\x0b\xa2\x2a\xe7\xd0\x1e\x74\x90\xf7\x6d\x11\x28\xc7\xc0\x08\xa8\xa4\x38\x61\x8e\xc9\xc3\x98\xfb\x05\x10\x95\x86\xd7\xcb\x35\xb5\xee\x5a\x3a\xfe\xf6\xec\x4f\x29\xdc\x42\xbb\xbb\xe9\x32\xb2\x0b\xe0\xe7\xca\xdd\x91\x85\xa2\xc8\x27\xef\x2b\xc0\x3a\xfa\x2e\x29\x93\x41\x69\xec\x76\x04\x7a\xda\x27\xb5\x2a\x41\x5e\x56\x8f\xc6\xb5\x81\x34\xea\x9a\x35\xb5\xe0\x4b\x26\x0d\x0b\xd9\x37\xc1\x82\x81\x49\x22\xb8\xa1\xd2\x80\x43\x63\x56\x2d\x50\x35\xb8\x17\x56\xdc\x5f\x0b\x10\xe9\xf2\x5e\x0a\x06\x95\x3d\xfd\x42\xb2\xeb\xe6\xb4\xee\xf8\xca\x67\xf6\x44\xe2\x3b\x28\x41\x56\xbb\x5f\x76\xef\x91\x26\x4e\x51\xb7\xbc\x25\x4d\x31\xca\x41\xad\x99\x6c\x98\x46\xca\xfc\x8c\x76\x3e\xd0\x40\x36\x09\x9d\x6a\x20\xac\xd0\xa1\x06\x7d\x22\xf3\xfa\x9c\xd9\x25\x50\x28\x7c\x20\x5f\x0e\xc1\x78\x0e\xcc\x9c\xd9\xdd\x15\xd8\x80\x86\xa0\x12\x10\x9d\x72\x8c\x5a\xc3\xad\xd2\x73\xb8\x29\x2e\x35\xdd\x40\xc2\x1d\x69\xc0\xb4\xf3\x09\x94\x11\x57\x46\x5c\x19\x49\x65\x53\x6d\x78\x3f\x73\x18\x2a\x0c\xd3\x8d\x2f\xb6\x92\x95\x12\x57\x0a\xce\x8d\x65\x3b\xfd\xc6\x51\xf5\x48\x48\x7f\x80\x9f\xc4\xff\x9c\x82\xb4\xac\xdb\xf8\xfb\x02\x61\xdd\x07\xa5\xa9\x1e\x88\xfb\x3a\x55\x25\x86\x93\x1e\x36\xcc\x84\x6a\xfe\x23\x81\x8f\x53\xb5\x70\x38\xf4\x1d\x50\xb2\x50\x0b\x46\xe1\x3e\xe0\x13\xc8\x54\x3d\x57\x05\xc3\x4c\x64\x75\x8c\x87\x0f\x15\x9a\x45\x38\xe0\x7f\x4e\x46\xaf\x87\xcf\x79\xb3\xf0\xea\xcc\x61\xc3\xb2\x6f\x40\x98\x9e\x29\x63\xb3\x6f\xc0\x06\x7e\x4b\xbb\x1c\x0e\xf8\xbf\x1f\x4c\xb4\x9e\x76\xdf\x8c\x11\xb8\x19\xcf\xce\x5e\xc0\xba\x4c\x94\x05\x69\xf9\xd3\x73\xa5\xc9\x83\x8d\x32\x76\xa5\x99\x79\x40\x94\x14\xc3\x67\x19\x3c\x2c\xc7\xab\x6c\xf6\xfd\xb7\xb2\xbe\xf9\x0f\xc1\x2d\xfb\xfd\x03\xac\x9d\xee\x66\xaf\x07\x0d\x77\xae\xff\x4d\xf0\x77\x8f\x87\x6f\x0c\xed\x79\x75\xcd\xbc\x13\x59\x43\x07\x53\xbd\x70\xdf\x48\xf8\x46\xdc\xb7\xbd\x7a\x4b\xa5\x5a\xce\x52\x45\x98\xae\xef\x43\x15\x2c\x3d\x54\x29\x6a\xf0\x7e\xf0\x7f\x7c\x00\x1e\x7e\xb3\xea\x09\x6c\x66\x82\xbf\x0e\x55\xd1\xcc\x71\x92\xf0\xa8\xf3\x6e\x40\xc1\x0d\x56\xed\x7b\xfc\x4e\xe0\x3b\x29\x8d\xe2\x09\x46\xcb\xd8\x6b\x2b\x12\x31\x10\x67\xc0\x1e\xbb\xc6\x6e\x03\x2e\x50\x44\xb0\xe8\x10\x46\x13\xd5\x71\xb6\x5e\x4c\x54\x0e\xb5\x59\x47\xb9\x08\x4b\xf9\xc4\xfd\x98\x5e\x47\x80\x4b\xec\x53\x79\xdc\xb1\xd0\xf4\x60\xc9\x52\xbb\x6b\x80\xbf\xab\xce\xf0\x27\xc1\x9f\x25\xe8\xde\x39\xc0\xcf\x8e\x47\xac\xfe\xa8\x55\x57\x7e\xde\x3b\x0d\xf8\x39\xde\x1b\x4c\xa8\xea\x14\x7f\x90\x67\x4f\x5e\x7c\x37\xea\x8b\x09\x05\x1c\x01\xcc\x85\x2b\x27\xe1\xd7\x08\xff\x96\x6f\x82\xea\xe6\xac\xe5\x1b\xb2\x44\xd9\x63\x49\x2d\x23\xf8\x7d\x0f\xaf\x3a\x83\x71\x28\x92\x65\x6f\xac\xea\xf2\xaa\x65\x9d\x24\xd9\x7c\x93\xb5\xee\x3e\x94\x70\x51\xac\x79\xce\x86\x89\x62\xd7\xf5\x46\x50\x2e\x6b\xcb\xde\x59\xe8\x19\x7e\x12\xf7\xb3\x04\xa5\x4d\x93\x81\xd6\x54\xd8\xea\xb8\x69\x32\x70\x42\x05\x08\x86\x96\x5f\x8c\x67\x84\xc9\x06\x59\x51\xd0\x0a\x9f\x31\xd9\xf8\x20\xe7\xee\x77\x09\x1b\xc1\xea\x73\xca\xdd\x1e\xf9\x23\xfc\x43\xac\x22\xa6\xac\xe7\x3e\x39\x31\xfd\x4b\xf2\xf0\xe2\x50\x1b\x86\x49\x8b\x71\xcf\xb1\xca\x9a\x1a\xb2\x60\x68\xa2\x69\x43\x03\xf3\xb8\x8b\xe1\xf8\xf9\x4d\x7c\x5c\x1e\xb9\xc9\xdd\xec\xe0\xa3\xae\x0b\x22\xe5\xd4\x02\x6c\xa5\x8f\xfd\x37\xe2\xbe\x11\xf8\x56\xd4\xd1\xcc\x38\x69\x30\xbc\x7a\x64\x35\xbf\x77\x25\x24\x94\x1c\xae\x8f\x39\x74\xb3\x63\xa7\xbb\xea\x7b\xfc\xea\xc7\xea\xbf\xee\x23\x1c\x2a\x1b\xbe\x92\xb5\x13\x65\x39\xbb\x8c\x75\xdd\x47\xc2\x25\x71\x1f\x8b\x5a\x51\x68\x04\xd5\xa1\x67\x8d\xc2\x71\xc9\x3f\x16\xb5\x02\x37\x94\x95\xd7\x4b\xba\xb1\xcb\x35\x0d\x34\x29\x2f\x23\xbe\x6c\xba\x8d\x31\xa5\xcc\xdc\x84\x62\x5b\x87\xa9\xe6\x47\xb5\xa9\xca\xf1\x1d\x6a\x56\x1d\x1e\xf1\x7d\x68\xd6\x3e\xcc\xd1\xc7\x10\xf7\xd0\x28\xbc\x25\xf8\x3d\xe9\x88\xd7\xf4\x4e\x74\x50\x61\x50\xb8\x29\xbc\xb9\x8e\x1f\x01\x6e\x09\xf8\x16\xa6\x23\x11\x7e\xf4\xb8\xf3\x7d\x7c\x87\xea\xb6\xc3\xe2\x2f\x82\xcf\x37\x5a\x5d\x70\x37\x98\x57\xfe\x8f\x43\x00\xa1\xe1\x00\xe7\x07\x30\x06\xcf\x6f\x9a\x6f\x46\x37\x13\x42\x38\xc6\xde\x60\xb8\x67\xc7\xda\x9f\x01\x3b\x32\x06\x5a\x2d\x31\x09\xe6\x05\x15\xd5\xd3\x6f\x48\xf8\x7b\x0c\xe6\x98\x35\xc1\xcf\xd1\x3e\xb5\x7a\x49\xdf\x11\xf7\x8b\xb8\x5f\x7b\x88\x19\x7d\x5e\xdc\x83\xdf\x9c\x7d\xff\xc7\xf1\xfd\x87\xe6\x81\x7e\xa4\xbb\xbf\xc9\x05\xda\x00\x1f\x9c\x45\x80\x9f\xd3\x86\x6e\x2c\xd3\xd5\x31\xfe\x5b\x16\xde\x37\x0c\x84\x48\xd7\x5f\xf8\x0e\xb2\x8f\xc7\x02\xc4\x9f\x83\x08\x38\xc8\xb9\xf7\xb0\x5e\x62\xd2\x66\x0c\x4e\x52\x2b\xcd\x57\x5c\x56\xc7\x50\x46\x7c\x19\xb2\xcd\x04\xcb\x12\xbd\xb4\x96\x2e\xd7\x10\x73\x37\x50\xcd\xf8\xe5\x00\xc5\x8c\xe5\x87\x98\x80\x0c\x62\x8f\xbd\xcc\xca\x4a\xde\xfe\x78\x8a\xa9\xcf\xa0\x23\x3b\x7f\xb6\xc7\xc2\x8f\xa0\x90\x83\xff\xe3\x04\xeb\x1e\x22\x5e\xf9\x91\x7e\x8f\x3f\xa7\x87\x19\x83\xb0\xed\x0f\x37\x9b\xa1\x3d\x69\x67\xaf\xd2\x68\x94\xa9\xea\x01\x29\x66\xaf\x81\x38\xf0\xac\xee\x94\x18\x33\x59\x11\xe7\x22\xab\x39\x25\xd1\x6c\x38\x18\xc4\xa6\x69\x31\xfc\x1e\xea\xe1\xa1\xe7\x3e\x16\x0a\x8a\x4e\x5e\xac\x73\xc4\xcd\x47\x41\xc1\xef\x85\x60\x17\x6a\xa2\x6b\xd1\x7e\xf5\xef\xa3\xe7\xec\x47\x34\xb2\xd2\x21\x18\x0b\x5a\x12\x3e\xf5\xbf\x09\xfe\x1e\x83\x87\xbb\x2f\x54\x8b\xf7\x5e\xa8\x37\xae\xe0\x29\xf1\x39\x6b\x98\xa6\x96\x35\x1e\xe1\x40\x8d\xe3\x77\x8f\xaa\x89\xb3\xe9\x93\x5d\xfb\xc9\x7c\x09\xbf\xa6\xb7\x18\x42\xc6\x27\xb4\x48\x2d\x4e\xf1\x43\x22\x19\xa1\x42\xc8\x0d\xe1\xdb\x1e\xe5\x43\x38\xb8\x62\x31\xa7\x0c\x6c\xc1\xd7\xf9\x7e\x0b\x45\x3e\x36\x33\xd0\x52\xd5\xdb\xea\x14\x7f\x13\xff\x7b\x0c\x3e\x7e\xdf\x04\x26\xf9\xf5\x8b\xb3\xc0\x1c\x07\xf8\x15\x8f\x64\xe5\x29\xb7\x87\x31\x5c\x71\x1b\x57\x08\x42\x6c\xae\xf9\x6a\x2d\xf8\x6a\x6d\xe3\x3a\xb9\xcf\xc4\x0c\xd2\xd2\x77\x24\x96\xe6\xf5\xdd\x76\x87\xba\x82\x4b\x66\xaa\x53\x07\x0f\x7f\xe2\x6e\x27\x20\xc9\x52\x62\xb8\x5c\x79\x9d\xc6\x67\x07\xab\xd7\xcb\x35\xd5\x74\x09\x19\xfe\xa1\xa1\xf4\x7b\xb2\x35\x57\x67\xba\x35\x3c\x80\xd0\x46\x76\xf4\x46\xd5\x1d\x64\x51\x7d\xb5\xac\xa9\x5e\x81\x99\x32\xd5\xab\xde\x9d\x5c\x53\x34\x0f\x9a\x2d\x16\x97\xeb\x65\xd0\x74\x8d\x17\x0c\x81\x61\x43\x26\x58\xd8\x91\xa0\x8b\x9a\x02\x5f\x0a\x25\x53\xcb\xdf\xb8\x5f\x53\x60\x10\xba\x3e\x40\xbd\xea\x85\x98\x02\xf2\xf6\xd6\x0e\xe4\xe9\x37\x11\x20\x40\x08\xb5\x0a\xbb\xe3\x85\x5a\x1d\xde\x1d\x0e\x0e\x15\x71\x51\x5d\xea\xe0\x4f\x83\xe9\x10\xe8\x4e\xdf\x64\xba\x53\x57\x01\x14\x24\x2f\x55\x93\x7f\x9b\x0a\x95\x15\x9c\xcc\xe7\x4b\xad\x64\xf5\x8d\x56\x12\xc2\xee\x30\x70\x6d\x8c\x85\x99\x89\x5a\xf8\x64\x96\x6b\xd6\xf4\x82\x39\xae\x68\xa5\x69\x2a\x90\x4e\x0e\x0b\x76\xf3\x60\x65\x1e\x8b\x40\xab\xa6\x7a\x53\x81\xa9\xe3\x5e\x31\x7b\xc7\x96\x7d\xf4\xd6\x19\xbd\xe3\x65\xf6\xea\xa9\x39\x05\xcf\xa4\x01\x92\x62\x64\x51\xb6\x7b\x9f\x79\xcf\xcf\xc7\x21\xde\xe2\x00\xf6\x34\xf4\xc1\x72\x7f\x12\xa1\x49\x7c\x6e\xaf\x67\xc1\x81\x3f\x78\x91\xe3\x4f\x34\xbc\xd9\xf7\xe9\xe7\x11\x1c\xa2\xc8\x36\xcc\x3a\x4e\xd7\x33\xd5\x01\x8e\x40\x10\xd1\xf0\xde\x9e\x45\x96\x0d\x75\x9d\xc0\x36\xf2\x66\x8f\x58\x30\xc1\x96\x10\xa5\x0d\x7c\xf2\x50\xd5\xeb\x16\x3c\x42\x34\xec\x20\x0c\xbc\xdb\xa3\xdb\x4e\x04\xe7\x12\xa5\x01\xac\x04\xb1\x22\xd9\xee\x3d\xef\x38\x79\xcd\x34\x04\x8d\xdb\xfd\x95\x5d\x70\x9d\xb5\x0f\x2f\xf8\x08\x0f\xee\x40\x90\x7a\x1c\x2c\x99\xc1\x28\x60\x04\x18\xd0\x28\xa6\xa9\x00\x44\x05\x22\xdf\x14\x1f\xea\x2f\xe0\x85\x21\x1f\x56\xb1\xcc\xe1\xbb\xda\x84\x69\xda\xc3\x30\xc4\x95\xc4\x55\x5a\xe4\xdd\x4f\xfa\xc2\xce\x7e\xc4\x89\x7f\x1b\xc2\x10\x82\xc5\x31\xf8\xd1\x16\x91\xec\x1f\x1a\x08\xc1\x5e\x24\x37\xd1\x4c\xc6\xe4\xcf\x98\xe0\xe5\xe1\x8f\x5f\xbc\x35\x59\x7e\x17\xe9\x1d\x8b\xbd\x59\x4f\x6a\xf1\xc7\xdf\xbd\x75\x8d\xfe\xf8\xfb\xb7\xd8\x2e\xc4\xdb\x44\xdb\x81\x86\xcf\x50\xb9\xee\x1b\x4e\x75\xbe\xc0\x3a\xff\xcd\xd7\xd9\x46\x9f\x14\x52\x02\x3d\x36\x7a\xf9\x78\xa2\x0b\x88\x2f\x15\xa2\x8d\x58\x20\x46\xdd\x86\x6a\xe6\xe3\x31\x40\x24\xe2\x87\x4d\x08\xc7\x20\x98\xf6\xa6\x47\x2d\xd5\x77\x57\x8e\x8e\x85\x83\x82\xaf\x9b\x79\xc0\x97\x59\xcc\xaa\x99\xcd\x1f\x4e\x49\x9c\x8f\x89\xf9\x7c\x14\x73\x18\x0b\x78\x8a\xc4\x25\x00\x63\xdd\xea\xa7\x0c\xfe\x31\xda\xef\x3e\xc6\x9a\xff\x02\x63\x83\x41\x41\x9c\x83\x5e\xf6\x84\xee\xde\xdb\xdb\xeb\x9f\x66\x4b\xa1\xcc\x6f\x6b\x01\x92\x91\x40\x1b\x9a\xa9\x0d\x93\xbf\xa9\x11\xcb\x5a\x4d\x75\xc2\xc6\xe7\xfe\xf8\xf5\x4d\x51\x8c\xd8\x40\x06\xba\x6d\xa0\x25\x9c\x9a\x22\x0b\x4b\xd1\x1e\xa4\x5d\xdf\x6f\xae\x08\x59\x9c\x52\x1e\x86\x7d\xdc\xf4\x61\xca\xfe\x59\x2d\xef\x4d\xe3\x3f\xab\xe1\xd1\xd4\x42\x4e\xf9\xdf\xde\x78\x97\xb5\x9c\x72\xd1\x37\x3c\xce\xf4\x42\x53\xb9\x5c\x57\x1f\x73\xb2\xa8\x25\x87\x4f\x29\x44\xed\xb9\xbb\xea\x17\xcc\x8c\x72\x23\x79\x92\x15\x3a\xf2\x04\xe4\x77\x89\x80\x3c\xba\xbd\x96\x13\x2d\x87\x6e\x43\xa3\x21\x3d\x12\xa4\x2b\xb2\x74\x55\xf9\xf4\x37\xf9\x6c\x00\xde\x50\x3b\x4c\xc4\xc1\x76\x1f\x51\xc2\xc1\x02\xb4\xe1\x01\x45\xd7\xe8\xaf\xc7\x0f\xd1\x48\xf8\x41\x4a\xa6\x11\x4d\x4b\x94\xd5\x5b\x39\x7a\xdf\x8e\x98\xb0\xc9\x91\x05\xcf\xed\x81\x9b\x3a\x24\x6b\xca\x28\x14\x46\x27\x69\xe8\x14\x22\xff\x2d\xae\xf9\x46\x99\x1e\x6d\x51\x0f\xaf\x27\x69\x30\xe1\x3c\x61\x77\x57\xdc\xe2\xf8\xf3\x9e\x7d\x5a\xac\xd4\x21\xac\xec\xfd\x93\x0c\x6f\xc6\x50\xe1\x9e\x79\x6a\x95\xec\xbb\xfe\x70\xc7\xde\x1c\xef\xbe\x91\x8e\x9a\xc2\x91\xee\x2f\x58\x86\x4e\xea\x0b\xb3\xb2\xe3\x12\xcd\x7e\xb4\x4a\x89\xb7\x33\xba\x52\x15\x18\xc2\xcd\xc0\xb2\x05\xa2\x0d\x5e\xf5\x84\xca\x86\xca\x19\xfe\xe2\x5d\xc3\x67\x5f\x98\xea\x8b\x90\x98\xf2\xa1\x99\x7d\xd1\x55\x5f\x10\xd7\x79\x4b\xe1\xe7\x1a\x4a\xa9\x85\x1f\x4d\xf5\x05\x98\xf0\xc0\x8f\xcb\xea\x0b\xb2\xa6\xe7\x16\xe1\x3a\x25\xab\x2f\x08\x1d\xe0\xc7\x50\x7d\x01\x81\x6f\xdc\x0f\xc3\x96\x4a\x36\xa6\x7a\xd8\x64\xbd\x74\x5c\xf6\x96\xc1\xc7\xd4\xd7\x5a\xf5\xda\xc3\x61\x7f\xf0\x06\xf7\xb0\x89\x5d\x5e\x32\xd6\xc2\x87\xd8\x6d\xa7\xa4\x5d\xc3\x27\xec\x79\x60\x14\x9b\x08\xbd\x6b\x7a\x59\x07\x0c\xb0\x7b\x70\x34\xa1\x97\x75\x40\x01\xfb\x07\x87\x12\x7a\x59\x23\x0e\xf0\xff\xd9\xec\xc7\x46\xab\xcd\x56\x49\xf6\x76\x16\xa4\xe1\x8e\x19\x70\xef\x3d\x8d\x31\x06\xbc\x65\xd0\x38\x2e\x3d\xe6\x79\xc1\x18\xed\x16\x98\x1f\xf4\x06\xf0\xc1\xaa\x6b\x2e\x37\x7d\x30\xa1\xe8\xc1\x7e\x02\xd3\x59\x8e\xdb\x1d\x52\x92\xf4\x19\x48\x1b\x56\xa9\x7a\xc1\x57\x88\x01\x26\x76\x95\xde\x84\xe6\xcb\x4f\xff\xf3\x3f\x41\x9c\xe3\x5b\xf6\x5f\xff\x45\x5e\x9e\x7c\x46\xc0\x33\x26\x99\x43\x38\x0e\x06\x22\xf5\x80\xbd\x64\x74\xe2\x83\xea\xae\x76\x47\xdf\xfd\xb1\x68\x60\x3e\xf3\x61\xc1\x52\x62\x05\x12\x82\x83\xcd\xfe\xdf\x00\x00\x00\xff\xff\x80\x7e\x77\x03\xe5\x1a\x01\x00" func confLocaleLocale_trTrIniBytes() ([]byte, error) { return bindataRead( @@ -4984,8 +4984,8 @@ func confLocaleLocale_trTrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_tr-TR.ini", size: 72228, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x34, 0x3a, 0x24, 0x1f, 0xfb, 0xe1, 0xfe, 0xb4, 0x14, 0x1d, 0x7e, 0xd3, 0xb2, 0x4d, 0xd5, 0x3, 0xe7, 0xf0, 0xc8, 0xaa, 0xab, 0x66, 0x69, 0xb8, 0xca, 0xc1, 0x68, 0x88, 0xa6, 0x5a, 0x3}} + info := bindataFileInfo{name: "conf/locale/locale_tr-TR.ini", size: 72421, mode: os.FileMode(0644), modTime: time.Unix(1586169337, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xf5, 0x39, 0x85, 0x96, 0x73, 0x9f, 0xe, 0x47, 0xad, 0x8a, 0x8a, 0x2c, 0x31, 0x0, 0x64, 0x34, 0x48, 0xac, 0x0, 0x22, 0x12, 0x50, 0x29, 0xb1, 0x80, 0x59, 0x5e, 0xe, 0x55, 0x25, 0x16}} return a, nil } @@ -5004,7 +5004,7 @@ func confLocaleLocale_ukUaIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_uk-UA.ini", size: 99984, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_uk-UA.ini", size: 99984, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x39, 0xbf, 0x26, 0x8e, 0xad, 0x3f, 0x96, 0x45, 0x18, 0x0, 0xdb, 0x2e, 0x6c, 0x90, 0xb2, 0xdc, 0xe3, 0x1a, 0xe0, 0xfc, 0x91, 0xd6, 0x3f, 0xf0, 0x87, 0x69, 0xf1, 0x31, 0xa1, 0x25, 0x70}} return a, nil } @@ -5024,12 +5024,12 @@ func confLocaleLocale_viVnIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_vi-VN.ini", size: 77434, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_vi-VN.ini", size: 77434, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x5e, 0x6f, 0xbd, 0xce, 0x10, 0x93, 0x4f, 0x28, 0xc, 0x69, 0x9f, 0xbf, 0x64, 0xe3, 0x4f, 0xf3, 0xf3, 0x9b, 0xb5, 0x27, 0x25, 0xd4, 0x94, 0x55, 0xee, 0xa5, 0x97, 0x46, 0xca, 0x17, 0xf9}} return a, nil } -var _confLocaleLocale_zhCnIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\xbd\x7f\x73\x1b\x47\x92\x28\xf8\x3f\x3e\x45\x87\x36\x14\xf3\x5e\xc4\x99\x0e\x7b\xde\xbe\xbb\x78\xe1\xf6\x9d\xc7\x9e\xb1\xf7\xce\x9e\xf5\x5a\x9e\xd8\x8b\xf0\x29\x7a\x9a\x40\x93\xec\x15\xd0\x8d\xed\x6e\x88\xa2\x37\x36\x02\xa4\x44\x12\x94\xf8\x4b\x12\x45\x52\x24\x24\x8a\x32\x29\xd2\x92\x48\x50\xb6\x4c\x91\x00\x29\x7e\x97\x33\xaa\x1b\xf8\x4b\x5f\xe1\xa2\x32\xb3\xaa\xab\x1b\x0d\xca\x9a\xb7\x7b\xff\x48\x44\x57\x56\xd6\xef\xac\xcc\xac\xfc\x61\x96\xcb\x46\xc1\xf2\xf3\x7a\xfb\xa8\x1a\x3e\x7f\x1d\x3e\x1c\x0f\x57\xef\x86\x8b\x7b\xac\xd5\x8c\xd6\x6e\x74\xa6\x9f\xb2\x9b\x3f\x6a\x9f\xdb\x81\x16\xd6\xe7\xd8\xcd\xcd\x5c\x6e\xc4\x2d\x59\x7a\xf7\xc9\x72\x77\xf3\x97\x5c\xc1\xf4\x47\x06\x5d\xd3\x2b\xe8\xe1\xfc\x0e\xab\x1d\x76\x1f\x3c\x0e\x1f\x9c\xe5\xac\x6b\xe5\xa2\xeb\x59\x3a\x5b\xb8\x1d\xcd\x1f\xe4\x46\xac\x62\x59\x67\x47\xfb\xec\xe6\x8f\x39\xdf\x1e\x76\x0c\xdb\xd1\xa3\xfb\x2d\x76\x7a\x0f\x7f\xba\x95\x40\xef\x56\xab\x6c\xba\x89\xbf\x2b\x65\x3d\xfc\x79\x97\x4d\xcd\xe6\x3c\x6b\xd8\xf6\x03\xcb\x13\xbf\x47\xad\x41\xdf\x0e\x2c\x9d\xed\xaf\x86\xcb\xc7\xd1\xe9\xed\xe8\xd9\xfd\x5c\xd9\x1c\xb6\xf4\xee\xe6\x2f\xdd\x07\x8f\x73\x81\x55\x2a\x17\xcd\xc0\xd2\xc3\xdd\x4d\xde\x93\xa2\xe9\x0c\x57\x78\x79\xa7\xb1\xd7\xd9\xad\x76\xab\x33\xdd\xcd\xe3\x5c\xde\xb3\xcc\xc0\x32\x1c\x6b\x54\x67\xb5\x75\xd6\x6a\x0e\x0c\x0c\xe4\x2a\xbe\xe5\x19\x65\xcf\x1d\xb2\x8b\x96\x61\x3a\x05\xa3\xc4\x87\x10\x2d\xed\x86\xb5\x57\xed\xb3\xcd\x70\xbc\xc1\x16\x6e\x86\xeb\x2f\xd9\xd6\x1a\x74\xd3\x2a\x18\xb6\x63\x98\xbe\xce\x5e\xfd\x84\xa3\x41\xd8\x1c\x60\x72\xcc\x92\xa8\xcc\x16\xe7\x72\x56\xc9\xb4\x8b\x7a\x77\x62\x3f\xda\x7f\x91\x2b\x9b\xbe\x3f\xea\x7a\x05\x9d\x35\xa6\xa2\x47\xe3\x39\xcf\x32\x82\xb1\xb2\xa5\x47\x9b\xfb\x9d\xfd\x2d\xfa\x98\x37\xcb\x41\x7e\xc4\xd4\xbb\x4f\x67\x3b\x8d\x71\xfe\x25\xe7\x59\x65\xd7\xb7\x03\xd7\x1b\xd3\xdb\xad\xbb\xac\x79\x37\xe7\x7a\xc3\xa6\x63\x7f\x6f\x06\xb6\xeb\xe8\x51\xeb\x46\xd4\x9a\xce\x95\x6c\xcf\x73\x3d\xbd\x7b\xaf\xce\xae\x2f\xe4\x1c\x6b\xd4\xe0\xf5\x68\xa0\xe1\xf2\x41\xb4\x76\x83\x6a\xf3\xb2\x92\x3d\xec\xf1\xf9\xea\x9c\x8d\x47\x3b\x2d\xb6\xb5\xdc\xbd\xbe\x9b\x28\x06\x64\x6a\x65\x05\xf1\x90\xeb\x5d\x49\x94\x85\x2f\x5f\x47\x4b\x1b\x4a\x7d\xd7\x1b\x4e\x00\x88\x3e\x9a\x8e\x39\x6c\x41\x69\xb4\xbf\x19\x2d\x4e\x85\xb5\xdb\x71\xa9\x59\x28\xd9\x8e\x51\x36\x1d\xab\x48\xc5\xb4\xaf\xcc\x7c\xde\xad\x38\x81\xe1\x5b\x41\x60\x3b\xc3\xbe\xce\x8e\x16\xc3\xda\xab\xce\xfe\xeb\xe8\x74\x3f\x97\xfd\x75\xcc\xad\xc8\x65\xd5\xdb\x47\x4f\xdb\xcd\x26\xae\x26\x96\xc8\x4a\xb8\x56\x54\x29\x67\xe6\x03\xfb\xaa\x1d\xd8\x96\xaf\x87\xf5\x6a\xe7\xec\x76\xf8\xb2\xc5\x6e\xee\xe6\xca\x95\x62\xd1\xf0\xac\x7f\xad\x58\x7e\xe0\xeb\x6c\xb1\xc6\x8e\x0f\x3b\x8d\x57\xe1\x8b\x89\x9c\xed\xfb\x15\x8b\xef\x86\x6d\x36\x77\x0f\xbb\x9d\xcb\xe5\x4d\x27\x6f\x15\x75\xb6\xb0\x1c\x1e\xd6\x72\xb9\xef\x6c\xc7\x0f\xcc\x62\xf1\x72\x8e\xfe\xd0\xd9\xfe\x4c\xe7\x87\x49\xb1\x7b\xed\xa0\x08\x67\x2b\x7c\xbe\xd9\x39\x5b\xec\x6c\xce\x62\x71\xb4\x7b\x8b\x35\x17\x72\x05\x37\x7f\xc5\xf2\x0c\x7e\x9c\x2c\x4f\x67\x4f\x26\xc2\x87\xf5\x70\x62\x37\xdc\xfb\x81\xd5\x77\xdb\xa7\x67\xd1\xd2\xae\xf6\x19\xc0\x68\x6c\xff\x98\xdd\xdf\x45\x1c\xda\xe7\xee\xb0\xff\xe6\x64\xb6\xd3\x78\xc5\x6e\x6e\xb2\xb3\x49\x36\x59\x6b\xb7\x96\xa2\xd6\x54\x77\x75\xb2\xd3\x68\x69\x1f\x99\x5a\x60\x7a\xc3\x56\xa0\x5f\x30\x06\x8b\xa6\x73\xe5\x82\x36\xe2\x59\x43\xfa\x85\x8b\xfe\x85\x8f\xf1\xa8\x85\xcb\xd3\xe1\xe6\x0f\x1f\xbd\x6f\x7e\xac\xb1\xc5\x79\x36\x35\xc7\x1a\xc7\x61\xfd\x39\xf6\xbb\x73\xb6\xce\xbb\xba\xf9\x8c\x4d\xdd\xff\xb5\x3a\x91\xe3\xf3\x63\x07\x96\x51\x18\x44\xca\xc2\xdb\xd7\x3a\x4f\xc6\xc3\x17\x13\x38\x1e\xed\xab\xb1\x4b\xff\xf4\xe5\xaf\xd5\xf1\xaf\x5d\x3f\x18\xf6\x2c\xfc\x71\xe9\x9f\xbe\xb4\x03\xeb\xf7\xbf\x56\xc7\xbf\xba\x74\xe9\x9f\xbe\xd4\xc2\xda\xb2\xf6\xad\xfd\xd9\x1f\x38\xca\xc2\xa0\x81\x93\x13\xde\x3b\x08\xe7\xf6\x59\xf3\x2e\xad\x14\x2f\xe0\x67\x47\x7e\x8f\x5e\xb4\xd8\xc3\x5b\xb9\x11\xd7\x0f\xe2\x8f\xed\xa3\x56\x58\x6f\xc2\xc1\x54\x20\xf1\xb8\xca\xd3\x98\x2a\xa0\x73\x58\x18\x34\xe0\x2c\xcb\x52\xb6\x38\x17\xed\x1c\xf0\xef\xe9\x85\xa0\x25\x80\xc1\xe1\x7c\xd3\x97\x7f\xf8\xf3\x9f\xff\xf1\xb3\x3f\x68\xec\xe4\x5e\x78\x77\xbe\xdd\xda\x66\x0b\x37\xb5\x4a\x30\xf4\xbf\x19\xc3\x96\x63\x79\x66\xd1\xc8\xdb\x1a\xdb\x5b\x89\x9e\x3f\xe9\xae\x4f\xf1\xe1\xfa\x7e\xd1\x28\xb9\x05\x4b\xbf\x74\xe9\x4b\x2d\xdc\xdd\x64\x27\x0b\xb9\xb2\x19\x8c\xc4\xbd\x08\x97\xa7\xdb\xad\xc3\xce\xab\x06\x7b\x7d\x23\xe7\xff\x6b\x91\xcf\x37\xf5\x87\xe6\x51\xcb\x84\xfd\xb5\x3a\xf1\xd1\xa0\xf7\x71\xfb\xb4\xde\x3e\x6a\x22\x49\x67\x8b\x0d\x76\x73\x37\x5c\x39\x54\xfb\x1c\xb5\x1e\xb0\xc6\xb1\xac\x93\xb3\x3c\xcf\xb0\x4a\xe5\x60\x8c\xaf\x2a\x74\x05\x9b\xc9\x6e\xa5\x7d\x34\xd7\xb9\x7e\xda\x3e\x6a\x46\x3f\x36\x79\x6d\xc7\x35\xf0\x50\x73\xba\x5a\xb0\x7d\x73\xb0\x68\x19\x48\xdc\x3d\x24\x5e\x7c\xfa\xa0\x12\xdb\xda\x60\xf5\xdd\xb0\xfe\x14\xc9\x06\x1e\x24\x76\x7b\x15\x17\x85\xd3\x98\xeb\x93\x6c\xea\x97\xf6\xd1\xad\xe8\xc9\x78\xb8\xf7\x18\x6f\x86\x64\x17\x05\x01\xa1\x85\x95\x38\x70\x49\xd3\x9d\xcb\x89\x55\xc0\x1d\xc6\x9a\x4b\xd1\xd2\x2e\xdb\x68\x86\xf5\xe7\xb4\xc9\xf8\x1d\x09\x9b\x80\xca\x70\x07\x88\xaf\x72\x1f\x9c\x3d\xe3\x13\x77\x6b\x22\xbc\x75\xda\x9d\x7c\x15\x4d\x3c\x93\x24\x0d\x6b\x74\x57\x9e\x46\x0f\xe7\xc3\xda\xed\x76\xeb\xf9\x9b\x93\x71\xa0\xe7\x38\x97\x48\x31\xc3\x47\xc7\xd1\xfa\x3e\xbf\x16\x65\x89\xc0\x1d\xce\x54\xc3\xfa\x0c\xdc\xc3\x9d\xb3\x7a\xb4\x7b\x0b\x6b\x74\xaf\x9f\xb2\x83\xa9\xce\xe3\x67\x6c\x6f\x35\x5c\x7a\xdd\x6e\xce\x77\x1a\xdb\x88\x03\x0e\x62\xc5\x31\x60\xcf\x23\x21\x88\x7e\x6e\x45\xad\x0d\xda\xf6\xa2\x4c\xb4\xc0\x2b\xe2\xbe\x3f\x9b\xec\x6e\xb6\xd8\xe4\xab\xb0\x3e\xc3\x1a\xc7\xa9\xae\xb1\x3b\xb3\x0a\x55\xd1\xf8\x7a\xdc\x9d\x6b\x9f\xd6\xc3\x07\xd7\xbb\xf7\x17\xe1\xa8\xba\x25\xd3\x76\x74\xb6\xb1\xc1\x2f\x3e\xfc\xa5\x34\x82\x53\xca\x4e\x5f\xb0\xbb\x73\xda\xa5\x4b\x5f\x68\x6c\xf2\x56\x77\x6d\x8a\xd5\x0f\xd8\x83\x2a\xee\xfd\x11\xa3\xec\x7a\x81\xce\x0b\xa3\x67\x0d\xb6\xf0\x03\x5b\x78\x25\x3f\xcb\x5d\x7e\xe9\x0b\x62\x49\xd8\xfd\x5d\x3e\xd1\xeb\xb7\xd9\xe2\x73\x09\xff\xe6\x64\x36\xba\x77\x3f\xfa\xb1\xd9\xd9\xdc\x8d\xb6\x9a\xd1\x93\x71\x7e\x10\xa1\xbd\x9b\x1b\x9d\xeb\xa7\xbc\xa5\x8a\x6f\x19\x83\x15\xbb\x18\xd8\x8e\xc1\xd1\xfb\x96\x77\xd5\xf2\x74\x3c\x00\x6c\x6a\x32\x3a\xdd\xd7\x12\xcd\xf4\xa9\x61\x94\xdd\x72\xa5\xac\xe3\x39\xca\xaa\xd7\x3e\xba\xdb\x5d\xd9\x8d\x96\x76\xdb\xcd\x79\xe4\xa5\x60\xce\xd8\x42\x83\x13\x83\x3b\xb4\x30\xd8\xbb\xfd\x5a\x78\x73\x0b\x09\x3e\xd2\xd5\xee\xda\x52\xf4\xa4\xc5\xfb\x3b\x12\x04\x65\x9c\x9a\x2f\xbe\xfd\xf6\x6b\x65\x6e\x64\x81\xdc\x8a\xb0\x4f\x69\x4a\xd6\x6e\xc4\x90\x7c\xcf\x56\xbc\x22\x01\x68\x7f\xf9\xe6\x4b\xf1\xa9\xdf\x12\xf1\xa6\xde\xe7\xff\x5c\x4a\xac\x14\xbb\x33\xdb\x3e\xaa\xb6\x9b\xeb\xc8\xd3\xb4\x8f\xf6\x38\x6b\x70\xf7\x75\x38\xbf\xcd\xbb\x5a\x74\x87\x0d\xcf\x75\x03\xdc\xde\xe1\xca\x36\x3b\x5b\x21\x62\x95\x28\x92\x1d\x86\xfd\x8b\x70\x48\x48\x60\x49\xe1\x30\x58\x0e\x90\x8b\xbc\xeb\xf8\x6e\xd1\x42\xba\xc8\x16\x1b\x7c\xb7\x02\xd3\xc9\x16\x0e\x88\x44\x66\x40\xd2\xda\x74\xef\x6f\xb5\x9b\x53\xb8\xb2\x88\x1f\xab\xb0\xad\x65\x4e\xf5\xce\x56\xd9\xc1\x14\xf5\xf2\xf5\x5d\x36\xdd\x64\xb5\x03\x89\x3c\x97\x73\xcb\x9c\x46\xc5\x14\x62\xa1\xd1\xad\xce\x10\x6d\x00\xce\x8e\x0a\xba\x13\xfb\x1c\x33\x2c\xbb\x60\x4a\x4a\x41\xd9\x80\xcb\xe8\xd2\x57\xdf\x7e\xad\xd1\x45\x04\x5f\x87\x3c\xb7\x24\xaa\x3c\xd8\xee\x4c\x3f\x8d\x3f\x8b\x69\x51\x4b\x71\xde\xdf\x9c\xcc\x76\xc7\x7f\x61\xaf\x9f\x6a\xdf\xfc\xe9\x53\xed\xef\x7f\xff\xe1\x87\x5a\xf8\x68\x9a\x4d\xf3\x6b\x03\xf7\x53\xb8\xda\xe0\x2b\x73\xf4\x94\xb3\x21\xcd\x06\x5f\x16\x58\x22\xac\x1f\xd6\x96\xe9\x52\xba\xf0\x67\xb3\x64\x5d\xd0\x3e\x82\x01\xfc\x1f\xd6\x35\xb3\x54\x2e\x5a\x03\x79\xb7\xf4\x31\x9c\xea\x47\x27\xec\x64\x81\x2f\x25\x2f\xb6\x3c\xa4\x23\x6c\xe1\x76\xb7\x3a\x4e\x6c\x2c\x15\xc4\xdc\xac\x52\x28\x39\x5b\xe4\xdf\xf9\x92\x0c\xd9\x5e\x49\xac\x1b\xd0\x6c\x84\x44\xa6\x17\x90\x19\x8e\x1b\xd8\x43\x63\x04\x84\x63\xef\x56\xd7\xa2\x8d\xed\x70\x61\xb1\x3b\x75\x27\x47\xc7\x8d\xff\x67\xe7\x2d\xc1\x11\x88\x53\xc6\xee\xcc\xb2\xc9\x43\xb6\x7f\x3d\xb1\x00\xee\xd0\x50\xd1\x76\x12\xdb\x26\x7a\xd2\x8a\x9a\x67\xb4\x67\xd4\x72\x71\x90\xeb\xbb\xdd\xeb\xbb\xd1\xe9\x4f\x08\xd2\x3e\xba\xd5\x3e\xde\x40\x0a\xd2\x6e\xcd\x6b\x9f\x7e\xf6\x67\xad\x33\xff\x8a\xf3\x74\xb0\x93\xde\x9c\xcc\x86\x33\xd5\x76\x6b\x9b\xcb\x4b\xbf\xdc\x08\x9b\x8b\x48\x96\xdb\xad\xf9\xb0\xfe\x9c\xd5\x0f\x64\x0f\xb1\x16\x10\x49\xba\x03\x87\x3d\xf3\xaa\x19\x98\x9e\x4e\x04\xea\x73\xfa\x2d\xa4\xad\x34\x1c\xf5\x30\x0d\xcd\xa9\xf2\xf4\x53\xb6\xbf\xd6\x3e\x9e\x09\x9b\x8b\x6f\x4e\x66\xdb\xad\x49\xba\xc8\x97\x5e\x90\x0c\x73\x74\xb3\x7d\xf2\x88\x2f\x6d\x6d\xb9\xdb\x5a\xed\xec\x6f\x45\x6b\x37\xd8\xd6\x4b\x76\x1d\x96\x79\xc8\x2a\x58\x5c\x12\x28\x18\xd4\x52\xd1\x75\xaf\x20\x55\xe3\x4d\xfd\x49\x14\x6b\x9f\x40\xb1\xaf\x85\x1b\xdb\xe1\xcc\xeb\x7e\xf5\x62\x9a\x78\x5e\xed\x76\x6b\x9b\xa8\xed\x49\x35\x6c\x2e\x46\x6b\x37\xb4\x2f\xed\xc1\xe4\x1c\xa8\xd3\x95\x60\x19\xf0\xfe\x27\xbe\x7d\xfa\x29\x3f\x5a\x28\x25\x66\x41\xc7\x13\xa7\xd6\xe9\x6c\xce\x62\x1d\xbc\x14\xde\x9c\xcc\xb2\x85\xa7\x61\x7d\x26\xe6\x18\xf0\x48\xbd\x6a\xb1\x9b\x8f\xd8\xd1\x22\x5b\x78\x05\x9c\x06\xd1\x19\x12\xd1\x68\xbf\x0a\x41\x8d\x96\x2e\x09\x44\xed\x13\x17\x5c\xdf\xc5\x2e\x60\xe3\xe1\xca\x21\xa7\x3a\x93\xdb\xdd\xc7\x37\x62\x71\x0f\xb8\x68\xcf\x32\x48\x62\x36\xae\xda\x5c\x5c\xc5\x0d\x0c\xe2\x66\x67\xff\xac\xbb\xb2\xdf\xbd\xbf\xc8\x6a\x87\x99\xd0\x62\x0d\x60\x48\xb1\x94\xba\x76\x83\x1a\x9f\x21\x7e\x8b\x10\x01\x2f\xcf\xa7\x60\xf1\x09\xab\xdd\x67\x07\x53\x6c\xe1\x69\xe7\xfa\x69\x54\xbf\xc5\x6a\x07\x58\x37\xac\x2d\xd3\xd9\x05\x60\x3e\x17\xc8\x6b\x91\x18\x85\xfc\x7e\x8a\x73\xc3\x79\x63\xc7\x87\xed\xa3\xb9\x70\xb5\x81\xfc\x45\xb4\x76\x83\x37\xb5\xfe\x88\xf3\x61\xb8\x1c\x9b\xbb\x78\x8b\x44\xcf\x9f\x23\x01\x23\x7e\xe4\x60\x0a\xb4\x10\x70\x7a\x5e\xaf\x48\xb4\x31\xc7\x81\x5d\x40\x6a\x90\x6a\x55\x30\x70\x00\x81\x32\x79\x92\xa1\xe4\x3c\xca\xf9\xec\x62\x8e\x68\x97\x02\xa0\xca\xe9\x58\x19\xe5\x7b\x59\x93\x28\x24\x09\x79\xc6\xb0\xcb\x05\xcc\x67\xb7\xd8\xdc\xcf\x28\x00\xe5\x02\xcb\x0f\x8c\x61\x3b\x30\x86\x38\x11\x2d\xe8\xe1\xca\xa3\xf0\xe7\x7b\x9d\xc6\x14\xab\x3d\xd3\x7e\x37\x6c\x07\xbf\xd3\xd8\xed\xd3\x76\x6b\xeb\xcd\xc9\xda\xc5\xab\xc4\xe0\xff\x9e\x13\x48\x7e\xcc\xec\x22\xdf\x5a\x9c\x67\xe6\x84\x07\x8f\xf9\xda\x0d\xb6\x70\x9b\x33\x79\x33\x35\x3e\xcf\x4b\x8d\x70\x76\x5c\x23\x51\x80\x18\xfb\xd6\xbc\x76\xd1\xd7\xda\x47\xb7\x3a\xa7\xa7\x24\xd6\x3d\xbc\xc1\x57\x6a\xa6\xc6\x21\xaa\xb3\xb8\x40\xda\xb0\xcb\x79\x9c\x82\x16\xcd\xd4\xc2\xfa\x73\x3e\xc3\xb6\x73\xd5\x2c\xda\x05\xce\xfb\xd3\x4a\xa7\x05\x31\x5e\x75\xef\x87\x68\x73\x1f\x3b\x2c\x2a\xf4\x65\x71\x33\x6b\x49\x9e\x94\x8f\xb3\x64\x06\xf9\x91\x0c\xce\xb5\xfb\xe0\x21\x3b\xbd\xcb\x66\xe6\xf0\x27\xaf\xe9\x6b\xef\x7d\xac\x5d\xf4\xe3\xcb\xd6\x28\xd9\xbe\xcf\xf7\x23\x32\x92\xfc\xe6\xc5\xeb\x2f\x3a\x69\xb2\x83\xdb\x92\x1f\x52\xc7\x16\xdf\xc9\x00\xff\x27\xcf\x2d\x71\xa1\x2c\xdc\xff\xa5\x7d\x34\xc7\x16\x6b\xe1\xcf\xf7\x68\x31\xcc\xab\x16\x5e\x68\xc3\x62\xf9\x90\x9d\xea\x4e\xce\xf1\x31\x9d\x3d\x60\x7b\xab\x6c\xeb\x45\xe7\xe5\xb6\x98\x8c\x78\xa1\x59\xed\x01\xdb\xb9\xc5\x66\x97\x89\x45\x03\x46\x2f\x09\x8c\xdd\x49\x9c\xab\xc4\xb6\x96\x6a\x8a\x9e\x39\xc7\xdd\xe6\x57\xf2\x79\xcb\xf7\xf9\xf6\x60\xdb\xa7\x6f\x4e\xc6\x51\xe2\x60\xaf\x6b\xdd\x67\xab\x6c\xf2\x65\x38\xb1\xdb\xad\xce\x84\xb7\x7e\x24\x46\x80\xd4\x03\xd1\xf6\x03\x29\xc3\x86\x37\x66\xd8\xd9\x33\xb8\x46\x7e\xe0\x12\x53\x6b\x3e\xdc\xdb\x0a\x57\x1e\x69\x7f\xf8\xcb\xe7\x5c\x72\x11\x9d\x4c\xb3\x79\x8f\xc2\x7b\x35\x7e\xc3\x28\xfc\x1e\xf6\x2d\xf7\xdd\x88\x5b\xb2\x2e\xe7\x2a\x28\x30\xb9\xc5\x82\xe5\xc5\xea\x31\x7e\x23\x25\x55\x63\x02\x84\x0e\x99\x3f\x6a\x07\xf9\x11\x43\xaa\x1b\xf9\xf4\x07\xd6\xb5\x40\x67\xb5\xe9\x70\xee\xb1\xaa\x7c\x24\xf1\xa6\x34\x06\x7b\xcf\xd7\x51\xb3\x44\x2a\x29\x7f\xc4\x1d\x05\xbd\x9e\x28\x5c\x7d\x1d\x6d\x35\x51\xa9\x87\x20\x03\x03\x03\xb9\xbc\x5b\x2c\x9a\x83\x2e\xbf\x38\xae\x0a\x48\xb6\x30\xd1\x3e\x9a\x67\x73\x0b\xed\xd3\x7a\x8c\xaf\x34\x66\xb8\xde\xb0\x68\x44\x28\xb7\xc6\x48\x6d\x26\xbe\x93\xc6\x0c\x48\x32\x68\x4f\x91\xe0\xf2\x1d\x4b\x5a\xa3\x01\xdb\x31\x40\x1d\x45\x8d\xbd\x78\x48\xa2\x1c\xde\xdc\xd0\x58\xb4\x76\x23\x97\xfb\x8e\x54\xab\x97\x51\x19\x28\xf4\x80\xfc\xd0\x08\x15\x56\x42\x29\xe8\x0b\xad\xa0\x6f\x99\x5e\x7e\x44\x0f\x17\xeb\xd1\xcb\xc7\xb9\xdc\x77\x66\x25\x18\xb9\xac\x28\x42\x0d\xd2\xad\x11\xf1\xc6\x6d\x16\xf3\x6f\x23\x56\x99\xf3\x7a\x25\x7f\x18\xd4\x9d\xad\x05\xbc\x06\xde\x9c\x6c\x20\x59\xc3\xeb\x81\x6f\x0d\xdf\xcd\xdb\x66\xd1\xf8\xed\x35\x5b\xb7\xd9\xfe\x1a\xaf\x99\xbc\xb6\x51\x19\x5b\x2a\x07\x3a\x17\x42\x8f\xe6\x3a\xbf\x70\x99\x4e\xbd\xad\xd9\xab\x9f\xb8\xe4\x3b\xf9\x73\x77\x65\xef\xd7\xea\x44\xa7\xf1\xaa\x33\xbe\xc4\x29\x05\xa8\x85\xe5\x89\xe9\xe5\x1f\x78\x77\x38\xb9\xee\x45\xac\xb2\xa4\x99\x8d\xe4\xf8\xbc\x19\xbe\x5b\xf1\xf2\x7c\x19\xb7\x3a\x8d\xf1\xb0\xb9\x98\x2b\xba\x79\xb3\xa8\x23\xb7\x97\xf3\xac\x92\x55\x1a\xe4\x8d\x70\x90\x83\xf6\xe9\x02\x29\xbb\x87\x5c\x6f\x18\xce\x8a\x60\x98\xcf\x56\x3b\xfb\x07\xb4\xc5\x79\xa1\xd5\xa7\xf0\xcd\xc9\x86\xd0\x8c\x1b\x8e\x3b\xaa\x77\xce\x56\xc3\x9f\x36\x71\x8d\xde\x9c\x6c\x74\x7f\x7c\xde\x3e\xba\x19\x2b\x42\xe8\xc2\x42\xbe\x07\x18\x6b\xdf\x72\x02\x31\x9d\xed\xa3\x2a\x3b\x18\x27\x75\x2c\x8c\x14\x39\x6d\x5c\x1d\x3e\x58\xe0\xe3\x3b\xd3\x3f\x6b\x1f\x0d\x7e\x7c\xd1\xff\xe8\xfd\xc1\x8f\xf1\x02\x09\x7f\xa8\x72\xb6\x6d\x82\x5f\x36\xe1\xd2\x21\x17\xd2\xf6\x5f\xb0\xe3\x43\x56\xdf\xd5\x2e\x16\x34\x76\xb0\x10\xae\x1c\xb2\xa9\x49\xb6\x3f\x1b\xd6\x16\x11\x37\x71\x38\x20\xef\xc2\xfc\xe5\xe1\x50\xc1\x66\x17\x5b\x2e\x3c\xab\x86\x2f\x5b\x88\x97\x36\x5e\xd9\x73\x47\xec\x41\x3b\xe0\x14\xc6\x96\xac\x1e\x4e\x63\xb2\x0c\x59\x0e\xb5\x72\xe7\xf1\x33\x15\x1e\xfb\xde\x77\x6b\x78\x16\x4c\x4e\xd1\x2e\xd9\x41\xe6\x8e\x9b\xd8\x45\x05\x2f\x4e\x0b\xf6\x15\x67\xac\x73\x36\xdd\x6e\xce\x77\x1f\xdf\x8e\x8e\xc7\xb1\x95\x68\x6f\x86\xbd\x9e\xd4\x7e\xaf\xb1\xda\x54\xf7\xce\x06\xaa\x4a\x3b\x0d\x38\x18\x23\xa6\x6f\x54\x1c\x5a\x1b\xab\x80\x5b\xf0\xa2\xaf\x09\x32\x4d\x97\x1c\x9f\xe4\x5f\x38\xc7\xc5\x6f\xf7\xfa\x0c\xae\x56\xc6\x92\x68\xed\xd3\xa9\xb0\xfe\x94\x0f\x16\x26\x1a\xe5\xbc\x76\xeb\x90\x0b\x82\x52\x35\x5c\x7f\x1a\x2e\x1d\x72\x64\x4a\xb7\xf9\xa0\x6a\xcb\xdd\x7a\xb5\xf3\x64\xbc\x3b\x3d\x17\x2e\x1f\x20\x7a\x52\x11\xcf\xdd\x63\xd3\xad\xf6\xd1\xad\x70\xf9\x98\xaf\xf3\xec\x4c\xf7\xce\xbe\x9c\x28\xea\x36\x02\x85\x7b\x5b\x6c\xeb\x86\x8a\x42\xdd\x4f\x39\x00\xe7\xb5\x82\xde\x4a\x6f\x4e\x6a\x58\xef\xcd\xc9\x0c\x4d\x2c\xae\x20\xec\xf7\xee\x34\xbf\x48\x09\x0d\x62\x90\xe7\x02\xcb\xe8\xd0\x88\x7b\x28\x0f\xc2\x5d\x72\xd5\xe4\xf6\xc6\x3b\x8c\x1f\xe4\xb3\xe9\xb0\xbe\x11\xd6\x96\xd9\xab\x9f\xd8\xd6\x8b\xf0\x5e\x4d\x8c\x2b\xc6\x2f\x15\x12\xc9\x11\xc6\x4d\x4a\xc0\xc0\x75\x0d\x7f\x84\xf3\x17\xd4\xe9\x7b\x67\xac\xf9\x84\x94\x98\x07\xb7\xdb\xcd\x79\xed\xbf\x6b\xed\xd3\x39\xbe\xf6\x8e\xeb\x18\x40\x23\xe4\x9e\xef\x3e\x78\x88\xe4\x02\xf5\xd5\x72\xf3\x22\x23\xd8\xad\xae\x75\xce\xa6\x51\xc5\xd6\x3e\xdb\x0f\x97\x8e\xb1\x0d\x50\x57\xe2\xb6\x0f\x46\x5d\x63\xc8\xcc\x07\xae\xa7\xb7\x8f\xb6\xc2\xbd\x6d\x92\x1c\xf0\x8c\xa4\x61\x60\x7c\x38\x4b\x37\x77\xc3\xea\x78\xbb\xb5\x15\xcd\xcc\xf6\x82\x59\x0e\xa7\x8e\x9e\x95\x77\xaf\x5a\xde\x18\xce\x2b\xca\x26\x6a\x23\xe1\xf8\x63\xb6\x35\xc7\x1a\x53\xdd\x3b\xdb\xbd\x38\x44\x6d\xbd\xb7\x4a\xbf\xde\x25\x1b\x3c\x1f\x3d\x76\x51\x8e\xa7\xb7\x77\xe7\x8f\x30\xe6\x4c\xfb\x35\x29\x09\x21\xf1\x42\xb5\xe5\x70\xb5\x21\x79\x9b\x5c\xee\x3b\xbe\x9b\x2f\x23\x25\xe3\xb7\xa7\x58\x52\x4e\x26\x7a\x29\x99\x04\x43\x11\xa1\xd3\x78\x45\x13\x02\x40\xaa\x6a\x26\x7b\xa7\xab\xe7\x22\xbe\x8f\x25\x8f\x87\xe4\xb5\xb6\xc8\x6e\x6e\xf0\x6d\xff\xfc\x71\xe7\x6c\x1e\xfb\x1d\x03\x93\x5a\x25\x51\x98\xfb\xae\xe4\x16\xcc\xe2\xe5\xdc\x98\xe5\x93\x40\x83\x44\x3a\xe7\xb8\xf4\x5c\x45\xbf\x4b\x6e\x81\xd7\xa6\xb3\x04\x9b\x31\x97\xfb\x6e\xc8\xf5\x4a\x97\x73\x7f\xf1\x2d\xef\xcf\xc9\x97\xce\x6f\xac\xb2\x0b\x9f\x90\x35\x21\x5d\xf9\x1f\x95\xf7\x4f\x1a\xed\xd7\xa9\x57\xd0\x6f\xac\xde\x47\xd0\x4b\x97\xbe\xf8\x16\xc4\x3a\x50\x8d\xe2\xea\x20\xc2\x2f\x82\xa0\xec\xff\xc5\x2b\xea\xa8\x9a\xfc\xcb\x37\x5f\x6a\x12\xef\x58\xd1\x35\x0b\xbc\x2c\x9c\xdf\xed\x56\xc7\xe9\xfb\xb7\x96\x59\x82\x8e\xb1\xf5\xc7\xdd\xd5\x0d\xc2\xf3\x49\x25\x18\x81\xaf\x78\x99\x8b\xaf\x9c\xf9\xfe\x63\xa6\x4c\x97\xfb\xb3\x35\xfa\x07\xcf\x74\xf2\x58\x0d\xef\x51\x56\x9b\x0a\x97\x1a\x54\xf9\x53\xb7\x54\xb2\x83\x4b\x95\x52\xc9\xf4\xc6\xf4\x70\x61\xb1\xdd\xdc\x62\x07\x0b\x51\xeb\x2e\x15\x7d\x65\xf9\xbe\x39\x6c\x51\x11\x9f\xe9\xf1\x06\x15\x7d\x3a\xe2\xda\x79\x51\x82\x5c\x7a\xee\x5b\xcf\xb2\xa8\x2d\xe5\xcd\xe7\x53\xce\x01\x73\x7e\x8d\xdf\xb7\xc7\x39\xa9\x00\xb0\xe0\xc1\x36\xfd\xc6\x61\x16\xcb\x23\x26\xf0\xcf\x04\x80\x52\x78\xfb\xa8\xd9\xb9\xf5\x22\x5c\x9e\xe6\x82\x4e\x63\xee\xd7\xea\x78\x77\xf5\x2c\xbc\x35\xd3\x3e\x69\x84\xf7\x0e\xf8\xc7\xda\x72\xb8\xfb\x34\x6a\x9e\xbd\x39\xa9\xbd\x67\xbc\x39\x99\x49\x21\x2b\xb8\xc1\xbb\x21\xfc\xb5\x3a\x9e\x44\x18\xd6\x96\xa3\x89\xe3\x0c\xb4\x7e\xf1\x9d\x7b\xdb\x83\xfc\xd7\xea\x78\x34\x71\xcc\x07\xb1\x5c\x8f\x9a\x67\xf0\xbc\x60\x7f\x2f\x26\x09\x29\xb6\xc4\xad\x5d\xf4\x41\xdf\xc9\xc5\xae\x34\x50\x58\xaf\xb2\x83\x05\x04\xd2\xda\x47\x4f\xf1\xb5\x0e\xd5\xa3\xd7\xb2\xc1\xb7\x76\xb2\xc0\x51\x5d\x2c\x17\x49\x2a\x6b\xc3\xfa\x0c\xd2\x17\xf5\x8c\xc0\x23\x85\x77\x2e\x38\xdf\xf9\x28\xc5\xe6\x8b\x95\x82\x95\x98\x2f\x36\x3b\xc9\x16\x9f\xb1\xbd\x45\x6c\xbe\x7d\xf4\x93\xf6\xbb\x8b\xfe\xef\x00\xab\x73\xc5\x71\x47\x1d\x02\x0f\xeb\x4f\xa3\x8d\xed\xee\xd2\xfd\x4e\xa3\xf1\xe6\x64\x4d\xd8\x1e\x18\xb6\x93\x77\x3d\xcf\xca\x07\xba\xa2\xdc\x7a\xca\x66\x8f\xbb\x93\x73\x1c\x8b\xbc\x0b\x63\x79\x5d\x3c\xb1\xcd\xab\xe7\x38\x51\x49\x9a\x47\x18\x83\x96\xe5\x18\x81\x79\xc5\x72\x62\xfa\x11\x73\xa1\x73\x8f\xa2\xa5\x5d\xbc\xa0\xcb\xae\x91\xae\xa0\x52\x97\x8c\x3a\xae\x37\xdc\x53\x45\x7d\x8a\xcb\xa8\x12\x58\x66\xa9\xa7\x8e\x4a\x2b\x32\xea\xe0\x6a\x02\x7c\xc5\xb7\x0a\x09\x02\x97\xba\x46\xe8\xc1\x09\x47\x2e\x27\x2e\x9e\x61\x55\x18\x96\xef\x94\x28\xde\xa7\xe4\x0e\xa3\x64\xfb\xa4\x1c\x11\x12\x62\x58\x7f\xda\x3e\x9a\x0f\x67\xaa\x48\x32\xa2\xb5\x1b\x52\x36\xa1\xc7\xf9\xc9\x9f\x3b\xe3\x4b\x39\xb8\x3b\x3d\xb0\x5c\x51\xf4\x33\xa0\x17\x53\xf9\x7b\xbc\x53\xa5\x98\x8b\xc3\xe7\x97\xa0\xec\x4e\x0f\x22\x77\xd4\xe1\x37\x4d\x5f\x4c\xe1\xf2\x01\xbe\x61\x76\xaa\x93\xf1\x50\x57\x1b\x6c\xf1\xc9\x39\x58\xe5\x5d\x98\x89\x93\x36\x57\x0a\x89\x54\x20\x59\xd7\x6c\x3f\xd0\x3b\x8f\x9f\xe1\x45\x26\xf5\x9e\xed\xa3\x39\xb6\xb7\xca\xea\xbb\x9c\x33\x2b\x9a\x7e\xc0\x65\x78\x1c\x00\x87\x8e\x76\x5a\xdd\xfb\x5b\x02\xb4\xc9\x8f\xf2\xe2\x3c\x3f\x75\xa7\x73\xaa\xe0\xc0\x7b\x04\x6a\x61\x2c\x22\x79\x4a\xaa\x69\xa6\xe6\x70\xe2\x11\x1b\xbf\xa0\x6f\xaf\x62\x3f\x78\xab\xb1\xd2\xc9\x1f\x31\xae\x58\x63\x3a\x7b\x5d\x0b\x6f\xbe\x08\xf7\x66\x80\x39\xbf\xdd\x6e\x3d\x27\x46\x50\xf0\x0a\x72\xd0\x5a\x7c\x15\x82\xea\x2b\x57\x41\x3d\xf3\x55\xcb\xb3\x87\xc6\x24\x42\x60\x1d\x7f\x13\x8e\x59\x2e\x48\xa0\x86\x68\x7c\xba\xb3\xff\xba\x3b\xf1\x03\x5f\x6a\x41\x60\x24\x18\x1f\xf0\xc4\x2e\x2a\xcd\xa3\x4d\x50\x73\x4d\x1e\x22\x58\x58\xdd\xe1\xa3\x82\x3d\x2a\x14\x9a\xf3\xb5\xf0\xc1\x75\x62\xc8\x14\xf5\x56\xce\x0f\xec\x62\x91\xcf\x36\x9a\x25\xa9\xbc\x52\xbb\x35\x17\xdd\x38\xe4\x8d\x6f\x2c\xb6\x9b\xeb\x52\xed\x11\xde\xda\xc6\x8d\x83\x8c\xbd\x78\xa0\xae\x75\x4e\x9f\x47\x3b\x2d\x7e\x5e\x6a\x8f\xba\xf7\xb7\xd8\xfe\x75\x3e\x6f\xa0\xd5\x0e\x67\x76\xf8\xae\xc7\xef\xc8\x58\xcb\xc9\xc7\x1e\x70\x71\xcc\xf5\x86\xd3\x1d\x08\x57\x76\x64\x07\x90\x60\xc0\x8b\x09\x5f\xbe\x54\xeb\xd1\x93\x16\x3b\xa9\xca\xd6\x11\x58\xd0\x9e\xd4\x28\xf9\x41\x85\xf2\xff\xa4\x21\x22\x72\x65\x7f\xa1\x3d\x8f\x31\x08\x8c\x8a\x72\x1a\xa2\xf5\xfd\xf0\xd1\x34\xb2\x2b\xf2\x1c\x00\x55\xfe\x8e\x9f\x9b\xcb\xb9\xfc\x88\xe9\x0c\x5b\xf4\x96\xa3\x93\xec\x01\x8f\x44\xb9\x7f\x71\x6d\xc7\x70\x1d\x9d\xdd\x7c\xc4\x39\xee\xe6\x7c\x6c\x90\x66\x5b\x42\x15\xc5\x6a\x2b\x9d\xcd\x5d\x61\x3f\x35\xa6\xb3\xc9\xe7\x7c\x96\xd0\x7a\x6a\xc8\x2d\x16\xdd\x51\xcb\xf3\x75\x36\xf9\x73\xf8\xf3\x6e\xa7\x3a\x99\xf3\x03\x93\x1f\x79\x50\x0e\x4d\x1c\x77\x7e\x79\x48\x50\xb6\x33\x4c\x50\xed\xa3\x3d\xfa\x46\x1f\x72\x15\x47\xfc\x06\x46\x95\xbe\xe6\x38\x4f\x3a\x00\xf4\x95\x73\xd2\xde\x55\xab\x10\x53\x55\xb8\xf9\xb4\x70\xb5\xc1\x09\xf2\xd9\x83\xe8\xde\xfd\x68\x0d\x0c\x5b\xe2\x4a\x65\x33\x08\x2c\xcf\x41\x25\x3b\x74\x54\xa9\xcf\x27\x6b\x72\xbc\xb3\x7f\x84\x88\x12\x2f\xa4\xb9\xef\x84\x15\xd9\xe5\x5c\xa6\xa5\x99\x24\x63\xaa\x2c\x97\xa3\x39\xc6\xd9\x15\xcf\xc5\x78\x7c\x7d\x85\xe1\xcd\xf9\x56\xbe\xe2\xc1\x5c\xc2\x26\x65\xfb\x33\x6c\x72\x37\xa1\xff\xa3\x49\x07\x55\x24\xdd\x72\xb4\x0c\xe5\x72\xd1\xce\x93\x26\x10\x8f\x24\xea\x9d\x73\x05\xab\x68\x05\x96\xae\x9e\x90\x5c\xae\x5c\x19\x2c\xda\x79\x69\x2d\x87\x6b\x27\xc6\x40\x96\x91\x8a\xba\x25\x71\xdb\x1d\x4c\xb5\x4f\xd6\x40\x55\xc6\x2b\xbd\x39\x99\x65\xc7\x87\x9c\x9a\x82\xd1\x43\x38\xbf\x1d\x2e\x1d\x62\x33\x7c\xea\xe0\x26\xc0\x47\x5d\x76\x67\x16\xdf\x78\x13\x0c\x85\xbc\x29\x49\x73\x57\xc8\x10\x98\xe9\xd9\x48\x68\x7b\x70\x6e\xe5\x82\xc1\xda\x56\x8a\x45\xba\x93\xc4\xeb\x28\xf1\xe8\xc2\x90\x14\x97\x89\x0c\x49\xb9\x84\x8e\xc6\x48\x33\x55\x56\xdf\xe5\x03\x9b\x6d\xe6\x2a\xe5\x02\x17\xdf\xc4\xa4\x84\xeb\x2f\xc3\xe5\x03\x9a\x94\x64\x99\xaa\x79\xe7\x97\xa7\xb2\x05\xb0\x96\x90\xd3\xc6\xc5\x31\xeb\xb5\x14\x45\x73\x1e\x12\xb3\x52\x50\x42\x3d\xd5\x69\x6c\x93\x01\x09\x4c\x3a\x1a\x6a\xb0\x1a\x5d\xb0\x9c\x11\x98\xd8\x25\xa2\x57\x9f\x61\x93\x3f\x4b\xcb\x8c\x5c\xde\x75\x02\xdb\xa9\x58\x7a\xd4\xda\x89\x5a\x7b\x24\xe1\x25\x8c\x14\xe9\x5b\x8e\x9e\x71\xe9\x51\x77\x70\x0c\x75\x38\xa8\x98\x50\x17\x1e\xdf\xb4\x89\x44\xf4\x7b\x44\x4e\xbf\xff\x8a\xc7\x63\xf1\x46\x5a\xf1\x03\xb7\x24\x88\x0e\xda\xd1\xc4\x2b\x86\xa8\xf3\x23\xae\xeb\x93\xaa\x1a\xe1\x90\xd7\x21\x01\x0c\x81\x68\x3d\x08\x00\x27\x3d\x71\xbe\x70\xdb\x1b\xf9\x8a\xe7\x59\x4e\x20\x5b\xc4\x53\x00\xaf\x4a\x12\x13\x17\x22\xe3\x81\x00\x51\x30\xec\x12\x97\xdb\xe2\x97\x74\x10\xc8\x24\x5f\xce\x4e\x1e\xb1\xf5\xd7\xd1\xcc\x34\x5f\xe1\x44\x57\x52\x3b\x43\xed\x52\x7a\x67\x88\x45\xcf\xa6\x19\x6e\x51\x61\x8a\xa8\xc3\x58\xc2\x27\x26\x36\x65\xc4\x49\x11\x4a\x03\x2e\x58\x1b\x09\x00\x54\xbe\x21\x43\x90\x00\xce\xe0\x4c\xd5\x66\x94\x27\xa7\xf1\x74\x4f\xe5\x20\x09\x14\xfa\x2d\x07\xc6\x47\x3e\x7f\xc0\x8f\x15\x3c\xa9\x0b\x53\x9c\xb8\x69\xd4\x0d\x25\xa8\x00\x35\xf0\xae\x34\x40\xd1\x95\x01\x83\xee\x27\x15\x0f\x64\x7c\x4c\x45\x64\x60\xac\x02\x20\x57\xaf\x10\xba\xf6\x51\xab\xf3\x64\x3c\x45\xee\x24\x71\x53\x4d\x54\x62\x1b\x14\xa9\xf1\x2e\x7b\x36\x28\x02\x10\x89\xf8\x29\xd4\x41\xfb\xaf\xdb\x47\x4d\x2a\xa2\xcd\x89\x25\xb8\x27\x65\x5f\x8a\x16\x50\x26\xea\x03\x94\xd1\x49\x4d\x42\x88\x17\x78\x0e\xd0\x69\x6c\xf7\x92\x68\x62\x48\x81\x54\x44\xeb\x47\x48\x1e\x90\x48\xfd\x5a\x9d\x40\x66\x1a\xa9\xc3\xff\x9e\x46\x2d\xd6\x37\xd1\x09\xb9\x71\xcd\x42\x01\xf6\x18\x76\x1f\x79\x63\xb2\x18\x57\x27\x97\x83\xa9\x20\xa4\x56\x91\x9f\x8d\xc4\xeb\x85\x6f\x39\xe2\xc5\x82\xbd\x9e\x94\x9a\xee\x68\xe9\x17\xb6\xb7\x28\xdf\x2d\x50\x83\xcc\x6a\x07\x70\x39\x93\x1e\x3b\xf5\x28\x91\xf9\x78\x81\xd7\x94\xfa\x5e\xd1\x39\x9b\x8e\x76\x6f\xa1\x55\x81\xe8\x91\x3c\xbc\x3d\xa3\xa1\x51\xc6\x87\x97\xf6\x96\xbc\xc6\x71\x77\x29\xfc\x36\xa0\x05\x8e\xff\xf1\x43\xce\x48\xd1\x15\xef\x8f\x90\x13\x46\x6b\xbb\x7d\x74\x0b\xc8\x89\x42\xc5\x67\xaa\x28\xbf\xf5\xb0\xee\x52\xd1\x8f\x9e\x16\x61\x7d\xa6\x7b\x7f\x36\x5a\xda\x48\xf1\xed\x64\x7a\x20\x58\x48\x60\x82\x7d\x69\x7b\xf7\x91\x1f\x78\xae\x33\xfc\x31\xbe\x08\xa0\x9f\xc6\x9b\x93\x8d\x8f\xde\xa7\xef\x1a\xe7\xfc\x37\xb6\xa3\xfa\x2d\xbc\x4e\xb4\x8f\x4c\xd5\x3e\xfc\xc9\x44\xfb\xf4\x5e\xb4\xb4\x11\xd6\x16\x95\xce\x81\xa9\x78\x58\x5b\x4e\x01\x1f\x1d\x75\x76\xc6\x01\xac\xbb\xb2\xdf\x7d\xbc\x8a\x16\xe5\x8d\x56\x38\xf3\x3a\xda\x5b\x0a\x37\x6b\x62\xe6\xf9\x4e\x8a\xa7\x49\x9d\x40\x9a\x5b\x45\xea\x46\x96\x23\x53\x79\x2b\x86\xca\x2b\xc0\x15\x0a\x15\xc8\x64\x62\xfd\x88\x2d\xce\x22\x43\xc0\x27\xac\x07\x4b\x2c\x25\x8a\xea\x7a\x42\x07\xc9\xbf\xe6\x85\x1a\x0e\x0b\x50\x19\x47\x6b\x9c\xda\x38\xca\x20\x88\x1b\x4d\xed\x1e\x3a\xff\x30\x6c\x5c\xab\xe4\x88\x25\x15\xc0\x52\xb2\x9e\x7d\xde\xbd\x43\xec\x40\x0f\x60\x8a\x18\x28\x15\xd8\xc1\x14\x9d\xdf\x1e\x9e\x41\x12\x05\x7c\xa5\x96\x66\x36\x49\xd2\xd0\xd3\x94\x18\xab\xd2\x46\x06\x81\xe0\x9d\x87\x15\xe5\xe2\x03\xc8\xde\xb8\x20\x47\x37\xc3\xe7\x9b\x64\x0a\x56\xdf\x05\x7b\x71\x21\x41\x84\x3f\x6d\x72\x66\x51\xf5\xc2\x80\xb9\x0d\xf8\xf5\x0a\x03\xec\x34\xb6\x69\xfa\xeb\xbb\xda\xff\xaa\xb1\xad\x1f\xd9\xd4\xa4\xdc\x02\x9d\xb3\xe9\x5c\xe0\x5e\xb1\x9c\x54\x15\x7c\x20\xe8\x5b\x25\xd7\xe7\x81\x45\xf9\x0e\x08\x2b\x3e\x5d\x90\xd1\xcd\xc3\xb0\x3a\xfe\xe6\x64\x4d\x85\xe0\xe3\x3d\xa9\xb2\xc5\x46\xe2\xe3\xd0\x90\x8e\x2f\xca\xb9\xc4\xbb\x06\x18\xf5\xa0\x85\x57\xbf\x16\xe9\x2a\xa4\xea\xfd\xa0\xc0\xd2\x20\xf1\xc0\xe1\xeb\x78\x82\x39\xb5\xdb\x9a\x6e\xb7\x4e\xd5\x73\xc9\x4f\xa6\xfa\x00\x82\x87\xb2\x76\x40\x66\xa4\x20\x6f\xf0\x03\x52\x3f\x08\x97\x8f\x39\xd5\x39\xbd\x1b\x4e\xec\xa2\x72\x81\x26\x0c\x95\xe7\x20\x5a\x70\x72\xab\x5e\xf1\x0a\x62\xf4\x3a\x68\x1f\xbd\x0c\x57\x0e\x71\xfa\x41\xf1\x16\x77\x7c\x24\x08\xca\xf0\x8e\xd7\x9c\x57\x0d\x8f\x85\x60\x3b\x8b\x5e\x02\x6c\x8a\x0c\xd7\x84\x85\xa3\xe0\x9d\xef\xcc\x12\xeb\x01\xed\xb0\xe9\xbd\x70\x6e\x1f\x55\x35\x64\xd5\x70\x67\x96\x6c\x5e\xe2\xd1\x7f\xf7\xc1\x65\xff\xe2\x77\x1f\x5e\xf6\x2f\x7c\xac\x21\xc7\x8e\xad\x61\xff\x60\x2a\xc8\x59\x02\x59\x37\x40\x8a\xa4\x57\xfb\x88\x4f\xed\xc7\x17\xbf\xfb\xfd\x65\xff\xa3\xf7\xe1\xef\xd4\x78\x88\xbf\x25\xb3\xe1\x73\x57\xd6\xcf\x9b\x8e\xf1\xaf\x9e\x2e\x3d\x30\xb0\xbd\xc4\xcc\xce\x3c\x0b\x17\x16\xf0\x8a\x68\x37\x67\xa3\xd6\xcb\xe8\xd1\xf8\x9b\xa3\x83\xc4\xde\x12\x0f\x64\xbe\x95\xf7\xac\x40\x0f\x6b\xcb\x9d\xea\x64\xb4\xfe\x32\x9c\xdf\x46\x76\x4f\xea\x8e\xd4\x6a\xc1\x88\xe5\xa4\x5f\xd6\xa2\x1b\x87\x6c\x71\x9e\x2a\x29\x6f\x6a\xa9\xaa\xa8\x78\x22\x0d\x31\xbd\xba\x65\xbc\xb7\x49\xb4\x09\x0d\x9e\x82\x16\x5f\xd8\xf0\xc2\xea\x4e\x8b\x57\xf3\xc4\x23\x21\xa7\x15\xd9\x88\xe8\x30\xa7\x89\x7f\xfc\x26\x1f\xde\x3b\x88\x76\xee\xb0\xc5\x79\x76\xf0\xa0\xd3\xb8\x27\xfc\xe0\x70\x3c\xe3\x19\x6b\x46\x8a\xf4\x9e\x35\x53\x95\x59\xbd\xb5\x04\x15\xec\x7d\x92\x25\xcb\x67\x49\x0d\xfb\xbd\x7e\xfa\xb4\x5b\xfa\xbe\xb7\xf6\xaf\x88\xd4\xfe\x6d\x87\x13\x8c\x5c\xdf\xe1\x7c\x86\x8d\x85\xf6\xd1\xd3\xc4\x03\x29\xd8\x85\xca\x69\x06\xc7\xd1\xcd\x37\x27\xb3\x1f\x0d\x7e\x1c\xfb\x98\x1d\x4c\xa1\xb2\x8a\xcc\xe1\xea\xbb\x99\xd4\xe4\xa3\xf7\x07\xd3\x67\xc6\xb3\xd0\x1f\x27\xb0\xd2\x24\x0c\x85\x16\x64\x35\xfa\x4f\x49\x9f\xda\xe2\x7d\xa6\x0f\x8e\x3e\xcb\xda\x1f\x5d\xf2\x6e\x57\x51\x11\xf2\xac\x95\x16\x76\x48\x44\x10\xce\x25\xe2\x02\x16\x57\xb5\x07\x94\x2d\xce\x4b\x3b\x07\x55\x31\x14\xed\xcd\x44\xcd\x1d\xb0\xde\x5d\x6d\x9f\xce\xa7\x2e\xee\x37\x27\x1b\x59\x6d\x9c\xb3\x6d\xa1\xe1\x5e\x0e\xd7\x84\x0a\x06\x5c\xac\xc4\xe5\xf6\x52\xcf\x9c\x9c\x3c\xce\xce\x11\x2c\xce\x8e\x72\xfe\xf0\x76\xf6\xa5\xc0\xa5\xee\xce\xce\xd9\xfd\x76\x73\x9d\x9f\x6b\xa8\x26\xeb\x84\x0f\x88\xe7\x41\x1b\x89\x4f\xbe\xfe\x07\x70\x33\x13\xad\x20\xae\x68\x7d\x9f\xcd\xcc\x71\xd2\xbd\xf7\x18\x6c\x19\x5b\xed\xd3\x7b\x58\xbf\x7b\xfd\x94\x35\x8e\xd5\xd9\x43\x0d\x2c\x17\x05\xee\xbd\xcc\xf0\x6a\x42\xb4\x0e\x3e\x6c\x03\xad\x41\x1e\x50\x8e\x50\x1d\x5d\x7a\xf4\xc4\x7e\xf0\x49\xb6\xe4\x8e\x51\xe6\x29\xb5\x63\xa4\x02\x98\xf8\xf6\xad\x39\x56\x3b\x3c\xef\x3e\x06\x2b\xea\x98\xa5\x59\x78\xda\x3e\x59\x43\xd3\x46\x71\x36\x25\x73\x89\xdd\x44\xd6\x8c\xba\xa9\x2e\x65\x9a\xc7\xec\x5d\x53\x62\x35\x33\x2b\xa5\xf8\xcd\xde\xca\x29\xb6\x53\xb2\x9a\xaa\x31\xec\xdb\x38\x4f\x75\x20\xca\xc6\xed\x69\x2a\xc9\x7d\x72\x19\x06\x35\x77\x47\xf3\x72\xa6\xa4\x7a\x0c\xbb\x83\xbd\x48\xae\x36\xea\xcd\xc1\xc9\x1b\xc9\x18\x3a\xc6\xa5\x64\x87\x98\x99\x01\x25\xec\x80\xe3\x3a\x70\x3f\xa1\xc6\xa3\x73\xb6\x4a\x3a\x22\xd8\x81\xa9\x67\x05\x7a\x32\xf0\x07\x8a\x96\x79\x55\x90\x06\x7c\x5c\x20\xdb\x4d\xa5\x14\xf7\xb5\x52\x88\x64\x80\x50\x8a\xe9\x24\xa6\x1e\x75\xc3\x77\x66\xf1\x11\x13\xa7\x13\x15\x17\xe1\xd2\x21\x5b\x7f\x98\x41\x1b\x50\xad\x8c\x8d\x51\x3b\x64\x62\xaa\x14\x08\x6f\x27\x70\xd9\xa7\x56\xc0\x30\x36\x01\xa4\x74\x55\x3c\x23\x42\x57\xa1\x93\xbf\xa9\x33\x2a\x36\xd5\xa8\x19\xcd\x48\x61\x65\xb1\x0f\x52\x27\xaf\x76\x06\xa8\x15\x6d\x96\xd8\xb8\x55\x51\xf4\xa1\xd2\x9b\x20\x84\xe5\x9f\xa2\x59\xe1\x87\xe8\xe0\xa8\x7d\x3c\x19\x1e\x4d\xf2\x8f\xea\x43\x11\xe8\x4b\x50\x7b\xd0\x3e\x5a\xd2\x84\x08\xcd\x99\xd3\x85\x06\x5e\x06\x52\x7e\x06\x55\x19\xf9\x10\xa4\xfa\x43\x8f\xe4\xaa\x12\x3e\x09\x21\x6e\x0a\x24\xf0\xaa\xda\x27\x05\x27\x05\x21\x84\xc4\x89\xc5\xde\x57\x77\xb0\x22\x5d\x17\x9b\xfb\x6c\x7f\xad\xf3\x64\x5c\x55\x01\xb3\xc5\x15\x58\xfd\xef\xf8\x94\x5f\xce\xe1\x5b\xa8\x7c\x93\x8a\x5f\xe0\x93\x46\x3d\xf1\xc3\x3c\x69\x12\xda\x27\x1b\x6c\x6b\x27\xf5\x6e\xdc\x3e\xaa\x76\x6a\xcf\xbb\xd7\x4f\x3b\xaf\xaf\x47\x1b\x7b\xbf\x02\xbf\xc7\x0f\xeb\xab\x17\xac\xd6\x4a\x4d\x60\x74\xeb\x39\x27\x59\x2b\x8f\xda\xcd\xd9\x58\x01\x41\x4f\x35\x57\x6d\xdf\x1e\xb4\x8b\xf0\x14\xb2\xd0\xe8\xec\x8c\x87\xd5\x1d\xfc\xc8\xbf\x29\x0e\x8c\xd8\x7c\xfb\xa8\xa9\x7d\xe4\x97\x4d\x47\xcb\x17\x4d\xdf\xd7\x2f\x54\x6c\xcd\xb3\x0a\x5a\x60\x5d\x0b\x2e\x7c\x1c\xed\x8c\xf3\x73\xbc\x76\xe3\xa3\xf7\x39\xcc\xc7\x3d\x88\x8c\x21\xd7\xcb\x5b\x05\x3d\x65\x33\xca\x09\xc1\x49\x93\xd5\x0e\xd1\x95\x87\x9e\x32\x96\x0f\x58\x4b\x1c\x05\x69\x4f\xf2\x37\x35\x3e\xe4\x7a\x57\xc4\x50\xde\x9c\xd4\x50\xa3\xc9\x17\xb6\x7a\x92\xa9\xee\x57\x43\x2e\xbc\x39\x99\xc9\xe5\x8b\xae\x13\x2f\xc8\xd1\x5c\xb4\xb1\xdd\x1d\xbf\x8b\x5a\x1a\x21\x47\x91\xc7\xcf\xf9\x8e\xff\x68\xfb\x88\x7a\x1c\x94\x1d\x49\x33\x04\xb6\xca\x57\xe8\xf9\x56\x0d\xf8\x00\x9f\xc1\x83\x02\x3f\x77\xa6\x9f\xe2\xb7\x9e\x35\x52\xab\x11\xab\x8a\x9a\x5b\xb9\xac\xb0\xb7\x48\x25\x06\x50\x0b\x0b\x9d\x33\xda\x72\x45\xd3\x19\xa6\xcf\x18\xd6\x03\x3f\x0f\xdb\x81\x3d\xec\xb8\x9e\x1c\x3d\x3e\x10\x68\x03\xb2\x40\x13\x51\x41\xec\xbc\xe5\xf8\x16\xbd\x88\x75\xf6\x8f\xd8\x42\x43\x7c\x8c\xb7\xd1\x2b\x7a\x60\x50\x80\x50\xe1\x9f\xf3\x2c\xb3\x80\x8f\x4a\x9d\xb3\x03\x0c\x8d\x40\xdf\x7a\x6a\xab\x30\xd4\xba\x59\x09\x5c\xc3\x76\xec\x80\xf4\x50\xdd\xea\x0c\xdb\x5f\x93\xcf\x09\xec\xce\x2c\x02\x4a\x57\x11\x9a\x5e\x32\xd6\x57\xa2\x79\x50\x41\xc1\x1a\x32\x2b\x45\xf1\xda\xab\xa3\x73\x1f\xbe\xf1\x52\x34\x10\xa3\xec\x55\x1c\x4b\x6f\x9f\xed\xb3\x99\xa7\x89\x6f\x52\x68\x40\xb7\xf2\xce\xd9\x69\xe7\xe8\x29\xa7\x73\x27\xf7\x38\xfb\xf5\xf8\x19\x11\x9d\x95\x43\xd4\xbc\xb7\x8f\x37\xd8\xe2\x6c\xb8\x47\xda\x1d\x81\xcb\xe6\xa2\xe3\x55\xb3\x48\x61\x47\x08\xe4\xf6\x6e\x58\xdf\x78\x73\x52\x43\x25\x2c\xdf\x9d\x04\x6e\x16\x0a\x1e\x68\x92\x11\x9a\xf4\xf2\x89\x32\x41\xd1\x5e\xb1\xfa\xae\x0a\xd6\x3e\xda\x63\x53\xf7\xb9\x48\x7a\x36\xc9\xa9\x98\x78\x03\x40\xc1\x5c\x2a\xb2\x05\x36\xd0\x31\xf9\x63\x4e\x5e\x6a\x99\xb0\x6f\xe1\xca\x61\x77\xe5\x25\x17\x65\x47\xcd\x20\x3f\xd2\xfb\x26\x3d\x6c\x7e\x0f\x3e\x15\x3b\x07\x9d\x5f\x1e\xf2\x8f\x7c\x27\xfb\xc9\x0d\x2f\x37\xa9\x67\x83\x87\xb0\xb2\xfa\x64\x96\xaa\xec\x5d\x4e\x7e\xeb\x55\xb6\xb5\xc6\x49\xc3\xdf\x7f\xf0\x61\x6c\x17\xd6\x8b\xa7\x68\x39\xc3\xc1\x88\xce\x66\x7e\x6c\x9f\xde\x47\xa0\xf0\xde\x01\xbd\x70\x7b\x96\x99\x1f\x21\x83\x75\x77\xc8\x80\x6d\xc1\x39\xb6\xd8\x83\x1f\xc5\xe0\xd7\xaf\x59\xed\x00\x1f\xad\x71\xbb\x68\x17\x0b\xa0\xe2\x90\x46\x07\x64\xa5\x76\x93\x78\xdc\x8c\xf7\x73\x95\x90\xff\x8d\x4f\xe8\xc9\xbb\xe0\x9c\x57\x74\xc7\xb2\x0a\x86\x59\x09\x46\x74\xd4\x44\xab\x26\x24\x39\x8a\x53\x83\xc1\x3e\x30\x58\x0d\x45\xfa\x50\x4b\x7a\xee\x00\x76\x30\x25\x6d\xe6\x92\xf4\x98\x13\x62\x6d\xb0\x58\xb1\x2e\x7c\x8c\xdb\x4b\x90\x62\x81\x0f\x0d\x37\xa0\x25\xe1\xed\x83\x25\x03\x48\x62\xc5\x1e\x56\xbd\xe2\xb3\x41\xe2\xcb\x19\xdf\x61\x84\x9b\xb6\xa2\xe2\x7a\xff\xf3\x7f\xf8\x56\x93\xaf\x5a\xc2\xa8\xaf\x3f\x36\xc3\x2e\x81\xbf\x3f\x39\x9e\x4c\xc0\x49\x85\x99\x25\xa9\x5e\xb8\x1c\xe3\xa9\xa5\xa8\x1c\x28\xde\x8b\xe5\xc7\x13\x4f\xaf\xb8\x60\xac\x84\xa3\x55\x5b\x2e\x5b\x1e\xb8\xd2\x01\x6f\xef\xd8\x56\x01\x9c\x0e\x41\x23\x8b\xee\x98\xac\x71\xc2\x26\xb7\x89\x36\xc8\x8d\x25\xc5\x26\x81\x27\x76\x18\xcb\x9b\xc5\xb4\xb7\x98\xd2\x45\x2e\xa6\x09\xb3\x94\xb0\xb6\xac\x9a\x3c\xa2\xdf\x20\xbf\x7e\x04\x52\x32\x35\x12\xa1\x8b\x14\x23\x23\x3a\xfc\xe8\x61\x0f\xab\x2b\x1d\xe8\xe1\x1c\x5b\x85\xf4\x3d\x95\x77\xcb\x63\x46\xd1\x76\xae\xe8\x28\x6e\xc9\x07\x73\xfa\x1c\x3f\x6e\x42\xb1\xf2\x92\x2f\x21\x50\xc1\xc0\x05\x8d\xd9\x99\xf6\xd1\x2d\xed\xff\x9d\x5d\x7d\xef\x53\x78\x03\xf9\x34\xf0\x8a\xef\x7d\xaa\x61\x55\x5e\x83\x4f\xa4\x8a\x28\x57\x71\x46\xd1\x7c\x52\x35\x68\xa1\x4f\xc2\xe6\xc5\x87\xa7\x6a\x00\x20\x4b\x19\xf8\x22\xad\x66\xbc\x2b\x34\x9e\x5c\xce\xa1\xbb\x33\x5c\x9b\xe0\xd3\x8c\x77\xe7\xbf\x56\xec\xfc\x15\x63\xb8\x62\x17\x2c\x9d\x9d\x3d\xeb\x56\x37\x28\x26\x17\x6e\xaf\x60\xc4\xf6\xe9\x72\xc1\x1d\x0d\x5c\x72\xf2\xee\x11\xd1\xa4\x8c\xbc\x5b\x2a\x99\x0e\x3f\xdc\xf3\xe8\xa7\x0a\xa6\x48\x70\x27\xa1\x7d\xaa\x1a\x67\xaa\x5c\xf1\x47\x50\x8e\x42\xfc\x6a\x25\x32\xd1\xc6\xf7\x16\xf4\x1b\x96\xf5\x06\x4d\xcf\x32\x4a\x64\x2c\xdd\x39\xbb\x0f\xc2\xef\x61\xfb\xe4\x3e\x7b\x5d\x0b\xa7\xef\x80\x48\x5f\x6d\x1f\xd7\xba\xd7\x4f\xe9\x91\x00\x90\x01\x31\x19\xb2\x8b\x20\x6a\xc3\x7d\x4d\x17\x23\x5d\x89\x81\x67\x59\x3a\xee\xa6\xf0\xd1\x6d\x0e\x19\x58\x9e\x30\x95\x32\x9d\x82\x11\x98\xc3\x7a\xe7\x6c\x3a\x6c\xd1\x25\x1a\xd6\x96\xc3\x47\xd3\xd1\xde\x6b\x42\x64\xf9\x84\x8a\xac\x6c\x02\x73\xd8\xd7\x11\x82\xbe\x64\xc5\x82\x2a\x57\x8a\xc5\x54\xc8\xa8\xa2\x39\x68\x15\x45\x55\x02\x2b\xf1\x8e\x07\xae\x03\xfa\xae\xd9\x68\xf7\x56\xf4\xf8\x76\x2e\x0f\xc6\xe1\xbe\x30\x26\x9f\x9f\x62\x0b\x3f\xe5\x86\x6d\x71\xe5\x83\xf5\x15\x38\xb9\xe0\x08\x3d\xab\x68\x99\xbe\xe5\xeb\xe8\xc1\xcb\x16\x6e\xb3\xa3\xeb\x30\x25\x86\x67\x8e\xea\x6c\x7e\x83\xed\xdc\xa2\xb9\x81\xaf\x23\xb6\x0f\x61\xc5\x88\x03\x41\xfc\x50\x82\x4f\x09\xe6\xa8\x78\x3f\xe8\xa9\xca\x29\x84\x09\x07\x07\xc5\x0d\x3a\x38\x50\x16\xb8\x9c\x59\xf3\x86\xa5\xe9\xfa\xd9\x34\xdb\xda\x61\x8d\x93\xce\xf4\x4b\x64\xfb\x50\x4b\x91\xbb\x6a\x17\x2c\x17\x6e\x0d\xbf\x52\xe6\x84\x0d\x83\xab\x0d\x7a\xee\x28\x84\x6c\xc2\x57\xdb\x5f\x16\x3a\x3b\x35\x08\xa7\x42\xfe\xcd\xa4\xcc\xff\xe2\xdb\xaf\xbe\xfc\x7b\x2d\xbc\xb3\x17\x2e\xbd\xee\xec\x4c\x75\x1f\xdf\x86\x2d\x20\xe6\x66\xc0\xbd\x6a\x79\xe0\x3d\x1f\x3e\x99\x60\x53\xbf\xc4\x05\xe4\x8c\x26\x27\x31\x7c\xd9\xea\xbc\xba\x4e\x93\x28\xa1\xfc\xc0\x2c\x2a\x40\xdd\xfb\xb5\x70\x65\x27\x0d\x64\x16\x8b\x14\xa4\x27\x5d\x82\x86\x20\x05\x63\x70\x4c\x8f\x96\x5e\x68\xf0\xd6\xa0\x91\x2e\xa2\x39\xaf\xc1\x03\x44\x0c\x2d\x4c\x1e\x92\x2c\x1d\x07\x5f\x3a\x4e\x30\x76\x39\xab\x60\x07\xae\x37\x00\x71\xd8\xc0\x30\x09\xd5\x4a\xb8\x34\x54\x88\x56\x2c\x06\x59\xa4\xdd\x6c\x9f\x3c\x4a\x96\xf3\xff\xb0\x34\x3a\x59\xee\xbc\xbe\x9d\x2c\x2d\x7b\x16\x2c\x3f\xf6\xc9\xd7\xbb\x8f\x6f\xf0\x05\x58\x58\x0d\xd7\x5f\x0a\x98\xbc\xe9\x80\x75\x21\x47\xe4\xb8\x8e\xc1\xaf\x55\x83\x0e\x1f\xac\x30\x22\xee\x3e\x78\xc8\x79\xe0\xfa\xf3\x8c\xf6\x81\xf0\xa8\x9d\xd8\xdb\x4a\x42\x95\x2a\x7e\x60\x0c\x5a\x86\xeb\x18\xa6\x9c\x11\x69\x24\x59\xdf\x0d\x37\x16\x39\x69\x20\xa3\xc6\x9b\x14\xd7\xa0\x71\x2c\x11\xe1\xed\x46\x06\x29\x64\x35\x81\xa8\x41\x3c\x19\xb4\x86\xb8\xd4\xc0\x3f\xc5\x78\x91\x94\x86\x7b\x5b\xc4\xc3\xbd\x03\x52\xa1\xa1\x92\xe3\x22\x1e\x3a\x73\x5c\x23\xe6\x55\xcb\x18\xf5\xec\x40\xe8\x54\x95\xa1\x61\x0c\xa6\x85\x06\x9b\xba\x8f\x57\xea\x3b\x0d\x0d\xad\xf5\xa0\x2b\xb1\xb2\x9a\xd7\x41\xe6\x2b\xfd\x3c\x2b\xf6\x13\xe7\xe3\xc0\x3d\x13\xbb\x7e\xfb\x94\x2d\xce\x61\xbd\x81\x81\x01\x15\xb9\x94\xfc\xc9\x07\x8b\xac\xe4\x17\xe7\xe9\xfe\x7b\x5f\xeb\x2e\xed\xb3\xb9\x9f\xb9\xdc\x04\x2f\xdd\xe2\x06\x9f\x0d\x6b\xcb\xec\x60\x8a\x4d\xce\x70\xca\xb7\xd3\xea\x4c\xff\x4c\x96\x48\x9b\x53\x9c\x27\x7d\xf5\xa4\xfd\x7a\x07\x91\x74\xab\xd5\xf0\xd1\x49\x77\x69\x9f\xac\xb2\x65\x68\x2b\xea\x87\xeb\xe9\x61\x6d\x59\xd9\x8c\x79\xab\x68\x80\x8d\xa9\x88\xb9\x27\x8a\x80\x82\xca\xad\x4c\x84\x34\xb1\x95\xcd\x42\xc1\x08\x4a\x65\x61\x98\xc2\x67\xe9\xfd\x8f\x88\x22\x2e\xce\x7d\xfc\x3b\x05\x4e\x01\xf9\x5d\x7c\xd6\x0a\x10\x78\x12\x4e\x76\xa2\x24\x61\x6b\x99\x28\xa1\x5e\xd1\x1d\x47\x77\xb6\xb4\x2a\x3f\x7a\x8a\x91\x86\x40\xa3\xf7\x23\x7b\x71\x0f\x2f\x72\x65\x19\xa8\x7e\xc1\xf6\xac\x7c\x50\x1c\x33\x02\x17\x77\x1d\x1d\x12\x7c\xf6\xc3\xb1\x82\xf3\x28\x2a\x54\x04\x0b\x8c\x50\xef\xf1\x75\xbc\x00\x5e\xa5\x42\xdf\x82\x47\x49\x99\x66\xe5\xfa\x27\xd4\xa0\x55\xdf\xa2\x69\x54\x2e\x7e\xa9\xc9\x51\x1d\xa3\x14\xcc\xc7\x87\x6c\xe1\x76\xe7\x97\x57\xea\x3d\xa8\x34\x14\xb7\x80\x8a\x25\x9c\x91\x1e\x1f\x2b\x75\x0a\x12\x11\x16\xd3\xdb\x93\xc8\xd3\xa0\x85\x91\xe1\x74\xb9\x9c\x69\x07\x29\xaa\x28\xb8\x80\x22\x17\xe7\xc7\x84\xf2\x57\x52\x81\x58\x0b\xcc\x31\xc4\x7a\xc7\x9e\x09\xc3\x15\x71\xbd\x31\xc3\xf6\x0d\x13\x8f\x12\x72\xb8\xb2\x4e\x54\x93\xc1\xf2\xf6\xd0\x53\xa7\xb7\x99\x58\x29\x80\x06\xad\xea\xd1\x06\xc4\xfe\x58\x09\xef\x5e\xe5\x60\xc3\x13\x1e\x70\xcc\xcf\x9f\xb0\x85\x57\x78\x21\xf3\x53\xa7\xba\x96\xfe\xb3\x35\xa8\x21\xb9\x65\xf7\x77\xe9\x0f\x30\x5e\x49\x35\x03\xb3\x08\x4d\xc9\x21\xc5\x93\x28\x25\x42\xd9\x73\x3e\x16\xa5\xf3\x14\x33\xae\xb7\xf3\xfc\x6f\xdb\x19\x36\x1c\xd7\x28\xba\xce\xb0\xe5\xc9\xa9\x9e\xa0\xde\xc8\xa1\x13\xb5\x02\x0e\x51\xca\x06\xed\xe6\xbc\xda\x66\x1a\x3d\x1e\xf3\x82\x31\x3a\xa2\x34\x26\xfa\x0d\xc3\xe4\xd7\xc6\xc4\x2e\xf9\x68\xe0\xb5\xb3\x42\x2e\xf0\x6c\xe1\x76\xb4\xb4\xc1\x16\x56\xd9\xcd\xdd\x5f\xab\x13\xe7\x47\xc7\x54\xdc\x84\x55\x55\x19\x54\x06\xa3\xa2\x57\xed\xd3\xbb\xd8\x24\x12\xbe\x4e\x75\x52\x9e\x11\x36\x35\x17\x3e\xdf\xc4\x43\xa4\x98\x5b\x3d\x99\x8a\xd6\x97\xd1\xac\x8d\x6c\xb9\x44\x5f\x12\x83\x3c\x67\x93\x4a\xe3\xa5\xd4\x3e\xc5\x19\x50\xcf\x9b\x2b\x48\x22\xa7\x1d\xfe\x88\x3b\x4a\xf6\x36\x42\x48\xe5\xec\x19\xf6\x20\x5c\x7f\xa9\xf6\x00\xa2\x9e\xb9\x06\x99\xb9\x2a\xa6\xd1\xef\x8b\x78\xaf\xf1\xe2\x81\x49\x08\x1f\x8b\x74\x31\xbb\x78\x35\x8d\x88\x6e\x2a\xf5\xbe\xec\x8f\xe1\x7f\x68\x31\x02\x4e\xb6\xfd\xca\x60\xc1\xf6\x88\x74\xb2\xbd\x45\xdc\x77\x0a\x95\x20\x27\x19\xe8\xb0\x64\x89\xfc\x04\x4f\xc4\x09\xe4\x5b\x7b\xab\xd6\x86\x5e\xdb\x5e\x26\x92\x9c\x60\xd9\x05\x89\x96\x1c\xb6\xca\xc1\x27\x61\x7c\x3d\x7c\xbe\x89\x7c\x3c\x42\xc9\xf2\x44\xf0\x8e\x4c\x0c\x43\xb6\x53\xd0\xc9\xa8\x5a\x7c\x33\x2b\xc1\x88\xeb\xe9\xed\xd3\x7a\xa7\x3a\x29\xbf\x0a\x79\x8a\x6d\x4d\x73\xb1\x52\x7c\xc6\xbb\x0b\x1d\x52\x57\xb6\xc3\xfa\x86\x2c\xc1\x40\x2c\x7c\x6d\x57\x76\xf8\x16\x4a\x76\xcd\xb1\x46\x2d\x61\x69\x1d\x97\x8a\xb0\x26\x71\x84\x65\x14\x85\x94\xef\x03\x09\xe1\x47\x2d\xe0\x34\x81\x97\xe9\x61\xfd\x29\xa9\x60\x7b\x60\xf2\x45\xcb\xf4\x0c\x81\x02\xde\x67\xba\xd5\x99\xf6\xd1\x5e\x2f\xa8\x14\xa8\x14\x79\x2a\xd9\x5a\x0c\x21\x5b\xcc\x04\xc5\x46\x63\x68\xbc\x73\xb0\xdd\xcc\x0a\x6e\xd9\x72\x54\x78\xb0\x04\xa3\x50\x89\xd9\x0d\xb8\xbe\x55\x50\x6b\xbc\xfa\x09\x1f\xe0\xfb\xd5\x30\x7d\x08\x45\x6d\xe9\xe1\xec\x74\xf8\xf2\x35\xbe\x28\xf6\xf6\x59\x82\x91\x8d\x7f\x1f\x60\xc7\x8d\x21\xc3\xfa\xd3\x2c\x30\xe4\x04\xfa\x2d\x2a\x2d\x1c\x51\x80\xf4\x52\x60\xa9\x51\x2e\x9a\x79\x8b\xe2\xfb\x90\xd4\x2c\x2f\xf5\x44\x2b\xe7\x60\x43\x4c\x22\xda\xb7\x3f\x40\xcf\x64\x37\x1f\x75\x4e\x4f\xbb\x8f\x6f\xa0\xe7\x00\xa8\x17\x79\x2d\x52\xbc\xf7\xa9\x6b\x3b\x43\x6e\x4c\x3d\x3b\x67\xab\x32\xf8\x2c\xbe\xd7\x22\x0e\x72\xcc\x02\xb2\x88\x77\x28\x17\x35\x20\x46\x86\x76\x41\xed\xe2\x05\xad\x57\x11\x42\xdd\xa8\x2d\x63\x0f\xdb\x47\xd5\xa8\x75\xa3\xb7\x9f\xe0\xc8\x9b\xdd\xc9\xc4\x93\xc6\x6f\x19\x55\xc5\x17\xf3\xf1\x5b\xa0\x05\x15\x8e\xc5\xc5\xde\xba\x6f\xa5\xe8\x84\x1b\x76\x7d\x60\x0e\xea\xa8\x6e\x96\xbb\x5e\x2e\x2e\xdf\xe5\x2a\x80\xd8\xe4\x02\x80\x34\x32\x44\x04\x50\x39\xb2\xb7\xde\xad\xce\x64\x01\x70\x16\xc2\xb7\x8a\x56\x3e\xe0\x02\x27\xc2\x25\xf7\x0a\x41\x67\xd0\x81\x4c\xac\x12\x2e\x0b\x73\xcf\x21\xa4\x4a\xa9\x73\xd8\x6e\x36\x33\x71\x9b\xbe\x3f\x6c\x3b\x56\x26\x6a\x59\x33\x55\x07\xa3\x22\xa0\x6a\x38\x0b\x27\x2f\x1f\x30\x8b\x45\x83\x94\x4e\xa4\x85\x48\x1c\xcd\x04\xa8\x4f\xd1\xeb\x03\x97\xcb\x79\xd4\xe3\xa8\x75\x1f\xb5\x2c\x59\x55\xf0\x38\x16\x8c\xc1\x31\xa8\x11\x2d\xbd\xe0\x47\x41\x68\xeb\xb2\x6a\x94\x2c\x27\xb0\x5d\x87\xb3\x78\xd0\xc6\xc2\x22\x5b\xb8\x99\xd9\x80\xef\x7a\x81\x1e\xce\xdf\x61\xcd\x85\x8c\x92\x01\xd8\x9e\x81\x1e\xd6\xab\xe1\xf2\x01\x36\x99\x05\xc6\xa9\x09\x81\xad\xfc\xd8\x1f\xcc\xb3\xf2\x96\x13\x08\x49\x0d\x4d\x8a\xe1\xea\xca\x6c\xda\x32\x7d\x05\x96\x1d\x9c\x03\x5b\x72\xfd\x80\x5f\x89\x96\x03\x9d\x60\x5b\x6b\x9d\xc6\x8d\xce\x7e\x66\x27\x00\xaf\x0a\x7c\x70\x3b\x09\xcc\x0f\x50\xac\x30\x52\x4c\x55\xc1\x4a\x95\xcc\x4d\xcd\x8f\x35\xa9\x3e\x4a\x0e\x58\x56\x37\x86\xcc\x2b\x96\xa2\x74\xea\x03\x0f\x6a\x1e\xb7\x82\xdc\xd0\x51\xb5\xbb\xf9\x4b\x4c\xb3\xaf\x05\x7a\xfb\xe8\x56\xf2\x2b\x9e\x6f\x24\xb8\x99\x67\xbb\x20\x4a\xd3\x07\xdb\xa9\x94\x0c\x1a\xb8\xcf\x0f\x7f\xf8\x60\x33\x39\x72\x2a\xb4\x0a\x86\x19\xe8\x7f\xc5\x32\xde\x6b\x39\x07\x7f\xc7\x99\xee\x8b\x30\xfc\xbf\x8a\x4a\xc2\xa7\x0b\xeb\xca\x50\xb3\xaa\xad\x83\x34\x49\x92\x2d\x92\xc5\x83\xe8\x98\x2b\x0d\xf9\x51\xcf\xdc\x6e\x36\x33\x95\xcc\xd1\xbd\xfb\xed\xa3\x5b\x0a\x9d\x46\x62\x06\x3f\xf4\xe4\x60\xb1\x44\xf4\x0a\x21\xa8\xed\xe3\xc3\x24\xa8\x67\xc1\x9c\x22\x0c\xc5\x53\x42\xab\xf1\x24\x40\x1f\x64\x59\x35\xe8\x06\x15\xdb\x2c\x35\xcd\xb8\x4a\x7c\x8e\x69\x76\xed\x02\x99\x42\x5f\x90\x13\x0d\xbf\x3e\x86\x9d\x83\x06\xe1\xd0\xe5\xbf\x26\xbb\xf4\xce\x58\xd4\xbe\xfe\x55\x5d\x76\x3b\x30\x3c\x6b\x08\xb0\x71\xf9\x4e\x61\x83\x7f\x23\x66\x2e\x7a\xc2\xa3\x75\xbb\x39\xd5\x69\x6c\x23\x01\x94\x4d\x94\x5d\xc8\x23\x82\xaa\x70\xce\x0f\xcb\xa6\x45\xac\x3f\xd7\xd3\xd1\x70\x48\x29\x25\x43\x18\x11\xb8\x40\x7c\x16\x41\x56\x45\xcc\x15\xd0\x52\x24\x1c\x5d\xd0\x78\x12\xe7\xed\xf8\x90\x82\x07\xd6\x0e\x58\xe3\xb8\xd3\x78\x40\x02\x2b\x21\x03\xb5\x23\x8a\xa0\xb2\x53\x09\x9d\x86\x68\xd4\xbc\x6a\xe9\x68\x4d\x9b\xba\xc5\x31\x0c\xb2\xc2\x49\x25\xcb\xf3\x6e\xd1\x15\x9c\x56\xf7\x71\xbd\x33\xf3\x53\xba\xbc\xe2\x04\x74\x17\x67\x71\x59\xf1\xde\xf4\x13\x57\x3a\x17\x0b\x13\xb7\x0c\x82\x67\x8c\x07\x0b\x12\x6a\xb0\x64\x11\xc5\x18\x22\x35\x66\x46\x1f\x52\x66\x89\xc4\x96\xa0\xbe\x33\x13\x30\x65\x8a\x48\xb3\xd3\xe3\x01\x87\x03\xe0\x2c\xf9\xb9\xae\x70\x0a\xa9\x48\x35\x23\x35\xab\xf4\xfc\x93\xd4\xa9\x2a\x74\xaf\x6c\x7a\x81\x9d\xb7\xcb\x26\xd1\x3e\xb6\x38\x87\xdb\x42\xd9\x57\x66\x10\x98\xf9\x11\x7e\x60\x63\x26\x8a\x9f\x06\x95\x89\xec\x6e\xfe\xc2\xc5\x1c\x50\x33\x00\x2f\xf6\xd7\x8c\xda\x05\x77\xd4\xe1\xac\x9c\xfe\xd7\x68\xe2\x18\xc3\xb9\x75\x4e\x4f\x09\x1c\x5f\xa2\x54\xd9\x4c\x7d\x93\xc2\xc2\xbc\x5b\x2a\x9b\x9e\x25\xf5\xa5\xac\x71\x1c\x36\x96\x48\x81\xb2\xb0\xca\x66\x97\xb3\x01\x69\xda\x01\xba\x7d\xb4\x25\xd5\xf2\xdd\x95\x97\xb1\x2e\x0b\xea\x4b\x4d\x20\x69\x3a\x53\xfa\xc0\x24\xf6\x41\x93\x73\xb3\x1b\x4d\x36\x3d\x45\xcf\x1f\xa9\xd6\xf1\x7f\x6a\x38\x01\x92\x78\xde\x4b\x3c\xeb\x89\x79\x70\x0d\xcf\xf2\x2b\x45\x2e\x7f\xd7\x9f\x86\x33\xaf\x59\xed\x20\x6a\xdd\x0d\x1f\xd6\x25\x40\x30\xc2\x19\x99\xc0\x8d\xdb\xc1\xae\xdc\x99\x55\x1b\x94\x71\xe6\xa2\x16\x19\xc0\xa0\xd2\xad\x5b\xa7\xe7\x75\x04\x8e\x47\x27\x10\x97\x2c\x6f\x98\xc6\x18\x2d\xbd\x68\x37\xe7\xd5\x99\x63\x8b\x37\x3a\xd3\x4f\xa5\x75\x32\x9b\x04\x0f\x98\xc5\x59\x29\x6c\xa3\x26\x00\xcd\x80\x31\x4a\x6b\xf8\xf3\x3d\x6c\x30\x6c\x2c\x75\x5e\x5f\x8f\x1b\x1c\x31\x7d\x43\xcd\x60\xa3\xff\x55\xd5\x15\xa9\xb1\x21\xf8\xd9\x56\x56\xe4\xcd\xc9\x5a\xd2\x63\xe6\x7d\x40\xf8\x3e\xe7\x45\x0a\x44\x84\xff\x0e\x7e\xe0\xcd\x4c\xab\x93\x90\x15\x7b\x37\x19\x10\x2e\x69\xe7\x13\xbe\x98\x60\x07\x53\xc0\xa0\x14\xb4\x94\x26\xa4\xdd\x9a\x97\xce\x36\x1f\x4a\x67\x1b\x8d\x70\x4e\xff\x9c\xe1\x89\x43\x6d\xc0\xdc\x12\x43\x42\xf6\x64\xc0\x05\xfd\xb7\xcb\xbe\xf6\x8e\xcd\x9d\xd7\x9a\x26\x86\x64\x0e\x72\x4e\xe2\xaa\xe5\xf9\x68\x94\x83\x14\x9f\xfc\x02\x55\x18\xd4\xf8\x24\xd4\x3d\x71\xb1\xfa\x7a\x8d\xca\x3f\x2a\x24\x46\x20\x70\x71\xd3\xe8\xe8\x2b\x23\x6f\x54\x75\x92\xc3\x07\xdb\xe8\xd8\x8a\x1f\x15\x87\x64\x65\x62\x80\x47\x83\x72\x65\x8b\x50\x11\xbf\x44\x15\x7c\xaa\xd9\x2d\x7e\xe7\x14\x0e\x6b\x15\xcc\xc0\x34\x06\x3d\xb0\x2d\x4f\x55\xe3\xfb\x14\x42\x45\xe3\xd6\x56\xed\xa7\x40\x41\xcc\xc9\x2e\xd2\x5c\x69\x6c\xd6\xa9\xce\x76\x1e\x3f\x8b\x1e\xbd\x64\x0f\x16\xe2\x0e\xdb\xbe\x91\x1f\xb1\xf2\x57\x6c\x67\x38\xdd\x06\x66\x40\xa2\x43\x36\xf5\x53\xf4\x74\x1c\xbd\x7d\xc9\x01\x68\x77\x8e\x72\x16\xd5\x5e\x85\xcb\x07\x71\xe8\x72\xda\xa5\xa6\x63\x80\x49\x1e\x1e\x43\x69\xab\xa3\x0e\x1d\xa4\x7e\xb2\x91\x81\x58\xe4\xd9\x73\x4a\xaf\x0d\x6f\xc3\x86\x9a\x59\xe8\xa7\x54\xcb\xff\x2d\xc8\x63\x6b\xb3\x70\xe6\x16\xbb\xb9\x1b\xde\x9a\x61\x0b\xcb\x44\x86\x40\x61\xcb\x7b\xbd\xf3\x03\x9b\xfa\x19\x5b\x53\x90\x21\x7b\x88\x78\x70\x33\xea\xbd\x6a\x0b\xea\x88\xba\x3b\x3d\x8b\xd3\x29\xf1\x64\xca\xeb\x43\xa0\x16\x00\x64\x33\x73\x6c\xb2\x46\x23\xd9\x9c\x63\x8b\xb5\x98\x4c\xc3\x33\x55\x6c\xe1\x46\xaa\xc6\x4e\xe3\x65\xb8\x3a\xaf\xee\xc8\x24\x7d\xca\x20\x1a\xb0\xff\x2b\x0e\x9d\x6b\x80\x26\x05\xf8\x5f\x71\x87\xa9\x24\x0d\x33\x67\xa0\xb1\x7e\x6c\x0e\x0f\x48\x71\xcf\x81\xf9\xd1\xd3\x24\xa9\xab\xfd\xdd\xc5\xc2\x9b\x93\x19\x54\xf8\x90\x99\x02\xc4\xda\x51\x4f\x9a\x5c\x1d\x41\xec\x48\x0a\x91\xa6\x26\x60\xd2\xad\xde\x33\x09\x00\x08\x3f\xe4\x58\xa3\x92\x10\xf0\x3d\x82\xf4\xbe\xbe\xab\x1e\x5b\xbe\x73\x17\x6a\x68\xd8\xd2\x6e\x4e\xa9\x5a\xd6\xd4\xde\x51\xad\xc3\xc1\xfe\x21\xb6\x24\x81\xbb\x9e\xbc\xd7\xa5\x02\x43\x29\x56\x35\x36\xb1\x48\xa7\x00\x24\x54\x36\xb1\x58\x97\x86\x28\x20\x71\xf5\x7b\x8b\x1d\xd7\x28\x54\x2c\x03\x65\x69\x34\x4a\xaa\x3d\x0d\xf7\x1e\x93\xae\x39\xd5\x17\xe1\x33\x9b\xc6\xaf\x67\x20\xb6\x46\x0d\xbf\x32\x38\x62\x99\x10\x2e\x1c\xb6\xb0\x1c\x63\xf8\x60\x3b\x5c\x7f\xc9\xb6\x4f\x59\xfd\x80\x42\x24\xa1\x11\x3f\x70\x7d\x68\x9f\x16\xb7\xa0\xde\x56\x99\xd3\x24\x19\xed\xee\xe3\x55\xf5\x3b\x3e\x52\xa2\x91\x95\xfa\x59\x0e\x58\x19\xea\x9b\x93\x1a\x3e\xea\xa2\x35\xac\x32\x3e\xcb\xf4\x48\x93\xad\x7e\x97\x91\xf7\x09\x99\x31\xe4\x7a\x25\x33\x48\xe0\x94\x66\x94\x42\x19\x37\x4b\x26\x0c\xab\x0d\xed\x77\x63\x63\x63\x63\xef\x95\x4a\xef\x15\x0a\xf8\x52\x79\xfa\x58\xe4\x75\x49\x0f\x3d\x8e\xef\x20\x06\x2f\x0c\x05\x40\xb9\x29\x99\x5a\xa5\xa2\xc2\xeb\x67\xce\x18\xd8\x77\xc4\xcb\x43\xb6\x89\xeb\x2f\xd9\xcd\x47\xe1\xd1\x64\x78\x1f\x37\x33\x9f\x38\x7e\x5b\x81\x35\x5a\xbb\xd9\x6c\xb7\x9e\xc7\xcb\xb6\x38\xd5\xd9\xf9\x21\xd6\xd8\xad\xdd\x68\x9f\xd6\xc9\x4b\x47\x1d\x41\x42\x62\x52\x0a\x12\x92\xc5\x79\x7d\xcc\x1c\x3a\xc8\x03\x60\x98\x8e\x8f\x86\x40\x5a\xa2\xa5\x0d\x70\x54\x1d\x4f\xee\x81\x84\x80\x12\x6f\x41\x0a\xa2\xda\x0b\x99\x8e\xd4\x21\x6a\xfc\x4f\x09\x29\x59\xed\xf4\x8c\x2d\x2d\xa5\xe4\x46\xed\x2b\xb6\xfe\xcf\xf6\x15\x1b\xfe\x1a\x18\xb5\x8a\x79\xb7\x64\x25\x02\xc6\x6a\xbc\x98\x03\xab\x10\x38\x04\x5e\xa2\x85\xab\x0d\x8c\x86\xc2\x26\x5f\xb0\xc5\x59\x94\xa4\xd1\xec\x5d\x75\x55\x8b\x57\x1d\x8a\x28\x03\x16\x2c\x3c\x9b\x3c\x6c\xb7\x96\xc9\x31\x64\x72\x9b\x4b\xf1\x3b\x3f\x50\xa0\xa9\xcd\xe3\x68\x1d\x82\xfb\x41\xeb\xb4\x5d\x87\x6c\xcf\x0f\x0c\xc8\xfe\x49\xba\x48\x91\x38\x84\xd2\x29\x02\xb0\x9a\x1d\x14\x3e\x90\x40\x50\x46\xa3\x42\x2e\x0e\xa8\xa5\x18\x25\x47\xa2\x24\xa2\xa9\x00\x08\xcb\xac\xa4\xe9\x06\xa7\x4c\xf8\x26\xcd\x59\x49\x8c\x44\xb5\x76\x03\xaf\x37\xf5\xc8\xcb\x31\x40\x12\x09\x68\x08\x45\x7a\xb5\x09\xb0\x59\x27\xfc\xf0\x38\x71\x91\x74\x77\x22\x18\x34\xbf\x08\xf6\x12\xdd\x86\x4d\xcc\xd1\x19\x83\x95\x20\x70\x1d\xda\xf0\xc9\x31\x89\xb2\xac\x41\xa1\x13\x94\x02\x44\xfb\xb8\x0f\x90\xe3\x06\x76\xde\x32\x3e\xd0\xf9\x88\x45\x2c\x2a\xb5\x0a\xf1\xc8\x17\x2e\xfa\x17\x88\x45\xa6\x24\x24\x47\x33\x61\xf5\x41\xa7\x3a\xcb\x16\xe7\x3b\x9b\xb3\x72\x3e\x00\x6b\xea\x45\x3b\xe5\x64\x07\x5b\x50\x43\xf4\xea\x25\x9f\xc0\x21\xf4\xdf\x3d\xf3\x49\x66\x78\x3a\xc6\x73\x54\xec\xef\xfc\x5c\x9c\x39\x94\x9e\x80\x92\xf9\x44\x07\x30\xfd\x97\xaf\x27\x72\x02\xca\x52\x25\x5b\x84\x2b\x5c\x61\x63\x45\x52\x36\xd8\x00\x64\xf7\x10\xb9\x4f\xc1\xb4\xab\x1f\x24\x98\x86\xe9\xaa\x11\x58\x3f\x48\x3e\x77\x3a\x5b\x78\xda\x69\xb4\xce\x07\xac\x38\x05\x6b\xc8\x76\x60\x32\x28\xc8\x56\x0c\x2a\xed\x1c\x69\x24\xc8\xc2\xf4\x14\x1b\x83\x5c\x0e\x96\x0c\x12\x6b\x1c\x47\x3f\x36\xc5\x0b\x1a\xb2\x23\x20\x47\x02\x12\x8a\xc8\x33\x29\xf8\x18\x48\x1c\x47\x24\xb5\x46\x66\xe3\x10\x9b\x57\xb4\x72\x9e\x47\x4b\x1f\x20\xa4\x45\x2a\x24\x7a\x2a\x20\x55\x52\xe5\xac\x5f\xab\xe3\x09\x76\xfc\xce\x2c\x17\x7e\x9b\x67\xd2\xee\x44\x55\x34\x24\xba\x95\x30\xf1\x4a\x7f\x4e\xd9\x6c\x1a\x15\x47\xda\xb2\xea\x4a\x26\xc0\x9b\x7c\x27\x7f\x6e\x07\x94\x5d\x27\xb6\x65\xc5\x1b\x4a\xe9\x7f\x46\xd3\xe9\x36\xa4\xfb\x2b\x66\x83\x54\x07\x9f\x0a\x2b\x26\x11\x95\x3d\x37\xb0\xf2\xf0\x9a\x23\x6d\x87\xcf\x1e\x84\x37\x7b\xa6\xb7\x17\x90\xe4\x67\x05\xba\x7d\x34\xc7\xa5\x36\xf0\x87\x13\xc6\xd7\xe3\xe1\x8d\x05\xb6\x25\x02\x56\xde\x99\xc5\x04\x55\xea\x02\x44\xf7\x4f\xd9\xe2\x1c\x71\x60\xf1\x1e\xc5\x00\x6f\xd2\xc2\x93\x72\xd4\xa0\x76\x08\x5a\x1b\x18\x18\x48\x6f\x44\x83\x7a\x89\x37\x2f\x74\x09\xba\x77\x0e\x9c\x54\x38\x60\x03\xe8\xf4\x0b\x0a\x6c\x99\x5a\x41\xea\x40\x10\x19\x66\x8d\x4e\x74\x96\xd0\x25\xac\xed\x30\xc2\x43\x76\x2f\x32\xe0\x85\x83\xec\x78\xb8\xf7\x58\x9d\x41\xbe\x1f\x15\xe9\x21\xb3\x59\xa1\x78\x4e\x08\x4b\xe8\x90\x88\x6f\xd3\x09\xe9\x98\x74\x1a\x3f\x40\x26\x9d\xdf\x82\x8a\x58\x13\x18\x0f\x67\x4d\x60\xfc\x6c\x91\x4e\x11\x67\x50\xc0\x7a\x8e\xa2\x8a\x3c\x7e\x46\x1d\xaf\x1d\x84\x7b\xd4\x6b\xcc\x89\x87\x3e\x8e\xea\xd2\x77\xaf\x9f\x22\x6f\x4a\xdd\x5c\x78\x42\x37\xf6\x83\x87\xea\xbe\xea\xb5\x11\x24\xa2\x02\x5f\x32\xa7\x64\x74\xc4\x0e\xac\xa2\x2d\x6f\xce\xc0\xf2\x7c\x1d\xf7\x1e\xd9\x32\x21\xed\x81\xce\x48\xe7\xeb\xdf\x86\x47\x35\xcc\xa4\x80\xcb\xb5\x65\x0a\x0d\x5d\x3b\x60\x0b\x0d\x32\xb4\x4c\xb6\x20\xb7\x39\x67\xc8\x6b\x2b\x6c\x72\x5b\x7e\xa1\x44\x67\x32\xbf\xd9\xab\x9f\xd3\x6b\x06\xfa\x8b\xb7\x0c\x14\xb3\xfe\xa0\xdb\x4f\xef\x12\xc8\x06\xce\x43\x81\x96\x45\x84\x09\xed\x8b\xde\x5e\x29\xb0\xcc\x92\x68\x97\x4d\x1e\x52\x70\xe3\xac\x0e\xe0\x1c\xfd\x86\x0e\x20\x4a\xec\x40\xba\x52\x1c\x64\x13\xea\xa6\x48\x9f\xda\x9c\x7a\x5c\xfb\x12\xc0\x11\xd7\xbd\x22\x03\xb3\xfd\xb3\x35\xa8\x75\xef\xfc\xc8\xf6\x94\xcb\x72\xd8\x0e\x12\x30\x9c\x58\xa7\x61\x06\x4d\xdf\xce\x2b\x79\xc8\x33\x39\x03\xf2\x42\x92\x50\xe4\x89\x94\x82\xf2\xc7\x9c\xbc\xc8\xb3\x4e\x01\x1f\x40\x79\xdc\x8b\x87\x03\xda\x0e\x9f\x88\x61\xd5\x7b\x12\xa0\x55\x1d\x9d\x10\x50\x14\xe5\x57\x4a\xf3\x15\x37\xde\x93\x4d\x3f\x3d\xed\xb2\xf7\x38\xa1\x3d\xdc\x0f\xfa\x2b\x78\x56\xd9\x7d\xa7\x10\xa5\xd2\x43\x2f\x1d\xa2\x54\x62\x36\x0b\x57\xb9\x50\x57\x50\xe6\xef\xd9\x6a\xd4\xdc\x49\xf7\x80\xb3\x78\x2a\xc1\x42\x36\x11\x93\xe9\x28\xa3\xf1\x2d\x74\x52\x75\xcc\xa2\x01\xf2\x4e\x22\xcd\x6f\x66\x1d\xf0\x60\x34\x28\x28\xae\xd2\xcc\xe9\x5d\xe9\x60\x8e\x8e\xdc\x14\x55\x07\x3d\x1b\x11\x95\x88\x27\x87\x9e\xd6\xc9\x7e\x58\xd7\x32\xfa\x01\x99\xf7\xa1\x72\x0c\x9c\x00\xc4\xbc\xbd\x31\x98\x96\x9e\xb0\x1e\xe8\xd8\xb7\x17\x3a\xd1\xa9\x4e\xa2\xb9\x2a\xab\x4d\x75\x37\x7f\xa1\x37\x34\xec\xba\x88\xde\xdb\x9d\x9e\x63\xfb\x6b\x6c\xf1\x36\xab\x1d\x70\xca\x2f\x13\xfa\xca\x56\xf0\xb1\x49\x9d\x70\xd5\xcb\xe9\xdc\x69\x87\xaa\x46\xe0\x99\xf9\x2b\xa9\x34\xcb\x5c\x56\x3a\x6d\x75\xa7\x17\xa2\xe6\xce\x79\xe8\x12\x2b\x92\xe8\xc9\xb9\x6b\x42\x28\x7f\xd3\x9a\x64\x76\x12\x66\x5d\x2a\x8e\xb2\xfb\x26\x31\x50\x5d\x65\xbd\x7a\xab\x41\xe6\xe5\x73\xab\xfe\xa7\x2c\x9e\x8a\x9f\x14\x49\xfd\x7a\x48\x6e\xa8\x1a\x6a\x96\x7a\x51\xe0\x3c\xf9\xc1\x58\xd1\xea\x8b\x03\x9d\x47\xba\x3f\xcc\x87\x8f\x4e\xde\x9c\xac\x9d\x8b\x64\xc0\xa9\x94\x2c\xcf\xce\xeb\x51\x93\xb2\x79\xa0\xaa\xea\xfc\x4a\x90\x33\x44\xd4\x54\x93\x83\x20\x8a\xa8\x05\x3a\xec\x3e\x88\xe2\x59\xc8\x8c\x3d\x44\x22\xec\xbf\xf1\xcb\xf1\xdf\xb5\x7f\xe3\x24\xee\xdf\xb5\x7f\xb3\x9d\x82\x75\xed\xdf\xe5\x0b\x54\x6d\x8a\xd5\x9e\xa1\x63\xad\x12\x7a\x7a\x5c\x3a\x3d\x73\x6e\x0e\xe7\xe5\xe5\x63\x76\x02\x7b\x70\xee\x51\xfb\x74\x8e\xd2\x81\xc4\x37\x63\xa5\x58\x4c\x9e\x2a\x85\x1b\x00\xee\x65\x9b\x2d\xac\x50\x26\x68\x88\x30\x4b\xe4\xb3\xb6\x2c\xaf\xbf\xce\xcb\xcd\x68\x76\x3f\x85\x73\x80\x62\x22\xc0\x95\xeb\x97\xcd\xbc\xa5\xb3\xb3\xd3\xe8\xde\x76\xf4\x63\x33\xba\x7f\x8a\x3e\x02\x9c\x1f\x02\x17\xb3\x74\x65\x3c\x70\xa4\xf4\xc7\x27\x27\x3a\x52\xf5\x5d\xf5\x75\x20\x5c\x39\xa4\x80\x4d\xa8\xf7\x8f\x85\x34\x13\xac\xfb\xbf\x07\x6b\xd6\xb9\x17\xdd\xfb\x3f\xd2\xbd\x30\xdb\x54\x2e\x11\x7c\xda\x00\x67\xac\xc0\x35\x7c\x7e\x91\x90\xe9\x05\x04\xfc\xeb\x5c\x3f\x55\xdf\x8d\xc0\xad\xfd\x90\xa2\x2e\x8a\x68\x37\x9d\xea\x64\x62\x42\x1d\x6b\x94\x92\x52\x8c\x98\x3e\xa2\xc4\x88\x15\x8a\x67\xaa\x8c\x70\x92\x34\x99\x9f\x65\x8b\x73\x22\xa0\xc6\xb8\x2a\x44\x3b\x57\x2d\x2f\xd0\x3b\xa7\xcf\xc3\xb9\xc7\xed\xa3\x66\x78\x7f\xbf\x5b\x5d\x13\xa9\x25\x53\x60\xa9\x2d\xc5\xb9\xbc\xc6\x36\xde\xd8\x24\x26\x67\xa1\x01\xff\xe7\x25\xa9\x54\xc1\x78\x32\xdd\xea\x54\x52\x52\xa2\x16\x50\x09\xe3\x1b\x1f\xe8\xef\x69\xf2\xc2\xe5\xb7\xed\x3b\xb5\xf5\x1b\x1a\x12\x26\x55\x14\x22\x17\x90\xf5\x42\x61\x7c\xab\x42\xf6\xfc\xa0\x01\x63\x06\x3b\x16\x78\xa6\xe3\x0f\x59\x9e\x8e\xa9\x0e\x84\xb7\x1d\x84\x36\x79\x70\xbd\x17\xae\x77\x5e\xe5\x10\xd1\x95\x2c\x9c\xd8\xc5\x75\x4d\x65\x0a\x8e\x23\x7d\xd5\x96\xe3\x64\x0d\xbd\xf8\xd5\x59\x8d\xe3\xeb\x26\x9b\x89\x5a\x64\x24\x26\x72\xd0\xce\x12\xcc\xc9\x5a\xfb\xe8\x31\xdb\x7a\x91\x0e\x1f\xd6\xbf\x99\x0f\xcf\x6f\x86\x8f\x66\xb5\x11\xa7\x4e\x11\x59\x46\x65\xec\x37\xb5\x25\x11\x3c\xfe\x41\x74\xef\x7e\x76\xab\x9c\xdc\x91\xc1\x90\x12\xa4\x02\x02\x4a\x82\x4a\xb9\xdd\xda\xa6\x64\x60\x0a\xf2\xff\xd1\xc3\x6c\x81\x21\x0f\x3e\x56\x20\x2f\x82\x4f\xbc\x99\x70\xb4\x60\x3d\xc0\xa9\x8d\xd7\x39\x7d\xde\x57\x43\x98\x89\x56\x5d\x27\x55\x0b\xd9\x3e\x59\xc3\xc6\xd8\xf1\xa1\x48\xda\xce\xa7\x54\xbb\xe8\x6b\x42\x8b\x98\x85\x51\x55\x95\x53\x0d\xb5\xb7\x18\x03\xaa\x77\xff\x26\xac\x9a\xc2\xfa\xf3\x34\x39\x50\x27\x41\x84\x5d\x83\x2d\xfe\x37\x0c\xff\xbc\x91\xa7\x62\x50\xb5\x5b\xdb\x8a\x47\xd1\xe3\x67\x6c\xfd\x61\xd8\x5a\x3b\x0f\xdb\x87\xa9\x79\x44\x77\xee\x38\x98\x9b\xa0\x19\x6c\x76\x32\xbc\xf5\x1c\xa4\x22\x9c\x9a\x5f\xab\xe3\xe2\x41\x6d\x9c\x6c\x12\xef\xcc\x4a\x0d\x68\x46\x2c\xbd\x7e\x3d\x00\xfa\x0f\xc7\x8e\x22\x55\xe3\x33\xe8\xbc\xd4\x24\xa8\x97\x00\xe6\xd8\x97\xb4\x26\xba\xf5\x3c\x7a\x76\x4b\x52\xf6\xde\x66\x7a\x97\x37\xfd\x0c\xd2\x4f\xf2\x49\x55\xcb\x0e\xdb\xdf\x7b\xd4\xe8\x02\x5b\x3e\x88\xe3\x68\xc5\x12\x9d\x79\x05\x78\x4c\xa4\x7c\x92\xac\xc6\xa1\x46\x7a\xd1\x09\xea\x9a\x22\x90\x22\x41\x4c\x4f\x3f\x92\x11\xc7\x12\x91\xc6\xd2\x6d\x98\x85\x82\x91\xb4\x83\x84\x10\xcd\x64\x03\xd0\xab\xca\x4e\xc3\xc7\xb2\x38\x74\x43\x0d\xfd\x2e\x6b\x67\x9c\x99\x54\x9b\x68\x16\x98\xa1\xb2\x76\xbd\xb4\xf9\xdf\xb9\xea\x75\x05\x9c\x48\xcf\xde\x96\x4c\x13\x40\xf5\x17\xe7\x51\x89\xc5\xa6\xe6\xe8\xae\x90\x91\x08\xf1\xe1\x2a\x2b\xf4\x20\x64\xe1\x15\xed\x79\x56\xc9\xbd\x6a\x65\x4f\x83\x9a\x72\x4a\x76\x55\xc6\xa6\xc5\x70\x77\xd8\x42\x62\x56\x14\x5d\x4c\xd2\x47\x46\x51\xcb\x24\x54\xa0\x90\xe4\x2c\x8e\xb4\xc3\x59\xa7\xc1\xd4\xac\x52\xd6\x21\x11\x76\x87\x37\x4f\xee\xc5\x89\xc0\x7d\xe9\x05\xe2\x2b\x3c\x6a\x0d\x8e\xb8\xee\x15\xe1\xea\x9c\xa5\x29\x01\x35\x09\x3d\x02\xca\x62\xd2\x47\x4d\xec\x76\xf6\x5f\x73\x71\xa4\xbe\x4b\x79\x4c\x8f\x6e\xa2\xcb\x48\x38\x3b\xcd\xf6\xd7\xda\xcd\x5b\xed\xd6\x61\xb8\x72\xc8\x1a\xc7\xf8\x05\x93\x38\x42\x28\x7f\xed\xeb\x7f\xbc\xf4\xad\x26\xf3\xc2\x90\xb5\xe3\xb9\x9e\x98\xff\x8c\xdd\xf5\x35\x7c\x59\x04\xd3\x5b\xcc\x4d\x42\xe9\xbd\x65\x64\xa8\x98\xf6\x63\x95\x9e\xb8\xea\x59\x43\x4d\xc3\xa6\x43\xab\x2b\xe3\x47\x8d\x07\x85\xcf\x9c\xc7\x24\x59\xea\xb3\x2d\xbb\x23\xa2\x9e\x80\xe5\xde\x79\xbb\xac\xa7\x55\xb1\xc5\x94\xe6\xfa\x51\x31\xaa\x3b\x10\xa0\x42\xb7\x68\x43\x4e\xd6\xf0\x97\x5b\x9d\xc6\x3d\x6c\xff\x2d\xb0\xa4\xa0\x86\xd8\xa4\x9c\xd1\x97\x6f\x37\x47\x4f\xc3\xdd\xcd\xf0\x16\x88\x88\x5f\x57\xfc\x11\x0d\xd7\xf2\x6d\xe8\x24\x95\x50\xba\x40\x8c\x37\x64\x94\x62\xb5\x03\x50\xa8\xae\x50\xc6\xe6\xea\x22\x3b\xbb\x9e\x88\xde\x2c\x4c\xb8\xb0\x6e\x67\xff\x80\x82\x01\xf4\x34\xec\x59\x72\xc0\x68\xb4\xd3\x6f\xc0\x31\xa0\x42\xe5\x5b\xec\xe6\xa6\xea\x75\x8c\xa2\x75\xb8\x7c\x20\xfb\x89\xe8\xfe\xe3\x7a\x4b\x0a\x7c\xd4\xe1\xa1\xad\x60\x06\x94\x5f\x76\x1d\xdf\xd2\xd9\xdd\x39\xd6\x5c\xea\x07\x86\xa6\x16\xbe\xce\xb6\x5e\x52\x92\xa2\x1e\x90\x32\x66\x48\x15\xe9\x51\xfb\x20\x1a\x74\x0b\x63\xd4\x56\xfb\xf4\x6e\xaf\x7a\x14\xb7\x47\xac\x1c\x05\x0b\x80\x17\xc8\x17\xd4\x9f\x77\x9a\xcf\xb8\x64\xf8\x7a\x1d\xa2\x7c\x6f\x74\xae\x9f\x82\x27\x05\x70\x9a\x47\x4d\xa4\x08\xfc\x12\x83\xb7\xaf\x68\xed\x86\xd8\xcc\x2b\x9d\xcd\xdd\xc4\x24\x51\x73\x18\x61\x04\x0f\x1d\x70\xcb\xd4\x68\xfd\x29\xa6\x0b\x02\x1d\xfb\x7d\x19\xf7\x36\x7c\xf4\xaa\xfd\xfa\x96\xc8\xcf\xb3\xc7\x3b\x21\xbc\xdb\x89\xd9\xbe\xfe\xb3\xf4\x0b\xc1\xf8\x21\x88\x10\xf1\xd0\x3b\x15\x48\xc8\x18\xb7\x04\xe3\x58\x64\xf6\x0c\x02\x63\x52\xff\xd1\xfc\xbe\x07\x44\x38\x97\x50\xa7\x01\x63\x0f\xbf\x41\xc0\xa4\x68\x45\xd0\xb4\xb2\x53\x21\xcc\x74\xb9\x41\xe6\xbe\xf6\xc9\x1a\xf9\xf5\xa3\xce\x82\x93\x4f\xa1\xa2\x90\xa6\xb5\x9d\xfd\xc7\xdd\xd5\x49\x3c\xab\x44\x89\x44\x5a\x71\xb6\x78\x5b\xa5\xc1\x22\xf9\xa8\x94\xb2\xb0\x1b\xb1\xe1\x31\xb2\xc4\x90\xd4\x2b\x5c\x3e\x66\x27\x0b\x6f\x4e\x6a\xff\xe7\xa5\x7f\xfc\x33\x66\xfc\x80\x76\xaf\xbd\x37\x3a\x3a\xfa\x1e\x97\x37\xde\xab\x78\x45\xcb\xe1\x1f\x0b\xd2\x14\x60\xe6\xd7\xea\x04\xe5\x15\xe9\xae\x4e\xfe\x07\x51\x76\x4d\xd1\x5e\xe0\x16\x07\x1d\x5c\x22\x0b\xb0\xca\x1f\xf1\x25\x41\xf7\x3a\x1a\x50\x4a\xd5\x45\x21\xf4\x31\xaa\x77\x7a\xd1\xb0\x50\xd8\xbb\xc7\x10\x6a\x66\xa0\xce\xfe\x66\xb4\xbf\xa2\x1e\x33\x48\x03\xf2\xc5\x27\x1f\xfe\xfd\x7f\xd7\xbe\xf8\xea\x93\x4f\x35\x76\xb7\xc6\x8e\x66\x59\xf5\x84\x12\xa6\xd1\x3c\x37\x69\x12\xff\xef\xf7\xf8\x41\x79\xef\x92\x3d\xec\x98\x41\xc5\xb3\x52\x6b\xba\xf5\x92\x6f\xec\xea\x49\x52\xa5\x5f\x34\xf3\x57\xe2\xcc\x62\xf4\xf4\x9c\xda\x98\x08\x64\xe7\x5d\x07\xd5\x94\xeb\xaf\xc3\x47\xd3\x49\xa5\x24\x82\xa0\xf3\x08\xba\x8d\xa4\x9f\x10\xad\xab\x56\x1c\x79\xf6\x15\xf1\xc5\x13\xbb\xec\x68\x36\xac\xaf\x77\x76\x9e\xb0\x85\xdb\xca\xbd\xc8\xef\x3f\xd8\x7b\x09\x4d\x20\xe2\x80\x08\x61\xae\x53\x1c\xd3\xd9\xc2\x53\x9c\x2f\x9a\x01\x5e\x22\x46\x8d\xd5\x13\x83\xc5\xea\x90\x69\xde\xe2\x54\x1c\x0c\xea\x75\x81\x41\x84\x22\x01\x66\x39\x16\x87\xd2\xd7\x15\x22\xc1\xf7\x67\xe1\x61\x0b\xa7\x41\x76\xb9\x07\x56\xb5\x15\xcc\x2e\x14\x0c\x02\xd8\xbe\xa7\xc2\x88\xf5\xcc\xa0\xea\x18\x93\x59\xa8\xb2\x1b\x6f\xc1\xa6\x06\x82\xcb\x28\x52\x83\xaa\x72\x76\x30\x13\x90\xcf\xba\x9e\xbe\x33\x95\xa5\x92\xa4\x9f\xa4\x91\x4c\xc8\x44\x10\xb4\xec\x42\x1a\x16\x40\x80\x21\x41\x95\x2d\x36\xb8\x3c\x09\x76\x9e\xbf\x56\xc7\x55\x93\xdb\x5f\xab\xe3\x68\xa2\xf1\x6b\x75\x1c\x9d\x56\x39\xa4\xe2\xd0\xce\xbf\xa3\x58\x46\xde\xd4\xe3\x24\xb5\x8b\x9f\xb8\x45\x63\xdb\xbc\xda\x32\x56\x4f\x7d\xef\x1d\x72\x3f\x93\xe4\x73\x00\x85\x2e\x57\x79\xc2\xfe\xff\x7d\x80\xb2\x7a\xef\xc0\xe9\x29\x3f\xf5\xd2\xa8\xac\x8d\x74\x1d\xa4\xd5\x41\x07\xc2\xf3\x20\x13\x8b\x09\xe0\x20\x70\xf1\x03\x20\x47\x26\x8d\x1b\xd2\x98\x28\x64\x5d\x32\x62\x5d\x36\x8c\xba\x83\x11\x90\x92\xef\x42\x55\xe5\xae\x84\xe8\x6e\x3a\xe5\x07\x86\xcc\xfc\xe9\x42\x61\x42\xcf\x4e\xef\xaa\x52\x09\xc9\x29\x2b\x87\x94\x17\x17\x1f\x58\x80\xa0\x85\x7b\xaa\x7c\x90\xa0\x45\xfc\x6e\x86\x8b\xb9\x97\x49\x4f\x67\x7a\x4a\x5f\xfd\x52\xd6\xc2\xe0\x51\x59\x02\x08\x41\xf6\x6b\xa0\x9f\x3a\x82\xc8\x87\x68\xe0\x1c\x09\x07\x7d\xa3\x05\xbb\x6e\x5b\xbe\x70\x90\x56\xd8\xd7\xa4\xe8\x87\x77\x27\x51\x77\x0c\xc6\x9a\x98\x0c\xbc\x41\x62\x5e\x45\x26\xd1\xa1\xb5\xc3\xd4\x5e\x09\xbf\xc9\x4b\xbc\x0a\x3a\x8a\xae\x4f\x85\xb5\xde\x09\x2e\xd8\x7e\xde\xf5\x0a\xef\x86\xf5\x33\xac\x74\x3e\x5e\x67\x38\x30\x8b\xef\xd8\xdd\xee\x9d\x99\xee\x9d\x99\x7e\x78\x71\xfc\x98\x71\x81\x72\x2d\xa4\xca\x0a\x6e\xc9\xb4\x1d\x9d\x6d\x6c\xb0\xc5\xb9\x9e\xab\x77\xc4\x74\x1c\xab\xa8\x77\x1f\xdf\xee\x8e\x27\x34\x8a\xe5\xa2\x3b\xa6\xe6\x97\xeb\x5e\xdf\x8d\x4e\x7f\x92\xe9\x62\x7b\xe1\x64\xaa\xb7\x41\x48\xc1\xd6\x98\x12\x96\xe2\xe3\x1f\xbd\x3f\xf8\xb1\x54\x3f\x23\x53\x4c\x76\x2e\x6b\x37\x20\xf4\x2a\xb8\x42\x43\x3e\x2f\xb2\xe2\x13\x89\x5d\x28\xd8\x4e\xed\x00\x27\x29\x9d\x50\x4a\x23\x9d\x0b\x50\x1e\x3e\x43\xbd\x53\x2e\xfb\x27\x52\x01\xbe\x65\x18\x64\xe2\xa7\x40\xb5\x5b\x93\x22\x48\x5e\x6c\xf6\xc8\x59\xa9\xfd\xeb\xac\xbe\x8b\x72\x47\xfb\xe8\x26\xbb\x33\xab\xaa\xeb\x53\xc9\xde\x20\xbb\xd8\xf3\xce\xcb\x5d\x36\xdb\x64\xb5\x67\xc9\x57\x24\xd7\x50\xa7\x1b\x42\x46\xad\x52\xb0\x51\x54\xa4\x40\x88\x10\xb5\x4f\x49\xc5\xbb\xea\x32\x90\x35\xa4\x64\xfe\xb8\x34\x93\x99\xcc\x73\xa7\xb6\x92\x95\xe7\x4e\xad\xf5\x96\x64\x77\xbd\xa8\xe2\x64\x77\x89\x45\xea\x4d\x63\xa7\x56\xcd\xce\x63\x97\xbd\x74\x49\xfb\xf8\xb7\x2f\x75\xb6\x95\xbc\xba\xf8\xd2\x4a\x5e\x68\xdd\xc3\x99\x6a\xbb\xb5\x1d\xa7\xc1\x48\xea\x9d\xfb\x6a\x59\xb2\x9a\x95\xe1\x7e\x7b\xba\x9b\x39\xce\x38\x74\xb7\x64\x87\xdf\x25\x00\x78\x26\xa6\x7e\x41\xc0\x0b\xf6\xd0\xd0\x00\x86\x46\x35\x7c\xb7\xe2\xe5\x2d\x1d\x43\xa3\x12\x7f\x0e\xe5\x65\xd3\xe3\xdb\x2a\xaa\x1d\x76\x6e\x4e\x44\x13\xc7\xf8\x55\x78\x7a\xc1\xd3\x29\xf9\x75\x41\x01\x38\xf0\x81\x2e\xf1\xaa\x69\x17\x21\xc5\x1c\xba\xe9\xb0\x05\x48\x5b\x85\xcf\x3b\x00\xea\x8f\xb8\xa3\x06\xff\x0b\xd2\xdf\xf9\x3a\x09\xdc\x20\x6a\x47\xad\x8d\xce\xfe\xa6\x02\xe7\x97\x8b\x76\x00\x41\x64\x75\x78\x2a\x5f\xe9\xec\x4c\xb1\xf5\xd7\x0a\x44\xc5\xb1\x87\x6c\xab\x40\x30\xc8\x2e\xa9\x30\xbc\x0d\x91\x03\xe9\x45\x58\x9f\x91\x5c\x3d\x45\x33\xa7\xb8\x5b\x8f\x9f\xe1\x03\xb6\x92\x75\x43\xbc\x54\x88\x0a\x17\xc1\xcf\x33\x5c\xb8\xc3\x26\x95\xb7\x11\x76\x67\x36\x05\x81\x4b\x2e\x21\x68\xbe\x6d\x47\x6f\x37\x67\x3b\x67\xeb\xac\x76\x88\x9f\x20\x36\x2a\x06\x3e\xc3\xec\x98\x18\xdc\x13\xca\x28\x1d\x74\xb9\xec\x59\x3e\x3f\x84\xe4\xca\xf9\x6a\x9f\x9d\x90\x82\x07\x62\xe1\xae\x75\xaa\xb3\x89\x40\xb8\x50\x39\x70\x5d\xa3\x64\x3a\x63\xe4\x06\xda\xbd\x0e\x46\xa5\x88\x01\x52\xfd\xe0\xdf\xe1\xbd\x83\xee\xf4\x42\x36\x1e\x11\x02\x78\x20\x3b\x14\xb0\x28\xc5\x78\xce\xc8\x79\xc5\xac\xd4\x4c\x4d\x02\x14\x3c\x73\x28\xd0\x3b\x73\x33\xd1\xee\x99\xfc\x58\xf6\x2c\x51\xa9\xfb\xf8\x06\x5b\xb8\xdd\xd9\x9c\x95\x85\xaa\xfb\xbf\xf8\x66\x8e\x80\x69\x7a\x7d\xb7\xd3\xd8\x56\xfb\xd1\x3e\xbe\xc5\x16\xe7\xd9\xab\x9f\xd4\x75\xbd\x58\x88\x17\x27\xe5\x97\xcb\x6a\x07\xda\x45\x5f\x4b\x46\x39\x1e\xc0\x33\x60\x60\x4e\xb8\xe6\x22\x9d\x02\x75\x88\x8a\x83\x18\xb4\x4b\x7d\x68\x1c\xb7\x9b\x3b\xec\xee\xb8\x08\x7e\xbe\xd7\x6e\xfd\xc0\xa9\xb7\x3a\x14\xa5\x6e\xa7\xf1\x24\x6a\x4d\xc9\x60\x78\xe1\xca\x36\x3b\x5b\x51\x3d\x58\xc8\x34\x54\xb8\x2e\xa1\x07\x0b\x36\xc1\xc6\xd7\xda\xcd\x29\x76\xf7\x69\xbb\xb9\x1e\x2e\x1d\x77\xce\xd6\xd5\x86\x02\x73\x18\xb5\x48\x89\x20\x0e\x71\x29\x68\x46\x54\xf7\xec\x44\xcd\x64\x68\xa8\xda\xb2\xea\xc7\x99\xf0\xef\x16\x21\x04\xe2\xda\xea\xed\x24\x3e\xca\x1b\x09\xf5\x82\xe2\x33\xf9\x21\xa0\x16\x23\xb9\xbc\x14\x27\x58\x0f\xef\xd5\xc2\x87\x75\x8c\x12\x2c\x0b\x8b\xae\x59\x00\x99\x1c\x7c\x74\x31\xaa\xd4\xc0\xc0\x40\xc6\x66\x22\xd2\x79\x76\x5f\x86\x7c\x97\xbb\x8b\x58\xfb\x8c\x3a\x22\xa1\x88\x50\x83\xb1\xdb\x37\xa3\x0d\xca\x83\xd0\x3e\x9a\x63\xad\x66\x67\x7f\x9f\x1d\x4c\x85\xf5\xe7\xfc\x68\xe3\x1e\xbf\x79\x8f\x4d\x6e\x47\x4b\x1b\xed\xe6\x4e\x34\xdf\x60\x8f\xaf\xe3\x1d\xa9\x2e\x49\xd2\xa1\x4c\x36\x5c\x19\x2c\xda\xfe\x48\x62\x1b\xc5\xfb\x10\xb2\x1e\xc1\x81\x41\x9f\x9e\xd4\xb1\x81\xed\x24\xe5\x1c\x14\x87\xf0\x18\xa0\x9e\x56\x9e\x39\x64\xd9\xe5\xb9\x94\xc1\x83\x45\xff\x93\x90\xf1\xa5\xaa\x1e\x2d\xf2\x3b\x4b\x43\xa6\xae\x53\xb5\x86\xea\x77\xc6\xaf\xd0\xe6\x92\xf0\x54\x90\xc1\xc9\x7a\x13\x34\xa5\xb0\x8b\x5b\x33\x81\x37\xf5\x40\x91\xde\xf4\x49\xaf\x1f\x5d\xdd\xb1\x2a\xeb\x82\x9d\x20\x33\x70\x9c\x7e\x21\xf2\x65\x1d\x25\x91\x77\x32\x71\xa4\x30\x9d\x00\xe7\xdd\x20\xf1\x00\x7e\x54\x6b\x8b\xb8\x19\xbe\x8e\x11\x33\xba\xf7\x6f\x70\x92\x9e\xfb\xce\xf5\x86\x2f\xe7\xe0\xbd\x0d\x82\x1e\xe3\xc3\x9c\xc8\xc0\x05\xa7\x95\x17\x0e\x71\xf9\x3f\x03\x62\x72\x97\xb3\xf7\x71\xf5\x54\xb6\x24\x84\xea\x5e\x3f\x05\xd3\x58\x88\xdc\xba\x5f\x8d\x36\xf6\x3a\xd5\x59\xd6\xb8\x1b\xde\x58\xc0\x54\x49\xd8\x63\xb6\xb7\xc2\x7b\x4c\x4a\x26\xd7\x1b\x16\xce\x6f\x98\x2b\x0c\xa2\xf3\xf7\xf1\x75\xca\x95\x2d\xb7\x5c\xb4\xa8\x57\x22\xae\x9f\x73\xd5\x0e\x38\x23\x51\xb2\x20\x36\xda\x44\xb5\xd3\x78\x85\x8e\x78\xf8\xdc\x91\x43\xdb\x6c\x1a\x0a\xda\x66\x43\x84\x65\xa3\x64\x95\x06\xe1\xa9\x61\x71\x8e\x90\xe1\x77\xc8\xdb\x65\x07\x2e\x08\x91\x32\xe1\x88\x9a\x43\x80\xa3\x4c\x78\xd8\x11\x5e\x3e\x45\xf8\xea\x84\x5d\x44\x9f\x5a\x0e\x4d\xe9\x97\xd1\xe6\x1e\x67\x1c\x3e\xe3\x7e\xc6\x04\x67\x29\x68\x49\x1b\x52\x29\x05\x1b\x14\xa9\x3a\x7c\xb0\x8d\x2f\x8c\xfc\x20\xb4\x6e\xb0\xc9\xdd\xf6\xe9\xdd\x38\x27\x9b\x44\x1f\x27\x53\xaa\xb2\x85\xed\x4e\xe3\x01\x36\x44\x09\x09\xb0\xe9\xd5\x06\xa7\xf0\x10\x28\x8a\x92\xa2\x40\xf5\x44\xfa\x0c\xd5\xeb\x84\x77\x02\x6b\xce\x54\x29\xa3\x9c\x48\x9b\x81\x09\x1c\xdf\x9c\xac\xe5\xb2\x12\xb2\xa8\x7b\xee\x6f\x4c\xc8\xa2\xa2\x38\x2f\x21\x0b\x60\x89\x67\x53\x76\x41\x5d\x84\xbe\x5d\x90\x2c\x2d\x35\xf7\x6e\x3e\x75\xf2\x20\x25\x4f\x90\xfa\x46\x75\x8e\xe5\x7a\xd1\xcd\xa3\x33\x1e\x9f\xdc\xfa\x2e\xab\x1f\x24\xac\x0d\xb3\x0d\xdb\xb3\xbb\x99\x84\x8d\xe9\x9b\x02\xdc\x57\xf5\x42\xa6\xf1\xae\x37\xfc\xae\x96\xf1\xb4\xfb\xfb\x59\xc6\x53\xa7\xcc\xab\x66\x60\x7a\xa9\x3e\xb1\xad\x97\xec\xfa\xc2\x5b\xd4\x41\xe2\xbe\x40\x92\x91\xd6\x15\x65\x25\xcb\xeb\x03\xfa\xf6\xac\x79\x72\x34\xf2\xf9\xfb\x1d\xb2\xe6\xf5\x31\x66\xc9\x4c\x9f\xd7\xa7\x87\x9c\xa2\x50\x4a\x45\x9c\x1f\x35\x87\x5e\x16\xb0\x88\xd8\x41\xe0\x7f\x5b\x22\xbd\x2c\x0b\x09\x56\xdf\xc5\x38\xd1\x52\xbf\xd2\x6b\x34\x00\xbe\x68\x68\xbd\x2d\x2c\x37\x20\x1f\x50\xf2\x25\x03\xe9\xa9\x9c\x29\x0c\xf6\x80\xb4\x78\x80\xfe\x1f\xb1\xcb\x86\x92\x2e\x0f\xa9\x9a\xcc\xae\xc6\x89\x8b\xa8\x80\xc6\xf4\x94\x43\x9f\xc8\x78\xb2\x4c\xc6\x19\xd9\x7f\x2d\xad\xeb\x63\x10\xcf\xbe\x6a\x06\x96\x4e\x46\xf7\xa9\xfa\x58\x98\x44\x80\x2d\xa5\x3a\x6c\x78\x2e\xe7\x44\xa1\x7a\x67\xe7\x4e\x67\xe6\x27\xb5\x8f\x68\x4a\x25\xed\x39\x53\x75\x75\xb4\x33\x4d\xb5\x8d\x06\x3a\x3a\x69\x08\x92\x65\x6a\x7a\x4b\xda\x37\xa2\x88\xae\x43\xd4\x34\xc1\x5d\x48\xca\x65\x34\xee\x86\x1b\x51\xbb\xe8\xab\xbd\xa3\x2a\x8e\x3b\x4a\xfe\x3b\x58\x2f\x87\x17\xe7\xc0\xbf\xb8\xb6\xa3\x93\xe5\x00\xde\x72\xf8\x5d\xed\x44\xa2\x80\x73\x43\x22\x17\x44\xa7\xd1\xe2\x2c\x28\xba\xf3\xf6\x14\xcb\x89\x55\xae\x22\xce\xeb\x82\x49\x13\x45\x22\xbf\x33\x8b\xe9\x7c\x38\x2d\x7c\xf1\x30\x23\x45\x13\x62\x4d\x64\xa0\xc0\x04\x6b\x89\x56\xd5\xf2\xdf\xd0\x2c\x3c\x71\x40\x16\x21\x61\xec\xf2\x96\xf6\xc1\x21\x5a\xb4\x9f\xf0\x8b\xee\x2d\x7f\x97\xf6\x7f\xad\x8e\x4b\xb7\x4a\xd2\x58\x42\x9c\x01\x95\x07\x62\xb5\x03\x44\x92\xd1\x2f\x91\x49\x29\xbe\xb0\xd5\x94\x4a\x08\x23\x6f\x12\x84\xa0\x3b\x04\xcb\x60\xeb\xfa\x3d\x8c\x40\x9c\x4e\x12\x7b\xdf\x38\x3e\xff\x8c\x6b\xc8\x24\xa8\x1a\x2d\x34\xdf\x66\x8d\x63\x71\x45\xbe\x52\xa5\xe8\x94\xf1\x73\x82\x58\x60\xcf\x24\xf7\x86\xc3\xc2\x13\x82\x45\xd9\x37\x64\xc6\xe8\x44\xa6\x13\x64\xe7\x94\xdc\xaa\xea\x7e\x86\xbc\x1a\x9c\x8d\x10\xc7\x15\x97\xa1\xb7\x59\x05\x9b\x88\x20\x4a\x3e\x96\x0a\xcd\xee\x05\x55\x44\x9a\xec\xc4\xad\x70\x8f\xca\x05\x54\x2f\xa2\xf3\xc9\xb8\xda\x45\x4e\x3b\xaf\x9f\x72\x1a\xbd\xf5\x82\xcd\xb7\x58\xe3\x38\xdc\x58\x6c\x37\xd7\xe3\x0d\x9d\x4e\x18\xdd\xd3\x4f\xa9\x46\x85\x97\xa6\xc4\xd0\xe2\x5c\xe1\xf1\x11\xef\xe5\x1d\xc5\x0e\xc4\x58\x70\x8d\xe3\xd4\x91\x92\x6b\x8f\x44\x43\xd1\xa2\x48\xb5\x78\x72\x40\x32\xa6\x55\x8a\x54\x44\x7b\x42\x9f\x2e\x83\x09\xa9\x44\xe0\x3f\xae\x63\xaa\xee\x0d\x69\x4e\x22\xe7\x6b\x36\x8d\x78\x4b\xf3\x9c\x4b\x87\x97\xfb\xd4\x51\xf8\x6d\xd3\x01\x1d\xec\x25\x1e\xed\xd6\x36\x5b\xb8\x29\xe9\x87\xf4\xbe\x91\xd6\x93\x71\x27\x13\xc2\x0f\xb6\x40\xf2\x8f\x20\x16\x60\xe5\x09\x72\x5a\xaf\x95\x27\x82\x0e\x0c\x0c\xa4\xcf\x8e\x44\x3b\x96\x38\x3f\x09\xd4\x64\x93\x0a\x6e\x2e\x78\xef\x25\x8a\x39\x2e\xc7\x75\x40\xcc\xc6\xe7\xd4\xb2\x0b\xc2\xd1\xc1\x83\x4e\xe3\x9e\x7c\xce\x89\x4f\x09\x39\xd4\xcd\x89\xa7\x01\x0a\xe2\xa0\xe6\x1e\x85\xf0\x31\xdf\xc1\xc2\x5c\xce\x15\x4c\x7f\x64\xd0\x35\xbd\x82\x1e\xce\xef\xb0\xda\x61\xf7\xc1\xe3\xf0\xc1\x59\x0e\x9d\x8b\xe9\xe9\x05\x93\x9c\xb9\xde\xb0\xe9\xd8\xdf\x9b\x28\x03\x10\x83\x88\x45\x49\xe1\x11\xb7\x10\x96\x98\x95\x60\xc4\x72\x02\x9b\x98\xfb\xce\xfe\x56\xa7\x31\x1e\x36\x17\xa9\x18\x78\xc4\x61\x1d\x79\xa8\xee\xe4\x5c\x74\xba\x4f\x25\x64\x5f\xae\xa3\x53\x5a\xb8\xb0\x18\x6d\x35\x45\xb6\x35\xd7\xb1\xc1\xfa\x18\x13\x90\xaf\xdf\x0e\xe7\x77\xa8\xdb\x4a\x78\x99\xee\x93\xe5\xee\xe6\x2f\x39\x88\x23\x02\x1f\xc2\xfa\x33\xfe\x21\x70\x03\xb3\xa8\x87\xd5\x56\x67\x7f\xf3\xcd\xc9\xda\xc5\x42\x2e\x9e\x83\x81\xc1\x8a\x5d\x2c\x60\xfc\x96\xf0\xe1\x0d\x3e\x63\xa8\xe6\x89\x21\xcc\x72\xd9\xb8\x6a\xc9\xc6\x31\xfb\x39\xea\x94\x62\xa0\x61\x3b\xe0\x40\x7c\xbf\xeb\x71\xd8\x08\x15\xc0\x8d\xcb\xdd\xde\x62\xec\x46\x60\x97\x50\xe7\xd4\xb8\x8d\x99\x4f\x7b\x20\xe8\x69\x00\xbb\x2a\xd2\x38\xc4\x40\x7e\x60\x06\xb6\x1f\x70\x4e\x11\x7b\x0b\x9a\x7e\xf1\x2e\x20\xc1\xdc\xb2\xe5\x89\x55\x95\x37\x10\x25\xac\x8e\x71\x8d\xf9\x81\x55\x82\xe7\x83\x8a\x58\x95\x68\xfd\x76\x67\x67\x2a\xba\x79\x18\x56\xc7\xb3\x9a\xc5\x89\x44\xb3\x41\x68\x94\xef\x0b\xe8\xc3\x9b\x93\xb5\x8f\x06\x41\x6b\x3c\xf8\xb1\xd6\x3e\x9d\x93\x2e\x39\xca\xd7\xa3\xa7\xd2\x6b\x26\xf1\x55\x3e\x6c\x26\xbe\x4a\x57\x87\x8c\xaf\x98\x8d\x31\x5d\xd6\xf9\xe5\x61\xe2\x53\xf8\x7c\xb3\xb3\x39\xdb\x3e\x6a\x26\xbf\x3e\xd8\x44\xda\x83\x8f\xe9\x89\x32\x76\xf2\x08\x2d\x27\x7a\xf0\x80\x25\x45\xcf\x70\xb6\x5e\xb7\x9b\x5b\xec\x68\x91\x2d\xf4\x0e\x15\x59\xd5\xcc\x8e\xa2\x53\x58\x4f\x0d\x45\x5d\xd7\x53\x06\x91\x8c\xc3\xe6\x62\xba\x40\x91\x5e\x7a\x5a\x11\x86\x26\xe9\x02\x99\x4a\x21\x09\x0e\x48\xd0\xee\xb6\x67\x85\x80\x1a\xf5\xe0\x41\x95\x56\x66\x0d\xd4\xd9\x71\x82\x9c\xb1\x2d\x49\xcd\x4e\x97\x3c\xa8\x91\xb2\xa0\xfc\x51\x1b\x52\x6f\x9e\x54\xd9\xe4\xcf\x99\x10\x5e\xc5\xd1\x31\x2a\xa0\x52\x9c\x2f\x5a\xa6\x63\x54\x9c\x41\xdb\x29\x18\x2e\xa4\xb2\x0d\x8f\x26\x39\x2b\x5b\x7f\x1a\xb5\x6e\xf3\x7b\x49\x59\xb7\x73\x2b\xc6\xdc\x02\x7a\x7a\x24\x11\x64\xfb\x24\xc5\xf8\x88\xed\xb0\x1d\x30\x73\x31\x63\x91\x59\x3c\x68\x4a\xac\x68\x17\x23\x72\xcf\xff\x06\x04\xbd\x1d\x93\x28\xd8\xc2\xab\xb7\x76\x09\xee\x3d\x7e\x03\xda\x57\xad\x64\x67\xe8\x7c\xed\xad\x86\x9b\x3f\xbc\xa5\x5e\xaa\x0f\x6a\xcd\xb7\x76\x00\x78\x07\x67\x18\x2f\xd4\x64\x07\xc0\x73\x0f\x35\xde\xf8\x9a\x29\xee\x40\x32\x7e\x39\x1f\x57\xba\x53\x6f\xc1\x96\xe6\xfc\x92\x14\x7f\x38\x2f\x3a\xd8\x38\x4e\x44\x55\x7a\x78\x9d\xd5\x5f\xb3\xf5\x87\xe1\xd2\x61\x9f\x2a\xd9\x93\xa3\xd4\xcb\x6a\xd3\xb3\x20\xba\x84\x59\x2c\x1a\xbe\x3f\x02\xb6\x0e\x68\x99\x86\xe6\xff\xda\xef\x06\x7c\x7f\xe4\x7d\xcc\x28\x64\x7f\x6f\x81\x5d\x80\xff\x3b\x1a\xd9\x9b\x93\x5a\x67\xef\x09\xbb\x7d\xf3\xcd\xc9\x1a\xaa\xd8\xd1\xbe\x3b\x5a\xbb\x41\x2f\xf5\xc7\x1b\xe8\xa1\x2e\xf4\x27\x33\xe7\x36\x9d\x1a\x01\x12\x69\xb5\x3b\x6f\x19\x01\x46\xef\x20\xcb\x3a\xcc\xf6\xad\x4c\x05\x67\x0d\xcb\x9e\xf5\x9e\x67\xe5\x2d\xfb\xaa\xf5\x6b\x75\x1c\xc5\x1d\xe0\x46\xcb\xae\x1f\x88\x12\x61\x21\xd5\xbf\x8d\xcc\xa9\x7e\x57\xfc\x89\x7e\x66\x0e\xcc\x76\xec\x20\xb5\x6f\xa9\x92\xc8\x10\xff\xb6\x2d\xf7\x16\x74\xbf\x79\xeb\xa6\x9b\x8d\x43\x08\x2a\x57\xb6\xe5\x5d\xb5\x3c\xa3\x52\x06\x9e\x03\xcd\x8f\x3b\x67\x8b\x5c\xcc\x48\x73\x1e\xf9\x8a\xe7\x71\x4e\x74\xd8\xf5\xdc\x4a\x60\x3b\x16\x59\x26\x68\x9f\x8b\x0f\x70\xdb\x77\xa7\x17\x32\x2a\x95\xac\x92\xeb\x8d\x19\x15\x0c\xbf\x87\x62\xe7\xd4\x24\xdb\x5b\xa5\xac\xfa\x89\x4a\xc0\xa9\x89\x2a\x66\x11\x34\xc4\x56\x41\x44\xf6\xe7\x1b\x73\x8a\xb3\x8c\xe8\x26\xb0\xb7\xaa\xd4\xa4\x3a\xee\x60\x60\x42\xc8\x34\x04\x60\x73\x8f\x7a\xda\x28\xbb\x10\xe9\xc2\x28\xba\xee\x95\x4a\x19\x58\x2e\x10\xf6\xba\x77\x6a\x98\x99\x2b\x7c\xce\x19\xa6\x5e\xdc\xa2\x3f\x54\x85\x5a\x80\x1e\xf5\xab\x32\xe4\x59\x49\xf0\xee\xf4\xcd\x70\xa9\xb7\x05\x31\x59\x23\x96\x59\x4e\x4c\x95\xf6\x85\x65\x96\xb5\xfe\x13\x06\x15\xd2\x63\x57\xea\x64\x4d\x80\x5a\xc7\x2e\x14\x2d\x15\x3e\xfa\xb1\xd9\x5d\xf9\xe9\x1c\x78\xb0\x71\xa2\x57\x62\x7a\xf7\x5b\xbb\xa1\xf6\xb2\x4f\x45\x7a\xba\x2b\xe8\xe0\xa5\xc3\x27\xe1\x2d\xf5\xdc\xc1\x7f\xb1\xf2\x81\x4f\x9d\x6b\x1c\x77\x5e\x6c\xf6\xec\xb1\x41\xd7\x0d\xfc\xc0\x33\xcb\x9c\x49\x05\x6b\x7a\x98\x39\xf0\x34\xd1\x2e\xf1\x4f\x5a\xd6\xa4\x21\x70\x7a\xd6\xd4\xed\x45\x95\x7b\x77\x99\x5f\x36\x1d\xc3\x0f\xbc\x4a\x3e\xa8\x78\x96\x4f\x2d\x7e\x75\xa9\x6c\x3a\x1a\x44\xa3\xbf\xd1\x7f\xad\x7a\x2a\x67\x37\xdd\x8b\x4c\xc5\x91\x37\xf3\x23\x56\x46\x0f\x3e\xe5\xdf\xdf\xde\x85\x9e\xea\x7d\xfa\xd0\x8b\x4e\x3d\x41\x9e\x3b\x64\x17\x39\x59\x1a\xac\xe4\xaf\x58\x81\x31\x62\xfa\x23\x46\x00\xa9\xfb\x32\xf1\xb1\x99\xe5\xf0\xe1\x22\x3a\x51\x74\x36\x77\x7b\x10\x0e\xe7\x8d\x92\x15\x98\x60\xdd\x94\xdd\xa1\xcf\x3f\xd5\xd8\xe4\x75\x12\x29\xd2\xd5\xdd\x60\xc4\xf2\x0c\x12\x57\xe8\x94\x72\xe6\x2f\x26\x06\xa0\x0b\x50\x11\x52\xe0\x93\x34\x26\xc7\xba\x46\x37\x74\x7e\x2c\x0f\xc9\x98\x6f\x85\xcf\x37\xa1\x75\x3c\x4e\x70\x33\x27\xe7\x14\xc4\xcd\xe1\x3c\xca\x6e\x9d\x57\x0f\xa2\x27\xad\xf6\xd1\x4d\xaa\xd6\x43\x4b\x91\xc2\x09\x70\x0e\x01\xdc\x29\xc2\x85\xd5\x56\x16\x3d\x1c\xce\x1b\x65\x93\x1f\x3b\x0e\xbe\x36\xc1\xc6\xeb\x7d\xc0\x45\x57\x10\x5a\xe9\x85\x52\x29\x39\xed\x48\x9b\xe2\x6e\x20\x61\x42\x5d\xc0\x00\xb8\xb8\x96\x4c\xc7\x1c\xb6\x8c\xb2\xe9\x58\xc5\x84\x76\x40\x55\x1b\x80\xf9\x4e\xfc\x20\xa5\x3c\x18\x23\xc7\x4a\x40\xf0\x52\x28\xc2\xaf\xd0\x47\xc1\xb9\x42\x8c\x7b\x32\xff\xa6\x12\x25\xf8\x26\xbb\xbd\x4a\x5f\xf1\x62\x25\x83\xbd\x7b\x07\xf4\x95\x52\x5f\x89\xb6\x71\xa4\x58\x04\x5e\x27\x9e\x35\x6c\xfb\x01\xc5\x73\x18\x1a\xd3\xd9\xe2\x6d\xea\x08\xf8\x56\x85\x3f\xef\xb2\xa9\x59\x7c\x66\xee\x4e\xec\xb7\x5b\x87\xca\xb8\x92\x76\x95\x58\x2d\x3b\xe4\x32\xd6\x51\x4d\xab\x68\x24\x20\x29\xa0\x0d\xa0\xd4\x87\x50\x19\xdf\xad\x45\x9d\xcb\x75\xf5\x03\x15\xbc\xe8\x0e\xdb\x24\x07\x61\x15\x94\xf0\x48\x1a\x42\xc0\xb2\xe9\xfb\xa3\x60\x66\x4d\xf6\xf1\x07\x53\xac\x7a\x12\xdd\xbb\x1f\xfd\xd8\x6c\x9f\x9e\xb1\xc9\xc3\xf6\xd9\x83\x70\x76\x1c\x5e\xee\xe0\xb5\x9c\x16\x56\x86\x6a\x23\x03\x38\xf1\x8a\x21\x2c\x72\x40\x05\x92\x7e\x9d\x8c\x47\x17\xbf\xec\x61\x2c\x4e\xa5\x12\x41\x95\xcc\x6b\x28\x0b\xc0\xc2\xc0\x23\x6f\xbd\xca\xb6\x76\x28\x2a\x8d\xa2\x9a\x22\xa2\xde\xa7\x1a\xea\x0e\x39\xe7\x2a\x5d\xae\xde\xfb\x40\xeb\x6c\xee\x46\x5b\x4d\x0a\xfa\x34\xb9\xcb\x5e\x54\x29\xa6\x66\xf5\x84\x33\xad\x88\xcb\xf6\x8d\x78\x6f\xc9\xa1\xb1\x57\x3f\x75\x1e\x3f\x4b\xec\xb3\xb2\xe7\x8e\xd8\x83\x76\x80\x53\x0e\x8a\x4a\xd8\xb5\x9d\xc7\xcf\x30\xec\x23\xce\xbc\x82\x16\x36\x66\x8c\x12\x0d\x03\x92\x9a\x7c\xb1\x94\x10\x98\x87\xf3\xfd\x60\xd7\x9f\xaa\x83\xf3\xa0\x44\xae\x93\xda\xd4\x44\x75\xbb\x54\x76\x3d\xde\x3d\xbe\x53\xd2\x28\x1a\x27\x6c\x72\x1b\xb7\x4f\xea\xd5\x26\x73\xb1\xc5\x33\x7a\xef\x92\x65\x3e\x2b\xcb\xd6\xc4\x61\x0a\xec\x62\xd1\x70\x47\x1d\x54\x4b\xca\xb9\x6a\xb7\xe6\xa2\x1b\x87\xe1\x6a\x23\xad\x6e\x17\x41\x15\x28\xf6\x0a\x25\x4c\xaf\x89\x78\x08\x22\xfe\x28\x9a\xaa\x43\xda\x74\xa4\x44\xf4\x1d\x23\xc1\x80\x1e\x20\xde\x82\xd8\x89\x11\xd3\x07\xbb\x1a\xb5\x0f\xe1\xca\x8e\xec\x83\x7c\xcf\x46\xcd\x71\xaa\x03\x78\x3c\xf0\x59\x4f\x76\x23\x8e\x37\xa3\x4c\x49\xc2\x60\x0a\x67\x3e\x1d\x98\xdb\xf5\xc8\xcd\x3f\x49\x2c\x15\x7d\x29\x11\x4b\x00\x54\x0d\x26\xa4\x51\x92\x3f\x40\xe1\x1a\x51\xd9\x7d\x8f\x3e\x8a\xd7\x1f\x0a\xde\xc8\x69\x33\x10\x40\x20\x83\xc9\xe6\x54\x25\x6c\x74\x6f\xb6\xfb\xe0\x31\x81\xa6\xb3\x63\xe1\x57\xe8\x85\x8c\x7f\x85\x86\x8c\xfc\x7b\xf2\xa5\x98\x0b\x25\xf8\x7d\xd4\x0c\x20\x0a\x2d\x2a\xac\x78\x4f\xf0\xbb\x1f\x98\x9e\xaf\x47\x13\xc7\x9d\x5f\x1e\xc6\x5f\x13\x4e\x65\x0a\xb0\xfd\x3d\xdc\x00\xfc\xc4\x83\xa2\x38\x41\x1b\x7d\x85\x38\x62\x21\x24\x44\x50\xe2\x54\x28\x25\x31\x61\xa4\xee\xe3\x77\xf0\x75\x21\x82\x89\xbe\x2e\xf8\xdd\x82\xcc\xc2\x94\x48\xa5\x11\x2d\xed\xd2\x77\x8a\xd4\x4b\x11\x89\xe9\x63\x96\x61\x16\xdd\x29\x4a\xa7\xfb\x35\x05\x85\xfd\xfa\xe7\x5b\xf9\x8a\x67\x07\x63\x10\x27\xd3\xcd\xbb\x45\x9d\xed\xcf\x70\x1a\x36\xb7\xd0\xd9\xdf\x17\x9d\x4a\xf8\x9b\xe0\xb7\x11\xd7\x0f\xf4\xf6\x51\x2b\xac\x37\xc9\x47\x16\xbf\x73\xd2\x40\xdf\xa3\x67\x0d\xb6\xf0\x03\x7d\x07\x1d\x55\xc1\xd1\x51\x1f\xa5\x7d\xf6\xe7\xe4\x77\x79\x65\xa8\x91\xd4\x30\x2f\x79\x32\x4a\x9a\x1a\x0a\xed\xcd\xc9\x6c\xfb\xf5\x2d\xf6\x64\xe2\xcd\xc9\xda\x67\xff\xf8\xd5\xff\x73\xd1\x57\x91\x8a\xdb\x88\x9a\x64\x8d\xa9\xe8\xd1\x78\x16\x80\x7c\x18\x16\xda\x08\x7e\x84\x01\x9a\x62\x33\xb5\xb6\xc3\xd5\xf9\x70\x79\x5a\x26\x42\x40\x43\x4d\x56\xdf\x95\x4a\x65\x4c\xce\x06\x81\x78\xe6\x3a\x4f\xc6\x29\x65\x01\x50\x9b\xee\xb3\x74\x28\x29\x7e\x48\x69\x65\x39\x4b\x43\x29\x9c\xc0\x0a\x18\x43\x99\x42\x24\x69\x15\xa4\xe0\xe8\x7f\xf1\x2d\x2f\x9e\x36\x33\x08\x3c\x7b\xb0\x12\x58\xb1\xcb\xae\x9c\x22\xf6\xe2\x61\x58\xdd\xe9\x0b\x98\x78\x3f\xc2\xcb\x59\xbd\xc0\x88\xa7\x42\xfd\xed\xca\x61\x38\x53\x95\x72\x55\xcc\x2b\xa5\x71\xa3\x99\x1d\x98\x19\xf6\x69\xdd\xaf\x60\x2f\xd9\xce\xdd\xf0\x60\xa1\x0f\x50\xc9\xb4\x8b\x7a\x77\x62\x3f\xda\x7f\x91\x80\xb8\x6a\x79\xf6\xd0\x98\x31\xec\xb9\x95\xb2\x11\xdb\xaa\xe8\xdd\xa7\xb3\x7c\xb7\xb7\x88\xa6\x76\x9a\xcf\xda\xad\x53\xaa\x83\xc0\xf4\x6e\x06\x81\xe8\x60\xf7\xdd\x50\xa7\x38\x9e\x4f\x84\xc6\x20\xff\x3a\xc4\xff\xe3\x87\x04\x03\xfd\x27\x40\xe2\xce\xe6\x5d\x87\xf3\xf3\x18\x79\xa5\x08\x46\xa8\x90\x8f\x5f\x7a\x0b\x71\x34\xea\x28\x00\x30\xae\xcf\xab\x58\x05\x2e\xc2\x02\x66\x68\x75\x6a\x92\xe6\x38\x73\x7e\x7c\x0e\xcc\xb7\xae\xde\x6e\xcd\x6b\x7f\xb0\x9d\x82\xf6\xd9\x9f\xb5\xf6\xd1\x1e\xa6\xf0\xc1\x4a\x74\x89\x62\x55\x31\x20\x74\xaa\x82\xd1\x74\x76\x6e\xb0\xda\x7d\x81\x1a\xde\x46\x05\x94\x60\x19\x32\x00\x4b\x9c\xcd\x30\x7c\x53\xff\xca\xd7\x3e\x29\x68\x97\x3e\x11\xf4\xa3\x14\x94\x0d\x50\x59\x5f\xfa\xea\xdb\xaf\xb5\x0c\xf2\xc3\x21\x80\x58\x00\x40\x06\xc5\xe0\x00\x40\x35\x14\x80\x04\xe9\x10\x81\x6a\x90\x0c\xf9\x44\x87\x64\x54\xe4\x6c\xa8\x2c\x1e\x94\xb6\xf9\xd1\x1c\x6b\x1c\x23\x12\x30\xbf\x04\x57\x2c\x08\xf9\xfc\x6b\x75\x02\x1c\x6d\x9e\x62\x69\xfb\xf8\x56\x77\xe5\x65\xb7\x5e\x95\x27\xba\x5b\x5d\x61\x0b\xaf\xb4\xdf\xfd\x2f\x9c\xd9\x9e\xea\xae\x41\x5a\x36\x95\xa2\x1b\x41\xd1\x17\x11\x65\xbf\xfd\xf2\x92\xc6\x6e\x3e\x62\x0d\x71\x94\xfd\x2b\x76\x99\x03\x18\xb8\x9f\x29\xa2\x22\xc0\xe1\x4e\x16\x34\xd4\x2c\x19\xbe\xe5\x5d\xb5\xf3\x74\xb2\xbe\xfe\xe4\x2b\x2d\xe1\x91\x9f\x68\x12\x72\x3b\x09\x89\x42\x06\x76\xae\x85\x0f\xae\xd3\xba\x43\x7a\x28\x94\x29\x44\xcd\x58\x26\xc0\x25\x23\xfb\x0c\x9a\x4a\x95\x4f\x45\x4c\x74\x75\x50\x96\xba\xde\x0b\x0b\xf7\x40\x1a\xfc\x60\x0a\xa9\x37\xde\x66\xf2\x4d\x28\xbe\x4d\x53\xc2\x0c\x56\x0e\x9b\x8b\xda\x85\x8b\xfe\x85\x1e\x0f\x31\xf5\x36\x8c\xa5\x04\xa5\xff\x69\x11\x41\xad\x20\x23\x11\xf7\x0c\x37\x61\xdd\xd8\x69\x6c\x23\x48\xa2\xd0\xc0\x1b\x16\xad\x4b\x10\x0e\x59\x03\x7c\xa4\xec\x05\x15\x36\x06\x72\x22\xa4\x1a\x3b\xc3\x20\x9e\x76\x07\xb0\x91\x36\x79\xed\x85\x7b\xd4\x04\xb2\x91\xed\xa3\x79\xcc\x7f\x40\xf7\x04\x1a\xa7\x8c\x2f\x29\xcf\xeb\xc8\x04\x2e\x77\xaa\x93\xbc\xb9\xb3\xfb\x12\x58\x46\x3b\x43\xbd\x03\x2e\x03\x9e\xd1\x78\xfb\xf6\xa6\xa6\x14\x6b\x91\x66\x2f\x11\x1e\xe5\x41\x72\xa2\x41\x1b\x7c\xb9\xbe\x32\x0a\x4e\x9c\x69\x83\x48\xa8\x1d\x8c\x54\x06\x0d\xb3\x6c\x1b\x96\x53\x00\xcd\xa7\xfe\xc9\xd7\xff\xa0\x45\xad\x5a\xf4\xac\x91\xa3\xc7\xf8\x01\xc7\x0d\x0c\xdf\x0a\xf4\xff\x12\xd6\x9f\xe2\x4a\xfd\x57\x51\x44\x6a\x62\x7a\xb5\x97\x09\x12\xf0\xe1\x5e\x00\x0d\x7a\xa6\x53\xa0\x3b\xe9\xee\x78\x34\x43\x0e\x8c\xa2\xd8\xab\x20\xd1\xd6\x51\xbf\x4c\x02\x85\x52\x58\x72\x0b\x16\x15\x86\xbb\x9b\xec\x64\x21\xd9\x7a\x1c\x78\x37\x8e\xd5\x1b\x9d\xde\xe6\x14\x2d\x09\x97\xe4\x9b\x92\x65\x31\xbf\x85\x9c\x56\xb2\x74\x24\xe0\x64\xb5\x50\xf0\xf4\x2f\xbe\xfd\xf6\x6b\x0a\xad\x92\x05\x03\x84\x13\x60\x88\x64\x26\x61\xf2\x96\x17\xa0\xb3\x19\xdf\x49\xc7\x4f\xc8\xd9\x2c\x09\x74\xc5\x1a\xa3\xe4\xed\xc2\x9b\xb4\x17\x86\x53\x2d\x7e\x55\x08\x9b\x81\xb0\x5e\x6d\x9f\xce\x03\xe9\x22\xdb\x81\x24\x7c\xc5\xb1\xaf\x19\xbe\x0b\xea\xb8\xd8\xf4\x46\xff\x8b\x63\x5f\xd3\xd8\xf6\x4a\x38\xbf\xcd\xf6\x56\x48\x2e\x4c\xd6\x04\xb1\xd2\xf0\x5c\x37\xc0\x30\x2c\x20\x4a\x86\x8f\x8e\x33\x67\xd8\x1d\x1a\x2a\xda\x8e\x85\x2b\x16\x3d\x69\x45\xcd\xb3\xcc\x15\x2b\xd8\x3e\x90\x4a\xcf\xad\xa0\xae\x7d\x58\xc7\x20\x8f\x9d\x57\x8d\x68\xe9\x05\xbb\xbf\x8b\x7e\x59\xe9\x85\x46\x02\x3b\xfc\xbd\x5d\x16\x44\xfd\xf3\xef\xed\x72\x0a\xca\x2c\x97\x0d\xd0\x15\x96\xcd\x60\x24\x61\x96\x81\xec\x61\xe7\x55\x83\xbd\xbe\xd1\x33\x4c\xb3\x60\x98\xbe\x6f\x05\xbe\x31\xe4\xb9\x25\xa3\x60\xfb\x57\xf8\xbd\x1e\xfd\x30\x1e\xad\xaf\xa2\xc7\x53\xf4\xf2\x51\xf8\xa0\x67\x82\x4c\xa7\x60\x3b\xc3\x30\x3b\xd1\xfd\x56\xf7\xfe\x14\x4d\x8d\x84\xf3\x47\xc4\x01\xb9\x74\xe9\x0b\x2d\x79\x36\x7c\x7f\x24\x16\x3e\x90\x90\x2b\x25\xb4\x63\xff\x78\xad\xec\xfa\x56\x41\xc3\x9f\x2a\x00\xec\x37\x51\xcc\x7f\xa8\x85\xb0\x68\x30\x09\xdf\xb8\x6e\xa0\xf1\xbf\xd4\xe2\x2b\xd6\xd8\xb0\xe5\x20\xc0\xff\x05\x7f\x67\x81\x18\x10\xfe\x4b\x00\x69\xfc\x57\x0f\x58\xc9\x76\xec\x52\xa5\x84\x6e\xc6\xf6\xf7\x16\xa6\x78\xd4\xbf\xc2\xcf\xda\x15\x6b\x4c\xe3\x9f\x35\xf8\x7c\x5e\x45\xbf\xa7\x8e\x9f\x18\x90\x45\x06\xac\xc9\x17\x4c\xc3\x0c\x0c\x2e\x67\x06\xfa\x37\x08\xa0\x5d\x48\x41\x5c\xd0\xcc\x40\x03\x10\x15\x1d\x7c\x30\x06\x2b\x76\x31\xe0\xb4\x13\x96\x53\xbf\xc4\x3f\x6a\xf4\x51\xc3\x8f\x6a\x25\x60\x13\x1d\x03\x58\xa8\x2f\xe1\x6f\x8d\xff\x9d\x01\x02\x6b\x43\x20\xe9\xa5\x11\x74\xd3\x2e\x8f\x70\xf9\xfd\x12\xfc\xd4\xe8\xa7\xdc\x39\xa8\xeb\xc2\xad\x43\x4f\x77\x89\xcd\xc3\xcb\xcf\x5b\x65\x28\x47\x57\x64\x14\x47\x2f\xc1\xdf\x1a\xff\x3b\x01\x63\x3a\xbe\x6d\xe4\x47\xcc\x80\x93\xf9\x4f\xfe\x7c\xe9\x1f\xb4\xfc\x88\xe9\xf9\x56\x90\x80\x1a\x72\xf9\xe5\x22\x34\x00\x7f\xe2\xbf\x34\xfa\x95\x80\x2b\x99\xd7\x62\x0d\x5d\xd1\x2e\xd9\x81\xfe\x95\x79\x4d\x13\x9f\x34\xf8\x94\xa8\x51\xf6\xac\x21\xcb\xf3\xac\x82\x51\xb4\xf3\x96\xe3\x5b\xbe\xfe\xb5\xf8\xa4\x89\x4f\x89\x1a\x82\x82\x00\xd5\x1d\xb6\x03\xfd\x33\xfc\xa0\x01\xf1\xfd\x3c\x85\x9f\x08\x07\xd2\x32\x3e\x43\x46\xc9\x1e\xa6\x5c\x4f\x7f\x84\x32\x0d\xca\x60\xf6\x34\x59\x96\x85\xc3\x33\xd1\x5d\xd8\xf0\x2c\xa7\x60\x79\x48\xea\x08\x87\x67\x8e\x6a\xbc\x4c\xc3\x32\x8d\x97\x25\x70\x50\x9e\x48\x63\xc8\x0a\xf2\x40\x14\xf0\x65\x2f\x3f\xa6\x7f\x8a\x25\x1a\x94\x68\x4a\x49\xb2\x0f\x05\x3b\x70\xbd\x01\xa0\xb1\xa3\x9e\x59\x86\x80\xf7\x8e\x0f\x96\x5a\x7f\x84\x32\x8d\x97\x69\xbc\x4c\x8b\xcb\xb2\x70\x90\xbb\x27\x8c\x09\xc6\xc3\x3b\x2b\xb1\x28\xa5\x38\x22\x28\x4d\xe0\xa9\x94\x39\xcd\x94\xc4\xeb\x2f\xf0\x53\xa3\x9f\x59\x90\x81\x55\x2a\xe3\x46\x25\x58\xfe\xc1\xf5\x4c\x6f\xac\x77\xd3\x52\x15\x19\x13\x73\xac\x6c\xf9\xa2\x1a\x7d\x84\x5d\x9c\xd9\x25\x1c\x8e\x79\x0d\x48\x8a\xa8\x05\xa3\x00\x2a\xd4\xbb\xfd\xa8\x1e\xaf\x82\xce\xda\x4a\x1d\x9f\xe0\x45\x85\xc2\xa0\xe4\x76\x84\xb2\x21\x79\x28\x0b\x83\xa8\x65\xfa\x56\x39\x64\x85\x41\x54\xd0\x7c\xa1\x50\x8a\xc2\xe0\x80\x10\xd3\x15\x66\xa8\x30\x08\x72\xa9\x9e\xe4\x82\x0a\x83\x03\xbe\x5f\xc4\xbd\x76\xe9\xd2\x97\x89\x8d\xa5\x94\x09\x21\xeb\xbf\x0c\xb9\x9e\x76\xa1\xec\xfa\xc1\xb0\x67\xf9\x17\x34\xd7\x29\x8e\xfd\x57\x05\x1e\x16\xe1\x6b\x65\xce\xe9\x5b\xb2\xbe\xff\xaf\x45\x3b\xb0\x7e\x7f\x01\x6b\xc7\xb7\x1e\x69\xa8\xc4\x95\x46\xbf\x35\xfc\x5d\x49\x9e\x1c\x01\x4d\xfc\xa9\x67\x91\xa3\x48\xc1\x1c\xf3\xf5\x2f\xf9\x37\x4d\x7c\xd3\xf8\xb7\x9e\x7a\x79\xd7\xbd\x62\x5b\x71\x45\x98\xb2\x6f\x44\x15\x2c\xed\x57\x49\xaa\x62\xfe\x42\x7f\xbc\x05\x1e\x7e\xcb\xc3\x8c\xbf\xfa\x55\xf1\x2c\xce\x7a\x81\xde\xfc\xda\x18\xca\x18\xb0\x6e\xdf\xe0\x77\x0d\xbe\x6b\x49\x63\x57\x0d\x5d\xd0\x7b\x70\x49\xea\x04\x2c\x3c\xd8\x53\x1a\xd8\x6c\x4c\x9c\xf8\x4c\x61\x51\xbf\x1e\x65\x54\xc7\xd9\xfa\x32\xa3\xb2\xa8\x6d\x95\x4c\xbb\x28\x96\xf2\x8f\xfc\x47\xf6\x3a\x02\x9c\x3c\xeb\x7f\x4c\x1e\x72\x2c\xf4\x2b\xf0\x24\x6f\x70\x5a\x6e\x5f\xd3\x2f\xe1\x4f\x0d\x7f\x26\x41\x7b\xce\x02\x7e\xe6\x7c\x97\xfe\x27\xcf\x2d\x25\x3f\xc3\xbc\xf2\x25\x4c\x7e\x96\x37\x80\x55\x74\x63\xea\xff\xc7\x2f\xff\x31\xd5\x96\x55\x74\xe1\xb6\x86\xb9\xe0\xe5\x9a\xf8\x95\xea\xff\x15\xbb\x2c\x34\x01\x97\xae\xd8\x65\x8d\x33\xeb\xf6\x10\x5f\x3b\x4b\xc3\xef\x3d\xfd\x32\x14\x18\xde\x45\x2d\x5f\xf1\x03\xb7\xa4\x56\x4d\xd6\x89\x05\x80\x4f\x15\xec\xfc\x43\x12\x4e\xca\x00\x9c\xe7\xea\x2d\xe6\x4d\x97\x8b\xa6\xed\x18\x81\x75\x2d\x80\x96\xe1\xa7\xc6\x7f\x26\x41\xcd\x42\x41\x01\x35\xcc\x62\xa0\x7f\x52\x28\x28\xe0\x9a\x59\x04\xf1\x29\xb0\xaf\xa6\x67\xc4\x72\x0a\xc8\xfe\x81\x22\xf0\x92\xe5\x14\x90\xff\x83\xe2\x24\xac\x04\x33\x86\x4c\x9b\xef\x91\x3f\xc1\x7f\x5a\xe0\x6a\x7e\xb2\x1e\xff\xc4\x05\xd2\xff\xa1\x5d\xbc\xda\x0f\x87\x6f\x39\x81\xfe\x6d\x5c\x65\xc4\xf4\xb5\x41\xcb\xe2\xfc\x98\x13\x08\x04\x03\x72\x17\xc3\xf1\xa3\x4d\xfc\x49\xf2\xc8\x65\xee\x66\x0e\x2f\xb5\x2a\x10\x72\xc2\x28\x82\x25\xe3\x27\xf4\x4d\xe3\xdf\x34\xf8\x96\xa8\xe3\x59\x3e\x17\xa0\x84\xa2\x5a\xa9\xf9\x0d\x2f\xd1\x44\x49\xff\xfa\x98\xa6\x4d\x39\x76\x5e\x49\xff\x06\xbf\xd2\x58\xe9\x6b\x6f\x87\x45\x65\xdf\x1e\x76\x0c\x2e\xfb\xd9\xd6\xa8\xac\xcb\x3f\x6a\xb6\xa3\xf1\x8f\x89\x5a\x52\xd4\x02\x85\x14\xf1\x3c\xe2\xb8\xa8\x1f\x13\xb5\x04\xb3\xa3\x94\x1b\x79\xb3\x1c\xe4\x47\x4c\xc9\xec\x28\x65\x1a\x95\x65\xe3\x48\x53\x4a\xc5\xfc\x5f\xe2\xea\x4f\x35\x7f\x13\x4e\x37\x39\xbe\x7e\x68\xdd\xfe\x23\x3e\xaf\x9b\x06\xc5\x0e\xf9\x2d\xc4\x5d\x20\x05\xed\x32\xed\x49\x78\x2b\xc8\xdc\x89\x1c\x4a\x0c\x0a\x37\x05\x59\x20\xd0\x08\x70\x4b\xc0\x37\x31\x1d\x31\xe1\x47\xf7\x19\x79\x0f\xc3\xcf\xb4\x78\x89\x5f\x07\xca\x9e\x7b\xd5\xe6\x43\xf8\x9a\xfe\xe8\x07\x20\xd0\x09\x38\xea\x76\x1a\x5c\xbd\x5f\x3e\x4d\xdd\x47\x08\xc1\x19\x73\x1f\xa3\x81\x72\x96\xfc\x12\x30\x21\x69\xa0\xe1\x3c\xe6\x95\xba\x6a\x16\xf5\xcf\x3f\xd5\xc4\xdf\x69\x30\xce\x98\x15\xed\x21\xb4\x95\x03\x59\x82\xff\xd2\xf8\xaf\x9e\x8e\xf9\xde\x50\xe2\xf6\xfb\xf4\xd2\x37\x7f\x4a\xdf\x7a\x68\xe6\x44\x23\x45\x5b\xa6\xe4\xb4\x01\xc0\x80\x59\x30\xcb\x81\xe5\xe9\x9f\xe0\xff\xc9\xc2\xf3\xfa\x8d\x10\xf1\x2d\x27\xbe\x83\xb0\x42\xcd\x82\x9c\x92\x6c\x95\x17\x0f\x90\x73\x64\xde\x75\x02\xcf\x2d\xa2\xbb\xbf\xe1\x7a\xf6\xb0\xed\xe8\x9f\x40\x99\x46\x65\xc8\x08\x6b\x58\x16\xd3\xc2\x20\x30\xf3\x23\x10\xc9\x51\x50\x44\xf9\xa5\x0f\x35\x94\xe5\xfd\x2e\x78\x05\xa2\x87\x75\x54\xca\x92\xdc\xfa\x27\x59\x6c\xba\x02\x2d\x19\xf4\x4b\x3d\x4c\x79\x0a\x0a\x79\xf2\x3f\x65\x30\xe3\x22\x7e\x0c\x8d\xf4\x1b\xfc\x99\x3d\x4c\x19\xc6\xa8\x77\xb8\xca\x0c\xf5\xc8\x2f\x3d\x95\x52\xa3\x8c\xab\xf6\x91\x4b\x7a\x10\xc8\x81\x2b\x75\xb3\x04\x93\xcc\x8a\x38\x17\x4a\xcd\x2c\x19\xa5\x6c\x83\xf9\x9e\x98\x16\xb6\xfe\x3a\x9a\x99\x4e\xee\x35\x02\x19\xa0\xf0\x03\x28\x01\x91\x74\xc6\xa9\x15\x7e\xd7\xf0\x7b\x42\x3e\x13\x35\xd1\x96\xbf\xb7\xfa\x37\xd2\xc7\xed\x37\x20\x19\xf6\x44\xfc\x03\x34\x7f\xfa\x9c\x7e\x6b\xf8\x3b\x0d\x2e\x2e\x33\x51\x4d\x5e\x64\xa2\x5e\xba\x02\x91\xd6\x21\xab\x60\x79\x66\x60\x15\xa8\xc3\x82\xbc\xca\xef\xd4\xd5\x58\xf5\x42\xd9\x1a\x69\x06\xbf\x82\x5f\xd9\xfb\x0a\x21\xe5\xc3\x8b\xa4\x0b\x9f\xe1\x87\x98\x38\x88\x0a\x22\xf2\x37\xe1\x8e\x1d\x70\x92\x2b\x24\xc3\xef\xc3\x3e\xfb\x56\xdd\x54\xa2\x88\xa2\x7c\x02\x59\x74\x2b\x81\xfe\x19\xfe\xd6\xe8\x77\x1a\x3c\xfd\xde\x05\x5c\xee\xb7\x5f\x5e\x12\xdc\xad\x80\x1f\xb6\x25\xed\x00\xdb\xa3\x44\xb7\x86\xed\x40\x2e\x03\xc4\x8f\x1b\xb1\x87\x47\x8a\xf6\xf0\x48\xac\x82\xe1\x9f\x35\x7f\xcc\x09\xcc\x6b\x9a\x2c\x55\xeb\xf3\x8d\x0c\x75\x8b\xb6\x63\xf9\xfa\x67\x1c\x1e\xfe\xc4\x7d\xac\x81\xfc\x69\x6a\xbe\xed\x0c\x93\xfe\xe1\xbf\xf6\xad\x6e\xe4\x47\x4c\xcf\xcc\x43\xa2\x58\x40\x14\xff\xce\xc4\xc6\xeb\x64\x63\xc3\xa3\x05\x38\x94\x43\x95\xaa\xce\x21\x13\xd5\x87\xf3\x86\xe9\x0d\x83\x91\xa4\xe9\x0d\x57\xf8\x99\xf4\x13\xe8\x41\x99\x64\xc9\x35\xfa\x4a\x28\x97\xd2\xab\x84\xc0\xb0\xeb\x62\x58\xd8\x76\xa8\x13\xca\x00\xcf\x17\x5d\x27\xc6\xfc\x29\xff\x95\x05\x06\x01\x8d\x05\xd4\xd7\x95\x62\x31\x0b\x88\xac\x3d\x39\xc8\xe7\x9f\x4a\x00\x01\x51\x74\x87\xa5\xda\x03\x34\xf3\xc9\x4d\xc1\x8b\x51\x29\x26\x95\x91\x08\x46\x31\xee\x1e\x1d\x47\xeb\xfb\xec\xf4\x9e\x0a\x0f\xca\x8c\xe4\xeb\x00\xff\x2c\x42\xca\x60\xfe\xd7\x9c\xf0\xed\x1c\xc8\x7b\xae\xa3\x7f\xea\xb9\x8e\x86\x0e\x63\xb2\x80\x2c\x95\x5a\xf1\x6b\xac\x28\xf1\xf3\x23\x56\xa1\x52\x94\xa5\xfb\x33\xe1\xfc\x9d\xb8\x1e\x97\x9c\xd0\x82\x57\x35\xb2\x95\xe5\xa0\x02\x73\x2b\x3e\x19\xca\x66\xc2\x58\xd7\xac\x7c\x45\x9a\xfc\x27\x8c\x64\x63\x34\x2e\xbe\x8b\xc2\xfb\x55\xfb\x68\xaf\x73\xb6\x1e\xed\xde\x92\xe5\x14\x2e\x8d\x7f\xa3\x70\x04\xb2\xfb\xa0\xd2\x66\x27\x55\xb6\x73\xeb\x9c\x76\xc1\x30\x56\xed\x9c\xf0\x94\x15\x1e\x9a\x94\xe5\x1f\x4c\x22\x32\x9c\x67\x05\x34\x04\x42\x2c\x58\x01\x67\x42\x89\xdf\xa5\x88\x88\x00\xdd\x69\x3c\x09\xaf\x4f\x4a\x68\x33\x8f\xcb\x44\x2f\xae\xb2\x49\xab\x68\xe5\x21\x48\x11\x5f\xc0\xf6\xd1\x1e\x9b\xdc\xed\x5e\xdf\x95\xe5\x05\x4b\x81\xa0\xa0\xd8\x98\xe9\x1f\xa0\x25\x9c\xed\x20\x37\x8e\xd0\x10\x1c\x6d\x61\x8e\x2d\xde\x4e\x81\xd1\x13\x2f\x42\x81\x7d\x2f\xc4\xf9\x04\x20\xbe\x7b\x52\x70\xd0\xa8\xea\x39\x07\x23\x93\x50\x98\x44\x00\xe7\x06\x4d\x26\xd4\x12\xe3\x03\xd2\xc1\xab\x83\xc9\xeb\xb4\x68\xe2\x9b\x5b\x4e\x4f\x89\xe8\xa3\xb0\x11\x54\x56\xa0\xc7\x52\xf0\x3b\x9c\xd6\xcb\x22\xca\x16\x58\x51\x92\x39\x6c\x93\x92\xca\x25\x63\x17\x5f\xf4\x3f\x7a\xdf\xfc\x38\xe7\x59\x8e\xcc\x8d\xd8\x9d\x9e\xc3\x94\x9d\x02\x1e\xe2\xee\x5f\xfc\xee\x83\xcb\xbe\x8c\xc1\x7f\xd4\x54\xd0\x7c\xf7\xe1\x65\x8e\xe9\xbb\xdf\x5f\x46\x64\xa8\xa5\x26\xcf\x72\xf4\x9c\x6f\x4e\xa9\xf0\x1f\x5c\xf6\xdf\xf7\xbd\xfc\xfb\xe9\x9a\x4a\xca\x75\x0c\x4c\x5e\x3b\x48\x55\xe3\xc0\xff\x2d\x6e\xa6\x6c\x7a\x16\xf9\x2c\x83\x93\x5c\xd8\x58\xd2\x30\x7c\xa7\x1a\x30\x32\x27\xd3\x67\xe1\x7c\x1c\x4c\x25\x47\x26\x87\x25\xb3\x07\x66\xce\x11\xcd\x29\xd8\x1e\xea\x7f\x95\xb3\x8a\x46\x88\x6a\x8d\xf7\xd1\x3c\xf1\x7d\xac\xfb\x77\x30\x4a\x8e\xe1\xaf\xb9\x7c\xd1\xf5\x63\x0c\x10\xfd\xfd\x1d\x31\x78\x96\x5b\xb6\x1c\x81\x42\x8d\x1b\xff\xae\x5d\xa1\x70\xed\x84\x09\x1d\x8c\xdf\x15\x07\xce\x48\x22\x32\xbe\x32\x31\x4a\xd4\xfb\x04\x3e\x48\x2a\xda\x77\x76\x52\xd8\xe4\x24\xbd\x2b\x36\x9a\xa9\x24\xba\xf4\x84\xbd\x2b\x52\x48\x7e\x9a\xee\x22\x20\xf9\x9b\x06\x8c\xf3\x87\xb9\xcc\xe3\x73\x4a\xbe\x0d\x70\x16\x7e\xe3\xb1\x39\xef\x9c\x10\x01\x91\xad\x40\x4a\xaa\x9e\x03\xa9\xe2\x53\x5a\xa7\xb3\xff\xa1\x3c\xfb\x39\x48\xfd\x10\x98\xc3\xf1\xd1\x46\x7f\xee\xc4\x88\xa1\x9b\x80\xf3\xc3\x73\xfb\xf8\xfb\x64\x1f\x39\xda\xdf\xd8\x41\xd1\x68\x6f\x07\x21\xbf\x05\x12\x1f\xcc\x14\x78\x2e\xe5\x53\xd3\xaa\x43\xc2\x8b\x76\x6b\x5e\x4d\xa9\xfe\x9f\x42\xba\xd4\x46\x29\x8b\x48\x6f\xb3\xb4\x0d\x4e\xee\x41\x16\xe2\xff\x89\xc9\x55\x5b\x23\xe3\xa8\x54\x6b\x7c\xff\xb6\xe6\xcf\x99\x70\x4d\xae\x8a\xe8\x4f\xef\xbc\xe7\xbe\x0b\x5c\xb7\x78\x39\x67\x0e\xbb\x7a\xfb\xf8\x16\x9b\x99\xcb\x81\x25\x84\xe3\x8e\xea\x18\xe3\x37\xc7\xff\x64\xb5\x35\x56\x5b\xcb\x7d\xe0\xeb\x1f\x68\xd1\xce\x9d\x8b\x7e\xee\x83\x92\xfe\x01\xd8\xdf\xdd\xd9\xe0\xbf\x46\xf8\xaf\x83\x85\x70\xe5\x90\xff\x2a\xf0\x5f\x5b\x3f\xf2\x3f\x47\xf9\x9f\xb7\x77\xa1\x86\xeb\xe8\x1f\x68\x61\xbd\xc6\x7f\x8c\xf1\xef\xc7\x2f\x2f\xfa\x39\xdf\xca\xbb\x4e\xc1\xd7\x2f\x16\x08\x75\xc9\x76\x2a\x81\x05\x1f\x64\x03\x23\x6e\xc5\xc3\x2f\xa2\x11\x78\x4d\xe2\x1f\xa0\x9d\x51\xcb\xba\x82\x3f\xa1\xad\x92\xeb\x04\x23\xf0\x1b\x9b\x1b\xb3\x4c\xaa\x0e\x4d\x7a\xe6\xa8\x21\x9a\x8d\x76\xee\xc0\x6f\xd1\x2a\x36\x09\x9f\xb0\x51\xf8\x37\x97\xfb\xae\xe0\xb9\xe5\xef\x5d\xc7\xba\x9c\x13\x62\x5f\xc9\xf2\xc1\xd3\x2e\xbc\xb5\x1c\xae\xff\x4c\x61\x9e\x6b\x07\x14\x2b\xae\xb6\x8c\x69\xbf\xdb\x47\x37\xdb\x27\x8f\x72\x14\xd5\xd4\xb0\x9d\x72\x45\xe4\x2e\x12\x29\x92\x11\xa4\xd3\xd8\x46\x16\x84\x9f\x14\x34\x00\x02\xfe\x3a\x70\x5d\x63\x90\x33\xe1\x98\x13\xeb\xf4\x6e\xb4\xd3\x78\x73\x52\xfb\xb7\x7f\x03\x89\xc5\xfe\xde\xfa\xf7\x7f\xd7\xbe\xfa\xc3\x9b\x93\x99\xce\xe1\x64\xe7\x6c\x9a\xef\x42\xc5\xb1\x46\x81\x2f\x99\xd7\xfe\x94\xaa\x92\xa3\xc8\x33\xf0\xee\x40\x11\xd7\xb0\xe9\xdc\xff\x17\x00\x00\xff\xff\x6d\x48\x52\x01\x5f\x00\x01\x00" +var _confLocaleLocale_zhCnIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\xbd\x6d\x73\x1b\x47\x92\x30\xf8\x1d\xbf\x02\xa1\x0d\xc5\xdc\x45\x9c\xe9\xf0\xcc\xb3\xcf\x5d\x3c\x61\xf8\x6e\xc6\xf3\x8c\xbd\x77\xe3\x59\xef\xc8\x13\x7b\x11\x3e\x45\x4f\x13\x68\x92\xbd\x02\xba\xb1\xdd\x0d\xd1\xf4\xc6\x46\x80\x14\x5f\x40\x89\xaf\x12\x45\x52\x24\x24\x8a\x32\x29\xd2\x92\x48\x50\x96\x44\x81\x00\x29\xfe\x97\x33\xaa\xbb\xf1\x89\x7f\xe1\xa2\x32\xb3\xaa\xab\x1b\x0d\xca\x9a\x67\xf7\xbe\x48\x44\x57\x56\xd6\x7b\x56\x66\x56\xbe\xe8\xe5\xb2\x56\x30\xdc\x7c\xae\xd3\xac\xfa\x2f\xde\xf9\x8f\xc6\xfd\xf5\x7b\xfe\xd2\x01\x6b\xb7\x82\x8d\xc9\x70\xe6\x19\xbb\xfd\x63\xf6\x0b\xd3\xcb\xfa\xf5\x79\x76\x7b\x3b\x93\x19\xb1\x4b\x46\xae\xfb\x74\xb5\xbb\xfd\x26\x53\xd0\xdd\x91\x41\x5b\x77\x0a\x39\x7f\x61\x8f\xd5\x8e\xbb\x0f\x9f\xf8\x0f\xcf\x33\xc6\x77\xe5\xa2\xed\x18\x39\xb6\xb8\x1c\x2c\x1c\x65\x46\x8c\x62\x39\xc7\x9a\x87\xec\xf6\x8f\x19\xd7\x1c\xb6\x34\xd3\xca\x05\x0f\xda\xec\xec\x3e\xfe\xb4\x2b\x5e\xae\x5b\xad\xb2\x99\x16\xfe\xae\x94\x73\xfe\xab\x7d\x36\x3d\x97\x71\x8c\x61\xd3\xf5\x0c\x47\xfc\x1e\x35\x06\x5d\xd3\x33\x72\xec\x70\xdd\x5f\x3d\x09\xce\x96\x83\xe7\x0f\x32\x65\x7d\xd8\xc8\x75\xb7\xdf\x74\x1f\x3e\xc9\x78\x46\xa9\x5c\xd4\x3d\x23\xe7\xef\x6f\xf3\x9e\x14\x75\x6b\xb8\xc2\xcb\xc3\xc6\x41\xb8\x5f\xed\x56\x67\xbb\xdb\x27\x99\xbc\x63\xe8\x9e\xa1\x59\xc6\x68\x8e\xd5\x36\x59\xbb\x35\x30\x30\x90\xa9\xb8\x86\xa3\x95\x1d\x7b\xc8\x2c\x1a\x9a\x6e\x15\xb4\x12\x1f\x42\xb0\xb2\xef\xd7\xde\x76\xce\xb7\xfd\xf1\x06\x5b\xbc\xed\x6f\xbe\x66\x3b\x1b\xd0\x4d\xa3\xa0\x99\x96\xa6\xbb\x39\xf6\xf6\x27\x1c\x0d\xc2\x66\x00\x93\xa5\x97\x44\x65\xb6\x34\x9f\x31\x4a\xba\x59\xcc\x75\x27\x0e\x83\xc3\x97\x99\xb2\xee\xba\xa3\xb6\x53\xc8\xb1\xc6\x74\xf0\x78\x3c\xe3\x18\x9a\x37\x56\x36\x72\xc1\xf6\x61\x78\xb8\x43\x1f\xf3\x7a\xd9\xcb\x8f\xe8\xb9\xee\xb3\xb9\xb0\x31\xce\xbf\x64\x1c\xa3\x6c\xbb\xa6\x67\x3b\x63\xb9\x4e\xfb\x1e\x6b\xdd\xcb\xd8\xce\xb0\x6e\x99\xdf\xeb\x9e\x69\x5b\xb9\xa0\x3d\x19\xb4\x67\x32\x25\xd3\x71\x6c\x27\xd7\xbd\x5f\x67\xb7\x16\x33\x96\x31\xaa\xf1\x7a\x34\x50\x7f\xf5\x28\xd8\x98\xa4\xda\xbc\xac\x64\x0e\x3b\x7c\xbe\xc2\xf3\xf1\x60\xaf\xcd\x76\x56\xbb\xb7\xf6\x63\xc5\x80\x4c\xad\xac\x20\x1e\xb2\x9d\x1b\xb1\x32\xff\xf5\xbb\x60\x65\x4b\xa9\x6f\x3b\xc3\x31\x00\xd1\x47\xdd\xd2\x87\x0d\x28\x0d\x0e\xb7\x83\xa5\x69\xbf\xb6\x1c\x95\xea\x85\x92\x69\x69\x65\xdd\x32\x8a\x54\x4c\xfb\x4a\xcf\xe7\xed\x8a\xe5\x69\xae\xe1\x79\xa6\x35\xec\xe6\x58\x73\xc9\xaf\xbd\x0d\x0f\xdf\x05\x67\x87\x99\xf4\xaf\x63\x76\x45\x2e\x6b\xae\xd3\x7c\xd6\x69\xb5\x70\x35\xb1\x44\x56\xc2\xb5\xa2\x4a\x19\x3d\xef\x99\x37\x4d\xcf\x34\xdc\x9c\x5f\xaf\x86\xe7\xcb\xfe\xeb\x36\xbb\xbd\x9f\x29\x57\x8a\x45\xcd\x31\xfe\xb5\x62\xb8\x9e\x9b\x63\x4b\x35\x76\x72\x1c\x36\xde\xfa\x2f\x27\x32\xa6\xeb\x56\x0c\xbe\x1b\x76\xd9\xfc\x7d\xec\x76\x26\x93\xd7\xad\xbc\x51\xcc\xb1\xc5\x55\xff\xb8\x96\xc9\x7c\x6b\x5a\xae\xa7\x17\x8b\xd7\x33\xf4\x47\x8e\x1d\xce\x86\x3f\x4c\x89\xdd\x6b\x7a\x45\x38\x5b\xfe\x8b\xed\xf0\x7c\x29\xdc\x9e\xc3\xe2\x60\xff\x0e\x6b\x2d\x66\x0a\x76\xfe\x86\xe1\x68\xfc\x38\x19\x4e\x8e\x3d\x9d\xf0\x1f\xd5\xfd\x89\x7d\xff\xe0\x07\x56\xdf\xef\x9c\x9d\x07\x2b\xfb\xd9\xdf\x03\x4c\x96\x1d\x9e\xb0\x07\xfb\x88\x23\xfb\x85\x3d\xec\x5e\x9c\xce\x85\x8d\xb7\xec\xf6\x36\x3b\x9f\x62\x53\xb5\x4e\x7b\x25\x68\x4f\x77\xd7\xa7\xc2\x46\x3b\xfb\xa9\x9e\xf5\x74\x67\xd8\xf0\x72\x57\xb4\xc1\xa2\x6e\xdd\xb8\x92\x1d\x71\x8c\xa1\xdc\x95\xab\xee\x95\xcf\xf0\xa8\xf9\xab\x33\xfe\xf6\x0f\x9f\x7e\xac\x7f\x96\x65\x4b\x0b\x6c\x7a\x9e\x35\x4e\xfc\xfa\x0b\xec\x77\x78\xbe\xc9\xbb\xba\xfd\x9c\x4d\x3f\xf8\xb9\x3a\x91\xe1\xf3\x63\x7a\x86\x56\x18\x44\xca\xc2\xdb\xcf\x86\x4f\xc7\xfd\x97\x13\x38\x9e\xec\x57\x63\xd7\xfe\xe9\x8f\x3f\x57\xc7\xbf\xb6\x5d\x6f\xd8\x31\xf0\xc7\xb5\x7f\xfa\xa3\xe9\x19\xbf\xf9\xb9\x3a\xfe\xd5\xb5\x6b\xff\xf4\xc7\xac\x5f\x5b\xcd\x7e\x63\xfe\xfe\x77\x1c\x65\x61\x50\xc3\xc9\xf1\xef\x1f\xf9\xf3\x87\xac\x75\x8f\x56\x8a\x17\xf0\xb3\x23\xbf\x07\x2f\xdb\xec\xd1\x9d\xcc\x88\xed\x7a\xd1\xc7\x4e\xb3\xed\xd7\x5b\x70\x30\x15\x48\x3c\xae\xf2\x34\x26\x0a\xe8\x1c\x16\x06\x35\x38\xcb\xb2\x94\x2d\xcd\x07\x7b\x47\xfc\x7b\x72\x21\x68\x09\x60\x70\x38\xdf\xf4\xe5\x1f\xfe\xf4\xa7\x7f\xfc\xfd\xef\xb2\xec\xf4\xbe\x7f\x6f\xa1\xd3\xde\x65\x8b\xb7\xb3\x15\x6f\xe8\x7f\xd3\x86\x0d\xcb\x70\xf4\xa2\x96\x37\xb3\xec\x60\x2d\x78\xf1\xb4\xbb\x39\xcd\x87\xeb\xba\x45\xad\x64\x17\x8c\xdc\xb5\x6b\x7f\xcc\xfa\xfb\xdb\xec\x74\x31\x53\xd6\xbd\x91\xa8\x17\xfe\xea\x4c\xa7\x7d\x1c\xbe\x6d\xb0\x77\x93\x19\xf7\x5f\x8b\x7c\xbe\xa9\x3f\x34\x8f\xd9\x54\xd8\x9f\xab\x13\x9f\x0e\x3a\x9f\x75\xce\xea\x9d\x66\x0b\x49\x3a\x5b\x6a\xb0\xdb\xfb\xfe\xda\xb1\xda\xe7\xa0\xfd\x90\x35\x4e\x64\x9d\x8c\xe1\x38\x9a\x51\x2a\x7b\x63\x7c\x55\xa1\x2b\xd8\x4c\x7a\x2b\x9d\xe6\x7c\x78\xeb\xac\xd3\x6c\x05\x3f\xb6\x78\x6d\xcb\xd6\xf0\x50\x73\xba\x5a\x30\x5d\x7d\xb0\x68\x68\x48\xdc\x1d\x24\x5e\x7c\xfa\xa0\x12\xdb\xd9\x62\xf5\x7d\xbf\xfe\x0c\xc9\x06\x1e\x24\xb6\xbc\x8e\x8b\xc2\x69\xcc\xad\x29\x36\xfd\xa6\xd3\xbc\x13\x3c\x1d\xf7\x0f\x9e\xe0\xcd\x10\xef\xa2\x20\x20\xb4\xb0\x12\x07\x2e\x69\xb2\x73\x19\xb1\x0a\xb8\xc3\x58\x6b\x25\x58\xd9\x67\x5b\x2d\xbf\xfe\x82\x36\x19\xbf\x23\x61\x13\x50\x19\xee\x00\xf1\x55\xee\x83\xf3\xe7\x7c\xe2\xee\x4c\xf8\x77\xce\xba\x53\x6f\x83\x89\xe7\x92\xa4\x61\x8d\xee\xda\xb3\xe0\xd1\x82\x5f\x5b\xee\xb4\x5f\x5c\x9c\x8e\x03\x3d\xc7\xb9\x44\x8a\xe9\x3f\x3e\x09\x36\x0f\xf9\xb5\x28\x4b\x04\x6e\x7f\xb6\xea\xd7\x67\xe1\x1e\x0e\xcf\xeb\xc1\xfe\x1d\xac\xd1\xbd\x75\xc6\x8e\xa6\xc3\x27\xcf\xd9\xc1\xba\xbf\xf2\xae\xd3\x5a\x08\x1b\xbb\x88\x03\x0e\x62\xc5\xd2\x60\xcf\x23\x21\x08\x5e\xb5\x83\xf6\x16\x6d\x7b\x51\x26\x5a\xe0\x15\x71\xdf\x9f\x4f\x75\xb7\xdb\x6c\xea\xad\x5f\x9f\x65\x8d\x93\x44\xd7\xd8\xdd\x39\x85\xaa\x64\xf9\x7a\xdc\x9b\xef\x9c\xd5\xfd\x87\xb7\xba\x0f\x96\xe0\xa8\xda\x25\xdd\xb4\x72\x6c\x6b\x8b\x5f\x7c\xf8\x4b\x69\x04\xa7\x94\x9d\xbd\x64\xf7\xe6\xb3\xd7\xae\x7d\x99\x65\x53\x77\xba\x1b\xd3\xac\x7e\xc4\x1e\x56\x71\xef\x8f\x68\x65\xdb\xf1\x72\xbc\x30\x78\xde\x60\x8b\x3f\xb0\xc5\xb7\xf2\xb3\xdc\xe5\xd7\xbe\x24\x96\x84\x3d\xd8\xe7\x13\xbd\xb9\xcc\x96\x5e\x48\xf8\x8b\xd3\xb9\xe0\xfe\x83\xe0\xc7\x56\xb8\xbd\x1f\xec\xb4\x82\xa7\xe3\xfc\x20\x42\x7b\xb7\xb7\xc2\x5b\x67\xbc\xa5\x8a\x6b\x68\x83\x15\xb3\xe8\x99\x96\xc6\xd1\xbb\x86\x73\xd3\x70\x72\x78\x00\xd8\xf4\x54\x70\x76\x98\x8d\x35\xd3\xa7\x86\x56\xb6\xcb\x95\x72\x0e\xcf\x51\x5a\xbd\x4e\xf3\x5e\x77\x6d\x3f\x58\xd9\xef\xb4\x16\x90\x97\x82\x39\x63\x8b\x0d\x4e\x0c\xee\xd2\xc2\x60\xef\x0e\x6b\xfe\xed\x1d\x24\xf8\x48\x57\xbb\x1b\x2b\xc1\xd3\x36\xef\xef\x88\xe7\x95\x71\x6a\xbe\xfc\xe6\x9b\xaf\x95\xb9\x91\x05\x72\x2b\xc2\x3e\xa5\x29\xd9\x98\x8c\x20\xf9\x9e\xad\x38\x45\x02\xc8\xfe\xe5\xcf\x7f\x14\x9f\xfa\x2d\x11\x6f\xea\x63\xfe\xcf\xb5\xd8\x4a\xb1\xbb\x73\x9d\x66\xb5\xd3\xda\x44\x9e\xa6\xd3\x3c\xe0\xac\xc1\xbd\x77\xfe\xc2\x2e\xef\x6a\xd1\x1e\xd6\x1c\xdb\xf6\x70\x7b\xfb\x6b\xbb\xec\x7c\x8d\x88\x55\xac\x48\x76\x18\xf6\x2f\xc2\x21\x21\x81\x25\x85\xc3\x60\x58\x40\x2e\xf2\xb6\xe5\xda\x45\x03\xe9\x22\x5b\x6a\xf0\xdd\x0a\x4c\x27\x5b\x3c\x22\x12\x99\x02\x49\x6b\xd3\x7d\xb0\xd3\x69\x4d\xe3\xca\x22\x7e\xac\xc2\x76\x56\x39\xd5\x3b\x5f\x67\x47\xd3\xd4\xcb\x77\xf7\xd8\x4c\x8b\xd5\x8e\x24\xf2\x4c\xc6\x2e\x73\x1a\x15\x51\x88\xc5\x46\xb7\x3a\x4b\xb4\x01\x38\x3b\x2a\xe8\x4e\x1c\x72\xcc\xb0\xec\x82\x29\x29\x79\x65\x0d\x2e\xa3\x6b\x5f\x7d\xf3\x75\x96\x2e\x22\xf8\x3a\xe4\xd8\x25\x51\xe5\xe1\x6e\x38\xf3\x2c\xfa\x2c\xa6\x45\x2d\xc5\x79\xbf\x38\x9d\xeb\x8e\xbf\x61\xef\x9e\x65\xff\xfc\x87\xcf\xb3\x7f\xff\x9b\x5f\xff\x3a\xeb\x3f\x9e\x61\x33\xfc\xda\xc0\xfd\xe4\xaf\x37\xf8\xca\x34\x9f\x71\x36\xa4\xd5\xe0\xcb\x02\x4b\x84\xf5\xfd\xda\x2a\x5d\x4a\x57\xfe\xa4\x97\x8c\x2b\xd9\x4f\x61\x00\xff\x87\xf1\x9d\x5e\x2a\x17\x8d\x81\xbc\x5d\xfa\x0c\x4e\xf5\xe3\x53\x76\xba\xc8\x97\x92\x17\x1b\x0e\xd2\x11\xb6\xb8\xdc\xad\x8e\x13\x1b\x4b\x05\x11\x37\xab\x14\x4a\xce\x16\xf9\x77\xbe\x24\x43\xa6\x53\x12\xeb\x06\x34\x1b\x21\x91\xe9\x05\x64\x9a\x65\x7b\xe6\xd0\x18\x01\xe1\xd8\xbb\xd5\x8d\x60\x6b\xd7\x5f\x5c\xea\x4e\xdf\xcd\xd0\x71\xe3\xff\x99\x79\x43\x70\x04\xe2\x94\xb1\xbb\x73\x6c\xea\x98\x1d\xde\x8a\x2d\x80\x3d\x34\x54\x34\xad\xd8\xb6\x09\x9e\xb6\x83\xd6\x39\xed\x19\xb5\x5c\x1c\xe4\xfa\x7e\xf7\xd6\x7e\x70\xf6\x13\x82\x74\x9a\x77\x3a\x27\x5b\x48\x41\x3a\xed\x85\xec\xe7\xbf\xff\x53\x36\x5c\x78\xcb\x79\x3a\xd8\x49\x17\xa7\x73\xfe\x6c\xb5\xd3\xde\xe5\xf2\xd2\x9b\x49\xbf\xb5\x84\x64\xb9\xd3\x5e\xf0\xeb\x2f\x58\xfd\x48\xf6\x10\x6b\x01\x91\xa4\x3b\x70\xd8\xd1\x6f\xea\x9e\xee\xe4\x88\x40\x7d\x41\xbf\x85\xb4\x95\x84\xa3\x1e\x26\xa1\x39\x55\x9e\x79\xc6\x0e\x37\x3a\x27\xb3\x7e\x6b\xe9\xe2\x74\xae\xd3\x9e\xa2\x8b\x7c\xe5\x25\xc9\x30\xcd\xdb\x9d\xd3\xc7\x7c\x69\x6b\xab\xdd\xf6\x7a\x78\xb8\x13\x6c\x4c\xb2\x9d\xd7\xec\x16\x2c\xf3\x90\x51\x30\xb8\x24\x50\xd0\xa8\xa5\xa2\x6d\xdf\x40\xaa\xc6\x9b\xfa\x83\x28\xce\xfe\x16\x8a\xdd\xac\xbf\xb5\xeb\xcf\xbe\xeb\x57\x2f\xa2\x89\x97\xd5\xee\xb4\x77\x89\xda\x9e\x56\xfd\xd6\x52\xb0\x31\x99\xfd\xa3\x39\x18\x9f\x03\x75\xba\x62\x2c\x03\xde\xff\xc4\xb7\xcf\x3c\xe3\x47\x0b\xa5\xc4\x34\xe8\x68\xe2\xd4\x3a\xe1\xf6\x1c\xd6\xc1\x4b\xe1\xe2\x74\x8e\x2d\x3e\xf3\xeb\xb3\x11\xc7\x80\x47\xea\x6d\x9b\xdd\x7e\xcc\x9a\x4b\x6c\xf1\x2d\x70\x1a\x44\x67\x48\x44\xa3\xfd\x2a\x04\x35\x5a\xba\x38\x10\xb5\x4f\x5c\x70\x7d\x1f\xbb\x80\x8d\xfb\x6b\xc7\x9c\xea\x4c\xed\x76\x9f\x4c\x46\xe2\x1e\x70\xd1\x8e\xa1\x91\xc4\xac\xdd\x34\xb9\xb8\x8a\x1b\x18\xc4\xcd\xf0\xf0\xbc\xbb\x76\xd8\x7d\xb0\xc4\x6a\xc7\xa9\xd0\x62\x0d\x60\x48\x91\x94\xba\x31\x49\x8d\xcf\x12\xbf\x45\x88\x80\x97\xe7\x53\xb0\xf4\x94\xd5\x1e\xb0\xa3\x69\xb6\xf8\x2c\xbc\x75\x16\xd4\xef\xb0\xda\x11\xd6\xf5\x6b\xab\x74\x76\x01\x98\xcf\x05\xf2\x5a\x24\x46\x21\xbf\x9f\xe0\xdc\x70\xde\xd8\xc9\x71\xa7\x39\xef\xaf\x37\x90\xbf\x08\x36\x26\x79\x53\x9b\x8f\x39\x1f\x86\xcb\xb1\xbd\x8f\xb7\x48\xf0\xe2\x05\x12\x30\xe2\x47\x8e\xa6\x41\x0b\x01\xa7\xe7\xdd\x9a\x44\x1b\x71\x1c\xd8\x05\xa4\x06\x89\x56\x05\x03\x07\x10\x28\x93\xc7\x19\x4a\xce\xa3\x5c\xce\x2e\x66\x88\x76\x29\x00\xaa\x9c\x8e\x95\x51\xbe\x97\x35\x89\x42\x92\x90\xa7\x0d\xdb\x5c\xc0\x7c\x7e\x87\xcd\xbf\x42\x01\x28\xe3\x19\xae\xa7\x0d\x9b\x9e\x36\xc4\x89\x68\x21\xe7\xaf\x3d\xf6\x5f\xdd\x0f\x1b\xd3\xac\xf6\x3c\xfb\xab\x61\xd3\xfb\x55\x96\x2d\x9f\x75\xda\x3b\x17\xa7\x1b\x57\x6f\x12\x83\xff\x1b\x4e\x20\xf9\x31\x33\x8b\x7c\x6b\x71\x9e\x99\x13\x1e\x3c\xe6\x1b\x93\x6c\x71\x99\x33\x79\xb3\x35\x3e\xcf\x2b\x0d\x7f\x6e\x3c\x4b\xa2\x00\x31\xf6\xed\x85\xec\x55\x37\xdb\x69\xde\x09\xcf\xce\x48\xac\x7b\x34\xc9\x57\x6a\xb6\xc6\x21\xaa\x73\xb8\x40\xd9\x61\x9b\xf3\x38\x85\x6c\x30\x5b\xf3\xeb\x2f\xf8\x0c\x9b\xd6\x4d\xbd\x68\x16\x38\xef\x4f\x2b\x9d\x14\xc4\x78\xd5\x83\x1f\x82\xed\x43\xec\xb0\xa8\xd0\x97\xc5\x4d\xad\x25\x79\x52\x3e\xce\x92\xee\xe5\x47\x52\x38\xd7\xee\xc3\x47\xec\xec\x1e\x9b\x9d\xc7\x9f\xbc\xa6\x9b\xfd\xe8\xb3\xec\x55\x37\xba\x6c\xb5\x92\xe9\xba\x7c\x3f\x22\x23\xc9\x6f\x5e\xbc\xfe\x82\xd3\x16\x3b\x5a\x96\xfc\x90\x3a\xb6\xe8\x4e\x06\xf8\x3f\x38\x76\x89\x0b\x65\xfe\xe1\x9b\x4e\x73\x9e\x2d\xd5\xfc\x57\xf7\x69\x31\xf4\x9b\x06\x5e\x68\xc3\x62\xf9\x90\x9d\xea\x4e\xcd\xf3\x31\x9d\x3f\x64\x07\xeb\x6c\xe7\x65\xf8\x7a\x57\x4c\x46\xb4\xd0\xac\xf6\x90\xed\xdd\x61\x73\xab\xc4\xa2\x01\xa3\x17\x07\xc6\xee\xc4\xce\x55\x6c\x5b\x4b\x35\x45\xcf\x9c\xe3\x6e\x73\x2b\xf9\xbc\xe1\xba\x7c\x7b\xb0\xdd\xb3\x8b\xd3\x71\x94\x38\xd8\xbb\x5a\xf7\xf9\x3a\x9b\x7a\xed\x4f\xec\x77\xab\xb3\xfe\x9d\x1f\x89\x11\x20\xf5\x40\xb0\xfb\x50\xca\xb0\xfe\xe4\x2c\x3b\x7f\x0e\xd7\xc8\x0f\x5c\x62\x6a\x2f\xf8\x07\x3b\xfe\xda\xe3\xec\xef\xfe\xf2\x05\x97\x5c\x44\x27\x93\x6c\xde\x63\xff\x7e\x8d\xdf\x30\x0a\xbf\x87\x7d\xcb\x7c\x3b\x62\x97\x8c\xeb\x99\x0a\x0a\x4c\x76\xb1\x60\x38\x91\x7a\x8c\xdf\x48\x71\xd5\x98\x00\xa1\x43\xe6\x8e\x9a\x5e\x7e\x44\x93\xea\x46\x3e\xfd\x9e\xf1\x9d\x97\x63\xb5\x19\x7f\xfe\x89\xaa\x7c\x24\xf1\xa6\x34\x06\x7b\xcf\xcd\xa1\x66\x89\x54\x52\xee\x88\x3d\x0a\x7a\x3d\x51\xb8\xfe\x2e\xd8\x69\xa1\x52\x0f\x41\x06\x06\x06\x32\x79\xbb\x58\xd4\x07\x6d\x7e\x71\xdc\x14\x90\x6c\x71\xa2\xd3\x5c\x60\xf3\x8b\x9d\xb3\x7a\x84\xaf\x34\xa6\xd9\xce\xb0\x68\x44\x28\xb7\xc6\x48\x6d\x26\xbe\x93\xc6\x0c\x48\x32\x68\x4f\x91\xe0\xf2\x1d\x4b\x5a\xa3\x01\xd3\xd2\x40\x1d\x45\x8d\xbd\x7c\x44\xa2\x1c\xde\xdc\xd0\x58\xb0\x31\x99\xc9\x7c\x4b\xaa\xd5\xeb\xa8\x0c\x14\x7a\x40\x7e\x68\x84\x0a\x2b\xa6\x14\x74\x85\x56\xd0\x35\x74\x27\x3f\x92\xf3\x97\xea\xc1\xeb\x27\x99\xcc\xb7\x7a\xc5\x1b\xb9\xae\x28\x42\x35\xd2\xad\x11\xf1\xc6\x6d\x16\xf1\x6f\x23\x46\x99\xf3\x7a\x25\x77\x18\xd4\x9d\xed\x45\xbc\x06\x2e\x4e\xb7\x90\xac\xe1\xf5\xc0\xb7\x86\x6b\xe7\x4d\xbd\xa8\xfd\xf2\x9a\xed\x65\x76\xb8\xc1\x6b\xc6\xaf\x6d\x54\xc6\x96\xca\x5e\x8e\x0b\xa1\xcd\xf9\xf0\x0d\x97\xe9\xd4\xdb\x9a\xbd\xfd\x89\x4b\xbe\x53\xaf\xba\x6b\x07\x3f\x57\x27\xc2\xc6\xdb\x70\x7c\x85\x53\x0a\x50\x0b\xcb\x13\xd3\xcb\x3f\xf0\xee\x70\x72\xdd\x8b\x58\x65\x49\x53\x1b\xc9\xf0\x79\xd3\x5c\xbb\xe2\xe4\xf9\x32\xee\x84\x8d\x71\xbf\xb5\x94\x29\xda\x79\xbd\x98\x43\x6e\x2f\xe3\x18\x25\xa3\x34\xc8\x1b\xe1\x20\x47\x9d\xb3\x45\x52\x76\x0f\xd9\xce\x30\x9c\x15\xc1\x30\x9f\xaf\x87\x87\x47\xb4\xc5\x79\xa1\xd1\xa7\xf0\xe2\x74\x4b\x68\xc6\x35\xcb\x1e\xcd\x85\xe7\xeb\xfe\x4f\xdb\xb8\x46\x17\xa7\x5b\xdd\x1f\x5f\x74\x9a\xb7\x23\x45\x08\x5d\x58\xc8\xf7\x00\x63\xed\x1a\x96\x27\xa6\xb3\xd3\xac\xb2\xa3\x71\x52\xc7\xc2\x48\x91\xd3\xc6\xd5\xe1\x83\x05\x3e\x3e\x9c\x79\x95\xfd\x74\xf0\xb3\xab\xee\xa7\x1f\x0f\x7e\x86\x17\x88\xff\x43\x95\xb3\x6d\x13\xfc\xb2\xf1\x57\x8e\xb9\x90\x76\xf8\x92\x9d\x1c\xb3\xfa\x7e\xf6\x6a\x21\xcb\x8e\x16\xfd\xb5\x63\x36\x3d\xc5\x0e\xe7\xfc\xda\x12\xe2\x26\x0e\x07\xe4\x5d\x98\xbf\x3c\x1c\x2a\xd8\xec\x62\xcb\xf9\xe7\x55\xff\x75\x1b\xf1\xd2\xc6\x2b\x3b\xf6\x88\x39\x68\x7a\x9c\xc2\x98\x92\xd5\xc3\x69\x8c\x97\x21\xcb\xa1\x56\x0e\x9f\x3c\x57\xe1\xb1\xef\x7d\xb7\x86\x63\xc0\xe4\x14\xcd\x92\xe9\xa5\xee\xb8\x89\x7d\x54\xf0\xe2\xb4\x60\x5f\x71\xc6\xc2\xf3\x99\x4e\x6b\xa1\xfb\x64\x39\x38\x19\xc7\x56\x82\x83\x59\xf6\x6e\x2a\xfb\x9b\x2c\xab\x4d\x77\xef\x6e\xa1\xaa\x34\x6c\xc0\xc1\x18\xd1\x5d\xad\x62\xd1\xda\x18\x05\xdc\x82\x57\xdd\xac\x20\xd3\x74\xc9\xf1\x49\x7e\xc3\x39\x2e\x7e\xbb\xd7\x67\x71\xb5\x52\x96\x24\xdb\x39\x9b\xf6\xeb\xcf\xf8\x60\x61\xa2\x51\xce\xeb\xb4\x8f\xb9\x20\x28\x55\xc3\xf5\x67\xfe\xca\x31\x47\xa6\x74\x9b\x0f\xaa\xb6\xda\xad\x57\xc3\xa7\xe3\xdd\x99\x79\x7f\xf5\x08\xd1\x93\x8a\x78\xfe\x3e\x9b\x69\x77\x9a\x77\xfc\xd5\x13\xbe\xce\x73\xb3\xdd\xbb\x87\x72\xa2\xa8\xdb\x08\xe4\x1f\xec\xb0\x9d\x49\x15\x85\xba\x9f\x32\x00\xce\x6b\x79\xbd\x95\x2e\x4e\x6b\x58\xef\xe2\x74\x96\x26\x16\x57\x10\xf6\x7b\x77\x86\x5f\xa4\x84\x06\x31\xc8\x73\x81\x65\x74\x68\xc4\x3d\x94\x07\xe1\x2e\xbe\x6a\x72\x7b\xe3\x1d\xc6\x0f\xf2\xf9\x8c\x5f\xdf\xf2\x6b\xab\xec\xed\x4f\x6c\xe7\xa5\x7f\xbf\x26\xc6\x15\xe1\x97\x0a\x89\xf8\x08\xa3\x26\x25\xa0\x67\xdb\x9a\x3b\xc2\xf9\x0b\xea\xf4\xfd\x73\xd6\x7a\x4a\x4a\xcc\xa3\xe5\x4e\x6b\x21\xfb\x5f\xb3\x9d\xb3\x79\xbe\xf6\x96\x6d\x69\x40\x23\xe4\x9e\xef\x3e\x7c\x84\xe4\x02\xf5\xd5\x72\xf3\x22\x23\xd8\xad\x6e\x84\xe7\x33\xa8\x62\xeb\x9c\x1f\xfa\x2b\x27\xd8\x06\xa8\x2b\x71\xdb\x7b\xa3\xb6\x36\xa4\xe7\x3d\xdb\xc9\x75\x9a\x3b\xfe\xc1\x2e\x49\x0e\x78\x46\x92\x30\x30\x3e\x9c\xa5\xdb\xfb\x7e\x75\xbc\xd3\xde\x09\x66\xe7\x7a\xc1\x0c\x8b\x53\x47\xc7\xc8\xdb\x37\x0d\x67\x0c\xe7\x15\x65\x13\xb5\x11\x7f\xfc\x09\xdb\x99\x67\x8d\xe9\xee\xdd\xdd\x5e\x1c\xa2\x76\xae\xb7\x4a\xbf\xde\xc5\x1b\xbc\x1c\x3d\x76\x51\x8e\xa7\xb7\x77\x97\x8f\x30\xe2\x4c\xfb\x35\x29\x09\x21\xf1\x42\xb5\x55\x7f\xbd\x21\x79\x9b\x4c\xe6\x5b\xbe\x9b\xaf\x23\x25\xe3\xb7\xa7\x58\x52\x4e\x26\x7a\x29\x99\x04\x43\x11\x21\x6c\xbc\xa5\x09\x01\x20\x55\x35\x93\xbe\xd3\xd5\x73\x11\xdd\xc7\x92\xc7\x43\xf2\x5a\x5b\x62\xb7\xb7\xf8\xb6\x7f\xf1\x24\x3c\x5f\xc0\x7e\x47\xc0\xa4\x56\x89\x15\x66\xbe\x2d\xd9\x05\xbd\x78\x3d\x33\x66\xb8\x24\xd0\x20\x91\xce\x58\x36\x3d\x57\xd1\xef\x92\x5d\xe0\xb5\xe9\x2c\xc1\x66\xcc\x64\xbe\x1d\xb2\x9d\xd2\xf5\xcc\x5f\x5c\xc3\xf9\x53\xfc\xa5\xf3\xcf\x46\xd9\x86\x4f\xc8\x9a\x90\xae\xfc\xbf\x2b\xef\x9f\x34\xda\xaf\x13\xaf\xa0\x7f\x36\x7a\x1f\x41\xaf\x5d\xfb\xf2\x1b\x10\xeb\x40\x35\x8a\xab\x83\x08\xbf\xf4\xbc\xb2\xfb\x17\xa7\x98\x43\xd5\xe4\x5f\xfe\xfc\xc7\xac\xc4\x3b\x56\xb4\xf5\x02\x2f\xf3\x17\xf6\xbb\xd5\x71\xfa\xfe\x8d\xa1\x97\xa0\x63\x6c\xf3\x49\x77\x7d\x8b\xf0\xfc\xb6\xe2\x8d\xc0\x57\xbc\xcc\xc5\x57\xce\x7c\xff\xf7\x54\x99\x2e\xf3\x27\x63\xf4\x77\x8e\x6e\xe5\xb1\x1a\xde\xa3\xac\x36\xed\xaf\x34\xa8\xf2\xe7\x76\xa9\x64\x7a\xd7\x2a\xa5\x92\xee\x8c\xe5\xfc\xc5\xa5\x4e\x6b\x87\x1d\x2d\x06\xed\x7b\x54\xf4\x95\xe1\xba\xfa\xb0\x41\x45\x7c\xa6\xc7\x1b\x54\xf4\xf9\x88\x6d\xe6\x45\x09\x72\xe9\x99\x6f\x1c\xc3\xa0\xb6\x94\x37\x9f\xcf\x39\x07\xcc\xf9\x35\x7e\xdf\x9e\x64\xa4\x02\xc0\x80\x07\xdb\xe4\x1b\x87\x5e\x2c\x8f\xe8\xc0\x3f\x13\x00\x4a\xe1\x9d\x66\x2b\xbc\xf3\xd2\x5f\x9d\xe1\x82\x4e\x63\xfe\xe7\xea\x78\x77\xfd\xdc\xbf\x33\xdb\x39\x6d\xf8\xf7\x8f\xf8\xc7\xda\xaa\xbf\xff\x2c\x68\x9d\x5f\x9c\xd6\x3e\xd2\x2e\x4e\x67\x13\xc8\x0a\xb6\xf7\x61\x08\x7f\xae\x8e\xc7\x11\xfa\xb5\xd5\x60\xe2\x24\x05\xad\x5b\xfc\xe0\xde\xf6\x20\xff\xb9\x3a\x1e\x4c\x9c\xf0\x41\xac\xd6\x83\xd6\x39\x3c\x2f\x98\xdf\x8b\x49\x42\x8a\x2d\x71\x67\xaf\xba\xa0\xef\xe4\x62\x57\x12\xc8\xaf\x57\xd9\xd1\x22\x02\x65\x3b\xcd\x67\xf8\x5a\x87\xea\xd1\xef\xd2\xc1\x77\xf6\xd2\xc0\x51\x5d\x2c\x17\x49\x2a\x6b\xfd\xfa\x2c\xd2\x17\xf5\x8c\xc0\x23\x85\x73\x29\x38\xdf\xf9\x28\xc5\xe6\x8b\x95\x82\x11\x9b\x2f\x36\x37\xc5\x96\x9e\xb3\x83\x25\x6c\xbe\xd3\xfc\x29\xfb\xab\xab\xee\xaf\x00\xab\x75\xc3\xb2\x47\x2d\x02\xf7\xeb\xcf\x82\xad\xdd\xee\xca\x83\xb0\xd1\xb8\x38\xdd\x10\xb6\x07\x9a\x69\xe5\x6d\xc7\x31\xf2\x5e\x4e\x51\x6e\x3d\x63\x73\x27\xdd\xa9\x79\x8e\x45\xde\x85\x91\xbc\x2e\x9e\xd8\x16\xd4\x73\x1c\xab\x24\xcd\x23\xb4\x41\xc3\xb0\x34\x4f\xbf\x61\x58\x11\xfd\x88\xb8\xd0\xf9\xc7\xc1\xca\x3e\x5e\xd0\x65\x5b\x4b\x56\x50\xa9\x4b\x4a\x1d\xdb\x19\xee\xa9\xa2\x3e\xc5\xa5\x54\xf1\x0c\xbd\xd4\x53\x47\xa5\x15\x29\x75\x70\x35\x01\xbe\xe2\x1a\x85\x18\x81\x4b\x5c\x23\xf4\xe0\x84\x23\x97\x13\x17\xcd\xb0\x2a\x0c\xcb\x77\x4a\x14\xef\x13\x72\x87\x56\x32\x5d\x52\x8e\x08\x09\xd1\xaf\x3f\xeb\x34\x17\xfc\xd9\x2a\x92\x8c\x60\x63\x52\xca\x26\xf4\x38\x3f\xf5\x2a\x1c\x5f\xc9\xc0\xdd\xe9\x80\xe5\x8a\xa2\x9f\x01\xbd\x98\xca\xdf\xe3\x9d\x2a\xc5\x5c\x1c\x3e\xbf\x04\x65\x77\x7a\x10\xd9\xa3\x16\xbf\x69\xfa\x62\xf2\x57\x8f\xf0\x0d\x33\xac\x4e\x45\x43\x5d\x6f\xb0\xa5\xa7\x97\x60\x95\x77\x61\x2a\x4e\xda\x5c\x09\x24\x52\x81\x64\x7c\x67\xba\x5e\x2e\x7c\xf2\x1c\x2f\x32\xa9\xf7\xec\x34\xe7\xd9\xc1\x3a\xab\xef\x73\xce\xac\xa8\xbb\x1e\x97\xe1\x71\x00\x1c\x3a\xd8\x6b\x77\x1f\xec\x08\xd0\x16\x3f\xca\x4b\x0b\xfc\xd4\x9d\xcd\xab\x82\x03\xef\x11\xa8\x85\xb1\x88\xe4\x29\xa9\xa6\x99\x9e\xc7\x89\x47\x6c\xfc\x82\x5e\x5e\xc7\x7e\xf0\x56\x23\xa5\x93\x3b\xa2\xdd\x30\xc6\x72\xec\x5d\xcd\xbf\xfd\xd2\x3f\x98\x05\xe6\x7c\xb9\xd3\x7e\x41\x8c\xa0\xe0\x15\xe4\xa0\xb3\xd1\x55\x08\xaa\xaf\x4c\x05\xf5\xcc\x37\x0d\xc7\x1c\x1a\x93\x08\x81\x75\xfc\x45\x38\xe6\xb8\x20\x81\x1a\xa2\xf1\x99\xf0\xf0\x5d\x77\xe2\x07\xbe\xd4\x82\xc0\x48\x30\x3e\xe0\x89\x7d\x54\x9a\x07\xdb\xa0\xe6\x9a\x3a\x46\x30\xbf\xba\xc7\x47\x05\x7b\x54\x28\x34\x17\x6a\xfe\xc3\x5b\xc4\x90\x29\xea\xad\x8c\xeb\x99\xc5\x22\x9f\x6d\x34\x4b\x52\x79\xa5\x4e\x7b\x3e\x98\x3c\xe6\x8d\x6f\x2d\x75\x5a\x9b\x52\xed\xe1\xdf\xd9\xc5\x8d\x83\x8c\xbd\x78\xa0\xae\x85\x67\x2f\x82\xbd\x36\x3f\x2f\xb5\xc7\xdd\x07\x3b\xec\xf0\x16\x9f\x37\xd0\x6a\xfb\xb3\x7b\x7c\xd7\xe3\x77\x64\xac\xe5\xe4\x63\x0f\xb8\x38\x66\x3b\xc3\xc9\x0e\xf8\x6b\x7b\xb2\x03\x48\x30\xe0\xc5\x84\x2f\x5f\xa2\xf5\xe0\x69\x9b\x9d\x56\x65\xeb\x08\x2c\x68\x4f\x62\x94\xfc\xa0\x42\xf9\x7f\xd2\x10\x11\xb9\xb2\xbf\xd0\x9e\x47\x1b\x04\x46\x45\x39\x0d\xc1\xe6\xa1\xff\x78\x06\xd9\x15\x79\x0e\x80\x2a\x7f\xcb\xcf\xcd\xf5\x4c\x7e\x44\xb7\x86\x0d\x7a\xcb\xc9\x91\xec\x01\x8f\x44\x99\x7f\xb1\x4d\x4b\xb3\xad\x1c\xbb\xfd\x98\x73\xdc\xad\x85\xc8\x20\xcd\x34\x84\x2a\x8a\xd5\xd6\xc2\xed\x7d\x61\x3f\x35\x96\x63\x53\x2f\xf8\x2c\xa1\xf5\xd4\x90\x5d\x2c\xda\xa3\x86\xe3\xe6\xd8\xd4\x2b\xff\xd5\x7e\x58\x9d\xca\xb8\x9e\xce\x8f\x3c\x28\x87\x26\x4e\xc2\x37\x8f\x08\xca\xb4\x86\x09\xaa\xd3\x3c\xa0\x6f\xf4\x21\x53\xb1\xc4\x6f\x60\x54\xe9\x6b\x86\xf3\xa4\x03\x40\x5f\x39\x27\xed\xdc\x34\x0a\x11\x55\x85\x9b\x2f\xeb\xaf\x37\x38\x41\x3e\x7f\x18\xdc\x7f\x10\x6c\x80\x61\x4b\x54\xa9\xac\x7b\x9e\xe1\x58\xa8\x64\x87\x8e\x2a\xf5\xf9\x64\x4d\x8d\x87\x87\x4d\x44\x14\x7b\x21\xcd\x7c\x2b\xac\xc8\xae\x67\x52\x2d\xcd\x24\x19\x53\x65\xb9\x0c\xcd\x31\xce\xae\x78\x2e\xc6\xe3\xeb\x2a\x0c\x6f\xc6\x35\xf2\x15\x07\xe6\x12\x36\x29\x3b\x9c\x65\x53\xfb\x31\xfd\x1f\x4d\x3a\xa8\x22\xe9\x96\xa3\x65\x28\x97\x8b\x66\x9e\x34\x81\x78\x24\x51\xef\x9c\x29\x18\x45\xc3\x33\x72\xea\x09\xc9\x64\xca\x95\xc1\xa2\x99\x97\xd6\x72\xb8\x76\x62\x0c\x64\x19\xa9\xa8\x5b\x62\xb7\xdd\xd1\x74\xe7\x74\x03\x54\x65\xbc\xd2\xc5\xe9\x1c\x3b\x39\xe6\xd4\x14\x8c\x1e\xfc\x85\x5d\x7f\xe5\x18\x9b\xe1\x53\x07\x37\x01\x3e\xea\xb2\xbb\x73\xf8\xc6\x1b\x63\x28\xe4\x4d\x49\x9a\xbb\x42\x8a\xc0\x4c\xcf\x46\x42\xdb\x83\x73\x2b\x17\x0c\xd6\xb6\x52\x2c\xd2\x9d\x24\x5e\x47\x89\x47\x17\x86\xa4\xb8\x4c\x64\x48\xca\x25\x74\x34\x46\x9a\xad\xb2\xfa\x3e\x1f\xd8\x5c\x2b\x53\x29\x17\xb8\xf8\x26\x26\xc5\xdf\x7c\xed\xaf\x1e\xd1\xa4\xc4\xcb\x54\xcd\x3b\xbf\x3c\x95\x2d\x80\xb5\x84\x9c\x36\x2e\x8e\x59\xaf\xa5\x28\x9a\xf3\x90\x98\x95\x80\x12\xea\xa9\xb0\xb1\x4b\x06\x24\x30\xe9\x68\xa8\xc1\x6a\x74\xc1\x72\x46\x60\x62\x9f\x88\x5e\x7d\x96\x4d\xbd\x92\x96\x19\x99\xbc\x6d\x79\xa6\x55\x31\x72\x41\x7b\x2f\x68\x1f\x90\x84\x17\x33\x52\xa4\x6f\x19\x7a\xc6\xa5\x47\xdd\xc1\x31\xd4\xe1\xa0\x62\x42\x5d\x78\x7c\xd3\x26\x12\xd1\xef\x11\x39\xf9\xfe\x2b\x1e\x8f\xc5\x1b\x69\xc5\xf5\xec\x92\x20\x3a\x68\x47\x13\xad\x18\xa2\xce\x8f\xd8\xb6\x4b\xaa\x6a\x84\x43\x5e\x87\x04\x30\x04\xa2\xf5\x20\x00\x9c\xf4\xd8\xf9\xc2\x6d\xaf\xe5\x2b\x8e\x63\x58\x9e\x6c\x11\x4f\x01\xbc\x2a\x49\x4c\x5c\x88\x8c\x06\x02\x44\x41\x33\x4b\x5c\x6e\x8b\x5e\xd2\x41\x20\x93\x7c\x39\x3b\x7d\xcc\x36\xdf\x05\xb3\x33\x7c\x85\x63\x5d\x49\xec\x0c\xb5\x4b\xc9\x9d\x21\x16\x3d\x9d\x66\xd8\x45\x85\x29\xa2\x0e\x63\x09\x9f\x98\xc8\x94\x11\x27\x45\x28\x0d\xb8\x60\xad\xc5\x00\x50\xf9\x86\x0c\x41\x0c\x38\x85\x33\x55\x9b\x51\x9e\x9c\xc6\x93\x3d\x95\x83\x24\x50\xe8\xb7\x1c\x18\x1f\xf9\xc2\x11\x3f\x56\xf0\xa4\x2e\x4c\x71\xa2\xa6\x51\x37\x14\xa3\x02\xd4\xc0\x87\xd2\x00\x45\x57\x06\x0c\xba\x1b\x57\x3c\x90\xf1\x31\x15\x91\x81\xb1\x0a\x80\x5c\xbd\x42\xe8\x3a\xcd\x76\xf8\x74\x3c\x41\xee\x24\x71\x53\x4d\x54\x22\x1b\x14\xa9\xf1\x2e\x3b\x26\x28\x02\x10\x89\xf8\x29\xd4\x41\x87\xef\x3a\xcd\x16\x15\xd1\xe6\xc4\x12\xdc\x93\xb2\x2f\x45\x03\x28\x13\xf5\x01\xca\xe8\xa4\xc6\x21\xc4\x0b\x3c\x07\x08\x1b\xbb\xbd\x24\x9a\x18\x52\x20\x15\xc1\x66\x13\xc9\x03\x12\xa9\x9f\xab\x13\xc8\x4c\x23\x75\xf8\xdf\x93\xa8\xc5\xfa\xc6\x3a\x21\x37\xae\x5e\x28\xc0\x1e\xc3\xee\x23\x6f\x4c\x16\xe3\xea\xe4\x72\x30\x15\x84\xd4\x2a\xf2\xb3\x16\x7b\xbd\x70\x0d\x4b\xbc\x58\xb0\x77\x53\x52\xd3\x1d\xac\xbc\x61\x07\x4b\xf2\xdd\x02\x35\xc8\xac\x76\x04\x97\x33\xe9\xb1\x13\x8f\x12\xa9\x8f\x17\x78\x4d\xa9\xef\x15\xe1\xf9\x4c\xb0\x7f\x07\xad\x0a\x44\x8f\xe4\xe1\xed\x19\x0d\x8d\x32\x3a\xbc\xb4\xb7\xe4\x35\x8e\xbb\x4b\xe1\xb7\x01\x2d\x70\xfc\x4f\x1e\x71\x46\x8a\xae\x78\x77\x84\x9c\x30\xda\xbb\x9d\xe6\x1d\x20\x27\x0a\x15\x9f\xad\xa2\xfc\xd6\xc3\xba\x4b\x45\x3f\x7a\x5a\xf8\xf5\xd9\xee\x83\xb9\x60\x65\x2b\xc1\xb7\x93\xe9\x81\x60\x21\x81\x09\x76\xa5\xed\xdd\xa7\xae\xe7\xd8\xd6\xf0\x67\xf8\x22\x80\x7e\x1a\x17\xa7\x5b\x9f\x7e\x4c\xdf\xb3\x9c\xf3\xdf\xda\x0d\xea\x77\xf0\x3a\xc9\x7e\xaa\xab\xf6\xe1\x4f\x27\x3a\x67\xf7\x83\x95\x2d\xbf\xb6\xa4\x74\x0e\x4c\xc5\xfd\xda\x6a\x02\xb8\xd9\x0c\xf7\xc6\x01\xac\xbb\x76\xd8\x7d\xb2\x8e\x16\xe5\x8d\xb6\x3f\xfb\x2e\x38\x58\xf1\xb7\x6b\x62\xe6\xf9\x4e\x8a\xa6\x49\x9d\x40\x9a\x5b\x45\xea\x46\x96\x23\x55\x79\x2b\x86\xca\x2b\xc0\x15\x0a\x15\xc8\x64\x62\xb3\xc9\x96\xe6\x90\x21\xe0\x13\xd6\x83\x25\x92\x12\x45\xf5\x5c\x4c\x07\xc9\xbf\xe6\x85\x1a\x0e\x0b\x50\x19\x47\x6b\x9c\xd8\x38\xca\x20\x88\x1b\x4d\xec\x1e\x3a\xff\x30\x6c\x5c\xab\xf8\x88\x25\x15\xc0\x52\xb2\x9e\x7d\xd1\xbd\x4b\xec\x40\x0f\x60\x82\x18\x28\x15\xd8\xd1\x34\x9d\xdf\x1e\x9e\x41\x12\x05\x7c\xa5\x96\x66\x36\x71\xd2\xd0\xd3\x94\x18\xab\xd2\x46\x0a\x81\xe0\x9d\x87\x15\xe5\xe2\x03\xc8\xde\xb8\x20\xcd\xdb\xfe\x8b\x6d\x32\x05\xab\xef\x83\xbd\xb8\x90\x20\xfc\x9f\xb6\x39\xb3\xa8\x7a\x61\xc0\xdc\x7a\xfc\x7a\x85\x01\x86\x8d\x5d\x9a\xfe\xfa\x7e\xf6\x7f\xcd\xb2\x9d\x1f\xd9\xf4\x94\xdc\x02\xe1\xf9\x4c\xc6\xb3\x6f\x18\x56\xa2\x0a\x3e\x10\xf4\xad\x92\xe9\xf3\xc0\xa2\x7c\x07\x84\x15\x97\x2e\xc8\xe0\xf6\xb1\x5f\x1d\xbf\x38\xdd\x50\x21\xf8\x78\x4f\xab\x6c\xa9\x11\xfb\x38\x34\x94\xc3\x17\xe5\x4c\xec\x5d\x03\x8c\x7a\xd0\xc2\xab\x5f\x8b\x74\x15\x52\xf5\x7e\x50\x60\x69\x10\x7b\xe0\x70\x73\x78\x82\x39\xb5\xdb\x99\xe9\xb4\xcf\xd4\x73\xc9\x4f\xa6\xfa\x00\x82\x87\xb2\x76\x44\x66\xa4\x20\x6f\xf0\x03\x52\x3f\xf2\x57\x4f\x38\xd5\x39\xbb\xe7\x4f\xec\xa3\x72\x81\x26\x0c\x95\xe7\x20\x5a\x70\x72\xab\x5e\xf1\x0a\x62\xf4\x3a\xe8\x34\x5f\xfb\x6b\xc7\x38\xfd\xa0\x78\x8b\x3a\x3e\xe2\x79\x65\x78\xc7\x6b\x2d\xa8\x86\xc7\x42\xb0\x9d\x43\x2f\x01\x36\x4d\x86\x6b\xc2\xc2\x51\xf0\xce\x77\xe7\x88\xf5\x80\x76\xd8\xcc\x81\x3f\x7f\x88\xaa\x1a\xb2\x6a\xb8\x3b\x47\x36\x2f\xd1\xe8\xbf\xfd\xe4\xba\x7b\xf5\xdb\x5f\x5f\x77\xaf\x7c\x96\x45\x8e\x1d\x5b\xc3\xfe\xc1\x54\x90\xb3\x04\xb2\x6e\x80\x14\x49\x6f\xf6\x53\x3e\xb5\x9f\x5d\xfd\xf6\x37\xd7\xdd\x4f\x3f\x86\xbf\x13\xe3\x21\xfe\x96\xcc\x86\x2f\x5d\x59\x37\xaf\x5b\xda\xbf\x3a\x39\xe9\x81\x81\xed\xc5\x66\x76\xf6\xb9\xbf\xb8\x88\x57\x44\xa7\x35\x17\xb4\x5f\x07\x8f\xc7\x2f\x9a\x47\xb1\xbd\x25\x1e\xc8\x5c\x23\xef\x18\x5e\xce\xaf\xad\x86\xd5\xa9\x60\xf3\xb5\xbf\xb0\x8b\xec\x9e\xd4\x1d\xa9\xd5\xbc\x11\xc3\x4a\xbe\xac\x05\x93\xc7\x6c\x69\x81\x2a\x29\x6f\x6a\x89\xaa\xa8\x78\x22\x0d\x31\xbd\xba\xa5\xbc\xb7\x49\xb4\x31\x0d\x9e\x82\x16\x5f\xd8\xf0\xc2\xea\xce\x88\x57\xf3\xd8\x23\x21\xa7\x15\xe9\x88\xe8\x30\x27\x89\x7f\xf4\x26\xef\xdf\x3f\x0a\xf6\xee\xb2\xa5\x05\x76\xf4\x30\x6c\xdc\x17\x7e\x70\x38\x9e\xf1\x94\x35\x23\x45\x7a\xcf\x9a\xa9\xca\xac\xde\x5a\x82\x0a\xf6\x3e\xc9\x92\xe5\xb3\xa4\x86\xfd\x5e\x3f\x5d\xda\x2d\x7d\xdf\x5b\xfb\x57\x44\x6a\xff\xbe\xc3\x09\x46\xae\x1f\x70\x3e\xfd\xc6\x62\xa7\xf9\x2c\xf6\x40\x0a\x76\xa1\x72\x9a\xc1\x71\x74\xfb\xe2\x74\xee\xd3\xc1\xcf\x22\x1f\xb3\xa3\x69\x54\x56\x91\x39\x5c\x7d\x3f\x95\x9a\x7c\xfa\xf1\x60\xf2\xcc\x38\x06\xfa\xe3\x78\x46\x92\x84\xa1\xd0\x82\xac\x46\xff\x29\xe9\x53\x5b\xbc\xcf\xf4\xc1\xd1\x67\x59\xfb\xa3\x8b\xdf\xed\x2a\x2a\x42\x9e\xb6\xd2\xc2\x0e\x89\x08\xc2\xa5\x44\x5c\xc0\xe2\xaa\xf6\x80\xb2\xa5\x05\x69\xe7\xa0\x2a\x86\x82\x83\xd9\xa0\xb5\x07\xd6\xbb\xeb\x9d\xb3\x85\xc4\xc5\x7d\x71\xba\x95\xd6\xc6\x25\xdb\x16\x1a\xee\xe5\x70\x75\xa8\xa0\xc1\xc5\x4a\x5c\x6e\x2f\xf5\xcc\xc8\xc9\xe3\xec\x1c\xc1\xe2\xec\x28\xe7\x0f\x6f\x67\x57\x0a\x5c\xea\xee\x0c\xcf\x1f\x74\x5a\x9b\xfc\x5c\x43\x35\x59\xc7\x7f\x48\x3c\x0f\xda\x48\xfc\xf6\xeb\x7f\x00\x37\x33\xd1\x0a\xe2\x0a\x36\x0f\xd9\xec\x3c\x27\xdd\x07\x4f\xc0\x96\xb1\xdd\x39\xbb\x8f\xf5\xbb\xb7\xce\x58\xe3\x44\x9d\x3d\xd4\xc0\x72\x51\xe0\xfe\xeb\x14\xaf\x26\x44\x6b\xe1\xc3\x36\xd0\x1a\xe4\x01\xe5\x08\xd5\xd1\x25\x47\x4f\xec\x07\x9f\x64\x43\xee\x18\x65\x9e\x12\x3b\x46\x2a\x80\x89\x6f\xdf\x99\x67\xb5\xe3\xcb\xee\x63\xb0\xa2\x8e\x58\x9a\xc5\x67\x9d\xd3\x0d\x34\x6d\x14\x67\x53\x32\x97\xd8\x4d\x64\xcd\xa8\x9b\xea\x52\x26\x79\xcc\xde\x35\x25\x56\x33\xb5\x52\x82\xdf\xec\xad\x9c\x60\x3b\x25\xab\xa9\x1a\xc3\xbe\x8f\xf3\x54\x07\xa2\x6c\xdc\x9e\xa6\xe2\xdc\x27\x97\x61\x50\x73\xd7\x5c\x90\x33\x25\xd5\x63\xd8\x1d\xec\x45\x7c\xb5\x51\x6f\x0e\x4e\xde\x48\xc6\xd0\x31\x2e\x21\x3b\x44\xcc\x0c\x28\x61\x07\x2c\xdb\x82\xfb\x09\x35\x1e\xe1\xf9\x3a\xe9\x88\x60\x07\x26\x9e\x15\xe8\xc9\xc0\x1d\x28\x1a\xfa\x4d\x41\x1a\xf0\x71\x81\x6c\x37\x95\x52\xdc\xd7\x4a\x21\x92\x01\x42\x29\xa6\x93\x98\x7a\xd4\x0d\xdf\x9d\xc3\x47\x4c\x9c\x4e\x54\x5c\xf8\x2b\xc7\x6c\xf3\x51\x0a\x6d\x40\xb5\x32\x36\x46\xed\x90\x89\xa9\x52\x20\xbc\x9d\xc0\x65\x9f\x5a\x01\xc3\xd8\x18\x90\xd2\x55\xf1\x8c\x08\x5d\x85\x4e\xfe\xa2\xce\xa8\xd8\x54\xa3\x66\x34\x23\x85\x95\xc5\x3e\x48\x9d\xbc\xda\x19\xa0\x56\xb4\x59\x22\xe3\x56\x45\xd1\x87\x4a\x6f\x82\x10\x96\x7f\x8a\x66\x85\x1f\xa2\xa3\x66\xe7\x64\xca\x6f\x4e\xf1\x8f\xea\x43\x11\xe8\x4b\x50\x7b\xd0\x69\xae\x64\x85\x08\xcd\x99\xd3\xc5\x06\x5e\x06\x52\x7e\x06\x55\x19\xf9\x10\x24\xfa\x43\x8f\xe4\xaa\x12\x3e\x0e\x21\x6e\x0a\x24\xf0\xaa\xda\x27\x01\x27\x05\x21\x84\xc4\x89\xc5\xde\x57\xf7\xb0\x22\x5d\x17\xdb\x87\xec\x70\x23\x7c\x3a\xae\xaa\x80\xd9\xd2\x1a\xac\xfe\xb7\x7c\xca\xaf\x67\xf0\x2d\x54\xbe\x49\x45\x2f\xf0\x71\xa3\x9e\xe8\x61\x9e\x34\x09\x9d\xd3\x2d\xb6\xb3\x97\x78\x37\xee\x34\xab\x61\xed\x45\xf7\xd6\x59\xf8\xee\x56\xb0\x75\xf0\x33\xf0\x7b\xfc\xb0\xbe\x7d\xc9\x6a\xed\xc4\x04\x06\x77\x5e\x70\x92\xb5\xf6\xb8\xd3\x9a\x8b\x14\x10\xf4\x54\x73\xd3\x74\xcd\x41\xb3\x08\x4f\x21\x8b\x8d\x70\x6f\xdc\xaf\xee\xe1\x47\xfe\x4d\x71\x60\xc4\xe6\x3b\xcd\x56\xf6\x53\xb7\xac\x5b\xd9\x7c\x51\x77\xdd\xdc\x95\x8a\x99\x75\x8c\x42\xd6\x33\xbe\xf3\xae\x7c\x16\xec\x8d\xf3\x73\xbc\x31\xf9\xe9\xc7\x1c\xe6\xb3\x1e\x44\xda\x90\xed\xe4\x8d\x42\x2e\x61\x33\xca\x09\xc1\x69\x8b\xd5\x8e\xd1\x95\x87\x9e\x32\x56\x8f\x58\x5b\x1c\x05\x69\x4f\xf2\x37\x35\x3e\x64\x3b\x37\xc4\x50\x2e\x4e\x6b\xa8\xd1\xe4\x0b\x5b\x3d\x4d\x55\xf7\xab\x21\x17\x2e\x4e\x67\x33\xf9\xa2\x6d\x45\x0b\xd2\x9c\x0f\xb6\x76\xbb\xe3\xf7\x50\x4b\x23\xe4\x28\xf2\xf8\xb9\xdc\xf1\x1f\x6d\x1f\x51\x8f\x83\xb2\x23\x69\x86\xc0\x56\xf9\x06\x3d\xdf\xaa\x01\x1f\xe0\x33\x78\x50\xe0\xe7\x70\xe6\x19\x7e\xeb\x59\x23\xb5\x1a\xb1\xaa\xa8\xb9\x95\xcb\x0a\x7b\x8b\x54\x62\x00\xb5\xb8\x18\x9e\xd3\x96\x2b\xea\xd6\x30\x7d\xc6\xb0\x1e\xf8\x79\xd8\xf4\xcc\x61\xcb\x76\xe4\xe8\xf1\x81\x20\x3b\x20\x0b\xb2\x22\x2a\x88\x99\x37\x2c\xd7\xa0\x17\xb1\xf0\xb0\xc9\x16\x1b\xe2\x63\xb4\x8d\xde\xd2\x03\x83\x02\x84\x0a\xff\x8c\x63\xe8\x05\x7c\x54\x0a\xcf\x8f\x30\x34\x02\x7d\xeb\xa9\xad\xc2\x50\xeb\x7a\xc5\xb3\x35\xd3\x32\x3d\xd2\x43\x75\xab\xb3\xec\x70\x43\x3e\x27\xb0\xbb\x73\x08\x28\x5d\x45\x68\x7a\xc9\x58\x5f\x89\xe6\x41\x05\x05\x63\x48\xaf\x14\xc5\x6b\x6f\x0e\x9d\xfb\xf0\x8d\x97\xa2\x81\x68\x65\xa7\x62\x19\xb9\xce\xf9\x21\x9b\x7d\x16\xfb\x26\x85\x06\x74\x2b\x0f\xcf\xcf\xc2\xe6\x33\x4e\xe7\x4e\xef\x73\xf6\xeb\xc9\x73\x22\x3a\x6b\xc7\xa8\x79\xef\x9c\x6c\xb1\xa5\x39\xff\x80\xb4\x3b\x02\x97\xc9\x45\xc7\x9b\x7a\x91\xc2\x8e\x10\xc8\xf2\xbe\x5f\xdf\xba\x38\xad\xa1\x12\x96\xef\x4e\x02\xd7\x0b\x05\x07\x34\xc9\x08\x4d\x7a\xf9\x58\x99\xa0\x68\x6f\x59\x7d\x5f\x05\xeb\x34\x0f\xd8\xf4\x03\x2e\x92\x9e\x4f\x71\x2a\x26\xde\x00\x50\x30\x97\x8a\x6c\x81\x0d\x74\x4c\xee\x98\x95\x97\x5a\x26\xec\x9b\xbf\x76\xdc\x5d\x7b\xcd\x45\xd9\x51\xdd\xcb\x8f\xf4\xbe\x49\x0f\xeb\xdf\x83\x4f\xc5\xde\x51\xf8\xe6\x11\xff\xc8\x77\xb2\x1b\xdf\xf0\x72\x93\x3a\x26\x78\x08\x2b\xab\x4f\x66\xa9\xca\xde\xe5\xe4\xb7\x5e\x65\x3b\x1b\x9c\x34\xfc\xfd\x27\xbf\x8e\xec\xc2\x7a\xf1\x14\x0d\x6b\xd8\x1b\xc9\xb1\xd9\x1f\x3b\x67\x0f\x10\xc8\xbf\x7f\x44\x2f\xdc\x8e\xa1\xe7\x47\xc8\x60\xdd\x1e\xd2\x60\x5b\x70\x8e\x2d\xf2\xe0\x47\x31\xf8\xdd\x3b\x56\x3b\xc2\x47\x6b\xdc\x2e\xd9\xab\x05\x50\x71\x48\xa3\x03\xb2\x52\xbb\x4d\x3c\x6e\xca\xfb\xb9\x4a\xc8\xff\xc6\x27\xf4\xf8\x5d\x70\xc9\x2b\xba\x65\x18\x05\x4d\xaf\x78\x23\x39\xd4\x44\xab\x26\x24\x19\x8a\x53\x83\xc1\x3e\x30\x58\x0d\x45\xfa\x50\x4b\x7a\xee\x00\x76\x34\x2d\x6d\xe6\xe2\xf4\x98\x13\xe2\xec\x60\xb1\x62\x5c\xf9\x0c\xb7\x97\x20\xc5\x02\x1f\x1a\x6e\x40\x4b\xc2\xdb\x07\x4b\x06\x90\xc4\x8a\x3d\xac\x7a\xc5\xa7\x83\x44\x97\x33\xbe\xc3\x08\x37\x6d\x45\xc5\xf5\xf1\x17\xff\xf0\x4d\x56\xbe\x6a\x09\xa3\xbe\xfe\xd8\x34\xb3\x04\xfe\xfe\xe4\x78\x32\x01\x27\x15\x66\x96\xa4\x7a\xe1\x72\x8c\xa7\x96\xa2\x72\xa0\x78\x2f\x96\x1f\x4f\x3c\xbd\xe2\x82\xb1\x12\x8e\x56\x6d\xb9\x6c\x38\xe0\x4a\x07\xbc\xbd\x65\x1a\x05\x70\x3a\x04\x8d\x2c\xba\x63\xb2\xc6\x29\x9b\xda\x25\xda\x20\x37\x96\x14\x9b\x04\x9e\xc8\x61\x2c\xaf\x17\x93\xde\x62\x4a\x17\xb9\x98\x26\xcc\x52\xfc\xda\xaa\x6a\xf2\x88\x7e\x83\xfc\xfa\x11\x48\xc9\xd4\x48\x84\x2e\x52\x8c\x8c\xe8\xf0\xa3\x87\x3d\xac\xae\x74\xa0\x87\x73\x6c\x14\x92\xf7\x54\xde\x2e\x8f\x69\x45\xd3\xba\x91\x43\x71\x4b\x3e\x98\xd3\xe7\xe8\x71\x13\x8a\x95\x97\x7c\x09\x81\x0a\x06\x2e\x68\xcc\xcd\x76\x9a\x77\xb2\xff\xef\xdc\xfa\x47\x9f\xc3\x1b\xc8\xe7\x9e\x53\xfc\xe8\xf3\x2c\x56\xe5\x35\xf8\x44\xaa\x88\x32\x15\x6b\x14\xcd\x27\x55\x83\x16\xfa\x24\x6c\x5e\x5c\x78\xaa\x06\x00\xb2\x94\x81\x2f\xd2\x6a\xc6\xb9\x41\xe3\xc9\x64\x2c\xba\x3b\xfd\x8d\x09\x3e\xcd\x78\x77\xfe\x6b\xc5\xcc\xdf\xd0\x86\x2b\x66\xc1\xc8\xb1\xf3\xe7\xdd\xea\x16\xc5\xe4\xc2\xed\xe5\x8d\x98\x2e\x5d\x2e\xb8\xa3\x81\x4b\x8e\xdf\x3d\x22\x9a\x94\x96\xb7\x4b\x25\xdd\xe2\x87\x7b\x01\xfd\x54\xc1\x14\x09\xee\x24\xb4\x4f\x55\xe3\x4c\x95\x2b\xee\x08\xca\x51\x88\x5f\xad\x44\x26\xda\xf8\xde\x82\x7e\xc3\xb2\xde\xa0\xee\x18\x5a\x89\x8c\xa5\xc3\xf3\x07\x20\xfc\x1e\x77\x4e\x1f\xb0\x77\x35\x7f\xe6\x2e\x88\xf4\xd5\xce\x49\xad\x7b\xeb\x8c\x1e\x09\x00\x19\x10\x93\x21\xb3\x08\xa2\x36\xdc\xd7\x74\x31\xd2\x95\xe8\x39\x86\x91\xc3\xdd\xe4\x3f\x5e\xe6\x90\x9e\xe1\x08\x53\x29\xdd\x2a\x68\x9e\x3e\x9c\x0b\xcf\x67\xfc\x36\x5d\xa2\x7e\x6d\xd5\x7f\x3c\x13\x1c\xbc\x23\x44\x86\x4b\xa8\xc8\xca\xc6\xd3\x87\xdd\x1c\x42\xd0\x97\xb4\x58\x50\xe5\x4a\xb1\x98\x08\x19\x55\xd4\x07\x8d\xa2\xa8\x4a\x60\x25\xde\x71\xcf\xb6\x40\xdf\x35\x17\xec\xdf\x09\x9e\x2c\x67\xf2\x60\x1c\xee\x0a\x63\xf2\x85\x69\xb6\xf8\x53\x66\xd8\x14\x57\x3e\x58\x5f\x81\x93\x0b\x8e\xd0\x31\x8a\x86\xee\x1a\x6e\x0e\x3d\x78\xd9\xe2\x32\x6b\xde\x82\x29\xd1\x1c\x7d\x34\xc7\x16\xb6\xd8\xde\x1d\x9a\x1b\xf8\x3a\x62\xba\x10\x56\x8c\x38\x10\xc4\x0f\x25\xf8\x94\xa0\x8f\x8a\xf7\x83\x9e\xaa\x9c\x42\xe8\x70\x70\x50\xdc\xa0\x83\x03\x65\x9e\xcd\x99\x35\x67\x58\x9a\xae\x9f\xcf\xb0\x9d\x3d\xd6\x38\x0d\x67\x5e\x23\xdb\x87\x5a\x8a\xcc\x4d\xb3\x60\xd8\x70\x6b\xb8\x95\x32\x27\x6c\x18\x5c\x6d\xd0\xb1\x47\x21\x64\x13\xbe\xda\xbe\x59\x0c\xf7\x6a\x10\x4e\x85\xfc\x9b\x49\x99\xff\xe5\x37\x5f\xfd\xf1\xef\xb3\xfe\xdd\x03\x7f\xe5\x5d\xb8\x37\xdd\x7d\xb2\x0c\x5b\x40\xcc\xcd\x80\x7d\xd3\x70\xc0\x7b\xde\x7f\x3a\xc1\xa6\xdf\x44\x05\xe4\x8c\x26\x27\xd1\x7f\xdd\x0e\xdf\xde\xa2\x49\x94\x50\xae\xa7\x17\x15\xa0\xee\x83\x9a\xbf\xb6\x97\x04\xd2\x8b\x45\x0a\xd2\x93\x2c\x41\x43\x90\x82\x36\x38\x96\x0b\x56\x5e\x66\xe1\xad\x21\x4b\xba\x88\xd6\x42\x16\x1e\x20\x22\x68\x61\xf2\x10\x67\xe9\x38\xf8\xca\x49\x8c\xb1\xcb\x18\x05\xd3\xb3\x9d\x01\x88\xc3\x06\x86\x49\xa8\x56\xc2\xa5\xa1\x42\xb4\x62\xd1\xc8\x22\xed\x76\xe7\xf4\x71\xbc\x9c\xff\x87\xa5\xc1\xe9\x6a\xf8\x6e\x39\x5e\x5a\x76\x0c\x58\x7e\xec\x93\x9b\xeb\x3e\x99\xe4\x0b\xb0\xb8\xee\x6f\xbe\x16\x30\x79\xdd\x02\xeb\x42\x8e\xc8\xb2\x2d\x8d\x5f\xab\x1a\x1d\x3e\x58\x61\x44\xdc\x7d\xf8\x88\xf3\xc0\xf5\x17\x29\xed\x03\xe1\x51\x3b\x71\xb0\x13\x87\x2a\x55\x5c\x4f\x1b\x34\x34\xdb\xd2\x74\x39\x23\xd2\x48\xb2\xbe\xef\x6f\x2d\x71\xd2\x40\x46\x8d\xb7\x29\xae\x41\xe3\x44\x22\xc2\xdb\x8d\x0c\x52\xc8\x6a\x02\x51\x83\x78\x32\x68\x0c\x71\xa9\x81\x7f\x8a\xf0\x22\x29\xf5\x0f\x76\x88\x87\xfb\x00\xa4\x42\x43\x25\xc7\x45\x3c\x74\xea\xb8\x46\xf4\x9b\x86\x36\xea\x98\x9e\xd0\xa9\x2a\x43\xc3\x18\x4c\x8b\x0d\x36\xfd\x00\xaf\xd4\x0f\x1a\x1a\x5a\xeb\x41\x57\x22\x65\x35\xaf\x83\xcc\x57\xf2\x79\x56\xec\x27\xce\xc7\x81\x7b\x26\x76\x7d\xf9\x8c\x2d\xcd\x63\xbd\x81\x81\x01\x15\xb9\x94\xfc\xc9\x07\x8b\xac\xe4\x97\x16\xe8\xfe\xfb\x38\xdb\x5d\x39\x64\xf3\xaf\xb8\xdc\x04\x2f\xdd\xe2\x06\x9f\xf3\x6b\xab\xec\x68\x9a\x4d\xcd\x72\xca\xb7\xd7\x0e\x67\x5e\x91\x25\xd2\xf6\x34\xe7\x49\xdf\x3e\xed\xbc\xdb\x43\x24\xdd\x6a\xd5\x7f\x7c\xda\x5d\x39\x24\xab\x6c\x19\xda\x8a\xfa\x61\x3b\x39\xbf\xb6\xaa\x6c\xc6\xbc\x51\xd4\xc0\xc6\x54\xc4\xdc\x13\x45\x40\x41\xe5\x56\x26\x42\x1a\xdb\xca\x7a\xa1\xa0\x79\xa5\xb2\x30\x4c\xe1\xb3\xf4\xf1\xa7\x44\x11\x97\xe6\x3f\xfb\x95\x02\xa7\x80\xfc\x2a\x3a\x6b\x05\x08\x3c\x09\x27\x3b\x56\x12\xb3\xb5\x8c\x95\x50\xaf\xe8\x8e\xa3\x3b\x5b\x5a\x95\x37\x9f\x61\xa4\x21\xd0\xe8\xfd\xc8\x5e\xde\xc7\x8b\x5c\x59\x06\xaa\x5f\x30\x1d\x23\xef\x15\xc7\x34\xcf\xc6\x5d\x47\x87\x04\x9f\xfd\x70\xac\xe0\x3c\x8a\x0a\x15\xc1\x02\x23\xd4\x47\x7c\x1d\xaf\x80\x57\xa9\xd0\xb7\xe0\x51\x52\xa6\x59\xb9\xfe\x09\x35\x68\xd5\x77\x68\x1a\x95\x8b\x5f\x6a\x72\x54\xc7\x28\x05\xf3\xc9\x31\x5b\x5c\x0e\xdf\xbc\x55\xef\x41\xa5\xa1\xa8\x05\x54\x2c\xe1\x8c\xf4\xf8\x58\xa9\x53\x10\x8b\xb0\x98\xdc\x9e\x44\x9e\x06\x0d\x8c\x0c\x97\x93\xcb\x99\x74\x90\xa2\x8a\x82\x0b\x28\x72\x71\x7e\x4c\x28\x7f\x25\x15\x88\xb4\xc0\x1c\x43\xa4\x77\xec\x99\x30\x5c\x11\xdb\x19\xd3\x4c\x57\xd3\xf1\x28\x21\x87\x2b\xeb\x04\x35\x19\x2c\xef\x00\x3d\x75\x7a\x9b\x89\x94\x02\x68\xd0\xaa\x1e\x6d\x40\xec\x8e\x95\xf0\xee\x55\x0e\x36\x3c\xe1\x01\xc7\xfc\xe2\x29\x5b\x7c\x8b\x17\x32\x3f\x75\xaa\x6b\xe9\x3f\x1b\x83\x59\x24\xb7\xec\xc1\x3e\xfd\x01\xc6\x2b\x89\x66\x60\x16\xa1\x29\x39\xa4\x68\x12\xa5\x44\x28\x7b\xce\xc7\xa2\x74\x9e\x62\xc6\xf5\x76\x9e\xff\x6d\x5a\xc3\x9a\x65\x6b\x45\xdb\x1a\x36\x1c\x39\xd5\x13\xd4\x1b\x39\x74\xa2\x56\xc0\x21\x4a\xd9\xa0\xd3\x5a\x50\xdb\x4c\xa2\xc7\x63\x5e\xd0\x46\x47\x94\xc6\x44\xbf\x61\x98\xfc\xda\x98\xd8\x27\x1f\x0d\xbc\x76\xd6\xc8\x05\x9e\x2d\x2e\x07\x2b\x5b\x6c\x71\x9d\xdd\xde\xff\xb9\x3a\x71\x79\x74\x4c\xc5\x4d\x58\x55\x95\x41\x65\x30\x2a\x7a\xdb\x39\xbb\x87\x4d\x22\xe1\x0b\xab\x53\xf2\x8c\xb0\xe9\x79\xff\xc5\x36\x1e\x22\xc5\xdc\xea\xe9\x74\xb0\xb9\x8a\x66\x6d\x64\xcb\x25\xfa\x12\x1b\xe4\x25\x9b\x54\x1a\x2f\x25\xf6\x29\xce\x80\x7a\xde\x6c\x41\x12\x39\xed\x70\x47\xec\x51\xb2\xb7\x11\x42\x2a\x67\xcf\xb0\x07\xfe\xe6\x6b\xb5\x07\x10\xf5\xcc\xd6\xc8\xcc\x55\x31\x8d\xfe\x58\xc4\x7b\x8d\x16\x0f\x4c\x42\xf8\x58\xa4\x8b\xd9\xd5\x9b\x49\x44\x74\x53\xa9\xf7\x65\x7f\x0c\xff\x2d\x1b\x21\xe0\x64\xdb\xad\x0c\x16\x4c\x87\x48\x27\x3b\x58\xc2\x7d\xa7\x50\x09\x72\x92\x81\x0e\x4b\x96\xc8\x8d\xf1\x44\x9c\x40\xbe\xb7\xb7\x6a\x6d\xe8\xb5\xe9\xa4\x22\xc9\x08\x96\x5d\x90\x68\xc9\x61\xab\x1c\x7c\x1c\xc6\xcd\xf9\x2f\xb6\x91\x8f\x47\x28\x59\x1e\x0b\xde\x91\x8a\x61\xc8\xb4\x0a\x39\x32\xaa\x16\xdf\xf4\x8a\x37\x62\x3b\xb9\xce\x59\x3d\xac\x4e\xc9\xaf\x42\x9e\x62\x3b\x33\x5c\xac\x14\x9f\xf1\xee\x42\x87\xd4\xb5\x5d\xbf\xbe\x25\x4b\x30\x10\x0b\x5f\xdb\xb5\x3d\xbe\x85\xe2\x5d\xb3\x8c\x51\x43\x58\x5a\x47\xa5\x22\xac\x49\x14\x61\x19\x45\x21\xe5\xfb\x40\x4c\xf8\x51\x0b\x38\x4d\xe0\x65\x39\xbf\xfe\x8c\x54\xb0\x3d\x30\xf9\xa2\xa1\x3b\x9a\x40\x01\xef\x33\xdd\xea\x6c\xa7\x79\xd0\x0b\x2a\x05\x2a\x45\x9e\x8a\xb7\x16\x41\xc8\x16\x53\x41\xb1\xd1\x08\x1a\xef\x1c\x6c\x37\xb5\x82\x5d\x36\x2c\x15\x1e\x2c\xc1\x28\x54\x62\x7a\x03\xb6\x6b\x14\xd4\x1a\x6f\x7f\xc2\x07\xf8\x7e\x35\x74\x17\x42\x51\x1b\x39\x7f\x6e\xc6\x7f\xfd\x0e\x5f\x14\x7b\xfb\x2c\xc1\xc8\xc6\xbf\x0f\xb0\x65\x47\x90\x7e\xfd\x59\x1a\x18\x72\x02\xfd\x16\x95\x16\x8e\x28\x40\x72\x29\xb0\x54\x2b\x17\xf5\xbc\x41\xf1\x7d\x48\x6a\x96\x97\x7a\xac\x95\x4b\xb0\x21\x26\x11\xed\xdb\x1d\xa0\x67\xb2\xdb\x8f\xc3\xb3\xb3\xee\x93\x49\xf4\x1c\x00\xf5\x22\xaf\x45\x8a\xf7\x3e\x75\x4d\x6b\xc8\x8e\xa8\x67\x78\xbe\x2e\x83\xcf\xe2\x7b\x2d\xe2\x20\xc7\x2c\x20\x8b\x78\x87\x72\x51\x03\x62\x64\x64\xaf\xa8\x5d\xbc\x92\xed\x55\x84\x50\x37\x6a\xab\xd8\xc3\x4e\xb3\x1a\xb4\x27\x7b\xfb\x09\x8e\xbc\xe9\x9d\x8c\x3d\x69\xfc\x92\x51\x55\x5c\x31\x1f\xbf\x04\x5a\x50\xe1\x48\x5c\xec\xad\xfb\x5e\x8a\x4e\xb8\x61\xd7\x7b\xfa\x60\x0e\xd5\xcd\x72\xd7\xcb\xc5\xe5\xbb\x5c\x05\x10\x9b\x5c\x00\x90\x46\x86\x88\x00\x2a\x47\x0e\x36\xbb\xd5\xd9\x34\x00\xce\x42\xb8\x46\xd1\xc8\x7b\x5c\xe0\x44\xb8\xf8\x5e\x21\xe8\x14\x3a\x90\x8a\x55\xc2\xa5\x61\xee\x39\x84\x54\x29\x71\x0e\x3b\xad\x56\x2a\x6e\xdd\x75\x87\x4d\xcb\x48\x45\x2d\x6b\x26\xea\x60\x54\x04\x54\x0d\xa7\xe1\xe4\xe5\x03\x7a\xb1\xa8\x91\xd2\x89\xb4\x10\xb1\xa3\x19\x03\x75\x29\x7a\xbd\x67\x73\x39\x8f\x7a\x1c\xb4\x1f\xa0\x96\x25\xad\x0a\x1e\xc7\x82\x36\x38\x06\x35\x82\x95\x97\xfc\x28\x08\x6d\x5d\x5a\x8d\x92\x61\x79\xa6\x6d\x71\x16\x0f\xda\x58\x5c\x62\x8b\xb7\x53\x1b\x70\x6d\xc7\xcb\xf9\x0b\x77\x59\x6b\x31\xa5\x64\x00\xb6\xa7\x97\xf3\xeb\x55\x7f\xf5\x08\x9b\x4c\x03\xe3\xd4\x84\xc0\xd6\x7e\xec\x0f\xe6\x18\x79\xc3\xf2\x84\xa4\x86\x26\xc5\x70\x75\xa5\x36\x6d\xe8\xae\x02\xcb\x8e\x2e\x81\x2d\xd9\xae\xc7\xaf\x44\xc3\x82\x4e\xb0\x9d\x8d\xb0\x31\x19\x1e\xa6\x76\x02\xf0\xaa\xc0\x47\xcb\x71\x60\x7e\x80\x22\x85\x91\x62\xaa\x0a\x56\xaa\x64\x6e\xaa\x7f\x96\x95\xea\xa3\xf8\x80\x65\x75\x6d\x48\xbf\x61\x28\x4a\xa7\x3e\xf0\xa0\xe6\xb1\x2b\xc8\x0d\x35\xab\xdd\xed\x37\x11\xcd\xfe\xce\xcb\x75\x9a\x77\xe2\x5f\xf1\x7c\x23\xc1\x4d\x3d\xdb\x05\x51\x9a\x3c\xd8\x56\xa5\xa4\xd1\xc0\x5d\x7e\xf8\xfd\x87\xdb\xf1\x91\x53\xa1\x51\xd0\x74\x2f\xf7\x57\x2c\xe3\xbd\x96\x73\xf0\x77\x9c\xe9\xbe\x0a\xc3\xff\xab\xa8\x24\x7c\xba\xb0\xae\x0c\x35\xab\xda\x3a\x48\x93\x24\xd9\x22\x59\x3c\x88\x8e\xd9\xd2\x90\x1f\xf5\xcc\x9d\x56\x2b\x55\xc9\x1c\xdc\x7f\xd0\x69\xde\x51\xe8\x34\x12\x33\xf8\x91\x8b\x0f\x16\x4b\x44\xaf\x10\x82\xda\x3e\x39\x8e\x83\x3a\x06\xcc\x29\xc2\x50\x3c\x25\xb4\x1a\x8f\x03\xf4\x41\x96\x56\x83\x6e\x50\xb1\xcd\x12\xd3\x8c\xab\xc4\xe7\x98\x66\xd7\x2c\x90\x29\xf4\x15\x39\xd1\xf0\xeb\x33\xd8\x39\x68\x10\x0e\x5d\xfe\x6b\xbc\x4b\x1f\x8c\x45\xed\xeb\x5f\xd5\x65\x37\x3d\xcd\x31\x86\x00\x1b\x97\xef\x14\x36\xf8\x17\x62\xe6\xa2\x27\x3c\x5a\x77\x5a\xd3\x61\x63\x17\x09\xa0\x6c\xa2\x6c\x43\x1e\x11\x54\x85\x73\x7e\x58\x36\x2d\x62\xfd\xd9\x4e\x0e\x0d\x87\x94\x52\x32\x84\x11\x81\x0b\xc4\x67\x11\x64\x55\xc4\x5c\x01\x2d\x45\xcc\xd1\x05\x8d\x27\x71\xde\x4e\x8e\x29\x78\x60\xed\x88\x35\x4e\xc2\xc6\x43\x12\x58\x09\x19\xa8\x1d\x51\x04\x95\x9d\x8a\xe9\x34\x44\xa3\xfa\x4d\x23\x87\xd6\xb4\x89\x5b\x1c\xc3\x20\x2b\x9c\x54\xbc\x3c\x6f\x17\x6d\xc1\x69\x75\x9f\xd4\xc3\xd9\x9f\x92\xe5\x15\xcb\xa3\xbb\x38\x8d\xcb\x8a\xf6\xa6\x1b\xbb\xd2\xb9\x58\x18\xbb\x65\x10\x3c\x65\x3c\x58\x10\x53\x83\xc5\x8b\x28\xc6\x10\xa9\x31\x53\xfa\x90\x30\x4b\x24\xb6\x04\xf5\x9d\xa9\x80\x09\x53\x44\x9a\x9d\x1e\x0f\x38\x1c\x00\x67\xc9\x2f\x75\x85\x53\x48\x45\xa2\x19\xa9\x59\xa5\xe7\x9f\xb8\x4e\x55\xa1\x7b\x65\xdd\xf1\xcc\xbc\x59\xd6\x89\xf6\xb1\xa5\x79\xdc\x16\xca\xbe\xd2\x3d\x4f\xcf\x8f\xf0\x03\x1b\x31\x51\xfc\x34\xa8\x4c\x64\x77\xfb\x0d\x17\x73\x40\xcd\x00\xbc\xd8\x5f\x53\x6a\x17\xec\x51\x8b\xb3\x72\xb9\xbf\x06\x13\x27\x18\xce\x2d\x3c\x3b\x23\x70\x7c\x89\x52\x65\x33\xf5\x4d\x0a\x0b\xf3\x76\xa9\xac\x3b\x86\xd4\x97\xb2\xc6\x89\xdf\x58\x21\x05\xca\xe2\x3a\x9b\x5b\x4d\x07\xa4\x69\x07\xe8\x4e\x73\x47\xaa\xe5\xbb\x6b\xaf\x23\x5d\x16\xd4\x97\x9a\x40\xd2\x74\x26\xf4\x81\x71\xec\x83\x3a\xe7\x66\xb7\x5a\x6c\x66\x9a\x9e\x3f\x12\xad\xe3\xff\xd4\x70\x0c\x24\xf6\xbc\x17\x7b\xd6\x13\xf3\x60\x6b\x8e\xe1\x56\x8a\x5c\xfe\xae\x3f\xf3\x67\xdf\xb1\xda\x51\xd0\xbe\xe7\x3f\xaa\x4b\x00\x6f\x84\x33\x32\x9e\x1d\xb5\x83\x5d\xb9\x3b\xa7\x36\x28\xe3\xcc\x05\x6d\x32\x80\x41\xa5\x5b\xb7\x4e\xcf\xeb\x08\x1c\x8d\x4e\x20\x2e\x19\xce\x30\x8d\x31\x58\x79\xd9\x69\x2d\xa8\x33\xc7\x96\x26\xc3\x99\x67\xd2\x3a\x99\x4d\x81\x07\xcc\xd2\x9c\x14\xb6\x51\x13\x80\x66\xc0\x18\xa5\xd5\x7f\x75\x1f\x1b\xf4\x1b\x2b\xe1\xbb\x5b\x51\x83\x23\xba\xab\xa9\x19\x6c\x72\x7f\x55\x75\x45\x6a\x6c\x08\x7e\xb6\x95\x15\xb9\x38\xdd\x88\x7b\xcc\x7c\x0c\x08\x3f\xe6\xbc\x48\x81\x88\xf0\xdf\xc1\x0f\xbc\x99\x69\x75\x62\xb2\x62\xef\x26\x03\xc2\x25\xed\x7c\xfc\x97\x13\xec\x68\x1a\x18\x94\x42\x36\xa1\x09\xe9\xb4\x17\xa4\xb3\xcd\xaf\xa5\xb3\x4d\x96\x70\xce\xbc\x4a\xf1\xc4\xa1\x36\x60\x6e\x89\x21\x21\x7b\x32\xe0\x82\xfe\xcb\x75\x37\xfb\x81\xcd\x5d\xd6\x5a\x56\x0c\x49\x1f\xe4\x9c\xc4\x4d\xc3\x71\xd1\x28\x07\x29\x3e\xf9\x05\xaa\x30\xa8\xf1\x89\xa9\x7b\xa2\x62\xf5\xf5\x1a\x95\x7f\x54\x48\x8c\x80\x67\xe3\xa6\xc9\xa1\xaf\x8c\xbc\x51\xd5\x49\xf6\x1f\xee\xa2\x63\x2b\x7e\x54\x1c\x92\x95\x89\x01\x1e\x0d\xca\x95\x2d\x42\x45\xfc\x12\x55\xf0\xa9\x66\xb7\xf8\x9d\x53\x38\xac\x55\xd0\x3d\x5d\x1b\x74\xc0\xb6\x3c\x51\x8d\xef\x53\x08\x15\x8d\x5b\x5b\xb5\x9f\x02\x05\x31\x27\xbb\x48\x73\xa5\xb1\x59\x58\x9d\x0b\x9f\x3c\x0f\x1e\xbf\x66\x0f\x17\xa3\x0e\x9b\xae\x96\x1f\x31\xf2\x37\x4c\x6b\x38\xd9\x06\x66\x40\xa2\x43\x36\xfd\x53\xf0\x6c\x1c\xbd\x7d\xc9\x01\x68\x7f\x9e\x72\x16\xd5\xde\xfa\xab\x47\x51\xe8\x72\xda\xa5\xba\xa5\x81\x49\x1e\x1e\x43\x69\xab\xa3\x0e\x1d\xa4\x7e\xb2\x91\x81\x58\xe4\xe9\x73\x4a\xaf\x0d\xef\xc3\x86\x9a\x59\xe8\xa7\x54\xcb\xff\x2d\xc8\x23\x6b\x33\x7f\xf6\x0e\xbb\xbd\xef\xdf\x99\x65\x8b\xab\x44\x86\x40\x61\xcb\x7b\xbd\xf7\x03\x9b\x7e\x85\xad\x29\xc8\x90\x3d\x44\x3c\xb8\x19\x73\xbd\x6a\x0b\xea\x88\xba\x3b\x1d\x83\xd3\x29\xf1\x64\xca\xeb\x43\xa0\x16\x00\x64\xb3\xf3\x6c\xaa\x46\x23\xd9\x9e\x67\x4b\xb5\x88\x4c\xc3\x33\x55\x64\xe1\x46\xaa\xc6\xb0\xf1\xda\x5f\x5f\x50\x77\x64\x9c\x3e\xa5\x10\x0d\xd8\xff\x15\x8b\xce\x35\x40\x93\x02\xfc\xaf\xb8\xc3\x54\x92\x86\x99\x33\xd0\x58\x3f\x32\x87\x07\xa4\xb8\xe7\xc0\xfc\xe8\x59\x9c\xd4\xd5\xfe\xee\x6a\xe1\xe2\x74\x16\x15\x3e\x64\xa6\x00\xb1\x76\xd4\x93\x26\x57\x47\x10\x3b\x92\x42\xa4\xa9\x09\x98\x74\xab\xf7\x4c\x0c\x00\xc2\x0f\x59\xc6\xa8\x24\x04\x7c\x8f\x20\xbd\xaf\xef\xab\xc7\x96\xef\xdc\xc5\x1a\x1a\xb6\x74\x5a\xd3\xaa\x96\x35\xb1\x77\x54\xeb\x70\xb0\x7f\x88\x2c\x49\xe0\xae\x27\xef\x75\xa9\xc0\x50\x8a\x55\x8d\x4d\x24\xd2\x29\x00\x31\x95\x4d\x24\xd6\x25\x21\x0a\x48\x5c\xdd\xde\x62\xcb\xd6\x0a\x15\x43\x43\x59\x1a\x8d\x92\x6a\xcf\xfc\x83\x27\xa4\x6b\x4e\xf4\x45\xf8\xcc\x26\xf1\xe7\x52\x10\x1b\xa3\x9a\x5b\x19\x1c\x31\x74\x08\x17\x0e\x5b\x58\x8e\xd1\x7f\xb8\xeb\x6f\xbe\x66\xbb\x67\xac\x7e\x44\x21\x92\xd0\x88\x1f\xb8\x3e\xb4\x4f\x8b\x5a\x50\x6f\xab\xd4\x69\x92\x8c\x76\xf7\xc9\xba\xfa\x1d\x1f\x29\xd1\xc8\x4a\xfd\x2c\x07\xac\x0c\xf5\xe2\xb4\x86\x8f\xba\x68\x0d\xab\x8c\xcf\xd0\x1d\xd2\x64\xab\xdf\x65\xe4\x7d\x42\xa6\x0d\xd9\x4e\x49\xf7\x62\x38\xa5\x19\xa5\x50\xc6\xcd\x91\x09\xc3\x7a\x23\xfb\xab\xb1\xb1\xb1\xb1\x8f\x4a\xa5\x8f\x0a\x05\x7c\xa9\x3c\x7b\x22\xf2\xba\x24\x87\x1e\xc5\x77\x10\x83\x17\x86\x02\xa0\xdc\x94\x4c\xad\x52\x51\xe1\xf5\x53\x67\x0c\xec\x3b\xa2\xe5\x21\xdb\xc4\xcd\xd7\xec\xf6\x63\xbf\x39\xe5\x3f\xc0\xcd\xcc\x27\x8e\xdf\x56\x60\x8d\xd6\x69\xb5\x3a\xed\x17\xd1\xb2\x2d\x4d\x87\x7b\x3f\x44\x1a\xbb\x8d\xc9\xce\x59\x9d\xbc\x74\xd4\x11\xc4\x24\x26\xa5\x20\x26\x59\x5c\xd6\xc7\xd4\xa1\x83\x3c\x00\x86\xe9\xf8\x68\x08\xa4\x25\x58\xd9\x02\x47\xd5\xf1\xf8\x1e\x88\x09\x28\xd1\x16\xa4\x20\xaa\xbd\x90\xc9\x48\x1d\xa2\xc6\xff\x90\x90\x92\xd6\x4e\xcf\xd8\x92\x52\x4a\x66\xd4\xbc\x61\xe6\xfe\xd9\xbc\x61\xc2\x5f\x03\xa3\x46\x31\x6f\x97\x8c\x58\xc0\xd8\x2c\x2f\xe6\xc0\x2a\x04\x0e\x81\x97\x64\xfd\xf5\x06\x46\x43\x61\x53\x2f\xd9\xd2\x1c\x4a\xd2\x68\xf6\xae\xba\xaa\x45\xab\x0e\x45\x94\x01\x0b\x16\x9e\x4d\x1d\x77\xda\xab\xe4\x18\x32\xb5\xcb\xa5\xf8\xbd\x1f\x28\xd0\xd4\xf6\x49\xb0\x09\xc1\xfd\xa0\x75\xda\xae\x43\xa6\xe3\x7a\x1a\x64\xff\x24\x5d\xa4\x48\x1c\x42\xe9\x14\x01\x58\xcd\x0e\x0a\x1f\x48\x20\x28\xa3\x51\x21\x17\x07\xd4\x52\x8c\x92\x23\x51\x12\xd1\x54\x00\x84\x65\x56\xdc\x74\x83\x53\x26\x7c\x93\xe6\xac\x24\x46\xa2\xda\x98\xc4\xeb\x4d\x3d\xf2\x72\x0c\x90\x44\x02\x1a\x42\x91\x5e\x6d\x02\x6c\xd6\x09\x3f\x3c\x4e\x5c\x25\xdd\x9d\x08\x06\xcd\x2f\x82\x83\x58\xb7\x61\x13\x73\x74\xda\x60\xc5\xf3\x6c\x8b\x36\x7c\x7c\x4c\xa2\x2c\x6d\x50\xe8\x04\xa5\x00\xd1\x3e\xee\x03\x64\xd9\x9e\x99\x37\xb4\x4f\x72\x7c\xc4\x22\x16\x95\x5a\x85\x78\xe4\x2b\x57\xdd\x2b\xc4\x22\x53\x12\x92\xe6\xac\x5f\x7d\x18\x56\xe7\xd8\xd2\x42\xb8\x3d\x27\xe7\x03\xb0\x26\x5e\xb4\x13\x4e\x76\xb0\x05\xb3\x88\x5e\xbd\xe4\x63\x38\x84\xfe\xbb\x67\x3e\xc9\x0c\x2f\x87\xf1\x1c\x15\xfb\x3b\x37\x13\x65\x0e\xa5\x27\xa0\x78\x3e\xd1\x01\x4c\xff\xe5\xe6\x62\x39\x01\x65\xa9\x92\x2d\xc2\x16\xae\xb0\x91\x22\x29\x1d\x6c\x00\xb2\x7b\x88\xdc\xa7\x60\xda\xd5\x0f\x12\x4c\xc3\x72\xaa\x11\x58\x3f\x48\x3e\x77\x39\xb6\xf8\x2c\x6c\xb4\x2f\x07\xac\x58\x05\x63\xc8\xb4\x60\x32\x28\xc8\x56\x04\x2a\xed\x1c\x69\x24\xc8\xc2\xf4\x14\x6b\x83\x5c\x0e\x96\x0c\x12\x6b\x9c\x04\x3f\xb6\xc4\x0b\x1a\xb2\x23\x20\x47\x02\x12\x8a\xc8\x33\x25\xf8\x18\x48\x1c\x47\x24\xb5\x46\x66\xe3\x10\x9b\x57\xb4\x72\x99\x47\x4b\x1f\x20\xa4\x45\x2a\x24\x7a\x2a\x20\x55\x52\xe5\xac\x9f\xab\xe3\x31\x76\xfc\xee\x1c\x17\x7e\x5b\xe7\xd2\xee\x44\x55\x34\xc4\xba\x15\x33\xf1\x4a\x7e\x4e\xd8\x6c\x6a\x15\x4b\xda\xb2\xe6\x94\x4c\x80\xb7\xf9\x4e\xfe\xc2\xf4\x28\xbb\x4e\x64\xcb\x8a\x37\x94\xd2\xff\x94\xa6\x93\x6d\x48\xf7\x57\xcc\x06\xa9\x0e\x3e\x11\x56\x4c\x22\x2a\x3b\xb6\x67\xe4\xe1\x35\x47\xda\x0e\x9f\x3f\xf4\x6f\xf7\x4c\x6f\x2f\x20\xc9\xcf\x0a\x74\xa7\x39\xcf\xa5\x36\xf0\x87\x13\xc6\xd7\xe3\xfe\xe4\x22\xdb\x11\x01\x2b\xef\xce\x61\x82\x2a\x75\x01\x82\x07\x67\x6c\x69\x9e\x38\xb0\x68\x8f\x62\x80\x37\x69\xe1\x49\x39\x6a\x50\x3b\x04\xad\x0d\x0c\x0c\x24\x37\xa2\x46\xbd\xc4\x9b\x17\xba\x04\xdd\xbb\x04\x4e\x2a\x1c\xb0\x01\x74\xfa\x05\x05\xb6\x4c\xad\x20\x75\x20\x88\x0c\xb3\x46\xc7\x3a\x4b\xe8\x62\xd6\x76\x18\xe1\x21\xbd\x17\x29\xf0\xc2\x41\x76\xdc\x3f\x78\xa2\xce\x20\xdf\x8f\x8a\xf4\x90\xda\xac\x50\x3c\xc7\x84\x25\x74\x48\xc4\xb7\xe9\x98\x74\x4c\x3a\x8d\x1f\x20\x93\xce\x2f\x41\x45\xac\x09\x8c\x87\xb3\x26\x30\x7e\xb6\x44\xa7\x88\x33\x28\x60\x3d\x47\x51\x45\x9e\x3c\xa7\x8e\xd7\x8e\xfc\x03\xea\x35\xe6\xc4\x43\x1f\x47\x75\xe9\xbb\xb7\xce\x90\x37\xa5\x6e\x2e\x3e\xa5\x1b\xfb\xe1\x23\x75\x5f\xf5\xda\x08\x12\x51\x81\x2f\xa9\x53\x32\x3a\x62\x7a\x46\xd1\x94\x37\xa7\x67\x38\x6e\x0e\xf7\x1e\xd9\x32\x21\xed\x81\xce\x48\xe7\xeb\x5f\x86\x47\x35\xcc\xa4\x80\xcb\xb5\x55\x0a\x0d\x5d\x3b\x62\x8b\x0d\x32\xb4\x8c\xb7\x20\xb7\x39\x67\xc8\x6b\x6b\x6c\x6a\x57\x7e\xa1\x44\x67\x32\xbf\xd9\xdb\x57\xc9\x35\x03\xfd\xc5\x7b\x06\x8a\x59\x7f\xd0\xed\xa7\x77\x09\x64\x03\x97\xa1\x40\xcb\x22\xc2\x84\xf6\x45\xef\xaf\xe4\x19\x7a\x49\xb4\xcb\xa6\x8e\x29\xb8\x71\x5a\x07\x70\x8e\x7e\x41\x07\x10\x25\x76\x20\x59\x29\x0a\xb2\x09\x75\x13\xa4\x4f\x6d\x4e\x3d\xae\x7d\x09\xe0\x88\x6d\xdf\x90\x81\xd9\xfe\xd9\x18\xcc\x76\xef\xfe\xc8\x0e\x94\xcb\x72\xd8\xf4\x62\x30\x9c\x58\x27\x61\x06\x75\xd7\xcc\x2b\x79\xc8\x53\x39\x03\xf2\x42\x92\x50\xe4\x89\x94\x80\x72\xc7\xac\xbc\xc8\xb3\x4e\x01\x1f\x40\x79\xdc\x8b\x87\x03\x9a\x16\x9f\x88\x61\xd5\x7b\x12\xa0\x55\x1d\x9d\x10\x50\x14\xe5\x57\x42\xf3\x15\x35\xde\x93\x4d\x3f\x39\xed\xb2\xf7\x38\xa1\x3d\xdc\x0f\xfa\x2b\x38\x46\xd9\xfe\xa0\x10\xa5\xd2\x43\x2f\x19\xa2\x54\x62\xd6\x0b\x37\xb9\x50\x57\x50\xe6\xef\xf9\x7a\xd0\xda\x4b\xf6\x80\xb3\x78\x2a\xc1\x42\x36\x11\x93\xe9\x28\xa3\x71\x0d\x74\x52\xb5\xf4\xa2\x06\xf2\x4e\x2c\xcd\x6f\x6a\x1d\xf0\x60\xd4\x28\x28\xae\xd2\xcc\xd9\x3d\xe9\x60\x8e\x8e\xdc\x14\x55\x07\x3d\x1b\x11\x95\x88\x27\x87\x9e\xd6\xf1\x7e\x18\xdf\xa5\xf4\x03\x32\xef\x43\xe5\x08\x38\x06\x88\x79\x7b\x23\xb0\x6c\x72\xc2\x7a\xa0\x23\xdf\x5e\xe8\x44\x58\x9d\x42\x73\x55\x56\x9b\xee\x6e\xbf\xa1\x37\x34\xec\xba\x88\xde\xdb\x9d\x99\x67\x87\x1b\x6c\x69\x99\xd5\x8e\x38\xe5\x97\x09\x7d\x65\x2b\xf8\xd8\xa4\x4e\xb8\xea\xe5\x74\xe9\xb4\x43\x55\xcd\x73\xf4\xfc\x8d\x44\x9a\x65\x2e\x2b\x9d\xb5\xbb\x33\x8b\x41\x6b\xef\x32\x74\xb1\x15\x89\xf5\xe4\xd2\x35\x21\x94\xbf\x68\x4d\x52\x3b\x09\xb3\x2e\x15\x47\xe9\x7d\x93\x18\xa8\xae\xb2\x5e\xbd\xd5\x20\xf3\xf2\xa5\x55\xff\x53\x16\x4f\xc5\x4f\x8a\xa4\x7e\x3d\x24\x37\xd4\x2c\x6a\x96\x7a\x51\xe0\x3c\xb9\xde\x58\xd1\xe8\x8b\x03\x9d\x47\xba\x3f\x2c\xf8\x8f\x4f\x2f\x4e\x37\x2e\x45\x32\x60\x55\x4a\x86\x63\xe6\x73\x41\x8b\xb2\x79\xa0\xaa\xea\xf2\x4a\x90\x33\x44\xd4\x54\x93\x83\x20\x8a\xa0\x0d\x3a\xec\x3e\x88\xa2\x59\x48\x8d\x3d\x44\x22\xec\xbf\xf1\xcb\xf1\xdf\xb3\xff\xc6\x49\xdc\xbf\x67\xff\xcd\xb4\x0a\xc6\x77\xff\x2e\x5f\xa0\x6a\xd3\xac\xf6\x1c\x1d\x6b\x95\xd0\xd3\xe3\xd2\xe9\x99\x73\x73\x38\x2f\xaf\x9f\xb0\x53\xd8\x83\xf3\x8f\x3b\x67\xf3\x94\x0e\x24\xba\x19\x2b\xc5\x62\xfc\x54\x29\xdc\x00\x70\x2f\xbb\x6c\x71\x8d\x32\x41\x43\x84\x59\x22\x9f\xb5\x55\x79\xfd\x85\xaf\xb7\x83\xb9\xc3\x04\xce\x01\x8a\x89\x00\x57\xae\x5b\xd6\xf3\x46\x8e\x9d\x9f\x05\xf7\x77\x83\x1f\x5b\xc1\x83\x33\xf4\x11\xe0\xfc\x10\xb8\x98\x25\x2b\xe3\x81\x23\xa5\x3f\x3e\x39\xd1\x91\xaa\xef\xab\xaf\x03\xfe\xda\x31\x05\x6c\x42\xbd\x7f\x24\xa4\xe9\x60\xdd\xff\x3d\x58\xb3\xce\xbf\xec\x3e\xf8\x91\xee\x85\xb9\x96\x72\x89\xe0\xd3\x06\x38\x63\x79\xb6\xe6\xf2\x8b\x84\x4c\x2f\x20\xe0\x5f\x78\xeb\x4c\x7d\x37\x02\xb7\xf6\x63\x8a\xba\x28\xa2\xdd\x84\xd5\xa9\xd8\x84\x5a\xc6\x28\x25\xa5\x18\xd1\x5d\x44\x89\x11\x2b\x14\xcf\x54\x19\xe1\x24\x6e\x32\x3f\xc7\x96\xe6\x45\x40\x8d\x71\x55\x88\xb6\x6e\x1a\x8e\x97\x0b\xcf\x5e\xf8\xf3\x4f\x3a\xcd\x96\xff\xe0\xb0\x5b\xdd\x10\xa9\x25\x13\x60\x89\x2d\xc5\xb9\xbc\xc6\x2e\xde\xd8\x24\x26\xa7\xa1\x01\xff\xe7\x15\xa9\x54\xc1\x78\x32\xdd\xea\x74\x5c\x52\xa2\x16\x50\x09\xe3\x6a\x9f\xe4\x3e\xca\xca\x0b\x97\xdf\xb6\x1f\xd4\xd6\x2f\x68\x48\x98\x54\x51\x88\x5c\x40\xd6\x0b\x85\xf1\xad\x0a\xe9\xf3\x83\x06\x8c\x29\xec\x98\xe7\xe8\x96\x3b\x64\x38\x39\x4c\x75\x20\xbc\xed\x20\xb4\xc9\xc3\x5b\xbd\x70\xbd\xf3\x2a\x87\x88\xae\x64\xfe\xc4\x3e\xae\x6b\x22\x53\x70\x14\xe9\xab\xb6\x1a\x25\x6b\xe8\xc5\xaf\xce\x6a\x14\x5f\x37\xde\x4c\xd0\x26\x23\x31\x91\x83\x76\x8e\x60\x4e\x37\x3a\xcd\x27\x6c\xe7\x65\x32\x7c\x58\xff\x66\x7e\x7d\x79\x33\x7c\x34\xeb\x8d\x28\x75\x8a\xc8\x32\x2a\x63\xbf\xa9\x2d\x89\xe0\xf1\x0f\x83\xfb\x0f\xd2\x5b\xe5\xe4\x8e\x0c\x86\x94\x20\x15\x10\x50\x12\x54\xca\x9d\xf6\x2e\x25\x03\x53\x90\xff\xb7\x1e\x66\x0b\x0c\x79\xf0\xb1\x02\x79\x11\x7c\xe2\x4d\x85\xa3\x05\xeb\x01\x4e\x6c\xbc\xf0\xec\x45\x5f\x0d\x61\x2a\x5a\x75\x9d\x54\x2d\x64\xe7\x74\x03\x1b\x63\x27\xc7\x22\x69\x3b\x9f\xd2\xec\x55\x37\x2b\xb4\x88\x69\x18\x55\x55\x39\xd5\x50\x7b\x8b\x31\xa0\x7a\xf7\x6f\xcc\xaa\xc9\xaf\xbf\x48\x92\x03\x75\x12\x44\xd8\x35\xd8\xe2\x7f\xc3\xf0\x2f\x1b\x79\x22\x06\x55\xa7\xbd\xab\x78\x14\x3d\x79\xce\x36\x1f\xf9\xed\x8d\xcb\xb0\xfd\x3a\x31\x8f\xe8\xce\x1d\x05\x73\x13\x34\x83\xcd\x4d\xf9\x77\x5e\x80\x54\x84\x53\xf3\x73\x75\x5c\x3c\xa8\x8d\x93\x4d\xe2\xdd\x39\xa9\x01\x4d\x89\xa5\xd7\xaf\x07\x40\xff\xe1\xd8\x51\xa4\x6a\x7c\x06\x5d\x90\x9a\x04\xf5\x12\xc0\x1c\xfb\x92\xd6\x04\x77\x5e\x04\xcf\xef\x48\xca\xde\xdb\x4c\xef\xf2\x26\x9f\x41\xfa\x49\x3e\x89\x6a\xe9\x61\xfb\x7b\x8f\x1a\x5d\x60\xab\x47\x51\x1c\xad\x48\xa2\xd3\x6f\x00\x8f\x89\x94\x4f\x92\xd5\x28\xd4\x48\x2f\x3a\x41\x5d\x13\x04\x52\x24\x88\xe9\xe9\x47\x3c\xe2\x58\x2c\xd2\x58\xb2\x0d\xbd\x50\xd0\xe2\x76\x90\x10\xa2\x99\x6c\x00\x7a\x55\xd9\x49\xf8\x48\x16\x87\x6e\xa8\xa1\xdf\x65\xed\x94\x33\x93\x68\x13\xcd\x02\x53\x54\xd6\xb6\x93\x34\xff\xbb\x54\xbd\xae\x80\x13\xe9\x39\xd8\x91\x69\x02\xa8\xfe\xd2\x02\x2a\xb1\xd8\xf4\x3c\xdd\x15\x32\x12\x21\x3e\x5c\xa5\x85\x1e\x84\x2c\xbc\xa2\x3d\xc7\x28\xd9\x37\x8d\xf4\x69\x50\x53\x4e\xc9\xae\xca\xd8\xb4\x18\xee\x0e\x5b\x88\xcd\x8a\xa2\x8b\x89\xfb\xc8\x28\x6a\x99\x98\x0a\x14\x92\x9c\x45\x91\x76\x38\xeb\x34\x98\x98\x55\xca\x3a\x24\xc2\xee\xf0\xe6\xc9\xbd\x38\x16\xb8\x2f\xb9\x40\x7c\x85\x47\x8d\xc1\x11\xdb\xbe\x21\x5c\x9d\xd3\x34\x25\xa0\x26\xa1\x47\x40\x59\x4c\xfa\xa8\x89\xfd\xf0\xf0\x1d\x17\x47\xea\xfb\x94\xc7\xb4\x79\x1b\x5d\x46\xfc\xb9\x19\x76\xb8\xd1\x69\xdd\xe9\xb4\x8f\xfd\xb5\x63\xd6\x38\xc1\x2f\x98\xc4\x11\x42\xf9\x67\xbf\xfe\xc7\x6b\xdf\x64\x65\x5e\x18\xb2\x76\xbc\xd4\x13\xf3\x9f\xb1\xbb\x6e\x16\x5f\x16\xc1\xf4\x16\x73\x93\x50\x7a\x6f\x19\x19\x2a\xa2\xfd\x58\xa5\x27\xae\x7a\xda\x50\x93\xb0\xc9\xd0\xea\xca\xf8\x51\xe3\x41\xe1\x33\x17\x30\x49\x96\xfa\x6c\xcb\xee\x8a\xa8\x27\x60\xb9\x77\xd9\x2e\xeb\x69\x55\x6c\x31\xa5\xb9\x7e\x54\x8c\xea\x0e\x78\xa8\xd0\x2d\x9a\x90\x93\xd5\x7f\x73\x27\x6c\xdc\xc7\xf6\xdf\x03\x4b\x0a\x6a\x88\x4d\xca\x19\x7d\xf9\x76\xd3\x7c\xe6\xef\x6f\xfb\x77\x40\x44\xfc\xba\xe2\x8e\x64\x71\x2d\xdf\x87\x4e\x52\x09\xa5\x0b\xc4\x78\x43\x46\x29\x56\x3b\x02\x85\xea\x1a\x65\x6c\xae\x2e\xb1\xf3\x5b\xb1\xe8\xcd\xc2\x84\x0b\xeb\x86\x87\x47\x14\x0c\xa0\xa7\x61\xc7\x90\x03\x46\xa3\x9d\x7e\x03\x8e\x00\x15\x2a\xdf\x66\xb7\xb7\x55\xaf\x63\x14\xad\xfd\xd5\x23\xd9\x4f\x44\xf7\x1f\xd7\x5b\x52\xe0\xa3\x0e\x0f\x6d\x05\x53\xa0\xdc\xb2\x6d\xb9\x46\x8e\xdd\x9b\x67\xad\x95\x7e\x60\x68\x6a\xe1\xe6\xd8\xce\x6b\x4a\x52\xd4\x03\x52\xc6\x0c\xa9\x22\x3d\x6a\x1f\x44\x83\x76\x61\x8c\xda\xea\x9c\xdd\xeb\x55\x8f\xe2\xf6\x88\x94\xa3\x60\x01\xf0\x12\xf9\x82\xfa\x8b\xb0\xf5\x9c\x4b\x86\xef\x36\x21\xca\xf7\x56\x78\xeb\x0c\x3c\x29\x80\xd3\x6c\xb6\x90\x22\xf0\x4b\x0c\xde\xbe\x82\x8d\x49\xb1\x99\xd7\xc2\xed\xfd\xd8\x24\x51\x73\x18\x61\x04\x0f\x1d\x70\xcb\xd4\x68\xfd\x19\xa6\x0b\x02\x1d\xfb\x03\x19\xf7\xd6\x7f\xfc\xb6\xf3\xee\x8e\xc8\xcf\x73\xc0\x3b\x21\xbc\xdb\x89\xd9\xbe\xf5\x4a\xfa\x85\x60\xfc\x10\x44\x88\x78\xe8\x9d\x0a\x24\x64\x8c\x5b\x82\x71\x2c\x52\x7b\x06\x81\x31\xa9\xff\x68\x7e\xdf\x03\x22\x9c\x4b\xa8\xd3\x80\xb1\x87\xdf\x20\x60\x52\xb4\x22\x68\x52\xd9\xa9\x10\x66\xba\xdc\x20\x73\x5f\xe7\x74\x83\xfc\xfa\x51\x67\xc1\xc9\xa7\x50\x51\x48\xd3\xda\xf0\xf0\x49\x77\x7d\x0a\xcf\x2a\x51\x22\x91\x56\x9c\x2d\x2d\xab\x34\x58\x24\x1f\x95\x52\x16\x76\x23\x32\x3c\x46\x96\x18\x92\x7a\xf9\xab\x27\xec\x74\xf1\xe2\xb4\xf6\x7f\x5e\xfb\xc7\x3f\x61\xc6\x0f\x68\xf7\xbb\x8f\x46\x47\x47\x3f\xe2\xf2\xc6\x47\x15\xa7\x68\x58\xfc\x63\x41\x9a\x02\xcc\xfe\x5c\x9d\xa0\xbc\x22\xdd\xf5\xa9\xff\x20\xca\x9e\x55\xb4\x17\xb8\xc5\x41\x07\x17\xcb\x02\xac\xf2\x47\x7c\x49\xd0\xbd\x8e\x06\x94\x50\x75\x51\x08\x7d\x8c\xea\x9d\x5c\x34\x2c\x14\xf6\xee\x11\x84\x9a\x19\x28\x3c\xdc\x0e\x0e\xd7\xd4\x63\x06\x69\x40\xbe\xfc\xed\xaf\xff\xfe\xbf\x66\xbf\xfc\xea\xb7\x9f\x67\xd9\xbd\x1a\x6b\xce\xb1\xea\x29\x25\x4c\xa3\x79\x6e\xd1\x24\xfe\xdf\x1f\xf1\x83\xf2\xd1\x35\x73\xd8\xd2\xbd\x8a\x63\x24\xd6\x74\xe7\x35\xdf\xd8\xd5\xd3\xb8\x4a\xbf\xa8\xe7\x6f\x44\x99\xc5\xe8\xe9\x39\xb1\x31\x11\xc8\xcc\xdb\x16\xaa\x29\x37\xdf\xf9\x8f\x67\xe2\x4a\x49\x04\x41\xe7\x11\x74\x1b\x49\x3e\x21\x1a\x37\x8d\x28\xf2\xec\x5b\xe2\x8b\x27\xf6\x59\x73\xce\xaf\x6f\x86\x7b\x4f\xd9\xe2\xb2\x72\x2f\xf2\xfb\x0f\xf6\x5e\x4c\x13\x88\x38\x20\x42\x98\x6d\x15\xc7\x72\x6c\xf1\x19\xce\x17\xcd\x00\x2f\x11\xa3\xc6\xea\xb1\xc1\x62\x75\xc8\x34\x6f\x70\x2a\x0e\x06\xf5\x39\x81\x41\x84\x22\x01\x66\x39\x12\x87\x92\xd7\x15\x22\xc1\xf7\x67\xe1\x61\x0b\xa7\x41\x76\xb9\x07\x56\xb5\x15\x4c\x2f\x14\x0c\x02\xd8\xbe\x27\xc2\x88\xf5\xcc\xa0\xea\x18\x93\x5a\xa8\xb2\x1b\xef\xc1\xa6\x06\x82\x4b\x29\x52\x83\xaa\x72\x76\x30\x15\x90\xcf\x7a\x2e\x79\x67\x2a\x4b\x25\x49\x3f\x49\x23\xa9\x90\xb1\x20\x68\xe9\x85\x34\x2c\x80\x00\x43\x82\x2a\x5b\x6a\x70\x79\x12\xec\x3c\x7f\xae\x8e\xab\x26\xb7\x3f\x57\xc7\xd1\x44\xe3\xe7\xea\x38\x3a\xad\x72\x48\xc5\xa1\x9d\x7f\x47\xb1\x8c\xbc\xa9\xc7\x49\x6a\x17\x3f\x71\x8b\x46\xb6\x79\xb5\x55\xac\x9e\xf8\xde\x3b\xe4\x7e\x26\xc9\x97\x00\x0a\x5d\xae\xf2\x84\xfd\xff\xfb\x00\x65\xf5\xde\x81\xd3\x53\x7e\xe2\xa5\x51\x59\x1b\xe9\x3a\x48\xab\x83\x0e\x84\x97\x41\xc6\x16\x13\xc0\x41\xe0\xe2\x07\x40\x8e\x4c\x1a\x37\x24\x31\x51\xc8\xba\x78\xc4\xba\x74\x18\x75\x07\x23\x20\x25\xdf\x85\xaa\xca\x5d\x09\xd1\xdd\x72\x94\x1f\x18\x32\xf3\x27\x0b\x85\x09\x3d\x3b\xbb\xa7\x4a\x25\x24\xa7\xac\x1d\x53\x5e\x5c\x7c\x60\x01\x82\xe6\x1f\xa8\xf2\x41\x8c\x16\xf1\xbb\x19\x2e\xe6\x5e\x26\x3d\x99\xe9\x29\x79\xf5\x4b\x59\x0b\x83\x47\xa5\x09\x20\x04\xd9\xaf\x81\x7e\xea\x08\x22\x1f\xa2\x81\x4b\x24\x1c\xf4\x8d\x16\xec\xba\x69\xb8\xc2\x41\x5a\x61\x5f\xe3\xa2\x1f\xde\x9d\x44\xdd\x31\x18\x6b\x6c\x32\xf0\x06\x89\x78\x15\x99\x44\x87\xd6\x0e\x53\x7b\xc5\xfc\x26\xaf\xf1\x2a\xe8\x28\xba\x39\xed\xd7\x7a\x27\xb8\x60\xba\x79\xdb\x29\x7c\x18\xd6\xdf\x63\xa5\xcb\xf1\x5a\xc3\x9e\x5e\xfc\xc0\xee\x76\xef\xce\x76\xef\xce\xf6\xc3\x8b\xe3\xc7\x8c\x0b\x94\x6b\x21\x51\x56\xb0\x4b\xba\x69\xe5\xd8\xd6\x16\x5b\x9a\xef\xb9\x7a\x47\x74\xcb\x32\x8a\xb9\xee\x93\xe5\xee\x78\x4c\xa3\x58\x2e\xda\x63\x6a\x7e\xb9\xee\xad\xfd\xe0\xec\x27\x99\x2e\xb6\x17\x4e\xa6\x7a\x1b\x84\x14\x6c\x8d\x69\x61\x29\x3e\xfe\xe9\xc7\x83\x9f\x49\xf5\x33\x32\xc5\x64\xe7\xb2\x31\x09\xa1\x57\xc1\x15\x1a\xf2\x79\x91\x15\x9f\x48\xec\x42\xc1\x76\x6a\x47\x38\x49\xc9\x84\x52\x59\xd2\xb9\x00\xe5\xe1\x33\xd4\x3b\xe5\xb2\x7f\x22\x15\xe0\x7b\x86\x41\x26\x7e\x0a\x54\xa7\x3d\x25\x82\xe4\x45\x66\x8f\x9c\x95\x3a\xbc\xc5\xea\xfb\x28\x77\x74\x9a\xb7\xd9\xdd\x39\x55\x5d\x9f\x48\xf6\x06\xd9\xc5\x5e\x84\xaf\xf7\xd9\x5c\x8b\xd5\x9e\xc7\x5f\x91\x6c\x4d\x9d\x6e\x08\x19\xb5\x4e\xc1\x46\x51\x91\x02\x21\x42\xd4\x3e\xc5\x15\xef\xaa\xcb\x40\xda\x90\xe2\xf9\xe3\x92\x4c\x66\x3c\xcf\x9d\xda\x4a\x5a\x9e\x3b\xb5\xd6\x7b\x92\xdd\xf5\xa2\x8a\x92\xdd\xc5\x16\xa9\x37\x8d\x9d\x5a\x35\x3d\x8f\x5d\xfa\xd2\xc5\xed\xe3\xdf\xbf\xd4\xe9\x56\xf2\xea\xe2\x4b\x2b\x79\xa1\x75\xf7\x67\xab\x9d\xf6\x6e\x94\x06\x23\xae\x77\xee\xab\x65\x49\x6b\x56\x86\xfb\xed\xe9\x6e\xea\x38\xa3\xd0\xdd\x92\x1d\xfe\x90\x00\xe0\xa9\x98\xfa\x05\x01\x2f\x98\x43\x43\x03\x18\x1a\x55\x73\xed\x8a\x93\x37\x72\x18\x1a\x95\xf8\x73\x28\x2f\xeb\x0e\xdf\x56\x41\xed\x38\xbc\x3d\x11\x4c\x9c\xe0\x57\xe1\xe9\x05\x4f\xa7\xe4\xd7\x05\x05\xe0\xc0\x07\xba\xc4\x9b\xba\x59\x84\x14\x73\xe8\xa6\xc3\x16\x21\x6d\x15\x3e\xef\x00\xa8\x3b\x62\x8f\x6a\xfc\x2f\x48\x7f\xe7\xe6\x48\xe0\x06\x51\x3b\x68\x6f\x85\x87\xdb\x0a\x9c\x5b\x2e\x9a\x1e\x04\x91\xcd\xc1\x53\xf9\x5a\xb8\x37\xcd\x36\xdf\x29\x10\x15\xcb\x1c\x32\x8d\x02\xc1\x20\xbb\xa4\xc2\xf0\x36\x44\x0e\xa4\x97\x7e\x7d\x56\x72\xf5\x14\xcd\x9c\xe2\x6e\x3d\x79\x8e\x0f\xd8\x4a\xd6\x0d\xf1\x52\x21\x2a\x5c\x05\x3f\x4f\x7f\xf1\x2e\x9b\x52\xde\x46\xd8\xdd\xb9\x04\x04\x2e\xb9\x84\xa0\xf9\x36\xad\x5c\xa7\x35\x17\x9e\x6f\xb2\xda\x31\x7e\x82\xd8\xa8\x18\xf8\x0c\xb3\x63\x62\x70\x4f\x28\xa3\x74\xd0\xe5\xb2\x63\xb8\xfc\x10\x92\x2b\xe7\xdb\x43\x76\x4a\x0a\x1e\x88\x85\xbb\x11\x56\xe7\x62\x81\x70\xa1\xb2\x67\xdb\x5a\x49\xb7\xc6\xc8\x0d\xb4\x7b\x0b\x8c\x4a\x11\x03\xa4\xfa\xc1\xbf\xfd\xfb\x47\xdd\x99\xc5\x74\x3c\x22\x04\xf0\x40\x7a\x28\x60\x51\x8a\xf1\x9c\x91\xf3\x8a\x58\xa9\xd9\x9a\x04\x28\x38\xfa\x90\x97\x0b\xe7\x67\x83\xfd\x73\xf9\xb1\xec\x18\xa2\x52\xf7\xc9\x24\x5b\x5c\x0e\xb7\xe7\x64\xa1\xea\xfe\x2f\xbe\xe9\x23\x60\x9a\x5e\xdf\x0f\x1b\xbb\x6a\x3f\x3a\x27\x77\xd8\xd2\x02\x7b\xfb\x93\xba\xae\x57\x0b\xd1\xe2\x24\xfc\x72\x59\xed\x28\x7b\xd5\xcd\xc6\xa3\x1c\x0f\xe0\x19\xd0\x30\x27\x5c\x6b\x89\x4e\x81\x3a\x44\xc5\x41\x0c\xda\xa5\x3e\x34\x4e\x3a\xad\x3d\x76\x6f\x5c\x04\x3f\x3f\xe8\xb4\x7f\xe0\xd4\x5b\x1d\x8a\x52\x37\x6c\x3c\x0d\xda\xd3\x32\x18\x9e\xbf\xb6\xcb\xce\xd7\x54\x0f\x16\x32\x0d\x15\xae\x4b\xe8\xc1\x82\x4d\xb0\xf1\x8d\x4e\x6b\x9a\xdd\x7b\xd6\x69\x6d\xfa\x2b\x27\xe1\xf9\xa6\xda\x90\xa7\x0f\xa3\x16\x29\x16\xc4\x21\x2a\x05\xcd\x88\xea\x9e\x1d\xab\x19\x0f\x0d\x55\x5b\x55\xfd\x38\x63\xfe\xdd\x22\x84\x40\x54\x5b\xbd\x9d\xc4\x47\x79\x23\xa1\x5e\x50\x7c\x26\x3f\x04\xd4\x62\xc4\x97\x97\xe2\x04\xe7\xfc\xfb\x35\xff\x51\x1d\xa3\x04\xcb\xc2\xa2\xad\x17\x40\x26\x07\x1f\x5d\x8c\x2a\x35\x30\x30\x90\xb2\x99\x88\x74\x9e\x3f\x90\x21\xdf\xe5\xee\x22\xd6\x3e\xa5\x8e\x48\x28\x22\xd4\x60\x6c\xf9\x76\xb0\x45\x79\x10\x3a\xcd\x79\xd6\x6e\x85\x87\x87\xec\x68\xda\xaf\xbf\xe0\x47\x1b\xf7\xf8\xed\xfb\x6c\x6a\x37\x58\xd9\xea\xb4\xf6\x82\x85\x06\x7b\x72\x0b\xef\x48\x75\x49\xe2\x0e\x65\xb2\xe1\xca\x60\xd1\x74\x47\x62\xdb\x28\xda\x87\x90\xf5\x08\x0e\x0c\xfa\xf4\x24\x8e\x0d\x6c\x27\x29\xe7\xa0\x38\x84\xc7\x00\xf5\xb4\xf2\xcc\x21\xcb\x2e\xcf\xa5\x0c\x1e\x2c\xfa\x1f\x87\x8c\x2e\x55\xf5\x68\x91\xdf\x59\x12\x32\x71\x9d\xaa\x35\x54\xbf\x33\x7e\x85\xb6\x56\x84\xa7\x82\x0c\x4e\xd6\x9b\xa0\x29\x81\x5d\xdc\x9a\x31\xbc\x89\x07\x8a\xe4\xa6\x8f\x7b\xfd\xe4\xd4\x1d\xab\xb2\x2e\xd8\x09\x32\x03\xc7\xe9\x17\x22\x5f\xda\x51\x12\x79\x27\x63\x47\x0a\xd3\x09\x70\xde\x0d\x12\x0f\xe0\x47\xb5\xb6\x88\x9b\xe1\xe6\x30\x62\x46\xf7\xc1\x24\x27\xe9\x99\x6f\x6d\x67\xf8\x7a\x06\xde\xdb\x20\xe8\x31\x3e\xcc\x89\x0c\x5c\x70\x5a\x79\xe1\x10\x97\xff\x53\x20\xa6\xf6\x39\x7b\x1f\x55\x4f\x64\x4b\x42\xa8\xee\xad\x33\x30\x8d\x85\xc8\xad\x87\xd5\x60\xeb\x20\xac\xce\xb1\xc6\x3d\x7f\x72\x11\x53\x25\x61\x8f\xd9\xc1\x1a\xef\x31\x29\x99\x6c\x67\x58\x38\xbf\x61\xae\x30\x88\xce\xdf\xc7\xd7\x29\x53\x36\xec\x72\xd1\xa0\x5e\x89\xb8\x7e\xd6\x4d\xd3\xe3\x8c\x44\xc9\x80\xd8\x68\x13\xd5\xb0\xf1\x16\x1d\xf1\xf0\xb9\x23\x83\xb6\xd9\x34\x14\xb4\xcd\x86\x08\xcb\x5a\xc9\x28\x0d\xc2\x53\xc3\xd2\x3c\x21\xc3\xef\x90\xb7\xcb\xf4\x6c\x10\x22\x65\xc2\x11\x35\x87\x00\x47\x19\xf3\xb0\x23\xbc\x7c\x8a\xf0\xd5\x09\xbb\x88\x3e\xb5\x1c\x9a\xd2\x2f\xa3\xcd\x3d\xce\x38\x7c\xc6\xfd\x8c\x09\xce\x12\xd0\x92\x36\x24\x52\x0a\x36\x28\x52\xb5\xff\x70\x17\x5f\x18\xf9\x41\x68\x4f\xb2\xa9\xfd\xce\xd9\xbd\x28\x27\x9b\x44\x1f\x25\x53\xaa\xb2\xc5\xdd\xb0\xf1\x10\x1b\xa2\x84\x04\xd8\xf4\x7a\x83\x53\x78\x08\x14\x45\x49\x51\xa0\x7a\x2c\x7d\x86\xea\x75\xc2\x3b\x81\x35\x67\xab\x94\x51\x4e\xa4\xcd\xc0\x04\x8e\x17\xa7\x1b\x99\xb4\x84\x2c\xea\x9e\xfb\x1b\x13\xb2\xa8\x28\x2e\x4b\xc8\x02\x58\xa2\xd9\x94\x5d\x50\x17\xa1\x6f\x17\x24\x4b\x4b\xcd\x7d\x98\x4f\x9d\x3c\x48\xf1\x13\xa4\xbe\x51\x5d\x62\xb9\x5e\xb4\xf3\xe8\x8c\xc7\x27\xb7\xbe\xcf\xea\x47\x31\x6b\xc3\x74\xc3\xf6\xf4\x6e\xc6\x61\x23\xfa\xa6\x00\xf7\x55\xbd\x90\x69\xbc\xed\x0c\x7f\xa8\x65\x3c\xed\xfe\x7e\x96\xf1\xd4\x29\xfd\xa6\xee\xe9\x4e\xa2\x4f\x6c\xe7\x35\xbb\xb5\xf8\x1e\x75\x90\xb8\x2f\x90\x64\x24\x75\x45\x69\xc9\xf2\xfa\x80\xbe\x3f\x6b\x9e\x1c\x8d\x7c\xfe\xfe\x80\xac\x79\x7d\x8c\x59\x52\xd3\xe7\xf5\xe9\x21\xa7\x28\x94\x52\x11\xe7\x47\xcd\xa1\x97\x06\x2c\x22\x76\x10\xf8\xdf\x96\x48\x2f\xcd\x42\x82\xd5\xf7\x31\x4e\xb4\xd4\xaf\xf4\x1a\x0d\x80\x2f\x1a\x5a\x6f\x0b\xcb\x0d\xc8\x07\x14\x7f\xc9\x40\x7a\x2a\x67\x0a\x83\x3d\x20\x2d\x1e\xa0\xff\x47\xcc\xb2\xa6\xa4\xcb\x43\xaa\x26\xb3\xab\x71\xe2\x22\x2a\xa0\x31\x3d\xe5\xd0\x27\x32\x1e\x2f\x93\x71\x46\x0e\xdf\x49\xeb\xfa\x08\xc4\x31\x6f\xea\x9e\x91\x23\xa3\xfb\x44\x7d\x2c\x8c\x23\xc0\x96\x12\x1d\xd6\x1c\x9b\x73\xa2\x50\x3d\xdc\xbb\x1b\xce\xfe\xa4\xf6\x11\x4d\xa9\xa4\x3d\x67\xa2\x6e\x0e\xed\x4c\x13\x6d\xa3\x81\x4e\x8e\x34\x04\xf1\x32\x35\xbd\x25\xed\x1b\x51\x44\xd7\x21\x6a\x9a\xe0\x2e\x24\xe5\x32\x1a\x77\xc3\x8d\x98\xbd\xea\xaa\xbd\xa3\x2a\x96\x3d\x4a\xfe\x3b\x58\x2f\x83\x17\xe7\xc0\xbf\xd8\xa6\x95\x23\xcb\x01\xbc\xe5\xf0\xbb\xda\x89\x58\x01\xe7\x86\x44\x2e\x88\xb0\xd1\xe6\x2c\x28\xba\xf3\xf6\x14\xcb\x89\x55\xae\x22\xce\xeb\x82\x49\x13\x45\x22\xbf\x3b\x87\xe9\x7c\x38\x2d\x7c\xf9\x28\x25\x45\x13\x62\x8d\x65\xa0\xc0\x04\x6b\xb1\x56\xd5\xf2\x5f\xd0\x2c\x3c\x71\x40\x16\x21\x61\xec\xf2\x9e\xf6\xc1\x21\x5a\xb4\x1f\xf3\x8b\xee\x2d\xff\x90\xf6\x7f\xae\x8e\x4b\xb7\x4a\xd2\x58\x42\x9c\x01\x95\x07\x62\xb5\x23\x44\x92\xd2\x2f\x91\x49\x29\xba\xb0\xd5\x94\x4a\x08\x23\x6f\x12\x84\xa0\x3b\x04\xcb\x60\xeb\xba\x3d\x8c\x40\x94\x4e\x12\x7b\xdf\x38\xb9\xfc\x8c\x67\x91\x49\x50\x35\x5a\x68\xbe\xcd\x1a\x27\xe2\x8a\x7c\xab\x4a\xd1\x09\xe3\xe7\x18\xb1\xc0\x9e\x49\xee\x0d\x87\x85\x27\x04\x8b\xd2\x6f\xc8\x94\xd1\x89\x4c\x27\xc8\xce\x29\xb9\x55\xd5\xfd\x0c\x79\x35\x38\x1b\x21\x8e\x2b\x2e\x43\x6f\xb3\x0a\x36\x11\x41\x94\x7c\x2c\x15\x9a\xdd\x0b\xaa\x88\x34\xe9\x89\x5b\xe1\x1e\x95\x0b\xa8\x5e\x44\x97\x93\x71\xb5\x8b\x9c\x76\xde\x3a\xe3\x34\x7a\xe7\x25\x5b\x68\xb3\xc6\x89\xbf\xb5\xd4\x69\x6d\x46\x1b\x3a\x99\x30\xba\xa7\x9f\x52\x8d\x0a\x2f\x4d\xb1\xa1\x45\xb9\xc2\xa3\x23\xde\xcb\x3b\x8a\x1d\x88\xb1\xe0\x1a\x27\x89\x23\x25\xd7\x1e\x89\x86\xa2\x45\x91\x6a\xf1\xf8\x80\x64\x4c\xab\x04\xa9\x08\x0e\x84\x3e\x5d\x06\x13\x52\x89\xc0\x7f\x5c\xc7\x54\xdd\x1b\xd2\x9c\x58\xce\xd7\x74\x1a\xf1\x9e\xe6\x39\x97\x0e\x2f\xf7\x89\xa3\xf0\xcb\xa6\x03\x3a\xd8\x4b\x3c\x3a\xed\x5d\xb6\x78\x5b\xd2\x0f\xe9\x7d\x23\xad\x27\xa3\x4e\xc6\x84\x1f\x6c\x81\xe4\x1f\x41\x2c\xc0\xca\x13\xe4\xb4\x5e\x2b\x4f\x04\x1d\x18\x18\x48\x9e\x1d\x89\x76\x2c\x76\x7e\x62\xa8\xc9\x26\x15\xdc\x5c\xf0\xde\x8b\x15\x73\x5c\x96\x6d\x81\x98\x8d\xcf\xa9\x65\x1b\x84\xa3\xa3\x87\x61\xe3\xbe\x7c\xce\x89\x4e\x09\x39\xd4\xcd\x8b\xa7\x01\x0a\xe2\xa0\xe6\x1e\x85\xf0\x31\xdf\xc2\xc2\x5c\xcf\x14\x74\x77\x64\xd0\xd6\x9d\x42\xce\x5f\xd8\x63\xb5\xe3\xee\xc3\x27\xfe\xc3\xf3\x0c\x3a\x17\xd3\xd3\x0b\x26\x39\xb3\x9d\x61\xdd\x32\xbf\xd7\x51\x06\x20\x06\x11\x8b\xe2\xc2\x23\x6e\x21\x2c\xd1\x2b\xde\x88\x61\x79\x26\x31\xf7\xe1\xe1\x4e\xd8\x18\xf7\x5b\x4b\x54\x0c\x3c\xe2\x70\x0e\x79\xa8\xee\xd4\x7c\x70\x76\x48\x25\x64\x5f\x9e\x43\xa7\x34\x7f\x71\x29\xd8\x69\x89\x6c\x6b\xb6\x65\x82\xf5\x31\x26\x20\xdf\x5c\xf6\x17\xf6\xa8\xdb\x4a\x78\x99\xee\xd3\xd5\xee\xf6\x9b\x0c\xc4\x11\x81\x0f\x7e\xfd\x39\xff\xe0\xd9\x9e\x5e\xcc\xf9\xd5\x76\x78\xb8\x7d\x71\xba\x71\xb5\x90\x89\xe6\x60\x60\xb0\x62\x16\x0b\x18\xbf\xc5\x7f\x34\xc9\x67\x0c\xd5\x3c\x11\x84\x5e\x2e\x6b\x37\x0d\xd9\x38\x66\x3f\x47\x9d\x52\x04\x34\x6c\x7a\x1c\x88\xef\xf7\x5c\x14\x36\x42\x05\xb0\xa3\x72\xbb\xb7\x18\xbb\xe1\x99\x25\xd4\x39\x35\x96\x31\xf3\x69\x0f\x04\x3d\x0d\x60\x57\x45\x1a\x87\x08\xc8\xf5\x74\xcf\x74\x3d\xce\x29\x62\x6f\x41\xd3\x2f\xde\x05\x24\x98\x5d\x36\x1c\xb1\xaa\xf2\x06\xa2\x84\xd5\x11\xae\x31\xd7\x33\x4a\xf0\x7c\x50\x11\xab\x12\x6c\x2e\x87\x7b\xd3\xc1\xed\x63\xbf\x3a\x9e\xd6\x2c\x4e\x24\x9a\x0d\x42\xa3\x7c\x5f\x40\x1f\x2e\x4e\x37\x3e\x1d\x04\xad\xf1\xe0\x67\xd9\xce\xd9\xbc\x74\xc9\x51\xbe\x36\x9f\x49\xaf\x99\xd8\x57\xf9\xb0\x19\xfb\x2a\x5d\x1d\x52\xbe\x62\x36\xc6\x64\x59\xf8\xe6\x51\xec\x93\xff\x62\x3b\xdc\x9e\xeb\x34\x5b\xf1\xaf\x0f\xb7\x91\xf6\xe0\x63\x7a\xac\x8c\x9d\x3e\x46\xcb\x89\x1e\x3c\x60\x49\xd1\x33\x9c\x9d\x77\x9d\xd6\x0e\x6b\x2e\xb1\xc5\xde\xa1\x22\xab\x9a\xda\x51\x74\x0a\xeb\xa9\xa1\xa8\xeb\x7a\xca\x20\x92\xb1\xdf\x5a\x4a\x16\x28\xd2\x4b\x4f\x2b\xc2\xd0\x24\x59\x20\x53\x29\xc4\xc1\x01\x09\xda\xdd\xf6\xac\x10\x50\xa3\x1e\x3c\xa8\xd2\x4a\xad\x81\x3a\x3b\x4e\x90\x53\xb6\x25\xa9\xd9\xe9\x92\x07\x35\x52\x1a\x94\x3b\x6a\x42\xea\xcd\xd3\x2a\x9b\x7a\x95\x0a\xe1\x54\xac\x1c\x46\x05\x54\x8a\xf3\x45\x43\xb7\xb4\x8a\x35\x68\x5a\x05\xcd\x86\x54\xb6\x7e\x73\x8a\xb3\xb2\xf5\x67\x41\x7b\x99\xdf\x4b\xca\xba\x5d\x5a\x31\xe2\x16\xd0\xd3\x23\x8e\x20\xdd\x27\x29\xc2\x47\x6c\x87\x69\x81\x99\x8b\x1e\x89\xcc\xe2\x41\x53\x62\x45\xbb\x18\x91\x7b\xfe\x17\x20\xe8\xed\x98\x44\xc1\x16\xdf\xbe\xb7\x4b\x70\xef\xf1\x1b\xd0\xbc\x69\xc4\x3b\x43\xe7\xeb\x60\xdd\xdf\xfe\xe1\x3d\xf5\x12\x7d\x50\x6b\xbe\xb7\x03\xc0\x3b\x58\xc3\x78\xa1\xc6\x3b\x00\x9e\x7b\xa8\xf1\xc6\xd7\x4c\x71\x07\x92\xf1\xcb\xe5\xb8\x92\x9d\x7a\x0f\xb6\x24\xe7\x17\xa7\xf8\xc3\x79\xd1\xc1\xc6\x49\x2c\xaa\xd2\xa3\x5b\xac\xfe\x8e\x6d\x3e\xf2\x57\x8e\xfb\x54\x49\x9f\x1c\xa5\x5e\x5a\x9b\x8e\x01\xd1\x25\xf4\x62\x51\x73\xdd\x11\xb0\x75\x40\xcb\x34\x34\xff\xcf\xfe\x6a\xc0\x75\x47\x3e\xc6\x8c\x42\xe6\xf7\x06\xd8\x05\xb8\xbf\xa2\x91\x5d\x9c\xd6\xc2\x83\xa7\x6c\xf9\xf6\xc5\xe9\x06\xaa\xd8\xd1\xbe\x3b\xd8\x98\xa4\x97\xfa\x93\x2d\xf4\x50\x17\xfa\x93\xd9\x4b\x9b\x4e\x8c\x00\x89\xb4\xda\x9d\xf7\x8c\x00\xa3\x77\x90\x65\x1d\x66\xfb\x56\xa6\x82\xb3\x86\x65\xc7\xf8\xc8\x31\xf2\x86\x79\xd3\xf8\xb9\x3a\x8e\xe2\x0e\x70\xa3\x65\xdb\xf5\x44\x89\xb0\x90\xea\xdf\x46\xea\x54\x7f\x28\xfe\x58\x3f\x53\x07\x66\x5a\xa6\x97\xd8\xb7\x54\x49\x64\x88\x7f\xdf\x96\x7b\x0f\xba\x5f\xbc\x75\x93\xcd\x46\x21\x04\x95\x2b\xdb\x70\x6e\x1a\x8e\x56\x29\x03\xcf\x81\xe6\xc7\xe1\xf9\x12\x17\x33\x92\x9c\x47\xbe\xe2\x38\x9c\x13\x1d\xb6\x1d\xbb\xe2\x99\x96\x41\x96\x09\xd9\x2f\xc4\x07\xb8\xed\xbb\x33\x8b\x29\x95\x4a\x46\xc9\x76\xc6\xb4\x0a\x86\xdf\x43\xb1\x73\x7a\x8a\x1d\xac\x53\x56\xfd\x58\x25\xe0\xd4\x44\x15\xbd\x08\x1a\x62\xa3\x20\x22\xfb\xf3\x8d\x39\xcd\x59\x46\x74\x13\x38\x58\x57\x6a\x52\x1d\x7b\xd0\xd3\x21\x64\x1a\x02\xb0\xf9\xc7\x3d\x6d\x94\x6d\x88\x74\xa1\x15\x6d\xfb\x46\xa5\x0c\x2c\x17\x08\x7b\xdd\xbb\x35\xcc\xcc\xe5\xbf\xe0\x0c\x53\x2f\x6e\xd1\x1f\xaa\x42\x2d\x40\x8f\xfa\x55\x19\x72\x8c\x38\x78\x77\xe6\xb6\xbf\xd2\xdb\x82\x98\xac\x11\x43\x2f\xc7\xa6\x2a\xfb\xa5\xa1\x97\xb3\xfd\x27\x0c\x2a\x24\xc7\xae\xd4\x49\x9b\x00\xb5\x8e\x59\x28\x1a\x2a\x7c\xf0\x63\xab\xbb\xf6\xd3\x25\xf0\x60\xe3\x44\xaf\xc4\xf4\xee\xb7\x31\xa9\xf6\xb2\x4f\x45\x7a\xba\x2b\xe4\xc0\x4b\x87\x4f\xc2\x7b\xea\xd9\x83\xff\x62\xe4\x3d\x97\x3a\xd7\x38\x09\x5f\x6e\xf7\xec\xb1\x41\xdb\xf6\x5c\xcf\xd1\xcb\x9c\x49\x05\x6b\x7a\x98\x39\xf0\x34\xc9\x5e\xe3\x9f\xb2\x69\x93\x86\xc0\xc9\x59\x53\xb7\x17\x55\xee\xdd\x65\x6e\x59\xb7\x34\xd7\x73\x2a\x79\xaf\xe2\x18\x2e\xb5\xf8\xd5\xb5\xb2\x6e\x65\x21\x1a\xfd\x64\xff\xb5\xea\xa9\x9c\xde\x74\x2f\x32\x15\x47\x5e\xcf\x8f\x18\x29\x3d\xf8\x9c\x7f\x7f\x7f\x17\x7a\xaa\xf7\xe9\x43\x2f\x3a\xf5\x04\x39\xf6\x90\x59\xe4\x64\x69\xb0\x92\xbf\x61\x78\xda\x88\xee\x8e\x68\x1e\xa4\xee\x4b\xc5\xc7\x66\x57\xfd\x47\x4b\xe8\x44\x11\x6e\xef\xf7\x20\x1c\xce\x6b\x25\xc3\xd3\xc1\xba\x29\xbd\x43\x5f\x7c\x9e\x65\x53\xb7\x48\xa4\x48\x56\xb7\xbd\x11\xc3\xd1\x48\x5c\xa1\x53\xca\x99\xbf\x88\x18\x80\x2e\x40\x45\x48\x81\x4f\x92\x98\x2c\xe3\x3b\xba\xa1\xf3\x63\x79\x48\xc6\x7c\xc7\x7f\xb1\x0d\xad\xe3\x71\x82\x9b\x39\x3e\xa7\x20\x6e\x0e\xe7\x51\x76\x0b\xdf\x3e\x0c\x9e\xb6\x3b\xcd\xdb\x54\xad\x87\x96\x22\x85\x13\xe0\x1c\x02\xb8\x53\x84\xf3\xab\xed\x34\x7a\x38\x9c\xd7\xca\x3a\x3f\x76\x1c\x7c\x63\x82\x8d\xd7\xfb\x80\x8b\xae\x20\xb4\xd2\x0b\xa5\x52\x7c\xda\x91\x36\x45\xdd\x40\xc2\x84\xba\x80\x01\x70\x71\x2d\xe9\x96\x3e\x6c\x68\x65\xdd\x32\x8a\x31\xed\x80\xaa\x36\x00\xf3\x9d\xe8\x41\x4a\x79\x30\x46\x8e\x95\x80\xe0\xa5\x50\x84\x5f\xa1\x8f\x82\x73\x85\x18\xf7\x64\xfe\x4d\x25\x4a\xf0\x4d\xb6\xbc\x4e\x5f\xf1\x62\x25\x83\xbd\xfb\x47\xf4\x95\x52\x5f\x89\xb6\x71\xa4\x58\x04\x5e\x27\x8e\x31\x6c\xba\x1e\xc5\x73\x18\x1a\xcb\xb1\xa5\x65\xea\x08\xf8\x56\xf9\xaf\xf6\xd9\xf4\x1c\x3e\x33\x77\x27\x0e\x3b\xed\x63\x65\x5c\x71\xbb\x4a\xac\x96\x1e\x72\x19\xeb\xa8\xa6\x55\x34\x12\x90\x14\xd0\x06\x50\xea\x43\xa8\x8c\xef\xd6\x62\x8e\xcb\x75\xf5\x23\x15\xbc\x68\x0f\x9b\x24\x07\x61\x15\x94\xf0\x48\x1a\x42\xc0\xb2\xee\xba\xa3\x60\x66\x4d\xf6\xf1\x47\xd3\xac\x7a\x1a\xdc\x7f\x10\xfc\xd8\xea\x9c\x9d\xb3\xa9\xe3\xce\xf9\x43\x7f\x6e\x1c\x5e\xee\xe0\xb5\x9c\x16\x56\x86\x6a\x23\x03\x38\xf1\x8a\x21\x2c\x72\x40\x05\x92\x7c\x9d\x8c\x46\x17\xbd\xec\x61\x2c\x4e\xa5\x12\x41\x95\xf4\xef\x50\x16\x80\x85\x81\x47\xde\x7a\x95\xed\xec\x51\x54\x1a\x45\x35\x45\x44\xbd\x4f\x35\xd4\x1d\x72\xce\x55\xba\x5c\x7d\xf4\x49\x36\xdc\xde\x0f\x76\x5a\x14\xf4\x69\x6a\x9f\xbd\xac\x52\x4c\xcd\xea\x29\x67\x5a\x11\x97\xe9\x6a\xd1\xde\x92\x43\x63\x6f\x7f\x0a\x9f\x3c\x8f\xed\xb3\xb2\x63\x8f\x98\x83\xa6\x87\x53\x0e\x8a\x4a\xd8\xb5\xe1\x93\xe7\x18\xf6\x11\x67\x5e\x41\x0b\x1b\x33\x42\x89\x86\x01\x71\x4d\xbe\x58\x4a\x08\xcc\xc3\xf9\x7e\xb0\xeb\x4f\xd4\xc1\x79\x50\x22\xd7\x49\x6d\x6a\xac\xba\x59\x2a\xdb\x0e\xef\x1e\xdf\x29\x49\x14\x8d\x53\x36\xb5\x8b\xdb\x27\xf1\x6a\x93\xba\xd8\xe2\x19\xbd\x77\xc9\x52\x9f\x95\x65\x6b\xe2\x30\x79\x66\xb1\xa8\xd9\xa3\x16\xaa\x25\xe5\x5c\x75\xda\xf3\xc1\xe4\xb1\xbf\xde\x48\xaa\xdb\x45\x50\x05\x8a\xbd\x42\x09\xd3\x6b\x22\x1e\x82\x88\x3f\x8a\xa6\xea\x90\x36\x1d\x29\x11\x7d\xc7\x48\x30\xa0\x07\x88\xb6\x20\x76\x62\x44\x77\xc1\xae\x46\xed\x83\xbf\xb6\x27\xfb\x20\xdf\xb3\x51\x73\x9c\xe8\x00\x1e\x0f\x7c\xd6\x93\xdd\x88\xe2\xcd\x28\x53\x12\x33\x98\xc2\x99\x4f\x06\xe6\xb6\x1d\x72\xf3\x8f\x13\x4b\x45\x5f\x4a\xc4\x12\x00\x55\x83\x09\x69\x94\xe4\x0e\x50\xb8\x46\x54\x76\xdf\xa7\x8f\xe2\xf5\x87\x82\x37\x72\xda\x0c\x04\x10\xc8\x60\xbc\x39\x55\x09\x1b\xdc\x9f\xeb\x3e\x7c\x42\xa0\xc9\xec\x58\xf8\x15\x7a\x21\xe3\x5f\xa1\x21\x23\xff\x1e\x7f\x29\xe6\x42\x09\x7e\x1f\xd5\x3d\x88\x42\x8b\x0a\x2b\xde\x13\xfc\xee\x7a\xba\xe3\xe6\x82\x89\x93\xf0\xcd\xa3\xe8\x6b\xcc\xa9\x4c\x01\x36\xbf\x87\x1b\x80\x9f\x78\x50\x14\xc7\x68\xa3\xab\x10\x47\x2c\x84\x84\x08\x4a\x9c\x0a\xa5\x24\x22\x8c\xd4\x7d\xfc\x0e\xbe\x2e\x44\x30\xd1\xd7\x05\xbf\x1b\x90\x59\x98\x12\xa9\x34\x82\x95\x7d\xfa\x4e\x91\x7a\x29\x22\x31\x7d\x4c\x33\xcc\xa2\x3b\x45\xe9\x74\xbf\xa6\xa0\xb0\x5f\xff\x5c\x23\x5f\x71\x4c\x6f\x0c\xe2\x64\xda\x79\xbb\x98\x63\x87\xb3\x9c\x86\xcd\x2f\x86\x87\x87\xa2\x53\x31\x7f\x13\xfc\x36\x62\xbb\x5e\xae\xd3\x6c\xfb\xf5\x16\xf9\xc8\xe2\x77\x4e\x1a\xe8\x7b\xf0\xbc\xc1\x16\x7f\xa0\xef\xa0\xa3\x2a\x58\x39\xd4\x47\x65\x7f\xff\xa7\xf8\x77\x79\x65\xa8\x91\xd4\x30\x2f\x79\x3c\x4a\x9a\x1a\x0a\xed\xe2\x74\xae\xf3\xee\x0e\x7b\x3a\x71\x71\xba\xf1\xfb\x7f\xfc\xea\xff\xb9\xea\xaa\x48\xc5\x6d\x44\x4d\xb2\xc6\x74\xf0\x78\x3c\x0d\x40\x3e\x0c\x0b\x6d\x04\x3f\xc2\x00\x4d\xb1\x99\xda\xbb\xfe\xfa\x82\xbf\x3a\x23\x13\x21\xa0\xa1\x26\xab\xef\x4b\xa5\x32\x26\x67\x83\x40\x3c\xf3\xe1\xd3\x71\x4a\x59\x00\xd4\xa6\xfb\x3c\x19\x4a\x8a\x1f\x52\x5a\x59\xce\xd2\x50\x0a\x27\xb0\x02\xc6\x50\xa6\x10\x49\x5a\x05\x29\x58\xb9\xbf\xb8\x86\x13\x4d\x9b\xee\x79\x8e\x39\x58\xf1\x8c\xc8\x65\x57\x4e\x11\x7b\xf9\xc8\xaf\xee\xf5\x05\x8c\xbd\x1f\xe1\xe5\xac\x5e\x60\xc4\x53\xa1\xfe\x76\xed\xd8\x9f\xad\x4a\xb9\x2a\xe2\x95\x92\xb8\xd1\xcc\x0e\xcc\x0c\xfb\xb4\xee\x56\xb0\x97\x6c\xef\x9e\x7f\xb4\xd8\x07\xa8\xa4\x9b\xc5\x5c\x77\xe2\x30\x38\x7c\x19\x83\xb8\x69\x38\xe6\xd0\x98\x36\xec\xd8\x95\xb2\x16\xd9\xaa\xe4\xba\xcf\xe6\xf8\x6e\x6f\x13\x4d\x0d\x5b\xcf\x3b\xed\x33\xaa\x83\xc0\xf4\x6e\x06\x81\xe8\x60\xf7\x4d\xaa\x53\x1c\xcd\x27\x42\x63\x90\xff\x1c\xc4\xff\xe3\x87\x04\x03\xfd\xc7\x40\xa2\xce\xe6\x6d\x8b\xf3\xf3\x18\x79\xa5\x08\x46\xa8\x90\x8f\x5f\x7a\x0b\x71\x34\xea\x28\x00\x30\xaa\xcf\xab\x18\x05\x2e\xc2\x02\x66\x68\x75\x7a\x8a\xe6\x38\x75\x7e\x5c\x0e\xcc\xb7\x6e\xae\xd3\x5e\xc8\xfe\xce\xb4\x0a\xd9\xdf\xff\x29\xdb\x69\x1e\x60\x0a\x1f\xac\x44\x97\x28\x56\x15\x03\x42\xa7\x2a\x18\x4d\xb8\x37\xc9\x6a\x0f\x04\x6a\x78\x1b\x15\x50\x82\x65\x48\x01\x2c\x71\x36\x43\x73\xf5\xdc\x57\x6e\xf6\xb7\x85\xec\xb5\xdf\x0a\xfa\x51\xf2\xca\x1a\xa8\xac\xaf\x7d\xf5\xcd\xd7\xd9\x14\xf2\xc3\x21\x80\x58\x00\x40\x0a\xc5\xe0\x00\x40\x35\x14\x80\x18\xe9\x10\x81\x6a\x90\x0c\xb9\x44\x87\x64\x54\xe4\x74\xa8\x34\x1e\x94\xb6\x79\x73\x9e\x35\x4e\x10\x09\x98\x5f\x82\x2b\x16\x84\x7c\xfe\xb9\x3a\x01\x8e\x36\xcf\xb0\xb4\x73\x72\xa7\xbb\xf6\xba\x5b\xaf\xca\x13\xdd\xad\xae\xb1\xc5\xb7\xd9\x5f\xfd\x2f\x9c\xd9\x9e\xee\x6e\x40\x5a\x36\x95\xa2\x6b\x5e\xd1\x15\x11\x65\xbf\xf9\xe3\xb5\x2c\xbb\xfd\x98\x35\xc4\x51\x76\x6f\x98\x65\x0e\xa0\xe1\x7e\xa6\x88\x8a\x00\x87\x3b\x59\xd0\x50\xbd\xa4\xb9\x86\x73\xd3\xcc\xd3\xc9\xfa\xfa\xb7\x5f\x65\x63\x1e\xf9\xb1\x26\x21\xb7\x93\x90\x28\x64\x60\xe7\x9a\xff\xf0\x16\xad\x3b\xa4\x87\x42\x99\x42\xd4\x8c\x64\x02\x5c\x32\xb2\xcf\xa0\xa9\x54\xf9\x54\xc4\x44\x57\x07\x65\xa9\xeb\xbd\xb0\x70\x0f\x24\xc1\x8f\xa6\x91\x7a\xe3\x6d\x26\xdf\x84\xa2\xdb\x34\x21\xcc\x60\x65\xbf\xb5\x94\xbd\x72\xd5\xbd\xd2\xe3\x21\xa6\xde\x86\x91\x94\xa0\xf4\x3f\x29\x22\xa8\x15\x64\x24\xe2\x9e\xe1\xc6\xac\x1b\xc3\xc6\x2e\x82\xc4\x0a\x35\xbc\x61\xd1\xba\x04\xe1\x90\x35\xc0\x47\xca\x5e\x50\x61\x63\x20\x27\x42\xaa\xb1\x53\x0c\xe2\x69\x77\x00\x1b\x69\x92\xd7\x9e\x7f\x40\x4d\x20\x1b\xd9\x69\x2e\x60\xfe\x03\xba\x27\xd0\x38\x65\x7c\x45\x79\x5e\x47\x26\x70\x35\xac\x4e\xf1\xe6\xce\x1f\x48\x60\x19\xed\x0c\xf5\x0e\xb8\x0c\x78\x46\xa3\xed\xdb\x9b\x9a\x52\xac\x45\x92\xbd\x44\x78\x94\x07\xc9\x89\x06\x6d\xf0\xe5\xfa\xca\x28\x38\x51\xa6\x0d\x22\xa1\xa6\x37\x52\x19\xd4\xf4\xb2\xa9\x19\x56\x01\x34\x9f\xb9\xdf\x7e\xfd\x0f\xd9\xa0\x5d\x0b\x9e\x37\x32\xf4\x18\x3f\x60\xd9\x9e\xe6\x1a\x5e\xee\x7f\xf2\xeb\xcf\x70\xa5\xfe\x67\x51\x44\x6a\x62\x7a\xb5\x97\x09\x12\xf0\xe1\x5e\x00\x0d\x3a\xba\x55\xa0\x3b\xe9\xde\x78\x30\x4b\x0e\x8c\xa2\xd8\xa9\x20\xd1\xce\xa1\x7e\x99\x04\x0a\xa5\xb0\x64\x17\x0c\x2a\xf4\xf7\xb7\xd9\xe9\x62\xbc\xf5\x28\xf0\x6e\x14\xab\x37\x38\x5b\xe6\x14\x2d\x0e\x17\xe7\x9b\xe2\x65\x11\xbf\x85\x9c\x56\xbc\x74\xc4\xe3\x64\xb5\x50\x70\x72\x5f\x7e\xf3\xcd\xd7\x14\x5a\x25\x0d\x06\x08\x27\xc0\x10\xc9\x8c\xc3\xe4\x0d\xc7\x43\x67\x33\xbe\x93\x4e\x9e\x92\xb3\x59\x1c\xe8\x86\x31\x46\xc9\xdb\x85\x37\x69\x2f\x0c\xa7\x5a\xfc\xaa\x10\x36\x03\x7e\xbd\xda\x39\x5b\x00\xd2\x45\xb6\x03\x71\xf8\x8a\x65\x7e\xa7\xb9\x36\xa8\xe3\x22\xd3\x9b\xdc\x5f\x2c\xf3\xbb\x2c\xdb\x5d\xf3\x17\x76\xd9\xc1\x1a\xc9\x85\xf1\x9a\x20\x56\x6a\x8e\x6d\x7b\x18\x86\x05\x44\x49\xff\xf1\x49\xea\x0c\xdb\x43\x43\x45\xd3\x32\x70\xc5\x82\xa7\xed\xa0\x75\x9e\xba\x62\x05\xd3\x05\x52\xe9\xd8\x15\xd4\xb5\x0f\xe7\x30\xc8\x63\xf8\xb6\x11\xac\xbc\x64\x0f\xf6\xd1\x2f\x2b\xb9\xd0\x48\x60\x87\xbf\x37\xcb\x82\xa8\x7f\xf1\xbd\x59\x4e\x40\xe9\xe5\xb2\x06\xba\xc2\xb2\xee\x8d\xc4\xcc\x32\x90\x3d\x0c\xdf\x36\xd8\xbb\xc9\x9e\x61\xea\x05\x4d\x77\x5d\xc3\x73\xb5\x21\xc7\x2e\x69\x05\xd3\xbd\xc1\xef\xf5\xe0\x87\xf1\x60\x73\x1d\x3d\x9e\x82\xd7\x8f\xfd\x87\x3d\x13\xa4\x5b\x05\xd3\x1a\x86\xd9\x09\x1e\xb4\xbb\x0f\xa6\x69\x6a\x24\x9c\x3b\x22\x0e\xc8\xb5\x6b\x5f\x66\xe3\x67\xc3\x75\x47\x22\xe1\x03\x09\xb9\x52\x42\x3b\x16\xdd\x01\x13\xfb\xd6\x1d\x41\xe6\x1e\x0b\x13\xdb\xcd\x1d\x19\x80\x25\x83\x29\xe0\xab\xb5\x79\xc8\xce\xee\xab\xc5\x37\x8c\xb1\x61\xc3\x42\x80\xff\x0b\xfe\xce\x26\x26\x06\x81\x34\x08\xff\x85\x53\x89\xfb\x11\x02\x7f\xf5\xc2\x96\x4c\xcb\x2c\x55\x4a\xe8\x6b\x6c\x7e\x6f\x60\x9e\x47\x4c\x8d\xbe\x88\x55\xbb\xf7\xcf\x59\xeb\x29\x66\x45\xb8\xac\x2a\x04\x2d\x08\xb6\x0e\x82\xbd\x75\x59\x2b\x36\x34\x83\x0c\x59\xe3\x2f\x99\x9a\xee\x69\x5c\xde\xf4\x72\x10\x00\xb8\xc1\x6f\xd9\xb5\xe3\xee\xcc\x3c\x9b\x7e\x90\xbd\x92\x00\xbe\x92\x4d\x1c\x2c\x77\x04\x84\x55\x4f\x1b\xac\x98\x45\x8f\x13\x53\x58\x5f\x7a\x2f\xc0\x08\xe7\x92\xc0\xa9\xb5\x80\x71\xb4\x34\x60\xaa\x82\xcd\x65\xb6\xf4\x02\x99\xa6\x14\x18\x58\x30\x84\xe9\x5d\x30\x41\x4b\xcd\xf2\x08\xc8\xf4\xd0\x16\x07\x03\x9e\x85\xed\xae\x81\x13\x93\xa0\x8b\xa0\x06\xc3\x5d\x45\xaf\x7a\xb1\x7d\xc5\xcb\x2f\xdb\x02\x50\x8e\x5e\xca\x24\xa9\x4e\x6e\xf8\xf5\x17\xc4\x2a\xaa\x40\xba\xe5\x9a\x5a\x7e\x44\xf7\xf8\x15\xf0\xdb\x3f\x5d\xfb\x87\x2c\x7a\x31\x77\x37\xa7\x63\x70\x43\x36\xbf\x7a\x84\x7e\x00\x73\xa1\xc4\x8c\xcd\x55\xe0\x92\xfe\x5d\xa4\xc4\x2b\x9a\x60\xb3\x84\x1a\x40\x4c\xdc\x07\xec\x5f\xac\x46\xd9\x31\x86\x0c\xc7\x31\x0a\x5a\xd1\xcc\x1b\x96\xcb\x37\xc9\xc2\x7e\x38\xcf\xc5\xb8\xf0\xb0\xc9\x16\x1b\x9c\x49\x50\x6b\x08\x22\x03\x84\x79\x98\x33\x58\x40\x62\xb2\x40\x9e\xbf\x30\xbd\x18\x30\x91\x16\xa4\x76\x7c\xca\xb4\x92\x39\x4c\xd9\xa0\xf0\x5c\x22\xe5\xc3\x7d\x1f\x9e\x8f\x07\x7b\xed\x34\x04\x8e\x8e\xde\xc4\x9a\x63\x58\x05\xc3\x41\x4a\x48\xb1\xc0\x17\xb6\xd8\x1e\xf9\x17\xfb\xcd\x9f\xfc\xad\x7b\x71\xda\x08\x68\x28\x93\xa4\x36\x64\x78\x79\x20\x1b\xf8\xf6\x97\x1f\x8b\x25\x99\x25\x01\x03\x92\x2f\x77\x67\xe2\x18\x38\x2f\x69\x3b\x03\x40\x87\x47\x1d\xbd\x0c\x41\xf1\x2d\x17\xad\xb9\xd0\x5f\xf1\xc1\xbe\xcc\x52\xea\xcf\x3f\xe1\xd7\xea\xec\x8f\xec\xe5\xfd\x34\x34\xe4\x15\x0a\x63\x83\x71\xf1\x01\x29\x88\xd8\x62\x03\x5d\x45\x69\x5c\xbd\x23\xaa\x94\x39\x6d\x4d\x10\xb9\x4e\xf3\x76\xe7\xf4\x71\x1a\x9c\x67\x94\xca\xb8\x67\x11\x46\x44\x7f\x7b\xed\xaf\x1d\xc7\x89\x8e\x5a\x4b\x06\xcf\x1c\x2b\x1b\x22\xa9\x49\xb0\x31\x89\x28\x52\x36\x35\x55\xc3\x11\xe9\xdf\x01\xd5\x89\x35\xc8\xb7\xe2\xd1\x62\xca\x3e\xa4\x9a\xbc\x12\x3a\x76\xab\xb5\x50\x5b\x4d\xb5\x44\xb5\xc2\xa0\xe4\x8f\x84\x7a\x22\x7e\x56\x0b\x83\xa8\x97\x8a\xf7\xb3\x30\xa8\x2a\x75\x94\xaf\x42\xb8\x57\x58\xa8\xc2\x20\x48\xb3\xb9\x38\xef\x54\x18\x1c\x70\xdd\x22\x6e\xc1\x6b\xd7\xfe\x98\x8d\x2f\x8e\x52\x2a\x84\xb3\x8b\xd3\x5a\xa7\x3d\xd5\x7d\xb0\x94\xbd\x52\xb6\x5d\x6f\xd8\x31\xdc\x2b\x59\x11\x9a\x62\x56\xa9\x88\x34\x45\x8c\x26\xbe\x2c\x54\x9c\x82\xd3\xfd\xd7\xa2\xe9\x19\xbf\x51\x51\x46\x77\x29\xe9\xbd\x84\xfd\x27\x68\xbd\x12\x57\x25\xc1\x10\xaf\xeb\x18\xe4\x74\x52\xd0\xc7\xb8\xd8\x71\xd4\x39\x5b\x24\x5e\x7a\x63\x92\xed\xfc\xe8\xdf\x3f\xea\xa9\x99\xb7\xed\x1b\xa6\x11\x55\x25\x35\x5c\x54\x35\xfb\x39\x40\xf4\xab\xd8\xab\xdc\x79\x4f\x05\xf8\x2d\x09\x00\x0c\x2a\xd8\x98\xec\x57\xc9\x31\x38\x3f\x07\xca\xf8\xef\xc6\x50\x70\x81\x65\x65\x8b\xf3\x6c\x69\x99\x13\x80\xa5\x69\x94\x42\xb2\x5f\x82\x37\x7b\x0f\x06\x49\xc6\x40\x1a\x00\xd3\x4c\x0d\xbb\x42\x7d\xa0\x19\x02\x0b\xcd\x7e\xdd\x48\xa9\x4d\x6e\x7c\x29\x95\x45\x6d\xa3\xa4\x9b\x45\xb1\x7c\xf8\x48\x16\x5f\x3e\x00\xe8\xc3\xeb\x60\x99\x5b\x81\x47\x7d\x8d\x93\x7a\xf3\x3b\xbe\xf1\xbb\x4f\xd6\xd9\xec\x7c\x70\x5a\x8d\x03\xa6\x9c\x0b\x2c\xe0\x9c\x5b\x0e\xd3\x2b\xc4\x0b\x52\x4e\x07\x16\xc8\x4b\xc2\x28\xda\xf2\x82\xf8\xef\x7f\xfc\xc7\x44\x83\x46\xd1\x86\x0b\x1e\xa6\x81\x97\x0b\xcd\x49\xc4\x90\xd1\x18\x6e\x98\xe5\xb8\x3e\x01\x39\x7d\x52\x28\x24\x3b\xa5\x71\x89\xc0\x1c\x32\xf3\xfc\xce\x24\xcf\xd6\x19\xca\xe6\x87\x15\xe3\x55\x2e\x17\x20\x10\xe6\x52\xf9\x21\x6a\xb9\x5c\xd4\x4d\x4b\xf3\x8c\xef\x3c\x11\x5c\xa6\xd5\xa0\xc8\x35\x31\x58\xbd\x50\x50\x60\x35\xbd\xe8\x89\x1c\x5a\x02\x1e\x53\x35\x25\xe6\xc1\xb0\x0a\xc8\x3a\x82\x12\x91\xde\x51\x81\x75\xa4\x17\xd4\x18\xb8\x84\xd4\x86\x74\x13\xf6\x47\x4f\x85\x70\xe6\x15\xf9\xa9\xae\x1d\xb3\x9d\x97\xe1\xeb\xdd\x8b\xd3\x8d\xab\x37\xfb\xe1\x71\x0d\xcb\xcb\xa9\xf5\x49\x59\x22\x82\x65\x02\x2e\x70\xba\x23\x04\x70\xdc\x68\xff\xe2\x21\x8b\xef\x5f\x5e\x2e\x55\x31\x10\xa7\x42\x2b\x82\xf9\x23\xbe\x16\xe2\xe6\x42\x27\x4f\xf4\x4d\xf7\xeb\x5b\xb1\xba\x8e\xe1\x72\xe9\x4b\x68\xb9\x15\x0c\xdd\x19\xde\x10\xea\xb8\x2f\xc7\x80\x59\xde\x94\xb3\xe6\x94\x72\xf4\x3a\x0d\x83\x44\x5f\xca\xd4\x4a\xae\x39\x6c\x69\x5c\x64\x34\x8d\xd1\x1c\x2a\xd1\xc4\x9b\xf1\x02\x46\x9e\x89\x55\x93\x22\x1a\x28\xb2\x04\x27\x04\x01\xef\xb0\x41\x8c\xcb\x14\xab\x23\x78\x20\xa5\x8a\x96\xd7\xcb\x5e\x7e\x44\x17\x4c\x14\xf6\x15\xf5\xc4\x8f\xc7\xd3\x6b\x27\x89\xa0\xe2\x2e\x40\x84\xb4\x87\x1e\xfe\x22\x44\x76\x62\x30\xbd\xb8\x54\xcd\x5c\x7c\x0e\xfb\xf7\x49\x93\x41\x49\xfa\x11\x69\x81\x0a\x14\xce\xb4\xc3\x68\xbb\xc4\x76\x18\x2f\x17\x9d\xc7\x25\x96\xe6\x08\x40\xba\x57\xde\xb0\x83\x25\x22\xad\x60\x8b\xa0\x5c\x9f\xe8\x4a\x23\xc4\x4c\xfc\x99\x14\x35\xf1\xeb\x40\xd9\xb1\x6f\x9a\xe0\xac\x02\xa1\x7d\xc3\xea\x54\x3f\x08\xc9\xb7\x08\xc0\x74\x84\xea\x15\x91\xbc\x52\x10\x82\xb3\xe0\x2e\x86\x06\x25\x66\x80\x33\xe1\xd7\x92\x60\xc3\x79\x4c\x33\x75\x53\x2f\xe6\xbe\xf8\x3c\xdb\x5d\x7b\xdd\xdd\x58\x49\x02\x71\xce\xab\x68\x0e\xa1\xe1\x1c\x49\x0d\xc1\x0a\x64\x29\x5a\xde\x57\x4e\x8c\xec\x9d\xeb\x0c\xc5\x6e\xb1\xcf\xaf\xfd\xf9\x0f\xc9\xdb\x0b\x0d\x9f\x68\xb8\x68\xdd\x14\x1f\x2b\x00\x0c\xe8\x05\xbd\xec\x41\x94\x96\x89\xee\xd4\xbc\x22\x07\x62\x71\xff\xce\x63\xb9\x7a\x6f\x89\x12\x90\x4e\xa8\x61\x90\x4c\xe2\xed\xf2\xe2\x01\x72\x98\xcc\xdb\x96\xe7\xd8\x45\x0c\x01\xa0\xd9\x8e\x39\x6c\x5a\xc4\xeb\x62\x7a\x29\xff\xe1\xae\xdf\x5a\x42\xb7\x9d\x88\xae\x79\x9e\x9e\x1f\x81\xd0\x8e\xe2\x76\x06\xdb\xfa\x04\x75\x93\x50\x7d\xae\x68\x05\x00\xb8\xbf\x38\xd3\xa7\x94\xf6\x61\xc5\xe3\xcc\xad\x02\x2f\xd9\xef\x34\x96\x3b\x01\x87\x1c\xf7\x25\xbc\xb6\x08\x28\x23\xd8\x48\x70\x86\x48\x4a\xc6\x14\xce\xa8\xdf\x88\x29\x5c\x48\x7f\xf0\x3e\x23\xc4\x7a\x49\x61\xa3\xa7\xb6\x1c\x2f\xc2\xa7\x0b\x1a\xa9\xb5\x28\x90\x14\x54\xbb\x64\x0e\xca\x26\x18\xef\xc9\x39\xd8\x7c\x17\xcc\xce\xc4\xe7\x80\x40\x06\x28\xf8\x00\xca\x34\x28\x75\x11\x67\x0b\x01\x08\x50\xb4\x89\xaf\xb4\xa8\x8a\xa6\xfc\xbd\xf5\xc9\x66\xe0\xbd\xf5\x87\x1d\x11\xf9\x00\x0d\x9f\xbe\xa0\xdf\x59\xbf\xb5\x94\x84\x15\x77\x91\xa8\x23\x18\x35\x59\x07\x9b\x4b\x56\x23\x52\x3a\x64\x14\x0c\x47\xf7\x8c\x02\x75\x57\xa8\x0e\xff\x20\xbe\x8b\xea\xa2\x3e\x65\x6a\x14\xa7\x05\x9c\x6d\xe2\xf3\x87\x10\xf2\xb1\x45\x9e\x7b\xb2\x33\x02\x2b\x70\x22\x00\xa2\x8a\x88\xf7\x4d\x58\x23\xb7\x9b\x38\x66\x19\x74\x1f\xf6\x56\x7c\x33\x89\x32\x0a\xee\x09\x04\xd0\xae\x78\x14\xe2\x37\x3c\x9e\xf2\xd7\x8e\x93\xb0\xef\x7f\xe3\x12\x35\x86\x4d\x49\x20\xc0\xe2\x28\xd6\xad\x61\xd3\x93\xab\x00\x51\xe3\x46\xcc\xe1\x91\xa2\x39\x3c\x22\xb4\x2a\x14\x14\xad\x71\xe2\x37\x56\xc2\xc6\x81\xff\xea\x7e\xf7\xf9\x7a\xa7\x15\x43\xc0\xf7\x30\x54\x2e\x9a\x16\x58\x7f\xf0\x2a\xe1\x36\xe5\x16\xbe\x38\xad\x41\x4e\xd5\x67\xc2\x1d\x61\xb6\x6f\x5d\x2d\x3f\xa2\x3b\x7a\x1e\x92\xc3\x52\xc3\xa8\x92\x52\x10\x85\xdb\x73\xfd\x50\xe0\x39\xc2\x8a\xbd\xe7\x08\xab\x43\x8c\xb9\xa5\x4e\x6b\x27\x81\x64\x38\xaf\xe9\xce\x30\xd8\x44\xb2\xc5\x09\x45\xc6\x84\x16\x40\x65\x64\xc8\x85\x41\x35\x51\x7c\x61\x10\x0e\x36\x98\x00\xc3\x1d\x86\x3a\x9d\x5e\xe0\x7c\xd1\xb6\x22\x94\xe8\xd2\xda\x0b\x05\x41\x8b\xe5\x86\xe8\x83\x8a\x2c\x3a\x39\xc8\x17\x9f\x67\xa9\x5c\x00\x14\xed\x61\x79\xdf\x83\xf2\x3d\xbe\x03\x78\x31\x2a\xb6\x22\xa5\x22\x80\xd1\x0c\x26\x15\x8c\x1c\x1e\x34\x0f\x71\xad\x03\xff\x2c\xa2\xc6\x90\xdc\x20\xdc\x37\x07\xf2\x8e\x6d\xe5\x3e\x77\x6c\x2b\x8b\x3e\x61\xb2\x80\x8c\x91\xda\xd1\x83\xab\x28\x71\xf3\x23\x46\xa1\x52\x94\xa5\x87\xb3\xfe\xc2\xdd\xa8\x1e\x08\x37\x60\xa4\xab\xda\xd1\xca\x72\x50\x6e\xd9\x15\x97\x6c\x61\x53\x61\x8c\xef\x8c\x7c\x45\x5a\xf5\xc7\xec\x60\x23\x34\x36\x3e\x7d\xc2\x13\x55\xa7\x79\x10\x9e\x6f\x06\xfb\x77\x64\x39\x45\x44\xe3\xdf\x28\xe2\x80\xec\x3e\x6a\xab\x4f\xab\x6c\xef\xce\x25\xed\x82\xed\xab\xda\x39\xe1\x0c\x2b\x9c\x30\x29\x91\x3f\x58\x3d\xa4\xf8\xc7\x0a\x68\x88\x75\x58\x30\x3c\xce\x5a\x12\xd7\x4a\x41\x0f\x01\x3a\x6c\x3c\xf5\x6f\x4d\x49\x68\x3d\x8f\xcb\x44\x8f\xaa\xb2\x49\xa3\xc8\x85\x74\xbd\x58\xe4\x0b\xd8\x69\x1e\xb0\xa9\xfd\xee\xad\x7d\x59\x5e\x30\x14\x08\x8a\x7b\x8d\xc9\xfc\x01\x5a\xc2\x99\x16\xf2\xd4\x08\x0d\x0c\x39\x70\xd0\x09\x30\x7a\xc5\x45\x28\x30\xe1\x85\x50\x9e\x00\xc4\x77\x4f\x02\x0e\x1a\x55\x9d\xe3\x60\x64\x12\x0a\xf3\x04\xe0\xdc\x20\x6d\x55\x4b\xb4\x4f\xe8\xfa\x52\x07\x93\xcf\xd1\xa2\x89\x6f\x76\x39\x39\x25\xa2\x8f\xc2\x0c\x50\x59\x81\x1e\x63\xc0\x6f\x71\x5a\xaf\x8b\x40\x5a\x60\x28\x49\x16\xaf\x2d\xca\x1b\x17\x0f\x4f\x7c\xd5\xfd\xf4\x63\xfd\xb3\x8c\x63\x58\x32\xfd\x61\x77\x66\x1e\xb3\x72\x0a\x78\x08\xad\x7f\xf5\xdb\x4f\xae\xbb\x32\xcc\x7e\xb3\xa5\xa0\xf9\xf6\xd7\xd7\x39\xa6\x6f\x7f\x73\x1d\x91\xa1\x9a\x99\x9c\xc7\xd1\x39\xbe\x35\xad\xc2\x7f\x72\xdd\xfd\xd8\x75\xf2\x1f\x27\x6b\x2a\x59\xd5\x31\xf6\x78\xed\x28\x51\x8d\x03\xff\x97\xa8\x99\xb2\xee\x18\xe4\x96\x0c\x7e\x70\x7e\x63\x25\x8b\x11\x3a\x55\x85\x76\x46\x66\xc8\xc2\xf9\x38\x9a\x8e\x8f\x4c\x0e\x4b\x26\x08\x4c\x9d\x23\x9a\x53\x30\x2f\xcc\xfd\x55\xce\x2a\xda\x19\xaa\x35\x3e\x46\x0b\xc4\x8f\xb1\xee\xdf\xc1\x28\x39\x86\xbf\x66\xf2\x45\xdb\x8d\x30\x80\xbc\xfb\x81\x18\x1c\xc3\x2e\x1b\x96\x40\xa1\x86\x86\xff\xd0\xae\x50\x44\x76\xc2\x84\x3e\xc4\x1f\x8a\x03\x67\x24\x16\xfc\x5e\x99\x18\x25\xb0\x7d\x0c\x1f\xe4\x0d\xed\x3b\x3b\x09\x6c\x72\x92\x3e\x14\x1b\xcd\x54\x1c\x5d\x72\xc2\x3e\x14\x29\xe4\x37\x4d\x76\x11\x90\xfc\x4d\x03\xc6\xf9\xc3\x74\xe5\xd1\x39\x25\xf7\x05\x38\x0b\xbf\xf0\xd8\x5c\x76\x4e\x88\x80\xc8\x56\x20\xeb\x54\xcf\x81\x54\xf1\x29\xad\xd3\xd9\xff\xb5\x3c\xfb\x19\xc8\xee\xe0\xe9\xc3\xd1\xd1\x46\x97\xed\xd8\x88\xa1\x9b\x80\xf3\xd7\x97\xf6\xf1\x37\xf1\x3e\x72\xb4\xbf\xb0\x83\xa2\xd1\xde\x0e\x42\x0a\x0b\x24\x3e\x98\x0c\xf0\x52\xca\xa7\x66\x4e\x87\x9c\x16\x9d\xf6\x82\x9a\x35\xfd\x3f\x85\x74\xa9\x8d\x52\xa2\x90\xde\x66\x69\x1b\x9c\xde\x87\x44\xc3\xff\x03\x93\xab\xb6\x46\xf6\x4f\x89\xd6\xf8\xfe\x6d\x2f\x5c\x32\xe1\x59\xb9\x2a\xa2\x3f\xbd\xf3\x9e\xf9\xd6\xb3\xed\xe2\xf5\x8c\x3e\x6c\xe7\x3a\x27\x77\xd8\xec\x7c\x06\x8c\x1d\x2c\x7b\x34\x87\x61\x7c\x33\xfc\x4f\x56\xdb\x60\xb5\x8d\xcc\x27\x6e\xee\x93\x6c\xb0\x77\xf7\xaa\x9b\xf9\xa4\x94\xfb\x04\x4c\xec\xee\x6e\xf1\x5f\x23\xfc\xd7\xd1\xa2\xbf\x76\xcc\x7f\x15\xf8\xaf\x9d\x1f\xf9\x9f\xa3\xfc\xcf\xe5\x7d\xa8\x61\x5b\xb9\x4f\xb2\x7e\xbd\xc6\x7f\x8c\xf1\xef\x27\xaf\xaf\xba\x19\xd7\xc8\xdb\x56\xc1\xcd\x5d\x2d\x10\xea\x92\x69\x55\x3c\x03\x3e\xc8\x06\x46\xec\x8a\x83\x5f\x44\x23\xf0\xc8\xc3\x3f\x40\x3b\xa3\x86\x71\x03\x7f\x42\x5b\x25\xdb\xf2\x46\xe0\x37\x36\x37\x66\xe8\x54\x1d\x9a\x74\xf4\x51\x4d\x34\x1b\xec\xdd\x85\xdf\xa2\x55\x6c\x12\x3e\x61\xa3\xd8\x62\x26\xf3\x6d\xc1\xb1\xcb\xdf\xdb\x96\x71\x3d\x23\xc4\xbc\x92\xe1\x82\x37\x9d\x7f\x67\xd5\xdf\x7c\x45\xef\x84\xb5\x23\x8a\x07\x57\x5b\xc5\xd4\xde\xf4\xb4\x49\x91\x4b\x35\xd3\x2a\x57\x44\x7e\x22\x91\x06\x99\xe4\xe2\xc6\x2e\xf2\x20\xfc\xa8\xa0\x92\x1e\x18\x6c\xcf\xb6\xb5\x41\xce\x85\xe3\xcb\xe7\xd9\xbd\x60\xaf\x71\x71\x5a\xfb\xb7\x7f\x03\xb9\xc5\xfc\xde\xf8\xf7\x7f\xcf\x7e\xf5\xbb\x8b\xd3\xd9\xf0\x78\x2a\x3c\x9f\xe1\xdb\x50\x71\x9e\x51\xe0\x4b\xfa\x77\x7f\x48\x54\xc9\x50\x74\x19\x78\x1f\xa0\xa8\x6a\xd8\x74\xe6\xff\x0b\x00\x00\xff\xff\xee\xc4\xcf\x16\x43\x00\x01\x00" func confLocaleLocale_zhCnIniBytes() ([]byte, error) { return bindataRead( @@ -5044,8 +5044,8 @@ func confLocaleLocale_zhCnIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 65631, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0x3f, 0x2e, 0x83, 0x0, 0xda, 0x89, 0x25, 0x37, 0xd5, 0x87, 0x5, 0xaf, 0xae, 0xf9, 0xa9, 0x4, 0x68, 0xb6, 0x13, 0xbf, 0x16, 0x57, 0xaa, 0xd, 0x4, 0x27, 0xcf, 0xc6, 0x26, 0xfa, 0xc7}} + info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 65603, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x31, 0xfe, 0x6a, 0x11, 0xc3, 0x85, 0x4a, 0xf1, 0xa4, 0xe2, 0xbf, 0xb2, 0x82, 0xd3, 0x9f, 0x5b, 0x40, 0x57, 0x6b, 0x16, 0x9b, 0x7c, 0xdb, 0xf, 0xfa, 0xc1, 0x36, 0x5e, 0x57, 0xcc, 0x4d, 0x4f}} return a, nil } @@ -5064,7 +5064,7 @@ func confLocaleLocale_zhHkIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 66058, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 66058, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0xc3, 0xcc, 0xec, 0x99, 0x39, 0x91, 0x93, 0x9c, 0x56, 0x5e, 0x21, 0xa6, 0xf9, 0x9c, 0x45, 0xee, 0x57, 0xe4, 0x85, 0x56, 0xb1, 0xb, 0xb4, 0x6d, 0x63, 0xce, 0x1f, 0xed, 0x84, 0x33, 0x6b}} return a, nil } @@ -5084,7 +5084,7 @@ func confLocaleLocale_zhTwIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 65354, mode: os.FileMode(0644), modTime: time.Unix(1584900128, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 65354, mode: os.FileMode(0644), modTime: time.Unix(1586160896, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0x18, 0x4d, 0xc2, 0xb6, 0x5a, 0x16, 0x50, 0xe0, 0x1e, 0x6d, 0x10, 0x15, 0x7c, 0x48, 0x9f, 0x5f, 0x7e, 0x35, 0xc7, 0xe1, 0xc0, 0xf1, 0xdf, 0x46, 0xf7, 0xa5, 0x20, 0x5b, 0x23, 0xb9, 0x53}} return a, nil } diff --git a/internal/assets/public/public_gen.go b/internal/assets/public/public_gen.go index 7e19bcf12..c6da5f5c5 100644 --- a/internal/assets/public/public_gen.go +++ b/internal/assets/public/public_gen.go @@ -14,7 +14,6 @@ // ../../../public/assets/octicons-4.3.0/octicons.ttf (43.92kB) // ../../../public/assets/octicons-4.3.0/octicons.woff (24.004kB) // ../../../public/assets/octicons-4.3.0/octicons.woff2 (20.248kB) -// ../../../public/css/github.min.css (1.413kB) // ../../../public/css/gogs.min.css (64.344kB) // ../../../public/css/gogs.min.css.map (22.931kB) // ../../../public/css/semantic-2.4.2.min.css (628.438kB) @@ -925,7 +924,7 @@ // ../../../public/img/favicon.png (40.432kB) // ../../../public/img/gogs-hero.png (35.001kB) // ../../../public/img/slack.png (4.35kB) -// ../../../public/js/gogs.js (51.365kB) +// ../../../public/js/gogs.js (47.795kB) // ../../../public/js/jquery-3.4.1.min.js (88.145kB) // ../../../public/js/libs/clipboard-2.0.4.min.js (10.754kB) // ../../../public/js/libs/emojify-1.1.0.min.js (13.252kB) @@ -1687,26 +1686,6 @@ func assetsOcticons430OcticonsWoff2() (*asset, error) { return a, nil } -var _cssGithubMinCss = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\xdd\x8e\xe3\x2c\x0c\x7d\x95\x4a\x73\x9b\x89\xf2\x7d\x9d\x99\x6d\xd2\x87\x19\x19\x70\x12\x5a\x82\x59\x30\x6d\xa3\xaa\xef\xbe\x4a\x1b\xf2\x33\xdd\x6a\x95\x9b\x60\x83\x7d\xce\xf1\x81\xbc\x35\x87\x70\x55\x3a\x38\x03\x7d\x25\x0c\xc9\xe3\x9e\x4e\xe8\x6b\x43\xe7\xf7\x4b\x05\x91\x69\xef\x40\x29\x6d\x9b\x2a\xff\xc4\x6e\x2f\xc9\x90\xaf\xde\xb6\xdb\xed\x5e\x80\x3c\x36\x9e\xa2\x55\xd5\x5b\xbd\x1b\xbe\xdb\xbd\xdc\xbb\xa4\xae\x43\xcb\xd9\x63\xc5\xd8\x39\x03\x8c\xdf\x53\x58\xe9\xba\xde\x3c\x92\x2d\x82\x42\x3f\xee\x3c\xc0\x09\x14\xc9\xeb\xd8\xa3\x2c\x77\xfb\x9a\x2c\xbf\x07\xee\x0d\x56\x9a\xc1\x68\x39\xb6\x38\x62\x7f\x26\xaf\xb2\x5c\x86\xb0\xc9\x7d\x34\xb8\xf9\x91\xb8\xaf\xce\xda\x46\xd6\x26\x64\xf9\x50\x3b\x48\xaf\x1d\x8f\x1b\x59\xb3\xc1\x2c\xb7\x8d\xb6\x97\x75\xe8\xfe\x1f\xa2\x08\x89\x81\xc7\xdf\x11\xa7\x55\x60\xe0\x18\xae\x0b\x21\xee\x20\xcf\xa8\x9b\x96\x2b\x41\x46\x8d\x18\x6d\xec\xc4\xc4\xad\xc5\xcb\xfd\x44\x96\xfb\x28\xfa\x4d\x12\xca\x06\x06\xcb\xa9\x58\x51\x96\xb7\xd4\xc4\x6b\xdb\x24\x05\xa1\x19\x0f\x9c\xc0\xc4\x84\xd0\xb5\x4e\x91\xcc\x72\xc6\x84\xbf\x26\xdf\x45\x03\xa9\x9a\xfa\xef\xe3\xf6\x4c\x4c\x0f\xa2\x51\x5d\x23\xae\xe4\x70\xe0\xa1\x0b\x59\x1e\xee\x82\x3e\x42\x1e\x9d\x27\x89\x21\x90\x9f\x66\x52\x14\x7f\xa1\xfb\x4a\x5c\xa3\x83\x5b\x47\xa4\xa1\x43\xf4\xf8\x4a\xf0\xeb\xb2\xb6\x25\xdf\x81\x49\x9e\x32\x30\x01\x4b\xc7\x20\x1c\xd1\x98\x14\xec\x1d\x66\xf9\xa9\x55\x29\x60\x34\xa3\x07\xb3\x14\x68\x70\x20\x58\x95\xc8\x7c\x7c\xee\x5e\xcd\x8e\xe1\x59\xfc\x25\xda\xc1\x71\xb3\x4e\xe4\xd0\x73\x9f\xe5\xea\x00\xb6\xa1\xcd\xcf\x83\xa3\x27\xa7\x29\x17\x45\xb1\x5b\xcb\xb8\xa2\x0a\xcc\x5e\x8b\xc8\xa9\xd7\x09\xbc\x06\xf1\x43\x4f\x41\xaa\x9f\x0b\xee\x8a\x5d\x71\x4b\x66\x6d\xf0\xe2\xe6\x54\x59\xfe\xff\x95\x4c\xd5\x77\x82\xcc\xca\x81\x8f\xd0\x66\x6d\xba\x45\x9b\xe9\x3a\xcd\x22\x06\x87\x52\x0f\xba\x26\xf2\x9d\xe3\xf9\xca\x16\xc5\xaf\xed\xd8\x4e\x44\x6d\xf8\x5b\xdb\x7f\xfb\x20\xed\x5c\x10\xfa\x12\xa9\xcc\xd2\x86\x53\x53\x68\x3a\x48\x0b\x3d\xfe\x28\x92\x0f\x13\x3c\x60\xb6\x28\x60\xba\x42\x52\x01\xc3\x8c\xb2\x7c\x35\x77\x85\x06\x59\x93\xbd\xae\x1e\x37\x95\xd2\xc3\x4b\xf8\x94\x56\xb5\xba\x2d\xdf\x34\xd9\x82\x6d\x70\xb5\x65\x45\x48\xb6\xd1\x1e\x13\x16\x00\xb8\xfd\x09\x00\x00\xff\xff\xae\x37\xa9\x21\x85\x05\x00\x00" - -func cssGithubMinCssBytes() ([]byte, error) { - return bindataRead( - _cssGithubMinCss, - "css/github.min.css", - ) -} - -func cssGithubMinCss() (*asset, error) { - bytes, err := cssGithubMinCssBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "css/github.min.css", size: 1413, mode: os.FileMode(0644), modTime: time.Unix(1584214162, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x76, 0x20, 0x5b, 0x59, 0xa1, 0x52, 0x6b, 0xab, 0x4e, 0x6f, 0xa6, 0x1, 0x65, 0xe1, 0x9c, 0x8b, 0x92, 0x88, 0x4f, 0xc9, 0xea, 0xa4, 0xd5, 0xd3, 0x41, 0xc6, 0x7b, 0x36, 0x3a, 0xeb, 0x2e}} - return a, nil -} - var _cssGogsMinCss = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x7d\x6b\x6f\xeb\x4a\x92\xd8\x5f\x61\x8e\x71\x80\xeb\xbb\x26\x87\x7a\x50\x96\x25\x8c\x91\xc5\x4c\x80\x5d\x60\x6f\x16\x48\xb0\x1f\x82\x9b\x8b\xa0\x45\xb6\xa4\x1e\x93\x6c\x2e\x49\xf9\x71\x04\xff\xf7\xa0\x5f\x64\x3f\xaa\x49\x4a\xf2\xc9\x0c\x02\xe1\xf8\x48\x64\x55\x75\xf5\xbb\xaa\xba\xaa\x3a\xc2\x05\xfd\x1b\x39\xbf\x91\xac\x3d\x6e\x66\x51\x82\x8b\xed\x11\x93\xc3\xb1\x95\x3f\x32\xd2\x54\x39\xfa\xd8\x90\x32\x27\x25\x0e\x77\x39\x4d\x5f\xb6\x3b\x94\xbe\x1c\x6a\x7a\x2a\xb3\xb0\x21\x3f\xf0\x26\xa5\x65\x8b\x48\xf9\xb9\xa3\xd9\xc7\xa6\xa4\xed\x2f\xd1\xfe\x94\xe7\x21\x27\x7a\x7f\xde\xd3\xb2\x0d\xf7\xa8\x20\xf9\xc7\xe6\xdb\xbf\xe0\xfc\x15\xb7\x24\x45\xc1\x7f\xc7\x27\xfc\xed\xe1\xdb\x6f\x24\xad\x69\x43\xf7\x6d\xf0\xbf\xd0\xbf\x60\xf2\xed\xe1\x9f\x6b\x82\xf2\x87\x0e\xee\xa1\x41\x65\x13\x36\xb8\x26\xfb\xff\x42\x8a\x8a\xd6\x2d\x2a\x5b\x9d\x83\x94\xe6\xb4\xde\xdc\xed\xf7\xfb\x2d\x7d\xc5\xf5\x3e\xa7\x6f\xe1\xc7\xa6\x49\x6b\x9a\xe7\xfd\x93\xf7\x0d\x3a\xb5\x74\x5b\x90\x32\x94\x75\x8d\xe7\x71\xf5\xfe\x19\x9d\x48\x24\xd9\xc7\xb5\xe4\x3d\x3f\x91\xec\x5e\x36\xc9\xd3\x3a\xae\xde\xfb\x82\x39\xfc\xee\xd4\xb6\xb4\x14\xc0\x39\xda\xe1\xfc\xfe\x81\x3d\x3e\x62\x94\xe1\x9a\x7f\x25\x65\x75\x6a\x03\xfe\x97\xff\x2e\x70\x79\x7a\x38\xce\x1e\x8e\xf3\x87\xe3\xe2\xe1\xb8\x7c\x38\x26\x3f\xa3\x59\x3e\x49\x71\x38\xef\x68\x9d\xe1\x3a\xac\x51\x46\x4e\xcd\x66\x51\xbd\x7f\xa6\x34\xc3\x0f\x55\x8d\x8d\x22\xff\x42\xcb\x86\xe6\xa8\x79\xf8\x37\xb2\xc3\x35\x6a\x09\x2d\x83\xdf\x68\x49\x1f\x7e\xc3\x65\x4e\x1f\x0a\x5a\xd2\xa6\x42\x29\xe6\xd8\x51\x8d\xde\x18\x05\xf6\xff\xb9\x42\x59\x46\xca\xc3\xe6\xb1\x7a\x0f\x66\xf3\xea\x7d\x5b\xa0\xfa\x40\xca\xcd\x2c\xae\xde\x83\x18\xea\x9a\x35\xfb\x6c\x05\x63\x9b\x59\xf5\x1e\x34\x34\x27\x59\x70\x97\x65\xd9\xd6\x61\x77\xcb\xb9\xe4\xe3\x6a\xc6\x7e\xf2\x71\xd7\x8f\xc9\xae\x4b\x79\x87\x0a\xee\xde\x6a\x54\x71\xf6\xd8\x97\xf3\xdb\x91\xb4\x38\xe4\xcc\x6f\xaa\x1a\x87\xec\xe1\xf6\x8d\xd6\x59\xb8\xab\x31\x7a\xd9\xf0\xbf\x21\x7b\xf0\x19\x65\xac\x2c\xf1\x80\x9e\xda\x73\x37\x5c\x18\x8e\x06\x28\xd0\xed\x87\x61\xd1\x84\x0e\x5d\x94\xe7\x6e\x61\xe0\xc3\x8e\xc6\xf1\xa3\x3a\xe2\xb2\x11\x23\x34\x2c\xe8\x0f\xeb\xc9\x1b\xde\xbd\x90\xd6\x7c\xa8\xff\xf8\xe4\xd3\x2d\x12\x6d\xd4\x75\x4f\xac\xfa\x25\x0e\xe2\x20\x5c\x8b\xce\x61\xe3\x5f\xb5\x65\x1c\x7f\xff\x8c\xf6\x34\xcf\xe9\x1b\x29\x0f\xd1\x0e\xd5\xe7\x1f\x21\x29\x33\xfc\xbe\x79\x8a\xe3\x6d\x8e\xf7\xed\x26\xde\xaa\xd9\xe2\x00\x47\x39\x2f\x0e\x9e\x89\xb2\x57\x77\xb4\x6d\x69\xe1\x76\xf9\x7b\xd8\x1c\x51\x46\xdf\x36\x71\x30\xaf\xde\x83\x45\xf5\x1e\xd4\x87\x1d\xfa\x25\x7e\x60\x9f\x28\x5e\xde\x5b\x85\x05\x51\x4a\xf3\x53\x51\x06\x7c\x2a\x9d\x45\xcd\xc2\x96\x56\x9b\xd8\x81\x6c\x69\xc5\xa1\x02\x14\x91\x16\x17\xd1\xae\x46\x65\xa6\x9a\x25\x94\xd5\x52\x3f\x6b\xde\x16\x2e\x11\x8e\x14\xf0\xb9\x4b\x4a\x12\x91\x02\x1d\xb0\x5c\x12\x16\x7c\xdd\xf0\x15\x1a\x65\x35\xad\x32\xfa\x56\x8a\xc2\x51\xda\x92\x57\xfc\x30\x11\x7c\x73\x64\x23\xd0\x0f\x8d\x34\x28\xb7\xe5\xdb\x1a\x95\x4d\x85\x6a\xcc\xd6\xa9\x49\x24\x04\x9e\xde\xf4\xcb\xc4\x6d\xfa\x9e\x59\xde\xf8\xda\x20\x71\x40\x49\x4a\x4b\x87\x7d\x9a\xb6\xec\xb9\xea\x35\xd1\xe4\x89\xb9\xac\x5a\x28\x6c\x2d\x8d\x72\x52\xbe\x70\x6e\xcf\x56\x6f\x0d\x20\xa2\x57\xd4\xa2\xfa\x99\x2f\xc2\xbc\xcf\x8c\x42\x5d\x86\x05\x7c\xc7\x63\xd8\xd6\x04\x95\x87\x1c\x87\xac\x4f\xf4\x71\xb6\x8a\x12\xa0\xdb\x1b\x8c\xea\xf4\xb8\xa3\xef\xd0\x3c\x58\xb2\xcf\x00\xaf\x1d\xf2\x66\x4f\xd3\x53\x03\x90\xc0\x4f\xec\x33\x40\xa2\xc5\xef\x6d\xdf\xc0\x72\xae\xae\xaa\xf7\x2d\x7b\x11\xa2\x9c\x1c\xca\x4d\x8a\xcb\x16\xd7\x0e\x2a\x6f\x11\xbd\x5f\xf9\xcc\xe0\x8b\x8b\xaf\xb1\x74\x14\x35\x6e\xc1\x19\x79\x22\x11\xa3\x76\xde\xe7\x14\xb5\x1b\xf6\x95\x3f\xe3\xf8\xf2\x21\xff\x6e\x6e\xbf\x62\xe7\x8d\x58\x67\xe3\xac\x5f\xc7\x02\xb1\xb1\xf0\xff\x38\xc2\x9e\xd6\x45\xd0\x6f\xc4\x62\x5b\x7b\x13\xab\xda\x32\x8e\x35\x98\x1d\x7d\x8f\xf6\x04\xe7\xd6\xf4\x9f\x3f\x4a\x4a\x7c\x5f\x66\x5f\x1a\x7c\x28\x70\x29\x36\xeb\x57\x5c\xb3\x1d\x36\x17\x15\xd3\x16\xab\x92\x96\x98\xa1\x89\x66\x8f\x6a\x9c\xc9\x09\x74\x97\x3d\x25\x69\x92\x9a\x62\x42\x0f\x15\xa0\xa9\x70\xc6\xb4\xbc\xc3\xab\xc7\xc7\xc7\x47\x10\x7a\x97\x9f\xb0\x02\x5b\xce\xd7\xbb\x14\x79\xc1\xfa\xd2\x67\x9e\xa2\x05\x94\x59\xf6\x20\x51\x94\xbe\x74\x70\xcb\xa5\xfd\xca\x24\x14\x8b\x0e\x91\x00\x87\x1a\x7f\xa8\x37\x8f\x2b\xf6\x01\x8b\x60\x60\x3d\xdf\xcb\xe5\x72\x00\xca\x29\x0e\x84\xe5\x9b\x95\x51\xfc\x7a\xbd\xf6\x51\xc5\xa5\x02\x5a\xa5\xe9\xca\x53\x7a\x75\xaa\xab\xbc\xeb\x84\x15\x4e\x96\x4f\x30\xe0\x07\x66\x93\x48\x01\xee\x77\xbb\x2c\xf6\x94\x4c\xf3\x6e\x44\xa1\xd9\x7a\x3d\xdf\xc1\x55\x61\x33\x4b\x9b\xdf\xec\x37\x3c\xa4\xf8\x74\xd3\x20\xf9\x03\x10\xb4\x29\x50\x9e\x9f\x7b\xc9\x2b\x7a\x4c\x70\xa1\xbd\x2f\x69\x5d\xa0\x1c\x9a\x69\xaa\xe7\x19\xef\xfa\xeb\x47\xe3\x35\x69\x51\x4e\x52\x59\x40\xfb\x91\xe3\x8d\x78\xa2\x81\xb4\xf5\xa9\x4c\x51\x8b\x3b\x21\x6c\x73\x24\x59\x86\x4b\xb1\x94\x75\x0f\x71\x9e\x93\xaa\x21\xcd\x56\x17\xf3\x4a\xca\x85\x3c\x48\x59\xd1\x4b\x38\x12\x70\xb1\x90\xaf\x0b\x92\x65\x39\x3e\xab\xe9\x2f\xdb\x4c\x3c\x15\x60\x05\x6e\x1a\xb6\xa7\x00\x8b\x2b\x7b\x2d\x14\x80\x67\xf2\x4f\x7c\x49\xc3\x65\x6b\xae\x3a\xd1\x63\x52\xe3\x62\x3b\x40\xff\x0d\xd5\x25\x5b\x6c\x05\x21\x68\x4b\x79\xc2\xd9\x0e\xeb\x7a\x90\x90\xb3\xd4\xeb\x38\x5d\xac\x32\x93\x96\x5c\xd9\xce\x7e\x48\x52\xee\xa9\x05\xa6\x4b\x6c\x69\x92\x25\x19\x00\xca\xc4\x02\x68\xcb\x5a\xed\x67\x7b\x67\x56\xdb\x88\xc1\x71\xf1\xe0\x79\xb1\x74\xf6\x12\x10\x7d\x93\xa3\xa6\x0d\xd3\x23\xc9\x33\x1d\x61\x29\x56\x76\x17\xe5\x19\x40\x90\xe2\xa9\x2c\x44\x8c\x71\xd5\xf8\xe0\x38\x11\xd2\x82\x94\x2c\x5c\x45\x8b\xc3\x88\x9d\x67\x8f\x5e\xf0\x59\x8d\x47\xb6\x71\xd8\x2d\x22\xc0\x9a\xd3\x4e\x6e\x50\x92\x25\xb1\x3f\x25\x8a\x58\x73\x44\x42\xc5\xbc\x4a\x77\xb3\x55\x29\xb5\xa5\xae\x98\xe6\xc6\x36\xd5\xa5\xfc\xb2\xb5\x6a\xdb\xab\x0e\x2b\xb9\x53\x36\x2d\x6a\x4f\x8d\xdc\x71\x1b\x8f\x4c\x27\x1b\x3f\x12\xf3\x2f\xca\x70\x8e\x5b\x1c\xca\x5d\x5a\x15\xbe\x66\x65\x26\x6e\x99\x9f\x91\x9a\xe3\x52\xc2\x60\x92\x5f\x73\x2e\xd0\xbb\xd2\x58\x16\x31\x63\x55\x53\xf2\x85\xf2\x03\xa1\x05\x52\x6e\xa4\x0d\x61\xad\xb3\xa9\x71\x8e\x98\x20\xbe\x4d\x4f\x75\x43\xeb\x4d\x45\x09\x9b\xb7\xdd\x8a\x21\xed\x1a\x62\xf0\xb3\xee\x52\x56\x10\x2e\x0f\xc9\x9e\x66\xe3\x8b\xbf\x33\x54\x52\x5c\x6c\x5d\x31\x7a\x7d\xdf\x35\x76\xf4\x38\x5b\xce\xd7\xc9\xe3\x0c\x17\xc1\x2c\x92\xdf\x97\xb8\xd0\x66\xb1\xd6\x4d\x6c\x85\xe0\xcb\x0b\x17\xe6\xd9\x20\x11\x45\xda\x1d\x64\x89\x25\x9d\x92\xd8\xd2\x53\x7a\x0c\x53\x94\xe7\xf4\xd4\x4a\x89\xc5\xdf\x40\x52\x3d\x71\x17\x6e\x3f\x8a\xa3\x7c\x18\xf5\x8e\x93\x7b\xb8\x35\x94\xd2\x30\x5b\x7c\x46\xc2\x36\xc3\x16\xa7\x9e\x7a\xd4\xe0\x1c\xa7\x2d\x76\x36\x11\x6d\xde\xec\x29\x6d\x71\xad\xcf\xf6\x64\xa9\x6b\x11\xaa\xcf\x96\x6c\x98\x0c\xea\xa5\x0c\x57\x57\x4a\x57\xec\xb3\x4d\x73\x8c\xea\xcd\x8e\xb6\x47\x4d\xeb\xdd\xf6\xe2\x82\x64\x20\xe8\x25\xd6\x6e\x81\xe7\x04\x99\x7c\xea\x80\xb0\xa5\x60\x50\x30\xdf\x1a\x12\x17\x44\x80\xe9\x41\xcd\xf3\xaf\x6a\xc1\xe1\x4b\x84\xcb\xbd\xb1\xd7\xac\x3b\xb3\x8c\xf8\x9d\xc0\xac\x09\xca\x9b\x3d\xa9\xbb\xa5\x51\x2f\x84\x0f\x1f\x85\xc6\x64\x7a\x54\x1e\x4e\xe8\x80\x3b\x99\xbf\x9b\x9a\x09\x34\x35\xb7\xe6\x32\xcb\x85\xee\x23\xc9\xcc\x75\xf1\x33\x92\xbf\xe4\xaa\x71\x36\x37\xf1\xcf\x48\xb4\x12\xb4\xe7\x96\x34\xd4\x2b\x6d\xa9\xf8\xfa\x82\x4b\x8a\x43\x38\x93\xbd\x30\x87\x86\xcc\xdc\xd4\x46\x19\xfc\x5c\xc2\xc3\x43\xcc\x85\x5f\x48\xf8\x15\x04\xbf\x72\xe1\x97\x12\x7e\x0d\xc1\xaf\x5d\xf8\x44\x8d\xa2\x18\x42\x98\xc5\x2e\xc6\x4a\x61\x80\x55\x9e\x01\x75\x7e\x54\x18\x60\xa5\x67\x40\xad\xd7\xda\xd8\x06\x30\x80\x7a\x3f\x29\x0c\xb0\xe2\x33\xa0\xe6\xb3\x58\x75\x1d\x58\xf5\x39\x50\xf5\x59\xd7\xdb\x70\x77\x03\x75\x9f\xa9\x0e\x9f\x83\x95\x9f\x03\x95\x9f\xa9\x3e\x9f\x83\xb5\x9f\x03\xb5\x9f\xa9\x6e\x9f\x83\xd5\x9f\x43\xd5\x4f\x34\xc3\x93\x8b\xb2\x80\xaa\xaf\xba\x7e\x01\x56\x7f\x61\x55\xbf\xa9\x43\x5a\xe6\x1f\xfd\x76\x89\x76\x0d\xcd\x4f\x2d\x56\xeb\x60\xf5\xde\xf5\x8f\x26\x46\x74\x62\x42\x38\xd3\x26\xbf\x12\xdb\xd3\x9c\x54\x9b\x1a\xa7\xad\xdc\x05\xe2\x7b\xb5\xbf\xc6\x5d\x89\x21\x37\x7c\xa0\x5d\x8e\x37\xca\x50\xe6\xbe\x11\xc6\x91\x8e\x37\x26\x89\x90\x54\x72\x26\x6c\xa1\xda\x56\xad\x04\x97\x9e\x9d\x57\xd2\x90\x5d\x8e\x05\x3f\x5c\x62\xf8\xaf\x05\xce\x08\x0a\x58\x31\x41\x93\x32\x75\x2f\x40\x65\x16\xfc\xc2\xd6\x33\x69\xf5\x7f\x9a\x55\xef\xf7\xf2\x69\x77\x64\xf0\xb8\x5a\x57\xef\xf7\x67\xc3\x66\xa1\x8e\x09\x92\xef\x9f\x9f\xd1\x31\xff\x9b\x6e\xc5\xd9\x90\xf2\x88\x6b\xa2\x69\x5c\x7d\xd3\x59\x47\x0a\xa6\x35\xe5\x99\x6f\x89\xcf\x42\xce\x7c\xf0\xbe\x27\xc5\xc1\x78\xf9\xcc\xf5\x18\x08\x4d\xbe\x21\xc5\x01\x56\x6f\xb6\xba\xc8\xbd\x75\xa4\xe3\x02\xd5\x2f\x8c\x0c\x3f\xf2\x48\x69\x86\xef\x1d\x25\x6d\xf0\x34\xa3\x3f\xb5\xf8\xf6\x3f\xf1\x81\xe2\xe0\x3f\xfe\x55\x1d\x68\xec\x6b\x8c\x1b\x54\x36\xda\x79\x86\x2e\x0e\xad\x9c\x03\x00\x4d\xb5\x00\xad\xf2\x10\xb7\xd1\x9e\xe4\x38\x7c\x25\xb8\x3f\xbc\x98\xe3\x22\x90\xff\xf4\xae\x70\x71\xcd\xdd\x51\x6f\xa7\x31\x3c\xbf\xbe\x31\x8c\x19\x20\xfe\xfd\xf7\x63\x8d\xf7\x7f\xdc\x4b\x83\x80\x1c\x4a\x42\x7c\xc8\x70\x4a\x85\xd8\x2f\xb7\x50\x80\x48\x84\x76\x0d\x53\xe8\xa4\x74\x91\xc6\x60\x3f\x06\x11\x2a\xd3\x23\xad\x81\xa9\x2f\xc6\x82\x34\x97\x9b\x72\xb2\x69\x8e\x5d\xf5\x4b\x82\xd8\x7a\xd9\x8a\x64\x48\x1f\xa1\x30\x99\xfb\x8b\x97\x73\x9c\x9e\x5a\xd6\xd9\xf0\x90\x0b\x8e\xb3\x07\xf0\xf1\x1c\x7e\xbc\x80\x1f\x2f\xe1\xc7\x09\xfc\x78\x05\xa8\x10\xda\x18\x60\xc2\xbf\xd9\xb7\x7c\xc4\x5a\x22\xac\x35\x82\x97\x9e\xda\xc9\x81\x46\xf7\x61\xfb\x51\x61\x4f\x5d\xa7\x00\x2d\xa6\x00\x2d\xa7\x00\x25\x53\x80\x56\x26\xd0\x05\x73\x24\x38\xce\x7a\xcb\x3b\x93\x45\x3d\x95\x9e\x02\xb4\x98\x02\xb4\x9c\x02\x94\x4c\x01\x5a\x99\x40\x86\x48\xbb\xed\x6d\x91\x3e\x6b\x0f\x3c\x00\xb8\x6a\xa5\xe6\x84\x6f\x00\x4c\x00\x5a\x4c\x01\x5a\x4e\x01\x4a\xa6\x00\xad\x4c\xa0\xf3\xa0\x26\xc2\xd7\x82\xe9\xcb\x98\xdd\x2a\x93\xc6\xcb\xe5\x28\x8b\xcb\x51\x96\x97\xa3\x24\x97\xa3\xac\x86\x50\xce\xb0\xc1\x13\x9e\x68\xdc\x0b\xc0\xf3\xae\x6d\x7d\x33\xcf\x8f\x35\xf7\x62\x2d\x06\xb0\x16\x5e\xac\xe5\x00\xd6\xd2\x8b\x95\x0c\x60\x25\x5e\xac\xd5\x00\xd6\x2a\x68\x5b\xcd\x12\x2e\x37\x5e\x4f\xab\x76\x63\x5d\x2e\xff\xd1\x02\x17\x9a\xfc\x32\x8f\xe6\x09\x2e\xac\xf5\x7f\xee\x3f\x1d\xc7\xd8\x37\x0b\xba\xc9\x65\xd0\x82\x81\xe7\x23\x5c\xcd\xb8\x75\xdf\xe6\x6a\x9e\x5c\xc1\xd7\xfc\x12\xbe\x16\x67\x9d\x07\x97\x85\xe5\xc2\x83\x07\x17\x12\xcd\x61\xf0\xa5\x51\xcc\x9c\x1f\x64\x78\x36\x83\x4b\xc8\x26\x3a\x59\x1f\xcd\xc4\x43\xd3\xd3\x22\x2b\x93\xa6\xda\x38\x1e\x1f\x1f\x3d\xf0\x17\x91\xe7\xcb\xc1\x7f\x9e\x68\x0b\x8f\xf4\x2c\x07\x1f\x53\xf8\x71\x05\x3f\xad\x61\xda\x2d\xd3\xdc\xc0\x37\xa7\xfc\x3c\xa0\x6c\xcc\x56\x1e\x41\xb1\xaf\x8b\x61\x29\xf7\x48\x8a\xf5\xb9\xb7\xd3\xb8\xea\x2a\x2b\x04\x74\x54\xc2\x8f\xec\xd3\xa9\xa9\x81\x77\x57\xf2\xb4\xd1\x29\xb7\xce\x99\x3d\xc3\x84\xe6\x51\x49\xc3\x9c\x34\xf0\xf2\x74\xea\x5e\x6b\xce\x3c\xec\xa7\x38\x3a\xe3\x52\x96\x7f\xc7\xa4\xb9\x8f\x3d\x9a\x07\x27\x1f\xe3\xfe\x2a\x8d\xf4\x18\xdc\x03\x7e\x26\x78\x51\x67\xbb\x36\x39\x7d\xc3\x75\x58\xd3\x02\x95\x20\xbd\x9c\x3c\x57\x3a\x17\xde\x71\x92\xe5\x7d\x9b\x79\x00\x82\xcc\x75\x92\xea\x88\x6e\xcd\x09\xe9\x1c\x58\xda\xb2\xbd\xb7\x0c\xc3\x81\x61\xd5\x0b\x41\x17\x0c\x74\x8d\x40\x52\xbd\x6b\x8b\xc3\x56\x37\xd2\x2e\x0d\xe7\xaa\x11\x9a\x7e\x6d\x76\x14\x71\xe8\xf8\xcc\xb7\x02\x9c\x4d\xbd\x51\xb3\xaa\x1b\x5e\x7c\xba\x6f\x9c\x38\x85\xd3\x9f\xbc\x60\x5c\x85\x28\xcf\xfd\xc5\x04\xed\xd1\x3d\xc2\xf0\x03\x67\xfe\x25\x8b\x51\x32\x4e\xc9\x16\x86\xfd\x0c\x74\x61\x1c\xd1\x71\x24\x5d\xf0\x38\xd7\x7b\x22\x91\xa6\xe9\x20\xb1\x4d\xd9\x1e\x45\x67\xfc\x32\x2f\xef\x21\xd2\xdc\xe7\x12\xa4\x41\x8a\xc3\xb9\x37\x75\xf1\xde\xe0\xa7\x49\xe4\x07\xab\x75\x27\x03\xc0\xc3\x93\x14\x87\xdf\xb9\x2a\xf3\x67\x36\xf8\xfe\x30\xcf\xff\x66\x5e\x35\x5f\x78\x19\xf7\xa5\x7a\x57\xaf\xa6\x42\x65\xb4\xaf\x51\x61\x8f\x1d\xcb\xe0\x34\x82\xfc\xcc\xbe\x5a\x14\x7a\x67\x24\xdd\x78\xa8\x79\xb3\x76\xfb\xc3\x82\xfb\x1b\xc5\x8e\x49\x13\xec\xfe\x11\x4e\xf8\x57\xde\xe6\x3e\x6e\x26\x11\x00\xea\xa3\x38\x4f\x24\xb7\xda\xf1\x95\x1c\x04\x8b\x05\x2c\x51\x71\xe2\xbc\x17\x43\x79\xba\x32\xd8\xd6\x1a\xe5\x69\xe4\xa0\xd6\xd7\xdb\x96\x35\x3c\xd0\xbc\xc0\x11\xcf\x94\xd2\xfa\x16\xee\x4e\xad\x79\xcf\x5e\x4c\x4e\xf8\xcb\x7c\x55\x53\x70\x6a\x63\x2d\x01\x8d\x32\xdb\x61\x67\x52\x41\x6e\x23\x5c\x40\x87\x8f\x45\x71\x86\xe6\x9d\x32\xe6\x44\x5f\xb8\x06\xff\x29\xe4\xc5\x30\xb6\x1a\x60\x0c\x11\xea\x16\xcd\x87\xd0\xb0\x2e\x5c\xc3\xd8\xa4\x8e\x1a\x1f\xb2\xfe\x36\xf6\xea\x9a\xad\x2e\x88\xe8\x47\xc9\xd1\x1c\x17\x5b\x5b\x89\x9b\x77\xc6\xc6\x4d\xac\x89\x29\xeb\xe4\xbb\x2b\xca\x5a\xde\xd4\xae\x97\xbd\x97\xd1\x0d\xda\xb7\x18\x36\xf4\xf0\xd7\x3b\xbc\xa7\x3e\xa1\xbf\x1d\x40\x6e\x5b\x89\x7a\xce\x71\xdb\xe2\x9a\x7b\x6e\xb1\x9a\x87\xbc\x62\xd2\x63\x6a\xf3\xed\x7f\xc7\x31\x8a\xbf\x79\xd9\x0b\x76\x3e\xf2\xc1\xae\xb6\x0e\x96\x21\xc9\x0c\xe7\x9c\xcc\xd9\x36\x40\x0d\xa9\xf9\x55\x8d\x9f\x39\x92\xeb\x5a\xaf\x8b\x8b\x6c\x23\x05\x04\x19\x33\x1a\x41\xeb\xaa\x0d\x9b\xfc\xfd\x91\x18\xb4\x6d\x1e\xc9\xe1\x28\xdc\xec\x27\x4a\x8f\x3d\x86\x57\x35\xab\xea\xbe\x22\x5c\x30\x35\x45\x31\x73\x60\x59\x0a\x7a\x02\xb9\x55\x3c\xb2\xcf\xc4\x11\x66\xf2\x67\x0b\x92\x6e\xf3\xf9\xfa\xe3\xdc\x1f\xfd\x0c\x03\xfa\x27\x1f\x7b\xd9\xb6\x96\x09\x6d\xdb\x8b\x28\xa4\x24\x2d\x41\xb9\xab\x3e\x6a\xab\x80\x82\xd1\x9b\x49\x9d\xd4\xd8\x1c\xba\x4d\xa7\xf9\xeb\x0f\x8f\x03\x55\x8f\x81\xe9\xd5\x81\x0c\xcc\x4f\x51\xe3\x11\x22\xfd\x3c\x55\x53\x72\xa0\x81\x5f\x76\x19\x68\x83\xec\x1a\x8d\x2d\x9d\x89\xa9\x55\xcd\xec\x23\xbd\xb8\xd7\x6d\x92\x24\x81\x2d\xe6\xd0\xb8\x4b\xd9\x47\x35\x9c\x90\xc7\x98\x64\xc6\x64\x67\xd3\x92\xa5\x30\x76\xbb\x1d\x10\x6e\xa4\x79\x52\x91\xb2\xc1\x6d\x10\x07\xe1\x8c\xef\x4c\x0c\x01\x16\x82\xcb\xea\xd4\xfe\xce\x14\xd7\x3f\xa7\x47\x9c\xbe\xec\xe8\xfb\x1f\xf0\xc1\xea\x88\x6e\x10\xa5\xcd\x6b\x98\xa1\x16\xf9\x94\x12\x0d\xa0\x57\x4c\x12\xe0\xb4\x5d\x6b\xe0\xb9\xdd\xc0\x5b\xcb\x59\x18\x70\x9d\x1d\xe1\x2e\xda\xe5\x74\x17\x96\xa7\xa2\x5f\x39\xe2\xea\x3d\x58\x57\xef\xc1\x93\xe9\xd3\x24\xb6\x64\x6d\x91\xd3\x94\x1c\xdf\x2a\xd7\xd7\xb1\x3e\x6b\xea\xd0\x28\xb4\xa3\xf4\x99\xe5\xea\x51\x67\x8a\xe0\x91\x16\xd8\xb6\x8e\xae\xb9\xd6\xc2\xde\x04\x51\x4e\x0f\xd4\x5a\x95\xe6\xda\xeb\x23\xae\x69\x70\x9c\x69\x56\xbb\x65\xc4\xed\x8b\xfa\xeb\xb9\x69\x2e\xd1\xac\xc1\x16\x64\xe7\x44\xd9\x45\x07\x2c\x93\x45\xa6\x21\x70\x47\x36\xb1\x1a\x25\x16\x17\x86\x9b\xaa\xa0\xde\x43\x54\x51\x8e\xea\x03\x3e\x9b\x07\xe9\x0a\xbd\x69\x51\xfa\xc2\xb5\x73\x5d\xe4\x58\xf4\xe8\xc8\x64\xe8\x33\x6a\xc8\xa1\x3c\x55\xa6\xb3\x5b\xa2\x9d\xfa\x1a\x0d\x49\xca\xa6\x45\x79\x6e\x40\x2f\xc7\xa0\x03\xee\x0e\x2b\x3c\x5d\x9d\xd1\xa4\x5c\x59\x6c\x47\x17\x1d\x95\x4f\xc9\xce\x4f\x66\x08\x52\xfa\xdb\x5a\x73\x02\x04\x62\x4d\x9d\x57\x86\xc1\x71\xb1\x48\x46\x69\x47\xb4\x62\x32\x05\xca\x83\xa8\x25\x6d\x6e\x5a\x2c\xbd\xd5\xe0\x6e\x25\x72\x35\x99\x56\xa4\x8e\x21\xdb\xae\x57\x6c\x41\x04\xe9\x98\x6b\x17\xc3\xba\x28\x74\xcf\xb2\xf9\x78\x15\xf5\xe2\xed\x20\x47\xc5\xd3\xd3\x93\x29\xac\xae\x00\x61\x75\xe5\x8b\x1d\xf6\x04\x62\x9e\x48\x84\xda\x16\xa5\x47\x9c\xb9\xee\xef\x9b\xbb\x7d\xcc\x3e\x10\x98\x8c\x4a\x32\xaa\x22\xdd\xa7\x3d\xa0\x41\x04\x79\x24\x03\x5e\xd0\x9f\x77\x69\x8d\x51\x8b\xc3\x0a\x1d\x70\xc8\x1b\x82\xfd\x51\xfa\x8b\xb0\x5c\x09\x1f\x3e\x6b\xc4\xc1\x88\x22\x9c\xd0\x1b\x43\xe0\x43\x92\xcd\x61\x5a\x96\xd7\xd3\x0a\x94\x1d\xce\x87\xe5\xf3\xe0\xf4\x9a\x27\xa6\x77\x19\xe8\x5b\xe3\x67\xd1\x9a\x26\xf3\x55\x32\x89\xbf\xa1\x99\x62\x71\xe4\xa3\x21\xa2\xac\x3d\x2f\x59\x65\x51\x8d\x95\x07\x6e\x12\x7f\x37\x1c\xaf\x1a\x5c\x0b\x17\x68\xd4\x62\x8e\xf0\x20\x9e\xed\x69\x7d\xa0\x6d\x54\xa1\xa6\x61\xf5\xd6\x5f\xd5\xb8\xc1\xf0\x1b\xb6\x4a\x92\xd2\x7e\x72\xaa\xa6\x0e\x1a\x80\x1d\x7d\xc4\x0c\xb0\x06\x80\x01\x6c\x02\x50\x1a\xcb\x9e\xb7\x92\xfd\x91\xa1\x0b\xb2\xde\xc5\xc3\xfb\xd9\x36\x40\x40\x96\x0d\x08\x83\x5d\xe7\x4d\xc7\xea\x94\x09\x03\x72\xec\xce\x96\x41\xee\xbd\xe0\x60\x4d\xbc\xd0\x46\xad\x06\xa1\xba\x1a\x7e\xf1\xb4\xf6\x74\x5f\x5e\x8d\x74\x5e\x07\xe0\xe9\xba\xee\xbd\xd5\x71\xc6\x73\xad\xdb\x46\x16\x11\x90\x4d\x6b\x05\x19\xe4\x18\x86\x05\x99\x87\x41\x8d\x7a\xf8\x41\xba\x2a\x5d\xb2\xbc\x41\xb5\x53\x19\x24\xdc\x37\x6a\x61\x1b\xaa\xaf\x8e\x0d\x02\x58\x44\xa0\x86\xd0\x69\x40\xef\x2d\x12\x7a\x03\xe9\xa8\xfa\x73\x00\x45\x35\x98\x8d\xa2\x9e\xff\xe3\x2c\xe3\xd2\x13\x78\xca\xd2\xfd\x8f\xb5\xfe\xd9\x6e\xe2\xff\xbf\xad\x7f\x2a\x42\x00\xaa\xa6\x28\x21\x6a\xdf\x68\xb8\x47\x69\x4b\x6b\xbd\x2f\x1d\x6d\x61\x00\x05\x6e\x5b\xc7\xcd\xfb\x33\xaa\x31\xf7\x1b\xa5\xf5\x47\x54\xe2\x37\xd6\x7e\x2f\x72\x44\x59\x6f\x0a\x72\xa8\xfb\x51\x6b\xbd\x64\x3f\x27\x4b\x0f\xbe\x22\xcd\x8d\x7d\xa0\xf8\x41\xc0\x8e\x95\x31\x49\xc0\xcf\x86\x1a\xb0\x83\x2c\x78\x80\xb4\xe2\x27\xed\xee\x7e\x2e\xa0\x01\x36\xc8\xd1\x04\x04\x8d\xbb\xaf\xde\x99\x87\x9a\x93\x6d\xa3\x23\x8d\x09\x80\x18\x4d\x39\xb6\xe3\xfa\x8b\x77\x76\xbf\x41\x4e\xc6\xa0\x35\xa6\x2e\xda\x33\xbd\xfc\xc9\x9d\xc4\xfb\xbe\xdf\x84\x86\xf8\x86\xa9\x18\x20\x5e\x42\x7d\x95\x60\x2a\xfd\xfb\xe1\xdd\xcd\xdf\x05\x7d\x50\x48\x9f\x44\x86\xe7\x5f\x19\xec\x8a\xa9\x58\x5a\x97\x78\x50\x0c\x9d\xfb\x71\xea\xc0\xe9\x89\xb1\x7a\x4f\x66\x16\x04\x06\x79\x64\x90\x56\xda\x97\x6b\x38\x0b\xc8\x45\xbc\x01\xe0\x5e\xee\x02\x32\x9d\x3f\x4e\xa4\xcf\x68\x22\xc2\x64\x09\x2d\x3b\x92\xdc\x36\x1a\xd1\xb7\x12\xd7\xf7\x93\x46\x90\x49\xf1\x8e\xed\x29\x21\x29\x49\x3b\xbc\x12\x30\xcc\x37\xbc\x3b\x52\xaa\x9a\x8b\x27\x4d\xc8\x70\x93\x1a\x11\xb9\xd5\x3b\x04\xeb\xae\x34\x1e\x40\xfc\x8a\xcb\xb6\x51\xe9\x9e\x6c\x53\x6d\x3c\x84\xc2\xcb\xb0\x22\xde\xcd\x2a\x69\x46\x48\x69\x0f\xd6\xa9\x49\x42\x62\xed\x76\x59\x10\xce\x56\xdc\x68\xd9\x37\xe8\x44\x9b\x68\x8f\x20\xf6\x2f\x87\xb8\x6c\x3a\x37\x52\x4c\xd1\xf1\xae\xcb\x8a\x20\x0f\x4a\x2b\x2a\x94\xb6\x46\x42\x1e\x71\x2a\x5e\xe3\xc2\x83\x23\x77\x53\xd3\x13\xcc\x85\x2c\xf0\x01\x85\x66\x9a\xa1\x45\x6c\x9c\xeb\x2c\x3c\x15\x65\x65\x9c\x0e\x38\x62\x9b\x5a\x96\xd6\xa7\x62\x67\xa7\x56\x30\x3d\x93\x3d\xac\xb2\x69\x1a\xee\x73\x74\x30\x4d\xa3\x5a\x74\x01\x37\x62\x57\xef\x56\xa8\x92\x75\x2e\x02\x9d\x7c\xb8\x85\xc9\x8a\x76\xbe\xf6\x0c\x22\x64\x1c\xe0\xcc\x34\x99\x9a\x27\x5b\x89\xdd\x02\x25\x7a\xe5\x79\x93\x78\xe8\x34\x13\x05\x74\xe4\xb9\x35\x3c\x1f\x35\x57\x55\x79\x6c\x66\x52\xe3\x53\xbc\x9b\xf6\xe7\x3e\x2e\x71\xe9\x9b\xee\xac\xdf\x5a\xd4\xb8\xe1\xda\x56\x26\x85\x77\x99\x49\x01\xc0\x64\xac\x93\xa6\x0d\xdc\xc0\xed\x91\x22\x3b\x44\x3d\x81\x97\x3d\xb8\x6c\x58\xde\x4a\x11\xb7\x33\x6b\xde\x8f\x5a\x27\x77\xb9\xc3\x06\xe9\x20\x25\x2f\xcf\xab\xf7\x60\xb8\x48\x24\xf7\x0b\x3d\x9d\xd1\x38\x38\x90\xe2\xc8\x1e\x45\xb8\xe6\xc2\x5c\x05\xe7\x71\x41\xec\xb3\x35\xc6\x52\x62\xad\x4e\xee\x70\x32\xc9\x72\xa6\x5a\xb4\x6b\xa2\x8c\xbc\x12\x6e\x30\x37\xdc\xf7\x85\x0f\xc4\x38\xfe\x29\x1f\xca\xd1\x66\x52\xd8\x93\xbc\xc5\xb5\x4c\xdb\xa0\x77\x96\x7b\xac\x6a\xac\x3f\x89\xee\x86\x2d\x13\x79\x79\xe9\x2a\x56\x5c\xe7\x23\x11\x40\x94\xd8\xc3\x81\xc9\x1e\xdb\x3e\x0c\x7d\x80\xf4\xa4\x79\xb0\x75\x36\xe5\x6d\x97\x1a\xcd\x37\xe8\x8d\x52\x8c\x94\x7e\x9d\xb7\x93\xd6\xbd\x5d\x7e\x35\x9d\x84\xea\xcd\x3e\xb4\x58\x77\x4d\x5e\x3a\x1e\xc4\x63\xe8\x81\x4a\x70\x36\x3a\x2e\xec\x71\x34\xe0\xed\x3d\xb7\xbb\xee\x2e\xcd\x69\x89\xc3\x0a\x95\xd6\xf2\x06\x64\xa0\xd0\xdc\x2e\xbd\x34\xe4\x41\x9e\x39\x9e\x62\xc3\xd7\x71\x26\xc2\x4b\x3b\x07\xd6\xa7\xfe\x94\x94\x7f\xf7\xd3\x8e\xf8\x0f\x23\x6d\x9c\x9b\x1c\x27\x76\x56\x5e\x3f\x0d\x28\x73\x86\xe4\x39\x12\x79\x5e\xe6\x4f\x35\x2e\x82\x38\x88\x03\xfd\xc1\x00\x79\xbe\xf1\x58\x07\x54\xc0\x94\x31\x91\xac\x64\x7c\x17\x0f\x60\x9e\xee\x32\x3d\xe2\x46\x08\x93\x0d\x6e\x5b\x52\x1e\x9a\xfb\x6e\xe1\x83\x17\xf0\x51\xb4\x67\x63\x0a\x98\x81\xb0\x8b\x99\x59\xa5\x89\xc4\xf8\x5b\xcd\x19\xfd\xfe\x3c\x94\x6b\xf4\x8a\x02\x6c\xd9\x4c\x8c\xb9\xe4\x2a\x66\xfb\xb4\xa5\x6a\x51\xb3\xbc\x44\xb8\x6d\x40\x70\x7e\x0b\x79\xc3\x3b\x6d\xc9\xa3\x5b\x4c\xc1\xe7\x26\xde\xd9\xfa\xc0\x36\x3d\x06\x4e\xee\xcf\x5f\x4b\xd9\x9d\x8c\x73\x6d\x32\xaa\xa3\x59\xa3\x94\x3d\xc9\xb1\xd8\x8e\xef\xb8\x64\xc6\x75\x10\x23\xe6\xcb\x9c\x61\x1a\x42\x94\x1e\x29\x6d\x70\x54\xe3\x3d\xae\x71\x99\xe2\xa0\x3b\x1b\x16\x7b\x8e\x46\x65\xe9\xa5\x72\xc7\xf3\x09\xc8\x5c\x58\x6e\xa6\xb0\x71\x1c\xbd\xe6\xa3\xa7\xd0\x1e\x7a\x07\xd2\x86\x4d\x8b\xda\xc6\xf0\xc9\x31\xa6\xd8\x38\x6e\x20\x66\xb7\x9e\xe4\x77\x12\x46\xa0\x4f\xec\xd0\x48\x15\xbc\x58\x44\x8b\xc5\x65\x74\xa4\x56\xbc\x3b\xfb\x85\x69\xa7\xd3\xd9\xef\x26\x54\x41\x1b\x4c\x6c\xef\x3d\xa4\xf8\x0e\xb4\x76\x95\x31\x30\xeb\xd8\x85\x65\x18\x4b\xbe\xe5\x90\xef\xa4\x0a\x50\x9e\x2b\x89\xb7\x3d\x3c\xe5\x70\xef\x05\x9e\x6c\xce\xf2\x46\xba\xa8\x59\x76\x34\xfb\x70\x44\x3b\xa1\x38\x01\x22\xb5\x11\x7d\x78\x55\x11\x9d\xc2\x54\x20\x92\x33\xad\x29\xff\x80\x02\x44\x6e\xa3\xcd\xe7\x51\x46\x6a\x9c\x32\x0a\x0f\x5f\x41\xad\x39\xed\x0a\x9a\x9d\xfa\x6c\x9e\x33\xfc\x18\xef\xf6\xd3\x39\xcd\xc6\x46\xde\xfa\x92\x7a\xd7\xbe\x04\xcf\x77\xfb\x3d\x1e\x5c\x5e\xa4\xcb\x66\xbf\xa8\xa9\xbe\x37\x25\xcf\x81\x41\x04\x93\xb1\xd7\xc6\xde\x55\x48\xa9\xb2\x97\xd1\xe3\x4f\x11\xb7\x63\x35\x96\x25\x7f\x60\x84\x8c\xd3\x0a\xa2\x5d\x5b\x76\x76\x8a\x41\xcf\xd4\x04\x90\x4f\x4d\xaf\x49\x23\x4d\xed\xa8\x5b\xaa\xe1\xcd\xbd\xd5\x32\x99\x7c\x49\x5d\xac\xe4\xbc\xf1\xe3\x3a\xfd\x2a\xd2\x61\x86\xca\x03\xae\xcd\x12\x76\xd9\x3c\x1d\xd9\xca\xa6\x97\x10\x65\x84\x67\x72\xea\x92\xdb\xee\x76\x3b\x95\x88\x31\xc3\x7b\x74\xca\xdb\x1b\x4a\xba\x93\x69\x26\xf9\x43\x7e\x58\x06\x67\x45\x98\x52\xc0\x2b\xc1\x6f\xa1\x7e\xc7\xc1\xe4\x99\xa2\x30\x83\x5f\xad\xd8\xba\x0b\xd1\xfb\x08\x1e\xb5\x74\x84\x53\x79\xb8\x23\xd5\x47\x7b\xa4\x65\x58\xd2\x16\xef\x28\x7d\x31\x56\xfc\x27\xc7\xbe\x70\x2d\xd9\x20\x2a\x77\x7d\x19\xd6\xf5\x0c\x37\x90\x6c\xda\x0c\xd7\xb5\x6f\x41\x9f\x46\x80\x9e\x5a\xf8\xfe\x07\xa5\x85\x33\x65\xac\x4f\xcd\xc9\x7e\x0a\x07\xde\x1b\xb9\x06\x6d\x3c\xe8\x06\xb2\x29\xce\xf3\x7f\x52\x5f\x74\xc5\xfa\x46\x76\x39\x39\x47\x50\xb9\x91\x20\xfb\x9f\xcd\x4d\x36\xb4\x7e\x02\xbf\x40\xc4\xea\x0d\x14\x6b\xf4\x26\x98\x04\xc7\x09\xd0\x8f\xc9\x7e\xbe\x8f\xb7\x57\xe5\xdf\xed\x24\xf3\x3e\x74\x8b\xb5\x47\x30\x6d\x65\x85\xf9\xe7\x06\x92\x2e\xcc\xe3\x6a\x32\xf4\xd4\xf6\x74\x80\xf4\x5f\x7a\x7d\xfb\x0a\x69\x2e\xc0\xc2\x18\xf7\xc8\xf3\x78\x48\xaf\x18\x95\xbb\xd6\x08\x88\xfb\x92\x8a\x76\xc1\x28\xdf\xfe\xb5\x0c\x7e\xff\x16\xa0\xb6\xad\x7f\xc9\x50\x8b\xc2\xaa\xa6\x45\xd5\x86\xe5\xa9\xd8\xe1\xfa\x3e\xf8\xf6\xc7\xe6\xdb\xad\x65\xf2\x00\x23\x6f\xa0\x93\x23\xd0\x3a\xc6\xa9\xaf\x28\x5f\xa8\xf4\xfa\x75\x2d\x6b\x5b\x40\x59\x9b\xa7\x0f\xcb\x9b\x0a\x36\x87\x43\xd7\xda\xff\x7e\x6a\x7f\x66\x73\x8b\x52\x8d\x90\xb4\xc4\x50\x83\xbf\xae\x6a\x5f\xbb\x88\x48\x9a\x22\xc9\x81\x1b\x16\x1e\xc7\xb1\x96\x9a\x3d\x47\x55\x83\x37\xea\xcb\x17\x94\x0a\x64\x3b\xb8\x99\x66\x76\xf3\x5a\xc2\xf8\x82\x9b\xa2\xdb\x6f\x79\x36\x24\x3b\x1a\xc9\x23\x59\x7f\x7d\xf3\xa9\x68\x22\x67\x8f\x9a\xc5\xb6\x3a\x6c\xcc\xeb\x1b\xe6\x74\x46\x5e\x7f\xe7\xe9\x43\xfe\xfc\x4d\x3b\x76\x98\xc5\xb1\x65\xc3\x36\xf3\x27\x8b\x63\x88\x6f\x7f\xe8\x47\x15\xfe\x23\x37\xbf\x54\x59\xe5\x88\xd5\x10\xbf\xeb\x09\xad\x66\x7a\x4e\x9c\x99\x32\x6e\x8a\x7c\xf0\x7d\x5e\x76\x6b\xa7\x9b\x56\x1e\x5b\xb3\x78\x9a\xcd\xe0\x57\xdb\xa0\x77\xd5\xf6\xa9\x2f\x77\xd3\x15\xc3\x9e\x0b\x31\x3d\x2f\x95\xc5\x2d\x7c\x69\x39\x68\xb5\x13\xc9\x4b\xfb\xa1\xa7\x18\xb1\x2a\x35\x3c\x92\xce\xb6\x04\xd3\xca\x8d\xa3\xd3\xb6\x5b\x23\x1a\x26\x61\x1f\xb9\xeb\x2e\x27\x6b\xdf\x10\x1b\x22\x22\xdf\x6e\x68\xeb\xb0\x6e\x30\x6b\xfe\x95\x65\x8b\xb8\xdc\xab\x5b\x4f\xb1\xc0\xbb\x88\x4f\xe8\xb1\x2c\xbb\x57\x73\x19\xf0\xbc\xbe\x57\xf2\xca\x09\xd0\xfc\x16\xec\x6a\xa2\x9c\x07\xf7\xef\x2d\xcc\x33\xfc\xab\x79\x67\xc8\x1e\x41\x6a\xbf\xef\x63\xa9\x7f\x46\x5f\x05\x39\xb9\xad\xbb\x6e\x24\xc0\xe4\xb7\xab\x29\x74\x9d\x76\x1b\x89\x5b\x2a\x21\xbb\x2e\xc8\x09\x6c\x43\xd3\x32\x07\x19\xc6\xbb\xc9\xd6\x92\xe1\xbe\xeb\x2e\xcd\xbb\xb1\x0b\xbf\x80\x8e\x68\x85\xdb\x08\xe9\x1d\x7a\x3b\xa5\x2f\xa8\x59\xdf\xbd\xea\xfe\x0f\x33\x5e\x3b\xf3\x1d\x9e\x35\x24\xc3\x3b\x64\xf9\x5e\xfb\x84\x4f\x05\x0d\x5d\x4f\xe7\xa2\xe0\x8c\xfd\x08\xa2\xb6\xc6\xb8\x42\xed\x71\x70\xd7\xb6\x81\xa5\xd3\x80\x4f\x90\xec\xe2\xfb\x8d\xac\x28\x8f\xcb\x24\x7e\x5a\xdf\x07\x31\xcf\x1a\x30\xaf\xde\x03\x1e\xfe\xbf\x55\xd9\x1f\x44\x16\x07\xfd\xb2\xd3\x31\x3f\x24\x8b\x39\xe1\x5a\x63\x39\xb5\x4c\xc7\x4f\x69\x51\x90\x96\x5b\x34\x3b\x4f\x22\xa3\xe1\x57\xa0\x5a\x34\x80\xde\x3d\x94\x27\x4b\x3e\x07\x1b\x46\x58\x1d\x5d\xf5\xf7\x01\xdb\x6e\x1b\xd3\x8b\xe3\x46\x59\xf7\x70\x4c\x97\x41\xed\xec\x78\xfc\x06\x97\x69\xf7\xc5\x5e\xcf\x93\xca\x84\x71\x35\xbe\xd4\x96\xeb\xee\x3e\x55\x9e\x34\x7d\xae\x31\x2f\x18\xd7\x13\x7d\x74\xaa\x75\xf0\x4d\xb5\xac\x3a\x39\x8d\xb7\xae\x19\x46\x8a\x5c\xa1\xf0\x4d\x75\x9c\x77\xae\x63\x58\xb5\x21\x2b\x5d\x6d\xca\xd9\x32\x5b\x66\x5d\x0a\x58\x79\xab\x81\xe9\x5d\x19\x3e\xdd\xde\xda\x60\xd9\x66\x0a\x99\xee\x5a\x94\xad\xe5\x4f\xf4\x73\xca\xde\x03\xe7\x7c\x53\xe9\x06\xd1\x7f\x9e\x48\xfa\x12\x56\xa7\x3c\x0f\xd3\x23\x25\x29\x0e\xa4\x13\x44\x58\xea\x39\xec\xbc\xc9\x51\x54\xca\x49\xae\x25\x05\x93\x35\x23\x37\xcb\xd3\x2a\xb9\xf7\xa4\x81\x9a\xc7\x4f\x0f\xf3\xf9\xe3\xc3\x7c\xf1\xc8\xef\x77\xfd\xca\x29\x04\x36\x40\x89\xdf\x42\xad\x11\x84\x51\xcb\x9f\x48\x5f\xf3\x07\xff\xf9\x6c\x18\x89\x22\xe6\xcb\x18\xf4\xb9\xee\xdc\xc5\x87\x64\xd2\x9b\x78\x53\x67\x6f\x07\xd2\x4a\x1e\x3d\x37\x30\xb0\x29\x28\x7c\x28\xb5\x34\x39\xbb\x38\x5d\xa6\xe6\x3a\x20\xa2\x66\x9a\xe0\x8e\x2f\x17\xaf\x28\xef\x37\x50\xa3\x8a\xfa\x05\xe8\xb6\x46\xad\x68\x44\xe2\x44\xd0\x72\xdd\x9d\xc7\x90\x1f\x94\x83\x73\x22\x96\x1f\xa1\x25\x20\x94\xf8\x2d\x22\x4d\x73\xc2\xa2\x91\x70\xd9\xca\xc8\x06\xf9\x4b\x5d\xb2\x77\xee\x36\xa0\xa9\xe8\xe2\xca\x45\x7d\x50\xd9\x1e\x3c\x63\xc8\xc0\x86\x30\x8a\xf2\x0f\xb0\x07\x4c\xe5\xf1\xab\x96\xfd\x69\xcd\xf8\x65\x2b\xfd\x2d\xc5\x59\x8b\xfb\x18\xa9\xa0\xcb\x38\x74\x1e\x30\x3f\x7b\xa9\x70\x67\x71\xcd\x31\x7f\xee\x18\xad\x86\x51\x0d\x3f\xe2\x8b\xfc\xf5\xf9\x01\xb2\xa2\x2c\xe2\xe6\xec\xd0\x19\xcf\x5a\xe6\x20\x76\xf9\x8d\xde\xba\xb2\x8d\x8c\xf6\x8b\xda\x49\x14\x63\x2f\x0a\x10\xcd\x40\x5c\x0c\xc9\x16\x5f\xed\x9a\xd9\xc4\xbd\x10\xb5\xa5\x55\x97\xf3\xe8\xbb\xb6\x5e\xad\x9c\xf5\x6a\xb8\x98\xc0\x2e\x4c\xa4\x9c\xb7\xef\xc0\x1c\xa1\x18\xf1\x6b\x0b\x9d\x06\x51\xb7\xf4\x22\xb4\xb5\xd3\x19\xda\xe7\xea\x00\x4d\x23\x18\xc4\xe3\x19\x05\xa0\xb1\x1d\x27\xfc\x41\x4b\x6c\xdb\xae\xbd\x88\x7c\xcf\xc9\x70\x93\x8a\xe3\x24\x15\xaf\x30\x5b\xad\xf0\x6a\x10\xc9\xd0\x5e\xec\xe4\x83\x63\x25\x5e\xa3\xfa\x40\x34\xec\x4b\x69\xf9\xdd\x2a\x70\xc2\x4c\xa9\x30\x98\x77\x62\x3a\xe2\x50\x97\xe4\x71\xa0\x60\x36\x15\xeb\x03\x8e\x76\xf4\x3d\xb0\x5c\xf0\xfa\x7d\xf8\x92\xf6\xd7\x09\xde\x09\xb9\xe0\xff\xb0\x2e\xa9\x09\xdf\x3a\xcf\x3e\xf5\x4a\xa7\x23\xd7\x0a\x9e\x13\x5e\xad\xe6\xa6\xef\x61\xb7\xa5\x7c\x03\x36\x10\x9d\xdd\xb9\xab\x6c\x31\x75\x4f\x38\xfb\x77\x89\x18\x85\xcb\xc8\xaa\xd3\x03\xe7\xf0\x8d\x9a\x0b\xf6\xe9\xee\xf6\x0c\x67\x93\x2a\x30\x75\xab\x9f\x80\xdf\xa2\x83\x79\x9b\xb8\x1d\x0c\xd6\x09\x2f\x6e\x1e\xc2\x39\xa4\x62\xea\x12\xf5\x6c\x4c\x52\x9e\x52\x41\xe5\x0e\xc5\x45\x29\x3d\xe7\xf3\x0d\x74\x78\xb5\x27\xcf\xa6\x49\x14\xc5\x2f\x7d\x5d\x59\xd9\x31\x3c\x43\xe3\xdc\x53\xc6\x14\x99\x6c\x3a\x99\xc0\x73\x35\x73\xd7\xc9\x3c\x47\xaf\x88\x35\x72\x74\x0d\x73\x94\x8c\x65\x31\x05\x6f\x40\xd1\x52\x09\xf2\xaa\x98\x49\x24\xbb\x57\x42\x00\xb9\x7e\xc8\x58\xb5\x05\x64\xd2\x2b\x88\xfc\x03\x48\xa9\xd7\x73\xfd\x55\x72\xeb\xb5\x8d\xff\x65\x92\xec\xe5\x0c\x74\xd1\xec\xea\xa4\xf8\x71\xfd\xdd\xdd\xf8\x2c\x51\xef\x86\xa9\x3a\x4d\x00\xbe\x84\x5e\x49\x95\x25\xda\x5a\xa9\x9d\xab\x35\xae\x2c\xe2\x39\x12\xd5\xee\xa5\x05\xdd\x98\xbd\xd8\x2f\xf7\xc9\x17\x51\x16\xb2\x65\x81\x0e\xb8\xd9\xc8\x91\x61\xe4\xdc\xef\xa7\x8b\xff\x80\xf4\x86\xd2\xd1\x58\x72\xf6\x4d\x62\x3a\x23\x75\x77\xb6\x26\xce\x3c\xe7\x89\x72\xb5\x35\xcd\x08\xdc\xd4\xbc\x12\x7c\x17\x69\x7f\x59\x9d\x1c\x8f\x23\xad\xf5\x0c\xa3\x59\xef\x3a\xf1\xdd\x77\xa9\xde\x17\x77\xf2\xd9\xf4\xd8\xf8\xae\xdf\x1a\xd1\x1d\x5f\xfe\x54\x56\x78\x92\xfa\x8e\x1d\x2d\x33\xf7\xeb\xdb\x16\x8e\x3d\xfe\xb2\xd2\x06\x23\x9c\xa7\x94\xd2\x65\xac\xe0\xe9\x14\x8c\xa8\x19\x31\x69\xae\xd9\x20\x3a\xa2\x97\x6b\x07\xd7\x16\xd5\x25\x67\xe9\xdc\x23\xe2\x2b\xdd\x59\x2e\xe5\x80\xa9\x7b\x91\x0a\x32\x9b\xaa\x71\x98\xb4\xf8\x5e\xec\xb5\xbc\x0a\xef\x1f\x71\xbb\x50\xf0\xf8\x64\x5f\xe3\xea\x98\x64\x47\xca\xb1\x0f\xfa\x44\x82\x88\x7e\x91\x1a\x4e\x16\x35\x95\x78\x67\x3a\x4d\x49\x9d\xe6\x38\x6c\x72\xd4\x1c\xad\x0c\x24\xd6\x85\x93\xcb\xc8\x14\xfd\xe7\xba\x29\xd5\x0d\x74\xb8\x98\x93\xaa\x26\x05\x61\xed\x1a\x66\xd4\x14\x76\xc3\xf9\x3a\x72\xc3\xd5\x67\x4e\xe2\x0c\xc5\xcd\x2a\x4d\x57\x66\x06\x82\xcb\xb9\xd9\x51\xfa\xc2\x36\xf1\xb3\xa5\x0a\x99\x6d\x32\x1b\xe1\xea\xf2\xce\xcf\x70\x8b\x48\xae\x1b\x77\x9e\x6a\x33\x4e\xc8\xee\x99\xc5\x95\x65\xb8\x75\x3e\x10\x26\x97\x31\xd5\x5a\xaf\xb5\xed\x18\xa5\x93\x3f\x11\xb5\x7e\x28\xab\x9d\x26\xb7\x0d\x49\xed\x27\x12\x55\x88\xad\xf9\xa4\x42\x65\xdb\xe8\x01\x1b\x56\x1d\x3d\x39\x14\x4c\xbb\x9f\x48\xdb\xc2\x1e\x98\x2c\x48\x3d\xdd\xe7\xae\xea\xb5\x5f\x4e\x5d\x6d\xfd\x04\xc0\x83\xd1\x61\xf0\xbf\xbf\x76\x31\x89\xbf\x2f\xd2\x23\x26\x34\xdd\x57\x69\x0c\x57\x17\x65\x4a\x68\x5e\x32\xb7\x6d\xa3\x3e\xb2\x3f\x67\xcb\x54\x09\x47\x78\xc0\x72\xde\xdd\x1f\x68\x30\xec\x49\x9c\xd2\x23\x3e\x1b\x67\x5a\x83\x1a\x14\x60\x0b\xc8\x50\x73\xc4\x59\x70\x87\xcc\xd0\x1e\xb7\x80\x00\x59\xa1\xcc\x5b\x2b\xd1\x93\x95\x0a\x44\x3f\xdc\x5b\xad\x56\x63\xc4\x47\xd2\xcf\xb8\x08\x11\xad\x70\x19\xf2\x15\xac\x31\x2d\x47\x6e\xda\x26\x07\xbb\x4f\x5f\x64\x5d\x80\xaa\x63\x15\x24\xc7\x4d\x4b\x4b\x7c\x4d\xff\x98\xc8\x3f\xa9\x8f\xa0\x42\x9e\x91\x9d\x81\x6b\xa0\x63\x9c\x76\x86\x29\x8e\x85\x6a\xc2\x78\x62\x63\xa9\xe9\xa1\xc6\x4d\x73\xee\xf2\x3a\x69\x33\xb1\x8b\x2d\x85\x8e\x55\x27\x10\x0d\xa2\x1d\xaa\xcf\x1e\x6f\x6a\x1f\x3e\xdb\x1b\x7d\x79\xff\x27\x75\xa3\x20\x11\x88\xdd\x53\x45\xfe\xdb\x51\xc9\x90\xf3\xe0\x30\x39\xd6\xc4\xd9\x49\x9d\x68\xd4\x38\x9b\x82\x4a\x2b\xb6\xd6\xe0\xb3\x9d\x76\xe9\x02\xdc\xe7\xaf\x9c\xd8\x23\x25\x8d\xcc\x72\x18\x5b\xd9\x5a\x06\xd5\x1f\x91\xcb\x50\xa2\xc3\xcb\xf5\x00\xfc\x5d\x86\x51\xc6\x34\xf3\xb3\x66\x26\x30\xe0\x79\x22\xba\x1a\xcb\xe3\x0f\x99\x72\x43\xb8\x39\xf8\x42\xd2\x1d\x1e\x2d\x1a\x13\x8f\xeb\xa7\x60\xfd\xfd\xa5\x95\x4b\xd8\xfc\x2a\xe3\xe7\xe4\xf6\xfc\x32\x6b\xe7\x8d\x25\xda\x22\x8c\x3c\x1a\xb7\x52\x1d\xe9\x7a\xb1\xd7\x5f\x27\x23\xfb\x7d\xe7\x93\x23\x73\x17\x8b\x5b\xc4\x80\x10\x50\xbb\x0e\x05\x11\xc9\x25\x85\x39\xf6\x44\xd4\x25\x22\x0d\x46\x75\x7a\xd4\x4f\x99\x81\x23\x09\x28\x24\x50\x9d\x02\x7a\x32\x8b\xd0\x3d\xbf\x12\xd9\x5c\x1c\x9d\x65\x0a\xa4\x11\x35\x47\xe4\x4b\x6b\xb5\xaa\xde\x83\x65\xcc\xfe\x54\xef\x81\xad\x79\x59\xe4\x78\x76\x1a\xd4\x90\x34\x6a\xda\x9a\x54\x38\x8b\xcc\x48\x98\xb1\xdb\x67\x0d\x3f\xdb\xf9\xbd\x2f\x69\x1a\xeb\x96\x50\xa8\x74\x61\x7f\x1b\x8d\xb4\x4a\x98\xb9\xa2\x9c\xed\xca\xc2\x0d\x68\xae\xdb\x62\x4d\x07\x65\x8f\x0e\xaa\x52\x9a\x39\x32\xb7\x4b\x3b\xc8\x89\x57\xa4\x91\x64\xdc\x04\x6d\xcb\x41\xf9\x24\xcb\x32\x93\x4d\x27\x73\x9d\xcd\x06\xb7\xcf\xb1\x1d\xf4\xd4\x0c\xba\xe5\xcf\x35\xcb\xef\xdc\x56\x47\xd9\xa4\x1d\xb5\x59\x0e\x96\x1d\x15\x34\x23\xfb\x0f\x28\xae\x23\xce\x76\xeb\xf5\x74\x42\x28\xcb\x00\x2a\xbb\x25\x9e\xef\x96\xd3\xa9\x64\x38\x07\xa8\xe0\x27\x84\xd1\x05\x95\xaa\x31\xf7\xd7\x74\x09\x65\x28\x5b\xdb\x4b\x11\x27\xc4\x1d\x04\x52\x7a\x2a\xad\x64\xc3\x7d\xb8\x5b\x37\x09\x07\xb1\x85\x5c\x06\xb4\x03\xb7\x4c\x19\x3d\xa9\xc4\x42\x2d\xcb\xa9\x31\x00\xb4\xac\x97\x3c\x09\x18\xfb\xeb\xb8\xd7\xe0\xf7\x96\xcd\x84\x71\x9e\x02\x4f\x07\x25\x09\x4a\x16\x73\x9d\x31\x1f\xad\x3d\xe9\x53\xea\xac\xc1\x91\xc1\x23\x15\x38\xac\x73\xe9\x93\xb9\xf5\x0c\xe2\xca\x6f\x99\xf0\xcc\x94\xc1\x24\x7d\xac\x98\x2f\xac\x0e\x3d\xb2\x8f\x19\x59\x27\x12\x73\xca\x99\xf4\xfd\x86\x52\xe5\x0d\xb3\xd4\xc9\x12\x35\x68\x06\xbd\xb0\x90\x90\x6a\x79\x07\x45\x77\x78\xd3\xdf\x39\xa4\x79\x5c\x08\x7b\x36\x90\xd1\xcd\x8f\xa4\x25\x3d\xd2\xcc\x04\xbd\x8b\x8c\x76\xef\x9e\x6b\xac\xf1\x12\xed\x2f\x05\xb5\xf5\x1b\x2f\x8a\xd6\xd1\xde\x96\x10\xf2\x92\x91\xe1\x71\x7b\x6a\x70\x1d\x8a\x74\xda\x97\x70\xd8\x17\xb7\xb1\xcf\xae\xfa\x28\x79\x3e\x27\x65\x8c\xbc\x70\xef\xbe\xce\xe2\x31\x81\x0b\x6d\x30\x94\xf8\xed\xe1\x06\x74\x36\x96\xcc\x40\xcf\x1b\x99\x11\x0a\xcc\x8d\x2c\x99\x5a\xd0\x62\xbd\x58\x2d\x56\x53\x47\xa8\x14\x57\xa2\x16\x1d\xc4\xcc\x69\xa1\xf5\x4c\xdc\x2d\xe7\xdc\xf2\xdf\x6d\x00\xf3\x14\xa7\x18\xf0\x12\xe7\x17\x1b\xba\x76\x89\xe5\xf4\x19\x04\xf0\x17\x1d\x51\xbe\xe7\xcb\x4f\x9f\xcb\xfd\x52\x72\x0d\x2a\x70\x47\xcf\x89\xf0\xea\x05\xec\x6c\x50\x30\x1b\x2c\x22\xc3\x79\x5f\x42\x96\xf1\xef\xd0\x2e\x8c\xf6\x7b\x8c\xbc\x4d\x9b\xce\xf0\x53\x3a\xfb\x5a\x2e\x3c\x31\xa7\xff\xef\x38\x81\xd3\xb6\xa5\x38\xf5\x16\xbe\x9f\xa5\x71\xea\xf1\xcf\xbd\xb8\x19\x7e\x7a\x77\x7f\xc1\x00\xed\xfa\x0a\x6c\xad\x9f\xdc\x55\x5a\xe1\x5f\x5c\x97\x9f\xd3\xf8\x41\x54\xe3\x82\xbe\x62\xef\x24\xdb\x3f\x3d\x5d\x4c\x12\x65\x99\x9f\xe0\xd3\x7e\x88\x60\x64\x44\x97\xba\x59\x55\x0c\xdd\x57\x1c\x30\x03\x67\x60\x32\x24\xf5\x6c\xa6\xbc\xb0\x33\x71\x77\xbf\x3f\xba\xbb\xfc\x41\x32\x4e\xa6\x07\x35\x66\x94\x57\xb6\x79\xc2\xcb\x03\x72\x9a\x16\xd5\x6d\x10\x1d\x4e\x84\x89\x54\x46\xa8\x8b\x65\xdd\xf6\xc1\x07\x4d\x81\xf2\x7c\x30\xff\x2b\x80\xf9\xd5\xf9\xa3\xa1\x32\x4e\x44\x7a\x74\x46\x9c\xc5\x48\x0f\x7a\x72\x42\x6a\x5d\x7c\x91\x93\x52\x64\x98\x3e\xd5\xf9\x78\x36\xee\xa1\xe4\xbb\x35\xce\x31\x6a\x38\x51\xfe\x85\x9f\xe8\xea\xf7\x3c\x5b\x01\x9e\xfa\x01\x6e\x3c\x92\x13\x1f\x26\xfe\xec\x6a\xeb\x93\x90\xd4\xf9\xf2\xc3\x34\x60\x6e\x1b\xb7\xaf\x50\x76\xa4\x01\xdb\xae\x39\x42\xcf\xd1\x55\x1c\xe7\x8d\x0b\xa8\x71\x07\x69\x91\x8b\x99\xa4\xb4\xbc\xb7\x34\x11\xd3\xdb\xf7\x22\xba\xf2\xb0\xfd\x0b\xe8\x49\xb7\x01\x39\x1e\x84\xfe\xe0\x4f\xe1\x3d\x46\x27\x88\xd0\xa9\x3d\xd2\x1a\xca\xa3\x68\x9f\xea\x8f\xd3\xca\xe8\x5b\x99\x53\x64\x5c\xfa\xe1\x84\xf4\x4c\x27\xf3\x8c\xe0\x64\xbc\x63\x3e\x03\x17\x14\x11\x18\xd9\xda\x95\xfd\x0b\x9e\x6c\x18\x5f\x36\x2d\xec\x52\x20\xa3\x98\x95\x10\x79\x34\x29\xee\xa0\xc3\xf5\xc5\xdc\xa9\x25\xee\xa9\xb7\x80\x3d\x81\x1e\x8c\x69\x9a\x76\x51\x0b\xfc\x58\xcb\xb1\xe0\x9b\x15\xe9\x2f\x9e\xe0\x42\xbf\xa6\xdf\xca\x35\x71\x05\xc6\xab\x43\xe1\x67\xaa\x1e\x51\x8b\xea\x03\x6e\xb5\x68\xb1\x04\x3c\x77\xb1\xe0\x83\x3b\xa6\x2c\x70\x5b\x95\x6e\x7b\x87\x42\xd4\x6c\xcc\x08\x59\xce\x49\xa3\xe3\x0e\xa4\x02\x5d\x01\x66\x39\x0a\xd8\x33\x0d\xa4\xe3\xde\x64\x35\xe9\xc8\xd7\x4f\xb8\xaa\xb1\xfc\x2e\xaf\x78\x1f\xb8\x2f\x83\xdf\x27\xa4\xb2\x9f\xfb\x2e\x3f\xd2\x81\x82\x9b\x0e\xa5\x3d\xab\x99\x43\x5f\xcf\xfb\xed\x66\x67\xf0\x24\x8d\x70\x89\xe4\xa4\x7c\xb1\x0f\xb6\x0d\x9c\x37\xf2\x42\x22\xb9\xe5\xf7\x9e\x50\x06\xca\x23\x58\x3b\xbb\x03\x60\x42\xd6\x7d\x51\xbd\x74\xb0\xb4\xcf\x88\x38\x7e\x89\xdf\x82\xe8\x2f\x34\xc3\xbf\x91\xba\xa6\xb5\xfe\x5d\x88\xa8\x37\x7b\x5b\x4e\x2a\x26\x88\xd2\x22\x94\xc7\x54\xba\x13\x39\x14\x35\xd6\x13\x14\x61\xe0\x61\x55\x63\x2e\xcf\x8e\x7b\x4b\x73\x54\x91\x8e\x45\x9e\x8c\x56\xc2\xd9\xb8\x36\xef\xaf\x87\x51\x58\x23\x9f\x76\xca\x5a\x2a\x8c\xb9\x35\x2a\x1b\xee\x10\xe4\x48\x3a\x1a\x62\xe7\xd7\xef\xf8\x78\x9a\x9e\x81\x8e\xe3\x1f\x40\x23\x38\xce\xcc\xc3\xaa\x87\x51\x84\xf9\xa5\x08\x8b\x4b\x11\x96\x97\x22\x24\x97\x22\xac\xac\x13\x3a\xef\xba\xa1\x2e\xbe\x88\x78\xd2\xc2\x1d\x95\xc3\x54\xfb\x49\xeb\xa1\x6b\x55\x26\xe3\x0f\xdd\xaf\x62\xcb\xe1\x17\x12\xbd\xe1\x9e\x15\x4f\x49\x52\xab\xe0\xcf\x44\x66\x84\x3b\x71\x86\x1a\x72\x53\x2c\xd7\x55\x6b\xdc\x9c\xf2\xb6\x39\xab\x1b\xd1\xae\xa3\xab\xdd\xae\xe1\x91\xb3\x40\x37\xcf\x8e\x7e\xf7\x45\xdd\x67\xc2\x36\x17\xda\xe2\xb4\xc5\x59\xd8\x3f\x03\x76\x30\xed\x4a\xe1\x9b\x48\xf3\x6e\x75\x05\x0a\x8c\xd8\xc7\x48\x4c\xe9\xa6\x64\xb8\xa6\xac\xb1\xde\xf6\x8c\x4f\xa0\x04\x99\x71\x43\x16\xc4\x47\x18\x70\xcd\xac\x7b\x13\xe3\xf5\xe4\xc5\x7d\x8d\x66\x01\xb1\x7d\x11\xe0\x2d\x05\x70\x2f\x01\x5d\x52\xe8\x2a\xf1\x25\x54\xb5\xeb\x9b\x98\xd6\x32\x9a\xbd\xbe\x23\x2f\x2f\xae\x6c\x82\x88\x2d\x47\xf2\x9a\x3f\xdb\x94\xe1\xbf\x30\x17\xa0\x93\xd3\x03\x15\x32\x84\xe5\xd6\x2c\x04\xcc\xee\xa6\x4c\xf6\x37\x3a\x92\x86\xd3\x11\x75\xe0\xc2\x89\xe4\xa0\xc6\x19\xce\xc9\x2b\xae\x3f\x3c\xd7\xfb\x58\x71\xa6\xc6\x29\xff\xd5\x85\x68\x37\xc7\xd1\xb2\xdd\x94\xb4\x2e\x50\x1e\x98\xff\xcd\x16\xd5\xfb\x9f\x66\xc1\xbf\x0b\xc0\x46\x3b\x32\x17\xf7\x7e\x87\x29\xaa\xb3\x26\x70\x16\x67\xfb\x9d\x6c\x65\x5b\xfd\x51\xf7\xbd\x7c\xef\x22\x2c\xe2\x2e\xb5\x6a\xcc\xbd\x1a\x6c\x89\x6a\x69\xc4\x48\xf8\x0a\xb2\x22\xa5\x99\x18\xa5\x1a\x8d\x7f\xd7\x64\x45\x50\x25\xd7\x7d\xac\x7c\x25\xd8\x3a\x85\x7d\xf5\x5b\xec\x5e\x9d\xe3\x23\xc5\x2d\x19\xa6\xd3\xc5\xa7\x5a\xeb\xf9\x62\xad\xaf\xf5\x0f\xfe\x5d\x40\x3b\x5f\xb4\x15\x34\x3f\x3d\xc1\x84\x9f\x2a\x30\x41\x44\xd0\xf0\xd0\xfe\x66\x65\x40\x1d\x2b\x5d\x9e\x7c\x8d\xf0\xe0\x5c\xf3\x62\x3a\xce\x24\x9a\xe3\x0c\x90\xf0\xe9\x49\x7f\x3f\xc6\x10\x9b\xcf\x63\xec\xe8\x73\xbe\x73\x16\xf9\x14\x9e\x9b\x53\xbd\x7a\x7b\x60\xc8\x8b\x17\xb8\x1f\x77\x8a\x17\xaf\x4d\x54\x65\x38\xe9\xef\xec\xb4\x6e\x61\xdd\x5a\xe9\xb1\x3b\x97\xd9\x60\x05\x31\x29\xe9\x01\xfe\x96\x2e\xa4\xd2\x0f\x46\xdc\x3c\x5d\x44\x7e\x49\x99\xed\x2c\xda\x7b\xd6\xfa\x50\x02\xd4\x7b\x5e\x3a\xfe\xb2\x1a\xbe\xbe\xc6\x8f\x53\x72\xaa\x3a\x01\x3d\x42\x4d\x43\x0e\x25\x76\x54\x15\x40\x3d\x65\x1a\x4d\x17\xba\xe6\x8e\x92\x2e\x8c\x8f\x6d\x7c\x3c\xa1\x89\x66\xb9\xf7\x67\x02\x9c\x6b\x03\x23\x8e\xd7\xc2\x21\xd1\x48\xf9\xa1\x57\xc3\x29\x24\x88\xb2\x1f\x21\xe6\xea\x9e\xf4\x01\x3c\x8b\xab\x35\xf9\xb2\xa8\x76\x43\x27\x6b\x41\x17\x49\xd4\x43\xbc\xe0\x0f\x6d\xbd\x13\xb2\x93\x66\xc9\xbf\xf7\x58\xb7\x85\xf4\x06\x13\x6a\x9a\x63\xf8\x82\x3f\xb8\x87\x34\x0e\x49\x99\x91\x94\x09\xe4\xba\x15\x40\xf4\xd6\xa1\x46\x1f\x80\xbb\x85\xeb\xef\x7b\x41\x29\xea\xe0\xca\x8a\x42\x83\x28\x38\x46\xef\xc4\x57\x56\x55\x13\x3b\xe6\x1b\x06\xe4\x85\x93\xf6\xe3\xac\x4f\xa0\x1e\x90\x8b\x01\x57\xe9\x25\x6e\x7b\x77\xb4\xa0\x4d\x20\x1e\x80\x0c\xa2\x3d\x7a\x18\x7a\x6d\x86\x3e\x72\xf9\x13\x70\xf4\xf1\x13\x40\xdd\x49\x18\x77\x42\xdd\xec\x6a\x8c\x5e\xc2\x37\x5a\x67\x5b\xf6\xc7\x79\x18\x16\x0d\xff\x12\xf2\x67\xf2\x0d\xca\xf3\xed\xb4\x87\x1d\x8d\xe3\x47\x75\xc4\x65\x23\x8e\xdb\xc2\x82\xfe\xb0\x9e\xbc\xe1\xdd\x0b\x69\xcd\x87\xfa\x0f\xa7\x4e\xa6\xc0\xe6\xb6\xf2\xdc\x1a\x9c\x1e\x24\x75\xd0\xa0\xfc\x6d\x9d\x3b\xe6\x2f\xa6\xc0\x56\xf9\x02\x3b\xbe\x4e\x13\xe8\x90\x72\x4f\xdd\x00\xdc\x89\x88\x76\x22\x58\x91\x08\x46\xdb\x9f\x92\xd8\x1d\x78\x83\xc4\x6e\x4c\x8b\x74\x5d\x61\xcf\xbf\x0e\x4d\xcf\x49\x24\x84\xc7\x35\x30\x98\xaf\x27\x27\xf2\x2a\x6b\x72\xa2\x3f\xe5\xd3\x89\x44\xca\x13\x52\xf6\x84\xb0\xa1\x69\x1d\x22\x0f\x30\x67\xb8\x30\x7d\x02\xb9\x7f\xd0\xa7\x48\xbf\x25\xa2\xa3\x0a\x9a\xa1\x3c\xe8\x7c\xd9\xf3\x53\x51\x3e\xf0\x7c\x93\xe2\x75\x67\x06\xd5\x01\xce\xce\xed\xcf\x3e\x82\x72\xe3\x1c\xa0\x68\x45\x85\x77\xb7\xfb\x02\x12\xd9\x00\xd7\xb4\x8e\x2a\x92\xbe\xe0\x7a\x52\x15\x6c\xe8\xb3\x7e\x9b\xf3\x05\xa5\xc8\x87\xa1\x78\x78\x59\x99\x26\xae\x0a\x58\x59\x98\x77\x4b\x9b\xbb\xa3\x50\x2a\x7d\xfc\x15\xa4\x24\x9c\x64\x13\x36\x6f\xa8\x4d\x8f\xc6\x93\xaa\x26\x2d\x1e\xe0\x70\x02\xf6\xb9\x9b\x86\xfd\x5e\xad\xc2\x66\xf4\x0c\x1d\x43\x4c\x56\x35\x16\x34\x07\x58\xe9\x60\xec\xb3\x3f\x6b\xd4\x29\x51\x78\xa1\x54\x52\x91\x34\x49\x63\x6b\x3e\xd8\x60\x5d\x39\xb2\x2b\xa6\xb0\x24\x41\x75\x59\xc6\xd3\x04\x77\x42\xcd\x0d\x51\x5d\xd3\x37\x19\xde\x63\x3e\xfb\x3b\x05\xef\x80\x4c\xdc\x12\x9a\x03\xd4\xf4\xa6\xc0\x1b\x75\x0b\x22\xd7\xff\x64\x8f\xf1\xfb\xdf\xb9\xa0\xfb\x70\x27\x0e\x09\x18\x75\x10\x40\x13\xc0\x75\x19\xba\x45\x3b\xbe\x2a\x86\xb3\xb3\xfa\xba\xd1\x5c\xaf\x84\xc0\x00\xbd\xd1\x50\xe7\x3d\xea\xdc\x8b\x3a\x07\x51\x17\x3d\xea\xc2\x8b\xba\x00\x51\x97\x3d\xea\xd2\x8b\xba\x04\x51\x93\x1e\x35\xf1\xa2\x26\x20\xea\xaa\x47\x5d\x79\x51\x57\x20\xea\x63\x8f\xfa\xe8\x45\x7d\x04\x51\xd7\x3d\xea\xda\x8b\xba\x06\x51\x9f\x7a\xd4\x27\x2f\xea\x13\x3c\x24\x62\x6d\x4c\xc4\xfe\x41\x11\xc3\xd8\xfa\x88\x1a\x18\x52\xf0\x98\x9a\x69\x83\x6a\xe6\x1f\x55\x33\x78\x58\xcd\xb4\x71\x35\xf3\x0f\xac\x19\x3c\xb2\x66\xda\xd0\x9a\xf9\xc7\xd6\x0c\x1e\x5c\x33\x6d\x74\xcd\xfc\xc3\x6b\x06\x8f\xaf\x99\x36\xc0\x66\xfe\x11\x36\x33\x86\x58\x7f\xcc\x29\x0c\xa3\xb3\xa5\x9e\x69\xfc\x9b\x75\x8e\xfa\x4d\x1e\xa4\xfe\x85\x9e\x6a\x82\x6b\xfd\x40\xb5\x27\x14\xa5\x45\xd8\x84\xf2\xee\xd6\xb3\x9b\x43\x0a\xbc\xd4\x45\x3f\x7a\x1d\x3c\x69\xd5\x91\x68\x7d\x40\x25\xf9\xc1\xf9\x1b\x35\x26\xad\xf9\xd6\xa5\xa3\x08\x29\x8f\xaf\x74\x46\x42\x35\xf8\xaa\x08\x5d\x0a\x5c\x69\xc9\x4b\xb4\x10\xbc\x11\xe2\x5e\x75\x45\xc7\xe3\x6e\x0b\xb4\x3e\x04\xfc\x62\x04\xb9\x21\x73\xc9\x45\xae\xef\xb1\x65\xb4\xf7\x22\x1b\x4b\x38\xa0\x6f\x0e\x20\xca\x13\x64\xf3\x34\x78\x3d\xbd\x60\x71\x3c\x21\x0e\x5f\x9e\x45\x7a\x00\xc7\x77\x4d\x2a\xc3\x89\x99\x82\x1c\x56\x01\x06\x59\x75\xce\x8f\x92\xc9\x7c\x8a\x04\xe5\x6c\xb7\x13\x46\x43\x33\xe9\xfc\xe4\xfa\x72\x0f\xca\x87\x01\x80\x2e\x8a\xba\xf3\x24\xf6\x12\x56\x39\xd3\x85\x57\x66\xef\x00\x24\x8f\x0d\x0d\xd8\xaa\xa6\x7b\x92\xe3\xe0\x8e\xd6\x87\xd0\x38\x04\xe0\xce\x18\x5a\x5a\x34\xe7\x0a\x3b\x77\xdc\x19\xc4\x84\x42\xd5\x8d\x5d\x4d\x05\x5a\xac\x9c\x58\xc6\x78\x9c\x12\x37\x70\x6a\x33\xc8\x25\x32\x1b\xa9\x9e\xa0\x23\xf3\x05\x30\xad\x6c\x20\xc8\xcd\x38\xd2\x98\x4e\x32\x88\x3c\xa9\x88\x41\x12\xac\x75\x5a\x5a\x0d\xce\x6e\x5f\xcb\x44\x2d\x46\x85\xf7\xb0\xc1\x87\x54\xe0\x62\x87\x99\xc4\xdc\xf9\x01\x59\x63\x4e\x52\x75\xe1\x7c\x47\x43\x23\x55\x25\xe5\x2b\x69\x71\x70\x27\xfe\xd7\xc3\x70\xb5\x3c\x77\x62\x19\xeb\x75\x84\x64\x70\x81\x72\x49\xba\x07\xfd\x72\xe8\x6b\x73\x51\x49\xe4\xd0\x24\x00\x28\x5e\x72\xc4\x6f\xd0\xea\x5a\x4e\x33\x50\x99\x7c\x18\x2d\x16\x8f\x78\x28\x8e\xd1\x1e\xef\xa1\x29\x34\xb8\xd5\xd5\x70\xee\x58\x3a\x88\x72\x64\x28\x6f\xc8\x49\xe3\x0e\xc0\xb9\xc4\xbe\xea\x34\x80\x3d\x3a\xf9\x49\x1c\x08\xd2\x9d\x43\x13\x0c\x4e\x12\xae\xd1\x19\x21\xe0\x73\x1f\xf7\x46\x69\x0e\xfb\x53\x8b\xbf\xa0\xde\x7f\xfd\xeb\x5f\x27\x70\xa2\xac\x34\x53\x19\x50\xf0\x5d\x3b\x3c\x75\xb9\x03\x00\x02\x77\x28\xcb\x42\x51\x5e\xe8\xdd\xa0\x34\x50\xae\xf6\xf5\x80\xe6\x90\x9f\x56\x42\x3f\xe5\xa6\x14\x73\xc9\x04\x65\xcb\x82\xee\xa6\x3e\x4d\xce\x63\x58\x9a\xe5\xb0\x9f\x2f\xac\xe8\x43\x4d\x0c\xb7\x6d\x79\xf0\x64\xa2\xe0\x02\x91\xfc\xfa\x93\x1c\x35\x8b\x13\x88\x9d\x71\xda\x81\xd5\x3e\x22\x1f\xcd\x14\x5a\x32\xaf\x0f\x29\x50\xfd\x61\x5e\x26\xd0\xbb\x0f\x1a\x24\x22\x54\x55\x39\x49\x91\x4c\xf9\x2d\xdc\x28\xb8\x39\x06\x67\x5d\x9f\x9a\x18\x4d\x73\x7c\xc1\x1f\x1e\x60\xb3\x87\xea\xfe\x5a\x85\x6e\xb6\xf0\x20\x15\x8b\x22\x4e\x4f\x35\x69\x3f\x82\xa8\x7d\xa3\xe1\x1e\xa5\xe2\x9a\x34\x7a\x38\xe4\x18\x6a\x0a\xa0\x1a\xe6\xac\xe1\xbf\x6c\x2f\x8d\x41\x60\x7b\xa5\xd1\xec\x4f\xcb\xd5\xa4\xe2\xac\xb9\x3a\xc2\xaf\x3e\x4d\x9a\x80\xfd\x6c\xa2\x92\x96\x21\x2e\xaa\xf6\xc3\xcf\x39\x80\x06\xac\x91\x93\xb1\x20\x6e\x9d\x73\xdb\x75\x47\x50\x97\x7e\x52\x54\x67\x81\x7a\xa2\xe4\x4f\xb5\x07\xad\x1f\x07\x70\xa4\x54\x09\x1d\x47\x79\x71\xd8\x63\xe3\xda\x2c\xe9\xfc\xe4\x01\xc7\xef\x6d\x8d\xec\x8c\x47\x5d\x6b\x8e\xc0\x07\xa7\xdc\x71\x5e\xbf\x00\x37\xc8\x89\xd1\x19\x5b\x27\xe0\x68\x3a\xa1\x2b\x8e\x34\xa7\x13\x87\x43\x4e\x9c\xf4\x9f\xc9\x40\x57\x02\x54\xa3\x3d\xcd\x73\xfa\xa6\xaf\xf2\x7a\x74\x99\x43\x48\x73\x3b\xb3\x5d\xee\xe7\x7d\xd1\x82\x28\xdf\x41\xe5\xe1\x0c\x1f\x0d\x56\xe6\x56\x5b\x0e\xf2\xe5\x33\xb1\x49\xba\x2c\xab\x0e\x5c\x77\xd2\x51\x86\x9a\xe3\x8e\xa2\x3a\x9b\xb8\x07\x75\xf0\xd1\x1e\xe3\x4c\x39\x0f\xbc\xb7\xa2\xf0\x02\x97\xa7\x07\x0d\x46\x24\xe0\x03\x80\xce\x2a\x18\x65\x16\xcf\xb4\x2b\x6f\x64\x26\xae\xf1\x42\x34\x3d\x6e\x52\x79\xb0\xde\xc7\x17\x72\xd0\xa5\xdc\xe1\x40\xbb\xa7\x48\x49\x79\x6e\xb1\x0e\xd0\xd9\xba\xfa\x7d\x0a\x61\x61\xb0\x99\x44\x5e\xda\x76\x94\x4a\xbc\xf2\x0f\x8d\xa9\xc5\x46\x6d\x7d\x2a\x53\xd4\xe2\x0b\xca\xef\x70\xe4\x8c\x58\x27\xdf\xa7\x15\xc8\xb7\x58\x52\x1e\xc4\x8e\x3e\xb1\x44\x13\x89\x9f\x36\x3d\xaa\xc3\xa6\xa7\x2e\x67\xf9\x6c\x9c\x87\xbf\x9d\x8a\x6a\x5a\x4f\x76\x90\x5d\xc2\x26\x27\xed\x5d\x3c\x56\x9a\x6f\x66\x38\x40\xa3\xb7\x60\x6d\x65\x89\x9a\x81\xa9\x3b\x0e\xd5\x55\x54\x87\x9f\xde\x2f\x80\x4d\x04\x2f\x47\x00\x98\xbb\xeb\x4f\x21\xae\xdd\xb4\xf2\x0a\x8e\xa7\x31\x1c\x75\x00\x9f\x3d\x2d\x93\x45\xf6\xa9\x8a\x2a\xf1\x5b\xf3\x6c\x8b\xbc\xfd\x89\xb0\xb1\xca\x8b\xc3\x5a\x0d\x51\x57\x4f\x75\x69\x99\x8b\xe5\x3a\x5c\x65\xa8\x9f\x33\x5c\x6c\x7d\xfe\x2a\x16\xfd\x96\x14\x38\x6c\x48\x99\xe2\xb3\x9d\x14\xc9\x80\x13\x5e\x67\xc2\x46\x67\x14\xc5\xcf\xe3\x95\x61\xf4\xbb\x85\x55\x9d\x9a\xa3\xfc\xaa\xed\xeb\x56\x0a\x34\x9f\xdb\xa2\x52\x7e\xc6\x29\x42\xe1\xa4\x73\xa7\x0a\x30\x2a\xb8\x28\xac\x1c\x47\x37\x31\x90\x0c\x7a\x32\x61\x1d\xc9\xe0\x00\x28\xcd\x32\xaf\xa3\xf1\x88\x29\xed\x8a\x51\xcd\xaa\xbd\x4e\xbe\x7b\xee\x08\x55\x3e\xa7\x4b\xe0\xce\x23\xd0\xa5\xa8\x2b\x53\x68\x25\x9a\x85\xcc\xd5\x47\xb4\x24\x29\x9b\xa5\x7e\x11\x93\xee\x4b\x0c\x92\xab\xf2\x53\x63\x58\xec\x3a\x7b\xba\x0e\x7e\xca\x1d\xcf\x54\x27\x2c\xd1\xea\x6b\x89\x77\x99\xf0\xf5\xdf\xfe\x99\x7d\x00\x1a\x4c\x17\x7b\x65\x9d\x0b\x44\x7f\xa5\xfb\x35\x7e\x02\x70\x82\xce\x8d\x4e\x5c\x45\x17\xcd\x71\x61\x87\x2c\x00\x48\xbd\x38\xa7\xe7\xd5\x1a\x02\x8c\x6a\x8c\x6a\x2b\x6b\xa9\x07\xa3\x69\x51\xcd\x13\x29\xd9\x4e\x52\x46\xe7\x70\x1d\x9f\xbe\x95\xb8\x16\xf7\xaa\xf6\x7a\xa9\x8a\x4b\xed\x2e\xab\x71\x47\xf9\xd2\x26\x77\xa7\x05\xf3\xbc\xca\xf3\x6b\x41\x51\x14\x81\x4a\x61\x55\xd0\xc8\xae\x87\x27\xcf\x24\xb2\x16\xa7\xdc\xeb\x01\x24\x8a\xb2\x82\x4c\x3d\x79\xe2\xb0\x81\x48\x96\x68\x07\x55\x6e\x62\x27\x29\x1c\x04\x2e\xcc\x20\x32\xed\xe2\xbd\xeb\x69\x39\x8e\xd3\xe7\x93\xec\x07\xb5\xe5\x7b\x64\x9d\x9e\x40\x34\x83\xf6\xe8\x4d\x8d\xac\xdf\xfa\x38\xc0\x0f\x8f\x8e\xba\x0f\xda\xcc\x8e\xb3\x9b\x80\x33\x9a\x0c\xd3\xe5\x5f\xbf\xe1\x30\xdb\xcd\xd7\xf3\xb5\x7c\xc3\xc5\x5e\x69\x44\xd1\xba\x5c\x0a\xd7\x02\x39\xcb\xc5\x97\x30\xcb\xc3\x23\xad\xc9\x0f\x5a\xb6\x28\x07\x82\x04\xfa\xe4\x64\x43\x88\x41\x66\xee\xc4\xf3\xe5\x68\x59\x41\x66\x66\x11\xdd\xd1\x3c\xc3\xf5\xd6\xf1\x99\xe1\x67\x56\x5b\x91\xeb\x92\x3f\xee\x32\xa8\x88\x0c\x29\x42\x80\xef\x1e\xe2\x3c\x27\x55\x43\x9a\xad\x9e\xea\xb4\xa4\x22\xd1\xa9\x68\x9e\x94\x96\x7b\x72\x08\xee\x5a\xdc\xb4\x61\xc1\x93\x23\xb6\x8e\xd1\xce\x02\x36\xf3\x81\xf6\x7d\x2c\x46\x9b\xe5\x7e\x6f\xe1\xc2\x09\x9a\xa4\xa3\x8b\x96\x5a\xc4\x42\x8b\x72\x7a\x08\x27\x15\x6f\xdc\x6f\x7c\x01\x8d\x7e\xbe\x08\x57\xc5\xfe\xda\x51\x3d\x11\x8d\x74\x78\x7b\xaf\x72\x5a\xe3\x89\x0b\x83\x84\x0e\xa2\x12\xbd\xf2\xcc\x8a\xa6\xbb\x30\x57\x55\x80\xe3\x5b\x57\x71\xb6\xc2\xd0\x55\x0a\x53\xe5\x55\x0f\x42\x4f\xb7\x6a\x62\x33\xa4\x63\x98\xac\x47\x87\x8c\x12\xc8\x1c\x18\x4f\xa4\x24\xc3\x90\x3c\x56\xa3\x29\xf8\xe2\x36\x8f\x7e\x73\xdc\x9a\xf7\x98\x01\x41\x4c\x93\xa9\xf2\x94\x8e\xae\xbc\x00\xd8\x51\xbc\x24\x01\x17\xe4\xce\xaf\x1f\x7f\x70\x4c\xae\xa4\x4f\xe8\x6b\x0b\xee\xf6\x5e\xb6\x08\x6a\xaa\x81\xbc\x80\x4a\x4b\x3f\xaa\x8c\xa6\xb1\x0f\x57\xbf\xe1\xd4\x96\xdd\x46\xe0\xbb\xd9\x01\x54\xc9\x59\x95\xc6\x68\x75\xd9\xeb\x17\x8b\xc5\x04\x68\x19\x18\xc3\xe7\x62\x86\x53\x19\x62\xbc\x39\x95\x19\xae\x99\x56\xf2\xf9\xa7\x5f\xef\x82\x86\x9e\xea\x14\xff\x86\xaa\x8a\x94\x87\xff\xf8\x1f\xff\xf6\xe7\x03\x3d\x34\x11\x5f\x66\x9a\x26\x2a\x50\x15\xfc\xfa\xa7\xff\x1b\x00\x00\xff\xff\x8e\xcd\x45\x44\x58\xfb\x00\x00" func cssGogsMinCssBytes() ([]byte, error) { @@ -1722,7 +1701,7 @@ func cssGogsMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/gogs.min.css", size: 64344, mode: os.FileMode(0644), modTime: time.Unix(1584887047, 0)} + info := bindataFileInfo{name: "css/gogs.min.css", size: 64344, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xe2, 0x99, 0x8a, 0xa1, 0xd2, 0x52, 0x77, 0xa2, 0x87, 0xfd, 0x1b, 0xf3, 0xa2, 0xb1, 0xa6, 0xa3, 0x2f, 0xd5, 0x66, 0x27, 0x76, 0x7d, 0xe5, 0x1f, 0xc9, 0x3b, 0x2a, 0x9, 0x9b, 0x95, 0xf0}} return a, nil } @@ -1742,7 +1721,7 @@ func cssGogsMinCssMap() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/gogs.min.css.map", size: 22931, mode: os.FileMode(0644), modTime: time.Unix(1584887047, 0)} + info := bindataFileInfo{name: "css/gogs.min.css.map", size: 22931, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x73, 0x61, 0x54, 0x90, 0x64, 0xdc, 0xa4, 0x99, 0x64, 0x63, 0x7, 0xfb, 0x67, 0xa3, 0x1e, 0x8f, 0x4, 0xfc, 0x8d, 0xe7, 0x7a, 0x5d, 0x54, 0xd4, 0x58, 0x87, 0xfa, 0x64, 0xe6, 0x28, 0x77}} return a, nil } @@ -2202,7 +2181,7 @@ func imgDingtalkPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "img/dingtalk.png", size: 6105, mode: os.FileMode(0644), modTime: time.Unix(1584900306, 0)} + info := bindataFileInfo{name: "img/dingtalk.png", size: 6105, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x66, 0x91, 0x81, 0x36, 0x8f, 0xa0, 0xa8, 0xd6, 0x7d, 0xb0, 0x7a, 0xec, 0x21, 0x37, 0x13, 0x8, 0x28, 0x95, 0xda, 0x5e, 0x17, 0xd6, 0x82, 0x50, 0xec, 0x21, 0x28, 0x4, 0x4, 0xc2, 0x69}} return a, nil } @@ -19902,12 +19881,12 @@ func imgSlackPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "img/slack.png", size: 4350, mode: os.FileMode(0644), modTime: time.Unix(1584900306, 0)} + info := bindataFileInfo{name: "img/slack.png", size: 4350, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x3a, 0xe2, 0xa6, 0x4c, 0x45, 0x7e, 0x7c, 0x89, 0x58, 0xec, 0x90, 0x5f, 0x89, 0x16, 0x3f, 0x49, 0xbe, 0xa3, 0x93, 0xb0, 0xf0, 0x22, 0x3f, 0xd3, 0x24, 0x8a, 0x54, 0xab, 0x70, 0x97, 0x61}} return a, nil } -var _jsGogsJs = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6d\x7b\x1b\xb7\xb1\x30\xfc\xdd\xbf\x02\xa1\xfd\x78\xc9\x8a\x5c\x4a\x4e\xd3\xd3\x23\x5b\xee\xe5\xd7\x53\xb7\x76\x92\x13\xdb\x4d\xcf\xe3\xa8\xbe\xc0\x5d\x90\x84\xb5\x0b\x6c\x00\xac\x64\x25\xd1\x7f\xbf\x2f\xbc\xed\xe2\x6d\x97\x94\xec\xb4\xe9\xb9\x6f\x7e\x90\xc8\xdd\xc1\x00\x18\x0c\x66\x06\x83\xc1\x20\x6b\x39\x02\x5c\x30\x5c\x88\xec\xfe\xad\x5b\xe7\x90\x81\x82\xb3\xf5\x7d\xf5\x8d\xb7\xab\x96\x55\xf7\x6f\xdd\x5a\xb7\xa4\x10\x98\x12\x80\x09\x16\x4f\x68\x5d\x23\x22\xbe\x65\xe8\x1c\xa3\x8b\x37\x70\x35\xbd\xb3\xa6\xac\x9e\x81\x9f\x6f\x01\x00\x80\x2c\x78\x47\xc0\xd5\x2b\x44\x5a\x70\x02\xd4\xbb\x7c\x8d\x49\x39\xcd\x72\x01\x57\x6d\x05\x59\x5e\x23\xd2\x66\xb3\xfb\x0a\xde\xc2\x5a\x18\x2c\x50\x9d\xcd\x24\xe8\x74\x04\xe2\x5d\x09\x05\x5c\x08\xb8\x3a\x99\x64\xe0\xa0\x07\x91\x8f\xa7\x59\xa3\xdb\x96\xcd\xc0\x01\xc8\x26\xa7\xd9\x2c\x2f\x2a\x5c\x9c\x4d\xbb\x7e\x4c\x6d\x6b\xfb\x16\x6f\x31\x97\xcd\x9d\xca\x2f\xa6\x62\x55\x79\xde\x50\x2e\xa6\xea\xbd\xc1\xde\xb2\x2a\x9b\xcd\x1d\x04\xf2\x33\x79\x2f\xe9\x36\x39\x56\xe4\x9b\xfb\xaf\x6a\x5a\xa2\xc9\x31\x98\x6c\xd6\xf5\x24\x78\x55\x50\x22\xd0\x47\x31\x39\x06\x6e\x0d\xe6\x69\x36\x0b\xa0\x2d\x68\x40\xd3\x9c\xa3\x8d\x1c\x92\x71\xa2\x5c\x30\x2c\x90\x25\x09\x90\xa8\x20\x43\x30\x9b\xe5\xe7\xb0\x9a\xce\xba\x8a\xae\xfc\x3a\x7b\x92\x49\x2c\xb3\xa0\xd7\x1d\xf9\x0c\xc5\xbf\x85\x04\x55\x89\x51\xdf\xaf\x85\xd1\xb0\xdd\x8f\x2a\xf3\x2a\xca\xb7\xa2\xae\x74\xbb\x62\x48\x54\xd3\x0f\x78\x7d\x99\xb3\x96\x4c\xbd\x52\xef\x0e\x4f\x53\x88\x55\xf5\xa0\xa0\x25\xca\xe6\x20\x2a\x90\x23\x58\x6c\x1d\xfe\xc1\x73\xb0\xaa\x68\x71\x96\x22\x88\xfc\x6c\xab\x0f\x3c\xdf\xe2\xcd\xb6\xc2\x9b\xad\x78\x2c\x41\xa7\xba\x40\x5c\xf5\x55\xf0\xec\xaa\xfb\x65\x5e\x48\x00\xf5\x65\xd5\x0a\x41\x09\x7f\x22\x99\xf9\x1b\xf2\x8c\x08\xc4\xe4\x24\xb9\xd2\x13\xd7\xb4\xf9\x39\xae\xd0\x2b\x5a\x22\x1e\x4e\xdc\x67\x25\xfe\x27\xce\x5a\x97\x2d\xde\xc0\x95\x44\xfa\xe9\xf3\x58\xa3\xc6\x6b\x30\x75\x50\xe7\x15\x22\x1b\xb1\x75\x87\x22\x24\x85\xac\xdd\x29\xe0\x61\x5f\xac\x71\x85\x16\x72\x8e\xf2\x6c\x96\xf3\xa6\xc2\x62\x9a\xcd\x5d\xe6\x73\x8b\x8e\x09\x12\xb0\x4b\x98\x80\x6b\x08\x14\x30\x2e\x54\xc0\xb5\xa5\x07\xf8\x67\x49\x10\x10\x4b\x11\xb0\x97\x24\x09\xd9\xe6\x57\x97\x26\xe0\x5a\x12\x05\x5c\x5f\xaa\x80\xcf\x2f\x59\xc0\x35\xa5\x0b\x48\x48\x18\xe0\x49\x19\xd0\x4b\x1a\x17\xf8\x4a\xca\x95\x48\x80\x3c\xc5\xeb\xf5\x6f\x52\xe7\x97\x78\xbd\xfe\xad\x28\x7c\x35\x03\xc9\x6f\x54\x55\x4b\x42\x7d\xfb\x39\x26\x98\x4f\xf1\x84\x4a\x0d\x6b\xda\x5f\x5f\x87\x25\xe3\xd9\x95\x54\x92\x57\xb7\x12\x1c\xfb\x9c\xb2\xba\x1b\x7e\xa5\x3a\xa6\x59\x8e\x4a\x2c\x72\xd9\xeb\x6c\x66\xd4\x07\x38\x39\x01\x87\x2e\xd1\x18\x12\x2d\x23\x76\x2e\xe8\xd2\x09\x2d\xea\x23\xb3\x1a\x2a\x9c\x2d\x11\x54\xd4\x54\x63\x56\x27\x5b\x5b\xe8\x77\x7b\x35\x38\x6c\x6f\xc2\x5c\x8f\x30\x5a\xfb\x62\xb9\x04\x2f\xe1\x0a\x55\xbc\x9f\xd5\x15\xe6\x42\x4d\x93\x2c\x6f\x71\x5e\xa9\xb7\xb9\x7c\x98\xb9\x7a\x9e\xd0\xd7\xa8\x42\x85\x82\x94\x2f\x2d\x2f\x11\xba\xe0\xea\x85\x07\xad\xb0\x58\x59\x31\xcd\x72\x0d\xb2\x50\x8f\x81\x27\x28\x24\xf8\x16\x72\xd5\xa8\xb7\x4d\x09\x05\x7a\xa4\x29\x76\xe2\x60\x31\xec\x08\xd5\x9b\x6c\x26\xe9\x92\xb5\x0a\x38\x33\xfd\xea\x08\xad\x1f\xbf\xe0\xbc\x45\xaf\x90\x80\xd3\x96\x55\x73\xa0\x0b\xce\x01\x2e\x5d\x6a\x1a\x39\xa0\x20\xf6\x9f\xf9\x1a\xd7\xe4\xd8\x22\xf5\xdf\xe2\x72\x72\x0c\x70\x99\x10\xb5\x96\xfc\x8f\xca\x12\xdc\x25\x2b\xde\xdc\x07\x82\x02\xa9\x1a\x40\x4b\x34\x7d\x50\x09\x34\x85\x04\x05\x67\x08\x35\xe0\xed\x0b\x50\x51\x7a\xc6\xc1\x86\xd2\x32\xb7\x18\xde\x48\xb9\xc6\xb7\xb4\xad\x4a\xb0\x42\x00\x96\x25\x2a\x41\x89\x19\x2a\x44\x75\x29\xcb\xfe\xf9\xcd\xab\x97\xd2\x92\x04\x9c\xd6\x68\x4b\x2f\xc0\x87\x96\x0b\xb0\x41\x02\xa0\xba\x11\x97\xe0\x01\x6f\x20\x79\x08\x28\x01\x4a\x44\x36\x70\x83\x34\x72\x87\xe2\x8e\x54\x3e\x26\x54\x4c\xfb\x81\x9e\x81\x9c\x16\x02\x17\x94\xe8\x17\xe6\xc7\xa2\xd8\xa2\xe2\x6c\x96\x45\xea\xce\x23\xb9\x96\xc5\x5a\x4c\x64\x9a\x0c\x99\x33\xbd\xf7\x6f\xc4\x0e\x05\xa0\xe7\x95\xa9\x0c\xf2\x27\x15\xe4\x7c\x9a\xa9\x26\xa2\x32\x9b\x85\xa2\xd3\x82\x32\x54\xd3\x73\x14\x42\xdf\x4f\xc2\x9a\xc6\x99\xee\x67\x41\x61\x8f\x2a\x59\xba\xc7\x6e\x63\x53\x73\x20\x25\xe0\x43\xfe\x8e\x26\x89\x06\x58\x18\x8d\x36\x29\x91\x80\xc5\x76\x32\xef\x9a\xad\xa1\x70\xd9\x49\xb2\x8e\x55\x7b\xa6\x05\xa8\xe2\x68\x80\x44\xb0\x2c\x6f\x48\x9f\xbe\x64\x9a\x38\xff\x4c\xb2\x40\x71\x03\xb2\xdc\xf2\xec\x0b\x55\xc3\x8b\x52\x9a\x18\x93\xc9\xfd\x88\xc5\x1b\xc8\x10\x11\xd3\x59\x60\x01\x8d\x4c\x8e\x1b\xf0\xad\xfc\x74\xed\x38\x38\x49\xf4\x06\x1c\x80\xc9\x7c\x92\x5a\x0d\x87\xb0\x66\x66\x51\x96\xcd\x02\x5e\xde\xe2\x12\x85\x83\x93\xe4\x91\x3d\x10\xf7\x4c\x90\xc4\x1a\x09\x4e\x4b\x14\xdb\xcb\x21\xd5\xa8\xaa\xb6\x4a\x6a\xbc\xf9\x69\xf6\xee\xca\x0e\xb7\xf0\xea\x56\xdc\xc9\x6e\x98\x1d\x06\x52\x46\x9c\x6d\xb0\x53\x5e\xab\x6f\xb0\x86\x15\x47\xbb\x64\x5e\x27\xe9\x2c\xe3\xec\x92\x76\xfb\xcc\x94\xeb\xce\x92\xa2\x42\x90\x4d\xe6\x20\xf3\xa9\xf0\x99\x78\xfd\x5f\x27\x74\x3b\x77\x8b\xa6\xbd\x63\xce\x5c\xaf\xe5\x23\xac\xe2\xae\x37\xf6\x63\xcb\x3d\x78\x2a\xcb\x42\x7f\x51\xd7\x46\xcd\x2c\x2f\x04\xaa\xa7\xfa\xeb\x7b\x5c\xce\x01\x26\x4d\x2b\xbf\x45\x6b\xa3\xda\xda\x66\x1d\xb0\xb4\xf2\x7d\xd3\x0c\x24\x2d\x44\xb9\x4c\xf0\x0a\x79\xb6\x22\xe8\x4d\xba\xd0\x9a\xab\xf7\x32\xe4\x14\x25\xea\x4f\x53\xfe\x9f\xce\x9a\x83\xec\xd9\x19\x6a\xb2\x0b\xe7\x28\x0b\x7c\x22\x2e\x5f\xa5\x19\x25\x42\x90\xd4\x79\xd7\x56\x77\xf5\xd0\x1c\xce\xb2\x6b\xe9\x38\xf9\xe1\x17\x58\x14\x5b\x30\x4d\x31\x8f\xfd\x14\x90\x23\x90\xdd\xae\x71\x85\xb8\xa0\x04\xbd\xc7\x65\x76\x9c\x76\x8e\xb8\xd3\xcb\xf6\xbe\x9b\x9b\x0f\x20\x28\x24\x61\x4e\x26\x72\x60\x26\x60\xcb\xd0\xfa\x44\xad\x44\xbd\x36\xcb\xc7\x7a\x21\xfa\x30\x03\x07\x83\x5e\x13\x5b\x48\xae\xa7\xa7\x0a\xfc\xc1\x12\x3e\x1c\xf2\x0b\xad\x18\x82\x67\xf1\x2b\xd3\x35\xc8\x39\xde\x10\xf4\x1b\xe9\x59\xf6\x00\xd7\x1b\x8b\xb0\xc5\x00\x9e\x43\x01\x19\xc0\x35\xdc\xa0\x09\xe0\xac\x48\xa0\xd6\x30\x9f\x8d\x6c\x57\x01\x67\x0f\x0b\x03\xe0\xae\x0a\x77\x68\xfc\x3b\x3d\x9b\x29\x11\x37\xca\xab\x9e\x54\xad\x6f\xaa\x2d\xc1\x0e\xf1\x90\x90\x36\xff\x24\x71\xf1\xab\xcc\xfe\xc8\xae\xbe\x0a\x64\xd4\x28\x1b\x47\xe3\x35\xb0\xf8\xdf\x6d\x31\x86\x23\x9d\xa5\xf4\x65\xbf\x4e\x7e\x65\x45\x0b\x80\xa4\x04\x76\x36\xaa\xb7\x8e\xae\xeb\x5c\x0b\x9d\x24\x92\x3d\xf6\xe5\x92\x41\x9d\x2a\x65\xd1\xaa\x42\xee\x8c\xd7\xfe\x1b\xcf\x7d\xf3\x1d\x6a\x28\xc7\x82\xb2\xcb\xc8\x7b\xc3\xba\x57\xd7\x72\x36\x79\xe8\x9f\xe3\x4a\x20\xf6\x1a\x41\x56\x6c\x9f\x32\xda\x94\xf4\x82\x4c\xad\xe5\x1c\xe9\xef\xd2\x40\x38\x3a\x9c\x32\x77\x76\x58\x80\xdc\x7e\x99\xfe\x1c\xb8\x12\xab\xea\x0d\xfa\x28\x74\x85\xc7\x40\xb0\x16\xf9\xbe\x0c\x4a\x9e\x6c\x21\xd9\xa0\x63\xc7\xed\x28\x25\xc4\x1c\x9c\xc3\xaa\x45\x73\x70\xa7\xd8\x52\x5c\xa0\x14\x87\x5e\x60\x52\xd2\x8b\xbc\xa2\x05\x94\x05\x73\x29\xe5\x64\x53\x75\x09\xd7\xe9\x9a\x90\xbf\x94\x70\x5a\xa1\xbc\xa2\x9b\x69\xa2\xc0\xe8\x2e\x44\x8d\x38\x87\xb2\xc9\x3f\x03\x42\xbf\x43\xbc\xad\x04\x3f\x76\x89\xa1\xf0\x10\xba\x60\xfa\x5d\x36\x4b\x2c\x39\x7a\x1e\x7c\x8e\x2b\x04\x94\x44\x93\x3c\x58\xd0\xba\xc6\x82\x0f\x8c\x7c\xbe\xc6\xb2\xd1\xca\x16\xb2\x3c\xf0\x10\x1c\x82\x5f\x7e\xe9\x2a\xf0\xe1\x0d\x3a\x0f\xda\x33\xea\x87\x98\x22\xcb\x8b\x2d\xa5\x1c\xe5\x0c\xad\x11\x43\xa4\x40\xa0\x1b\xe5\xcc\xb3\x6c\x55\x85\x06\x26\x2f\x68\xd5\xd6\x64\x2f\xd9\x98\xaa\x81\x17\x8c\x56\x15\x26\x1b\x63\x23\xe6\x85\x9c\xe8\x25\xe6\x4d\x05\x2f\xe5\xfc\x21\x72\xf2\x45\x73\x3e\x85\x4a\xef\x5d\xf9\x12\x63\x55\x41\x69\xb2\x87\xc5\x7d\x75\x20\x20\xdb\x20\x21\xad\xe1\xb0\x72\xb5\x37\xb2\x63\xd1\x60\xaa\xed\xf5\x51\xb2\xce\x78\x91\x96\xe6\x8d\xef\xf1\x19\x1e\x62\x85\x0b\x7c\x86\x73\xbd\x35\x75\xe3\xc1\x6d\xe0\x26\x18\x57\xbf\xfe\x6f\x1a\x39\x7a\x83\xdc\xc8\x91\x10\x98\x6c\x78\x4e\x35\xdc\x60\x4b\xee\x4c\xb3\xdb\xb2\xdc\x7b\x02\x6b\x94\xcd\xf2\x33\x74\xd9\x36\xbb\xb6\x3f\x1b\x46\xeb\xc6\xac\x09\x54\xe9\x85\x2c\xbd\x28\x94\xc0\x58\xe8\xb7\x29\xd3\xd6\x8e\x88\xda\xe5\xc8\x05\x7d\x2d\x18\x26\x1b\xf5\xf5\x25\xbd\x40\xec\x09\xe4\x68\x3a\x03\x5f\x84\x9e\x8c\xae\x8a\x6c\xb8\x54\x52\x29\xeb\xa6\xe4\x7c\x4b\x2f\xa6\x7b\x7b\x30\x4c\x21\xa9\xc4\xa2\x42\x23\x1c\xf1\x98\x41\x52\x6c\xd1\xee\x21\x59\x19\xc0\x9b\x70\x47\xc3\xa8\x50\x1a\x7a\x61\xb1\xc4\x4c\x62\x67\x1e\x22\x70\x55\xa9\xe1\x90\x45\x94\x07\xdc\x3e\xbb\xd8\x62\x81\x8c\xb0\xd2\xa3\xb6\xc3\x29\xa5\x36\xcb\xcc\xe2\x3c\x6d\xfe\x0c\x4d\x55\x6f\x9a\x97\x98\xcb\xfa\xa3\xf5\xfd\xde\xee\xa4\x1e\x6f\x3f\x8f\x07\x91\x8e\x0c\x96\xb3\x0b\x92\x18\x2a\xbd\x0b\x32\x38\x3e\xcb\x25\x78\xc2\x10\x14\x48\x3b\xdf\x7c\xd5\x4c\xd0\x85\x42\xde\x6d\xbd\x49\x43\x09\x5d\xe8\xcd\x0f\xbb\xef\x16\x0e\x55\x0f\xa0\x23\x40\xf6\x11\xd3\x5e\x45\x11\x8b\x5f\x0d\xd6\x60\x9a\x00\xf2\x02\x92\x02\x55\xd7\xaf\x2a\x9c\x18\x57\xa1\xd2\x29\x68\x45\xd9\xa2\xc1\xc5\x19\x62\xfb\x7b\x53\x6a\x4c\xb0\x2a\xc9\xc7\xfa\xd1\x30\xa4\x81\x80\xae\x66\x8f\xe6\xab\x98\x37\x09\xfb\x7e\x8b\x3e\x82\x50\xb6\xe8\xc6\x6e\xd1\xc7\xa4\xf2\xf2\x7b\x22\xe5\x56\x87\x29\x01\xde\x77\x61\xc1\x2f\xa0\x28\xb6\x8b\xae\x8d\x9c\x4f\x27\x2b\x58\x9c\x6d\x18\x6d\x49\xa9\x9f\x4f\xe6\x20\x85\x2d\xec\x32\x2a\xb1\xd9\x3b\x5b\xec\xcf\x1d\xd3\xec\xb6\x2e\x52\xd3\x12\x56\x0b\x69\xd3\xee\x5e\x60\xc5\x35\x82\x9e\x71\x16\xca\x7e\x4f\xa2\x11\x58\x54\x68\x27\xa6\x04\x31\x13\x43\x91\x44\x73\x7d\xc2\xee\x8b\xb9\x6f\x60\xae\x28\x95\xcd\xf4\xff\x69\x2c\x8b\x28\x79\xd4\x34\x8c\x9e\x7b\x26\xf1\x50\x14\x47\x80\xdb\x6c\xec\xf2\x76\x55\x63\x11\x6a\x15\x10\x2d\xaf\xaf\x6c\x2b\x32\x39\xaf\x6f\x6a\xa3\x74\x6b\xa8\x41\x41\xd7\x2d\x94\x62\x61\x77\xab\x6f\x55\xa2\x20\x41\x17\x7d\xe1\x41\x41\xa9\xd7\x2a\x50\x20\x3d\xe8\x46\x1a\x76\xe5\xf2\xfe\x95\x27\x10\xfb\xc7\x0a\x42\xe0\xda\xfc\x0c\x06\xa5\x82\x64\x73\x1c\x82\xc3\x69\x26\x9f\x87\xc1\x51\x98\x54\x98\xa0\xd4\x42\xa7\x47\x7f\xac\x49\xea\xbf\xe6\x02\x32\xf1\x14\x0a\x94\xaa\x49\xbd\x5c\x28\x07\x66\x50\x9f\x1c\x70\x68\xca\x65\xff\xb3\xa8\x17\x65\x16\xae\xaf\xb4\x57\x58\x83\xf4\x0c\x55\x88\xb4\x7e\xcd\x6e\x97\x08\x96\xb2\x13\x56\x10\x09\x45\x9d\xe7\xaa\xa2\xa9\xa9\x63\x64\xfb\xca\x97\x2a\xb7\x95\x73\xdf\x34\x7d\x2f\x71\x12\x54\x1f\xb9\x06\xf6\xe5\x4a\xe5\xb8\x18\xe4\x48\x69\x36\xe7\x58\x82\x8c\xa9\xdf\x67\x25\x16\x40\x41\x01\x25\x7b\x7c\x8e\x53\x2f\xde\xc8\xe7\xc6\x44\x55\x0f\x16\x46\x4a\x05\xde\x6d\x39\x49\x5f\x48\xc9\x66\x60\xd5\xa4\x55\xa0\x9d\xc0\xd3\x0b\x08\xf3\xcb\x2f\x2e\xa1\x55\x4d\x6f\xe8\x66\xa3\xea\x1b\x21\x62\xdf\xae\x5c\x28\xf0\x50\x10\x28\x45\x4d\xc5\x02\x93\x85\x44\xac\xac\xdd\x01\xb8\x54\x3b\x87\x91\xee\x44\xd8\x51\x21\x5f\xd3\xa2\xe5\xe1\xfb\x81\xb1\xf5\x39\xaa\x6f\x51\xc7\x51\x01\x79\x42\x16\x54\x06\xc8\xe2\xda\xe5\x38\x3c\x47\xfb\x94\xda\xc9\xd6\x8a\xff\xfa\xae\xeb\x65\x89\xe3\xc0\x71\x57\xef\x09\x52\x29\x78\x09\xe8\x8d\xac\xf2\xa2\x26\xe7\xb0\x5f\x32\x51\x28\x56\x0b\x69\xc2\x83\x84\x1b\xcf\x44\xb5\x79\x6a\xcf\xf7\x06\x5e\x3f\xfc\x54\x91\x77\x72\x1c\xf5\x79\xcc\x07\x03\xf6\x8e\x04\x0d\xb0\x4a\xd0\x5c\xd5\x38\x14\x67\x19\x12\x6c\xb4\x44\x18\x12\x39\x2c\x9e\x06\x04\x0b\x65\xc0\x04\x51\x01\x13\xee\x17\x5b\x65\xe6\xc5\x9e\x46\xe8\x1d\x6b\x7a\x9f\xc4\x0e\xe8\xf8\x0b\x51\x3c\x71\x3f\xc6\x22\x6b\x7e\xa2\x2b\xfe\xff\x29\x51\x32\xce\x20\xb6\xae\x0e\xb7\x6d\x8b\x9f\x12\x8e\x19\x85\x87\x21\x52\x22\x66\x30\x25\xb0\xe8\xf7\x7d\x1f\x53\x28\xe0\xc5\x48\x79\x78\x31\x5a\xd8\x86\x3d\x06\x5e\xf0\xe5\x12\xbc\x46\xa2\x6d\x00\x41\x17\x4a\x8d\xa6\xa7\xac\x43\x01\xed\xab\x1e\x74\xbd\x76\xa3\x96\x2c\xd6\x49\x2e\x4b\x2f\x63\xaa\x69\x9c\xa9\xa8\x47\xdb\xee\xb8\xcb\x7d\x20\x67\xd0\x27\xd3\xaf\xff\xc2\xe7\x48\x75\x4b\xc5\x7f\x2e\x4d\xa4\x30\xb0\x41\x98\x80\xc0\x1a\x01\x41\x41\x89\xb9\xc0\x64\xd3\x62\xbe\x05\x6b\x46\x6b\x40\xc5\x16\x31\x1e\xa1\x0c\xd9\x41\xda\x02\xb2\x55\x61\x47\xcd\x80\xb4\x38\x08\x0b\x8c\x3b\x17\x06\xfa\x06\xc8\xc7\x62\x7e\x7d\x1a\x99\x40\x52\x28\x04\x9b\x66\xaa\x83\x3a\xe6\x75\x1e\xb7\xce\x0b\x89\xdd\x13\x99\x8d\xfd\x1e\x44\xd7\x05\x87\x8f\x21\x34\xbd\x51\x55\xdb\xad\x23\xa7\x12\x01\x57\x9f\xd4\x5e\x83\xde\x34\xe5\xba\x15\x8c\xf6\x60\x60\x5c\x74\x4f\x3a\x27\xc3\xe7\xe8\xcc\x40\x4d\xb6\x53\xd7\xaf\xcb\xed\x57\x54\xdd\x40\x40\x6b\xd0\x88\x54\xc9\x21\xa6\xd7\x46\xc6\xfe\x7e\x95\x0e\x9f\x27\x1e\x93\x2e\xc4\xc1\xaa\x53\xae\x43\x30\x10\xa6\x3f\xd4\x6e\x69\xe4\xfc\x6b\x5a\x9d\x86\x36\xf6\x45\x7a\x4c\x77\x19\x1a\xf6\xb3\xc3\xe0\xe8\xc0\x9c\xf8\x7a\x2b\x53\xb5\xe5\xb1\xab\x8c\x3e\xfc\x92\x6e\x64\x77\x6c\x26\x89\x23\x61\xc6\xd8\xcf\x7e\xe6\x8c\xfd\x48\x0d\xa5\x2c\x93\x1d\xea\x28\xfc\x04\x43\xd7\x29\x27\x42\x1d\x33\x63\x50\x2b\x79\x5d\x19\xf2\xa6\xee\x53\xa5\x6a\xba\xa9\x70\x47\x3d\x20\x8c\xea\xf7\xd0\x0d\x1f\x98\xf1\x9a\xe0\x1f\x9e\x89\x30\xdc\xe4\xf4\x8c\xfb\xb9\xee\x49\x1a\xf7\x93\x9a\xae\xde\xfb\xc1\xb7\xc9\xf3\x38\x7b\xfb\xbc\xf7\x33\x30\xfc\x96\x44\x26\xd4\x96\x86\x66\x86\xb4\x30\xf4\x46\x66\x73\x09\x18\xbc\xb0\x66\x2d\x80\x1c\x10\x84\x4a\x54\xc6\x6b\x42\x77\x16\xa5\x84\x49\xc8\x41\x09\xc1\xa7\x2c\x36\x7f\x16\xef\xb4\xd4\x3c\x70\xc7\xca\x4c\x2f\x94\x82\xd0\x94\xae\xf0\x75\x96\xb2\xc1\x3a\xe0\x29\xaa\x90\x40\x76\x01\xe0\x19\xfe\xa5\x7a\xb5\x30\xaf\xf6\x35\xfd\xc7\x4e\x0c\x4a\x0a\x15\x94\xac\x31\xab\xbd\x63\x49\x15\x2d\xa0\xf2\xab\x26\x69\x74\x8d\x63\x86\x20\x14\xbd\x09\xe6\xcc\x4b\x4a\xc6\x76\x81\x1c\x12\xdc\xd6\x67\x85\xdc\x03\x89\x8a\x16\x0b\x1d\xaa\xa8\x77\x7c\xf6\xd1\x7f\x57\x37\x18\x19\x1d\x95\x00\xb8\x80\xa2\xe5\xbe\x2b\x47\x3f\x7b\xac\x74\xa6\xf1\xe6\xe8\x47\x9d\xdf\x3c\xf0\x3f\x98\x66\x4b\x63\x18\xa8\x45\xd3\x7b\x73\x0c\x6b\xd7\x2e\x68\xbc\x99\xb9\x8b\xa3\xdd\xb6\x69\x2e\xf6\x1f\x75\xfe\x44\xd1\xf2\x28\xca\x61\x50\x52\x5c\x07\xeb\x02\x2a\xf7\xb8\xe1\xda\xd9\x3e\x6e\x42\x0f\xd7\x3e\x3e\x42\xdb\x7e\x3d\x6f\x87\x9b\x72\x0e\xab\x94\x37\xde\x1b\x91\xa4\xbb\x3c\x76\x27\x3e\xc5\xeb\xf5\x90\x33\x51\x1f\x60\x1b\x73\x4e\x17\xb4\x25\xa2\xf3\x4c\x4b\xf8\x85\x79\x94\x05\x11\xe8\x16\xb4\xc3\x76\x02\x8e\x22\x12\x58\x98\x58\x69\x49\xe3\x7f\xf0\xc4\x9e\x7c\xa9\x9a\xa0\xa0\xd2\xab\x32\x58\x96\x2f\xb1\x5e\xed\x4b\x28\xa3\x10\x78\x03\x89\x3e\xc4\x57\x61\x82\x4e\x73\x58\x96\x99\xf1\xfe\x4c\xe4\x93\xc9\x00\xb6\x12\x55\x7b\x60\x2b\xd5\xf6\xe0\x6e\x6c\xb0\x2c\xbf\x45\xac\xd0\x6e\x80\x06\x32\x8e\x9e\x57\x14\x8a\xa9\x69\xf3\x0c\x2c\xc1\x34\xf5\xf8\xc0\x05\x36\x4d\x9a\xcd\xc0\xef\xc0\xd1\xe1\x61\xc2\x52\xee\x5b\x3a\xc9\x57\x90\x01\xd9\xdb\x89\xd9\x02\xba\xc0\xa5\xd8\x4e\xe6\x6e\x53\x0e\xc0\xe4\xff\x0b\x5b\x7c\x35\x14\xc9\x6e\x06\x5f\x1d\x15\x5f\xd1\x8f\x20\x97\xfd\xe5\x0b\xd2\xee\x13\x4e\xe8\x8a\x03\xbd\x0c\xc2\x03\xa7\x35\x06\x22\xa3\x8c\x48\x8d\x50\x8c\x39\xf3\x9d\xc6\x6b\xac\xb3\x9c\x92\x69\xb6\x85\x7c\xab\xb7\xf4\xb3\xb9\x63\xb9\x46\x71\x5a\x83\x5d\x96\xa6\x58\x6e\x03\x16\xfd\xed\xfb\x74\xd0\xb2\xe4\x00\xc9\xbe\x51\xdf\x20\xdf\xe6\x35\x14\xc5\x76\xba\xfc\xc7\x6d\x55\x57\x7e\x70\x67\x99\x50\x7e\xc9\x99\x71\x67\x5a\x2b\x03\x90\xe3\x55\x85\xc9\x86\x4f\x33\xa7\x81\x5e\x20\x4f\xba\x59\x2e\xb5\x72\xc1\xf0\x66\x83\x98\x47\x9e\x48\x94\xfc\x77\x8b\x8b\x33\xbd\xe1\xa3\x0c\xa5\x5e\x92\x80\x2d\xad\xf5\x26\x43\x17\xf1\x52\x54\x94\xa0\x05\xe7\xdb\x1d\xfc\xa1\xb6\x91\x15\xac\x52\xcf\x46\x4a\x7b\x6e\xda\x0a\x93\x33\x4f\x1c\x06\x95\xe8\x82\xf1\x7e\x69\xa2\x5c\x18\x6f\xbe\xaa\x5a\x14\xaa\x3d\x07\xf3\x56\x88\x86\xc7\xb1\x58\x7e\x19\x65\x86\xbc\x16\x94\xc1\x0d\xca\x39\x32\x31\x94\x0e\x96\x86\x51\x41\x0b\x5a\x65\x73\x90\x29\x82\x18\xc2\xda\xd3\x2d\xe9\x3a\xff\x6d\x89\xa6\xc7\xfc\xf3\x91\xcc\x10\x64\x94\x68\xba\x37\xe3\x24\xd3\xdd\xd0\xd1\xa0\xd3\xf0\xa4\xc8\x72\x09\xbe\x6d\xab\x0a\x30\xf4\x63\x8b\xb8\x18\xd2\x98\x05\xad\x1b\xc8\x50\xde\xb4\x55\xf5\x09\xd1\x6b\x3a\x38\x29\x15\xbf\x36\x50\xaf\xf2\x25\x8d\x56\xea\x1e\x6a\xae\x11\xdb\xa0\x5c\xca\x2c\xb5\xf5\xf5\x8e\xc0\x1a\x9d\xa8\x87\xef\xb9\xb8\xac\xd0\xe9\xbe\x61\x4d\x9e\x0d\x07\x4e\x4e\x4e\x40\x56\xa8\xc8\x9e\xf7\x1a\x9b\x0e\xd2\xcc\x06\x76\x64\x4d\x0c\x67\x5e\x22\x5e\x30\xac\x02\xed\xf2\x35\x46\x95\x54\xc1\xd7\x0b\x39\x1b\xc7\xb5\x2b\x12\xcd\x90\x36\x8c\x58\xfe\x1e\x9f\x61\xef\xb4\x79\xe7\x2e\x7e\x64\x16\x97\x71\xd8\x62\x97\x8b\xe0\xb6\x63\x0e\xdf\xef\x47\xcd\x96\x1e\x18\x24\x82\x2e\xc0\x6b\x5c\x37\x15\x7a\xf5\xf4\x59\xb0\x5b\x0f\x5b\x41\x9f\xd2\x0b\x52\x51\x58\x3e\xa7\x44\x3c\xba\x40\x9c\xd6\x28\xb9\xe9\x8e\x2a\x24\x07\xfa\xb8\x6f\xee\xbb\xc3\xd3\x68\x83\xbd\x40\xaf\x2f\x49\x91\xda\xd3\x37\x4b\xde\xef\xd4\xe2\xd4\xdd\x5d\x6f\x2a\x88\xc9\x1b\x15\xc6\x6c\x60\x66\xe0\x67\x75\x2e\x9b\x5f\x92\x02\xd4\x48\x6c\x69\x19\x8d\x0f\x47\xe2\x0d\xae\x11\x6d\xc5\x1e\x0b\xa4\xe5\x12\x3c\x7f\xf1\xf7\x57\xcf\x8e\x01\x17\xb8\xaa\x00\x47\x4a\x95\xc8\x96\xd8\xd9\x07\x2e\xb6\x88\xd8\xf5\xce\x0a\x16\x67\xea\x2c\x78\x89\x05\xa8\x69\x89\x76\xfa\xdf\xd4\x00\xec\xb1\xe4\x03\xd7\xf0\xb8\x0d\xa7\xb0\xf2\xc0\x02\x27\x9b\xd3\x92\x91\xa4\x34\x5d\x69\x53\xb4\x1b\x84\x5f\xd7\x11\xd7\xf9\xdd\x09\x41\x4c\x1d\x8a\x3f\x01\xd9\x83\x12\x9f\xdb\x83\x34\x35\x64\x67\x52\x3a\x4d\x1e\x4a\xeb\x4b\xa2\xd4\x87\x5f\x4a\x7c\xfe\x30\x1b\x77\xfd\x78\x6e\x2f\xb3\xe3\x46\x59\xb7\x2d\x31\x1b\x77\x7e\xa5\x1d\x47\xa9\x05\xf3\x1c\x1c\xa6\x3c\xb2\x86\x75\x26\x2f\x29\x2c\x31\xd9\xe4\x79\x1e\x9c\xf1\x0d\x88\xa8\xd9\x0f\x93\xcd\x13\x4a\xd6\x78\x73\x9c\xa0\x1c\xc7\x64\x53\x21\x69\x81\x3f\x66\x08\x9e\x71\x33\x2f\xc7\xb0\x62\x52\x22\x22\xbe\xc7\x62\xfb\x06\xae\x78\x72\x22\x0b\xb8\x7a\x8d\x7f\x42\xc7\xe0\xf7\x41\x54\x4d\x83\xaa\xea\x89\x8a\x27\x4d\x87\xdd\x08\x4a\xab\x15\x64\xc7\xe0\xdd\x64\x45\xab\x72\x32\x07\x13\x2c\x60\x85\x0b\xf9\x8d\x0b\x86\xcf\x90\xd8\x32\xda\x6e\xa4\xd1\x3f\xf9\x25\xc1\xb3\x93\x2d\x52\xc4\x59\x1c\x49\x08\xfb\xe3\x9e\xfb\xe3\x4b\xf7\xc7\x4a\x59\x88\xee\x13\x5e\xc3\xaa\xd2\x8f\x92\x15\x48\x43\x54\xbe\xfc\xb1\xa5\x02\x0d\x42\xb5\x84\xb2\x12\x31\x54\x2e\x2a\xcc\x85\x04\x0b\x7f\x27\x8b\x49\x3b\x45\xf5\x5a\x9d\xf1\x9a\x83\x89\x80\xab\x4a\x7d\xd9\x52\x86\x7f\xa2\x44\xc0\x6a\xc1\xda\x6a\xb8\xe2\xa2\x42\x90\x2c\x94\xb3\x53\xc2\x18\xde\x94\x5f\xd7\x6d\x55\xf1\x82\x21\x44\x26\xa7\x49\x3d\xa2\x92\x03\x5a\x39\xae\x58\x5b\x27\x0c\x94\x3d\x7e\x85\x19\xa3\xcc\x3e\xbd\x25\xc5\x1d\x65\xe0\xc5\xb3\x5b\x3a\x2e\x5b\x85\x28\x53\x71\xd9\xa0\x1c\x91\x92\x4b\xee\xf0\xa2\x62\x1a\x28\x04\x62\xc4\xd5\x49\x25\x38\x51\xa9\x28\xac\x52\x59\x00\x03\x64\x1e\x68\xd6\x36\x3c\x5f\xca\x95\xf7\x21\xb8\x7b\xd7\x14\x81\x5c\xbc\x20\x25\xfa\xf8\xcd\xba\x47\x2d\x15\x79\x79\xff\xd6\x95\x6e\xde\xa3\x52\x8e\x66\xdf\x04\x41\x55\x32\x0c\xb1\x45\xa0\x68\x19\xa7\x0c\x28\x15\xa8\xd5\x26\x80\x4a\x05\x02\xa5\x7b\x25\xe8\x87\xff\x6e\x11\xbb\x04\x74\xf5\x01\x15\x22\xbf\xe5\x28\x80\x3b\x73\xd0\x92\x12\xad\x31\xe9\x63\xa2\xef\xe4\x6b\x92\x6f\x90\x78\xa2\x10\x7f\x6b\xf1\x0e\x85\x05\xa9\x10\xa2\xca\x89\x07\xd8\x20\x31\x3d\x0c\x62\x8c\x1a\xca\xc1\x09\x38\xf4\xdd\x11\xe6\x6c\x19\xa6\xe4\xb5\x5c\xaf\x64\xb2\xe9\xa8\x0a\x45\xa2\x2e\xaa\x82\x7e\x5d\x68\x67\x0d\xac\x4d\x12\x1f\xa3\x42\x56\xd2\xa2\x95\x3a\x38\x44\xa9\x82\x19\x13\x7e\x55\xd9\xd2\xd7\xaa\x2f\xb6\x64\x5f\x69\xae\x8d\xaa\xef\x94\x45\x96\x2e\xf7\xd2\xf8\xcf\x76\x96\x56\x6b\x01\x8f\x31\xec\xe7\xb5\x8a\xe1\x3c\x47\xaa\x8b\xd3\xac\xd8\x42\x06\x0b\x81\x58\x36\x07\x0b\x54\xe5\xea\xd8\x92\x4d\x25\x77\x3f\x41\x26\x59\xde\x41\x0e\x16\x7d\xbb\x5c\xa7\x81\xfd\x66\xf8\xb1\xa1\xdc\xda\xb6\x57\xb3\xa9\xe6\x16\x29\xb2\x6f\x39\x67\xb3\x45\x6f\x13\x75\x6a\xd3\x3d\x44\x16\x4e\x2b\x97\xe6\xe1\xbb\x5c\x50\xa9\x3a\x25\x0a\x97\x94\x21\x18\x38\x01\xa4\xad\x2a\x6f\x89\x2b\xab\xf2\x67\x75\x7c\x42\x4d\x19\x53\x5e\x29\xbf\x84\xc4\x3b\x60\xe4\xed\x6b\xe0\xed\x30\xee\x06\x0d\xbb\x1d\x4a\x6c\x97\x02\x73\x94\xd7\x0e\xc5\x95\x52\x5a\xa3\x0a\xeb\x33\x9a\x9b\x7b\x9b\x9a\x9f\xdf\xcc\xbc\x89\x89\xb9\x87\x79\xb9\x87\x69\x79\x73\xb3\x72\xb7\x49\x39\x60\x4e\xee\x6f\x4a\xfe\x5a\x66\xe4\xcd\x4d\xc8\xd8\x7c\x0c\x17\x87\x09\xb3\x71\xd4\x64\x74\x88\xf4\x69\x86\xd7\xaf\x6a\x74\xed\x36\xb8\x6e\x60\x6c\x7d\x9a\xa1\xe5\x19\x59\xa7\xbe\xcb\xc5\x13\xa8\x57\xbe\x42\x78\xd2\x89\xeb\xb4\x46\x18\x16\xd3\xfe\x9b\x01\x6d\x10\xcb\xec\x94\x2e\x18\x53\x3b\x43\xda\x20\xa1\x67\xfa\xbe\xe4\x6b\x46\xeb\xae\x3d\x9e\x78\x77\x50\x57\x98\xa0\xaf\xdb\x7a\x85\x18\xd7\x22\xde\x73\x7c\x45\xfa\x8e\x92\xe9\x44\x3b\x73\x26\xae\x43\xbb\xa8\xe7\x40\x3f\xf6\xbc\x44\x9d\xf8\x50\x21\xf2\xb5\x34\xa8\xfe\x26\x15\x7f\xb7\x69\xbc\x7b\x78\x6c\x6e\x3f\xca\x3a\xc1\x2b\xe7\xe7\x07\xbe\xf8\xb1\xc5\xc5\xd9\xa2\x69\xab\x6a\xa1\x4f\x26\x2f\xf4\xf1\xca\x5d\xee\xa6\x94\xab\x09\x64\xda\xe3\xb3\x10\x74\x41\xd0\x85\x39\xcf\x17\xb9\x9a\x64\xcd\x4e\xb5\x1a\xca\x9e\x85\x4c\xee\xc8\x0f\x16\x00\x36\x4e\xbc\x61\xb4\x99\x66\x52\x49\x60\x86\xca\x6c\xae\x68\x30\x8b\x8c\xc2\x6b\x34\x24\xe5\xa1\xba\x49\x43\x94\x5e\x9d\x85\xd6\x56\x37\x64\x9d\x03\xeb\x39\xae\x90\xc2\x24\x2d\xe7\xc9\x6d\xb5\x85\x21\x7f\xdb\xed\x1e\x0f\x28\xda\xcd\x45\xd1\x36\x20\x47\x5d\x9e\x9a\x69\x96\xaf\x18\x82\x65\xc1\xda\x7a\x05\x78\x03\x49\x6e\xde\x46\x47\x07\x4a\x7c\x8e\xcb\x6e\xf3\xd0\x29\x55\xe2\xf3\xdc\xbc\x0c\xb7\x11\x55\x6b\xe4\x8c\x91\x2c\xf0\xc7\x31\x9f\x64\xb4\x8a\xd0\x6c\x93\xdc\x5e\x56\xe5\x4c\x33\x07\x5c\x73\xee\x47\xb6\x5e\x99\xc3\x3a\xc2\xc4\x14\x83\xbc\xcf\x84\x01\xad\xd3\x7d\x28\x78\xcc\xe1\x66\x8d\xe9\xc0\x7b\x36\x14\xa2\x64\x60\xde\x1d\x9e\xe6\xd2\x2c\xb6\x26\xbe\xb6\xed\x5d\x0b\xdd\xa4\x19\x48\xdb\xeb\x1d\xb6\xa0\xed\xc3\x91\x07\x0a\xda\x0c\xc9\x6e\xe8\xe0\x30\x56\xc2\xf8\x8f\x86\xf2\xe8\x3f\xa3\xdd\x60\xb5\x76\x83\x4c\x38\x71\x1f\x26\x58\xc0\xe4\xa0\x5e\x86\x5b\x56\x6b\xca\xc0\x54\x16\xc3\x6a\xc1\x07\x30\x78\xa0\x31\xd8\xf5\x0e\x38\x38\xc0\x43\xbb\xc8\x76\x40\x55\x81\x77\xf8\x34\xee\x96\x6c\x74\x88\x12\x2c\xe2\x6d\x6c\x17\xde\x1b\x85\x11\x2b\xe9\xce\x34\x53\x79\x25\xad\x51\x64\x46\x66\xf2\xf0\x01\xd4\xb9\x6f\x26\xb7\xb5\x7d\x64\xb9\x45\x25\x99\x79\xb0\x54\xb9\x28\xb3\x59\x8e\x09\x47\x4c\x3c\x46\x6b\xca\x90\x9d\x02\x23\x1e\x34\x59\x9d\x63\x82\x99\x91\x9d\x3c\x04\x4b\x60\x0c\xaf\x6b\xa1\x8c\x2d\xaa\xf8\xc9\x48\x4c\x5d\x34\x1b\x76\xf2\x14\xd8\x35\x17\x0e\xb5\x09\x97\xc6\x70\xe5\xfb\x07\x0c\x8f\xbd\x3b\xf5\xb6\xac\x86\xc5\x58\x22\x3c\xc1\xac\xc9\xe2\xc5\x3e\xea\x0e\x2c\x58\x90\x78\xfb\xd6\xbc\x71\x44\xc7\x30\xbf\x68\xde\x6b\x5a\xbe\x4d\x14\x4b\x47\x77\x0d\x51\x3e\x81\x6a\x47\x78\x58\x98\x55\xd0\x97\x58\xa1\xef\xa4\x47\x3f\x24\xd9\x82\x94\x90\x82\x21\xf4\xbe\x81\xca\x8d\xa1\x4b\x7f\xa0\x98\x04\xf3\xfc\xce\x34\xbb\xdd\x01\x9a\x1d\xca\xee\x77\x00\x67\x13\xd8\x0b\xb8\xca\x66\xc1\x82\x68\x3e\x08\xc1\x28\x35\xa7\x19\xe4\xba\x09\x1c\xf4\xed\xca\x79\xbb\xe2\x3a\x7b\xc2\xe1\xdc\x79\xec\x3a\xd1\x26\xcb\x89\x2c\x73\xd4\xdb\x4b\xfd\xe6\xb9\x52\xa4\x59\xa4\x8d\xd3\xdb\x49\x7a\x3d\xb3\x63\x43\xe9\x8b\x70\x47\x69\x16\x58\xa0\x4e\x5d\x76\x9d\x25\xf5\xfa\xb3\x8f\x5a\xac\xfa\xab\xc5\x6e\x29\xa6\x83\x1a\xd0\x47\xc1\x27\x56\xda\x4e\xe6\xd6\x38\x50\xd9\x3b\x31\x41\xdf\x33\xd8\x3c\xfb\x28\x10\xe1\x98\x92\x14\x36\x09\xb4\xb8\x60\xb0\x91\x98\x0c\x58\x80\x2f\x61\x6d\x48\x7b\x55\x11\x6a\x32\x18\x7f\x61\xc4\xb5\xad\xb2\x2b\xaa\x43\x9c\x41\x3d\x57\x0b\xf4\x39\xe0\x0d\x2a\xe6\xa0\xab\x5c\x7d\xfd\x1e\x8b\xed\x53\xda\x3b\x14\x5e\x62\x72\x36\x57\xab\xce\xb7\x2a\xd7\x71\x83\x9f\x40\x6b\xeb\xab\x29\x6c\x4b\x83\x13\xa7\x78\x90\xb5\x54\x05\x61\x80\x13\xb0\xcc\x0f\x7e\xc8\xa7\xef\xfe\x91\x9f\x1e\xcc\xee\x2c\x73\xf4\x11\x15\x52\xa0\x45\x73\xc3\x45\x5a\xbf\x3b\x3a\xf5\x53\x71\xdc\x0f\x61\x9d\x4a\xf3\x09\x38\xe8\x8b\x0f\x4e\x25\x4c\xd6\x34\x58\x5a\x60\x52\xbe\xa2\x25\x7a\x7c\xd9\x8d\xd9\xb4\xc3\xe3\x54\xe9\x90\x45\xf3\x24\xec\x93\x9c\x9b\x77\xa7\xa1\x51\x26\x6b\x0b\xbb\x58\x2b\xc5\xae\x1a\x92\xcb\xef\x7e\xa7\xe4\xc8\x74\x6f\x71\x1d\xbc\x35\x83\x20\x89\xe3\x95\xbc\x72\x7c\x60\x91\x48\xeb\x0b\x75\xdd\x4a\x51\x47\xb6\xd7\xe9\xa3\x55\xe3\x77\xef\x76\x08\xee\xde\x8d\xaf\xc7\x48\x3c\x73\x4a\x46\xaf\xb0\x11\x06\x06\xe5\x4c\xf9\xdc\x43\x0a\x19\x9e\x93\xc2\xce\x69\xcf\x60\x72\xa7\x34\x50\xc7\xba\x52\x74\x54\xb0\x40\xd3\xe5\x34\xff\xdd\xec\x87\x65\xfe\xbb\x25\x9e\x83\xec\xce\xd1\x52\x5a\x0d\x92\x8e\xa1\x5c\x77\x11\x46\xe9\x2f\xc6\x28\xed\x16\x8c\x92\x59\x78\xc1\xa6\x2f\xd6\x3a\x47\xb6\x14\x27\x00\x73\x00\xc1\x2b\x23\x61\xfa\x41\xe2\x73\x70\x81\xc0\x05\xae\x2a\x50\x51\x58\x02\xb1\x85\x02\x18\xe1\xa7\xa3\x88\xba\xac\xed\x76\xfc\x42\x49\xd6\xd1\xbb\x9f\x2b\x69\x92\x2b\xd7\x40\xda\x9d\x9c\x52\xb6\x6e\xd2\xb1\x98\x32\x7e\x57\x9f\x49\x3a\x5d\x20\x00\x19\x02\x1b\x8a\xc9\x06\x08\x0a\x5a\x8e\x9c\x39\xe8\xf5\xe1\x8b\xc8\x13\x70\xf7\x2e\xf8\x62\xc8\xb5\x11\xb6\x2e\x6c\x59\xc0\xe0\x6a\xb8\x83\x22\x91\x63\x80\x23\xa1\xb3\x20\x4d\xb5\x8b\x51\xcb\xcb\x80\x49\x1c\x09\x02\x5b\x29\xa5\xa0\x92\x22\x91\xef\x43\x8b\xdc\x34\x23\xa8\x04\xc4\x91\xc2\xd8\x7b\xd0\xc6\x1a\x6e\xd1\x36\x98\x6c\x26\xf1\x42\x7c\x8c\x8b\xaf\x81\x36\x5e\x56\xbb\x23\x6f\x37\xc3\xd6\x76\x51\x7d\x81\xc5\x96\xb6\x02\x40\x72\x09\xd6\xb4\x2a\x11\x0b\x35\x97\x5e\x39\xc6\xba\xcb\x17\xab\xee\xda\x41\xed\xc9\x45\xa4\x89\xd9\xa0\xaf\x48\x57\xa2\x71\xa4\x16\x4c\x1e\xc4\x3b\xaf\xae\x05\x38\x3a\x75\x03\x24\xe5\x5a\xfa\x2f\xaf\xbf\xf9\x7a\xea\x37\x59\x4b\x21\x54\x2c\x5a\x56\x2d\x1a\x86\xd6\xf8\xa3\xb2\x97\x4c\x82\x3b\x47\x79\x2b\x02\xab\x10\xfd\x4d\x6a\x4a\xba\xef\x73\xbd\xb9\xa0\x03\x91\x74\x48\x91\x32\xce\x52\x59\x54\x47\x46\xd0\xdf\xa2\x88\x59\x63\x0f\x1c\x19\xfa\x28\x18\xfc\x2b\xba\xe4\xd9\x1c\xfc\xbc\xf7\xf1\x93\x6b\xb5\x2a\xe4\x2c\x87\xad\xac\x5b\x07\xac\x50\x01\x7d\x41\x02\x4a\x8a\x38\xc9\x04\xe0\x08\xd5\xdc\x0a\x1a\xde\xc0\x02\x71\x50\x50\x66\xee\x32\x90\xcb\xe1\x9f\xc3\x3a\xcd\xe6\xcb\x55\x9c\x94\x75\xb9\x04\x0b\xa0\x82\xe9\x8e\x97\xcb\x0d\x16\xdb\x76\x95\x17\xb4\x5e\xca\x0e\xd5\xaa\xde\x65\xdf\x84\xa5\x3a\xe4\xcd\x97\xff\xf9\xc7\x3f\x8e\x23\xea\x4b\xe7\x04\x89\x65\x49\x8b\x65\x0d\x49\x0b\xf5\x65\x27\xb7\xcf\xd0\x65\x0d\x9b\xf8\x68\xee\xde\xe3\x92\x5c\x50\xbe\x81\x2b\x2f\x27\x48\x32\x40\xd6\x7e\xd4\x66\xbd\xa6\xdd\x09\x78\xc4\x18\xbc\xd4\xc1\xd6\x2f\x88\x30\x1e\x50\x7f\xf8\xde\x12\x2c\x26\x33\x6d\xe4\xeb\x15\xca\x04\xa4\x22\xbb\xbb\xae\xd4\x56\x37\x77\x6b\xd4\xa9\xae\x6f\xff\xd5\xf4\xe8\xc1\x8f\xdd\x1c\xa7\x9a\x3c\x07\xc9\x79\x86\x7f\x42\xe0\x97\x5f\xc0\xef\x83\x2a\xc6\x90\x9a\x0d\xbe\x10\xa3\x80\xab\xf7\x2a\x8e\x3c\xc4\x77\x35\xb6\x16\x0a\x5d\xc7\xdf\xb0\x0d\x24\xf8\x27\x68\x5c\x76\x7e\xaa\x50\xea\xbc\xbc\x56\xb2\xd0\x81\x94\x7f\x2e\xbe\xeb\x25\xfd\xa3\x6c\x73\xf3\x9c\x7f\x94\x6d\x7e\xe5\x94\x7f\xb6\x86\xdf\x62\xc6\xbf\x70\xc4\x1f\x95\x35\x8e\x87\x1a\xca\xa7\xd7\x1d\xe3\xaf\xd1\x85\x94\x85\x2c\xc6\xa4\x52\x2e\xc9\x57\x83\xf9\x45\x7b\x50\x75\x13\x51\x04\x1b\x72\x40\x45\x37\x98\xbc\x17\x97\x0d\xba\x51\xb8\xac\xef\x4c\x38\xd2\x7b\x1a\x87\x43\xb1\xb2\xa6\x36\x33\xa4\xda\xf5\xfa\x48\x9d\x73\xe8\xdc\xff\xa9\xc3\xd1\x2a\x21\x0e\x59\xa8\x78\xea\x81\x7d\x06\x0b\x67\x61\x86\xce\x3c\xcb\x46\x48\x9a\xd8\x36\x74\x51\x2c\x11\xa4\xdb\x55\x73\x66\x1d\x72\x7e\x41\x59\xa9\x73\xd6\x4f\x6c\x93\x27\x63\x87\xe4\xfa\x32\xe6\x40\x87\xb3\xcf\x31\xda\xe9\xe0\x30\xe7\x58\xd4\xb0\x4f\xd5\xeb\x55\x13\xd2\x76\x84\x6e\xf9\x1e\xf4\xf7\x9b\x32\x4c\xdc\x80\x34\xfb\x70\xc2\x60\x22\xc7\x8e\x5b\x29\x79\x8d\x8a\x96\x61\x71\xf9\xad\x09\xac\xd7\xc7\x04\x13\xbb\x70\xd9\x6d\x6e\x40\xdf\x77\x41\xf8\x76\x57\x2e\xb1\x65\x22\x7b\xbf\x85\x7c\x21\x54\x3e\xc8\x68\x99\x39\xb4\x53\xd6\x17\x89\x17\x98\x20\x9a\xf1\xb0\x15\x5b\x44\x04\xd6\x07\x67\x06\xe6\xbe\x0f\x34\x3a\xb3\x25\xe8\xde\x13\x5b\x8d\x6f\x09\x9b\x91\x6d\xbc\x72\xc7\x7b\x5e\x8b\xb1\xd7\x0d\xac\x47\xde\x6a\x4b\x6d\x04\x20\xa6\x65\xa4\x9d\x64\x87\xdf\x5c\x36\x28\xdc\x69\x09\x9c\x36\xe6\x66\x03\x0b\x3d\x7c\xb3\xc1\xbd\xec\x18\x98\xf1\x79\xf9\xf4\xd1\xb7\x43\x73\xdc\xd2\x6d\x2c\xcd\xc2\xe8\x35\x03\x5f\xf6\xf5\xbc\x7e\xf5\x66\xb8\x1e\x43\xe0\xd1\x74\x0e\xa3\x8c\xba\x77\x8b\x7e\xdf\xb7\xe8\xdb\x47\xaf\x06\x6b\xd2\x43\x7a\xe3\x5a\xbe\xda\x93\xbe\xe5\xa7\x12\xf8\x0f\xd9\x31\x58\x2e\xff\xeb\xc5\x9b\x3f\xbf\x7d\x3c\x58\x4b\xc7\x81\x63\xd5\x0c\x54\x74\x15\xa7\xf0\xef\x99\xf1\x44\x72\x92\x34\x26\xbd\x47\x5f\x25\x75\xe4\xb0\x08\xdb\x21\x0b\x81\x3d\x7b\x9b\x10\x6b\x66\xf2\x0f\xe1\xb6\x11\xbf\xc0\x49\x7e\xb5\x53\x16\x29\xe3\x62\x4f\x61\x14\xcd\x4d\x5f\x36\x25\x7c\x06\xd7\x27\xde\x4d\xfb\x3e\x22\x92\xa9\xc0\x05\x4a\x89\x61\xf5\xc2\x3f\xd9\xa9\x23\x01\x90\x80\xb8\x7a\x45\x4b\x68\x52\xfe\xde\xd6\x4f\x16\x26\xa7\xa8\x7f\x84\xfd\x91\xba\x7d\x0c\xe8\xdc\x4f\x0a\x0e\x28\x38\xee\x99\x72\x6a\x5f\x47\xbf\xde\x27\x43\xa3\xd3\x84\x2e\xf5\x8d\xc9\xef\xd0\xa4\x4f\xd0\x75\x59\x45\x42\x99\xeb\xa2\xba\x51\x1a\x52\xb7\xb3\xe6\xde\x48\x7d\xe7\x4f\x70\x60\x5f\x25\x94\x5e\xd1\x8f\xfa\xfe\xe6\xee\x5e\x86\x5c\x45\x60\x01\x95\xaf\xca\x40\x84\x09\x93\x0d\xa0\xbd\x49\x68\x27\x79\xac\xe8\x0f\xae\x48\x31\xc5\x87\x15\x81\xbd\x28\xa2\xaa\x86\x6e\x81\xe9\xfb\xd0\x35\xd6\x5c\x63\x75\xa3\x8b\x67\x4a\x74\xc3\x2a\x5b\x72\xf3\x4a\x31\x39\x47\x8c\xa3\x6b\xd5\xa7\x13\x49\x5e\xa3\xba\x61\xc9\x65\x32\x6a\xf4\xf1\xe7\x9f\x21\xa7\x86\x4e\x4f\xd1\x9d\xe9\x9c\x54\x3a\xec\x11\xd8\x64\xe1\xa1\xc3\x43\x6d\x3a\x95\xe1\x36\x7a\xd8\xfd\x3d\x2e\x82\x71\x17\x0f\x3d\xb5\x30\x07\xa3\xb7\xf8\xa9\x92\x65\xb0\xdd\x3c\x98\xa3\x19\x24\x12\x06\x07\x8d\x8e\xb3\x83\xe8\x83\xaf\x37\x49\x03\x89\x4b\xae\xae\x35\xe5\x41\x95\xfb\xa4\x0c\x19\xba\x0a\xc4\x69\x18\x43\xfa\xf6\xd2\xc8\xec\x4f\x79\x60\xbc\xc5\x77\xf2\xba\x7c\x27\x64\xaf\xc5\x7d\x06\xad\x33\x74\xd9\x30\xc4\xf9\x50\x1c\x58\x1c\xd1\xf3\xa5\x54\x3e\xde\xa3\x2f\xef\xcd\xa4\x48\x43\x2a\x65\xc4\x19\xba\x04\xd4\x78\xde\xc0\x0a\xb2\x40\x29\x19\x0e\x50\x7c\xec\x84\x1e\xba\xcd\x97\xe6\xec\xf7\x5b\x44\x5e\x52\x2e\x9e\xab\x05\xd3\x8a\x96\x97\x73\xa0\x53\x40\xf6\x1d\xe9\x8e\x62\x44\xd3\x22\xda\x55\xd6\xf9\xf1\xc1\x09\x40\xb9\xfe\xea\x6b\xd7\x2f\xee\x4c\xf5\xe3\x59\x8e\x75\x6d\x33\xb5\x6d\xd3\x3f\xd6\x75\xf3\xa9\x02\x30\x0d\x89\x35\xae\x2a\x39\xb4\xb4\x99\x85\xd1\xae\x90\x15\xdb\xb7\x1c\x31\xee\xf9\x48\xbe\xd0\x8a\x5b\xbe\x5c\xc8\x75\xb9\xce\x41\xd0\xdd\xcc\x92\x88\x21\x49\xb8\x4c\x4c\xf4\x9e\xad\xe1\x31\xfd\x68\x13\xbf\xf8\x88\xbd\xeb\x89\x4d\x1d\x3a\xf8\xcd\x29\xda\x27\xbe\x34\x6d\x30\xc1\x84\x3e\xd0\x98\xb7\x6c\x54\x2c\xc9\x97\x67\xe8\x52\x2e\x7c\xbb\x19\xe0\xa5\x16\x4e\xd9\x43\xa6\x80\xb5\xaf\x1e\x80\x7b\xd1\x68\x98\xe6\x26\xd7\x4f\x23\xfb\x6c\x77\x72\xf8\x01\x7e\x0c\x0e\xe9\xb6\xac\x3a\x06\xbc\x5d\xb5\xac\x02\x07\x20\x5b\xc2\x06\x2f\xcf\x8f\x96\x92\x8c\x7c\xa9\xe9\xf0\xa7\x1f\xd5\x65\x63\xa6\x61\xbe\xb8\x90\x13\x5a\x9a\x6a\xc7\x60\xf2\x81\x53\x12\x04\x4b\xf3\xb6\x28\x10\xe7\xae\x67\x9b\x21\xde\x50\xc2\x93\x4b\x31\x49\x2f\x42\xc5\x33\x75\x69\xb1\x7b\x82\x8a\x0b\x36\x24\x43\x8d\x4d\xc2\x85\xda\x8e\xe4\x82\x39\x86\x69\x42\x86\xa6\xfc\x13\x1d\x39\xbb\x0b\xb0\x92\x32\xde\xb6\x3c\xa7\x67\xb2\xaa\xee\xa7\x93\xfa\x6d\x2c\xfc\x52\x62\x07\x27\x20\x1b\x38\x20\x70\x47\xab\x1a\x0f\xab\xbb\x23\x35\x92\x51\xc6\x7e\x54\x0d\x07\xc1\x59\x05\x75\x19\xdd\xc3\x9d\xb7\xc9\xa9\xdb\xe0\x55\xba\x15\xfd\xee\xbd\xe1\x87\xc9\x43\x2f\xc8\x4f\xb2\x85\x0a\xbb\x7d\xd8\xc1\xdb\x47\x3a\xc2\x4f\x47\xf7\x0d\x6f\x2d\x48\x42\xda\x21\x9e\xea\xf4\x2e\x6d\x55\x29\x27\xd2\xa0\x9a\x8c\xfa\x07\xa6\x5d\xed\x5d\x69\x59\xfd\x6c\xa4\xe2\xe1\xd4\x6d\x3d\xd9\xc6\x0e\x70\x0c\xa5\x86\xf3\xb9\x47\xfe\x19\x02\x74\xa6\xbf\x15\x38\x60\xdf\xeb\xeb\x86\x10\xa5\x6e\x68\xb0\xb9\x5f\xcd\xb8\x0c\x45\xd9\xa5\x3b\x31\xe0\xee\xdb\x8b\x02\x43\x8b\xe9\xd1\xec\x84\x3b\xab\x1e\x0c\xcd\x0d\xf3\x67\xa4\x24\x7b\x97\xd0\x5d\x29\xdb\x81\x3c\x1a\x29\x69\x1f\x20\x8f\x15\xf7\x88\x26\x9b\x83\xa4\x36\xba\xd2\x47\x67\xf5\x11\x2e\x95\x6d\x42\x65\x9b\xa3\xc4\xc4\x73\x62\x02\xc4\x05\xed\xa6\x3c\x0f\x15\x6a\x77\x1f\x1d\x46\xc3\x7a\x55\x65\x10\xf9\x44\xbd\x2a\x2b\x8a\xf4\xaa\x45\x3c\xae\x57\x4d\xd1\x71\xbd\x6a\x81\xfe\x6f\xd4\xab\x2a\x5c\x32\xa9\x57\xc1\x01\x98\xdc\x6d\x71\x79\x32\x01\x07\x21\xa5\x4c\xf4\x94\x5c\x18\xfc\x3f\xf5\xfb\x6f\xa9\x7e\xed\x6f\x73\x63\x35\xb0\x37\x57\x4b\x7e\x98\x3c\x7c\xb0\xc4\x0f\x81\xa7\x68\xa5\x5e\x0b\x14\xad\xa7\xea\x8c\xa6\xfd\xdf\xa5\xb2\x6c\xa7\x3b\x95\x65\x23\x6f\x97\x93\xd9\xbb\xa3\xb1\xfc\x1a\xff\x8b\x14\x98\x2f\x42\xaf\xa1\xc0\x7c\xb1\xba\xbf\x02\x8b\x55\x86\xa3\xc0\x5c\xb1\x1f\xee\x82\xcb\x45\xf2\xdf\x30\xba\x88\x36\xc2\x0b\x5a\xa2\x85\x72\x76\xaa\x04\x6e\xa4\xad\xc7\x22\x13\xfa\xc5\x2e\x25\xd3\x4c\xb1\x95\x6c\x41\x9f\x8f\x4f\x1d\x66\x18\xcf\x6d\x67\xb4\x97\x72\x3c\x0e\xf8\x87\xbc\x9b\xcd\x8d\x37\xb1\xbb\x7a\x61\x28\xe5\x9c\x1e\x04\x5a\x75\xfd\x00\x0f\x41\x85\x43\xbf\x85\xc6\xa6\x8f\x71\xa8\x2a\xe6\xdd\xb5\xb9\x95\x40\x6c\x9a\xbd\x63\xa8\xd2\x17\x36\x5b\x37\x66\x97\xf0\x4f\x4e\xe6\xd3\x6c\x36\x07\x53\x94\xf3\x2d\x5e\x8b\xbf\xa2\x4b\xf0\xa7\xa0\x7c\x9f\x9d\x0f\xfd\x38\x3d\x9c\x81\x63\x75\xbc\x33\xb4\xe8\x4a\x13\xae\x33\x72\x55\xdb\x4d\xf2\x06\xee\x97\xed\x6f\xfa\xf2\x87\xf2\x60\xf6\xc3\x42\xff\x8f\x92\xfe\x85\xf7\xca\xf7\x2c\xb2\x8b\xb8\xaa\xe4\x1a\x33\x2e\xe2\x58\x93\x74\x1a\x41\x05\x2c\xeb\xf1\x69\xa8\xa2\x8a\xd3\x62\x24\x35\x80\x0a\x4b\x38\x90\x06\xc9\xbd\xd3\x64\xe6\xfc\xe9\x44\x0a\xd3\x39\x58\xd1\xf2\x72\x32\x33\x37\xa8\xbe\xa1\xcd\x54\x23\xcb\xe9\x7a\xcd\x91\x50\x51\x2d\x0d\x58\x80\x7b\x87\xe1\x81\x1f\xb0\x33\x84\x57\x7e\xf6\x1d\x8c\x6b\x64\x5e\xfc\x8c\x24\xfb\x55\x08\xb3\x7f\x6a\xc7\x50\x48\x49\xb3\xfe\xb5\x09\x93\xea\x04\x95\x7b\xe5\x70\x16\x42\x65\x4e\x06\xbd\x54\x04\x96\xb4\xe9\xfb\xc8\xab\x86\xd1\x35\xae\x86\xef\xae\xb2\x41\x28\x37\x8e\xbc\xfa\x75\xa3\xae\xfe\x5d\x22\xae\xfa\xcb\xb8\x9f\xd0\xaa\x82\x2b\xca\xfc\x70\xbb\x68\x44\x07\x0a\xb8\x83\x6b\x12\x4b\x17\xdd\x7b\xca\x00\x54\x16\x73\x9f\x2e\x43\x6d\x05\xaa\x67\x0b\xf9\x4c\xdd\x7f\xb2\x97\x09\xa4\x06\xb2\x36\x97\xaa\x04\x77\xff\x38\x9b\x21\xc6\x6b\xef\x5e\xe8\x9e\xca\xbe\x31\xe2\xb0\x9f\xb4\xb8\x9c\x1c\x03\x0f\x45\xbc\x50\xb0\x39\x39\xfc\xd1\x57\x71\xcf\xce\xf5\x08\x36\x23\x54\x42\xd9\x7f\x8f\x56\x5b\x4a\xcf\xa2\xa9\xa4\x12\x59\x9c\x23\x22\xfa\xad\xa2\xee\xb4\xf7\xde\x47\xe4\x31\x9f\x66\xc7\x83\xdb\x25\x4e\x15\x2a\x49\x53\x32\x2e\xc7\x37\xa5\x4c\xa4\xd3\xbf\xa0\x61\xc3\x2e\x72\xcb\x76\x7f\xb6\x77\x13\x80\x06\x5e\xaa\x03\x24\x94\x00\x2d\x80\x15\x43\x75\x3d\x90\xf4\xce\xb7\x98\xeb\x1b\x6a\xa5\xee\x34\x97\xb9\xed\x77\x4b\xc8\xd0\x4d\xba\xd2\xe2\x00\x39\xa1\xdd\x1d\x09\xbb\x6f\x6c\xdd\x73\xf3\xcd\xcb\x90\xea\x55\x10\xda\x4b\xe9\x94\x37\xc9\xbb\x1b\x14\xea\x77\x87\xa7\x33\x70\x35\x07\x5f\x79\x9a\xa1\x63\xd7\x8e\xb6\x6f\xb4\x6a\x00\x25\xaa\xf0\x39\x62\x97\x1d\x2d\xed\x03\x43\xba\xb9\x34\x76\x83\x67\xfb\x4c\xe8\x21\x1a\x04\x9b\x8f\x59\xb8\xf9\x98\x25\xe6\xfc\xce\x9d\xba\x74\x02\x7f\xbb\x0b\xb7\x17\x45\x23\x39\xfc\x29\xbb\x73\x8a\xfc\x87\xbd\xb4\xf0\x37\xb9\x5c\x43\x9e\x21\x58\x5e\x26\x5a\x22\x3b\xa2\xd5\x5a\x8d\x04\xd4\x59\x5c\x55\x27\x4f\x6d\x30\x63\x77\x11\x8c\x41\x6e\x3c\x28\x61\x19\xfd\x38\x59\xca\xb2\xc2\x6b\x24\x6c\xb6\x37\x41\xd5\x71\x17\x44\x4a\x40\xd7\x2a\x6b\x95\x5a\x4e\x69\x71\x00\x74\x48\xab\xe5\x14\x9d\x5f\xb6\x83\x39\x1d\x9f\x1c\xae\xda\x4d\x9d\x19\x76\x58\x53\xdd\xcf\x81\x3e\xc2\x42\xa8\x0b\x48\x3b\xce\x94\x3f\x16\x1c\x93\x02\xed\x57\x55\xcf\x64\x0d\x6d\x24\x8f\xb5\x8d\x7f\x17\x93\x8d\xf2\x98\x07\xe9\xc5\xed\x9d\xbd\x2e\xec\x39\x64\x58\xeb\xc5\xb9\x09\x0a\x10\xa8\x04\x02\x93\xcb\xcc\x2f\x36\x07\x99\x9b\xb0\xb8\x27\x72\x0d\x89\xc0\x05\x78\xfb\x42\xea\xcc\xb6\x42\x3c\xef\x7a\xd6\x62\x27\x1d\x70\xf7\xd5\xf1\x93\xe9\xc4\x5f\x36\x08\xc0\x4d\xdf\xe5\x0a\xf2\x0f\x6d\xdd\xec\x40\x04\x0d\x02\x13\xbd\xe1\x5c\xbc\x4a\x89\xa4\xfb\xd8\xfd\xbd\x2a\xb8\x4d\x51\x32\x57\x94\x6c\x68\xd3\x36\xd3\x4c\xca\xf1\x6c\x54\xc1\xf0\x0a\x97\x28\x6f\x77\xb5\x4d\x30\x48\x74\x3a\x0f\xd9\x3e\x59\x46\x8e\x58\x84\xad\x6d\x2e\x20\x2b\x77\xe0\xd2\x13\x53\xa3\xd2\x05\x12\x88\xb0\x34\x58\x28\x2b\x75\x5c\x45\xf7\x7d\xea\xc3\xf4\x71\x36\x7d\xd0\x82\x0f\xd1\x30\xba\x61\x88\x73\x9d\xb6\x45\x7d\x75\x9a\x22\x15\xf0\x23\xb9\x2a\xc5\xe2\x72\x68\xe4\x62\xb2\x3a\x2f\x05\x6d\x8c\x35\x15\x83\xfd\x7c\x8d\xf1\xb3\x66\x79\x8f\x4f\x59\x42\x3d\xd9\xa5\x52\x86\xdc\xcc\x99\x73\x2c\x97\xfa\x28\x1d\x93\x31\x76\xf7\xe6\x30\x1f\xb8\x57\xe3\x75\xa6\xa1\x80\xab\xa9\x0f\x23\xf5\x40\x12\xc6\xa1\xc8\xa7\x2b\xf7\x99\x66\x4b\x7d\x1f\xea\xf4\xa8\x53\x97\xee\xa4\x7d\xca\x68\xf3\x13\x25\x7a\xbc\x74\x34\x9b\x79\x62\x43\xd9\xcc\x4f\x2f\x11\xb4\x7d\x38\x12\xf8\x67\xcf\x13\x3e\xc5\xca\x0d\xf3\xb3\x7b\x5d\x6c\x57\xdc\x7e\x49\xf9\xcb\x1d\x28\x73\xcb\x98\x54\xa4\xe6\x96\x31\x0f\x7c\x8b\x60\xa9\xd2\x49\xfd\x0c\x26\x7f\x5f\x3c\xe1\x6c\xbd\x78\x43\xcf\x10\x31\xda\x32\x4c\x02\x57\xc3\x8f\xcf\x71\x85\x78\x5c\x45\x0d\x3f\x2e\xf4\x02\x2e\x5d\x42\xa5\x05\x4c\x15\x92\x6f\xc2\x42\x72\xa5\xd0\x08\x54\x9a\xba\xa6\x61\x39\xfd\x9e\x67\x26\xf3\xf8\xef\x96\xbf\xcb\x66\xe0\x4f\xca\x99\x03\xe2\x5a\x3a\xe8\xa0\x92\xb2\xfc\x4e\x19\x5a\x2f\x31\x39\xe3\xa9\x64\xd8\x25\x2e\xc4\x53\xb4\x86\x6d\x25\x5e\x21\xce\xe1\x26\xd1\x85\x52\xbf\x5f\xd4\x1a\x20\xda\x58\xc0\x85\x78\x41\xce\x61\x85\x55\x67\xf4\x1e\x43\x88\x03\x6b\x00\x7d\x1d\xf1\x42\x87\x78\xc6\x68\x54\x79\x4a\x1f\xe3\x4d\x8c\x41\x65\x6d\x10\x94\x2e\x56\x38\xba\xc0\x5b\x96\xd5\x1d\x95\x18\xe2\xb2\xda\xda\x4c\x0e\x9e\x5c\xb0\xec\xba\xb3\x5d\x59\x3c\x94\x4c\x27\x66\x97\xc4\x4b\xde\x20\x91\xea\x83\xea\x43\x6e\x6d\x97\xd7\xdf\xc9\x1f\xb9\xfc\x75\x0a\x4e\x54\xa9\xbc\x6d\x71\x99\xf6\x36\xeb\x64\x07\xdd\xf5\xd3\x0f\xf4\x77\x5c\xea\x2d\xf8\xae\xb0\xda\x7c\x57\xf7\x83\x9e\x4c\x24\x7a\x3e\x01\x92\xc0\x27\x93\x2d\x2e\x4b\x44\x26\x0f\x8d\x0b\xbd\x2b\x30\x12\x25\xae\xca\x4b\x5d\xd0\x34\x88\x94\x53\x55\x63\xca\x51\x9d\x78\xd6\x51\x49\x53\xbb\x94\xa8\x22\x4a\x8d\xa5\x13\xea\x48\x03\x30\xf1\x88\xb6\x23\xb7\x90\xba\x1f\x65\x80\xc8\xbb\xf2\x3e\xa5\xf7\xfa\x7d\x29\xe6\xf1\x90\x12\x30\xe0\xee\xdd\x88\xc7\xa4\x2c\x19\x8e\xdf\x03\x8e\x35\x3f\x82\x78\x2c\x5b\x3b\x30\xac\x74\x3c\xd4\xd7\xe1\xdc\xe8\xf2\xa3\x8c\xe7\x78\x6a\xe8\x66\x0f\x96\x1c\xda\x08\x49\x1d\xe3\xdc\xe9\xa9\xb1\x5a\xe5\x99\xce\x6e\xa9\x7e\xda\x4c\x97\x2a\x39\x00\x59\xe3\x8d\x23\xec\x71\xbd\x79\x5f\x62\xe6\x6d\x8e\xe2\x7a\xb3\x54\x65\x1c\xcb\x0d\x6f\x08\x65\xe8\x3d\xaa\xa9\xda\x29\x4b\x65\x0e\x54\xfb\x7a\x90\xab\x9a\xdd\x44\xc2\x1b\x24\x9e\xe9\xfc\x40\xfc\xf1\xa5\x52\xfc\x5f\xc3\x1a\x29\x7f\xe1\x42\x57\x63\x10\xa4\xd2\x6f\x59\x84\x5d\x06\x2e\x7c\x70\xe0\x32\x80\x9b\xc5\xd3\xc2\xbe\xc3\xa7\x11\x3d\x9e\x54\xb8\x59\x51\xc8\x4a\xf0\x97\xd7\x5d\x6b\x8b\xee\xa1\xce\xaa\xdb\x01\xfd\xe5\xb5\xba\x00\xc5\xfc\xb2\xed\xeb\x1e\x28\x87\xbd\x11\x54\xc3\xde\x7a\x94\xab\x3b\xfe\xfb\x43\xbb\xbe\xf3\x5f\xcf\x29\x64\xfd\xa7\x92\x4c\x8f\x84\x60\x78\xd5\x0a\x64\xa2\x4e\xad\xf5\x5b\x22\x2e\x18\xbd\x74\x0d\xe0\xbe\x1c\xf7\xca\x05\x6b\x8e\x21\xf4\x0a\xcc\xf6\xc0\xb9\x8c\xec\x5a\xcd\x0a\x83\xd2\x3f\x47\x9b\x28\xc3\x1b\x4c\xd4\xf5\x64\xbe\xa5\xe4\x13\x1f\x31\x46\xd9\x30\xe9\x7f\x0b\xd4\xd5\x4d\xfc\xb7\xa0\xed\x72\x09\x1e\xb5\x82\x4a\x1b\xaa\xb7\x30\x55\x60\x78\x7f\x19\x0a\x34\x00\x83\xae\x75\x0b\x10\x96\xf4\xa2\xa7\x65\xb7\x8c\x11\xf4\x0a\x7e\xd4\xc9\xbd\xa7\x5f\x1d\xdd\x9b\xab\xc8\xfb\xae\x88\xf9\xa9\xdf\xc7\x17\x45\x3d\xfa\xcb\xa3\xbf\xeb\x64\x2f\x26\x02\xb9\x33\xda\xe1\x07\xf8\x71\xa1\xac\xd4\xcf\xef\x45\x72\xbd\x47\x8e\xfb\x68\x28\xda\x24\xbe\x19\x72\xc0\x64\x8e\xc4\x7c\xf6\xf7\x85\xec\x61\x76\x0c\x26\x52\xc8\x4e\x06\x85\x7e\x18\x00\xae\xc3\x24\xf4\x1d\x7f\x73\x9b\x85\x3a\x5e\x61\x2b\x43\x2a\x48\xcf\x67\xfa\xee\x41\x2e\x97\xe0\xad\xba\x58\x58\x09\xc7\xb7\xdf\xbd\x04\x94\x01\xad\x4a\x01\x47\xd5\x5a\xf2\x09\xa1\xa0\xa6\x0c\x81\x35\x42\x41\x7c\xba\xa4\xad\x76\x16\x99\x86\x48\x96\xfc\xce\x44\x74\xfc\x59\xf5\x7e\x6a\x7a\xba\x78\xfb\xdd\xcb\xd4\x36\x4a\xcb\xa2\x8c\xfa\xfd\xc0\xb8\x39\x8c\x24\x60\x62\xa3\x2b\x76\x83\xa6\x3c\x80\x60\x74\xa7\xc4\xc1\xb1\xc7\x4e\x89\xeb\x58\x46\x55\x63\x2f\x8d\x77\xee\x2d\xfd\x0c\x7c\xd9\x21\xcb\xcd\xf1\x26\x73\x4a\x28\xc8\x4f\x53\x51\xd5\xd7\xe4\xf5\x1e\x94\x3c\x6a\x1a\x46\xcf\xd1\x2e\xbb\x5c\xdf\x1e\xdb\xd3\x5b\x2f\x2b\xd4\x29\xec\x35\x65\xf5\xc8\x09\x6c\xb7\x94\xbe\x4f\x32\x75\xa1\xa4\xfb\x49\xed\xb5\x82\xf8\x8c\x1f\x48\x7b\x6d\x3f\x39\x4f\xba\xde\xb8\xe9\x31\xca\x07\xb1\xd5\x96\x9e\x75\x43\x64\x18\x70\xf0\xaa\x65\x82\xf5\xec\xee\x36\xfd\xbd\x39\x3f\x70\x22\x2c\xf6\x96\x78\xde\xb1\x2d\xbd\x58\x34\x90\xec\x7b\x13\x7b\xe8\xd0\x50\x45\xd5\x08\x3a\x3b\x3d\x51\x05\xaa\x69\x37\xab\xc0\x70\x72\xb2\x7b\x6e\x3d\x66\x16\xc9\xd1\xff\x1c\x1b\x05\x31\x1b\x19\x61\x95\x5e\x2b\x8c\xef\x01\x0c\xcf\xa4\x3d\xfc\xfc\x65\x77\xcd\xdc\xfd\xa4\x58\x01\x66\x4b\x85\x82\x1a\x9e\x21\x00\xd9\x0a\x0b\x06\x99\xca\xd2\x53\x77\x89\x42\x05\x05\x2b\xb4\x85\xe7\x08\x54\x58\x42\x01\x3d\xe3\x8c\x9e\xec\x47\x4b\x3d\xdd\x4f\x16\x85\x23\x95\x9e\xcb\x57\xde\x4e\x2e\x2a\xce\xd4\xd9\x1c\x1d\x02\x44\x09\xd0\x19\x51\xd4\xfd\x07\x44\x0a\xa5\xa5\x11\xc4\xf6\xc0\x0c\x43\x1b\xec\xb4\x4f\x03\x2d\xf8\x25\x37\x5b\xbb\xbb\x76\x08\x15\x21\xcd\xce\x60\xac\xf0\x86\x9c\x73\x3b\x55\xc3\x40\x7e\x81\x21\x7c\x69\x5b\xc1\x9f\xc5\x2e\x33\x7b\xdd\x5c\x30\x58\x62\xba\xab\xb3\x61\xe5\x1a\xc5\x5e\x9d\x09\x8b\x1a\x98\xf1\x86\x5f\x05\x7b\x38\x90\x14\x5b\xca\xfa\x5d\x05\x9b\x4a\x6f\x7c\xb7\x44\x2d\x0d\xb5\xc1\x13\x7a\x22\xbd\x98\xc3\xed\xd1\x1c\x6c\xef\xcd\xc1\xf6\xcb\x39\xd8\xfe\x7e\x0e\xb6\x5f\xcd\xc1\xf6\x0f\xfb\xed\x88\x12\x9d\x30\x72\x30\xda\x4c\x27\xfc\x44\xa4\xa0\x25\x7a\xfb\xdd\x8b\x27\xb4\x6e\x28\x41\x44\x4c\x65\x41\x1b\xe1\xe8\x85\x5b\xf4\x29\x11\xdf\xfd\xe3\x87\xf6\xf0\xf0\xc9\xe1\xe2\x87\xf6\xe8\xf9\xf3\xe7\x3f\xb4\xf7\x9e\x1c\xca\x1f\x4f\xff\xe3\xf9\xf3\x1f\x2e\x7e\x58\x80\xd3\xe5\x46\xed\xc9\x38\x45\xcc\xb3\x45\x74\x7a\x50\x35\x56\x27\x4f\x3f\x87\x55\x6c\xf5\x18\x42\xbd\x3b\x87\xd5\xe9\x50\x16\xf1\xbe\xbc\x5c\xb1\x2f\xe4\xb2\xc2\x2d\x36\x16\xaf\x14\x55\x71\x72\x12\xdf\xa3\xe4\x7e\x7c\x60\x70\xb4\xa7\xe5\xe4\x15\x3b\x88\xcb\x79\xbf\xcc\xe0\xa9\xa1\xb8\x60\xb0\x31\xe9\xa5\xad\x1f\xce\xc6\xd9\x4e\x6c\x40\xae\x66\x43\x95\x1c\x76\x02\x6c\xdc\x6d\x40\x67\x85\xcc\x38\xd9\xb2\x07\xd0\x2f\x3a\xb1\x59\xb1\x3d\xf4\xfe\xf1\x9a\x30\x3a\x58\xdd\x54\xf1\xb0\x8b\xf5\x85\x0f\x87\x64\xb5\xfa\x92\x3c\x1c\x69\xb6\x51\xdd\x23\x79\xee\x23\xff\x50\x81\x41\xa4\x83\x3b\xd5\xcd\x9b\xfa\x3a\xc9\xfb\xdd\xe3\x3e\xac\xc6\x7d\xda\x5f\x3c\xd9\x3f\x7b\x56\xe2\xa8\xb4\xbd\x64\xa1\x7f\xe2\xe7\xce\xea\x9f\x9b\x0c\x4b\xf7\x9d\xf6\xd8\x60\xd3\x5e\x3c\xc8\xc6\x00\x75\x5d\xaa\xb4\xc7\x73\x6f\x25\x19\x5d\xa5\x9a\x5e\x43\xda\x63\xe2\xde\xfd\xad\x9b\xb1\xfb\x5b\x23\x6f\xa0\x39\x37\xce\xb7\x89\xd3\xd4\x89\xd6\xb8\x17\x08\xcf\x46\x73\x25\xda\xcf\xe8\x75\xba\x3b\x03\x8e\x41\xfa\x70\xb6\xf1\xff\xc7\x4d\xbe\x6e\x6d\x01\x6e\x2f\xb5\x82\x14\x3c\x8c\xb6\x42\x1d\xf7\xef\x3b\x97\x95\xf8\xdc\x0f\xa3\xcb\x8e\xa3\x60\xbd\xb9\x0f\xee\xe4\x99\xee\x62\xef\x0a\x2f\xb2\xeb\x78\x2c\x50\x2c\xc0\x76\xa1\xa3\x99\xc2\xfa\x83\x20\x27\xdd\x15\x27\x21\xb5\x36\x2f\x28\x73\xbc\x87\xf6\x11\xc0\xc4\x74\x35\x8e\x25\xb2\x30\x43\x4c\x28\x3f\xba\xec\x3b\x0b\x7a\x1a\x92\x7a\x80\xcc\x6a\xf2\x77\x6a\x4a\x2b\xf2\x3f\x43\xbe\x9d\x6e\x21\xdf\xba\x71\xd9\x36\x8e\xa8\x69\xf9\xf6\xb5\x80\xc2\xf3\x5e\x45\x2f\xa7\xa4\xad\xaa\x39\xd0\x7f\x15\x2a\xeb\x11\x01\x71\x6e\x52\x2f\x08\x15\x9c\x28\xf8\x54\x1c\x5f\x1f\x9f\xec\xb4\xcb\x18\xaa\x1b\x27\x1f\xbe\xdb\xb2\xc4\xeb\xee\x22\x87\x47\x55\xa5\xe2\x4f\x3b\x91\x16\x69\x86\xc4\xd5\x72\x48\x9d\x3c\x4c\xc6\x19\xa6\x42\x5a\xf5\xb3\x39\xb8\xb3\x66\xb4\x0b\x9d\xd5\x51\xb2\x23\x17\xa5\xab\x61\x77\x4b\x58\x06\x82\xf6\xba\xfc\x17\x44\x4c\xfd\x60\x70\xa6\xae\xde\xd7\x29\xd6\xa6\x47\xb3\xe0\xb8\xd3\xca\x2b\x28\x51\xef\x55\xac\xb8\xef\xb1\x22\x04\x5f\x9c\x80\x55\x6a\x07\x1d\x82\x87\xf1\x0b\xf9\x29\xc0\x09\x80\xf1\xac\x97\x1d\x59\x25\x84\x01\x38\x71\xeb\x04\x91\x34\xd2\x4e\x70\xc8\x39\x4a\x65\x5e\xf0\xfc\xf1\x50\xf9\xe3\x65\x35\xa1\x0b\xbe\x6b\x9b\x46\xa4\x73\x28\x64\xf9\x4b\x75\x54\x66\x70\x25\xdb\x8f\x9c\x89\x6f\xb6\xc5\x75\xce\xfe\xb9\x6f\x96\xa6\xaf\x98\x77\x26\x58\x76\x5b\xd5\x07\x3b\x73\x28\x53\xbf\x57\xc9\x73\x63\xd1\xbc\x05\xfa\xdc\x86\x1e\xff\x81\x4a\xbd\xca\xe2\xd3\x03\x6a\xe4\x6d\xec\x55\x6c\xa9\xfa\xe1\xca\x78\x43\x70\x98\xb5\xc7\xf5\x7e\xdc\xb1\xcb\xac\x1c\x32\xf4\x3f\xb4\x7d\xdd\x32\xe5\x7d\x52\xf2\x45\xa7\x0c\x7e\x7c\x29\xd0\x4b\x44\x40\x41\x5b\x22\x38\x58\x5d\x4a\xb1\xae\xee\xcf\xd4\x11\x54\x19\x07\x6f\xdf\x3c\x5f\xfc\x11\x30\xd4\x30\xc4\x11\x11\x5a\x2a\xf4\x13\xac\x47\x32\x25\x94\xd5\xb0\xfa\x1b\xec\xdc\x6d\xfa\x56\xd1\x02\x19\x64\x6a\xb3\x53\xbd\xe8\x20\xc1\x09\x30\x41\xca\x7d\x61\x47\x36\xaf\x4c\xf3\xba\x8b\x33\x53\x9b\x3b\x5d\xc9\xa1\xdd\x1d\xc5\x9f\xca\x2e\xb4\x80\xc5\x16\x32\x69\x7c\x3c\x12\x53\x97\xb7\x6c\x75\x07\x27\xa0\x00\x0f\xc0\xf4\x08\x3c\x78\x00\xfe\x63\x06\xfe\x04\x8e\x80\xaf\x54\xfb\xd7\x47\x47\xf2\xfd\x3d\x10\x2b\x5d\x07\xe6\x0f\x12\xe6\xcb\x04\x8c\x0f\x77\x4f\xe1\xfa\xfd\x00\x5c\x00\xab\x70\x7e\x35\x02\xeb\xc3\x7f\xa9\x70\xff\x01\x1c\x03\x7d\x6b\x57\xfe\x35\xfc\xda\x95\xff\xf6\x82\x41\x4d\x82\x20\xf9\x43\xca\xdf\x5e\xab\x6f\x73\x75\x35\xc4\xb3\x0a\xd5\x2f\xca\xb9\x66\x23\xc4\x5e\x74\x2b\x00\x1d\x31\xcd\x37\x26\x08\x45\x32\x7c\x0f\xdf\xaf\x61\xd5\x8b\xbe\xb0\x3e\xc4\xa6\x2b\x00\x0b\x97\xc5\x24\x2e\x13\x8c\xe7\xf2\x09\x25\xa6\x79\x7f\x45\xfe\x29\xc7\xf8\x92\x28\xdb\x98\xc4\xf1\x53\x75\x65\xec\x09\xe8\xeb\xf0\x5f\x57\x8a\x11\x9d\xc6\x48\xf8\x00\x86\xa1\x1a\x62\xa2\xaf\x93\xea\xda\x5f\x21\x72\x3f\xc8\x43\x8e\x08\x78\x68\x21\x22\x4f\x83\xad\xbf\x6f\x88\xd5\x05\x87\x73\x5b\x26\x92\x48\x7d\xbd\x87\xae\x45\xe1\x2c\x91\xd3\x54\xee\x4a\x5a\xf5\x69\x83\x97\x64\xe5\xfa\x64\x83\x4b\x5d\x75\xda\x41\x45\xb0\x79\x4f\x25\xbf\xfc\x9f\x00\x00\x00\xff\xff\x1c\xb8\x42\xfa\xa5\xc8\x00\x00" +var _jsGogsJs = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7f\x77\x1b\xb7\xb1\xe8\xff\xfa\x14\xc8\xda\x2f\x26\x2b\x72\x29\x25\x4d\x6f\xaf\x64\xb9\xc7\xf1\x8f\x5b\xb7\x76\x9a\x1b\xdb\x6d\xef\x73\x54\x1f\x70\x17\x24\x11\x2d\x81\x2d\x80\x95\xac\xa4\xfa\xee\xef\x60\xf0\x63\x01\x2c\x96\xa2\x9c\xb4\x37\x79\xa7\x3e\xa7\x8d\x88\x1d\x0c\x80\xc1\x60\x66\x30\x18\x0c\x8a\x4e\x12\x24\x95\xa0\x95\x2a\x4e\x0f\x0e\x2e\xb1\x40\x95\x14\xab\x53\xf8\x4b\x76\xcb\x4e\x34\xa7\x07\x07\xab\x8e\x55\x8a\x72\x86\x28\xa3\xea\x09\xdf\x6e\x09\x53\x5f\x0b\x72\x49\xc9\xd5\x1b\xbc\x9c\xdc\x5f\x71\xb1\x9d\xa2\x1f\x0e\x10\xd2\xd5\xee\x2b\xbc\x7c\x45\x58\x87\xce\x10\x7c\x29\x57\x94\xd5\x93\xa2\x54\x78\xd9\x35\x58\x94\x5b\xc2\xba\x62\x7a\x7a\x80\x3c\xa4\x83\xa0\x8a\x6c\x8b\xa9\x06\x9c\x44\xdf\x0f\x10\x42\xc8\x00\x3d\x00\xa0\x77\x35\x56\x78\xae\xf0\xf2\xac\x78\x80\x0e\x7b\x3c\xba\x78\x52\xb4\xa6\x6b\xc5\x14\x1d\xa2\x07\xc5\xf9\x83\xa9\xa9\x5f\x35\xb4\xba\x98\xb8\xb1\x4c\x4c\x87\xf5\x3f\xd3\xe9\x0d\x95\xba\xc7\x13\xfd\x07\xb4\xae\xff\xdd\x2f\x5b\x2e\xd5\xc4\xfe\x42\x06\xcc\x36\xd3\x89\xa6\x98\xce\xfc\xa7\x1f\xfc\x5f\x08\xbd\xd7\x44\x3c\x01\x52\xce\x82\xe2\x2d\xaf\xc9\x09\x2a\xd6\xab\x6d\x11\x16\x57\x9c\x29\xf2\x41\x9d\x44\xd8\x6d\x61\xd8\x02\x42\x16\x4c\x53\x35\x28\x75\xb4\x89\x8a\x10\x7a\xa0\x09\x59\x4a\xb2\xd6\xd3\xb5\x9b\x62\x57\x82\x2a\xe2\xe8\x05\xad\x60\x41\xf0\x83\x08\xe1\x34\x6e\xf1\x12\x37\x93\xbe\xe8\xa6\xef\xa5\x27\xb0\x46\x3d\x8d\xc8\x02\x84\xb6\xb3\xf3\x35\x66\xa4\x89\x59\xe4\xe0\x23\x7b\x9f\xce\x77\x80\xc7\x4f\x24\x4c\x5e\xd8\x74\xb9\x51\xdb\xc6\xf4\x31\x84\x21\x5b\xfe\x1d\x5d\x5d\x97\xa2\x63\x93\x08\xfe\xdd\xd1\x79\x8c\x0c\xda\x45\x15\xaf\x49\x31\x43\x03\xd0\x92\xe0\x6a\xd3\x33\x1b\x9d\xa1\x65\xc3\xab\x8b\x98\x1e\x08\x6d\x9a\xef\x64\xb9\xa1\xeb\x4d\x43\xd7\x1b\xf5\xa5\x06\x99\x18\xc0\xb0\xad\x9b\xe0\xd7\xcd\x41\x34\x32\xfd\xe9\x00\xa1\x65\xa7\x14\x67\xf2\x89\x66\xf1\x3f\xb1\x67\x4c\x11\xa1\x97\xd0\x8d\x59\xd2\xb6\x73\xcf\x69\x43\x5e\xf1\x9a\xc8\x74\x49\x3f\xab\xe9\xbf\x64\x3d\x87\xf3\xff\x06\x2f\x35\xc2\xa8\xc6\x81\x99\xf8\xbb\xaf\xf0\x03\x4b\x0f\xba\x42\x93\xa0\x81\xb2\x21\x6c\xad\x36\x8e\xe8\x29\x19\x74\xfb\x01\x70\x84\x7a\xbe\xa2\x0d\x99\xeb\x05\x2b\x8b\x69\x29\xdb\x86\xaa\x49\x31\x2b\x2c\xd5\xc3\x6a\xff\xfb\x62\xe5\xdf\xf2\xe3\xdf\xf2\xe3\xc7\xc8\x0f\x5d\x78\x93\x11\x09\x4f\xe9\x6a\xf5\x73\xd4\xef\x35\x5d\xad\x7e\x7e\xca\x1d\x16\x1c\xfb\xc5\x2f\x2f\x4d\xdc\xaf\x7f\xf2\x25\x16\x4d\xd9\xe8\xfa\x4a\xdb\xde\x67\x8d\xa5\x75\xe2\x75\x96\xe1\xf6\x1c\xa7\x3f\xe7\x62\x6b\x79\x06\x54\xc8\xa4\x28\x49\x4d\x55\xa9\x07\x5e\x4c\xad\x1a\x41\x67\x67\xe8\xc8\x51\x4c\x10\xd5\x09\x66\xd6\x8e\xae\x95\xd1\xa2\x31\x12\xa3\x9f\xd2\x95\x35\x80\x49\x7b\x67\xad\xed\x4c\x07\x2b\xf3\xe5\x6e\x7d\xcc\x18\xef\x03\x54\xc6\xa2\x58\x2c\xd0\x4b\xbc\x24\x8d\x74\xab\xbe\xa1\x52\xc1\x1a\x2a\xca\x8e\x96\x0d\x7c\x2b\x75\x61\xd1\xeb\x76\xc6\x5f\x93\x86\x54\x00\xa7\x3f\xb9\x85\xcf\xf8\x5c\xc2\x87\x00\x16\x30\x38\x39\x32\x29\x4a\x03\x30\x87\x62\x14\x08\x11\x0d\xbc\xc1\x12\x3a\xf3\xb6\xad\xb1\x22\x8f\x0d\x79\xce\x02\x1c\x96\xcd\x30\x7c\x29\xa6\x9a\x0c\x45\x07\xc0\x05\x8c\xc6\xd3\xd4\x14\xbe\x90\xb2\x23\xaf\x88\xc2\x93\x4e\x34\x33\x64\xaa\xcd\x10\xad\x1d\xe9\xac\x68\x80\xaf\x6e\x89\x64\xd6\xbd\xa9\x78\xe2\x10\xd8\x52\x5a\x9f\x20\x5a\x47\xe2\xd5\x10\xf4\x71\x5d\xa3\x4f\xd9\x52\xb6\xa7\x48\x71\xa4\x25\x3c\xea\x98\x19\x37\xa9\x91\x19\xb9\xe2\xe8\x82\x90\x16\xbd\x7d\x81\x1a\xce\x2f\x24\x5a\x73\x5e\x97\xa6\xfe\x1b\x2d\xc6\xe4\x86\x77\x4d\x8d\x96\x04\xe1\xba\x26\x35\xaa\xa9\x20\x95\x6a\xae\x75\xcd\xdf\xbf\x79\xf5\x52\xdb\x82\x48\xf2\x2d\xd9\xf0\x2b\xf4\x5d\x27\x15\x5a\x13\x85\xc8\xb6\x55\xd7\xe8\xa1\x6c\x31\x7b\x84\x38\x43\x20\x11\x5b\xbc\x26\x1a\x75\x4f\xc7\x40\x12\x1b\x71\x7d\xc2\xb8\x9a\xf4\xf3\x37\x45\x25\xaf\x14\xad\x38\x33\x1f\xec\x8f\x79\xb5\x21\xd5\xc5\xb4\xb0\xc2\x38\xd6\x5d\xbd\x90\xb1\xf2\xd7\x2c\xeb\xc2\x50\xa2\x88\x14\x51\x30\xa3\x3b\x3a\x51\x4c\xc7\xe4\xbd\x59\x1c\xb6\x15\x2c\x9f\x34\x58\xca\x49\x01\xbd\x23\x75\x31\x1d\x76\x45\x90\x2d\xbf\x24\x29\xdc\x69\x0c\x75\x10\x0b\xf2\xc2\x0d\xbb\x08\xbe\x44\x88\x22\xb2\x84\x50\xb9\x91\x9b\x5e\xe7\x58\x3c\x14\xcf\x29\xe3\x86\x72\x33\x5d\x06\x06\x76\x9e\xe8\x30\x84\x8a\x9a\x28\x5c\x6d\xa2\xcd\xa7\x23\x84\xa9\x49\xeb\xa0\xb7\xbe\x7f\x46\x8a\xde\x20\xd2\x48\x32\xa0\x20\xae\xeb\x9f\x80\x7c\x3d\x96\x5b\x68\xf7\xbf\x40\x35\xac\x7e\x0c\xd5\x0e\xe0\x3f\x5a\x8a\x41\x83\x2f\x6a\x6d\x89\x14\x85\xdd\x48\x44\x14\x2a\x5b\x2c\x08\x53\x5e\x71\xc7\x76\x93\x2b\x1c\x5b\x5d\x77\xe0\x7e\xfd\xcf\xf7\xe6\xf0\x2c\x33\x1c\x74\x88\x8a\x59\x11\x1b\xac\x29\x94\x5d\x8e\x5c\x14\xd3\x64\x21\x6d\x68\x4d\x8a\x50\x0d\xc7\xac\xb3\x07\xba\x9e\x1f\x06\xb8\x1c\x79\x6d\x99\x1e\xb4\x1b\x4b\x4e\x0b\xa2\x5e\x2d\x8d\x77\x32\xe5\x6d\x5f\x23\xdf\x8f\x1b\x3b\x79\x63\x7c\x9e\xcc\x23\x42\x29\xa3\x4c\xc1\x40\x73\xdd\xb6\x58\x8d\xbe\x46\x2b\xdc\x48\x02\x6a\x63\x44\x24\x7a\x41\xe8\x0c\xea\x1d\xc2\x70\xf7\x02\x49\x97\xc7\xee\x35\x81\x8a\xaa\x21\x58\x14\x33\x54\xf4\x84\xf8\x27\xb0\xf1\x7e\xb2\x79\x48\xf6\x5d\x02\x66\x5f\x09\x3d\x2a\xa3\xad\xa3\x05\xc5\x86\x8d\x9d\x80\xdb\x14\xde\x08\x17\x39\x6f\xc2\xed\xfc\xf9\xa3\x59\xcd\xce\x98\x1d\x85\x37\x87\x0c\x1f\xbd\x50\x64\x3b\x31\x7f\xbe\xa7\xf5\x0c\x51\xd6\x76\xfa\x2f\x37\x10\xb0\xd7\xb6\xce\x54\xf3\x80\x5a\x46\x84\x96\x5a\xce\x50\x2c\xd0\x21\x8a\x2a\x04\x26\xa3\xb7\xed\x52\xb3\x6e\xbb\x87\x45\x87\x2c\xd8\x47\x99\x09\x7b\xd1\x31\xc7\xb5\x3b\xf9\x76\x84\x73\xbd\x81\xa7\xc7\x72\x19\xcb\x32\xc7\x54\x39\x56\x19\xad\x67\xd7\xf5\xbe\x3a\x2f\x24\x67\xb2\x9e\x8b\x59\x46\xf4\x27\x0a\x0c\x21\x79\x45\x55\xb5\x41\x93\x94\x2d\xf4\xbf\x0a\x4b\x82\x8a\x7b\x5b\xda\x10\xa9\x38\x23\xef\x69\x5d\x9c\x44\x5a\x96\x4a\x95\xd9\x0c\x3b\x7b\x9f\xd4\x45\xb2\x73\x85\xe5\x97\xee\x95\x1f\x62\x54\x69\xaa\x9c\x15\x30\x1d\x68\x23\xc8\xea\xec\x01\x3a\x4c\xe0\x52\xc5\xac\xc1\xb4\x2e\x1b\x80\x15\x8f\x8a\x1d\x95\xf5\x0e\x7b\x92\xad\xf6\x70\x81\x1f\x15\xf1\xbe\x3b\xd4\x91\x4b\x41\xf0\xc5\x69\x4a\x1c\x2c\x25\x5d\x33\xf2\xcb\xa6\xcd\x83\x87\x74\xbb\x76\x0d\x75\x14\xe1\x4b\xac\xb0\x40\x74\x8b\xd7\xa4\x40\x52\x54\x7b\x34\x69\xea\xfc\xab\x26\xe4\xc6\xaf\xac\x71\x41\x84\xc2\xad\xe9\xa8\xd1\x71\xbf\x67\x7d\x10\xa6\xa3\x6b\xc6\x4b\xf4\xed\x47\xa8\xeb\xbb\x0a\xa5\xa1\xb8\xfb\xa7\x0b\xa9\x9f\x54\xf2\x04\xa6\xfc\x8d\x97\x82\xa1\x72\xed\x57\xc1\xc0\xf6\x1f\xf3\x2e\xec\x32\x43\xd3\x59\x2c\x8a\xc4\x07\x6a\x36\xd9\xaf\x9c\x28\x43\x98\xd5\xc8\xad\xdd\x03\x14\xea\x4a\xef\xad\xf0\x72\x4f\x8f\x27\x96\x82\x80\x34\x57\xc7\xa1\x84\x2a\xa1\x6c\xc8\xb8\x7f\xbe\x21\x2d\x97\x54\x71\x71\x9d\x78\x7f\x84\xff\xb0\x97\xef\x27\x42\xfa\x9c\x36\x8a\x88\xd7\x04\x8b\x6a\xf3\x54\xf0\xb6\xe6\x57\x6c\xe2\x8c\xef\x48\xe7\xd7\xf6\x6b\xa0\xf7\xb9\x70\x3c\xee\x3e\x96\xee\x8f\x89\xe3\x84\x55\xd7\x34\x6f\xc8\x07\x65\x9a\x38\x41\x4a\x74\xc4\xed\x9e\x38\x7b\xb2\xc1\x6c\x4d\x4e\x7a\x4f\xa4\x5e\xdd\x33\x74\x89\x9b\x8e\xcc\xd0\xfd\x6a\xc3\x69\x45\x42\xb6\xba\xa2\xac\xe6\x57\x65\xc3\x2b\xac\xe1\x4b\x2d\xb9\x74\x8f\x0c\x64\xe8\xb0\x0d\x44\x2f\x67\x92\x37\xa4\x6c\xf8\x7a\x92\x01\xec\x39\xcf\xf5\x6b\x4b\xa4\xc4\xba\x5b\x3f\x20\xc6\xbf\x21\xb2\x6b\x94\x3c\x09\x07\x09\x95\x19\x9f\x0b\xf3\xad\x98\xba\x0d\x5e\xc4\x3d\xcf\x69\x43\x10\x48\x16\xcd\x3d\x15\xdf\x6e\xa9\x92\x76\xde\x0e\x9c\x34\xea\x27\xaf\x5c\x51\xdd\x49\x30\x89\xdc\x34\x3e\x42\x47\xe8\x1f\xff\x00\xe0\x08\xd4\x22\x2b\x02\xb8\x03\x84\xbc\xb1\x3f\x36\xb1\x45\x59\x6d\x38\x97\xa4\x14\x64\x45\x04\x61\x15\x41\x7e\xc6\x0a\x6f\xd4\x42\xaf\xec\xf7\xb2\xe2\x4d\xb7\x65\xbb\x25\x55\x0e\xad\xac\x04\x6f\x1a\xca\xd6\xd6\x28\x2c\x2b\xbd\x0a\x6b\x2a\xdb\x06\x5f\x6b\x76\x67\x7a\xa5\x04\x0b\x32\x87\xc4\x9c\x5a\xc5\x0b\x79\xd9\x60\x6d\xa5\xf7\x15\x63\x09\xac\xb0\x58\x13\xa5\xb7\x8d\x69\x83\x70\x16\x72\xbb\x43\xc2\xb4\xd9\x17\xf7\x8a\x20\x69\x39\xdd\xa2\xa5\xd3\xff\x17\x7a\x41\xb3\xab\xb4\xbc\xa2\x17\xb4\x34\xc7\x4c\xc1\x04\xee\x3f\x7b\x2d\x5e\x27\x13\xd7\xb7\xfa\xa7\x56\x4f\x8f\xcc\x37\x2c\x89\x52\x94\xad\x65\xc9\x0d\x54\xb6\xfd\xfb\x93\xe2\x9e\xae\xf3\x9e\xe1\x2d\x29\xa6\xe5\x05\xb9\xee\xda\xd1\xe3\x94\x56\xf0\x6d\x6b\x6d\x7c\xa8\x36\xd7\xd5\xe6\x15\x2c\xec\xb9\xf9\x1a\x9b\xab\xbb\xf6\x6c\xf1\x51\x05\x42\xa5\xe2\xaf\x95\xa0\x6c\x9d\x96\xbe\xe4\x57\x44\x3c\xc1\x92\x4c\xa6\xe8\x93\xb3\x5d\x28\x0d\x5b\xf8\x9e\x15\x77\x45\x6f\x3f\x44\x9b\x52\x33\xac\x52\x6e\xf8\xd5\xa4\x17\x1f\xa9\x63\xc3\x81\x69\xd5\x33\x49\x5d\x41\xd1\xa4\x7d\x29\x30\xab\x36\xe4\xb6\x59\x5b\x5a\xb0\xbb\xb2\x4d\x2b\xb8\x02\xed\x39\x77\x18\x52\xee\x31\x0b\x90\x30\xbc\x6c\x60\xd2\x34\x38\xb8\xc1\x5d\xd9\xd5\x86\x2a\x62\x65\x93\x99\xdb\x1c\x47\xe8\xce\xc3\xc1\x99\xdd\xa1\xc7\x3b\xf9\xb1\x85\x1a\x2d\xef\x9a\x4a\xdd\x60\xb0\xb9\x1f\xd2\x75\x14\x53\xbf\x56\x33\x68\x32\x74\xf7\xa7\x1a\x19\xaa\x9b\x53\x8d\x2c\xa9\x17\x0b\xf4\x44\x10\xac\x88\x71\x9c\xf5\x3a\x92\x91\x2b\x40\xe9\x4f\xcb\xb4\x45\x42\xae\xcc\x41\x86\x3b\x1d\x0b\x29\xde\x7f\x34\x51\x1b\x3b\xe5\x6c\x84\x3d\x62\xbe\x9b\x2c\x4a\xdb\x1e\x2a\x2b\xcc\x2a\xd2\xdc\x01\x77\xc8\xb1\x37\xa1\x5e\xa8\x78\xc3\xc5\xbc\xa5\xd5\x05\x11\x7b\xf8\x3a\xb6\x94\x51\xa8\x22\x73\x3d\x6d\x05\x31\x1f\x91\xc1\xbb\xab\x83\x10\x8d\xa6\x81\xde\x6f\xc8\x07\x94\x7a\x29\x4d\xb7\x36\xe4\x43\xa2\x50\xe2\xde\x6a\xe1\xe2\x71\x44\x80\x7d\x3f\xe7\xf2\x0a\xab\x6a\x33\xf7\x1d\x02\xc1\x8f\xab\x8b\xb5\xe0\x1d\xab\x6d\xf9\x0c\xa5\x78\xc2\x71\x91\x9a\xda\xb3\xab\xf9\x1e\xb3\x3a\x29\xee\x19\xd8\x2d\xaf\x71\x33\xd7\xb6\xdf\xee\x8d\x45\xda\x08\xea\xa7\x7c\x0e\x56\x6d\x16\x81\xa2\xaa\x21\x3b\x70\x64\x68\x95\xa1\x71\x82\x60\x37\xdd\xfc\x82\xcd\x10\x30\x95\xd8\x71\x23\x4e\xe6\xe6\x3b\x5b\x02\xa5\x42\x1d\x0d\x05\x93\x70\x63\xc3\xd9\xe3\xb6\x15\xfc\x32\xb4\x2d\xd3\x80\x89\x04\xab\x3d\x3c\x95\xdd\x72\x4b\xd5\x24\x0e\x9a\x08\x36\x40\x69\xab\x85\x5e\x88\xfb\x5b\x05\x7e\x4b\x31\x22\x76\xfc\xbe\x21\x27\x7a\x6e\xf2\x75\x18\xb9\xea\xeb\x65\x25\x96\xb1\xe0\xb1\x22\x66\x82\xad\x68\xf2\x75\xca\xfe\x93\x97\x4e\x7d\x11\x7c\x55\x74\x6b\x7f\x7a\x3a\x37\x98\xad\x4f\x52\x40\x3c\x29\x74\x79\x7f\x6c\x42\x59\x43\x19\x89\x0d\xff\x1e\xd9\x89\xa1\x94\xfb\x20\x15\x16\xea\x29\x56\x24\x87\x17\x3e\xce\xc1\xed\xe7\xb1\xeb\x49\xc3\xb6\x46\xf1\x3f\xf3\xed\xbc\x2e\xfa\xdd\x85\xf1\xa4\x9a\x8f\x9e\x0b\x2a\x15\x6b\xa5\xe2\x5e\x4d\x70\xad\xfb\xe8\x44\x84\x82\x01\x3f\x07\xcc\x13\x8b\x34\xf5\x84\x05\xeb\xfd\x1e\x78\xc2\x6d\xbf\x76\x2f\xf4\xa4\xa5\x62\x7f\xb6\x81\x8d\xf4\x08\xcb\x68\x4b\xb2\xa4\x1a\x60\x4c\x5b\x3d\xab\xa9\x42\x00\x81\x40\x0e\xf4\x3c\x01\x85\x6f\x74\x99\x35\xe1\xa0\x60\x6e\xa5\x45\xe0\xc9\xd5\x0b\xe5\x85\x96\x2e\x16\x0e\x16\x0e\x80\x79\xa1\x63\x0c\x68\xfb\xab\xaf\xaa\x21\xa1\x85\x37\x7c\xbd\x86\x76\x72\xd4\xe9\x3b\x52\x2a\x80\x9b\x44\xab\x9f\x71\x35\xa7\x6c\xae\x71\x15\xd3\x1c\x44\xae\x43\x39\x44\x3b\x90\xf8\x21\x96\x2b\x5e\x75\x72\xb2\x6b\x72\xfa\xd9\xef\xdb\xf5\xb3\x9f\x8c\x38\x64\x15\xd0\xc4\xf3\x3b\xd5\x91\xf8\x92\x44\x35\x6c\xaf\x46\x2a\xc6\x5f\x47\xcf\x06\x43\x27\x50\x3f\x70\xb0\xbf\x43\x1f\x82\xdb\x7d\xe6\x21\x35\x48\x34\x73\xe0\x9b\xf3\x15\x12\x5f\x53\x5c\x79\x58\x2f\x12\xb9\x43\x9a\xa3\xd0\x39\x34\x8c\xd8\x4a\x55\xc9\xd8\x11\x6e\xac\x03\x46\x02\xb8\x90\x59\x27\x27\x83\x11\x87\x4a\x21\xac\xb0\x23\x94\x6a\x30\x72\x0d\x52\x02\xfe\x68\xc4\x68\x48\xca\x11\xc8\x5e\x1d\x05\xc5\x39\x82\x79\xdb\x2d\x96\x01\x5c\x20\x1b\xe6\xe3\x22\xd5\x62\xdb\xc5\x16\xde\x66\x8f\xdd\x77\x06\xe6\xd9\x3e\xde\xca\x7d\x4a\x18\xf0\xc1\x69\xd8\x86\xee\xd0\x13\xd3\x9f\xff\xcb\x19\x48\x29\xdb\xac\xdb\xb0\x87\x5d\x9e\x7f\x1f\x79\x15\x00\x83\x20\xac\x26\xc2\xe2\xc8\xd4\x37\xdf\xfb\x41\xc7\x95\xf1\xd5\x8e\x9a\xf8\x6a\xa4\x9a\x8b\xcb\xf3\xde\xd2\xc5\x02\xbd\x26\xaa\x6b\x11\x23\x57\x28\x08\x0a\x04\x71\x9e\x8c\xd1\x78\x38\xb3\xae\x3c\xcf\x4d\x03\x70\x2f\x8a\x1c\x25\xac\x39\x63\x70\x85\x27\xa5\xae\x6f\xc3\x01\xb9\x2f\x45\xef\xe5\x85\x9e\xff\x17\xbd\x24\xd0\x71\x08\x3e\x5c\xd8\xf8\x54\xe4\xa2\xfc\x90\xde\x57\x23\xc5\x51\x4d\xa5\xde\xa8\x76\x54\x6e\xd0\x4a\xf0\x2d\xe2\x6a\x43\x84\xf4\xa8\xd2\x09\xd5\x2a\x56\xf7\x22\x1d\x90\x25\x6f\x47\x93\x68\xb4\xd3\x18\x53\x10\x7b\x9a\x20\x1d\x0f\x43\x75\x34\xb0\x11\x89\x58\x29\x31\x29\x60\x20\x26\xb0\x72\x36\xec\x4d\x14\x77\x79\x0b\x12\x17\x3e\x3c\x8a\xc6\xc7\x17\x67\x10\x85\x2e\x08\x3b\x00\x68\x35\x3d\x76\x44\x28\x6c\x52\xe1\xe5\xc7\xf4\x3a\xd3\x98\xed\xdb\x8f\x68\x2e\x3b\xba\x64\x6e\x46\x47\xe9\xb7\xc7\x3f\xd1\x40\x6f\x6f\xd7\x0d\xf8\x47\xb5\x1c\x8e\xb9\xd7\xb0\xf9\xf8\xca\xa4\x4b\x61\x8d\xb1\x45\x60\x2c\x86\x3d\xdc\x03\x80\x24\x92\x75\x89\x7f\x2a\xdb\x4a\xec\x9b\x8a\xc3\xc3\xc7\xba\xa4\x0d\x92\x7f\x7a\x87\x42\x98\x81\xa6\xcf\xd4\xdb\xad\xf4\x53\xb5\xbf\x43\xf1\x87\xd1\xdb\x4e\x20\x1a\xdd\x9f\x85\x83\x4b\x14\xf9\xce\xf8\x6b\x17\x51\xbd\x9b\x18\xcd\x4e\xc3\xc1\xe8\x07\xb0\x02\x46\x94\xc1\x08\xa1\xbd\x4a\x60\x3c\xd0\xe6\x03\x5d\x60\x7b\x34\x8c\xc8\x1a\x47\x0a\x9d\xb1\x28\x07\x98\x92\x78\xec\xa8\x7a\x7a\xe9\xc1\x36\x11\x5f\x7d\x18\xd4\xd8\xf3\xee\x83\xf9\xb7\xdf\x0d\x08\x3b\xe8\x21\x19\x0e\xc6\x7e\x65\xd7\xc7\xd0\x2d\xb9\x9f\x62\x75\xe8\x03\xc3\x60\xc3\x53\xd5\xaa\xb5\xaa\x39\x34\x6a\xaf\x91\xc0\x57\x8e\x27\x11\x96\x88\x11\x52\x93\x3a\xdc\xb4\x84\xac\x17\x2f\xb1\x74\x06\xa3\xd5\x0e\xb6\x47\xcc\xe2\xa3\x36\x47\x04\x16\x58\x45\xa9\xe9\xee\x0f\xda\x7d\x85\xdb\xf7\x52\x81\x91\xfa\x94\x34\x44\x11\x67\x9d\x7a\xab\xb4\x86\xe2\xb9\x2d\xbe\xd5\x2e\xcd\x5f\xf1\xd0\xc3\xad\x38\x5b\x51\xb1\x9d\x84\xd7\x3b\x1a\x5e\x61\x70\x8d\x45\x03\x36\x32\x67\x78\x0d\x64\xec\xfa\x47\xc0\x21\x65\xcd\x59\xd6\x3d\x6e\x87\x73\xaf\x80\x4b\x11\xe1\xfd\x2c\x18\x17\xf8\xfe\x9c\x3b\x3c\x2f\x94\x6f\xf6\xa2\xa2\x39\x55\x45\x52\x61\xd5\xc9\x7e\x0b\x6f\x7e\x7f\x09\x82\xdb\xee\xe2\x4d\x91\x77\x53\x06\x1b\x55\xdb\x25\x6d\x78\x21\x30\xb1\xdf\x1b\x06\x1e\x3f\x0e\x0a\x23\x4e\x77\x33\x53\xd8\x11\xc3\x40\x71\x91\x77\xf7\xa8\x4e\x86\x9e\x97\xc1\x8a\xbb\x0b\xa2\x39\x06\xef\xa3\xe5\xa0\x31\x77\x4e\x54\x7d\xa7\x2f\xc7\x75\xcf\xac\x88\xf1\x66\x2f\x71\x13\x7b\x4d\x23\xda\x0e\x1c\x8e\xb1\xdb\xe7\x29\x5d\xad\xf2\x4e\x1f\x73\x8b\x66\xcc\xd5\x57\xf1\x8e\x29\xef\xe7\xd3\xb0\x73\x5b\x54\x04\xa1\xb2\x0e\xcc\x63\x39\x43\xc7\xc1\x20\xdd\xd7\x81\x08\xd6\x06\x62\x38\xa1\xc6\x93\xa4\x08\x18\xf3\x13\xf8\x1a\x9b\xea\xb8\xae\x5f\x52\xb3\x79\xd3\x5f\xad\x54\x94\x2d\x66\xe6\xaa\x50\x43\x19\x39\x2f\x71\x5d\x17\x6e\xf7\x6e\xbc\x64\x31\x96\x9a\x34\x7b\x60\xa9\xe1\xa4\x63\x1c\x0b\xae\xeb\xaf\x89\xa8\x60\x47\x17\xac\xcb\x49\x8b\x85\x24\xcf\x1b\x8e\xd5\xc4\x76\x77\x8a\x16\xf9\xe2\x43\x14\x94\xda\x5e\x69\xf1\xf1\xab\x00\xdf\xf1\xd1\x51\x60\x49\x05\xfd\x2d\x97\x58\x20\x3b\x56\x38\x5d\xb8\xa2\xb5\xda\x14\xb3\xb0\x63\x87\xa8\xf8\x3f\x71\xb8\x29\x0a\x03\x6c\xed\x8c\xc2\xb5\xd4\x25\xff\x80\x4a\x3d\x4e\x39\x67\xdd\xce\x88\xa2\x70\x7d\x1a\xe3\x96\x26\x81\xe0\x23\xc1\x15\x56\x60\x0d\xaa\x0e\x97\x90\xed\x9f\xc1\xe3\x3d\x51\x9c\x4d\x8a\x0d\x96\x1b\x73\x6e\x58\xcc\x7a\x9b\x87\x24\xae\xd8\xfc\xb8\xb4\x71\x50\xba\x58\xa4\xf8\xb4\x70\x18\xa1\xa4\xa7\x58\xf3\xe1\x60\x2c\x58\x6e\xca\x2d\x56\xd5\x66\xb2\xf8\xdb\x3d\x68\xa7\x3c\xbc\xbf\x08\x6a\x6a\xfa\x6c\x53\x61\xbd\xd5\x46\x48\x64\x18\x94\x92\x2e\x1b\xca\xd6\x72\x52\x04\xfd\x4b\xa3\xf3\xfa\x93\xc8\x4c\x10\x95\x9f\x57\x47\x21\x25\xe8\x7a\x4d\x44\x44\xa6\x48\x0e\xfc\x77\x47\xab\x0b\xe3\x1d\x07\xbb\xa0\x17\x04\x68\xc3\xb7\xe4\xa0\x3f\xb5\x9f\x57\x0d\x67\x64\x2e\xe5\x66\x9c\x17\xe0\x6c\x0c\xc0\x40\xa7\x59\xc9\x19\x79\xcf\x1a\xca\x2e\xbc\xd8\x4a\x70\x9b\x4a\xc3\x13\xa2\xa4\x4e\x1a\xc3\xba\x6c\x3a\x52\xe4\x31\x6e\x94\x6a\xe5\x30\xd0\xa3\x87\x07\x1d\xfd\x5a\x71\x81\xd7\x7a\xa3\x68\xa3\xa8\x02\x0c\xad\xe0\x8a\x57\xbc\x29\x66\xa8\x80\xb1\x9f\xf6\x41\xf3\xf9\xb6\x7e\x29\xb4\x31\x33\xf9\xd3\x50\xc6\x8e\x7d\x94\x36\xa6\xf7\xa3\x94\x31\xbd\x36\xb1\x5f\x13\x8f\xc5\x70\xe8\xd7\x5d\xd3\x20\x41\xfe\xde\x11\x88\x63\xcd\x68\xac\x8a\x6f\x5b\x2c\x48\xd9\x76\x4d\xf3\x91\x81\x2f\x26\x7c\x61\x18\xfa\x32\x7e\x2c\x32\xda\x58\x78\xd7\x71\x4b\xc4\x9a\x94\x5a\xe2\xc0\xc9\xc1\x3b\x86\xb7\xe4\x0c\x0a\xdf\x4b\x75\xdd\x90\xf3\x5b\x83\x1e\x22\xbb\x07\x9d\x9d\x9d\xa1\xa2\x82\x08\x81\xf7\x06\x8d\x89\xd7\x2a\x52\x71\x67\x8a\xcb\x9a\xc8\x4a\x50\x08\xc9\x29\x57\x94\x34\x5a\x35\xdc\x16\x5b\xb2\xbb\xf6\xae\x90\x93\x34\xae\xf0\x2f\xf4\x82\x06\x77\x4a\xbd\x93\xee\xb1\xdd\xca\x0c\x63\x97\xfc\xb5\xe3\x7b\x81\x61\x78\x7a\x10\x78\x33\x75\xdd\x0c\xd1\x19\xb9\x42\xaf\xe9\xb6\x6d\xc8\xab\xa7\xcf\xfc\x39\x22\xee\x14\x7f\xca\xaf\x58\xc3\x71\xfd\x9c\x33\xf5\xf8\x8a\x48\xbe\x25\xc9\xd1\x20\x69\xc8\xd6\xec\xca\x5d\x03\xef\x8e\xce\x83\x63\xc0\x8a\xbc\xbe\x66\x55\x7c\xce\x68\xb7\x53\xdf\xc0\x26\x28\x38\x03\x6c\x1b\x4c\xd9\x1b\x08\x35\xb4\x20\xe1\xcc\x2c\x16\xe8\xb1\xbc\x66\x15\xda\x12\xb5\xe1\xb5\x2f\x97\x44\xbd\xa1\x5b\xc2\x3b\x35\x66\xdc\x2f\x16\xe8\xf9\x8b\xbf\xbe\x7a\x76\x82\xa4\xa2\x4d\x83\x24\x01\x59\xad\x5b\x77\x6b\x03\x5d\x6d\x08\x73\xf6\xfb\x12\x57\x17\x70\xfd\xb3\xa6\x0a\x32\xc2\xec\xe3\xf5\x00\xda\x66\x6f\xa6\xa3\xbb\xf9\x39\x46\x52\xd0\xa0\x81\x6b\x23\x68\x31\x9b\x4a\x02\xf9\x74\x12\x9e\xb0\x3f\xc2\xe5\xe1\xdd\x90\x8c\x11\x01\xb7\x58\xcf\xd0\x83\x87\x35\xbd\x74\x11\xe7\x5b\x2c\x2e\x60\xf5\x3f\x7a\x80\x0e\xc1\x0b\xad\x0d\xa6\x87\x8b\x9a\x5e\x3e\x2a\xd2\x5d\x7d\xe4\x90\xb0\xa7\x05\x5c\x78\x47\xed\x74\xe8\x96\x18\xdb\xf9\xcf\xd0\x51\xe8\x97\xb2\x53\x58\xbc\xe4\xb8\xa6\x6c\x5d\x96\xa5\x6f\xdb\x8f\xd7\x4c\x3d\x65\xeb\x27\x7a\xdf\xb9\x3e\x09\xc6\x2a\x29\x5b\x37\x44\x5b\x8e\x5f\x0a\x82\x2f\xa4\xe5\xf6\x14\x03\x65\x35\x61\xea\x2f\x54\x6d\xde\xe0\xa5\x4c\x96\x84\xc2\xcb\xd7\xf4\x7b\x72\x82\x7e\xed\xcf\xcf\x5b\xd2\x34\x4f\x20\xf8\x2a\x3d\x5a\x57\x9c\x37\x4b\x2c\x4e\xd0\x3b\xdf\x87\x62\xc9\x9b\x3a\x98\xfb\x82\x2a\xdc\xd0\x2a\x2c\x91\x4a\xd0\x0b\xa2\x36\x82\x77\xeb\xf0\xda\x63\xf1\x8f\xf0\xc7\x86\x00\x0d\xe6\xc7\xb9\xc2\xcf\x72\x85\x9f\xe7\x0a\x97\x60\x05\xe5\xbe\xc8\x2d\x6e\x9a\xf8\x53\xd4\x01\xe3\x3f\xea\x7f\xff\xbd\xe3\x8a\x8c\x42\x77\x8c\x8b\x9a\x08\x52\xcf\x21\xa2\x2d\xf8\x32\x56\x1e\x55\x07\x5d\x1e\x52\x0d\xee\x3d\x04\x05\x0a\x2f\x9b\xa8\x60\xc3\x05\xfd\x9e\x33\x85\x9b\xb9\xe8\x9a\xf1\x8e\x55\x0d\xc1\x6c\x6e\x02\x55\x83\x62\x7f\xaa\xd0\x17\xad\xba\xa6\x91\x95\x20\x84\xb9\x1b\x0f\xe7\xa9\x90\x87\xb4\x5d\x4e\xd8\x02\xd7\x9b\x54\x5e\x9a\x56\xaf\xa8\x10\x5c\xb8\xd2\x03\x2d\xb7\xb8\x40\x2f\x9e\x1d\x98\x70\x48\x88\x18\xe4\xea\xba\x25\x25\x61\xb5\xd4\xec\x17\x1e\xdb\xb7\x58\x29\x22\x58\xaf\x2f\x6a\x74\x06\xb7\xc8\x9d\xc8\x9f\x23\x0b\x62\x0b\x74\x9f\xec\x7a\xa9\xf5\x2e\xf3\x08\x7d\xfa\xa9\xad\x80\xa5\x7a\xc1\x6a\xf2\xe1\x4f\xab\x1e\xad\xd6\x9f\xf5\xe9\xc1\x8d\xe9\xd9\xe3\x5a\xb3\x40\x1f\xb6\xae\x38\xdc\x62\x57\x1b\x82\xaa\x4e\x48\x2e\x10\x28\x27\xa3\xce\x10\x06\x49\x84\x40\x11\x6a\xd0\xef\xfe\xbb\x23\xe2\x1a\xf1\xe5\x77\xa4\x52\xe5\x41\x2f\xb9\xef\xcf\x50\xc7\x6a\xb2\xa2\xcc\xc5\x29\xde\x2f\x57\xac\x5c\x13\xf5\x04\xb0\x7e\xed\x90\x66\xe2\x15\x20\xac\xa1\x09\xc2\xd0\xd6\x44\x4d\x8e\x82\x98\x87\x96\x4b\x74\x86\x8e\xfa\xad\xb6\xbd\x54\x41\x39\x7b\xad\x8d\xf8\x42\x77\x95\x34\xbd\xf0\x33\x15\x20\x68\x2f\x84\xb3\x1b\x3f\xa3\xfd\x63\x3c\x80\xa2\xe6\x55\xa7\xb5\x62\x8f\x08\x02\x99\x22\x8f\x9b\xee\xcf\x6b\xe8\xad\x83\xee\x1b\x29\x8d\x95\xf2\x0d\xd8\x36\x69\x8d\x97\xd6\x7d\x73\x6b\x3d\x30\x92\x83\xa9\xd6\xff\x5e\x43\x9c\xd6\x25\x81\x61\x4c\x8a\x6a\x83\x05\xae\x94\x5e\xc2\x68\x4e\x9a\x12\x22\xfc\x5d\x4e\xa6\xd3\x88\x08\xba\x66\x80\x10\xcd\xfb\xbe\xb8\x7d\x30\xea\xe5\x6f\xcb\x25\x70\xfc\xe9\xc1\xcd\x74\x62\x26\x7b\x1a\xe6\xb4\x92\x44\xf5\x16\x87\xd7\x66\xfd\x05\x8a\x74\x35\x38\x4a\xa6\xe5\xa5\xe2\x5a\xaf\xe9\xca\x8e\x50\x29\x08\x3a\x43\xac\x6b\x1a\xbf\x6f\xd3\xe8\xe3\x05\x18\xdf\xc8\x00\x53\xc5\x43\xc7\x90\x1a\x57\xc6\x58\xda\xc7\x54\xda\x61\x28\x65\xcd\xa4\x51\x25\xb5\x4b\x45\x59\x05\xb5\x43\x3d\xa5\xca\x69\x54\x35\x7d\x8c\x91\x96\x37\xd1\x6e\x33\xd0\x7e\x3a\xf3\x2c\x13\x7c\x72\x9b\x69\xb6\x67\xdc\xc9\xa8\x51\x76\x57\x93\x6c\xdc\x20\xdb\x3f\x70\xe5\xa7\x34\xc5\xee\x6a\x88\x65\x82\x5c\x62\x13\x6c\xd4\x00\xb3\xe3\x1b\x18\x3c\xb1\xb9\x93\x1a\x3b\x23\xa6\x4e\xa0\xa0\x33\x66\x4e\xc6\xc8\xc9\x98\x38\x63\x06\xce\xa8\x79\x13\x36\x1a\x99\x36\x89\x61\x13\xc2\x8d\x18\x35\x79\x93\x26\xac\x18\x99\x33\x89\x31\x93\x98\x32\xa3\x86\x4c\xd4\xe1\xc0\x88\x81\xb2\xf3\xde\x51\x10\x09\xbe\x9b\x58\x4c\x3f\xf1\xe2\x34\x27\xa7\xf3\x82\x34\x2e\xcd\xc8\xe8\xa1\x54\x4d\x25\xf4\x98\x02\xc8\xc9\xe8\x8c\xc4\xef\x7b\x5d\xae\x04\xdf\xfa\xf6\x23\xe1\x6b\x51\x36\x94\x91\xaf\xba\xed\x92\x08\x69\x04\xb0\xf7\xc3\x0c\xb4\x0d\x67\xa0\x33\x13\x7f\x69\xb5\x9d\x21\x53\xea\xdd\x18\x5e\x18\x40\xe8\xea\x56\x5b\x22\x7f\xd6\xba\xd5\x9e\xc9\xdd\x46\x77\x97\x85\x8a\x0b\x2b\x29\xf5\xd2\xfc\x4e\xce\xff\xde\xd1\xea\x62\xde\x76\x4d\x33\x37\x37\xe6\xe6\xe6\xca\xd0\x0e\x4f\x48\xce\x0f\x82\x0a\xe3\xa4\x98\x2b\x3e\x67\xe4\xca\xde\x3f\x29\xe2\xcb\x63\x41\x5b\xe6\xbb\xbd\xa8\x93\x9e\x65\x8e\x82\x22\x17\xf0\xd9\x0a\xde\x4e\x0a\x2d\xca\xa9\x20\x75\x31\x83\x01\x4f\x23\x23\x6a\xaf\x86\x63\xf7\xc9\xc7\x34\x0c\xfa\x6d\xda\xdb\x2b\x76\x1e\xbc\x73\xe5\x39\x6d\x08\x60\x30\xe7\x70\xe0\xf2\x36\x8d\x83\x5b\x2e\x04\x01\x1c\xe9\xb1\x1b\x19\x84\xe2\xf9\x8c\x09\x93\xa2\x5c\x0a\x82\xeb\x4a\x74\xdb\x25\x92\x2d\x66\xa5\xfd\x9a\x04\xa9\xd5\xf4\x92\xd6\xfe\x90\x28\xa8\x53\xd3\xcb\xd2\x7e\x8c\xaf\x6e\x11\xdd\x0d\xcd\xf1\x7a\x6a\x7f\x3b\x96\x6e\x66\x60\x42\x1b\x56\x48\xe2\x16\xa0\x86\xed\x58\xc6\x55\xe4\xfe\xe9\x9e\x82\xb1\x68\x4e\xd5\x01\x3c\xd9\xe2\xc3\x26\x62\x32\x4d\x4b\xcd\x71\x0b\x2e\x06\x1f\x54\x14\x65\xe8\xe6\xb8\x67\x5c\xd3\xdc\x61\x54\x96\x46\x4d\xd8\x6f\xef\x8e\xce\x4b\x6d\x61\x3a\xbb\xd8\x18\xc4\xa1\x71\x6b\x2f\xb3\xa6\xa6\xae\xc5\xe2\xc7\x0f\x23\xc8\x1c\xfd\x02\x94\x9d\x8b\x5d\x50\xc1\x0d\x85\x83\xf8\xbf\x83\x79\x3b\xfe\xcf\xe3\xf4\xf0\xae\xc5\x42\xc9\x4c\x18\x67\xee\x46\x9e\xcd\x7f\xba\x08\x4f\x34\x56\x5c\xa0\x89\x46\x44\x61\xd7\x83\x28\x7a\x68\x70\xba\x4d\x01\x3a\x3c\xa4\xc3\x04\x83\x6e\x5e\x01\xf4\x1d\x3d\x3f\x4d\xd8\x23\x45\x83\xe6\xe8\x38\xe5\x0f\x0d\x17\x51\x78\xe0\x4f\xba\x9f\x66\x49\x40\xe8\x01\x24\x3f\x73\x46\x8c\x5b\x1d\x8f\x1e\x62\x93\x30\xa1\xb8\x67\xec\x19\xc7\x08\x90\x59\xe0\xe1\x02\x12\xa6\x15\x09\xb2\x69\x49\x99\x24\x42\x7d\x49\x56\x5c\x10\xb7\x06\x06\xc1\x25\xf7\x27\x91\xdd\xe4\x56\xd7\x23\xb4\x40\xc6\x5a\x7a\xb0\x17\xa2\xd0\x37\x95\x0d\xdb\x19\xf0\xf1\x08\x97\xdc\xc2\xc1\x47\xc6\xd2\x4a\xeb\xdd\x04\xe2\xc3\xf1\xcc\xbb\xf3\x50\x4e\x8e\x4a\x9e\xe1\x29\xb2\xdd\xa7\x84\x13\x66\x8b\x80\x13\xdd\xe7\xf8\x80\xce\x96\xf6\x8b\x3b\x3b\xed\x86\x69\xda\x4e\x6e\x32\x15\x06\xc1\xe6\x19\x42\x66\x10\x0c\xab\x39\xa2\xc4\x01\x35\x91\xd0\x08\x90\x06\x28\xf3\x82\xc5\x87\x04\x69\xea\x2a\x41\xc8\xfb\x16\xc3\xf6\xdb\xd4\xfc\x8e\x53\x16\x2d\x3b\xad\x37\x3c\x98\x3d\x74\xf2\xbf\x23\x28\x97\xc7\x58\xe1\xa5\x3b\x1a\xf7\xdd\xf2\xdb\x87\xf0\x4a\x56\xb6\x4a\x21\x38\xb7\xe1\xc5\x7a\xb7\x11\x65\xe0\xf0\xed\x96\xb2\x5b\x4a\x73\xa5\xf6\x68\x16\x14\x87\x7e\x1e\x3d\x08\x74\x88\x8e\x93\x6b\x5e\xf6\x38\xb4\x3f\x0c\x05\x95\x57\x24\x8a\x33\x7f\x2a\x61\x36\x13\x3b\xcf\x25\x3e\x49\x0f\x26\xa6\x3e\x31\x82\xc5\xef\x36\x33\x5a\xf1\x3e\xfb\x60\x04\x62\xb2\xd7\x72\x20\xe6\x8c\x9a\x7c\x50\xc3\x8c\xd0\x90\xdd\x8d\x32\xf2\x17\x81\xdb\x67\x1f\x14\x61\x92\x72\x96\xc3\xa5\x81\xe6\x57\x02\xb7\x1a\x8f\x05\x4b\xb0\xe5\x4d\x01\x6d\x1b\x1a\xda\xe4\x8f\xd2\xad\x68\x75\x4d\xba\xca\x69\x10\xe3\x36\xf8\x93\xd7\xa4\xff\x25\x5b\x52\xf5\xbf\x7c\xe7\xa2\x22\xbd\xe5\x7f\xca\x55\x5f\x66\x19\xe6\x25\x65\x17\x7d\xa1\x1e\xe8\x5b\xd1\xf4\x05\xb8\xa5\x4f\xb0\x31\xc0\x23\xdc\xe8\x2c\x40\x1a\xe4\xc4\x33\x53\x37\xd9\xa2\x33\xb4\x28\x0f\xbf\x2d\x27\xef\xfe\x56\x9e\x1f\x4e\xef\x2f\x4a\xf2\x81\x54\x5a\xc2\xc5\x61\x5b\x21\xc2\xed\xbb\xe3\xf3\xf8\x2a\xf7\x69\x66\x04\xba\xb1\xb2\x40\x87\x7d\xd5\xec\x7a\xa4\x6c\xc5\x13\x6b\x9f\xb2\xfa\x15\xaf\xc9\x97\xd7\x7e\x96\x27\x1e\x47\xef\xd2\xea\xc9\x62\xb8\x16\xf7\xc9\x71\xed\xb7\xf3\xd8\xc6\xd2\x2d\x85\x43\xda\x82\xda\x86\x0e\x94\xfa\xef\xd3\x68\x9e\xfc\x17\xba\x0d\xbe\x58\x32\x6b\x22\x04\x35\x06\x72\xae\x07\x1b\x1f\x7c\x74\x57\x28\x18\x8d\x53\xc9\x9f\x7e\x3a\x40\x17\x14\x0d\xd2\xac\xef\xf8\x96\xc1\x38\x00\xa1\x56\x84\xd8\xa6\xa6\xe0\x4c\x76\x62\x24\x18\x99\x65\x3c\x2d\x3c\x83\x2e\x67\xb3\x83\xe4\x01\x66\x0e\x85\x96\x32\x0d\xae\xc8\x64\x31\x29\x7f\x35\xfd\x76\x51\xfe\x6a\x41\x67\xa8\xb8\x7f\xbc\xd0\x4c\xa3\xc9\x3b\x1d\x41\x76\xcb\x09\x6e\x08\x9a\x1e\xd7\xda\x3f\x16\x0b\xf4\x62\x65\xd2\xb3\x6a\x79\x83\xa8\x44\x18\xbd\xb2\x22\xa8\x9f\x33\x39\x43\x57\x04\x5d\xd1\xa6\x41\x0d\xc7\x35\x52\x1b\xac\x90\x95\x88\x26\x58\x44\x8b\xb9\x60\x3e\x53\x41\xe7\xc9\xda\x2f\x0b\x43\xd9\xd4\xc2\x1f\x71\xa6\xc6\xca\xb7\x4f\x37\xe3\x86\x33\x1c\xd6\x33\x4d\x8b\x2b\x82\xb0\x20\x68\xcd\x29\x5b\x23\xc5\x51\x27\x49\xb0\xc0\x82\xfe\x7e\x32\xd8\x77\x7f\xfa\x29\xfa\x64\xcc\x65\x10\xf6\x26\xee\x4b\xc4\xd4\x30\x75\x61\xf6\xb2\x74\x0b\x2e\x89\x32\xc9\x34\x26\xc5\xd6\x84\x27\xeb\x05\x17\x4c\x76\x20\x0c\x70\xa7\x05\x0d\x06\x81\x30\xf0\x28\xcc\x0c\x9b\x64\x7b\x31\xd4\x14\x7b\x4d\xc6\xae\xce\x3a\x94\x2d\x65\xeb\x78\x0b\x9c\xe1\xc2\x3b\x20\x0a\xb7\xb4\xf1\x6c\xba\xe3\x98\x95\xdb\xd4\x5e\x51\xb5\xe1\x9d\x42\x98\x5d\xa3\x15\x6f\x6a\x22\x62\xd5\x64\x76\x73\x43\xe5\x14\xca\xc1\xd0\xa8\x87\x13\xa1\xa3\x5d\x13\xeb\xd0\x1b\xd4\xa6\xee\x70\xa7\x12\x7d\x7f\x17\xb5\x30\x47\xc7\xe7\x7d\x02\x3e\xbd\x87\xfd\xc3\xeb\x3f\x7d\x35\x89\x3b\x69\xe4\x03\xa9\xe6\x9d\x68\xe6\xad\x20\x2b\xfa\x01\x4c\x19\x9b\xaf\xc8\x2b\xe3\x5e\xcf\x00\x51\x21\xea\x78\x9d\x11\x53\x60\xd1\x06\x20\xa5\xf1\xa7\x9b\xa8\x13\x13\x46\x02\x06\x58\xb4\xbe\x76\x4d\x59\xec\x8f\x4f\x67\xff\xb6\xda\xe4\x83\x12\xf8\x8f\xe4\x5a\x57\xfc\xe1\x66\xb7\x85\x7c\xa7\x5e\xc4\xac\x63\xb9\xc6\x79\x4b\xd0\x92\x54\x38\x5e\xfb\xa8\xe6\x44\xb2\x07\x0a\x49\x42\xb6\xd2\xc9\x06\xd9\xe2\x8a\x48\x54\x71\x61\xb3\x5c\xeb\x6d\xe7\x0f\x69\x6b\xf6\x6c\xe1\xe6\x24\x6e\x6d\x8e\x20\xf8\xe9\x64\xb1\x58\x53\xb5\xe9\x96\x65\xc5\xb7\x0b\x3d\x88\x2d\xb4\xb8\xe8\x1b\x5f\xc0\x25\x49\xb9\xf8\xcf\xdf\xfe\x76\x0c\x45\x5f\xaf\x64\x44\x2d\x6a\x5e\x2d\xb6\x98\x75\xd8\x64\xa9\xbf\x77\x41\xae\xb7\xb8\x95\x1f\x43\xf5\x68\x33\xf7\x06\x2f\xc3\x8b\xeb\xdb\xe1\xde\x16\xce\x78\x0d\x59\xce\xd0\x63\x21\xf0\xb5\x09\x58\x7d\xc1\x94\x75\x06\xc6\x73\xf2\x96\x51\x55\x4c\x8d\xf5\x6d\x76\x14\x83\xbd\x71\x81\x06\x5b\xdc\x74\x33\x5b\x6d\x9d\x56\xf4\xdb\xc6\x89\xe9\xc5\xae\xed\x6a\x66\xeb\xb4\x0f\x1b\x41\x97\x67\x28\xbb\x4c\xe8\xf7\x04\xfd\xe3\x1f\xe8\xd7\x01\xea\x5d\x08\xed\x91\x54\x8a\x4d\xe1\xe5\x7b\x08\xc2\x8d\x71\xdd\xdc\xba\x2f\x49\x1d\xa9\x7f\x12\x6b\xcc\xe8\xf7\x38\x70\x8b\xba\xb8\x34\x1e\x7c\xda\x2b\x4b\x5b\x36\x95\x53\x88\x65\xff\x64\x4e\x5c\xac\x3f\x22\x97\x13\x17\xeb\x9f\x67\x2a\x27\xd7\xb1\x9f\x59\x26\xa7\x94\x19\x1e\xd7\x5b\x9a\x72\x01\xd6\x65\xfb\x4e\xff\x57\xe4\x4a\x8b\x3d\x91\xd6\x87\x74\x1f\xfa\x43\x9a\x26\x0e\xf5\x20\xf0\x90\xc4\x00\x26\x64\x8a\x86\xaf\x29\x7b\xaf\xae\x5b\x72\x6b\x70\xe3\x9d\x66\x39\xda\xff\x1f\x9b\x33\x80\xa3\x22\x47\x7a\xdf\x09\xcb\x9b\xc6\xad\xf9\x18\xc2\xcb\xbd\x27\x3d\xbc\x8e\x08\x69\x20\xd8\x1c\x22\x5e\x07\x4e\x7a\xf3\xdd\x7d\x4b\x2f\x1a\xea\xc6\x34\x39\x5c\x5b\x3e\x44\x22\x52\xc5\x71\xc8\x6e\x8b\xa5\xbc\xe2\xa2\xb6\x09\x87\xfb\x2e\x0d\xee\xf3\xf4\x90\x36\x3a\x3e\x38\x08\xc8\x0e\xe5\x66\x94\xd1\x52\xa2\xec\x87\x2f\x25\x4d\x66\xf8\xe5\x0e\xb2\xc5\x4d\x0e\x69\x93\x8c\x71\xf7\x44\x0d\xf2\x6c\xf9\x55\xc1\xd9\x6b\x52\x75\x82\xaa\xeb\xaf\x6d\x4c\xb2\xb9\xa8\x94\x9c\x20\x15\xf7\xa4\x05\x7b\xef\x63\x97\xdd\x89\x52\x74\x40\xa0\x47\xb5\xc1\x72\xae\x20\x4d\x57\x94\x0f\x6b\x78\xd6\xd3\x03\x46\xc9\xad\x92\xf5\x86\x3b\xb5\x21\x4c\x51\x73\x69\x20\xbb\xf2\x62\x90\xd1\xf5\xa5\xc1\x6e\x5f\x5e\x30\x31\x35\x6e\xb3\x67\x4e\xf5\xe8\x17\xb9\x55\xf9\x0f\x2d\xde\x66\xcb\x8d\xcd\x93\xfd\x34\x24\x4c\xa0\x12\xf4\x28\xde\x5c\xb7\x24\x08\x75\x8a\x0c\x75\x97\x0e\xda\xc1\x0d\xd3\x41\x7f\x56\x9c\x40\xa6\xb5\xa7\x8f\xbf\x8e\x57\x8d\x1b\xf7\xf0\x4e\x70\x36\x73\xf2\xe7\x06\xcf\xeb\x57\x6f\x52\x3c\x96\x18\x99\xbb\xc5\xa3\xfc\xb1\xa3\x9d\x5f\x9b\x76\xbe\x7e\xfc\x2a\xc1\x64\x48\xbb\x27\x96\x2f\x46\x47\x5d\xdf\x6d\xd8\xbf\x01\x44\xff\xf5\xe2\xcd\xef\xdf\x7e\x99\x60\xf2\x73\x7a\x0b\xaa\x68\xbf\xd9\x4f\xe8\x99\x9e\x1b\xad\x35\xa2\xa2\x2f\x22\xf1\x36\xbe\x62\x73\xab\xdd\xde\x8b\xcb\x2c\x5e\xbb\x00\xc6\xd0\xf9\x28\x7e\x97\xa6\xe4\x96\x65\x08\xda\x6d\x8f\x75\x38\xe0\xe0\x78\x59\x06\x9c\x7c\x57\xd2\xfc\x98\x81\x26\x52\x87\x2b\x5a\x91\xa1\xa4\x81\xe2\xfe\x7a\x96\x39\xb0\x25\x0a\xd3\xe6\x15\xaf\xb1\x4d\x2e\x78\xcf\x94\xcc\x6d\x42\xb4\xfe\x06\xe8\x63\x78\xa6\x04\x99\x34\x1d\x00\x83\x00\x46\xba\x69\x82\xdb\x11\x73\xf3\x69\x67\xd6\xaa\xa0\x4d\x9f\x92\xc0\xde\x45\x6e\xf3\xd7\x63\xfc\x7d\xf3\x5e\xcc\x84\x48\xee\x90\x35\xcd\x8d\xc6\x3e\x24\x65\xf2\xff\x07\x17\x5a\x21\xcb\xe4\x92\x7f\x30\xcf\x37\xfa\xac\xca\x25\x04\xad\x20\xc8\x1f\x62\x21\xc2\x9c\x8b\x16\xc8\xbd\x26\x30\x3e\x76\x27\xdc\x92\xc4\xe5\xb6\xde\x50\xd4\xb9\x9c\xce\x4d\x13\xa7\x76\xef\xbb\xe9\xfb\x63\xdf\xb0\x28\x6e\x17\x00\x35\xb9\x13\xda\x8e\xed\x8b\x98\xb2\x4b\x22\x24\xd9\x03\xa7\x49\x94\xb5\x03\xe5\x50\x08\xd8\x0b\xdb\x7d\xb0\xea\xc7\x5d\xd9\x36\x97\xa4\xfb\x6b\x52\x8d\x09\xf5\x42\xc3\xec\x9e\xe0\xa3\xaf\x93\xf3\xc8\x60\x34\xfb\x3d\x94\xd3\x8f\x99\x4a\x34\xf2\x56\x0e\xad\x93\x53\xbc\x4c\x82\xc6\xdc\xe1\x60\xe6\x46\xb9\xb9\x14\x16\xee\xfa\xb3\x61\x81\xb4\x96\x27\xfa\xff\x3c\xca\x1d\x17\xcc\xc7\xf2\x63\x07\xad\x0a\x62\x9e\x09\xcb\x5c\x30\xcd\x6c\x65\xb2\xaf\xc9\xfa\x48\xa1\x8e\xf6\x89\x40\x2e\xc8\x75\x2b\x88\x94\x99\x20\x95\x61\x0c\xc2\xe7\x5a\xbc\x46\x45\x9f\x7f\xe6\xf6\x11\x8b\x05\x22\x70\x7b\xf9\x82\x5c\x23\x6e\x1d\x1c\x68\x89\x85\x17\xbe\x76\xb6\x80\xa3\x7c\x98\x53\xd8\x6b\x6d\xca\xfc\x65\x43\xd8\x4b\x2e\xd5\x73\xb0\x67\x97\xbc\xbe\x9e\x21\x93\x72\xca\xf5\xdf\x47\x4f\xa7\xcc\x49\x42\xb1\x6b\xd2\xcb\xa2\x33\x44\x4a\xf3\x67\xaf\x32\x6c\x87\x3e\xb9\x3f\x31\x5f\xa6\x25\x35\x2d\x4d\xfb\x53\x8c\xfe\xa3\x9f\x24\x9b\xf9\x4a\x86\xa9\xaf\xa8\x9c\xd8\xce\x41\x59\xa8\x6a\x00\xe1\xd0\x6c\x9d\xa6\x11\x74\x58\x54\x9b\xb7\x92\x08\x19\xec\x3a\x3f\x31\x9a\x4a\x7f\x9a\xeb\x0d\x90\xb9\x57\xeb\xf3\x96\x27\xa7\xe7\xc9\x26\xd4\x46\x16\x39\xbc\x5f\xf2\x0f\x2e\x6d\x40\x8c\x30\x78\xc9\xcf\x62\x36\xc1\x3a\x41\xc5\x3e\xd9\x96\x6d\x19\xc2\x9c\x62\x90\x11\xe7\xc4\xa8\x7c\xd0\x1f\x2e\xc8\xb5\xde\x95\x78\x16\x8f\x72\x10\xa6\x1a\xde\x02\x3b\x4b\xe1\x21\xfa\x2c\x20\xb3\xed\x59\x62\x21\x87\x7e\x66\x77\xff\xba\xc4\xdf\xe1\x0f\xfe\xf6\x5a\x27\x9a\x13\xfb\x3c\x3a\x3a\x44\xc5\x02\xb7\x74\x71\x79\xbc\xd0\xb4\x91\x0b\x33\xc0\xdf\xfd\xfd\xac\x40\x87\xae\xaf\x6e\x61\xeb\xd5\xa8\x8d\x8b\x13\x54\x7c\x27\x39\xf3\x07\xf0\xb2\xab\x2a\x22\x65\xe0\xf9\x13\x44\xb6\x9c\x49\x92\x86\xed\x30\xae\x9e\xc1\x5b\x7e\xc1\x15\x05\xa9\x44\xee\x38\x06\x49\x05\xa7\x26\x52\x89\xc0\x50\x0a\xe4\x55\xb8\xdd\xf3\xa4\xf0\x2f\x2d\x44\xd2\xd2\x75\xa7\xe4\x17\x1a\xa5\xff\x19\xe4\xa9\x19\xc6\xfa\x68\x5c\xd1\xc1\xae\x21\x25\xc8\xe5\x08\x43\xe0\x46\xcf\xa4\x1a\xd0\xff\x00\xd5\xe1\x59\x54\x86\xe2\xb8\x64\x48\x61\xf5\xe8\xd6\x67\x4a\x8a\xe1\x3b\x25\x70\x53\xdf\x40\xbe\x87\x29\x4d\x9b\x29\x1e\x45\xc1\x43\x7a\x9e\x61\xe3\xfc\x68\x04\x97\x03\x18\x7c\x2d\x5c\x44\x51\xec\x33\xd5\x14\x76\x13\x3b\x31\x79\x03\xba\xa6\x81\xcd\xf9\x74\xe8\x00\xb6\xb4\x40\x05\x9a\x68\x16\x8b\xe1\x35\x3f\x4e\x8b\x71\x97\x6c\x50\x3d\x13\xb2\x1d\x67\xc8\x89\x99\x42\xff\x5f\xfc\x39\x58\x7d\x6e\x91\xa3\x5b\x1f\x39\x19\xd6\x0d\x57\x6e\x32\xd4\xa1\xf7\xc9\xfc\xf3\xe9\xe2\xdc\x4c\x64\x40\x92\xc4\x94\x68\xe8\xd5\x1e\x59\xff\x3b\x08\x91\x6e\xbb\x72\x0f\xdb\x8d\x21\xbd\xc9\x58\x4e\x37\x39\x99\x18\x53\xc5\xb8\x66\x86\x37\xb3\x73\x72\x34\xc0\x39\xd4\x86\x3b\x74\xc2\x0c\x65\xe5\xfb\x8d\xb9\x25\x66\xae\x4f\xc0\xa5\x66\xc8\xd2\xc3\x99\x0d\x04\xa3\x0c\xa9\x2b\xee\xd7\xae\x4c\x15\x93\x7f\xbd\x84\x92\x31\xfd\x04\x17\xd1\x3f\x52\x3f\x69\xf4\x03\xfd\xe4\x10\xee\xd2\x4f\xb6\xe2\x2e\xfd\xe4\x40\x7e\xb9\xfa\xc9\xf3\x9d\xd3\x53\xbe\xc0\xeb\x2b\x08\xa6\x8a\xf4\x95\x87\x71\x63\x08\x6a\x7d\xda\xd1\x3a\x82\x49\x48\x65\x03\x29\xb4\x51\xfc\x6f\x75\xd7\x8b\x83\x7f\xb6\xba\x73\xbf\xed\x8b\x86\xc8\xbd\x6c\xa8\x27\xb7\x78\xf4\x70\x41\x1f\xa1\x48\x79\x69\x4d\xb1\x53\x79\x05\xaa\x64\x44\x7b\xfd\x7f\xa0\x38\x3c\x15\xf6\x53\x1c\x28\x8e\x82\x7e\x77\x7c\xfe\x0b\xd2\x2b\xb1\xb8\xdb\x4f\xaf\xc4\xf2\x6f\x3f\xbd\x32\x94\xe5\x81\x5e\x09\xe5\xf2\xf0\x91\xf3\x9a\xfc\x99\x92\xab\xc1\x0b\xe7\x35\x99\x83\x3b\x0b\x92\xee\xb0\x6e\x3b\x76\xde\xd9\x6f\xea\xe0\x0e\x8d\xe6\x20\xdd\x76\x9f\x23\x09\x02\x93\x77\x84\x4e\xde\x97\xfe\xdd\xf2\xd8\x1b\x11\xbd\x68\x69\x80\xd2\x2d\x5d\xb8\xa3\xbb\x2d\x4f\x90\x9d\x03\xde\xf8\x11\xa1\x47\xa8\xa1\xfd\xb6\xdc\x34\x61\x02\xb2\x7b\x69\xa5\x3b\x30\x8b\x7f\x96\x2b\xc8\x9a\x32\x29\xde\x09\xd2\xc0\x56\xe3\xbe\x73\x72\xf9\x64\x4d\xda\x16\x3c\x0f\xef\x08\x92\x52\x6e\xe8\x4a\xfd\x91\x5c\xa3\xdf\x25\x68\xfa\x64\x4b\xe4\xef\x93\xa3\x29\x3a\x81\x5b\x53\x07\x09\x7f\xd7\xf6\xf4\x3f\xf3\x50\xc8\xc7\x25\x80\xda\x2f\x75\xd3\xe4\xe5\xb7\xf5\xe1\xf4\xdb\xb9\xf9\x6f\x94\xc1\x29\x7d\x72\xb4\x67\x9a\x71\x22\xdb\x5a\x2b\x2a\xa4\x3a\x8d\xe4\x7e\x9a\x0b\x0a\x40\x82\xd7\xec\x2d\xad\x20\x0c\xf0\xdd\x71\x7c\x79\x31\x9c\x3a\x33\x63\xb6\xfe\x2c\x5f\xfd\xb3\xf3\x69\x7a\x74\xa1\x25\xe5\x0c\xe9\xbd\x7f\x31\xb5\xaf\x69\xbd\xe1\xed\xc4\xa0\x29\xf9\x6a\x25\x89\x9a\x4c\x4b\xc5\x5b\x34\x47\x9f\x1d\x1d\x45\xf5\xc7\x62\xf0\xd0\xde\x04\xbe\x35\x35\xd6\x4f\x42\x8e\x9f\x70\xd0\x77\xca\xaa\x95\x4a\x1d\x6d\x3a\xbf\xb6\xf1\x14\x56\xf2\x84\xaf\xc6\x15\x29\x4c\xe1\xf3\x1e\x0d\x83\x34\xb4\xd5\xdc\x07\x67\xb4\x82\xaf\x68\x93\x7f\x99\xc1\x9d\x4a\xdf\x3d\x38\xe3\x67\x19\x98\xf1\x0b\x08\xca\xe8\xdf\x50\x7c\xc2\x9b\x06\x2f\xb9\x08\x83\x75\x06\x53\x3e\x02\xde\xcf\xbe\xcd\xb4\x59\xf9\xaf\x5c\x20\x0c\xf6\xac\xbb\x2f\x0e\x47\x3a\x50\x32\xd7\x25\x90\x8a\xfc\x36\xfb\x26\x7e\x63\xd9\x38\x3b\x9d\x7e\xb1\x3e\x76\xeb\x4c\x0e\x1f\xd5\x8c\xd3\x93\x66\x3c\xc9\x1d\xad\x4f\xa2\x07\x95\x23\xfb\xdc\x5c\x3c\x8f\x9d\xda\x10\xd7\x68\xa7\xf4\x26\xeb\x68\x85\x04\x52\x64\xb9\xe1\xfc\x22\x59\x3f\x70\xc7\xfb\x92\x30\xd5\x1f\x25\xf8\xeb\x92\xfb\x5c\x21\xa5\x72\x52\x9c\x64\x7c\xf0\x01\x5e\x48\xf2\x31\x38\xfb\x0f\x93\x9b\x41\x54\xc4\xbf\xaa\x17\x39\x0f\xad\x61\x93\xdf\xbb\x9c\xc4\xa8\xc5\xd7\x10\xa3\xcd\x19\x32\x02\x14\x58\xc0\x76\x56\x53\xb1\xdc\x50\x69\xde\x1f\x83\x27\x69\xcd\xd9\xcb\xad\xd9\xb6\xc7\x9e\x44\x33\xcf\x72\x33\xee\x93\x22\xef\x78\xb4\xeb\xd6\x73\x98\x28\x07\x5d\x84\xb3\xb7\x58\x76\x27\x60\xc8\x25\x68\x06\xdc\xe1\xe5\xff\x9b\x19\xfa\xc2\x4b\xf6\x9e\xeb\x0c\x25\xdf\x18\x99\x8e\x6a\xd2\xd0\x4b\x22\xae\x0f\x7c\x82\x60\xf8\x69\x09\x35\xd3\x66\x67\x52\x76\xcb\x72\xcb\x0d\x7c\xdf\xe3\xa7\x3d\x8e\x76\xd2\x4c\xc1\xee\x10\x67\x4f\xc2\x7d\xdc\xb1\x0e\x10\xf2\xc8\x1e\x28\x04\xab\x37\x34\x92\x05\xc1\xf5\x75\xda\xa8\xee\xa6\xd1\x34\x5b\xa2\xb0\xc9\x87\x07\x23\x38\xf7\x21\x49\xd1\xbb\x17\xd6\xad\x90\xd6\x30\xc5\xd9\x3a\x07\xee\x49\x0c\x97\xc3\x47\x71\x08\x21\x27\xac\x46\x7c\x05\x79\x4e\x60\x53\x62\x16\x2b\x32\x21\x65\x66\xb2\x4d\x8e\x3e\x0f\x71\x3e\xca\xd2\x61\xc4\xca\xf0\xca\x5d\xcf\x53\x90\x7f\x9b\x7c\xc0\x95\x82\x87\xa9\x2c\x4b\xe9\x3f\xe7\x92\xb2\x8a\xdc\xd6\x80\xb3\x37\x7a\x46\x69\x79\xab\xf9\xa4\x6b\xfb\xc7\x7a\x82\xe7\x04\x1c\x19\x66\x49\x4e\x55\xf7\x44\x5b\xa6\xca\x25\x16\xd4\xa8\x9e\x99\x3d\xb9\x55\xa4\x46\x8a\xb2\xeb\xb4\x05\x83\xc4\xbf\xa8\x1c\x8c\x92\x6c\x31\x53\xb4\x42\x6f\x5f\x68\x59\xdf\x35\x44\x96\xfd\x29\x5e\x9f\x51\x31\x7d\xc2\xd7\xe4\x8c\x71\x07\xb9\x7d\x0e\x98\x5e\xc6\x7e\xd7\x6d\xdb\x1d\x08\xb0\xad\x68\xcf\xc7\xad\xe3\x87\x33\x4d\xf6\xec\xeb\x6c\x10\x6d\x03\x14\x2c\x35\x05\xf5\xdf\x5d\x1b\xbf\xe0\x1c\x0b\x79\xd9\xd0\x9a\x94\xdd\xae\x4e\x28\x81\x99\xb9\x8c\xae\x3b\xa2\xe1\xf5\xec\x44\x58\xba\xf6\x0a\x8b\x7a\x07\x0e\xb3\xbe\x0c\x0a\x03\x9c\x20\xa0\x5a\xd3\x73\x51\x9b\x03\x6f\xff\xf7\x24\x84\xe8\x23\x12\xfa\xd3\xe6\xf0\x7b\x2b\xf8\x5a\x10\x29\x4d\x52\x01\xf8\xd3\x36\xaf\x95\xdc\x63\xbd\x31\xa3\xea\x3a\x37\x0d\x43\x92\xf9\x4f\x8a\xb7\xd6\xf0\x18\x02\xfd\x70\xdb\x74\x38\xbb\xb6\x47\x02\x26\x44\x4f\x51\xad\xfa\xb0\xb4\xac\x7f\x49\xf5\xbe\x97\x14\x99\x6b\x38\xc9\xdb\x44\x99\x89\x0c\xdf\x6b\xf1\x46\x92\xc2\xcb\x49\x08\xa1\x45\x6f\x16\xc2\x0f\xf6\x47\xa9\xcc\xa9\x61\x27\xf3\x9a\xd6\xe4\xd8\x6a\xa2\x7e\x1d\x3d\x15\xbc\xfd\x9e\x33\x72\x10\xbc\x8b\xfd\xbd\x7d\x99\x68\x52\xdc\x73\x3f\x83\x84\x98\xae\x68\x24\x42\xc9\xdd\x9a\x79\x4a\xc1\xe9\xf0\x83\x7b\x5b\xcc\x57\x73\x7f\xc4\x47\x8e\xc1\x77\xfb\xf4\x85\x56\x4f\xf1\xd3\x17\x1b\x82\x6b\x48\x36\xf2\x03\x2a\xfe\x3a\x7f\xf2\xfa\x9b\xe7\xf3\x37\xfc\x82\xb0\xc2\x68\xa2\xe0\xc5\x6b\xfc\xe1\x39\x6d\x88\x1c\xa2\xdd\xe2\x0f\x73\xb3\x81\x49\x61\x21\xb9\x53\x0e\x5c\x7f\xe9\xc1\xb5\xf1\xdb\x2a\x52\x1b\xfc\xbd\xf5\x9e\x54\x34\x60\xb2\xb0\xd9\x53\x7f\xb5\xf8\x55\x81\x7e\x07\x7e\x07\x34\x6c\xc5\x03\xfb\x46\xea\xfa\x1b\xb0\x4e\x5e\x52\x76\x21\xe3\x24\xa0\x35\xad\xd4\x53\xb2\xc2\x5d\xa3\x5e\xb9\x87\xbd\x53\x84\xb5\xf9\x3e\xb7\x2f\x7f\x07\x5e\x6b\x5a\xa9\x17\xec\x12\x37\x14\x06\x60\x1c\xd8\x69\x6d\x6a\x00\xcc\xbb\x73\x73\x13\x5d\x16\x22\x80\x9a\x9c\x7f\x49\xd7\xc3\xba\x70\x91\x58\x71\x3e\x5f\xd2\x75\x5c\xcb\x0c\x48\xd7\x1d\xd6\x32\xa6\x58\x32\x31\xda\x16\x1f\x79\xee\x12\xec\x04\xce\x26\x85\xf5\xb6\x87\x3e\x18\x8d\xc4\x5c\x77\x8c\x77\xf8\x21\x5f\xbe\x83\xb7\xc9\xf5\xaf\x73\x74\x06\xb0\x65\xd7\xd1\x3a\xdc\xbd\x9b\x5b\xb2\xee\x81\xc0\xc8\x07\xfa\xe0\xa1\xf9\x40\x6b\x38\x71\xed\xeb\xa3\x43\xf4\xa0\x80\xe7\xa3\xce\x80\x10\xb2\x40\x9a\x7a\x67\x5a\xd6\xd7\x84\x15\x8f\x1e\x04\x78\xa6\xfd\xe3\x69\xba\xee\x20\xd4\xd3\x20\x98\x96\xb8\x6d\x09\xab\xcd\x03\xff\xa1\x7f\x20\xf8\xdb\x93\xc3\xd0\xb1\x06\x3a\x26\x24\x19\x66\x2b\xf1\x34\x40\x94\x45\xd4\x19\xf8\xa5\xed\x1b\x0f\x23\x14\xbc\x2d\x83\x47\x2a\x36\xa2\x29\x87\xf5\x8d\x3e\xfd\x74\xc0\x12\x7a\x41\xa7\xb1\x4a\xbd\x69\xba\x03\x59\x7a\xeb\xc8\xcc\xfc\xc9\x58\xef\xd3\xc4\xaf\xd6\xb2\xcd\x77\x27\x82\xbd\x19\x19\x6f\xfa\xbc\x45\xfc\x04\xc2\x33\x93\x37\xec\xa0\xcf\x20\x06\x17\x3f\xd9\x8a\xae\xad\x40\xa4\xdb\xf5\xfb\x9a\x8a\x28\x0a\x83\x6e\xd7\x0b\x80\xb7\xe6\x06\x5d\x33\x2e\xc8\x7b\xb2\xe5\x70\x22\x92\xe6\x5f\x82\x23\x1b\x2c\xa1\xad\x30\xe1\xe1\x9a\xa8\x67\x26\xff\x83\xfc\xf2\x1a\x34\xdc\x57\x78\x4b\xc0\xa3\x34\x37\xe8\xa1\x7a\x2e\xff\x89\x43\xe7\x53\xa0\xd0\xc3\x43\x37\x3b\x61\x2e\x34\x07\xf7\x8e\x9e\x47\xe3\x7e\xd2\xd0\x76\xc9\xb1\xa8\xd1\x1f\x5e\xdb\x1e\x56\xbe\xc8\x64\x07\xf4\x20\x7f\x78\x0d\x59\xcb\xed\x2f\xd3\x27\xff\x73\x6c\xdd\x7b\x0e\x27\x25\xbc\x60\xda\xdf\xe5\x0a\x5e\x7c\x06\x3e\x26\xce\x95\xa6\xe9\xf1\x58\x29\x41\x97\x9d\x22\x36\xe6\xcd\x99\x67\x35\x91\x4a\xf0\x6b\x67\xa1\xf5\x75\x64\x58\xc7\x4e\x74\x62\x08\xdb\xd2\xb1\x76\x00\xd8\x8d\x20\xd8\xce\xdc\xb1\x87\x61\xc8\xe9\x4f\xde\x3d\x2e\xe8\x9a\x32\xff\x2c\x71\x68\x34\xc4\x33\x41\x84\x80\x17\xa4\x87\xf3\xf0\xb3\x22\xb7\xe9\xe6\x2f\x8f\xd8\x8b\x05\x7a\xdc\x29\xae\x6d\x90\xde\x27\x7b\x2f\xcc\x91\x8e\xed\xe7\xac\x4b\xd6\x7d\x4c\x6b\xf9\xe0\x4e\x3d\x2e\x6b\x46\xbc\xc2\x1f\x4c\x5a\xd2\xc9\x17\xc7\x9f\xcd\x20\x54\xd7\x83\xdb\x9f\xe6\x7b\xfc\x96\xc3\xe3\x3f\x3c\xfe\xab\xb9\xa8\x6f\x63\x2b\x9d\x97\xf0\x3b\xfc\x61\x0e\x36\xdc\x4f\xe6\xb0\x08\x1d\x15\xd6\x53\x31\x8c\x5d\x1b\xbe\x71\x34\xb0\x1e\xbd\xa8\x2e\xfe\x3a\xd7\xdd\x2f\x4e\x50\xa1\xe5\x67\x91\xc8\xed\x24\x30\xd5\x9c\x6f\x9b\x77\x70\x66\x2e\xc3\x66\xb8\xcf\x03\xa3\x23\xc9\x7b\x64\x87\x63\x61\x16\x0b\xf4\x16\xde\x74\x03\x81\xf7\xf6\x9b\x97\x88\x0b\x64\xb4\x17\x92\xa4\x59\xe9\x19\x66\x1c\x6d\xb9\x20\x68\x45\x88\x0f\x92\xd5\x24\x32\x2e\x09\xdb\xac\x66\xa3\x6f\xec\xc1\xfb\xef\x61\x60\x13\x3b\x98\xf9\xdb\x6f\x5e\xc6\xde\xf3\x4e\x34\x91\x3f\x3a\x21\xd0\x4c\x63\x0e\x74\x59\xc6\x3b\x36\x0c\x50\xce\x3c\x17\xd6\xd7\x1a\x71\x5f\xf7\xfe\x43\xd2\xb4\xe6\x21\xcd\xe0\x35\xac\x8f\xe7\x12\x8f\x23\x79\x49\x7d\xf0\x8e\x7a\xd5\x70\x18\x47\x92\x4a\x7c\x9f\xe7\xd5\xcd\xe3\x62\x3d\xe1\x8c\x55\x0c\x17\x29\xcc\xbb\x47\x03\x9b\x29\x84\x36\x20\xf9\xc7\xd8\x87\xa7\x5b\xd1\xbb\xc0\xfb\xbe\xdd\xb5\x23\x07\x2b\xf8\xc9\x83\xda\x5a\xb0\x85\x8d\xe5\xf8\x3c\x1d\xcf\x88\xc7\x0e\xcc\x57\xe7\xaa\x1b\x0b\x06\x18\x1e\x65\x65\x2e\x4d\xa4\x7b\xea\xc0\x1d\xb2\xe1\x57\xf3\x16\xb3\x3d\x9e\x8d\x4c\x37\xc1\x50\x0b\x08\xef\x3d\xea\x09\x5e\xe8\xc9\x9d\xf1\x5a\x3e\x9b\x0e\x07\xd2\xa3\xb7\x6c\xad\xe7\xee\x47\xb8\x6c\x87\x73\x6f\x05\x40\x6a\xec\x8e\x79\x64\x33\xfc\xbc\x87\xf7\xb5\xf6\xcf\xa7\xa4\x7e\x6b\xe3\xb6\xe6\x68\x8b\x2f\x08\xc2\x62\x49\x95\xc0\x02\x72\x17\x6c\x7d\xbe\x33\xc5\xd1\x92\x6c\xf0\x25\x41\x0d\xd5\x50\xc8\xf0\xbd\x55\x10\x8e\xfc\x50\x76\xeb\xb2\x4f\x49\x9f\x5b\x4a\x37\xc1\x01\x16\xa9\x2e\x20\xc8\xde\x04\x3d\x70\x86\xcc\x75\x72\xc8\x7b\xcc\xf4\xe2\x5f\x58\x61\xe6\x02\xe1\x05\x59\x53\xdf\x29\x03\x32\x97\xd7\xd2\x9e\x68\xed\x38\x53\x01\x72\xd9\xb3\x94\x50\x0b\x8c\xf9\x61\x76\x4a\xd4\xc1\x15\xcf\x31\x2c\x79\x6d\x98\xaf\xe5\x6f\xcf\xb8\x8c\x9e\xee\xe4\x27\x9f\xd0\x33\x43\x82\xb9\xc0\x35\xe5\x3b\x08\x91\x36\x69\x6a\xdf\x3a\xdc\xb4\x9a\xfd\xbe\x7b\x80\x1f\x35\xbc\x9b\xc8\x3b\x8f\x59\xb5\xe1\xc2\x39\x8a\x7d\xba\xe7\x31\x8f\x38\xec\xa3\x8c\xd9\x10\xba\xb2\x62\x3f\xb9\x89\x7b\xd9\x1c\xcf\xd0\xe6\xb3\x19\xda\x7c\x3e\x43\x9b\x5f\xcf\xd0\xe6\x8b\x19\xda\xfc\xa6\xd7\x45\xe3\x37\x76\x4c\x2c\x60\x4d\x86\xe7\x54\x61\xee\x33\xc2\x2a\x5e\x93\xb7\xdf\xbc\x78\xc2\xb7\x2d\x67\x84\x45\xe9\xba\x59\xfc\xd8\x4a\x3e\xd2\x2b\x7b\x52\x6d\x3f\xf9\xb4\x50\xef\xfe\xf6\x6d\x77\x74\xf4\xe4\x68\xfe\x6d\x77\xfc\xfc\xf9\xf3\x6f\xbb\xcf\x9e\x1c\xe9\x1f\x4f\xff\xe3\xf9\xf3\x6f\xaf\xbe\x9d\xa3\xf3\xc5\x1a\xdc\xf1\x63\xf5\x2d\xc0\x3c\x80\x48\x06\x64\x13\xc5\x5e\xe2\x26\x0e\xc9\xb0\x94\x7e\x77\x89\x9b\xf3\x61\xee\xd4\xbe\x96\xde\x11\xcf\xb5\xe5\x1e\x56\xc8\x05\x87\x0c\x90\x9e\x9d\xa5\x8f\x24\xb8\x7f\x31\x18\x3a\xde\x19\xaf\x16\x01\x1f\xc6\xd0\x07\xe1\x94\xe8\x8d\x2d\xaf\x49\x79\x25\x70\x6b\x33\x66\x3a\xa7\x91\x0d\x68\x7f\x50\xb8\xe0\x45\xc3\x9a\x90\x41\xaf\x40\x8f\x5c\x16\xcd\xd3\x08\x9f\x73\x06\x05\x7d\x79\xf0\x10\xc7\x18\x0a\x97\xf4\x33\x8d\x81\xcc\xc4\x3d\xa6\xd1\xff\x69\xa0\x25\x1c\xfb\x3d\xf2\xa1\x91\x38\x70\x60\xf5\x26\x5e\xb8\xcc\xb2\xd7\xab\xe0\x48\x2d\xbc\xce\xd3\x17\xc4\x61\xd4\x80\x22\x78\x6b\xda\x3c\xe3\x74\x6a\x0b\xfb\xe8\x85\xbe\xac\x7f\xec\xc9\x95\x3c\xab\xa9\x1a\x96\x70\xd1\xff\x8e\xd3\x9a\xb8\x52\x9b\xdf\xe2\xd4\xf7\xc0\xc5\xed\x39\xf1\xa1\x9b\x47\xf0\xae\x98\xb6\x97\xcb\x60\x37\x36\x78\x71\x6c\xb8\x0f\x73\x77\x2f\xa3\xe7\xcd\xd6\xbb\x9e\x37\x0b\x5c\x5f\xf6\x3a\xa6\xdc\x04\x97\x1b\x33\x6d\x87\x6f\xe4\x4d\x47\x33\x4d\xdd\xf2\x80\x5c\xc6\x6c\x4b\x6e\x47\x5a\xdf\x72\xe0\xfa\xde\x13\x5f\x80\xe5\x26\x0c\x79\x17\xbc\x53\x70\xe5\xd5\x74\xb2\xa8\xe9\x65\x1c\x74\x54\x9c\x0c\x82\x9a\x66\x3d\x68\x90\x36\xd3\x47\x29\x55\x51\x78\xcb\xc9\xae\x58\x99\x00\xd3\x95\x09\xfc\x48\xdb\x4d\xe2\x41\x0e\x5c\xb8\x35\x24\x2b\x02\x33\x83\x0b\xef\x35\x73\x05\x88\x32\x3b\xb0\x38\x0c\xc3\x7d\xcf\x31\x09\xb2\x35\xde\x39\xa0\xf3\x9e\x7c\x03\xe2\xdd\x44\xcf\x82\x18\xf5\xfc\x7b\x2c\x37\x93\x0d\x96\x9b\x3e\xd8\xd4\x85\x5f\xb4\x9d\xdc\xbc\x56\x58\x79\xef\xcc\xe0\xc3\x84\x75\x4d\x33\x43\xe6\xff\x01\x09\xac\xeb\x50\xfa\x45\x11\x76\xe8\x0c\xa0\x86\x81\x49\x7d\x20\xa5\xef\x85\xb5\x38\xd7\x41\x62\x5e\xd7\x8f\xcc\x27\x9f\x13\xfa\x71\xd3\x40\x90\x9d\x15\x19\x51\x5f\x32\x8f\xb8\x10\xb8\x63\x94\x09\x95\xca\xc5\xeb\x99\xb2\x19\xba\xbf\x12\xdc\xc6\x02\x9a\xd0\xbf\xd1\x07\x39\x61\x02\x7b\x68\x7b\x1f\xdf\x24\xb4\x35\x29\xaa\xe2\x30\x55\x01\x2f\xb7\x9a\x04\x32\x93\x63\xe7\x70\xd1\x95\x96\x51\x25\x8d\xf2\xd6\x2a\xd5\xa9\x67\x22\x8c\x3e\x39\x43\xcb\xf8\x40\x13\xa3\x47\x61\x11\x42\x15\x3a\x43\xb8\x5f\x7b\xba\x9b\xcb\x60\x29\xa2\x33\x87\x31\xce\x82\x0c\x7a\x80\xc4\xf7\x8e\x23\x6f\x30\x06\x6f\xb0\x46\x16\x3a\x80\xa1\x45\x53\xd5\x5c\x26\x2e\xca\x97\x70\x7f\x6b\x9a\x36\x12\x85\x57\xba\x2a\x26\x17\xf0\x2c\xb6\xfe\xd2\x87\x46\x03\x16\x2f\xee\x01\x76\xec\x0d\x81\x02\x7e\x2f\x3d\x6c\x7c\x8d\xc4\xfc\xcf\x4f\x4e\xb6\x85\x08\xfb\x30\xe4\x18\x26\xc6\x45\x9b\x24\x56\x5c\x1c\x28\x49\xd7\x8c\xa6\xe9\x1b\xfa\xee\xdc\x77\x1b\x98\x12\x0b\xf2\x3f\xbc\x7b\xdd\x09\xf0\x96\xc0\x6a\x36\xa9\x07\xbf\xbc\x56\xe4\x25\x61\x08\x9e\x2b\x96\x68\x79\xad\x85\x23\xbc\x04\x65\xa2\x46\x1e\x48\xf4\xf6\xcd\xf3\xf9\x6f\x91\x20\xad\x20\x92\x30\x65\xd6\x64\xcf\xee\x3d\x92\x09\xe3\x62\x8b\x9b\x3f\x63\xeb\x00\x32\x0f\x63\x55\xc4\xa2\x82\xd3\xa9\x03\x6d\x5a\x58\x28\x74\x86\x6c\x84\x63\x5f\xd1\xcb\xba\xa5\xed\x98\x7d\x08\x2a\x77\x48\xe0\x6b\xe5\x4e\x09\x80\xbf\xc0\x22\x72\x40\xd5\x06\x0b\xad\x68\x1f\xab\x89\xe3\x14\xd7\x88\xbf\x20\x52\xa1\x87\xe8\x18\x3d\x7c\x88\xfe\xc3\x73\xda\xef\xd0\xb1\xff\xfb\xa4\x07\x38\x3e\x0e\x20\x3e\xcb\x42\xfc\x26\x80\xf8\x3c\x07\xf1\x59\x88\xe3\xd7\x59\x88\x10\xc7\x17\x39\x88\xcf\x43\x1c\xbf\x09\x20\xcc\x5b\x19\xe5\x57\xf8\xab\x53\xcb\x93\xee\x61\x1e\x33\xe8\xe4\x02\x74\xce\x33\xbb\x85\xbf\x66\x90\x19\xfa\x59\x43\xb6\x2f\xea\x19\xb2\xef\x5a\xbf\xb0\x16\xad\x89\xb6\x94\x6b\x7b\x80\xaf\x79\xb9\x87\x76\xbb\x3c\x28\xee\x2b\x9a\xcb\x2c\x06\x39\x9a\x87\x0c\xa4\x31\xd9\x28\xa3\x9e\x13\x38\xb3\x1d\xfb\x23\x89\x6e\x2f\x91\x38\xe2\xd3\xf6\x21\xb9\x42\x06\xef\x99\x9d\xa1\x1e\x71\xff\xa9\x01\xee\x0a\x5a\xd7\xb0\xc1\x77\x41\xb6\x98\x32\xf3\xc6\x83\xef\x6c\x43\x98\x75\xaf\x42\x02\x52\xc2\xd0\x23\xf7\x35\xd8\x95\xbb\xd6\xfa\x66\x9d\x98\x3d\x9a\x39\xe8\x40\x7c\xf4\xed\x1c\x39\x29\xe2\x7c\x8d\x59\xd2\xf9\x1a\x46\xfb\x98\xe0\x0d\xdd\x94\x09\x82\x0e\x09\x06\x81\xd1\x10\x86\x13\x95\xea\xc9\xff\x7f\x01\x00\x00\xff\xff\xfb\xae\x8d\xed\xb3\xba\x00\x00" func jsGogsJsBytes() ([]byte, error) { return bindataRead( @@ -19922,8 +19901,8 @@ func jsGogsJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "js/gogs.js", size: 51365, mode: os.FileMode(0644), modTime: time.Unix(1583774436, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x67, 0xf8, 0x2b, 0xd1, 0x45, 0x41, 0xc9, 0xe6, 0x67, 0xb4, 0xa1, 0xcb, 0x99, 0x2f, 0x7c, 0x75, 0x38, 0x35, 0xf2, 0x18, 0x53, 0x9c, 0x3a, 0xf, 0xab, 0xaf, 0xf1, 0x1b, 0xac, 0x61, 0xf3}} + info := bindataFileInfo{name: "js/gogs.js", size: 47795, mode: os.FileMode(0644), modTime: time.Unix(1586528224, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0xf7, 0xd3, 0x68, 0xb1, 0x2b, 0xe1, 0x5d, 0x32, 0xed, 0x5, 0xe6, 0x9c, 0xf, 0x92, 0x60, 0x19, 0x18, 0x11, 0xdb, 0x3e, 0x26, 0x4f, 0xe7, 0x7f, 0xf5, 0x5f, 0xff, 0xf0, 0x96, 0x1e, 0xf3}} return a, nil } @@ -20162,7 +20141,7 @@ func less_formLess() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "less/_form.less", size: 2285, mode: os.FileMode(0644), modTime: time.Unix(1584887047, 0)} + info := bindataFileInfo{name: "less/_form.less", size: 2285, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0xea, 0x1b, 0xb3, 0x45, 0x6e, 0xe5, 0x8b, 0xb8, 0x36, 0xc1, 0x5d, 0xb1, 0xd8, 0x39, 0xed, 0xf0, 0x6f, 0x2d, 0x33, 0x87, 0xdc, 0x5, 0x18, 0x96, 0x28, 0xb, 0xec, 0xd1, 0x27, 0x7c, 0x22}} return a, nil } @@ -20262,7 +20241,7 @@ func less_repositoryLess() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "less/_repository.less", size: 33506, mode: os.FileMode(0644), modTime: time.Unix(1584887047, 0)} + info := bindataFileInfo{name: "less/_repository.less", size: 33506, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0xae, 0xca, 0x63, 0x5, 0x3c, 0xcd, 0x50, 0xfc, 0xdf, 0xbe, 0x28, 0xea, 0x24, 0x8, 0xb6, 0x98, 0x3e, 0xe6, 0x82, 0x66, 0x6e, 0x3a, 0xb3, 0x81, 0x93, 0xf0, 0xfc, 0xce, 0x84, 0x61, 0xbb}} return a, nil } @@ -28272,7 +28251,6 @@ var _bindata = map[string]func() (*asset, error){ "assets/octicons-4.3.0/octicons.ttf": assetsOcticons430OcticonsTtf, "assets/octicons-4.3.0/octicons.woff": assetsOcticons430OcticonsWoff, "assets/octicons-4.3.0/octicons.woff2": assetsOcticons430OcticonsWoff2, - "css/github.min.css": cssGithubMinCss, "css/gogs.min.css": cssGogsMinCss, "css/gogs.min.css.map": cssGogsMinCssMap, "css/semantic-2.4.2.min.css": cssSemantic242MinCss, @@ -29666,7 +29644,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ }}, }}, "css": {nil, map[string]*bintree{ - "github.min.css": {cssGithubMinCss, map[string]*bintree{}}, "gogs.min.css": {cssGogsMinCss, map[string]*bintree{}}, "gogs.min.css.map": {cssGogsMinCssMap, map[string]*bintree{}}, "semantic-2.4.2.min.css": {cssSemantic242MinCss, map[string]*bintree{}}, diff --git a/internal/assets/templates/templates_gen.go b/internal/assets/templates/templates_gen.go index 95ad6cc42..7b56f8481 100644 --- a/internal/assets/templates/templates_gen.go +++ b/internal/assets/templates/templates_gen.go @@ -1,11 +1,11 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// ../../../templates/admin/auth/edit.tmpl (10.544kB) +// ../../../templates/admin/auth/edit.tmpl (10.533kB) // ../../../templates/admin/auth/list.tmpl (2.154kB) // ../../../templates/admin/auth/new.tmpl (10.045kB) // ../../../templates/admin/base/page.tmpl (1.227kB) // ../../../templates/admin/base/search.tmpl (247B) -// ../../../templates/admin/config.tmpl (22.331kB) +// ../../../templates/admin/config.tmpl (23.039kB) // ../../../templates/admin/dashboard.tmpl (6.934kB) // ../../../templates/admin/monitor.tmpl (1.87kB) // ../../../templates/admin/navbar.tmpl (1.219kB) @@ -60,7 +60,7 @@ // ../../../templates/repo/commits.tmpl (240B) // ../../../templates/repo/commits_table.tmpl (3.074kB) // ../../../templates/repo/create.tmpl (4.626kB) -// ../../../templates/repo/diff/box.tmpl (6.577kB) +// ../../../templates/repo/diff/box.tmpl (6.683kB) // ../../../templates/repo/diff/page.tmpl (1.714kB) // ../../../templates/repo/diff/section_unified.tmpl (918B) // ../../../templates/repo/editor/commit_form.tmpl (2.557kB) @@ -97,7 +97,7 @@ // ../../../templates/repo/settings/githook_edit.tmpl (1.329kB) // ../../../templates/repo/settings/githooks.tmpl (928B) // ../../../templates/repo/settings/navbar.tmpl (1.124kB) -// ../../../templates/repo/settings/options.tmpl (18.43kB) +// ../../../templates/repo/settings/options.tmpl (18.622kB) // ../../../templates/repo/settings/protected_branch.tmpl (3.64kB) // ../../../templates/repo/settings/webhook/base.tmpl (293B) // ../../../templates/repo/settings/webhook/delete_modal.tmpl (526B) @@ -217,7 +217,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminAuthEditTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5a\x6d\x6f\xe3\xb8\x11\xfe\xec\xfd\x15\xac\x7a\x2d\x76\x81\x8b\x8d\xa2\x87\x43\x71\xb0\x17\xc8\x5d\x76\x6f\x17\x48\x0e\x41\x93\xed\x57\x81\x16\xc7\x16\x1b\x89\x54\x49\x2a\xd9\xc0\xf5\x7f\x2f\xf8\x26\x89\x7a\xa1\xe5\x4d\x0e\xbd\x2f\x89\x44\xce\x90\xf3\x3c\x24\x47\x33\x63\x1e\x0e\x0a\xca\xaa\xc0\x0a\x50\xb2\xc5\x12\x56\x39\x60\x92\xa0\xe5\xf1\xf8\x66\x4d\xe8\x23\xca\x0a\x2c\xe5\x26\xc1\xa4\xa4\x0c\x01\xa1\x0a\xe1\x5a\xe5\xc0\x14\xcd\xb0\xa2\x9c\x25\xef\xdf\x2c\xba\x82\x35\x45\x19\x67\x0a\x53\x06\x42\xf7\xf5\x3b\xf7\x82\x12\xd3\xbe\xe8\xce\x6c\x86\x5f\x31\xfc\xb8\xc5\xc2\x4e\xbe\x08\x35\xd5\x13\x14\x8f\x80\x9e\x28\x01\x94\xf1\xa2\x2e\x99\x99\x06\x98\xb2\x83\x2d\x06\x38\x70\x01\x42\x35\x63\x2d\xd6\xf9\x0f\x1d\x2b\x14\xaf\x10\x56\x0a\x67\x39\x10\xa4\x11\x3b\x63\xcd\x40\x4b\xfa\xb7\x7f\xb0\xe5\xbd\x70\x66\x2d\x35\x60\xb9\xd4\xd8\x13\x3f\xd8\x2a\xff\xc1\x8a\xf7\xd0\x35\x63\x4a\xd8\x97\xad\x71\x8b\xf5\x8e\x8b\xb2\x23\xa7\x5f\x13\x84\x33\xcd\xe0\x26\x39\x1c\x96\xd7\x94\x3d\x1c\x8f\x09\x2a\x41\xe5\x9c\x6c\x92\x8a\xcb\x46\x59\x9b\xf4\xcb\xdd\x3f\x3f\xde\xf3\x07\x60\x9f\xee\x6f\xae\x9d\x15\x8b\xc5\x9a\xb2\xaa\x56\x48\x3d\x57\xb0\x49\x72\x4a\x08\xb0\x04\x31\x5c\xc2\x26\xa1\x24\x41\x8f\xb8\xa8\xc1\x0c\x7f\xc7\x6b\x91\xc1\xf2\xf3\xd5\xf1\xd8\x8c\xda\x35\x9d\xb2\x82\x32\x40\x3b\x0a\x05\x69\x04\x16\xeb\x02\x6f\xa1\x78\x7f\x38\x7c\x37\x4e\x89\xfe\x9b\xea\xc9\x93\xe3\x71\xbd\xb2\xc2\x8d\xee\x98\x69\x94\x6c\x92\x56\xc9\x59\x6a\x9f\x07\xb6\xde\x3f\x57\xd0\xb1\x76\xb1\x96\x15\x66\xef\xc3\xfe\xdf\x70\x09\x7a\x6a\xd3\xe5\x61\xad\x08\x7d\x1c\xc3\x28\xe0\x3f\x35\x15\x40\x50\x17\x2c\x3a\x1c\xe8\x0e\x2d\x3f\x08\x91\xda\xc1\x40\x08\x2e\x0e\x07\x60\x24\x98\xdc\x80\xd3\xcb\xb6\x49\xb4\xd5\xc9\xfb\xa9\x6d\x62\xe0\x19\x91\x49\x4e\x34\x0b\x46\xc2\x11\x60\x9f\x07\x04\x58\x7b\x12\x7d\xde\xf8\x8e\x67\xb5\x44\x1e\x41\x0f\xaa\x7f\xfb\xd3\xc5\x05\xba\xbe\xba\xbc\x45\x98\x11\x74\x65\x9e\x2e\x2e\xda\x3d\x44\x77\x88\x0b\xd4\x6c\x05\x69\x04\xda\x57\xa3\xd0\xec\xac\xc5\xe1\x80\xbe\xcb\x76\xfb\x9f\x36\x5e\xc2\x88\xb7\xfd\x23\xbb\xa7\x21\xb8\xcf\xec\x1d\x64\xb5\xa0\xea\xf9\x56\x70\xc5\x33\x5e\x4c\xb1\xdc\x6e\xb8\x71\x6e\xa5\x1b\x27\xad\xdc\x40\x23\x1c\xf7\x4f\xa4\x84\x02\xcc\x31\x43\x5e\xfb\xc2\x6b\x23\x22\x78\x45\xf8\x13\xeb\x58\x30\xbd\x6f\x87\x93\xbb\xe5\x1b\xe9\x68\xd6\x52\x53\xb8\x1c\xc2\x0f\x26\xec\x7a\x39\xf8\xaa\xf4\xd6\x1a\x55\xf3\x9b\xbd\xb3\xbd\x8d\xbd\x5e\xd9\xa3\x41\x34\xd3\x6e\x79\xbd\xa2\x13\xb3\x94\xc0\xea\xae\x05\x8b\xc3\x41\x60\xb6\x07\x34\x98\x52\xb6\xeb\x3d\x58\x73\x05\x65\x82\x08\x56\xf8\xa2\xdd\xb9\xfe\xcc\x1e\x0e\xcb\x71\x6b\x17\x6e\xcd\x3b\x86\x85\x12\xe1\x6b\xef\x6d\xec\x30\xf7\x5c\x56\x70\x52\x73\xe3\x44\xa7\x76\x93\xe9\x1d\xdb\x40\xed\x29\x35\x22\x6e\x99\xed\x73\xb8\xb2\x9f\xb8\x54\xfa\x88\x56\x05\xce\x20\xe7\x05\x01\xb1\x49\x60\xb9\x5f\xa2\xf2\x99\xf0\x12\x53\xb6\xcc\x78\x99\x0c\x0e\xee\x4b\x81\x55\x5c\x44\x80\x99\xde\x38\x30\x23\xe2\x80\xd9\xe7\x10\xd8\x2d\x17\x06\xd8\x08\xb2\x1f\xff\xfe\xe3\x49\x40\xf6\xe8\x07\x9e\xa6\xb3\xe6\x5d\xb8\x7d\x94\x01\xcc\x2d\x65\x24\x25\x6c\x1a\xa9\x17\x18\x01\xdb\x45\xeb\xc5\x1c\xe0\xe6\x35\xc4\xfc\x33\x65\xe4\xea\xb7\xf1\xe5\xcc\xd8\xe6\x0e\xb0\xc8\xf2\xef\x49\xb6\xf1\x6b\xab\x9f\xf5\xf2\x76\x27\xad\x3c\xb0\x1c\x8a\x0a\xe9\xf3\x8c\x04\x90\x93\x08\x52\x2d\x0e\xc2\x00\xa9\xa6\x4e\x83\x87\xe4\xa9\xc3\x0f\x90\x38\x47\x55\x61\x29\x9f\xb8\x08\xf6\xcb\x59\x2c\xb7\x03\x44\x2d\x6d\xc4\xe6\x30\xde\x08\x77\x79\x6f\x1b\x7b\x96\x8f\xac\xc6\xad\xeb\xeb\x39\xcc\x6f\xe2\xd8\xcf\x33\x93\xe9\x39\x27\x32\x60\xb1\x96\x20\x52\x1d\x78\x4e\xdb\xd1\x8a\x9c\x60\xaf\x15\x74\xcc\x75\x1a\x42\x96\xbe\x48\x10\x3f\x63\x09\xe3\xbb\x96\xd7\x1b\x2d\x20\xc7\x36\xed\xf0\x08\x0f\xce\x70\xe0\xa9\x7b\x47\xfa\x2a\x72\xa6\xcf\x20\x2c\x76\xb8\xbd\xc0\x1c\xb2\xda\xc3\xdd\xbc\x0e\x89\x9a\x3a\xdc\x35\x25\x9b\xbf\xc8\xef\x5f\x93\xad\xb3\x3d\xfa\x8e\x16\x4a\xe7\x20\x53\x64\xb8\xfe\xb8\x57\x77\x42\x8e\x09\xff\x16\x12\xf1\xd1\xb4\x8e\x13\xf1\xf6\xaf\x6f\xf9\xf6\xdf\x90\xa9\x5f\x8c\xe5\x15\x97\xf4\xeb\x65\x96\xf1\x9a\xa9\x77\x6f\x2d\x4b\xef\xde\x9d\xf5\x35\x8b\x41\x36\xf0\xd2\x53\xc0\x03\xa9\x38\xfc\x40\xd4\x91\x10\xb6\x85\x54\x5c\xea\xbe\x86\x8f\x97\xa2\x51\x4a\xd0\x6d\xad\x20\xd5\x3b\xf0\x44\x8e\x30\x94\x3d\x81\x6c\xa8\xe0\xf1\x8d\xf4\xf4\x50\x7a\x89\x2f\x4e\x60\xb0\xf6\xf3\xcd\x4c\x3b\x7a\xc9\x6b\x72\x36\x97\xaf\xb3\xb8\x1a\xe7\x29\xca\x91\xcb\xb9\x5e\x0d\x97\xac\x67\x6f\x05\x2f\x3a\x17\x9d\x97\x1f\x00\x6c\x3a\x26\x30\xde\xd5\x7e\x1b\xbc\x56\x38\xda\xce\x5d\x62\x5a\xcc\x01\x6b\xe4\xe6\x22\x35\xc2\x03\x98\xb6\x75\x02\xe3\x0d\xa6\xc5\x44\x60\x6e\xd4\xa6\x5c\x58\x24\xbb\x1d\x10\xd0\x2b\x7a\xe5\x90\x3d\x6c\xf9\xd7\xe1\xe7\xee\xfd\x5a\x2a\xc1\xd9\x7e\x92\x96\x47\x10\x74\xf7\x9c\xee\x05\xaf\xab\xb4\x84\x72\x0b\x42\xe6\xb4\x32\xfc\x38\xd5\xc9\x2f\xa0\x33\x00\x18\xde\x16\x70\x21\x9f\xa5\x49\xcb\x6c\x68\xd5\x98\xe4\xb8\xb3\x13\x58\x51\xe2\x72\x37\x85\xc5\x1e\xd4\x26\xf9\xb3\xed\x34\xd2\xe6\x53\x6f\xf8\xfc\x55\x37\x7e\xb0\x0a\xc7\xa3\x19\x0f\x88\xfb\xd4\x9d\x9f\xb3\x99\x6c\xdc\x94\xc5\xba\x15\x02\xc6\xd5\xd8\x64\x84\x4a\xf3\xe4\x8b\x04\x66\x4f\xb4\x46\x7e\x43\x9c\x6b\x95\x63\x11\x87\x95\x90\x26\xd0\x37\xe1\xd6\x8c\xf0\xa3\x19\x35\x20\x79\x18\x80\x18\x74\x53\x11\x08\xaf\x37\x46\x2f\x9e\x5d\x44\x62\xd4\x19\xc0\x4f\x7d\x68\x03\xa9\x59\xa0\xc3\x2f\x6d\xd8\x36\x02\x3e\x1a\x79\xfc\xf7\x6d\xc6\x36\x7b\xbe\x97\xe6\x5b\x23\xdf\xe9\x57\x63\x9d\x8e\x38\x5e\x8b\x02\x7b\xb6\xd2\x9a\x46\x92\x05\x2b\xd9\xba\x19\x57\xcc\x36\x66\xa5\x05\x1d\x2f\x19\x0c\xb9\xe9\x4c\x15\xf0\xd3\x6d\x1f\xe1\xe8\xc6\x74\x7f\x31\x75\xda\x31\xe7\x65\xbb\x29\x79\x05\x4a\x0c\xa0\x28\x15\x46\xa2\x65\x42\x83\x07\x92\x52\x66\x3d\xd5\xac\xb8\xbc\x83\xbf\x7d\x1f\x46\xe6\x93\x80\xeb\x08\xd4\x6f\x2d\x39\x4c\xf8\xf3\x39\x0e\x7d\xae\x47\x6f\x48\x93\x9a\x2e\x9d\x7f\xc6\x9d\xb9\xe7\xad\xf7\x8d\x6b\xb5\x07\x1e\xbd\xf5\xd1\xcd\x37\x4f\x7e\x66\x3a\x69\x9e\xf6\xd3\xf1\x5a\x5b\x98\xc1\xf8\xb7\x6e\x6d\xf9\xee\xe6\x7e\x50\x51\x6e\x19\xd7\xbd\x91\xf2\xb1\x51\x3e\xa3\x7c\x7c\x46\x55\xb8\x54\x55\xaa\x1f\xcf\xaa\x06\x6b\x42\xcf\x2c\x00\x37\xf3\xf8\xc2\x6f\xdb\xd0\x0b\x43\x6a\x95\xeb\xfd\x3c\x4c\x1a\xa7\xab\xbd\x56\xe7\xf7\xad\xee\xde\xdc\xdf\xea\x69\xce\xad\xea\xba\x8a\xee\xff\xbb\x9a\x6b\xe8\x8e\x97\x74\xb5\xc8\x8c\xb2\x6e\x3b\x52\x77\x25\x63\x05\xde\xd7\x2e\xe0\x9a\x09\xe3\x55\x5c\x2d\x32\xa3\x92\xdb\x8e\xd4\xc5\x12\xab\xe9\xbe\x56\xfa\x5e\x14\xfc\x09\x48\x6a\xa3\x15\x19\x89\xfa\x7b\x82\x27\xc2\xfe\x9e\xb4\xf7\x89\xfd\xe6\xde\x89\xb3\xdd\x57\xb6\x37\xfc\x4d\x29\x28\x17\xce\x36\x73\xbc\x4e\x18\x50\x35\xe6\x23\x6f\x2f\x6f\xa6\x5d\xe4\xed\xe5\x4d\xc4\x43\x6a\xd5\x17\x54\x90\x2a\x5c\xa6\x12\xc4\x23\xcd\x4e\xa5\xd3\x03\xc9\x13\xbf\x15\xf4\xc5\xfd\xef\x06\x83\xf6\xfe\xcf\x5e\xa6\xcf\xff\x8c\x19\xdf\x76\x63\x5c\xfe\x4a\xd5\xa7\x7a\x3b\x4d\xa7\xed\x8f\x30\xea\x06\x78\x01\xa9\x7b\xaa\xf2\x7a\x9b\xe2\x8a\xa6\xc0\x48\xc5\x29\x8b\x9c\xd8\x31\xe1\x38\xb5\x63\x1a\x3e\x5c\x1c\xeb\xea\x6d\xfa\xdb\xcf\x1f\x5c\xd7\x78\xf4\x94\x2b\x55\xc9\x9f\x56\x2b\x5c\x51\x67\xdc\x32\xe3\xe5\x6a\xee\x5a\xd8\xb7\x37\x43\xea\x86\x3f\xa0\xeb\x24\xae\x1f\x0a\xe4\x94\xc0\xf0\x87\xf4\x93\x41\xd6\xcc\x10\xcb\xa6\xb1\xa9\x2a\x64\x34\xb4\x0a\x02\x2b\x2d\x3c\x1e\x49\x79\xdb\xbf\x48\xb8\xbf\xbe\x9b\x0c\xa1\xc2\xbb\x05\x53\x17\x0d\x72\x2c\x2f\x54\x21\x47\xee\x19\x18\x9a\x3e\x61\x69\xe6\xf8\x7d\xf9\x91\x0f\xb4\xd2\xec\xa4\xb6\xba\x30\x9f\x24\xa3\xe8\x94\xe2\x64\xdd\x3d\xd0\xea\x5f\x46\xf0\x85\x84\x4d\xdc\x3e\x79\x2d\x2a\x70\xa6\xe8\x23\x56\x10\x0f\xc2\x03\x12\xa8\x4c\x8d\x16\x9c\xa0\xe0\xb3\xbc\x34\x62\xd3\x51\xf7\x1f\x82\x01\x02\x3b\x5c\x17\xaa\x8d\x92\xe7\x92\xe0\x14\x4f\xb2\x70\x65\xe5\x5e\xc8\x42\x1f\xfe\xb6\x56\x8a\xb3\xe0\xf2\x18\x00\x43\xb6\x39\x92\xb7\x56\x04\x2b\xfb\x55\xb3\xa2\x61\x92\xd8\xf5\x55\xd7\x3c\xc3\xc5\x47\x5a\xc0\x44\xae\x58\x53\xa4\x3f\x11\xce\x10\x02\x05\x28\xb8\x70\xf3\xdb\x30\xb9\x16\x85\x71\xc8\xee\x06\xd7\xca\xca\xb8\x4e\xed\xe3\xfb\xb7\xaf\xa6\xd7\xc8\x28\xf6\xa3\xec\xd0\x19\x77\xfb\xd6\xab\x1d\x17\xa5\x7d\x69\xdb\x9b\x27\xff\xe0\xfe\xfb\x02\x67\x3f\x21\x2a\x71\x51\xa0\x2d\x96\x34\x73\xf0\x50\xc9\x09\x2e\x46\xae\xf5\xe9\xc4\xa3\x7b\x57\xae\xcd\x4d\x94\xc0\x32\x0f\x13\x93\x38\xca\xd4\x5e\x02\xa3\xaa\x00\x73\xa5\xae\xb1\xb5\x33\x63\xf7\x7a\xdf\xba\x3a\x41\x9b\x1d\x90\x80\xcc\x9a\x80\xcd\x8f\x39\xb8\x18\xe8\x34\x0c\xcc\xd4\x5e\xc1\x93\xee\xc2\xa3\x55\x19\x68\xec\x38\x37\x45\x2d\x2d\xf3\xbf\x00\x00\x00\xff\xff\xf4\xb1\xd8\x9e\x30\x29\x00\x00" +var _adminAuthEditTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5a\x6d\x6f\xe3\xb8\x11\xfe\xec\xfb\x15\xac\x7a\x2d\x76\x81\x8b\x8d\xa2\x87\x43\x71\xb0\x03\xe4\x2e\xbb\xb7\x0b\x6c\x0e\x41\x93\xed\x57\x81\x16\xc7\x16\x1b\x89\x54\x49\x2a\xd9\xc0\xf5\x7f\x2f\xf8\x26\x89\x7a\xa1\xe5\x4d\x16\xbd\x2f\x89\x44\xce\x90\xf3\x3c\x24\x47\x33\x63\x1e\x0e\x0a\xca\xaa\xc0\x0a\x50\xb2\xc5\x12\x56\x39\x60\x92\xa0\xe5\xf1\xf8\xdd\x9a\xd0\x47\x94\x15\x58\xca\x4d\x82\x49\x49\x19\x02\x42\x15\xc2\xb5\xca\x81\x29\x9a\x61\x45\x39\x4b\x2e\xbf\x5b\x74\x05\x6b\x8a\x32\xce\x14\xa6\x0c\x84\xee\xeb\x77\xee\x05\x25\xa6\x7d\xd1\x9d\xd9\x0c\xbf\x62\xf8\x71\x8b\x85\x9d\x7c\x11\x6a\xaa\x27\x28\x1e\x01\x3d\x51\x02\x28\xe3\x45\x5d\x32\x33\x0d\x30\x65\x07\x5b\x0c\x70\xe0\x02\x84\x6a\xc6\x5a\xac\xf3\x1f\x3b\x56\x28\x5e\x21\xac\x14\xce\x72\x20\x48\x23\x76\xc6\x9a\x81\x96\xf4\x6f\xff\x60\xcb\x7b\xe1\xcc\x5a\x6a\xc0\x72\xa9\xb1\x27\x7e\xb0\x55\xfe\xa3\x15\xef\xa1\x6b\xc6\x94\xb0\x2f\x5b\xe3\x16\xeb\x1d\x17\x65\x47\x4e\xbf\x26\x08\x67\x9a\xc1\x4d\x72\x38\x2c\x3f\x51\xf6\x70\x3c\x26\xa8\x04\x95\x73\xb2\x49\x2a\x2e\x1b\x65\x6d\xd2\xaf\x77\xff\x7c\x7f\xcf\x1f\x80\x7d\xb8\xbf\xf9\xe4\xac\x58\x2c\xd6\x94\x55\xb5\x42\xea\xb9\x82\x4d\x92\x53\x42\x80\x25\x88\xe1\x12\x36\x09\x25\x09\x7a\xc4\x45\x0d\x66\xf8\x3b\x5e\x8b\x0c\x96\x1f\xaf\x8f\xc7\x66\xd4\xae\xe9\x94\x15\x94\x01\xda\x51\x28\x48\x23\xb0\x58\x17\x78\x0b\xc5\xe5\xe1\xf0\xfd\x38\x25\xfa\x6f\xaa\x27\x4f\x8e\xc7\xf5\xca\x0a\x37\xba\x63\xa6\x51\xb2\x49\x5a\x25\x67\xa9\x7d\x1e\xd8\x7a\xff\x5c\x41\xc7\xda\xc5\x5a\x56\x98\x5d\x86\xfd\xbf\xe3\x12\xf4\xd4\xa6\xcb\xc3\x5a\x11\xfa\x38\x86\x51\xc0\x7f\x6a\x2a\x80\xa0\x2e\x58\x74\x38\xd0\x1d\x5a\xbe\x13\x22\xb5\x83\x81\x10\x5c\x1c\x0e\xc0\x48\x30\xb9\x01\xa7\x97\x6d\x93\x68\xab\x93\xcb\xa9\x6d\x62\xe0\x19\x91\x49\x4e\x34\x0b\x46\xc2\x11\x60\x9f\x07\x04\x58\x7b\x12\x7d\xde\xf8\x8e\x67\xb5\x44\x1e\x41\x0f\xaa\x7f\xfb\xd3\xc5\x05\xfa\x74\x7d\x75\x8b\x30\x23\xe8\xda\x3c\x5d\x5c\xb4\x7b\x88\xee\x10\x17\xa8\xd9\x0a\xd2\x08\xb4\xaf\x46\xa1\xd9\x59\x8b\xc3\x01\x7d\x9f\xed\xf6\x3f\x6f\xbc\x84\x11\x6f\xfb\x47\x76\x4f\x43\x70\x9f\xd9\x3b\xc8\x6a\x41\xd5\xf3\xad\xe0\x8a\x67\xbc\x98\x62\xb9\xdd\x70\xe3\xdc\x4a\x37\x4e\x5a\xb9\x81\x46\x38\xee\x9f\x48\x09\x05\x98\x63\x86\xbc\xf6\x85\xd7\x46\x44\xf0\x8a\xf0\x27\xd6\xb1\x60\x7a\xdf\x0e\x27\x77\xcb\x37\xd2\xd1\xac\xa5\xa6\x70\x39\x84\x1f\x4c\xd8\xf5\x72\xf0\x45\xe9\xad\x35\xaa\xe6\x37\x7b\x67\x7b\x1b\x7b\xbd\xb2\x47\x83\x68\xa6\xdd\xf2\x7a\x45\x27\x66\x29\x81\xd5\x5d\x0b\x16\x87\x83\xc0\x6c\x0f\x68\x30\xa5\x6c\xd7\x7b\xb0\xe6\x0a\xca\x04\x11\xac\xf0\x45\xbb\x73\xfd\x99\x3d\x1c\x96\xe3\xd6\x2e\xdc\x9a\x77\x0c\x0b\x25\xc2\xd7\xde\xdb\xd8\x61\xee\xb9\xac\xe0\xa4\xe6\xc6\x89\x4e\xed\x26\xd3\x3b\xb6\x81\xda\x53\x6a\x44\xdc\x32\xdb\xe7\x70\x65\x3f\x70\xa9\xf4\x11\xad\x0a\x9c\x41\xce\x0b\x02\x62\x93\xc0\x72\xbf\x44\xe5\x33\xe1\x25\xa6\x6c\x99\xf1\x32\x19\x1c\xdc\x97\x02\xab\xb8\x88\x00\x33\xbd\x71\x60\x46\xc4\x01\xb3\xcf\x21\xb0\x5b\x2e\x0c\xb0\x11\x64\x3f\xfd\xfd\xa7\x93\x80\xec\xd1\x0f\x3c\x4d\x67\xcd\xbb\x70\xfb\x28\x03\x98\x5b\xca\x48\x4a\xd8\x34\x52\x2f\x30\x02\xb6\x8b\xd6\x8b\x39\xc0\xcd\x6b\x88\xf9\x17\xca\xc8\xf5\xef\xe3\xcb\x99\xb1\xcd\x1d\x60\x91\xe5\x3f\x90\x6c\xe3\xd7\x56\x3f\xeb\xe5\xed\x4e\x5a\x79\x60\x39\x14\x15\xd2\xe7\x19\x09\x20\x27\x11\xa4\x5a\x1c\x84\x01\x52\x4d\x9d\x06\x0f\xc9\x53\x87\x1f\x20\x71\x8e\xaa\xc2\x52\x3e\x71\x11\xec\x97\xb3\x58\x6e\x07\x88\x5a\xda\x88\xcd\x61\xbc\x11\xee\xf2\xde\x36\xf6\x2c\x1f\x59\x8d\x5b\xd7\xd7\x73\x98\x5f\xc5\xb1\x9f\x67\x26\xd3\x73\x4e\x64\xc0\x62\x2d\x41\xa4\x3a\xf0\x9c\xb6\xa3\x15\x39\xc1\x5e\x2b\xe8\x98\xeb\x34\x84\x2c\x7d\x96\x20\x7e\xc1\x12\xc6\x77\x2d\xaf\x37\x5a\x40\x8e\x6d\xda\xe1\x11\x1e\x9c\xe1\xc0\x53\xf7\x8e\xf4\x75\xe4\x4c\x9f\x41\x58\xec\x70\x7b\x81\x39\x64\xb5\x87\xbb\x79\x1d\x12\x35\x75\xb8\x6b\x4a\x36\x7f\x91\x3f\xbc\x26\x5b\x67\x7b\xf4\x1d\x2d\x94\xce\x41\xa6\xc8\x70\xfd\x71\xaf\xee\x84\x1c\x13\xfe\x2d\x24\xe2\xbd\x69\x1d\x27\xe2\xcd\x5f\xdf\xf0\xed\xbf\x21\x53\xbf\x1a\xcb\x2b\x2e\xe9\x97\xab\x2c\xe3\x35\x53\x6f\xdf\x58\x96\xde\xbe\x3d\xeb\x6b\x16\x83\x6c\xe0\xa5\xa7\x80\x07\x52\x71\xf8\x81\xa8\x23\x21\x6c\x0b\xa9\xb8\xd2\x7d\x0d\x1f\x2f\x45\xa3\x94\xa0\xdb\x5a\x41\xaa\x77\xe0\x89\x1c\x61\x28\x7b\x02\xd9\x50\xc1\xe3\x1b\xe9\xe9\xa1\xf4\x12\x9f\x9d\xc0\x60\xed\xe7\x9b\x99\x76\xf4\x92\xd7\xe4\x6c\x2e\x5f\x67\x71\x35\xce\x53\x94\x23\x97\x73\xbd\x1a\x2e\x59\xcf\xde\x0a\x5e\x74\x2e\x3a\x2f\x3f\x00\xd8\x74\x4c\x60\xbc\xab\xfd\x36\x78\xad\x70\xb4\x9d\xbb\xc4\xb4\x98\x03\xd6\xc8\xcd\x45\x6a\x84\x07\x30\x6d\xeb\x04\xc6\x1b\x4c\x8b\x89\xc0\xdc\xa8\x4d\xb9\xb0\x48\x76\x3b\x20\xa0\x57\xf4\xca\x21\x7b\xd8\xf2\x2f\xc3\xcf\xdd\xe5\x5a\x2a\xc1\xd9\x7e\x92\x96\x47\x10\x74\xf7\x9c\xee\x05\xaf\xab\xb4\x84\x72\x0b\x42\xe6\xb4\x32\xfc\x38\xd5\xc9\x2f\xa0\x33\x00\x18\xde\x16\x70\x21\x9f\xa5\x49\xcb\x6c\x68\xd5\x98\xe4\xb8\xb3\x13\x58\x51\xe2\x72\x37\x85\xc5\x1e\xd4\x26\xf9\xb3\xed\x34\xd2\xe6\x53\x6f\xf8\xfc\x4d\x37\xbe\xb3\x0a\xc7\xa3\x19\x0f\x88\xfb\xd4\x9d\x9f\xb3\x99\x6c\xdc\x94\xc5\xba\x15\x02\xc6\xd5\xd8\x64\x84\x4a\xf3\xe4\x8b\x04\x66\x4f\xb4\x46\x7e\x45\x9c\x6b\x95\x63\x11\x87\x95\x90\x26\xd0\x37\xe1\xd6\x8c\xf0\xa3\x19\x35\x20\x79\x18\x80\x18\x74\x53\x11\x08\xaf\x37\x46\x2f\x9e\x5d\x44\x62\xd4\x19\xc0\x4f\x7d\x68\x03\xa9\x59\xa0\xc3\x2f\x6d\xd8\x36\x02\x3e\x1a\x79\xfc\xf7\x4d\xc6\x36\x7b\xbe\x97\xe6\x5b\x23\xdf\xea\x57\x63\x9d\x8e\x38\x5e\x8b\x02\x7b\xb6\xd2\x9a\x46\x92\x05\x2b\xd9\xba\x19\x57\xcc\x36\x66\xa5\x05\x1d\x2f\x19\x0c\xb9\xe9\x4c\x15\xf0\xd3\x6d\x1f\xe1\xe8\xc6\x74\x7f\x36\x75\xda\x31\xe7\x65\xbb\x29\x79\x05\x4a\x0c\xa0\x28\x15\x46\xa2\x65\x42\x83\x07\x92\x52\x66\x3d\xd5\xac\xb8\xbc\x83\xbf\x7d\x1f\x46\xe6\x93\x80\xeb\x08\xd4\xaf\x2d\x39\x4c\xf8\xf3\x39\x0e\x7d\xae\x47\x6f\x48\x93\x9a\x2e\x9d\x7f\xc6\x9d\xb9\xe7\xad\xf7\x8d\x6b\xb5\x07\x1e\xbd\xf5\xd1\xcd\x37\x4f\x7e\x64\x3a\x69\x9e\xf6\xd3\xf1\x5a\x5b\x98\xc1\xf8\xb7\x6e\x6d\xf9\xee\xe6\x7e\x50\x51\x6e\x19\xd7\xbd\x91\xf2\xb1\x51\x3e\xa3\x7c\x7c\x46\x55\xb8\x54\x55\xaa\x1f\xcf\xaa\x06\x6b\x42\xcf\x2c\x00\x37\xf3\xf8\xc2\x6f\xdb\xd0\x0b\x43\x6a\x95\xeb\xfd\x3c\x4c\x1a\xa7\xab\xbd\x56\xe7\xdb\x56\x77\x6f\xee\x6f\xf5\x34\xe7\x56\x75\x5d\x45\xf7\xff\x5d\xcd\x35\x74\xc7\x4b\xba\x5a\x64\x46\x59\xb7\x1d\xa9\xbb\x92\xb1\x02\xef\x6b\x17\x70\xcd\x84\xf1\x2a\xae\x16\x99\x51\xc9\x6d\x47\xea\x62\x89\xd5\x74\x5f\x2b\x7d\x2f\x0a\xfe\x04\x24\xb5\xd1\x8a\x8c\x44\xfd\x3d\xc1\x13\x61\x7f\x4f\xda\xfb\xc4\x7e\x73\xef\xc4\xd9\xee\x6b\xdb\x1b\xfe\xa6\x14\x94\x0b\x67\x9b\x39\x5e\x27\x0c\xa8\x1a\xf3\x91\xb7\x57\x37\xd3\x2e\xf2\xf6\xea\x26\xe2\x21\xb5\xea\x0b\x2a\x48\x15\x2e\x53\x09\xe2\x91\x66\xa7\xd2\xe9\x81\xe4\x89\xdf\x0a\xfa\xe2\xfe\x77\x83\x41\x7b\xff\x67\x2f\xd3\xe7\x7f\xc6\x8c\x6f\xbb\x31\x2e\x7f\xa3\xea\x43\xbd\x9d\xa6\xd3\xf6\x47\x18\x75\x03\xbc\x80\xd4\x3d\x55\x79\xbd\x4d\x71\x45\x53\x60\xa4\xe2\x94\x45\x4e\xec\x98\x70\x9c\xda\x31\x0d\x1f\x2e\x8e\x75\xf5\x36\xfd\xed\xc7\x77\xae\x6b\x3c\x7a\xca\x95\xaa\xe4\xcf\xab\x15\xae\xa8\x33\x6e\x99\xf1\x72\x75\xee\x5a\x4c\xc4\x4e\x6d\xfa\xd6\x0f\x02\x72\x4a\x60\xf8\x13\xfa\xc9\xf0\x6a\x66\x70\x65\x13\xd8\x54\x15\x32\x1a\x54\x05\x21\x95\x16\x1e\x8f\xa1\xbc\xed\x9f\x25\xdc\x7f\xba\x9b\x0c\x9e\xc2\x5b\x05\x53\x57\x0c\x72\x2c\x2f\x54\x21\x47\x6e\x18\x18\x9a\x3e\x60\x69\xe6\xf8\xb6\xfc\xc8\x07\x5a\x69\x76\x52\x5b\x57\x98\x4f\x92\x51\x74\x4a\x71\xb2\xee\x1e\x68\xf5\x2f\x23\xf8\x42\xc2\x26\xee\x9d\xbc\x16\x15\x38\x53\xf4\x11\x2b\x88\x87\xdf\x01\x09\x54\xa6\x46\x0b\x4e\x50\xf0\x51\x5e\x19\xb1\xe9\x78\xfb\x0f\xc1\x00\x81\x1d\xae\x0b\xd5\xc6\xc7\x73\x49\x70\x8a\x27\x59\xb8\xb6\x72\x2f\x64\xa1\x0f\x7f\x5b\x2b\xc5\x59\x70\x6d\x0c\x80\x21\xdb\x1c\xc9\x58\x2b\x82\x95\xfd\x9e\x59\xd1\x30\x3d\xec\xfa\xaa\xf7\xb4\x80\x89\x04\xb1\xa6\x48\x7f\x17\x9c\x0d\x04\x0a\x50\x70\xe1\xa6\xb6\xb1\x71\x2d\x0a\xe3\x85\xdd\xb5\xad\x95\x95\x71\x9d\xda\xb1\xf7\xaf\x5c\x4d\x2f\x8f\x51\xec\x87\xd6\x61\x5c\xdd\xed\x5b\xaf\x76\x5c\x94\xf6\xa5\x6d\x6f\x9e\xfc\x83\xfb\xef\xab\x9a\xfd\x2c\xa8\xc4\x45\x81\xb6\x58\xd2\xcc\xc1\x43\x25\x27\xb8\x18\xb9\xcb\xa7\xb3\x8d\xee\x05\xb9\x36\x21\x51\x02\xcb\x3c\xcc\x46\xe2\x28\x53\x7b\xf3\x8b\xaa\x02\xcc\x3d\xba\xc6\xd6\xce\x8c\xdd\x3b\x7d\xeb\xea\x04\x6d\x76\x40\x02\x32\x6b\xa2\x34\x3f\xe6\xe0\x36\xa0\xd3\x30\x30\x53\x7b\xef\x4e\xba\x5b\x8e\x56\x65\xa0\xb1\xe3\xdc\x54\xb2\xb4\xcc\xff\x02\x00\x00\xff\xff\xac\x5c\xb2\x0b\x25\x29\x00\x00" func adminAuthEditTmplBytes() ([]byte, error) { return bindataRead( @@ -232,8 +232,8 @@ func adminAuthEditTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin/auth/edit.tmpl", size: 10544, mode: os.FileMode(0644), modTime: time.Unix(1571173927, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa0, 0xaa, 0x22, 0x7a, 0x97, 0x4a, 0x99, 0xff, 0xbb, 0x3c, 0x8, 0xc9, 0x28, 0xc4, 0x98, 0xdd, 0x74, 0xff, 0x30, 0xd6, 0x60, 0x2c, 0x39, 0x7c, 0xc8, 0x1d, 0x1, 0xa, 0x24, 0xaf, 0x80}} + info := bindataFileInfo{name: "admin/auth/edit.tmpl", size: 10533, mode: os.FileMode(0644), modTime: time.Unix(1586607496, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x7e, 0x85, 0x71, 0x56, 0xd, 0x56, 0xd7, 0x5d, 0x60, 0xf4, 0xa5, 0xf, 0xcb, 0xf, 0xe4, 0x61, 0xe5, 0x35, 0xfd, 0x45, 0x44, 0xd7, 0x3b, 0x77, 0xd3, 0x38, 0x53, 0xd8, 0x8b, 0x2c, 0xa6}} return a, nil } @@ -317,7 +317,7 @@ func adminBaseSearchTmpl() (*asset, error) { return a, nil } -var _adminConfigTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5c\x4f\x73\xea\x38\x90\x3f\x67\x3e\x85\x2b\xb5\xa7\xa9\x8d\x53\x5b\x35\x87\x3d\xf0\xa6\x8a\x21\x2f\xc9\xec\x23\x33\x54\xe0\xcd\x1c\x55\xc2\x6a\x8c\x36\xb2\xe4\x91\x64\x42\x5e\x2a\xdf\x7d\x4b\x7f\x0c\x06\x6c\x63\x11\x33\xcb\x29\x01\xab\xfb\xf7\x53\xab\xd5\x92\x5a\x6d\xde\xdf\x35\x64\x39\xc3\x1a\xa2\xeb\x39\x56\x70\xbb\x04\x4c\xae\xa3\xf8\xe3\xe3\xa7\x01\xa1\xab\x28\x61\x58\xa9\x2f\xd7\x98\x64\x94\x47\x89\xe0\x0b\x9a\x5e\xff\xfa\xd3\x55\xf5\x59\x41\xcd\x03\x8d\x29\x07\x69\x9e\xed\x3f\x4c\x25\x25\xf6\xfb\xab\x2a\x98\xd5\x78\xcb\xf1\x6a\x8e\xa5\xc3\xbb\xda\x95\xd4\xaf\xc0\x56\x10\xbd\x52\x02\x51\x22\x58\x91\x59\x7c\x0d\x5c\x3b\x65\x57\x07\xd4\x31\x03\xa9\x9d\x2e\xdf\xe0\xf6\xe7\x68\x0a\x72\x05\x32\x52\xa0\x35\xe5\xa9\x8a\x7e\xbe\x75\x50\x57\x83\xe5\x2f\x15\x92\x5a\xe4\x11\xd6\x1a\x27\x4b\x20\x91\xb1\x81\xef\x8b\x55\x13\xd3\xff\xfa\x6f\x1e\xcf\xa4\x67\x1d\x3b\x3b\xc4\xca\xaa\x46\xde\x2a\xa5\xda\xdb\xe5\x2f\x4e\x70\xcf\x0c\x1b\xed\x1a\xcf\x19\x44\x0a\xd2\x6c\xdb\x97\xab\x01\x61\x65\x5b\xc2\x6e\x96\x42\xd2\x1f\xc6\xa6\x2c\xb2\x88\x37\x3b\xdf\x95\x32\x57\x03\xa2\x7f\x6d\x64\x37\x97\x98\x13\xc4\x71\x06\xd7\x1f\x1f\x83\x5b\xa2\xb7\x52\xc4\x48\x0d\xf3\x3c\xfe\xcd\xb4\xf9\x03\x67\x60\x5b\x90\x4e\x7a\x65\xc1\x51\xa1\x40\x36\x6b\x7d\x2e\xf8\x77\x05\x32\x50\x67\x26\x48\x0b\xd3\xe7\x82\x3f\x09\xb2\xe1\xb9\x69\xb0\x63\x62\x42\x57\xd4\x0e\xdc\xe0\x96\xd0\x55\xa5\x55\x0b\xb4\x1b\xc4\x18\xd6\x1a\x24\xc7\x0c\x15\x92\xd5\xb3\x70\x8e\x14\x7f\xf5\x0d\xbf\x3f\x8f\x03\x3a\xe8\x51\x88\xc8\x30\xe5\xad\xfa\xef\x6c\x93\x70\xd5\xb9\x14\x5a\x24\xa2\x9d\xfc\xc4\x37\x0a\x57\xbf\xd4\x3a\x47\x98\x90\x86\x61\xf7\xfa\x1f\x67\xb3\xc9\x90\x90\x90\xa1\xaf\xea\xcf\x85\xd4\x47\xf5\x4f\x84\xd4\xe1\xfa\x13\x90\x1a\x2d\x28\xab\x73\xb1\x41\x22\x08\x54\x50\x46\x20\xf5\x3d\x65\xd6\xd9\xec\xa3\x50\xb0\x17\x78\xeb\x8a\xf5\x0d\xde\x3e\x05\xa5\x99\x42\x19\xe5\x68\x05\x52\x51\xd1\xee\x5a\xb3\xf1\xf4\x89\xf2\xbf\x5c\xcb\x70\x13\x16\x9c\xae\x91\x12\xc9\x0b\x68\x94\x83\xcc\xa8\x6a\x40\xdc\xef\xe3\x77\x4e\xd7\x53\x2b\x37\xd9\x88\x9d\xdc\x61\x26\x12\xcc\x90\x14\x42\x1f\x9d\xaa\x63\xd3\xf4\x59\x08\x5d\x99\xab\xbd\x07\x0e\xb1\x58\x30\xca\xa1\x29\x7c\x0d\x68\x09\xb3\xc0\xd1\x02\xbf\xbf\xd3\x45\x54\xf2\xfb\xd3\x89\xba\xb8\x76\x93\x2c\x21\x79\x79\x7f\x07\x4e\x3e\x3e\x6e\xd4\x3f\x05\x96\x70\x23\x0c\x23\x1a\x6c\x23\x42\x95\x59\x63\x90\x14\x85\x06\x89\x98\x48\x03\x99\xdd\x39\x05\xcf\x56\x7e\x2c\xd2\x7e\xe9\x01\xb7\xec\xd2\x1f\x34\x0f\xe4\xf5\xd5\x4a\x3e\xfc\xa0\x79\x17\x46\xbd\x8f\x35\xce\x73\x44\xb0\xc6\x28\xc7\x7a\xd9\xc1\xf1\x87\x79\x7e\x87\x35\x9e\x60\xbd\xfc\x84\xbf\x63\x82\xb0\x52\xa0\x15\x5a\x48\x91\x21\x42\xd5\x4b\xa0\xd9\xc6\x02\x93\xa1\x55\x71\x2f\x45\x76\x47\xd5\xcb\xff\x8b\xf9\x18\xe6\x84\xf2\xb4\x61\xde\xee\x1b\x6f\xec\x5a\xfb\xb9\xbb\x6f\xbb\xc1\x2d\x61\x7e\x9b\x55\xe1\xe1\x76\x7c\xd3\xc7\xf3\x6c\xf7\xd4\xf2\x52\xf7\x7a\x4a\x2d\xfd\xac\x22\x1d\x5d\x83\x0b\x1d\xc5\xd3\xe9\x63\x39\xd5\x49\xf7\x29\xde\x24\xef\x1f\x1f\x67\x5a\xbb\x0b\xda\xc4\x6e\xa3\xb3\x66\x0f\x74\x5c\x6d\xcd\xee\xa1\xaa\xf4\x70\xdf\x70\x5c\xa5\x5d\x66\x6a\x26\xfb\x9e\xc3\x4e\x1f\x63\xb3\xcc\x34\xce\xf3\xe3\x40\x2f\xf0\x96\x02\xef\x06\xf5\xcd\xb6\xfd\x1c\x18\xd2\xa0\x3a\xf6\xec\x1b\xbc\xcd\x40\x7d\xa6\x73\x19\xe5\x34\x2b\x32\x64\x70\x15\xfd\x01\xc8\x3a\x5a\x2d\x70\x6d\x10\x9b\x3e\xc6\x4f\x4e\xc5\x37\x78\x9b\xd2\x1f\x30\x32\xf2\xdd\x1d\x36\x9c\xa1\x3a\x6a\x95\x5d\x42\xea\x44\xcb\x48\x78\x95\x54\x03\xc2\x85\xb6\x53\x1e\x88\xa1\xa0\x10\xd6\x48\x69\x5c\xef\xce\x8d\x36\x7a\x76\xca\x86\x1b\x5d\xdf\xe0\x4d\x0d\xf5\xd4\x28\x0a\x88\xf7\x1d\x03\xfe\xf1\xce\xd9\x1e\xa0\x79\x41\x99\xa6\x1c\xb9\x35\x20\xa8\x43\x96\xf9\x6f\x4e\xde\x2d\x0a\x7d\x8e\x39\xa3\x4a\x03\x47\x4b\xa1\xda\xa2\xc6\xd8\xb6\x7a\x14\x2a\x38\x76\x78\xfd\x47\xa2\x92\xd3\x7f\x4a\x6c\x2a\xb3\x0f\x34\x5f\x82\x3c\xee\xb0\xce\x80\x23\xd7\xba\xd6\x5d\xbd\x51\x8f\xae\xaf\xcf\x90\x0b\x45\xb5\x90\x6f\x67\x59\x66\x25\xe4\xe2\x52\xd7\x59\xc3\xad\x71\x51\xd8\x31\xf9\xd6\x48\x76\x69\x08\xdf\xfe\x59\x28\x95\x48\x9a\x6b\xa4\xdf\xf2\xd6\xb3\x64\x05\x6c\x6a\x25\x66\x6f\xf9\x09\x47\x4a\x0b\x89\xb9\xa2\x28\x59\x62\xad\xa0\xee\x2c\x5e\xfa\x97\x9b\xa5\x15\xe0\xe1\x1f\xd3\xdf\x47\x4b\x2c\x15\xe8\xed\x56\xe0\x6a\x97\xdc\x90\x2b\x7a\xd0\xe6\xfd\x1d\x98\x82\x8a\xcc\x80\x36\x53\xe4\x42\xa3\x92\x18\xad\x90\xa9\x78\xee\x55\x58\x7f\x17\x42\x26\x80\x72\x49\x57\x58\x77\x3e\xc0\x55\xfa\x74\x6f\xe4\x27\x4e\xbc\xa7\x63\x92\xe5\x95\xe1\x35\x4a\x24\x60\x4d\x05\x47\x8c\x66\xb4\x21\x33\x52\xa1\xf2\x84\xd7\x23\x2f\x31\x36\x02\x21\x09\x38\x03\x99\x4b\x58\x80\x94\x40\x10\xa3\x09\x70\x75\xb0\x0c\x3a\xc8\xff\x11\x94\xef\x98\x60\x52\xca\x8d\xbd\x58\x74\xfd\x9f\xd1\x75\x28\x7a\x79\x68\xb5\x99\xa0\xb4\xb6\xbb\xc7\xc6\xc2\xef\x45\x1f\x67\xb3\xc9\x03\xed\xb4\xe6\x75\x25\xe7\x8f\xac\x2e\xf9\x60\xe6\x3e\xca\x68\x2a\xad\xa9\x4f\xe0\xe9\x8e\xb1\x36\x3d\x61\xb6\x55\x4f\xa5\xaa\x33\x30\x96\xf8\xd5\xa6\xa2\x90\x04\x4e\x40\x06\xa5\x29\x0e\x18\x3f\xe3\xd7\x7b\xca\xe0\xd9\xaa\xea\x31\x6d\x61\x09\x27\x22\xcb\xa8\x39\xe4\x82\x4e\xec\x41\x2b\x29\xa4\x04\x9e\xbc\x1d\xf5\xfb\x91\x93\xbc\x37\x82\xa3\xad\x5c\xff\x29\x1f\x67\x58\x62\x50\x63\x9b\xf4\x79\x95\x38\x47\xb0\xd6\xc0\x15\x15\xbc\x6e\xba\xd4\xc5\xe8\xaf\x4e\xc3\x98\x72\xf8\x5b\xe2\xfc\xeb\x46\xfe\xc4\x90\xed\x19\xe5\x12\x56\x14\x5e\xed\xb0\xdb\x21\x37\x63\x1d\xc8\x69\xb2\xd5\x61\x46\xda\x8c\xf1\x3e\xab\x9e\xcd\x59\xe4\x4c\x60\x12\x78\x7a\xad\x32\xff\xee\x14\x38\x0f\x0d\x38\xc6\x76\xa6\xa6\x21\xcb\x43\xd6\x7b\x4f\x68\x06\x59\x7e\x5a\xe6\xa7\x0a\x8e\x19\x13\xaf\x40\xec\x16\xa0\xeb\x58\x7a\x02\x43\x27\x6a\xf6\x02\xa7\x7a\x96\x27\xe1\xbc\x09\xaf\xed\xd9\xe8\xe8\x74\xf4\xf0\xd6\x7f\xf0\xda\x1c\x8f\x3e\x3e\xa2\xa7\xdf\x4e\x42\x36\xa0\x06\xbd\x7e\x25\xaa\x41\x7d\xc2\x6b\x03\xac\x76\x56\x9f\x96\xcd\xec\x1d\xd6\x78\x8e\x15\x9c\x65\x2b\x4b\xe6\x97\xba\x91\x25\xf3\xb8\x61\x53\xf9\xfe\x1e\x97\x36\x89\xcb\x6d\x64\xc7\x81\x23\xf3\xb8\xe6\x34\xb5\xaf\xf4\xf0\x2c\x75\x4c\x69\xf3\x1d\xe6\x46\x69\xe0\x1d\x26\x99\xc7\xcd\x57\x98\x1b\xa5\x81\x97\x98\x64\x1e\x2b\xc5\x5a\xee\x31\x37\x8a\xa7\xd3\xb1\x5b\x3d\xa3\x2e\xca\xd0\x12\x58\x5e\x92\xed\x4c\xe5\x58\xc0\xda\x90\xd9\x89\x51\xad\x84\xec\xbe\xa7\x8e\x4c\x5b\x32\x16\x92\x42\x52\x7d\x9e\xa3\xa2\xf2\xca\x2f\x75\x96\x95\xfc\x62\x26\x52\xca\x91\x84\x0c\xb2\x39\x48\x44\xf0\x5b\x43\x40\x2b\xcd\x15\x8f\x8d\xc4\xb3\x17\xb8\xc3\x6f\x2a\xe8\xbe\xce\x2b\x49\x84\x78\xa1\xb0\xc5\x6d\x9e\x48\x1b\xdc\x91\x15\x29\x81\x03\xa7\xd5\x3e\xb0\x99\x63\x9d\x31\xbf\xfb\xc6\x9f\xc0\xb3\x9f\x03\x6e\xe1\x76\xf0\xed\xc7\xfe\x2e\xe2\xbc\xee\xcd\xc1\xc1\x38\x80\xd2\x58\x17\x0a\x39\xb6\xc1\x34\xcb\x53\x43\x4a\xf9\xd4\x2a\x72\xbc\xfb\x66\x5c\x43\xb5\x8b\xe3\x1c\xf0\x3a\xf0\x9d\x96\x28\xf1\x35\xc3\x94\x9d\x25\x44\x80\xd1\x7c\xa9\xf1\xc1\x92\x0b\xdd\xfa\x5a\x5b\x85\x6f\x77\x6b\x85\x3b\x25\x1b\x1d\x4b\x55\xcc\xff\x17\x12\x8d\x72\x09\x0b\xba\x6e\x4d\x37\x3a\x90\xa9\x13\x98\xd8\xf6\x27\xe4\xc7\x1d\x6c\x4b\x7a\xd6\xc1\x84\xa6\x66\x9d\xda\x85\x14\x59\xab\xda\x7b\x29\xb2\x70\xb5\x35\x9b\x8a\x5d\xb5\xd5\x2d\x45\x9f\xf9\x76\x07\xbf\x49\xa1\x00\x13\x9d\x33\xed\x8e\x58\x99\x3a\xf9\x3a\xfe\xb3\xaf\x24\xbb\x1f\x40\x60\xc2\x26\xd9\x6b\x62\xc8\x4e\x46\x71\xc7\x43\x0d\x8f\x47\x2f\x54\x49\x0d\x5e\x6d\x87\xbd\xbe\xc1\x41\x32\xf1\x84\x6c\xe2\x5e\x3a\xf1\xea\x5c\xa3\xa5\x5e\x68\x8e\x56\x20\xe9\x62\x3f\xc5\x71\x6c\xb0\xa6\x2f\x34\xff\xcb\x0a\xf6\x3b\x56\x85\x02\x94\x80\xd4\x74\x41\x93\xc3\x6c\xe8\x31\x56\xdf\x15\x8c\xb6\xc2\xfd\x32\x6b\x2a\xdf\xaa\x0b\x3c\xad\xe5\x5b\x5d\xc0\x1a\xca\xb7\xea\xb0\xea\xcb\xb7\xfa\xf7\x15\x33\x32\x39\xc3\x94\x23\x0d\xeb\xee\xd7\x82\x9b\x81\x99\x18\xd9\x19\xac\x03\x92\xa2\x5d\x68\x61\x42\x2a\xb4\x10\x66\xa1\xd4\x86\x84\x6c\xa8\x0d\xd9\x59\xae\x29\x17\x42\x66\x95\x76\xe6\xe3\x75\x84\x13\x4d\x05\xff\x72\xfd\xfe\x3e\xcc\xf3\x69\x31\xb7\x55\x26\xb7\xae\x26\xd9\xf5\xf0\xd6\xde\x90\x1b\x92\xd7\x51\x06\x7a\x29\xc8\x97\xeb\xdc\x2c\x46\xd5\x38\x11\x8f\xa6\xcf\xf7\x33\xf1\x02\xfc\x71\xf6\x34\xae\xde\x61\x54\xc8\x51\xce\x28\x87\x68\x41\x81\x91\xa8\xa0\x11\x83\x45\x55\xcb\x7e\x47\x28\xcf\x8b\x9d\xe7\x57\x03\xfb\x55\x64\x0e\xec\x5f\xae\xc1\x51\x32\x71\x6f\xf3\x41\xc2\x3f\x05\x95\x40\xaa\x4a\x9d\x15\x9a\x3e\xce\x0b\xad\x05\xdf\x29\xd2\x06\xe0\x91\xfb\xfa\x3a\xa2\xe4\xcb\xb5\xe9\xff\x8d\xd1\x7f\x33\xd7\xfc\xfa\x68\x30\x03\x4e\xd0\xd6\x64\xc6\x0b\x9c\xb2\xad\x27\xdc\x1a\xd3\x87\x5e\x36\x0e\x0b\xbd\x04\xae\x4d\x48\xa1\x82\x9f\x65\x8b\x88\x0b\x7d\xb1\x85\x3d\x86\x5b\x6c\x9c\x75\x85\x35\x20\x13\x62\x10\xa3\xab\xa6\x74\x98\x31\x56\x3c\xf4\xad\x47\x82\xc0\xd8\xb4\xdd\x4b\x33\x68\x21\x58\x2c\xf1\x2b\xca\x28\x2f\x74\xa9\xaa\xdb\x21\xc1\xd2\x91\xa0\x40\xa3\x1c\x2b\xf5\x2a\x24\xe9\x46\xea\xd9\xc8\x4c\xbc\xc8\x19\x99\xd9\x79\x80\x2a\x9b\x7e\xb9\xbf\xcd\x6b\x0c\x48\x9e\xa7\xd5\x60\x83\xd3\xc8\xc9\xf7\x79\x33\xb3\xc3\x52\xd1\x94\x23\xca\xd1\x8a\xc2\xeb\x29\x24\xa7\x34\xe5\x94\xff\x45\xe1\xb5\x4f\x76\x9b\xda\x51\x48\xa9\xd2\x61\x57\x5c\x96\x5d\x59\x3b\x5a\x91\xef\x93\x5f\x79\xaf\x55\x51\x8f\x12\x9c\xeb\x64\x89\x83\x68\xfa\x1b\xad\x8a\x9a\x91\xd3\xf2\xef\x96\x46\xee\xf6\x69\x05\xd2\x2c\xf4\x52\xac\xdf\x6c\x4d\xd0\x36\xf2\x9d\xd4\x37\xab\x6e\x62\xb4\xed\x86\xd1\xb3\x8c\xc7\x1e\x77\x71\xba\x07\xd5\xd2\x17\xe7\x72\xa8\x36\xab\x23\xbf\x84\xb4\xe4\x51\xfd\x8c\x6c\x32\xf5\xa3\x55\x10\x58\xc1\x6a\x4e\x89\x67\x59\xea\xcc\xf9\xf4\x52\x97\x3a\xc3\xad\xf4\x26\x17\xc0\xb9\xd0\x87\x67\xa3\x46\xd7\x31\x46\xf3\xae\x63\xc3\xf7\x1f\xc2\x1f\x45\x42\xfc\xa5\x35\x93\x6d\x5f\x5c\x38\x53\x22\xdb\xea\xbe\xd4\xa1\x29\xe9\xe5\x52\xb8\x08\xd7\x90\x0a\xb4\xad\xe2\x89\x6f\x15\x94\xc8\x75\xa2\x25\xc0\xd6\x10\x2d\x55\xe2\xbb\x68\x76\xb5\x4e\x4f\x29\xb3\x77\x7a\x3a\x64\x3a\x5d\xc3\x86\xec\x66\x37\x94\xa5\xd6\xb9\x42\x82\xb3\xce\x6e\xbd\x0b\xdb\x73\x92\xda\xa9\x4e\x13\x44\xb9\x06\xb9\xc2\x8d\xef\xd3\xb8\x86\x0f\xa3\xdf\x7d\xbb\xa6\x9d\x9b\x82\x44\x70\x12\xb4\x73\x2b\x59\x64\x78\x8d\x18\x5d\x00\xd2\xf4\xd8\x10\x3c\xe1\xf5\x98\x2e\x60\x46\xb3\xfd\x3b\xb4\x3e\x88\x24\x4a\x2e\xba\x24\xbe\xfd\xb8\x4c\x9f\xef\xc3\x13\xde\x23\x33\x7f\xcf\x12\x4a\x12\xd3\xfa\x52\x03\x89\x25\x17\x63\x82\x73\xdd\x14\x45\xac\x65\xe2\xa1\x6b\x12\x30\x7a\x4e\x75\xbb\x1f\x3b\xdd\x67\xf0\x61\x07\xde\x70\xf9\x5d\x1e\x80\xdd\x7c\xb6\x1c\x46\x82\xf3\x6a\xb6\xa0\x0c\x6a\x95\x87\x3e\x8e\x6d\x85\xcf\x57\x25\xd9\x76\xfc\xb6\x0e\x62\x9c\xe2\x3c\x47\xef\x8d\xfa\x4b\xf5\xd8\x2d\xc3\xd0\x7b\x9a\xad\xe9\x7a\xae\x4d\xaa\x50\x3a\x76\xc9\x5f\xe1\x70\x5a\x29\x52\x05\xab\x73\x25\x52\x05\xf4\x73\x25\x48\x15\xf0\xf6\xe2\xa3\x0a\xe2\x49\x15\x47\x7b\x40\x2d\x05\x47\xbb\x48\x41\x95\x46\xcf\xc0\xe0\x5c\x85\x46\xd2\xe9\xbe\xd4\x49\xe4\xe9\x7d\x62\x32\x79\xe3\x9d\x6f\x52\xd5\x50\x0c\x28\xbd\x3b\x20\xf7\xd9\xda\xbb\x03\x32\xc7\xaa\xef\x0e\x18\x9c\x58\x7a\x57\x0b\xdc\x5a\x81\x57\x87\x1c\x34\x31\x26\x34\xd1\x85\x3c\xcf\xc4\xc8\x9d\xee\x4b\x9d\x18\x9e\x5e\x8c\x57\x58\x63\x89\x5c\xd1\xe3\xd1\x5a\x53\x6f\xb0\x78\x68\xa5\x5c\xe1\xe3\x69\xe1\xbd\xc4\xb7\xef\xdc\x9c\x46\x62\x5b\x82\xd9\x1f\x9d\x54\x7a\x2e\x4a\x14\x32\x69\x7d\xf5\xa5\xa4\xf1\xe0\x45\xa6\x56\xe2\x74\xe8\x32\xfd\x59\x52\xe8\x1a\xa0\x4a\x1e\x3e\xfb\x59\xd2\xe9\x29\x3a\x95\xec\x7c\x7a\x64\x01\x04\x24\xd6\x40\xd0\x69\x24\x5d\xe8\xbc\x2f\xb5\x0c\xc3\xa8\xb6\x4c\xe5\xc7\xd9\x6c\x72\x96\x79\x6c\x5f\x0a\xb9\xd0\x49\x6c\xb8\xc5\x38\x49\x40\x29\x43\x51\x4b\xc1\x90\x5d\x3b\x90\x90\x34\xad\xfd\xb9\x97\xdd\x23\x81\xb1\x5a\x3c\xb4\x0a\x46\x4e\xde\x2e\x1f\x7f\x5a\xe9\xba\x63\xc2\x11\x81\xcb\x38\x3a\x3c\x51\x29\xc5\x79\xd2\x98\x99\x55\x7d\xa9\xfe\xe0\xd8\xc5\x04\x16\xb8\x60\xfa\x48\x6a\xc5\x59\x29\xbe\x73\x8d\x8f\x1d\x4d\x97\xa2\x90\xaa\x73\xed\xed\xdf\x30\x5f\x0a\xf1\x72\x96\x21\x78\x75\xba\x2f\x75\x0c\x3c\xbd\xf8\xe8\xde\xcd\xdb\x28\x3e\x71\xa7\x56\xe2\x10\x60\x74\x05\xd2\xe6\xae\x44\xd1\x50\x02\x5f\x62\xdd\xb9\xc6\x33\xd7\xb6\xc7\x34\x44\xc9\xc6\x56\x16\x69\xa6\xea\xab\x8b\x1a\x97\x87\x92\xdf\xf4\x85\xe6\xb3\xf1\x34\xb0\xc2\xa8\xc5\x11\x1f\xe8\x79\xd2\x07\x29\xbd\xd8\xbc\x41\x4a\xf5\x66\x2f\x41\xe8\x62\x81\x96\x34\x5d\x32\x9a\x2e\x3b\xbf\xd7\xf8\x40\x75\xb9\x9b\xb8\xa3\x8b\xc5\x63\x29\xdf\xd3\x96\xc2\x10\x34\x7b\x7b\x4b\x8e\x51\xde\xb4\xc1\x37\x34\x9e\xf0\xda\x50\x18\x9b\x56\x01\xee\x78\x00\x81\x92\x25\x96\x38\xd1\x87\xef\xab\xd7\x83\xd9\x77\x85\x4f\x05\x6c\x39\xb4\x54\x60\x0e\x4f\x2a\xc7\x21\xd2\x04\x61\x99\xb6\x86\x15\x83\xf0\x30\x1a\xca\xf4\x7c\x6f\xcf\xd9\xce\xda\x37\x47\xa1\x3d\xec\x18\x2e\x3e\xd6\xc4\xee\x55\xd3\x3e\xb3\xe6\x8e\x86\x5d\x8f\x03\x58\x98\xf6\x3d\x93\x48\x98\xe0\x01\x96\x18\x99\xe6\x3d\x53\xc8\x0b\xc6\xba\x33\x98\x14\xac\xcf\x1c\xb4\xf7\xcc\xce\xf0\x0f\xa3\x20\xf0\xfa\xf0\xfe\xf9\x18\xce\x44\x1a\x1c\xc3\x99\x48\x6f\x9c\xcc\xbf\x15\xce\x0d\x4b\xf7\x1a\x75\x97\x1f\x7f\x18\x8b\xb4\xed\xf7\x80\x9c\x29\x7f\xea\x1e\x08\x06\xae\x97\xdb\x66\x2b\x90\x6f\xd1\x1c\x2b\x9a\x38\x03\x6c\x3a\xf1\xfe\x2e\x31\x4f\x21\x32\x14\x52\xfb\x43\x1f\xe5\x16\x7e\xa0\xe5\xaf\xdb\x13\x80\x36\xee\xf0\x1f\x2d\x9d\xdd\xbc\xc5\xa6\xc9\xbe\x58\x5c\xfe\x10\x67\xe5\x51\x55\xfb\xe0\x36\x0c\x4a\xe4\x7a\xf3\xf2\xf4\x3e\xda\x20\x97\xb0\xb5\xeb\xc1\x1d\xaf\x7d\xba\xc3\xa3\x82\xbd\x57\x62\x68\x0d\xb5\xe3\xc1\xd5\xff\xca\x7f\xfc\x5f\xff\xe7\xe0\x27\x66\x17\x42\x68\xf0\xbf\x57\xfb\x7f\x01\x00\x00\xff\xff\x32\x97\x4b\x0b\x3b\x57\x00\x00" +var _adminConfigTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5c\x4d\x6f\xe3\x38\x93\x3e\x67\x7e\x85\x60\xec\xe9\xc5\x46\xc1\x02\xef\x61\x0f\xee\x01\x3c\x4e\x27\x99\x6d\x67\xda\x88\xdd\x33\x47\x82\x16\xcb\x32\x37\x14\xa9\x21\x29\xc7\xee\x20\xff\x7d\x41\x52\xb2\x65\x5b\x5f\x74\xe4\x59\x9f\xba\x1d\xb1\xea\x79\x58\x2c\x16\xc9\x62\x49\xef\xef\x1a\x92\x94\x61\x0d\xc1\x60\x81\x15\xdc\xad\x00\x93\x41\x10\x7e\x7c\xfc\x32\x24\x74\x1d\x44\x0c\x2b\xf5\x65\x80\x49\x42\x79\x10\x09\xbe\xa4\xf1\xe0\xd7\x5f\x6e\xca\xcf\x32\x6a\x1e\x68\x4c\x39\x48\xf3\xec\xf8\x61\x2c\x29\xb1\x7f\xbf\x29\x83\x59\x8d\x77\x1c\xaf\x17\x58\x3a\xbc\x9b\x43\x49\xfd\x06\x6c\x0d\xc1\x1b\x25\x10\x44\x82\x65\x89\xc5\xd7\xc0\xb5\x53\x76\x73\x42\x1d\x33\x90\xda\xe9\xca\x1b\xdc\xfd\x2b\x98\x81\x5c\x83\x0c\x14\x68\x4d\x79\xac\x82\x7f\xdd\x39\xa8\x9b\xe1\xea\xdf\x25\x92\x5a\xa4\x01\xd6\x1a\x47\x2b\x20\x81\xb1\x41\xde\x17\xab\x26\xa4\xff\xf5\xdf\x3c\x9c\xcb\x9c\x75\xe8\xec\x10\x2a\xab\x1a\xe5\x56\x29\xd4\xde\xad\xfe\xed\x04\x8f\xcc\xb0\xd3\xae\xf1\x82\x41\xa0\x20\x4e\xf6\x7d\xb9\x19\x12\x56\xb4\x25\xec\x76\x25\x24\xfd\x69\x6c\xca\x02\x8b\x78\x7b\xf0\xb7\x42\xe6\x66\x48\xf4\xaf\xb5\xec\x16\x12\x73\x82\x38\x4e\x60\xf0\xf1\x31\xbc\x23\x7a\x2f\x45\x8c\xd4\x28\x4d\xc3\xdf\x4c\x9b\x3f\x70\x02\xb6\x05\xe9\xa4\x57\x66\x1c\x65\x0a\x64\xbd\xd6\x97\x8c\xff\x50\x20\x3d\x75\x26\x82\x34\x30\x7d\xc9\xf8\xb3\x20\x3b\x9e\xbb\x06\x07\x26\x26\x74\x4d\xed\xc0\x0d\xef\x08\x5d\x97\x5a\x35\x40\xbb\x41\x0c\x61\xa3\x41\x72\xcc\x50\x26\x59\x35\x0b\xe7\x48\xe1\xd7\xbc\xe1\x8f\x97\x89\x47\x07\x73\x14\x22\x12\x4c\x79\xa3\xfe\x7b\xdb\xc4\x5f\x75\x2a\x85\x16\x91\x68\x26\x3f\xcd\x1b\xf9\xab\x5f\x69\x9d\x22\x4c\x48\xcd\xb0\xe7\xfa\x9f\xe6\xf3\xe9\x88\x10\x9f\xa1\x2f\xeb\x4f\x85\xd4\xad\xfa\xa7\x42\x6a\x7f\xfd\x11\x48\x8d\x96\x94\x55\xb9\xd8\x30\x12\x04\x4a\x28\x63\x90\xfa\x81\x32\xeb\x6c\xf6\x91\x2f\xd8\x2b\x6c\xbb\x62\x7d\x83\xed\xa7\xa0\x34\x53\x28\xa1\x1c\xad\x41\x2a\x2a\x9a\x5d\x6b\x3e\x99\x3d\x53\xfe\xa7\x6b\xe9\x6f\xc2\x8c\xd3\x0d\x52\x22\x7a\x05\x8d\x52\x90\x09\x55\x35\x88\xc7\x7d\xfc\xc1\xe9\x66\x66\xe5\xa6\x3b\xb1\xb3\x3b\xcc\x44\x84\x19\x92\x42\xe8\xd6\xa9\x3a\x31\x4d\x5f\x84\xd0\xa5\xb9\xda\x7b\xe0\x10\xcb\x25\xa3\x1c\xea\xc2\xd7\x90\x16\x30\x4b\x1c\x2c\xf1\xfb\x3b\x5d\x06\x05\xbf\xef\x4e\xd4\xc5\xb5\xdb\x68\x05\xd1\xeb\xfb\x3b\x70\xf2\xf1\x71\xab\xfe\xce\xb0\x84\x5b\x61\x18\x51\x6f\x1b\x11\xaa\xcc\x1a\x83\xa4\xc8\x34\x48\xc4\x44\xec\xc9\xec\xde\x29\x78\xb1\xf2\x13\x11\xf7\x4b\x0f\xb8\x65\x17\xff\xa4\xa9\x27\xaf\xaf\x56\xf2\xf1\x27\x4d\xbb\x30\xea\x7d\xac\x71\x9a\x22\x82\x35\x46\x29\xd6\xab\x0e\x8e\x3f\x4a\xd3\x7b\xac\xf1\x14\xeb\xd5\x27\xfc\x1d\x13\x84\x95\x02\xad\xd0\x52\x8a\x04\x11\xaa\x5e\x3d\xcd\x36\x11\x98\x8c\xac\x8a\x07\x29\x92\x7b\xaa\x5e\xff\x5f\xcc\xc7\x30\x27\x94\xc7\x35\xf3\xf6\xd8\x78\x13\xd7\x3a\x9f\xbb\xc7\xb6\x1b\xde\x11\x96\x6f\xb3\x4a\x3c\xdc\x8e\x6f\xf6\x74\x99\xed\x9e\x5a\x5d\xeb\x5e\x4f\xa9\x55\x3e\xab\x48\x47\xd7\xe0\x42\x07\xe1\x6c\xf6\x54\x4c\x75\xd2\x7d\x8a\xd7\xc9\xe7\x8f\xdb\x99\x56\xee\x82\x76\xb1\xdb\xe8\xac\xd8\x03\xb5\xab\xad\xd8\x3d\x94\x95\x9e\xee\x1b\xda\x55\xda\x65\xa6\x62\xb2\x1f\x39\xec\xec\x29\x34\xcb\x4c\xed\x3c\x6f\x07\x7a\x85\x6d\x0c\xbc\x1b\xd4\x37\xdb\xf6\x73\x60\x48\x83\xea\xd8\xb3\x6f\xb0\x9d\x83\xfa\x4c\xe7\x12\xca\x69\x92\x25\xc8\xe0\x2a\xfa\x13\x90\x75\xb4\x4a\xe0\xca\x20\x36\x7b\x0a\x9f\x9d\x8a\x6f\xb0\x9d\xd1\x9f\x30\x36\xf2\xdd\x1d\xd6\x9f\xa1\x6a\xb5\xca\x21\x21\x75\xa6\x65\x24\xbc\x49\xaa\x01\xe1\x4c\xdb\x29\x0f\xc4\x50\x50\x08\x6b\xa4\x34\xae\x76\xe7\x5a\x1b\xbd\x38\x65\xa3\x9d\xae\x6f\xb0\x55\x23\x3d\x33\x8a\x3c\xe2\x7d\xc7\x80\xdf\xde\x39\xdb\x03\xb4\xc8\x28\xd3\x94\x23\xb7\x06\x78\x75\xc8\x32\xff\xcd\xc9\xbb\x45\xa1\xcf\x31\x67\x54\x69\xe0\x68\x25\x54\x53\xd4\x98\xd8\x56\x4f\x42\x79\xc7\x8e\x5c\x7f\x4b\x54\x72\xfa\xcf\x89\x4d\x45\xf6\x81\xa6\x2b\x90\xed\x0e\xeb\x0c\x38\x76\xad\x2b\xdd\x35\x37\x6a\xeb\xfa\xfa\x02\xa9\x50\x54\x0b\xb9\xbd\xc8\x32\x2b\x21\x15\xd7\xba\xce\x1a\x6e\xb5\x8b\xc2\x81\xc9\xf7\x46\xb2\x4b\x83\xff\xf6\xcf\x42\xa9\x48\xd2\x54\x23\xbd\x4d\x1b\xcf\x92\x25\xb0\x99\x95\x98\x6f\xd3\x33\x8e\x94\x16\x12\x73\x45\x51\xb4\xc2\x5a\x41\xd5\x59\xbc\xf0\x2f\x37\x4b\x4b\xc0\xa3\x3f\x66\xbf\x8f\x57\x58\x2a\xd0\xfb\xad\xc0\xcd\x21\xb9\x11\x57\xf4\xa4\xcd\xfb\x3b\x30\x05\x25\x99\x21\xad\xa7\xc8\x85\x46\x05\x31\x5a\x22\x53\xf2\xdc\x1b\xbf\xfe\x2e\x85\x8c\x00\xa5\x92\xae\xb1\xee\x7c\x80\x2b\xf5\xe9\xc1\xc8\x4f\x9d\x78\x4f\xc7\x24\xcb\x2b\xc1\x1b\x14\x49\xc0\x9a\x0a\x8e\x18\x4d\x68\x4d\x66\xa4\x44\xe5\x19\x6f\xc6\xb9\xc4\xc4\x08\xf8\x24\xe0\x0c\x64\x2a\x61\x09\x52\x02\x41\x8c\x46\xc0\xd5\xc9\x32\xe8\x20\xff\x47\x50\x7e\x60\x82\x69\x21\x37\xc9\xc5\x82\xc1\x7f\x06\x03\x5f\xf4\xe2\xd0\x6a\x33\x41\x71\x65\x77\xdb\xc6\x22\xdf\x8b\x3e\xcd\xe7\xd3\x47\xda\x69\xcd\xeb\x4a\x2e\x3f\xb2\xba\xe4\x83\x99\xfb\x28\xa1\xb1\xb4\xa6\x3e\x83\xa7\x3b\xc6\xda\xf4\x84\xd9\x56\x3d\x17\xaa\x2e\xc0\x58\xe2\x37\x9b\x8a\x42\x12\x38\x01\xe9\x95\xa6\x38\x61\xfc\x82\xdf\x1e\x28\x83\x17\xab\xaa\xc7\xb4\x85\x25\x1c\x89\x24\xa1\xe6\x90\x0b\x3a\xb2\x07\xad\x28\x93\x12\x78\xb4\x6d\xf5\xfb\xb1\x93\x7c\x30\x82\xe3\xbd\x5c\xff\x29\x1f\x67\x58\x62\x50\x43\x9b\xf4\x79\x93\x38\x45\xb0\xd1\xc0\x15\x15\xbc\x6a\xba\x54\xc5\xe8\xaf\x4e\xc3\x84\x72\xf8\x4b\xe2\xf4\xeb\x4e\xfe\xcc\x90\x9d\x33\x4a\x25\xac\x29\xbc\xd9\x61\xb7\x43\x6e\xc6\xda\x93\xd3\x74\xaf\xc3\x8c\xb4\x19\xe3\x63\x56\x3d\x9b\x33\x4b\x99\xc0\xc4\xf3\xf4\x5a\x66\xfe\xc3\x29\x70\x1e\xea\x71\x8c\xed\x4c\x4d\x43\x92\xfa\xac\xf7\x39\xa1\x39\x24\xe9\x79\x99\x9f\x32\x38\x66\x4c\xbc\x01\xb1\x5b\x80\xae\x63\x99\x13\x18\x39\x51\xb3\x17\x38\xd7\xb3\x72\x12\xce\x9b\xf0\xc6\x9e\x8d\x5a\xa7\x63\x0e\x6f\xfd\x07\x6f\xcc\xf1\xe8\xe3\x23\x78\xfe\xed\x2c\x64\x03\x6a\xd0\xab\x57\xa2\x0a\xd4\x67\xbc\x31\xc0\xea\x60\xf5\x69\xd8\xcc\xde\x63\x8d\x17\x58\xc1\x45\xb6\xb2\x64\x71\xad\x1b\x59\xb2\x08\x6b\x36\x95\xef\xef\x61\x61\x93\xb0\xd8\x46\x76\x1c\x38\xb2\x08\x2b\x4e\x53\xc7\x4a\x4f\xcf\x52\x6d\x4a\xeb\xef\x30\x77\x4a\x3d\xef\x30\xc9\x22\xac\xbf\xc2\xdc\x29\xf5\xbc\xc4\x24\x8b\x50\x29\xd6\x70\x8f\xb9\x53\x3c\x9b\x4d\xdc\xea\x19\x74\x51\x86\x56\xc0\xd2\x82\x6c\x67\x2a\x6d\x01\x6b\x47\xe6\x20\x46\x35\x12\xb2\xfb\x9e\x23\x32\xfd\xad\x06\x64\x61\x67\xbb\x48\x81\x9b\x59\x53\xb9\x9a\x96\x79\x3f\xe3\xcd\xf7\x14\xf8\xd8\x34\xf5\x33\x8d\x81\xa1\x84\x41\x57\x98\xdf\x09\x83\x53\x98\xa6\x0c\x34\x44\x99\xa4\xfa\x32\xe7\x63\x95\x2b\xbf\xd6\xd0\x52\xf0\x0b\x99\x88\x29\x47\x12\x12\x48\x16\x20\x11\xc1\xdb\x1a\x5b\x17\xe6\x0a\x27\x46\xe2\x25\x17\xb8\xc7\x5b\x9f\x71\xdd\xc1\x46\x42\xbc\x52\xd8\xe3\xd6\x47\x8f\x1d\xee\xd8\x8a\x14\xc0\x9e\xb1\xe4\x18\xd8\x04\x96\xce\x98\x3f\xf2\xc6\x9f\xc0\xb3\xbf\x3d\xae\x1e\x0f\xf0\xed\xcf\xfe\x6e\x1f\x73\xdd\xbb\xd3\x92\x71\x00\xa5\xb1\xce\x14\x72\x6c\xbd\x69\x16\x47\xa5\x98\xf2\x99\x55\xe4\x78\xf7\xcd\xb8\x82\x6a\x17\xc7\x39\xe1\x75\xe2\x3b\x0d\x51\xe2\x6b\x82\x29\xbb\x48\x88\x00\xa3\xf9\x5a\xe3\x83\x25\xe7\xbb\xdf\xb7\xb6\xf2\xdf\xe3\x57\x0a\x77\xca\xb0\x3a\x96\x2a\x5b\xfc\x2f\x44\x1a\xa5\x12\x96\x74\xd3\x98\x63\x75\x20\x33\x27\x30\xb5\xed\xcf\xb8\x14\x70\xb0\x0d\x39\x69\x07\xe3\x9b\x8f\x76\x6a\x97\x52\x24\x8d\x6a\x1f\xa4\x48\xfc\xd5\x56\xec\xa4\x0e\xd5\x96\xf7\x51\x7d\x5e\x32\x38\xf8\x5d\xde\x08\x98\xe8\x7c\xbd\xe0\x88\x15\xf9\xa2\xaf\x93\xef\x7d\xdd\x2c\xe4\x03\x08\x4c\xd8\x9b\x85\x8a\x18\x72\x90\x46\x3d\xf0\x50\xc3\xe3\x29\x17\x2a\xe5\x43\x6f\xf6\xc3\x5e\xdd\xe0\x24\x83\x7a\x46\x0a\xf5\x28\x87\x7a\x73\xa9\xd1\x52\xaf\x34\x45\x6b\x90\x74\x79\x9c\xd7\x69\x1b\xac\xd9\x2b\x4d\xff\xb4\x82\xfd\x8e\x55\xa6\x00\x45\x20\x35\x5d\xd2\xe8\x34\x05\xdc\xc6\xea\x87\x82\xf1\x5e\xb8\x5f\x66\x75\x35\x6b\x55\x81\xa7\xb1\x66\xad\x0b\x58\x4d\xcd\x5a\x15\x56\x75\xcd\x5a\xff\xbe\x62\x46\x26\x65\x98\x72\xa4\x61\xd3\xfd\x2e\x74\x37\x30\x53\x23\x3b\x87\x8d\x47\x26\xb8\x0b\x2d\x4c\x48\x89\x16\xc2\xcc\x97\xda\x88\x90\x1d\xb5\x11\xbb\xc8\xdd\xec\x52\xc8\xa4\xd4\xce\xfc\x1c\x04\x38\xd2\x54\xf0\x2f\x83\xf7\xf7\x51\x9a\xce\xb2\x85\x2d\xad\xb9\x73\x85\xd8\xae\x87\x77\xb6\x2c\xc0\x90\x1c\x04\x09\xe8\x95\x20\x5f\x06\xa9\x59\x8c\xca\x71\x22\x1c\xcf\x5e\x1e\xe6\xe2\x15\xf8\xd3\xfc\x79\x52\xbe\xb8\x29\x91\xa3\x9c\x51\x0e\xc1\x92\x02\x23\x41\x46\x03\x06\xcb\xb2\x96\xe3\x8e\x50\x9e\x66\x07\xcf\x6f\x86\xf6\x4f\x81\xde\xa6\xf0\x65\x00\x8e\x92\x89\x7b\xbb\x1f\x12\xfe\xce\xa8\x04\x52\x56\xea\xac\x50\xf7\x73\x91\x69\x2d\xf8\x41\x65\x3a\x00\x0f\xdc\x9f\x07\x01\x25\x5f\x06\xa6\xff\xb7\x46\xff\xed\x42\xf3\x41\x6b\x30\x03\x4e\xd0\xde\x64\xc6\x0b\x9c\xb2\xbd\x27\xdc\x19\xd3\xfb\xde\xb0\x8e\x32\xbd\x02\xae\x4d\x48\xa1\x82\x5f\x64\x8b\x88\x33\x7d\xb5\xd5\x4c\x86\x5b\x68\x9c\x75\x8d\xb5\x39\xa4\x13\x40\x8c\xae\xeb\x72\x80\xc6\x58\xe1\x28\x6f\x3d\x16\x04\x26\xa6\xed\x51\x6e\x45\x0b\xc1\x42\x89\xdf\x50\x42\x79\xa6\x0b\x55\xdd\x0e\x09\x96\x8e\x04\x05\x1a\xa5\x58\xa9\x37\x21\x49\x37\x52\x2f\x46\x66\x9a\x8b\x5c\x90\x99\x9d\x07\xa8\xb4\xe9\x97\xc7\xdb\xbc\xda\x80\x94\xf3\xb4\x1a\x6c\x70\x1a\x3b\xf9\x3e\xaf\xa3\x0e\x58\x2a\x1a\x73\x44\x39\x5a\x53\x78\x3b\x87\xe4\x8c\xc6\x9c\xf2\x3f\x29\xbc\xf5\xc9\x6e\x57\x30\x0b\x31\x55\xda\xef\x5e\xcf\xb2\x2b\x0a\x66\x4b\xf2\x7d\xf2\x2b\x2e\xf3\x4a\xea\x51\x84\x53\x1d\xad\xb0\x17\xcd\xfc\x1a\xaf\xa4\x66\xec\xb4\xfc\xb3\xf5\xa0\x87\x7d\x5a\x83\x34\x0b\xbd\x14\x9b\xad\x2d\x84\xda\x47\xbe\xb3\xfa\x66\xd5\x4d\x8d\xb6\xc3\x30\x7a\x91\xf1\x38\xe2\x2e\xce\xf7\xa0\x4a\xfa\xe2\x52\x0e\xd5\x64\x75\x94\x2f\x21\x0d\xc9\xe3\x7c\x46\xd6\x99\xfa\xc9\x2a\xf0\x2c\xdb\x35\xa7\xc4\x8b\x2c\x75\xe6\x7c\x7a\xad\x4b\x9d\xe1\x56\x78\x93\x0b\xe0\x5c\xe8\xd3\xb3\x51\xad\xeb\x18\xa3\xe5\xae\x63\xc3\xf7\x1f\x22\x3f\x8a\xf8\xf8\x4b\x63\x26\xdb\xbe\xad\x71\xa1\x44\xb6\xd5\x7d\xad\x43\x53\xd0\x4b\xa5\x70\x11\xae\x26\x15\x68\x5b\x85\xd3\xbc\x95\x57\x22\xd7\x89\x16\x00\x7b\x43\x34\x94\xc6\x1f\xa2\xd9\xd5\x3a\x3e\xe7\xdd\x02\xa7\xa7\x43\xa6\xd3\x35\xac\xc9\x6e\x76\x43\x59\x69\x9d\x2a\x24\x38\xeb\xec\xd6\x87\xb0\x3d\x27\xa9\x9d\xea\x38\x42\x94\x6b\x90\x6b\x5c\xfb\x12\x91\x6b\xf8\x38\xfe\x3d\x6f\x57\xb7\x73\x53\x10\x09\x4e\xbc\x76\x6e\x05\x8b\x04\x6f\x10\xa3\x4b\x40\x9a\xb6\x0d\xc1\x33\xde\x4c\xe8\x12\xe6\x34\x39\xbe\x38\xec\x83\x48\xa4\xe4\xb2\x4b\xe2\x3b\x1f\x97\xd9\xcb\x83\x7f\xc2\x7b\x6c\xe6\xef\x45\x42\x49\x64\x5a\x5f\x6b\x20\xb1\xe4\x42\x4c\x70\xaa\xeb\xa2\x88\xb5\x4c\x38\x72\x4d\x3c\x46\xcf\xa9\x6e\xf6\x63\xa7\xfb\x02\x3e\xec\xc0\x6b\x6e\xfc\x8b\x03\xb0\x9b\xcf\x96\xc3\x58\x70\x5e\xce\x16\x14\x41\xad\xf4\x30\x8f\x63\x7b\xe1\xcb\x95\x86\x36\x1d\xbf\xad\x83\x18\xa7\xb8\xcc\xd1\x7b\xa7\xfe\x5a\x3d\x76\xcf\xd0\xf7\x9e\x66\x6f\xba\x9e\x0b\xb2\x4a\x94\xda\x2a\x1b\x4a\x1c\xce\xab\xbf\x2a\x61\x75\x2e\xbf\x2a\x81\x7e\xae\xee\xaa\x04\xde\x5c\x71\x55\x42\x3c\xab\xcc\xea\x08\xa8\xa1\xca\xea\x10\xc9\xab\xbc\xea\x05\x18\x5c\xaa\xba\x4a\x3a\xdd\xd7\x3a\x89\x72\x7a\x9f\x98\x4c\xb9\xf1\x2e\x37\xa9\x2a\x28\x7a\xd4\x1b\x9e\x90\xfb\x6c\xc1\xe1\x09\x99\xb6\x92\xc3\x13\x06\x67\xd6\x1b\x56\x02\x37\x96\x1d\x56\x21\x7b\x4d\x8c\x29\x8d\x74\x26\x2f\x33\x31\x52\xa7\xfb\x5a\x27\x46\x4e\x2f\xc4\x6b\xac\xb1\x44\xae\xd2\xb3\xb5\xc0\x36\x37\x58\x38\xb2\x52\xae\xda\xf3\xbc\xf0\x5e\xe0\xdb\x17\x8d\xce\x23\xb1\xaf\x3b\xed\x8f\x4e\x2c\x73\x2e\x4a\x64\x32\x6a\x7c\xdf\xa7\xa0\xf1\x98\x8b\xcc\xac\xc4\xf9\xd0\x45\xfa\xb3\xa0\xd0\x35\x40\x15\x3c\xf2\xec\x67\x41\xa7\xa7\xe8\x54\xb0\xcb\xd3\x23\x4b\x20\x20\xb1\x06\x82\xce\x23\xe9\x42\xe7\x43\xa1\x65\xe4\x47\xb5\x61\x2a\x3f\xcd\xe7\xd3\x8b\xcc\x63\xfb\x26\xcc\x95\x4e\x62\xc3\x2d\xc4\x51\x04\x4a\x19\x8a\x5a\x0a\x86\xec\xda\x81\x84\xa4\x71\xe5\x37\x6e\x0e\x8f\x04\xc6\x6a\xe1\xc8\x2a\x18\x3b\x79\xbb\x7c\x7c\xb7\xd2\x55\xc7\x84\x16\x81\xeb\x38\x3a\x3c\x53\x29\xc5\x65\xd2\x98\x89\x55\x7d\xad\xfe\xe0\xd8\x85\x04\x96\x38\x63\xba\x25\xb5\xe2\xac\x14\xde\xbb\xc6\x6d\x47\xd3\x95\xc8\xe4\xd1\xc1\xb4\x61\x04\xfe\x82\xc5\x4a\x88\xd7\x8b\x0c\xc1\x9b\xd3\x7d\xad\x63\x90\xd3\x0b\x5b\xf7\x6e\xb9\x8d\xc2\x33\x77\x6a\x05\x0e\x01\x46\xd7\x20\x6d\xee\x4a\x64\x35\x75\xff\x05\xd6\xbd\x6b\x3c\x77\x6d\x7b\x4c\x43\x14\x6c\x6c\x65\x91\x66\xaa\xba\xba\xa8\x76\x79\x28\xf8\xcd\x5e\x69\x3a\x9f\xcc\x3c\x2b\x8c\x1a\x1c\xf1\x91\x5e\x26\x7d\x10\xd3\xab\xcd\x1b\xc4\x54\xef\xf6\x12\x84\x2e\x97\x68\x45\xe3\x15\xa3\xf1\xaa\xf3\xcb\x9c\x8f\x54\x17\xbb\x89\x7b\xba\x5c\x3e\x15\xf2\x3d\x6d\x29\x0c\x41\xb3\xb7\xb7\xe4\x18\xe5\x75\x1b\x7c\x43\xe3\x19\x6f\x0c\x85\x89\x69\xe5\xe1\x8e\x27\x10\x28\x5a\x61\x89\x23\x7d\xfa\x92\x7e\x35\x98\x7d\x41\xfa\x5c\xc0\x86\x43\x4b\x09\xe6\xf4\xa4\xd2\x0e\x11\x47\x08\xcb\xb8\x31\xac\x18\x84\xc7\xf1\x48\xc6\x97\x7b\x65\xd0\x76\xd6\xbe\x2e\x0b\xcd\x61\xc7\x70\xc9\x63\x4d\xe8\xde\xaf\xed\x33\x6b\xee\x68\xd8\xf5\xd8\x83\x85\x69\xdf\x33\x89\x88\x09\xee\x61\x89\xb1\x69\xde\x33\x85\x34\x63\xac\x3b\x83\x69\xc6\xfa\xcc\x41\xe7\x9e\xd9\x19\xfe\x71\xec\x05\xde\x10\xde\x27\x0f\xb3\x8b\x84\x77\xb6\x54\xd7\x1a\xde\xd9\x52\x85\x4a\x0b\x89\xe3\x9a\x8c\xcc\xe4\x61\x16\xce\x5c\x03\x8f\x31\x34\x6a\x85\x2d\x9b\x57\xad\x07\x70\x83\xf0\xdd\xb5\xad\x3b\x6d\x37\x8d\x99\x88\x2f\x33\x66\x22\xf6\x1e\x33\x26\xe2\x5b\x27\xf3\x8f\x0d\x9f\x88\xf3\x4f\x01\x74\xf9\x80\xc9\x44\xc4\x4d\xdf\xb4\x72\x56\xfe\xa5\x7b\x5c\x1f\xba\x5e\xee\x9b\xad\x41\x6e\x83\x05\x56\x34\x72\x06\xd8\x75\xe2\xfd\x5d\x62\x1e\x43\x60\x28\xc4\xf6\x63\x35\xc5\x89\x6c\xa8\xe5\xaf\xfb\x03\x9d\x36\x3e\xf7\x1f\x0d\x9d\xdd\xbd\x89\xa9\xc9\xb1\x58\x58\x7c\x4c\xb6\xf4\xa8\xac\x7d\x78\xe7\x07\x25\x52\xbd\xfb\x00\xc0\x31\xda\x30\x95\xb0\xb7\xeb\xc9\x95\xbd\x7d\x7a\xc0\xa3\x84\x7d\x54\x31\x6a\x0d\x75\xe0\xdc\xe5\xff\x15\xff\xc9\xff\xcd\xff\x39\xf9\x4c\xf2\x52\x08\x0d\xf9\x37\x97\xff\x2f\x00\x00\xff\xff\x8f\x2c\x54\xec\xff\x59\x00\x00" func adminConfigTmplBytes() ([]byte, error) { return bindataRead( @@ -332,8 +332,8 @@ func adminConfigTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin/config.tmpl", size: 22331, mode: os.FileMode(0644), modTime: time.Unix(1583774436, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0x75, 0x2b, 0x85, 0x60, 0xa0, 0xfa, 0x82, 0x16, 0x62, 0xd6, 0xa, 0x45, 0x2d, 0xf5, 0xff, 0x60, 0xba, 0xbc, 0xf9, 0x34, 0xa0, 0x89, 0xce, 0xf3, 0x45, 0xc6, 0xfa, 0x3f, 0x5e, 0x97, 0x11}} + info := bindataFileInfo{name: "admin/config.tmpl", size: 23039, mode: os.FileMode(0644), modTime: time.Unix(1587462570, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0xcf, 0x8e, 0x71, 0x7, 0x6b, 0x2, 0xcd, 0xf3, 0x52, 0x48, 0xa4, 0x55, 0xc, 0xa1, 0x1a, 0xbe, 0x27, 0x50, 0x5a, 0xca, 0xf9, 0xf4, 0x61, 0xe8, 0x6b, 0x30, 0x2, 0x7f, 0xea, 0xcd, 0x21}} return a, nil } @@ -1417,7 +1417,7 @@ func repoCreateTmpl() (*asset, error) { return a, nil } -var _repoDiffBoxTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\xdd\x8f\xdb\xb8\x11\x7f\xf6\xfe\x15\x53\xd5\xc8\xda\xd7\xb5\x8c\x4b\xf2\x50\x5c\x64\x17\xf7\x55\xdc\x02\x69\x7a\xc8\xee\xbb\x41\x9b\x23\x8b\x0d\x4d\xea\x48\x6a\xbd\x5b\xd5\xff\x7b\x31\xa4\xbe\xfd\x91\xdd\xa0\xe9\xc3\xe1\x5e\x6c\x89\xe4\x0c\x67\x7e\xf3\x9b\xe1\x50\x65\x29\x52\x88\x7f\x12\x69\xfa\x41\xbb\xef\x1f\x98\x90\x6c\x2d\xf1\x70\xb8\x1a\x25\xd9\xdb\x65\x59\xc6\xe2\xdb\xbf\xaa\xf8\xde\x40\x64\x30\xd7\x31\x17\x69\x1a\x73\xe6\xd8\x4a\x69\xb7\x62\xf5\xfa\xe8\x70\x48\xe6\xd9\xdb\xe5\x55\x59\xa2\xb4\x41\x9c\x8b\x07\xd8\x48\x66\xed\x22\x22\xa9\x19\x47\xc7\x84\x9c\xad\xf5\x23\xf8\xf7\xb5\x7e\x8c\x96\x57\x23\xbf\x90\xfe\x47\x89\xa8\xd7\xa7\x0c\x52\x36\x33\xe8\xf6\x88\x2e\x5a\x26\x73\xe1\x17\x9c\xb6\xc6\x3a\xe6\xec\x8a\xa3\xdd\x44\xc1\x91\xf8\x43\xb1\xfb\xbb\x90\x68\xab\xd7\x7b\xed\x98\xfc\x9e\x73\xe1\x84\x56\xbd\xc1\x9f\x50\x62\x18\xfc\x0f\xdc\x39\xf3\xfa\x97\xfb\x7f\xbc\x27\xdb\x47\x3d\xeb\x0b\x01\x46\x6c\x33\xe7\xad\x1d\x8d\x12\xd6\x99\x70\x42\x3d\xc1\x9a\x59\xb1\x01\xa7\xb7\x5b\x89\xb0\x2e\x9c\xd3\x2a\x82\xcc\x60\xba\x88\xfe\x66\xdd\x93\xc4\x45\x40\xf9\xd6\xde\xe5\x52\xb8\x3b\x1a\x3a\x1c\x0a\x25\x52\x81\xbc\x46\xcc\xd2\x54\x59\xa2\xe2\x87\x43\xb4\x2c\x4b\x18\x4a\xc0\xe1\x70\x06\x80\x4c\xef\x57\x95\xb6\xd5\x83\xc0\x7d\x44\x2b\x83\xd6\x0b\x12\x7e\xc3\xce\x7a\xda\x38\x99\xb3\x17\x39\x49\x4c\x98\x39\x66\xb6\xe8\x16\xd1\x9f\x7d\x58\x53\x42\x3e\x3a\xc3\x1c\xbf\x31\x3d\xad\x7c\xd4\xa2\x76\xc7\x64\x5e\xd1\xa0\x7d\xd0\xb2\xe1\x4f\xa0\x8e\x57\x0d\x99\xe0\x18\x81\xe0\x15\xad\xaa\xfd\x02\x3f\x0c\x53\x5b\xac\x22\xec\x29\x10\xa2\x39\x4a\x64\x60\xd0\xe8\x98\x96\x1b\x5d\x28\x87\x06\xfc\x3f\xe4\x85\x94\xb3\x6e\xb4\x49\xab\x48\x41\x69\x47\xd1\xf8\x41\x28\x66\x9e\x2a\xa5\xa4\xcd\xe6\x4c\xd5\xea\x18\xe7\x15\x22\x52\x28\x5c\x44\x65\x49\x4c\x6c\x88\x17\xc2\x3a\x18\x4a\xe6\xa4\x61\x79\x52\xdf\x9a\x99\xc6\x88\xc1\x94\x37\x53\x62\xea\x80\x36\x5d\x0e\xb4\x9c\x5b\xcb\x51\x1e\xad\xbd\x64\x00\xad\x3f\x76\xa8\x49\x9a\xd6\xa1\xce\x50\x5f\x5f\x5b\x0e\x3a\xea\x97\x65\x39\x3e\x45\x8e\xb5\x50\xd1\x09\x05\xc4\xcb\x2a\x76\x35\x35\xe8\xf9\x4f\xb3\x19\x38\xcd\x35\xa4\x42\x09\x9b\x01\x93\x12\x88\x0b\x40\xcc\x2a\xec\x0d\x28\xbd\x87\x9d\xe6\x22\x7d\xba\x21\x94\x6e\xc8\x7d\x74\x08\x4c\x71\x30\xa8\xd8\x0e\x61\x36\xab\xb5\x75\xdd\x0e\x0a\xa0\x2c\x89\x46\xc4\xa2\xfb\xa7\x1c\xef\xf5\x9d\x33\x10\xd3\xe3\xe1\x00\xb9\xce\x85\xda\x42\x91\x57\xf8\x6c\xb4\x72\xa8\x1c\x41\x74\x56\xa8\x5a\xfa\xc0\x8c\x60\x04\xd6\x22\x12\xea\x01\x8d\x43\xee\x13\xac\x9a\xce\xb5\x15\x61\xd6\xb3\x10\x36\x48\xec\x8c\x96\xaf\xd4\xda\xe6\xef\x7a\xe0\xb4\x39\x4a\x7e\xd7\x15\x27\x64\x61\x59\xc6\xb7\x8a\xe3\x63\x1d\x23\xb6\xc3\x6e\x76\xcf\x65\x5d\x51\x6b\x78\x93\xb9\x96\xcb\xab\x1a\xe2\xab\x26\x97\xc6\xe2\x06\xc6\x1e\xd7\xef\x16\x47\x89\xe5\x53\xc3\xcf\xc6\xb7\xf6\x56\x6d\xf4\x2e\x27\x88\x8f\x4b\x68\x93\xa9\xbd\xf2\xef\xe3\x55\x63\x57\x57\xd7\xec\x6d\xb7\xf2\xe8\x1c\x98\x73\x6c\x93\x21\x07\xa5\xcd\x8e\x49\xc8\x90\x71\x6c\x32\xe3\x0c\x97\x48\xf3\xca\x16\x79\x6e\xd0\x5a\xe4\x51\x43\xa1\xcb\xe9\x5f\x08\xa0\x4c\x39\xce\xfd\xda\xc9\x8f\x9e\x38\xfc\xcb\x2b\xc0\x5f\xe0\x77\x57\x03\x66\xf0\xf9\x2a\x70\x26\x89\xbb\x3b\x79\x12\x53\x6d\xf0\x50\xd7\x8c\x6d\xf5\x84\x06\xa3\xab\xa1\x5b\x5d\x5e\xc8\x36\x28\xcb\x7b\xb6\xbe\x13\xff\xc6\x1f\x49\x06\xc6\xf1\xcf\x5c\x38\x6d\x36\x5a\xa5\x62\x0b\x5d\x1b\x3a\x67\x4d\x37\xab\xbe\x88\xad\x5f\x42\xbf\x9a\x7a\xc3\xb3\xe7\x62\x15\xed\xd5\x5f\xf8\x83\xc4\xff\x6f\x12\x77\xe2\xd6\xa0\x5d\x53\xfb\x9f\x92\x07\x66\xc1\x2b\xc3\x8c\x79\x07\x95\xea\xf3\xd4\x3f\xae\x43\x77\xc5\x7a\xa7\x79\x21\xdb\xb3\xf5\x42\xc7\x3a\x64\x92\xf7\xb1\x1b\xff\x7e\xbb\x17\x3a\xbd\xad\xc1\xa7\xaa\xf3\xab\x9a\x3d\x83\x72\x11\x29\x9d\x6a\x29\xf5\xbe\x3e\x6e\xca\xf2\x67\xbb\x61\x39\xfe\xaa\x0b\xc5\x61\x1c\xff\x80\xa9\x36\x78\xa7\x0b\xb3\xc1\x5f\x99\xcb\x0e\x87\x79\x7f\x49\x9d\x55\xe7\xba\x00\x6a\x48\x57\x1e\xc6\xce\x81\xd5\xa3\xf2\x38\xee\xaa\x87\xb2\x9c\x7f\x03\x1f\x34\xb4\x83\xb0\x47\x60\xd6\x16\x3b\x04\x97\x21\x58\x3f\x01\xb4\x85\xa5\x1c\x7f\x02\xa5\x41\x6a\xb5\x45\x03\xf8\x28\xac\xb3\xf0\xcd\xfc\xab\x80\xf1\x75\x60\x68\x69\xd8\xe3\x61\x77\xa6\xa9\x95\x43\x5a\x14\xca\x3a\xb6\xf9\x44\x77\xb6\xb6\x54\x39\xff\x6a\x71\xbb\x6b\xcf\xe1\xcf\x1f\x7d\x65\x39\x16\xf6\x76\xc7\xb6\xbe\x35\x98\x6c\xa8\x01\x1b\x53\x1f\x40\x43\xd4\x23\x74\xaa\xe8\xb4\x23\x45\x11\xac\x04\x3b\x15\xa8\x63\x66\xdd\xf2\xb4\x01\x11\xbb\x2d\x58\xb3\x21\x80\xc7\xf1\x47\xb6\xbf\x8c\x68\x5b\x11\x5a\x70\x8e\x3b\xd1\xce\x86\xd5\x51\xc1\x9f\xea\x23\x82\x23\xd0\xcf\x8c\x82\x10\x9e\x28\x26\x5d\x8b\x3c\x64\xed\xfb\x28\x71\x24\xdf\x19\xa8\x1c\x1d\xdc\xf9\x3a\xf3\x84\x5f\x26\xb6\x99\xa4\x44\x0d\x87\xd0\x77\x8b\x0a\xb2\x5f\x7a\xe3\x43\xb1\xaa\x31\xfb\xd7\x0d\x8c\x2d\x6e\xa8\x58\xb5\x92\x77\x61\x60\x20\xd3\x0a\x7d\xba\x81\x31\xd5\x40\x2f\x51\x49\xc7\xef\x85\xc2\xa1\xc4\x28\x71\xa6\xc6\x27\x34\xb5\xb4\xea\xa8\xa9\x0d\x60\x29\x39\x2b\xcb\xf1\xa7\xc3\x01\x74\xfd\x14\x2d\xfb\xea\x02\x1e\xf8\x5b\x10\x84\xb7\xc3\xed\x68\x43\x5e\x6f\x48\x16\xda\x99\x2a\x76\x54\xe5\x1d\x1f\xaa\x0a\x4b\xb5\xa4\x02\xb9\x88\xde\x44\xd0\x97\x23\x93\x8e\xb6\x1f\x8d\x92\xdc\xe0\x32\x09\xc1\xad\xfd\xa2\x10\x65\x03\xb0\x25\x53\xdb\x82\x6d\x71\x76\x14\xa0\xf6\x5a\xad\x74\x33\xd3\xb9\xb2\x37\x80\xfe\xa8\x77\x79\xe1\x90\xdf\x2a\xb2\xc8\xdf\x08\xb4\x09\xc0\x53\x36\x93\x0d\xcb\x64\x4e\xf6\x1c\x79\x76\xc2\xdd\x21\x75\x2f\x01\x06\xcd\xd3\x4c\x4b\x1e\x41\x70\x91\x06\xe3\xf7\x98\xba\xf7\xde\x82\x6e\x43\x73\x97\xb1\x6f\xeb\x14\x0f\xad\xcd\xfb\xb2\x1c\x0a\x74\x0e\x4f\x52\xbd\x46\xe3\x53\x71\xb8\xaa\x82\xe2\x59\x4e\x1d\x5b\xef\x23\x93\x31\x99\xee\x05\x77\xd9\xb3\x02\xb8\x37\x2c\x87\xff\x75\x14\x4f\x00\xf6\xdc\xd0\x36\x5f\x51\x5e\x18\xe1\xcf\x85\x52\xe1\xbe\x17\xca\x8f\x64\xf2\x73\x62\xf9\xb1\x8e\x52\x47\xe2\x52\x30\xbb\xcb\x7e\x67\xd1\xec\xb8\xf6\xb5\xc3\xd9\x3f\xa3\xdb\x85\x66\x79\xf5\x99\x65\xc7\x43\xa7\x92\xbf\x2c\x1d\xee\x72\xc9\x1c\x86\x8e\x61\x4e\xf1\x9f\x57\x2e\xd5\x5f\x02\x23\x88\x87\x8a\xfa\xaa\x93\xf9\xe0\xcc\x4a\xe6\xfd\x53\x6d\x78\x7e\xb6\xe2\xfd\x56\xa3\xf9\x7e\xdb\xb9\x97\x85\xe9\x64\x4d\x2e\xd7\xaf\x57\xa3\xf6\x63\xf3\xf1\xf7\x82\x2f\xfa\x5c\xf0\xc2\xfb\xd7\x99\x5e\xcb\x69\xbd\xda\x31\xf5\xb4\x0a\xdf\x12\xab\x0b\x65\xd5\x42\xd5\x5e\x0d\xbd\x38\x3a\xd8\x13\xbb\x31\x22\x77\x7e\xa7\x49\x5a\x28\x1f\x8d\xc9\x14\x4a\xbf\xf5\x78\x72\x1d\x33\xce\x7d\x5e\x5c\x4f\x63\x64\x9b\xec\x78\xd1\xe8\x81\x19\xc8\x0d\x3e\xc0\x02\xc6\x13\x97\x09\x3b\x8d\xe9\x75\x32\x7d\x17\xe6\x45\x3a\xa1\xf7\x58\xd8\xc9\x75\xcc\x51\x56\xea\xe0\xd5\x2b\x2f\x16\x6f\x32\x21\xb9\x41\x35\x99\xc6\xf8\xdb\xe4\xcd\x34\x76\xf8\xe8\x26\xd3\xd8\x19\xb1\x9b\x4c\x61\xb1\x58\xc0\xf5\x75\xb3\xdb\x68\x9f\x09\x89\x41\x63\xd8\xe6\xac\xe2\x6a\xfa\x85\xfa\x47\x95\x2f\x1d\x15\x95\x23\xa3\x9a\x88\xa7\xcd\xce\xdc\x4e\x4e\x6a\x04\x4e\xcf\x4e\x1b\x55\x27\x54\xbc\xbe\xa8\xe2\xf5\x73\x54\xbc\x99\x52\xbc\x7c\x8d\x99\x5c\xb7\x91\xbb\xbc\xe9\x25\x89\xda\x16\x83\x3b\xfd\x80\x0d\x12\x01\x88\x43\x78\x3d\x54\x36\x25\xf3\x86\x4c\x35\xef\xea\xff\xff\x06\x00\x00\xff\xff\xef\x3f\xd6\x97\xb1\x19\x00\x00" +var _repoDiffBoxTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x58\x5b\x73\xe3\xb6\x15\x7e\x96\x7f\xc5\x29\xab\x59\x4b\xa9\x45\x4d\xb2\xfb\xd0\xc9\x52\xea\x64\x93\x74\xe2\x19\x77\x9b\x59\xfb\x5d\x03\x09\x87\x22\xba\x10\xc0\x80\xa0\x65\x95\xe5\x7f\xef\x1c\xf0\x06\x52\x97\xb5\x32\xd9\x87\xf6\xc5\xa6\x00\x9c\x0f\xe7\xf2\x9d\x0b\x59\x14\x22\x86\xf0\x27\x11\xc7\x1f\xb5\xfd\xe1\x99\x09\xc9\xd6\x12\xcb\xf2\x66\x14\x25\xef\x96\x45\x11\x8a\x6f\xff\xaa\xc2\x27\x03\x81\xc1\x54\x87\x5c\xc4\x71\xc8\x99\x65\x2b\xa5\xed\x8a\x35\xe7\x83\xb2\x8c\xe6\xc9\xbb\xe5\x4d\x51\xa0\xcc\x2a\x71\x2e\x9e\x61\x23\x59\x96\x2d\x02\x92\x9a\x71\xb4\x4c\xc8\xd9\x5a\xbf\x80\xfb\xbd\xd6\x2f\xc1\xf2\x66\xe4\x0e\xd2\xff\x51\x24\x9a\xf3\x31\x83\x98\xcd\x0c\xda\x3d\xa2\x0d\x96\xd1\x5c\xb8\x03\xa7\xb5\xc9\x2c\xb3\xd9\x8a\x63\xb6\x09\x2a\x43\xc2\x8f\xf9\xee\xef\x42\x62\x56\xff\x7c\xd2\x96\xc9\x1f\x38\x17\x56\x68\xd5\x5b\xfc\x09\x25\x56\x8b\xff\x81\x47\x6b\xbe\xfb\xe5\xe9\x1f\x0f\xa4\xfb\xa8\xa7\x7d\x2e\xc0\x88\x6d\x62\x9d\xb6\xa3\x51\xc4\xbc\x0d\x2b\xd4\x01\xd6\x2c\x13\x1b\xb0\x7a\xbb\x95\x08\xeb\xdc\x5a\xad\x02\x48\x0c\xc6\x8b\xe0\x6f\x99\x3d\x48\x5c\x54\x5e\xbe\xcf\x1e\x53\x29\xec\x23\x2d\x95\x65\xae\x44\x2c\x90\x37\x1e\xcb\x68\xab\x28\x50\xf1\xb2\x0c\x96\x45\x01\x43\x09\x28\xcb\x33\x0e\x48\xf4\x7e\x55\xa3\xad\x9e\x05\xee\x03\x3a\x59\xa1\x5e\x90\x70\x17\x7a\xe7\xe9\xe2\x68\xce\xae\x32\x92\x98\x30\xb3\xcc\x6c\xd1\x2e\x82\x3f\xbb\xb0\xc6\xe4\xf9\xe0\x0c\x73\xdc\xc5\xf4\xb4\x72\x51\x0b\xba\x1b\xa3\x79\x4d\x83\xee\x41\xcb\x96\x3f\x15\x75\x1c\x34\x24\x82\x63\x00\x82\xd7\xb4\xaa\xef\xab\xf8\x61\x98\xda\x62\x1d\x61\x47\x81\x2a\x9a\xa3\x48\x56\x0c\x1a\x1d\xd3\x72\xa3\x73\x65\xd1\x80\xfb\x0f\x69\x2e\xe5\xcc\x8f\x36\xa1\x8a\x18\x94\xb6\x14\x8d\x0f\x42\x31\x73\xa8\x41\x09\x2d\x4b\x99\x6a\xe0\x18\xe7\xb5\x47\xa4\x50\xb8\x08\x8a\x82\x98\xd8\x12\xaf\x0a\xeb\x60\x29\x9a\x13\xc2\xf2\x24\xde\x9a\x99\x56\x89\xc1\x96\x53\x53\x62\x6c\x81\x2e\x5d\x0e\x50\xce\x9d\xe5\x28\x8f\xce\x5e\x52\x80\xce\x1f\x1b\xd4\x26\x4d\x67\x90\xb7\xd4\xc7\xeb\xca\x81\x07\xbf\x2c\x8a\xf1\x29\x72\xac\x85\x0a\x4e\x00\x10\x2f\xeb\xd8\x35\xd4\xa0\xe7\x3f\xcd\x66\x60\x35\xd7\x10\x0b\x25\xb2\x04\x98\x94\x40\x5c\x00\x62\x56\x9e\xdd\x81\xd2\x7b\xd8\x69\x2e\xe2\xc3\x1d\x79\xe9\x8e\xcc\x47\x8b\xc0\x14\x07\x83\x8a\xed\x10\x66\xb3\x06\xcd\x37\xbb\x02\x80\xa2\x20\x1a\x11\x8b\x9e\x0e\x29\x3e\xe9\x47\x6b\x20\xa4\xc7\xb2\x84\x54\xa7\x42\x6d\x21\x4f\x6b\xff\x6c\xb4\xb2\xa8\x2c\xb9\xe8\xac\x50\x7d\xf4\x99\x19\xc1\xc8\x59\x8b\x40\xa8\x67\x34\x16\xb9\x4b\xb0\x7a\x3b\xd5\x99\xa8\x76\x1d\x0b\x61\x83\xc4\xce\x60\xf9\x46\xad\xb3\xf4\x7d\xcf\x39\x5d\x8e\x92\xdd\x4d\xc5\xa9\xb2\xb0\x28\xc2\x7b\xc5\xf1\xa5\x89\x11\xdb\xa1\x9f\xdd\x73\xd9\x54\xd4\xc6\xbd\xd1\x5c\xcb\xe5\x4d\xe3\xe2\x9b\x36\x97\xc6\xe2\x0e\xc6\xce\xaf\xdf\x2f\x8e\x12\xcb\xa5\x86\xdb\x0d\xef\xb3\x7b\xb5\xd1\xbb\x94\x5c\x7c\x5c\x42\xdb\x4c\xed\x95\x7f\x17\xaf\xc6\x77\x4d\x75\x4d\xde\xf9\x95\x47\xa7\xc0\xac\x65\x9b\x04\x39\x28\x6d\x76\x4c\x42\x82\x8c\x63\x9b\x19\x67\xb8\x44\xc8\xab\x2c\x4f\x53\x83\x59\x86\x3c\x68\x29\x74\x39\xfd\x73\x01\x94\x29\x6d\xda\x5d\x9b\xdf\x7f\x81\x2f\x64\xf8\xf9\x04\xbf\x22\xbf\x5f\x9f\xde\x17\x2e\x7f\x45\x72\xcf\xe0\x72\x7a\xf7\xf2\xd1\xc7\x76\x7c\xa4\x34\x77\xd4\x68\xc8\xd7\x49\x56\xb3\x82\x8f\xe0\x17\x8a\x2b\x89\x03\x45\xf1\xc4\xd6\x8f\xe2\xdf\xf8\x23\xc9\xc0\x38\xfc\x99\x0b\xab\xcd\x46\xab\x58\x6c\xc1\xd7\xc1\x6b\x1b\x7e\x82\xfc\x2e\xe2\x5d\xc9\xa4\x5e\xaa\x0c\xdb\xc8\xc5\x82\x78\xa9\x94\xfe\x91\xd4\xfc\xdf\x6b\x3e\x5f\xe2\xe7\x85\xee\x71\x8a\xad\x5e\x80\x3e\xb9\xfe\xc0\x69\x2e\xaa\x96\xfe\x29\x79\x45\x21\x78\x63\x98\x31\xef\xa1\x86\x3e\xcf\xf1\x6e\x6e\x68\x40\x1f\xf3\xf5\x4e\xf3\x5c\x76\x41\xbc\x30\x65\x0e\x29\xe3\x6c\x44\xde\xc5\xbf\x3f\xa2\x55\xd3\xd9\xd6\xe0\xa1\x9e\xd6\xea\x01\xcd\xa0\x5c\x04\x4a\xc7\x5a\x4a\xbd\x6f\x5a\x44\x51\xfc\x9c\x6d\x58\x8a\xbf\xea\x5c\x71\x18\x87\x1f\x30\xd6\x06\x1f\x75\x6e\x36\xf8\x2b\xb3\x49\x59\xce\xfb\x47\x9a\xf4\x39\xd7\xb9\x69\x88\x5c\x39\x37\x7a\x4d\xa6\xe5\x2c\x4d\xb2\xe3\xd0\x87\x87\xa2\x98\x7f\x03\x1f\x35\x74\x8b\xb0\x47\x60\x59\x96\xef\x10\x6c\x82\x90\xb9\x0d\xa0\x2b\x32\x4a\xe6\x03\x28\x0d\x52\xab\x2d\x1a\xc0\x17\x91\xd9\x0c\xbe\x99\x7f\x15\x67\x7c\x1d\x37\x74\x34\xec\xf1\xd0\xdf\x69\x8b\xe2\x90\x16\xb9\xca\x2c\xdb\x7c\xa6\xf7\xac\xae\x26\x59\xf7\x33\xc3\xed\xae\xeb\x9d\x54\x47\x44\x76\xbf\x63\x5b\xd7\xad\x63\xe6\x15\x8c\x8b\x64\xf2\xe4\x16\x30\xd9\xd0\x28\x35\xa6\x8e\x4e\x2b\xd4\xed\x3f\x1c\x5c\xad\x6c\xe4\xe9\x79\xda\x01\xf7\xea\xd2\x97\xa0\xbc\x7a\xec\x43\x38\x2f\xf8\x9a\xd6\x20\x27\x53\xa5\x99\x89\x5e\x9b\x28\x62\xb7\x85\xcc\x6c\x28\xd6\x0d\xd9\x3f\xb1\xfd\xe5\x10\xf7\x29\x7c\x16\xed\x1a\x9c\xf3\x1c\xf0\x6f\xf0\x0d\xad\x1b\x1f\x3f\x34\x0d\x8f\x23\xd0\x9f\x19\x31\xad\x7a\x22\xe2\x79\x43\x84\xa3\x85\x57\x8b\x2d\x49\x77\xbf\x6b\x57\x0d\xde\x44\xbb\x6d\x0a\x5f\x22\xb6\x89\xa4\x4a\x54\xb5\xd3\xef\x17\xb5\x6b\x7f\xe9\xad\x0f\xa4\xea\x61\xf1\x5f\x77\x30\xce\x70\x43\xc5\xb8\x13\x7c\xac\x16\xfa\x22\x9d\xcc\xe7\x3b\x18\x53\x89\x77\x02\xb5\x70\xf8\x20\x14\x0e\x04\x46\x91\x35\x8d\x63\xaa\x31\x9b\x0e\x1d\x8d\xd9\x95\x97\x94\x9c\x15\xc5\xf8\x73\x59\x82\x6e\x9e\xbc\x76\xd6\xb9\x02\x7f\xab\xe4\xe0\xdd\xe0\x32\xba\x8e\x37\xd7\x91\x7a\xd9\x4c\xe5\x3b\xea\x60\x96\x2f\x4f\x9d\xd4\x92\x6a\xff\x22\x78\x1b\x40\x5f\x8c\xf4\x19\xde\x3d\x1a\x45\xa9\xc1\x65\x54\x45\xb4\xb1\x89\x42\x93\x0c\xbc\x2c\x99\xda\xe6\x6c\x8b\xb3\xa3\xc8\x74\x2f\xf9\x4a\xb7\x3b\xde\x07\x84\xd6\x97\x3f\xea\x5d\x9a\x5b\xe4\xf7\x8a\x14\x72\xef\x27\xda\x54\x3e\xa7\x3a\x45\x3a\x2c\xa3\x39\xe9\x33\xb4\xeb\xd8\xd6\xa3\x74\x38\xef\x2b\x68\x9f\x66\x5a\xf2\x00\x2a\xfb\x68\x31\x7c\xc0\xd8\x3e\xb8\xeb\xfd\x81\xec\x31\x61\xdf\xfa\x25\xa6\x2c\x1f\x8a\x62\x28\xe0\xcd\x04\x04\xbd\x46\xe3\x12\x71\x78\xaa\xf6\xc3\x2b\x2c\x3a\xd6\xdd\x05\x25\x61\x32\xde\x0b\x6e\x93\xd7\x84\x6e\x6f\x58\x0a\x7f\x74\xfc\x4e\x78\xeb\xb5\x41\x6d\xbf\xe6\x5c\x15\xdb\x2f\x45\x51\xe1\xbe\x17\xc5\x4f\xa4\xf0\x6b\xc2\xf8\xa9\x09\x90\x27\x71\x29\x8e\xfe\xb1\xff\xa7\x40\x7a\x76\x7d\xdd\x48\xf6\x9b\x4d\x7b\xcc\x2c\x6f\x2e\x1e\x3a\x5a\x39\x91\xed\x45\x61\x71\x97\x4a\x66\xb1\x9a\x7c\xe6\x14\xf5\x79\x6d\x4b\xf3\x15\x32\x80\x70\x00\xd3\xc3\x8d\xe6\xfd\xb6\x14\xcd\x7b\x6d\xeb\xfc\x80\xd4\x7e\x29\xf6\x5e\x1b\xab\xed\x68\x4d\xc6\x75\x83\x44\xf7\x59\xfb\xf8\xcb\xc4\xef\xfa\x30\x71\xe5\xeb\xe1\x99\x09\xd1\x6a\xbd\xda\x31\x75\x58\x55\x5f\x2d\xeb\xf7\xdd\x7a\xf0\x6b\xac\x1a\x5a\x71\xd4\xac\xa3\x6c\x63\x44\x6a\xdd\x4d\x93\x38\x57\xce\xf7\x93\x29\x14\xee\xea\xf1\xe4\x36\x64\x9c\x3b\xf6\xdf\x4e\x43\x64\x9b\xe4\xf8\xd0\xe8\x99\x19\x48\x0d\x3e\xc3\x02\xc6\x13\x9b\x88\x6c\x1a\xd2\xcf\xc9\xf4\x7d\xb5\x2f\xe2\x09\xfd\x0e\x45\x36\xb9\x0d\x39\xca\x1a\x0e\xde\xbc\x71\x62\xe1\x26\x11\x92\x1b\x54\x93\x69\x88\xbf\x4d\xde\x4e\x43\x8b\x2f\x76\x32\x0d\xad\x11\xbb\xc9\x14\x16\x8b\x05\xdc\xde\xb6\xb7\x8d\xf6\x89\x90\x58\x21\x56\xd7\x9c\x05\xae\xb7\xaf\xc4\x1f\xd5\xb6\x78\x10\xb5\x21\xa3\x86\x77\xa7\xd5\x4e\xec\x4e\x4e\x1a\x0f\x9c\xde\x9d\xb6\x50\x27\x20\xbe\xbb\x08\xf1\xdd\x6b\x20\xde\x4e\x29\x5e\xae\x94\x4c\x6e\xbb\xc8\x5d\xbe\xf4\x92\x44\xa3\x8b\xc1\x9d\x7e\xc6\xd6\x13\x95\x23\xca\xea\x67\x59\xeb\x14\xcd\x5b\x32\x35\xbc\x6b\xfe\xff\x37\x00\x00\xff\xff\x91\xdb\x58\xd7\x1b\x1a\x00\x00" func repoDiffBoxTmplBytes() ([]byte, error) { return bindataRead( @@ -1432,8 +1432,8 @@ func repoDiffBoxTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "repo/diff/box.tmpl", size: 6577, mode: os.FileMode(0644), modTime: time.Unix(1583774436, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3c, 0x2a, 0xee, 0xfa, 0x1a, 0xc5, 0xb9, 0x10, 0x4, 0xe6, 0xcb, 0xc5, 0xf9, 0xd9, 0x3c, 0xc1, 0xad, 0x3b, 0x62, 0xa, 0xd6, 0x26, 0x6d, 0xfe, 0x4e, 0xb9, 0xcc, 0x38, 0xa, 0xfb, 0xca, 0xa1}} + info := bindataFileInfo{name: "repo/diff/box.tmpl", size: 6683, mode: os.FileMode(0644), modTime: time.Unix(1585851305, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfa, 0xbf, 0xac, 0xd5, 0xea, 0x25, 0x2, 0xe9, 0x98, 0xb1, 0xc6, 0x1e, 0x41, 0x64, 0xc8, 0xf0, 0x9d, 0x13, 0xdc, 0xbd, 0x7d, 0x5e, 0xd9, 0x81, 0xf6, 0x93, 0xeb, 0x17, 0xe0, 0x98, 0xd, 0x6}} return a, nil } @@ -2132,7 +2132,7 @@ func repoSettingsGithooksTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "repo/settings/githooks.tmpl", size: 928, mode: os.FileMode(0644), modTime: time.Unix(1584870152, 0)} + info := bindataFileInfo{name: "repo/settings/githooks.tmpl", size: 928, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x8c, 0xe3, 0x3f, 0xe3, 0x4b, 0xcc, 0x73, 0x4c, 0x9e, 0xc2, 0x69, 0x51, 0x5d, 0x74, 0x56, 0x49, 0xe3, 0x87, 0x9, 0x7e, 0x2c, 0xc4, 0x38, 0xf1, 0x68, 0x96, 0x99, 0xa7, 0x1e, 0xbf, 0x87}} return a, nil } @@ -2157,7 +2157,7 @@ func repoSettingsNavbarTmpl() (*asset, error) { return a, nil } -var _repoSettingsOptionsTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\x5d\x8f\xdb\x36\xd6\xbe\x76\x7e\x05\x5f\xe5\xbd\xd8\x05\xd6\xf6\x26\xdd\x02\x8b\xc2\x1e\xa0\x9b\x26\xbb\x01\xd2\x36\x98\xc9\x22\x97\x06\x2d\x1d\xdb\xc4\x48\x94\x42\x52\xf6\x4c\x5d\xff\xf7\x05\x3f\x24\x91\x12\x25\xd3\xf6\xcc\x24\x03\xa4\x37\x8d\x25\xf2\xf0\x9c\xf3\x9c\x8f\x87\x12\x35\xfb\xbd\x80\xac\x48\xb1\x00\x14\x2d\x31\x87\xe9\x06\x70\x12\xa1\xc9\xe1\xf0\x62\x96\x90\x2d\x8a\x53\xcc\xf9\x3c\x62\x50\xe4\x9c\x88\x9c\xdd\x23\x0e\x42\x10\xba\xe6\x28\x2f\x04\xc9\x29\x8f\xae\x5e\x8c\x6c\x29\x72\xa8\x92\x02\x4c\xcb\x19\xd9\x82\x4a\x82\xe2\x9c\x0a\x4c\x28\x30\x39\xb3\x7d\x73\xcd\x48\xa2\xae\x77\x65\x56\x0b\x4f\x29\xde\x2e\x71\x25\xdc\x95\x20\x76\x90\x6e\x01\xed\x48\x02\x28\xce\xd3\x32\xa3\x6a\x39\xa0\x42\x0b\x1d\x75\xec\xc5\x29\x30\x51\xcb\x6a\xab\x23\xf2\x02\x61\x21\x70\xbc\x81\x04\x19\xa3\xb4\xa0\xd1\x7e\x3f\x21\xaf\xfe\x49\x27\x9f\x98\xd6\x6f\x52\xe9\x37\x59\x62\x4e\xe2\x45\xf5\x33\xaa\x24\x4f\x13\xb2\xbd\xf2\x2d\x52\x2f\xc0\x61\x9d\x35\xaa\x8e\x66\xab\x9c\x65\xd6\x38\xf9\x33\x42\x38\x96\x6e\x9f\x47\xfb\xfd\xe4\x03\xa1\xb7\x87\x43\x84\x32\x10\x9b\x3c\x99\x47\x1f\x7f\xbf\xf9\x54\x4d\x96\xfa\xbd\xb9\xb9\x7e\xf7\x29\xbf\x05\xfa\x9f\x4f\xbf\x7e\x30\x6a\x8c\x46\x33\x42\x8b\x52\x20\x71\x5f\xc0\x3c\xda\x90\x24\x01\x1a\x21\x8a\x33\x98\x47\x5a\x76\x84\xb6\x38\x2d\x61\x1e\x95\x45\x82\x05\xd4\x12\xdd\x80\xf8\x52\x12\x06\x09\x5a\x11\x48\x13\xb4\xdf\x93\x15\x9a\xbc\x65\x6c\x71\x0d\x45\xfe\x1b\xce\xe0\x70\x00\xc6\x72\xb6\xdf\x03\x4d\x0e\x87\x5a\xc6\x68\x96\xe2\x25\xa4\xd2\x16\x1d\x55\x0b\xb9\x72\x74\xd5\xf1\x66\x73\xef\x70\x98\xf1\x02\xd3\x1a\x62\xb8\x13\x48\xae\xbc\x21\x09\x44\x88\x24\x5a\xce\x58\x8e\x1d\xc7\x1b\x4c\xd7\x30\x2e\x58\x9e\x15\x22\xba\x42\xfd\x20\xe9\x91\x0b\x79\x51\xce\x5c\x98\x29\x87\xc3\x6c\x2a\x57\xbb\x9a\x4d\x95\xa2\x8d\xde\xda\x6b\xd5\x72\x5a\x35\xe3\x36\xeb\x82\xf1\xdc\x7e\x3f\xb9\xae\x53\x66\xa2\xfd\x11\xa1\x04\x0b\x3c\xae\x95\xed\x1b\x55\xb9\xb6\x76\x7b\x13\x38\x2e\x06\x6d\xd7\xff\x02\x3c\x66\x44\x65\x65\x88\xf7\x93\x66\xb8\xf4\xff\xff\xfb\x00\x90\x63\x94\x4f\x5a\xce\x90\x20\x60\x06\xb8\x52\x05\x97\x22\xe7\xe4\x0f\x83\x87\x2d\xd9\xb8\xc8\xb9\xc4\xf2\x1d\x9f\x47\x3f\x28\xd4\x2d\x07\x38\xfa\xcf\xa6\xd5\x1a\xcd\xaa\x45\xb5\xdc\x06\xd2\xc2\x13\x33\x35\xb8\xd6\x6a\x8d\x09\xc5\x85\x82\x52\xa0\x6b\xb1\x89\x0e\x87\x9f\x90\x0e\xc8\xca\xd4\x0f\xfa\xc6\x55\x1d\x39\xc5\xc9\xd0\x7d\x86\x25\x27\x22\x28\x69\x76\x7a\xe8\x90\xd6\xea\xbe\x07\xb5\x26\x84\x2b\x21\x06\x9d\xfa\xa7\x2e\x0a\x25\x4b\x7b\x22\xb9\xd6\x33\x6a\x99\x58\x17\x1d\xb2\x42\x34\x17\xc8\x9e\xf4\x9e\xbf\xcb\xd9\x6d\x5d\x7f\x1c\x47\x10\x9a\x12\x0a\xba\x8a\x34\xf6\x1a\x83\xbb\x26\x6e\x09\x27\x4b\x92\x12\x71\xef\xb1\xaf\xd3\x68\x36\x10\xdf\x2e\xf3\x3b\x4b\x6e\xe5\x03\x6d\x76\xc1\xc8\x16\x37\x66\xd7\xe3\x0d\x30\x8e\x09\x1f\xf5\xd8\xc3\x41\x8d\x82\xc4\x60\x64\x8b\x1e\xd2\x59\xaa\xbc\x90\xd1\x26\xbb\xe2\x9f\xe8\x06\xaf\xe0\x70\xe8\xae\xf3\x5b\x99\x49\x5f\xf1\x9e\x9a\xe7\x01\xbd\x91\xbe\xca\xd9\x6d\xb5\x44\x5d\xc6\x8c\x9a\x5d\x57\xd9\x91\xe9\xfe\x32\x53\x5e\xf4\x85\xad\x15\x96\xcb\x52\x88\x9c\x3a\xed\x1b\x80\x22\x7d\xd9\x57\x54\xea\x10\xd5\xad\xc5\x6e\x92\xb3\xa9\x9e\xe6\xcb\x9d\xd9\x54\xf6\xbe\x2a\xca\x5a\x30\x27\x64\x4b\x54\x5f\x76\x42\x31\xb0\x79\x4e\xf1\x16\x0b\x49\x26\xaa\x1e\x5a\xe4\x5c\x44\x08\x68\xac\x63\x22\x2b\x53\x41\x0a\xcc\x84\xd2\x60\x2c\x2b\x78\x40\x87\x3d\x1a\xe0\x76\x42\x1b\x0d\x1c\x68\xad\x36\x95\xe7\x1c\x16\x14\x76\x0b\x33\xae\x37\xaf\x4d\x0b\x37\xf6\x68\xf5\x57\x24\x85\x08\x85\x95\xa3\x33\x71\x6d\x43\x6a\xa9\xe9\x02\x3a\x9a\x61\x4b\xa2\xec\xe0\x66\x99\x04\x52\x10\x30\xd6\x9e\x37\x3d\xf2\x4b\x09\x5c\x8c\x4b\x96\x76\xb1\x9a\xea\xf1\x66\x68\x92\x53\x68\x8d\xeb\x53\x50\xcf\x5b\xc4\x25\x63\x40\x85\xad\x28\x1e\x0a\xba\x76\x95\xf3\x14\x87\x5f\x89\x2c\xdb\x15\xfe\xe1\x1c\x72\x80\x44\x66\x4a\x64\x87\x45\xba\x1a\x86\xf1\xc8\x9e\x5c\xf0\xb2\xc6\xfe\xa0\x3e\x81\x37\x6a\xdd\xad\x78\xea\xc9\x07\xab\x01\xbe\xa5\x78\x99\xc2\x47\x56\xd2\xde\x26\x88\x50\x5f\x85\x35\xbe\x2a\xe4\xec\x33\xfa\x02\x32\xff\x59\xfd\x11\x94\x3a\x46\xa2\x31\xd2\xbd\xe6\x6f\x19\x3a\x10\x1c\x63\xbc\xfd\xa2\x5e\x32\xc0\xa2\x3e\x12\x36\x54\xc3\x43\x5c\xfe\x9e\x0a\x60\x5b\x9c\xf6\xf9\xdb\x29\x52\xc4\x0c\xf6\x74\x20\xa3\x6b\x3d\xc2\xa7\x69\xe3\xd9\x7a\x98\xf1\x6a\xf3\x5b\x7b\x94\x96\xd9\x52\xf6\xc8\x86\x7e\x68\x9f\x36\xda\x46\x01\x26\xfb\xf9\x84\x36\xc5\xe8\x8b\x93\x84\x01\xe7\xfd\x06\x55\x03\x86\xed\x69\x0d\x36\x56\xb5\xaf\xb6\xad\x99\x5c\xe3\xdd\xcf\xfa\xa6\x8f\xf2\x07\x50\x54\x77\x05\x2f\xcb\x75\x98\xd9\xb0\x7b\x1e\xb3\x91\xb7\xda\x8e\xd3\xca\xc3\x7a\xf9\x57\x2a\x60\x63\x7e\x4f\xe3\xe3\x55\x2c\x80\xb6\x1a\xb0\x52\xcc\xc5\x42\x0a\x85\xc4\x1b\x55\x86\xb1\x55\x31\xf2\x01\x73\x71\x73\x4f\xe3\x9a\xcc\x9d\x11\xf7\x1d\x60\x97\x69\x09\x21\xb8\x4a\x35\x17\xa6\x90\x87\x62\xda\xbe\xe3\x30\xc9\x87\x78\xb2\x82\x93\x2d\x96\xde\x7b\xb4\x87\x2b\x8f\xf5\x24\xa5\x52\x3c\x6a\x42\xfa\xff\xc6\x63\xf4\x99\xdc\x12\x34\x1e\xfb\x28\xd9\x10\x6f\xec\x06\xd8\x8e\xdc\x12\x1f\x33\x3c\xba\x21\x32\x26\x98\x31\xba\xc5\x8d\xf9\x3d\x17\x90\x75\x7b\x9c\xd3\x07\xd5\x92\x9a\x83\x09\xcc\xd6\x20\xe6\xd1\x4b\x79\x6d\xe1\xdf\x41\xe9\x9e\x28\x0d\xee\xdf\x42\xf5\x59\x57\xe3\xaf\xe4\xf7\x3d\x93\x70\x23\xb2\x87\xe9\x96\xa4\x0a\x04\xbb\x1f\xb6\x77\xac\xb6\xb2\x09\xe1\xf2\x47\xa5\xad\x7e\xc2\x51\x1b\x1a\x96\x85\xae\x02\x0c\x27\x24\x1f\xda\x9d\x56\x95\x5f\x45\x14\x72\x40\x19\xab\xc9\x11\x12\x78\x49\x68\x02\x77\xf3\xe8\xef\x2d\x5c\xe0\x4e\x00\xa3\x38\x35\x00\x69\x0c\xcd\x2c\x13\x8d\x2b\x9c\xf2\x8a\x3f\xeb\x59\xf3\xe8\xa5\x6a\xc4\xd5\x3c\x0d\xa2\x26\xd8\xda\xfe\x79\xf4\xd2\x91\x6c\xc1\xec\xf7\xde\x5b\x33\xda\x07\xf9\x34\x60\xdb\xdc\x74\x18\x0e\x0b\x47\xb9\x4b\xb8\xd0\x32\xbf\x73\x88\xd0\x11\xb5\xbd\xe0\x77\x3d\x75\xfe\x23\x08\x9c\xa6\xf9\x6e\x51\x94\xcb\x94\xc4\x0e\x62\x03\x0f\x23\x7e\x96\x73\x3e\xaa\x29\xc3\xf9\x74\xdc\xb7\x9d\xe5\x4f\x23\x9b\xcf\x31\xf8\x05\x2b\x3b\xb1\xef\x89\xec\x56\xec\x7b\xb2\x23\x28\x80\x2e\x8c\x7b\xd7\x9e\x87\x8b\xfb\x90\x94\xf5\xc6\x7e\xd7\x53\x7e\x92\xed\x8e\x2b\x99\x6f\xe3\x50\x5b\xda\x1d\x3c\xcc\xb9\xbb\xe3\xab\x28\xe8\xde\x38\xf6\x44\xd3\xb6\xf9\xbf\xd7\x1f\xdc\x0d\x50\xf0\x73\xe2\xce\xc2\x03\x84\xdc\x97\x41\x8a\x0d\xbc\xe7\xbc\x04\xfe\x20\x7c\x80\x28\x51\x0f\xcf\x08\x9c\x64\x33\x8b\x74\x0a\x96\xcb\x09\xd4\xa8\xc1\x8c\xd1\x76\x5f\x40\x0b\xb4\x22\x4f\x47\x0c\x2a\x85\xfd\xdd\xa1\xb6\xf7\x1b\xe6\x06\x82\xe1\xf8\x16\xd8\x39\xf4\xc0\xc2\xb3\x8f\x1f\xb4\x21\x1f\xae\x36\x9f\xb4\x2e\x0f\xc7\x11\xf4\xf2\x95\x89\x4f\x41\x16\x6a\x13\x86\xf9\x82\x27\x34\x2e\x23\x0c\x7d\x19\x38\x44\x19\x8e\x65\xdb\x89\xa4\x61\x38\xf7\x9e\x1b\x6d\x18\xcc\x8b\x41\xe6\xd0\x9f\x16\xbe\xcc\x09\x8d\xa7\x87\xa2\x0f\x8f\x95\x12\x81\x99\x3d\x4c\x25\x8e\xa5\x45\x3b\x34\xfc\x44\xc3\x18\x17\xcc\x35\xec\xf1\x1e\x87\x78\xf9\x86\x3d\xa7\x4d\x39\x9c\x7b\xa1\xac\xc3\x78\xa8\x4d\x3c\xce\x61\x1e\xd6\xfa\x3e\xf2\xd1\xc2\x34\xdc\xc1\xb6\xdc\x55\xce\x32\x2c\x86\xd4\xf1\x8c\x3e\xe2\x5c\xcf\x0c\xe3\x5a\xdf\x9d\x13\x1d\xfb\x4e\x4d\x93\x11\x57\xa4\x38\x86\x4d\x9e\x26\x20\x83\x66\xb2\x9e\xa0\x8d\x10\x05\xff\x69\x3a\x5d\x13\xb1\x29\x97\x93\x38\xcf\xa6\xfb\x92\x03\x3b\x4c\xf7\xd2\xa6\xc3\x54\x97\xb6\xe9\x5e\x15\x8d\x33\xe1\xe9\xda\xa0\xc1\x41\x7f\xa2\x1b\xc1\x5e\xeb\xc7\x49\xa1\x38\xd9\x1c\x90\xf7\xe1\xa5\xb3\x89\x8b\xfb\x74\xf0\x8c\x40\xa5\x98\x3d\xdc\x8b\xd4\x50\x9c\x84\x57\x69\x7f\x9d\xf6\xd6\x64\x9f\x66\xde\x7a\x4c\xcb\x0c\x18\x89\x23\xa4\x6b\x11\x7c\x41\x03\x91\x70\x23\xe5\xa0\x7a\x4e\x5d\x5a\xe7\x51\xe4\xa9\xae\x01\xf5\xd5\xa3\xe6\xa4\x91\x8e\x9c\xf7\xf7\x25\x41\x29\x59\x6f\x04\x5a\x33\xb8\x47\x02\xee\x44\x74\xf5\x97\x97\xaf\x5e\xff\xf0\x8f\xbf\xf6\x1c\x37\xea\x06\x42\xf7\xf7\xb7\x8b\x0c\x4e\x8b\x0d\x3e\x07\x1e\x67\xe2\xe3\x60\xd4\x5a\x22\x00\xa8\x9f\xff\xf5\x66\xfc\xea\xf5\x0f\x7f\x43\xbf\xbc\x7d\xf7\xef\xf1\x45\xa0\x0d\xb4\x59\xcf\x86\xf0\x63\x99\xa6\xe8\x5a\xbf\x0b\xb7\xf7\x85\x1d\xf6\xf0\x06\x53\xf3\xce\xb1\x4c\x53\xfe\x20\x27\x6d\x0a\x29\xe9\xb2\x43\x36\x01\x5b\x48\xbd\xca\x91\x1d\xa4\x1c\x34\x48\x9b\x8c\xd5\xe7\x33\x5a\xa5\xc6\xc5\xef\x59\xad\x2d\xe4\x00\x39\x32\xca\x7a\x29\x51\x6d\x69\x68\x9f\x3e\x8e\x45\xeb\xc4\x93\x32\x94\xac\x69\xce\x60\xb1\xdb\x10\x01\xbc\xc0\x71\xc8\x09\x28\xa5\xf6\x7b\x35\xf1\x73\x3d\x6f\xc0\xe7\x81\x4e\x9f\x74\x75\xf1\x76\xa1\xa1\x34\x7a\x14\x1f\xe9\x4d\x0e\x83\x25\xe6\xc1\xee\x51\xbb\xac\x6b\x35\xe5\x01\x3c\x63\x6b\xb0\xc8\x80\xad\xcf\x70\xcd\x73\x39\xd8\x35\x1a\xf9\xce\xd8\xbc\xe7\x8d\x87\x7f\xdf\x51\x60\x01\x87\xb4\x77\x98\x51\x42\xd7\xc1\xaf\x14\x13\x4c\xd7\xc0\x16\x7f\xe4\xea\xe8\x48\xe8\xcb\xc4\x6a\x15\x21\x73\x18\x69\x19\xed\x37\x8c\x27\x9d\x13\x22\xb2\x36\xf6\x3c\x97\x62\xb2\x23\x0d\x81\xa3\x0e\x9c\xab\x13\x55\x7c\x93\xef\xc6\x59\x9e\xe0\xb4\xc2\x4a\xd7\x52\x75\x69\x1e\xbd\x8c\x73\xba\x05\x26\xf4\x21\x64\x75\x71\x88\x23\x9a\xd1\x47\x30\x54\xea\x36\xda\x6d\x7e\x0c\x94\xb8\xf9\xb1\x99\x54\x1c\x9f\xe3\xd9\xd4\xb8\x91\x64\x1f\xfe\x1b\x3e\x55\xe0\x64\xc3\xd7\x82\x42\x30\x4c\xf9\x0a\x58\x20\x16\xd5\xf0\x07\x04\xc3\x11\x19\x8a\x46\x35\xe9\x14\x38\x06\x5f\x06\xfb\x1d\xdd\x77\x10\xa4\x0f\xa7\x23\x40\x5d\x84\x94\x39\x9f\xb8\x23\xb7\xe4\x38\x4e\xe6\x25\x9a\x3a\xa1\x78\xec\xdc\x84\x0b\xd6\x11\xb4\xda\x82\x2d\xc0\x86\x11\xb3\x26\x86\xbe\x95\xf0\xb4\x8b\xb0\x43\xb7\x4f\x9f\x46\x06\x9c\xb0\x24\xea\xc5\xe5\xdc\x14\xf2\xe3\x31\x08\x47\x2f\x12\x9e\xf4\x69\xfd\xd3\x2a\x59\xf5\xd5\xea\x1f\xe6\xff\x15\x1c\x03\x0d\x74\xb0\x2f\xb5\xf9\x6c\x86\xd3\x14\x69\xbf\x2a\x86\xea\x6b\x20\xad\xaf\xb8\xec\xce\x1b\xd2\x09\x5e\xd8\xd6\x58\x72\x9c\x0f\xb7\x5a\x7a\x55\xfd\x37\x03\xce\xf1\x1a\xd4\x4e\x0d\xa5\xb0\x6a\x3e\xf3\x3a\xd6\x4d\x68\x2e\x48\x0c\x7c\xf1\xaa\x39\x8e\xef\xf8\xf5\xa2\xaf\xaf\x7a\x4e\x0c\x85\x9f\x17\xaa\xbc\xd3\x65\x21\x0e\x53\x9b\x39\x64\x30\xa0\x68\x4b\x23\x16\x82\x88\xb4\x26\x3b\xe6\xd8\x99\xf7\x4b\x83\xce\xc7\x49\xce\x39\x34\x87\x8a\xf6\x70\x26\xf7\x33\x31\x57\xed\x13\xbf\x01\x73\x88\x6f\xe0\xd7\x58\xee\xb9\x4a\xbb\x54\x39\x1f\x0d\x2a\x9b\xd5\xb6\x5f\xc3\x50\x3f\x5b\x6b\xef\x1d\x30\x8d\x21\xb5\x58\xb0\xef\xc0\xbe\x1a\xa3\x14\xb6\xd2\xb9\x53\xe0\x9a\xe3\xef\x01\x04\x6c\x11\xe7\x74\x45\x58\xd6\x29\x5c\x56\xb4\xd6\x44\xba\x55\x10\xac\x32\x7e\x2c\xb7\xbd\x8c\xe4\xac\xe4\xb6\x98\xc5\xd3\x66\x77\x1d\xe8\x9e\xf4\x46\xb3\x25\x3b\x79\xfe\xeb\x6f\xb2\x3c\xd4\xfe\xfd\x5e\x1f\x2e\xaa\x0f\xb8\x14\x79\x9c\x67\x85\xec\xc8\xf3\x28\x5f\xad\x7a\x4a\xc6\xe9\x6a\x53\xd8\x2d\x72\xd9\x71\xfb\x74\xef\xfa\x5e\x0d\x1f\xb2\xa4\x25\xd3\x98\xd3\xbe\x1a\x6a\xd3\x33\x2a\x83\x19\xbe\x55\x2f\x2f\xfd\x1b\xa0\x80\x22\x78\xbc\xf6\x79\x68\xe4\x59\x95\xaf\x26\x84\x4f\x5b\xf7\x0c\xa9\xf4\x54\xbd\x80\xa2\xd7\x9a\xdc\x2a\x79\x5d\xbe\x68\x7d\xa4\x78\xb2\x70\xf5\x91\xe2\xab\xce\x0a\x5d\x5e\xfb\x75\x0b\xac\x81\xf1\x7b\x79\x7d\x92\xf2\xfa\x8c\x4a\x91\x61\x62\x7d\x3b\xfc\xa0\x5a\x74\xe4\x71\x48\x60\xa9\xb2\x1f\x47\x9c\x55\xaa\x94\x80\xe7\x58\xaf\xec\x07\x1a\x96\x84\x76\xbe\x7c\x8b\xc4\xcd\xc2\xee\x7b\x71\xf9\x5e\x5c\x1e\xbc\xb8\xd4\xad\xb4\xde\xf5\x75\xfe\xe0\xcd\x2a\xcf\x45\xf5\xa7\x79\xfe\x17\x00\x00\xff\xff\x06\xaa\xfc\x43\xfe\x47\x00\x00" +var _repoSettingsOptionsTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\x5d\x8f\xdb\x36\xd6\xbe\x9e\xfc\x0a\xbe\xca\x0b\x74\x17\x58\xdb\x9b\x74\x0b\x2c\x0a\x7b\x80\x6e\x9b\xec\x06\x48\xdb\x60\x26\x8b\x5e\x2c\x16\x02\x2d\x1d\xdb\xc4\x48\x94\x4a\x52\xf6\x4c\x5d\xff\xf7\x05\x3f\x24\x91\x12\x25\xd3\x1e\x67\x9a\x01\xd2\x9b\xc6\x12\x79\x78\xce\x79\xce\xc7\x43\x89\x9a\xfd\x5e\x40\x5e\x66\x58\x00\x8a\x96\x98\xc3\x6c\x03\x38\x8d\xd0\xf4\x70\x78\x31\x4f\xc9\x16\x25\x19\xe6\x7c\x11\x31\x28\x0b\x4e\x44\xc1\x1e\x10\x07\x21\x08\x5d\x73\x54\x94\x82\x14\x94\x47\xd7\x2f\xae\x6c\x29\x72\xa8\x92\x02\x4c\xcb\xb9\xb2\x05\x55\x04\x25\x05\x15\x98\x50\x60\x72\x66\xf7\xe6\x9a\x91\x54\x5d\xef\xcb\xac\x17\x9e\x51\xbc\x5d\xe2\x5a\xb8\x2b\x41\xec\x20\xdb\x02\xda\x91\x14\x50\x52\x64\x55\x4e\xd5\x72\x40\x85\x16\x7a\xd5\xb3\x17\x67\xc0\x44\x23\xab\xab\x8e\x28\x4a\x84\x85\xc0\xc9\x06\x52\x64\x8c\xd2\x82\xae\xf6\xfb\x29\x79\xf5\x77\x3a\xfd\xc8\xb4\x7e\xd3\x5a\xbf\xe9\x12\x73\x92\xc4\xf5\xcf\xa8\x96\x3c\x4b\xc9\xf6\xda\xb7\x48\xb3\x00\x87\x75\xde\xaa\x7a\x35\x5f\x15\x2c\xb7\xc6\xc9\x9f\x11\xc2\x89\x74\xfb\x22\xda\xef\xa7\xef\x09\xbd\x3b\x1c\x22\x94\x83\xd8\x14\xe9\x22\xfa\xf0\xf3\xed\xc7\x7a\xb2\xd4\xef\xfb\xdb\x9b\xb7\x1f\x8b\x3b\xa0\xff\xfa\xf8\xe3\x7b\xa3\xc6\xd5\xd5\x9c\xd0\xb2\x12\x48\x3c\x94\xb0\x88\x36\x24\x4d\x81\x46\x88\xe2\x1c\x16\x91\x96\x1d\xa1\x2d\xce\x2a\x58\x44\x55\x99\x62\x01\x8d\x44\x37\x20\x7e\xad\x08\x83\x14\xad\x08\x64\x29\xda\xef\xc9\x0a\x4d\xdf\x30\x16\xdf\x40\x59\xfc\x84\x73\x38\x1c\x80\xb1\x82\xed\xf7\x40\xd3\xc3\xa1\x91\x71\x35\xcf\xf0\x12\x32\x69\x8b\x8e\xaa\x58\xae\x1c\x5d\xf7\xbc\xd9\xde\x3b\x1c\xe6\xbc\xc4\xb4\x81\x18\xee\x05\x92\x2b\x6f\x48\x0a\x11\x22\xa9\x96\x33\x91\x63\x27\xc9\x06\xd3\x35\x4c\x4a\x56\xe4\xa5\x88\xae\xd1\x30\x48\x7a\x64\x2c\x2f\xca\x99\xb1\x99\x72\x38\xcc\x67\x72\xb5\xeb\xf9\x4c\x29\xda\xea\xad\xbd\x56\x2f\xa7\x55\x33\x6e\xb3\x2e\x18\xcf\xed\xf7\xd3\x9b\x26\x65\xa6\xda\x1f\x11\x4a\xb1\xc0\x93\x46\xd9\xa1\x51\xb5\x6b\x1b\xb7\xb7\x81\xe3\x62\xd0\x75\xfd\x0f\xc0\x13\x46\x54\x56\x86\x78\x3f\x6d\x87\x4b\xff\xff\xbf\x0f\x00\x39\x46\xf9\xa4\xe3\x0c\x09\x02\x66\x80\x6b\x55\x70\x25\x0a\x4e\x7e\x33\x78\xd8\x92\x8d\x8b\x9c\x4b\xac\xd8\xf1\x45\xf4\xb5\x42\xdd\x72\x80\xa3\xff\x7c\x56\xaf\xd1\xae\x5a\xd6\xcb\x6d\x20\x2b\x3d\x31\xd3\x80\x6b\xad\xd6\x9a\x50\x3e\x52\x50\x06\x74\x2d\x36\xd1\xe1\xf0\x2d\xd2\x01\x59\x9b\xfa\x5e\xdf\xb8\x6e\x22\xa7\x3c\x19\xba\x5f\x60\xc9\x89\x08\x4a\x9a\x9d\x1e\x3a\xa6\xb5\xba\xef\x41\xad\x0d\xe1\x5a\x88\x41\xa7\xf9\xa9\x8b\x42\xc5\xb2\x81\x48\x6e\xf4\x8c\x3a\x26\x36\x45\x87\xac\x10\x2d\x04\xb2\x27\xbd\xe3\x6f\x0b\x76\xd7\xd4\x1f\xc7\x11\x84\x66\x84\x82\xae\x22\xad\xbd\xc6\xe0\xbe\x89\x5b\xc2\xc9\x92\x64\x44\x3c\x78\xec\xeb\x35\x9a\x0d\x24\x77\xcb\xe2\xde\x92\x5b\xfb\x40\x9b\x5d\x32\xb2\xc5\xad\xd9\xcd\x78\x03\x8c\x63\xc2\x07\x3d\xf6\x70\x50\xa3\x20\x35\x18\xd9\xa2\xc7\x74\x96\x2a\xc7\x32\xda\x64\x57\xfc\x1d\xdd\xe2\x15\x1c\x0e\xfd\x75\x7e\xaa\x72\xe9\x2b\x3e\x50\xf3\x3c\xa0\xb7\xd2\x57\x05\xbb\xab\x97\x68\xca\x98\x51\xb3\xef\x2a\x3b\x32\xdd\x5f\x66\xca\x8b\xa1\xb0\xb5\xc2\x72\x59\x09\x51\x50\xa7\x7d\x03\x50\xa4\x2f\xfb\x8a\x4a\x13\xa2\xba\xb5\xd8\x4d\x72\x3e\xd3\xd3\x7c\xb9\x33\x9f\xc9\xde\x57\x47\x59\x07\xe6\x94\x6c\x89\xea\xcb\x4e\x28\x06\x36\xcf\x19\xde\x62\x21\xc9\x44\xdd\x43\xcb\x82\x8b\x08\x01\x4d\x74\x4c\xe4\x55\x26\x48\x89\x99\x50\x1a\x4c\x64\x05\x0f\xe8\xb0\x47\x03\xdc\x4e\x68\xa3\x81\x03\xad\xd5\xa6\x8a\x82\x43\x4c\x61\x17\x9b\x71\x83\x79\x6d\x5a\xb8\xb1\x47\xab\xbf\x22\x19\x44\x28\xac\x1c\x9d\x89\x6b\x17\x52\x4b\x4d\x17\xd0\xab\x39\xb6\x24\xca\x0e\x6e\x96\x49\x21\x03\x01\x13\xed\x79\xd3\x23\x7f\xad\x80\x8b\x49\xc5\xb2\x3e\x56\x33\x3d\xde\x0c\x4d\x0b\x0a\x9d\x71\x43\x0a\xea\x79\x71\x52\x31\x06\x54\xd8\x8a\xe2\xb1\xa0\xeb\x56\x39\x4f\x71\xf8\x91\xc8\xb2\x5d\xe3\x1f\xce\x21\x47\x48\x64\xae\x44\xf6\x58\xa4\xab\x61\x18\x8f\x1c\xc8\x05\x2f\x6b\x1c\x0e\xea\x13\x78\xa3\xd6\xdd\x8a\xa7\x81\x7c\xb0\x1a\xe0\x1b\x8a\x97\x19\x7c\x60\x15\x1d\x6c\x82\x08\x0d\x55\x58\xe3\xab\x52\xce\x3e\xa3\x2f\x20\xf3\x9f\xd5\x1f\x41\xa9\x63\x24\x1a\x23\xdd\x6b\xfe\x96\xa1\x03\xc1\x31\xc6\xdb\x2f\x9a\x25\x03\x2c\x1a\x22\x61\x63\x35\x3c\xc4\xe5\xef\xa8\x00\xb6\xc5\xd9\x90\xbf\x9d\x22\x45\xcc\x60\x4f\x07\x32\xba\x36\x23\x7c\x9a\xb6\x9e\x6d\x86\x19\xaf\xb6\xbf\xb5\x47\x69\x95\x2f\x65\x8f\x6c\xe9\x87\xf6\x69\xab\x6d\x14\x60\xb2\x9f\x4f\x68\x53\x8c\xbe\x38\x4d\x19\x70\x3e\x6c\x50\x3d\x60\xdc\x9e\xce\x60\x63\x55\xf7\x6a\xd7\x9a\xe9\x0d\xde\x7d\xa7\x6f\xfa\x28\x7f\x00\x45\x75\x57\xf0\xb2\x5c\x87\x99\x8d\xbb\xe7\x53\x36\xf2\x4e\xdb\x71\x5a\x79\x58\x2f\xff\x83\x0a\xd8\x84\x3f\xd0\xe4\x78\x15\x0b\xa0\xad\x06\xac\x0c\x73\x11\x4b\xa1\x90\x7a\xa3\xca\x30\xb6\x3a\x46\xde\x63\x2e\x6e\x1f\x68\xd2\x90\xb9\x33\xe2\xbe\x07\xec\x32\xab\x20\x04\x57\xa9\x66\x6c\x0a\x79\x28\xa6\xdd\x3b\x0e\x93\xbc\xc4\x93\x15\x9c\x6e\xb1\xf4\xde\x27\x7b\xb8\xf2\xa9\x9e\xa4\xd4\x8a\x47\x6d\x48\xff\xdf\x64\x82\x7e\x21\x77\x04\x4d\x26\x3e\x4a\x36\xc6\x1b\xfb\x01\xb6\x23\x77\xc4\xc7\x0c\x8f\x6e\x88\x8c\x09\x66\x8c\x6e\x71\x13\xfe\xc0\x05\xe4\xfd\x1e\xe7\xf4\x41\xb5\xa4\xe6\x60\x02\xb3\x35\x88\x45\xf4\x52\x5e\x8b\xd5\x50\x75\xbd\xa2\x6a\xae\x34\xa6\xac\xc4\x7f\xd4\xf4\xaf\x70\x96\x15\xbb\xb8\xac\x96\x19\x49\x94\x90\xaf\xfe\xeb\xd9\x70\xe9\x16\x2a\xfd\x33\xbc\xe3\x1a\x72\x46\x13\x2e\x4a\x9d\xa1\x47\x18\x6e\x00\x0f\x10\xe3\x8a\xd4\x71\x63\xb7\xcf\xee\x06\xd7\x56\x36\x25\x5c\xfe\xa8\xb5\xd5\x0f\x44\x1a\xbf\x84\x25\xad\xab\x00\xc3\x29\x29\xc6\x36\xb3\x75\xa3\x50\x01\x88\x1c\x0c\x27\x6a\x72\x84\x04\x5e\x12\x9a\xc2\xfd\x22\xfa\x6b\x07\x46\xb8\x17\xc0\x28\xce\x0c\x9e\x1a\x72\x33\xcb\x04\xef\x0a\x67\xbc\xa6\xdb\x7a\xd6\x22\x7a\xa9\xfa\x76\x3d\xcf\xc2\xdc\xd8\xbf\x88\x5e\x3a\x92\xe3\x96\x24\xf9\xbd\xf7\xc6\x8c\xf6\x41\x3e\x0b\xd8\x65\xb7\x0d\x89\x43\xec\x28\xf7\x18\xea\xb4\x2c\xee\x1d\xde\x74\x44\x6d\x2f\xf8\x7d\x4f\x9d\xff\xc4\xa2\x97\x3c\x01\xcf\x2e\xbe\x93\x73\x3e\xa8\x29\xe3\xf9\x74\xdc\xb7\xbd\xe5\x4f\xe3\xa6\xcf\x31\xf8\x05\xab\x7a\xb1\xef\x89\xec\x4e\xec\x0f\x65\xc7\xa3\x2b\xe2\x45\xd3\xc4\x35\xff\x72\x69\x12\x92\xe1\xde\x54\xe9\x3b\xd6\x4f\xe1\xdd\x71\x15\xf3\x6d\x4b\x1a\x4b\xfb\x83\xc7\x19\x7d\x7f\x7c\x1d\x34\xfd\x1b\xc7\x9e\x97\xda\x36\xff\xfb\xe6\xbd\xbb\xbd\x0a\x7e\x0a\xdd\x5b\x78\x84\xee\xfb\x12\x4e\x71\x8d\x77\x9c\x57\xc0\x2f\xc2\x36\x88\x12\x75\x79\xbe\xe1\xe4\xa6\x59\xa4\x57\xdf\x5c\xc6\xa1\x46\x9d\x94\x60\x5a\xee\x48\x8a\x69\x47\x3d\x82\x76\xe8\x15\x9e\x8e\x78\xd4\x0a\xfb\xbb\x4f\xe3\xa0\xcf\x98\x7b\x08\x86\x93\x3b\x60\xe7\xd0\x8f\x6e\x00\x78\xf8\x87\x35\x24\xa0\x3c\x7d\xd4\xba\x5c\x8e\x83\xe8\xe5\x6b\x13\x9f\x82\x8c\x34\x26\x8c\xf3\x11\x4f\x68\x3c\x8e\x90\x0c\xa5\xec\x18\x25\x39\x96\x6d\x27\x92\x92\xf1\xdc\x7b\x6e\xb4\x64\x34\x2f\x46\x99\xc9\x70\x5a\x0c\x66\xce\x05\x4a\xe7\xa5\x73\xa8\x63\xce\xe5\x73\x28\xb0\x14\x8c\x93\x95\x63\x79\xd4\x8d\x25\x3f\x95\x31\xc6\x05\xb3\x19\x7b\xbc\xc7\x21\x5e\x46\x63\xcf\xe9\x92\x1a\xe7\x5e\x28\xaf\x31\x1e\xea\x52\x9b\x73\xb8\x8d\xb5\xbe\x8f\xde\x74\x30\x0d\x77\xb0\x2d\x77\x55\xb0\x1c\x8b\x31\x75\x3c\xa3\x8f\x38\xd7\x33\xc3\xb8\xd6\x77\xe7\x44\xc7\xbe\x55\xd3\x64\xc4\x95\x19\x4e\x60\x53\x64\x29\xc8\xa0\x99\xae\xa7\x68\x23\x44\xc9\xbf\x9d\xcd\xd6\x44\x6c\xaa\xe5\x34\x29\xf2\xd9\xbe\xe2\xc0\x0e\xb3\xbd\xb4\xe9\x30\xd3\xe9\x3a\xdb\xab\x2a\x73\x26\x3c\x7d\x1b\x34\x38\xe8\x77\x74\x2b\xd8\x6b\xfd\x38\x2c\x14\x27\x9b\x65\xf2\x21\xbc\x74\x36\x71\xf1\x90\x8d\x9e\x71\xa8\x15\xb3\x87\x7b\x91\x1a\x8b\x93\xf0\xb2\xee\x2f\xec\xde\x22\xee\xd3\xcc\x5b\xc0\x69\x95\x03\x23\x49\x84\x74\x2d\x82\x5f\xd1\x48\x24\xdc\x4a\x39\xa8\x99\xd3\x94\xd6\x45\x14\x79\xaa\x6b\x40\x7d\xf5\xa8\x39\x6d\xa5\x23\xe7\xfc\x41\x45\x50\x46\xd6\x1b\x81\xd6\x0c\x1e\x90\x80\x7b\x11\x5d\xff\xe9\xe5\xab\xd7\x5f\xff\xed\xcf\x03\xc7\xa5\xfa\x81\xd0\xff\xfd\xf9\x22\x83\xb3\x72\x83\xcf\x81\xc7\x99\xf8\x69\x30\xea\x2c\x11\x00\xd4\x77\xff\xf8\x7e\xf2\xea\xf5\xd7\x7f\x41\x3f\xbc\x79\xfb\xcf\xc9\xa3\x40\x1b\x69\xb3\x9e\x2d\xe7\x87\x2a\xcb\xd0\x8d\x7e\x97\x6f\xef\x3c\x7b\xec\xe1\x7b\x4c\xcd\x3b\xd3\x2a\xcb\xf8\x45\x4e\x0a\x95\x52\xd2\xe3\x0e\x09\x05\x6c\x52\xf5\x2a\x47\xf6\xa8\x72\x50\xec\x27\xc2\x8e\xd5\xe7\x53\x60\xa5\xc6\xa3\xdf\x13\x5b\x7b\xce\x11\x72\x64\x94\xf5\x52\xa2\xc6\xd2\xd0\x3e\x7d\x1c\x8b\xce\x89\x2d\x65\x28\x59\xd3\x82\x41\xbc\xdb\x10\x01\xbc\xc4\x49\xc8\x09\x2e\xa5\xf6\x3b\x35\xf1\x97\x66\xde\x88\xcf\x03\x9d\x3e\xed\xeb\xe2\xed\x42\x63\x69\xf4\x49\x7c\xa4\x89\x3b\x83\x25\xe6\xc1\xee\x51\xdb\xb2\x1b\x35\xe5\x02\x9e\xb1\x35\x88\x73\x60\xeb\x33\x5c\xf3\x5c\x0e\xa6\x5d\x5d\xf9\xce\x08\xbd\xe3\xad\x87\x7f\xde\x51\x60\x01\x87\xcc\x77\x98\x51\x42\xd7\xc1\xaf\x44\x53\x4c\xd7\xc0\xe2\xdf\x0a\x75\xf4\x25\xf4\x65\x68\xbd\x8a\x90\x39\x8c\xb4\x8c\xee\x1b\xd2\x93\xce\x39\x11\x59\x1b\x07\x1e\x64\x31\xd9\x91\xc6\xc0\x51\x07\xe6\xd5\x89\x30\xbe\x29\x76\x93\xbc\x48\x71\x56\x63\xa5\x6b\xa9\xba\xb4\x88\x5e\x26\x05\xdd\x02\x13\xfa\x10\xb5\xba\x38\xc6\x11\xcd\xe8\x23\x18\x2a\x75\x5b\xed\x36\xdf\x04\x4a\xdc\x7c\xd3\x4e\x2a\x8f\xcf\xf1\x6c\x6a\xdc\x48\xb2\x0f\x2f\x8e\x9f\x8a\x70\xb2\xe1\x8f\x82\x42\x30\x4c\xf9\x0a\x58\x20\x16\xf5\xf0\x0b\x82\xe1\x88\x0c\x45\xa3\x9e\x74\x0a\x1c\xa3\x6f\xa7\xfd\x8e\x1e\x3a\xc8\x32\x84\xd3\x11\xa0\x1e\x85\x94\x39\x5f\xb9\x23\x77\xe4\x38\x4e\xe6\xad\x9e\x3a\x61\x79\xec\xdc\x87\x0b\xd6\x11\xb4\xba\x82\x2d\xc0\xc6\x11\xb3\x26\x86\xbe\xf7\xf0\xb4\x8b\xb0\x43\xc3\x4f\x9f\x46\x06\x9c\xb0\x24\x1a\xc4\xe5\xdc\x14\xf2\xe3\x31\x0a\xc7\x20\x12\x9e\xf4\xe9\xfc\xd3\x2a\x59\xcd\xd5\xfa\x1f\xe6\xff\x35\x1c\x23\x0d\x74\xb4\x2f\x75\xf9\x6c\x8e\xb3\x0c\x69\xbf\x2a\x86\xea\x6b\x20\x9d\xaf\xd0\xec\xce\x1b\xd2\x09\x5e\xd8\xd6\x58\x72\x9c\x0f\xcf\x3a\x7a\xd5\xfd\x37\x07\xce\xf1\x1a\xd4\x4e\x0d\x65\xb0\x6a\x3f\x53\x3b\xd6\x4d\x68\x21\x48\x02\x3c\x7e\xd5\x7e\x4e\xe0\xf8\xf5\x51\x5f\x8f\x0d\x9c\x78\x0a\x3f\xef\x54\x7b\xa7\xcf\x42\x1c\xa6\x36\x77\xc8\x60\x40\xd1\x96\x46\xc4\x82\x88\xac\x21\x3b\xe6\xd8\x9c\xf7\x4b\x89\xde\xc7\x55\xce\x39\x3a\x87\x8a\x0e\x70\x26\xf7\x33\x37\x57\xed\x13\xbf\x61\x73\x88\x6f\xe0\xd7\x64\xee\xb9\x50\xbb\x54\x39\x1f\x3d\x2a\x9b\xd5\xb6\x5f\xc3\xd0\x3c\x5b\xeb\xee\x1d\x30\x4d\x20\xb3\x58\xb0\xef\x83\x03\x35\x46\x29\x6c\xa5\x73\xaf\xc0\xb5\xc7\xf7\x03\x08\x58\x9c\x14\x74\x45\x58\xde\x2b\x5c\x56\xb4\x36\x44\xba\x53\x10\xac\x32\x7e\x2c\xb7\xbd\x8c\xe4\xac\xe4\xb6\x98\xc5\xd3\x66\x77\x13\xe8\x9e\xf4\x46\xf3\x25\x3b\x79\xfe\xeb\xcf\xb2\x3c\x34\xfe\xfd\x52\x1f\x1e\x55\x1f\x70\x25\x8a\xa4\xc8\x4b\xd9\x91\x17\x51\xb1\x5a\x0d\x94\x8c\xd3\xd5\xa6\xb0\x8b\x0b\xd9\x71\x87\x74\xef\xfb\x5e\x0d\x1f\xb3\xa4\x23\xd3\x98\xd3\xbd\x1a\x6a\xd3\x33\x2a\x83\x39\xbe\x53\x2f\x2f\xfd\x1b\xa0\x80\x22\x78\xbc\xf6\x79\x68\xe4\x59\x95\xaf\x21\x84\x4f\x5b\xf7\x0c\xa9\xf4\x54\xbd\x80\xa2\xd7\x99\xdc\x29\x79\x7d\xbe\x68\x7d\x64\x79\xb2\x70\xf5\x91\xe5\xab\xde\x0a\x7d\x5e\xfb\xc7\x16\x58\x03\xe3\x97\xf2\xfa\x24\xe5\xf5\x19\x95\x22\xc3\xc4\x86\x76\xf8\x41\xb5\xe8\xc8\xe3\x90\xc0\x52\x65\x3f\x8e\x38\xab\x54\x29\x01\xcf\xb1\x5e\xd9\x0f\x34\x2c\x09\xdd\x7c\xf9\x1c\x89\x9b\x85\xdd\x97\xe2\xf2\xa5\xb8\x5c\xbc\xb8\x34\xad\xb4\xd9\xf5\xf5\xfe\x60\xcf\xaa\x28\x44\xfd\xa7\x85\xfe\x17\x00\x00\xff\xff\xdf\x26\x21\xbd\xbe\x48\x00\x00" func repoSettingsOptionsTmplBytes() ([]byte, error) { return bindataRead( @@ -2172,8 +2172,8 @@ func repoSettingsOptionsTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "repo/settings/options.tmpl", size: 18430, mode: os.FileMode(0644), modTime: time.Unix(1583774436, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x27, 0x50, 0xc7, 0xeb, 0xde, 0x6b, 0x71, 0x75, 0xb1, 0x89, 0xbb, 0x51, 0xc3, 0x4, 0xe4, 0x5d, 0x5d, 0x66, 0x33, 0x0, 0x6d, 0xae, 0xee, 0x8c, 0x13, 0x12, 0x48, 0xde, 0x79, 0x1d, 0x1e}} + info := bindataFileInfo{name: "repo/settings/options.tmpl", size: 18622, mode: os.FileMode(0644), modTime: time.Unix(1586528224, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0x2f, 0x8a, 0x1c, 0xa4, 0xd9, 0xe4, 0x32, 0xaf, 0x11, 0xc2, 0xec, 0xfa, 0x30, 0xe0, 0x67, 0xa1, 0xb9, 0xba, 0x39, 0x88, 0x85, 0x40, 0x38, 0xbf, 0x1a, 0x90, 0xb4, 0xa4, 0xc4, 0xff, 0xa5}} return a, nil } @@ -2252,7 +2252,7 @@ func repoSettingsWebhookDingtalkTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "repo/settings/webhook/dingtalk.tmpl", size: 665, mode: os.FileMode(0644), modTime: time.Unix(1584877872, 0)} + info := bindataFileInfo{name: "repo/settings/webhook/dingtalk.tmpl", size: 665, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x8d, 0xcf, 0x8d, 0x6b, 0xf9, 0x4, 0xe0, 0xcb, 0xdc, 0x54, 0x4d, 0x49, 0x8a, 0xf1, 0x61, 0xba, 0x5e, 0x76, 0x48, 0x2, 0x3, 0xa6, 0xb5, 0xc5, 0xd8, 0x20, 0x67, 0xc1, 0x98, 0x73, 0x37}} return a, nil } @@ -2272,7 +2272,7 @@ func repoSettingsWebhookDiscordTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "repo/settings/webhook/discord.tmpl", size: 1217, mode: os.FileMode(0644), modTime: time.Unix(1584877671, 0)} + info := bindataFileInfo{name: "repo/settings/webhook/discord.tmpl", size: 1217, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x5f, 0xec, 0x8, 0x7c, 0xb0, 0xcb, 0x7f, 0x47, 0xc9, 0xe8, 0x35, 0x65, 0xbe, 0x44, 0xd4, 0x36, 0x34, 0xd7, 0x47, 0x2, 0xcc, 0xf3, 0x7f, 0xdf, 0xa6, 0xe3, 0x30, 0x5a, 0x7a, 0xf2, 0xe6}} return a, nil } @@ -2292,7 +2292,7 @@ func repoSettingsWebhookGogsTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "repo/settings/webhook/gogs.tmpl", size: 1478, mode: os.FileMode(0644), modTime: time.Unix(1584876104, 0)} + info := bindataFileInfo{name: "repo/settings/webhook/gogs.tmpl", size: 1478, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x26, 0xa8, 0x9, 0xef, 0xbe, 0x27, 0x7c, 0x4c, 0x80, 0x9f, 0x72, 0x94, 0xa7, 0x13, 0x74, 0xe9, 0x2, 0x4d, 0x5e, 0x6b, 0x67, 0x13, 0x91, 0x49, 0xdd, 0xb8, 0xea, 0x3e, 0x94, 0x2, 0x4c}} return a, nil } @@ -2332,7 +2332,7 @@ func repoSettingsWebhookListTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "repo/settings/webhook/list.tmpl", size: 2048, mode: os.FileMode(0644), modTime: time.Unix(1584878453, 0)} + info := bindataFileInfo{name: "repo/settings/webhook/list.tmpl", size: 2048, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0xc4, 0xff, 0x53, 0xd3, 0x99, 0x7c, 0xfb, 0x28, 0x44, 0x9f, 0xb5, 0x7c, 0xe7, 0xb0, 0xad, 0xbe, 0xe4, 0x77, 0x7b, 0x25, 0xc4, 0x63, 0x9, 0xd2, 0x35, 0x28, 0x7a, 0xb4, 0x24, 0x19, 0x46}} return a, nil } @@ -2372,7 +2372,7 @@ func repoSettingsWebhookSettingsTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "repo/settings/webhook/settings.tmpl", size: 5012, mode: os.FileMode(0644), modTime: time.Unix(1584876630, 0)} + info := bindataFileInfo{name: "repo/settings/webhook/settings.tmpl", size: 5012, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xca, 0xf8, 0xb1, 0x40, 0xb, 0x78, 0xcc, 0x74, 0x3e, 0x89, 0xde, 0xfa, 0xda, 0x23, 0x76, 0x81, 0xda, 0xb1, 0x3f, 0xef, 0xec, 0x3d, 0x98, 0xa7, 0xd0, 0xa8, 0x16, 0xea, 0x3d, 0x8d, 0x45}} return a, nil } @@ -2392,7 +2392,7 @@ func repoSettingsWebhookSlackTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "repo/settings/webhook/slack.tmpl", size: 1480, mode: os.FileMode(0644), modTime: time.Unix(1584877665, 0)} + info := bindataFileInfo{name: "repo/settings/webhook/slack.tmpl", size: 1480, mode: os.FileMode(0644), modTime: time.Unix(1585058589, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x90, 0xae, 0xea, 0xe4, 0x8, 0x4, 0xfe, 0x98, 0xe6, 0xa3, 0x79, 0x5e, 0x79, 0x21, 0xdb, 0x16, 0xc8, 0xcd, 0x46, 0x18, 0x7a, 0xb2, 0xea, 0x2e, 0xd2, 0xa5, 0xe1, 0xf5, 0x99, 0xab, 0xf9}} return a, nil } diff --git a/internal/auth/auth.go b/internal/auth/auth.go index 05751c050..fe4ad6794 100644 --- a/internal/auth/auth.go +++ b/internal/auth/auth.go @@ -6,7 +6,6 @@ package auth import ( "strings" - "time" "github.com/go-macaron/session" gouuid "github.com/satori/go.uuid" @@ -48,18 +47,17 @@ func SignedInID(c *macaron.Context, sess session.Store) (_ int64, isTokenAuth bo // Let's see if token is valid. if len(tokenSHA) > 0 { - t, err := db.GetAccessTokenBySHA(tokenSHA) + t, err := db.AccessTokens.GetBySHA(tokenSHA) if err != nil { - if !db.IsErrAccessTokenNotExist(err) && !db.IsErrAccessTokenEmpty(err) { + if !db.IsErrAccessTokenNotExist(err) { log.Error("GetAccessTokenBySHA: %v", err) } return 0, false } - t.Updated = time.Now() - if err = db.UpdateAccessToken(t); err != nil { + if err = db.AccessTokens.Save(t); err != nil { log.Error("UpdateAccessToken: %v", err) } - return t.UID, true + return t.UserID, true } } @@ -90,7 +88,7 @@ func SignedInUser(ctx *macaron.Context, sess session.Store) (_ *db.User, isBasic if uid <= 0 { if conf.Auth.EnableReverseProxyAuthentication { - webAuthUser := ctx.Req.Header.Get(conf.Security.ReverseProxyAuthenticationUser) + webAuthUser := ctx.Req.Header.Get(conf.Auth.ReverseProxyAuthenticationHeader) if len(webAuthUser) > 0 { u, err := db.GetUserByName(webAuthUser) if err != nil { @@ -127,7 +125,7 @@ func SignedInUser(ctx *macaron.Context, sess session.Store) (_ *db.User, isBasic if len(auths) == 2 && auths[0] == "Basic" { uname, passwd, _ := tool.BasicAuthDecode(auths[1]) - u, err := db.UserLogin(uname, passwd, -1) + u, err := db.Users.Authenticate(uname, passwd, -1) if err != nil { if !db.IsErrUserNotExist(err) { log.Error("Failed to authenticate user: %v", err) diff --git a/internal/auth/ldap/ldap.go b/internal/auth/ldap/ldap.go index 29d95560c..d8f8458ed 100644 --- a/internal/auth/ldap/ldap.go +++ b/internal/auth/ldap/ldap.go @@ -19,9 +19,9 @@ type SecurityProtocol int // Note: new type must be added at the end of list to maintain compatibility. const ( - SECURITY_PROTOCOL_UNENCRYPTED SecurityProtocol = iota - SECURITY_PROTOCOL_LDAPS - SECURITY_PROTOCOL_START_TLS + SecurityProtocolUnencrypted SecurityProtocol = iota + SecurityProtocolLDAPS + SecurityProtocolStartTLS ) // Basic LDAP authentication service @@ -144,7 +144,7 @@ func dial(ls *Source) (*ldap.Conn, error) { ServerName: ls.Host, InsecureSkipVerify: ls.SkipVerify, } - if ls.SecurityProtocol == SECURITY_PROTOCOL_LDAPS { + if ls.SecurityProtocol == SecurityProtocolLDAPS { return ldap.DialTLS("tcp", fmt.Sprintf("%s:%d", ls.Host, ls.Port), tlsCfg) } @@ -153,7 +153,7 @@ func dial(ls *Source) (*ldap.Conn, error) { return nil, fmt.Errorf("Dial: %v", err) } - if ls.SecurityProtocol == SECURITY_PROTOCOL_START_TLS { + if ls.SecurityProtocol == SecurityProtocolStartTLS { if err = conn.StartTLS(tlsCfg); err != nil { conn.Close() return nil, fmt.Errorf("StartTLS: %v", err) diff --git a/internal/authutil/basic.go b/internal/authutil/basic.go new file mode 100644 index 000000000..891cf762f --- /dev/null +++ b/internal/authutil/basic.go @@ -0,0 +1,35 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package authutil + +import ( + "encoding/base64" + "net/http" + "strings" +) + +// DecodeBasic extracts username and password from given header using HTTP Basic Auth. +// It returns empty strings if values are not presented or not valid. +func DecodeBasic(header http.Header) (username, password string) { + if len(header) == 0 { + return "", "" + } + + fields := strings.Fields(header.Get("Authorization")) + if len(fields) != 2 || fields[0] != "Basic" { + return "", "" + } + + p, err := base64.StdEncoding.DecodeString(fields[1]) + if err != nil { + return "", "" + } + + creds := strings.SplitN(string(p), ":", 2) + if len(creds) == 1 { + return creds[0], "" + } + return creds[0], creds[1] +} diff --git a/internal/authutil/basic_test.go b/internal/authutil/basic_test.go new file mode 100644 index 000000000..6e744e55e --- /dev/null +++ b/internal/authutil/basic_test.go @@ -0,0 +1,72 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package authutil + +import ( + "net/http" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestDecodeBasic(t *testing.T) { + tests := []struct { + name string + header http.Header + expUsername string + expPassword string + }{ + { + name: "no header", + }, + { + name: "no authorization", + header: http.Header{ + "Content-Type": []string{"text/plain"}, + }, + }, + { + name: "malformed value", + header: http.Header{ + "Authorization": []string{"Basic"}, + }, + }, + { + name: "not basic", + header: http.Header{ + "Authorization": []string{"Digest dummy"}, + }, + }, + { + name: "bad encoding", + header: http.Header{ + "Authorization": []string{"Basic not_base64"}, + }, + }, + + { + name: "only has username", + header: http.Header{ + "Authorization": []string{"Basic dXNlcm5hbWU="}, + }, + expUsername: "username", + }, + { + name: "has username and password", + header: http.Header{ + "Authorization": []string{"Basic dXNlcm5hbWU6cGFzc3dvcmQ="}, + }, + expUsername: "username", + expPassword: "password", + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + username, password := DecodeBasic(test.header) + assert.Equal(t, test.expUsername, username) + assert.Equal(t, test.expPassword, password) + }) + } +} diff --git a/internal/avatar/avatar_test.go b/internal/avatar/avatar_test.go index fea1c2c73..26e3fd9a0 100644 --- a/internal/avatar/avatar_test.go +++ b/internal/avatar/avatar_test.go @@ -7,17 +7,15 @@ package avatar import ( "testing" - . "github.com/smartystreets/goconvey/convey" + "github.com/stretchr/testify/assert" ) func Test_RandomImage(t *testing.T) { - Convey("Generate a random avatar from email", t, func() { - _, err := RandomImage([]byte("gogs@local")) - So(err, ShouldBeNil) + _, err := RandomImage([]byte("gogs@local")) + if err != nil { + t.Fatal(err) + } - Convey("Try to generate an image with size zero", func() { - _, err := RandomImageSize(0, []byte("gogs@local")) - So(err, ShouldNotBeNil) - }) - }) + _, err = RandomImageSize(0, []byte("gogs@local")) + assert.Error(t, err) } diff --git a/internal/cmd/hook.go b/internal/cmd/hook.go index 0e9136b0a..9b4e2278e 100644 --- a/internal/cmd/hook.go +++ b/internal/cmd/hook.go @@ -238,9 +238,10 @@ func runHookPostReceive(c *cli.Context) error { reqURL := fmt.Sprintf("%s%s/%s/tasks/trigger?%s", conf.Server.LocalRootURL, options.RepoUserName, options.RepoName, q.Encode()) log.Trace("Trigger task: %s", reqURL) - resp, err := httplib.Head(reqURL).SetTLSClientConfig(&tls.Config{ - InsecureSkipVerify: true, - }).Response() + resp, err := httplib.Get(reqURL). + SetTLSClientConfig(&tls.Config{ + InsecureSkipVerify: true, + }).Response() if err == nil { _ = resp.Body.Close() if resp.StatusCode/100 != 2 { diff --git a/internal/cmd/serv.go b/internal/cmd/serv.go index 8c6349e30..40f0852dc 100644 --- a/internal/cmd/serv.go +++ b/internal/cmd/serv.go @@ -126,9 +126,9 @@ func checkDeployKey(key *db.PublicKey, repo *db.Repository) { var ( allowedCommands = map[string]db.AccessMode{ - "git-upload-pack": db.ACCESS_MODE_READ, - "git-upload-archive": db.ACCESS_MODE_READ, - "git-receive-pack": db.ACCESS_MODE_WRITE, + "git-upload-pack": db.AccessModeRead, + "git-upload-archive": db.AccessModeRead, + "git-receive-pack": db.AccessModeWrite, } ) @@ -184,7 +184,7 @@ func runServ(c *cli.Context) error { } // Prohibit push to mirror repositories. - if requestMode > db.ACCESS_MODE_READ && repo.IsMirror { + if requestMode > db.AccessModeRead && repo.IsMirror { fail("Mirror repository is read-only", "") } @@ -196,7 +196,7 @@ func runServ(c *cli.Context) error { fail("Invalid key ID", "Invalid key ID '%s': %v", c.Args()[0], err) } - if requestMode == db.ACCESS_MODE_WRITE || repo.IsPrivate { + if requestMode == db.AccessModeWrite || repo.IsPrivate { // Check deploy key or user key. if key.IsDeployKey() { if key.Mode < requestMode { @@ -216,7 +216,7 @@ func runServ(c *cli.Context) error { if mode < requestMode { clientMessage := _ACCESS_DENIED_MESSAGE - if mode >= db.ACCESS_MODE_READ { + if mode >= db.AccessModeRead { clientMessage = "You do not have sufficient authorization for this action" } fail(clientMessage, @@ -259,7 +259,7 @@ func runServ(c *cli.Context) error { } else { gitCmd = exec.Command(verb, repoFullName) } - if requestMode == db.ACCESS_MODE_WRITE { + if requestMode == db.AccessModeWrite { gitCmd.Env = append(os.Environ(), db.ComposeHookEnvs(db.ComposeHookEnvsOptions{ AuthUser: user, OwnerName: owner.Name, diff --git a/internal/cmd/web.go b/internal/cmd/web.go index 3ef925f4b..43b9dfc53 100644 --- a/internal/cmd/web.go +++ b/internal/cmd/web.go @@ -41,6 +41,7 @@ import ( "gogs.io/gogs/internal/route/admin" apiv1 "gogs.io/gogs/internal/route/api/v1" "gogs.io/gogs/internal/route/dev" + "gogs.io/gogs/internal/route/lfs" "gogs.io/gogs/internal/route/org" "gogs.io/gogs/internal/route/repo" "gogs.io/gogs/internal/route/user" @@ -143,31 +144,14 @@ func newMacaron() *macaron.Macaron { m.Use(captcha.Captchaer(captcha.Options{ SubURL: conf.Server.Subpath, })) - m.Use(session.Sessioner(session.Options{ - Provider: conf.Session.Provider, - ProviderConfig: conf.Session.ProviderConfig, - CookieName: conf.Session.CookieName, - CookiePath: conf.Server.Subpath, - Gclifetime: conf.Session.GCInterval, - Maxlifetime: conf.Session.MaxLifeTime, - Secure: conf.Session.CookieSecure, - })) - m.Use(csrf.Csrfer(csrf.Options{ - Secret: conf.Security.SecretKey, - Cookie: conf.Session.CSRFCookieName, - SetCookie: true, - Header: "X-Csrf-Token", - CookiePath: conf.Server.Subpath, - })) m.Use(toolbox.Toolboxer(m, toolbox.Options{ HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{ - &toolbox.HealthCheckFuncDesc{ + { Desc: "Database connection", Func: db.Ping, }, }, })) - m.Use(context.Contexter()) return m } @@ -181,487 +165,507 @@ func runWeb(c *cli.Context) error { reqSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: true}) ignSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: conf.Auth.RequireSigninView}) - ignSignInAndCsrf := context.Toggle(&context.ToggleOptions{DisableCSRF: true}) reqSignOut := context.Toggle(&context.ToggleOptions{SignOutRequired: true}) bindIgnErr := binding.BindIgnErr m.SetAutoHead(true) - // FIXME: not all route need go through same middlewares. - // Especially some AJAX requests, we can reduce middleware number to improve performance. - // Routers. - m.Get("/", ignSignIn, route.Home) - m.Group("/explore", func() { - m.Get("", func(c *context.Context) { - c.Redirect(conf.Server.Subpath + "/explore/repos") - }) - m.Get("/repos", route.ExploreRepos) - m.Get("/users", route.ExploreUsers) - m.Get("/organizations", route.ExploreOrganizations) - }, ignSignIn) - m.Combo("/install", route.InstallInit).Get(route.Install). - Post(bindIgnErr(form.Install{}), route.InstallPost) - m.Get("/^:type(issues|pulls)$", reqSignIn, user.Issues) - - // ***** START: User ***** - m.Group("/user", func() { - m.Group("/login", func() { - m.Combo("").Get(user.Login). - Post(bindIgnErr(form.SignIn{}), user.LoginPost) - m.Combo("/two_factor").Get(user.LoginTwoFactor).Post(user.LoginTwoFactorPost) - m.Combo("/two_factor_recovery_code").Get(user.LoginTwoFactorRecoveryCode).Post(user.LoginTwoFactorRecoveryCodePost) - }) + m.Group("", func() { + m.Get("/", ignSignIn, route.Home) + m.Group("/explore", func() { + m.Get("", func(c *context.Context) { + c.Redirect(conf.Server.Subpath + "/explore/repos") + }) + m.Get("/repos", route.ExploreRepos) + m.Get("/users", route.ExploreUsers) + m.Get("/organizations", route.ExploreOrganizations) + }, ignSignIn) + m.Combo("/install", route.InstallInit).Get(route.Install). + Post(bindIgnErr(form.Install{}), route.InstallPost) + m.Get("/^:type(issues|pulls)$", reqSignIn, user.Issues) + + // ***** START: User ***** + m.Group("/user", func() { + m.Group("/login", func() { + m.Combo("").Get(user.Login). + Post(bindIgnErr(form.SignIn{}), user.LoginPost) + m.Combo("/two_factor").Get(user.LoginTwoFactor).Post(user.LoginTwoFactorPost) + m.Combo("/two_factor_recovery_code").Get(user.LoginTwoFactorRecoveryCode).Post(user.LoginTwoFactorRecoveryCodePost) + }) - m.Get("/sign_up", user.SignUp) - m.Post("/sign_up", bindIgnErr(form.Register{}), user.SignUpPost) - m.Get("/reset_password", user.ResetPasswd) - m.Post("/reset_password", user.ResetPasswdPost) - }, reqSignOut) - - m.Group("/user/settings", func() { - m.Get("", user.Settings) - m.Post("", bindIgnErr(form.UpdateProfile{}), user.SettingsPost) - m.Combo("/avatar").Get(user.SettingsAvatar). - Post(binding.MultipartForm(form.Avatar{}), user.SettingsAvatarPost) - m.Post("/avatar/delete", user.SettingsDeleteAvatar) - m.Combo("/email").Get(user.SettingsEmails). - Post(bindIgnErr(form.AddEmail{}), user.SettingsEmailPost) - m.Post("/email/delete", user.DeleteEmail) - m.Get("/password", user.SettingsPassword) - m.Post("/password", bindIgnErr(form.ChangePassword{}), user.SettingsPasswordPost) - m.Combo("/ssh").Get(user.SettingsSSHKeys). - Post(bindIgnErr(form.AddSSHKey{}), user.SettingsSSHKeysPost) - m.Post("/ssh/delete", user.DeleteSSHKey) - m.Group("/security", func() { - m.Get("", user.SettingsSecurity) - m.Combo("/two_factor_enable").Get(user.SettingsTwoFactorEnable). - Post(user.SettingsTwoFactorEnablePost) - m.Combo("/two_factor_recovery_codes").Get(user.SettingsTwoFactorRecoveryCodes). - Post(user.SettingsTwoFactorRecoveryCodesPost) - m.Post("/two_factor_disable", user.SettingsTwoFactorDisable) - }) - m.Group("/repositories", func() { - m.Get("", user.SettingsRepos) - m.Post("/leave", user.SettingsLeaveRepo) - }) - m.Group("/organizations", func() { - m.Get("", user.SettingsOrganizations) - m.Post("/leave", user.SettingsLeaveOrganization) + m.Get("/sign_up", user.SignUp) + m.Post("/sign_up", bindIgnErr(form.Register{}), user.SignUpPost) + m.Get("/reset_password", user.ResetPasswd) + m.Post("/reset_password", user.ResetPasswdPost) + }, reqSignOut) + + m.Group("/user/settings", func() { + m.Get("", user.Settings) + m.Post("", bindIgnErr(form.UpdateProfile{}), user.SettingsPost) + m.Combo("/avatar").Get(user.SettingsAvatar). + Post(binding.MultipartForm(form.Avatar{}), user.SettingsAvatarPost) + m.Post("/avatar/delete", user.SettingsDeleteAvatar) + m.Combo("/email").Get(user.SettingsEmails). + Post(bindIgnErr(form.AddEmail{}), user.SettingsEmailPost) + m.Post("/email/delete", user.DeleteEmail) + m.Get("/password", user.SettingsPassword) + m.Post("/password", bindIgnErr(form.ChangePassword{}), user.SettingsPasswordPost) + m.Combo("/ssh").Get(user.SettingsSSHKeys). + Post(bindIgnErr(form.AddSSHKey{}), user.SettingsSSHKeysPost) + m.Post("/ssh/delete", user.DeleteSSHKey) + m.Group("/security", func() { + m.Get("", user.SettingsSecurity) + m.Combo("/two_factor_enable").Get(user.SettingsTwoFactorEnable). + Post(user.SettingsTwoFactorEnablePost) + m.Combo("/two_factor_recovery_codes").Get(user.SettingsTwoFactorRecoveryCodes). + Post(user.SettingsTwoFactorRecoveryCodesPost) + m.Post("/two_factor_disable", user.SettingsTwoFactorDisable) + }) + m.Group("/repositories", func() { + m.Get("", user.SettingsRepos) + m.Post("/leave", user.SettingsLeaveRepo) + }) + m.Group("/organizations", func() { + m.Get("", user.SettingsOrganizations) + m.Post("/leave", user.SettingsLeaveOrganization) + }) + m.Combo("/applications").Get(user.SettingsApplications). + Post(bindIgnErr(form.NewAccessToken{}), user.SettingsApplicationsPost) + m.Post("/applications/delete", user.SettingsDeleteApplication) + m.Route("/delete", "GET,POST", user.SettingsDelete) + }, reqSignIn, func(c *context.Context) { + c.Data["PageIsUserSettings"] = true }) - m.Combo("/applications").Get(user.SettingsApplications). - Post(bindIgnErr(form.NewAccessToken{}), user.SettingsApplicationsPost) - m.Post("/applications/delete", user.SettingsDeleteApplication) - m.Route("/delete", "GET,POST", user.SettingsDelete) - }, reqSignIn, func(c *context.Context) { - c.Data["PageIsUserSettings"] = true - }) - m.Group("/user", func() { - m.Any("/activate", user.Activate) - m.Any("/activate_email", user.ActivateEmail) - m.Get("/email2user", user.Email2User) - m.Get("/forget_password", user.ForgotPasswd) - m.Post("/forget_password", user.ForgotPasswdPost) - m.Post("/logout", user.SignOut) - }) - // ***** END: User ***** - - reqAdmin := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true}) - - // ***** START: Admin ***** - m.Group("/admin", func() { - m.Combo("").Get(admin.Dashboard).Post(admin.Operation) // "/admin" - m.Get("/config", admin.Config) - m.Post("/config/test_mail", admin.SendTestMail) - m.Get("/monitor", admin.Monitor) - - m.Group("/users", func() { - m.Get("", admin.Users) - m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(form.AdminCrateUser{}), admin.NewUserPost) - m.Combo("/:userid").Get(admin.EditUser).Post(bindIgnErr(form.AdminEditUser{}), admin.EditUserPost) - m.Post("/:userid/delete", admin.DeleteUser) + m.Group("/user", func() { + m.Any("/activate", user.Activate) + m.Any("/activate_email", user.ActivateEmail) + m.Get("/email2user", user.Email2User) + m.Get("/forget_password", user.ForgotPasswd) + m.Post("/forget_password", user.ForgotPasswdPost) + m.Post("/logout", user.SignOut) }) + // ***** END: User ***** + + reqAdmin := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true}) + + // ***** START: Admin ***** + m.Group("/admin", func() { + m.Combo("").Get(admin.Dashboard).Post(admin.Operation) // "/admin" + m.Get("/config", admin.Config) + m.Post("/config/test_mail", admin.SendTestMail) + m.Get("/monitor", admin.Monitor) + + m.Group("/users", func() { + m.Get("", admin.Users) + m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(form.AdminCrateUser{}), admin.NewUserPost) + m.Combo("/:userid").Get(admin.EditUser).Post(bindIgnErr(form.AdminEditUser{}), admin.EditUserPost) + m.Post("/:userid/delete", admin.DeleteUser) + }) - m.Group("/orgs", func() { - m.Get("", admin.Organizations) - }) + m.Group("/orgs", func() { + m.Get("", admin.Organizations) + }) - m.Group("/repos", func() { - m.Get("", admin.Repos) - m.Post("/delete", admin.DeleteRepo) - }) + m.Group("/repos", func() { + m.Get("", admin.Repos) + m.Post("/delete", admin.DeleteRepo) + }) - m.Group("/auths", func() { - m.Get("", admin.Authentications) - m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(form.Authentication{}), admin.NewAuthSourcePost) - m.Combo("/:authid").Get(admin.EditAuthSource). - Post(bindIgnErr(form.Authentication{}), admin.EditAuthSourcePost) - m.Post("/:authid/delete", admin.DeleteAuthSource) - }) + m.Group("/auths", func() { + m.Get("", admin.Authentications) + m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(form.Authentication{}), admin.NewAuthSourcePost) + m.Combo("/:authid").Get(admin.EditAuthSource). + Post(bindIgnErr(form.Authentication{}), admin.EditAuthSourcePost) + m.Post("/:authid/delete", admin.DeleteAuthSource) + }) - m.Group("/notices", func() { - m.Get("", admin.Notices) - m.Post("/delete", admin.DeleteNotices) - m.Get("/empty", admin.EmptyNotices) - }) - }, reqAdmin) - // ***** END: Admin ***** + m.Group("/notices", func() { + m.Get("", admin.Notices) + m.Post("/delete", admin.DeleteNotices) + m.Get("/empty", admin.EmptyNotices) + }) + }, reqAdmin) + // ***** END: Admin ***** - m.Group("", func() { - m.Group("/:username", func() { - m.Get("", user.Profile) - m.Get("/followers", user.Followers) - m.Get("/following", user.Following) - m.Get("/stars", user.Stars) - }, context.InjectParamsUser()) - - m.Get("/attachments/:uuid", func(c *context.Context) { - attach, err := db.GetAttachmentByUUID(c.Params(":uuid")) - if err != nil { - c.NotFoundOrError(err, "get attachment by UUID") - return - } else if !com.IsFile(attach.LocalPath()) { - c.NotFound() - return - } + m.Group("", func() { + m.Group("/:username", func() { + m.Get("", user.Profile) + m.Get("/followers", user.Followers) + m.Get("/following", user.Following) + m.Get("/stars", user.Stars) + }, context.InjectParamsUser()) + + m.Get("/attachments/:uuid", func(c *context.Context) { + attach, err := db.GetAttachmentByUUID(c.Params(":uuid")) + if err != nil { + c.NotFoundOrError(err, "get attachment by UUID") + return + } else if !com.IsFile(attach.LocalPath()) { + c.NotFound() + return + } - fr, err := os.Open(attach.LocalPath()) - if err != nil { - c.Error(err, "open attachment file") - return - } - defer fr.Close() + fr, err := os.Open(attach.LocalPath()) + if err != nil { + c.Error(err, "open attachment file") + return + } + defer fr.Close() - c.Header().Set("Cache-Control", "public,max-age=86400") - c.Header().Set("Content-Disposition", fmt.Sprintf(`inline; filename="%s"`, attach.Name)) + c.Header().Set("Cache-Control", "public,max-age=86400") + c.Header().Set("Content-Disposition", fmt.Sprintf(`inline; filename="%s"`, attach.Name)) - if _, err = io.Copy(c.Resp, fr); err != nil { - c.Error(err, "copy from file to response") - return - } - }) - m.Post("/issues/attachments", repo.UploadIssueAttachment) - m.Post("/releases/attachments", repo.UploadReleaseAttachment) - }, ignSignIn) + if _, err = io.Copy(c.Resp, fr); err != nil { + c.Error(err, "copy from file to response") + return + } + }) + m.Post("/issues/attachments", repo.UploadIssueAttachment) + m.Post("/releases/attachments", repo.UploadReleaseAttachment) + }, ignSignIn) - m.Group("/:username", func() { - m.Post("/action/:action", user.Action) - }, reqSignIn, context.InjectParamsUser()) + m.Group("/:username", func() { + m.Post("/action/:action", user.Action) + }, reqSignIn, context.InjectParamsUser()) - if macaron.Env == macaron.DEV { - m.Get("/template/*", dev.TemplatePreview) - } + if macaron.Env == macaron.DEV { + m.Get("/template/*", dev.TemplatePreview) + } - reqRepoAdmin := context.RequireRepoAdmin() - reqRepoWriter := context.RequireRepoWriter() + reqRepoAdmin := context.RequireRepoAdmin() + reqRepoWriter := context.RequireRepoWriter() - webhookRoutes := func() { - m.Group("", func() { - m.Get("", repo.Webhooks) - m.Post("/delete", repo.DeleteWebhook) - m.Get("/:type/new", repo.WebhooksNew) - m.Post("/gogs/new", bindIgnErr(form.NewWebhook{}), repo.WebhooksNewPost) - m.Post("/slack/new", bindIgnErr(form.NewSlackHook{}), repo.WebhooksSlackNewPost) - m.Post("/discord/new", bindIgnErr(form.NewDiscordHook{}), repo.WebhooksDiscordNewPost) - m.Post("/dingtalk/new", bindIgnErr(form.NewDingtalkHook{}), repo.WebhooksDingtalkNewPost) - m.Get("/:id", repo.WebhooksEdit) - m.Post("/gogs/:id", bindIgnErr(form.NewWebhook{}), repo.WebhooksEditPost) - m.Post("/slack/:id", bindIgnErr(form.NewSlackHook{}), repo.WebhooksSlackEditPost) - m.Post("/discord/:id", bindIgnErr(form.NewDiscordHook{}), repo.WebhooksDiscordEditPost) - m.Post("/dingtalk/:id", bindIgnErr(form.NewDingtalkHook{}), repo.WebhooksDingtalkEditPost) - }, repo.InjectOrgRepoContext()) - } + webhookRoutes := func() { + m.Group("", func() { + m.Get("", repo.Webhooks) + m.Post("/delete", repo.DeleteWebhook) + m.Get("/:type/new", repo.WebhooksNew) + m.Post("/gogs/new", bindIgnErr(form.NewWebhook{}), repo.WebhooksNewPost) + m.Post("/slack/new", bindIgnErr(form.NewSlackHook{}), repo.WebhooksSlackNewPost) + m.Post("/discord/new", bindIgnErr(form.NewDiscordHook{}), repo.WebhooksDiscordNewPost) + m.Post("/dingtalk/new", bindIgnErr(form.NewDingtalkHook{}), repo.WebhooksDingtalkNewPost) + m.Get("/:id", repo.WebhooksEdit) + m.Post("/gogs/:id", bindIgnErr(form.NewWebhook{}), repo.WebhooksEditPost) + m.Post("/slack/:id", bindIgnErr(form.NewSlackHook{}), repo.WebhooksSlackEditPost) + m.Post("/discord/:id", bindIgnErr(form.NewDiscordHook{}), repo.WebhooksDiscordEditPost) + m.Post("/dingtalk/:id", bindIgnErr(form.NewDingtalkHook{}), repo.WebhooksDingtalkEditPost) + }, repo.InjectOrgRepoContext()) + } - // ***** START: Organization ***** - m.Group("/org", func() { - m.Group("", func() { - m.Get("/create", org.Create) - m.Post("/create", bindIgnErr(form.CreateOrg{}), org.CreatePost) - }, func(c *context.Context) { - if !c.User.CanCreateOrganization() { - c.NotFound() - } - }) + // ***** START: Organization ***** + m.Group("/org", func() { + m.Group("", func() { + m.Get("/create", org.Create) + m.Post("/create", bindIgnErr(form.CreateOrg{}), org.CreatePost) + }, func(c *context.Context) { + if !c.User.CanCreateOrganization() { + c.NotFound() + } + }) - m.Group("/:org", func() { - m.Get("/dashboard", user.Dashboard) - m.Get("/^:type(issues|pulls)$", user.Issues) - m.Get("/members", org.Members) - m.Get("/members/action/:action", org.MembersAction) - - m.Get("/teams", org.Teams) - }, context.OrgAssignment(true)) - - m.Group("/:org", func() { - m.Get("/teams/:team", org.TeamMembers) - m.Get("/teams/:team/repositories", org.TeamRepositories) - m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction) - m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction) - }, context.OrgAssignment(true, false, true)) - - m.Group("/:org", func() { - m.Get("/teams/new", org.NewTeam) - m.Post("/teams/new", bindIgnErr(form.CreateTeam{}), org.NewTeamPost) - m.Get("/teams/:team/edit", org.EditTeam) - m.Post("/teams/:team/edit", bindIgnErr(form.CreateTeam{}), org.EditTeamPost) - m.Post("/teams/:team/delete", org.DeleteTeam) + m.Group("/:org", func() { + m.Get("/dashboard", user.Dashboard) + m.Get("/^:type(issues|pulls)$", user.Issues) + m.Get("/members", org.Members) + m.Get("/members/action/:action", org.MembersAction) + + m.Get("/teams", org.Teams) + }, context.OrgAssignment(true)) + + m.Group("/:org", func() { + m.Get("/teams/:team", org.TeamMembers) + m.Get("/teams/:team/repositories", org.TeamRepositories) + m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction) + m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction) + }, context.OrgAssignment(true, false, true)) + + m.Group("/:org", func() { + m.Get("/teams/new", org.NewTeam) + m.Post("/teams/new", bindIgnErr(form.CreateTeam{}), org.NewTeamPost) + m.Get("/teams/:team/edit", org.EditTeam) + m.Post("/teams/:team/edit", bindIgnErr(form.CreateTeam{}), org.EditTeamPost) + m.Post("/teams/:team/delete", org.DeleteTeam) + + m.Group("/settings", func() { + m.Combo("").Get(org.Settings). + Post(bindIgnErr(form.UpdateOrgSetting{}), org.SettingsPost) + m.Post("/avatar", binding.MultipartForm(form.Avatar{}), org.SettingsAvatar) + m.Post("/avatar/delete", org.SettingsDeleteAvatar) + m.Group("/hooks", webhookRoutes) + m.Route("/delete", "GET,POST", org.SettingsDelete) + }) + m.Route("/invitations/new", "GET,POST", org.Invitation) + }, context.OrgAssignment(true, true)) + }, reqSignIn) + // ***** END: Organization ***** + + // ***** START: Repository ***** + m.Group("/repo", func() { + m.Get("/create", repo.Create) + m.Post("/create", bindIgnErr(form.CreateRepo{}), repo.CreatePost) + m.Get("/migrate", repo.Migrate) + m.Post("/migrate", bindIgnErr(form.MigrateRepo{}), repo.MigratePost) + m.Combo("/fork/:repoid").Get(repo.Fork). + Post(bindIgnErr(form.CreateRepo{}), repo.ForkPost) + }, reqSignIn) + + m.Group("/:username/:reponame", func() { m.Group("/settings", func() { - m.Combo("").Get(org.Settings). - Post(bindIgnErr(form.UpdateOrgSetting{}), org.SettingsPost) - m.Post("/avatar", binding.MultipartForm(form.Avatar{}), org.SettingsAvatar) - m.Post("/avatar/delete", org.SettingsDeleteAvatar) + m.Combo("").Get(repo.Settings). + Post(bindIgnErr(form.RepoSetting{}), repo.SettingsPost) + m.Combo("/avatar").Get(repo.SettingsAvatar). + Post(binding.MultipartForm(form.Avatar{}), repo.SettingsAvatarPost) + m.Post("/avatar/delete", repo.SettingsDeleteAvatar) + m.Group("/collaboration", func() { + m.Combo("").Get(repo.SettingsCollaboration).Post(repo.SettingsCollaborationPost) + m.Post("/access_mode", repo.ChangeCollaborationAccessMode) + m.Post("/delete", repo.DeleteCollaboration) + }) + m.Group("/branches", func() { + m.Get("", repo.SettingsBranches) + m.Post("/default_branch", repo.UpdateDefaultBranch) + m.Combo("/*").Get(repo.SettingsProtectedBranch). + Post(bindIgnErr(form.ProtectBranch{}), repo.SettingsProtectedBranchPost) + }, func(c *context.Context) { + if c.Repo.Repository.IsMirror { + c.NotFound() + return + } + }) - m.Group("/hooks", webhookRoutes) + m.Group("/hooks", func() { + webhookRoutes() - m.Route("/delete", "GET,POST", org.SettingsDelete) - }) + m.Group("/:id", func() { + m.Post("/test", repo.TestWebhook) + m.Post("/redelivery", repo.RedeliveryWebhook) + }) - m.Route("/invitations/new", "GET,POST", org.Invitation) - }, context.OrgAssignment(true, true)) - }, reqSignIn) - // ***** END: Organization ***** - - // ***** START: Repository ***** - m.Group("/repo", func() { - m.Get("/create", repo.Create) - m.Post("/create", bindIgnErr(form.CreateRepo{}), repo.CreatePost) - m.Get("/migrate", repo.Migrate) - m.Post("/migrate", bindIgnErr(form.MigrateRepo{}), repo.MigratePost) - m.Combo("/fork/:repoid").Get(repo.Fork). - Post(bindIgnErr(form.CreateRepo{}), repo.ForkPost) - }, reqSignIn) + m.Group("/git", func() { + m.Get("", repo.SettingsGitHooks) + m.Combo("/:name").Get(repo.SettingsGitHooksEdit). + Post(repo.SettingsGitHooksEditPost) + }, context.GitHookService()) + }) + + m.Group("/keys", func() { + m.Combo("").Get(repo.SettingsDeployKeys). + Post(bindIgnErr(form.AddSSHKey{}), repo.SettingsDeployKeysPost) + m.Post("/delete", repo.DeleteDeployKey) + }) - m.Group("/:username/:reponame", func() { - m.Group("/settings", func() { - m.Combo("").Get(repo.Settings). - Post(bindIgnErr(form.RepoSetting{}), repo.SettingsPost) - m.Combo("/avatar").Get(repo.SettingsAvatar). - Post(binding.MultipartForm(form.Avatar{}), repo.SettingsAvatarPost) - m.Post("/avatar/delete", repo.SettingsDeleteAvatar) - m.Group("/collaboration", func() { - m.Combo("").Get(repo.SettingsCollaboration).Post(repo.SettingsCollaborationPost) - m.Post("/access_mode", repo.ChangeCollaborationAccessMode) - m.Post("/delete", repo.DeleteCollaboration) - }) - m.Group("/branches", func() { - m.Get("", repo.SettingsBranches) - m.Post("/default_branch", repo.UpdateDefaultBranch) - m.Combo("/*").Get(repo.SettingsProtectedBranch). - Post(bindIgnErr(form.ProtectBranch{}), repo.SettingsProtectedBranchPost) }, func(c *context.Context) { - if c.Repo.Repository.IsMirror { - c.NotFound() - return - } + c.Data["PageIsSettings"] = true }) - - m.Group("/hooks", func() { - webhookRoutes() - - m.Group("/:id", func() { - m.Post("/test", repo.TestWebhook) - m.Post("/redelivery", repo.RedeliveryWebhook) + }, reqSignIn, context.RepoAssignment(), reqRepoAdmin, context.RepoRef()) + + m.Post("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), repo.Action) + m.Group("/:username/:reponame", func() { + m.Get("/issues", repo.RetrieveLabels, repo.Issues) + m.Get("/issues/:index", repo.ViewIssue) + m.Get("/labels/", repo.RetrieveLabels, repo.Labels) + m.Get("/milestones", repo.Milestones) + }, ignSignIn, context.RepoAssignment(true)) + m.Group("/:username/:reponame", func() { + // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest. + // So they can apply their own enable/disable logic on routers. + m.Group("/issues", func() { + m.Combo("/new", repo.MustEnableIssues).Get(context.RepoRef(), repo.NewIssue). + Post(bindIgnErr(form.NewIssue{}), repo.NewIssuePost) + + m.Group("/:index", func() { + m.Post("/title", repo.UpdateIssueTitle) + m.Post("/content", repo.UpdateIssueContent) + m.Combo("/comments").Post(bindIgnErr(form.CreateComment{}), repo.NewComment) }) - - m.Group("/git", func() { - m.Get("", repo.SettingsGitHooks) - m.Combo("/:name").Get(repo.SettingsGitHooksEdit). - Post(repo.SettingsGitHooksEditPost) - }, context.GitHookService()) }) - - m.Group("/keys", func() { - m.Combo("").Get(repo.SettingsDeployKeys). - Post(bindIgnErr(form.AddSSHKey{}), repo.SettingsDeployKeysPost) - m.Post("/delete", repo.DeleteDeployKey) + m.Group("/comments/:id", func() { + m.Post("", repo.UpdateCommentContent) + m.Post("/delete", repo.DeleteComment) }) - - }, func(c *context.Context) { - c.Data["PageIsSettings"] = true - }) - }, reqSignIn, context.RepoAssignment(), reqRepoAdmin, context.RepoRef()) - - m.Post("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), repo.Action) - m.Group("/:username/:reponame", func() { - m.Get("/issues", repo.RetrieveLabels, repo.Issues) - m.Get("/issues/:index", repo.ViewIssue) - m.Get("/labels/", repo.RetrieveLabels, repo.Labels) - m.Get("/milestones", repo.Milestones) - }, ignSignIn, context.RepoAssignment(true)) - m.Group("/:username/:reponame", func() { - // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest. - // So they can apply their own enable/disable logic on routers. - m.Group("/issues", func() { - m.Combo("/new", repo.MustEnableIssues).Get(context.RepoRef(), repo.NewIssue). - Post(bindIgnErr(form.NewIssue{}), repo.NewIssuePost) - - m.Group("/:index", func() { - m.Post("/title", repo.UpdateIssueTitle) - m.Post("/content", repo.UpdateIssueContent) - m.Combo("/comments").Post(bindIgnErr(form.CreateComment{}), repo.NewComment) + }, reqSignIn, context.RepoAssignment(true)) + m.Group("/:username/:reponame", func() { + m.Group("/wiki", func() { + m.Get("/?:page", repo.Wiki) + m.Get("/_pages", repo.WikiPages) + }, repo.MustEnableWiki, context.RepoRef()) + }, ignSignIn, context.RepoAssignment(false, true)) + + m.Group("/:username/:reponame", func() { + // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest. + // So they can apply their own enable/disable logic on routers. + m.Group("/issues", func() { + m.Group("/:index", func() { + m.Post("/label", repo.UpdateIssueLabel) + m.Post("/milestone", repo.UpdateIssueMilestone) + m.Post("/assignee", repo.UpdateIssueAssignee) + }, reqRepoWriter) + }) + m.Group("/labels", func() { + m.Post("/new", bindIgnErr(form.CreateLabel{}), repo.NewLabel) + m.Post("/edit", bindIgnErr(form.CreateLabel{}), repo.UpdateLabel) + m.Post("/delete", repo.DeleteLabel) + m.Post("/initialize", bindIgnErr(form.InitializeLabels{}), repo.InitializeLabels) + }, reqRepoWriter, context.RepoRef()) + m.Group("/milestones", func() { + m.Combo("/new").Get(repo.NewMilestone). + Post(bindIgnErr(form.CreateMilestone{}), repo.NewMilestonePost) + m.Get("/:id/edit", repo.EditMilestone) + m.Post("/:id/edit", bindIgnErr(form.CreateMilestone{}), repo.EditMilestonePost) + m.Get("/:id/:action", repo.ChangeMilestonStatus) + m.Post("/delete", repo.DeleteMilestone) + }, reqRepoWriter, context.RepoRef()) + + m.Group("/releases", func() { + m.Get("/new", repo.NewRelease) + m.Post("/new", bindIgnErr(form.NewRelease{}), repo.NewReleasePost) + m.Post("/delete", repo.DeleteRelease) + m.Get("/edit/*", repo.EditRelease) + m.Post("/edit/*", bindIgnErr(form.EditRelease{}), repo.EditReleasePost) + }, repo.MustBeNotBare, reqRepoWriter, func(c *context.Context) { + c.Data["PageIsViewFiles"] = true }) - }) - m.Group("/comments/:id", func() { - m.Post("", repo.UpdateCommentContent) - m.Post("/delete", repo.DeleteComment) - }) - }, reqSignIn, context.RepoAssignment(true)) - m.Group("/:username/:reponame", func() { - m.Group("/wiki", func() { - m.Get("/?:page", repo.Wiki) - m.Get("/_pages", repo.WikiPages) - }, repo.MustEnableWiki, context.RepoRef()) - }, ignSignIn, context.RepoAssignment(false, true)) - - m.Group("/:username/:reponame", func() { - // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest. - // So they can apply their own enable/disable logic on routers. - m.Group("/issues", func() { - m.Group("/:index", func() { - m.Post("/label", repo.UpdateIssueLabel) - m.Post("/milestone", repo.UpdateIssueMilestone) - m.Post("/assignee", repo.UpdateIssueAssignee) - }, reqRepoWriter) - }) - m.Group("/labels", func() { - m.Post("/new", bindIgnErr(form.CreateLabel{}), repo.NewLabel) - m.Post("/edit", bindIgnErr(form.CreateLabel{}), repo.UpdateLabel) - m.Post("/delete", repo.DeleteLabel) - m.Post("/initialize", bindIgnErr(form.InitializeLabels{}), repo.InitializeLabels) - }, reqRepoWriter, context.RepoRef()) - m.Group("/milestones", func() { - m.Combo("/new").Get(repo.NewMilestone). - Post(bindIgnErr(form.CreateMilestone{}), repo.NewMilestonePost) - m.Get("/:id/edit", repo.EditMilestone) - m.Post("/:id/edit", bindIgnErr(form.CreateMilestone{}), repo.EditMilestonePost) - m.Get("/:id/:action", repo.ChangeMilestonStatus) - m.Post("/delete", repo.DeleteMilestone) - }, reqRepoWriter, context.RepoRef()) - - m.Group("/releases", func() { - m.Get("/new", repo.NewRelease) - m.Post("/new", bindIgnErr(form.NewRelease{}), repo.NewReleasePost) - m.Post("/delete", repo.DeleteRelease) - m.Get("/edit/*", repo.EditRelease) - m.Post("/edit/*", bindIgnErr(form.EditRelease{}), repo.EditReleasePost) - }, repo.MustBeNotBare, reqRepoWriter, func(c *context.Context) { - c.Data["PageIsViewFiles"] = true - }) - - // FIXME: Should use c.Repo.PullRequest to unify template, currently we have inconsistent URL - // for PR in same repository. After select branch on the page, the URL contains redundant head user name. - // e.g. /org1/test-repo/compare/master...org1:develop - // which should be /org1/test-repo/compare/master...develop - m.Combo("/compare/*", repo.MustAllowPulls).Get(repo.CompareAndPullRequest). - Post(bindIgnErr(form.NewIssue{}), repo.CompareAndPullRequestPost) - m.Group("", func() { - m.Combo("/_edit/*").Get(repo.EditFile). - Post(bindIgnErr(form.EditRepoFile{}), repo.EditFilePost) - m.Combo("/_new/*").Get(repo.NewFile). - Post(bindIgnErr(form.EditRepoFile{}), repo.NewFilePost) - m.Post("/_preview/*", bindIgnErr(form.EditPreviewDiff{}), repo.DiffPreviewPost) - m.Combo("/_delete/*").Get(repo.DeleteFile). - Post(bindIgnErr(form.DeleteRepoFile{}), repo.DeleteFilePost) + // FIXME: Should use c.Repo.PullRequest to unify template, currently we have inconsistent URL + // for PR in same repository. After select branch on the page, the URL contains redundant head user name. + // e.g. /org1/test-repo/compare/master...org1:develop + // which should be /org1/test-repo/compare/master...develop + m.Combo("/compare/*", repo.MustAllowPulls).Get(repo.CompareAndPullRequest). + Post(bindIgnErr(form.NewIssue{}), repo.CompareAndPullRequestPost) m.Group("", func() { - m.Combo("/_upload/*").Get(repo.UploadFile). - Post(bindIgnErr(form.UploadRepoFile{}), repo.UploadFilePost) - m.Post("/upload-file", repo.UploadFileToServer) - m.Post("/upload-remove", bindIgnErr(form.RemoveUploadFile{}), repo.RemoveUploadFileFromServer) - }, func(c *context.Context) { - if !conf.Repository.Upload.Enabled { + m.Combo("/_edit/*").Get(repo.EditFile). + Post(bindIgnErr(form.EditRepoFile{}), repo.EditFilePost) + m.Combo("/_new/*").Get(repo.NewFile). + Post(bindIgnErr(form.EditRepoFile{}), repo.NewFilePost) + m.Post("/_preview/*", bindIgnErr(form.EditPreviewDiff{}), repo.DiffPreviewPost) + m.Combo("/_delete/*").Get(repo.DeleteFile). + Post(bindIgnErr(form.DeleteRepoFile{}), repo.DeleteFilePost) + + m.Group("", func() { + m.Combo("/_upload/*").Get(repo.UploadFile). + Post(bindIgnErr(form.UploadRepoFile{}), repo.UploadFilePost) + m.Post("/upload-file", repo.UploadFileToServer) + m.Post("/upload-remove", bindIgnErr(form.RemoveUploadFile{}), repo.RemoveUploadFileFromServer) + }, func(c *context.Context) { + if !conf.Repository.Upload.Enabled { + c.NotFound() + return + } + }) + }, repo.MustBeNotBare, reqRepoWriter, context.RepoRef(), func(c *context.Context) { + if !c.Repo.CanEnableEditor() { c.NotFound() return } + + c.Data["PageIsViewFiles"] = true }) - }, repo.MustBeNotBare, reqRepoWriter, context.RepoRef(), func(c *context.Context) { - if !c.Repo.CanEnableEditor() { - c.NotFound() - return - } + }, reqSignIn, context.RepoAssignment()) - c.Data["PageIsViewFiles"] = true - }) - }, reqSignIn, context.RepoAssignment()) + m.Group("/:username/:reponame", func() { + m.Group("", func() { + m.Get("/releases", repo.MustBeNotBare, repo.Releases) + m.Get("/pulls", repo.RetrieveLabels, repo.Pulls) + m.Get("/pulls/:index", repo.ViewPull) + }, context.RepoRef()) - m.Group("/:username/:reponame", func() { - m.Group("", func() { - m.Get("/releases", repo.MustBeNotBare, repo.Releases) - m.Get("/pulls", repo.RetrieveLabels, repo.Pulls) - m.Get("/pulls/:index", repo.ViewPull) - }, context.RepoRef()) - - m.Group("/branches", func() { - m.Get("", repo.Branches) - m.Get("/all", repo.AllBranches) - m.Post("/delete/*", reqSignIn, reqRepoWriter, repo.DeleteBranchPost) - }, repo.MustBeNotBare, func(c *context.Context) { - c.Data["PageIsViewFiles"] = true - }) + m.Group("/branches", func() { + m.Get("", repo.Branches) + m.Get("/all", repo.AllBranches) + m.Post("/delete/*", reqSignIn, reqRepoWriter, repo.DeleteBranchPost) + }, repo.MustBeNotBare, func(c *context.Context) { + c.Data["PageIsViewFiles"] = true + }) + + m.Group("/wiki", func() { + m.Group("", func() { + m.Combo("/_new").Get(repo.NewWiki). + Post(bindIgnErr(form.NewWiki{}), repo.NewWikiPost) + m.Combo("/:page/_edit").Get(repo.EditWiki). + Post(bindIgnErr(form.NewWiki{}), repo.EditWikiPost) + m.Post("/:page/delete", repo.DeleteWikiPagePost) + }, reqSignIn, reqRepoWriter) + }, repo.MustEnableWiki, context.RepoRef()) + + m.Get("/archive/*", repo.MustBeNotBare, repo.Download) + + m.Group("/pulls/:index", func() { + m.Get("/commits", context.RepoRef(), repo.ViewPullCommits) + m.Get("/files", context.RepoRef(), repo.ViewPullFiles) + m.Post("/merge", reqRepoWriter, repo.MergePullRequest) + }, repo.MustAllowPulls) - m.Group("/wiki", func() { m.Group("", func() { - m.Combo("/_new").Get(repo.NewWiki). - Post(bindIgnErr(form.NewWiki{}), repo.NewWikiPost) - m.Combo("/:page/_edit").Get(repo.EditWiki). - Post(bindIgnErr(form.NewWiki{}), repo.EditWikiPost) - m.Post("/:page/delete", repo.DeleteWikiPagePost) - }, reqSignIn, reqRepoWriter) - }, repo.MustEnableWiki, context.RepoRef()) - - m.Get("/archive/*", repo.MustBeNotBare, repo.Download) - - m.Group("/pulls/:index", func() { - m.Get("/commits", context.RepoRef(), repo.ViewPullCommits) - m.Get("/files", context.RepoRef(), repo.ViewPullFiles) - m.Post("/merge", reqRepoWriter, repo.MergePullRequest) - }, repo.MustAllowPulls) + m.Get("/src/*", repo.Home) + m.Get("/raw/*", repo.SingleDownload) + m.Get("/commits/*", repo.RefCommits) + m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.Diff) + m.Get("/forks", repo.Forks) + }, repo.MustBeNotBare, context.RepoRef()) + m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.MustBeNotBare, repo.RawDiff) + + m.Get("/compare/:before([a-z0-9]{40})\\.\\.\\.:after([a-z0-9]{40})", repo.MustBeNotBare, context.RepoRef(), repo.CompareDiff) + }, ignSignIn, context.RepoAssignment()) + m.Group("/:username/:reponame", func() { + m.Get("", repo.Home) + m.Get("/stars", repo.Stars) + m.Get("/watchers", repo.Watchers) + }, ignSignIn, context.RepoAssignment(), context.RepoRef()) + // ***** END: Repository ***** + + // ********************** + // ----- API routes ----- + // ********************** + + // TODO: Without session and CSRF + m.Group("/api", func() { + apiv1.RegisterRoutes(m) + }, ignSignIn) + }, + session.Sessioner(session.Options{ + Provider: conf.Session.Provider, + ProviderConfig: conf.Session.ProviderConfig, + CookieName: conf.Session.CookieName, + CookiePath: conf.Server.Subpath, + Gclifetime: conf.Session.GCInterval, + Maxlifetime: conf.Session.MaxLifeTime, + Secure: conf.Session.CookieSecure, + }), + csrf.Csrfer(csrf.Options{ + Secret: conf.Security.SecretKey, + Header: "X-CSRF-Token", + Cookie: conf.Session.CSRFCookieName, + CookieDomain: conf.Server.URL.Hostname(), + CookiePath: conf.Server.Subpath, + CookieHttpOnly: true, + SetCookie: true, + Secure: conf.Server.URL.Scheme == "https", + }), + context.Contexter(), + ) - m.Group("", func() { - m.Get("/src/*", repo.Home) - m.Get("/raw/*", repo.SingleDownload) - m.Get("/commits/*", repo.RefCommits) - m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.Diff) - m.Get("/forks", repo.Forks) - }, repo.MustBeNotBare, context.RepoRef()) - m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.MustBeNotBare, repo.RawDiff) - - m.Get("/compare/:before([a-z0-9]{40})\\.\\.\\.:after([a-z0-9]{40})", repo.MustBeNotBare, context.RepoRef(), repo.CompareDiff) - }, ignSignIn, context.RepoAssignment()) - m.Group("/:username/:reponame", func() { - m.Get("/stars", repo.Stars) - m.Get("/watchers", repo.Watchers) - }, ignSignIn, context.RepoAssignment(), context.RepoRef()) + // *************************** + // ----- HTTP Git routes ----- + // *************************** - m.Group("/:username", func() { - m.Get("/:reponame", ignSignIn, context.RepoAssignment(), context.RepoRef(), repo.Home) + m.Group("/:username/:reponame", func() { + m.Get("/tasks/trigger", repo.TriggerTask) - m.Group("/:reponame", func() { - m.Head("/tasks/trigger", repo.TriggerTask) + m.Group("/info/lfs", func() { + lfs.RegisterRoutes(m.Router) }) - // Use the regexp to match the repository name - // Duplicated route to enable different ways of accessing same set of URLs, - // e.g. with or without ".git" suffix. - m.Group("/:reponame([\\d\\w-_\\.]+\\.git$)", func() { - m.Get("", ignSignIn, context.RepoAssignment(), context.RepoRef(), repo.Home) - m.Options("/*", ignSignInAndCsrf, repo.HTTPContexter(), repo.HTTP) - m.Route("/*", "GET,POST", ignSignInAndCsrf, repo.HTTPContexter(), repo.HTTP) - }) - m.Options("/:reponame/*", ignSignInAndCsrf, repo.HTTPContexter(), repo.HTTP) - m.Route("/:reponame/*", "GET,POST", ignSignInAndCsrf, repo.HTTPContexter(), repo.HTTP) - }) - // ***** END: Repository ***** - m.Group("/api", func() { - apiv1.RegisterRoutes(m) - }, ignSignIn) + m.Route("/*", "GET,POST,OPTIONS", repo.HTTPContexter(), repo.HTTP) + }) // *************************** // ----- Internal routes ----- // *************************** + m.Group("/-", func() { m.Get("/metrics", app.MetricsFilter(), promhttp.Handler()) // "/-/metrics" @@ -670,16 +674,18 @@ func runWeb(c *cli.Context) error { }) }) - // robots.txt - m.Get("/robots.txt", func(c *context.Context) { + // ********************** + // ----- robots.txt ----- + // ********************** + + m.Get("/robots.txt", func(w http.ResponseWriter, r *http.Request) { if conf.HasRobotsTxt { - c.ServeFileContent(filepath.Join(conf.CustomDir(), "robots.txt")) + http.ServeFile(w, r, filepath.Join(conf.CustomDir(), "robots.txt")) } else { - c.NotFound() + w.WriteHeader(http.StatusNotFound) } }) - // Not found handler. m.NotFound(route.NotFound) // Flag for port number in case first time run conflict. diff --git a/internal/conf/conf.go b/internal/conf/conf.go index f44e302d4..49bb2949d 100644 --- a/internal/conf/conf.go +++ b/internal/conf/conf.go @@ -294,7 +294,7 @@ func Init(customConf string) error { "StampNano": time.StampNano, }[Time.Format] if Time.FormatLayout == "" { - return fmt.Errorf("unrecognized '[time] FORMAT': %s", Time.Format) + Time.FormatLayout = time.RFC3339 } // **************************** @@ -359,6 +359,15 @@ func Init(customConf string) error { } I18n.dateLangs = File.Section("i18n.datelang").KeysHash() + // ************************* + // ----- LFS settings ----- + // ************************* + + if err = File.Section("lfs").MapTo(&LFS); err != nil { + return errors.Wrap(err, "mapping [lfs] section") + } + LFS.ObjectsPath = ensureAbs(LFS.ObjectsPath) + handleDeprecated() if err = File.Section("cache").MapTo(&Cache); err != nil { diff --git a/internal/conf/conf_test.go b/internal/conf/conf_test.go index 0030ea52e..51ccf93c1 100644 --- a/internal/conf/conf_test.go +++ b/internal/conf/conf_test.go @@ -37,10 +37,6 @@ func TestMustAsset(t *testing.T) { } func TestInit(t *testing.T) { - if IsWindowsRuntime() { - return - } - ini.PrettyFormat = false defer func() { MustInit("") diff --git a/internal/conf/mocks.go b/internal/conf/mocks.go new file mode 100644 index 000000000..1f8e16f28 --- /dev/null +++ b/internal/conf/mocks.go @@ -0,0 +1,17 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package conf + +import ( + "testing" +) + +func SetMockServer(t *testing.T, opts ServerOpts) { + before := Server + Server = opts + t.Cleanup(func() { + Server = before + }) +} diff --git a/internal/conf/static.go b/internal/conf/static.go index b9c3dfd86..ae153ab3e 100644 --- a/internal/conf/static.go +++ b/internal/conf/static.go @@ -46,40 +46,6 @@ var ( AppName string } - // Server settings - Server struct { - ExternalURL string `ini:"EXTERNAL_URL"` - Domain string - Protocol string - HTTPAddr string `ini:"HTTP_ADDR"` - HTTPPort string `ini:"HTTP_PORT"` - CertFile string - KeyFile string - TLSMinVersion string `ini:"TLS_MIN_VERSION"` - UnixSocketPermission string - LocalRootURL string `ini:"LOCAL_ROOT_URL"` - - OfflineMode bool - DisableRouterLog bool - EnableGzip bool - - AppDataPath string - LoadAssetsFromDisk bool - - LandingURL string `ini:"LANDING_URL"` - - // Derived from other static values - URL *url.URL `ini:"-"` // Parsed URL object of ExternalURL. - Subpath string `ini:"-"` // Subpath found the ExternalURL. Should be empty when not found. - SubpathDepth int `ini:"-"` // The number of slashes found in the Subpath. - UnixSocketMode os.FileMode `ini:"-"` // Parsed file mode of UnixSocketPermission. - - // Deprecated: Use ExternalURL instead, will be removed in 0.13. - RootURL string `ini:"ROOT_URL"` - // Deprecated: Use LandingURL instead, will be removed in 0.13. - LangdingPage string `ini:"LANDING_PAGE"` - } - // SSH settings SSH struct { Disabled bool `ini:"DISABLE_SSH"` @@ -127,22 +93,6 @@ var ( } `ini:"repository.upload"` } - // Database settings - Database struct { - Type string - Host string - Name string - User string - Password string - SSLMode string `ini:"SSL_MODE"` - Path string - - // Deprecated: Use Type instead, will be removed in 0.13. - DbType string - // Deprecated: Use Password instead, will be removed in 0.13. - Passwd string - } - // Security settings Security struct { InstallLock bool @@ -252,7 +202,7 @@ var ( MaxFiles int } - // Release settigns + // Release settings Release struct { Attachment struct { Enabled bool @@ -287,9 +237,6 @@ var ( DefaultInterval int } - // I18n settings - I18n *i18nConf - // Webhook settings Webhook struct { Types []string @@ -298,7 +245,7 @@ var ( PagingNum int } - // Markdown sttings + // Markdown settings Markdown struct { EnableHardLineBreak bool CustomURLSchemes []string `ini:"CUSTOM_URL_SCHEMES"` @@ -409,6 +356,70 @@ var ( HasRobotsTxt bool ) +type ServerOpts struct { + ExternalURL string `ini:"EXTERNAL_URL"` + Domain string + Protocol string + HTTPAddr string `ini:"HTTP_ADDR"` + HTTPPort string `ini:"HTTP_PORT"` + CertFile string + KeyFile string + TLSMinVersion string `ini:"TLS_MIN_VERSION"` + UnixSocketPermission string + LocalRootURL string `ini:"LOCAL_ROOT_URL"` + + OfflineMode bool + DisableRouterLog bool + EnableGzip bool + + AppDataPath string + LoadAssetsFromDisk bool + + LandingURL string `ini:"LANDING_URL"` + + // Derived from other static values + URL *url.URL `ini:"-"` // Parsed URL object of ExternalURL. + Subpath string `ini:"-"` // Subpath found the ExternalURL. Should be empty when not found. + SubpathDepth int `ini:"-"` // The number of slashes found in the Subpath. + UnixSocketMode os.FileMode `ini:"-"` // Parsed file mode of UnixSocketPermission. + + // Deprecated: Use ExternalURL instead, will be removed in 0.13. + RootURL string `ini:"ROOT_URL"` + // Deprecated: Use LandingURL instead, will be removed in 0.13. + LangdingPage string `ini:"LANDING_PAGE"` +} + +// Server settings +var Server ServerOpts + +type DatabaseOpts struct { + Type string + Host string + Name string + User string + Password string + SSLMode string `ini:"SSL_MODE"` + Path string + MaxOpenConns int + MaxIdleConns int + + // Deprecated: Use Type instead, will be removed in 0.13. + DbType string + // Deprecated: Use Password instead, will be removed in 0.13. + Passwd string +} + +// Database settings +var Database DatabaseOpts + +type LFSOpts struct { + Storage string + ObjectsPath string +} + +// LFS settings +var LFS LFSOpts + type i18nConf struct { Langs []string `delim:","` Names []string `delim:","` @@ -424,6 +435,9 @@ func (c *i18nConf) DateLang(lang string) string { return "en" } +// I18n settings +var I18n *i18nConf + // handleDeprecated transfers deprecated values to the new ones when set. func handleDeprecated() { if App.AppName != "" { diff --git a/internal/conf/testdata/TestInit.golden.ini b/internal/conf/testdata/TestInit.golden.ini index b08b90e1c..e5a8d066e 100644 --- a/internal/conf/testdata/TestInit.golden.ini +++ b/internal/conf/testdata/TestInit.golden.ini @@ -66,6 +66,8 @@ USER=gogs PASSWORD=12345678 SSL_MODE=disable PATH=/tmp/gogs.db +MAX_OPEN_CONNS=30 +MAX_IDLE_CONNS=30 DB_TYPE= PASSWD= diff --git a/internal/context/auth.go b/internal/context/auth.go index ad5837918..424a4f4f7 100644 --- a/internal/context/auth.go +++ b/internal/context/auth.go @@ -7,14 +7,12 @@ package context import ( "net/http" "net/url" - "strings" "github.com/go-macaron/csrf" "gopkg.in/macaron.v1" "gogs.io/gogs/internal/auth" "gogs.io/gogs/internal/conf" - "gogs.io/gogs/internal/tool" ) type ToggleOptions struct { @@ -95,18 +93,3 @@ func Toggle(options *ToggleOptions) macaron.Handler { } } } - -// RequireBasicAuth verifies HTTP Basic Authentication header with given credentials. -func (c *Context) RequireBasicAuth(username, password string) { - fields := strings.Fields(c.Req.Header.Get("Authorization")) - if len(fields) != 2 || fields[0] != "Basic" { - c.Status(http.StatusUnauthorized) - return - } - - uname, passwd, _ := tool.BasicAuthDecode(fields[1]) - if uname != username || passwd != password { - c.Status(http.StatusForbidden) - return - } -} diff --git a/internal/context/org.go b/internal/context/org.go index 6ed35835e..c56bca538 100644 --- a/internal/context/org.go +++ b/internal/context/org.go @@ -133,7 +133,7 @@ func HandleOrgAssignment(c *Context, args ...bool) { return } - c.Org.IsTeamAdmin = c.Org.Team.IsOwnerTeam() || c.Org.Team.Authorize >= db.ACCESS_MODE_ADMIN + c.Org.IsTeamAdmin = c.Org.Team.IsOwnerTeam() || c.Org.Team.Authorize >= db.AccessModeAdmin c.Data["IsTeamAdmin"] = c.Org.IsTeamAdmin if requireTeamAdmin && !c.Org.IsTeamAdmin { c.NotFound() diff --git a/internal/context/repo.go b/internal/context/repo.go index f2cac2772..871b35bcb 100644 --- a/internal/context/repo.go +++ b/internal/context/repo.go @@ -52,22 +52,22 @@ type Repository struct { // IsOwner returns true if current user is the owner of repository. func (r *Repository) IsOwner() bool { - return r.AccessMode >= db.ACCESS_MODE_OWNER + return r.AccessMode >= db.AccessModeOwner } // IsAdmin returns true if current user has admin or higher access of repository. func (r *Repository) IsAdmin() bool { - return r.AccessMode >= db.ACCESS_MODE_ADMIN + return r.AccessMode >= db.AccessModeAdmin } // IsWriter returns true if current user has write or higher access of repository. func (r *Repository) IsWriter() bool { - return r.AccessMode >= db.ACCESS_MODE_WRITE + return r.AccessMode >= db.AccessModeWrite } // HasAccess returns true if the current user has at least read access for this repository func (r *Repository) HasAccess() bool { - return r.AccessMode >= db.ACCESS_MODE_READ + return r.AccessMode >= db.AccessModeRead } // CanEnableEditor returns true if repository is editable and user has proper access level. @@ -168,7 +168,7 @@ func RepoAssignment(pages ...bool) macaron.Handler { // Admin has super access. if c.IsLogged && c.User.IsAdmin { - c.Repo.AccessMode = db.ACCESS_MODE_OWNER + c.Repo.AccessMode = db.AccessModeOwner } else { mode, err := db.UserAccessMode(c.UserID(), repo) if err != nil { @@ -179,7 +179,7 @@ func RepoAssignment(pages ...bool) macaron.Handler { } // Check access - if c.Repo.AccessMode == db.ACCESS_MODE_NONE { + if c.Repo.AccessMode == db.AccessModeNone { // Redirect to any accessible page if not yet on it if repo.IsPartialPublic() && (!(isIssuesPage || isWikiPage) || diff --git a/internal/cryptoutil/aes.go b/internal/cryptoutil/aes.go new file mode 100644 index 000000000..ec037b640 --- /dev/null +++ b/internal/cryptoutil/aes.go @@ -0,0 +1,56 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package cryptoutil + +import ( + "crypto/aes" + "crypto/cipher" + "crypto/rand" + "errors" +) + +// AESGCMEncrypt encrypts plaintext with the given key using AES in GCM mode. +func AESGCMEncrypt(key, plaintext []byte) ([]byte, error) { + block, err := aes.NewCipher(key) + if err != nil { + return nil, err + } + + gcm, err := cipher.NewGCM(block) + if err != nil { + return nil, err + } + + nonce := make([]byte, gcm.NonceSize()) + if _, err := rand.Read(nonce); err != nil { + return nil, err + } + + ciphertext := gcm.Seal(nil, nonce, plaintext, nil) + return append(nonce, ciphertext...), nil +} + +// AESGCMDecrypt decrypts ciphertext with the given key using AES in GCM mode. +func AESGCMDecrypt(key, ciphertext []byte) ([]byte, error) { + block, err := aes.NewCipher(key) + if err != nil { + return nil, err + } + + gcm, err := cipher.NewGCM(block) + if err != nil { + return nil, err + } + + size := gcm.NonceSize() + if len(ciphertext)-size <= 0 { + return nil, errors.New("ciphertext is empty") + } + + nonce := ciphertext[:size] + ciphertext = ciphertext[size:] + + return gcm.Open(nil, nonce, ciphertext, nil) +} diff --git a/internal/cryptoutil/aes_test.go b/internal/cryptoutil/aes_test.go new file mode 100644 index 000000000..0e34bcb08 --- /dev/null +++ b/internal/cryptoutil/aes_test.go @@ -0,0 +1,34 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package cryptoutil + +import ( + "crypto/rand" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestAESGCM(t *testing.T) { + key := make([]byte, 16) // AES-128 + _, err := rand.Read(key) + if err != nil { + t.Fatal(err) + } + + plaintext := []byte("this will be encrypted") + + encrypted, err := AESGCMEncrypt(key, plaintext) + if err != nil { + t.Fatal(err) + } + + decrypted, err := AESGCMDecrypt(key, encrypted) + if err != nil { + t.Fatal(err) + } + + assert.Equal(t, plaintext, decrypted) +} diff --git a/internal/cryptoutil/md5.go b/internal/cryptoutil/md5.go new file mode 100644 index 000000000..249f3ed51 --- /dev/null +++ b/internal/cryptoutil/md5.go @@ -0,0 +1,22 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package cryptoutil + +import ( + "crypto/md5" + "encoding/hex" +) + +// MD5 encodes string to hexadecimal of MD5 checksum. +func MD5(str string) string { + return hex.EncodeToString(MD5Bytes(str)) +} + +// MD5Bytes encodes string to MD5 checksum. +func MD5Bytes(str string) []byte { + m := md5.New() + _, _ = m.Write([]byte(str)) + return m.Sum(nil) +} diff --git a/internal/cryptoutil/md5_test.go b/internal/cryptoutil/md5_test.go new file mode 100644 index 000000000..d3986a327 --- /dev/null +++ b/internal/cryptoutil/md5_test.go @@ -0,0 +1,27 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package cryptoutil + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestMD5(t *testing.T) { + tests := []struct { + input string + output string + }{ + {input: "", output: "d41d8cd98f00b204e9800998ecf8427e"}, + {input: "The quick brown fox jumps over the lazy dog", output: "9e107d9d372bb6826bd81d3542a419d6"}, + {input: "The quick brown fox jumps over the lazy dog.", output: "e4d909c290d0fb1ca068ffaddf22cbd0"}, + } + for _, test := range tests { + t.Run(test.input, func(t *testing.T) { + assert.Equal(t, test.output, MD5(test.input)) + }) + } +} diff --git a/internal/db/access.go b/internal/db/access.go index 63911f8e3..987abe805 100644 --- a/internal/db/access.go +++ b/internal/db/access.go @@ -13,22 +13,22 @@ import ( type AccessMode int const ( - ACCESS_MODE_NONE AccessMode = iota // 0 - ACCESS_MODE_READ // 1 - ACCESS_MODE_WRITE // 2 - ACCESS_MODE_ADMIN // 3 - ACCESS_MODE_OWNER // 4 + AccessModeNone AccessMode = iota // 0 + AccessModeRead // 1 + AccessModeWrite // 2 + AccessModeAdmin // 3 + AccessModeOwner // 4 ) func (mode AccessMode) String() string { switch mode { - case ACCESS_MODE_READ: + case AccessModeRead: return "read" - case ACCESS_MODE_WRITE: + case AccessModeWrite: return "write" - case ACCESS_MODE_ADMIN: + case AccessModeAdmin: return "admin" - case ACCESS_MODE_OWNER: + case AccessModeOwner: return "owner" default: return "none" @@ -39,15 +39,15 @@ func (mode AccessMode) String() string { func ParseAccessMode(permission string) AccessMode { switch permission { case "write": - return ACCESS_MODE_WRITE + return AccessModeWrite case "admin": - return ACCESS_MODE_ADMIN + return AccessModeAdmin default: - return ACCESS_MODE_READ + return AccessModeRead } } -// Access represents the highest access level of a user to the repository. The only access type +// Access represents the highest access level of a user to a repository. The only access type // that is not in this table is the real owner of a repository. In case of an organization // repository, the members of the owners team are in this table. type Access struct { @@ -58,10 +58,10 @@ type Access struct { } func userAccessMode(e Engine, userID int64, repo *Repository) (AccessMode, error) { - mode := ACCESS_MODE_NONE + mode := AccessModeNone // Everyone has read access to public repository if !repo.IsPrivate { - mode = ACCESS_MODE_READ + mode = AccessModeRead } if userID <= 0 { @@ -69,7 +69,7 @@ func userAccessMode(e Engine, userID int64, repo *Repository) (AccessMode, error } if userID == repo.OwnerID { - return ACCESS_MODE_OWNER, nil + return AccessModeOwner, nil } access := &Access{ @@ -93,6 +93,7 @@ func hasAccess(e Engine, userID int64, repo *Repository, testMode AccessMode) (b } // HasAccess returns true if someone has the request access level. User can be nil! +// Deprecated: Use Perms.Authorize instead. func HasAccess(userID int64, repo *Repository, testMode AccessMode) (bool, error) { return hasAccess(x, userID, repo, testMode) } @@ -136,7 +137,7 @@ func (user *User) GetAccessibleRepositories(limit int) (repos []*Repository, _ e } func maxAccessMode(modes ...AccessMode) AccessMode { - max := ACCESS_MODE_NONE + max := AccessModeNone for _, mode := range modes { if mode > max { max = mode @@ -145,7 +146,7 @@ func maxAccessMode(modes ...AccessMode) AccessMode { return max } -// FIXME: do corss-comparison so reduce deletions and additions to the minimum? +// Deprecated: Use Perms.SetRepoPerms instead. func (repo *Repository) refreshAccesses(e Engine, accessMap map[int64]AccessMode) (err error) { newAccesses := make([]Access, 0, len(accessMap)) for userID, mode := range accessMap { @@ -205,7 +206,7 @@ func (repo *Repository) recalculateTeamAccesses(e Engine, ignTeamID int64) (err // Owner team gets owner access, and skip for teams that do not // have relations with repository. if t.IsOwnerTeam() { - t.Authorize = ACCESS_MODE_OWNER + t.Authorize = AccessModeOwner } else if !t.hasRepository(e, repo.ID) { continue } diff --git a/internal/db/access_tokens.go b/internal/db/access_tokens.go new file mode 100644 index 000000000..b6cd53397 --- /dev/null +++ b/internal/db/access_tokens.go @@ -0,0 +1,152 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "fmt" + "time" + + "github.com/jinzhu/gorm" + gouuid "github.com/satori/go.uuid" + + "gogs.io/gogs/internal/errutil" + "gogs.io/gogs/internal/tool" +) + +// AccessTokensStore is the persistent interface for access tokens. +// +// NOTE: All methods are sorted in alphabetical order. +type AccessTokensStore interface { + // Create creates a new access token and persist to database. + // It returns ErrAccessTokenAlreadyExist when an access token + // with same name already exists for the user. + Create(userID int64, name string) (*AccessToken, error) + // DeleteByID deletes the access token by given ID. + // 🚨 SECURITY: The "userID" is required to prevent attacker + // deletes arbitrary access token that belongs to another user. + DeleteByID(userID, id int64) error + // GetBySHA returns the access token with given SHA1. + // It returns ErrAccessTokenNotExist when not found. + GetBySHA(sha string) (*AccessToken, error) + // List returns all access tokens belongs to given user. + List(userID int64) ([]*AccessToken, error) + // Save persists all values of given access token. + // The Updated field is set to current time automatically. + Save(t *AccessToken) error +} + +var AccessTokens AccessTokensStore + +// AccessToken is a personal access token. +type AccessToken struct { + ID int64 + UserID int64 `xorm:"uid INDEX" gorm:"COLUMN:uid;INDEX"` + Name string + Sha1 string `xorm:"UNIQUE VARCHAR(40)" gorm:"TYPE:VARCHAR(40);UNIQUE"` + + Created time.Time `xorm:"-" gorm:"-" json:"-"` + CreatedUnix int64 + Updated time.Time `xorm:"-" gorm:"-" json:"-"` + UpdatedUnix int64 + HasRecentActivity bool `xorm:"-" gorm:"-" json:"-"` + HasUsed bool `xorm:"-" gorm:"-" json:"-"` +} + +// NOTE: This is a GORM create hook. +func (t *AccessToken) BeforeCreate() { + t.CreatedUnix = gorm.NowFunc().Unix() +} + +// NOTE: This is a GORM update hook. +func (t *AccessToken) BeforeUpdate() { + t.UpdatedUnix = gorm.NowFunc().Unix() +} + +// NOTE: This is a GORM query hook. +func (t *AccessToken) AfterFind() { + t.Created = time.Unix(t.CreatedUnix, 0).Local() + t.Updated = time.Unix(t.UpdatedUnix, 0).Local() + t.HasUsed = t.Updated.After(t.Created) + t.HasRecentActivity = t.Updated.Add(7 * 24 * time.Hour).After(gorm.NowFunc()) +} + +var _ AccessTokensStore = (*accessTokens)(nil) + +type accessTokens struct { + *gorm.DB +} + +type ErrAccessTokenAlreadyExist struct { + args errutil.Args +} + +func IsErrAccessTokenAlreadyExist(err error) bool { + _, ok := err.(ErrAccessTokenAlreadyExist) + return ok +} + +func (err ErrAccessTokenAlreadyExist) Error() string { + return fmt.Sprintf("access token already exists: %v", err.args) +} + +func (db *accessTokens) Create(userID int64, name string) (*AccessToken, error) { + err := db.Where("uid = ? AND name = ?", userID, name).First(new(AccessToken)).Error + if err == nil { + return nil, ErrAccessTokenAlreadyExist{args: errutil.Args{"userID": userID, "name": name}} + } else if !gorm.IsRecordNotFoundError(err) { + return nil, err + } + + token := &AccessToken{ + UserID: userID, + Name: name, + Sha1: tool.SHA1(gouuid.NewV4().String()), + } + return token, db.DB.Create(token).Error +} + +func (db *accessTokens) DeleteByID(userID, id int64) error { + return db.Where("id = ? AND uid = ?", id, userID).Delete(new(AccessToken)).Error +} + +var _ errutil.NotFound = (*ErrAccessTokenNotExist)(nil) + +type ErrAccessTokenNotExist struct { + args errutil.Args +} + +func IsErrAccessTokenNotExist(err error) bool { + _, ok := err.(ErrAccessTokenNotExist) + return ok +} + +func (err ErrAccessTokenNotExist) Error() string { + return fmt.Sprintf("access token does not exist: %v", err.args) +} + +func (ErrAccessTokenNotExist) NotFound() bool { + return true +} + +func (db *accessTokens) GetBySHA(sha string) (*AccessToken, error) { + token := new(AccessToken) + err := db.Where("sha1 = ?", sha).First(token).Error + if err != nil { + if gorm.IsRecordNotFoundError(err) { + return nil, ErrAccessTokenNotExist{args: errutil.Args{"sha": sha}} + } + return nil, err + } + return token, nil +} + +func (db *accessTokens) List(userID int64) ([]*AccessToken, error) { + var tokens []*AccessToken + return tokens, db.Where("uid = ?", userID).Find(&tokens).Error +} + +func (db *accessTokens) Save(t *AccessToken) error { + return db.DB.Save(t).Error +} diff --git a/internal/db/access_tokens_test.go b/internal/db/access_tokens_test.go new file mode 100644 index 000000000..92a2bfa24 --- /dev/null +++ b/internal/db/access_tokens_test.go @@ -0,0 +1,181 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "testing" + "time" + + "github.com/jinzhu/gorm" + "github.com/stretchr/testify/assert" + + "gogs.io/gogs/internal/errutil" +) + +func Test_accessTokens(t *testing.T) { + if testing.Short() { + t.Skip() + } + + t.Parallel() + + tables := []interface{}{new(AccessToken)} + db := &accessTokens{ + DB: initTestDB(t, "accessTokens", tables...), + } + + for _, tc := range []struct { + name string + test func(*testing.T, *accessTokens) + }{ + {"Create", test_accessTokens_Create}, + {"DeleteByID", test_accessTokens_DeleteByID}, + {"GetBySHA", test_accessTokens_GetBySHA}, + {"List", test_accessTokens_List}, + {"Save", test_accessTokens_Save}, + } { + t.Run(tc.name, func(t *testing.T) { + t.Cleanup(func() { + err := clearTables(t, db.DB, tables...) + if err != nil { + t.Fatal(err) + } + }) + tc.test(t, db) + }) + } +} + +func test_accessTokens_Create(t *testing.T, db *accessTokens) { + // Create first access token with name "Test" + token, err := db.Create(1, "Test") + if err != nil { + t.Fatal(err) + } + + assert.Equal(t, int64(1), token.UserID) + assert.Equal(t, "Test", token.Name) + assert.Equal(t, 40, len(token.Sha1), "sha1 length") + + // Get it back and check the Created field + token, err = db.GetBySHA(token.Sha1) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, gorm.NowFunc().Format(time.RFC3339), token.Created.Format(time.RFC3339)) + + // Try create second access token with same name should fail + _, err = db.Create(token.UserID, token.Name) + expErr := ErrAccessTokenAlreadyExist{args: errutil.Args{"userID": token.UserID, "name": token.Name}} + assert.Equal(t, expErr, err) +} + +func test_accessTokens_DeleteByID(t *testing.T, db *accessTokens) { + // Create an access token with name "Test" + token, err := db.Create(1, "Test") + if err != nil { + t.Fatal(err) + } + + // Delete a token with mismatched user ID is noop + err = db.DeleteByID(2, token.ID) + if err != nil { + t.Fatal(err) + } + + // We should be able to get it back + _, err = db.GetBySHA(token.Sha1) + if err != nil { + t.Fatal(err) + } + _, err = db.GetBySHA(token.Sha1) + if err != nil { + t.Fatal(err) + } + + // Now delete this token with correct user ID + err = db.DeleteByID(token.UserID, token.ID) + if err != nil { + t.Fatal(err) + } + + // We should get token not found error + _, err = db.GetBySHA(token.Sha1) + expErr := ErrAccessTokenNotExist{args: errutil.Args{"sha": token.Sha1}} + assert.Equal(t, expErr, err) +} + +func test_accessTokens_GetBySHA(t *testing.T, db *accessTokens) { + // Create an access token with name "Test" + token, err := db.Create(1, "Test") + if err != nil { + t.Fatal(err) + } + + // We should be able to get it back + _, err = db.GetBySHA(token.Sha1) + if err != nil { + t.Fatal(err) + } + + // Try to get a non-existent token + _, err = db.GetBySHA("bad_sha") + expErr := ErrAccessTokenNotExist{args: errutil.Args{"sha": "bad_sha"}} + assert.Equal(t, expErr, err) +} + +func test_accessTokens_List(t *testing.T, db *accessTokens) { + // Create two access tokens for user 1 + _, err := db.Create(1, "user1_1") + if err != nil { + t.Fatal(err) + } + _, err = db.Create(1, "user1_2") + if err != nil { + t.Fatal(err) + } + + // Create one access token for user 2 + _, err = db.Create(2, "user2_1") + if err != nil { + t.Fatal(err) + } + + // List all access tokens for user 1 + tokens, err := db.List(1) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, 2, len(tokens), "number of tokens") + + assert.Equal(t, int64(1), tokens[0].UserID) + assert.Equal(t, "user1_1", tokens[0].Name) + + assert.Equal(t, int64(1), tokens[1].UserID) + assert.Equal(t, "user1_2", tokens[1].Name) +} + +func test_accessTokens_Save(t *testing.T, db *accessTokens) { + // Create an access token with name "Test" + token, err := db.Create(1, "Test") + if err != nil { + t.Fatal(err) + } + + // Updated field is zero now + assert.True(t, token.Updated.IsZero()) + + err = db.Save(token) + if err != nil { + t.Fatal(err) + } + + // Get back from DB should have Updated set + token, err = db.GetBySHA(token.Sha1) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, gorm.NowFunc().Format(time.RFC3339), token.Updated.Format(time.RFC3339)) +} diff --git a/internal/db/db.go b/internal/db/db.go new file mode 100644 index 000000000..ec2dd6eca --- /dev/null +++ b/internal/db/db.go @@ -0,0 +1,195 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "fmt" + "io" + "net/url" + "path/filepath" + "strings" + "time" + + "github.com/jinzhu/gorm" + _ "github.com/jinzhu/gorm/dialects/mssql" + _ "github.com/jinzhu/gorm/dialects/mysql" + _ "github.com/jinzhu/gorm/dialects/postgres" + _ "github.com/jinzhu/gorm/dialects/sqlite" + "github.com/pkg/errors" + log "unknwon.dev/clog/v2" + + "gogs.io/gogs/internal/conf" + "gogs.io/gogs/internal/dbutil" +) + +// parsePostgreSQLHostPort parses given input in various forms defined in +// https://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-CONNSTRING +// and returns proper host and port number. +func parsePostgreSQLHostPort(info string) (host, port string) { + host, port = "127.0.0.1", "5432" + if strings.Contains(info, ":") && !strings.HasSuffix(info, "]") { + idx := strings.LastIndex(info, ":") + host = info[:idx] + port = info[idx+1:] + } else if len(info) > 0 { + host = info + } + return host, port +} + +func parseMSSQLHostPort(info string) (host, port string) { + host, port = "127.0.0.1", "1433" + if strings.Contains(info, ":") { + host = strings.Split(info, ":")[0] + port = strings.Split(info, ":")[1] + } else if strings.Contains(info, ",") { + host = strings.Split(info, ",")[0] + port = strings.TrimSpace(strings.Split(info, ",")[1]) + } else if len(info) > 0 { + host = info + } + return host, port +} + +// parseDSN takes given database options and returns parsed DSN. +func parseDSN(opts conf.DatabaseOpts) (dsn string, err error) { + // In case the database name contains "?" with some parameters + concate := "?" + if strings.Contains(opts.Name, concate) { + concate = "&" + } + + switch opts.Type { + case "mysql": + if opts.Host[0] == '/' { // Looks like a unix socket + dsn = fmt.Sprintf("%s:%s@unix(%s)/%s%scharset=utf8mb4&parseTime=true", + opts.User, opts.Password, opts.Host, opts.Name, concate) + } else { + dsn = fmt.Sprintf("%s:%s@tcp(%s)/%s%scharset=utf8mb4&parseTime=true", + opts.User, opts.Password, opts.Host, opts.Name, concate) + } + + case "postgres": + host, port := parsePostgreSQLHostPort(opts.Host) + if host[0] == '/' { // looks like a unix socket + dsn = fmt.Sprintf("postgres://%s:%s@:%s/%s%ssslmode=%s&host=%s", + url.QueryEscape(opts.User), url.QueryEscape(opts.Password), port, opts.Name, concate, opts.SSLMode, host) + } else { + dsn = fmt.Sprintf("postgres://%s:%s@%s:%s/%s%ssslmode=%s", + url.QueryEscape(opts.User), url.QueryEscape(opts.Password), host, port, opts.Name, concate, opts.SSLMode) + } + + case "mssql": + host, port := parseMSSQLHostPort(opts.Host) + dsn = fmt.Sprintf("server=%s; port=%s; database=%s; user id=%s; password=%s;", + host, port, opts.Name, opts.User, opts.Password) + + case "sqlite3": + dsn = "file:" + opts.Path + "?cache=shared&mode=rwc" + + default: + return "", errors.Errorf("unrecognized dialect: %s", opts.Type) + } + + return dsn, nil +} + +func openDB(opts conf.DatabaseOpts) (*gorm.DB, error) { + dsn, err := parseDSN(opts) + if err != nil { + return nil, errors.Wrap(err, "parse DSN") + } + + return gorm.Open(opts.Type, dsn) +} + +func getLogWriter() (io.Writer, error) { + sec := conf.File.Section("log.gorm") + w, err := log.NewFileWriter( + filepath.Join(conf.Log.RootPath, "gorm.log"), + log.FileRotationConfig{ + Rotate: sec.Key("ROTATE").MustBool(true), + Daily: sec.Key("ROTATE_DAILY").MustBool(true), + MaxSize: sec.Key("MAX_SIZE").MustInt64(100) * 1024 * 1024, + MaxDays: sec.Key("MAX_DAYS").MustInt64(3), + }, + ) + if err != nil { + return nil, errors.Wrap(err, `create "gorm.log"`) + } + return w, nil +} + +var tables = []interface{}{ + new(AccessToken), + new(LFSObject), new(LoginSource), +} + +func Init() error { + db, err := openDB(conf.Database) + if err != nil { + return errors.Wrap(err, "open database") + } + db.SingularTable(true) + db.DB().SetMaxOpenConns(conf.Database.MaxOpenConns) + db.DB().SetMaxIdleConns(conf.Database.MaxIdleConns) + db.DB().SetConnMaxLifetime(time.Minute) + + w, err := getLogWriter() + if err != nil { + return errors.Wrap(err, "get log writer") + } + db.SetLogger(&dbutil.Writer{Writer: w}) + if !conf.IsProdMode() { + db = db.LogMode(true) + } + + switch conf.Database.Type { + case "mysql": + conf.UseMySQL = true + db = db.Set("gorm:table_options", "ENGINE=InnoDB") + case "postgres": + conf.UsePostgreSQL = true + case "mssql": + conf.UseMSSQL = true + case "sqlite3": + conf.UseSQLite3 = true + } + + // NOTE: GORM has problem detecting existing columns, see https://github.com/gogs/gogs/issues/6091. + // Therefore only use it to create new tables, and do customized migration with future changes. + for _, table := range tables { + if db.HasTable(table) { + continue + } + + name := strings.TrimPrefix(fmt.Sprintf("%T", table), "*db.") + err = db.AutoMigrate(table).Error + if err != nil { + return errors.Wrapf(err, "auto migrate %q", name) + } + log.Trace("Auto migrated %q", name) + } + + gorm.NowFunc = func() time.Time { + return time.Now().UTC().Truncate(time.Microsecond) + } + + sourceFiles, err := loadLoginSourceFiles(filepath.Join(conf.CustomDir(), "conf", "auth.d")) + if err != nil { + return errors.Wrap(err, "load login source files") + } + + // Initialize stores, sorted in alphabetical order. + AccessTokens = &accessTokens{DB: db} + LoginSources = &loginSources{DB: db, files: sourceFiles} + LFS = &lfs{DB: db} + Perms = &perms{DB: db} + Repos = &repos{DB: db} + TwoFactors = &twoFactors{DB: db} + Users = &users{DB: db} + + return db.DB().Ping() +} diff --git a/internal/db/db_test.go b/internal/db/db_test.go new file mode 100644 index 000000000..8c894125f --- /dev/null +++ b/internal/db/db_test.go @@ -0,0 +1,148 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "fmt" + "testing" + + "github.com/stretchr/testify/assert" + + "gogs.io/gogs/internal/conf" +) + +func Test_parsePostgreSQLHostPort(t *testing.T) { + tests := []struct { + info string + expHost string + expPort string + }{ + {info: "127.0.0.1:1234", expHost: "127.0.0.1", expPort: "1234"}, + {info: "127.0.0.1", expHost: "127.0.0.1", expPort: "5432"}, + {info: "[::1]:1234", expHost: "[::1]", expPort: "1234"}, + {info: "[::1]", expHost: "[::1]", expPort: "5432"}, + {info: "/tmp/pg.sock:1234", expHost: "/tmp/pg.sock", expPort: "1234"}, + {info: "/tmp/pg.sock", expHost: "/tmp/pg.sock", expPort: "5432"}, + } + for _, test := range tests { + t.Run("", func(t *testing.T) { + host, port := parsePostgreSQLHostPort(test.info) + assert.Equal(t, test.expHost, host) + assert.Equal(t, test.expPort, port) + }) + } +} + +func Test_parseMSSQLHostPort(t *testing.T) { + tests := []struct { + info string + expHost string + expPort string + }{ + {info: "127.0.0.1:1234", expHost: "127.0.0.1", expPort: "1234"}, + {info: "127.0.0.1,1234", expHost: "127.0.0.1", expPort: "1234"}, + {info: "127.0.0.1", expHost: "127.0.0.1", expPort: "1433"}, + } + for _, test := range tests { + t.Run("", func(t *testing.T) { + host, port := parseMSSQLHostPort(test.info) + assert.Equal(t, test.expHost, host) + assert.Equal(t, test.expPort, port) + }) + } +} + +func Test_parseDSN(t *testing.T) { + t.Run("bad dialect", func(t *testing.T) { + _, err := parseDSN(conf.DatabaseOpts{ + Type: "bad_dialect", + }) + assert.Equal(t, "unrecognized dialect: bad_dialect", fmt.Sprintf("%v", err)) + }) + + tests := []struct { + name string + opts conf.DatabaseOpts + expDSN string + }{ + { + name: "mysql: unix", + opts: conf.DatabaseOpts{ + Type: "mysql", + Host: "/tmp/mysql.sock", + Name: "gogs", + User: "gogs", + Password: "pa$$word", + }, + expDSN: "gogs:pa$$word@unix(/tmp/mysql.sock)/gogs?charset=utf8mb4&parseTime=true", + }, + { + name: "mysql: tcp", + opts: conf.DatabaseOpts{ + Type: "mysql", + Host: "localhost:3306", + Name: "gogs", + User: "gogs", + Password: "pa$$word", + }, + expDSN: "gogs:pa$$word@tcp(localhost:3306)/gogs?charset=utf8mb4&parseTime=true", + }, + + { + name: "postgres: unix", + opts: conf.DatabaseOpts{ + Type: "postgres", + Host: "/tmp/pg.sock", + Name: "gogs", + User: "gogs@local", + Password: "pa$$word", + SSLMode: "disable", + }, + expDSN: "postgres://gogs%40local:pa%24%24word@:5432/gogs?sslmode=disable&host=/tmp/pg.sock", + }, + { + name: "postgres: tcp", + opts: conf.DatabaseOpts{ + Type: "postgres", + Host: "127.0.0.1", + Name: "gogs", + User: "gogs@local", + Password: "pa$$word", + SSLMode: "disable", + }, + expDSN: "postgres://gogs%40local:pa%24%24word@127.0.0.1:5432/gogs?sslmode=disable", + }, + + { + name: "mssql", + opts: conf.DatabaseOpts{ + Type: "mssql", + Host: "127.0.0.1", + Name: "gogs", + User: "gogs@local", + Password: "pa$$word", + }, + expDSN: "server=127.0.0.1; port=1433; database=gogs; user id=gogs@local; password=pa$$word;", + }, + + { + name: "sqlite3", + opts: conf.DatabaseOpts{ + Type: "sqlite3", + Path: "/tmp/gogs.db", + }, + expDSN: "file:/tmp/gogs.db?cache=shared&mode=rwc", + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + dsn, err := parseDSN(test.opts) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, test.expDSN, dsn) + }) + } +} diff --git a/internal/db/error.go b/internal/db/error.go index dff234d90..d1668d991 100644 --- a/internal/db/error.go +++ b/internal/db/error.go @@ -8,32 +8,6 @@ import ( "fmt" ) -type ErrNameReserved struct { - Name string -} - -func IsErrNameReserved(err error) bool { - _, ok := err.(ErrNameReserved) - return ok -} - -func (err ErrNameReserved) Error() string { - return fmt.Sprintf("name is reserved [name: %s]", err.Name) -} - -type ErrNamePatternNotAllowed struct { - Pattern string -} - -func IsErrNamePatternNotAllowed(err error) bool { - _, ok := err.(ErrNamePatternNotAllowed) - return ok -} - -func (err ErrNamePatternNotAllowed) Error() string { - return fmt.Sprintf("name pattern is not allowed [pattern: %s]", err.Pattern) -} - // ____ ___ // | | \______ ___________ // | | / ___// __ \_ __ \ @@ -41,32 +15,6 @@ func (err ErrNamePatternNotAllowed) Error() string { // |______//____ >\___ >__| // \/ \/ -type ErrUserAlreadyExist struct { - Name string -} - -func IsErrUserAlreadyExist(err error) bool { - _, ok := err.(ErrUserAlreadyExist) - return ok -} - -func (err ErrUserAlreadyExist) Error() string { - return fmt.Sprintf("user already exists [name: %s]", err.Name) -} - -type ErrEmailAlreadyUsed struct { - Email string -} - -func IsErrEmailAlreadyUsed(err error) bool { - _, ok := err.(ErrEmailAlreadyUsed) - return ok -} - -func (err ErrEmailAlreadyUsed) Error() string { - return fmt.Sprintf("e-mail has been used [email: %s]", err.Email) -} - type ErrUserOwnRepos struct { UID int64 } @@ -218,38 +166,6 @@ func (err ErrDeployKeyNameAlreadyUsed) Error() string { return fmt.Sprintf("public key already exists [repo_id: %d, name: %s]", err.RepoID, err.Name) } -// _____ ___________ __ -// / _ \ ____ ____ ____ ______ _____\__ ___/___ | | __ ____ ____ -// / /_\ \_/ ___\/ ___\/ __ \ / ___// ___/ | | / _ \| |/ // __ \ / \ -// / | \ \__\ \__\ ___/ \___ \ \___ \ | |( <_> ) <\ ___/| | \ -// \____|__ /\___ >___ >___ >____ >____ > |____| \____/|__|_ \\___ >___| / -// \/ \/ \/ \/ \/ \/ \/ \/ \/ - -type ErrAccessTokenNotExist struct { - SHA string -} - -func IsErrAccessTokenNotExist(err error) bool { - _, ok := err.(ErrAccessTokenNotExist) - return ok -} - -func (err ErrAccessTokenNotExist) Error() string { - return fmt.Sprintf("access token does not exist [sha: %s]", err.SHA) -} - -type ErrAccessTokenEmpty struct { -} - -func IsErrAccessTokenEmpty(err error) bool { - _, ok := err.(ErrAccessTokenEmpty) - return ok -} - -func (err ErrAccessTokenEmpty) Error() string { - return fmt.Sprintf("access token is empty") -} - // ________ .__ __ .__ // \_____ \_______ _________ ____ |__|____________ _/ |_|__| ____ ____ // / | \_ __ \/ ___\__ \ / \| \___ /\__ \\ __\ |/ _ \ / \ @@ -277,20 +193,6 @@ func (err ErrLastOrgOwner) Error() string { // |____|_ /\___ > __/ \____/____ >__||__| \____/|__| / ____| // \/ \/|__| \/ \/ -type ErrRepoAlreadyExist struct { - Uname string - Name string -} - -func IsErrRepoAlreadyExist(err error) bool { - _, ok := err.(ErrRepoAlreadyExist) - return ok -} - -func (err ErrRepoAlreadyExist) Error() string { - return fmt.Sprintf("repository already exists [uname: %s, name: %s]", err.Uname, err.Name) -} - type ErrInvalidCloneAddr struct { IsURLError bool IsInvalidPath bool @@ -359,39 +261,6 @@ func (err ErrRepoFileAlreadyExist) Error() string { return fmt.Sprintf("repository file already exists [file_name: %s]", err.FileName) } -// .____ .__ _________ -// | | ____ ____ |__| ____ / _____/ ____ __ _________ ____ ____ -// | | / _ \ / ___\| |/ \ \_____ \ / _ \| | \_ __ \_/ ___\/ __ \ -// | |__( <_> ) /_/ > | | \ / ( <_> ) | /| | \/\ \__\ ___/ -// |_______ \____/\___ /|__|___| / /_______ /\____/|____/ |__| \___ >___ > -// \/ /_____/ \/ \/ \/ \/ - -type ErrLoginSourceAlreadyExist struct { - Name string -} - -func IsErrLoginSourceAlreadyExist(err error) bool { - _, ok := err.(ErrLoginSourceAlreadyExist) - return ok -} - -func (err ErrLoginSourceAlreadyExist) Error() string { - return fmt.Sprintf("login source already exists [name: %s]", err.Name) -} - -type ErrLoginSourceInUse struct { - ID int64 -} - -func IsErrLoginSourceInUse(err error) bool { - _, ok := err.(ErrLoginSourceInUse) - return ok -} - -func (err ErrLoginSourceInUse) Error() string { - return fmt.Sprintf("login source is still used by some users [id: %d]", err.ID) -} - // ___________ // \__ ___/___ _____ _____ // | |_/ __ \\__ \ / \ @@ -400,6 +269,7 @@ func (err ErrLoginSourceInUse) Error() string { // \/ \/ \/ type ErrTeamAlreadyExist struct { + ID int64 OrgID int64 Name string } @@ -410,7 +280,7 @@ func IsErrTeamAlreadyExist(err error) bool { } func (err ErrTeamAlreadyExist) Error() string { - return fmt.Sprintf("team already exists [org_id: %d, name: %s]", err.OrgID, err.Name) + return fmt.Sprintf("team already exists [id: %d, org_id: %d, name: %s]", err.ID, err.OrgID, err.Name) } // ____ ___ .__ .___ diff --git a/internal/db/errors/login_source.go b/internal/db/errors/login_source.go index dd18664eb..db0cd1f9d 100644 --- a/internal/db/errors/login_source.go +++ b/internal/db/errors/login_source.go @@ -6,19 +6,6 @@ package errors import "fmt" -type LoginSourceNotExist struct { - ID int64 -} - -func IsLoginSourceNotExist(err error) bool { - _, ok := err.(LoginSourceNotExist) - return ok -} - -func (err LoginSourceNotExist) Error() string { - return fmt.Sprintf("login source does not exist [id: %d]", err.ID) -} - type LoginSourceNotActivated struct { SourceID int64 } @@ -44,17 +31,3 @@ func IsInvalidLoginSourceType(err error) bool { func (err InvalidLoginSourceType) Error() string { return fmt.Sprintf("invalid login source type [type: %v]", err.Type) } - -type LoginSourceMismatch struct { - Expect int64 - Actual int64 -} - -func IsLoginSourceMismatch(err error) bool { - _, ok := err.(LoginSourceMismatch) - return ok -} - -func (err LoginSourceMismatch) Error() string { - return fmt.Sprintf("login source mismatch [expect: %d, actual: %d]", err.Expect, err.Actual) -} diff --git a/internal/db/errors/token.go b/internal/db/errors/token.go deleted file mode 100644 index d6a4577a8..000000000 --- a/internal/db/errors/token.go +++ /dev/null @@ -1,16 +0,0 @@ -package errors - -import "fmt" - -type AccessTokenNameAlreadyExist struct { - Name string -} - -func IsAccessTokenNameAlreadyExist(err error) bool { - _, ok := err.(AccessTokenNameAlreadyExist) - return ok -} - -func (err AccessTokenNameAlreadyExist) Error() string { - return fmt.Sprintf("access token already exist [name: %s]", err.Name) -} diff --git a/internal/db/errors/two_factor.go b/internal/db/errors/two_factor.go deleted file mode 100644 index 02cdcf5ce..000000000 --- a/internal/db/errors/two_factor.go +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright 2017 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package errors - -import "fmt" - -type TwoFactorNotFound struct { - UserID int64 -} - -func IsTwoFactorNotFound(err error) bool { - _, ok := err.(TwoFactorNotFound) - return ok -} - -func (err TwoFactorNotFound) Error() string { - return fmt.Sprintf("two-factor authentication does not found [user_id: %d]", err.UserID) -} - -type TwoFactorRecoveryCodeNotFound struct { - Code string -} - -func IsTwoFactorRecoveryCodeNotFound(err error) bool { - _, ok := err.(TwoFactorRecoveryCodeNotFound) - return ok -} - -func (err TwoFactorRecoveryCodeNotFound) Error() string { - return fmt.Sprintf("two-factor recovery code does not found [code: %s]", err.Code) -} diff --git a/internal/db/errors/user.go b/internal/db/errors/user.go index 54a6ad50f..09572af92 100644 --- a/internal/db/errors/user.go +++ b/internal/db/errors/user.go @@ -8,17 +8,6 @@ import ( "fmt" ) -type EmptyName struct{} - -func IsEmptyName(err error) bool { - _, ok := err.(EmptyName) - return ok -} - -func (err EmptyName) Error() string { - return "empty name" -} - type UserNotKeyOwner struct { KeyID int64 } diff --git a/internal/db/issue.go b/internal/db/issue.go index b153e6a14..6347c99db 100644 --- a/internal/db/issue.go +++ b/internal/db/issue.go @@ -681,7 +681,7 @@ func newIssue(e *xorm.Session, opts NewIssueOptions) (err error) { // Assume assignee is invalid and drop silently. opts.Issue.AssigneeID = 0 if assignee != nil { - valid, err := hasAccess(e, assignee.ID, opts.Repo, ACCESS_MODE_READ) + valid, err := hasAccess(e, assignee.ID, opts.Repo, AccessModeRead) if err != nil { return fmt.Errorf("hasAccess [user_id: %d, repo_id: %d]: %v", assignee.ID, opts.Repo.ID, err) } diff --git a/internal/db/lfs.go b/internal/db/lfs.go new file mode 100644 index 000000000..4db2fa2d3 --- /dev/null +++ b/internal/db/lfs.go @@ -0,0 +1,98 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "fmt" + "time" + + "github.com/jinzhu/gorm" + + "gogs.io/gogs/internal/errutil" + "gogs.io/gogs/internal/lfsutil" +) + +// LFSStore is the persistent interface for LFS objects. +// +// NOTE: All methods are sorted in alphabetical order. +type LFSStore interface { + // CreateObject creates a LFS object record in database. + CreateObject(repoID int64, oid lfsutil.OID, size int64, storage lfsutil.Storage) error + // GetObjectByOID returns the LFS object with given OID. It returns ErrLFSObjectNotExist + // when not found. + GetObjectByOID(repoID int64, oid lfsutil.OID) (*LFSObject, error) + // GetObjectsByOIDs returns LFS objects found within "oids". The returned list could have + // less elements if some oids were not found. + GetObjectsByOIDs(repoID int64, oids ...lfsutil.OID) ([]*LFSObject, error) +} + +var LFS LFSStore + +// LFSObject is the relation between an LFS object and a repository. +type LFSObject struct { + RepoID int64 `gorm:"PRIMARY_KEY;AUTO_INCREMENT:false"` + OID lfsutil.OID `gorm:"PRIMARY_KEY;COLUMN:oid"` + Size int64 `gorm:"NOT NULL"` + Storage lfsutil.Storage `gorm:"NOT NULL"` + CreatedAt time.Time `gorm:"NOT NULL"` +} + +var _ LFSStore = (*lfs)(nil) + +type lfs struct { + *gorm.DB +} + +func (db *lfs) CreateObject(repoID int64, oid lfsutil.OID, size int64, storage lfsutil.Storage) error { + object := &LFSObject{ + RepoID: repoID, + OID: oid, + Size: size, + Storage: storage, + } + return db.DB.Create(object).Error +} + +type ErrLFSObjectNotExist struct { + args errutil.Args +} + +func IsErrLFSObjectNotExist(err error) bool { + _, ok := err.(ErrLFSObjectNotExist) + return ok +} + +func (err ErrLFSObjectNotExist) Error() string { + return fmt.Sprintf("LFS object does not exist: %v", err.args) +} + +func (ErrLFSObjectNotExist) NotFound() bool { + return true +} + +func (db *lfs) GetObjectByOID(repoID int64, oid lfsutil.OID) (*LFSObject, error) { + object := new(LFSObject) + err := db.Where("repo_id = ? AND oid = ?", repoID, oid).First(object).Error + if err != nil { + if gorm.IsRecordNotFoundError(err) { + return nil, ErrLFSObjectNotExist{args: errutil.Args{"repoID": repoID, "oid": oid}} + } + return nil, err + } + return object, err +} + +func (db *lfs) GetObjectsByOIDs(repoID int64, oids ...lfsutil.OID) ([]*LFSObject, error) { + if len(oids) == 0 { + return []*LFSObject{}, nil + } + + objects := make([]*LFSObject, 0, len(oids)) + err := db.Where("repo_id = ? AND oid IN (?)", repoID, oids).Find(&objects).Error + if err != nil && err != gorm.ErrRecordNotFound { + return nil, err + } + return objects, nil +} diff --git a/internal/db/lfs_test.go b/internal/db/lfs_test.go new file mode 100644 index 000000000..49d944067 --- /dev/null +++ b/internal/db/lfs_test.go @@ -0,0 +1,118 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "testing" + "time" + + "github.com/jinzhu/gorm" + "github.com/stretchr/testify/assert" + + "gogs.io/gogs/internal/errutil" + "gogs.io/gogs/internal/lfsutil" +) + +func Test_lfs(t *testing.T) { + if testing.Short() { + t.Skip() + } + + t.Parallel() + + tables := []interface{}{new(LFSObject)} + db := &lfs{ + DB: initTestDB(t, "lfs", tables...), + } + + for _, tc := range []struct { + name string + test func(*testing.T, *lfs) + }{ + {"CreateObject", test_lfs_CreateObject}, + {"GetObjectByOID", test_lfs_GetObjectByOID}, + {"GetObjectsByOIDs", test_lfs_GetObjectsByOIDs}, + } { + t.Run(tc.name, func(t *testing.T) { + t.Cleanup(func() { + err := clearTables(t, db.DB, tables...) + if err != nil { + t.Fatal(err) + } + }) + tc.test(t, db) + }) + } +} + +func test_lfs_CreateObject(t *testing.T, db *lfs) { + // Create first LFS object + repoID := int64(1) + oid := lfsutil.OID("ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f") + err := db.CreateObject(repoID, oid, 12, lfsutil.StorageLocal) + if err != nil { + t.Fatal(err) + } + + // Get it back and check the CreatedAt field + object, err := db.GetObjectByOID(repoID, oid) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, gorm.NowFunc().Format(time.RFC3339), object.CreatedAt.Format(time.RFC3339)) + + // Try create second LFS object with same oid should fail + err = db.CreateObject(repoID, oid, 12, lfsutil.StorageLocal) + assert.Error(t, err) +} + +func test_lfs_GetObjectByOID(t *testing.T, db *lfs) { + // Create a LFS object + repoID := int64(1) + oid := lfsutil.OID("ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f") + err := db.CreateObject(repoID, oid, 12, lfsutil.StorageLocal) + if err != nil { + t.Fatal(err) + } + + // We should be able to get it back + _, err = db.GetObjectByOID(repoID, oid) + if err != nil { + t.Fatal(err) + } + + // Try to get a non-existent object + _, err = db.GetObjectByOID(repoID, "bad_oid") + expErr := ErrLFSObjectNotExist{args: errutil.Args{"repoID": repoID, "oid": lfsutil.OID("bad_oid")}} + assert.Equal(t, expErr, err) +} + +func test_lfs_GetObjectsByOIDs(t *testing.T, db *lfs) { + // Create two LFS objects + repoID := int64(1) + oid1 := lfsutil.OID("ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f") + oid2 := lfsutil.OID("ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64g") + err := db.CreateObject(repoID, oid1, 12, lfsutil.StorageLocal) + if err != nil { + t.Fatal(err) + } + err = db.CreateObject(repoID, oid2, 12, lfsutil.StorageLocal) + if err != nil { + t.Fatal(err) + } + + // We should be able to get them back and ignore non-existent ones + objects, err := db.GetObjectsByOIDs(repoID, oid1, oid2, "bad_oid") + if err != nil { + t.Fatal(err) + } + assert.Equal(t, 2, len(objects), "number of objects") + + assert.Equal(t, repoID, objects[0].RepoID) + assert.Equal(t, oid1, objects[0].OID) + + assert.Equal(t, repoID, objects[1].RepoID) + assert.Equal(t, oid2, objects[1].OID) +} diff --git a/internal/db/login_source.go b/internal/db/login_source.go index 80d65f6e9..125d771a6 100644 --- a/internal/db/login_source.go +++ b/internal/db/login_source.go @@ -10,533 +10,57 @@ import ( "fmt" "net/smtp" "net/textproto" - "os" - "path/filepath" "strings" - "sync" - "time" "github.com/go-macaron/binding" - "github.com/json-iterator/go" "github.com/unknwon/com" - "gopkg.in/ini.v1" - log "unknwon.dev/clog/v2" - "xorm.io/core" - "xorm.io/xorm" "gogs.io/gogs/internal/auth/github" "gogs.io/gogs/internal/auth/ldap" "gogs.io/gogs/internal/auth/pam" - "gogs.io/gogs/internal/conf" "gogs.io/gogs/internal/db/errors" ) type LoginType int // Note: new type must append to the end of list to maintain compatibility. +// TODO: Move to authutil. const ( - LOGIN_NOTYPE LoginType = iota - LOGIN_PLAIN // 1 - LOGIN_LDAP // 2 - LOGIN_SMTP // 3 - LOGIN_PAM // 4 - LOGIN_DLDAP // 5 - LOGIN_GITHUB // 6 + LoginNotype LoginType = iota + LoginPlain // 1 + LoginLDAP // 2 + LoginSMTP // 3 + LoginPAM // 4 + LoginDLDAP // 5 + LoginGitHub // 6 ) var LoginNames = map[LoginType]string{ - LOGIN_LDAP: "LDAP (via BindDN)", - LOGIN_DLDAP: "LDAP (simple auth)", // Via direct bind - LOGIN_SMTP: "SMTP", - LOGIN_PAM: "PAM", - LOGIN_GITHUB: "GitHub", + LoginLDAP: "LDAP (via BindDN)", + LoginDLDAP: "LDAP (simple auth)", // Via direct bind + LoginSMTP: "SMTP", + LoginPAM: "PAM", + LoginGitHub: "GitHub", } -var SecurityProtocolNames = map[ldap.SecurityProtocol]string{ - ldap.SECURITY_PROTOCOL_UNENCRYPTED: "Unencrypted", - ldap.SECURITY_PROTOCOL_LDAPS: "LDAPS", - ldap.SECURITY_PROTOCOL_START_TLS: "StartTLS", -} - -// Ensure structs implemented interface. -var ( - _ core.Conversion = &LDAPConfig{} - _ core.Conversion = &SMTPConfig{} - _ core.Conversion = &PAMConfig{} - _ core.Conversion = &GitHubConfig{} -) +// *********************** +// ----- LDAP config ----- +// *********************** type LDAPConfig struct { - *ldap.Source `ini:"config"` + ldap.Source `ini:"config"` } -func (cfg *LDAPConfig) FromDB(bs []byte) error { - return jsoniter.Unmarshal(bs, &cfg) -} - -func (cfg *LDAPConfig) ToDB() ([]byte, error) { - return jsoniter.Marshal(cfg) +var SecurityProtocolNames = map[ldap.SecurityProtocol]string{ + ldap.SecurityProtocolUnencrypted: "Unencrypted", + ldap.SecurityProtocolLDAPS: "LDAPS", + ldap.SecurityProtocolStartTLS: "StartTLS", } func (cfg *LDAPConfig) SecurityProtocolName() string { return SecurityProtocolNames[cfg.SecurityProtocol] } -type SMTPConfig struct { - Auth string - Host string - Port int - AllowedDomains string `xorm:"TEXT"` - TLS bool `ini:"tls"` - SkipVerify bool -} - -func (cfg *SMTPConfig) FromDB(bs []byte) error { - return jsoniter.Unmarshal(bs, cfg) -} - -func (cfg *SMTPConfig) ToDB() ([]byte, error) { - return jsoniter.Marshal(cfg) -} - -type PAMConfig struct { - ServiceName string // PAM service (e.g. system-auth) -} - -func (cfg *PAMConfig) FromDB(bs []byte) error { - return jsoniter.Unmarshal(bs, &cfg) -} - -func (cfg *PAMConfig) ToDB() ([]byte, error) { - return jsoniter.Marshal(cfg) -} - -type GitHubConfig struct { - APIEndpoint string // GitHub service (e.g. https://api.github.com/) -} - -func (cfg *GitHubConfig) FromDB(bs []byte) error { - return jsoniter.Unmarshal(bs, &cfg) -} - -func (cfg *GitHubConfig) ToDB() ([]byte, error) { - return jsoniter.Marshal(cfg) -} - -// AuthSourceFile contains information of an authentication source file. -type AuthSourceFile struct { - abspath string - file *ini.File -} - -// SetGeneral sets new value to the given key in the general (default) section. -func (f *AuthSourceFile) SetGeneral(name, value string) { - f.file.Section("").Key(name).SetValue(value) -} - -// SetConfig sets new values to the "config" section. -func (f *AuthSourceFile) SetConfig(cfg core.Conversion) error { - return f.file.Section("config").ReflectFrom(cfg) -} - -// Save writes updates into file system. -func (f *AuthSourceFile) Save() error { - return f.file.SaveTo(f.abspath) -} - -// LoginSource represents an external way for authorizing users. -type LoginSource struct { - ID int64 - Type LoginType - Name string `xorm:"UNIQUE"` - IsActived bool `xorm:"NOT NULL DEFAULT false"` - IsDefault bool `xorm:"DEFAULT false"` - Cfg core.Conversion `xorm:"TEXT"` - - Created time.Time `xorm:"-" json:"-"` - CreatedUnix int64 - Updated time.Time `xorm:"-" json:"-"` - UpdatedUnix int64 - - LocalFile *AuthSourceFile `xorm:"-" json:"-"` -} - -func (s *LoginSource) BeforeInsert() { - s.CreatedUnix = time.Now().Unix() - s.UpdatedUnix = s.CreatedUnix -} - -func (s *LoginSource) BeforeUpdate() { - s.UpdatedUnix = time.Now().Unix() -} - -// Cell2Int64 converts a xorm.Cell type to int64, -// and handles possible irregular cases. -func Cell2Int64(val xorm.Cell) int64 { - switch (*val).(type) { - case []uint8: - log.Trace("Cell2Int64 ([]uint8): %v", *val) - return com.StrTo(string((*val).([]uint8))).MustInt64() - } - return (*val).(int64) -} - -func (s *LoginSource) BeforeSet(colName string, val xorm.Cell) { - switch colName { - case "type": - switch LoginType(Cell2Int64(val)) { - case LOGIN_LDAP, LOGIN_DLDAP: - s.Cfg = new(LDAPConfig) - case LOGIN_SMTP: - s.Cfg = new(SMTPConfig) - case LOGIN_PAM: - s.Cfg = new(PAMConfig) - case LOGIN_GITHUB: - s.Cfg = new(GitHubConfig) - default: - panic("unrecognized login source type: " + com.ToStr(*val)) - } - } -} - -func (s *LoginSource) AfterSet(colName string, _ xorm.Cell) { - switch colName { - case "created_unix": - s.Created = time.Unix(s.CreatedUnix, 0).Local() - case "updated_unix": - s.Updated = time.Unix(s.UpdatedUnix, 0).Local() - } -} - -func (s *LoginSource) TypeName() string { - return LoginNames[s.Type] -} - -func (s *LoginSource) IsLDAP() bool { - return s.Type == LOGIN_LDAP -} - -func (s *LoginSource) IsDLDAP() bool { - return s.Type == LOGIN_DLDAP -} - -func (s *LoginSource) IsSMTP() bool { - return s.Type == LOGIN_SMTP -} - -func (s *LoginSource) IsPAM() bool { - return s.Type == LOGIN_PAM -} - -func (s *LoginSource) IsGitHub() bool { - return s.Type == LOGIN_GITHUB -} - -func (s *LoginSource) HasTLS() bool { - return ((s.IsLDAP() || s.IsDLDAP()) && - s.LDAP().SecurityProtocol > ldap.SECURITY_PROTOCOL_UNENCRYPTED) || - s.IsSMTP() -} - -func (s *LoginSource) UseTLS() bool { - switch s.Type { - case LOGIN_LDAP, LOGIN_DLDAP: - return s.LDAP().SecurityProtocol != ldap.SECURITY_PROTOCOL_UNENCRYPTED - case LOGIN_SMTP: - return s.SMTP().TLS - } - - return false -} - -func (s *LoginSource) SkipVerify() bool { - switch s.Type { - case LOGIN_LDAP, LOGIN_DLDAP: - return s.LDAP().SkipVerify - case LOGIN_SMTP: - return s.SMTP().SkipVerify - } - - return false -} - -func (s *LoginSource) LDAP() *LDAPConfig { - return s.Cfg.(*LDAPConfig) -} - -func (s *LoginSource) SMTP() *SMTPConfig { - return s.Cfg.(*SMTPConfig) -} - -func (s *LoginSource) PAM() *PAMConfig { - return s.Cfg.(*PAMConfig) -} - -func (s *LoginSource) GitHub() *GitHubConfig { - return s.Cfg.(*GitHubConfig) -} - -func CreateLoginSource(source *LoginSource) error { - has, err := x.Get(&LoginSource{Name: source.Name}) - if err != nil { - return err - } else if has { - return ErrLoginSourceAlreadyExist{source.Name} - } - - _, err = x.Insert(source) - if err != nil { - return err - } else if source.IsDefault { - return ResetNonDefaultLoginSources(source) - } - return nil -} - -// LoginSources returns all login sources defined. -func LoginSources() ([]*LoginSource, error) { - sources := make([]*LoginSource, 0, 2) - if err := x.Find(&sources); err != nil { - return nil, err - } - - return append(sources, localLoginSources.List()...), nil -} - -// ActivatedLoginSources returns login sources that are currently activated. -func ActivatedLoginSources() ([]*LoginSource, error) { - sources := make([]*LoginSource, 0, 2) - if err := x.Where("is_actived = ?", true).Find(&sources); err != nil { - return nil, fmt.Errorf("find activated login sources: %v", err) - } - return append(sources, localLoginSources.ActivatedList()...), nil -} - -// GetLoginSourceByID returns login source by given ID. -func GetLoginSourceByID(id int64) (*LoginSource, error) { - source := new(LoginSource) - has, err := x.Id(id).Get(source) - if err != nil { - return nil, err - } else if !has { - return localLoginSources.GetLoginSourceByID(id) - } - return source, nil -} - -// ResetNonDefaultLoginSources clean other default source flag -func ResetNonDefaultLoginSources(source *LoginSource) error { - // update changes to DB - if _, err := x.NotIn("id", []int64{source.ID}).Cols("is_default").Update(&LoginSource{IsDefault: false}); err != nil { - return err - } - // write changes to local authentications - for i := range localLoginSources.sources { - if localLoginSources.sources[i].LocalFile != nil && localLoginSources.sources[i].ID != source.ID { - localLoginSources.sources[i].LocalFile.SetGeneral("is_default", "false") - if err := localLoginSources.sources[i].LocalFile.SetConfig(source.Cfg); err != nil { - return fmt.Errorf("LocalFile.SetConfig: %v", err) - } else if err = localLoginSources.sources[i].LocalFile.Save(); err != nil { - return fmt.Errorf("LocalFile.Save: %v", err) - } - } - } - // flush memory so that web page can show the same behaviors - localLoginSources.UpdateLoginSource(source) - return nil -} - -// UpdateLoginSource updates information of login source to database or local file. -func UpdateLoginSource(source *LoginSource) error { - if source.LocalFile == nil { - if _, err := x.Id(source.ID).AllCols().Update(source); err != nil { - return err - } else { - return ResetNonDefaultLoginSources(source) - } - - } - - source.LocalFile.SetGeneral("name", source.Name) - source.LocalFile.SetGeneral("is_activated", com.ToStr(source.IsActived)) - source.LocalFile.SetGeneral("is_default", com.ToStr(source.IsDefault)) - if err := source.LocalFile.SetConfig(source.Cfg); err != nil { - return fmt.Errorf("LocalFile.SetConfig: %v", err) - } else if err = source.LocalFile.Save(); err != nil { - return fmt.Errorf("LocalFile.Save: %v", err) - } - return ResetNonDefaultLoginSources(source) -} - -func DeleteSource(source *LoginSource) error { - count, err := x.Count(&User{LoginSource: source.ID}) - if err != nil { - return err - } else if count > 0 { - return ErrLoginSourceInUse{source.ID} - } - _, err = x.Id(source.ID).Delete(new(LoginSource)) - return err -} - -// CountLoginSources returns total number of login sources. -func CountLoginSources() int64 { - count, _ := x.Count(new(LoginSource)) - return count + int64(localLoginSources.Len()) -} - -// LocalLoginSources contains authentication sources configured and loaded from local files. -// Calling its methods is thread-safe; otherwise, please maintain the mutex accordingly. -type LocalLoginSources struct { - sync.RWMutex - sources []*LoginSource -} - -func (s *LocalLoginSources) Len() int { - return len(s.sources) -} - -// List returns full clone of login sources. -func (s *LocalLoginSources) List() []*LoginSource { - s.RLock() - defer s.RUnlock() - - list := make([]*LoginSource, s.Len()) - for i := range s.sources { - list[i] = &LoginSource{} - *list[i] = *s.sources[i] - } - return list -} - -// ActivatedList returns clone of activated login sources. -func (s *LocalLoginSources) ActivatedList() []*LoginSource { - s.RLock() - defer s.RUnlock() - - list := make([]*LoginSource, 0, 2) - for i := range s.sources { - if !s.sources[i].IsActived { - continue - } - source := &LoginSource{} - *source = *s.sources[i] - list = append(list, source) - } - return list -} - -// GetLoginSourceByID returns a clone of login source by given ID. -func (s *LocalLoginSources) GetLoginSourceByID(id int64) (*LoginSource, error) { - s.RLock() - defer s.RUnlock() - - for i := range s.sources { - if s.sources[i].ID == id { - source := &LoginSource{} - *source = *s.sources[i] - return source, nil - } - } - - return nil, errors.LoginSourceNotExist{ID: id} -} - -// UpdateLoginSource updates in-memory copy of the authentication source. -func (s *LocalLoginSources) UpdateLoginSource(source *LoginSource) { - s.Lock() - defer s.Unlock() - - source.Updated = time.Now() - for i := range s.sources { - if s.sources[i].ID == source.ID { - *s.sources[i] = *source - } else if source.IsDefault { - s.sources[i].IsDefault = false - } - } -} - -var localLoginSources = &LocalLoginSources{} - -// LoadAuthSources loads authentication sources from local files -// and converts them into login sources. -func LoadAuthSources() { - authdPath := filepath.Join(conf.CustomDir(), "conf", "auth.d") - if !com.IsDir(authdPath) { - return - } - - paths, err := com.GetFileListBySuffix(authdPath, ".conf") - if err != nil { - log.Fatal("Failed to list authentication sources: %v", err) - } - - localLoginSources.sources = make([]*LoginSource, 0, len(paths)) - - for _, fpath := range paths { - authSource, err := ini.Load(fpath) - if err != nil { - log.Fatal("Failed to load authentication source: %v", err) - } - authSource.NameMapper = ini.TitleUnderscore - - // Set general attributes - s := authSource.Section("") - loginSource := &LoginSource{ - ID: s.Key("id").MustInt64(), - Name: s.Key("name").String(), - IsActived: s.Key("is_activated").MustBool(), - IsDefault: s.Key("is_default").MustBool(), - LocalFile: &AuthSourceFile{ - abspath: fpath, - file: authSource, - }, - } - - fi, err := os.Stat(fpath) - if err != nil { - log.Fatal("Failed to load authentication source: %v", err) - } - loginSource.Updated = fi.ModTime() - - // Parse authentication source file - authType := s.Key("type").String() - switch authType { - case "ldap_bind_dn": - loginSource.Type = LOGIN_LDAP - loginSource.Cfg = &LDAPConfig{} - case "ldap_simple_auth": - loginSource.Type = LOGIN_DLDAP - loginSource.Cfg = &LDAPConfig{} - case "smtp": - loginSource.Type = LOGIN_SMTP - loginSource.Cfg = &SMTPConfig{} - case "pam": - loginSource.Type = LOGIN_PAM - loginSource.Cfg = &PAMConfig{} - case "github": - loginSource.Type = LOGIN_GITHUB - loginSource.Cfg = &GitHubConfig{} - default: - log.Fatal("Failed to load authentication source: unknown type '%s'", authType) - } - - if err = authSource.Section("config").MapTo(loginSource.Cfg); err != nil { - log.Fatal("Failed to parse authentication source 'config': %v", err) - } - - localLoginSources.sources = append(localLoginSources.sources, loginSource) - } -} - -// .____ ________ _____ __________ -// | | \______ \ / _ \\______ \ -// | | | | \ / /_\ \| ___/ -// | |___ | ` \/ | \ | -// |_______ \/_______ /\____|__ /____| -// \/ \/ \/ - func composeFullName(firstname, surname, username string) string { switch { case len(firstname) == 0 && len(surname) == 0: @@ -552,15 +76,15 @@ func composeFullName(firstname, surname, username string) string { // LoginViaLDAP queries if login/password is valid against the LDAP directory pool, // and create a local user if success when enabled. -func LoginViaLDAP(user *User, login, password string, source *LoginSource, autoRegister bool) (*User, error) { - username, fn, sn, mail, isAdmin, succeed := source.Cfg.(*LDAPConfig).SearchEntry(login, password, source.Type == LOGIN_DLDAP) +func LoginViaLDAP(login, password string, source *LoginSource, autoRegister bool) (*User, error) { + username, fn, sn, mail, isAdmin, succeed := source.Config.(*LDAPConfig).SearchEntry(login, password, source.Type == LoginDLDAP) if !succeed { // User not in LDAP, do nothing return nil, ErrUserNotExist{args: map[string]interface{}{"login": login}} } if !autoRegister { - return user, nil + return nil, nil } // Fallback. @@ -576,12 +100,11 @@ func LoginViaLDAP(user *User, login, password string, source *LoginSource, autoR mail = fmt.Sprintf("%s@localhost", username) } - user = &User{ + user := &User{ LowerName: strings.ToLower(username), Name: username, FullName: composeFullName(fn, sn, username), Email: mail, - LoginType: source.Type, LoginSource: source.ID, LoginName: login, IsActive: true, @@ -600,12 +123,18 @@ func LoginViaLDAP(user *User, login, password string, source *LoginSource, autoR return user, CreateUser(user) } -// _________ __________________________ -// / _____/ / \__ ___/\______ \ -// \_____ \ / \ / \| | | ___/ -// / \/ Y \ | | | -// /_______ /\____|__ /____| |____| -// \/ \/ +// *********************** +// ----- SMTP config ----- +// *********************** + +type SMTPConfig struct { + Auth string + Host string + Port int + AllowedDomains string + TLS bool `ini:"tls"` + SkipVerify bool +} type smtpLoginAuth struct { username, password string @@ -628,11 +157,11 @@ func (auth *smtpLoginAuth) Next(fromServer []byte, more bool) ([]byte, error) { } const ( - SMTP_PLAIN = "PLAIN" - SMTP_LOGIN = "LOGIN" + SMTPPlain = "PLAIN" + SMTPLogin = "LOGIN" ) -var SMTPAuths = []string{SMTP_PLAIN, SMTP_LOGIN} +var SMTPAuths = []string{SMTPPlain, SMTPLogin} func SMTPAuth(a smtp.Auth, cfg *SMTPConfig) error { c, err := smtp.Dial(fmt.Sprintf("%s:%d", cfg.Host, cfg.Port)) @@ -669,7 +198,7 @@ func SMTPAuth(a smtp.Auth, cfg *SMTPConfig) error { // LoginViaSMTP queries if login/password is valid against the SMTP, // and create a local user if success when enabled. -func LoginViaSMTP(user *User, login, password string, sourceID int64, cfg *SMTPConfig, autoRegister bool) (*User, error) { +func LoginViaSMTP(login, password string, sourceID int64, cfg *SMTPConfig, autoRegister bool) (*User, error) { // Verify allowed domains. if len(cfg.AllowedDomains) > 0 { idx := strings.Index(login, "@") @@ -681,9 +210,9 @@ func LoginViaSMTP(user *User, login, password string, sourceID int64, cfg *SMTPC } var auth smtp.Auth - if cfg.Auth == SMTP_PLAIN { + if cfg.Auth == SMTPPlain { auth = smtp.PlainAuth("", login, password, cfg.Host) - } else if cfg.Auth == SMTP_LOGIN { + } else if cfg.Auth == SMTPLogin { auth = &smtpLoginAuth{login, password} } else { return nil, errors.New("Unsupported SMTP authentication type") @@ -701,7 +230,7 @@ func LoginViaSMTP(user *User, login, password string, sourceID int64, cfg *SMTPC } if !autoRegister { - return user, nil + return nil, nil } username := login @@ -710,12 +239,11 @@ func LoginViaSMTP(user *User, login, password string, sourceID int64, cfg *SMTPC username = login[:idx] } - user = &User{ + user := &User{ LowerName: strings.ToLower(username), Name: strings.ToLower(username), Email: login, Passwd: password, - LoginType: LOGIN_SMTP, LoginSource: sourceID, LoginName: login, IsActive: true, @@ -723,16 +251,18 @@ func LoginViaSMTP(user *User, login, password string, sourceID int64, cfg *SMTPC return user, CreateUser(user) } -// __________ _____ _____ -// \______ \/ _ \ / \ -// | ___/ /_\ \ / \ / \ -// | | / | \/ Y \ -// |____| \____|__ /\____|__ / -// \/ \/ +// ********************** +// ----- PAM config ----- +// ********************** + +type PAMConfig struct { + // The name of the PAM service, e.g. system-auth. + ServiceName string +} // LoginViaPAM queries if login/password is valid against the PAM, // and create a local user if success when enabled. -func LoginViaPAM(user *User, login, password string, sourceID int64, cfg *PAMConfig, autoRegister bool) (*User, error) { +func LoginViaPAM(login, password string, sourceID int64, cfg *PAMConfig, autoRegister bool) (*User, error) { if err := pam.PAMAuth(cfg.ServiceName, login, password); err != nil { if strings.Contains(err.Error(), "Authentication failure") { return nil, ErrUserNotExist{args: map[string]interface{}{"login": login}} @@ -741,15 +271,14 @@ func LoginViaPAM(user *User, login, password string, sourceID int64, cfg *PAMCon } if !autoRegister { - return user, nil + return nil, nil } - user = &User{ + user := &User{ LowerName: strings.ToLower(login), Name: login, Email: login, Passwd: password, - LoginType: LOGIN_PAM, LoginSource: sourceID, LoginName: login, IsActive: true, @@ -757,14 +286,16 @@ func LoginViaPAM(user *User, login, password string, sourceID int64, cfg *PAMCon return user, CreateUser(user) } -//________.__ __ ___ ___ ___. -/// _____/|__|/ |_ / | \ __ _\_ |__ -/// \ ___| \ __\/ ~ \ | \ __ \ -//\ \_\ \ || | \ Y / | / \_\ \ -//\______ /__||__| \___|_ /|____/|___ / -//\/ \/ \/ +// ************************* +// ----- GitHub config ----- +// ************************* + +type GitHubConfig struct { + // the GitHub service endpoint, e.g. https://api.github.com/. + APIEndpoint string +} -func LoginViaGitHub(user *User, login, password string, sourceID int64, cfg *GitHubConfig, autoRegister bool) (*User, error) { +func LoginViaGitHub(login, password string, sourceID int64, cfg *GitHubConfig, autoRegister bool) (*User, error) { fullname, email, url, location, err := github.Authenticate(cfg.APIEndpoint, login, password) if err != nil { if strings.Contains(err.Error(), "401") { @@ -774,16 +305,15 @@ func LoginViaGitHub(user *User, login, password string, sourceID int64, cfg *Git } if !autoRegister { - return user, nil + return nil, nil } - user = &User{ + user := &User{ LowerName: strings.ToLower(login), Name: login, FullName: fullname, Email: email, Website: url, Passwd: password, - LoginType: LOGIN_GITHUB, LoginSource: sourceID, LoginName: login, IsActive: true, @@ -792,75 +322,21 @@ func LoginViaGitHub(user *User, login, password string, sourceID int64, cfg *Git return user, CreateUser(user) } -func remoteUserLogin(user *User, login, password string, source *LoginSource, autoRegister bool) (*User, error) { +func authenticateViaLoginSource(source *LoginSource, login, password string, autoRegister bool) (*User, error) { if !source.IsActived { return nil, errors.LoginSourceNotActivated{SourceID: source.ID} } switch source.Type { - case LOGIN_LDAP, LOGIN_DLDAP: - return LoginViaLDAP(user, login, password, source, autoRegister) - case LOGIN_SMTP: - return LoginViaSMTP(user, login, password, source.ID, source.Cfg.(*SMTPConfig), autoRegister) - case LOGIN_PAM: - return LoginViaPAM(user, login, password, source.ID, source.Cfg.(*PAMConfig), autoRegister) - case LOGIN_GITHUB: - return LoginViaGitHub(user, login, password, source.ID, source.Cfg.(*GitHubConfig), autoRegister) + case LoginLDAP, LoginDLDAP: + return LoginViaLDAP(login, password, source, autoRegister) + case LoginSMTP: + return LoginViaSMTP(login, password, source.ID, source.Config.(*SMTPConfig), autoRegister) + case LoginPAM: + return LoginViaPAM(login, password, source.ID, source.Config.(*PAMConfig), autoRegister) + case LoginGitHub: + return LoginViaGitHub(login, password, source.ID, source.Config.(*GitHubConfig), autoRegister) } return nil, errors.InvalidLoginSourceType{Type: source.Type} } - -// UserLogin validates user name and password via given login source ID. -// If the loginSourceID is negative, it will abort login process if user is not found. -func UserLogin(username, password string, loginSourceID int64) (*User, error) { - var user *User - if strings.Contains(username, "@") { - user = &User{Email: strings.ToLower(username)} - } else { - user = &User{LowerName: strings.ToLower(username)} - } - - hasUser, err := x.Get(user) - if err != nil { - return nil, fmt.Errorf("get user record: %v", err) - } - - if hasUser { - // Note: This check is unnecessary but to reduce user confusion at login page - // and make it more consistent at user's perspective. - if loginSourceID >= 0 && user.LoginSource != loginSourceID { - return nil, errors.LoginSourceMismatch{Expect: loginSourceID, Actual: user.LoginSource} - } - - // Validate password hash fetched from database for local accounts - if user.LoginType == LOGIN_NOTYPE || - user.LoginType == LOGIN_PLAIN { - if user.ValidatePassword(password) { - return user, nil - } - - return nil, ErrUserNotExist{args: map[string]interface{}{"userID": user.ID, "name": user.Name}} - } - - // Remote login to the login source the user is associated with - source, err := GetLoginSourceByID(user.LoginSource) - if err != nil { - return nil, err - } - - return remoteUserLogin(user, user.LoginName, password, source, false) - } - - // Non-local login source is always greater than 0 - if loginSourceID <= 0 { - return nil, ErrUserNotExist{args: map[string]interface{}{"name": username}} - } - - source, err := GetLoginSourceByID(loginSourceID) - if err != nil { - return nil, err - } - - return remoteUserLogin(nil, username, password, source, true) -} diff --git a/internal/db/login_source_files.go b/internal/db/login_source_files.go new file mode 100644 index 000000000..4c5cb3776 --- /dev/null +++ b/internal/db/login_source_files.go @@ -0,0 +1,212 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "fmt" + "os" + "path/filepath" + "strings" + "sync" + + "github.com/jinzhu/gorm" + "github.com/pkg/errors" + "gopkg.in/ini.v1" + + "gogs.io/gogs/internal/errutil" + "gogs.io/gogs/internal/osutil" +) + +// loginSourceFilesStore is the in-memory interface for login source files stored on file system. +// +// NOTE: All methods are sorted in alphabetical order. +type loginSourceFilesStore interface { + // GetByID returns a clone of login source by given ID. + GetByID(id int64) (*LoginSource, error) + // Len returns number of login sources. + Len() int + // List returns a list of login sources filtered by options. + List(opts ListLoginSourceOpts) []*LoginSource + // Update updates in-memory copy of the authentication source. + Update(source *LoginSource) +} + +var _ loginSourceFilesStore = (*loginSourceFiles)(nil) + +// loginSourceFiles contains authentication sources configured and loaded from local files. +type loginSourceFiles struct { + sync.RWMutex + sources []*LoginSource +} + +var _ errutil.NotFound = (*ErrLoginSourceNotExist)(nil) + +type ErrLoginSourceNotExist struct { + args errutil.Args +} + +func IsErrLoginSourceNotExist(err error) bool { + _, ok := err.(ErrLoginSourceNotExist) + return ok +} + +func (err ErrLoginSourceNotExist) Error() string { + return fmt.Sprintf("login source does not exist: %v", err.args) +} + +func (ErrLoginSourceNotExist) NotFound() bool { + return true +} + +func (s *loginSourceFiles) GetByID(id int64) (*LoginSource, error) { + s.RLock() + defer s.RUnlock() + + for _, source := range s.sources { + if source.ID == id { + return source, nil + } + } + + return nil, ErrLoginSourceNotExist{args: errutil.Args{"id": id}} +} + +func (s *loginSourceFiles) Len() int { + s.RLock() + defer s.RUnlock() + return len(s.sources) +} + +func (s *loginSourceFiles) List(opts ListLoginSourceOpts) []*LoginSource { + s.RLock() + defer s.RUnlock() + + list := make([]*LoginSource, 0, s.Len()) + for _, source := range s.sources { + if opts.OnlyActivated && !source.IsActived { + continue + } + + list = append(list, source) + } + return list +} + +func (s *loginSourceFiles) Update(source *LoginSource) { + s.Lock() + defer s.Unlock() + + source.Updated = gorm.NowFunc() + for _, old := range s.sources { + if old.ID == source.ID { + *old = *source + } else if source.IsDefault { + old.IsDefault = false + } + } +} + +// loadLoginSourceFiles loads login sources from file system. +func loadLoginSourceFiles(authdPath string) (loginSourceFilesStore, error) { + if !osutil.IsDir(authdPath) { + return &loginSourceFiles{}, nil + } + + store := &loginSourceFiles{} + return store, filepath.Walk(authdPath, func(path string, info os.FileInfo, err error) error { + if err != nil { + return err + } + + if path == authdPath || !strings.HasSuffix(path, ".conf") { + return nil + } else if info.IsDir() { + return filepath.SkipDir + } + + authSource, err := ini.Load(path) + if err != nil { + return errors.Wrap(err, "load file") + } + authSource.NameMapper = ini.TitleUnderscore + + // Set general attributes + s := authSource.Section("") + loginSource := &LoginSource{ + ID: s.Key("id").MustInt64(), + Name: s.Key("name").String(), + IsActived: s.Key("is_activated").MustBool(), + IsDefault: s.Key("is_default").MustBool(), + File: &loginSourceFile{ + path: path, + file: authSource, + }, + } + + fi, err := os.Stat(path) + if err != nil { + return errors.Wrap(err, "stat file") + } + loginSource.Updated = fi.ModTime() + + // Parse authentication source file + authType := s.Key("type").String() + switch authType { + case "ldap_bind_dn": + loginSource.Type = LoginLDAP + loginSource.Config = &LDAPConfig{} + case "ldap_simple_auth": + loginSource.Type = LoginDLDAP + loginSource.Config = &LDAPConfig{} + case "smtp": + loginSource.Type = LoginSMTP + loginSource.Config = &SMTPConfig{} + case "pam": + loginSource.Type = LoginPAM + loginSource.Config = &PAMConfig{} + case "github": + loginSource.Type = LoginGitHub + loginSource.Config = &GitHubConfig{} + default: + return fmt.Errorf("unknown type %q", authType) + } + + if err = authSource.Section("config").MapTo(loginSource.Config); err != nil { + return errors.Wrap(err, `map "config" section`) + } + + store.sources = append(store.sources, loginSource) + return nil + }) +} + +// loginSourceFileStore is the persistent interface for a login source file. +type loginSourceFileStore interface { + // SetGeneral sets new value to the given key in the general (default) section. + SetGeneral(name, value string) + // SetConfig sets new values to the "config" section. + SetConfig(cfg interface{}) error + // Save persists values to file system. + Save() error +} + +var _ loginSourceFileStore = (*loginSourceFile)(nil) + +type loginSourceFile struct { + path string + file *ini.File +} + +func (f *loginSourceFile) SetGeneral(name, value string) { + f.file.Section("").Key(name).SetValue(value) +} + +func (f *loginSourceFile) SetConfig(cfg interface{}) error { + return f.file.Section("config").ReflectFrom(cfg) +} + +func (f *loginSourceFile) Save() error { + return f.file.SaveTo(f.path) +} diff --git a/internal/db/login_source_files_test.go b/internal/db/login_source_files_test.go new file mode 100644 index 000000000..d87239a8a --- /dev/null +++ b/internal/db/login_source_files_test.go @@ -0,0 +1,86 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "testing" + + "github.com/stretchr/testify/assert" + + "gogs.io/gogs/internal/errutil" +) + +func Test_loginSourceFiles_GetByID(t *testing.T) { + store := &loginSourceFiles{ + sources: []*LoginSource{ + {ID: 101}, + }, + } + + t.Run("source does not exist", func(t *testing.T) { + _, err := store.GetByID(1) + expErr := ErrLoginSourceNotExist{args: errutil.Args{"id": int64(1)}} + assert.Equal(t, expErr, err) + }) + + t.Run("source exists", func(t *testing.T) { + source, err := store.GetByID(101) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, int64(101), source.ID) + }) +} + +func Test_loginSourceFiles_Len(t *testing.T) { + store := &loginSourceFiles{ + sources: []*LoginSource{ + {ID: 101}, + }, + } + + assert.Equal(t, 1, store.Len()) +} + +func Test_loginSourceFiles_List(t *testing.T) { + store := &loginSourceFiles{ + sources: []*LoginSource{ + {ID: 101, IsActived: true}, + {ID: 102, IsActived: false}, + }, + } + + t.Run("list all sources", func(t *testing.T) { + sources := store.List(ListLoginSourceOpts{}) + assert.Equal(t, 2, len(sources), "number of sources") + }) + + t.Run("list only activated sources", func(t *testing.T) { + sources := store.List(ListLoginSourceOpts{OnlyActivated: true}) + assert.Equal(t, 1, len(sources), "number of sources") + assert.Equal(t, int64(101), sources[0].ID) + }) +} + +func Test_loginSourceFiles_Update(t *testing.T) { + store := &loginSourceFiles{ + sources: []*LoginSource{ + {ID: 101, IsActived: true, IsDefault: true}, + {ID: 102, IsActived: false}, + }, + } + + source102 := &LoginSource{ + ID: 102, + IsActived: true, + IsDefault: true, + } + store.Update(source102) + + assert.False(t, store.sources[0].IsDefault) + + assert.True(t, store.sources[1].IsActived) + assert.True(t, store.sources[1].IsDefault) +} diff --git a/internal/db/login_sources.go b/internal/db/login_sources.go new file mode 100644 index 000000000..b620a4426 --- /dev/null +++ b/internal/db/login_sources.go @@ -0,0 +1,310 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "fmt" + "strconv" + "time" + + "github.com/jinzhu/gorm" + jsoniter "github.com/json-iterator/go" + "github.com/pkg/errors" + + "gogs.io/gogs/internal/auth/ldap" + "gogs.io/gogs/internal/errutil" +) + +// LoginSourcesStore is the persistent interface for login sources. +// +// NOTE: All methods are sorted in alphabetical order. +type LoginSourcesStore interface { + // Create creates a new login source and persist to database. + // It returns ErrLoginSourceAlreadyExist when a login source with same name already exists. + Create(opts CreateLoginSourceOpts) (*LoginSource, error) + // Count returns the total number of login sources. + Count() int64 + // DeleteByID deletes a login source by given ID. + // It returns ErrLoginSourceInUse if at least one user is associated with the login source. + DeleteByID(id int64) error + // GetByID returns the login source with given ID. + // It returns ErrLoginSourceNotExist when not found. + GetByID(id int64) (*LoginSource, error) + // List returns a list of login sources filtered by options. + List(opts ListLoginSourceOpts) ([]*LoginSource, error) + // ResetNonDefault clears default flag for all the other login sources. + ResetNonDefault(source *LoginSource) error + // Save persists all values of given login source to database or local file. + // The Updated field is set to current time automatically. + Save(t *LoginSource) error +} + +var LoginSources LoginSourcesStore + +// LoginSource represents an external way for authorizing users. +type LoginSource struct { + ID int64 + Type LoginType + Name string `xorm:"UNIQUE"` + IsActived bool `xorm:"NOT NULL DEFAULT false"` + IsDefault bool `xorm:"DEFAULT false"` + Config interface{} `xorm:"-" gorm:"-"` + RawConfig string `xorm:"TEXT cfg" gorm:"COLUMN:cfg"` + + Created time.Time `xorm:"-" gorm:"-" json:"-"` + CreatedUnix int64 + Updated time.Time `xorm:"-" gorm:"-" json:"-"` + UpdatedUnix int64 + + File loginSourceFileStore `xorm:"-" gorm:"-" json:"-"` +} + +// NOTE: This is a GORM save hook. +func (s *LoginSource) BeforeSave() (err error) { + s.RawConfig, err = jsoniter.MarshalToString(s.Config) + return err +} + +// NOTE: This is a GORM create hook. +func (s *LoginSource) BeforeCreate() { + s.CreatedUnix = gorm.NowFunc().Unix() + s.UpdatedUnix = s.CreatedUnix +} + +// NOTE: This is a GORM update hook. +func (s *LoginSource) BeforeUpdate() { + s.UpdatedUnix = gorm.NowFunc().Unix() +} + +// NOTE: This is a GORM query hook. +func (s *LoginSource) AfterFind() error { + s.Created = time.Unix(s.CreatedUnix, 0).Local() + s.Updated = time.Unix(s.UpdatedUnix, 0).Local() + + switch s.Type { + case LoginLDAP, LoginDLDAP: + s.Config = new(LDAPConfig) + case LoginSMTP: + s.Config = new(SMTPConfig) + case LoginPAM: + s.Config = new(PAMConfig) + case LoginGitHub: + s.Config = new(GitHubConfig) + default: + return fmt.Errorf("unrecognized login source type: %v", s.Type) + } + return jsoniter.UnmarshalFromString(s.RawConfig, s.Config) +} + +func (s *LoginSource) TypeName() string { + return LoginNames[s.Type] +} + +func (s *LoginSource) IsLDAP() bool { + return s.Type == LoginLDAP +} + +func (s *LoginSource) IsDLDAP() bool { + return s.Type == LoginDLDAP +} + +func (s *LoginSource) IsSMTP() bool { + return s.Type == LoginSMTP +} + +func (s *LoginSource) IsPAM() bool { + return s.Type == LoginPAM +} + +func (s *LoginSource) IsGitHub() bool { + return s.Type == LoginGitHub +} + +func (s *LoginSource) HasTLS() bool { + return ((s.IsLDAP() || s.IsDLDAP()) && + s.LDAP().SecurityProtocol > ldap.SecurityProtocolUnencrypted) || + s.IsSMTP() +} + +func (s *LoginSource) UseTLS() bool { + switch s.Type { + case LoginLDAP, LoginDLDAP: + return s.LDAP().SecurityProtocol != ldap.SecurityProtocolUnencrypted + case LoginSMTP: + return s.SMTP().TLS + } + + return false +} + +func (s *LoginSource) SkipVerify() bool { + switch s.Type { + case LoginLDAP, LoginDLDAP: + return s.LDAP().SkipVerify + case LoginSMTP: + return s.SMTP().SkipVerify + } + + return false +} + +func (s *LoginSource) LDAP() *LDAPConfig { + return s.Config.(*LDAPConfig) +} + +func (s *LoginSource) SMTP() *SMTPConfig { + return s.Config.(*SMTPConfig) +} + +func (s *LoginSource) PAM() *PAMConfig { + return s.Config.(*PAMConfig) +} + +func (s *LoginSource) GitHub() *GitHubConfig { + return s.Config.(*GitHubConfig) +} + +var _ LoginSourcesStore = (*loginSources)(nil) + +type loginSources struct { + *gorm.DB + files loginSourceFilesStore +} + +type CreateLoginSourceOpts struct { + Type LoginType + Name string + Activated bool + Default bool + Config interface{} +} + +type ErrLoginSourceAlreadyExist struct { + args errutil.Args +} + +func IsErrLoginSourceAlreadyExist(err error) bool { + _, ok := err.(ErrLoginSourceAlreadyExist) + return ok +} + +func (err ErrLoginSourceAlreadyExist) Error() string { + return fmt.Sprintf("login source already exists: %v", err.args) +} + +func (db *loginSources) Create(opts CreateLoginSourceOpts) (*LoginSource, error) { + err := db.Where("name = ?", opts.Name).First(new(LoginSource)).Error + if err == nil { + return nil, ErrLoginSourceAlreadyExist{args: errutil.Args{"name": opts.Name}} + } else if !gorm.IsRecordNotFoundError(err) { + return nil, err + } + + source := &LoginSource{ + Type: opts.Type, + Name: opts.Name, + IsActived: opts.Activated, + IsDefault: opts.Default, + Config: opts.Config, + } + return source, db.DB.Create(source).Error +} + +func (db *loginSources) Count() int64 { + var count int64 + db.Model(new(LoginSource)).Count(&count) + return count + int64(db.files.Len()) +} + +type ErrLoginSourceInUse struct { + args errutil.Args +} + +func IsErrLoginSourceInUse(err error) bool { + _, ok := err.(ErrLoginSourceInUse) + return ok +} + +func (err ErrLoginSourceInUse) Error() string { + return fmt.Sprintf("login source is still used by some users: %v", err.args) +} + +func (db *loginSources) DeleteByID(id int64) error { + var count int64 + err := db.Model(new(User)).Where("login_source = ?", id).Count(&count).Error + if err != nil { + return err + } else if count > 0 { + return ErrLoginSourceInUse{args: errutil.Args{"id": id}} + } + + return db.Where("id = ?", id).Delete(new(LoginSource)).Error +} + +func (db *loginSources) GetByID(id int64) (*LoginSource, error) { + source := new(LoginSource) + err := db.Where("id = ?", id).First(source).Error + if err != nil { + if gorm.IsRecordNotFoundError(err) { + return db.files.GetByID(id) + } + return nil, err + } + return source, nil +} + +type ListLoginSourceOpts struct { + // Whether to only include activated login sources. + OnlyActivated bool +} + +func (db *loginSources) List(opts ListLoginSourceOpts) ([]*LoginSource, error) { + var sources []*LoginSource + query := db.Order("id ASC") + if opts.OnlyActivated { + query = query.Where("is_actived = ?", true) + } + err := query.Find(&sources).Error + if err != nil { + return nil, err + } + + return append(sources, db.files.List(opts)...), nil +} + +func (db *loginSources) ResetNonDefault(dflt *LoginSource) error { + err := db.Model(new(LoginSource)).Where("id != ?", dflt.ID).Updates(map[string]interface{}{"is_default": false}).Error + if err != nil { + return err + } + + for _, source := range db.files.List(ListLoginSourceOpts{}) { + if source.File != nil && source.ID != dflt.ID { + source.File.SetGeneral("is_default", "false") + if err = source.File.Save(); err != nil { + return errors.Wrap(err, "save file") + } + } + } + + db.files.Update(dflt) + return nil +} + +func (db *loginSources) Save(source *LoginSource) error { + if source.File == nil { + return db.DB.Save(source).Error + } + + source.File.SetGeneral("name", source.Name) + source.File.SetGeneral("is_activated", strconv.FormatBool(source.IsActived)) + source.File.SetGeneral("is_default", strconv.FormatBool(source.IsDefault)) + if err := source.File.SetConfig(source.Config); err != nil { + return errors.Wrap(err, "set config") + } else if err = source.File.Save(); err != nil { + return errors.Wrap(err, "save file") + } + return nil +} diff --git a/internal/db/login_sources_test.go b/internal/db/login_sources_test.go new file mode 100644 index 000000000..47bfd6d23 --- /dev/null +++ b/internal/db/login_sources_test.go @@ -0,0 +1,389 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "testing" + "time" + + "github.com/jinzhu/gorm" + "github.com/stretchr/testify/assert" + + "gogs.io/gogs/internal/errutil" +) + +func Test_loginSources(t *testing.T) { + if testing.Short() { + t.Skip() + } + + t.Parallel() + + tables := []interface{}{new(LoginSource), new(User)} + db := &loginSources{ + DB: initTestDB(t, "loginSources", tables...), + } + + for _, tc := range []struct { + name string + test func(*testing.T, *loginSources) + }{ + {"Create", test_loginSources_Create}, + {"Count", test_loginSources_Count}, + {"DeleteByID", test_loginSources_DeleteByID}, + {"GetByID", test_loginSources_GetByID}, + {"List", test_loginSources_List}, + {"ResetNonDefault", test_loginSources_ResetNonDefault}, + {"Save", test_loginSources_Save}, + } { + t.Run(tc.name, func(t *testing.T) { + t.Cleanup(func() { + err := clearTables(t, db.DB, tables...) + if err != nil { + t.Fatal(err) + } + }) + tc.test(t, db) + }) + } +} + +func test_loginSources_Create(t *testing.T, db *loginSources) { + // Create first login source with name "GitHub" + source, err := db.Create(CreateLoginSourceOpts{ + Type: LoginGitHub, + Name: "GitHub", + Activated: true, + Default: false, + Config: &GitHubConfig{ + APIEndpoint: "https://api.github.com", + }, + }) + if err != nil { + t.Fatal(err) + } + + // Get it back and check the Created field + source, err = db.GetByID(source.ID) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, gorm.NowFunc().Format(time.RFC3339), source.Created.Format(time.RFC3339)) + assert.Equal(t, gorm.NowFunc().Format(time.RFC3339), source.Updated.Format(time.RFC3339)) + + // Try create second login source with same name should fail + _, err = db.Create(CreateLoginSourceOpts{Name: source.Name}) + expErr := ErrLoginSourceAlreadyExist{args: errutil.Args{"name": source.Name}} + assert.Equal(t, expErr, err) +} + +func test_loginSources_Count(t *testing.T, db *loginSources) { + // Create two login sources, one in database and one as source file. + _, err := db.Create(CreateLoginSourceOpts{ + Type: LoginGitHub, + Name: "GitHub", + Activated: true, + Default: false, + Config: &GitHubConfig{ + APIEndpoint: "https://api.github.com", + }, + }) + if err != nil { + t.Fatal(err) + } + + setMockLoginSourceFilesStore(t, db, &mockLoginSourceFilesStore{ + MockLen: func() int { + return 2 + }, + }) + + assert.Equal(t, int64(3), db.Count()) +} + +func test_loginSources_DeleteByID(t *testing.T, db *loginSources) { + t.Run("delete but in used", func(t *testing.T) { + source, err := db.Create(CreateLoginSourceOpts{ + Type: LoginGitHub, + Name: "GitHub", + Activated: true, + Default: false, + Config: &GitHubConfig{ + APIEndpoint: "https://api.github.com", + }, + }) + if err != nil { + t.Fatal(err) + } + + // Create a user that uses this login source + _, err = (&users{DB: db.DB}).Create(CreateUserOpts{ + Name: "alice", + LoginSource: source.ID, + }) + if err != nil { + t.Fatal(err) + } + + // Delete the login source will result in error + err = db.DeleteByID(source.ID) + expErr := ErrLoginSourceInUse{args: errutil.Args{"id": source.ID}} + assert.Equal(t, expErr, err) + }) + + setMockLoginSourceFilesStore(t, db, &mockLoginSourceFilesStore{ + MockGetByID: func(id int64) (*LoginSource, error) { + return nil, ErrLoginSourceNotExist{args: errutil.Args{"id": id}} + }, + }) + + // Create a login source with name "GitHub2" + source, err := db.Create(CreateLoginSourceOpts{ + Type: LoginGitHub, + Name: "GitHub2", + Activated: true, + Default: false, + Config: &GitHubConfig{ + APIEndpoint: "https://api.github.com", + }, + }) + if err != nil { + t.Fatal(err) + } + + // Delete a non-existent ID is noop + err = db.DeleteByID(9999) + if err != nil { + t.Fatal(err) + } + + // We should be able to get it back + _, err = db.GetByID(source.ID) + if err != nil { + t.Fatal(err) + } + + // Now delete this login source with ID + err = db.DeleteByID(source.ID) + if err != nil { + t.Fatal(err) + } + + // We should get token not found error + _, err = db.GetByID(source.ID) + expErr := ErrLoginSourceNotExist{args: errutil.Args{"id": source.ID}} + assert.Equal(t, expErr, err) +} + +func test_loginSources_GetByID(t *testing.T, db *loginSources) { + setMockLoginSourceFilesStore(t, db, &mockLoginSourceFilesStore{ + MockGetByID: func(id int64) (*LoginSource, error) { + if id != 101 { + return nil, ErrLoginSourceNotExist{args: errutil.Args{"id": id}} + } + return &LoginSource{ID: id}, nil + }, + }) + + expConfig := &GitHubConfig{ + APIEndpoint: "https://api.github.com", + } + + // Create a login source with name "GitHub" + source, err := db.Create(CreateLoginSourceOpts{ + Type: LoginGitHub, + Name: "GitHub", + Activated: true, + Default: false, + Config: expConfig, + }) + if err != nil { + t.Fatal(err) + } + + // Get the one in the database and test the read/write hooks + source, err = db.GetByID(source.ID) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, expConfig, source.Config) + + // Get the one in source file store + _, err = db.GetByID(101) + if err != nil { + t.Fatal(err) + } +} + +func test_loginSources_List(t *testing.T, db *loginSources) { + setMockLoginSourceFilesStore(t, db, &mockLoginSourceFilesStore{ + MockList: func(opts ListLoginSourceOpts) []*LoginSource { + if opts.OnlyActivated { + return []*LoginSource{ + {ID: 1}, + } + } + return []*LoginSource{ + {ID: 1}, + {ID: 2}, + } + }, + }) + + // Create two login sources in database, one activated and the other one not + _, err := db.Create(CreateLoginSourceOpts{ + Type: LoginPAM, + Name: "PAM", + Config: &PAMConfig{ + ServiceName: "PAM", + }, + }) + if err != nil { + t.Fatal(err) + } + _, err = db.Create(CreateLoginSourceOpts{ + Type: LoginGitHub, + Name: "GitHub", + Activated: true, + Config: &GitHubConfig{ + APIEndpoint: "https://api.github.com", + }, + }) + if err != nil { + t.Fatal(err) + } + + // List all login sources + sources, err := db.List(ListLoginSourceOpts{}) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, 4, len(sources), "number of sources") + + // Only list activated login sources + sources, err = db.List(ListLoginSourceOpts{OnlyActivated: true}) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, 2, len(sources), "number of sources") +} + +func test_loginSources_ResetNonDefault(t *testing.T, db *loginSources) { + setMockLoginSourceFilesStore(t, db, &mockLoginSourceFilesStore{ + MockList: func(opts ListLoginSourceOpts) []*LoginSource { + return []*LoginSource{ + { + File: &mockLoginSourceFileStore{ + MockSetGeneral: func(name, value string) { + assert.Equal(t, "is_default", name) + assert.Equal(t, "false", value) + }, + MockSave: func() error { + return nil + }, + }, + }, + } + }, + MockUpdate: func(source *LoginSource) {}, + }) + + // Create two login sources both have default on + source1, err := db.Create(CreateLoginSourceOpts{ + Type: LoginPAM, + Name: "PAM", + Default: true, + Config: &PAMConfig{ + ServiceName: "PAM", + }, + }) + if err != nil { + t.Fatal(err) + } + source2, err := db.Create(CreateLoginSourceOpts{ + Type: LoginGitHub, + Name: "GitHub", + Activated: true, + Default: true, + Config: &GitHubConfig{ + APIEndpoint: "https://api.github.com", + }, + }) + if err != nil { + t.Fatal(err) + } + + // Set source 1 as default + err = db.ResetNonDefault(source1) + if err != nil { + t.Fatal(err) + } + + // Verify the default state + source1, err = db.GetByID(source1.ID) + if err != nil { + t.Fatal(err) + } + assert.True(t, source1.IsDefault) + + source2, err = db.GetByID(source2.ID) + if err != nil { + t.Fatal(err) + } + assert.False(t, source2.IsDefault) +} + +func test_loginSources_Save(t *testing.T, db *loginSources) { + t.Run("save to database", func(t *testing.T) { + // Create a login source with name "GitHub" + source, err := db.Create(CreateLoginSourceOpts{ + Type: LoginGitHub, + Name: "GitHub", + Activated: true, + Default: false, + Config: &GitHubConfig{ + APIEndpoint: "https://api.github.com", + }, + }) + if err != nil { + t.Fatal(err) + } + + source.IsActived = false + source.Config = &GitHubConfig{ + APIEndpoint: "https://api2.github.com", + } + err = db.Save(source) + if err != nil { + t.Fatal(err) + } + + source, err = db.GetByID(source.ID) + if err != nil { + t.Fatal(err) + } + assert.False(t, source.IsActived) + assert.Equal(t, "https://api2.github.com", source.GitHub().APIEndpoint) + }) + + t.Run("save to file", func(t *testing.T) { + calledSave := false + source := &LoginSource{ + File: &mockLoginSourceFileStore{ + MockSetGeneral: func(name, value string) {}, + MockSetConfig: func(cfg interface{}) error { return nil }, + MockSave: func() error { + calledSave = true + return nil + }, + }, + } + err := db.Save(source) + if err != nil { + t.Fatal(err) + } + assert.True(t, calledSave) + }) +} diff --git a/internal/db/main_test.go b/internal/db/main_test.go new file mode 100644 index 000000000..c6cc6f9e2 --- /dev/null +++ b/internal/db/main_test.go @@ -0,0 +1,95 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "flag" + "fmt" + "io/ioutil" + "os" + "path/filepath" + "testing" + "time" + + "github.com/jinzhu/gorm" + log "unknwon.dev/clog/v2" + + "gogs.io/gogs/internal/conf" + "gogs.io/gogs/internal/dbutil" + "gogs.io/gogs/internal/testutil" +) + +var printSQL = flag.Bool("print-sql", false, "Print SQL executed") + +func TestMain(m *testing.M) { + flag.Parse() + if !testing.Verbose() { + // Remove the primary logger and register a noop logger. + log.Remove(log.DefaultConsoleName) + err := log.New("noop", testutil.InitNoopLogger) + if err != nil { + fmt.Println(err) + os.Exit(1) + } + } + + now := time.Now().Truncate(time.Second) + gorm.NowFunc = func() time.Time { return now } + + os.Exit(m.Run()) +} + +// clearTables removes all rows from given tables. +func clearTables(t *testing.T, db *gorm.DB, tables ...interface{}) error { + if t.Failed() { + return nil + } + + for _, t := range tables { + err := db.Delete(t).Error + if err != nil { + return err + } + } + return nil +} + +func initTestDB(t *testing.T, suite string, tables ...interface{}) *gorm.DB { + t.Helper() + + dbpath := filepath.Join(os.TempDir(), fmt.Sprintf("gogs-%s-%d.db", suite, time.Now().Unix())) + db, err := openDB(conf.DatabaseOpts{ + Type: "sqlite3", + Path: dbpath, + }) + if err != nil { + t.Fatal(err) + } + t.Cleanup(func() { + _ = db.Close() + + if t.Failed() { + t.Logf("Database %q left intact for inspection", dbpath) + return + } + + _ = os.Remove(dbpath) + }) + + db.SingularTable(true) + if !testing.Verbose() { + db.SetLogger(&dbutil.Writer{Writer: ioutil.Discard}) + } + if *printSQL { + db.LogMode(true) + } + + err = db.AutoMigrate(tables...).Error + if err != nil { + t.Fatal(err) + } + + return db +} diff --git a/internal/db/migrations/migrations.go b/internal/db/migrations/migrations.go index dce1476d1..20ab0a8b0 100644 --- a/internal/db/migrations/migrations.go +++ b/internal/db/migrations/migrations.go @@ -13,7 +13,7 @@ import ( log "unknwon.dev/clog/v2" "xorm.io/xorm" - "gogs.io/gogs/internal/tool" + "gogs.io/gogs/internal/strutil" ) const _MIN_DB_VER = 10 @@ -156,10 +156,10 @@ func generateOrgRandsAndSalt(x *xorm.Engine) (err error) { } for _, org := range orgs { - if org.Rands, err = tool.RandomString(10); err != nil { + if org.Rands, err = strutil.RandomChars(10); err != nil { return err } - if org.Salt, err = tool.RandomString(10); err != nil { + if org.Salt, err = strutil.RandomChars(10); err != nil { return err } if _, err = sess.ID(org.ID).Update(org); err != nil { diff --git a/internal/db/mocks.go b/internal/db/mocks.go new file mode 100644 index 000000000..41bb40720 --- /dev/null +++ b/internal/db/mocks.go @@ -0,0 +1,244 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "testing" + + "gogs.io/gogs/internal/lfsutil" +) + +// NOTE: Mocks are sorted in alphabetical order. + +var _ AccessTokensStore = (*MockAccessTokensStore)(nil) + +type MockAccessTokensStore struct { + MockCreate func(userID int64, name string) (*AccessToken, error) + MockDeleteByID func(userID, id int64) error + MockGetBySHA func(sha string) (*AccessToken, error) + MockList func(userID int64) ([]*AccessToken, error) + MockSave func(t *AccessToken) error +} + +func (m *MockAccessTokensStore) Create(userID int64, name string) (*AccessToken, error) { + return m.MockCreate(userID, name) +} + +func (m *MockAccessTokensStore) DeleteByID(userID, id int64) error { + return m.MockDeleteByID(userID, id) +} + +func (m *MockAccessTokensStore) GetBySHA(sha string) (*AccessToken, error) { + return m.MockGetBySHA(sha) +} + +func (m *MockAccessTokensStore) List(userID int64) ([]*AccessToken, error) { + return m.MockList(userID) +} + +func (m *MockAccessTokensStore) Save(t *AccessToken) error { + return m.MockSave(t) +} + +func SetMockAccessTokensStore(t *testing.T, mock AccessTokensStore) { + before := AccessTokens + AccessTokens = mock + t.Cleanup(func() { + AccessTokens = before + }) +} + +var _ LFSStore = (*MockLFSStore)(nil) + +type MockLFSStore struct { + MockCreateObject func(repoID int64, oid lfsutil.OID, size int64, storage lfsutil.Storage) error + MockGetObjectByOID func(repoID int64, oid lfsutil.OID) (*LFSObject, error) + MockGetObjectsByOIDs func(repoID int64, oids ...lfsutil.OID) ([]*LFSObject, error) +} + +func (m *MockLFSStore) CreateObject(repoID int64, oid lfsutil.OID, size int64, storage lfsutil.Storage) error { + return m.MockCreateObject(repoID, oid, size, storage) +} + +func (m *MockLFSStore) GetObjectByOID(repoID int64, oid lfsutil.OID) (*LFSObject, error) { + return m.MockGetObjectByOID(repoID, oid) +} + +func (m *MockLFSStore) GetObjectsByOIDs(repoID int64, oids ...lfsutil.OID) ([]*LFSObject, error) { + return m.MockGetObjectsByOIDs(repoID, oids...) +} + +func SetMockLFSStore(t *testing.T, mock LFSStore) { + before := LFS + LFS = mock + t.Cleanup(func() { + LFS = before + }) +} + +var _ loginSourceFilesStore = (*mockLoginSourceFilesStore)(nil) + +type mockLoginSourceFilesStore struct { + MockGetByID func(id int64) (*LoginSource, error) + MockLen func() int + MockList func(opts ListLoginSourceOpts) []*LoginSource + MockUpdate func(source *LoginSource) +} + +func (m *mockLoginSourceFilesStore) GetByID(id int64) (*LoginSource, error) { + return m.MockGetByID(id) +} + +func (m *mockLoginSourceFilesStore) Len() int { + return m.MockLen() +} + +func (m *mockLoginSourceFilesStore) List(opts ListLoginSourceOpts) []*LoginSource { + return m.MockList(opts) +} + +func (m *mockLoginSourceFilesStore) Update(source *LoginSource) { + m.MockUpdate(source) +} + +func setMockLoginSourceFilesStore(t *testing.T, db *loginSources, mock loginSourceFilesStore) { + before := db.files + db.files = mock + t.Cleanup(func() { + db.files = before + }) +} + +var _ loginSourceFileStore = (*mockLoginSourceFileStore)(nil) + +type mockLoginSourceFileStore struct { + MockSetGeneral func(name, value string) + MockSetConfig func(cfg interface{}) error + MockSave func() error +} + +func (m *mockLoginSourceFileStore) SetGeneral(name, value string) { + m.MockSetGeneral(name, value) +} + +func (m *mockLoginSourceFileStore) SetConfig(cfg interface{}) error { + return m.MockSetConfig(cfg) +} + +func (m *mockLoginSourceFileStore) Save() error { + return m.MockSave() +} + +var _ PermsStore = (*MockPermsStore)(nil) + +type MockPermsStore struct { + MockAccessMode func(userID int64, repo *Repository) AccessMode + MockAuthorize func(userID int64, repo *Repository, desired AccessMode) bool + MockSetRepoPerms func(repoID int64, accessMap map[int64]AccessMode) error +} + +func (m *MockPermsStore) AccessMode(userID int64, repo *Repository) AccessMode { + return m.MockAccessMode(userID, repo) +} + +func (m *MockPermsStore) Authorize(userID int64, repo *Repository, desired AccessMode) bool { + return m.MockAuthorize(userID, repo, desired) +} + +func (m *MockPermsStore) SetRepoPerms(repoID int64, accessMap map[int64]AccessMode) error { + return m.MockSetRepoPerms(repoID, accessMap) +} + +func SetMockPermsStore(t *testing.T, mock PermsStore) { + before := Perms + Perms = mock + t.Cleanup(func() { + Perms = before + }) +} + +var _ ReposStore = (*MockReposStore)(nil) + +type MockReposStore struct { + MockGetByName func(ownerID int64, name string) (*Repository, error) +} + +func (m *MockReposStore) GetByName(ownerID int64, name string) (*Repository, error) { + return m.MockGetByName(ownerID, name) +} + +func SetMockReposStore(t *testing.T, mock ReposStore) { + before := Repos + Repos = mock + t.Cleanup(func() { + Repos = before + }) +} + +var _ TwoFactorsStore = (*MockTwoFactorsStore)(nil) + +type MockTwoFactorsStore struct { + MockCreate func(userID int64, key, secret string) error + MockGetByUserID func(userID int64) (*TwoFactor, error) + MockIsUserEnabled func(userID int64) bool +} + +func (m *MockTwoFactorsStore) Create(userID int64, key, secret string) error { + return m.MockCreate(userID, key, secret) +} + +func (m *MockTwoFactorsStore) GetByUserID(userID int64) (*TwoFactor, error) { + return m.MockGetByUserID(userID) +} + +func (m *MockTwoFactorsStore) IsUserEnabled(userID int64) bool { + return m.MockIsUserEnabled(userID) +} + +func SetMockTwoFactorsStore(t *testing.T, mock TwoFactorsStore) { + before := TwoFactors + TwoFactors = mock + t.Cleanup(func() { + TwoFactors = before + }) +} + +var _ UsersStore = (*MockUsersStore)(nil) + +type MockUsersStore struct { + MockAuthenticate func(username, password string, loginSourceID int64) (*User, error) + MockCreate func(opts CreateUserOpts) (*User, error) + MockGetByEmail func(email string) (*User, error) + MockGetByID func(id int64) (*User, error) + MockGetByUsername func(username string) (*User, error) +} + +func (m *MockUsersStore) Authenticate(username, password string, loginSourceID int64) (*User, error) { + return m.MockAuthenticate(username, password, loginSourceID) +} + +func (m *MockUsersStore) Create(opts CreateUserOpts) (*User, error) { + return m.MockCreate(opts) +} + +func (m *MockUsersStore) GetByEmail(email string) (*User, error) { + return m.MockGetByEmail(email) +} + +func (m *MockUsersStore) GetByID(id int64) (*User, error) { + return m.MockGetByID(id) +} + +func (m *MockUsersStore) GetByUsername(username string) (*User, error) { + return m.MockGetByUsername(username) +} + +func SetMockUsersStore(t *testing.T, mock UsersStore) { + before := Users + Users = mock + t.Cleanup(func() { + Users = before + }) +} diff --git a/internal/db/models.go b/internal/db/models.go index cf00727e8..37783a13e 100644 --- a/internal/db/models.go +++ b/internal/db/models.go @@ -7,7 +7,6 @@ package db import ( "bufio" "database/sql" - "errors" "fmt" "net/url" "os" @@ -15,10 +14,7 @@ import ( "strings" "time" - _ "github.com/denisenkom/go-mssqldb" - _ "github.com/go-sql-driver/mysql" "github.com/json-iterator/go" - _ "github.com/lib/pq" "github.com/unknwon/com" log "unknwon.dev/clog/v2" "xorm.io/core" @@ -45,21 +41,19 @@ type Engine interface { } var ( - x *xorm.Engine - tables []interface{} - HasEngine bool - - EnableSQLite3 bool + x *xorm.Engine + legacyTables []interface{} + HasEngine bool ) func init() { - tables = append(tables, - new(User), new(PublicKey), new(AccessToken), new(TwoFactor), new(TwoFactorRecoveryCode), + legacyTables = append(legacyTables, + new(User), new(PublicKey), new(TwoFactor), new(TwoFactorRecoveryCode), new(Repository), new(DeployKey), new(Collaboration), new(Access), new(Upload), new(Watch), new(Star), new(Follow), new(Action), new(Issue), new(PullRequest), new(Comment), new(Attachment), new(IssueUser), new(Label), new(IssueLabel), new(Milestone), - new(Mirror), new(Release), new(LoginSource), new(Webhook), new(HookTask), + new(Mirror), new(Release), new(Webhook), new(HookTask), new(ProtectBranch), new(ProtectBranchWhitelist), new(Team), new(OrgUser), new(TeamUser), new(TeamRepo), new(Notice), new(EmailAddress)) @@ -70,35 +64,6 @@ func init() { } } -// parsePostgreSQLHostPort parses given input in various forms defined in -// https://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-CONNSTRING -// and returns proper host and port number. -func parsePostgreSQLHostPort(info string) (string, string) { - host, port := "127.0.0.1", "5432" - if strings.Contains(info, ":") && !strings.HasSuffix(info, "]") { - idx := strings.LastIndex(info, ":") - host = info[:idx] - port = info[idx+1:] - } else if len(info) > 0 { - host = info - } - return host, port -} - -func parseMSSQLHostPort(info string) (string, string) { - host, port := "127.0.0.1", "1433" - if strings.Contains(info, ":") { - host = strings.Split(info, ":")[0] - port = strings.Split(info, ":")[1] - } else if strings.Contains(info, ",") { - host = strings.Split(info, ",")[0] - port = strings.TrimSpace(strings.Split(info, ",")[1]) - } else if len(info) > 0 { - host = info - } - return host, port -} - func getEngine() (*xorm.Engine, error) { Param := "?" if strings.Contains(conf.Database.Name, Param) { @@ -133,12 +98,9 @@ func getEngine() (*xorm.Engine, error) { case "mssql": conf.UseMSSQL = true host, port := parseMSSQLHostPort(conf.Database.Host) - connStr = fmt.Sprintf("server=%s; port=%s; database=%s; user id=%s; password=%s;", host, port, conf.Database.Name, conf.Database.User, conf.Database.Passwd) + connStr = fmt.Sprintf("server=%s; port=%s; database=%s; user id=%s; password=%s;", host, port, conf.Database.Name, conf.Database.User, conf.Database.Password) case "sqlite3": - if !EnableSQLite3 { - return nil, errors.New("this binary version does not build support for SQLite3") - } if err := os.MkdirAll(path.Dir(conf.Database.Path), os.ModePerm); err != nil { return nil, fmt.Errorf("create directories: %v", err) } @@ -158,7 +120,7 @@ func NewTestEngine() error { } x.SetMapper(core.GonicMapper{}) - return x.StoreEngine("InnoDB").Sync2(tables...) + return x.StoreEngine("InnoDB").Sync2(legacyTables...) } func SetEngine() (err error) { @@ -183,9 +145,8 @@ func SetEngine() (err error) { return fmt.Errorf("create 'xorm.log': %v", err) } - // To prevent mystery "MySQL: invalid connection" error, - // see https://gogs.io/gogs/issues/5532. - x.SetMaxIdleConns(0) + x.SetMaxOpenConns(conf.Database.MaxOpenConns) + x.SetMaxIdleConns(conf.Database.MaxIdleConns) x.SetConnMaxLifetime(time.Second) if conf.IsProdMode() { @@ -194,7 +155,7 @@ func SetEngine() (err error) { x.SetLogger(xorm.NewSimpleLogger(logger)) } x.ShowSQL(true) - return nil + return Init() } func NewEngine() (err error) { @@ -206,7 +167,7 @@ func NewEngine() (err error) { return fmt.Errorf("migrate: %v", err) } - if err = x.StoreEngine("InnoDB").Sync2(tables...); err != nil { + if err = x.StoreEngine("InnoDB").Sync2(legacyTables...); err != nil { return fmt.Errorf("sync structs to database tables: %v\n", err) } @@ -239,7 +200,7 @@ func GetStatistic() (stats Statistic) { stats.Counter.Follow, _ = x.Count(new(Follow)) stats.Counter.Mirror, _ = x.Count(new(Mirror)) stats.Counter.Release, _ = x.Count(new(Release)) - stats.Counter.LoginSource = CountLoginSources() + stats.Counter.LoginSource = LoginSources.Count() stats.Counter.Webhook, _ = x.Count(new(Webhook)) stats.Counter.Milestone, _ = x.Count(new(Milestone)) stats.Counter.Label, _ = x.Count(new(Label)) @@ -266,8 +227,9 @@ func DumpDatabase(dirPath string) error { } // Purposely create a local variable to not modify global variable - tables := append(tables, new(Version)) - for _, table := range tables { + allTables := append(legacyTables, new(Version)) + allTables = append(allTables, tables...) + for _, table := range allTables { tableName := strings.TrimPrefix(fmt.Sprintf("%T", table), "*db.") tableFile := path.Join(dirPath, tableName+".json") f, err := os.Create(tableFile) @@ -296,8 +258,9 @@ func ImportDatabase(dirPath string, verbose bool) (err error) { } // Purposely create a local variable to not modify global variable - tables := append(tables, new(Version)) - for _, table := range tables { + allTables := append(legacyTables, new(Version)) + allTables = append(allTables, tables...) + for _, table := range allTables { tableName := strings.TrimPrefix(fmt.Sprintf("%T", table), "*db.") tableFile := path.Join(dirPath, tableName+".json") if !com.IsExist(tableFile) { @@ -331,14 +294,14 @@ func ImportDatabase(dirPath string, verbose bool) (err error) { tp := LoginType(com.StrTo(com.ToStr(meta["Type"])).MustInt64()) switch tp { - case LOGIN_LDAP, LOGIN_DLDAP: - bean.Cfg = new(LDAPConfig) - case LOGIN_SMTP: - bean.Cfg = new(SMTPConfig) - case LOGIN_PAM: - bean.Cfg = new(PAMConfig) - case LOGIN_GITHUB: - bean.Cfg = new(GitHubConfig) + case LoginLDAP, LoginDLDAP: + bean.Config = new(LDAPConfig) + case LoginSMTP: + bean.Config = new(SMTPConfig) + case LoginPAM: + bean.Config = new(PAMConfig) + case LoginGitHub: + bean.Config = new(GitHubConfig) default: return fmt.Errorf("unrecognized login source type:: %v", tp) } diff --git a/internal/db/models_sqlite.go b/internal/db/models_sqlite.go deleted file mode 100644 index c462cc5d8..000000000 --- a/internal/db/models_sqlite.go +++ /dev/null @@ -1,15 +0,0 @@ -// +build sqlite - -// Copyright 2014 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package db - -import ( - _ "github.com/mattn/go-sqlite3" -) - -func init() { - EnableSQLite3 = true -} diff --git a/internal/db/models_test.go b/internal/db/models_test.go deleted file mode 100644 index 53f8b4f05..000000000 --- a/internal/db/models_test.go +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright 2016 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package db - -import ( - "testing" - - . "github.com/smartystreets/goconvey/convey" -) - -func Test_parsePostgreSQLHostPort(t *testing.T) { - testSuites := []struct { - input string - host, port string - }{ - {"127.0.0.1:1234", "127.0.0.1", "1234"}, - {"127.0.0.1", "127.0.0.1", "5432"}, - {"[::1]:1234", "[::1]", "1234"}, - {"[::1]", "[::1]", "5432"}, - {"/tmp/pg.sock:1234", "/tmp/pg.sock", "1234"}, - {"/tmp/pg.sock", "/tmp/pg.sock", "5432"}, - } - - Convey("Parse PostgreSQL host and port", t, func() { - for _, suite := range testSuites { - host, port := parsePostgreSQLHostPort(suite.input) - So(host, ShouldEqual, suite.host) - So(port, ShouldEqual, suite.port) - } - }) -} diff --git a/internal/db/org.go b/internal/db/org.go index bcf307a79..f235928bb 100644 --- a/internal/db/org.go +++ b/internal/db/org.go @@ -12,6 +12,8 @@ import ( "xorm.io/builder" "xorm.io/xorm" + + "gogs.io/gogs/internal/errutil" ) var ( @@ -99,7 +101,7 @@ func (org *User) RemoveOrgRepo(repoID int64) error { // CreateOrganization creates record of a new organization. func CreateOrganization(org, owner *User) (err error) { - if err = IsUsableUsername(org.Name); err != nil { + if err = isUsernameAllowed(org.Name); err != nil { return err } @@ -107,7 +109,7 @@ func CreateOrganization(org, owner *User) (err error) { if err != nil { return err } else if isExist { - return ErrUserAlreadyExist{org.Name} + return ErrUserAlreadyExist{args: errutil.Args{"name": org.Name}} } org.LowerName = strings.ToLower(org.Name) @@ -148,7 +150,7 @@ func CreateOrganization(org, owner *User) (err error) { OrgID: org.ID, LowerName: strings.ToLower(OWNER_TEAM), Name: OWNER_TEAM, - Authorize: ACCESS_MODE_OWNER, + Authorize: AccessModeOwner, NumMembers: 1, } if _, err = sess.Insert(t); err != nil { @@ -177,7 +179,7 @@ func GetOrgByName(name string) (*User, error) { } u := &User{ LowerName: strings.ToLower(name), - Type: USER_TYPE_ORGANIZATION, + Type: UserOrganization, } has, err := x.Get(u) if err != nil { diff --git a/internal/db/org_team.go b/internal/db/org_team.go index 8ed587dbd..9daca9e79 100644 --- a/internal/db/org_team.go +++ b/internal/db/org_team.go @@ -47,7 +47,7 @@ func (t *Team) IsOwnerTeam() bool { // HasWriteAccess returns true if team has at least write level access mode. func (t *Team) HasWriteAccess() bool { - return t.Authorize >= ACCESS_MODE_WRITE + return t.Authorize >= AccessModeWrite } // IsTeamMember returns true if given user is a member of team. @@ -174,7 +174,7 @@ func (t *Team) removeRepository(e Engine, repo *Repository, recalculate bool) (e return fmt.Errorf("get team members: %v", err) } for _, member := range t.Members { - has, err := hasAccess(e, member.ID, repo, ACCESS_MODE_READ) + has, err := hasAccess(e, member.ID, repo, AccessModeRead) if err != nil { return err } else if has { @@ -217,7 +217,7 @@ var reservedTeamNames = []string{"new"} // IsUsableTeamName return an error if given name is a reserved name or pattern. func IsUsableTeamName(name string) error { - return isUsableName(reservedTeamNames, nil, name) + return isNameAllowed(reservedTeamNames, nil, name) } // NewTeam creates a record of new team. @@ -241,11 +241,12 @@ func NewTeam(t *Team) error { } t.LowerName = strings.ToLower(t.Name) - has, err = x.Where("org_id=?", t.OrgID).And("lower_name=?", t.LowerName).Get(new(Team)) + existingTeam := Team{} + has, err = x.Where("org_id=?", t.OrgID).And("lower_name=?", t.LowerName).Get(&existingTeam) if err != nil { return err } else if has { - return ErrTeamAlreadyExist{t.OrgID, t.LowerName} + return ErrTeamAlreadyExist{existingTeam.ID, t.OrgID, t.LowerName} } sess := x.NewSession() @@ -346,11 +347,12 @@ func UpdateTeam(t *Team, authChanged bool) (err error) { } t.LowerName = strings.ToLower(t.Name) - has, err := x.Where("org_id=?", t.OrgID).And("lower_name=?", t.LowerName).And("id!=?", t.ID).Get(new(Team)) + existingTeam := new(Team) + has, err := x.Where("org_id=?", t.OrgID).And("lower_name=?", t.LowerName).And("id!=?", t.ID).Get(&existingTeam) if err != nil { return err } else if has { - return ErrTeamAlreadyExist{t.OrgID, t.LowerName} + return ErrTeamAlreadyExist{existingTeam.ID, t.OrgID, t.LowerName} } if _, err = sess.ID(t.ID).AllCols().Update(t); err != nil { diff --git a/internal/db/perms.go b/internal/db/perms.go new file mode 100644 index 000000000..129f2187b --- /dev/null +++ b/internal/db/perms.go @@ -0,0 +1,86 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "github.com/jinzhu/gorm" + "github.com/t-tiger/gorm-bulk-insert" + log "unknwon.dev/clog/v2" +) + +// PermsStore is the persistent interface for permissions. +// +// NOTE: All methods are sorted in alphabetical order. +type PermsStore interface { + // AccessMode returns the access mode of given user has to the repository. + AccessMode(userID int64, repo *Repository) AccessMode + // Authorize returns true if the user has as good as desired access mode to the repository. + Authorize(userID int64, repo *Repository, desired AccessMode) bool + // SetRepoPerms does a full update to which users have which level of access to given repository. + // Keys of the "accessMap" are user IDs. + SetRepoPerms(repoID int64, accessMap map[int64]AccessMode) error +} + +var Perms PermsStore + +var _ PermsStore = (*perms)(nil) + +type perms struct { + *gorm.DB +} + +func (db *perms) AccessMode(userID int64, repo *Repository) (mode AccessMode) { + if repo == nil { + return AccessModeNone + } + + // Everyone has read access to public repository. + if !repo.IsPrivate { + mode = AccessModeRead + } + + // Anonymous user gets the default access. + if userID <= 0 { + return mode + } + + if userID == repo.OwnerID { + return AccessModeOwner + } + + access := new(Access) + err := db.Where("user_id = ? AND repo_id = ?", userID, repo.ID).First(access).Error + if err != nil { + if !gorm.IsRecordNotFoundError(err) { + log.Error("Failed to get access [user_id: %d, repo_id: %d]: %v", userID, repo.ID, err) + } + return mode + } + return access.Mode +} + +func (db *perms) Authorize(userID int64, repo *Repository, desired AccessMode) bool { + return desired <= db.AccessMode(userID, repo) +} + +func (db *perms) SetRepoPerms(repoID int64, accessMap map[int64]AccessMode) error { + records := make([]interface{}, 0, len(accessMap)) + for userID, mode := range accessMap { + records = append(records, &Access{ + UserID: userID, + RepoID: repoID, + Mode: mode, + }) + } + + return db.Transaction(func(tx *gorm.DB) error { + err := tx.Where("repo_id = ?", repoID).Delete(new(Access)).Error + if err != nil { + return err + } + + return gormbulk.BulkInsert(tx, records, 3000) + }) +} diff --git a/internal/db/perms_test.go b/internal/db/perms_test.go new file mode 100644 index 000000000..f11a6d60a --- /dev/null +++ b/internal/db/perms_test.go @@ -0,0 +1,289 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func Test_perms(t *testing.T) { + if testing.Short() { + t.Skip() + } + + t.Parallel() + + tables := []interface{}{new(Access)} + db := &perms{ + DB: initTestDB(t, "perms", tables...), + } + + for _, tc := range []struct { + name string + test func(*testing.T, *perms) + }{ + {"AccessMode", test_perms_AccessMode}, + {"Authorize", test_perms_Authorize}, + {"SetRepoPerms", test_perms_SetRepoPerms}, + } { + t.Run(tc.name, func(t *testing.T) { + t.Cleanup(func() { + err := clearTables(t, db.DB, tables...) + if err != nil { + t.Fatal(err) + } + }) + tc.test(t, db) + }) + } +} +func test_perms_AccessMode(t *testing.T, db *perms) { + // Set up permissions + err := db.SetRepoPerms(1, map[int64]AccessMode{ + 2: AccessModeWrite, + 3: AccessModeAdmin, + }) + if err != nil { + t.Fatal(err) + } + err = db.SetRepoPerms(2, map[int64]AccessMode{ + 1: AccessModeRead, + }) + if err != nil { + t.Fatal(err) + } + + publicRepo := &Repository{ + ID: 1, + OwnerID: 98, + } + privateRepo := &Repository{ + ID: 2, + OwnerID: 99, + IsPrivate: true, + } + + tests := []struct { + name string + userID int64 + repo *Repository + expAccessMode AccessMode + }{ + { + name: "nil repository", + expAccessMode: AccessModeNone, + }, + + { + name: "anonymous user has read access to public repository", + repo: publicRepo, + expAccessMode: AccessModeRead, + }, + { + name: "anonymous user has no access to private repository", + repo: privateRepo, + expAccessMode: AccessModeNone, + }, + + { + name: "user is the owner", + userID: 98, + repo: publicRepo, + expAccessMode: AccessModeOwner, + }, + { + name: "user 1 has read access to public repo", + userID: 1, + repo: publicRepo, + expAccessMode: AccessModeRead, + }, + { + name: "user 2 has write access to public repo", + userID: 2, + repo: publicRepo, + expAccessMode: AccessModeWrite, + }, + { + name: "user 3 has admin access to public repo", + userID: 3, + repo: publicRepo, + expAccessMode: AccessModeAdmin, + }, + + { + name: "user 1 has read access to private repo", + userID: 1, + repo: privateRepo, + expAccessMode: AccessModeRead, + }, + { + name: "user 2 has no access to private repo", + userID: 2, + repo: privateRepo, + expAccessMode: AccessModeNone, + }, + { + name: "user 3 has no access to private repo", + userID: 3, + repo: privateRepo, + expAccessMode: AccessModeNone, + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + mode := db.AccessMode(test.userID, test.repo) + assert.Equal(t, test.expAccessMode, mode) + }) + } +} + +func test_perms_Authorize(t *testing.T, db *perms) { + // Set up permissions + err := db.SetRepoPerms(1, map[int64]AccessMode{ + 1: AccessModeRead, + 2: AccessModeWrite, + 3: AccessModeAdmin, + }) + if err != nil { + t.Fatal(err) + } + + repo := &Repository{ + ID: 1, + OwnerID: 98, + } + + tests := []struct { + name string + userID int64 + desired AccessMode + expAuthorized bool + }{ + { + name: "user 1 has read and wants read", + userID: 1, + desired: AccessModeRead, + expAuthorized: true, + }, + { + name: "user 1 has read and wants write", + userID: 1, + desired: AccessModeWrite, + expAuthorized: false, + }, + + { + name: "user 2 has write and wants read", + userID: 2, + desired: AccessModeRead, + expAuthorized: true, + }, + { + name: "user 2 has write and wants write", + userID: 2, + desired: AccessModeWrite, + expAuthorized: true, + }, + { + name: "user 2 has write and wants admin", + userID: 2, + desired: AccessModeAdmin, + expAuthorized: false, + }, + + { + name: "user 3 has admin and wants read", + userID: 3, + desired: AccessModeRead, + expAuthorized: true, + }, + { + name: "user 3 has admin and wants write", + userID: 3, + desired: AccessModeWrite, + expAuthorized: true, + }, + { + name: "user 3 has admin and wants admin", + userID: 3, + desired: AccessModeAdmin, + expAuthorized: true, + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + authorized := db.Authorize(test.userID, repo, test.desired) + assert.Equal(t, test.expAuthorized, authorized) + }) + } +} + +func test_perms_SetRepoPerms(t *testing.T, db *perms) { + for _, update := range []struct { + repoID int64 + accessMap map[int64]AccessMode + }{ + { + repoID: 1, + accessMap: map[int64]AccessMode{ + 1: AccessModeWrite, + 2: AccessModeWrite, + 3: AccessModeAdmin, + 4: AccessModeWrite, + }, + }, + { + repoID: 2, + accessMap: map[int64]AccessMode{ + 1: AccessModeWrite, + 2: AccessModeRead, + 4: AccessModeWrite, + 5: AccessModeWrite, + }, + }, + { + repoID: 1, + accessMap: map[int64]AccessMode{ + 2: AccessModeWrite, + 3: AccessModeAdmin, + }, + }, + { + repoID: 2, + accessMap: map[int64]AccessMode{ + 1: AccessModeWrite, + 2: AccessModeRead, + 5: AccessModeWrite, + }, + }, + } { + err := db.SetRepoPerms(update.repoID, update.accessMap) + if err != nil { + t.Fatal(err) + } + } + + var accesses []*Access + err := db.Order("user_id, repo_id").Find(&accesses).Error + if err != nil { + t.Fatal(err) + } + + // Ignore ID fields + for _, a := range accesses { + a.ID = 0 + } + + expAccesses := []*Access{ + {UserID: 1, RepoID: 2, Mode: AccessModeWrite}, + {UserID: 2, RepoID: 1, Mode: AccessModeWrite}, + {UserID: 2, RepoID: 2, Mode: AccessModeRead}, + {UserID: 3, RepoID: 1, Mode: AccessModeAdmin}, + {UserID: 5, RepoID: 2, Mode: AccessModeWrite}, + } + assert.Equal(t, expAccesses, accesses) +} diff --git a/internal/db/release.go b/internal/db/release.go index 71a72dae0..7ec558b85 100644 --- a/internal/db/release.go +++ b/internal/db/release.go @@ -267,6 +267,12 @@ func GetPublishedReleasesByRepoID(repoID int64, matches ...string) ([]*Release, return releases, sess.Find(&releases, new(Release)) } +// GetReleasesByRepoID returns a list of all releases (including drafts) of given repository. +func GetReleasesByRepoID(repoID int64) ([]*Release, error) { + releases := make([]*Release, 0) + return releases, x.Where("repo_id = ?", repoID).Find(&releases) +} + // GetDraftReleasesByRepoID returns all draft releases of repository. func GetDraftReleasesByRepoID(repoID int64) ([]*Release, error) { releases := make([]*Release, 0) diff --git a/internal/db/repo.go b/internal/db/repo.go index 7c27b26a7..66cecdd34 100644 --- a/internal/db/repo.go +++ b/internal/db/repo.go @@ -148,14 +148,14 @@ func NewRepoContext() { // Repository contains information of a repository. type Repository struct { ID int64 - OwnerID int64 `xorm:"UNIQUE(s)"` - Owner *User `xorm:"-" json:"-"` - LowerName string `xorm:"UNIQUE(s) INDEX NOT NULL"` - Name string `xorm:"INDEX NOT NULL"` - Description string `xorm:"VARCHAR(512)"` + OwnerID int64 `xorm:"UNIQUE(s)" gorm:"UNIQUE_INDEX:s"` + Owner *User `xorm:"-" gorm:"-" json:"-"` + LowerName string `xorm:"UNIQUE(s) INDEX NOT NULL" gorm:"UNIQUE_INDEX:s"` + Name string `xorm:"INDEX NOT NULL" gorm:"NOT NULL"` + Description string `xorm:"VARCHAR(512)" gorm:"TYPE:VARCHAR(512)"` Website string DefaultBranch string - Size int64 `xorm:"NOT NULL DEFAULT 0"` + Size int64 `xorm:"NOT NULL DEFAULT 0" gorm:"NOT NULL;DEFAULT:0"` UseCustomAvatar bool // Counters @@ -164,44 +164,44 @@ type Repository struct { NumForks int NumIssues int NumClosedIssues int - NumOpenIssues int `xorm:"-" json:"-"` + NumOpenIssues int `xorm:"-" gorm:"-" json:"-"` NumPulls int NumClosedPulls int - NumOpenPulls int `xorm:"-" json:"-"` - NumMilestones int `xorm:"NOT NULL DEFAULT 0"` - NumClosedMilestones int `xorm:"NOT NULL DEFAULT 0"` - NumOpenMilestones int `xorm:"-" json:"-"` - NumTags int `xorm:"-" json:"-"` + NumOpenPulls int `xorm:"-" gorm:"-" json:"-"` + NumMilestones int `xorm:"NOT NULL DEFAULT 0" gorm:"NOT NULL;DEFAULT:0"` + NumClosedMilestones int `xorm:"NOT NULL DEFAULT 0" gorm:"NOT NULL;DEFAULT:0"` + NumOpenMilestones int `xorm:"-" gorm:"-" json:"-"` + NumTags int `xorm:"-" gorm:"-" json:"-"` IsPrivate bool IsBare bool IsMirror bool - *Mirror `xorm:"-" json:"-"` + *Mirror `xorm:"-" gorm:"-" json:"-"` // Advanced settings - EnableWiki bool `xorm:"NOT NULL DEFAULT true"` + EnableWiki bool `xorm:"NOT NULL DEFAULT true" gorm:"NOT NULL;DEFAULT:TRUE"` AllowPublicWiki bool EnableExternalWiki bool ExternalWikiURL string - EnableIssues bool `xorm:"NOT NULL DEFAULT true"` + EnableIssues bool `xorm:"NOT NULL DEFAULT true" gorm:"NOT NULL;DEFAULT:TRUE"` AllowPublicIssues bool EnableExternalTracker bool ExternalTrackerURL string ExternalTrackerFormat string ExternalTrackerStyle string - ExternalMetas map[string]string `xorm:"-" json:"-"` - EnablePulls bool `xorm:"NOT NULL DEFAULT true"` - PullsIgnoreWhitespace bool `xorm:"NOT NULL DEFAULT false"` - PullsAllowRebase bool `xorm:"NOT NULL DEFAULT false"` + ExternalMetas map[string]string `xorm:"-" gorm:"-" json:"-"` + EnablePulls bool `xorm:"NOT NULL DEFAULT true" gorm:"NOT NULL;DEFAULT:TRUE"` + PullsIgnoreWhitespace bool `xorm:"NOT NULL DEFAULT false" gorm:"NOT NULL;DEFAULT:FALSE"` + PullsAllowRebase bool `xorm:"NOT NULL DEFAULT false" gorm:"NOT NULL;DEFAULT:FALSE"` - IsFork bool `xorm:"NOT NULL DEFAULT false"` + IsFork bool `xorm:"NOT NULL DEFAULT false" gorm:"NOT NULL;DEFAULT:FALSE"` ForkID int64 - BaseRepo *Repository `xorm:"-" json:"-"` + BaseRepo *Repository `xorm:"-" gorm:"-" json:"-"` - Created time.Time `xorm:"-" json:"-"` + Created time.Time `xorm:"-" gorm:"-" json:"-"` CreatedUnix int64 - Updated time.Time `xorm:"-" json:"-"` + Updated time.Time `xorm:"-" gorm:"-" json:"-"` UpdatedUnix int64 } @@ -210,10 +210,6 @@ func (repo *Repository) BeforeInsert() { repo.UpdatedUnix = repo.CreatedUnix } -func (repo *Repository) BeforeUpdate() { - repo.UpdatedUnix = time.Now().Unix() -} - func (repo *Repository) AfterSet(colName string, _ xorm.Cell) { switch colName { case "default_branch": @@ -492,7 +488,7 @@ func (repo *Repository) getUsersWithAccesMode(e Engine, mode AccessMode) (_ []*U // getAssignees returns a list of users who can be assigned to issues in this repository. func (repo *Repository) getAssignees(e Engine) (_ []*User, err error) { - return repo.getUsersWithAccesMode(e, ACCESS_MODE_READ) + return repo.getUsersWithAccesMode(e, AccessModeRead) } // GetAssignees returns all users that have read access and can be assigned to issues @@ -508,7 +504,7 @@ func (repo *Repository) GetAssigneeByID(userID int64) (*User, error) { // GetWriters returns all users that have write access to the repository. func (repo *Repository) GetWriters() (_ []*User, err error) { - return repo.getUsersWithAccesMode(x, ACCESS_MODE_WRITE) + return repo.getUsersWithAccesMode(x, AccessModeWrite) } // GetMilestoneByID returns the milestone belongs to repository by given ID. @@ -551,7 +547,7 @@ func (repo *Repository) ComposeCompareURL(oldCommitID, newCommitID string) strin } func (repo *Repository) HasAccess(userID int64) bool { - has, _ := HasAccess(userID, repo, ACCESS_MODE_READ) + has, _ := HasAccess(userID, repo, AccessModeRead) return has } @@ -1057,13 +1053,13 @@ var ( reservedRepoPatterns = []string{"*.git", "*.wiki"} ) -// IsUsableRepoName return an error if given name is a reserved name or pattern. -func IsUsableRepoName(name string) error { - return isUsableName(reservedRepoNames, reservedRepoPatterns, name) +// isRepoNameAllowed return an error if given name is a reserved name or pattern for repositories. +func isRepoNameAllowed(name string) error { + return isNameAllowed(reservedRepoNames, reservedRepoPatterns, name) } func createRepository(e *xorm.Session, doer, owner *User, repo *Repository) (err error) { - if err = IsUsableRepoName(repo.Name); err != nil { + if err = isRepoNameAllowed(repo.Name); err != nil { return err } @@ -1071,7 +1067,7 @@ func createRepository(e *xorm.Session, doer, owner *User, repo *Repository) (err if err != nil { return fmt.Errorf("IsRepositoryExist: %v", err) } else if has { - return ErrRepoAlreadyExist{owner.Name, repo.Name} + return ErrRepoAlreadyExist{args: errutil.Args{"ownerID": owner.ID, "name": repo.Name}} } if _, err = e.Insert(repo); err != nil { @@ -1266,7 +1262,7 @@ func TransferOwnership(doer *User, newOwnerName string, repo *Repository) error if err != nil { return fmt.Errorf("IsRepositoryExist: %v", err) } else if has { - return ErrRepoAlreadyExist{newOwnerName, repo.Name} + return ErrRepoAlreadyExist{args: errutil.Args{"ownerName": newOwnerName, "name": repo.Name}} } sess := x.NewSession() @@ -1384,7 +1380,7 @@ func deleteRepoLocalCopy(repo *Repository) { func ChangeRepositoryName(u *User, oldRepoName, newRepoName string) (err error) { oldRepoName = strings.ToLower(oldRepoName) newRepoName = strings.ToLower(newRepoName) - if err = IsUsableRepoName(newRepoName); err != nil { + if err = isRepoNameAllowed(newRepoName); err != nil { return err } @@ -1392,7 +1388,7 @@ func ChangeRepositoryName(u *User, oldRepoName, newRepoName string) (err error) if err != nil { return fmt.Errorf("IsRepositoryExist: %v", err) } else if has { - return ErrRepoAlreadyExist{u.Name, newRepoName} + return ErrRepoAlreadyExist{args: errutil.Args{"ownerID": u.ID, "name": newRepoName}} } repo, err := GetRepositoryByName(u.ID, oldRepoName) @@ -1563,6 +1559,7 @@ func DeleteRepository(ownerID, repoID int64) error { &ProtectBranchWhitelist{RepoID: repoID}, &Webhook{RepoID: repoID}, &HookTask{RepoID: repoID}, + &LFSObject{RepoID: repoID}, ); err != nil { return fmt.Errorf("deleteBeans: %v", err) } @@ -1646,26 +1643,8 @@ func GetRepositoryByRef(ref string) (*Repository, error) { return GetRepositoryByName(user.ID, repoName) } -var _ errutil.NotFound = (*ErrRepoNotExist)(nil) - -type ErrRepoNotExist struct { - args map[string]interface{} -} - -func IsErrRepoNotExist(err error) bool { - _, ok := err.(ErrRepoNotExist) - return ok -} - -func (err ErrRepoNotExist) Error() string { - return fmt.Sprintf("repository does not exist: %v", err.args) -} - -func (ErrRepoNotExist) NotFound() bool { - return true -} - // GetRepositoryByName returns the repository by given name under user if exists. +// Deprecated: Use Repos.GetByName instead. func GetRepositoryByName(ownerID int64, name string) (*Repository, error) { repo := &Repository{ OwnerID: ownerID, diff --git a/internal/db/repo_branch.go b/internal/db/repo_branch.go index 8da999457..ceb992313 100644 --- a/internal/db/repo_branch.go +++ b/internal/db/repo_branch.go @@ -175,7 +175,7 @@ func UpdateOrgProtectBranch(repo *Repository, protectBranch *ProtectBranch, whit userIDs := tool.StringsToInt64s(strings.Split(whitelistUserIDs, ",")) validUserIDs = make([]int64, 0, len(userIDs)) for _, userID := range userIDs { - has, err := HasAccess(userID, repo, ACCESS_MODE_WRITE) + has, err := HasAccess(userID, repo, AccessModeWrite) if err != nil { return fmt.Errorf("HasAccess [user_id: %d, repo_id: %d]: %v", userID, protectBranch.RepoID, err) } else if !has { @@ -193,7 +193,7 @@ func UpdateOrgProtectBranch(repo *Repository, protectBranch *ProtectBranch, whit if protectBranch.WhitelistTeamIDs != whitelistTeamIDs { hasTeamsChanged = true teamIDs := tool.StringsToInt64s(strings.Split(whitelistTeamIDs, ",")) - teams, err := GetTeamsHaveAccessToRepo(repo.OwnerID, repo.ID, ACCESS_MODE_WRITE) + teams, err := GetTeamsHaveAccessToRepo(repo.OwnerID, repo.ID, AccessModeWrite) if err != nil { return fmt.Errorf("GetTeamsHaveAccessToRepo [org_id: %d, repo_id: %d]: %v", repo.OwnerID, repo.ID, err) } diff --git a/internal/db/repo_collaboration.go b/internal/db/repo_collaboration.go index b3d046ec6..8aec18dc9 100644 --- a/internal/db/repo_collaboration.go +++ b/internal/db/repo_collaboration.go @@ -22,11 +22,11 @@ type Collaboration struct { func (c *Collaboration) ModeI18nKey() string { switch c.Mode { - case ACCESS_MODE_READ: + case AccessModeRead: return "repo.settings.collaboration.read" - case ACCESS_MODE_WRITE: + case AccessModeWrite: return "repo.settings.collaboration.write" - case ACCESS_MODE_ADMIN: + case AccessModeAdmin: return "repo.settings.collaboration.admin" default: return "repo.settings.collaboration.undefined" @@ -64,7 +64,7 @@ func (repo *Repository) AddCollaborator(u *User) error { } else if has { return nil } - collaboration.Mode = ACCESS_MODE_WRITE + collaboration.Mode = AccessModeWrite sess := x.NewSession() defer sess.Close() @@ -96,9 +96,9 @@ func (c *Collaborator) APIFormat() *api.Collaborator { return &api.Collaborator{ User: c.User.APIFormat(), Permissions: api.Permission{ - Admin: c.Collaboration.Mode >= ACCESS_MODE_ADMIN, - Push: c.Collaboration.Mode >= ACCESS_MODE_WRITE, - Pull: c.Collaboration.Mode >= ACCESS_MODE_READ, + Admin: c.Collaboration.Mode >= AccessModeAdmin, + Push: c.Collaboration.Mode >= AccessModeWrite, + Pull: c.Collaboration.Mode >= AccessModeRead, }, } } @@ -131,7 +131,7 @@ func (repo *Repository) GetCollaborators() ([]*Collaborator, error) { // ChangeCollaborationAccessMode sets new access mode for the collaboration. func (repo *Repository) ChangeCollaborationAccessMode(userID int64, mode AccessMode) error { // Discard invalid input - if mode <= ACCESS_MODE_NONE || mode > ACCESS_MODE_OWNER { + if mode <= AccessModeNone || mode > AccessModeOwner { return nil } diff --git a/internal/db/repo_editor.go b/internal/db/repo_editor.go index c525bcd64..652d6944b 100644 --- a/internal/db/repo_editor.go +++ b/internal/db/repo_editor.go @@ -22,6 +22,7 @@ import ( "github.com/gogs/git-module" "gogs.io/gogs/internal/conf" + "gogs.io/gogs/internal/cryptoutil" "gogs.io/gogs/internal/db/errors" "gogs.io/gogs/internal/gitutil" "gogs.io/gogs/internal/osutil" @@ -56,7 +57,7 @@ func ComposeHookEnvs(opts ComposeHookEnvsOptions) []string { ENV_AUTH_USER_NAME + "=" + opts.AuthUser.Name, ENV_AUTH_USER_EMAIL + "=" + opts.AuthUser.Email, ENV_REPO_OWNER_NAME + "=" + opts.OwnerName, - ENV_REPO_OWNER_SALT_MD5 + "=" + tool.MD5(opts.OwnerSalt), + ENV_REPO_OWNER_SALT_MD5 + "=" + cryptoutil.MD5(opts.OwnerSalt), ENV_REPO_ID + "=" + com.ToStr(opts.RepoID), ENV_REPO_NAME + "=" + opts.RepoName, ENV_REPO_CUSTOM_HOOKS_PATH + "=" + filepath.Join(opts.RepoPath, "custom_hooks"), diff --git a/internal/db/repo_editor_test.go b/internal/db/repo_editor_test.go index 18e844d09..1b7d2265c 100644 --- a/internal/db/repo_editor_test.go +++ b/internal/db/repo_editor_test.go @@ -5,30 +5,29 @@ package db import ( - "os" + "path/filepath" "testing" - . "github.com/smartystreets/goconvey/convey" + "github.com/stretchr/testify/assert" ) func Test_isRepositoryGitPath(t *testing.T) { - Convey("Check if path is or resides inside '.git'", t, func() { - sep := string(os.PathSeparator) - testCases := []struct { - path string - expect bool - }{ - {"." + sep + ".git", true}, - {"." + sep + ".git" + sep + "", true}, - {"." + sep + ".git" + sep + "hooks" + sep + "pre-commit", true}, - {".git" + sep + "hooks", true}, - {"dir" + sep + ".git", true}, + tests := []struct { + path string + expVal bool + }{ + {path: filepath.Join(".", ".git"), expVal: true}, + {path: filepath.Join(".", ".git", ""), expVal: true}, + {path: filepath.Join(".", ".git", "hooks", "pre-commit"), expVal: true}, + {path: filepath.Join(".git", "hooks"), expVal: true}, + {path: filepath.Join("dir", ".git"), expVal: true}, - {".gitignore", false}, - {"dir" + sep + ".gitkeep", false}, - } - for _, tc := range testCases { - So(isRepositoryGitPath(tc.path), ShouldEqual, tc.expect) - } - }) + {path: filepath.Join(".gitignore"), expVal: false}, + {path: filepath.Join("dir", ".gitkeep"), expVal: false}, + } + for _, test := range tests { + t.Run("", func(t *testing.T) { + assert.Equal(t, test.expVal, isRepositoryGitPath(test.path)) + }) + } } diff --git a/internal/db/repo_test.go b/internal/db/repo_test.go index c239e74dd..f689f05db 100644 --- a/internal/db/repo_test.go +++ b/internal/db/repo_test.go @@ -1,63 +1,49 @@ -package db_test +package db import ( "testing" - . "github.com/smartystreets/goconvey/convey" + "github.com/stretchr/testify/assert" - "gogs.io/gogs/internal/db" "gogs.io/gogs/internal/markup" ) -func TestRepo(t *testing.T) { - Convey("The metas map", t, func() { - var repo = new(db.Repository) - repo.Name = "testrepo" - repo.Owner = new(db.User) - repo.Owner.Name = "testuser" - repo.ExternalTrackerFormat = "https://someurl.com/{user}/{repo}/{issue}" - - Convey("When no external tracker is configured", func() { - Convey("It should be nil", func() { - repo.EnableExternalTracker = false - So(repo.ComposeMetas(), ShouldEqual, map[string]string(nil)) - }) - Convey("It should be nil even if other settings are present", func() { - repo.EnableExternalTracker = false - repo.ExternalTrackerFormat = "http://someurl.com/{user}/{repo}/{issue}" - repo.ExternalTrackerStyle = markup.ISSUE_NAME_STYLE_NUMERIC - So(repo.ComposeMetas(), ShouldEqual, map[string]string(nil)) - }) - }) - - Convey("When an external issue tracker is configured", func() { - repo.EnableExternalTracker = true - Convey("It should default to numeric issue style", func() { - metas := repo.ComposeMetas() - So(metas["style"], ShouldEqual, markup.ISSUE_NAME_STYLE_NUMERIC) - }) - Convey("It should pass through numeric issue style setting", func() { - repo.ExternalTrackerStyle = markup.ISSUE_NAME_STYLE_NUMERIC - metas := repo.ComposeMetas() - So(metas["style"], ShouldEqual, markup.ISSUE_NAME_STYLE_NUMERIC) - }) - Convey("It should pass through alphanumeric issue style setting", func() { - repo.ExternalTrackerStyle = markup.ISSUE_NAME_STYLE_ALPHANUMERIC - metas := repo.ComposeMetas() - So(metas["style"], ShouldEqual, markup.ISSUE_NAME_STYLE_ALPHANUMERIC) - }) - Convey("It should contain the user name", func() { - metas := repo.ComposeMetas() - So(metas["user"], ShouldEqual, "testuser") - }) - Convey("It should contain the repo name", func() { - metas := repo.ComposeMetas() - So(metas["repo"], ShouldEqual, "testrepo") - }) - Convey("It should contain the URL format", func() { - metas := repo.ComposeMetas() - So(metas["format"], ShouldEqual, "https://someurl.com/{user}/{repo}/{issue}") - }) - }) +func TestRepository_ComposeMetas(t *testing.T) { + repo := &Repository{ + Name: "testrepo", + Owner: &User{ + Name: "testuser", + }, + ExternalTrackerFormat: "https://someurl.com/{user}/{repo}/{issue}", + } + + t.Run("no external tracker is configured", func(t *testing.T) { + repo.EnableExternalTracker = false + assert.Equal(t, map[string]string(nil), repo.ComposeMetas()) + + // Should be nil even if other settings are present + repo.ExternalTrackerStyle = markup.ISSUE_NAME_STYLE_NUMERIC + assert.Equal(t, map[string]string(nil), repo.ComposeMetas()) + }) + + t.Run("an external issue tracker is configured", func(t *testing.T) { + repo.EnableExternalTracker = true + + // Default to numeric issue style + assert.Equal(t, markup.ISSUE_NAME_STYLE_NUMERIC, repo.ComposeMetas()["style"]) + repo.ExternalMetas = nil + + repo.ExternalTrackerStyle = markup.ISSUE_NAME_STYLE_NUMERIC + assert.Equal(t, markup.ISSUE_NAME_STYLE_NUMERIC, repo.ComposeMetas()["style"]) + repo.ExternalMetas = nil + + repo.ExternalTrackerStyle = markup.ISSUE_NAME_STYLE_ALPHANUMERIC + assert.Equal(t, markup.ISSUE_NAME_STYLE_ALPHANUMERIC, repo.ComposeMetas()["style"]) + repo.ExternalMetas = nil + + metas := repo.ComposeMetas() + assert.Equal(t, "testuser", metas["user"]) + assert.Equal(t, "testrepo", metas["repo"]) + assert.Equal(t, "https://someurl.com/{user}/{repo}/{issue}", metas["format"]) }) } diff --git a/internal/db/repos.go b/internal/db/repos.go new file mode 100644 index 000000000..08cc64853 --- /dev/null +++ b/internal/db/repos.go @@ -0,0 +1,138 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "fmt" + "strings" + "time" + + "github.com/jinzhu/gorm" + + "gogs.io/gogs/internal/errutil" +) + +// ReposStore is the persistent interface for repositories. +// +// NOTE: All methods are sorted in alphabetical order. +type ReposStore interface { + // GetByName returns the repository with given owner and name. + // It returns ErrRepoNotExist when not found. + GetByName(ownerID int64, name string) (*Repository, error) +} + +var Repos ReposStore + +// NOTE: This is a GORM create hook. +func (r *Repository) BeforeCreate() { + r.CreatedUnix = gorm.NowFunc().Unix() +} + +// NOTE: This is a GORM update hook. +func (r *Repository) BeforeUpdate() { + r.UpdatedUnix = gorm.NowFunc().Unix() +} + +// NOTE: This is a GORM query hook. +func (r *Repository) AfterFind() { + r.Created = time.Unix(r.CreatedUnix, 0).Local() + r.Updated = time.Unix(r.UpdatedUnix, 0).Local() +} + +var _ ReposStore = (*repos)(nil) + +type repos struct { + *gorm.DB +} + +type ErrRepoAlreadyExist struct { + args errutil.Args +} + +func IsErrRepoAlreadyExist(err error) bool { + _, ok := err.(ErrRepoAlreadyExist) + return ok +} + +func (err ErrRepoAlreadyExist) Error() string { + return fmt.Sprintf("repository already exists: %v", err.args) +} + +type createRepoOpts struct { + Name string + Description string + DefaultBranch string + Private bool + Mirror bool + EnableWiki bool + EnableIssues bool + EnablePulls bool + Fork bool + ForkID int64 +} + +// create creates a new repository record in the database. Fields of "repo" will be updated +// in place upon insertion. It returns ErrNameNotAllowed when the repository name is not allowed, +// or ErrRepoAlreadyExist when a repository with same name already exists for the owner. +func (db *repos) create(ownerID int64, opts createRepoOpts) (*Repository, error) { + err := isRepoNameAllowed(opts.Name) + if err != nil { + return nil, err + } + + _, err = db.GetByName(ownerID, opts.Name) + if err == nil { + return nil, ErrRepoAlreadyExist{args: errutil.Args{"ownerID": ownerID, "name": opts.Name}} + } else if !IsErrRepoNotExist(err) { + return nil, err + } + + repo := &Repository{ + OwnerID: ownerID, + LowerName: strings.ToLower(opts.Name), + Name: opts.Name, + Description: opts.Description, + DefaultBranch: opts.DefaultBranch, + IsPrivate: opts.Private, + IsMirror: opts.Mirror, + EnableWiki: opts.EnableWiki, + EnableIssues: opts.EnableIssues, + EnablePulls: opts.EnablePulls, + IsFork: opts.Fork, + ForkID: opts.ForkID, + } + return repo, db.DB.Create(repo).Error +} + +var _ errutil.NotFound = (*ErrRepoNotExist)(nil) + +type ErrRepoNotExist struct { + args map[string]interface{} +} + +func IsErrRepoNotExist(err error) bool { + _, ok := err.(ErrRepoNotExist) + return ok +} + +func (err ErrRepoNotExist) Error() string { + return fmt.Sprintf("repository does not exist: %v", err.args) +} + +func (ErrRepoNotExist) NotFound() bool { + return true +} + +func (db *repos) GetByName(ownerID int64, name string) (*Repository, error) { + repo := new(Repository) + err := db.Where("owner_id = ? AND lower_name = ?", ownerID, strings.ToLower(name)).First(repo).Error + if err != nil { + if gorm.IsRecordNotFoundError(err) { + return nil, ErrRepoNotExist{args: map[string]interface{}{"ownerID": ownerID, "name": name}} + } + return nil, err + } + return repo, nil +} diff --git a/internal/db/repos_test.go b/internal/db/repos_test.go new file mode 100644 index 000000000..57bcdbab1 --- /dev/null +++ b/internal/db/repos_test.go @@ -0,0 +1,102 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "testing" + "time" + + "github.com/jinzhu/gorm" + "github.com/stretchr/testify/assert" + + "gogs.io/gogs/internal/errutil" +) + +func Test_repos(t *testing.T) { + if testing.Short() { + t.Skip() + } + + t.Parallel() + + tables := []interface{}{new(Repository)} + db := &repos{ + DB: initTestDB(t, "repos", tables...), + } + + for _, tc := range []struct { + name string + test func(*testing.T, *repos) + }{ + {"create", test_repos_create}, + {"GetByName", test_repos_GetByName}, + } { + t.Run(tc.name, func(t *testing.T) { + t.Cleanup(func() { + err := clearTables(t, db.DB, tables...) + if err != nil { + t.Fatal(err) + } + }) + tc.test(t, db) + }) + } +} + +func test_repos_create(t *testing.T, db *repos) { + t.Run("name not allowed", func(t *testing.T) { + _, err := db.create(1, createRepoOpts{ + Name: "my.git", + }) + expErr := ErrNameNotAllowed{args: errutil.Args{"reason": "reserved", "pattern": "*.git"}} + assert.Equal(t, expErr, err) + }) + + t.Run("already exists", func(t *testing.T) { + _, err := db.create(1, createRepoOpts{ + Name: "repo1", + }) + if err != nil { + t.Fatal(err) + } + + _, err = db.create(1, createRepoOpts{ + Name: "repo1", + }) + expErr := ErrRepoAlreadyExist{args: errutil.Args{"ownerID": int64(1), "name": "repo1"}} + assert.Equal(t, expErr, err) + }) + + repo, err := db.create(1, createRepoOpts{ + Name: "repo2", + }) + if err != nil { + t.Fatal(err) + } + + repo, err = db.GetByName(repo.OwnerID, repo.Name) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, gorm.NowFunc().Format(time.RFC3339), repo.Created.Format(time.RFC3339)) +} + +func test_repos_GetByName(t *testing.T, db *repos) { + repo, err := db.create(1, createRepoOpts{ + Name: "repo1", + }) + if err != nil { + t.Fatal(err) + } + + _, err = db.GetByName(repo.OwnerID, repo.Name) + if err != nil { + t.Fatal(err) + } + + _, err = db.GetByName(1, "bad_name") + expErr := ErrRepoNotExist{args: errutil.Args{"ownerID": int64(1), "name": "bad_name"}} + assert.Equal(t, expErr, err) +} diff --git a/internal/db/ssh_key.go b/internal/db/ssh_key.go index b82f81a61..49cee17af 100644 --- a/internal/db/ssh_key.go +++ b/internal/db/ssh_key.go @@ -426,7 +426,7 @@ func AddPublicKey(ownerID int64, name, content string) (*PublicKey, error) { OwnerID: ownerID, Name: name, Content: content, - Mode: ACCESS_MODE_WRITE, + Mode: AccessModeWrite, Type: KEY_TYPE_USER, } if err = addKey(sess, key); err != nil { @@ -656,7 +656,7 @@ func AddDeployKey(repoID int64, name, content string) (*DeployKey, error) { pkey := &PublicKey{ Content: content, - Mode: ACCESS_MODE_READ, + Mode: AccessModeRead, Type: KEY_TYPE_DEPLOY, } has, err := x.Get(pkey) @@ -753,7 +753,7 @@ func DeleteDeployKey(doer *User, id int64) error { if err != nil { return fmt.Errorf("GetRepositoryByID: %v", err) } - yes, err := HasAccess(doer.ID, repo, ACCESS_MODE_ADMIN) + yes, err := HasAccess(doer.ID, repo, AccessModeAdmin) if err != nil { return fmt.Errorf("HasAccess: %v", err) } else if !yes { diff --git a/internal/db/ssh_key_test.go b/internal/db/ssh_key_test.go index 9bf494139..ceaf48c2a 100644 --- a/internal/db/ssh_key_test.go +++ b/internal/db/ssh_key_test.go @@ -5,52 +5,74 @@ package db import ( - "fmt" - "strings" "testing" - . "github.com/smartystreets/goconvey/convey" + "github.com/stretchr/testify/assert" "gogs.io/gogs/internal/conf" ) -func init() { - conf.MustInit("") -} - func Test_SSHParsePublicKey(t *testing.T) { - testKeys := map[string]struct { - typeName string - length int - content string + // TODO: Refactor SSHKeyGenParsePublicKey to accept a tempPath and remove this init. + conf.MustInit("") + tests := []struct { + name string + content string + expType string + expLength int }{ - "dsa-1024": {"dsa", 1024, "ssh-dss AAAAB3NzaC1kc3MAAACBAOChCC7lf6Uo9n7BmZ6M8St19PZf4Tn59NriyboW2x/DZuYAz3ibZ2OkQ3S0SqDIa0HXSEJ1zaExQdmbO+Ux/wsytWZmCczWOVsaszBZSl90q8UnWlSH6P+/YA+RWJm5SFtuV9PtGIhyZgoNuz5kBQ7K139wuQsecdKktISwTakzAAAAFQCzKsO2JhNKlL+wwwLGOcLffoAmkwAAAIBpK7/3xvduajLBD/9vASqBQIHrgK2J+wiQnIb/Wzy0UsVmvfn8A+udRbBo+csM8xrSnlnlJnjkJS3qiM5g+eTwsLIV1IdKPEwmwB+VcP53Cw6lSyWyJcvhFb0N6s08NZysLzvj0N+ZC/FnhKTLzIyMtkHf/IrPCwlM+pV/M/96YgAAAIEAqQcGn9CKgzgPaguIZooTAOQdvBLMI5y0bQjOW6734XOpqQGf/Kra90wpoasLKZjSYKNPjE+FRUOrStLrxcNs4BeVKhy2PYTRnybfYVk1/dmKgH6P1YSRONsGKvTsH6c5IyCRG0ncCgYeF8tXppyd642982daopE7zQ/NPAnJfag= nocomment"}, - "rsa-1024": {"rsa", 1024, "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDAu7tvIvX6ZHrRXuZNfkR3XLHSsuCK9Zn3X58lxBcQzuo5xZgB6vRwwm/QtJuF+zZPtY5hsQILBLmF+BZ5WpKZp1jBeSjH2G7lxet9kbcH+kIVj0tPFEoyKI9wvWqIwC4prx/WVk2wLTJjzBAhyNxfEq7C9CeiX9pQEbEqJfkKCQ== nocomment\n"}, - "rsa-2048": {"rsa", 2048, "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDMZXh+1OBUwSH9D45wTaxErQIN9IoC9xl7MKJkqvTvv6O5RR9YW/IK9FbfjXgXsppYGhsCZo1hFOOsXHMnfOORqu/xMDx4yPuyvKpw4LePEcg4TDipaDFuxbWOqc/BUZRZcXu41QAWfDLrInwsltWZHSeG7hjhpacl4FrVv9V1pS6Oc5Q1NxxEzTzuNLS/8diZrTm/YAQQ/+B+mzWI3zEtF4miZjjAljWd1LTBPvU23d29DcBmmFahcZ441XZsTeAwGxG/Q6j8NgNXj9WxMeWwxXV2jeAX/EBSpZrCVlCQ1yJswT6xCp8TuBnTiGWYMBNTbOZvPC4e0WI2/yZW/s5F nocomment"}, - "ecdsa-256": {"ecdsa", 256, "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFQacN3PrOll7PXmN5B/ZNVahiUIqI05nbBlZk1KXsO3d06ktAWqbNflv2vEmA38bTFTfJ2sbn2B5ksT52cDDbA= nocomment"}, - "ecdsa-384": {"ecdsa", 384, "ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBINmioV+XRX1Fm9Qk2ehHXJ2tfVxW30ypUWZw670Zyq5GQfBAH6xjygRsJ5wWsHXBsGYgFUXIHvMKVAG1tpw7s6ax9oA+dJOJ7tj+vhn8joFqT+sg3LYHgZkHrfqryRasQ== nocomment"}, - // "ecdsa-521": {"ecdsa", 521, "ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBACGt3UG3EzRwNOI17QR84l6PgiAcvCE7v6aXPj/SC6UWKg4EL8vW9ZBcdYL9wzs4FZXh4MOV8jAzu3KRWNTwb4k2wFNUpGOt7l28MztFFEtH5BDDrtAJSPENPy8pvPLMfnPg5NhvWycqIBzNcHipem5wSJFN5PdpNOC2xMrPWKNqj+ZjQ== nocomment"}, + { + name: "dsa-1024", + content: "ssh-dss AAAAB3NzaC1kc3MAAACBAOChCC7lf6Uo9n7BmZ6M8St19PZf4Tn59NriyboW2x/DZuYAz3ibZ2OkQ3S0SqDIa0HXSEJ1zaExQdmbO+Ux/wsytWZmCczWOVsaszBZSl90q8UnWlSH6P+/YA+RWJm5SFtuV9PtGIhyZgoNuz5kBQ7K139wuQsecdKktISwTakzAAAAFQCzKsO2JhNKlL+wwwLGOcLffoAmkwAAAIBpK7/3xvduajLBD/9vASqBQIHrgK2J+wiQnIb/Wzy0UsVmvfn8A+udRbBo+csM8xrSnlnlJnjkJS3qiM5g+eTwsLIV1IdKPEwmwB+VcP53Cw6lSyWyJcvhFb0N6s08NZysLzvj0N+ZC/FnhKTLzIyMtkHf/IrPCwlM+pV/M/96YgAAAIEAqQcGn9CKgzgPaguIZooTAOQdvBLMI5y0bQjOW6734XOpqQGf/Kra90wpoasLKZjSYKNPjE+FRUOrStLrxcNs4BeVKhy2PYTRnybfYVk1/dmKgH6P1YSRONsGKvTsH6c5IyCRG0ncCgYeF8tXppyd642982daopE7zQ/NPAnJfag= nocomment", + expType: "dsa", + expLength: 1024, + }, + { + name: "rsa-1024", + content: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDAu7tvIvX6ZHrRXuZNfkR3XLHSsuCK9Zn3X58lxBcQzuo5xZgB6vRwwm/QtJuF+zZPtY5hsQILBLmF+BZ5WpKZp1jBeSjH2G7lxet9kbcH+kIVj0tPFEoyKI9wvWqIwC4prx/WVk2wLTJjzBAhyNxfEq7C9CeiX9pQEbEqJfkKCQ== nocomment", + expType: "rsa", + expLength: 1024, + }, + { + name: "rsa-2048", + content: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDMZXh+1OBUwSH9D45wTaxErQIN9IoC9xl7MKJkqvTvv6O5RR9YW/IK9FbfjXgXsppYGhsCZo1hFOOsXHMnfOORqu/xMDx4yPuyvKpw4LePEcg4TDipaDFuxbWOqc/BUZRZcXu41QAWfDLrInwsltWZHSeG7hjhpacl4FrVv9V1pS6Oc5Q1NxxEzTzuNLS/8diZrTm/YAQQ/+B+mzWI3zEtF4miZjjAljWd1LTBPvU23d29DcBmmFahcZ441XZsTeAwGxG/Q6j8NgNXj9WxMeWwxXV2jeAX/EBSpZrCVlCQ1yJswT6xCp8TuBnTiGWYMBNTbOZvPC4e0WI2/yZW/s5F nocomment", + expType: "rsa", + expLength: 2048, + }, + { + name: "ecdsa-256", + content: "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFQacN3PrOll7PXmN5B/ZNVahiUIqI05nbBlZk1KXsO3d06ktAWqbNflv2vEmA38bTFTfJ2sbn2B5ksT52cDDbA= nocomment", + expType: "ecdsa", + expLength: 256, + }, + { + name: "ecdsa-384", + content: "ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBINmioV+XRX1Fm9Qk2ehHXJ2tfVxW30ypUWZw670Zyq5GQfBAH6xjygRsJ5wWsHXBsGYgFUXIHvMKVAG1tpw7s6ax9oA+dJOJ7tj+vhn8joFqT+sg3LYHgZkHrfqryRasQ== nocomment", + expType: "ecdsa", + expLength: 384, + }, + { + name: "ecdsa-521", + content: "ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBACGt3UG3EzRwNOI17QR84l6PgiAcvCE7v6aXPj/SC6UWKg4EL8vW9ZBcdYL9wzs4FZXh4MOV8jAzu3KRWNTwb4k2wFNUpGOt7l28MztFFEtH5BDDrtAJSPENPy8pvPLMfnPg5NhvWycqIBzNcHipem5wSJFN5PdpNOC2xMrPWKNqj+ZjQ== nocomment", + expType: "ecdsa", + expLength: 521, + }, } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + typ, length, err := SSHNativeParsePublicKey(test.content) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, test.expType, typ) + assert.Equal(t, test.expLength, length) - Convey("Parse public keys in both native and ssh-keygen", t, func() { - for name, key := range testKeys { - fmt.Println("\nTesting key:", name) - - keyTypeN, lengthN, errN := SSHNativeParsePublicKey(key.content) - So(errN, ShouldBeNil) - So(keyTypeN, ShouldEqual, key.typeName) - So(lengthN, ShouldEqual, key.length) - - keyTypeK, lengthK, errK := SSHKeyGenParsePublicKey(key.content) - if errK != nil { - // Some server just does not support ecdsa format. - if strings.Contains(errK.Error(), "line 1 too long:") { - continue - } - So(errK, ShouldBeNil) + typ, length, err = SSHKeyGenParsePublicKey(test.content) + if err != nil { + t.Fatal(err) } - So(keyTypeK, ShouldEqual, key.typeName) - So(lengthK, ShouldEqual, key.length) - } - }) + assert.Equal(t, test.expType, typ) + assert.Equal(t, test.expLength, length) + }) + } } diff --git a/internal/db/token.go b/internal/db/token.go deleted file mode 100644 index e7cb7e992..000000000 --- a/internal/db/token.go +++ /dev/null @@ -1,102 +0,0 @@ -// Copyright 2014 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package db - -import ( - "time" - - gouuid "github.com/satori/go.uuid" - "xorm.io/xorm" - - "gogs.io/gogs/internal/db/errors" - "gogs.io/gogs/internal/tool" -) - -// AccessToken represents a personal access token. -type AccessToken struct { - ID int64 - UID int64 `xorm:"INDEX"` - Name string - Sha1 string `xorm:"UNIQUE VARCHAR(40)"` - - Created time.Time `xorm:"-" json:"-"` - CreatedUnix int64 - Updated time.Time `xorm:"-" json:"-"` // Note: Updated must below Created for AfterSet. - UpdatedUnix int64 - HasRecentActivity bool `xorm:"-" json:"-"` - HasUsed bool `xorm:"-" json:"-"` -} - -func (t *AccessToken) BeforeInsert() { - t.CreatedUnix = time.Now().Unix() -} - -func (t *AccessToken) BeforeUpdate() { - t.UpdatedUnix = time.Now().Unix() -} - -func (t *AccessToken) AfterSet(colName string, _ xorm.Cell) { - switch colName { - case "created_unix": - t.Created = time.Unix(t.CreatedUnix, 0).Local() - case "updated_unix": - t.Updated = time.Unix(t.UpdatedUnix, 0).Local() - t.HasUsed = t.Updated.After(t.Created) - t.HasRecentActivity = t.Updated.Add(7 * 24 * time.Hour).After(time.Now()) - } -} - -// NewAccessToken creates new access token. -func NewAccessToken(t *AccessToken) error { - t.Sha1 = tool.SHA1(gouuid.NewV4().String()) - has, err := x.Get(&AccessToken{ - UID: t.UID, - Name: t.Name, - }) - if err != nil { - return err - } else if has { - return errors.AccessTokenNameAlreadyExist{Name: t.Name} - } - - _, err = x.Insert(t) - return err -} - -// GetAccessTokenBySHA returns access token by given sha1. -func GetAccessTokenBySHA(sha string) (*AccessToken, error) { - if sha == "" { - return nil, ErrAccessTokenEmpty{} - } - t := &AccessToken{Sha1: sha} - has, err := x.Get(t) - if err != nil { - return nil, err - } else if !has { - return nil, ErrAccessTokenNotExist{sha} - } - return t, nil -} - -// ListAccessTokens returns a list of access tokens belongs to given user. -func ListAccessTokens(uid int64) ([]*AccessToken, error) { - tokens := make([]*AccessToken, 0, 5) - return tokens, x.Where("uid=?", uid).Desc("id").Find(&tokens) -} - -// UpdateAccessToken updates information of access token. -func UpdateAccessToken(t *AccessToken) error { - _, err := x.Id(t.ID).AllCols().Update(t) - return err -} - -// DeleteAccessTokenOfUserByID deletes access token by given ID. -func DeleteAccessTokenOfUserByID(userID, id int64) error { - _, err := x.Delete(&AccessToken{ - ID: id, - UID: userID, - }) - return err -} diff --git a/internal/db/two_factor.go b/internal/db/two_factor.go index a46fb992a..ca990454e 100644 --- a/internal/db/two_factor.go +++ b/internal/db/two_factor.go @@ -7,39 +7,24 @@ package db import ( "encoding/base64" "fmt" - "strings" "time" "github.com/pquerna/otp/totp" "github.com/unknwon/com" - log "unknwon.dev/clog/v2" - "xorm.io/xorm" "gogs.io/gogs/internal/conf" - "gogs.io/gogs/internal/db/errors" - "gogs.io/gogs/internal/tool" + "gogs.io/gogs/internal/cryptoutil" ) -// TwoFactor represents a two-factor authentication token. +// TwoFactor is a 2FA token of a user. type TwoFactor struct { ID int64 - UserID int64 `xorm:"UNIQUE"` + UserID int64 `xorm:"UNIQUE" gorm:"UNIQUE"` Secret string - Created time.Time `xorm:"-" json:"-"` + Created time.Time `xorm:"-" gorm:"-" json:"-"` CreatedUnix int64 } -func (t *TwoFactor) BeforeInsert() { - t.CreatedUnix = time.Now().Unix() -} - -func (t *TwoFactor) AfterSet(colName string, _ xorm.Cell) { - switch colName { - case "created_unix": - t.Created = time.Unix(t.CreatedUnix, 0).Local() - } -} - // ValidateTOTP returns true if given passcode is valid for two-factor authentication token. // It also returns possible validation error. func (t *TwoFactor) ValidateTOTP(passcode string) (bool, error) { @@ -47,83 +32,13 @@ func (t *TwoFactor) ValidateTOTP(passcode string) (bool, error) { if err != nil { return false, fmt.Errorf("DecodeString: %v", err) } - decryptSecret, err := com.AESGCMDecrypt(tool.MD5Bytes(conf.Security.SecretKey), secret) + decryptSecret, err := com.AESGCMDecrypt(cryptoutil.MD5Bytes(conf.Security.SecretKey), secret) if err != nil { return false, fmt.Errorf("AESGCMDecrypt: %v", err) } return totp.Validate(passcode, string(decryptSecret)), nil } -// IsUserEnabledTwoFactor returns true if user has enabled two-factor authentication. -func IsUserEnabledTwoFactor(userID int64) bool { - has, err := x.Where("user_id = ?", userID).Get(new(TwoFactor)) - if err != nil { - log.Error("IsUserEnabledTwoFactor [user_id: %d]: %v", userID, err) - } - return has -} - -func generateRecoveryCodes(userID int64) ([]*TwoFactorRecoveryCode, error) { - recoveryCodes := make([]*TwoFactorRecoveryCode, 10) - for i := 0; i < 10; i++ { - code, err := tool.RandomString(10) - if err != nil { - return nil, fmt.Errorf("RandomString: %v", err) - } - recoveryCodes[i] = &TwoFactorRecoveryCode{ - UserID: userID, - Code: strings.ToLower(code[:5] + "-" + code[5:]), - } - } - return recoveryCodes, nil -} - -// NewTwoFactor creates a new two-factor authentication token and recovery codes for given user. -func NewTwoFactor(userID int64, secret string) error { - t := &TwoFactor{ - UserID: userID, - } - - // Encrypt secret - encryptSecret, err := com.AESGCMEncrypt(tool.MD5Bytes(conf.Security.SecretKey), []byte(secret)) - if err != nil { - return fmt.Errorf("AESGCMEncrypt: %v", err) - } - t.Secret = base64.StdEncoding.EncodeToString(encryptSecret) - - recoveryCodes, err := generateRecoveryCodes(userID) - if err != nil { - return fmt.Errorf("generateRecoveryCodes: %v", err) - } - - sess := x.NewSession() - defer sess.Close() - if err = sess.Begin(); err != nil { - return err - } - - if _, err = sess.Insert(t); err != nil { - return fmt.Errorf("insert two-factor: %v", err) - } else if _, err = sess.Insert(recoveryCodes); err != nil { - return fmt.Errorf("insert recovery codes: %v", err) - } - - return sess.Commit() -} - -// GetTwoFactorByUserID returns two-factor authentication token of given user. -func GetTwoFactorByUserID(userID int64) (*TwoFactor, error) { - t := new(TwoFactor) - has, err := x.Where("user_id = ?", userID).Get(t) - if err != nil { - return nil, err - } else if !has { - return nil, errors.TwoFactorNotFound{UserID: userID} - } - - return t, nil -} - // DeleteTwoFactor removes two-factor authentication token and recovery codes of given user. func DeleteTwoFactor(userID int64) (err error) { sess := x.NewSession() @@ -162,7 +77,7 @@ func deleteRecoveryCodesByUserID(e Engine, userID int64) error { // RegenerateRecoveryCodes regenerates new set of recovery codes for given user. func RegenerateRecoveryCodes(userID int64) error { - recoveryCodes, err := generateRecoveryCodes(userID) + recoveryCodes, err := generateRecoveryCodes(userID, 10) if err != nil { return fmt.Errorf("generateRecoveryCodes: %v", err) } @@ -182,6 +97,19 @@ func RegenerateRecoveryCodes(userID int64) error { return sess.Commit() } +type ErrTwoFactorRecoveryCodeNotFound struct { + Code string +} + +func IsTwoFactorRecoveryCodeNotFound(err error) bool { + _, ok := err.(ErrTwoFactorRecoveryCodeNotFound) + return ok +} + +func (err ErrTwoFactorRecoveryCodeNotFound) Error() string { + return fmt.Sprintf("two-factor recovery code does not found [code: %s]", err.Code) +} + // UseRecoveryCode validates recovery code of given user and marks it is used if valid. func UseRecoveryCode(userID int64, code string) error { recoveryCode := new(TwoFactorRecoveryCode) @@ -189,7 +117,7 @@ func UseRecoveryCode(userID int64, code string) error { if err != nil { return fmt.Errorf("get unused code: %v", err) } else if !has { - return errors.TwoFactorRecoveryCodeNotFound{Code: code} + return ErrTwoFactorRecoveryCodeNotFound{Code: code} } recoveryCode.IsUsed = true diff --git a/internal/db/two_factors.go b/internal/db/two_factors.go new file mode 100644 index 000000000..aa90c2ff1 --- /dev/null +++ b/internal/db/two_factors.go @@ -0,0 +1,141 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "encoding/base64" + "fmt" + "strings" + "time" + + "github.com/jinzhu/gorm" + "github.com/pkg/errors" + "github.com/t-tiger/gorm-bulk-insert" + log "unknwon.dev/clog/v2" + + "gogs.io/gogs/internal/cryptoutil" + "gogs.io/gogs/internal/errutil" + "gogs.io/gogs/internal/strutil" +) + +// TwoFactorsStore is the persistent interface for 2FA. +// +// NOTE: All methods are sorted in alphabetical order. +type TwoFactorsStore interface { + // Create creates a new 2FA token and recovery codes for given user. + // The "key" is used to encrypt and later decrypt given "secret", + // which should be configured in site-level and change of the "key" + // will break all existing 2FA tokens. + Create(userID int64, key, secret string) error + // GetByUserID returns the 2FA token of given user. + // It returns ErrTwoFactorNotFound when not found. + GetByUserID(userID int64) (*TwoFactor, error) + // IsUserEnabled returns true if the user has enabled 2FA. + IsUserEnabled(userID int64) bool +} + +var TwoFactors TwoFactorsStore + +// NOTE: This is a GORM create hook. +func (t *TwoFactor) BeforeCreate() { + t.CreatedUnix = gorm.NowFunc().Unix() +} + +// NOTE: This is a GORM query hook. +func (t *TwoFactor) AfterFind() { + t.Created = time.Unix(t.CreatedUnix, 0).Local() +} + +var _ TwoFactorsStore = (*twoFactors)(nil) + +type twoFactors struct { + *gorm.DB +} + +func (db *twoFactors) Create(userID int64, key, secret string) error { + encrypted, err := cryptoutil.AESGCMEncrypt(cryptoutil.MD5Bytes(key), []byte(secret)) + if err != nil { + return errors.Wrap(err, "encrypt secret") + } + tf := &TwoFactor{ + UserID: userID, + Secret: base64.StdEncoding.EncodeToString(encrypted), + } + + recoveryCodes, err := generateRecoveryCodes(userID, 10) + if err != nil { + return errors.Wrap(err, "generate recovery codes") + } + + records := make([]interface{}, 0, len(recoveryCodes)) + for _, code := range recoveryCodes { + records = append(records, code) + } + + return db.Transaction(func(tx *gorm.DB) error { + err := tx.Create(tf).Error + if err != nil { + return err + } + + return gormbulk.BulkInsert(tx, records, 3000) + }) +} + +var _ errutil.NotFound = (*ErrTwoFactorNotFound)(nil) + +type ErrTwoFactorNotFound struct { + args errutil.Args +} + +func IsErrTwoFactorNotFound(err error) bool { + _, ok := err.(ErrTwoFactorNotFound) + return ok +} + +func (err ErrTwoFactorNotFound) Error() string { + return fmt.Sprintf("2FA does not found: %v", err.args) +} + +func (ErrTwoFactorNotFound) NotFound() bool { + return true +} + +func (db *twoFactors) GetByUserID(userID int64) (*TwoFactor, error) { + tf := new(TwoFactor) + err := db.Where("user_id = ?", userID).First(tf).Error + if err != nil { + if gorm.IsRecordNotFoundError(err) { + return nil, ErrTwoFactorNotFound{args: errutil.Args{"userID": userID}} + } + return nil, err + } + return tf, nil +} + +func (db *twoFactors) IsUserEnabled(userID int64) bool { + var count int64 + err := db.Model(new(TwoFactor)).Where("user_id = ?", userID).Count(&count).Error + if err != nil { + log.Error("Failed to count two factors [user_id: %d]: %v", userID, err) + } + return count > 0 +} + +// generateRecoveryCodes generates N number of recovery codes for 2FA. +func generateRecoveryCodes(userID int64, n int) ([]*TwoFactorRecoveryCode, error) { + recoveryCodes := make([]*TwoFactorRecoveryCode, n) + for i := 0; i < n; i++ { + code, err := strutil.RandomChars(10) + if err != nil { + return nil, errors.Wrap(err, "generate random characters") + } + recoveryCodes[i] = &TwoFactorRecoveryCode{ + UserID: userID, + Code: strings.ToLower(code[:5] + "-" + code[5:]), + } + } + return recoveryCodes, nil +} diff --git a/internal/db/two_factors_test.go b/internal/db/two_factors_test.go new file mode 100644 index 000000000..bbf46f907 --- /dev/null +++ b/internal/db/two_factors_test.go @@ -0,0 +1,100 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "testing" + "time" + + "github.com/jinzhu/gorm" + "github.com/stretchr/testify/assert" + + "gogs.io/gogs/internal/errutil" +) + +func Test_twoFactors(t *testing.T) { + if testing.Short() { + t.Skip() + } + + t.Parallel() + + tables := []interface{}{new(TwoFactor), new(TwoFactorRecoveryCode)} + db := &twoFactors{ + DB: initTestDB(t, "twoFactors", tables...), + } + + for _, tc := range []struct { + name string + test func(*testing.T, *twoFactors) + }{ + {"Create", test_twoFactors_Create}, + {"GetByUserID", test_twoFactors_GetByUserID}, + {"IsUserEnabled", test_twoFactors_IsUserEnabled}, + } { + t.Run(tc.name, func(t *testing.T) { + t.Cleanup(func() { + err := clearTables(t, db.DB, tables...) + if err != nil { + t.Fatal(err) + } + }) + tc.test(t, db) + }) + } +} + +func test_twoFactors_Create(t *testing.T, db *twoFactors) { + // Create a 2FA token + err := db.Create(1, "secure-key", "secure-secret") + if err != nil { + t.Fatal(err) + } + + // Get it back and check the Created field + tf, err := db.GetByUserID(1) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, gorm.NowFunc().Format(time.RFC3339), tf.Created.Format(time.RFC3339)) + + // Verify there are 10 recover codes generated + var count int64 + err = db.Model(new(TwoFactorRecoveryCode)).Count(&count).Error + if err != nil { + t.Fatal(err) + } + assert.Equal(t, int64(10), count) +} + +func test_twoFactors_GetByUserID(t *testing.T, db *twoFactors) { + // Create a 2FA token for user 1 + err := db.Create(1, "secure-key", "secure-secret") + if err != nil { + t.Fatal(err) + } + + // We should be able to get it back + _, err = db.GetByUserID(1) + if err != nil { + t.Fatal(err) + } + + // Try to get a non-existent 2FA token + _, err = db.GetByUserID(2) + expErr := ErrTwoFactorNotFound{args: errutil.Args{"userID": int64(2)}} + assert.Equal(t, expErr, err) +} + +func test_twoFactors_IsUserEnabled(t *testing.T, db *twoFactors) { + // Create a 2FA token for user 1 + err := db.Create(1, "secure-key", "secure-secret") + if err != nil { + t.Fatal(err) + } + + assert.True(t, db.IsUserEnabled(1)) + assert.False(t, db.IsUserEnabled(2)) +} diff --git a/internal/db/user.go b/internal/db/user.go index 4764db4a1..22f25b5da 100644 --- a/internal/db/user.go +++ b/internal/db/user.go @@ -32,6 +32,7 @@ import ( "gogs.io/gogs/internal/conf" "gogs.io/gogs/internal/db/errors" "gogs.io/gogs/internal/errutil" + "gogs.io/gogs/internal/strutil" "gogs.io/gogs/internal/tool" ) @@ -41,40 +42,39 @@ const USER_AVATAR_URL_PREFIX = "avatars" type UserType int const ( - USER_TYPE_INDIVIDUAL UserType = iota // Historic reason to make it starts at 0. - USER_TYPE_ORGANIZATION + UserIndividual UserType = iota // Historic reason to make it starts at 0. + UserOrganization ) // User represents the object of individual and member of organization. type User struct { ID int64 - LowerName string `xorm:"UNIQUE NOT NULL"` - Name string `xorm:"UNIQUE NOT NULL"` + LowerName string `xorm:"UNIQUE NOT NULL" gorm:"UNIQUE"` + Name string `xorm:"UNIQUE NOT NULL" gorm:"NOT NULL"` FullName string // Email is the primary email address (to be used for communication) - Email string `xorm:"NOT NULL"` - Passwd string `xorm:"NOT NULL"` - LoginType LoginType - LoginSource int64 `xorm:"NOT NULL DEFAULT 0"` + Email string `xorm:"NOT NULL" gorm:"NOT NULL"` + Passwd string `xorm:"NOT NULL" gorm:"NOT NULL"` + LoginSource int64 `xorm:"NOT NULL DEFAULT 0" gorm:"NOT NULL;DEFAULT:0"` LoginName string Type UserType - OwnedOrgs []*User `xorm:"-" json:"-"` - Orgs []*User `xorm:"-" json:"-"` - Repos []*Repository `xorm:"-" json:"-"` + OwnedOrgs []*User `xorm:"-" gorm:"-" json:"-"` + Orgs []*User `xorm:"-" gorm:"-" json:"-"` + Repos []*Repository `xorm:"-" gorm:"-" json:"-"` Location string Website string - Rands string `xorm:"VARCHAR(10)"` - Salt string `xorm:"VARCHAR(10)"` + Rands string `xorm:"VARCHAR(10)" gorm:"TYPE:VARCHAR(10)"` + Salt string `xorm:"VARCHAR(10)" gorm:"TYPE:VARCHAR(10)"` - Created time.Time `xorm:"-" json:"-"` + Created time.Time `xorm:"-" gorm:"-" json:"-"` CreatedUnix int64 - Updated time.Time `xorm:"-" json:"-"` + Updated time.Time `xorm:"-" gorm:"-" json:"-"` UpdatedUnix int64 // Remember visibility choice for convenience, true for private LastRepoVisibility bool - // Maximum repository creation limit, -1 means use gloabl default - MaxRepoCreation int `xorm:"NOT NULL DEFAULT -1"` + // Maximum repository creation limit, -1 means use global default + MaxRepoCreation int `xorm:"NOT NULL DEFAULT -1" gorm:"NOT NULL;DEFAULT:-1"` // Permissions IsActive bool // Activate primary email @@ -84,13 +84,13 @@ type User struct { ProhibitLogin bool // Avatar - Avatar string `xorm:"VARCHAR(2048) NOT NULL"` - AvatarEmail string `xorm:"NOT NULL"` + Avatar string `xorm:"VARCHAR(2048) NOT NULL" gorm:"TYPE:VARCHAR(2048);NOT NULL"` + AvatarEmail string `xorm:"NOT NULL" gorm:"NOT NULL"` UseCustomAvatar bool // Counters NumFollowers int - NumFollowing int `xorm:"NOT NULL DEFAULT 0"` + NumFollowing int `xorm:"NOT NULL DEFAULT 0" gorm:"NOT NULL;DEFAULT:0"` NumStars int NumRepos int @@ -98,8 +98,8 @@ type User struct { Description string NumTeams int NumMembers int - Teams []*Team `xorm:"-" json:"-"` - Members []*User `xorm:"-" json:"-"` + Teams []*Team `xorm:"-" gorm:"-" json:"-"` + Members []*User `xorm:"-" gorm:"-" json:"-"` } func (u *User) BeforeInsert() { @@ -139,9 +139,9 @@ func (u *User) APIFormat() *api.User { } } -// returns true if user login type is LOGIN_PLAIN. +// returns true if user login type is LoginPlain. func (u *User) IsLocal() bool { - return u.LoginType <= LOGIN_PLAIN + return u.LoginSource <= 0 } // HasForkedRepo checks if user has already forked a repository with given ID. @@ -320,8 +320,8 @@ func (u *User) NewGitSig() *git.Signature { } } -// EncodePasswd encodes password to safe format. -func (u *User) EncodePasswd() { +// EncodePassword encodes password to safe format. +func (u *User) EncodePassword() { newPasswd := pbkdf2.Key([]byte(u.Passwd), []byte(u.Salt), 10000, 50, sha256.New) u.Passwd = fmt.Sprintf("%x", newPasswd) } @@ -329,7 +329,7 @@ func (u *User) EncodePasswd() { // ValidatePassword checks if given password matches the one belongs to the user. func (u *User) ValidatePassword(passwd string) bool { newUser := &User{Passwd: passwd, Salt: u.Salt} - newUser.EncodePasswd() + newUser.EncodePassword() return subtle.ConstantTimeCompare([]byte(u.Passwd), []byte(newUser.Passwd)) == 1 } @@ -369,7 +369,7 @@ func (u *User) DeleteAvatar() error { // IsAdminOfRepo returns true if user has admin or higher access of repository. func (u *User) IsAdminOfRepo(repo *Repository) bool { - has, err := HasAccess(u.ID, repo, ACCESS_MODE_ADMIN) + has, err := HasAccess(u.ID, repo, AccessModeAdmin) if err != nil { log.Error("HasAccess: %v", err) } @@ -378,7 +378,7 @@ func (u *User) IsAdminOfRepo(repo *Repository) bool { // IsWriterOfRepo returns true if user has write access to given repository. func (u *User) IsWriterOfRepo(repo *Repository) bool { - has, err := HasAccess(u.ID, repo, ACCESS_MODE_WRITE) + has, err := HasAccess(u.ID, repo, AccessModeWrite) if err != nil { log.Error("HasAccess: %v", err) } @@ -387,7 +387,7 @@ func (u *User) IsWriterOfRepo(repo *Repository) bool { // IsOrganization returns true if user is actually a organization. func (u *User) IsOrganization() bool { - return u.Type == USER_TYPE_ORGANIZATION + return u.Type == UserOrganization } // IsUserOrgOwner returns true if user is in the owner team of given organization. @@ -402,7 +402,7 @@ func (u *User) IsPublicMember(orgId int64) bool { // IsEnabledTwoFactor returns true if user has enabled two-factor authentication. func (u *User) IsEnabledTwoFactor() bool { - return IsUserEnabledTwoFactor(u.ID) + return TwoFactors.IsUserEnabled(u.ID) } func (u *User) getOrganizationCount(e Engine) (int64, error) { @@ -447,7 +447,7 @@ func (u *User) GetOrganizations(showPrivate bool) error { } u.Orgs = make([]*User, 0, len(orgIDs)) - if err = x.Where("type = ?", USER_TYPE_ORGANIZATION).In("id", orgIDs).Find(&u.Orgs); err != nil { + if err = x.Where("type = ?", UserOrganization).In("id", orgIDs).Find(&u.Orgs); err != nil { return err } return nil @@ -483,9 +483,9 @@ func IsUserExist(uid int64, name string) (bool, error) { return x.Where("id != ?", uid).Get(&User{LowerName: strings.ToLower(name)}) } -// GetUserSalt returns a ramdom user salt token. +// GetUserSalt returns a random user salt token. func GetUserSalt() (string, error) { - return tool.RandomString(10) + return strutil.RandomChars(10) } // NewGhostUser creates and returns a fake user for someone who has deleted his/her account. @@ -502,38 +502,67 @@ var ( reservedUserPatterns = []string{"*.keys"} ) -// isUsableName checks if name is reserved or pattern of name is not allowed +type ErrNameNotAllowed struct { + args errutil.Args +} + +func IsErrNameNotAllowed(err error) bool { + _, ok := err.(ErrNameNotAllowed) + return ok +} + +func (err ErrNameNotAllowed) Value() string { + val, ok := err.args["name"].(string) + if ok { + return val + } + + val, ok = err.args["pattern"].(string) + if ok { + return val + } + + return "" +} + +func (err ErrNameNotAllowed) Error() string { + return fmt.Sprintf("name is not allowed: %v", err.args) +} + +// isNameAllowed checks if name is reserved or pattern of name is not allowed // based on given reserved names and patterns. // Names are exact match, patterns can be prefix or suffix match with placeholder '*'. -func isUsableName(names, patterns []string, name string) error { +func isNameAllowed(names, patterns []string, name string) error { name = strings.TrimSpace(strings.ToLower(name)) if utf8.RuneCountInString(name) == 0 { - return errors.EmptyName{} + return ErrNameNotAllowed{args: errutil.Args{"reason": "empty name"}} } for i := range names { if name == names[i] { - return ErrNameReserved{name} + return ErrNameNotAllowed{args: errutil.Args{"reason": "reserved", "name": name}} } } for _, pat := range patterns { if pat[0] == '*' && strings.HasSuffix(name, pat[1:]) || (pat[len(pat)-1] == '*' && strings.HasPrefix(name, pat[:len(pat)-1])) { - return ErrNamePatternNotAllowed{pat} + return ErrNameNotAllowed{args: errutil.Args{"reason": "reserved", "pattern": pat}} } } return nil } -func IsUsableUsername(name string) error { - return isUsableName(reservedUsernames, reservedUserPatterns, name) +// isUsernameAllowed return an error if given name is a reserved name or pattern for users. +func isUsernameAllowed(name string) error { + return isNameAllowed(reservedUsernames, reservedUserPatterns, name) } // CreateUser creates record of a new user. +// Deprecated: Use Users.Create instead. func CreateUser(u *User) (err error) { - if err = IsUsableUsername(u.Name); err != nil { + if err = isUsernameAllowed(u.Name); err != nil { return err } @@ -541,7 +570,7 @@ func CreateUser(u *User) (err error) { if err != nil { return err } else if isExist { - return ErrUserAlreadyExist{u.Name} + return ErrUserAlreadyExist{args: errutil.Args{"name": u.Name}} } u.Email = strings.ToLower(u.Email) @@ -549,7 +578,7 @@ func CreateUser(u *User) (err error) { if err != nil { return err } else if isExist { - return ErrEmailAlreadyUsed{u.Email} + return ErrEmailAlreadyUsed{args: errutil.Args{"email": u.Email}} } u.LowerName = strings.ToLower(u.Name) @@ -561,7 +590,7 @@ func CreateUser(u *User) (err error) { if u.Salt, err = GetUserSalt(); err != nil { return err } - u.EncodePasswd() + u.EncodePassword() u.MaxRepoCreation = -1 sess := x.NewSession() @@ -590,7 +619,7 @@ func CountUsers() int64 { } // Users returns number of users in given page. -func Users(page, pageSize int) ([]*User, error) { +func ListUsers(page, pageSize int) ([]*User, error) { users := make([]*User, 0, pageSize) return users, x.Limit(pageSize, (page-1)*pageSize).Where("type=0").Asc("id").Find(&users) } @@ -652,7 +681,7 @@ func VerifyActiveEmailCode(code, email string) *EmailAddress { // ChangeUserName changes all corresponding setting from old user name to new one. func ChangeUserName(u *User, newUserName string) (err error) { - if err = IsUsableUsername(newUserName); err != nil { + if err = isUsernameAllowed(newUserName); err != nil { return err } @@ -660,7 +689,7 @@ func ChangeUserName(u *User, newUserName string) (err error) { if err != nil { return err } else if isExist { - return ErrUserAlreadyExist{newUserName} + return ErrUserAlreadyExist{args: errutil.Args{"name": newUserName}} } if err = ChangeUsernameInPullRequests(u.Name, newUserName); err != nil { @@ -695,7 +724,7 @@ func updateUser(e Engine, u *User) error { if err != nil { return err } else if has { - return ErrEmailAlreadyUsed{u.Email} + return ErrEmailAlreadyUsed{args: errutil.Args{"email": u.Email}} } if len(u.AvatarEmail) == 0 { @@ -786,7 +815,7 @@ func deleteUser(e *xorm.Session, u *User) error { // ***** END: Follow ***** if err = deleteBeans(e, - &AccessToken{UID: u.ID}, + &AccessToken{UserID: u.ID}, &Collaboration{UserID: u.ID}, &Access{UserID: u.ID}, &Watch{UserID: u.ID}, @@ -876,8 +905,8 @@ func DeleteInactivateUsers() (err error) { } // UserPath returns the path absolute path of user repositories. -func UserPath(userName string) string { - return filepath.Join(conf.Repository.Root, strings.ToLower(userName)) +func UserPath(username string) string { + return filepath.Join(conf.Repository.Root, strings.ToLower(username)) } func GetUserByKeyID(keyID int64) (*User, error) { @@ -891,25 +920,6 @@ func GetUserByKeyID(keyID int64) (*User, error) { return user, nil } -var _ errutil.NotFound = (*ErrUserNotExist)(nil) - -type ErrUserNotExist struct { - args map[string]interface{} -} - -func IsErrUserNotExist(err error) bool { - _, ok := err.(ErrUserNotExist) - return ok -} - -func (err ErrUserNotExist) Error() string { - return fmt.Sprintf("user does not exist: %v", err.args) -} - -func (ErrUserNotExist) NotFound() bool { - return true -} - func getUserByID(e Engine, id int64) (*User, error) { u := new(User) has, err := e.ID(id).Get(u) @@ -922,13 +932,14 @@ func getUserByID(e Engine, id int64) (*User, error) { } // GetUserByID returns the user object by given ID if exists. +// Deprecated: Use Users.GetByID instead. func GetUserByID(id int64) (*User, error) { return getUserByID(x, id) } // GetAssigneeByID returns the user with write access of repository by given ID. func GetAssigneeByID(repo *Repository, userID int64) (*User, error) { - has, err := HasAccess(userID, repo, ACCESS_MODE_READ) + has, err := HasAccess(userID, repo, AccessModeRead) if err != nil { return nil, err } else if !has { @@ -938,6 +949,7 @@ func GetAssigneeByID(repo *Repository, userID int64) (*User, error) { } // GetUserByName returns a user by given name. +// Deprecated: Use Users.GetByUsername instead. func GetUserByName(name string) (*User, error) { if len(name) == 0 { return nil, ErrUserNotExist{args: map[string]interface{}{"name": name}} @@ -1017,6 +1029,7 @@ func ValidateCommitsWithEmails(oldCommits []*git.Commit) []*UserCommit { } // GetUserByEmail returns the user object by given e-mail if exists. +// Deprecated: Use Users.GetByEmail instead. func GetUserByEmail(email string) (*User, error) { if len(email) == 0 { return nil, ErrUserNotExist{args: map[string]interface{}{"email": email}} diff --git a/internal/db/user_mail.go b/internal/db/user_mail.go index 1608dc195..f73278b6c 100644 --- a/internal/db/user_mail.go +++ b/internal/db/user_mail.go @@ -9,16 +9,17 @@ import ( "strings" "gogs.io/gogs/internal/db/errors" + "gogs.io/gogs/internal/errutil" ) -// EmailAdresses is the list of all email addresses of a user. Can contain the +// EmailAddresses is the list of all email addresses of a user. Can contain the // primary email address, but is not obligatory. type EmailAddress struct { ID int64 - UID int64 `xorm:"INDEX NOT NULL"` - Email string `xorm:"UNIQUE NOT NULL"` - IsActivated bool - IsPrimary bool `xorm:"-" json:"-"` + UID int64 `xorm:"INDEX NOT NULL" gorm:"INDEX"` + Email string `xorm:"UNIQUE NOT NULL" gorm:"UNIQUE"` + IsActivated bool `gorm:"NOT NULL;DEFAULT:FALSE"` + IsPrimary bool `xorm:"-" gorm:"-" json:"-"` } // GetEmailAddresses returns all email addresses belongs to given user. @@ -68,7 +69,7 @@ func isEmailUsed(e Engine, email string) (bool, error) { } // We need to check primary email of users as well. - return e.Where("type=?", USER_TYPE_INDIVIDUAL).And("email=?", email).Get(new(User)) + return e.Where("type=?", UserIndividual).And("email=?", email).Get(new(User)) } // IsEmailUsed returns true if the email has been used. @@ -82,7 +83,7 @@ func addEmailAddress(e Engine, email *EmailAddress) error { if err != nil { return err } else if used { - return ErrEmailAlreadyUsed{email.Email} + return ErrEmailAlreadyUsed{args: errutil.Args{"email": email.Email}} } _, err = e.Insert(email) @@ -105,7 +106,7 @@ func AddEmailAddresses(emails []*EmailAddress) error { if err != nil { return err } else if used { - return ErrEmailAlreadyUsed{emails[i].Email} + return ErrEmailAlreadyUsed{args: errutil.Args{"email": emails[i].Email}} } } diff --git a/internal/db/users.go b/internal/db/users.go new file mode 100644 index 000000000..a002c290a --- /dev/null +++ b/internal/db/users.go @@ -0,0 +1,295 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "fmt" + "strings" + "time" + + "github.com/jinzhu/gorm" + "github.com/pkg/errors" + + "gogs.io/gogs/internal/cryptoutil" + "gogs.io/gogs/internal/errutil" +) + +// UsersStore is the persistent interface for users. +// +// NOTE: All methods are sorted in alphabetical order. +type UsersStore interface { + // Authenticate validates username and password via given login source ID. + // It returns ErrUserNotExist when the user was not found. + // + // When the "loginSourceID" is negative, it aborts the process and returns + // ErrUserNotExist if the user was not found in the database. + // + // When the "loginSourceID" is non-negative, it returns ErrLoginSourceMismatch + // if the user has different login source ID than the "loginSourceID". + // + // When the "loginSourceID" is positive, it tries to authenticate via given + // login source and creates a new user when not yet exists in the database. + Authenticate(username, password string, loginSourceID int64) (*User, error) + // Create creates a new user and persist to database. + // It returns ErrUserAlreadyExist when a user with same name already exists, + // or ErrEmailAlreadyUsed if the email has been used by another user. + Create(opts CreateUserOpts) (*User, error) + // GetByEmail returns the user (not organization) with given email. + // It ignores records with unverified emails and returns ErrUserNotExist when not found. + GetByEmail(email string) (*User, error) + // GetByID returns the user with given ID. It returns ErrUserNotExist when not found. + GetByID(id int64) (*User, error) + // GetByUsername returns the user with given username. It returns ErrUserNotExist when not found. + GetByUsername(username string) (*User, error) +} + +var Users UsersStore + +// NOTE: This is a GORM create hook. +func (u *User) BeforeCreate() { + u.CreatedUnix = gorm.NowFunc().Unix() + u.UpdatedUnix = u.CreatedUnix +} + +// NOTE: This is a GORM query hook. +func (u *User) AfterFind() { + u.Created = time.Unix(u.CreatedUnix, 0).Local() + u.Updated = time.Unix(u.UpdatedUnix, 0).Local() +} + +var _ UsersStore = (*users)(nil) + +type users struct { + *gorm.DB +} + +type ErrLoginSourceMismatch struct { + args errutil.Args +} + +func (err ErrLoginSourceMismatch) Error() string { + return fmt.Sprintf("login source mismatch: %v", err.args) +} + +func (db *users) Authenticate(login, password string, loginSourceID int64) (*User, error) { + login = strings.ToLower(login) + + var query *gorm.DB + if strings.Contains(login, "@") { + query = db.Where("email = ?", login) + } else { + query = db.Where("lower_name = ?", login) + } + + user := new(User) + err := query.First(user).Error + if err != nil && err != gorm.ErrRecordNotFound { + return nil, errors.Wrap(err, "get user") + } + + // User found in the database + if err == nil { + // Note: This check is unnecessary but to reduce user confusion at login page + // and make it more consistent from user's perspective. + if loginSourceID >= 0 && user.LoginSource != loginSourceID { + return nil, ErrLoginSourceMismatch{args: errutil.Args{"expect": loginSourceID, "actual": user.LoginSource}} + } + + // Validate password hash fetched from database for local accounts. + if user.IsLocal() { + if user.ValidatePassword(password) { + return user, nil + } + + return nil, ErrUserNotExist{args: map[string]interface{}{"userID": user.ID, "name": user.Name}} + } + + source, err := LoginSources.GetByID(user.LoginSource) + if err != nil { + return nil, errors.Wrap(err, "get login source") + } + + _, err = authenticateViaLoginSource(source, login, password, false) + if err != nil { + return nil, errors.Wrap(err, "authenticate via login source") + } + return user, nil + } + + // Non-local login source is always greater than 0. + if loginSourceID <= 0 { + return nil, ErrUserNotExist{args: map[string]interface{}{"login": login}} + } + + source, err := LoginSources.GetByID(loginSourceID) + if err != nil { + return nil, errors.Wrap(err, "get login source") + } + + user, err = authenticateViaLoginSource(source, login, password, true) + if err != nil { + return nil, errors.Wrap(err, "authenticate via login source") + } + return user, nil +} + +type CreateUserOpts struct { + Name string + Email string + Password string + LoginSource int64 + Activated bool +} + +type ErrUserAlreadyExist struct { + args errutil.Args +} + +func IsErrUserAlreadyExist(err error) bool { + _, ok := err.(ErrUserAlreadyExist) + return ok +} + +func (err ErrUserAlreadyExist) Error() string { + return fmt.Sprintf("user already exists: %v", err.args) +} + +type ErrEmailAlreadyUsed struct { + args errutil.Args +} + +func IsErrEmailAlreadyUsed(err error) bool { + _, ok := err.(ErrEmailAlreadyUsed) + return ok +} + +func (err ErrEmailAlreadyUsed) Email() string { + email, ok := err.args["email"].(string) + if ok { + return email + } + return "" +} + +func (err ErrEmailAlreadyUsed) Error() string { + return fmt.Sprintf("email has been used: %v", err.args) +} + +func (db *users) Create(opts CreateUserOpts) (*User, error) { + err := isUsernameAllowed(opts.Name) + if err != nil { + return nil, err + } + + _, err = db.GetByUsername(opts.Name) + if err == nil { + return nil, ErrUserAlreadyExist{args: errutil.Args{"name": opts.Name}} + } else if !IsErrUserNotExist(err) { + return nil, err + } + + _, err = db.GetByEmail(opts.Email) + if err == nil { + return nil, ErrEmailAlreadyUsed{args: errutil.Args{"email": opts.Email}} + } else if !IsErrUserNotExist(err) { + return nil, err + } + + user := &User{ + LowerName: strings.ToLower(opts.Name), + Name: opts.Name, + Email: opts.Email, + Passwd: opts.Password, + LoginSource: opts.LoginSource, + MaxRepoCreation: -1, + IsActive: opts.Activated, + Avatar: cryptoutil.MD5(opts.Email), + AvatarEmail: opts.Email, + } + + user.Rands, err = GetUserSalt() + if err != nil { + return nil, err + } + user.Salt, err = GetUserSalt() + if err != nil { + return nil, err + } + user.EncodePassword() + + return user, db.DB.Create(user).Error +} + +var _ errutil.NotFound = (*ErrUserNotExist)(nil) + +type ErrUserNotExist struct { + args errutil.Args +} + +func IsErrUserNotExist(err error) bool { + _, ok := err.(ErrUserNotExist) + return ok +} + +func (err ErrUserNotExist) Error() string { + return fmt.Sprintf("user does not exist: %v", err.args) +} + +func (ErrUserNotExist) NotFound() bool { + return true +} + +func (db *users) GetByEmail(email string) (*User, error) { + email = strings.ToLower(email) + + if len(email) == 0 { + return nil, ErrUserNotExist{args: errutil.Args{"email": email}} + } + + // First try to find the user by primary email + user := new(User) + err := db.Where("email = ? AND type = ? AND is_active = ?", email, UserIndividual, true).First(user).Error + if err == nil { + return user, nil + } else if !gorm.IsRecordNotFoundError(err) { + return nil, err + } + + // Otherwise, check activated email addresses + emailAddress := new(EmailAddress) + err = db.Where("email = ? AND is_activated = ?", email, true).First(emailAddress).Error + if err != nil { + if gorm.IsRecordNotFoundError(err) { + return nil, ErrUserNotExist{args: errutil.Args{"email": email}} + } + return nil, err + } + + return db.GetByID(emailAddress.UID) +} + +func (db *users) GetByID(id int64) (*User, error) { + user := new(User) + err := db.Where("id = ?", id).First(user).Error + if err != nil { + if gorm.IsRecordNotFoundError(err) { + return nil, ErrUserNotExist{args: errutil.Args{"userID": id}} + } + return nil, err + } + return user, nil +} + +func (db *users) GetByUsername(username string) (*User, error) { + user := new(User) + err := db.Where("lower_name = ?", strings.ToLower(username)).First(user).Error + if err != nil { + if gorm.IsRecordNotFoundError(err) { + return nil, ErrUserNotExist{args: errutil.Args{"name": username}} + } + return nil, err + } + return user, nil +} diff --git a/internal/db/users_test.go b/internal/db/users_test.go new file mode 100644 index 000000000..e4d8fb860 --- /dev/null +++ b/internal/db/users_test.go @@ -0,0 +1,262 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package db + +import ( + "testing" + "time" + + "github.com/jinzhu/gorm" + "github.com/stretchr/testify/assert" + + "gogs.io/gogs/internal/errutil" +) + +func Test_users(t *testing.T) { + if testing.Short() { + t.Skip() + } + + t.Parallel() + + tables := []interface{}{new(User), new(EmailAddress)} + db := &users{ + DB: initTestDB(t, "users", tables...), + } + + for _, tc := range []struct { + name string + test func(*testing.T, *users) + }{ + {"Authenticate", test_users_Authenticate}, + {"Create", test_users_Create}, + {"GetByEmail", test_users_GetByEmail}, + {"GetByID", test_users_GetByID}, + {"GetByUsername", test_users_GetByUsername}, + } { + t.Run(tc.name, func(t *testing.T) { + t.Cleanup(func() { + err := clearTables(t, db.DB, tables...) + if err != nil { + t.Fatal(err) + } + }) + tc.test(t, db) + }) + } +} + +// TODO: Only local account is tested, tests for external account will be added +// along with addressing https://github.com/gogs/gogs/issues/6115. +func test_users_Authenticate(t *testing.T, db *users) { + password := "pa$$word" + alice, err := db.Create(CreateUserOpts{ + Name: "alice", + Email: "alice@example.com", + Password: password, + }) + if err != nil { + t.Fatal(err) + } + + t.Run("user not found", func(t *testing.T) { + _, err := db.Authenticate("bob", password, -1) + expErr := ErrUserNotExist{args: map[string]interface{}{"login": "bob"}} + assert.Equal(t, expErr, err) + }) + + t.Run("invalid password", func(t *testing.T) { + _, err := db.Authenticate(alice.Name, "bad_password", -1) + expErr := ErrUserNotExist{args: map[string]interface{}{"userID": alice.ID, "name": alice.Name}} + assert.Equal(t, expErr, err) + }) + + t.Run("via email and password", func(t *testing.T) { + user, err := db.Authenticate(alice.Email, password, -1) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, alice.Name, user.Name) + }) + + t.Run("via username and password", func(t *testing.T) { + user, err := db.Authenticate(alice.Name, password, -1) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, alice.Name, user.Name) + }) +} + +func test_users_Create(t *testing.T, db *users) { + alice, err := db.Create(CreateUserOpts{ + Name: "alice", + Email: "alice@example.com", + Activated: true, + }) + if err != nil { + t.Fatal(err) + } + + t.Run("name not allowed", func(t *testing.T) { + _, err := db.Create(CreateUserOpts{ + Name: "-", + }) + expErr := ErrNameNotAllowed{args: errutil.Args{"reason": "reserved", "name": "-"}} + assert.Equal(t, expErr, err) + }) + + t.Run("name already exists", func(t *testing.T) { + _, err := db.Create(CreateUserOpts{ + Name: alice.Name, + }) + expErr := ErrUserAlreadyExist{args: errutil.Args{"name": alice.Name}} + assert.Equal(t, expErr, err) + }) + + t.Run("email already exists", func(t *testing.T) { + _, err := db.Create(CreateUserOpts{ + Name: "bob", + Email: alice.Email, + }) + expErr := ErrEmailAlreadyUsed{args: errutil.Args{"email": alice.Email}} + assert.Equal(t, expErr, err) + }) + + user, err := db.GetByUsername(alice.Name) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, gorm.NowFunc().Format(time.RFC3339), user.Created.Format(time.RFC3339)) + assert.Equal(t, gorm.NowFunc().Format(time.RFC3339), user.Updated.Format(time.RFC3339)) +} + +func test_users_GetByEmail(t *testing.T, db *users) { + t.Run("empty email", func(t *testing.T) { + _, err := db.GetByEmail("") + expErr := ErrUserNotExist{args: errutil.Args{"email": ""}} + assert.Equal(t, expErr, err) + }) + + t.Run("ignore organization", func(t *testing.T) { + // TODO: Use Orgs.Create to replace SQL hack when the method is available. + org, err := db.Create(CreateUserOpts{ + Name: "gogs", + Email: "gogs@exmaple.com", + }) + if err != nil { + t.Fatal(err) + } + + err = db.Exec(`UPDATE user SET type = ? WHERE id = ?`, UserOrganization, org.ID).Error + if err != nil { + t.Fatal(err) + } + + _, err = db.GetByEmail(org.Email) + expErr := ErrUserNotExist{args: errutil.Args{"email": org.Email}} + assert.Equal(t, expErr, err) + }) + + t.Run("by primary email", func(t *testing.T) { + alice, err := db.Create(CreateUserOpts{ + Name: "alice", + Email: "alice@exmaple.com", + }) + if err != nil { + t.Fatal(err) + } + + _, err = db.GetByEmail(alice.Email) + expErr := ErrUserNotExist{args: errutil.Args{"email": alice.Email}} + assert.Equal(t, expErr, err) + + // Mark user as activated + // TODO: Use UserEmails.Verify to replace SQL hack when the method is available. + err = db.Exec(`UPDATE user SET is_active = ? WHERE id = ?`, true, alice.ID).Error + if err != nil { + t.Fatal(err) + } + + user, err := db.GetByEmail(alice.Email) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, alice.Name, user.Name) + }) + + t.Run("by secondary email", func(t *testing.T) { + bob, err := db.Create(CreateUserOpts{ + Name: "bob", + Email: "bob@example.com", + }) + if err != nil { + t.Fatal(err) + } + + // TODO: Use UserEmails.Create to replace SQL hack when the method is available. + email2 := "bob2@exmaple.com" + err = db.Exec(`INSERT INTO email_address (uid, email) VALUES (?, ?)`, bob.ID, email2).Error + if err != nil { + t.Fatal(err) + } + + _, err = db.GetByEmail(email2) + expErr := ErrUserNotExist{args: errutil.Args{"email": email2}} + assert.Equal(t, expErr, err) + + // TODO: Use UserEmails.Verify to replace SQL hack when the method is available. + err = db.Exec(`UPDATE email_address SET is_activated = ? WHERE email = ?`, true, email2).Error + if err != nil { + t.Fatal(err) + } + + user, err := db.GetByEmail(email2) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, bob.Name, user.Name) + }) +} + +func test_users_GetByID(t *testing.T, db *users) { + alice, err := db.Create(CreateUserOpts{ + Name: "alice", + Email: "alice@exmaple.com", + }) + if err != nil { + t.Fatal(err) + } + + user, err := db.GetByID(alice.ID) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, alice.Name, user.Name) + + _, err = db.GetByID(404) + expErr := ErrUserNotExist{args: errutil.Args{"userID": int64(404)}} + assert.Equal(t, expErr, err) +} + +func test_users_GetByUsername(t *testing.T, db *users) { + alice, err := db.Create(CreateUserOpts{ + Name: "alice", + Email: "alice@exmaple.com", + }) + if err != nil { + t.Fatal(err) + } + + user, err := db.GetByUsername(alice.Name) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, alice.Name, user.Name) + + _, err = db.GetByUsername("bad_username") + expErr := ErrUserNotExist{args: errutil.Args{"name": "bad_username"}} + assert.Equal(t, expErr, err) +} diff --git a/internal/dbutil/writer.go b/internal/dbutil/writer.go new file mode 100644 index 000000000..3b8d7363a --- /dev/null +++ b/internal/dbutil/writer.go @@ -0,0 +1,37 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package dbutil + +import ( + "fmt" + "io" +) + +// Writer is a wrapper of io.Writer for the gorm.logger. +type Writer struct { + io.Writer +} + +func (w *Writer) Print(v ...interface{}) { + if len(v) == 0 { + return + } + + if len(v) == 1 { + fmt.Fprint(w.Writer, v[0]) + return + } + + switch v[0] { + case "sql": + fmt.Fprintf(w.Writer, "[sql] [%s] [%s] %s %v (%d rows affected)", v[1:]...) + case "log": + fmt.Fprintf(w.Writer, "[log] [%s] %s", v[1:]...) + case "error": + fmt.Fprintf(w.Writer, "[err] [%s] %s", v[1:]...) + default: + fmt.Fprint(w.Writer, v...) + } +} diff --git a/internal/dbutil/writer_test.go b/internal/dbutil/writer_test.go new file mode 100644 index 000000000..a484d4425 --- /dev/null +++ b/internal/dbutil/writer_test.go @@ -0,0 +1,58 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package dbutil + +import ( + "bytes" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestWriter_Print(t *testing.T) { + tests := []struct { + name string + vs []interface{} + expOutput string + }{ + { + name: "no values", + }, + { + name: "only one value", + vs: []interface{}{"test"}, + expOutput: "test", + }, + { + name: "two values", + vs: []interface{}{"test", "output"}, + expOutput: "testoutput", + }, + + { + name: "sql", + vs: []interface{}{"sql", "writer.go:65", "1ms", "SELECT * FROM users WHERE user_id = $1", []int{1}, 1}, + expOutput: "[sql] [writer.go:65] [1ms] SELECT * FROM users WHERE user_id = $1 [1] (1 rows affected)", + }, + { + name: "log", + vs: []interface{}{"log", "writer.go:65", "something"}, + expOutput: "[log] [writer.go:65] something", + }, + { + name: "error", + vs: []interface{}{"error", "writer.go:65", "something bad"}, + expOutput: "[err] [writer.go:65] something bad", + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + var buf bytes.Buffer + w := &Writer{Writer: &buf} + w.Print(test.vs...) + assert.Equal(t, test.expOutput, buf.String()) + }) + } +} diff --git a/internal/errutil/errutil.go b/internal/errutil/errutil.go index af6584109..4e33a2c5f 100644 --- a/internal/errutil/errutil.go +++ b/internal/errutil/errutil.go @@ -14,3 +14,6 @@ func IsNotFound(err error) bool { e, ok := err.(NotFound) return ok && e.NotFound() } + +// Args is a map of key-value pairs to provide additional context of an error. +type Args map[string]interface{} diff --git a/internal/gitutil/mock.go b/internal/gitutil/mock.go deleted file mode 100644 index 6cd90dfad..000000000 --- a/internal/gitutil/mock.go +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2020 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package gitutil - -import ( - "github.com/gogs/git-module" -) - -type MockModuleStore struct { - RepoAddRemote func(repoPath, name, url string, opts ...git.AddRemoteOptions) error - RepoDiffNameOnly func(repoPath, base, head string, opts ...git.DiffNameOnlyOptions) ([]string, error) - RepoLog func(repoPath, rev string, opts ...git.LogOptions) ([]*git.Commit, error) - RepoMergeBase func(repoPath, base, head string, opts ...git.MergeBaseOptions) (string, error) - RepoRemoveRemote func(repoPath, name string, opts ...git.RemoveRemoteOptions) error - RepoTags func(repoPath string, opts ...git.TagsOptions) ([]string, error) -} - -// MockModule holds mock implementation of each method for Modulers interface. -// When the field is non-nil, it is considered mocked. Otherwise, the real -// implementation will be executed. -var MockModule MockModuleStore diff --git a/internal/gitutil/mocks.go b/internal/gitutil/mocks.go new file mode 100644 index 000000000..b58fa079b --- /dev/null +++ b/internal/gitutil/mocks.go @@ -0,0 +1,65 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package gitutil + +import ( + "testing" + + "github.com/gogs/git-module" +) + +var _ ModuleStore = (*MockModuleStore)(nil) + +type MockModuleStore struct { + repoAddRemote func(repoPath, name, url string, opts ...git.AddRemoteOptions) error + repoDiffNameOnly func(repoPath, base, head string, opts ...git.DiffNameOnlyOptions) ([]string, error) + repoLog func(repoPath, rev string, opts ...git.LogOptions) ([]*git.Commit, error) + repoMergeBase func(repoPath, base, head string, opts ...git.MergeBaseOptions) (string, error) + repoRemoveRemote func(repoPath, name string, opts ...git.RemoveRemoteOptions) error + repoTags func(repoPath string, opts ...git.TagsOptions) ([]string, error) + + pullRequestMeta func(headPath, basePath, headBranch, baseBranch string) (*PullRequestMeta, error) + listTagsAfter func(repoPath, after string, limit int) (*TagsPage, error) +} + +func (m *MockModuleStore) RepoAddRemote(repoPath, name, url string, opts ...git.AddRemoteOptions) error { + return m.repoAddRemote(repoPath, name, url, opts...) +} + +func (m *MockModuleStore) RepoDiffNameOnly(repoPath, base, head string, opts ...git.DiffNameOnlyOptions) ([]string, error) { + return m.repoDiffNameOnly(repoPath, base, head, opts...) +} + +func (m *MockModuleStore) RepoLog(repoPath, rev string, opts ...git.LogOptions) ([]*git.Commit, error) { + return m.repoLog(repoPath, rev, opts...) +} + +func (m *MockModuleStore) RepoMergeBase(repoPath, base, head string, opts ...git.MergeBaseOptions) (string, error) { + return m.repoMergeBase(repoPath, base, head, opts...) +} + +func (m *MockModuleStore) RepoRemoveRemote(repoPath, name string, opts ...git.RemoveRemoteOptions) error { + return m.repoRemoveRemote(repoPath, name, opts...) +} + +func (m *MockModuleStore) RepoTags(repoPath string, opts ...git.TagsOptions) ([]string, error) { + return m.repoTags(repoPath, opts...) +} + +func (m *MockModuleStore) PullRequestMeta(headPath, basePath, headBranch, baseBranch string) (*PullRequestMeta, error) { + return m.pullRequestMeta(headPath, basePath, headBranch, baseBranch) +} + +func (m *MockModuleStore) ListTagsAfter(repoPath, after string, limit int) (*TagsPage, error) { + return m.listTagsAfter(repoPath, after, limit) +} + +func SetMockModuleStore(t *testing.T, mock ModuleStore) { + before := Module + Module = mock + t.Cleanup(func() { + Module = before + }) +} diff --git a/internal/gitutil/module.go b/internal/gitutil/module.go index 3c938041e..f34e29619 100644 --- a/internal/gitutil/module.go +++ b/internal/gitutil/module.go @@ -8,10 +8,10 @@ import ( "github.com/gogs/git-module" ) -// Moduler is the interface for Git operations. +// ModuleStore is the interface for Git operations. // -// NOTE: All methods are sorted in alphabetically. -type Moduler interface { +// NOTE: All methods are sorted in alphabetical order. +type ModuleStore interface { // AddRemote adds a new remote to the repository in given path. RepoAddRemote(repoPath, name, url string, opts ...git.AddRemoteOptions) error // RepoDiffNameOnly returns a list of changed files between base and head revisions @@ -28,63 +28,38 @@ type Moduler interface { // RepoTags returns a list of tags of the repository in given path. RepoTags(repoPath string, opts ...git.TagsOptions) ([]string, error) - Utiler -} - -// Utiler is the interface for utility helpers implemented in this package. -// -// NOTE: All methods are sorted in alphabetically. -type Utiler interface { // GetPullRequestMeta gathers pull request metadata based on given head and base information. PullRequestMeta(headPath, basePath, headBranch, baseBranch string) (*PullRequestMeta, error) - // ListTagsAfter returns a list of tags "after" (exlusive) given tag. + // ListTagsAfter returns a list of tags "after" (exclusive) given tag. ListTagsAfter(repoPath, after string, limit int) (*TagsPage, error) } -// moduler is holds real implementation. -type moduler struct{} +// module holds the real implementation. +type module struct{} -func (moduler) RepoAddRemote(repoPath, name, url string, opts ...git.AddRemoteOptions) error { - if MockModule.RepoAddRemote != nil { - return MockModule.RepoAddRemote(repoPath, name, url, opts...) - } +func (module) RepoAddRemote(repoPath, name, url string, opts ...git.AddRemoteOptions) error { return git.RepoAddRemote(repoPath, name, url, opts...) } -func (moduler) RepoDiffNameOnly(repoPath, base, head string, opts ...git.DiffNameOnlyOptions) ([]string, error) { - if MockModule.RepoDiffNameOnly != nil { - return MockModule.RepoDiffNameOnly(repoPath, base, head, opts...) - } +func (module) RepoDiffNameOnly(repoPath, base, head string, opts ...git.DiffNameOnlyOptions) ([]string, error) { return git.RepoDiffNameOnly(repoPath, base, head, opts...) } -func (moduler) RepoLog(repoPath, rev string, opts ...git.LogOptions) ([]*git.Commit, error) { - if MockModule.RepoLog != nil { - return MockModule.RepoLog(repoPath, rev, opts...) - } +func (module) RepoLog(repoPath, rev string, opts ...git.LogOptions) ([]*git.Commit, error) { return git.RepoLog(repoPath, rev, opts...) } -func (moduler) RepoMergeBase(repoPath, base, head string, opts ...git.MergeBaseOptions) (string, error) { - if MockModule.RepoMergeBase != nil { - return MockModule.RepoMergeBase(repoPath, base, head, opts...) - } +func (module) RepoMergeBase(repoPath, base, head string, opts ...git.MergeBaseOptions) (string, error) { return git.RepoMergeBase(repoPath, base, head, opts...) } -func (moduler) RepoRemoveRemote(repoPath, name string, opts ...git.RemoveRemoteOptions) error { - if MockModule.RepoRemoveRemote != nil { - return MockModule.RepoRemoveRemote(repoPath, name, opts...) - } +func (module) RepoRemoveRemote(repoPath, name string, opts ...git.RemoveRemoteOptions) error { return git.RepoRemoveRemote(repoPath, name, opts...) } -func (moduler) RepoTags(repoPath string, opts ...git.TagsOptions) ([]string, error) { - if MockModule.RepoTags != nil { - return MockModule.RepoTags(repoPath, opts...) - } +func (module) RepoTags(repoPath string, opts ...git.TagsOptions) ([]string, error) { return git.RepoTags(repoPath, opts...) } // Module is a mockable interface for Git operations. -var Module Moduler = moduler{} +var Module ModuleStore = module{} diff --git a/internal/gitutil/pull_request.go b/internal/gitutil/pull_request.go index 818dc2307..e35a477e3 100644 --- a/internal/gitutil/pull_request.go +++ b/internal/gitutil/pull_request.go @@ -24,7 +24,7 @@ type PullRequestMeta struct { NumFiles int } -func (moduler) PullRequestMeta(headPath, basePath, headBranch, baseBranch string) (*PullRequestMeta, error) { +func (module) PullRequestMeta(headPath, basePath, headBranch, baseBranch string) (*PullRequestMeta, error) { tmpRemoteBranch := baseBranch // We need to create a temporary remote when the pull request is sent from a forked repository. diff --git a/internal/gitutil/pull_request_test.go b/internal/gitutil/pull_request_test.go index d7453ff34..ca0b40ada 100644 --- a/internal/gitutil/pull_request_test.go +++ b/internal/gitutil/pull_request_test.go @@ -24,75 +24,76 @@ func TestModuler_PullRequestMeta(t *testing.T) { {ID: git.MustIDFromString("adfd6da3c0a3fb038393144becbf37f14f780087")}, } - MockModule.RepoAddRemote = func(repoPath, name, url string, opts ...git.AddRemoteOptions) error { - if repoPath != headPath { - return fmt.Errorf("repoPath: want %q but got %q", headPath, repoPath) - } else if name == "" { - return errors.New("empty name") - } else if url != basePath { - return fmt.Errorf("url: want %q but got %q", basePath, url) - } - - if len(opts) == 0 { - return errors.New("no options") - } else if !opts[0].Fetch { - return fmt.Errorf("opts.Fetch: want %v but got %v", true, opts[0].Fetch) - } - - return nil - } - MockModule.RepoMergeBase = func(repoPath, base, head string, opts ...git.MergeBaseOptions) (string, error) { - if repoPath != headPath { - return "", fmt.Errorf("repoPath: want %q but got %q", headPath, repoPath) - } else if base == "" { - return "", errors.New("empty base") - } else if head != headBranch { - return "", fmt.Errorf("head: want %q but got %q", headBranch, head) - } - - return mergeBase, nil - } - MockModule.RepoLog = func(repoPath, rev string, opts ...git.LogOptions) ([]*git.Commit, error) { - if repoPath != headPath { - return nil, fmt.Errorf("repoPath: want %q but got %q", headPath, repoPath) - } + SetMockModuleStore(t, &MockModuleStore{ + repoAddRemote: func(repoPath, name, url string, opts ...git.AddRemoteOptions) error { + if repoPath != headPath { + return fmt.Errorf("repoPath: want %q but got %q", headPath, repoPath) + } else if name == "" { + return errors.New("empty name") + } else if url != basePath { + return fmt.Errorf("url: want %q but got %q", basePath, url) + } - expRev := mergeBase + "..." + headBranch - if rev != expRev { - return nil, fmt.Errorf("rev: want %q but got %q", expRev, rev) - } + if len(opts) == 0 { + return errors.New("no options") + } else if !opts[0].Fetch { + return fmt.Errorf("opts.Fetch: want %v but got %v", true, opts[0].Fetch) + } - return commits, nil - } - MockModule.RepoDiffNameOnly = func(repoPath, base, head string, opts ...git.DiffNameOnlyOptions) ([]string, error) { - if repoPath != headPath { - return nil, fmt.Errorf("repoPath: want %q but got %q", headPath, repoPath) - } else if base == "" { - return nil, errors.New("empty base") - } else if head != headBranch { - return nil, fmt.Errorf("head: want %q but got %q", headBranch, head) - } - - if len(opts) == 0 { - return nil, errors.New("no options") - } else if !opts[0].NeedsMergeBase { - return nil, fmt.Errorf("opts.NeedsMergeBase: want %v but got %v", true, opts[0].NeedsMergeBase) - } - - return changedFiles, nil - } - MockModule.RepoRemoveRemote = func(repoPath, name string, opts ...git.RemoveRemoteOptions) error { - if repoPath != headPath { - return fmt.Errorf("repoPath: want %q but got %q", headPath, repoPath) - } else if name == "" { - return errors.New("empty name") - } - - return nil - } - defer func() { - MockModule = MockModuleStore{} - }() + return nil + }, + repoMergeBase: func(repoPath, base, head string, opts ...git.MergeBaseOptions) (string, error) { + if repoPath != headPath { + return "", fmt.Errorf("repoPath: want %q but got %q", headPath, repoPath) + } else if base == "" { + return "", errors.New("empty base") + } else if head != headBranch { + return "", fmt.Errorf("head: want %q but got %q", headBranch, head) + } + + return mergeBase, nil + }, + repoLog: func(repoPath, rev string, opts ...git.LogOptions) ([]*git.Commit, error) { + if repoPath != headPath { + return nil, fmt.Errorf("repoPath: want %q but got %q", headPath, repoPath) + } + + expRev := mergeBase + "..." + headBranch + if rev != expRev { + return nil, fmt.Errorf("rev: want %q but got %q", expRev, rev) + } + + return commits, nil + }, + repoDiffNameOnly: func(repoPath, base, head string, opts ...git.DiffNameOnlyOptions) ([]string, error) { + if repoPath != headPath { + return nil, fmt.Errorf("repoPath: want %q but got %q", headPath, repoPath) + } else if base == "" { + return nil, errors.New("empty base") + } else if head != headBranch { + return nil, fmt.Errorf("head: want %q but got %q", headBranch, head) + } + + if len(opts) == 0 { + return nil, errors.New("no options") + } else if !opts[0].NeedsMergeBase { + return nil, fmt.Errorf("opts.NeedsMergeBase: want %v but got %v", true, opts[0].NeedsMergeBase) + } + + return changedFiles, nil + }, + repoRemoveRemote: func(repoPath, name string, opts ...git.RemoveRemoteOptions) error { + if repoPath != headPath { + return fmt.Errorf("repoPath: want %q but got %q", headPath, repoPath) + } else if name == "" { + return errors.New("empty name") + } + + return nil + }, + + pullRequestMeta: Module.PullRequestMeta, + }) meta, err := Module.PullRequestMeta(headPath, basePath, headBranch, baseBranch) if err != nil { diff --git a/internal/gitutil/tag.go b/internal/gitutil/tag.go index 86efd6cdd..3d4ada0c5 100644 --- a/internal/gitutil/tag.go +++ b/internal/gitutil/tag.go @@ -20,7 +20,7 @@ type TagsPage struct { HasNext bool } -func (moduler) ListTagsAfter(repoPath, after string, limit int) (*TagsPage, error) { +func (module) ListTagsAfter(repoPath, after string, limit int) (*TagsPage, error) { all, err := Module.RepoTags(repoPath) if err != nil { return nil, errors.Wrap(err, "get tags") diff --git a/internal/gitutil/tag_test.go b/internal/gitutil/tag_test.go index 732eced6a..f8fb2a03d 100644 --- a/internal/gitutil/tag_test.go +++ b/internal/gitutil/tag_test.go @@ -12,16 +12,17 @@ import ( ) func TestModuler_ListTagsAfter(t *testing.T) { - MockModule.RepoTags = func(string, ...git.TagsOptions) ([]string, error) { - return []string{ - "v2.3.0", "v2.2.1", "v2.1.0", - "v1.3.0", "v1.2.0", "v1.1.0", - "v0.8.0", "v0.5.0", "v0.1.0", - }, nil - } - defer func() { - MockModule = MockModuleStore{} - }() + SetMockModuleStore(t, &MockModuleStore{ + repoTags: func(string, ...git.TagsOptions) ([]string, error) { + return []string{ + "v2.3.0", "v2.2.1", "v2.1.0", + "v1.3.0", "v1.2.0", "v1.1.0", + "v0.8.0", "v0.5.0", "v0.1.0", + }, nil + }, + + listTagsAfter: Module.ListTagsAfter, + }) tests := []struct { name string diff --git a/internal/lfsutil/oid.go b/internal/lfsutil/oid.go new file mode 100644 index 000000000..ad19bd5b2 --- /dev/null +++ b/internal/lfsutil/oid.go @@ -0,0 +1,25 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package lfsutil + +import ( + "github.com/pkg/errors" + + "gogs.io/gogs/internal/lazyregexp" +) + +// OID is an LFS object ID. +type OID string + +// An OID is a 64-char lower case hexadecimal, produced by SHA256. +// Spec: https://github.com/git-lfs/git-lfs/blob/master/docs/spec.md +var oidRe = lazyregexp.New("^[a-f0-9]{64}$") + +var ErrInvalidOID = errors.New("OID is not valid") + +// ValidOID returns true if given oid is valid. +func ValidOID(oid OID) bool { + return oidRe.MatchString(string(oid)) +} diff --git a/internal/lfsutil/oid_test.go b/internal/lfsutil/oid_test.go new file mode 100644 index 000000000..1a4476484 --- /dev/null +++ b/internal/lfsutil/oid_test.go @@ -0,0 +1,39 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package lfsutil + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestValidOID(t *testing.T) { + tests := []struct { + name string + oid OID + expVal bool + }{ + { + name: "malformed", + oid: OID("7c222fb2927d828af22f592134e8932480637c0d"), + }, + { + name: "not all lower cased", + oid: OID("EF797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f"), + }, + + { + name: "valid", + oid: OID("ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f"), + expVal: true, + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + assert.Equal(t, test.expVal, ValidOID(test.oid)) + }) + } +} diff --git a/internal/lfsutil/storage.go b/internal/lfsutil/storage.go new file mode 100644 index 000000000..a357b8a8c --- /dev/null +++ b/internal/lfsutil/storage.go @@ -0,0 +1,109 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package lfsutil + +import ( + "io" + "os" + "path/filepath" + + "github.com/pkg/errors" + + "gogs.io/gogs/internal/osutil" +) + +var ErrObjectNotExist = errors.New("Object does not exist") + +// Storager is an storage backend for uploading and downloading LFS objects. +type Storager interface { + // Storage returns the name of the storage backend. + Storage() Storage + // Upload reads content from the io.ReadCloser and uploads as given oid. + // The reader is closed once upload is finished. ErrInvalidOID is returned + // if the given oid is not valid. + Upload(oid OID, rc io.ReadCloser) (int64, error) + // Download streams content of given oid to the io.Writer. It is caller's + // responsibility the close the writer when needed. ErrObjectNotExist is + // returned if the given oid does not exist. + Download(oid OID, w io.Writer) error +} + +// Storage is the storage type of an LFS object. +type Storage string + +const ( + StorageLocal Storage = "local" +) + +var _ Storager = (*LocalStorage)(nil) + +// LocalStorage is a LFS storage backend on local file system. +type LocalStorage struct { + // The root path for storing LFS objects. + Root string +} + +func (s *LocalStorage) Storage() Storage { + return StorageLocal +} + +func (s *LocalStorage) storagePath(oid OID) string { + if len(oid) < 2 { + return "" + } + + return filepath.Join(s.Root, string(oid[0]), string(oid[1]), string(oid)) +} + +func (s *LocalStorage) Upload(oid OID, rc io.ReadCloser) (int64, error) { + if !ValidOID(oid) { + return 0, ErrInvalidOID + } + + var err error + fpath := s.storagePath(oid) + defer func() { + rc.Close() + + if err != nil { + _ = os.Remove(fpath) + } + }() + + err = os.MkdirAll(filepath.Dir(fpath), os.ModePerm) + if err != nil { + return 0, errors.Wrap(err, "create directories") + } + w, err := os.Create(fpath) + if err != nil { + return 0, errors.Wrap(err, "create file") + } + defer w.Close() + + written, err := io.Copy(w, rc) + if err != nil { + return 0, errors.Wrap(err, "copy file") + } + return written, nil +} + +func (s *LocalStorage) Download(oid OID, w io.Writer) error { + fpath := s.storagePath(oid) + if !osutil.IsFile(fpath) { + return ErrObjectNotExist + } + + r, err := os.Open(fpath) + if err != nil { + return errors.Wrap(err, "open file") + } + defer r.Close() + + _, err = io.Copy(w, r) + if err != nil { + return errors.Wrap(err, "copy file") + } + return nil +} diff --git a/internal/lfsutil/storage_test.go b/internal/lfsutil/storage_test.go new file mode 100644 index 000000000..867027589 --- /dev/null +++ b/internal/lfsutil/storage_test.go @@ -0,0 +1,134 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package lfsutil + +import ( + "bytes" + "io/ioutil" + "os" + "path/filepath" + "runtime" + "strings" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestLocalStorage_storagePath(t *testing.T) { + if runtime.GOOS == "windows" { + t.Skip("Skipping testing on Windows") + return + } + + s := &LocalStorage{ + Root: "/lfs-objects", + } + + tests := []struct { + name string + oid OID + expPath string + }{ + { + name: "empty oid", + oid: "", + }, + + { + name: "valid oid", + oid: "ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f", + expPath: "/lfs-objects/e/f/ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f", + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + assert.Equal(t, test.expPath, s.storagePath(test.oid)) + }) + } +} + +func TestLocalStorage_Upload(t *testing.T) { + s := &LocalStorage{ + Root: filepath.Join(os.TempDir(), "lfs-objects"), + } + t.Cleanup(func() { + _ = os.RemoveAll(s.Root) + }) + + tests := []struct { + name string + oid OID + content string + expWritten int64 + expErr error + }{ + { + name: "invalid oid", + oid: "bad_oid", + expErr: ErrInvalidOID, + }, + + { + name: "valid oid", + oid: "ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f", + content: "Hello world!", + expWritten: 12, + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + written, err := s.Upload(test.oid, ioutil.NopCloser(strings.NewReader(test.content))) + assert.Equal(t, test.expWritten, written) + assert.Equal(t, test.expErr, err) + }) + } +} + +func TestLocalStorage_Download(t *testing.T) { + oid := OID("ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f") + s := &LocalStorage{ + Root: filepath.Join(os.TempDir(), "lfs-objects"), + } + t.Cleanup(func() { + _ = os.RemoveAll(s.Root) + }) + + fpath := s.storagePath(oid) + err := os.MkdirAll(filepath.Dir(fpath), os.ModePerm) + if err != nil { + t.Fatal(err) + } + err = ioutil.WriteFile(fpath, []byte("Hello world!"), os.ModePerm) + if err != nil { + t.Fatal(err) + } + + tests := []struct { + name string + oid OID + expContent string + expErr error + }{ + { + name: "object not exists", + oid: "bad_oid", + expErr: ErrObjectNotExist, + }, + + { + name: "valid oid", + oid: oid, + expContent: "Hello world!", + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + var buf bytes.Buffer + err := s.Download(test.oid, &buf) + assert.Equal(t, test.expContent, buf.String()) + assert.Equal(t, test.expErr, err) + }) + } +} diff --git a/internal/markup/markdown_test.go b/internal/markup/markdown_test.go index 2715a3229..9084ca07d 100644 --- a/internal/markup/markdown_test.go +++ b/internal/markup/markdown_test.go @@ -10,102 +10,67 @@ import ( "testing" "github.com/russross/blackfriday" - . "github.com/smartystreets/goconvey/convey" + "github.com/stretchr/testify/assert" "gogs.io/gogs/internal/conf" . "gogs.io/gogs/internal/markup" ) func Test_IsMarkdownFile(t *testing.T) { + // TODO: Refactor to accept a list of extensions conf.Markdown.FileExtensions = strings.Split(".md,.markdown,.mdown,.mkd", ",") - Convey("Detect Markdown file extension", t, func() { - testCases := []struct { - ext string - match bool - }{ - {".md", true}, - {".markdown", true}, - {".mdown", true}, - {".mkd", true}, - {".org", false}, - {".rst", false}, - {".asciidoc", false}, - } - - for _, tc := range testCases { - So(IsMarkdownFile(tc.ext), ShouldEqual, tc.match) - } - }) + tests := []struct { + ext string + expVal bool + }{ + {ext: ".md", expVal: true}, + {ext: ".markdown", expVal: true}, + {ext: ".mdown", expVal: true}, + {ext: ".mkd", expVal: true}, + {ext: ".org", expVal: false}, + {ext: ".rst", expVal: false}, + {ext: ".asciidoc", expVal: false}, + } + for _, test := range tests { + assert.Equal(t, test.expVal, IsMarkdownFile(test.ext)) + } } func Test_Markdown(t *testing.T) { - Convey("Rendering an issue URL", t, func() { - conf.Server.ExternalURL = "http://localhost:3000/" - htmlFlags := 0 - htmlFlags |= blackfriday.HTML_SKIP_STYLE - htmlFlags |= blackfriday.HTML_OMIT_CONTENTS - renderer := &MarkdownRenderer{ - Renderer: blackfriday.HtmlRenderer(htmlFlags, "", ""), - } - buffer := new(bytes.Buffer) - Convey("To the internal issue tracker", func() { - Convey("It should render valid issue URLs", func() { - testCases := []string{ - "http://localhost:3000/user/repo/issues/3333", "#3333", - } - - for i := 0; i < len(testCases); i += 2 { - renderer.AutoLink(buffer, []byte(testCases[i]), blackfriday.LINK_TYPE_NORMAL) - - line, _ := buffer.ReadString(0) - So(line, ShouldEqual, testCases[i+1]) - } - }) - Convey("It should render but not change non-issue URLs", func() { - testCases := []string{ - "http://1111/2222/ssss-issues/3333?param=blah&blahh=333", "http://1111/2222/ssss-issues/3333?param=blah&blahh=333", - "http://test.com/issues/33333", "http://test.com/issues/33333", - "http://test.com/issues/3", "http://test.com/issues/3", - "http://issues/333", "http://issues/333", - "https://issues/333", "https://issues/333", - "http://tissues/0", "http://tissues/0", - } - - for i := 0; i < len(testCases); i += 2 { - renderer.AutoLink(buffer, []byte(testCases[i]), blackfriday.LINK_TYPE_NORMAL) - - line, _ := buffer.ReadString(0) - So(line, ShouldEqual, testCases[i+1]) - } - }) - }) - }) + // TODO: Refactor to accept URL + conf.Server.ExternalURL = "http://localhost:3000/" - Convey("Rendering a commit URL", t, func() { - conf.Server.ExternalURL = "http://localhost:3000/" - htmlFlags := 0 - htmlFlags |= blackfriday.HTML_SKIP_STYLE - htmlFlags |= blackfriday.HTML_OMIT_CONTENTS - renderer := &MarkdownRenderer{ - Renderer: blackfriday.HtmlRenderer(htmlFlags, "", ""), - } - buffer := new(bytes.Buffer) - Convey("To the internal issue tracker", func() { - Convey("It should correctly convert URLs", func() { - testCases := []string{ - "http://localhost:3000/user/project/commit/d8a994ef243349f321568f9e36d5c3f444b99cae", " d8a994ef24", - "http://localhost:3000/user/project/commit/d8a994ef243349f321568f9e36d5c3f444b99cae#diff-2", " d8a994ef24", - "https://external-link.gogs.io/gogs/gogs/commit/d8a994ef243349f321568f9e36d5c3f444b99cae#diff-2", "https://external-link.gogs.io/gogs/gogs/commit/d8a994ef243349f321568f9e36d5c3f444b99cae#diff-2", - "https://commit/d8a994ef243349f321568f9e36d5c3f444b99cae", "https://commit/d8a994ef243349f321568f9e36d5c3f444b99cae", - } + htmlFlags := 0 + htmlFlags |= blackfriday.HTML_SKIP_STYLE + htmlFlags |= blackfriday.HTML_OMIT_CONTENTS + renderer := &MarkdownRenderer{ + Renderer: blackfriday.HtmlRenderer(htmlFlags, "", ""), + } - for i := 0; i < len(testCases); i += 2 { - renderer.AutoLink(buffer, []byte(testCases[i]), blackfriday.LINK_TYPE_NORMAL) + tests := []struct { + input string + expVal string + }{ + // Issue URL + {input: "http://localhost:3000/user/repo/issues/3333", expVal: "#3333"}, + {input: "http://1111/2222/ssss-issues/3333?param=blah&blahh=333", expVal: "http://1111/2222/ssss-issues/3333?param=blah&blahh=333"}, + {input: "http://test.com/issues/33333", expVal: "http://test.com/issues/33333"}, + {input: "http://test.com/issues/3", expVal: "http://test.com/issues/3"}, + {input: "http://issues/333", expVal: "http://issues/333"}, + {input: "https://issues/333", expVal: "https://issues/333"}, + {input: "http://tissues/0", expVal: "http://tissues/0"}, - line, _ := buffer.ReadString(0) - So(line, ShouldEqual, testCases[i+1]) - } - }) + // Commit URL + {input: "http://localhost:3000/user/project/commit/d8a994ef243349f321568f9e36d5c3f444b99cae", expVal: " d8a994ef24"}, + {input: "http://localhost:3000/user/project/commit/d8a994ef243349f321568f9e36d5c3f444b99cae#diff-2", expVal: " d8a994ef24"}, + {input: "https://external-link.gogs.io/gogs/gogs/commit/d8a994ef243349f321568f9e36d5c3f444b99cae#diff-2", expVal: "https://external-link.gogs.io/gogs/gogs/commit/d8a994ef243349f321568f9e36d5c3f444b99cae#diff-2"}, + {input: "https://commit/d8a994ef243349f321568f9e36d5c3f444b99cae", expVal: "https://commit/d8a994ef243349f321568f9e36d5c3f444b99cae"}, + } + for _, test := range tests { + t.Run("", func(t *testing.T) { + buf := new(bytes.Buffer) + renderer.AutoLink(buf, []byte(test.input), blackfriday.LINK_TYPE_NORMAL) + assert.Equal(t, test.expVal, buf.String()) }) - }) + } } diff --git a/internal/markup/markup_test.go b/internal/markup/markup_test.go index be19047bc..911a597c0 100644 --- a/internal/markup/markup_test.go +++ b/internal/markup/markup_test.go @@ -5,306 +5,213 @@ package markup_test import ( - "strings" "testing" - . "github.com/smartystreets/goconvey/convey" + "github.com/stretchr/testify/assert" - "gogs.io/gogs/internal/conf" . "gogs.io/gogs/internal/markup" ) func Test_IsReadmeFile(t *testing.T) { - Convey("Detect README file extension", t, func() { - testCases := []struct { - ext string - match bool - }{ - {"readme", true}, - {"README", true}, - {"readme.md", true}, - {"readme.markdown", true}, - {"readme.mdown", true}, - {"readme.mkd", true}, - {"readme.org", true}, - {"readme.rst", true}, - {"readme.asciidoc", true}, - {"readme_ZH", true}, - } - - for _, tc := range testCases { - So(IsReadmeFile(tc.ext), ShouldEqual, tc.match) - } - }) + tests := []struct { + name string + expVal bool + }{ + {name: "readme", expVal: true}, + {name: "README", expVal: true}, + {name: "readme.md", expVal: true}, + {name: "readme.markdown", expVal: true}, + {name: "readme.mdown", expVal: true}, + {name: "readme.mkd", expVal: true}, + {name: "readme.org", expVal: true}, + {name: "readme.rst", expVal: true}, + {name: "readme.asciidoc", expVal: true}, + {name: "readme_ZH", expVal: true}, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + assert.Equal(t, test.expVal, IsReadmeFile(test.name)) + }) + } } func Test_FindAllMentions(t *testing.T) { - Convey("Find all mention patterns", t, func() { - testCases := []struct { - content string - matches string - }{ - {"@Unknwon, what do you think?", "Unknwon"}, - {"@Unknwon what do you think?", "Unknwon"}, - {"Hi @Unknwon, sounds good to me", "Unknwon"}, - {"cc/ @Unknwon @User", "Unknwon,User"}, - } - - for _, tc := range testCases { - So(strings.Join(FindAllMentions(tc.content), ","), ShouldEqual, tc.matches) - } - }) + tests := []struct { + input string + expMatches []string + }{ + {input: "@unknwon, what do you think?", expMatches: []string{"unknwon"}}, + {input: "@unknwon what do you think?", expMatches: []string{"unknwon"}}, + {input: "Hi @unknwon, sounds good to me", expMatches: []string{"unknwon"}}, + {input: "cc/ @unknwon @eddycjy", expMatches: []string{"unknwon", "eddycjy"}}, + } + for _, test := range tests { + t.Run("", func(t *testing.T) { + assert.Equal(t, test.expMatches, FindAllMentions(test.input)) + }) + } } func Test_RenderIssueIndexPattern(t *testing.T) { - Convey("Rendering an issue reference", t, func() { - var ( - urlPrefix = "/prefix" - metas map[string]string = nil - ) - conf.Server.SubpathDepth = 0 - - Convey("To the internal issue tracker", func() { - Convey("It should not render anything when there are no mentions", func() { - testCases := []string{ - "", - "this is a test", - "test 123 123 1234", - "#", - "# # #", - "# 123", - "#abcd", - "##1234", - "test#1234", - "#1234test", - " test #1234test", - } - - for i := 0; i < len(testCases); i++ { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i]) - } - }) - Convey("It should render freestanding mentions", func() { - testCases := []string{ - "#1234 test", "#1234 test", - "test #1234 issue", "test #1234 issue", - "test issue #1234", "test issue #1234", - "#5 test", "#5 test", - "test #5 issue", "test #5 issue", - "test issue #5", "test issue #5", - } - - for i := 0; i < len(testCases); i += 2 { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i+1]) - } - }) - Convey("It should not render issue mention without leading space", func() { - input := []byte("test#54321 issue") - expected := "test#54321 issue" - So(string(RenderIssueIndexPattern(input, urlPrefix, metas)), ShouldEqual, expected) - }) - Convey("It should not render issue mention without trailing space", func() { - input := []byte("test #54321issue") - expected := "test #54321issue" - So(string(RenderIssueIndexPattern(input, urlPrefix, metas)), ShouldEqual, expected) - }) - Convey("It should render issue mention in parentheses", func() { - testCases := []string{ - "(#54321 issue)", "(#54321 issue)", - "test (#54321) issue", "test (#54321) issue", - "test (#54321 extra) issue", "test (#54321 extra) issue", - "test (#54321 issue)", "test (#54321 issue)", - "test (#54321)", "test (#54321)", - } - - for i := 0; i < len(testCases); i += 2 { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i+1]) - } - }) - Convey("It should render issue mention in square brackets", func() { - testCases := []string{ - "[#54321 issue]", "[#54321 issue]", - "test [#54321] issue", "test [#54321] issue", - "test [#54321 extra] issue", "test [#54321 extra] issue", - "test [#54321 issue]", "test [#54321 issue]", - "test [#54321]", "test [#54321]", - } - - for i := 0; i < len(testCases); i += 2 { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i+1]) - } - }) - Convey("It should render multiple issue mentions in the same line", func() { - testCases := []string{ - "#54321 #1243", "#54321 #1243", - "test #54321 #1243", "test #54321 #1243", - "(#54321 #1243)", "(#54321 #1243)", - "(#54321)(#1243)", "(#54321)(#1243)", - "text #54321 test #1243 issue", "text #54321 test #1243 issue", - "#1 (#4321) test", "#1 (#4321) test", - } - - for i := 0; i < len(testCases); i += 2 { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i+1]) - } - }) - }) - Convey("To an external issue tracker with numeric style", func() { - metas = make(map[string]string) - metas["format"] = "https://someurl.com/{user}/{repo}/{index}" - metas["user"] = "someuser" - metas["repo"] = "somerepo" - metas["style"] = ISSUE_NAME_STYLE_NUMERIC - - Convey("should not render anything when there are no mentions", func() { - testCases := []string{ - "this is a test", - "test 123 123 1234", - "#", - "# # #", - "# 123", - "#abcd", - } - - for i := 0; i < len(testCases); i++ { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i]) - } - }) - Convey("It should render freestanding issue mentions", func() { - testCases := []string{ - "#1234 test", "#1234 test", - "test #1234 issue", "test #1234 issue", - "test issue #1234", "test issue #1234", - "#5 test", "#5 test", - "test #5 issue", "test #5 issue", - "test issue #5", "test issue #5", - } - for i := 0; i < len(testCases); i += 2 { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i+1]) - } - }) - Convey("It should not render issue mention without leading space", func() { - input := []byte("test#54321 issue") - expected := "test#54321 issue" - So(string(RenderIssueIndexPattern(input, urlPrefix, metas)), ShouldEqual, expected) - }) - Convey("It should not render issue mention without trailing space", func() { - input := []byte("test #54321issue") - expected := "test #54321issue" - So(string(RenderIssueIndexPattern(input, urlPrefix, metas)), ShouldEqual, expected) - }) - Convey("It should render issue mention in parentheses", func() { - testCases := []string{ - "(#54321 issue)", "(#54321 issue)", - "test (#54321) issue", "test (#54321) issue", - "test (#54321 extra) issue", "test (#54321 extra) issue", - "test (#54321 issue)", "test (#54321 issue)", - "test (#54321)", "test (#54321)", - } - - for i := 0; i < len(testCases); i += 2 { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i+1]) - } + urlPrefix := "/prefix" + t.Run("render to internal issue tracker", func(t *testing.T) { + tests := []struct { + input string + expVal string + }{ + {input: "", expVal: ""}, + {input: "this is a test", expVal: "this is a test"}, + {input: "test 123 123 1234", expVal: "test 123 123 1234"}, + {input: "#", expVal: "#"}, + {input: "# # #", expVal: "# # #"}, + {input: "# 123", expVal: "# 123"}, + {input: "#abcd", expVal: "#abcd"}, + {input: "##1234", expVal: "##1234"}, + {input: "test#1234", expVal: "test#1234"}, + {input: "#1234test", expVal: "#1234test"}, + {input: " test #1234test", expVal: " test #1234test"}, + + {input: "#1234 test", expVal: "#1234 test"}, + {input: "test #1234 issue", expVal: "test #1234 issue"}, + {input: "test issue #1234", expVal: "test issue #1234"}, + {input: "#5 test", expVal: "#5 test"}, + {input: "test #5 issue", expVal: "test #5 issue"}, + {input: "test issue #5", expVal: "test issue #5"}, + + {input: "(#54321 issue)", expVal: "(#54321 issue)"}, + {input: "test (#54321) issue", expVal: "test (#54321) issue"}, + {input: "test (#54321 extra) issue", expVal: "test (#54321 extra) issue"}, + {input: "test (#54321 issue)", expVal: "test (#54321 issue)"}, + {input: "test (#54321)", expVal: "test (#54321)"}, + + {input: "[#54321 issue]", expVal: "[#54321 issue]"}, + {input: "test [#54321] issue", expVal: "test [#54321] issue"}, + {input: "test [#54321 extra] issue", expVal: "test [#54321 extra] issue"}, + {input: "test [#54321 issue]", expVal: "test [#54321 issue]"}, + {input: "test [#54321]", expVal: "test [#54321]"}, + + {input: "#54321 #1243", expVal: "#54321 #1243"}, + {input: "test #54321 #1243", expVal: "test #54321 #1243"}, + {input: "(#54321 #1243)", expVal: "(#54321 #1243)"}, + {input: "(#54321)(#1243)", expVal: "(#54321)(#1243)"}, + {input: "text #54321 test #1243 issue", expVal: "text #54321 test #1243 issue"}, + {input: "#1 (#4321) test", expVal: "#1 (#4321) test"}, + } + for _, test := range tests { + t.Run(test.input, func(t *testing.T) { + assert.Equal(t, test.expVal, string(RenderIssueIndexPattern([]byte(test.input), urlPrefix, nil))) }) - Convey("It should render multiple issue mentions in the same line", func() { - testCases := []string{ - "#54321 #1243", "#54321 #1243", - "test #54321 #1243", "test #54321 #1243", - "(#54321 #1243)", "(#54321 #1243)", - "(#54321)(#1243)", "(#54321)(#1243)", - "text #54321 test #1243 issue", "text #54321 test #1243 issue", - "#1 (#4321) test", "#1 (#4321) test", - } + } + }) - for i := 0; i < len(testCases); i += 2 { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i+1]) - } - }) + t.Run("render to external issue tracker", func(t *testing.T) { + t.Run("numeric style", func(t *testing.T) { + metas := map[string]string{ + "format": "https://someurl.com/{user}/{repo}/{index}", + "user": "someuser", + "repo": "somerepo", + "style": ISSUE_NAME_STYLE_NUMERIC, + } + + tests := []struct { + input string + expVal string + }{ + {input: "this is a test", expVal: "this is a test"}, + {input: "test 123 123 1234", expVal: "test 123 123 1234"}, + {input: "#", expVal: "#"}, + {input: "# # #", expVal: "# # #"}, + {input: "# 123", expVal: "# 123"}, + {input: "#abcd", expVal: "#abcd"}, + + {input: "#1234 test", expVal: "#1234 test"}, + {input: "test #1234 issue", expVal: "test #1234 issue"}, + {input: "test issue #1234", expVal: "test issue #1234"}, + {input: "#5 test", expVal: "#5 test"}, + {input: "test #5 issue", expVal: "test #5 issue"}, + {input: "test issue #5", expVal: "test issue #5"}, + + {input: "(#54321 issue)", expVal: "(#54321 issue)"}, + {input: "test (#54321) issue", expVal: "test (#54321) issue"}, + {input: "test (#54321 extra) issue", expVal: "test (#54321 extra) issue"}, + {input: "test (#54321 issue)", expVal: "test (#54321 issue)"}, + {input: "test (#54321)", expVal: "test (#54321)"}, + + {input: "#54321 #1243", expVal: "#54321 #1243"}, + {input: "test #54321 #1243", expVal: "test #54321 #1243"}, + {input: "(#54321 #1243)", expVal: "(#54321 #1243)"}, + {input: "(#54321)(#1243)", expVal: "(#54321)(#1243)"}, + {input: "text #54321 test #1243 issue", expVal: "text #54321 test #1243 issue"}, + {input: "#1 (#4321) test", expVal: "#1 (#4321) test"}, + } + for _, test := range tests { + t.Run(test.input, func(t *testing.T) { + assert.Equal(t, test.expVal, string(RenderIssueIndexPattern([]byte(test.input), urlPrefix, metas))) + }) + } }) - Convey("To an external issue tracker with alphanumeric style", func() { - metas = make(map[string]string) - metas["format"] = "https://someurl.com/{user}/{repo}/?b={index}" - metas["user"] = "someuser" - metas["repo"] = "somerepo" - metas["style"] = ISSUE_NAME_STYLE_ALPHANUMERIC - Convey("It should not render anything when there are no mentions", func() { - testCases := []string{ - "", - "this is a test", - "test 123 123 1234", - "#", - "##1234", - "# 123", - "#abcd", - "test #123", - "abc-1234", // issue prefix must be capital - "ABc-1234", // issue prefix must be _all_ capital - "ABCDEFGHIJK-1234", // the limit is 10 characters in the prefix - "ABC1234", // dash is required - "test ABC- test", // number is required - "test -1234 test", // prefix is required - "testABC-123 test", // leading space is required - "test ABC-123test", // trailing space is required - "ABC-0123", // no leading zero - } - - for i := 0; i < len(testCases); i += 2 { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i]) - } - }) - Convey("It should render freestanding issue mention", func() { - testCases := []string{ - "OTT-1234 test", "OTT-1234 test", - "test T-12 issue", "test T-12 issue", - "test issue ABCDEFGHIJ-1234567890", "test issue ABCDEFGHIJ-1234567890", - "A-1 test", "A-1 test", - "test ZED-1 issue", "test ZED-1 issue", - "test issue DEED-7154", "test issue DEED-7154", - } - for i := 0; i < len(testCases); i += 2 { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i+1]) - } - }) - Convey("It should render issue mention in parentheses", func() { - testCases := []string{ - "(ABG-124 issue)", "(ABG-124 issue)", - "test (ABG-124) issue", "test (ABG-124) issue", - "test (ABG-124 extra) issue", "test (ABG-124 extra) issue", - "test (ABG-124 issue)", "test (ABG-124 issue)", - "test (ABG-124)", "test (ABG-124)", - } - for i := 0; i < len(testCases); i += 2 { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i+1]) - } - }) - Convey("It should render issue mention in square brackets", func() { - testCases := []string{ - "[ABG-124] issue", "[ABG-124] issue", - "test [ABG-124] issue", "test [ABG-124] issue", - "test [ABG-124 extra] issue", "test [ABG-124 extra] issue", - "test [ABG-124 issue]", "test [ABG-124 issue]", - "test [ABG-124]", "test [ABG-124]", - } - - for i := 0; i < len(testCases); i += 2 { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i+1]) - } - }) - Convey("It should render multiple issue mentions in the same line", func() { - testCases := []string{ - "ABG-124 OTT-4321", "ABG-124 OTT-4321", - "test ABG-124 OTT-4321", "test ABG-124 OTT-4321", - "(ABG-124 OTT-4321)", "(ABG-124 OTT-4321)", - "(ABG-124)(OTT-4321)", "(ABG-124)(OTT-4321)", - "text ABG-124 test OTT-4321 issue", "text ABG-124 test OTT-4321 issue", - "A-1 (RRE-345) test", "A-1 (RRE-345) test", - } - - for i := 0; i < len(testCases); i += 2 { - So(string(RenderIssueIndexPattern([]byte(testCases[i]), urlPrefix, metas)), ShouldEqual, testCases[i+1]) - } - }) + t.Run("alphanumeric style", func(t *testing.T) { + metas := map[string]string{ + "format": "https://someurl.com/{user}/{repo}/?b={index}", + "user": "someuser", + "repo": "somerepo", + "style": ISSUE_NAME_STYLE_ALPHANUMERIC, + } + + tests := []struct { + input string + expVal string + }{ + {input: "", expVal: ""}, + {input: "this is a test", expVal: "this is a test"}, + {input: "test 123 123 1234", expVal: "test 123 123 1234"}, + {input: "#", expVal: "#"}, + {input: "##1234", expVal: "##1234"}, + {input: "# 123", expVal: "# 123"}, + {input: "#abcd", expVal: "#abcd"}, + {input: "test #123", expVal: "test #123"}, + {input: "abc-1234", expVal: "abc-1234"}, // issue prefix must be capital + {input: "ABc-1234", expVal: "ABc-1234"}, // issue prefix must be _all_ capital + {input: "ABCDEFGHIJK-1234", expVal: "ABCDEFGHIJK-1234"}, // the limit is 10 characters in the prefix + {input: "ABC1234", expVal: "ABC1234"}, // dash is required + {input: "test ABC- test", expVal: "test ABC- test"}, // number is required + {input: "test -1234 test", expVal: "test -1234 test"}, // prefix is required + {input: "testABC-123 test", expVal: "testABC-123 test"}, // leading space is required + {input: "test ABC-123test", expVal: "test ABC-123test"}, // trailing space is required + {input: "ABC-0123", expVal: "ABC-0123"}, // no leading zero + + {input: "OTT-1234 test", expVal: "OTT-1234 test"}, + {input: "test T-12 issue", expVal: "test T-12 issue"}, + {input: "test issue ABCDEFGHIJ-1234567890", expVal: "test issue ABCDEFGHIJ-1234567890"}, + {input: "A-1 test", expVal: "A-1 test"}, + {input: "test ZED-1 issue", expVal: "test ZED-1 issue"}, + {input: "test issue DEED-7154", expVal: "test issue DEED-7154"}, + + {input: "(ABG-124 issue)", expVal: "(ABG-124 issue)"}, + {input: "test (ABG-124) issue", expVal: "test (ABG-124) issue"}, + {input: "test (ABG-124 extra) issue", expVal: "test (ABG-124 extra) issue"}, + {input: "test (ABG-124 issue)", expVal: "test (ABG-124 issue)"}, + {input: "test (ABG-124)", expVal: "test (ABG-124)"}, + + {input: "[ABG-124] issue", expVal: "[ABG-124] issue"}, + {input: "test [ABG-124] issue", expVal: "test [ABG-124] issue"}, + {input: "test [ABG-124 extra] issue", expVal: "test [ABG-124 extra] issue"}, + {input: "test [ABG-124 issue]", expVal: "test [ABG-124 issue]"}, + {input: "test [ABG-124]", expVal: "test [ABG-124]"}, + + {input: "ABG-124 OTT-4321", expVal: "ABG-124 OTT-4321"}, + {input: "test ABG-124 OTT-4321", expVal: "test ABG-124 OTT-4321"}, + {input: "(ABG-124 OTT-4321)", expVal: "(ABG-124 OTT-4321)"}, + {input: "(ABG-124)(OTT-4321)", expVal: "(ABG-124)(OTT-4321)"}, + {input: "text ABG-124 test OTT-4321 issue", expVal: "text ABG-124 test OTT-4321 issue"}, + {input: "A-1 (RRE-345) test", expVal: "A-1 (RRE-345) test"}, + } + for _, test := range tests { + t.Run(test.input, func(t *testing.T) { + assert.Equal(t, test.expVal, string(RenderIssueIndexPattern([]byte(test.input), urlPrefix, metas))) + }) + } }) }) } diff --git a/internal/markup/sanitizer_test.go b/internal/markup/sanitizer_test.go index 06b108228..4e3672d80 100644 --- a/internal/markup/sanitizer_test.go +++ b/internal/markup/sanitizer_test.go @@ -7,32 +7,34 @@ package markup_test import ( "testing" - . "github.com/smartystreets/goconvey/convey" + "github.com/stretchr/testify/assert" . "gogs.io/gogs/internal/markup" ) func Test_Sanitizer(t *testing.T) { NewSanitizer() - Convey("Sanitize HTML string and bytes", t, func() { - testCases := []string{ - // Regular - `Google`, `Google`, - - // Code highlighting class - ``, ``, - ``, ``, - ``, ``, - - // Input checkbox - ``, ``, - ``, ``, - ``, ``, - } - - for i := 0; i < len(testCases); i += 2 { - So(Sanitize(testCases[i]), ShouldEqual, testCases[i+1]) - So(string(SanitizeBytes([]byte(testCases[i]))), ShouldEqual, testCases[i+1]) - } - }) + tests := []struct { + input string + expVal string + }{ + // Regular + {input: `Google`, expVal: `Google`}, + + // Code highlighting class + {input: ``, expVal: ``}, + {input: ``, expVal: ``}, + {input: ``, expVal: ``}, + + // Input checkbox + {input: ``, expVal: ``}, + {input: ``, expVal: ``}, + {input: ``, expVal: ``}, + } + for _, test := range tests { + t.Run(test.input, func(t *testing.T) { + assert.Equal(t, test.expVal, Sanitize(test.input)) + assert.Equal(t, test.expVal, string(SanitizeBytes([]byte(test.input)))) + }) + } } diff --git a/internal/mock/locale.go b/internal/mocks/locale.go similarity index 51% rename from internal/mock/locale.go rename to internal/mocks/locale.go index fbd91da17..ef95e056b 100644 --- a/internal/mock/locale.go +++ b/internal/mocks/locale.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. -package mock +package mocks import ( "gopkg.in/macaron.v1" @@ -10,24 +10,15 @@ import ( var _ macaron.Locale = (*Locale)(nil) -// Locale is a mock that implements macaron.Locale. type Locale struct { - lang string - tr func(string, ...interface{}) string -} - -// NewLocale creates a new mock for macaron.Locale. -func NewLocale(lang string, tr func(string, ...interface{}) string) *Locale { - return &Locale{ - lang: lang, - tr: tr, - } + MockLang string + MockTr func(string, ...interface{}) string } func (l *Locale) Language() string { - return l.lang + return l.MockLang } func (l *Locale) Tr(format string, args ...interface{}) string { - return l.tr(format, args...) + return l.MockTr(format, args...) } diff --git a/internal/osutil/osutil.go b/internal/osutil/osutil.go index 3af67570d..b2205a46b 100644 --- a/internal/osutil/osutil.go +++ b/internal/osutil/osutil.go @@ -17,6 +17,16 @@ func IsFile(path string) bool { return !f.IsDir() } +// IsDir returns true if given path is a directory, and returns false when it's +// a file or does not exist. +func IsDir(dir string) bool { + f, e := os.Stat(dir) + if e != nil { + return false + } + return f.IsDir() +} + // IsExist returns true if a file or directory exists. func IsExist(path string) bool { _, err := os.Stat(path) diff --git a/internal/osutil/osutil_test.go b/internal/osutil/osutil_test.go index 8c45f5c0a..ca2c75bf3 100644 --- a/internal/osutil/osutil_test.go +++ b/internal/osutil/osutil_test.go @@ -33,6 +33,29 @@ func TestIsFile(t *testing.T) { } } +func TestIsDir(t *testing.T) { + tests := []struct { + path string + expVal bool + }{ + { + path: "osutil.go", + expVal: false, + }, { + path: "../osutil", + expVal: true, + }, { + path: "not_found", + expVal: false, + }, + } + for _, test := range tests { + t.Run("", func(t *testing.T) { + assert.Equal(t, test.expVal, IsDir(test.path)) + }) + } +} + func TestIsExist(t *testing.T) { tests := []struct { path string diff --git a/internal/route/admin/admin.go b/internal/route/admin/admin.go index 6b0e8c2c1..d1b3bdbfa 100644 --- a/internal/route/admin/admin.go +++ b/internal/route/admin/admin.go @@ -22,9 +22,9 @@ import ( ) const ( - DASHBOARD = "admin/dashboard" - CONFIG = "admin/config" - MONITOR = "admin/monitor" + tmplDashboard = "admin/dashboard" + tmplConfig = "admin/config" + tmplMonitor = "admin/monitor" ) // initTime is the time when the application was initialized. @@ -123,7 +123,7 @@ func Dashboard(c *context.Context) { // FIXME: update periodically updateSystemStatus() c.Data["SysStatus"] = sysStatus - c.Success(DASHBOARD) + c.Success(tmplDashboard) } // Operation types. @@ -209,6 +209,7 @@ func Config(c *context.Context) { c.Data["Mirror"] = conf.Mirror c.Data["Webhook"] = conf.Webhook c.Data["Git"] = conf.Git + c.Data["LFS"] = conf.LFS c.Data["LogRootPath"] = conf.Log.RootPath type logger struct { @@ -225,7 +226,7 @@ func Config(c *context.Context) { } c.Data["Loggers"] = loggers - c.Success(CONFIG) + c.Success(tmplConfig) } func Monitor(c *context.Context) { @@ -234,5 +235,5 @@ func Monitor(c *context.Context) { c.Data["PageIsAdminMonitor"] = true c.Data["Processes"] = process.Processes c.Data["Entries"] = cron.ListTasks() - c.Success(MONITOR) + c.Success(tmplMonitor) } diff --git a/internal/route/admin/auths.go b/internal/route/admin/auths.go index bcf52e5e4..d2967e293 100644 --- a/internal/route/admin/auths.go +++ b/internal/route/admin/auths.go @@ -11,7 +11,6 @@ import ( "github.com/unknwon/com" log "unknwon.dev/clog/v2" - "xorm.io/core" "gogs.io/gogs/internal/auth/ldap" "gogs.io/gogs/internal/conf" @@ -32,13 +31,13 @@ func Authentications(c *context.Context) { c.PageIs("AdminAuthentications") var err error - c.Data["Sources"], err = db.LoginSources() + c.Data["Sources"], err = db.LoginSources.List(db.ListLoginSourceOpts{}) if err != nil { c.Error(err, "list login sources") return } - c.Data["Total"] = db.CountLoginSources() + c.Data["Total"] = db.LoginSources.Count() c.Success(AUTHS) } @@ -49,16 +48,16 @@ type dropdownItem struct { var ( authSources = []dropdownItem{ - {db.LoginNames[db.LOGIN_LDAP], db.LOGIN_LDAP}, - {db.LoginNames[db.LOGIN_DLDAP], db.LOGIN_DLDAP}, - {db.LoginNames[db.LOGIN_SMTP], db.LOGIN_SMTP}, - {db.LoginNames[db.LOGIN_PAM], db.LOGIN_PAM}, - {db.LoginNames[db.LOGIN_GITHUB], db.LOGIN_GITHUB}, + {db.LoginNames[db.LoginLDAP], db.LoginLDAP}, + {db.LoginNames[db.LoginDLDAP], db.LoginDLDAP}, + {db.LoginNames[db.LoginSMTP], db.LoginSMTP}, + {db.LoginNames[db.LoginPAM], db.LoginPAM}, + {db.LoginNames[db.LoginGitHub], db.LoginGitHub}, } securityProtocols = []dropdownItem{ - {db.SecurityProtocolNames[ldap.SECURITY_PROTOCOL_UNENCRYPTED], ldap.SECURITY_PROTOCOL_UNENCRYPTED}, - {db.SecurityProtocolNames[ldap.SECURITY_PROTOCOL_LDAPS], ldap.SECURITY_PROTOCOL_LDAPS}, - {db.SecurityProtocolNames[ldap.SECURITY_PROTOCOL_START_TLS], ldap.SECURITY_PROTOCOL_START_TLS}, + {db.SecurityProtocolNames[ldap.SecurityProtocolUnencrypted], ldap.SecurityProtocolUnencrypted}, + {db.SecurityProtocolNames[ldap.SecurityProtocolLDAPS], ldap.SecurityProtocolLDAPS}, + {db.SecurityProtocolNames[ldap.SecurityProtocolStartTLS], ldap.SecurityProtocolStartTLS}, } ) @@ -67,9 +66,9 @@ func NewAuthSource(c *context.Context) { c.PageIs("Admin") c.PageIs("AdminAuthentications") - c.Data["type"] = db.LOGIN_LDAP - c.Data["CurrentTypeName"] = db.LoginNames[db.LOGIN_LDAP] - c.Data["CurrentSecurityProtocol"] = db.SecurityProtocolNames[ldap.SECURITY_PROTOCOL_UNENCRYPTED] + c.Data["type"] = db.LoginLDAP + c.Data["CurrentTypeName"] = db.LoginNames[db.LoginLDAP] + c.Data["CurrentSecurityProtocol"] = db.SecurityProtocolNames[ldap.SecurityProtocolUnencrypted] c.Data["smtp_auth"] = "PLAIN" c.Data["is_active"] = true c.Data["is_default"] = true @@ -81,7 +80,7 @@ func NewAuthSource(c *context.Context) { func parseLDAPConfig(f form.Authentication) *db.LDAPConfig { return &db.LDAPConfig{ - Source: &ldap.Source{ + Source: ldap.Source{ Host: f.Host, Port: f.Port, SecurityProtocol: ldap.SecurityProtocol(f.SecurityProtocol), @@ -129,19 +128,19 @@ func NewAuthSourcePost(c *context.Context, f form.Authentication) { c.Data["SMTPAuths"] = db.SMTPAuths hasTLS := false - var config core.Conversion + var config interface{} switch db.LoginType(f.Type) { - case db.LOGIN_LDAP, db.LOGIN_DLDAP: + case db.LoginLDAP, db.LoginDLDAP: config = parseLDAPConfig(f) - hasTLS = ldap.SecurityProtocol(f.SecurityProtocol) > ldap.SECURITY_PROTOCOL_UNENCRYPTED - case db.LOGIN_SMTP: + hasTLS = ldap.SecurityProtocol(f.SecurityProtocol) > ldap.SecurityProtocolUnencrypted + case db.LoginSMTP: config = parseSMTPConfig(f) hasTLS = true - case db.LOGIN_PAM: + case db.LoginPAM: config = &db.PAMConfig{ ServiceName: f.PAMServiceName, } - case db.LOGIN_GITHUB: + case db.LoginGitHub: config = &db.GitHubConfig{ APIEndpoint: strings.TrimSuffix(f.GitHubAPIEndpoint, "/") + "/", } @@ -156,22 +155,31 @@ func NewAuthSourcePost(c *context.Context, f form.Authentication) { return } - if err := db.CreateLoginSource(&db.LoginSource{ + source, err := db.LoginSources.Create(db.CreateLoginSourceOpts{ Type: db.LoginType(f.Type), Name: f.Name, - IsActived: f.IsActive, - IsDefault: f.IsDefault, - Cfg: config, - }); err != nil { + Activated: f.IsActive, + Default: f.IsDefault, + Config: config, + }) + if err != nil { if db.IsErrLoginSourceAlreadyExist(err) { c.FormErr("Name") - c.RenderWithErr(c.Tr("admin.auths.login_source_exist", err.(db.ErrLoginSourceAlreadyExist).Name), AUTH_NEW, f) + c.RenderWithErr(c.Tr("admin.auths.login_source_exist", f.Name), AUTH_NEW, f) } else { c.Error(err, "create login source") } return } + if source.IsDefault { + err = db.LoginSources.ResetNonDefault(source) + if err != nil { + c.Error(err, "reset non-default login sources") + return + } + } + log.Trace("Authentication created by admin(%s): %s", c.User.Name, f.Name) c.Flash.Success(c.Tr("admin.auths.new_success", f.Name)) @@ -186,7 +194,7 @@ func EditAuthSource(c *context.Context) { c.Data["SecurityProtocols"] = securityProtocols c.Data["SMTPAuths"] = db.SMTPAuths - source, err := db.GetLoginSourceByID(c.ParamsInt64(":authid")) + source, err := db.LoginSources.GetByID(c.ParamsInt64(":authid")) if err != nil { c.Error(err, "get login source by ID") return @@ -204,7 +212,7 @@ func EditAuthSourcePost(c *context.Context, f form.Authentication) { c.Data["SMTPAuths"] = db.SMTPAuths - source, err := db.GetLoginSourceByID(c.ParamsInt64(":authid")) + source, err := db.LoginSources.GetByID(c.ParamsInt64(":authid")) if err != nil { c.Error(err, "get login source by ID") return @@ -217,17 +225,17 @@ func EditAuthSourcePost(c *context.Context, f form.Authentication) { return } - var config core.Conversion + var config interface{} switch db.LoginType(f.Type) { - case db.LOGIN_LDAP, db.LOGIN_DLDAP: + case db.LoginLDAP, db.LoginDLDAP: config = parseLDAPConfig(f) - case db.LOGIN_SMTP: + case db.LoginSMTP: config = parseSMTPConfig(f) - case db.LOGIN_PAM: + case db.LoginPAM: config = &db.PAMConfig{ ServiceName: f.PAMServiceName, } - case db.LOGIN_GITHUB: + case db.LoginGitHub: config = &db.GitHubConfig{ APIEndpoint: strings.TrimSuffix(f.GitHubAPIEndpoint, "/") + "/", } @@ -239,12 +247,20 @@ func EditAuthSourcePost(c *context.Context, f form.Authentication) { source.Name = f.Name source.IsActived = f.IsActive source.IsDefault = f.IsDefault - source.Cfg = config - if err := db.UpdateLoginSource(source); err != nil { + source.Config = config + if err := db.LoginSources.Save(source); err != nil { c.Error(err, "update login source") return } + if source.IsDefault { + err = db.LoginSources.ResetNonDefault(source) + if err != nil { + c.Error(err, "reset non-default login sources") + return + } + } + log.Trace("Authentication changed by admin '%s': %d", c.User.Name, source.ID) c.Flash.Success(c.Tr("admin.auths.update_success")) @@ -252,13 +268,8 @@ func EditAuthSourcePost(c *context.Context, f form.Authentication) { } func DeleteAuthSource(c *context.Context) { - source, err := db.GetLoginSourceByID(c.ParamsInt64(":authid")) - if err != nil { - c.Error(err, "get login source by ID") - return - } - - if err = db.DeleteSource(source); err != nil { + id := c.ParamsInt64(":authid") + if err := db.LoginSources.DeleteByID(id); err != nil { if db.IsErrLoginSourceInUse(err) { c.Flash.Error(c.Tr("admin.auths.still_in_used")) } else { @@ -269,7 +280,7 @@ func DeleteAuthSource(c *context.Context) { }) return } - log.Trace("Authentication deleted by admin(%s): %d", c.User.Name, source.ID) + log.Trace("Authentication deleted by admin(%s): %d", c.User.Name, id) c.Flash.Success(c.Tr("admin.auths.deletion_success")) c.JSONSuccess(map[string]interface{}{ diff --git a/internal/route/admin/orgs.go b/internal/route/admin/orgs.go index a37624845..e2fd4be55 100644 --- a/internal/route/admin/orgs.go +++ b/internal/route/admin/orgs.go @@ -21,7 +21,7 @@ func Organizations(c *context.Context) { c.Data["PageIsAdminOrganizations"] = true route.RenderUserSearch(c, &route.UserSearchOptions{ - Type: db.USER_TYPE_ORGANIZATION, + Type: db.UserOrganization, Counter: db.CountOrganizations, Ranger: db.Organizations, PageSize: conf.UI.Admin.OrgPagingNum, diff --git a/internal/route/admin/users.go b/internal/route/admin/users.go index 630fa4ca0..8a09690d0 100644 --- a/internal/route/admin/users.go +++ b/internal/route/admin/users.go @@ -30,9 +30,9 @@ func Users(c *context.Context) { c.Data["PageIsAdminUsers"] = true route.RenderUserSearch(c, &route.UserSearchOptions{ - Type: db.USER_TYPE_INDIVIDUAL, + Type: db.UserIndividual, Counter: db.CountUsers, - Ranger: db.Users, + Ranger: db.ListUsers, PageSize: conf.UI.Admin.UserPagingNum, OrderBy: "id ASC", TplName: USERS, @@ -46,7 +46,7 @@ func NewUser(c *context.Context) { c.Data["login_type"] = "0-0" - sources, err := db.LoginSources() + sources, err := db.LoginSources.List(db.ListLoginSourceOpts{}) if err != nil { c.Error(err, "list login sources") return @@ -62,7 +62,7 @@ func NewUserPost(c *context.Context, f form.AdminCrateUser) { c.Data["PageIsAdmin"] = true c.Data["PageIsAdminUsers"] = true - sources, err := db.LoginSources() + sources, err := db.LoginSources.List(db.ListLoginSourceOpts{}) if err != nil { c.Error(err, "list login sources") return @@ -77,17 +77,15 @@ func NewUserPost(c *context.Context, f form.AdminCrateUser) { } u := &db.User{ - Name: f.UserName, - Email: f.Email, - Passwd: f.Password, - IsActive: true, - LoginType: db.LOGIN_PLAIN, + Name: f.UserName, + Email: f.Email, + Passwd: f.Password, + IsActive: true, } if len(f.LoginType) > 0 { fields := strings.Split(f.LoginType, "-") if len(fields) == 2 { - u.LoginType = db.LoginType(com.StrTo(fields[0]).MustInt()) u.LoginSource = com.StrTo(fields[1]).MustInt64() u.LoginName = f.LoginName } @@ -101,12 +99,9 @@ func NewUserPost(c *context.Context, f form.AdminCrateUser) { case db.IsErrEmailAlreadyUsed(err): c.Data["Err_Email"] = true c.RenderWithErr(c.Tr("form.email_been_used"), USER_NEW, &f) - case db.IsErrNameReserved(err): + case db.IsErrNameNotAllowed(err): c.Data["Err_UserName"] = true - c.RenderWithErr(c.Tr("user.form.name_reserved", err.(db.ErrNameReserved).Name), USER_NEW, &f) - case db.IsErrNamePatternNotAllowed(err): - c.Data["Err_UserName"] = true - c.RenderWithErr(c.Tr("user.form.name_pattern_not_allowed", err.(db.ErrNamePatternNotAllowed).Pattern), USER_NEW, &f) + c.RenderWithErr(c.Tr("user.form.name_not_allowed", err.(db.ErrNameNotAllowed).Value()), USER_NEW, &f) default: c.Error(err, "create user") } @@ -132,7 +127,7 @@ func prepareUserInfo(c *context.Context) *db.User { c.Data["User"] = u if u.LoginSource > 0 { - c.Data["LoginSource"], err = db.GetLoginSourceByID(u.LoginSource) + c.Data["LoginSource"], err = db.LoginSources.GetByID(u.LoginSource) if err != nil { c.Error(err, "get login source by ID") return nil @@ -141,7 +136,7 @@ func prepareUserInfo(c *context.Context) *db.User { c.Data["LoginSource"] = &db.LoginSource{} } - sources, err := db.LoginSources() + sources, err := db.LoginSources.List(db.ListLoginSourceOpts{}) if err != nil { c.Error(err, "list login sources") return nil @@ -183,12 +178,10 @@ func EditUserPost(c *context.Context, f form.AdminEditUser) { fields := strings.Split(f.LoginType, "-") if len(fields) == 2 { - loginType := db.LoginType(com.StrTo(fields[0]).MustInt()) loginSource := com.StrTo(fields[1]).MustInt64() if u.LoginSource != loginSource { u.LoginSource = loginSource - u.LoginType = loginType } } @@ -199,7 +192,7 @@ func EditUserPost(c *context.Context, f form.AdminEditUser) { c.Error(err, "get user salt") return } - u.EncodePasswd() + u.EncodePassword() } u.LoginName = f.LoginName diff --git a/internal/route/api/v1/admin/org_team.go b/internal/route/api/v1/admin/org_team.go index 953f0936f..b0bc9accf 100644 --- a/internal/route/api/v1/admin/org_team.go +++ b/internal/route/api/v1/admin/org_team.go @@ -60,3 +60,17 @@ func RemoveTeamMember(c *context.APIContext) { c.NoContent() } + +func ListTeamMembers(c *context.APIContext) { + team := c.Org.Team + if err := team.GetMembers(); err != nil { + c.Error(err, "get team members") + return + } + + apiMembers := make([]*api.User, len(team.Members)) + for i := range team.Members { + apiMembers[i] = team.Members[i].APIFormat() + } + c.JSONSuccess(apiMembers) +} diff --git a/internal/route/api/v1/admin/user.go b/internal/route/api/v1/admin/user.go index c339edd24..ef0042615 100644 --- a/internal/route/api/v1/admin/user.go +++ b/internal/route/api/v1/admin/user.go @@ -13,7 +13,6 @@ import ( "gogs.io/gogs/internal/conf" "gogs.io/gogs/internal/context" "gogs.io/gogs/internal/db" - "gogs.io/gogs/internal/db/errors" "gogs.io/gogs/internal/email" "gogs.io/gogs/internal/route/api/v1/user" ) @@ -23,9 +22,9 @@ func parseLoginSource(c *context.APIContext, u *db.User, sourceID int64, loginNa return } - source, err := db.GetLoginSourceByID(sourceID) + source, err := db.LoginSources.GetByID(sourceID) if err != nil { - if errors.IsLoginSourceNotExist(err) { + if db.IsErrLoginSourceNotExist(err) { c.ErrorStatus(http.StatusUnprocessableEntity, err) } else { c.Error(err, "get login source by ID") @@ -33,19 +32,17 @@ func parseLoginSource(c *context.APIContext, u *db.User, sourceID int64, loginNa return } - u.LoginType = source.Type u.LoginSource = source.ID u.LoginName = loginName } func CreateUser(c *context.APIContext, form api.CreateUserOption) { u := &db.User{ - Name: form.Username, - FullName: form.FullName, - Email: form.Email, - Passwd: form.Password, - IsActive: true, - LoginType: db.LOGIN_PLAIN, + Name: form.Username, + FullName: form.FullName, + Email: form.Email, + Passwd: form.Password, + IsActive: true, } parseLoginSource(c, u, form.SourceID, form.LoginName) @@ -56,8 +53,7 @@ func CreateUser(c *context.APIContext, form api.CreateUserOption) { if err := db.CreateUser(u); err != nil { if db.IsErrUserAlreadyExist(err) || db.IsErrEmailAlreadyUsed(err) || - db.IsErrNameReserved(err) || - db.IsErrNamePatternNotAllowed(err) { + db.IsErrNameNotAllowed(err) { c.ErrorStatus(http.StatusUnprocessableEntity, err) } else { c.Error(err, "create user") @@ -92,7 +88,7 @@ func EditUser(c *context.APIContext, form api.EditUserOption) { c.Error(err, "get user salt") return } - u.EncodePasswd() + u.EncodePassword() } u.LoginName = form.LoginName diff --git a/internal/route/api/v1/api.go b/internal/route/api/v1/api.go index b56d640b2..993ce8a3a 100644 --- a/internal/route/api/v1/api.go +++ b/internal/route/api/v1/api.go @@ -55,7 +55,7 @@ func repoAssignment() macaron.Handler { } if c.IsTokenAuth && c.User.IsAdmin { - c.Repo.AccessMode = db.ACCESS_MODE_OWNER + c.Repo.AccessMode = db.AccessModeOwner } else { mode, err := db.UserAccessMode(c.UserID(), r) if err != nil { @@ -245,6 +245,7 @@ func RegisterRoutes(m *macaron.Macaron) { m.Get("/search", repo.Search) m.Get("/:username/:reponame", repoAssignment(), repo.Get) + m.Get("/:username/:reponame/releases", repoAssignment(), repo.Releases) }) m.Group("/repos", func() { @@ -395,6 +396,7 @@ func RegisterRoutes(m *macaron.Macaron) { m.Group("/teams", func() { m.Group("/:teamid", func() { + m.Get("/members", admin.ListTeamMembers) m.Combo("/members/:username"). Put(admin.AddTeamMember). Delete(admin.RemoveTeamMember) diff --git a/internal/route/api/v1/org/org.go b/internal/route/api/v1/org/org.go index 0bcefbe4f..7a7de50e1 100644 --- a/internal/route/api/v1/org/org.go +++ b/internal/route/api/v1/org/org.go @@ -27,12 +27,11 @@ func CreateOrgForUser(c *context.APIContext, apiForm api.CreateOrgOption, user * Website: apiForm.Website, Location: apiForm.Location, IsActive: true, - Type: db.USER_TYPE_ORGANIZATION, + Type: db.UserOrganization, } if err := db.CreateOrganization(org, user); err != nil { if db.IsErrUserAlreadyExist(err) || - db.IsErrNameReserved(err) || - db.IsErrNamePatternNotAllowed(err) { + db.IsErrNameNotAllowed(err) { c.ErrorStatus(http.StatusUnprocessableEntity, err) } else { c.Error(err, "create organization") diff --git a/internal/route/api/v1/repo/repo.go b/internal/route/api/v1/repo/repo.go index e198dffcd..138f39e83 100644 --- a/internal/route/api/v1/repo/repo.go +++ b/internal/route/api/v1/repo/repo.go @@ -131,8 +131,8 @@ func listUserRepositories(c *context.APIContext, username string) { i := numOwnRepos for repo, access := range accessibleRepos { repos[i] = repo.APIFormat(&api.Permission{ - Admin: access >= db.ACCESS_MODE_ADMIN, - Push: access >= db.ACCESS_MODE_WRITE, + Admin: access >= db.AccessModeAdmin, + Push: access >= db.AccessModeWrite, Pull: true, }) i++ @@ -165,8 +165,7 @@ func CreateUserRepo(c *context.APIContext, owner *db.User, opt api.CreateRepoOpt }) if err != nil { if db.IsErrRepoAlreadyExist(err) || - db.IsErrNameReserved(err) || - db.IsErrNamePatternNotAllowed(err) { + db.IsErrNameNotAllowed(err) { c.ErrorStatus(http.StatusUnprocessableEntity, err) } else { if repo != nil { @@ -403,3 +402,26 @@ func MirrorSync(c *context.APIContext) { go db.MirrorQueue.Add(repo.ID) c.Status(http.StatusAccepted) } + +func Releases(c *context.APIContext) { + _, repo := parseOwnerAndRepo(c) + releases, err := db.GetReleasesByRepoID(repo.ID) + if err != nil { + c.Error(err, "get releases by repository ID") + return + } + apiReleases := make([]*api.Release, 0, len(releases)) + for _, r := range releases { + publisher, err := db.GetUserByID(r.PublisherID) + if err != nil { + c.Error(err, "get release publisher") + return + } + r.Publisher = publisher + } + for _, r := range releases { + apiReleases = append(apiReleases, r.APIFormat()) + } + + c.JSONSuccess(&apiReleases) +} diff --git a/internal/route/api/v1/user/app.go b/internal/route/api/v1/user/app.go index 99a422ccb..5afa34fba 100644 --- a/internal/route/api/v1/user/app.go +++ b/internal/route/api/v1/user/app.go @@ -11,11 +11,10 @@ import ( "gogs.io/gogs/internal/context" "gogs.io/gogs/internal/db" - "gogs.io/gogs/internal/db/errors" ) func ListAccessTokens(c *context.APIContext) { - tokens, err := db.ListAccessTokens(c.User.ID) + tokens, err := db.AccessTokens.List(c.User.ID) if err != nil { c.Error(err, "list access tokens") return @@ -29,12 +28,9 @@ func ListAccessTokens(c *context.APIContext) { } func CreateAccessToken(c *context.APIContext, form api.CreateAccessTokenOption) { - t := &db.AccessToken{ - UID: c.User.ID, - Name: form.Name, - } - if err := db.NewAccessToken(t); err != nil { - if errors.IsAccessTokenNameAlreadyExist(err) { + t, err := db.AccessTokens.Create(c.User.ID, form.Name) + if err != nil { + if db.IsErrAccessTokenAlreadyExist(err) { c.ErrorStatus(http.StatusUnprocessableEntity, err) } else { c.Error(err, "new access token") diff --git a/internal/route/api/v1/user/email.go b/internal/route/api/v1/user/email.go index 07fd4f8af..5584803ec 100644 --- a/internal/route/api/v1/user/email.go +++ b/internal/route/api/v1/user/email.go @@ -46,7 +46,7 @@ func AddEmail(c *context.APIContext, form api.CreateEmailOption) { if err := db.AddEmailAddresses(emails); err != nil { if db.IsErrEmailAlreadyUsed(err) { - c.ErrorStatus(http.StatusUnprocessableEntity, errors.New("email address has been used: "+err.(db.ErrEmailAlreadyUsed).Email)) + c.ErrorStatus(http.StatusUnprocessableEntity, errors.New("email address has been used: "+err.(db.ErrEmailAlreadyUsed).Email())) } else { c.Error(err, "add email addresses") } diff --git a/internal/route/api/v1/user/user.go b/internal/route/api/v1/user/user.go index 695d53113..c57f8fed0 100644 --- a/internal/route/api/v1/user/user.go +++ b/internal/route/api/v1/user/user.go @@ -19,7 +19,7 @@ import ( func Search(c *context.APIContext) { opts := &db.SearchUserOptions{ Keyword: c.Query("q"), - Type: db.USER_TYPE_INDIVIDUAL, + Type: db.UserIndividual, PageSize: com.StrTo(c.Query("limit")).MustInt(), } if opts.PageSize == 0 { diff --git a/internal/route/home.go b/internal/route/home.go index 3da7f0cfd..d040b957b 100644 --- a/internal/route/home.go +++ b/internal/route/home.go @@ -5,7 +5,12 @@ package route import ( + "fmt" + "net/http" + + "github.com/go-macaron/i18n" "github.com/unknwon/paginater" + "gopkg.in/macaron.v1" "gogs.io/gogs/internal/conf" "gogs.io/gogs/internal/context" @@ -133,9 +138,9 @@ func ExploreUsers(c *context.Context) { c.Data["PageIsExploreUsers"] = true RenderUserSearch(c, &UserSearchOptions{ - Type: db.USER_TYPE_INDIVIDUAL, + Type: db.UserIndividual, Counter: db.CountUsers, - Ranger: db.Users, + Ranger: db.ListUsers, PageSize: conf.UI.ExplorePagingNum, OrderBy: "updated_unix DESC", TplName: EXPLORE_USERS, @@ -148,7 +153,7 @@ func ExploreOrganizations(c *context.Context) { c.Data["PageIsExploreOrganizations"] = true RenderUserSearch(c, &UserSearchOptions{ - Type: db.USER_TYPE_ORGANIZATION, + Type: db.UserOrganization, Counter: db.CountOrganizations, Ranger: db.Organizations, PageSize: conf.UI.ExplorePagingNum, @@ -157,7 +162,7 @@ func ExploreOrganizations(c *context.Context) { }) } -func NotFound(c *context.Context) { - c.Data["Title"] = "Page Not Found" - c.NotFound() +func NotFound(c *macaron.Context, l i18n.Locale) { + c.Data["Title"] = l.Tr("status.page_not_found") + c.HTML(http.StatusNotFound, fmt.Sprintf("status/%d", http.StatusNotFound)) } diff --git a/internal/route/install.go b/internal/route/install.go index 899393b4e..8c9d2eda4 100644 --- a/internal/route/install.go +++ b/internal/route/install.go @@ -27,8 +27,8 @@ import ( "gogs.io/gogs/internal/markup" "gogs.io/gogs/internal/osutil" "gogs.io/gogs/internal/ssh" + "gogs.io/gogs/internal/strutil" "gogs.io/gogs/internal/template/highlight" - "gogs.io/gogs/internal/tool" ) const ( @@ -76,7 +76,6 @@ func GlobalInit(customConf string) error { } db.HasEngine = true - db.LoadAuthSources() db.LoadRepoConfig() db.NewRepoContext() @@ -86,9 +85,6 @@ func GlobalInit(customConf string) error { db.InitDeliverHooks() db.InitTestPullRequests() } - if db.EnableSQLite3 { - log.Info("SQLite3 is supported") - } if conf.HasMinWinSvc { log.Info("Builtin Windows Service is supported") } @@ -125,11 +121,7 @@ func InstallInit(c *context.Context) { c.Title("install.install") c.PageIs("Install") - dbOpts := []string{"MySQL", "PostgreSQL", "MSSQL"} - if db.EnableSQLite3 { - dbOpts = append(dbOpts, "SQLite3") - } - c.Data["DbOptions"] = dbOpts + c.Data["DbOptions"] = []string{"MySQL", "PostgreSQL", "MSSQL", "SQLite3"} } func Install(c *context.Context) { @@ -148,9 +140,7 @@ func Install(c *context.Context) { case "mssql": c.Data["CurDbOption"] = "MSSQL" case "sqlite3": - if db.EnableSQLite3 { - c.Data["CurDbOption"] = "SQLite3" - } + c.Data["CurDbOption"] = "SQLite3" } // Application general settings @@ -375,7 +365,7 @@ func InstallPost(c *context.Context, f form.Install) { cfg.Section("log").Key("ROOT_PATH").SetValue(f.LogRootPath) cfg.Section("security").Key("INSTALL_LOCK").SetValue("true") - secretKey, err := tool.RandomString(15) + secretKey, err := strutil.RandomChars(15) if err != nil { c.RenderWithErr(c.Tr("install.secret_key_failed", err), INSTALL, &f) return diff --git a/internal/route/lfs/basic.go b/internal/route/lfs/basic.go new file mode 100644 index 000000000..626f5ff08 --- /dev/null +++ b/internal/route/lfs/basic.go @@ -0,0 +1,167 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package lfs + +import ( + "encoding/json" + "io" + "io/ioutil" + "net/http" + "strconv" + + "gopkg.in/macaron.v1" + log "unknwon.dev/clog/v2" + + "gogs.io/gogs/internal/db" + "gogs.io/gogs/internal/lfsutil" + "gogs.io/gogs/internal/strutil" +) + +const transferBasic = "basic" +const ( + basicOperationUpload = "upload" + basicOperationDownload = "download" +) + +type basicHandler struct { + // The default storage backend for uploading new objects. + defaultStorage lfsutil.Storage + // The list of available storage backends to access objects. + storagers map[lfsutil.Storage]lfsutil.Storager +} + +// DefaultStorager returns the default storage backend. +func (h *basicHandler) DefaultStorager() lfsutil.Storager { + return h.storagers[h.defaultStorage] +} + +// Storager returns the given storage backend. +func (h *basicHandler) Storager(storage lfsutil.Storage) lfsutil.Storager { + return h.storagers[storage] +} + +// GET /{owner}/{repo}.git/info/lfs/object/basic/{oid} +func (h *basicHandler) serveDownload(c *macaron.Context, repo *db.Repository, oid lfsutil.OID) { + object, err := db.LFS.GetObjectByOID(repo.ID, oid) + if err != nil { + if db.IsErrLFSObjectNotExist(err) { + responseJSON(c.Resp, http.StatusNotFound, responseError{ + Message: "Object does not exist", + }) + } else { + internalServerError(c.Resp) + log.Error("Failed to get object [repo_id: %d, oid: %s]: %v", repo.ID, oid, err) + } + return + } + + s := h.Storager(object.Storage) + if s == nil { + internalServerError(c.Resp) + log.Error("Failed to locate the object [repo_id: %d, oid: %s]: storage %q not found", object.RepoID, object.OID, object.Storage) + return + } + + c.Header().Set("Content-Type", "application/octet-stream") + c.Header().Set("Content-Length", strconv.FormatInt(object.Size, 10)) + c.Status(http.StatusOK) + + err = s.Download(object.OID, c.Resp) + if err != nil { + log.Error("Failed to download object [oid: %s]: %v", object.OID, err) + return + } +} + +// PUT /{owner}/{repo}.git/info/lfs/object/basic/{oid} +func (h *basicHandler) serveUpload(c *macaron.Context, repo *db.Repository, oid lfsutil.OID) { + // NOTE: LFS client will retry upload the same object if there was a partial failure, + // therefore we would like to skip ones that already exist. + _, err := db.LFS.GetObjectByOID(repo.ID, oid) + if err == nil { + // Object exists, drain the request body and we're good. + _, _ = io.Copy(ioutil.Discard, c.Req.Request.Body) + c.Req.Request.Body.Close() + c.Status(http.StatusOK) + return + } else if !db.IsErrLFSObjectNotExist(err) { + internalServerError(c.Resp) + log.Error("Failed to get object [repo_id: %d, oid: %s]: %v", repo.ID, oid, err) + return + } + + s := h.DefaultStorager() + written, err := s.Upload(oid, c.Req.Request.Body) + if err != nil { + if err == lfsutil.ErrInvalidOID { + responseJSON(c.Resp, http.StatusBadRequest, responseError{ + Message: err.Error(), + }) + } else { + internalServerError(c.Resp) + log.Error("Failed to upload object [storage: %s, oid: %s]: %v", s.Storage(), oid, err) + } + return + } + + err = db.LFS.CreateObject(repo.ID, oid, written, s.Storage()) + if err != nil { + // NOTE: It is OK to leave the file when the whole operation failed + // with a DB error, a retry on client side can safely overwrite the + // same file as OID is seen as unique to every file. + internalServerError(c.Resp) + log.Error("Failed to create object [repo_id: %d, oid: %s]: %v", repo.ID, oid, err) + return + } + c.Status(http.StatusOK) + + log.Trace("[LFS] Object created %q", oid) +} + +// POST /{owner}/{repo}.git/info/lfs/object/basic/verify +func (h *basicHandler) serveVerify(c *macaron.Context, repo *db.Repository) { + var request basicVerifyRequest + defer c.Req.Request.Body.Close() + err := json.NewDecoder(c.Req.Request.Body).Decode(&request) + if err != nil { + responseJSON(c.Resp, http.StatusBadRequest, responseError{ + Message: strutil.ToUpperFirst(err.Error()), + }) + return + } + + if !lfsutil.ValidOID(request.Oid) { + responseJSON(c.Resp, http.StatusBadRequest, responseError{ + Message: "Invalid oid", + }) + return + } + + object, err := db.LFS.GetObjectByOID(repo.ID, request.Oid) + if err != nil { + if db.IsErrLFSObjectNotExist(err) { + responseJSON(c.Resp, http.StatusNotFound, responseError{ + Message: "Object does not exist", + }) + } else { + internalServerError(c.Resp) + log.Error("Failed to get object [repo_id: %d, oid: %s]: %v", repo.ID, request.Oid, err) + } + return + } + + if object.Size != request.Size { + responseJSON(c.Resp, http.StatusBadRequest, responseError{ + Message: "Object size mismatch", + }) + return + } + c.Status(http.StatusOK) +} + +type basicVerifyRequest struct { + Oid lfsutil.OID `json:"oid"` + Size int64 `json:"size"` +} diff --git a/internal/route/lfs/basic_test.go b/internal/route/lfs/basic_test.go new file mode 100644 index 000000000..db2fbe616 --- /dev/null +++ b/internal/route/lfs/basic_test.go @@ -0,0 +1,288 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package lfs + +import ( + "bytes" + "io" + "io/ioutil" + "net/http" + "net/http/httptest" + "strings" + "testing" + + "github.com/stretchr/testify/assert" + "gopkg.in/macaron.v1" + + "gogs.io/gogs/internal/db" + "gogs.io/gogs/internal/lfsutil" +) + +var _ lfsutil.Storager = (*mockStorage)(nil) + +// mockStorage is a in-memory storage for LFS objects. +type mockStorage struct { + buf *bytes.Buffer +} + +func (s *mockStorage) Storage() lfsutil.Storage { + return "memory" +} + +func (s *mockStorage) Upload(oid lfsutil.OID, rc io.ReadCloser) (int64, error) { + defer rc.Close() + return io.Copy(s.buf, rc) +} + +func (s *mockStorage) Download(oid lfsutil.OID, w io.Writer) error { + _, err := io.Copy(w, s.buf) + return err +} + +func Test_basicHandler_serveDownload(t *testing.T) { + s := &mockStorage{} + basic := &basicHandler{ + defaultStorage: s.Storage(), + storagers: map[lfsutil.Storage]lfsutil.Storager{ + s.Storage(): s, + }, + } + + m := macaron.New() + m.Use(macaron.Renderer()) + m.Use(func(c *macaron.Context) { + c.Map(&db.Repository{Name: "repo"}) + c.Map(lfsutil.OID("ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f")) + }) + m.Get("/", basic.serveDownload) + + tests := []struct { + name string + content string + mockLFSStore *db.MockLFSStore + expStatusCode int + expHeader http.Header + expBody string + }{ + { + name: "object does not exist", + mockLFSStore: &db.MockLFSStore{ + MockGetObjectByOID: func(repoID int64, oid lfsutil.OID) (*db.LFSObject, error) { + return nil, db.ErrLFSObjectNotExist{} + }, + }, + expStatusCode: http.StatusNotFound, + expHeader: http.Header{ + "Content-Type": []string{"application/vnd.git-lfs+json"}, + }, + expBody: `{"message":"Object does not exist"}` + "\n", + }, + { + name: "storage not found", + mockLFSStore: &db.MockLFSStore{ + MockGetObjectByOID: func(repoID int64, oid lfsutil.OID) (*db.LFSObject, error) { + return &db.LFSObject{Storage: "bad_storage"}, nil + }, + }, + expStatusCode: http.StatusInternalServerError, + expHeader: http.Header{ + "Content-Type": []string{"application/vnd.git-lfs+json"}, + }, + expBody: `{"message":"Internal server error"}` + "\n", + }, + + { + name: "object exists", + content: "Hello world!", + mockLFSStore: &db.MockLFSStore{ + MockGetObjectByOID: func(repoID int64, oid lfsutil.OID) (*db.LFSObject, error) { + return &db.LFSObject{ + Size: 12, + Storage: s.Storage(), + }, nil + }, + }, + expStatusCode: http.StatusOK, + expHeader: http.Header{ + "Content-Type": []string{"application/octet-stream"}, + "Content-Length": []string{"12"}, + }, + expBody: "Hello world!", + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + db.SetMockLFSStore(t, test.mockLFSStore) + + s.buf = bytes.NewBufferString(test.content) + + r, err := http.NewRequest("GET", "/", nil) + if err != nil { + t.Fatal(err) + } + + rr := httptest.NewRecorder() + m.ServeHTTP(rr, r) + + resp := rr.Result() + assert.Equal(t, test.expStatusCode, resp.StatusCode) + assert.Equal(t, test.expHeader, resp.Header) + + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, test.expBody, string(body)) + }) + } +} + +func Test_basicHandler_serveUpload(t *testing.T) { + s := &mockStorage{buf: &bytes.Buffer{}} + basic := &basicHandler{ + defaultStorage: s.Storage(), + storagers: map[lfsutil.Storage]lfsutil.Storager{ + s.Storage(): s, + }, + } + + m := macaron.New() + m.Use(macaron.Renderer()) + m.Use(func(c *macaron.Context) { + c.Map(&db.Repository{Name: "repo"}) + c.Map(lfsutil.OID("ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f")) + }) + m.Put("/", basic.serveUpload) + + tests := []struct { + name string + mockLFSStore *db.MockLFSStore + expStatusCode int + expBody string + }{ + { + name: "object already exists", + mockLFSStore: &db.MockLFSStore{ + MockGetObjectByOID: func(repoID int64, oid lfsutil.OID) (*db.LFSObject, error) { + return &db.LFSObject{}, nil + }, + }, + expStatusCode: http.StatusOK, + }, + { + name: "new object", + mockLFSStore: &db.MockLFSStore{ + MockGetObjectByOID: func(repoID int64, oid lfsutil.OID) (*db.LFSObject, error) { + return nil, db.ErrLFSObjectNotExist{} + }, + MockCreateObject: func(repoID int64, oid lfsutil.OID, size int64, storage lfsutil.Storage) error { + return nil + }, + }, + expStatusCode: http.StatusOK, + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + db.SetMockLFSStore(t, test.mockLFSStore) + + r, err := http.NewRequest("PUT", "/", strings.NewReader("Hello world!")) + if err != nil { + t.Fatal(err) + } + + rr := httptest.NewRecorder() + m.ServeHTTP(rr, r) + + resp := rr.Result() + assert.Equal(t, test.expStatusCode, resp.StatusCode) + + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, test.expBody, string(body)) + }) + } +} + +func Test_basicHandler_serveVerify(t *testing.T) { + m := macaron.New() + m.Use(macaron.Renderer()) + m.Use(func(c *macaron.Context) { + c.Map(&db.Repository{Name: "repo"}) + }) + m.Post("/", (&basicHandler{}).serveVerify) + + tests := []struct { + name string + body string + mockLFSStore *db.MockLFSStore + expStatusCode int + expBody string + }{ + { + name: "invalid oid", + body: `{"oid": "bad_oid"}`, + expStatusCode: http.StatusBadRequest, + expBody: `{"message":"Invalid oid"}` + "\n", + }, + { + name: "object does not exist", + body: `{"oid":"ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f"}`, + mockLFSStore: &db.MockLFSStore{ + MockGetObjectByOID: func(repoID int64, oid lfsutil.OID) (*db.LFSObject, error) { + return nil, db.ErrLFSObjectNotExist{} + }, + }, + expStatusCode: http.StatusNotFound, + expBody: `{"message":"Object does not exist"}` + "\n", + }, + { + name: "object size mismatch", + body: `{"oid":"ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f"}`, + mockLFSStore: &db.MockLFSStore{ + MockGetObjectByOID: func(repoID int64, oid lfsutil.OID) (*db.LFSObject, error) { + return &db.LFSObject{Size: 12}, nil + }, + }, + expStatusCode: http.StatusBadRequest, + expBody: `{"message":"Object size mismatch"}` + "\n", + }, + + { + name: "object exists", + body: `{"oid":"ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f", "size":12}`, + mockLFSStore: &db.MockLFSStore{ + MockGetObjectByOID: func(repoID int64, oid lfsutil.OID) (*db.LFSObject, error) { + return &db.LFSObject{Size: 12}, nil + }, + }, + expStatusCode: http.StatusOK, + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + db.SetMockLFSStore(t, test.mockLFSStore) + + r, err := http.NewRequest("POST", "/", strings.NewReader(test.body)) + if err != nil { + t.Fatal(err) + } + + rr := httptest.NewRecorder() + m.ServeHTTP(rr, r) + + resp := rr.Result() + assert.Equal(t, test.expStatusCode, resp.StatusCode) + + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, test.expBody, string(body)) + }) + } +} diff --git a/internal/route/lfs/batch.go b/internal/route/lfs/batch.go new file mode 100644 index 000000000..4f720948e --- /dev/null +++ b/internal/route/lfs/batch.go @@ -0,0 +1,176 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package lfs + +import ( + "fmt" + "net/http" + + jsoniter "github.com/json-iterator/go" + "gopkg.in/macaron.v1" + log "unknwon.dev/clog/v2" + + "gogs.io/gogs/internal/conf" + "gogs.io/gogs/internal/db" + "gogs.io/gogs/internal/lfsutil" + "gogs.io/gogs/internal/strutil" +) + +// POST /{owner}/{repo}.git/info/lfs/object/batch +func serveBatch(c *macaron.Context, owner *db.User, repo *db.Repository) { + var request batchRequest + defer c.Req.Request.Body.Close() + err := jsoniter.NewDecoder(c.Req.Request.Body).Decode(&request) + if err != nil { + responseJSON(c.Resp, http.StatusBadRequest, responseError{ + Message: strutil.ToUpperFirst(err.Error()), + }) + return + } + + // NOTE: We only support basic transfer as of now. + transfer := transferBasic + // Example: https://try.gogs.io/gogs/gogs.git/info/lfs/object/basic + baseHref := fmt.Sprintf("%s%s/%s.git/info/lfs/objects/basic", conf.Server.ExternalURL, owner.Name, repo.Name) + + objects := make([]batchObject, 0, len(request.Objects)) + switch request.Operation { + case basicOperationUpload: + for _, obj := range request.Objects { + var actions batchActions + if lfsutil.ValidOID(obj.Oid) { + actions = batchActions{ + Upload: &batchAction{ + Href: fmt.Sprintf("%s/%s", baseHref, obj.Oid), + }, + Verify: &batchAction{ + Href: fmt.Sprintf("%s/verify", baseHref), + }, + } + } else { + actions = batchActions{ + Error: &batchError{ + Code: http.StatusUnprocessableEntity, + Message: "Object has invalid oid", + }, + } + } + + objects = append(objects, batchObject{ + Oid: obj.Oid, + Size: obj.Size, + Actions: actions, + }) + } + + case basicOperationDownload: + oids := make([]lfsutil.OID, 0, len(request.Objects)) + for _, obj := range request.Objects { + oids = append(oids, obj.Oid) + } + stored, err := db.LFS.GetObjectsByOIDs(repo.ID, oids...) + if err != nil { + internalServerError(c.Resp) + log.Error("Failed to get objects [repo_id: %d, oids: %v]: %v", repo.ID, oids, err) + return + } + storedSet := make(map[lfsutil.OID]*db.LFSObject, len(stored)) + for _, obj := range stored { + storedSet[obj.OID] = obj + } + + for _, obj := range request.Objects { + var actions batchActions + if stored := storedSet[obj.Oid]; stored != nil { + if stored.Size != obj.Size { + actions.Error = &batchError{ + Code: http.StatusUnprocessableEntity, + Message: "Object size mismatch", + } + } else { + actions.Download = &batchAction{ + Href: fmt.Sprintf("%s/%s", baseHref, obj.Oid), + } + } + } else { + actions.Error = &batchError{ + Code: http.StatusNotFound, + Message: "Object does not exist", + } + } + + objects = append(objects, batchObject{ + Oid: obj.Oid, + Size: obj.Size, + Actions: actions, + }) + } + + default: + responseJSON(c.Resp, http.StatusBadRequest, responseError{ + Message: "Operation not recognized", + }) + return + } + + responseJSON(c.Resp, http.StatusOK, batchResponse{ + Transfer: transfer, + Objects: objects, + }) +} + +// batchRequest defines the request payload for the batch endpoint. +type batchRequest struct { + Operation string `json:"operation"` + Objects []struct { + Oid lfsutil.OID `json:"oid"` + Size int64 `json:"size"` + } `json:"objects"` +} + +type batchError struct { + Code int `json:"code"` + Message string `json:"message"` +} + +type batchAction struct { + Href string `json:"href"` +} + +type batchActions struct { + Download *batchAction `json:"download,omitempty"` + Upload *batchAction `json:"upload,omitempty"` + Verify *batchAction `json:"verify,omitempty"` + Error *batchError `json:"error,omitempty"` +} + +type batchObject struct { + Oid lfsutil.OID `json:"oid"` + Size int64 `json:"size"` + Actions batchActions `json:"actions"` +} + +// batchResponse defines the response payload for the batch endpoint. +type batchResponse struct { + Transfer string `json:"transfer"` + Objects []batchObject `json:"objects"` +} + +type responseError struct { + Message string `json:"message"` +} + +const contentType = "application/vnd.git-lfs+json" + +func responseJSON(w http.ResponseWriter, status int, v interface{}) { + w.Header().Set("Content-Type", contentType) + w.WriteHeader(status) + + err := jsoniter.NewEncoder(w).Encode(v) + if err != nil { + log.Error("Failed to encode JSON: %v", err) + return + } +} diff --git a/internal/route/lfs/batch_test.go b/internal/route/lfs/batch_test.go new file mode 100644 index 000000000..61cfb562c --- /dev/null +++ b/internal/route/lfs/batch_test.go @@ -0,0 +1,106 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package lfs + +import ( + "bytes" + "io/ioutil" + "net/http" + "net/http/httptest" + "testing" + + "github.com/stretchr/testify/assert" + "gopkg.in/macaron.v1" + + "gogs.io/gogs/internal/conf" + "gogs.io/gogs/internal/db" + "gogs.io/gogs/internal/lfsutil" +) + +func Test_serveBatch(t *testing.T) { + conf.SetMockServer(t, conf.ServerOpts{ + ExternalURL: "https://gogs.example.com/", + }) + + m := macaron.New() + m.Use(func(c *macaron.Context) { + c.Map(&db.User{Name: "owner"}) + c.Map(&db.Repository{Name: "repo"}) + }) + m.Post("/", serveBatch) + + tests := []struct { + name string + body string + mockLFSStore *db.MockLFSStore + expStatusCode int + expBody string + }{ + { + name: "unrecognized operation", + body: `{"operation": "update"}`, + expStatusCode: http.StatusBadRequest, + expBody: `{"message":"Operation not recognized"}` + "\n", + }, + { + name: "upload: contains invalid oid", + body: `{ +"operation": "upload", +"objects": [ + {"oid": "bad_oid", "size": 123}, + {"oid": "ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f", "size": 123} +]}`, + expStatusCode: http.StatusOK, + expBody: `{"transfer":"basic","objects":[{"oid":"bad_oid","size":123,"actions":{"error":{"code":422,"message":"Object has invalid oid"}}},{"oid":"ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f","size":123,"actions":{"upload":{"href":"https://gogs.example.com/owner/repo.git/info/lfs/objects/basic/ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f"},"verify":{"href":"https://gogs.example.com/owner/repo.git/info/lfs/objects/basic/verify"}}}]}` + "\n", + }, + { + name: "download: contains non-existent oid and mismatched size", + body: `{ +"operation": "download", +"objects": [ + {"oid": "bad_oid", "size": 123}, + {"oid": "ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f", "size": 123}, + {"oid": "5cac0a318669fadfee734fb340a5f5b70b428ac57a9f4b109cb6e150b2ba7e57", "size": 456} +]}`, + mockLFSStore: &db.MockLFSStore{ + MockGetObjectsByOIDs: func(repoID int64, oids ...lfsutil.OID) ([]*db.LFSObject, error) { + return []*db.LFSObject{ + { + OID: "ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f", + Size: 1234, + }, { + OID: "5cac0a318669fadfee734fb340a5f5b70b428ac57a9f4b109cb6e150b2ba7e57", + Size: 456, + }, + }, nil + }, + }, + expStatusCode: http.StatusOK, + expBody: `{"transfer":"basic","objects":[{"oid":"bad_oid","size":123,"actions":{"error":{"code":404,"message":"Object does not exist"}}},{"oid":"ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f","size":123,"actions":{"error":{"code":422,"message":"Object size mismatch"}}},{"oid":"5cac0a318669fadfee734fb340a5f5b70b428ac57a9f4b109cb6e150b2ba7e57","size":456,"actions":{"download":{"href":"https://gogs.example.com/owner/repo.git/info/lfs/objects/basic/5cac0a318669fadfee734fb340a5f5b70b428ac57a9f4b109cb6e150b2ba7e57"}}}]}` + "\n", + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + db.SetMockLFSStore(t, test.mockLFSStore) + + r, err := http.NewRequest("POST", "/", bytes.NewBufferString(test.body)) + if err != nil { + t.Fatal(err) + } + + rr := httptest.NewRecorder() + m.ServeHTTP(rr, r) + + resp := rr.Result() + assert.Equal(t, test.expStatusCode, resp.StatusCode) + + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, test.expBody, string(body)) + }) + } +} diff --git a/internal/route/lfs/main_test.go b/internal/route/lfs/main_test.go new file mode 100644 index 000000000..ddc04c1b4 --- /dev/null +++ b/internal/route/lfs/main_test.go @@ -0,0 +1,30 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package lfs + +import ( + "flag" + "fmt" + "os" + "testing" + + log "unknwon.dev/clog/v2" + + "gogs.io/gogs/internal/testutil" +) + +func TestMain(m *testing.M) { + flag.Parse() + if !testing.Verbose() { + // Remove the primary logger and register a noop logger. + log.Remove(log.DefaultConsoleName) + err := log.New("noop", testutil.InitNoopLogger) + if err != nil { + fmt.Println(err) + os.Exit(1) + } + } + os.Exit(m.Run()) +} diff --git a/internal/route/lfs/route.go b/internal/route/lfs/route.go new file mode 100644 index 000000000..a5c253031 --- /dev/null +++ b/internal/route/lfs/route.go @@ -0,0 +1,173 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package lfs + +import ( + "net/http" + "strings" + + "gopkg.in/macaron.v1" + log "unknwon.dev/clog/v2" + + "gogs.io/gogs/internal/authutil" + "gogs.io/gogs/internal/conf" + "gogs.io/gogs/internal/db" + "gogs.io/gogs/internal/lfsutil" +) + +// RegisterRoutes registers LFS routes using given router, and inherits all groups and middleware. +func RegisterRoutes(r *macaron.Router) { + verifyAccept := verifyHeader("Accept", contentType, http.StatusNotAcceptable) + verifyContentTypeJSON := verifyHeader("Content-Type", contentType, http.StatusBadRequest) + verifyContentTypeStream := verifyHeader("Content-Type", "application/octet-stream", http.StatusBadRequest) + + r.Group("", func() { + r.Post("/objects/batch", authorize(db.AccessModeRead), verifyAccept, verifyContentTypeJSON, serveBatch) + r.Group("/objects/basic", func() { + + basic := &basicHandler{ + defaultStorage: lfsutil.Storage(conf.LFS.Storage), + storagers: map[lfsutil.Storage]lfsutil.Storager{ + lfsutil.StorageLocal: &lfsutil.LocalStorage{Root: conf.LFS.ObjectsPath}, + }, + } + r.Combo("/:oid", verifyOID()). + Get(authorize(db.AccessModeRead), basic.serveDownload). + Put(authorize(db.AccessModeWrite), verifyContentTypeStream, basic.serveUpload) + r.Post("/verify", authorize(db.AccessModeWrite), verifyAccept, verifyContentTypeJSON, basic.serveVerify) + }) + }, authenticate()) +} + +// authenticate tries to authenticate user via HTTP Basic Auth. It first tries to authenticate +// as plain username and password, then use username as access token if previous step failed. +func authenticate() macaron.Handler { + askCredentials := func(w http.ResponseWriter) { + w.Header().Set("Lfs-Authenticate", `Basic realm="Git LFS"`) + responseJSON(w, http.StatusUnauthorized, responseError{ + Message: "Credentials needed", + }) + } + + return func(c *macaron.Context) { + username, password := authutil.DecodeBasic(c.Req.Header) + if username == "" { + askCredentials(c.Resp) + return + } + + user, err := db.Users.Authenticate(username, password, -1) + if err != nil && !db.IsErrUserNotExist(err) { + internalServerError(c.Resp) + log.Error("Failed to authenticate user [name: %s]: %v", username, err) + return + } + + if err == nil && user.IsEnabledTwoFactor() { + c.Error(http.StatusBadRequest, "Users with 2FA enabled are not allowed to authenticate via username and password.") + return + } + + // If username and password authentication failed, try again using username as an access token. + if db.IsErrUserNotExist(err) { + token, err := db.AccessTokens.GetBySHA(username) + if err != nil { + if db.IsErrAccessTokenNotExist(err) { + askCredentials(c.Resp) + } else { + internalServerError(c.Resp) + log.Error("Failed to get access token [sha: %s]: %v", username, err) + } + return + } + if err = db.AccessTokens.Save(token); err != nil { + log.Error("Failed to update access token: %v", err) + } + + user, err = db.Users.GetByID(token.UserID) + if err != nil { + // Once we found the token, we're supposed to find its related user, + // thus any error is unexpected. + internalServerError(c.Resp) + log.Error("Failed to get user [id: %d]: %v", token.UserID, err) + return + } + } + + log.Trace("[LFS] Authenticated user: %s", user.Name) + + c.Map(user) + } +} + +// authorize tries to authorize the user to the context repository with given access mode. +func authorize(mode db.AccessMode) macaron.Handler { + return func(c *macaron.Context, actor *db.User) { + username := c.Params(":username") + reponame := strings.TrimSuffix(c.Params(":reponame"), ".git") + + owner, err := db.Users.GetByUsername(username) + if err != nil { + if db.IsErrUserNotExist(err) { + c.Status(http.StatusNotFound) + } else { + internalServerError(c.Resp) + log.Error("Failed to get user [name: %s]: %v", username, err) + } + return + } + + repo, err := db.Repos.GetByName(owner.ID, reponame) + if err != nil { + if db.IsErrRepoNotExist(err) { + c.Status(http.StatusNotFound) + } else { + internalServerError(c.Resp) + log.Error("Failed to get repository [owner_id: %d, name: %s]: %v", owner.ID, reponame, err) + } + return + } + + if !db.Perms.Authorize(actor.ID, repo, mode) { + c.Status(http.StatusNotFound) + return + } + + c.Map(owner) // NOTE: Override actor + c.Map(repo) + } +} + +// verifyHeader checks if the HTTP header contains given value. +// When not, response given "failCode" as status code. +func verifyHeader(key, value string, failCode int) macaron.Handler { + return func(c *macaron.Context) { + if !strings.Contains(c.Req.Header.Get(key), value) { + c.Status(failCode) + return + } + } +} + +// verifyOID checks if the ":oid" URL parameter is valid. +func verifyOID() macaron.Handler { + return func(c *macaron.Context) { + oid := lfsutil.OID(c.Params(":oid")) + if !lfsutil.ValidOID(oid) { + responseJSON(c.Resp, http.StatusBadRequest, responseError{ + Message: "Invalid oid", + }) + return + } + + c.Map(oid) + } +} + +func internalServerError(w http.ResponseWriter) { + responseJSON(w, http.StatusInternalServerError, responseError{ + Message: "Internal server error", + }) +} diff --git a/internal/route/lfs/route_test.go b/internal/route/lfs/route_test.go new file mode 100644 index 000000000..d2a95e36e --- /dev/null +++ b/internal/route/lfs/route_test.go @@ -0,0 +1,378 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package lfs + +import ( + "fmt" + "io/ioutil" + "net/http" + "net/http/httptest" + "testing" + + "github.com/stretchr/testify/assert" + "gopkg.in/macaron.v1" + + "gogs.io/gogs/internal/db" + "gogs.io/gogs/internal/lfsutil" +) + +func Test_authenticate(t *testing.T) { + m := macaron.New() + m.Use(macaron.Renderer()) + m.Get("/", authenticate(), func(w http.ResponseWriter, user *db.User) { + fmt.Fprintf(w, "ID: %d, Name: %s", user.ID, user.Name) + }) + + tests := []struct { + name string + header http.Header + mockUsersStore *db.MockUsersStore + mockTwoFactorsStore *db.MockTwoFactorsStore + mockAccessTokensStore *db.MockAccessTokensStore + expStatusCode int + expHeader http.Header + expBody string + }{ + { + name: "no authorization", + expStatusCode: http.StatusUnauthorized, + expHeader: http.Header{ + "Lfs-Authenticate": []string{`Basic realm="Git LFS"`}, + "Content-Type": []string{"application/vnd.git-lfs+json"}, + }, + expBody: `{"message":"Credentials needed"}` + "\n", + }, + { + name: "user has 2FA enabled", + header: http.Header{ + "Authorization": []string{"Basic dXNlcm5hbWU6cGFzc3dvcmQ="}, + }, + mockUsersStore: &db.MockUsersStore{ + MockAuthenticate: func(username, password string, loginSourceID int64) (*db.User, error) { + return &db.User{}, nil + }, + }, + mockTwoFactorsStore: &db.MockTwoFactorsStore{ + MockIsUserEnabled: func(userID int64) bool { + return true + }, + }, + expStatusCode: http.StatusBadRequest, + expHeader: http.Header{}, + expBody: "Users with 2FA enabled are not allowed to authenticate via username and password.", + }, + { + name: "both user and access token do not exist", + header: http.Header{ + "Authorization": []string{"Basic dXNlcm5hbWU="}, + }, + mockUsersStore: &db.MockUsersStore{ + MockAuthenticate: func(username, password string, loginSourceID int64) (*db.User, error) { + return nil, db.ErrUserNotExist{} + }, + }, + mockAccessTokensStore: &db.MockAccessTokensStore{ + MockGetBySHA: func(sha string) (*db.AccessToken, error) { + return nil, db.ErrAccessTokenNotExist{} + }, + }, + expStatusCode: http.StatusUnauthorized, + expHeader: http.Header{ + "Lfs-Authenticate": []string{`Basic realm="Git LFS"`}, + "Content-Type": []string{"application/vnd.git-lfs+json"}, + }, + expBody: `{"message":"Credentials needed"}` + "\n", + }, + + { + name: "authenticated by username and password", + header: http.Header{ + "Authorization": []string{"Basic dXNlcm5hbWU6cGFzc3dvcmQ="}, + }, + mockUsersStore: &db.MockUsersStore{ + MockAuthenticate: func(username, password string, loginSourceID int64) (*db.User, error) { + return &db.User{ID: 1, Name: "unknwon"}, nil + }, + }, + mockTwoFactorsStore: &db.MockTwoFactorsStore{ + MockIsUserEnabled: func(userID int64) bool { + return false + }, + }, + expStatusCode: http.StatusOK, + expHeader: http.Header{}, + expBody: "ID: 1, Name: unknwon", + }, + { + name: "authenticate by access token", + header: http.Header{ + "Authorization": []string{"Basic dXNlcm5hbWU="}, + }, + mockUsersStore: &db.MockUsersStore{ + MockAuthenticate: func(username, password string, loginSourceID int64) (*db.User, error) { + return nil, db.ErrUserNotExist{} + }, + MockGetByID: func(id int64) (*db.User, error) { + return &db.User{ID: 1, Name: "unknwon"}, nil + }, + }, + mockAccessTokensStore: &db.MockAccessTokensStore{ + MockGetBySHA: func(sha string) (*db.AccessToken, error) { + return &db.AccessToken{}, nil + }, + MockSave: func(t *db.AccessToken) error { + return nil + }, + }, + expStatusCode: http.StatusOK, + expHeader: http.Header{}, + expBody: "ID: 1, Name: unknwon", + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + db.SetMockUsersStore(t, test.mockUsersStore) + db.SetMockTwoFactorsStore(t, test.mockTwoFactorsStore) + db.SetMockAccessTokensStore(t, test.mockAccessTokensStore) + + r, err := http.NewRequest("GET", "/", nil) + if err != nil { + t.Fatal(err) + } + r.Header = test.header + + rr := httptest.NewRecorder() + m.ServeHTTP(rr, r) + + resp := rr.Result() + assert.Equal(t, test.expStatusCode, resp.StatusCode) + assert.Equal(t, test.expHeader, resp.Header) + + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, test.expBody, string(body)) + }) + } +} + +func Test_authorize(t *testing.T) { + tests := []struct { + name string + authroize macaron.Handler + mockUsersStore *db.MockUsersStore + mockReposStore *db.MockReposStore + mockPermsStore *db.MockPermsStore + expStatusCode int + expBody string + }{ + { + name: "user does not exist", + authroize: authorize(db.AccessModeNone), + mockUsersStore: &db.MockUsersStore{ + MockGetByUsername: func(username string) (*db.User, error) { + return nil, db.ErrUserNotExist{} + }, + }, + expStatusCode: http.StatusNotFound, + }, + { + name: "repository does not exist", + authroize: authorize(db.AccessModeNone), + mockUsersStore: &db.MockUsersStore{ + MockGetByUsername: func(username string) (*db.User, error) { + return &db.User{Name: username}, nil + }, + }, + mockReposStore: &db.MockReposStore{ + MockGetByName: func(ownerID int64, name string) (*db.Repository, error) { + return nil, db.ErrRepoNotExist{} + }, + }, + expStatusCode: http.StatusNotFound, + }, + { + name: "actor is not authorized", + authroize: authorize(db.AccessModeWrite), + mockUsersStore: &db.MockUsersStore{ + MockGetByUsername: func(username string) (*db.User, error) { + return &db.User{Name: username}, nil + }, + }, + mockReposStore: &db.MockReposStore{ + MockGetByName: func(ownerID int64, name string) (*db.Repository, error) { + return &db.Repository{Name: name}, nil + }, + }, + mockPermsStore: &db.MockPermsStore{ + MockAuthorize: func(userID int64, repo *db.Repository, desired db.AccessMode) bool { + return desired <= db.AccessModeRead + }, + }, + expStatusCode: http.StatusNotFound, + }, + + { + name: "actor is authorized", + authroize: authorize(db.AccessModeRead), + mockUsersStore: &db.MockUsersStore{ + MockGetByUsername: func(username string) (*db.User, error) { + return &db.User{Name: username}, nil + }, + }, + mockReposStore: &db.MockReposStore{ + MockGetByName: func(ownerID int64, name string) (*db.Repository, error) { + return &db.Repository{Name: name}, nil + }, + }, + mockPermsStore: &db.MockPermsStore{ + MockAuthorize: func(userID int64, repo *db.Repository, desired db.AccessMode) bool { + return desired <= db.AccessModeRead + }, + }, + expStatusCode: http.StatusOK, + expBody: "owner.Name: owner, repo.Name: repo", + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + db.SetMockUsersStore(t, test.mockUsersStore) + db.SetMockReposStore(t, test.mockReposStore) + db.SetMockPermsStore(t, test.mockPermsStore) + + m := macaron.New() + m.Use(macaron.Renderer()) + m.Use(func(c *macaron.Context) { + c.Map(&db.User{}) + }) + m.Get("/:username/:reponame", test.authroize, func(w http.ResponseWriter, owner *db.User, repo *db.Repository) { + fmt.Fprintf(w, "owner.Name: %s, repo.Name: %s", owner.Name, repo.Name) + }) + + r, err := http.NewRequest("GET", "/owner/repo", nil) + if err != nil { + t.Fatal(err) + } + + rr := httptest.NewRecorder() + m.ServeHTTP(rr, r) + + resp := rr.Result() + assert.Equal(t, test.expStatusCode, resp.StatusCode) + + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, test.expBody, string(body)) + }) + } +} + +func Test_verifyHeader(t *testing.T) { + tests := []struct { + name string + verifyHeader macaron.Handler + header http.Header + expStatusCode int + }{ + { + name: "header not found", + verifyHeader: verifyHeader("Accept", contentType, http.StatusNotAcceptable), + expStatusCode: http.StatusNotAcceptable, + }, + + { + name: "header found", + verifyHeader: verifyHeader("Accept", "application/vnd.git-lfs+json", http.StatusNotAcceptable), + header: http.Header{ + "Accept": []string{"application/vnd.git-lfs+json; charset=utf-8"}, + }, + expStatusCode: http.StatusOK, + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + m := macaron.New() + m.Use(macaron.Renderer()) + m.Get("/", test.verifyHeader) + + r, err := http.NewRequest("GET", "/", nil) + if err != nil { + t.Fatal(err) + } + r.Header = test.header + + rr := httptest.NewRecorder() + m.ServeHTTP(rr, r) + + resp := rr.Result() + assert.Equal(t, test.expStatusCode, resp.StatusCode) + }) + } +} + +func Test_verifyOID(t *testing.T) { + m := macaron.New() + m.Get("/:oid", verifyOID(), func(w http.ResponseWriter, oid lfsutil.OID) { + fmt.Fprintf(w, "oid: %s", oid) + }) + + tests := []struct { + name string + url string + expStatusCode int + expBody string + }{ + { + name: "bad oid", + url: "/bad_oid", + expStatusCode: http.StatusBadRequest, + expBody: `{"message":"Invalid oid"}` + "\n", + }, + + { + name: "good oid", + url: "/ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f", + expStatusCode: http.StatusOK, + expBody: "oid: ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f", + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + r, err := http.NewRequest("GET", test.url, nil) + if err != nil { + t.Fatal(err) + } + + rr := httptest.NewRecorder() + m.ServeHTTP(rr, r) + + resp := rr.Result() + assert.Equal(t, test.expStatusCode, resp.StatusCode) + + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, test.expBody, string(body)) + }) + } +} + +func Test_internalServerError(t *testing.T) { + rr := httptest.NewRecorder() + internalServerError(rr) + + resp := rr.Result() + assert.Equal(t, http.StatusInternalServerError, resp.StatusCode) + + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + t.Fatal(err) + } + assert.Equal(t, `{"message":"Internal server error"}`+"\n", string(body)) +} diff --git a/internal/route/org/org.go b/internal/route/org/org.go index e0c358acd..424cbd153 100644 --- a/internal/route/org/org.go +++ b/internal/route/org/org.go @@ -32,7 +32,7 @@ func CreatePost(c *context.Context, f form.CreateOrg) { org := &db.User{ Name: f.OrgName, IsActive: true, - Type: db.USER_TYPE_ORGANIZATION, + Type: db.UserOrganization, } if err := db.CreateOrganization(org, c.User); err != nil { @@ -40,10 +40,8 @@ func CreatePost(c *context.Context, f form.CreateOrg) { switch { case db.IsErrUserAlreadyExist(err): c.RenderWithErr(c.Tr("form.org_name_been_taken"), CREATE, &f) - case db.IsErrNameReserved(err): - c.RenderWithErr(c.Tr("org.form.name_reserved", err.(db.ErrNameReserved).Name), CREATE, &f) - case db.IsErrNamePatternNotAllowed(err): - c.RenderWithErr(c.Tr("org.form.name_pattern_not_allowed", err.(db.ErrNamePatternNotAllowed).Pattern), CREATE, &f) + case db.IsErrNameNotAllowed(err): + c.RenderWithErr(c.Tr("org.form.name_not_allowed", err.(db.ErrNameNotAllowed).Value()), CREATE, &f) default: c.Error(err, "create organization") } diff --git a/internal/route/org/setting.go b/internal/route/org/setting.go index 15b576233..e3b2bf3c5 100644 --- a/internal/route/org/setting.go +++ b/internal/route/org/setting.go @@ -51,10 +51,8 @@ func SettingsPost(c *context.Context, f form.UpdateOrgSetting) { } else if err = db.ChangeUserName(org, f.Name); err != nil { c.Data["OrgName"] = true switch { - case db.IsErrNameReserved(err): - c.RenderWithErr(c.Tr("user.form.name_reserved"), SETTINGS_OPTIONS, &f) - case db.IsErrNamePatternNotAllowed(err): - c.RenderWithErr(c.Tr("user.form.name_pattern_not_allowed"), SETTINGS_OPTIONS, &f) + case db.IsErrNameNotAllowed(err): + c.RenderWithErr(c.Tr("user.form.name_not_allowed", err.(db.ErrNameNotAllowed).Value()), SETTINGS_OPTIONS, &f) default: c.Error(err, "change user name") } @@ -110,7 +108,7 @@ func SettingsDelete(c *context.Context) { org := c.Org.Organization if c.Req.Method == "POST" { - if _, err := db.UserLogin(c.User.Name, c.Query("password"), c.User.LoginSource); err != nil { + if _, err := db.Users.Authenticate(c.User.Name, c.Query("password"), c.User.LoginSource); err != nil { if db.IsErrUserNotExist(err) { c.RenderWithErr(c.Tr("form.enterred_invalid_password"), SETTINGS_DELETE, nil) } else { diff --git a/internal/route/org/teams.go b/internal/route/org/teams.go index a703a82d6..c681ec9fb 100644 --- a/internal/route/org/teams.go +++ b/internal/route/org/teams.go @@ -172,8 +172,8 @@ func NewTeamPost(c *context.Context, f form.CreateTeam) { switch { case db.IsErrTeamAlreadyExist(err): c.RenderWithErr(c.Tr("form.team_name_been_taken"), TEAM_NEW, &f) - case db.IsErrNameReserved(err): - c.RenderWithErr(c.Tr("org.form.team_name_reserved", err.(db.ErrNameReserved).Name), TEAM_NEW, &f) + case db.IsErrNameNotAllowed(err): + c.RenderWithErr(c.Tr("org.form.team_name_not_allowed", err.(db.ErrNameNotAllowed).Value()), TEAM_NEW, &f) default: c.Error(err, "new team") } @@ -228,11 +228,11 @@ func EditTeamPost(c *context.Context, f form.CreateTeam) { var auth db.AccessMode switch f.Permission { case "read": - auth = db.ACCESS_MODE_READ + auth = db.AccessModeRead case "write": - auth = db.ACCESS_MODE_WRITE + auth = db.AccessModeWrite case "admin": - auth = db.ACCESS_MODE_ADMIN + auth = db.AccessModeAdmin default: c.Status(http.StatusUnauthorized) return diff --git a/internal/route/repo/commit.go b/internal/route/repo/commit.go index e8ff33808..00be5b1a5 100644 --- a/internal/route/repo/commit.go +++ b/internal/route/repo/commit.go @@ -152,16 +152,18 @@ func Diff(c *context.Context) { c.Data["Username"] = userName c.Data["Reponame"] = repoName c.Data["IsImageFile"] = commit.IsImageFile + c.Data["IsImageFileByIndex"] = commit.IsImageFileByIndex c.Data["Commit"] = commit c.Data["Author"] = db.ValidateCommitWithEmail(commit) c.Data["Diff"] = diff c.Data["Parents"] = parents c.Data["DiffNotAvailable"] = diff.NumFiles() == 0 c.Data["SourcePath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "src", commitID) + c.Data["RawPath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "raw", commitID) if commit.ParentsCount() > 0 { c.Data["BeforeSourcePath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "src", parents[0]) + c.Data["BeforeRawPath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "raw", parents[0]) } - c.Data["RawPath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "raw", commitID) c.Success(DIFF) } @@ -213,12 +215,14 @@ func CompareDiff(c *context.Context) { c.Data["Username"] = userName c.Data["Reponame"] = repoName c.Data["IsImageFile"] = commit.IsImageFile + c.Data["IsImageFileByIndex"] = commit.IsImageFileByIndex c.Data["Title"] = "Comparing " + tool.ShortSHA1(beforeCommitID) + "..." + tool.ShortSHA1(afterCommitID) + " · " + userName + "/" + repoName c.Data["Commit"] = commit c.Data["Diff"] = diff c.Data["DiffNotAvailable"] = diff.NumFiles() == 0 c.Data["SourcePath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "src", afterCommitID) - c.Data["BeforeSourcePath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "src", beforeCommitID) c.Data["RawPath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "raw", afterCommitID) + c.Data["BeforeSourcePath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "src", beforeCommitID) + c.Data["BeforeRawPath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "raw", beforeCommitID) c.Success(DIFF) } diff --git a/internal/route/repo/editor.go b/internal/route/repo/editor.go index cd71ff798..ee0048037 100644 --- a/internal/route/repo/editor.go +++ b/internal/route/repo/editor.go @@ -24,10 +24,10 @@ import ( ) const ( - EDIT_FILE = "repo/editor/edit" - EDIT_DIFF_PREVIEW = "repo/editor/diff_preview" - DELETE_FILE = "repo/editor/delete" - UPLOAD_FILE = "repo/editor/upload" + tmplEditorEdit = "repo/editor/edit" + tmplEditorDiffPreview = "repo/editor/diff_preview" + tmplEditorDelete = "repo/editor/delete" + tmplEditorUpload = "repo/editor/upload" ) // getParentTreeFields returns list of parent tree names and corresponding tree paths @@ -108,7 +108,7 @@ func editFile(c *context.Context, isNewFile bool) { c.Data["PreviewableFileModes"] = strings.Join(conf.Repository.Editor.PreviewableFileModes, ",") c.Data["EditorconfigURLPrefix"] = fmt.Sprintf("%s/api/v1/repos/%s/editorconfig/", conf.Server.Subpath, c.Repo.Repository.FullName()) - c.Success(EDIT_FILE) + c.Success(tmplEditorEdit) } func EditFile(c *context.Context) { @@ -154,20 +154,20 @@ func editFilePost(c *context.Context, f form.EditRepoFile, isNewFile bool) { c.Data["PreviewableFileModes"] = strings.Join(conf.Repository.Editor.PreviewableFileModes, ",") if c.HasError() { - c.Success(EDIT_FILE) + c.Success(tmplEditorEdit) return } if len(f.TreePath) == 0 { c.FormErr("TreePath") - c.RenderWithErr(c.Tr("repo.editor.filename_cannot_be_empty"), EDIT_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.filename_cannot_be_empty"), tmplEditorEdit, &f) return } if oldBranchName != branchName { if _, err := c.Repo.Repository.GetBranch(branchName); err == nil { c.FormErr("NewBranchName") - c.RenderWithErr(c.Tr("repo.editor.branch_already_exists", branchName), EDIT_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.branch_already_exists", branchName), tmplEditorEdit, &f) return } } @@ -188,17 +188,17 @@ func editFilePost(c *context.Context, f form.EditRepoFile, isNewFile bool) { if index != len(treeNames)-1 { if !entry.IsTree() { c.FormErr("TreePath") - c.RenderWithErr(c.Tr("repo.editor.directory_is_a_file", part), EDIT_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.directory_is_a_file", part), tmplEditorEdit, &f) return } } else { if entry.IsSymlink() { c.FormErr("TreePath") - c.RenderWithErr(c.Tr("repo.editor.file_is_a_symlink", part), EDIT_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.file_is_a_symlink", part), tmplEditorEdit, &f) return } else if entry.IsTree() { c.FormErr("TreePath") - c.RenderWithErr(c.Tr("repo.editor.filename_is_a_directory", part), EDIT_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.filename_is_a_directory", part), tmplEditorEdit, &f) return } } @@ -209,7 +209,7 @@ func editFilePost(c *context.Context, f form.EditRepoFile, isNewFile bool) { if err != nil { if gitutil.IsErrRevisionNotExist(err) { c.FormErr("TreePath") - c.RenderWithErr(c.Tr("repo.editor.file_editing_no_longer_exists", oldTreePath), EDIT_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.file_editing_no_longer_exists", oldTreePath), tmplEditorEdit, &f) } else { c.Error(err, "get tree entry") } @@ -224,7 +224,7 @@ func editFilePost(c *context.Context, f form.EditRepoFile, isNewFile bool) { for _, file := range files { if file == f.TreePath { - c.RenderWithErr(c.Tr("repo.editor.file_changed_while_editing", c.Repo.RepoLink+"/compare/"+lastCommit+"..."+c.Repo.CommitID), EDIT_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.file_changed_while_editing", c.Repo.RepoLink+"/compare/"+lastCommit+"..."+c.Repo.CommitID), tmplEditorEdit, &f) return } } @@ -242,7 +242,7 @@ func editFilePost(c *context.Context, f form.EditRepoFile, isNewFile bool) { } if entry != nil { c.FormErr("TreePath") - c.RenderWithErr(c.Tr("repo.editor.file_already_exists", f.TreePath), EDIT_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.file_already_exists", f.TreePath), tmplEditorEdit, &f) return } } @@ -273,7 +273,7 @@ func editFilePost(c *context.Context, f form.EditRepoFile, isNewFile bool) { }); err != nil { log.Error("Failed to update repo file: %v", err) c.FormErr("TreePath") - c.RenderWithErr(c.Tr("repo.editor.fail_to_update_file", f.TreePath, errors.InternalServerError), EDIT_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.fail_to_update_file", f.TreePath, errors.InternalServerError), tmplEditorEdit, &f) return } @@ -316,7 +316,7 @@ func DiffPreviewPost(c *context.Context, f form.EditPreviewDiff) { } c.Data["File"] = diff.Files[0] - c.Success(EDIT_DIFF_PREVIEW) + c.Success(tmplEditorDiffPreview) } func DeleteFile(c *context.Context) { @@ -327,7 +327,7 @@ func DeleteFile(c *context.Context) { c.Data["commit_message"] = "" c.Data["commit_choice"] = "direct" c.Data["new_branch_name"] = "" - c.Success(DELETE_FILE) + c.Success(tmplEditorDelete) } func DeleteFilePost(c *context.Context, f form.DeleteRepoFile) { @@ -349,14 +349,14 @@ func DeleteFilePost(c *context.Context, f form.DeleteRepoFile) { c.Data["new_branch_name"] = branchName if c.HasError() { - c.Success(DELETE_FILE) + c.Success(tmplEditorDelete) return } if oldBranchName != branchName { if _, err := c.Repo.Repository.GetBranch(branchName); err == nil { c.FormErr("NewBranchName") - c.RenderWithErr(c.Tr("repo.editor.branch_already_exists", branchName), DELETE_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.branch_already_exists", branchName), tmplEditorDelete, &f) return } } @@ -379,7 +379,7 @@ func DeleteFilePost(c *context.Context, f form.DeleteRepoFile) { Message: message, }); err != nil { log.Error("Failed to delete repo file: %v", err) - c.RenderWithErr(c.Tr("repo.editor.fail_to_delete_file", c.Repo.TreePath, errors.InternalServerError), DELETE_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.fail_to_delete_file", c.Repo.TreePath, errors.InternalServerError), tmplEditorDelete, &f) return } @@ -415,7 +415,7 @@ func UploadFile(c *context.Context) { c.Data["commit_message"] = "" c.Data["commit_choice"] = "direct" c.Data["new_branch_name"] = "" - c.Success(UPLOAD_FILE) + c.Success(tmplEditorUpload) } func UploadFilePost(c *context.Context, f form.UploadRepoFile) { @@ -446,14 +446,14 @@ func UploadFilePost(c *context.Context, f form.UploadRepoFile) { c.Data["new_branch_name"] = branchName if c.HasError() { - c.Success(UPLOAD_FILE) + c.Success(tmplEditorUpload) return } if oldBranchName != branchName { if _, err := c.Repo.Repository.GetBranch(branchName); err == nil { c.FormErr("NewBranchName") - c.RenderWithErr(c.Tr("repo.editor.branch_already_exists", branchName), UPLOAD_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.branch_already_exists", branchName), tmplEditorUpload, &f) return } } @@ -475,7 +475,7 @@ func UploadFilePost(c *context.Context, f form.UploadRepoFile) { // User can only upload files to a directory. if !entry.IsTree() { c.FormErr("TreePath") - c.RenderWithErr(c.Tr("repo.editor.directory_is_a_file", part), UPLOAD_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.directory_is_a_file", part), tmplEditorUpload, &f) return } } @@ -500,7 +500,7 @@ func UploadFilePost(c *context.Context, f form.UploadRepoFile) { }); err != nil { log.Error("Failed to upload files: %v", err) c.FormErr("TreePath") - c.RenderWithErr(c.Tr("repo.editor.unable_to_upload_files", f.TreePath, errors.InternalServerError), UPLOAD_FILE, &f) + c.RenderWithErr(c.Tr("repo.editor.unable_to_upload_files", f.TreePath, errors.InternalServerError), tmplEditorUpload, &f) return } diff --git a/internal/route/repo/http.go b/internal/route/repo/http.go index 413b660f9..93a99aef5 100644 --- a/internal/route/repo/http.go +++ b/internal/route/repo/http.go @@ -12,6 +12,7 @@ import ( "os" "os/exec" "path" + "path/filepath" "strconv" "strings" "time" @@ -20,14 +21,13 @@ import ( log "unknwon.dev/clog/v2" "gogs.io/gogs/internal/conf" - "gogs.io/gogs/internal/context" "gogs.io/gogs/internal/db" "gogs.io/gogs/internal/lazyregexp" "gogs.io/gogs/internal/tool" ) type HTTPContext struct { - *context.Context + *macaron.Context OwnerName string OwnerSalt string RepoID int64 @@ -36,17 +36,17 @@ type HTTPContext struct { } // askCredentials responses HTTP header and status which informs client to provide credentials. -func askCredentials(c *context.Context, status int, text string) { - c.Resp.Header().Set("WWW-Authenticate", "Basic realm=\".\"") - c.PlainText(status, text) +func askCredentials(c *macaron.Context, status int, text string) { + c.Header().Set("WWW-Authenticate", "Basic realm=\".\"") + c.Error(status, text) } func HTTPContexter() macaron.Handler { - return func(c *context.Context) { + return func(c *macaron.Context) { if len(conf.HTTP.AccessControlAllowOrigin) > 0 { // Set CORS headers for browser-based git clients - c.Resp.Header().Set("Access-Control-Allow-Origin", conf.HTTP.AccessControlAllowOrigin) - c.Resp.Header().Set("Access-Control-Allow-Headers", "Content-Type, Authorization, User-Agent") + c.Header().Set("Access-Control-Allow-Origin", conf.HTTP.AccessControlAllowOrigin) + c.Header().Set("Access-Control-Allow-Headers", "Content-Type, Authorization, User-Agent") // Handle preflight OPTIONS request if c.Req.Method == "OPTIONS" { @@ -63,15 +63,25 @@ func HTTPContexter() macaron.Handler { strings.HasSuffix(c.Req.URL.Path, "git-upload-pack") || c.Req.Method == "GET" - owner, err := db.GetUserByName(ownerName) + owner, err := db.Users.GetByUsername(ownerName) if err != nil { - c.NotFoundOrError(err, "get user by name") + if db.IsErrUserNotExist(err) { + c.Status(http.StatusNotFound) + } else { + c.Status(http.StatusInternalServerError) + log.Error("Failed to get user [name: %s]: %v", ownerName, err) + } return } - repo, err := db.GetRepositoryByName(owner.ID, repoName) + repo, err := db.Repos.GetByName(owner.ID, repoName) if err != nil { - c.NotFoundOrError(err, "get repository by name") + if db.IsErrRepoNotExist(err) { + c.Status(http.StatusNotFound) + } else { + c.Status(http.StatusInternalServerError) + log.Error("Failed to get repository [owner_id: %d, name: %s]: %v", owner.ID, repoName, err) + } return } @@ -111,31 +121,35 @@ func HTTPContexter() macaron.Handler { return } - authUser, err := db.UserLogin(authUsername, authPassword, -1) + authUser, err := db.Users.Authenticate(authUsername, authPassword, -1) if err != nil && !db.IsErrUserNotExist(err) { - c.Error(err, "authenticate user") + c.Status(http.StatusInternalServerError) + log.Error("Failed to authenticate user [name: %s]: %v", authUsername, err) return } // If username and password combination failed, try again using username as a token. if authUser == nil { - token, err := db.GetAccessTokenBySHA(authUsername) + token, err := db.AccessTokens.GetBySHA(authUsername) if err != nil { - if db.IsErrAccessTokenEmpty(err) || db.IsErrAccessTokenNotExist(err) { + if db.IsErrAccessTokenNotExist(err) { askCredentials(c, http.StatusUnauthorized, "") } else { - c.Error(err, "get access token by SHA") + c.Status(http.StatusInternalServerError) + log.Error("Failed to get access token [sha: %s]: %v", authUsername, err) } return } - token.Updated = time.Now() - // TODO: verify or update token.Updated in database + if err = db.AccessTokens.Save(token); err != nil { + log.Error("Failed to update access token: %v", err) + } - authUser, err = db.GetUserByID(token.UID) + authUser, err = db.Users.GetByID(token.UserID) if err != nil { // Once we found token, we're supposed to find its related user, // thus any error is unexpected. - c.Error(err, "get user by ID") + c.Status(http.StatusInternalServerError) + log.Error("Failed to get user [id: %d]: %v", token.UserID, err) return } } else if authUser.IsEnabledTwoFactor() { @@ -144,23 +158,19 @@ Please create and use personal access token on user settings page`) return } - log.Trace("HTTPGit - Authenticated user: %s", authUser.Name) + log.Trace("[Git] Authenticated user: %s", authUser.Name) - mode := db.ACCESS_MODE_WRITE + mode := db.AccessModeWrite if isPull { - mode = db.ACCESS_MODE_READ + mode = db.AccessModeRead } - has, err := db.HasAccess(authUser.ID, repo, mode) - if err != nil { - c.Error(err, "check access") - return - } else if !has { + if !db.Perms.Authorize(authUser.ID, repo, mode) { askCredentials(c, http.StatusForbidden, "User permission denied") return } if !isPull && repo.IsMirror { - c.PlainText(http.StatusForbidden, "Mirror repository is read-only") + c.Error(http.StatusForbidden, "Mirror repository is read-only") return } @@ -367,7 +377,7 @@ func getGitRepoPath(dir string) (string, error) { dir += ".git" } - filename := path.Join(conf.Repository.Root, dir) + filename := filepath.Join(conf.Repository.Root, dir) if _, err := os.Stat(filename); os.IsNotExist(err) { return "", err } @@ -387,7 +397,7 @@ func HTTP(c *HTTPContext) { // but we only want to output this message only if user is really trying to access // Git HTTP endpoints. if conf.Repository.DisableHTTPGit { - c.PlainText(http.StatusForbidden, "Interacting with repositories by HTTP protocol is disabled") + c.Error(http.StatusForbidden, "Interacting with repositories by HTTP protocol is disabled") return } diff --git a/internal/route/repo/pull.go b/internal/route/repo/pull.go index 14e9a5c32..e17782752 100644 --- a/internal/route/repo/pull.go +++ b/internal/route/repo/pull.go @@ -19,7 +19,6 @@ import ( "gogs.io/gogs/internal/db" "gogs.io/gogs/internal/form" "gogs.io/gogs/internal/gitutil" - "gogs.io/gogs/internal/tool" ) const ( @@ -137,10 +136,8 @@ func ForkPost(c *context.Context, f form.CreateRepo) { c.RenderWithErr(c.Tr("repo.form.reach_limit_of_creation", c.User.RepoCreationNum()), FORK, &f) case db.IsErrRepoAlreadyExist(err): c.RenderWithErr(c.Tr("repo.settings.new_owner_has_same_repo"), FORK, &f) - case db.IsErrNameReserved(err): - c.RenderWithErr(c.Tr("repo.form.name_reserved", err.(db.ErrNameReserved).Name), FORK, &f) - case db.IsErrNamePatternNotAllowed(err): - c.RenderWithErr(c.Tr("repo.form.name_pattern_not_allowed", err.(db.ErrNamePatternNotAllowed).Pattern), FORK, &f) + case db.IsErrNameNotAllowed(err): + c.RenderWithErr(c.Tr("repo.form.name_not_allowed", err.(db.ErrNameNotAllowed).Value()), FORK, &f) default: c.Error(err, "fork repository") } @@ -378,6 +375,7 @@ func ViewPullFiles(c *context.Context) { c.Data["IsSplitStyle"] = c.Query("style") == "split" c.Data["IsImageFile"] = commit.IsImageFile + c.Data["IsImageFileByIndex"] = commit.IsImageFileByIndex // It is possible head repo has been deleted for merged pull requests if pull.HeadRepo != nil { @@ -386,8 +384,9 @@ func ViewPullFiles(c *context.Context) { headTarget := path.Join(pull.HeadUserName, pull.HeadRepo.Name) c.Data["SourcePath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "src", endCommitID) - c.Data["BeforeSourcePath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "src", startCommitID) c.Data["RawPath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "raw", endCommitID) + c.Data["BeforeSourcePath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "src", startCommitID) + c.Data["BeforeRawPath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "raw", startCommitID) } c.Data["RequireHighlightJS"] = true @@ -595,11 +594,13 @@ func PrepareCompareDiff( c.Data["Username"] = headUser.Name c.Data["Reponame"] = headRepo.Name c.Data["IsImageFile"] = headCommit.IsImageFile + c.Data["IsImageFileByIndex"] = headCommit.IsImageFileByIndex headTarget := path.Join(headUser.Name, repo.Name) c.Data["SourcePath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "src", headCommitID) - c.Data["BeforeSourcePath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "src", meta.MergeBase) c.Data["RawPath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "raw", headCommitID) + c.Data["BeforeSourcePath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "src", meta.MergeBase) + c.Data["BeforeRawPath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "raw", meta.MergeBase) return false } @@ -740,51 +741,3 @@ func CompareAndPullRequestPost(c *context.Context, f form.NewIssue) { log.Trace("Pull request created: %d/%d", repo.ID, pullIssue.ID) c.Redirect(c.Repo.RepoLink + "/pulls/" + com.ToStr(pullIssue.Index)) } - -func parseOwnerAndRepo(c *context.Context) (*db.User, *db.Repository) { - owner, err := db.GetUserByName(c.Params(":username")) - if err != nil { - c.NotFoundOrError(err, "get user by name") - return nil, nil - } - - repo, err := db.GetRepositoryByName(owner.ID, c.Params(":reponame")) - if err != nil { - c.NotFoundOrError(err, "get repository by name") - return nil, nil - } - - return owner, repo -} - -func TriggerTask(c *context.Context) { - pusherID := c.QueryInt64("pusher") - branch := c.Query("branch") - secret := c.Query("secret") - if len(branch) == 0 || len(secret) == 0 || pusherID <= 0 { - c.NotFound() - log.Trace("TriggerTask: branch or secret is empty, or pusher ID is not valid") - return - } - owner, repo := parseOwnerAndRepo(c) - if c.Written() { - return - } - if secret != tool.MD5(owner.Salt) { - c.NotFound() - log.Trace("TriggerTask [%s/%s]: invalid secret", owner.Name, repo.Name) - return - } - - pusher, err := db.GetUserByID(pusherID) - if err != nil { - c.NotFoundOrError(err, "get user by ID") - return - } - - log.Trace("TriggerTask '%s/%s' by '%s'", repo.Name, branch, pusher.Name) - - go db.HookQueue.Add(repo.ID) - go db.AddTestPullRequestTask(pusher, repo.ID, branch, true) - c.Status(202) -} diff --git a/internal/route/repo/repo.go b/internal/route/repo/repo.go index c55314d3b..aa949930f 100644 --- a/internal/route/repo/repo.go +++ b/internal/route/repo/repo.go @@ -93,12 +93,9 @@ func handleCreateError(c *context.Context, owner *db.User, err error, name, tpl case db.IsErrRepoAlreadyExist(err): c.Data["Err_RepoName"] = true c.RenderWithErr(c.Tr("form.repo_name_been_taken"), tpl, form) - case db.IsErrNameReserved(err): + case db.IsErrNameNotAllowed(err): c.Data["Err_RepoName"] = true - c.RenderWithErr(c.Tr("repo.form.name_reserved", err.(db.ErrNameReserved).Name), tpl, form) - case db.IsErrNamePatternNotAllowed(err): - c.Data["Err_RepoName"] = true - c.RenderWithErr(c.Tr("repo.form.name_pattern_not_allowed", err.(db.ErrNamePatternNotAllowed).Pattern), tpl, form) + c.RenderWithErr(c.Tr("repo.form.name_not_allowed", err.(db.ErrNameNotAllowed).Value()), tpl, form) default: c.Error(err, name) } diff --git a/internal/route/repo/setting.go b/internal/route/repo/setting.go index 1c4446d00..df2b7bfaf 100644 --- a/internal/route/repo/setting.go +++ b/internal/route/repo/setting.go @@ -67,10 +67,8 @@ func SettingsPost(c *context.Context, f form.RepoSetting) { switch { case db.IsErrRepoAlreadyExist(err): c.RenderWithErr(c.Tr("form.repo_name_been_taken"), SETTINGS_OPTIONS, &f) - case db.IsErrNameReserved(err): - c.RenderWithErr(c.Tr("repo.form.name_reserved", err.(db.ErrNameReserved).Name), SETTINGS_OPTIONS, &f) - case db.IsErrNamePatternNotAllowed(err): - c.RenderWithErr(c.Tr("repo.form.name_pattern_not_allowed", err.(db.ErrNamePatternNotAllowed).Pattern), SETTINGS_OPTIONS, &f) + case db.IsErrNameNotAllowed(err): + c.RenderWithErr(c.Tr("repo.form.name_not_allowed", err.(db.ErrNameNotAllowed).Value()), SETTINGS_OPTIONS, &f) default: c.Error(err, "change repository name") } @@ -156,6 +154,13 @@ func SettingsPost(c *context.Context, f form.RepoSetting) { repo.PullsIgnoreWhitespace = f.PullsIgnoreWhitespace repo.PullsAllowRebase = f.PullsAllowRebase + if !repo.EnableWiki || repo.EnableExternalWiki { + repo.AllowPublicWiki = false + } + if !repo.EnableIssues || repo.EnableExternalTracker { + repo.AllowPublicIssues = false + } + if err := db.UpdateRepository(repo, false); err != nil { c.Error(err, "update repository") return @@ -425,7 +430,7 @@ func DeleteCollaboration(c *context.Context) { c.Flash.Success(c.Tr("repo.settings.remove_collaborator_success")) } - c.JSONSuccess( map[string]interface{}{ + c.JSONSuccess(map[string]interface{}{ "redirect": c.Repo.RepoLink + "/settings/collaboration", }) } @@ -513,7 +518,7 @@ func SettingsProtectedBranch(c *context.Context) { c.Data["Users"] = users c.Data["whitelist_users"] = protectBranch.WhitelistUserIDs - teams, err := c.Repo.Owner.TeamsHaveAccessToRepo(c.Repo.Repository.ID, db.ACCESS_MODE_WRITE) + teams, err := c.Repo.Owner.TeamsHaveAccessToRepo(c.Repo.Repository.ID, db.AccessModeWrite) if err != nil { c.Error(err, "get teams have access to the repository") return @@ -678,7 +683,7 @@ func DeleteDeployKey(c *context.Context) { c.Flash.Success(c.Tr("repo.settings.deploy_key_deletion_success")) } - c.JSONSuccess( map[string]interface{}{ + c.JSONSuccess(map[string]interface{}{ "redirect": c.Repo.RepoLink + "/settings/keys", }) } diff --git a/internal/route/repo/tasks.go b/internal/route/repo/tasks.go new file mode 100644 index 000000000..81e85e2aa --- /dev/null +++ b/internal/route/repo/tasks.go @@ -0,0 +1,74 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package repo + +import ( + "net/http" + + "gopkg.in/macaron.v1" + log "unknwon.dev/clog/v2" + + "gogs.io/gogs/internal/cryptoutil" + "gogs.io/gogs/internal/db" +) + +func TriggerTask(c *macaron.Context) { + branch := c.Query("branch") + pusherID := c.QueryInt64("pusher") + secret := c.Query("secret") + if branch == "" || pusherID <= 0 || secret == "" { + c.Error(http.StatusBadRequest, "Incomplete branch, pusher or secret") + return + } + + username := c.Params(":username") + reponame := c.Params(":reponame") + + owner, err := db.Users.GetByUsername(username) + if err != nil { + if db.IsErrUserNotExist(err) { + c.Error(http.StatusBadRequest, "Owner does not exist") + } else { + c.Status(http.StatusInternalServerError) + log.Error("Failed to get user [name: %s]: %v", username, err) + } + return + } + + // 🚨 SECURITY: No need to check existence of the repository if the client + // can't even get the valid secret. Mostly likely not a legitimate request. + if secret != cryptoutil.MD5(owner.Salt) { + c.Error(http.StatusBadRequest, "Invalid secret") + return + } + + repo, err := db.Repos.GetByName(owner.ID, reponame) + if err != nil { + if db.IsErrRepoNotExist(err) { + c.Error(http.StatusBadRequest, "Repository does not exist") + } else { + c.Status(http.StatusInternalServerError) + log.Error("Failed to get repository [owner_id: %d, name: %s]: %v", owner.ID, reponame, err) + } + return + } + + pusher, err := db.Users.GetByID(pusherID) + if err != nil { + if db.IsErrUserNotExist(err) { + c.Error(http.StatusBadRequest, "Pusher does not exist") + } else { + c.Status(http.StatusInternalServerError) + log.Error("Failed to get user [id: %d]: %v", pusherID, err) + } + return + } + + log.Trace("TriggerTask: %s/%s@%s by %q", owner.Name, repo.Name, branch, pusher.Name) + + go db.HookQueue.Add(repo.ID) + go db.AddTestPullRequestTask(pusher, repo.ID, branch, true) + c.Status(http.StatusAccepted) +} diff --git a/internal/route/repo/webhook_test.go b/internal/route/repo/webhook_test.go index 02f27b92a..182c6eed7 100644 --- a/internal/route/repo/webhook_test.go +++ b/internal/route/repo/webhook_test.go @@ -10,7 +10,7 @@ import ( "github.com/stretchr/testify/assert" "gogs.io/gogs/internal/db" - "gogs.io/gogs/internal/mock" + "gogs.io/gogs/internal/mocks" ) func Test_isLocalHostname(t *testing.T) { @@ -33,9 +33,12 @@ func Test_isLocalHostname(t *testing.T) { } func Test_validateWebhook(t *testing.T) { - l := mock.NewLocale("en", func(s string, _ ...interface{}) string { - return s - }) + l := &mocks.Locale{ + MockLang: "en", + MockTr: func(s string, _ ...interface{}) string { + return s + }, + } tests := []struct { name string diff --git a/internal/route/user/auth.go b/internal/route/user/auth.go index a29b63116..143d72bc8 100644 --- a/internal/route/user/auth.go +++ b/internal/route/user/auth.go @@ -9,12 +9,12 @@ import ( "net/url" "github.com/go-macaron/captcha" + "github.com/pkg/errors" log "unknwon.dev/clog/v2" "gogs.io/gogs/internal/conf" "gogs.io/gogs/internal/context" "gogs.io/gogs/internal/db" - "gogs.io/gogs/internal/db/errors" "gogs.io/gogs/internal/email" "gogs.io/gogs/internal/form" "gogs.io/gogs/internal/tool" @@ -101,7 +101,7 @@ func Login(c *context.Context) { } // Display normal login page - loginSources, err := db.ActivatedLoginSources() + loginSources, err := db.LoginSources.List(db.ListLoginSourceOpts{OnlyActivated: true}) if err != nil { c.Error(err, "list activated login sources") return @@ -148,7 +148,7 @@ func afterLogin(c *context.Context, u *db.User, remember bool) { func LoginPost(c *context.Context, f form.SignIn) { c.Title("sign_in") - loginSources, err := db.ActivatedLoginSources() + loginSources, err := db.LoginSources.List(db.ListLoginSourceOpts{OnlyActivated: true}) if err != nil { c.Error(err, "list activated login sources") return @@ -160,13 +160,13 @@ func LoginPost(c *context.Context, f form.SignIn) { return } - u, err := db.UserLogin(f.UserName, f.Password, f.LoginSource) + u, err := db.Users.Authenticate(f.UserName, f.Password, f.LoginSource) if err != nil { - switch err.(type) { + switch errors.Cause(err).(type) { case db.ErrUserNotExist: c.FormErr("UserName", "Password") c.RenderWithErr(c.Tr("form.username_password_incorrect"), LOGIN, &f) - case errors.LoginSourceMismatch: + case db.ErrLoginSourceMismatch: c.FormErr("LoginSource") c.RenderWithErr(c.Tr("form.auth_source_mismatch"), LOGIN, &f) @@ -209,7 +209,7 @@ func LoginTwoFactorPost(c *context.Context) { return } - t, err := db.GetTwoFactorByUserID(userID) + t, err := db.TwoFactors.GetByUserID(userID) if err != nil { c.Error(err, "get two factor by user ID") return @@ -263,7 +263,7 @@ func LoginTwoFactorRecoveryCodePost(c *context.Context) { } if err := db.UseRecoveryCode(userID, c.Query("recovery_code")); err != nil { - if errors.IsTwoFactorRecoveryCodeNotFound(err) { + if db.IsTwoFactorRecoveryCodeNotFound(err) { c.Flash.Error(c.Tr("auth.login_two_factor_invalid_recovery_code")) c.RedirectSubpath("/user/login/two_factor_recovery_code") } else { @@ -344,12 +344,9 @@ func SignUpPost(c *context.Context, cpt *captcha.Captcha, f form.Register) { case db.IsErrEmailAlreadyUsed(err): c.FormErr("Email") c.RenderWithErr(c.Tr("form.email_been_used"), SIGNUP, &f) - case db.IsErrNameReserved(err): + case db.IsErrNameNotAllowed(err): c.FormErr("UserName") - c.RenderWithErr(c.Tr("user.form.name_reserved", err.(db.ErrNameReserved).Name), SIGNUP, &f) - case db.IsErrNamePatternNotAllowed(err): - c.FormErr("UserName") - c.RenderWithErr(c.Tr("user.form.name_pattern_not_allowed", err.(db.ErrNamePatternNotAllowed).Pattern), SIGNUP, &f) + c.RenderWithErr(c.Tr("user.form.name_not_allowed", err.(db.ErrNameNotAllowed).Value()), SIGNUP, &f) default: c.Error(err, "create user") } @@ -556,7 +553,7 @@ func ResetPasswdPost(c *context.Context) { c.Error(err, "get user salt") return } - u.EncodePasswd() + u.EncodePassword() if err := db.UpdateUser(u); err != nil { c.Error(err, "update user") return diff --git a/internal/route/user/setting.go b/internal/route/user/setting.go index c9ccdc8f5..2da64f745 100644 --- a/internal/route/user/setting.go +++ b/internal/route/user/setting.go @@ -20,6 +20,7 @@ import ( "gogs.io/gogs/internal/conf" "gogs.io/gogs/internal/context" + "gogs.io/gogs/internal/cryptoutil" "gogs.io/gogs/internal/db" "gogs.io/gogs/internal/db/errors" "gogs.io/gogs/internal/email" @@ -75,10 +76,8 @@ func SettingsPost(c *context.Context, f form.UpdateProfile) { switch { case db.IsErrUserAlreadyExist(err): msg = c.Tr("form.username_been_taken") - case db.IsErrNameReserved(err): - msg = c.Tr("form.name_reserved") - case db.IsErrNamePatternNotAllowed(err): - msg = c.Tr("form.name_pattern_not_allowed") + case db.IsErrNameNotAllowed(err): + msg = c.Tr("user.form.name_not_allowed", err.(db.ErrNameNotAllowed).Value()) default: c.Error(err, "change user name") return @@ -118,7 +117,7 @@ func SettingsPost(c *context.Context, f form.UpdateProfile) { func UpdateAvatarSetting(c *context.Context, f form.Avatar, ctxUser *db.User) error { ctxUser.UseCustomAvatar = f.Source == form.AVATAR_LOCAL if len(f.Gravatar) > 0 { - ctxUser.Avatar = tool.MD5(f.Gravatar) + ctxUser.Avatar = cryptoutil.MD5(f.Gravatar) ctxUser.AvatarEmail = f.Gravatar } @@ -208,7 +207,7 @@ func SettingsPasswordPost(c *context.Context, f form.ChangePassword) { c.Errorf(err, "get user salt") return } - c.User.EncodePasswd() + c.User.EncodePassword() if err := db.UpdateUser(c.User); err != nil { c.Errorf(err, "update user") return @@ -381,8 +380,8 @@ func SettingsSecurity(c *context.Context) { c.Title("settings.security") c.PageIs("SettingsSecurity") - t, err := db.GetTwoFactorByUserID(c.UserID()) - if err != nil && !errors.IsTwoFactorNotFound(err) { + t, err := db.TwoFactors.GetByUserID(c.UserID()) + if err != nil && !db.IsErrTwoFactorNotFound(err) { c.Errorf(err, "get two factor by user ID") return } @@ -449,7 +448,7 @@ func SettingsTwoFactorEnablePost(c *context.Context) { return } - if err := db.NewTwoFactor(c.UserID(), secret); err != nil { + if err := db.TwoFactors.Create(c.UserID(), conf.Security.SecretKey, secret); err != nil { c.Flash.Error(c.Tr("settings.two_factor_enable_error", err)) c.RedirectSubpath("/user/settings/security/two_factor_enable") return @@ -581,7 +580,7 @@ func SettingsApplications(c *context.Context) { c.Title("settings.applications") c.PageIs("SettingsApplications") - tokens, err := db.ListAccessTokens(c.User.ID) + tokens, err := db.AccessTokens.List(c.User.ID) if err != nil { c.Errorf(err, "list access tokens") return @@ -596,7 +595,7 @@ func SettingsApplicationsPost(c *context.Context, f form.NewAccessToken) { c.PageIs("SettingsApplications") if c.HasError() { - tokens, err := db.ListAccessTokens(c.User.ID) + tokens, err := db.AccessTokens.List(c.User.ID) if err != nil { c.Errorf(err, "list access tokens") return @@ -607,12 +606,9 @@ func SettingsApplicationsPost(c *context.Context, f form.NewAccessToken) { return } - t := &db.AccessToken{ - UID: c.User.ID, - Name: f.Name, - } - if err := db.NewAccessToken(t); err != nil { - if errors.IsAccessTokenNameAlreadyExist(err) { + t, err := db.AccessTokens.Create(c.User.ID, f.Name) + if err != nil { + if db.IsErrAccessTokenAlreadyExist(err) { c.Flash.Error(c.Tr("settings.token_name_exists")) c.RedirectSubpath("/user/settings/applications") } else { @@ -627,7 +623,7 @@ func SettingsApplicationsPost(c *context.Context, f form.NewAccessToken) { } func SettingsDeleteApplication(c *context.Context) { - if err := db.DeleteAccessTokenOfUserByID(c.User.ID, c.QueryInt64("id")); err != nil { + if err := db.AccessTokens.DeleteByID(c.User.ID, c.QueryInt64("id")); err != nil { c.Flash.Error("DeleteAccessTokenByID: " + err.Error()) } else { c.Flash.Success(c.Tr("settings.delete_token_success")) @@ -643,7 +639,7 @@ func SettingsDelete(c *context.Context) { c.PageIs("SettingsDelete") if c.Req.Method == "POST" { - if _, err := db.UserLogin(c.User.Name, c.Query("password"), c.User.LoginSource); err != nil { + if _, err := db.Users.Authenticate(c.User.Name, c.Query("password"), c.User.LoginSource); err != nil { if db.IsErrUserNotExist(err) { c.RenderWithErr(c.Tr("form.enterred_invalid_password"), SETTINGS_DELETE, nil) } else { diff --git a/internal/ssh/ssh.go b/internal/ssh/ssh.go index a4d41d0f6..ff9fb8cc9 100644 --- a/internal/ssh/ssh.go +++ b/internal/ssh/ssh.go @@ -51,17 +51,27 @@ func handleServerConn(keyID string, chans <-chan ssh.NewChannel) { payload := cleanCommand(string(req.Payload)) switch req.Type { case "env": - args := strings.Split(strings.Replace(payload, "\x00", "", -1), "\v") - if len(args) != 2 { - log.Warn("SSH: Invalid env arguments: '%#v'", args) + var env struct { + Name string + Value string + } + if err := ssh.Unmarshal(req.Payload, &env); err != nil { + log.Warn("SSH: Invalid env payload %q: %v", req.Payload, err) + continue + } + // Sometimes the client could send malformed command (i.e. missing "="), + // see https://discuss.gogs.io/t/ssh/3106. + if env.Name == "" || env.Value == "" { + log.Warn("SSH: Invalid env arguments: %+v", env) continue } - args[0] = strings.TrimLeft(args[0], "\x04") - _, _, err := com.ExecCmdBytes("env", args[0]+"="+args[1]) + + _, stderr, err := com.ExecCmd("env", fmt.Sprintf("%s=%s", env.Name, env.Value)) if err != nil { - log.Error("env: %v", err) + log.Error("env: %v - %s", err, stderr) return } + case "exec": cmdName := strings.TrimLeft(payload, "'()") log.Trace("SSH: Payload: %v", cmdName) diff --git a/internal/strutil/strutil.go b/internal/strutil/strutil.go new file mode 100644 index 000000000..b1de241f5 --- /dev/null +++ b/internal/strutil/strutil.go @@ -0,0 +1,46 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package strutil + +import ( + "crypto/rand" + "math/big" + "unicode" +) + +// ToUpperFirst returns s with only the first Unicode letter mapped to its upper case. +func ToUpperFirst(s string) string { + for i, v := range s { + return string(unicode.ToUpper(v)) + s[i+1:] + } + return "" +} + +// RandomChars returns a generated string in given number of random characters. +func RandomChars(n int) (string, error) { + const alphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" + + randomInt := func(max *big.Int) (int, error) { + r, err := rand.Int(rand.Reader, max) + if err != nil { + return 0, err + } + + return int(r.Int64()), nil + } + + buffer := make([]byte, n) + max := big.NewInt(int64(len(alphanum))) + for i := 0; i < n; i++ { + index, err := randomInt(max) + if err != nil { + return "", err + } + + buffer[i] = alphanum[index] + } + + return string(buffer), nil +} diff --git a/internal/strutil/strutil_test.go b/internal/strutil/strutil_test.go new file mode 100644 index 000000000..c4edf1400 --- /dev/null +++ b/internal/strutil/strutil_test.go @@ -0,0 +1,57 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package strutil + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestToUpperFirst(t *testing.T) { + tests := []struct { + name string + s string + expStr string + }{ + { + name: "empty string", + }, + { + name: "first letter is a digit", + s: "123 let's go", + expStr: "123 let's go", + }, + { + name: "lower to upper", + s: "this is a sentence", + expStr: "This is a sentence", + }, + { + name: "already in upper case", + s: "Let's go", + expStr: "Let's go", + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + assert.Equal(t, test.expStr, ToUpperFirst(test.s)) + }) + } +} + +func TestRandomChars(t *testing.T) { + cache := make(map[string]bool) + for i := 0; i < 100; i++ { + chars, err := RandomChars(10) + if err != nil { + t.Fatal(err) + } + if cache[chars] { + t.Fatalf("Duplicated chars %q", chars) + } + cache[chars] = true + } +} diff --git a/internal/testutil/golden.go b/internal/testutil/golden.go index fa584d1ba..15ac095fc 100644 --- a/internal/testutil/golden.go +++ b/internal/testutil/golden.go @@ -9,6 +9,7 @@ import ( "flag" "io/ioutil" "regexp" + "runtime" "testing" "github.com/stretchr/testify/assert" @@ -25,8 +26,13 @@ func Update(name string) bool { } // AssertGolden compares what's got and what's in the golden file. It updates -// the golden file on-demand. +// the golden file on-demand. It does nothing when the runtime is "windows". func AssertGolden(t testing.TB, path string, update bool, got interface{}) { + if runtime.GOOS == "windows" { + t.Skip("Skipping testing on Windows") + return + } + t.Helper() data := marshal(t, got) diff --git a/internal/testutil/noop_logger.go b/internal/testutil/noop_logger.go new file mode 100644 index 000000000..bf536f3f0 --- /dev/null +++ b/internal/testutil/noop_logger.go @@ -0,0 +1,31 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package testutil + +import ( + log "unknwon.dev/clog/v2" +) + +var _ log.Logger = (*noopLogger)(nil) + +// noopLogger is a placeholder logger that logs nothing. +type noopLogger struct{} + +func (l *noopLogger) Name() string { + return "noop" +} + +func (l *noopLogger) Level() log.Level { + return log.LevelTrace +} + +func (l *noopLogger) Write(log.Messager) error { + return nil +} + +// InitNoopLogger is a init function to initialize a noop logger. +var InitNoopLogger = func(name string, vs ...interface{}) (log.Logger, error) { + return &noopLogger{}, nil +} diff --git a/internal/tool/path_test.go b/internal/tool/path_test.go index 44ee975f2..be9b5192a 100644 --- a/internal/tool/path_test.go +++ b/internal/tool/path_test.go @@ -7,47 +7,47 @@ package tool import ( "testing" - . "github.com/smartystreets/goconvey/convey" + "github.com/stretchr/testify/assert" ) func Test_IsSameSiteURLPath(t *testing.T) { - Convey("Check if a path belongs to the same site", t, func() { - testCases := []struct { - url string - expect bool - }{ - {"//github.com", false}, - {"http://github.com", false}, - {"https://github.com", false}, - {"/\\github.com", false}, - - {"/admin", true}, - {"/user/repo", true}, - } - - for _, tc := range testCases { - So(IsSameSiteURLPath(tc.url), ShouldEqual, tc.expect) - } - }) + tests := []struct { + url string + expVal bool + }{ + {url: "//github.com", expVal: false}, + {url: "http://github.com", expVal: false}, + {url: "https://github.com", expVal: false}, + {url: "/\\github.com", expVal: false}, + + {url: "/admin", expVal: true}, + {url: "/user/repo", expVal: true}, + } + + for _, test := range tests { + t.Run(test.url, func(t *testing.T) { + assert.Equal(t, test.expVal, IsSameSiteURLPath(test.url)) + }) + } } func Test_IsMaliciousPath(t *testing.T) { - Convey("Detects malicious path", t, func() { - testCases := []struct { - path string - expect bool - }{ - {"../../../../../../../../../data/gogs/data/sessions/a/9/a9f0ab6c3ef63dd8", true}, - {"..\\/..\\/../data/gogs/data/sessions/a/9/a9f0ab6c3ef63dd8", true}, - {"data/gogs/../../../../../../../../../data/sessions/a/9/a9f0ab6c3ef63dd8", true}, - {"..\\..\\..\\..\\..\\..\\..\\..\\..\\data\\gogs\\data\\sessions\\a\\9\\a9f0ab6c3ef63dd8", true}, - {"data\\gogs\\..\\..\\..\\..\\..\\..\\..\\..\\..\\data\\sessions\\a\\9\\a9f0ab6c3ef63dd8", true}, - - {"data/sessions/a/9/a9f0ab6c3ef63dd8", false}, - {"data\\sessions\\a\\9\\a9f0ab6c3ef63dd8", false}, - } - for _, tc := range testCases { - So(IsMaliciousPath(tc.path), ShouldEqual, tc.expect) - } - }) + tests := []struct { + path string + expVal bool + }{ + {path: "../../../../../../../../../data/gogs/data/sessions/a/9/a9f0ab6c3ef63dd8", expVal: true}, + {path: "..\\/..\\/../data/gogs/data/sessions/a/9/a9f0ab6c3ef63dd8", expVal: true}, + {path: "data/gogs/../../../../../../../../../data/sessions/a/9/a9f0ab6c3ef63dd8", expVal: true}, + {path: "..\\..\\..\\..\\..\\..\\..\\..\\..\\data\\gogs\\data\\sessions\\a\\9\\a9f0ab6c3ef63dd8", expVal: true}, + {path: "data\\gogs\\..\\..\\..\\..\\..\\..\\..\\..\\..\\data\\sessions\\a\\9\\a9f0ab6c3ef63dd8", expVal: true}, + + {path: "data/sessions/a/9/a9f0ab6c3ef63dd8", expVal: false}, + {path: "data\\sessions\\a\\9\\a9f0ab6c3ef63dd8", expVal: false}, + } + for _, test := range tests { + t.Run(test.path, func(t *testing.T) { + assert.Equal(t, test.expVal, IsMaliciousPath(test.path)) + }) + } } diff --git a/internal/tool/tool.go b/internal/tool/tool.go index 380f1069b..e58250187 100644 --- a/internal/tool/tool.go +++ b/internal/tool/tool.go @@ -6,13 +6,11 @@ package tool import ( "crypto/md5" - "crypto/rand" "crypto/sha1" "encoding/base64" "encoding/hex" "fmt" "html/template" - "math/big" "strings" "time" "unicode" @@ -27,19 +25,8 @@ import ( "gogs.io/gogs/internal/conf" ) -// MD5Bytes encodes string to MD5 bytes. -func MD5Bytes(str string) []byte { - m := md5.New() - _, _ = m.Write([]byte(str)) - return m.Sum(nil) -} - -// MD5 encodes string to MD5 hex value. -func MD5(str string) string { - return hex.EncodeToString(MD5Bytes(str)) -} - // SHA1 encodes string to SHA1 hex value. +// TODO: Move to cryptoutil.SHA1. func SHA1(str string) string { h := sha1.New() _, _ = h.Write([]byte(str)) @@ -83,40 +70,6 @@ func BasicAuthDecode(encoded string) (string, string, error) { return auth[0], auth[1], nil } -// BasicAuthEncode encodes username and password in HTTP Basic Authentication format. -func BasicAuthEncode(username, password string) string { - return base64.StdEncoding.EncodeToString([]byte(username + ":" + password)) -} - -const alphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" - -// RandomString returns generated random string in given length of characters. -// It also returns possible error during generation. -func RandomString(n int) (string, error) { - buffer := make([]byte, n) - max := big.NewInt(int64(len(alphanum))) - - for i := 0; i < n; i++ { - index, err := randomInt(max) - if err != nil { - return "", err - } - - buffer[i] = alphanum[index] - } - - return string(buffer), nil -} - -func randomInt(max *big.Int) (int, error) { - rand, err := rand.Int(rand.Reader, max) - if err != nil { - return 0, err - } - - return int(rand.Int64()), nil -} - // verify time limit code func VerifyTimeLimitCode(data string, minutes int, code string) bool { if len(code) <= 18 { diff --git a/public/css/github.min.css b/public/css/github.min.css deleted file mode 100644 index 7b3600c93..000000000 --- a/public/css/github.min.css +++ /dev/null @@ -1 +0,0 @@ -.hljs{display:block;overflow-x:auto;padding:.5em;color:#333;background:#f8f8f8}.hljs-comment,.hljs-template_comment,.diff .hljs-header,.hljs-javadoc{color:#998;font-style:italic}.hljs-keyword,.css .rule .hljs-keyword,.hljs-winutils,.javascript .hljs-title,.nginx .hljs-title,.hljs-subst,.hljs-request,.hljs-status{color:#333;font-weight:bold}.hljs-number,.hljs-hexcolor,.ruby .hljs-constant{color:#099}.hljs-string,.hljs-tag .hljs-value,.hljs-phpdoc,.tex .hljs-formula{color:#d14}.hljs-title,.hljs-id,.coffeescript .hljs-params,.scss .hljs-preprocessor{color:#900;font-weight:bold}.javascript .hljs-title,.lisp .hljs-title,.clojure .hljs-title,.hljs-subst{font-weight:normal}.hljs-class .hljs-title,.haskell .hljs-type,.vhdl .hljs-literal,.tex .hljs-command{color:#458;font-weight:bold}.hljs-tag,.hljs-tag .hljs-title,.hljs-rules .hljs-property,.django .hljs-tag .hljs-keyword{color:#000080;font-weight:normal}.hljs-attribute,.hljs-variable,.lisp .hljs-body{color:#008080}.hljs-regexp{color:#009926}.hljs-symbol,.ruby .hljs-symbol .hljs-string,.lisp .hljs-keyword,.tex .hljs-special,.hljs-prompt{color:#990073}.hljs-built_in,.lisp .hljs-title,.clojure .hljs-built_in{color:#0086b3}.hljs-preprocessor,.hljs-pragma,.hljs-pi,.hljs-doctype,.hljs-shebang,.hljs-cdata{color:#999;font-weight:bold}.hljs-deletion{background:#fdd}.hljs-addition{background:#dfd}.diff .hljs-change{background:#0086b3}.hljs-chunk{color:#aaa} \ No newline at end of file diff --git a/public/js/gogs.js b/public/js/gogs.js index d04008c59..6ce559584 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -1,1498 +1,1798 @@ -'use strict'; +"use strict"; var csrf; var suburl; function initCommentPreviewTab($form) { - var $tabMenu = $form.find('.tabular.menu'); - $tabMenu.find('.item').tab(); - $tabMenu.find('.item[data-tab="' + $tabMenu.data('preview') + '"]').click(function () { - var $this = $(this); - $.post($this.data('url'), { - "_csrf": csrf, - "mode": "gfm", - "context": $this.data('context'), - "text": $form.find('.tab.segment[data-tab="' + $tabMenu.data('write') + '"] textarea').val() + var $tabMenu = $form.find(".tabular.menu"); + $tabMenu.find(".item").tab(); + $tabMenu + .find('.item[data-tab="' + $tabMenu.data("preview") + '"]') + .click(function() { + var $this = $(this); + $.post( + $this.data("url"), + { + _csrf: csrf, + mode: "gfm", + context: $this.data("context"), + text: $form + .find( + '.tab.segment[data-tab="' + $tabMenu.data("write") + '"] textarea' + ) + .val() }, - function (data) { - var $previewPanel = $form.find('.tab.segment[data-tab="' + $tabMenu.data('preview') + '"]'); - $previewPanel.html(data); - emojify.run($previewPanel[0]); - $('pre code', $previewPanel[0]).each(function (i, block) { - hljs.highlightBlock(block); - }); - } - ); + function(data) { + var $previewPanel = $form.find( + '.tab.segment[data-tab="' + $tabMenu.data("preview") + '"]' + ); + $previewPanel.html(data); + emojify.run($previewPanel[0]); + $("pre code", $previewPanel[0]).each(function(i, block) { + hljs.highlightBlock(block); + }); + } + ); }); - buttonsClickOnEnter(); + buttonsClickOnEnter(); } var previewFileModes; function initEditPreviewTab($form) { - var $tabMenu = $form.find('.tabular.menu'); - $tabMenu.find('.item').tab(); - var $previewTab = $tabMenu.find('.item[data-tab="' + $tabMenu.data('preview') + '"]'); - if ($previewTab.length) { - previewFileModes = $previewTab.data('preview-file-modes').split(','); - $previewTab.click(function () { - var $this = $(this); - $.post($this.data('url'), { - "_csrf": csrf, - "context": $this.data('context'), - "text": $form.find('.tab.segment[data-tab="' + $tabMenu.data('write') + '"] textarea').val() - }, - function (data) { - var $previewPanel = $form.find('.tab.segment[data-tab="' + $tabMenu.data('preview') + '"]'); - $previewPanel.html(data); - emojify.run($previewPanel[0]); - $('pre code', $previewPanel[0]).each(function (i, block) { - hljs.highlightBlock(block); - }); - } - ); - }); - } + var $tabMenu = $form.find(".tabular.menu"); + $tabMenu.find(".item").tab(); + var $previewTab = $tabMenu.find( + '.item[data-tab="' + $tabMenu.data("preview") + '"]' + ); + if ($previewTab.length) { + previewFileModes = $previewTab.data("preview-file-modes").split(","); + $previewTab.click(function() { + var $this = $(this); + $.post( + $this.data("url"), + { + _csrf: csrf, + context: $this.data("context"), + text: $form + .find( + '.tab.segment[data-tab="' + $tabMenu.data("write") + '"] textarea' + ) + .val() + }, + function(data) { + var $previewPanel = $form.find( + '.tab.segment[data-tab="' + $tabMenu.data("preview") + '"]' + ); + $previewPanel.html(data); + emojify.run($previewPanel[0]); + $("pre code", $previewPanel[0]).each(function(i, block) { + hljs.highlightBlock(block); + }); + } + ); + }); + } } function initEditDiffTab($form) { - var $tabMenu = $form.find('.tabular.menu'); - $tabMenu.find('.item').tab(); - $tabMenu.find('.item[data-tab="' + $tabMenu.data('diff') + '"]').click(function () { - var $this = $(this); - $.post($this.data('url'), { - "_csrf": csrf, - "content": $form.find('.tab.segment[data-tab="' + $tabMenu.data('write') + '"] textarea').val() + var $tabMenu = $form.find(".tabular.menu"); + $tabMenu.find(".item").tab(); + $tabMenu + .find('.item[data-tab="' + $tabMenu.data("diff") + '"]') + .click(function() { + var $this = $(this); + $.post( + $this.data("url"), + { + _csrf: csrf, + content: $form + .find( + '.tab.segment[data-tab="' + $tabMenu.data("write") + '"] textarea' + ) + .val() }, - function (data) { - var $diffPreviewPanel = $form.find('.tab.segment[data-tab="' + $tabMenu.data('diff') + '"]'); - $diffPreviewPanel.html(data); - emojify.run($diffPreviewPanel[0]); - } - ); + function(data) { + var $diffPreviewPanel = $form.find( + '.tab.segment[data-tab="' + $tabMenu.data("diff") + '"]' + ); + $diffPreviewPanel.html(data); + emojify.run($diffPreviewPanel[0]); + } + ); }); } - function initEditForm() { - if ($('.edit.form').length == 0) { - return; - } + if ($(".edit.form").length == 0) { + return; + } - initEditPreviewTab($('.edit.form')); - initEditDiffTab($('.edit.form')); + initEditPreviewTab($(".edit.form")); + initEditDiffTab($(".edit.form")); } - function initCommentForm() { - if ($('.comment.form').length == 0) { - return - } - - initCommentPreviewTab($('.comment.form')); - - // Labels - var $list = $('.ui.labels.list'); - var $noSelect = $list.find('.no-select'); - var $labelMenu = $('.select-label .menu'); - var hasLabelUpdateAction = $labelMenu.data('action') == 'update'; - - function updateIssueMeta(url, action, id) { - $.post(url, { - "_csrf": csrf, - "action": action, - "id": id - }); + if ($(".comment.form").length == 0) { + return; + } + + initCommentPreviewTab($(".comment.form")); + + // Labels + var $list = $(".ui.labels.list"); + var $noSelect = $list.find(".no-select"); + var $labelMenu = $(".select-label .menu"); + var hasLabelUpdateAction = $labelMenu.data("action") == "update"; + + function updateIssueMeta(url, action, id) { + $.post(url, { + _csrf: csrf, + action: action, + id: id + }); + } + + // Add   to each unselected label to keep UI looks good. + // This should be added directly to HTML but somehow just get empty on this page. + $labelMenu + .find(".item:not(.no-select) .octicon:not(.octicon-check)") + .each(function() { + $(this).html(" "); + }); + $labelMenu.find(".item:not(.no-select)").click(function() { + if ($(this).hasClass("checked")) { + $(this).removeClass("checked"); + $(this) + .find(".octicon") + .removeClass("octicon-check") + .html(" "); + if (hasLabelUpdateAction) { + updateIssueMeta( + $labelMenu.data("update-url"), + "detach", + $(this).data("id") + ); + } + } else { + $(this).addClass("checked"); + $(this) + .find(".octicon") + .addClass("octicon-check") + .html(""); + if (hasLabelUpdateAction) { + updateIssueMeta( + $labelMenu.data("update-url"), + "attach", + $(this).data("id") + ); + } } - // Add   to each unselected label to keep UI looks good. - // This should be added directly to HTML but somehow just get empty on this page. - $labelMenu.find('.item:not(.no-select) .octicon:not(.octicon-check)').each(function () { - $(this).html(' '); - }); - $labelMenu.find('.item:not(.no-select)').click(function () { - if ($(this).hasClass('checked')) { - $(this).removeClass('checked'); - $(this).find('.octicon').removeClass('octicon-check').html(' '); - if (hasLabelUpdateAction) { - updateIssueMeta($labelMenu.data('update-url'), "detach", $(this).data('id')); - } + var labelIds = ""; + $(this) + .parent() + .find(".item") + .each(function() { + if ($(this).hasClass("checked")) { + labelIds += $(this).data("id") + ","; + $($(this).data("id-selector")).removeClass("hide"); } else { - $(this).addClass('checked'); - $(this).find('.octicon').addClass('octicon-check').html(''); - if (hasLabelUpdateAction) { - updateIssueMeta($labelMenu.data('update-url'), "attach", $(this).data('id')); - } + $($(this).data("id-selector")).addClass("hide"); } + }); + if (labelIds.length == 0) { + $noSelect.removeClass("hide"); + } else { + $noSelect.addClass("hide"); + } + $( + $(this) + .parent() + .data("id") + ).val(labelIds); + return false; + }); + $labelMenu.find(".no-select.item").click(function() { + if (hasLabelUpdateAction) { + updateIssueMeta($labelMenu.data("update-url"), "clear", ""); + } - var labelIds = ""; - $(this).parent().find('.item').each(function () { - if ($(this).hasClass('checked')) { - labelIds += $(this).data('id') + ","; - $($(this).data('id-selector')).removeClass('hide'); - } else { - $($(this).data('id-selector')).addClass('hide'); - } - }); - if (labelIds.length == 0) { - $noSelect.removeClass('hide'); - } else { - $noSelect.addClass('hide'); - } - $($(this).parent().data('id')).val(labelIds); - return false; + $(this) + .parent() + .find(".item") + .each(function() { + $(this).removeClass("checked"); + $(this) + .find(".octicon") + .removeClass("octicon-check") + .html(" "); + }); + + $list.find(".item").each(function() { + $(this).addClass("hide"); }); - $labelMenu.find('.no-select.item').click(function () { - if (hasLabelUpdateAction) { - updateIssueMeta($labelMenu.data('update-url'), "clear", ''); - } - - $(this).parent().find('.item').each(function () { - $(this).removeClass('checked'); - $(this).find('.octicon').removeClass('octicon-check').html(' '); + $noSelect.removeClass("hide"); + $( + $(this) + .parent() + .data("id") + ).val(""); + }); + + function selectItem(select_id, input_id) { + var $menu = $(select_id + " .menu"); + var $list = $(".ui" + select_id + ".list"); + var hasUpdateAction = $menu.data("action") == "update"; + + $menu.find(".item:not(.no-select)").click(function() { + $(this) + .parent() + .find(".item") + .each(function() { + $(this).removeClass("selected active"); }); - $list.find('.item').each(function () { - $(this).addClass('hide'); - }); - $noSelect.removeClass('hide'); - $($(this).parent().data('id')).val(''); + $(this).addClass("selected active"); + if (hasUpdateAction) { + updateIssueMeta($menu.data("update-url"), "", $(this).data("id")); + } + switch (input_id) { + case "#milestone_id": + $list + .find(".selected") + .html( + '' + - $(this).text() + ''); - break; - case '#assignee_id': - $list.find('.selected').html('' + - '' + - $(this).text() + ''); - } - $('.ui' + select_id + '.list .no-select').addClass('hide'); - $(input_id).val($(this).data('id')); + $menu.find(".no-select.item").click(function() { + $(this) + .parent() + .find(".item:not(.no-select)") + .each(function() { + $(this).removeClass("selected active"); }); - $menu.find('.no-select.item').click(function () { - $(this).parent().find('.item:not(.no-select)').each(function () { - $(this).removeClass('selected active') - }); - if (hasUpdateAction) { - updateIssueMeta($menu.data('update-url'), '', ''); - } + if (hasUpdateAction) { + updateIssueMeta($menu.data("update-url"), "", ""); + } - $list.find('.selected').html(''); - $list.find('.no-select').removeClass('hide'); - $(input_id).val(''); - }); - } + $list.find(".selected").html(""); + $list.find(".no-select").removeClass("hide"); + $(input_id).val(""); + }); + } - // Milestone and assignee - selectItem('.select-milestone', '#milestone_id'); - selectItem('.select-assignee', '#assignee_id'); + // Milestone and assignee + selectItem(".select-milestone", "#milestone_id"); + selectItem(".select-assignee", "#assignee_id"); } function initRepository() { - if ($('.repository').length == 0) { - return; - } - - function initFilterSearchDropdown(selector) { - var $dropdown = $(selector); - $dropdown.dropdown({ - fullTextSearch: true, - onChange: function (text, value, $choice) { - window.location.href = $choice.data('url'); - console.log($choice.data('url')) - }, - message: { noResults: $dropdown.data('no-results') } - }); - } - - // File list and commits - if ($('.repository.file.list').length > 0 || - ('.repository.commits').length > 0) { - initFilterSearchDropdown('.choose.reference .dropdown'); - - $('.reference.column').click(function () { - $('.choose.reference .scrolling.menu').css('display', 'none'); - $('.choose.reference .text').removeClass('black'); - $($(this).data('target')).css('display', 'block'); - $(this).find('.text').addClass('black'); - return false; - }); - } - - // Wiki - if ($('.repository.wiki.view').length > 0) { - initFilterSearchDropdown('.choose.page .dropdown'); - } - - // Options - if ($('.repository.settings.options').length > 0) { - $('#repo_name').keyup(function () { - var $prompt = $('#repo-name-change-prompt'); - if ($(this).val().toString().toLowerCase() != $(this).data('repo-name').toString().toLowerCase()) { - $prompt.show(); - } else { - $prompt.hide(); - } - }); - } - - // Branches - if ($('.repository.settings.branches').length > 0) { - initFilterSearchDropdown('.protected-branches .dropdown'); - $('.enable-protection, .enable-whitelist').change(function () { - if (this.checked) { - $($(this).data('target')).removeClass('disabled'); - } else { - $($(this).data('target')).addClass('disabled'); - } - }); - } - - // Labels - if ($('.repository.labels').length > 0) { - // Create label - var $newLabelPanel = $('.new-label.segment'); - $('.new-label.button').click(function () { - $newLabelPanel.show(); - }); - $('.new-label.segment .cancel').click(function () { - $newLabelPanel.hide(); - }); - - $('.color-picker').each(function () { - $(this).minicolors(); - }); - $('.precolors .color').click(function () { - var color_hex = $(this).data('color-hex'); - $('.color-picker').val(color_hex); - $('.minicolors-swatch-color').css("background-color", color_hex); - }); - $('.edit-label-button').click(function () { - $('#label-modal-id').val($(this).data('id')); - $('.edit-label .new-label-input').val($(this).data('title')); - $('.edit-label .color-picker').val($(this).data('color')); - $('.minicolors-swatch-color').css("background-color", $(this).data('color')); - $('.edit-label.modal').modal({ - onApprove: function () { - $('.edit-label.form').submit(); - } - }).modal('show'); - return false; - }); - } + if ($(".repository").length == 0) { + return; + } + + function initFilterSearchDropdown(selector) { + var $dropdown = $(selector); + $dropdown.dropdown({ + fullTextSearch: true, + onChange: function(text, value, $choice) { + window.location.href = $choice.data("url"); + console.log($choice.data("url")); + }, + message: { noResults: $dropdown.data("no-results") } + }); + } + + // File list and commits + if ( + $(".repository.file.list").length > 0 || + ".repository.commits".length > 0 + ) { + initFilterSearchDropdown(".choose.reference .dropdown"); + + $(".reference.column").click(function() { + $(".choose.reference .scrolling.menu").css("display", "none"); + $(".choose.reference .text").removeClass("black"); + $($(this).data("target")).css("display", "block"); + $(this) + .find(".text") + .addClass("black"); + return false; + }); + } + + // Wiki + if ($(".repository.wiki.view").length > 0) { + initFilterSearchDropdown(".choose.page .dropdown"); + } + + // Options + if ($(".repository.settings.options").length > 0) { + $("#repo_name").keyup(function() { + var $prompt = $("#repo-name-change-prompt"); + if ( + $(this) + .val() + .toString() + .toLowerCase() != + $(this) + .data("repo-name") + .toString() + .toLowerCase() + ) { + $prompt.show(); + } else { + $prompt.hide(); + } + }); + } + + // Branches + if ($(".repository.settings.branches").length > 0) { + initFilterSearchDropdown(".protected-branches .dropdown"); + $(".enable-protection, .enable-whitelist").change(function() { + if (this.checked) { + $($(this).data("target")).removeClass("disabled"); + } else { + $($(this).data("target")).addClass("disabled"); + } + }); + } + + // Labels + if ($(".repository.labels").length > 0) { + // Create label + var $newLabelPanel = $(".new-label.segment"); + $(".new-label.button").click(function() { + $newLabelPanel.show(); + }); + $(".new-label.segment .cancel").click(function() { + $newLabelPanel.hide(); + }); - // Milestones - if ($('.repository.milestones').length > 0) { + $(".color-picker").each(function() { + $(this).minicolors(); + }); + $(".precolors .color").click(function() { + var color_hex = $(this).data("color-hex"); + $(".color-picker").val(color_hex); + $(".minicolors-swatch-color").css("background-color", color_hex); + }); + $(".edit-label-button").click(function() { + $("#label-modal-id").val($(this).data("id")); + $(".edit-label .new-label-input").val($(this).data("title")); + $(".edit-label .color-picker").val($(this).data("color")); + $(".minicolors-swatch-color").css( + "background-color", + $(this).data("color") + ); + $(".edit-label.modal") + .modal({ + onApprove: function() { + $(".edit-label.form").submit(); + } + }) + .modal("show"); + return false; + }); + } + + // Milestones + if ($(".repository.milestones").length > 0) { + } + if ($(".repository.new.milestone").length > 0) { + var $datepicker = $(".milestone.datepicker"); + $datepicker.datetimepicker({ + lang: $datepicker.data("lang"), + inline: true, + timepicker: false, + startDate: $datepicker.data("start-date"), + formatDate: "Y-m-d", + onSelectDate: function(ct) { + $("#deadline").val(ct.dateFormat("Y-m-d")); + } + }); + $("#clear-date").click(function() { + $("#deadline").val(""); + return false; + }); + } + + // Issues + if ($(".repository.view.issue").length > 0) { + // Edit issue title + var $issueTitle = $("#issue-title"); + var $editInput = $("#edit-title-input").find("input"); + var editTitleToggle = function() { + $issueTitle.toggle(); + $(".not-in-edit").toggle(); + $("#edit-title-input").toggle(); + $(".in-edit").toggle(); + $editInput.focus(); + return false; + }; + $("#edit-title").click(editTitleToggle); + $("#cancel-edit-title").click(editTitleToggle); + $("#save-edit-title") + .click(editTitleToggle) + .click(function() { + if ( + $editInput.val().length == 0 || + $editInput.val() == $issueTitle.text() + ) { + $editInput.val($issueTitle.text()); + return false; + } - } - if ($('.repository.new.milestone').length > 0) { - var $datepicker = $('.milestone.datepicker'); - $datepicker.datetimepicker({ - lang: $datepicker.data('lang'), - inline: true, - timepicker: false, - startDate: $datepicker.data('start-date'), - formatDate: 'Y-m-d', - onSelectDate: function (ct) { - $('#deadline').val(ct.dateFormat('Y-m-d')); - } - }); - $('#clear-date').click(function () { - $('#deadline').val(''); - return false; + $.post( + $(this).data("update-url"), + { + _csrf: csrf, + title: $editInput.val() + }, + function(data) { + $editInput.val(data.title); + $issueTitle.text(data.title); + } + ); + return false; + }); + + // Edit issue or comment content + $(".edit-content").click(function() { + var $segment = $(this) + .parent() + .parent() + .parent() + .next(); + var $editContentZone = $segment.find(".edit-content-zone"); + var $renderContent = $segment.find(".render-content"); + var $rawContent = $segment.find(".raw-content"); + var $textarea; + + // Setup new form + if ($editContentZone.html().length == 0) { + $editContentZone.html($("#edit-content-form").html()); + $textarea = $segment.find("textarea"); + + // Give new write/preview data-tab name to distinguish from others + var $editContentForm = $editContentZone.find(".ui.comment.form"); + var $tabMenu = $editContentForm.find(".tabular.menu"); + $tabMenu.attr("data-write", $editContentZone.data("write")); + $tabMenu.attr("data-preview", $editContentZone.data("preview")); + $tabMenu + .find(".write.item") + .attr("data-tab", $editContentZone.data("write")); + $tabMenu + .find(".preview.item") + .attr("data-tab", $editContentZone.data("preview")); + $editContentForm + .find(".write.segment") + .attr("data-tab", $editContentZone.data("write")); + $editContentForm + .find(".preview.segment") + .attr("data-tab", $editContentZone.data("preview")); + + initCommentPreviewTab($editContentForm); + + $editContentZone.find(".cancel.button").click(function() { + $renderContent.show(); + $editContentZone.hide(); }); - } - - // Issues - if ($('.repository.view.issue').length > 0) { - // Edit issue title - var $issueTitle = $('#issue-title'); - var $editInput = $('#edit-title-input').find('input'); - var editTitleToggle = function () { - $issueTitle.toggle(); - $('.not-in-edit').toggle(); - $('#edit-title-input').toggle(); - $('.in-edit').toggle(); - $editInput.focus(); - return false; - }; - $('#edit-title').click(editTitleToggle); - $('#cancel-edit-title').click(editTitleToggle); - $('#save-edit-title').click(editTitleToggle).click(function () { - if ($editInput.val().length == 0 || - $editInput.val() == $issueTitle.text()) { - $editInput.val($issueTitle.text()); - return false; - } - - $.post($(this).data('update-url'), { - "_csrf": csrf, - "title": $editInput.val() + $editContentZone.find(".save.button").click(function() { + $renderContent.show(); + $editContentZone.hide(); + + $.post( + $editContentZone.data("update-url"), + { + _csrf: csrf, + content: $textarea.val(), + context: $editContentZone.data("context") }, - function (data) { - $editInput.val(data.title); - $issueTitle.text(data.title); + function(data) { + if (data.length == 0) { + $renderContent.html($("#no-content").html()); + } else { + $renderContent.html(data.content); + emojify.run($renderContent[0]); + $("pre code", $renderContent[0]).each(function(i, block) { + hljs.highlightBlock(block); }); - return false; - }); - - // Edit issue or comment content - $('.edit-content').click(function () { - var $segment = $(this).parent().parent().parent().next(); - var $editContentZone = $segment.find('.edit-content-zone'); - var $renderContent = $segment.find('.render-content'); - var $rawContent = $segment.find('.raw-content'); - var $textarea; - - // Setup new form - if ($editContentZone.html().length == 0) { - $editContentZone.html($('#edit-content-form').html()); - $textarea = $segment.find('textarea'); - - // Give new write/preview data-tab name to distinguish from others - var $editContentForm = $editContentZone.find('.ui.comment.form'); - var $tabMenu = $editContentForm.find('.tabular.menu'); - $tabMenu.attr('data-write', $editContentZone.data('write')); - $tabMenu.attr('data-preview', $editContentZone.data('preview')); - $tabMenu.find('.write.item').attr('data-tab', $editContentZone.data('write')); - $tabMenu.find('.preview.item').attr('data-tab', $editContentZone.data('preview')); - $editContentForm.find('.write.segment').attr('data-tab', $editContentZone.data('write')); - $editContentForm.find('.preview.segment').attr('data-tab', $editContentZone.data('preview')); - - initCommentPreviewTab($editContentForm); - - $editContentZone.find('.cancel.button').click(function () { - $renderContent.show(); - $editContentZone.hide(); - }); - $editContentZone.find('.save.button').click(function () { - $renderContent.show(); - $editContentZone.hide(); - - $.post($editContentZone.data('update-url'), { - "_csrf": csrf, - "content": $textarea.val(), - "context": $editContentZone.data('context') - }, - function (data) { - if (data.length == 0) { - $renderContent.html($('#no-content').html()); - } else { - $renderContent.html(data.content); - emojify.run($renderContent[0]); - $('pre code', $renderContent[0]).each(function (i, block) { - hljs.highlightBlock(block); - }); - } - }); - }); - } else { - $textarea = $segment.find('textarea'); - } - - // Show write/preview tab and copy raw content as needed - $editContentZone.show(); - $renderContent.hide(); - if ($textarea.val().length == 0) { - $textarea.val($rawContent.text()); - } - $textarea.focus(); - return false; - }); - - // Delete comment - $('.delete-comment').click(function () { - var $this = $(this); - if (confirm($this.data('locale'))) { - $.post($this.data('url'), { - "_csrf": csrf - }).done(function () { - $('#' + $this.data('comment-id')).remove(); - }); - } - return false; - }); - - // Change status - var $statusButton = $('#status-button'); - $('#comment-form .edit_area').keyup(function () { - if ($(this).val().length == 0) { - $statusButton.text($statusButton.data('status')) - } else { - $statusButton.text($statusButton.data('status-and-comment')) + } } + ); }); - $statusButton.click(function () { - $('#status').val($statusButton.data('status-val')); - $('#comment-form').submit(); - }); - } - - // Diff - if ($('.repository.diff').length > 0) { - var $counter = $('.diff-counter'); - if ($counter.length >= 1) { - $counter.each(function (i, item) { - var $item = $(item); - var addLine = $item.find('span[data-line].add').data("line"); - var delLine = $item.find('span[data-line].del').data("line"); - var addPercent = parseFloat(addLine) / (parseFloat(addLine) + parseFloat(delLine)) * 100; - $item.find(".bar .add").css("width", addPercent + "%"); - }); - } + } else { + $textarea = $segment.find("textarea"); + } + + // Show write/preview tab and copy raw content as needed + $editContentZone.show(); + $renderContent.hide(); + if ($textarea.val().length == 0) { + $textarea.val($rawContent.text()); + } + $textarea.focus(); + return false; + }); - $('.diff-file-box .lines-num').click(function () { - if ($(this).attr('id')) { - window.location.href = '#' + $(this).attr('id'); - } + // Delete comment + $(".delete-comment").click(function() { + var $this = $(this); + if (confirm($this.data("locale"))) { + $.post($this.data("url"), { + _csrf: csrf + }).done(function() { + $("#" + $this.data("comment-id")).remove(); }); + } + return false; + }); - $(window).on('hashchange', function (e) { - $('.diff-file-box .lines-code.active').removeClass('active'); - var m = window.location.hash.match(/^#diff-.+$/); - if (m) { - $(m[0]).siblings('.lines-code').addClass('active'); - } - }).trigger('hashchange'); - } - - // Quick start and repository home - $('#repo-clone-ssh').click(function () { - $('.clone-url').text($(this).data('link')); - $('#repo-clone-url').val($(this).data('link')); - $(this).addClass('blue'); - $('#repo-clone-https').removeClass('blue'); - localStorage.setItem('repo-clone-protocol', 'ssh'); + // Change status + var $statusButton = $("#status-button"); + $("#comment-form .edit_area").keyup(function() { + if ($(this).val().length == 0) { + $statusButton.text($statusButton.data("status")); + } else { + $statusButton.text($statusButton.data("status-and-comment")); + } }); - $('#repo-clone-https').click(function () { - $('.clone-url').text($(this).data('link')); - $('#repo-clone-url').val($(this).data('link')); - $(this).addClass('blue'); - $('#repo-clone-ssh').removeClass('blue'); - localStorage.setItem('repo-clone-protocol', 'https'); + $statusButton.click(function() { + $("#status").val($statusButton.data("status-val")); + $("#comment-form").submit(); }); - $('#repo-clone-url').click(function () { - $(this).select(); + } + + // Diff + if ($(".repository.diff").length > 0) { + var $counter = $(".diff-counter"); + if ($counter.length >= 1) { + $counter.each(function(i, item) { + var $item = $(item); + var addLine = $item.find("span[data-line].add").data("line"); + var delLine = $item.find("span[data-line].del").data("line"); + var addPercent = + (parseFloat(addLine) / (parseFloat(addLine) + parseFloat(delLine))) * + 100; + $item.find(".bar .add").css("width", addPercent + "%"); + }); + } + + $(".diff-file-box .lines-num").click(function() { + if ($(this).attr("id")) { + window.location.href = "#" + $(this).attr("id"); + } }); - // Pull request - if ($('.repository.compare.pull').length > 0) { - initFilterSearchDropdown('.choose.branch .dropdown'); - } - if ($('.repository.view.pull').length > 0) { - $('.comment.merge.box input[name=merge_style]').change(function () { - if ($(this).val() === 'create_merge_commit') { - $('.commit.description.field').show(); - } else { - $('.commit.description.field').hide(); - } - }) - } + $(window) + .on("hashchange", function(e) { + $(".diff-file-box .lines-code.active").removeClass("active"); + var m = window.location.hash.match(/^#diff-.+$/); + if (m) { + $(m[0]) + .siblings(".lines-code") + .addClass("active"); + } + }) + .trigger("hashchange"); + } + + // Quick start and repository home + $("#repo-clone-ssh").click(function() { + $(".clone-url").text($(this).data("link")); + $("#repo-clone-url").val($(this).data("link")); + $(this).addClass("blue"); + $("#repo-clone-https").removeClass("blue"); + localStorage.setItem("repo-clone-protocol", "ssh"); + }); + $("#repo-clone-https").click(function() { + $(".clone-url").text($(this).data("link")); + $("#repo-clone-url").val($(this).data("link")); + $(this).addClass("blue"); + $("#repo-clone-ssh").removeClass("blue"); + localStorage.setItem("repo-clone-protocol", "https"); + }); + $("#repo-clone-url").click(function() { + $(this).select(); + }); + + // Pull request + if ($(".repository.compare.pull").length > 0) { + initFilterSearchDropdown(".choose.branch .dropdown"); + } + if ($(".repository.view.pull").length > 0) { + $(".comment.merge.box input[name=merge_style]").change(function() { + if ($(this).val() === "create_merge_commit") { + $(".commit.description.field").show(); + } else { + $(".commit.description.field").hide(); + } + }); + } } function initWikiForm() { - var $editArea = $('.repository.wiki textarea#edit_area'); - if ($editArea.length > 0) { - new SimpleMDE({ - autoDownloadFontAwesome: false, - element: $editArea[0], - forceSync: true, - previewRender: function (plainText, preview) { // Async method - setTimeout(function () { - // FIXME: still send render request when return back to edit mode - $.post($editArea.data('url'), { - "_csrf": csrf, - "mode": "gfm", - "context": $editArea.data('context'), - "text": plainText - }, - function (data) { - preview.innerHTML = '
' + data + '
'; - emojify.run($('.editor-preview')[0]); - } - ); - }, 0); - - return "Loading..."; - }, - renderingConfig: { - singleLineBreaks: false + var $editArea = $(".repository.wiki textarea#edit_area"); + if ($editArea.length > 0) { + new SimpleMDE({ + autoDownloadFontAwesome: false, + element: $editArea[0], + forceSync: true, + previewRender: function(plainText, preview) { + // Async method + setTimeout(function() { + // FIXME: still send render request when return back to edit mode + $.post( + $editArea.data("url"), + { + _csrf: csrf, + mode: "gfm", + context: $editArea.data("context"), + text: plainText }, - indentWithTabs: false, - tabSize: 4, - spellChecker: false, - toolbar: ["bold", "italic", "strikethrough", "|", - "heading-1", "heading-2", "heading-3", "heading-bigger", "heading-smaller", "|", - "code", "quote", "|", - "unordered-list", "ordered-list", "|", - "link", "image", "table", "horizontal-rule", "|", - "clean-block", "preview", "fullscreen"] - }) - } + function(data) { + preview.innerHTML = '
' + data + "
"; + emojify.run($(".editor-preview")[0]); + } + ); + }, 0); + + return "Loading..."; + }, + renderingConfig: { + singleLineBreaks: false + }, + indentWithTabs: false, + tabSize: 4, + spellChecker: false, + toolbar: [ + "bold", + "italic", + "strikethrough", + "|", + "heading-1", + "heading-2", + "heading-3", + "heading-bigger", + "heading-smaller", + "|", + "code", + "quote", + "|", + "unordered-list", + "ordered-list", + "|", + "link", + "image", + "table", + "horizontal-rule", + "|", + "clean-block", + "preview", + "fullscreen" + ] + }); + } } var simpleMDEditor; var codeMirrorEditor; // For IE -String.prototype.endsWith = function (pattern) { - var d = this.length - pattern.length; - return d >= 0 && this.lastIndexOf(pattern) === d; +String.prototype.endsWith = function(pattern) { + var d = this.length - pattern.length; + return d >= 0 && this.lastIndexOf(pattern) === d; }; // Adding function to get the cursor position in a text field to jQuery object. -(function ($, undefined) { - $.fn.getCursorPosition = function () { - var el = $(this).get(0); - var pos = 0; - if ('selectionStart' in el) { - pos = el.selectionStart; - } else if ('selection' in document) { - el.focus(); - var Sel = document.selection.createRange(); - var SelLength = document.selection.createRange().text.length; - Sel.moveStart('character', -el.value.length); - pos = Sel.text.length - SelLength; - } - return pos; +(function($, undefined) { + $.fn.getCursorPosition = function() { + var el = $(this).get(0); + var pos = 0; + if ("selectionStart" in el) { + pos = el.selectionStart; + } else if ("selection" in document) { + el.focus(); + var Sel = document.selection.createRange(); + var SelLength = document.selection.createRange().text.length; + Sel.moveStart("character", -el.value.length); + pos = Sel.text.length - SelLength; } + return pos; + }; })(jQuery); - function setSimpleMDE($editArea) { - if (codeMirrorEditor) { - codeMirrorEditor.toTextArea(); - codeMirrorEditor = null; - } - - if (simpleMDEditor) { - return true; - } - - simpleMDEditor = new SimpleMDE({ - autoDownloadFontAwesome: false, - element: $editArea[0], - forceSync: true, - renderingConfig: { - singleLineBreaks: false - }, - indentWithTabs: false, - tabSize: 4, - spellChecker: false, - previewRender: function (plainText, preview) { // Async method - setTimeout(function () { - // FIXME: still send render request when return back to edit mode - $.post($editArea.data('url'), { - "_csrf": csrf, - "mode": "gfm", - "context": $editArea.data('context'), - "text": plainText - }, - function (data) { - preview.innerHTML = '
' + data + '
'; - emojify.run($('.editor-preview')[0]); - } - ); - }, 0); - - return "Loading..."; - }, - toolbar: ["bold", "italic", "strikethrough", "|", - "heading-1", "heading-2", "heading-3", "heading-bigger", "heading-smaller", "|", - "code", "quote", "|", - "unordered-list", "ordered-list", "|", - "link", "image", "table", "horizontal-rule", "|", - "clean-block"] - }); + if (codeMirrorEditor) { + codeMirrorEditor.toTextArea(); + codeMirrorEditor = null; + } + if (simpleMDEditor) { return true; + } + + simpleMDEditor = new SimpleMDE({ + autoDownloadFontAwesome: false, + element: $editArea[0], + forceSync: true, + renderingConfig: { + singleLineBreaks: false + }, + indentWithTabs: false, + tabSize: 4, + spellChecker: false, + previewRender: function(plainText, preview) { + // Async method + setTimeout(function() { + // FIXME: still send render request when return back to edit mode + $.post( + $editArea.data("url"), + { + _csrf: csrf, + mode: "gfm", + context: $editArea.data("context"), + text: plainText + }, + function(data) { + preview.innerHTML = '
' + data + "
"; + emojify.run($(".editor-preview")[0]); + } + ); + }, 0); + + return "Loading..."; + }, + toolbar: [ + "bold", + "italic", + "strikethrough", + "|", + "heading-1", + "heading-2", + "heading-3", + "heading-bigger", + "heading-smaller", + "|", + "code", + "quote", + "|", + "unordered-list", + "ordered-list", + "|", + "link", + "image", + "table", + "horizontal-rule", + "|", + "clean-block" + ] + }); + + return true; } function setCodeMirror($editArea) { - if (simpleMDEditor) { - simpleMDEditor.toTextArea(); - simpleMDEditor = null; - } + if (simpleMDEditor) { + simpleMDEditor.toTextArea(); + simpleMDEditor = null; + } - if (codeMirrorEditor) { - return true; - } + if (codeMirrorEditor) { + return true; + } - codeMirrorEditor = CodeMirror.fromTextArea($editArea[0], { - lineNumbers: true - }); - codeMirrorEditor.on("change", function (cm, change) { - $editArea.val(cm.getValue()); - }); + codeMirrorEditor = CodeMirror.fromTextArea($editArea[0], { + lineNumbers: true + }); + codeMirrorEditor.on("change", function(cm, change) { + $editArea.val(cm.getValue()); + }); - return true; + return true; } function initEditor() { - $('.js-quick-pull-choice-option').change(function () { - if ($(this).val() == 'commit-to-new-branch') { - $('.quick-pull-branch-name').show(); - $('.quick-pull-branch-name input').prop('required', true); - } else { - $('.quick-pull-branch-name').hide(); - $('.quick-pull-branch-name input').prop('required', false); + $(".js-quick-pull-choice-option").change(function() { + if ($(this).val() == "commit-to-new-branch") { + $(".quick-pull-branch-name").show(); + $(".quick-pull-branch-name input").prop("required", true); + } else { + $(".quick-pull-branch-name").hide(); + $(".quick-pull-branch-name input").prop("required", false); + } + }); + + var $editFilename = $("#file-name"); + $editFilename + .keyup(function(e) { + var $section = $(".breadcrumb span.section"); + var $divider = $(".breadcrumb div.divider"); + if (e.keyCode == 8) { + if ($(this).getCursorPosition() == 0) { + if ($section.length > 0) { + var value = $section + .last() + .find("a") + .text(); + $(this).val(value + $(this).val()); + $(this)[0].setSelectionRange(value.length, value.length); + $section.last().remove(); + $divider.last().remove(); + } } - }); - - var $editFilename = $("#file-name"); - $editFilename.keyup(function (e) { - var $section = $('.breadcrumb span.section'); - var $divider = $('.breadcrumb div.divider'); - if (e.keyCode == 8) { - if ($(this).getCursorPosition() == 0) { - if ($section.length > 0) { - var value = $section.last().find('a').text(); - $(this).val(value + $(this).val()); - $(this)[0].setSelectionRange(value.length, value.length); - $section.last().remove(); - $divider.last().remove(); - } + } + if (e.keyCode == 191) { + var parts = $(this) + .val() + .split("/"); + for (var i = 0; i < parts.length; ++i) { + var value = parts[i]; + if (i < parts.length - 1) { + if (value.length) { + $( + '' + value + "" + ).insertBefore($(this)); + $('
/
').insertBefore($(this)); } + } else { + $(this).val(value); + } + $(this)[0].setSelectionRange(0, 0); } - if (e.keyCode == 191) { - var parts = $(this).val().split('/'); - for (var i = 0; i < parts.length; ++i) { - var value = parts[i]; - if (i < parts.length - 1) { - if (value.length) { - $('' + value + '').insertBefore($(this)); - $('
/
').insertBefore($(this)); - } - } - else { - $(this).val(value); - } - $(this)[0].setSelectionRange(0, 0); - } + } + var parts = []; + $(".breadcrumb span.section").each(function(i, element) { + element = $(element); + if (element.find("a").length) { + parts.push(element.find("a").text()); + } else { + parts.push(element.text()); } - var parts = []; - $('.breadcrumb span.section').each(function (i, element) { - element = $(element); - if (element.find('a').length) { - parts.push(element.find('a').text()); - } else { - parts.push(element.text()); - } - }); - if ($(this).val()) { - parts.push($(this).val()); + }); + if ($(this).val()) { + parts.push($(this).val()); + } + + var tree_path = parts.join("/"); + $("#tree_path").val(tree_path); + $("#preview-tab").data( + "context", + $("#preview-tab").data("root-context") + + tree_path.substring(0, tree_path.lastIndexOf("/") + 1) + ); + }) + .trigger("keyup"); + + var $editArea = $(".repository.editor textarea#edit_area"); + if (!$editArea.length) return; + + var markdownFileExts = $editArea.data("markdown-file-exts").split(","); + var lineWrapExtensions = $editArea.data("line-wrap-extensions").split(","); + + $editFilename + .on("keyup", function(e) { + var val = $editFilename.val(), + m, + mode, + spec, + extension, + extWithDot, + previewLink, + dataUrl, + apiCall; + extension = extWithDot = ""; + if ((m = /.+\.([^.]+)$/.exec(val))) { + extension = m[1].toLowerCase(); + extWithDot = "." + extension; + } + + var info = CodeMirror.findModeByExtension(extension); + previewLink = $("a[data-tab=preview]"); + if (info) { + mode = info.mode; + spec = info.mime; + apiCall = mode; + } else { + apiCall = extension; + } + + if ( + previewLink.length && + apiCall && + previewFileModes && + previewFileModes.length && + previewFileModes.indexOf(apiCall) >= 0 + ) { + dataUrl = previewLink.data("url"); + previewLink.data("url", dataUrl.replace(/(.*)\/.*/i, "$1/" + mode)); + previewLink.show(); + } else { + previewLink.hide(); + } + + // If this file is a Markdown extensions, we will load that editor and return + if (markdownFileExts.indexOf(extWithDot) >= 0) { + if (setSimpleMDE($editArea)) { + return; } + } - var tree_path = parts.join('/'); - $('#tree_path').val(tree_path); - $('#preview-tab').data('context', $('#preview-tab').data('root-context') + tree_path.substring(0, tree_path.lastIndexOf("/") + 1)); - }).trigger('keyup'); - - var $editArea = $('.repository.editor textarea#edit_area'); - if (!$editArea.length) + // Else we are going to use CodeMirror + if (!codeMirrorEditor && !setCodeMirror($editArea)) { return; - - var markdownFileExts = $editArea.data("markdown-file-exts").split(","); - var lineWrapExtensions = $editArea.data("line-wrap-extensions").split(","); - - $editFilename.on("keyup", function (e) { - var val = $editFilename.val(), m, mode, spec, extension, extWithDot, previewLink, dataUrl, apiCall; - extension = extWithDot = ""; - if (m = /.+\.([^.]+)$/.exec(val)) { - extension = m[1].toLowerCase(); - extWithDot = "." + extension; - } - - var info = CodeMirror.findModeByExtension(extension); - previewLink = $('a[data-tab=preview]'); - if (info) { - mode = info.mode; - spec = info.mime; - apiCall = mode; - } - else { - apiCall = extension - } - - if (previewLink.length && apiCall && previewFileModes && previewFileModes.length && previewFileModes.indexOf(apiCall) >= 0) { - dataUrl = previewLink.data('url'); - previewLink.data('url', dataUrl.replace(/(.*)\/.*/i, '$1/' + mode)); - previewLink.show(); - } - else { - previewLink.hide(); - } - - // If this file is a Markdown extensions, we will load that editor and return - if (markdownFileExts.indexOf(extWithDot) >= 0) { - if (setSimpleMDE($editArea)) { - return; + } + + if (mode) { + codeMirrorEditor.setOption("mode", spec); + CodeMirror.autoLoadMode(codeMirrorEditor, mode); + } + + if (lineWrapExtensions.indexOf(extWithDot) >= 0) { + codeMirrorEditor.setOption("lineWrapping", true); + } else { + codeMirrorEditor.setOption("lineWrapping", false); + } + + // get the filename without any folder + var value = $editFilename.val(); + if (value.length === 0) { + return; + } + value = value.split("/"); + value = value[value.length - 1]; + + $.getJSON($editFilename.data("ec-url-prefix") + value, function( + editorconfig + ) { + if (editorconfig.indent_style === "tab") { + codeMirrorEditor.setOption("indentWithTabs", true); + codeMirrorEditor.setOption("extraKeys", {}); + } else { + codeMirrorEditor.setOption("indentWithTabs", false); + // required because CodeMirror doesn't seems to use spaces correctly for {"indentWithTabs": false}: + // - https://github.com/codemirror/CodeMirror/issues/988 + // - https://codemirror.net/doc/manual.html#keymaps + codeMirrorEditor.setOption("extraKeys", { + Tab: function(cm) { + var spaces = Array(parseInt(cm.getOption("indentUnit")) + 1).join( + " " + ); + cm.replaceSelection(spaces); } + }); } - - // Else we are going to use CodeMirror - if (!codeMirrorEditor && !setCodeMirror($editArea)) { - return; - } - - if (mode) { - codeMirrorEditor.setOption("mode", spec); - CodeMirror.autoLoadMode(codeMirrorEditor, mode); - } - - if (lineWrapExtensions.indexOf(extWithDot) >= 0) { - codeMirrorEditor.setOption("lineWrapping", true); - } - else { - codeMirrorEditor.setOption("lineWrapping", false); - } - - // get the filename without any folder - var value = $editFilename.val(); - if (value.length === 0) { - return; - } - value = value.split('/'); - value = value[value.length - 1]; - - $.getJSON($editFilename.data('ec-url-prefix') + value, function (editorconfig) { - if (editorconfig.indent_style === 'tab') { - codeMirrorEditor.setOption("indentWithTabs", true); - codeMirrorEditor.setOption('extraKeys', {}); - } else { - codeMirrorEditor.setOption("indentWithTabs", false); - // required because CodeMirror doesn't seems to use spaces correctly for {"indentWithTabs": false}: - // - https://github.com/codemirror/CodeMirror/issues/988 - // - https://codemirror.net/doc/manual.html#keymaps - codeMirrorEditor.setOption('extraKeys', { - Tab: function (cm) { - var spaces = Array(parseInt(cm.getOption("indentUnit")) + 1).join(" "); - cm.replaceSelection(spaces); - } - }); - } - codeMirrorEditor.setOption("indentUnit", editorconfig.indent_size || 4); - codeMirrorEditor.setOption("tabSize", editorconfig.tab_width || 4); - }); - }).trigger('keyup'); + codeMirrorEditor.setOption("indentUnit", editorconfig.indent_size || 4); + codeMirrorEditor.setOption("tabSize", editorconfig.tab_width || 4); + }); + }) + .trigger("keyup"); } function initOrganization() { - if ($('.organization').length == 0) { - return; - } - - // Options - if ($('.organization.settings.options').length > 0) { - $('#org_name').keyup(function () { - var $prompt = $('#org-name-change-prompt'); - if ($(this).val().toString().toLowerCase() != $(this).data('org-name').toString().toLowerCase()) { - $prompt.show(); - } else { - $prompt.hide(); - } - }); - } + if ($(".organization").length == 0) { + return; + } + + // Options + if ($(".organization.settings.options").length > 0) { + $("#org_name").keyup(function() { + var $prompt = $("#org-name-change-prompt"); + if ( + $(this) + .val() + .toString() + .toLowerCase() != + $(this) + .data("org-name") + .toString() + .toLowerCase() + ) { + $prompt.show(); + } else { + $prompt.hide(); + } + }); + } } function initAdmin() { - if ($('.admin').length == 0) { - return; - } - - // New user - if ($('.admin.new.user').length > 0 || - $('.admin.edit.user').length > 0) { - $('#login_type').change(function () { - if ($(this).val().substring(0, 1) == '0') { - $('#login_name').removeAttr('required'); - $('.non-local').hide(); - $('.local').show(); - $('#user_name').focus(); - - if ($(this).data('password') == "required") { - $('#password').attr('required', 'required'); - } - - } else { - $('#login_name').attr('required', 'required'); - $('.non-local').show(); - $('.local').hide(); - $('#login_name').focus(); - - $('#password').removeAttr('required'); - } - }); - } - - function onSecurityProtocolChange() { - if ($('#security_protocol').val() > 0) { - $('.has-tls').show(); - } else { - $('.has-tls').hide(); + if ($(".admin").length == 0) { + return; + } + + // New user + if ($(".admin.new.user").length > 0 || $(".admin.edit.user").length > 0) { + $("#login_type").change(function() { + if ( + $(this) + .val() + .substring(0, 1) == "0" + ) { + $("#login_name").removeAttr("required"); + $(".non-local").hide(); + $(".local").show(); + $("#user_name").focus(); + + if ($(this).data("password") == "required") { + $("#password").attr("required", "required"); } - } - - // New authentication - if ($('.admin.new.authentication').length > 0) { - $('#auth_type').change(function () { - $('.ldap').hide(); - $('.dldap').hide(); - $('.smtp').hide(); - $('.pam').hide(); - $('.github').hide(); - $('.has-tls').hide(); - - var authType = $(this).val(); - switch (authType) { - case '2': // LDAP - $('.ldap').show(); - break; - case '3': // SMTP - $('.smtp').show(); - $('.has-tls').show(); - break; - case '4': // PAM - $('.pam').show(); - break; - case '5': // LDAP - $('.dldap').show(); - break; - case '6': //GITHUB - $('.github').show(); - break; - } + } else { + $("#login_name").attr("required", "required"); + $(".non-local").show(); + $(".local").hide(); + $("#login_name").focus(); + + $("#password").removeAttr("required"); + } + }); + } - if (authType == '2' || authType == '5') { - onSecurityProtocolChange() - } - }); - $('#security_protocol').change(onSecurityProtocolChange) + function onSecurityProtocolChange() { + if ($("#security_protocol").val() > 0) { + $(".has-tls").show(); + } else { + $(".has-tls").hide(); } - // Edit authentication - if ($('.admin.edit.authentication').length > 0) { - var authType = $('#auth_type').val(); - if (authType == '2' || authType == '5') { - $('#security_protocol').change(onSecurityProtocolChange); - } + } + + // New authentication + if ($(".admin.new.authentication").length > 0) { + $("#auth_type").change(function() { + $(".ldap").hide(); + $(".dldap").hide(); + $(".smtp").hide(); + $(".pam").hide(); + $(".github").hide(); + $(".has-tls").hide(); + + var authType = $(this).val(); + switch (authType) { + case "2": // LDAP + $(".ldap").show(); + break; + case "3": // SMTP + $(".smtp").show(); + $(".has-tls").show(); + break; + case "4": // PAM + $(".pam").show(); + break; + case "5": // LDAP + $(".dldap").show(); + break; + case "6": //GITHUB + $(".github").show(); + break; + } + + if (authType == "2" || authType == "5") { + onSecurityProtocolChange(); + } + }); + $("#security_protocol").change(onSecurityProtocolChange); + } + // Edit authentication + if ($(".admin.edit.authentication").length > 0) { + var authType = $("#auth_type").val(); + if (authType == "2" || authType == "5") { + $("#security_protocol").change(onSecurityProtocolChange); } + } - // Notice - if ($('.admin.notice')) { - var $detailModal = $('#detail-modal'); + // Notice + if ($(".admin.notice")) { + var $detailModal = $("#detail-modal"); - // Attach view detail modals - $('.view-detail').click(function () { - $detailModal.find('.content p').text($(this).data('content')); - $detailModal.modal('show'); - return false; - }); + // Attach view detail modals + $(".view-detail").click(function() { + $detailModal.find(".content p").text($(this).data("content")); + $detailModal.modal("show"); + return false; + }); - // Select actions - var $checkboxes = $('.select.table .ui.checkbox'); - $('.select.action').click(function () { - switch ($(this).data('action')) { - case 'select-all': - $checkboxes.checkbox('check'); - break; - case 'deselect-all': - $checkboxes.checkbox('uncheck'); - break; - case 'inverse': - $checkboxes.checkbox('toggle'); - break; - } - }); - $('#delete-selection').click(function () { - var $this = $(this); - $this.addClass("loading disabled"); - var ids = []; - $checkboxes.each(function () { - if ($(this).checkbox('is checked')) { - ids.push($(this).data('id')); - } - }); - $.post($this.data('link'), { - "_csrf": csrf, - "ids": ids - }).done(function () { - window.location.href = $this.data('redirect'); - }); - }); - } + // Select actions + var $checkboxes = $(".select.table .ui.checkbox"); + $(".select.action").click(function() { + switch ($(this).data("action")) { + case "select-all": + $checkboxes.checkbox("check"); + break; + case "deselect-all": + $checkboxes.checkbox("uncheck"); + break; + case "inverse": + $checkboxes.checkbox("toggle"); + break; + } + }); + $("#delete-selection").click(function() { + var $this = $(this); + $this.addClass("loading disabled"); + var ids = []; + $checkboxes.each(function() { + if ($(this).checkbox("is checked")) { + ids.push($(this).data("id")); + } + }); + $.post($this.data("link"), { + _csrf: csrf, + ids: ids + }).done(function() { + window.location.href = $this.data("redirect"); + }); + }); + } } function buttonsClickOnEnter() { - $('.ui.button').keypress(function (e) { - if (e.keyCode == 13 || e.keyCode == 32) // enter key or space bar - $(this).click(); - }); + $(".ui.button").keypress(function(e) { + if (e.keyCode == 13 || e.keyCode == 32) + // enter key or space bar + $(this).click(); + }); } function hideWhenLostFocus(body, parent) { - $(document).click(function (e) { - var target = e.target; - if (!$(target).is(body) && !$(target).parents().is(parent)) { - $(body).hide(); - } - }); + $(document).click(function(e) { + var target = e.target; + if ( + !$(target).is(body) && + !$(target) + .parents() + .is(parent) + ) { + $(body).hide(); + } + }); } function searchUsers() { - if (!$('#search-user-box .results').length) { - return; + if (!$("#search-user-box .results").length) { + return; + } + + var $searchUserBox = $("#search-user-box"); + var $results = $searchUserBox.find(".results"); + $searchUserBox.keyup(function() { + var $this = $(this); + var keyword = $this.find("input").val(); + if (keyword.length < 2) { + $results.hide(); + return; } - var $searchUserBox = $('#search-user-box'); - var $results = $searchUserBox.find('.results'); - $searchUserBox.keyup(function () { - var $this = $(this); - var keyword = $this.find('input').val(); - if (keyword.length < 2) { - $results.hide(); - return; - } + $.ajax({ + url: suburl + "/api/v1/users/search?q=" + keyword, + dataType: "json", + success: function(response) { + var notEmpty = function(str) { + return str && str.length > 0; + }; - $.ajax({ - url: suburl + '/api/v1/users/search?q=' + keyword, - dataType: "json", - success: function (response) { - var notEmpty = function (str) { - return str && str.length > 0; - }; - - $results.html(''); - - if (response.ok && response.data.length) { - var html = ''; - $.each(response.data, function (i, item) { - html += '
' + item.username + ''; - if (notEmpty(item.full_name)) { - html += ' (' + item.full_name + ')'; - } - html += '
'; - }); - $results.html(html); - $this.find('.results .item').click(function () { - $this.find('input').val($(this).find('.username').text()); - $results.hide(); - }); - $results.show(); - } else { - $results.hide(); - } + $results.html(""); + + if (response.ok && response.data.length) { + var html = ""; + $.each(response.data, function(i, item) { + html += + '
' + + item.username + + ""; + if (notEmpty(item.full_name)) { + html += " (" + item.full_name + ")"; } - }); - }); - $searchUserBox.find('input').focus(function () { - $searchUserBox.keyup(); + html += "
"; + }); + $results.html(html); + $this.find(".results .item").click(function() { + $this.find("input").val( + $(this) + .find(".username") + .text() + ); + $results.hide(); + }); + $results.show(); + } else { + $results.hide(); + } + } }); - hideWhenLostFocus('#search-user-box .results', '#search-user-box'); + }); + $searchUserBox.find("input").focus(function() { + $searchUserBox.keyup(); + }); + hideWhenLostFocus("#search-user-box .results", "#search-user-box"); } // FIXME: merge common parts in two functions function searchRepositories() { - if (!$('#search-repo-box .results').length) { - return; + if (!$("#search-repo-box .results").length) { + return; + } + + var $searchRepoBox = $("#search-repo-box"); + var $results = $searchRepoBox.find(".results"); + $searchRepoBox.keyup(function() { + var $this = $(this); + var keyword = $this.find("input").val(); + if (keyword.length < 2) { + $results.hide(); + return; } - var $searchRepoBox = $('#search-repo-box'); - var $results = $searchRepoBox.find('.results'); - $searchRepoBox.keyup(function () { - var $this = $(this); - var keyword = $this.find('input').val(); - if (keyword.length < 2) { + $.ajax({ + url: + suburl + + "/api/v1/repos/search?q=" + + keyword + + "&uid=" + + $searchRepoBox.data("uid"), + dataType: "json", + success: function(response) { + var notEmpty = function(str) { + return str && str.length > 0; + }; + + $results.html(""); + + if (response.ok && response.data.length) { + var html = ""; + $.each(response.data, function(i, item) { + html += + '
' + + item.full_name + + "
"; + }); + $results.html(html); + $this.find(".results .item").click(function() { + $this.find("input").val( + $(this) + .find(".fullname") + .text() + .split("/")[1] + ); $results.hide(); - return; + }); + $results.show(); + } else { + $results.hide(); } - - $.ajax({ - url: suburl + '/api/v1/repos/search?q=' + keyword + "&uid=" + $searchRepoBox.data('uid'), - dataType: "json", - success: function (response) { - var notEmpty = function (str) { - return str && str.length > 0; - }; - - $results.html(''); - - if (response.ok && response.data.length) { - var html = ''; - $.each(response.data, function (i, item) { - html += '
' + item.full_name + '
'; - }); - $results.html(html); - $this.find('.results .item').click(function () { - $this.find('input').val($(this).find('.fullname').text().split("/")[1]); - $results.hide(); - }); - $results.show(); - } else { - $results.hide(); - } - } - }); - }); - $searchRepoBox.find('input').focus(function () { - $searchRepoBox.keyup(); + } }); - hideWhenLostFocus('#search-repo-box .results', '#search-repo-box'); + }); + $searchRepoBox.find("input").focus(function() { + $searchRepoBox.keyup(); + }); + hideWhenLostFocus("#search-repo-box .results", "#search-repo-box"); } function initCodeView() { - if ($('.code-view .linenums').length > 0) { - $(document).on('click', '.lines-num span', function (e) { - var $select = $(this); - var $list = $select.parent().siblings('.lines-code').find('ol.linenums > li'); - selectRange($list, $list.filter('[rel=' + $select.attr('id') + ']'), (e.shiftKey ? $list.filter('.active').eq(0) : null)); - deSelect(); - }); + if ($(".code-view .linenums").length > 0) { + $(document).on("click", ".lines-num span", function(e) { + var $select = $(this); + var $list = $select + .parent() + .siblings(".lines-code") + .find("ol.linenums > li"); + selectRange( + $list, + $list.filter("[rel=" + $select.attr("id") + "]"), + e.shiftKey ? $list.filter(".active").eq(0) : null + ); + deSelect(); + }); - $(window).on('hashchange', function (e) { - var m = window.location.hash.match(/^#(L\d+)\-(L\d+)$/); - var $list = $('.code-view ol.linenums > li'); - var $first; - if (m) { - $first = $list.filter('.' + m[1]); - selectRange($list, $first, $list.filter('.' + m[2])); - $("html, body").scrollTop($first.offset().top - 200); - return; - } - m = window.location.hash.match(/^#(L\d+)$/); - if (m) { - $first = $list.filter('.' + m[1]); - selectRange($list, $first); - $("html, body").scrollTop($first.offset().top - 200); - } - }).trigger('hashchange'); - } + $(window) + .on("hashchange", function(e) { + var m = window.location.hash.match(/^#(L\d+)\-(L\d+)$/); + var $list = $(".code-view ol.linenums > li"); + var $first; + if (m) { + $first = $list.filter("." + m[1]); + selectRange($list, $first, $list.filter("." + m[2])); + $("html, body").scrollTop($first.offset().top - 200); + return; + } + m = window.location.hash.match(/^#(L\d+)$/); + if (m) { + $first = $list.filter("." + m[1]); + selectRange($list, $first); + $("html, body").scrollTop($first.offset().top - 200); + } + }) + .trigger("hashchange"); + } } function initUserSettings() { - console.log('initUserSettings'); - - // Options - if ($('.user.settings.profile').length > 0) { - $('#username').keyup(function () { - var $prompt = $('#name-change-prompt'); - if ($(this).val().toString().toLowerCase() != $(this).data('name').toString().toLowerCase()) { - $prompt.show(); - } else { - $prompt.hide(); - } - }); - } + console.log("initUserSettings"); + + // Options + if ($(".user.settings.profile").length > 0) { + $("#username").keyup(function() { + var $prompt = $("#name-change-prompt"); + if ( + $(this) + .val() + .toString() + .toLowerCase() != + $(this) + .data("name") + .toString() + .toLowerCase() + ) { + $prompt.show(); + } else { + $prompt.hide(); + } + }); + } } function initRepositoryCollaboration() { - console.log('initRepositoryCollaboration'); - - // Change collaborator access mode - $('.access-mode.menu .item').click(function () { - var $menu = $(this).parent(); - $.post($menu.data('url'), { - "_csrf": csrf, - "uid": $menu.data('uid'), - "mode": $(this).data('value') - }) + console.log("initRepositoryCollaboration"); + + // Change collaborator access mode + $(".access-mode.menu .item").click(function() { + var $menu = $(this).parent(); + $.post($menu.data("url"), { + _csrf: csrf, + uid: $menu.data("uid"), + mode: $(this).data("value") }); + }); } function initWebhookSettings() { - $('.events.checkbox input').change(function () { - if ($(this).is(':checked')) { - $('.events.fields').show(); - } - }); - $('.non-events.checkbox input').change(function () { - if ($(this).is(':checked')) { - $('.events.fields').hide(); - } - }); - - // Highlight payload on first click - $('.hook.history.list .toggle.button').click(function () { - $($(this).data('target') + ' .nohighlight').each(function () { - var $this = $(this); - $this.removeClass('nohighlight'); - setTimeout(function () { hljs.highlightBlock($this[0]) }, 500); - }) - }) - - // Trigger delivery - $('.delivery.button, .redelivery.button').click(function () { - var $this = $(this); - $this.addClass('loading disabled'); - $.post($this.data('link'), { - "_csrf": csrf - }).done( - setTimeout(function () { - window.location.href = $this.data('redirect'); - }, 5000) - ); - }); -} - -$(document).ready(function () { - csrf = $('meta[name=_csrf]').attr("content"); - suburl = $('meta[name=_suburl]').attr("content"); - - // Set cursor to the end of autofocus input string - $('input[autofocus]').each(function () { - $(this).val($(this).val()); - }) - - // Show exact time - $('.time-since').each(function () { - $(this).addClass('poping up').attr('data-content', $(this).attr('title')).attr('data-variation', 'inverted tiny').attr('title', ''); - }); - - // Semantic UI modules. - $('.ui.dropdown').dropdown({ - forceSelection: false - }); - $('.jump.dropdown').dropdown({ - action: 'select', - onShow: function () { - $('.poping.up').popup('hide'); - } - }); - $('.slide.up.dropdown').dropdown({ - transition: 'slide up' - }); - $('.upward.dropdown').dropdown({ - direction: 'upward' - }); - $('.ui.accordion').accordion(); - $('.ui.checkbox').checkbox(); - $('.ui.progress').progress({ - showActivity: false - }); - $('.poping.up').popup(); - $('.top.menu .poping.up').popup({ - onShow: function () { - if ($('.top.menu .menu.transition').hasClass('visible')) { - return false; - } - } - }); - $('.tabular.menu .item').tab(); - $('.tabable.menu .item').tab(); - - $('.toggle.button').click(function () { - $($(this).data('target')).slideToggle(100); - }); - - // Dropzone - var $dropzone = $('#dropzone'); - if ($dropzone.length > 0) { - var filenameDict = {}; - $dropzone.dropzone({ - url: $dropzone.data('upload-url'), - headers: { "X-Csrf-Token": csrf }, - maxFiles: $dropzone.data('max-file'), - maxFilesize: $dropzone.data('max-size'), - acceptedFiles: ($dropzone.data('accepts') === '*/*') ? null : $dropzone.data('accepts'), - addRemoveLinks: true, - dictDefaultMessage: $dropzone.data('default-message'), - dictInvalidFileType: $dropzone.data('invalid-input-type'), - dictFileTooBig: $dropzone.data('file-too-big'), - dictRemoveFile: $dropzone.data('remove-file'), - init: function () { - this.on("success", function (file, data) { - filenameDict[file.name] = data.uuid; - var input = $('').val(data.uuid); - $('.files').append(input); - }); - this.on("removedfile", function (file) { - if (file.name in filenameDict) { - $('#' + filenameDict[file.name]).remove(); - } - if ($dropzone.data('remove-url') && $dropzone.data('csrf')) { - $.post($dropzone.data('remove-url'), { - file: filenameDict[file.name], - _csrf: $dropzone.data('csrf') - }); - } - }) - } - }); + $(".events.checkbox input").change(function() { + if ($(this).is(":checked")) { + $(".events.fields").show(); } - - // Emojify - emojify.setConfig({ - img_dir: suburl + '/img/emoji', - ignore_emoticons: true - }); - var hasEmoji = document.getElementsByClassName('has-emoji'); - for (var i = 0; i < hasEmoji.length; i++) { - emojify.run(hasEmoji[i]); + }); + $(".non-events.checkbox input").change(function() { + if ($(this).is(":checked")) { + $(".events.fields").hide(); } - - // Clipboard JS - var clipboard = new ClipboardJS('.clipboard'); - clipboard.on('success', function (e) { - e.clearSelection(); - - $('#' + e.trigger.getAttribute('id')).popup('destroy'); - e.trigger.setAttribute('data-content', e.trigger.getAttribute('data-success')) - $('#' + e.trigger.getAttribute('id')).popup('show'); - e.trigger.setAttribute('data-content', e.trigger.getAttribute('data-original')) - }); - - clipboard.on('error', function (e) { - $('#' + e.trigger.getAttribute('id')).popup('destroy'); - e.trigger.setAttribute('data-content', e.trigger.getAttribute('data-error')) - $('#' + e.trigger.getAttribute('id')).popup('show'); - e.trigger.setAttribute('data-content', e.trigger.getAttribute('data-original')) + }); + + // Highlight payload on first click + $(".hook.history.list .toggle.button").click(function() { + $($(this).data("target") + " .nohighlight").each(function() { + var $this = $(this); + $this.removeClass("nohighlight"); + setTimeout(function() { + hljs.highlightBlock($this[0]); + }, 500); }); + }); + + // Trigger delivery + $(".delivery.button, .redelivery.button").click(function() { + var $this = $(this); + $this.addClass("loading disabled"); + $.post($this.data("link"), { + _csrf: csrf + }).done( + setTimeout(function() { + window.location.href = $this.data("redirect"); + }, 5000) + ); + }); +} - // Autosize - if ($('#description.autosize').length > 0) { - autosize($('#description')); - showMessageMaxLength(512, 'description', 'descLength'); +$(document).ready(function() { + csrf = $("meta[name=_csrf]").attr("content"); + suburl = $("meta[name=_suburl]").attr("content"); + + // Set cursor to the end of autofocus input string + $("input[autofocus]").each(function() { + $(this).val($(this).val()); + }); + + // Show exact time + $(".time-since").each(function() { + $(this) + .addClass("poping up") + .attr("data-content", $(this).attr("title")) + .attr("data-variation", "inverted tiny") + .attr("title", ""); + }); + + // Semantic UI modules. + $(".ui.dropdown").dropdown({ + forceSelection: false + }); + $(".jump.dropdown").dropdown({ + action: "select", + onShow: function() { + $(".poping.up").popup("hide"); } - - // AJAX load buttons - $('.ajax-load-button').click(function () { - var $this = $(this); - $this.addClass('disabled'); - - $.ajax({ - url: $this.data('url'), - headers: { - 'X-AJAX': "true" - } - }).done(function (data, status, request) { - $(data).insertBefore($this); - - // Update new URL or remove self if no more feeds - var url = request.getResponseHeader('X-AJAX-URL'); - if (url) { - $this.data('url', url); - $this.removeClass('disabled'); - } else { - $this.remove(); - } - }); - }); - - // Helpers - $('.delete-button').click(function () { - var $this = $(this); - $('.delete.modal').modal({ - closable: false, - onApprove: function () { - if ($this.data('type') == "form") { - $($this.data('form')).submit(); - return; - } - - $.post($this.data('url'), { - "_csrf": csrf, - "id": $this.data("id") - }).done(function (data) { - window.location.href = data.redirect; - }); - } - }).modal('show'); + }); + $(".slide.up.dropdown").dropdown({ + transition: "slide up" + }); + $(".upward.dropdown").dropdown({ + direction: "upward" + }); + $(".ui.accordion").accordion(); + $(".ui.checkbox").checkbox(); + $(".ui.progress").progress({ + showActivity: false + }); + $(".poping.up").popup(); + $(".top.menu .poping.up").popup({ + onShow: function() { + if ($(".top.menu .menu.transition").hasClass("visible")) { return false; - }); - $('.show-panel.button').click(function () { - $($(this).data('panel')).show(); - }); - $('.show-modal.button').click(function () { - $($(this).data('modal')).modal('show'); - }); - $('.delete-post.button').click(function () { - var $this = $(this); - $.post($this.data('request-url'), { - "_csrf": csrf - }).done(function () { - window.location.href = $this.data('done-url'); + } + } + }); + $(".tabular.menu .item").tab(); + $(".tabable.menu .item").tab(); + + $(".toggle.button").click(function() { + $($(this).data("target")).slideToggle(100); + }); + + // Dropzone + var $dropzone = $("#dropzone"); + if ($dropzone.length > 0) { + var filenameDict = {}; + $dropzone.dropzone({ + url: $dropzone.data("upload-url"), + headers: { "X-CSRF-Token": csrf }, + maxFiles: $dropzone.data("max-file"), + maxFilesize: $dropzone.data("max-size"), + acceptedFiles: + $dropzone.data("accepts") === "*/*" ? null : $dropzone.data("accepts"), + addRemoveLinks: true, + dictDefaultMessage: $dropzone.data("default-message"), + dictInvalidFileType: $dropzone.data("invalid-input-type"), + dictFileTooBig: $dropzone.data("file-too-big"), + dictRemoveFile: $dropzone.data("remove-file"), + init: function() { + this.on("success", function(file, data) { + filenameDict[file.name] = data.uuid; + var input = $( + '' + ).val(data.uuid); + $(".files").append(input); + }); + this.on("removedfile", function(file) { + if (file.name in filenameDict) { + $("#" + filenameDict[file.name]).remove(); + } + if ($dropzone.data("remove-url") && $dropzone.data("csrf")) { + $.post($dropzone.data("remove-url"), { + file: filenameDict[file.name], + _csrf: $dropzone.data("csrf") + }); + } }); + } }); - // To make arbitrary form element to behave like a submit button - $('.submit-button').click(function () { - $($(this).data('form')).submit(); + } + + // Emojify + emojify.setConfig({ + img_dir: suburl + "/img/emoji", + ignore_emoticons: true + }); + var hasEmoji = document.getElementsByClassName("has-emoji"); + for (var i = 0; i < hasEmoji.length; i++) { + emojify.run(hasEmoji[i]); + } + + // Clipboard JS + var clipboard = new ClipboardJS(".clipboard"); + clipboard.on("success", function(e) { + e.clearSelection(); + + $("#" + e.trigger.getAttribute("id")).popup("destroy"); + e.trigger.setAttribute( + "data-content", + e.trigger.getAttribute("data-success") + ); + $("#" + e.trigger.getAttribute("id")).popup("show"); + e.trigger.setAttribute( + "data-content", + e.trigger.getAttribute("data-original") + ); + }); + + clipboard.on("error", function(e) { + $("#" + e.trigger.getAttribute("id")).popup("destroy"); + e.trigger.setAttribute( + "data-content", + e.trigger.getAttribute("data-error") + ); + $("#" + e.trigger.getAttribute("id")).popup("show"); + e.trigger.setAttribute( + "data-content", + e.trigger.getAttribute("data-original") + ); + }); + + // Autosize + if ($("#description.autosize").length > 0) { + autosize($("#description")); + showMessageMaxLength(512, "description", "descLength"); + } + + // AJAX load buttons + $(".ajax-load-button").click(function() { + var $this = $(this); + $this.addClass("disabled"); + + $.ajax({ + url: $this.data("url"), + headers: { + "X-AJAX": "true" + } + }).done(function(data, status, request) { + $(data).insertBefore($this); + + // Update new URL or remove self if no more feeds + var url = request.getResponseHeader("X-AJAX-URL"); + if (url) { + $this.data("url", url); + $this.removeClass("disabled"); + } else { + $this.remove(); + } }); - - // Check or select on option to enable/disable target region - $('.enable-system').change(function () { - if (this.checked) { - $($(this).data('target')).removeClass('disabled'); - } else { - $($(this).data('target')).addClass('disabled'); + }); + + // Helpers + $(".delete-button").click(function() { + var $this = $(this); + $(".delete.modal") + .modal({ + closable: false, + onApprove: function() { + if ($this.data("type") == "form") { + $($this.data("form")).submit(); + return; + } + + $.post($this.data("url"), { + _csrf: csrf, + id: $this.data("id") + }).done(function(data) { + window.location.href = data.redirect; + }); } + }) + .modal("show"); + return false; + }); + $(".show-panel.button").click(function() { + $($(this).data("panel")).show(); + }); + $(".show-modal.button").click(function() { + $($(this).data("modal")).modal("show"); + }); + $(".delete-post.button").click(function() { + var $this = $(this); + $.post($this.data("request-url"), { + _csrf: csrf + }).done(function() { + window.location.href = $this.data("done-url"); }); - $('.enable-system-radio').change(function () { - $($(this).data('enable')).removeClass('disabled'); - $($(this).data('disable')).addClass('disabled'); - }); - - // Set anchor. - $('.markdown').each(function () { - var headers = {}; - $(this).find('h1, h2, h3, h4, h5, h6').each(function () { - var node = $(this); - var val = encodeURIComponent(node.text().toLowerCase().replace(/[^\u00C0-\u1FFF\u2C00-\uD7FF\w\- ]/g, '').replace(/[ ]/g, '-')); - var name = val; - if (headers[val] > 0) { - name = val + '-' + headers[val]; - } - if (headers[val] == undefined) { - headers[val] = 1; - } else { - headers[val] += 1; - } - node = node.wrap('
'); - node.append(''); - }); - }); - - buttonsClickOnEnter(); - searchUsers(); - searchRepositories(); - - initCommentForm(); - initRepository(); - initWikiForm(); - initEditForm(); - initEditor(); - initOrganization(); - initAdmin(); - initCodeView(); - - // Repo clone url. - if ($('#repo-clone-url').length > 0) { - switch (localStorage.getItem('repo-clone-protocol')) { - case 'ssh': - if ($('#repo-clone-ssh').click().length === 0) { - $('#repo-clone-https').click(); - } - break; - default: - $('#repo-clone-https').click(); - break; - } + }); + // To make arbitrary form element to behave like a submit button + $(".submit-button").click(function() { + $($(this).data("form")).submit(); + }); + + // Check or select on option to enable/disable target region + $(".enable-system").change(function() { + if (this.checked) { + $($(this).data("target")).removeClass("disabled"); + } else { + $($(this).data("target")).addClass("disabled"); + $($(this).data("uncheck")).prop("checked", false); } - - var routes = { - 'div.user.settings': initUserSettings, - 'div.repository.settings.collaboration': initRepositoryCollaboration, - 'div.webhook.settings': initWebhookSettings - }; - - var selector; - for (selector in routes) { - if ($(selector).length > 0) { - routes[selector](); - break; + }); + $(".enable-system-radio").change(function() { + $($(this).data("enable")).removeClass("disabled"); + $($(this).data("disable")).addClass("disabled"); + $($(this).data("uncheck")).prop("checked", false); + }); + + // Set anchor. + $(".markdown").each(function() { + var headers = {}; + $(this) + .find("h1, h2, h3, h4, h5, h6") + .each(function() { + var node = $(this); + var val = encodeURIComponent( + node + .text() + .toLowerCase() + .replace(/[^\u00C0-\u1FFF\u2C00-\uD7FF\w\- ]/g, "") + .replace(/[ ]/g, "-") + ); + var name = val; + if (headers[val] > 0) { + name = val + "-" + headers[val]; } + if (headers[val] == undefined) { + headers[val] = 1; + } else { + headers[val] += 1; + } + node = node.wrap('
'); + node.append( + '' + ); + }); + }); + + buttonsClickOnEnter(); + searchUsers(); + searchRepositories(); + + initCommentForm(); + initRepository(); + initWikiForm(); + initEditForm(); + initEditor(); + initOrganization(); + initAdmin(); + initCodeView(); + + // Repo clone url. + if ($("#repo-clone-url").length > 0) { + switch (localStorage.getItem("repo-clone-protocol")) { + case "ssh": + if ($("#repo-clone-ssh").click().length === 0) { + $("#repo-clone-https").click(); + } + break; + default: + $("#repo-clone-https").click(); + break; + } + } + + var routes = { + "div.user.settings": initUserSettings, + "div.repository.settings.collaboration": initRepositoryCollaboration, + "div.webhook.settings": initWebhookSettings + }; + + var selector; + for (selector in routes) { + if ($(selector).length > 0) { + routes[selector](); + break; } + } }); function changeHash(hash) { - if (history.pushState) { - history.pushState(null, null, hash); - } - else { - location.hash = hash; - } + if (history.pushState) { + history.pushState(null, null, hash); + } else { + location.hash = hash; + } } function deSelect() { - if (window.getSelection) { - window.getSelection().removeAllRanges(); - } else { - document.selection.empty(); - } + if (window.getSelection) { + window.getSelection().removeAllRanges(); + } else { + document.selection.empty(); + } } function selectRange($list, $select, $from) { - $list.removeClass('active'); - if ($from) { - var a = parseInt($select.attr('rel').substr(1)); - var b = parseInt($from.attr('rel').substr(1)); - var c; - if (a != b) { - if (a > b) { - c = a; - a = b; - b = c; - } - var classes = []; - for (var i = a; i <= b; i++) { - classes.push('.L' + i); - } - $list.filter(classes.join(',')).addClass('active'); - changeHash('#L' + a + '-' + 'L' + b); - return - } + $list.removeClass("active"); + if ($from) { + var a = parseInt($select.attr("rel").substr(1)); + var b = parseInt($from.attr("rel").substr(1)); + var c; + if (a != b) { + if (a > b) { + c = a; + a = b; + b = c; + } + var classes = []; + for (var i = a; i <= b; i++) { + classes.push(".L" + i); + } + $list.filter(classes.join(",")).addClass("active"); + changeHash("#L" + a + "-" + "L" + b); + return; } - $select.addClass('active'); - changeHash('#' + $select.attr('rel')); + } + $select.addClass("active"); + changeHash("#" + $select.attr("rel")); } -$(function () { - if ($('.user.signin').length > 0) return; - $('form').areYouSure(); +$(function() { + if ($(".user.signin").length > 0) return; + $("form").areYouSure(); }); // getByteLen counts bytes in a string's UTF-8 representation. function getByteLen(normalVal) { - // Force string type - normalVal = String(normalVal); - - var byteLen = 0; - for (var i = 0; i < normalVal.length; i++) { - var c = normalVal.charCodeAt(i); - byteLen += c < (1 << 7) ? 1 : - c < (1 << 11) ? 2 : - c < (1 << 16) ? 3 : - c < (1 << 21) ? 4 : - c < (1 << 26) ? 5 : - c < (1 << 31) ? 6 : Number.NaN; - } - return byteLen; + // Force string type + normalVal = String(normalVal); + + var byteLen = 0; + for (var i = 0; i < normalVal.length; i++) { + var c = normalVal.charCodeAt(i); + byteLen += + c < 1 << 7 + ? 1 + : c < 1 << 11 + ? 2 + : c < 1 << 16 + ? 3 + : c < 1 << 21 + ? 4 + : c < 1 << 26 + ? 5 + : c < 1 << 31 + ? 6 + : Number.NaN; + } + return byteLen; } function showMessageMaxLength(maxLen, textElemId, counterId) { - var $msg = $('#' + textElemId); - $('#' + counterId).html(maxLen - getByteLen($msg.val())); - - var onMessageKey = function (e) { - var $msg = $(this); - var text = $msg.val(); - var len = getByteLen(text); - var remainder = maxLen - len; - - if (len >= maxLen) { - $msg.val($msg.val().substr(0, maxLen)); - remainder = 0; - } + var $msg = $("#" + textElemId); + $("#" + counterId).html(maxLen - getByteLen($msg.val())); + + var onMessageKey = function(e) { + var $msg = $(this); + var text = $msg.val(); + var len = getByteLen(text); + var remainder = maxLen - len; + + if (len >= maxLen) { + $msg.val($msg.val().substr(0, maxLen)); + remainder = 0; + } - $('#' + counterId).html(remainder); - }; + $("#" + counterId).html(remainder); + }; - $msg.keyup(onMessageKey).keydown(onMessageKey); + $msg.keyup(onMessageKey).keydown(onMessageKey); } diff --git a/templates/admin/auth/edit.tmpl b/templates/admin/auth/edit.tmpl index c09615dbf..d6b9cc682 100644 --- a/templates/admin/auth/edit.tmpl +++ b/templates/admin/auth/edit.tmpl @@ -176,7 +176,7 @@ {{end}} - +
@@ -203,7 +203,7 @@
- {{if not .Source.LocalFile}} + {{if not .Source.File}}
{{.i18n.Tr "admin.auths.delete"}}
{{end}}
diff --git a/templates/admin/config.tmpl b/templates/admin/config.tmpl index 79d40b20d..5703bb24f 100644 --- a/templates/admin/config.tmpl +++ b/templates/admin/config.tmpl @@ -178,6 +178,13 @@
{{.Database.SSLMode}} {{.i18n.Tr "admin.config.db.ssl_mode_helper"}}
{{.i18n.Tr "admin.config.db.path"}}
{{.Database.Path}} {{.i18n.Tr "admin.config.db.path_helper"}}
+ +
+ +
{{.i18n.Tr "admin.config.db.max_open_conns"}}
+
{{.Database.MaxOpenConns}}
+
{{.i18n.Tr "admin.config.db.max_idle_conns"}}
+
{{.Database.MaxIdleConns}}
@@ -481,6 +488,20 @@ + {{/* LFS settings */}} +

+ {{.i18n.Tr "admin.config.lfs_config"}} +

+
+
+
{{.i18n.Tr "admin.config.lfs.storage"}}
+
{{.LFS.Storage}}
+
{{.i18n.Tr "admin.config.lfs.objects_path"}}
+
{{.LFS.ObjectsPath}}
+
+
+ + {{/* Log settings */}}

{{.i18n.Tr "admin.config.log_config"}}

diff --git a/templates/repo/diff/box.tmpl b/templates/repo/diff/box.tmpl index 297c84f1e..1980d774f 100644 --- a/templates/repo/diff/box.tmpl +++ b/templates/repo/diff/box.tmpl @@ -39,14 +39,12 @@

{{$.i18n.Tr "repo.diff.file_suppressed"}}
- {{if not $file.IsRenamed}} - + {{.NumAdditions}} - - - - - - {{.NumDeletions}} - {{end}} + + {{.NumAdditions}} + + + + + - {{.NumDeletions}}
{{$file.Name}}

@@ -57,7 +55,7 @@
{{if $file.IsBinary}} {{$.i18n.Tr "repo.diff.bin"}} - {{else if not $file.IsRenamed}} + {{else}} + {{.NumAdditions}} @@ -78,48 +76,56 @@ {{end}}
- {{if not $file.IsRenamed}} - {{$isImage := (call $.IsImageFile $file.Name)}} - {{if $isImage}} -
+ {{$isImage := false}} + {{if $file.IsDeleted}} + {{$isImage = (call $.IsImageFileByIndex $file.Index)}} + {{else}} + {{$isImage = (call $.IsImageFile $file.Name)}} + {{end}} + + {{if $isImage}} +
+ {{if $file.IsDeleted}} + + {{else}} -
- {{else}} -
- - - {{if $.IsSplitStyle}} - {{$highlightClass := $file.HighlightClass}} - {{range $j, $section := $file.Sections}} - {{range $k, $line := $section.Lines}} - - {{if eq .Type 4}} - - - {{else}} - - - - - {{end}} - - {{end}} + {{end}} + + {{else}} +
+
-
{{$section.ComputedInlineDiffFor $line}}
-
- -
{{if $line.LeftLine}}{{$section.ComputedInlineDiffFor $line}}{{end}}
-
- -
{{if $line.RightLine}}{{$section.ComputedInlineDiffFor $line}}{{end}}
-
+ + {{if $.IsSplitStyle}} + {{$highlightClass := $file.HighlightClass}} + {{range $j, $section := $file.Sections}} + {{range $k, $line := $section.Lines}} + + {{if eq .Type 4}} + + + {{else}} + + + + + {{end}} + {{end}} - {{else}} - {{template "repo/diff/section_unified" .}} {{end}} - -
+
{{$section.ComputedInlineDiffFor $line}}
+
+ +
{{if $line.LeftLine}}{{$section.ComputedInlineDiffFor $line}}{{end}}
+
+ +
{{if $line.RightLine}}{{$section.ComputedInlineDiffFor $line}}{{end}}
+
-
- {{end}} + {{else}} + {{template "repo/diff/section_unified" .}} + {{end}} + + +
{{end}}
diff --git a/templates/repo/settings/options.tmpl b/templates/repo/settings/options.tmpl index fdb5f37c6..c8cb973d6 100644 --- a/templates/repo/settings/options.tmpl +++ b/templates/repo/settings/options.tmpl @@ -116,7 +116,7 @@
- +
@@ -136,7 +136,7 @@
- +
@@ -151,7 +151,7 @@
- +
@@ -171,7 +171,7 @@
- +