diff options
135 files changed, 2402 insertions, 4467 deletions
@@ -10,8 +10,8 @@ github.com/Unknwon/macaron = commit:635c89ac74 github.com/Unknwon/paginater = commit:cab2d086fa github.com/codegangsta/cli = commit:2bcd11f863 github.com/go-sql-driver/mysql = commit:a197e5d405 -github.com/go-xorm/core = -github.com/go-xorm/xorm = +github.com/go-xorm/core = commit:4813c0110d +github.com/go-xorm/xorm = commit:97e7703766 github.com/gogits/chardet = commit:2404f77725 github.com/gogits/go-gogs-client = commit:92e76d616a github.com/lib/pq = commit:0dad96c0b9 @@ -24,7 +24,7 @@ github.com/macaron-contrib/oauth2 = commit:8f394c3629 github.com/macaron-contrib/session = commit:e48134e803 github.com/macaron-contrib/toolbox = commit:acbfe36e16 github.com/mattn/go-sqlite3 = commit:e28cd440fa -github.com/mcuadros/go-version +github.com/mcuadros/go-version = commit:d52711f8d6 github.com/microcosm-cc/bluemonday = commit:2b7763a06c github.com/mssola/user_agent = commit:f659b98638 github.com/msteinert/pam = commit:9a42d39dbf diff --git a/Dockerfile b/Dockerfile index bb2ed8d307..baba8f19d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,39 @@ FROM google/golang:latest +MAINTAINER codeskyblue@gmail.com -ENV TAGS="sqlite redis memcache cert" USER="git" HOME="/home/git" +RUN echo "deb http://ftp.debian.org/debian/ wheezy-backports main" >> /etc/apt/sources.list +RUN apt-get update +RUN apt-get install -y openssh-server rsync libpam-dev +# set the working directory and add current stuff COPY . /gopath/src/github.com/gogits/gogs/ WORKDIR /gopath/src/github.com/gogits/gogs/ -RUN go get -v -tags="$TAGS" github.com/gogits/gogs \ - && go build -tags="$TAGS" \ - && useradd -d $HOME -m $USER \ - && chown -R $USER . +RUN go get -v -tags "sqlite redis memcache cert pam" +RUN go build -tags "sqlite redis memcache cert pam" -USER $USER +RUN useradd --shell /bin/bash --system --comment gogits git -ENTRYPOINT [ "./gogs" ] +RUN mkdir /var/run/sshd +# SSH login fix. Otherwise user is kicked off after login +RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd +RUN sed 's@UsePrivilegeSeparation yes@UsePrivilegeSeparation no@' -i /etc/ssh/sshd_config +RUN echo "export VISIBLE=now" >> /etc/profile +RUN echo "PermitUserEnvironment yes" >> /etc/ssh/sshd_config -CMD [ "web" ] +# setup server keys on startup +RUN sed 's@^HostKey@\#HostKey@' -i /etc/ssh/sshd_config +RUN echo "HostKey /data/ssh/ssh_host_key" >> /etc/ssh/sshd_config +RUN echo "HostKey /data/ssh/ssh_host_rsa_key" >> /etc/ssh/sshd_config +RUN echo "HostKey /data/ssh/ssh_host_dsa_key" >> /etc/ssh/sshd_config +RUN echo "HostKey /data/ssh/ssh_host_ecdsa_key" >> /etc/ssh/sshd_config +RUN echo "HostKey /data/ssh/ssh_host_ed25519_key" >> /etc/ssh/sshd_config + +# prepare data +#ENV USER="git" HOME="/home/git" +ENV GOGS_CUSTOM /data/gogs +RUN echo "export GOGS_CUSTOM=/data/gogs" >> /etc/profile + +EXPOSE 22 3000 +ENTRYPOINT [] +CMD ["./docker/start.sh"] @@ -5,10 +5,26 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra Gogs (Go Git Service) is a painless self-hosted Git service. -![Demo](http://gogs.qiniudn.com/gogs_demo.gif) - ##### Current version: 0.6.5 Beta +<table> + <tr> + <td width="33%"><img src="http://gogs.io/imgs/screenshoots/1.png"></td> + <td width="33%"><img src="http://gogs.io/imgs/screenshoots/2.png"></td> + <td width="33%"><img src="http://gogs.io/imgs/screenshoots/3.png"></td> + </tr> + <tr> + <td><img src="http://gogs.io/imgs/screenshoots/4.png"></td> + <td><img src="http://gogs.io/imgs/screenshoots/5.png"></td> + <td><img src="http://gogs.io/imgs/screenshoots/6.png"></td> + </tr> + <tr> + <td><img src="http://gogs.io/imgs/screenshoots/7.png"></td> + <td><img src="http://gogs.io/imgs/screenshoots/8.png"></td> + <td><img src="http://gogs.io/imgs/screenshoots/9.png"></td> + </tr> +</table> + ### NOTICES - Due to testing purpose, data of [try.gogs.io](https://try.gogs.io) has been reset in **Jan 28, 2015** and will reset multiple times after. Please do **NOT** put your important data on the site. @@ -89,7 +105,7 @@ There are 5 ways to install Gogs: ### Screencasts -- [Instalando Gogs no Ubuntu](https://www.youtube.com/watch?v=DFNifgEHOzk) (Português) +- [Instalando Gogs no Ubuntu](http://blog.linuxpro.com.br/2015/08/14/instalando-gogs-no-ubuntu/) (Português) ## Acknowledgments diff --git a/cmd/web.go b/cmd/web.go index c441e91966..ae4403c0ca 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -206,7 +206,7 @@ func runWeb(ctx *cli.Context) { m.Get("/issues", user.Issues) }, reqSignIn) - // API. + // ***** START: API ***** // FIXME: custom form error response. m.Group("/api", func() { m.Group("/v1", func() { @@ -222,7 +222,8 @@ func runWeb(ctx *cli.Context) { m.Get("", v1.GetUserInfo) m.Group("/tokens", func() { - m.Combo("").Get(v1.ListAccessTokens).Post(bind(v1.CreateAccessTokenForm{}), v1.CreateAccessToken) + m.Combo("").Get(v1.ListAccessTokens). + Post(bind(v1.CreateAccessTokenForm{}), v1.CreateAccessToken) }, middleware.ApiReqBasicAuth()) }) }) @@ -248,8 +249,9 @@ func runWeb(ctx *cli.Context) { }) }) }, ignSignIn) + // ***** END: API ***** - // User. + // ***** START: User ***** m.Group("/user", func() { m.Get("/login", user.SignIn) m.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost) @@ -259,6 +261,7 @@ func runWeb(ctx *cli.Context) { 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(auth.UpdateProfileForm{}), user.SettingsPost) @@ -270,9 +273,15 @@ func runWeb(ctx *cli.Context) { m.Get("/ssh", user.SettingsSSHKeys) m.Post("/ssh", bindIgnErr(auth.AddSSHKeyForm{}), user.SettingsSSHKeysPost) m.Get("/social", user.SettingsSocial) - m.Combo("/applications").Get(user.SettingsApplications).Post(bindIgnErr(auth.NewAccessTokenForm{}), user.SettingsApplicationsPost) + m.Combo("/applications").Get(user.SettingsApplications). + Post(bindIgnErr(auth.NewAccessTokenForm{}), user.SettingsApplicationsPost) + m.Post("/applications/delete", user.SettingsDeleteApplication) m.Route("/delete", "GET,POST", user.SettingsDelete) - }, reqSignIn) + }, reqSignIn, func(ctx *middleware.Context) { + ctx.Data["PageIsUserSettings"] = true + ctx.Data["HasOAuthService"] = setting.OauthService != nil + }) + m.Group("/user", func() { // r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds) m.Any("/activate", user.Activate) @@ -282,6 +291,7 @@ func runWeb(ctx *cli.Context) { m.Post("/forget_password", user.ForgotPasswdPost) m.Get("/logout", user.SignOut) }) + // ***** END: User ***** // Gravatar service. avt := avatar.CacheServer("public/img/avatar/", "public/img/avatar_default.jpg") diff --git a/conf/app.ini b/conf/app.ini index 9f261a8b2e..cb6a6b9b24 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -281,24 +281,37 @@ DRIVER = ; Based on xorm, e.g.: root:root@localhost/gogs?charset=utf8 CONN = +[cron] +; Enable running cron tasks periodically. +ENABLED = true +; Run cron tasks when Gogs starts. +RUN_AT_START = false + +; Update mirrors +[cron.update_mirrors] +SCHEDULE = @every 1h + +; Repository health check +[cron.repo_health_check] +SCHEDULE = @every 24h +; Arguments for command 'git fsck', e.g.: "--unreachable --tags" +; see more on http://git-scm.com/docs/git-fsck/1.7.5 +ARGS = + +; Check repository statistics +[cron.check_repo_stats] +RUN_AT_START = true +SCHEDULE = @every 24h + [git] MAX_GIT_DIFF_LINES = 10000 ; Arguments for command 'git gc', e.g.: "--aggressive --auto" ; see more on http://git-scm.com/docs/git-gc/1.7.5 GC_ARGS = -; Git health check. -[git.fsck] -ENABLE = true -; Execution interval in hours. Default is 24. -INTERVAL = 24 -; Arguments for command 'git fsck', e.g.: "--unreachable --tags" -; see more on http://git-scm.com/docs/git-fsck/1.7.5 -ARGS = - [i18n] LANGS = en-US,zh-CN,zh-HK,de-DE,fr-FR,nl-NL,lv-LV,ru-RU,ja-JP,es-ES,pt-BR,pl-PL,bg-BG,it-IT -NAMES = English,简体中文,繁體中文,Deutsch,Français,Nederlands,Latviešu,Русский,日本語,Español,Português,Polski,български,Italiano +NAMES = English,简体中文,繁體中文,Deutsch,Français,Nederlands,Latviešu,Русский,日本語,Español,Português do Brasil,Polski,български,Italiano ; Used for datetimepicker [i18n.datelang] diff --git a/conf/gitignore/Android b/conf/gitignore/Android index 37e8cf6cc2..64d3c9769c 100644 --- a/conf/gitignore/Android +++ b/conf/gitignore/Android @@ -20,4 +20,4 @@ build/ local.properties # Proguard folder generated by Eclipse -proguard/
\ No newline at end of file +proguard/ diff --git a/conf/gitignore/C b/conf/gitignore/C index e7a909e4c6..9fa3b1bf7d 100644 --- a/conf/gitignore/C +++ b/conf/gitignore/C @@ -15,4 +15,4 @@ # Executables *.exe *.out -*.app
\ No newline at end of file +*.app diff --git a/conf/gitignore/C Sharp b/conf/gitignore/C Sharp index d26d7cd598..f638296449 100644 --- a/conf/gitignore/C Sharp +++ b/conf/gitignore/C Sharp @@ -105,4 +105,4 @@ Generated_Code #added for RIA/Silverlight projects # Visual Studio version. Backup files are not needed, because we have git ;-) _UpgradeReport_Files/ Backup*/ -UpgradeLog*.XML
\ No newline at end of file +UpgradeLog*.XML diff --git a/conf/gitignore/Google Go b/conf/gitignore/Google Go index 6cd1df2b7a..00268614f0 100644 --- a/conf/gitignore/Google Go +++ b/conf/gitignore/Google Go @@ -19,4 +19,4 @@ _cgo_export.* _testmain.go -*.exe
\ No newline at end of file +*.exe diff --git a/conf/gitignore/Java b/conf/gitignore/Java index b7d7dc6d4e..32858aad3c 100644 --- a/conf/gitignore/Java +++ b/conf/gitignore/Java @@ -9,4 +9,4 @@ *.ear # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml -hs_err_pid*
\ No newline at end of file +hs_err_pid* diff --git a/conf/gitignore/Objective-C b/conf/gitignore/Objective-C index ce88458636..e4a4e824bd 100644 --- a/conf/gitignore/Objective-C +++ b/conf/gitignore/Objective-C @@ -4,4 +4,4 @@ # you should judge for yourself, the pros and cons are mentioned at: # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control? # -# Pods/
\ No newline at end of file +# Pods/ diff --git a/conf/gitignore/Python b/conf/gitignore/Python index 56841532cd..ded6067880 100644 --- a/conf/gitignore/Python +++ b/conf/gitignore/Python @@ -33,4 +33,4 @@ nosetests.xml # Mr Developer .mr.developer.cfg .project -.pydevproject
\ No newline at end of file +.pydevproject diff --git a/conf/gitignore/Ruby b/conf/gitignore/Ruby index eb76b24855..560d1a6a30 100644 --- a/conf/gitignore/Ruby +++ b/conf/gitignore/Ruby @@ -15,4 +15,4 @@ tmp # YARD artifacts .yardoc _yardoc -doc/
\ No newline at end of file +doc/ diff --git a/conf/locale/TRANSLATORS b/conf/locale/TRANSLATORS index 62966b7b45..135f3d7006 100644 --- a/conf/locale/TRANSLATORS +++ b/conf/locale/TRANSLATORS @@ -3,8 +3,10 @@ Akihiro YAGASAKI <yaggytter@momiage.com> Alexander Steinhöfer <kontakt@lx-s.de> +Alexandre Magno <alexandre.mbm@gmail.com> Christoph Kisfeld <christoph.kisfeld@gmail.com> Daniel Speichert <daniel@speichert.pl> +Gregor Santner <gdev@live.de> Huimin Wang <wanghm2009@hotmail.co.jp> ilko <email> Thomas Fanninger <gogs.thomas@fanninger.at> @@ -12,6 +14,6 @@ Thomas Fanninger <gogs.thomas@fanninger.at> Lafriks <lafriks@gmail.com> Luc Stepniewski <luc@stepniewski.fr> Miguel de la Cruz <miguel@mcrx.me> -Natan Albuquerque <natanalbuquerque5@gmail.com> Marc Schiller <marc@schiller.im> -Gregor Santner <gdev@live.de> +Morten Sørensen <klim8d@gmail.com> +Natan Albuquerque <natanalbuquerque5@gmail.com>
\ No newline at end of file diff --git a/conf/locale/locale_bg-BG.ini b/conf/locale/locale_bg-BG.ini index 65d5962f1c..8be6b53858 100755 --- a/conf/locale/locale_bg-BG.ini +++ b/conf/locale/locale_bg-BG.ini @@ -14,6 +14,9 @@ version=Версия page=Страница
template=Шаблон
language=Език
+create_new=Create new...
+user_profile_and_more=User profile and more
+signed_in_as=Signed in as
username=Потребителско име
email=Електронна поща
@@ -32,6 +35,8 @@ manage_org=Управление на организации admin_panel=Админ панел
account_settings=Настройки на профила
settings=Настройки
+your_profile=Your Profile
+your_settings=Your Settings
news_feed=Емисия новини
pull_requests=Pull Requests
@@ -178,7 +183,6 @@ repo_name_been_taken=Името на хранилището вече е зает org_name_been_taken=Името на организацията вече се ползва.
team_name_been_taken=Името на екипа вече се ползва.
email_been_used=Този е-мейл адрес е бил вече използван.
-ssh_key_been_used=Име на публичен ключ или съдържание са били използвани.
illegal_team_name=Името на екип съдържа недопустими знаци.
username_password_incorrect=Потребителското име или паролата не е вярна.
enterred_invalid_repo_name=Моля, проверете дали името на хранилището е въведено правилно.
@@ -264,13 +268,16 @@ add_key=Добавяне на ключ ssh_desc=Това е списък на SSH ключове, свързани с вашия акаунт. Тъй като тези ключове позволяват на всеки, който ги използва да получи достъп до хранилищата ви, много е важно да се уверите, че ги разпознавате.
ssh_helper=<strong>Не знам как?</strong> Проверете на GitHub упътването как да <a href="%s"> създадете свои собствени SSH ключове</a> или решаване на <a href="%s"> Общи проблеми</a>, които може да възникнат при използване на SSH.
add_new_key=Добавите SSH ключ
+ssh_key_been_used=Public key content has been used.
+ssh_key_name_used=Public key with same name has already existed.
key_name=Име на ключа
key_content=Съдържание
-add_key_success=Добавен е нов SSH ключ!
+add_key_success=New SSH key '%s' has been added successfully!
delete_key=Изтрий
add_on=Добавен на
last_used=Последно използван на
no_activity=Няма скорошна активност
+key_state_desc=This key is used in last 7 days
manage_social=Управление на свързаните с тях акаунти в социални мрежи
social_desc=Това е списък на свързаните акаунти в социални мрежи. Премахнете всички, които не разпознавате.
@@ -298,7 +305,7 @@ owner=Собственик repo_name=Име на хранилище
repo_name_helper=Добро име на хранилище е име, състоящо от кратки, запомнящи се и уникални ключови думи.
visibility=Видимост
-visiblity_helper=Това хранилище е <span class="label label-red label-radius"> частно</span>
+visiblity_helper=This repository is <span class="ui red text">Private</span>
fork_repo=Fork на хранилището
fork_from=Fork от
fork_visiblity_helper=Не можете да промените видимостта на форкнато хранилище.
@@ -317,9 +324,10 @@ form.name_pattern_not_allowed=Името на хранилище „%s“ не need_auth=Нужда от удостоверяване
migrate_type=Тип мигриране
-migrate_type_helper=НА хранилището ще бъде създаден <span class="label label-blue label-radius">мирор</span>
+migrate_type_helper=This repository will be a <span class="text blue">mirror</span>
migrate_repo=Мигриране на хранилището
migrate.clone_address=Клонирай адрес
+migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path.
migrate.invalid_local_path=Невалиден път - не съществува или не е директория.
forked_from=Форкнато от
@@ -365,22 +373,64 @@ commits.older=По-стари commits.newer=По-нови
issues.new=Нов въпрос
+issues.new.labels=Labels
+issues.new.no_label=No Label
+issues.new.clear_labels=Clear labels
+issues.new.milestone=Milestone
+issues.new.no_milestone=No Milestone
+issues.new.clear_milestone=Clear milestone
+issues.new.open_milestone=Open Milestones
+issues.new.closed_milestone=Closed Milestones
+issues.new.assignee=Assignee
+issues.new.clear_assignee=Clear assignee
+issues.new.no_assignee=No assignee
+issues.create=Create Issue
issues.new_label=Нов етикет
issues.new_label_placeholder=Име на етикет...
+issues.create_label=Create Label
issues.open_tab=%d отворени
issues.close_tab=%d затворени
issues.filter_label=Етикет
issues.filter_label_no_select=Не е избран етикет
issues.filter_milestone=Етап
+issues.filter_milestone_no_select=No selected milestone
issues.filter_assignee=Назначена на
+issues.filter_assginee_no_select=No selected Assignee
issues.filter_type=Тип
issues.filter_type.all_issues=Всички въпроси
issues.filter_type.assigned_to_you=Назначени на теб
issues.filter_type.created_by_you=Създадени от теб
issues.filter_type.mentioning_you=Които те споменават
+issues.filter_sort=Sort
+issues.filter_sort.latest=Newest
+issues.filter_sort.oldest=Oldest
+issues.filter_sort.recentupdate=Recently updated
+issues.filter_sort.leastupdate=Least recently updated
+issues.filter_sort.mostcomment=Most commented
+issues.filter_sort.leastcomment=Least commented
issues.opened_by=отворен %[1]s от <a href="/%[2]s">%[2]s</a>
+issues.opened_by_fake=opened %[1]s by %[2]s
issues.previous=Предишна
issues.next=Следваща
+issues.open_title=Open
+issues.closed_title=Closed
+issues.num_comments=%d comments
+issues.commented_at=`commented at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.no_content=There is no content yet.
+issues.close_issue=Close
+issues.close_comment_issue=Close and comment
+issues.reopen_issue=Reopen
+issues.reopen_comment_issue=Reopen and comment
+issues.create_comment=Comment
+issues.closed_at=`closed at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.reopened_at=`reopened at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.poster=Poster
+issues.admin=Admin
+issues.owner=Owner
+issues.sign_up_for_free=Sign up for free
+issues.sign_in_require_desc=to join this conversation. Already have an account? <a href="%s">Sign in to comment</a>
+issues.edit=Edit
+issues.save=Save
issues.label_title=Име на етикет
issues.label_color=Цвят на етикет
issues.label_count=%d етикети
@@ -392,12 +442,39 @@ issues.label_deletion=Изтриване на етикет issues.label_deletion_desc=Изтриване на етикет ще премахне информацията за него във всички свързани въпроси. Желаете ли да продължите?
issues.label_deletion_success=Етикетът е изтрит успешно!
+pulls.compare_changes=Compare Changes
+pulls.compare_changes_desc=Compare two branches and make a pull request for changes.
+pulls.no_results=No results found.
+
+milestones.new=New Milestone
+milestones.open_tab=%d Open
+milestones.close_tab=%d Closed
+milestones.closed=Closed %s
+milestones.no_due_date=No due date
+milestones.open=Open
+milestones.close=Close
+milestones.new_subheader=Create milestones to organize your issues.
+milestones.create=Create Milestone
+milestones.title=Title
+milestones.desc=Description
+milestones.due_date=Due Date (optional)
+milestones.clear=Clear
+milestones.invalid_due_date_format=Due date format is invalid, must be 'year-mm-dd'.
+milestones.create_success=Milestone '%s' has been created successfully!
+milestones.edit=Edit Milestone
+milestones.edit_subheader=Use better description for milestones so people won't be confused.
+milestones.cancel=Cancel
+milestones.modify=Modify Milestone
+milestones.edit_success=Changes of milestone '%s' has been saved successfully!
+milestones.deletion=Milestone Deletion
+milestones.deletion_desc=Delete this milestone will remove its information in all related issues. Do you want to continue?
+milestones.deletion_success=Milestone has been deleted successfully!
+
settings=Настройки
settings.options=Опции
settings.collaboration=Сътрудничество
settings.hooks=Webhooks
settings.githooks=Git Hooks
-settings.deploy_keys=Използвай ключове
settings.basic_settings=Основни настройки
settings.danger_zone=Опасната зона
settings.site=Официален сайт
@@ -445,6 +522,17 @@ settings.add_slack_hook_desc=Добавяне на интеграция с <a hr settings.slack_token=Маркер
settings.slack_domain=Домейн
settings.slack_channel=Канал
+settings.deploy_keys=Използвай ключове
+settings.add_deploy_key=Add Deploy Key
+settings.no_deploy_keys=You haven't added any deploy key.
+settings.title=Title
+settings.deploy_key_content=Content
+settings.key_been_used=Deploy key content has been used.
+settings.key_name_used=Deploy key with same name has already existed.
+settings.add_key_success=New deploy key '%s' has been added successfully!
+settings.deploy_key_deletion=Delete Deploy Key
+settings.deploy_key_deletion_desc=Delete this deploy key will remove all related accesses for this repository. Do you want to continue?
+settings.deploy_key_deletion_success=Deploy key has been deleted successfully!
diff.browse_source=Преглед на кода
diff.parent=родител
@@ -718,7 +806,7 @@ config.enable_cache_avatar=Разрешено кеширане на аватар config.active_code_lives=Кодове за активиране
config.reset_password_code_lives=Кодове за ресет на парола
config.webhook_config=Webhook настройки
-config.task_interval=Интервал на повторение
+config.queue_length=Queue Length
config.deliver_timeout=Време за отказ на доставка
config.skip_tls_verify=Пропусни TLS проверката
config.mailer_config=Мейлър конфигурация
@@ -796,3 +884,8 @@ years=%d години %s raw_seconds=секунди
raw_minutes=минути
+[dropzone]
+default_message=Drop files here or click to upload.
+invalid_input_type=You can't upload files of this type.
+file_too_big=File size({{filesize}} MB) exceeds maximum size({{maxFilesize}} MB).
+remove_file=Remove file
diff --git a/conf/locale/locale_de-DE.ini b/conf/locale/locale_de-DE.ini index df7f1edc3f..894aaa4e51 100755 --- a/conf/locale/locale_de-DE.ini +++ b/conf/locale/locale_de-DE.ini @@ -324,9 +324,10 @@ form.name_pattern_not_allowed=Repository-Namesmuster '%s' ist nicht zulässig. need_auth=Authorisierung benötigt
migrate_type=Migrationstyp
-migrate_type_helper=Dieses Repository wird ein <span class="label label-blue label-radius">Spiegel</span>
+migrate_type_helper=Dieses Repositorie wird ein <span class="text blue">Spiegel sein</span>
migrate_repo=Repository migrieren
migrate.clone_address=Adresse kopieren
+migrate.clone_address_desc=Das kann eine HTTP/HTTPS/GIT URL oder ein lokaler Serverpfad sein.
migrate.invalid_local_path=Lokaler Pfad ist ungültig, er existiert nicht oder ist kein Ordner.
forked_from=Geforkt von
@@ -394,42 +395,42 @@ issues.filter_label_no_select=Kein Label gewählt issues.filter_milestone=Meilenstein
issues.filter_milestone_no_select=Kein ausgewählter Meilenstein
issues.filter_assignee=Beauftragter
-issues.filter_assginee_no_select=No selected Assignee
+issues.filter_assginee_no_select=Kein ausgwählter Zuständiger
issues.filter_type=Typ
issues.filter_type.all_issues=Alle Probleme
issues.filter_type.assigned_to_you=Dir zugewiesen
issues.filter_type.created_by_you=Erstellt von dir
issues.filter_type.mentioning_you=Erwähnen dich
-issues.filter_sort=Sort
-issues.filter_sort.latest=Latest
-issues.filter_sort.oldest=Oldest
-issues.filter_sort.recentupdate=Recent updated
-issues.filter_sort.leastupdate=Least updated
-issues.filter_sort.mostcomment=Most comments
-issues.filter_sort.leastcomment=Least comments
+issues.filter_sort=Sortieren
+issues.filter_sort.latest=Neueste
+issues.filter_sort.oldest=Älteste
+issues.filter_sort.recentupdate=Zuletzt aktualisiert
+issues.filter_sort.leastupdate=Am längsten nicht aktualisiert
+issues.filter_sort.mostcomment=Am meisten kommentiert
+issues.filter_sort.leastcomment=Am wenigsten kommentiert
issues.opened_by=eröffnet %[1]s von <a href="/%[2]s">%[2]s</a>
-issues.opened_by_fake=opened %[1]s by %[2]s
+issues.opened_by_fake=eröffnet %[1]s von %[2]s
issues.previous=Vorherige Seite
issues.next=Nächste Seite
-issues.open_title=Open
-issues.closed_title=Closed
-issues.num_comments=%d comments
-issues.commented_at=`commented at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.no_content=There is no content yet.
-issues.close_issue=Close
-issues.close_comment_issue=Close and comment
-issues.reopen_issue=Reopen
-issues.reopen_comment_issue=Reopen and comment
-issues.create_comment=Comment
-issues.closed_at=`closed at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.reopened_at=`reopened at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
-issues.poster=Poster
+issues.open_title=Offen
+issues.closed_title=Geschlossen
+issues.num_comments=%d Kommentare
+issues.commented_at=`kommentiert in <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.no_content=Hier gibt es bis jetzt noch keinen Inhalt.
+issues.close_issue=Schließen
+issues.close_comment_issue=Schließen und kommentieren
+issues.reopen_issue=Wiedereröffnen
+issues.reopen_comment_issue=Wiedereröffnen und kommentieren
+issues.create_comment=Kommentieren
+issues.closed_at=`geschlossen in <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.reopened_at=`wiedereröffnet in <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.poster=Ersteller
issues.admin=Admin
-issues.owner=Owner
-issues.sign_up_for_free=Sign up for free
-issues.sign_in_require_desc=to join this conversation. Already have an account? <a href="%s">Sign in to comment</a>
-issues.edit=Edit
-issues.save=Save
+issues.owner=Besitzer
+issues.sign_up_for_free=Kostenlos anmelden
+issues.sign_in_require_desc=um dieser Konverstion beizutreten. Hast du bereits einen Account? <a href="%s">Anmelden zum kommentieren</a>
+issues.edit=Bearbeiten
+issues.save=Speichern
issues.label_title=Label Name
issues.label_color=Label Farbe
issues.label_count=%d Labels
diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 12107155d2..9fd7c4490d 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -278,6 +278,7 @@ add_on = Added on last_used = Last used on no_activity = No recent activity key_state_desc = This key is used in last 7 days +token_state_desc = This token is used in last 7 days manage_social = Manage Associated Social Accounts social_desc = This is a list of associated social accounts. Remove any binding that you do not recognize. @@ -286,13 +287,15 @@ unbind_success = Social account has been unbound. manage_access_token = Manage Personal Access Tokens generate_new_token = Generate New Token -tokens_desc = Tokens you have generated that can be used to access the Gogs API. +tokens_desc = Tokens you have generated that can be used to access the Gogs APIs. new_token_desc = Each token will have full access to your account. token_name = Token Name generate_token = Generate Token generate_token_succees = Your access token was successfully generated! Make sure to copy it right now, as you won't be able to see it again later! delete_token = Delete -delete_token_success = This personal access token has been successfully removed successfully! Don't forget to update your applications as well. +access_token_deletion = Personal Access Token Deletion +access_token_deletion_desc = Delete this personal access token will remove all related accesses of application. Do you want to continue? +delete_token_success = Personal access token has been removed successfully! Don't forget to update your application as well. delete_account = Delete Your Account delete_prompt = The operation will delete your account permanently, and <strong>CANNOT</strong> be undone! @@ -324,9 +327,10 @@ form.name_pattern_not_allowed = Repository name pattern '%s' is not allowed. need_auth = Need Authorization migrate_type = Migration Type -migrate_type_helper = This repository will be a <span class="label label-blue label-radius">mirror</span> +migrate_type_helper = This repository will be a <span class="text blue">mirror</span> migrate_repo = Migrate Repository migrate.clone_address = Clone Address +migrate.clone_address_desc = This can be a HTTP/HTTPS/GIT URL or local server path. migrate.invalid_local_path = Invalid local path, it does not exist or not a directory. forked_from = forked from @@ -401,12 +405,12 @@ issues.filter_type.assigned_to_you = Assigned to you issues.filter_type.created_by_you = Created by you issues.filter_type.mentioning_you = Mentioning you issues.filter_sort = Sort -issues.filter_sort.latest = Latest +issues.filter_sort.latest = Newest issues.filter_sort.oldest = Oldest -issues.filter_sort.recentupdate = Recent updated -issues.filter_sort.leastupdate = Least updated -issues.filter_sort.mostcomment = Most comments -issues.filter_sort.leastcomment = Least comments +issues.filter_sort.recentupdate = Recently updated +issues.filter_sort.leastupdate = Least recently updated +issues.filter_sort.mostcomment = Most commented +issues.filter_sort.leastcomment = Least commented issues.opened_by = opened %[1]s by <a href="/%[2]s">%[2]s</a> issues.opened_by_fake = opened %[1]s by %[2]s issues.previous = Previous @@ -750,12 +754,13 @@ auths.auth_name = Authorization Name auths.domain = Domain auths.host = Host auths.port = Port -auths.base_dn = Base DN -auths.attribute_username = Username attribute +auths.bind_dn = Bind DN +auths.bind_password = Bind Password +auths.user_base = User Search Base auths.attribute_name = First name attribute auths.attribute_surname = Surname attribute auths.attribute_mail = E-mail attribute -auths.filter = Search Filter +auths.filter = User Filter auths.ms_ad_sa = Ms Ad SA auths.smtp_auth = SMTP Authorization Type auths.smtphost = SMTP Host @@ -887,4 +892,4 @@ raw_minutes = minutes default_message = Drop files here or click to upload. invalid_input_type = You can't upload files of this type. file_too_big = File size({{filesize}} MB) exceeds maximum size({{maxFilesize}} MB). -remove_file = Remove file
\ No newline at end of file +remove_file = Remove file diff --git a/conf/locale/locale_es-ES.ini b/conf/locale/locale_es-ES.ini index 93c9722d75..cf2808f92c 100755 --- a/conf/locale/locale_es-ES.ini +++ b/conf/locale/locale_es-ES.ini @@ -324,9 +324,10 @@ form.name_pattern_not_allowed=El patrón del nombre del repositorio '%s' no est need_auth=Requiere Autorización
migrate_type=Tipo de Migración
-migrate_type_helper=Este repositorio será un <span class="label label-blue label-radius">Mirror</span>
+migrate_type_helper=This repository will be a <span class="text blue">mirror</span>
migrate_repo=Migrar Repositorio
migrate.clone_address=Clonar Dirección
+migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path.
migrate.invalid_local_path=Rutal local inválida, no existe o no es un directorio.
forked_from=forked de
@@ -401,12 +402,12 @@ issues.filter_type.assigned_to_you=Asignada a ti issues.filter_type.created_by_you=Creada por ti
issues.filter_type.mentioning_you=Citado en
issues.filter_sort=Sort
-issues.filter_sort.latest=Latest
+issues.filter_sort.latest=Newest
issues.filter_sort.oldest=Oldest
-issues.filter_sort.recentupdate=Recent updated
-issues.filter_sort.leastupdate=Least updated
-issues.filter_sort.mostcomment=Most comments
-issues.filter_sort.leastcomment=Least comments
+issues.filter_sort.recentupdate=Recently updated
+issues.filter_sort.leastupdate=Least recently updated
+issues.filter_sort.mostcomment=Most commented
+issues.filter_sort.leastcomment=Least commented
issues.opened_by=abierta %[1]s por <a href="/%[2]s">%[2]s</a>
issues.opened_by_fake=opened %[1]s by %[2]s
issues.previous=Página Anterior
diff --git a/conf/locale/locale_fr-FR.ini b/conf/locale/locale_fr-FR.ini index 0f8d33e328..133cf8e492 100755 --- a/conf/locale/locale_fr-FR.ini +++ b/conf/locale/locale_fr-FR.ini @@ -14,9 +14,9 @@ version=Version page=Page
template=Modèle
language=Langue
-create_new=Create new...
-user_profile_and_more=User profile and more
-signed_in_as=Signed in as
+create_new=Créer nouveau...
+user_profile_and_more=Profil utilisateur et plus
+signed_in_as=Connecté en tant que
username=Nom d'utilisateur
email=E-mail
@@ -35,8 +35,8 @@ manage_org=Gérer les Organisations admin_panel=Administration
account_settings=Paramètres du Compte
settings=Paramètres
-your_profile=Your Profile
-your_settings=Your Settings
+your_profile=Votre profil
+your_settings=Vos paramètres
news_feed=Flux d'actualités
pull_requests=Extraire les Requêtes
@@ -305,7 +305,7 @@ owner=Propriétaire repo_name=Nom du Référentiel
repo_name_helper=Idéalement, le nom d'un dépot devrait être court, mémorable et <strong>unique</strong>.
visibility=Visibilité
-visiblity_helper=This repository is <span class="ui red text">Private</span>
+visiblity_helper=Ce dépôt est <span class="ui red text"> privé</span>
fork_repo=Référentiel d'Embranchement
fork_from=Embranchement de
fork_visiblity_helper=Un dépôt scindé ne peut pas changer sa visiblité
@@ -324,9 +324,10 @@ form.name_pattern_not_allowed=Motif '%s' interdit pour les noms de dépôt. need_auth=Nécessite une Autorisation
migrate_type=Type de Migration
-migrate_type_helper=Ce dépôt sera un <span class="label label-blue label-radius">Miroir</span>
+migrate_type_helper=Ce dépôt sera un <span class="text blue"> miroir</span>
migrate_repo=Migrer le Référentiel
migrate.clone_address=Adresse du clone
+migrate.clone_address_desc=Cela peut être une URL HTTP/HTTPS/GIT ou un chemin d'accès local.
migrate.invalid_local_path=Chemin local non valide, non existant ou n'étant pas un dossier.
forked_from=dérivé depuis
@@ -372,21 +373,21 @@ commits.older=Précédemment commits.newer=Récemment
issues.new=Nouveau Problème
-issues.new.labels=Labels
-issues.new.no_label=No Label
-issues.new.clear_labels=Clear labels
-issues.new.milestone=Milestone
-issues.new.no_milestone=No Milestone
-issues.new.clear_milestone=Clear milestone
-issues.new.open_milestone=Open Milestones
-issues.new.closed_milestone=Closed Milestones
-issues.new.assignee=Assignee
+issues.new.labels=Etiquettes
+issues.new.no_label=Pas d'étiquette
+issues.new.clear_labels=Effacer les étiquettes
+issues.new.milestone=Étape
+issues.new.no_milestone=Pas d'étape
+issues.new.clear_milestone=Effacer l'étape
+issues.new.open_milestone=Ouvrir l'étape
+issues.new.closed_milestone=Étapes fermées
+issues.new.assignee=Affecté à
issues.new.clear_assignee=Clear assignee
issues.new.no_assignee=No assignee
-issues.create=Create Issue
+issues.create=Créer un rapport de problème
issues.new_label=Nouvelle étiquette
issues.new_label_placeholder=Nom de l'étiquette...
-issues.create_label=Create Label
+issues.create_label=Créer une étiquette
issues.open_tab=%d Ouvert
issues.close_tab=%d Fermé
issues.filter_label=Étiquette
@@ -394,14 +395,42 @@ issues.filter_label_no_select=Aucun étiquette sélectionnée issues.filter_milestone=Étape
issues.filter_milestone_no_select=Aucun jalon sélectionné
issues.filter_assignee=Assigné
+issues.filter_assginee_no_select=No selected Assignee
issues.filter_type=Type
issues.filter_type.all_issues=Tous les problèmes
issues.filter_type.assigned_to_you=Qui vous sont assignés
issues.filter_type.created_by_you=Créé(es) par vous
issues.filter_type.mentioning_you=Vous mentionnant
+issues.filter_sort=Trier
+issues.filter_sort.latest=Plus récent
+issues.filter_sort.oldest=Plus ancien/ne
+issues.filter_sort.recentupdate=Mis à jour récemment
+issues.filter_sort.leastupdate=Moins récemment mis à jour
+issues.filter_sort.mostcomment=Plus commentés
+issues.filter_sort.leastcomment=Moins commenté
issues.opened_by=ouvert %[1]s par <a href="/%[2]s">%[2]s</a>
+issues.opened_by_fake=ouvert %[1]s par %[2]s
issues.previous=Page Précédente
issues.next=Page Suivante
+issues.open_title=Ouvert
+issues.closed_title=Fermé
+issues.num_comments=%d commentaires
+issues.commented_at='commenté à <a id="%[1]s" href="#%[1]s"> %[2]s'</a>
+issues.no_content=Il n'existe pas encore de contenu.
+issues.close_issue=Fermer
+issues.close_comment_issue=Fermer et commenter
+issues.reopen_issue=Réouvrir
+issues.reopen_comment_issue=Réouvrir et commenter
+issues.create_comment=Créer un commentaire
+issues.closed_at="fermé à <a id="%[1]s"href="#%[1]s"> %[2]s"</a>
+issues.reopened_at='réouvert à <a id="%[1]s" href="#%[1]s"> %[2]s'</a>
+issues.poster=Publier
+issues.admin=Admin
+issues.owner=Propriétaire
+issues.sign_up_for_free=Inscrivez-vous gratuitement
+issues.sign_in_require_desc=pour rejoindre cette conversation. Vous avez déjà un compte ? <a href="%s">Connectez-vous commenter</a>
+issues.edit=Modifier
+issues.save=Enregistrer
issues.label_title=Nom du Label
issues.label_color=Couleur du Label
issues.label_count=%d labels
@@ -413,9 +442,9 @@ issues.label_deletion=Suppression du Label issues.label_deletion_desc=Cette opération supprimera également toutes les informations relatives aux problèmes. Voulez-vous continuer ?
issues.label_deletion_success=Label supprimé avec succès !
-pulls.compare_changes=Compare Changes
-pulls.compare_changes_desc=Compare two branches and make a pull request for changes.
-pulls.no_results=No results found.
+pulls.compare_changes=Comparer les changements
+pulls.compare_changes_desc=Comparer deux branches et faire une demande de récupération Pull pour les changements.
+pulls.no_results=Aucun résultat trouvé.
milestones.new=Nouveau Jalon
milestones.open_tab=%d Ouvert
@@ -856,7 +885,7 @@ raw_seconds=secondes raw_minutes=minutes
[dropzone]
-default_message=Drop files here or click to upload.
-invalid_input_type=You can't upload files of this type.
-file_too_big=File size({{filesize}} MB) exceeds maximum size({{maxFilesize}} MB).
-remove_file=Remove file
+default_message=Déposez les fichiers ici ou cliquez pour télécharger.
+invalid_input_type=Vous ne pouvez pas télécharger des fichiers de ce type.
+file_too_big=Le fichier de taille ({{filesize}} Mo) dépasse la taille maximale ({{maxFilesize}} MB).
+remove_file=Supprimer le fichier
diff --git a/conf/locale/locale_it-IT.ini b/conf/locale/locale_it-IT.ini index de6d83bea3..f920c2edc4 100755 --- a/conf/locale/locale_it-IT.ini +++ b/conf/locale/locale_it-IT.ini @@ -14,6 +14,9 @@ version=Versione page=Pagina
template=Template
language=Lingua
+create_new=Create new...
+user_profile_and_more=User profile and more
+signed_in_as=Signed in as
username=Nome utente
email=E-mail
@@ -32,6 +35,8 @@ manage_org=Gestisci le organizzazioni admin_panel=Pannello di amministrazione
account_settings=Impostazioni dell'account
settings=Impostazioni
+your_profile=Your Profile
+your_settings=Your Settings
news_feed=Notizie
pull_requests=Pull Requests
@@ -178,7 +183,6 @@ repo_name_been_taken=Il nome del Repository è già utilizzato. org_name_been_taken=Il nome dell'Organizzazione è già utlizzato.
team_name_been_taken=Il nome del Team è già utilizzato.
email_been_used=L'indirizzo E-mail è già utilizzato.
-ssh_key_been_used=Il nome della chiave pubblica è già utilizzato.
illegal_team_name=Il nome del Team contiene caratteri non validi.
username_password_incorrect=Nome utente o password incorretti.
enterred_invalid_repo_name=Si prega di assicurarsi che il nome del repository inserito sia corretto.
@@ -264,13 +268,16 @@ add_key=Aggiungi Chiave ssh_desc=Questa è una lista di chiavi SSH associate al tuo account. Poiché queste chiavi consentono a chiunque di ottenere accesso alle tue repository, è molto importante che tu le riconosca.
ssh_helper=<strong>Non sai come?</strong> Controlla la guida di GitHub sul <a href="%s">creare le tue chiavi SSH</a> o sul risolvere <a href="%s">problemi frequenti</a> che potresti incontrare usando SSH.
add_new_key=Aggiungi Chiave SSH
+ssh_key_been_used=Public key content has been used.
+ssh_key_name_used=Public key with same name has already existed.
key_name=Nome della Chiave
key_content=Contenuto
-add_key_success=La nuova chiave SSH è stata aggiunta!
+add_key_success=New SSH key '%s' has been added successfully!
delete_key=Elimina
add_on=Aggiunto il
last_used=Ultimo accesso il
no_activity=Nessuna attività recente
+key_state_desc=This key is used in last 7 days
manage_social=Gestisci gli Account Sociali Associati
social_desc=Questa è un elenco degli account sociali associati. Rimuovere qualsiasi account che non si riconosce.
@@ -298,7 +305,7 @@ owner=Proprietario repo_name=Nome Repository
repo_name_helper=I migliori nomi dei repository sono brevi, facili da memorizzare e <strong>univoci</strong>.
visibility=Visibilità
-visiblity_helper=Questo repository è <span class="label label-red label-radius">Privato</span>
+visiblity_helper=This repository is <span class="ui red text">Private</span>
fork_repo=Forka Repository
fork_from=Forka da
fork_visiblity_helper=Non puoi cambiare la visibilità di un repository forkato.
@@ -317,9 +324,10 @@ form.name_pattern_not_allowed=La struttura del nome del repository %s non è con need_auth=Richiesta di autorizzazione
migrate_type=Tipo di migrazione
-migrate_type_helper=Questo repository sarà un <span class="label label-blue label-radius">Mirror</span>
+migrate_type_helper=This repository will be a <span class="text blue">mirror</span>
migrate_repo=Migra Repository
migrate.clone_address=Duplica Indirizzo
+migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path.
migrate.invalid_local_path=Percorso locale non valido, non esiste o non è una cartella.
forked_from=forkato da
@@ -365,22 +373,64 @@ commits.older=Più vecchio commits.newer=Più recente
issues.new=Nuovo Problema
+issues.new.labels=Labels
+issues.new.no_label=No Label
+issues.new.clear_labels=Clear labels
+issues.new.milestone=Milestone
+issues.new.no_milestone=No Milestone
+issues.new.clear_milestone=Clear milestone
+issues.new.open_milestone=Open Milestones
+issues.new.closed_milestone=Closed Milestones
+issues.new.assignee=Assignee
+issues.new.clear_assignee=Clear assignee
+issues.new.no_assignee=No assignee
+issues.create=Create Issue
issues.new_label=Nuova etichetta
issues.new_label_placeholder=Nome dell'etichetta...
+issues.create_label=Create Label
issues.open_tab=%d Aperti
issues.close_tab=%d Chiusi
issues.filter_label=Etichetta
issues.filter_label_no_select=Nessuna etichetta selezionata
issues.filter_milestone=Traguardo
+issues.filter_milestone_no_select=No selected milestone
issues.filter_assignee=Assegnatario
+issues.filter_assginee_no_select=No selected Assignee
issues.filter_type=Tipo
issues.filter_type.all_issues=Tutti i problemi
issues.filter_type.assigned_to_you=Assegnati a te
issues.filter_type.created_by_you=Creati da te
issues.filter_type.mentioning_you=Che ti riguardano
+issues.filter_sort=Sort
+issues.filter_sort.latest=Newest
+issues.filter_sort.oldest=Oldest
+issues.filter_sort.recentupdate=Recently updated
+issues.filter_sort.leastupdate=Least recently updated
+issues.filter_sort.mostcomment=Most commented
+issues.filter_sort.leastcomment=Least commented
issues.opened_by=aperto %[1]s da <a href="/%[2]s">%[2]s</a>
+issues.opened_by_fake=opened %[1]s by %[2]s
issues.previous=Pagina precedente
issues.next=Pagina successiva
+issues.open_title=Open
+issues.closed_title=Closed
+issues.num_comments=%d comments
+issues.commented_at=`commented at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.no_content=There is no content yet.
+issues.close_issue=Close
+issues.close_comment_issue=Close and comment
+issues.reopen_issue=Reopen
+issues.reopen_comment_issue=Reopen and comment
+issues.create_comment=Comment
+issues.closed_at=`closed at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.reopened_at=`reopened at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.poster=Poster
+issues.admin=Admin
+issues.owner=Owner
+issues.sign_up_for_free=Sign up for free
+issues.sign_in_require_desc=to join this conversation. Already have an account? <a href="%s">Sign in to comment</a>
+issues.edit=Edit
+issues.save=Save
issues.label_title=Nome etichetta
issues.label_color=Colore etichetta
issues.label_count=%d etichette
@@ -392,12 +442,39 @@ issues.label_deletion=Elimina Etichetta issues.label_deletion_desc=Eliminare l'etichetta rimuovera le sue informazioni in tutti i problemi correlati. Vuoi continuare?
issues.label_deletion_success=Etichetta eliminata con successo!
+pulls.compare_changes=Compare Changes
+pulls.compare_changes_desc=Compare two branches and make a pull request for changes.
+pulls.no_results=No results found.
+
+milestones.new=New Milestone
+milestones.open_tab=%d Open
+milestones.close_tab=%d Closed
+milestones.closed=Closed %s
+milestones.no_due_date=No due date
+milestones.open=Open
+milestones.close=Close
+milestones.new_subheader=Create milestones to organize your issues.
+milestones.create=Create Milestone
+milestones.title=Title
+milestones.desc=Description
+milestones.due_date=Due Date (optional)
+milestones.clear=Clear
+milestones.invalid_due_date_format=Due date format is invalid, must be 'year-mm-dd'.
+milestones.create_success=Milestone '%s' has been created successfully!
+milestones.edit=Edit Milestone
+milestones.edit_subheader=Use better description for milestones so people won't be confused.
+milestones.cancel=Cancel
+milestones.modify=Modify Milestone
+milestones.edit_success=Changes of milestone '%s' has been saved successfully!
+milestones.deletion=Milestone Deletion
+milestones.deletion_desc=Delete this milestone will remove its information in all related issues. Do you want to continue?
+milestones.deletion_success=Milestone has been deleted successfully!
+
settings=Impostazioni
settings.options=Opzioni
settings.collaboration=Collaborazione
settings.hooks=Webhooks
settings.githooks=Git Hooks
-settings.deploy_keys=Dispiega Chiavi
settings.basic_settings=Impostazioni di Base
settings.danger_zone=Zona Pericolosa
settings.site=Sito Ufficiale
@@ -445,6 +522,17 @@ settings.add_slack_hook_desc=Aggiungi <a href="%s"> Slack</a> integrazione al tu settings.slack_token=Token
settings.slack_domain=Dominio
settings.slack_channel=Canale
+settings.deploy_keys=Dispiega Chiavi
+settings.add_deploy_key=Add Deploy Key
+settings.no_deploy_keys=You haven't added any deploy key.
+settings.title=Title
+settings.deploy_key_content=Content
+settings.key_been_used=Deploy key content has been used.
+settings.key_name_used=Deploy key with same name has already existed.
+settings.add_key_success=New deploy key '%s' has been added successfully!
+settings.deploy_key_deletion=Delete Deploy Key
+settings.deploy_key_deletion_desc=Delete this deploy key will remove all related accesses for this repository. Do you want to continue?
+settings.deploy_key_deletion_success=Deploy key has been deleted successfully!
diff.browse_source=Sfoglia il codice sorgente
diff.parent=parent
@@ -718,7 +806,7 @@ config.enable_cache_avatar=Abilitare Cache dell'Avatar config.active_code_lives=Attiva Vita del Codice
config.reset_password_code_lives=Reimpostare Password della Vita del Codice
config.webhook_config=Configurazione Webhook
-config.task_interval=Intervallo Attività
+config.queue_length=Queue Length
config.deliver_timeout=Tempo Limite di Consegna
config.skip_tls_verify=Salta verifiche TLS
config.mailer_config=Configurazione Mailer
@@ -796,3 +884,8 @@ years=%d anni %s raw_seconds=secondi
raw_minutes=minuti
+[dropzone]
+default_message=Drop files here or click to upload.
+invalid_input_type=You can't upload files of this type.
+file_too_big=File size({{filesize}} MB) exceeds maximum size({{maxFilesize}} MB).
+remove_file=Remove file
diff --git a/conf/locale/locale_ja-JP.ini b/conf/locale/locale_ja-JP.ini index 53c794c44b..6d72e4eade 100755 --- a/conf/locale/locale_ja-JP.ini +++ b/conf/locale/locale_ja-JP.ini @@ -324,9 +324,10 @@ form.name_pattern_not_allowed=リポジトリ名のパターン '%s' は許可 need_auth=認証が必要
migrate_type=マイグレーションの種類
-migrate_type_helper=このリポジトリは <span class="label label-blue label-radius"> ミラー</span> になります
+migrate_type_helper=This repository will be a <span class="text blue">mirror</span>
migrate_repo=リポジトリを移行
migrate.clone_address=クローンアドレス
+migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path.
migrate.invalid_local_path=ローカルパスが無効です。存在しないかディレクトリではありません。
forked_from=フォーク元
@@ -401,12 +402,12 @@ issues.filter_type.assigned_to_you=あなたに割り当てられました。 issues.filter_type.created_by_you=あなたが作成しました。
issues.filter_type.mentioning_you=あなたに伝える
issues.filter_sort=Sort
-issues.filter_sort.latest=Latest
+issues.filter_sort.latest=Newest
issues.filter_sort.oldest=Oldest
-issues.filter_sort.recentupdate=Recent updated
-issues.filter_sort.leastupdate=Least updated
-issues.filter_sort.mostcomment=Most comments
-issues.filter_sort.leastcomment=Least comments
+issues.filter_sort.recentupdate=Recently updated
+issues.filter_sort.leastupdate=Least recently updated
+issues.filter_sort.mostcomment=Most commented
+issues.filter_sort.leastcomment=Least commented
issues.opened_by=<a href="/%[2]s"> %[2]s</a>によって開かれた %[1]s
issues.opened_by_fake=opened %[1]s by %[2]s
issues.previous=前ページ
diff --git a/conf/locale/locale_lv-LV.ini b/conf/locale/locale_lv-LV.ini index c2d4fac6b0..33ac86e933 100755 --- a/conf/locale/locale_lv-LV.ini +++ b/conf/locale/locale_lv-LV.ini @@ -14,6 +14,9 @@ version=Versija page=Lapa
template=Sagatave
language=Valoda
+create_new=Izveidot jaunu...
+user_profile_and_more=Lietotāja profilu un vairāk
+signed_in_as=Pierakstījies kā
username=Lietotājvārds
email=E-pasts
@@ -32,6 +35,8 @@ manage_org=Pārvaldīt organizācijas admin_panel=Admin panelis
account_settings=Konta iestatījumi
settings=Iestatījumi
+your_profile=Tavs profils
+your_settings=Tavi iestatījumi
news_feed=Jaunumu plūsma
pull_requests=Izmaiņu pieprasījumi
@@ -40,17 +45,17 @@ issues=Problēmas cancel=Atcelt
[search]
-search=Search...
-repository=Repository
-user=User
-issue=Issue
-code=Code
+search=Meklēt...
+repository=Repozitorijs
+user=Lietotājs
+issue=Kļūda
+code=Kods
[install]
install=Instalācija
title=Instalācijas soļi pirmo reizi palaižot
requite_db_desc=Gogs ir nepieciešama MySQL, PostgreSQL vai SQLite3 datu bāze.
-db_title=Database Settings
+db_title=Datu bāzes iestatījumi
db_type=Datu bāzes veids
host=Resursdators
user=Lietotājs
@@ -60,11 +65,11 @@ db_helper=Nepieciešams izmantot MySQL INNODB dzini ar rakstzīmju kopu utf8_gen ssl_mode=SSL režīms
path=Ceļš
sqlite_helper=SQLite 3 datu bāzes faila atrašanās vieta.
-err_empty_sqlite_path=SQLite3 database path cannot be empty.
+err_empty_sqlite_path=Nav norādīts SQLite3 datu bāzes ceļš.
general_title=Gogs vispārīgie iestatījumi
-app_name=Application Name
-app_name_helper=Put your organization name here huge and loud!
+app_name=Lietotnes nosaukums
+app_name_helper=Norādiet organizācijas nosaukumu šeit!
repo_path=Repozitoriju glabāšanas vieta
repo_path_helper=Visi Git attālinātie repozitoriji tiks glabāti šajā direktorijā.
run_user=Izpildes lietotājs
@@ -76,23 +81,23 @@ http_port_helper=Porta numurs pēc kura lietojumprogrammai būs iespējams piesl app_url=Lietotnes URL
app_url_helper=Tas ietekmē HTTP/HTTPS klonēšanas URL un e-pasta saturā izsūtītās saites.
-optional_title=Optional Settings
+optional_title=Neobligātie iestatījumi
email_title=E-pasta pakalpojuma iestatījumi
smtp_host=SMTP resursdators
-smtp_from=From
-smtp_from_helper=Mail from address, RFC 5322. It can be just an email address, or the "Name" <email@example.com> format.
+smtp_from=Sūtītājs
+smtp_from_helper=E-pasta adrese, RFC 5322. Drīkst būt vienkārši e-pasta adrese vai formātā "Nosaukums" <e-pasts@example.com>.
mailer_user=Sūtītāja e-pasta adrese
mailer_password=Sūtītāja parole
register_confirm=Iespējot reģistrēšanās apstiprināšanu
mail_notify=Iespējot e-pasta paziņojumus
-server_service_title=Server and Other Services Settings
-offline_mode=Enable Offline Mode
-offline_mode_popup=Disable CDN even in production mode, all resource files will be served locally.
-disable_registration=Disable Self-registration
-disable_registration_popup=Disable user self-registration, only admin can create accounts.
-require_sign_in_view=Enable Require Sign In to View Pages
-require_sign_in_view_popup=Only signed in users can view pages, visitors will only be able to see sign in/up pages.
-admin_setting_desc=You do not have to create an admin account right now, user whoever ID=1 will gain admin access automatically.
+server_service_title=Servera un citu servisu iestatījumi
+offline_mode=Iespējot bezsaistes režīmu
+offline_mode_popup=Atspējot CDN arī produkcijas režīmā, visi resursu faili tiks piegādāti no servera.
+disable_registration=Atspējot lietotāju reģistrāciju
+disable_registration_popup=Atspējot lietotāju reģistrāciju, tikai administrators varēs izveidot jaunus lietotāju kontus.
+require_sign_in_view=Iespējot nepieciešamību autorizēties, lai aplūkotu lapas
+require_sign_in_view_popup=Tika autorizēti lietotāji var aplūkot lapas, neautorizēti lietotāji var piekļūt tikai autorizācijas un reģistrēšanās lapām.
+admin_setting_desc=Nav nepieciešams izveidot administratora kontu uzreiz, lietotājs ar ID=1 saņems administratora tiesības automātiski.
admin_title=Admin konta iestatījumi
admin_name=Lietotājvārds
admin_password=Parole
@@ -144,9 +149,9 @@ reset_password_helper=Nospiediet šeit, lai atjaunotu paroli password_too_short=Paroles garums nedrīkst būt mazāks par 6.
[modal]
-yes=Yes
-no=No
-modify=Modify
+yes=Jā
+no=Nē
+modify=Mainīt
[form]
UserName=Lietotājvārds
@@ -164,7 +169,7 @@ AdminEmail=Admin e-pasta adrese require_error=` nedrīkst būt tukšs.`
alpha_dash_error=` drīkst saturēt tikai latīņu alfabēta burtus, ciparus vai domuzīmes (-_).`
alpha_dash_dot_error=` drīkst saturēt tikai latīņu alfabēta burtus, ciparus, domuzīmes (-_) vai punktu.`
-size_error=` must be size %s.`
+size_error=` jābūt %s simbolus garam.`
min_size_error=` jabūt vismaz %s simbolu garumā.`
max_size_error=` jabūt ne mazāk kā %s simbolu garumā.`
email_error=` nav derīga e-pasta adrese.`
@@ -178,7 +183,6 @@ repo_name_been_taken=Repozitorija vārds ir jau aizņemts. org_name_been_taken=Organizācijas nosaukums ir jau aizņemts.
team_name_been_taken=Komandas nosaukums ir jau aizņemts.
email_been_used=E-pasta adrese jau tiek izmantota.
-ssh_key_been_used=Publiskās atslēgas nosaukums jau tiek izmantos.
illegal_team_name=Grupas nosaukums satur neatļautas rakstzīmes.
username_password_incorrect=Lietotājvārds vai parole nav pareiza.
enterred_invalid_repo_name=Lūdzu, pārliecinieties, vai ievadītā repozitorija nosaukums ir pareizs.
@@ -209,8 +213,8 @@ followers=Sekotāji starred=Atzīmēti ar zvaigznīti
following=Seko
-form.name_reserved=Username '%s' is reserved.
-form.name_pattern_not_allowed=Username pattern '%s' is not allowed.
+form.name_reserved=Lietotāja vārds '%s' jau ir aizņemts.
+form.name_pattern_not_allowed=Lietotāja vārds '%s' nav atļauts.
[settings]
profile=Profils
@@ -264,13 +268,16 @@ add_key=Pievienot atslēgu ssh_desc=Šis ir saraksts ar Jūsu kontam piesaistītajām SSH atslēgām. Dzēsiet visas, kuras Jūs neatpazīstat.
ssh_helper=<strong>Vajadzīga palīdzība?</strong> Apskatieties pamācību kā <a href="%s">ģenerēt SSH atslēgas</a> vai kā novērst <a href="%s">biežāk sastopamās SSH problēmas</a>.
add_new_key=Pievienot SSH atslēgu
+ssh_key_been_used=Public key content has been used.
+ssh_key_name_used=Public key with same name has already existed.
key_name=Atslēgas nosaukums
key_content=Saturs
-add_key_success=Pievienota jauna SSH atslēga!
+add_key_success=New SSH key '%s' has been added successfully!
delete_key=Dzēst
add_on=Pievienota
last_used=Pēdējo reizi izmantota
no_activity=Nav nesenas aktivitātes
+key_state_desc=This key is used in last 7 days
manage_social=Pārvaldīt piesaistītos sociālos kontus
social_desc=Šeit tiek attēloti visi sociālie konti, kas ir piesaistīti Jūsu kontam. Dzēsiet visus, kurus Jūs neatpazīstat.
@@ -298,7 +305,7 @@ owner=Īpašnieks repo_name=Repozitorija nosaukums
repo_name_helper=Labi repzotoriju nosaukumi ir īsi, tādi kurus viegli atcerēties un <strong>unikāli</strong>.
visibility=Redzamība
-visiblity_helper=Šis repozitorijs ir <span class="label label-red label-radius">Privāts</span>
+visiblity_helper=This repository is <span class="ui red text">Private</span>
fork_repo=Atdalīt repozitoriju
fork_from=Atdalīt no
fork_visiblity_helper=Atdalītam repozitorijam nav iespējams nomainīt tā redzamību
@@ -317,9 +324,10 @@ form.name_pattern_not_allowed=Repository name pattern '%s' is not allowed. need_auth=Nepieciešama autorizācija
migrate_type=Migrācijas veids
-migrate_type_helper=Šis repozitorijs būs <span class="label label-blue label-radius">Spoguļots</span>
+migrate_type_helper=This repository will be a <span class="text blue">mirror</span>
migrate_repo=Migrēt repozitoriju
migrate.clone_address=Clone Address
+migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path.
migrate.invalid_local_path=Invalid local path, it does not exist or not a directory.
forked_from=forked from
@@ -365,22 +373,64 @@ commits.older=Vecāki commits.newer=Jaunāki
issues.new=New Issue
+issues.new.labels=Labels
+issues.new.no_label=No Label
+issues.new.clear_labels=Clear labels
+issues.new.milestone=Milestone
+issues.new.no_milestone=No Milestone
+issues.new.clear_milestone=Clear milestone
+issues.new.open_milestone=Open Milestones
+issues.new.closed_milestone=Closed Milestones
+issues.new.assignee=Assignee
+issues.new.clear_assignee=Clear assignee
+issues.new.no_assignee=No assignee
+issues.create=Create Issue
issues.new_label=New Label
issues.new_label_placeholder=Label name...
+issues.create_label=Create Label
issues.open_tab=%d Open
issues.close_tab=%d Closed
issues.filter_label=Label
issues.filter_label_no_select=No selected label
issues.filter_milestone=Milestone
+issues.filter_milestone_no_select=No selected milestone
issues.filter_assignee=Assignee
+issues.filter_assginee_no_select=No selected Assignee
issues.filter_type=Type
issues.filter_type.all_issues=All issues
issues.filter_type.assigned_to_you=Assigned to you
issues.filter_type.created_by_you=Created by you
issues.filter_type.mentioning_you=Mentioning you
+issues.filter_sort=Sort
+issues.filter_sort.latest=Newest
+issues.filter_sort.oldest=Oldest
+issues.filter_sort.recentupdate=Recently updated
+issues.filter_sort.leastupdate=Least recently updated
+issues.filter_sort.mostcomment=Most commented
+issues.filter_sort.leastcomment=Least commented
issues.opened_by=opened %[1]s by <a href="/%[2]s">%[2]s</a>
-issues.previous=Previous Page
-issues.next=Next Page
+issues.opened_by_fake=opened %[1]s by %[2]s
+issues.previous=Previous
+issues.next=Next
+issues.open_title=Open
+issues.closed_title=Closed
+issues.num_comments=%d comments
+issues.commented_at=`commented at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.no_content=There is no content yet.
+issues.close_issue=Close
+issues.close_comment_issue=Close and comment
+issues.reopen_issue=Reopen
+issues.reopen_comment_issue=Reopen and comment
+issues.create_comment=Comment
+issues.closed_at=`closed at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.reopened_at=`reopened at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.poster=Poster
+issues.admin=Admin
+issues.owner=Owner
+issues.sign_up_for_free=Sign up for free
+issues.sign_in_require_desc=to join this conversation. Already have an account? <a href="%s">Sign in to comment</a>
+issues.edit=Edit
+issues.save=Save
issues.label_title=Label name
issues.label_color=Label color
issues.label_count=%d labels
@@ -389,15 +439,42 @@ issues.label_edit=Edit issues.label_delete=Delete
issues.label_modify=Label Modification
issues.label_deletion=Label Deletion
-issues.label_deletion_desc=Delete label will remove its information in all related issues. Do you want to continue?
+issues.label_deletion_desc=Delete this label will remove its information in all related issues. Do you want to continue?
issues.label_deletion_success=Label has been deleted successfully!
+pulls.compare_changes=Compare Changes
+pulls.compare_changes_desc=Compare two branches and make a pull request for changes.
+pulls.no_results=No results found.
+
+milestones.new=New Milestone
+milestones.open_tab=%d Open
+milestones.close_tab=%d Closed
+milestones.closed=Closed %s
+milestones.no_due_date=No due date
+milestones.open=Open
+milestones.close=Close
+milestones.new_subheader=Create milestones to organize your issues.
+milestones.create=Create Milestone
+milestones.title=Title
+milestones.desc=Description
+milestones.due_date=Due Date (optional)
+milestones.clear=Clear
+milestones.invalid_due_date_format=Due date format is invalid, must be 'year-mm-dd'.
+milestones.create_success=Milestone '%s' has been created successfully!
+milestones.edit=Edit Milestone
+milestones.edit_subheader=Use better description for milestones so people won't be confused.
+milestones.cancel=Cancel
+milestones.modify=Modify Milestone
+milestones.edit_success=Changes of milestone '%s' has been saved successfully!
+milestones.deletion=Milestone Deletion
+milestones.deletion_desc=Delete this milestone will remove its information in all related issues. Do you want to continue?
+milestones.deletion_success=Milestone has been deleted successfully!
+
settings=Iestatījumi
settings.options=Opcijas
settings.collaboration=Sadarbība
settings.hooks=Tīmekļa āķi
settings.githooks=Git āķi
-settings.deploy_keys=Izvietot atslēgas
settings.basic_settings=Pamatiestatījumi
settings.danger_zone=Bīstamā zona
settings.site=Oficiālā mājas lapa
@@ -445,6 +522,17 @@ settings.add_slack_hook_desc=PIevienot <a href="%s">Slack</a> integrāciju Jūsu settings.slack_token=Talons
settings.slack_domain=Domēns
settings.slack_channel=Kanāls
+settings.deploy_keys=Izvietot atslēgas
+settings.add_deploy_key=Add Deploy Key
+settings.no_deploy_keys=You haven't added any deploy key.
+settings.title=Title
+settings.deploy_key_content=Content
+settings.key_been_used=Deploy key content has been used.
+settings.key_name_used=Deploy key with same name has already existed.
+settings.add_key_success=New deploy key '%s' has been added successfully!
+settings.deploy_key_deletion=Delete Deploy Key
+settings.deploy_key_deletion_desc=Delete this deploy key will remove all related accesses for this repository. Do you want to continue?
+settings.deploy_key_deletion_success=Deploy key has been deleted successfully!
diff.browse_source=Pārlūkot izejas kodu
diff.parent=vecāks
@@ -718,7 +806,7 @@ config.enable_cache_avatar=Glabāt profila attēlus kešatmiņā config.active_code_lives=Aktīvā koda ilgums
config.reset_password_code_lives=Paroles atiestatīšanas koda ilgums
config.webhook_config=Tīkla āķu konfigurācija
-config.task_interval=Uzdevuma intervāls
+config.queue_length=Queue Length
config.deliver_timeout=Piegādes noildze
config.skip_tls_verify=Izlaist TLS pārbaudi
config.mailer_config=Sūtītāja konfigurācija
@@ -796,3 +884,8 @@ years=%d gadi %s raw_seconds=sekundes
raw_minutes=minūtes
+[dropzone]
+default_message=Drop files here or click to upload.
+invalid_input_type=You can't upload files of this type.
+file_too_big=File size({{filesize}} MB) exceeds maximum size({{maxFilesize}} MB).
+remove_file=Remove file
diff --git a/conf/locale/locale_nl-NL.ini b/conf/locale/locale_nl-NL.ini index baa4862128..bc4e89290d 100755 --- a/conf/locale/locale_nl-NL.ini +++ b/conf/locale/locale_nl-NL.ini @@ -14,6 +14,9 @@ version=Versie page=Pagina
template=Sjabloon
language=Taal
+create_new=Create new...
+user_profile_and_more=User profile and more
+signed_in_as=Signed in as
username=Gebruikersnaam
email=E-mail
@@ -32,6 +35,8 @@ manage_org=Beheer organisaties admin_panel=Adminpaneel
account_settings=Accountinstellingen
settings=Instellingen
+your_profile=Your Profile
+your_settings=Your Settings
news_feed=Nieuwsfeed
pull_requests=Pull-aanvragen
@@ -178,7 +183,6 @@ repo_name_been_taken=Repositorie naam is al in gebruik. org_name_been_taken=Organisatie naam is al in gebruik.
team_name_been_taken=Team naam is al in gebruik.
email_been_used=e-mailadres is al in gebruik.
-ssh_key_been_used=Openbare sleutel naam is al in gebruik.
illegal_team_name=Team naam bevat illegale karakters.
username_password_incorrect=Gebruikersnaam of wachtwoord is niet correct.
enterred_invalid_repo_name=U heeft een onjuiste repositorie naam ingevoerd.
@@ -264,13 +268,16 @@ add_key=Sleutel toevoegen ssh_desc=Dit is een lijst van alle SSH sleutels die gekoppeld zijn aan uw account. Verwijder alle sleutels die u niet herkent.
ssh_helper=<strong>De behoeftehulp van?</strong> Check out onze gids voor het <a href="%s"> genereren van SSH sleutels</a> of <a href="%s"> algemene SSH</a> problemen.
add_new_key=SSH sleutel toevoegen
+ssh_key_been_used=Public key content has been used.
+ssh_key_name_used=Public key with same name has already existed.
key_name=Sleutel naam
key_content=Inhoud
-add_key_success=Nieuwe SSH sleutel is toegevoegd!
+add_key_success=New SSH key '%s' has been added successfully!
delete_key=Verwijder
add_on=Toegevoegd op
last_used=Laatst gebruikt op
no_activity=Geen recente activiteiten
+key_state_desc=This key is used in last 7 days
manage_social=Beheer gekoppelde sociale accounts
social_desc=Dit is een lijst van de bijbehorende sociale accounts koppelingen, Verwijder eventueel koppelingen die u niet herkent.
@@ -298,7 +305,7 @@ owner=Eigenaar repo_name=Repositorie naam
repo_name_helper=Een goede repositorie naam is kort, memorabel en <strong>uniek</strong>.
visibility=Zichtbaarheid
-visiblity_helper=Deze repositorie is <span class="label label-red label-radius">prive</span>
+visiblity_helper=This repository is <span class="ui red text">Private</span>
fork_repo=Vork Repository
fork_from=Afsplitsing van
fork_visiblity_helper=Gevorkte repository wijzigen zijn bereik potentiële kopers niet
@@ -317,9 +324,10 @@ form.name_pattern_not_allowed=Repositorie naampatroon '%s' is niet toegestaan. need_auth=Autorisatie vereist
migrate_type=Migratie type
-migrate_type_helper=Deze repositorie zal een <span class="label label-blue label-radius">mirror</span> worden
+migrate_type_helper=This repository will be a <span class="text blue">mirror</span>
migrate_repo=Migreer repositorie
migrate.clone_address=Clone adres
+migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path.
migrate.invalid_local_path=Ongeldig lokaal pad, het pad bestaat niet of het is geen map.
forked_from=geforked van
@@ -365,22 +373,64 @@ commits.older=Ouder commits.newer=Nieuwer
issues.new=New Issue
+issues.new.labels=Labels
+issues.new.no_label=No Label
+issues.new.clear_labels=Clear labels
+issues.new.milestone=Milestone
+issues.new.no_milestone=No Milestone
+issues.new.clear_milestone=Clear milestone
+issues.new.open_milestone=Open Milestones
+issues.new.closed_milestone=Closed Milestones
+issues.new.assignee=Assignee
+issues.new.clear_assignee=Clear assignee
+issues.new.no_assignee=No assignee
+issues.create=Create Issue
issues.new_label=Nieuw Label
issues.new_label_placeholder=Tekst label...
+issues.create_label=Create Label
issues.open_tab=%d Open
issues.close_tab=%d gesloten
issues.filter_label=Label
issues.filter_label_no_select=Geen label geselecteerd
issues.filter_milestone=Mijlpaal
+issues.filter_milestone_no_select=No selected milestone
issues.filter_assignee=Aangewezene
+issues.filter_assginee_no_select=No selected Assignee
issues.filter_type=Type
issues.filter_type.all_issues=Alle kwesties
issues.filter_type.assigned_to_you=Aan jou toegewezen
issues.filter_type.created_by_you=Created by you
issues.filter_type.mentioning_you=Mentioning you
+issues.filter_sort=Sort
+issues.filter_sort.latest=Newest
+issues.filter_sort.oldest=Oldest
+issues.filter_sort.recentupdate=Recently updated
+issues.filter_sort.leastupdate=Least recently updated
+issues.filter_sort.mostcomment=Most commented
+issues.filter_sort.leastcomment=Least commented
issues.opened_by=opened %[1]s by <a href="/%[2]s">%[2]s</a>
-issues.previous=Previous Page
-issues.next=Next Page
+issues.opened_by_fake=opened %[1]s by %[2]s
+issues.previous=Previous
+issues.next=Next
+issues.open_title=Open
+issues.closed_title=Closed
+issues.num_comments=%d comments
+issues.commented_at=`commented at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.no_content=There is no content yet.
+issues.close_issue=Close
+issues.close_comment_issue=Close and comment
+issues.reopen_issue=Reopen
+issues.reopen_comment_issue=Reopen and comment
+issues.create_comment=Comment
+issues.closed_at=`closed at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.reopened_at=`reopened at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.poster=Poster
+issues.admin=Admin
+issues.owner=Owner
+issues.sign_up_for_free=Sign up for free
+issues.sign_in_require_desc=to join this conversation. Already have an account? <a href="%s">Sign in to comment</a>
+issues.edit=Edit
+issues.save=Save
issues.label_title=Label name
issues.label_color=Label color
issues.label_count=%d labels
@@ -389,15 +439,42 @@ issues.label_edit=Edit issues.label_delete=Delete
issues.label_modify=Label Modification
issues.label_deletion=Label Deletion
-issues.label_deletion_desc=Delete label will remove its information in all related issues. Do you want to continue?
+issues.label_deletion_desc=Delete this label will remove its information in all related issues. Do you want to continue?
issues.label_deletion_success=Label has been deleted successfully!
+pulls.compare_changes=Compare Changes
+pulls.compare_changes_desc=Compare two branches and make a pull request for changes.
+pulls.no_results=No results found.
+
+milestones.new=New Milestone
+milestones.open_tab=%d Open
+milestones.close_tab=%d Closed
+milestones.closed=Closed %s
+milestones.no_due_date=No due date
+milestones.open=Open
+milestones.close=Close
+milestones.new_subheader=Create milestones to organize your issues.
+milestones.create=Create Milestone
+milestones.title=Title
+milestones.desc=Description
+milestones.due_date=Due Date (optional)
+milestones.clear=Clear
+milestones.invalid_due_date_format=Due date format is invalid, must be 'year-mm-dd'.
+milestones.create_success=Milestone '%s' has been created successfully!
+milestones.edit=Edit Milestone
+milestones.edit_subheader=Use better description for milestones so people won't be confused.
+milestones.cancel=Cancel
+milestones.modify=Modify Milestone
+milestones.edit_success=Changes of milestone '%s' has been saved successfully!
+milestones.deletion=Milestone Deletion
+milestones.deletion_desc=Delete this milestone will remove its information in all related issues. Do you want to continue?
+milestones.deletion_success=Milestone has been deleted successfully!
+
settings=Instellingen
settings.options=Opties
settings.collaboration=Samenwerking
settings.hooks=Webhooks
settings.githooks=Git haken
-settings.deploy_keys=Installeer sleutels
settings.basic_settings=Basis instellingen
settings.danger_zone=Gevaren zone
settings.site=Officiële site
@@ -445,6 +522,17 @@ settings.add_slack_hook_desc=<a href="%s"> toegestane vertraging</a> integratie settings.slack_token=Slack token
settings.slack_domain=Slack domein
settings.slack_channel=Slack kanaal
+settings.deploy_keys=Installeer sleutels
+settings.add_deploy_key=Add Deploy Key
+settings.no_deploy_keys=You haven't added any deploy key.
+settings.title=Title
+settings.deploy_key_content=Content
+settings.key_been_used=Deploy key content has been used.
+settings.key_name_used=Deploy key with same name has already existed.
+settings.add_key_success=New deploy key '%s' has been added successfully!
+settings.deploy_key_deletion=Delete Deploy Key
+settings.deploy_key_deletion_desc=Delete this deploy key will remove all related accesses for this repository. Do you want to continue?
+settings.deploy_key_deletion_success=Deploy key has been deleted successfully!
diff.browse_source=Bladeren bron
diff.parent=bovenliggende
@@ -718,7 +806,7 @@ config.enable_cache_avatar=Avatar Cache inschakelen config.active_code_lives=Actieve Code leven
config.reset_password_code_lives=Reset wachtwoord Code leven
config.webhook_config=Webhook configuratie
-config.task_interval=Taakinterval
+config.queue_length=Queue Length
config.deliver_timeout=Bezorging verlooptijd
config.skip_tls_verify=TLS certificaat controle overslaan
config.mailer_config=Mailerconfiguatie
@@ -796,3 +884,8 @@ years=%d jaren %s raw_seconds=seconden
raw_minutes=minuten
+[dropzone]
+default_message=Drop files here or click to upload.
+invalid_input_type=You can't upload files of this type.
+file_too_big=File size({{filesize}} MB) exceeds maximum size({{maxFilesize}} MB).
+remove_file=Remove file
diff --git a/conf/locale/locale_pl-PL.ini b/conf/locale/locale_pl-PL.ini index ea0fd796b0..d6b282d327 100755 --- a/conf/locale/locale_pl-PL.ini +++ b/conf/locale/locale_pl-PL.ini @@ -14,6 +14,9 @@ version=Wersja page=Strona
template=Szablon
language=Język
+create_new=Create new...
+user_profile_and_more=User profile and more
+signed_in_as=Signed in as
username=Nazwa Użytkownika
email=E-mail
@@ -32,6 +35,8 @@ manage_org=Zarządzaj organizacjami admin_panel=Panel admina
account_settings=Ustawienia konta
settings=Ustawienia
+your_profile=Your Profile
+your_settings=Your Settings
news_feed=Kanał aktualności
pull_requests=Oczekujące zmiany
@@ -178,7 +183,6 @@ repo_name_been_taken=Nazwa repozytorium jest już zajęta. org_name_been_taken=Nazwa organizacji jest już zajęta.
team_name_been_taken=Nazwa zespołu jest już zajęta.
email_been_used=Adres e-mail jest już zarejestrowany.
-ssh_key_been_used=Nazwa klucza publicznego jest już używana.
illegal_team_name=Nazwa zespołu zawiera niedozwolone znaki.
username_password_incorrect=Nazwa użytkownika lub hasło nie jest prawidłowe.
enterred_invalid_repo_name=Upewnij się, że wprowadzona nazwa repozytorium jest poprawna.
@@ -264,13 +268,16 @@ add_key=Dodaj klucz ssh_desc=To jest lista kluczy SSH powiązanych z Twoim kontem. Usuń klucze, które nie rozpoznajesz.
ssh_helper=<strong>Potrzebujesz pomocy?</strong> Sprawdź nasz przewodnik <a href="%s"> generowania kluczy SSH</a> lub rozwiązywanie <a href="%s">typowych problemów z SSH</a>.
add_new_key=Dodaj klucz SSH
+ssh_key_been_used=Public key content has been used.
+ssh_key_name_used=Public key with same name has already existed.
key_name=Nazwa klucza
key_content=Treść
-add_key_success=Nowy klucz SSH został dodany!
+add_key_success=New SSH key '%s' has been added successfully!
delete_key=Usuń
add_on=Dodano
last_used=Ostatnio użyto
no_activity=Brak aktywności
+key_state_desc=This key is used in last 7 days
manage_social=Zarządzaj powiązanymi kontami społecznościowymi
social_desc=To jest lista powiązanych kont społecznościowych. Usuń powiązania, których nie rozpoznajesz.
@@ -298,7 +305,7 @@ owner=Właściciel repo_name=Nazwa repozytorium
repo_name_helper=Dobre nazwy repozytorium są krótkie, wpadające w pamięć i <strong>unikalne</strong>.
visibility=Widoczność
-visiblity_helper=To repozytorium jest <span class="label label-red label-radius">prywatne</span>
+visiblity_helper=This repository is <span class="ui red text">Private</span>
fork_repo=Sforkowane
fork_from=Forkuj z
fork_visiblity_helper=Fork nie może zmieniać swojej widoczności
@@ -317,9 +324,10 @@ form.name_pattern_not_allowed=Wzorzec nazwy repozytorium "%s" jest niedozwolony. need_auth=Wymaga autoryzacji
migrate_type=Typ migracji
-migrate_type_helper=Repozytorium będzie <span class="label label-blue label-radius">mirrorem</span>
+migrate_type_helper=This repository will be a <span class="text blue">mirror</span>
migrate_repo=Przenieś repozytorium
migrate.clone_address=Sklonuj adres
+migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path.
migrate.invalid_local_path=Ścieżka jest niepoprawna. Nie istnieje lub nie jest katalogiem.
forked_from=forked from
@@ -365,22 +373,64 @@ commits.older=Starsze commits.newer=Nowsze
issues.new=New Issue
+issues.new.labels=Labels
+issues.new.no_label=No Label
+issues.new.clear_labels=Clear labels
+issues.new.milestone=Milestone
+issues.new.no_milestone=No Milestone
+issues.new.clear_milestone=Clear milestone
+issues.new.open_milestone=Open Milestones
+issues.new.closed_milestone=Closed Milestones
+issues.new.assignee=Assignee
+issues.new.clear_assignee=Clear assignee
+issues.new.no_assignee=No assignee
+issues.create=Create Issue
issues.new_label=New Label
issues.new_label_placeholder=Label name...
+issues.create_label=Create Label
issues.open_tab=%d Open
issues.close_tab=%d Closed
issues.filter_label=Label
issues.filter_label_no_select=No selected label
issues.filter_milestone=Milestone
+issues.filter_milestone_no_select=No selected milestone
issues.filter_assignee=Assignee
+issues.filter_assginee_no_select=No selected Assignee
issues.filter_type=Type
issues.filter_type.all_issues=All issues
issues.filter_type.assigned_to_you=Assigned to you
issues.filter_type.created_by_you=Created by you
issues.filter_type.mentioning_you=Mentioning you
+issues.filter_sort=Sort
+issues.filter_sort.latest=Newest
+issues.filter_sort.oldest=Oldest
+issues.filter_sort.recentupdate=Recently updated
+issues.filter_sort.leastupdate=Least recently updated
+issues.filter_sort.mostcomment=Most commented
+issues.filter_sort.leastcomment=Least commented
issues.opened_by=opened %[1]s by <a href="/%[2]s">%[2]s</a>
-issues.previous=Previous Page
-issues.next=Next Page
+issues.opened_by_fake=opened %[1]s by %[2]s
+issues.previous=Previous
+issues.next=Next
+issues.open_title=Open
+issues.closed_title=Closed
+issues.num_comments=%d comments
+issues.commented_at=`commented at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.no_content=There is no content yet.
+issues.close_issue=Close
+issues.close_comment_issue=Close and comment
+issues.reopen_issue=Reopen
+issues.reopen_comment_issue=Reopen and comment
+issues.create_comment=Comment
+issues.closed_at=`closed at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.reopened_at=`reopened at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.poster=Poster
+issues.admin=Admin
+issues.owner=Owner
+issues.sign_up_for_free=Sign up for free
+issues.sign_in_require_desc=to join this conversation. Already have an account? <a href="%s">Sign in to comment</a>
+issues.edit=Edit
+issues.save=Save
issues.label_title=Label name
issues.label_color=Label color
issues.label_count=%d labels
@@ -389,15 +439,42 @@ issues.label_edit=Edit issues.label_delete=Delete
issues.label_modify=Label Modification
issues.label_deletion=Label Deletion
-issues.label_deletion_desc=Delete label will remove its information in all related issues. Do you want to continue?
+issues.label_deletion_desc=Delete this label will remove its information in all related issues. Do you want to continue?
issues.label_deletion_success=Label has been deleted successfully!
+pulls.compare_changes=Compare Changes
+pulls.compare_changes_desc=Compare two branches and make a pull request for changes.
+pulls.no_results=No results found.
+
+milestones.new=New Milestone
+milestones.open_tab=%d Open
+milestones.close_tab=%d Closed
+milestones.closed=Closed %s
+milestones.no_due_date=No due date
+milestones.open=Open
+milestones.close=Close
+milestones.new_subheader=Create milestones to organize your issues.
+milestones.create=Create Milestone
+milestones.title=Title
+milestones.desc=Description
+milestones.due_date=Due Date (optional)
+milestones.clear=Clear
+milestones.invalid_due_date_format=Due date format is invalid, must be 'year-mm-dd'.
+milestones.create_success=Milestone '%s' has been created successfully!
+milestones.edit=Edit Milestone
+milestones.edit_subheader=Use better description for milestones so people won't be confused.
+milestones.cancel=Cancel
+milestones.modify=Modify Milestone
+milestones.edit_success=Changes of milestone '%s' has been saved successfully!
+milestones.deletion=Milestone Deletion
+milestones.deletion_desc=Delete this milestone will remove its information in all related issues. Do you want to continue?
+milestones.deletion_success=Milestone has been deleted successfully!
+
settings=Ustawienia
settings.options=Opcje
settings.collaboration=Współpraca
settings.hooks=Webhooks
settings.githooks=Skrypty Git
-settings.deploy_keys=Klucze wdrożeniowe
settings.basic_settings=Ustawienia podstawowe
settings.danger_zone=Strefa niebezpieczeństwa
settings.site=Oficjalna Strona
@@ -445,6 +522,17 @@ settings.add_slack_hook_desc=Dodać integrację ze <a href="%s">Slackiem</a> do settings.slack_token=Token
settings.slack_domain=Domena
settings.slack_channel=Kanał
+settings.deploy_keys=Klucze wdrożeniowe
+settings.add_deploy_key=Add Deploy Key
+settings.no_deploy_keys=You haven't added any deploy key.
+settings.title=Title
+settings.deploy_key_content=Content
+settings.key_been_used=Deploy key content has been used.
+settings.key_name_used=Deploy key with same name has already existed.
+settings.add_key_success=New deploy key '%s' has been added successfully!
+settings.deploy_key_deletion=Delete Deploy Key
+settings.deploy_key_deletion_desc=Delete this deploy key will remove all related accesses for this repository. Do you want to continue?
+settings.deploy_key_deletion_success=Deploy key has been deleted successfully!
diff.browse_source=Przeglądaj źródła
diff.parent=rodzic
@@ -718,7 +806,7 @@ config.enable_cache_avatar=Włącz cache awatarów config.active_code_lives=Ważność kodów aktywacyjnych
config.reset_password_code_lives=Czas życia kodu resetowania hasła
config.webhook_config=Konfiguracja skryptów internetowych
-config.task_interval=Interwał zadań
+config.queue_length=Queue Length
config.deliver_timeout=Limit czasu zdarzenia
config.skip_tls_verify=Pomiń weryfikację protokołu TLS
config.mailer_config=Konfiguracja poczty
@@ -796,3 +884,8 @@ years=%d lat %s raw_seconds=sekund
raw_minutes=minut
+[dropzone]
+default_message=Drop files here or click to upload.
+invalid_input_type=You can't upload files of this type.
+file_too_big=File size({{filesize}} MB) exceeds maximum size({{maxFilesize}} MB).
+remove_file=Remove file
diff --git a/conf/locale/locale_pt-BR.ini b/conf/locale/locale_pt-BR.ini index 76eec67059..470faf4bbc 100755 --- a/conf/locale/locale_pt-BR.ini +++ b/conf/locale/locale_pt-BR.ini @@ -14,6 +14,9 @@ version=Versão page=Página
template=Modelo
language=Idioma
+create_new=Criar...
+user_profile_and_more=Perfil do usuário e configurações
+signed_in_as=Você é
username=Usuário
email=E-mail
@@ -32,6 +35,8 @@ manage_org=Gerenciar Organizações admin_panel=Painel do Administrador
account_settings=Configurações da Conta
settings=Configurações
+your_profile=Seu perfil
+your_settings=Suas configurações
news_feed=Feed de Notícias
pull_requests=Solicitações de Pull
@@ -178,7 +183,6 @@ repo_name_been_taken=Nome do repositório já foi tomado. org_name_been_taken=Nome da organização já foi tomado.
team_name_been_taken=Nome da equipe já foi tomado.
email_been_used=Endereço de e-mail já foi usado.
-ssh_key_been_used=Nome da chave pública foi usado.
illegal_team_name=O nome da equipe contém caracteres ilegais.
username_password_incorrect=Usuário ou senha incorretos.
enterred_invalid_repo_name=Por favor certifique-se que informou o nome do repositório corretamente.
@@ -242,7 +246,7 @@ uploaded_avatar_not_a_image=O arquivo enviado não é uma imagem. no_custom_avatar_available=Nenhum avatar personalizado disponível, não pode habilitá-lo.
update_avatar_success=Sua configuração de avatar foi atualizada com sucesso.
-change_password=Alterar a Senha
+change_password=Mudança de senha
old_password=Senha Atual
new_password=Nova Senha
password_incorrect=A senha atual não está correta.
@@ -260,17 +264,20 @@ add_email_confirmation_sent=Um novo e-mail de confirmação foi enviado para <b> add_email_success=Seu novo endereço de E-mail foi adicionado com sucesso.
manage_ssh_keys=Gerenciar Chaves SSH
-add_key=Adicionar Chave
+add_key=Adicionar chave
ssh_desc=Esta é uma lista de chaves SSH associadas com a sua conta. Remova quaisquer chaves que você não reconheça.
ssh_helper=<strong>Precisa de ajuda?</strong> Confira nosso guia para <a href="%s">gerar chaves SSH</a> ou solucionar <a href="%s">problemas comuns com SSH</a>.
add_new_key=Adicionar Chave SSH
+ssh_key_been_used=Uma chave pública com esse mesmo conteúdo já está em uso.
+ssh_key_name_used=Uma outra chave pública já existe com esse mesmo nome.
key_name=Nome da Chave
key_content=Conteúdo
-add_key_success=Nova Chave SSH foi adicionada!
+add_key_success=A nova chave pública '%s' foi adicionada com sucesso!
delete_key=Deletar
add_on=Adicionado em
last_used=Última vez usado em
no_activity=Nenhuma atividade recente
+key_state_desc=Usada a pelo menos 7 dias
manage_social=Gerenciar Contas Sociais Associadas
social_desc=Esta é uma lista de contas sociais. Remova qualquer ligação que você não reconheça.
@@ -298,7 +305,7 @@ owner=Dono repo_name=Nome do Repositório
repo_name_helper=Nomes de repositórios bons são pequenos, memorizáveis e <strong>únicos</strong>.
visibility=Visibilidade
-visiblity_helper=Este repositório é <span class="label label-red label-radius">Privado</span>
+visiblity_helper=Este é um repositório <span class="ui red text"> privado</span>
fork_repo=Fork o Repositório
fork_from=Fork de
fork_visiblity_helper=Não é possível alterar a visibilidade de um repositório bifurcado
@@ -317,9 +324,10 @@ form.name_pattern_not_allowed=Não é permitido usar o padrão '%s' para o nome need_auth=Precisa de Autorização
migrate_type=Tipo de Migração
-migrate_type_helper=Este repositório será um <span class="label label-blue label-radius">Espelho</span>
+migrate_type_helper=Este repositório será um <span class="text blue"> espelho</span>
migrate_repo=Migrar Repositório
migrate.clone_address=Endereço de Clone
+migrate.clone_address_desc=Isto pode ser uma URL de HTTP/HTTPS/GIT ou um caminho de diretório local.
migrate.invalid_local_path=Caminho local inválido, não existe ou não é um diretório.
forked_from=bifurcação de
@@ -365,22 +373,64 @@ commits.older=Mais Antigo commits.newer=Mais Novo
issues.new=Novo problema
+issues.new.labels=Etiquetas
+issues.new.no_label=Sem etiqueta
+issues.new.clear_labels=Limpar
+issues.new.milestone=Milestone
+issues.new.no_milestone=Sem marco
+issues.new.clear_milestone=Limpar
+issues.new.open_milestone=Marcos abertos
+issues.new.closed_milestone=Marcos fechados
+issues.new.assignee=Responsável
+issues.new.clear_assignee=Limpar
+issues.new.no_assignee=Não atribuída
+issues.create=Salvar
issues.new_label=Nova etiqueta
issues.new_label_placeholder=Nome de etiqueta...
+issues.create_label=Salvar
issues.open_tab=%d aberto
-issues.close_tab=%d fechado
+issues.close_tab=%d fechados
issues.filter_label=Etiqueta
issues.filter_label_no_select=Nenhuma etiqueta selecionada
issues.filter_milestone=Marco
+issues.filter_milestone_no_select=Nenhum marco selecionado
issues.filter_assignee=Atribuído
+issues.filter_assginee_no_select=Sem atribuição
issues.filter_type=Tipo
issues.filter_type.all_issues=Todos os problemas
issues.filter_type.assigned_to_you=Atribuídos a você
issues.filter_type.created_by_you=Criados por você
issues.filter_type.mentioning_you=Mencionando você
+issues.filter_sort=Ordenação
+issues.filter_sort.latest=Mais novos
+issues.filter_sort.oldest=Mais antigos
+issues.filter_sort.recentupdate=Mais recentemente atualizados
+issues.filter_sort.leastupdate=Menos recentemente atualizados
+issues.filter_sort.mostcomment=Mais comentados
+issues.filter_sort.leastcomment=Menos comentados
issues.opened_by=%[1]s foi aberto por <a href="/%[2]s">%[2]s</a>
+issues.opened_by_fake=aberto %[1]s por %[2]s
issues.previous=Página anterior
issues.next=Próxima página
+issues.open_title=aberto
+issues.closed_title=fechado
+issues.num_comments=%d comentários
+issues.commented_at=`comentado <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.no_content=Nenhum conteúdo textual.
+issues.close_issue=Fechar
+issues.close_comment_issue=Comentar e fechar
+issues.reopen_issue=Reabrir
+issues.reopen_comment_issue=Reabrir e comentar
+issues.create_comment=Comentar
+issues.closed_at=`fechado em <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.reopened_at=`reaberto em <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.poster=Imagem
+issues.admin=Admin
+issues.owner=Owner
+issues.sign_up_for_free=Cadastre-se gratuitamente
+issues.sign_in_require_desc=para participar nesta conversa. Já tem uma conta? <a href="%s">Faça login para comentar</a>
+issues.edit=Editar
+issues.save=Salvar
issues.label_title=Nome da etiqueta
issues.label_color=Cor da etiqueta
issues.label_count=%d etiquetas
@@ -392,12 +442,39 @@ issues.label_deletion=Exclusão de etiqueta issues.label_deletion_desc=Excluir uma etiqueta a retirará de todos os problemas que ela estiver marcando. Quer mesmo continuar?
issues.label_deletion_success=A etiqueta foi excluída com sucesso!
+pulls.compare_changes=Comparar mudanças
+pulls.compare_changes_desc=Comparar dois ramos e criar solicitação de pull com as mudanças.
+pulls.no_results=Nada encontrado.
+
+milestones.new=Novo marco
+milestones.open_tab=%d abertos
+milestones.close_tab=%d fechados
+milestones.closed=Fechado %s
+milestones.no_due_date=Sem prazo
+milestones.open=Reabrir
+milestones.close=Fechar
+milestones.new_subheader=Crie marcos para gerenciar seus problemas.
+milestones.create=Salvar marco
+milestones.title=Título
+milestones.desc=Descrição
+milestones.due_date=Prazo (opcional)
+milestones.clear=Limpar
+milestones.invalid_due_date_format=Formato inválido. O valor de data deve ser algo como 'aaaa-mm-dd'.
+milestones.create_success=O marco '%s' foi configurado com sucesso!
+milestones.edit=Edição de marco
+milestones.edit_subheader=Descreva bem a proposta do marco, assim as pessoas não ficarão confusas.
+milestones.cancel=Cancelar
+milestones.modify=Salvar alterações
+milestones.edit_success=O marco '%s' foi alterado com sucesso!
+milestones.deletion=Exclusão de marco
+milestones.deletion_desc=Excluir este marco removerá a informação dele em todos os problemas aos quais estiver associado. Você quer mesmo continuar?
+milestones.deletion_success=Marco excluído com sucesso!
+
settings=Configurações
settings.options=Opções
settings.collaboration=Colaboração
settings.hooks=Hooks da web
settings.githooks=Hooks do Git
-settings.deploy_keys=Chaves de Deploy
settings.basic_settings=Configurações Básicas
settings.danger_zone=Zona de Perigo
settings.site=Site Oficial
@@ -445,6 +522,17 @@ settings.add_slack_hook_desc=Adicionar <a href="%s">Slack</a> de integração pa settings.slack_token=Token
settings.slack_domain=Domínio
settings.slack_channel=Canal
+settings.deploy_keys=Chaves de Deploy
+settings.add_deploy_key=Nova chave
+settings.no_deploy_keys=Você ainda não adicionou chaves para implantação de software.
+settings.title=Título
+settings.deploy_key_content=Conteúdo da chave
+settings.key_been_used=Uma chave de implantação com esse mesmo conteúdo já está em uso.
+settings.key_name_used=Uma chave de implantação já existe com esse com mesmo nome.
+settings.add_key_success=A nova chave de implantação '%s' foi adicionada com sucesso!
+settings.deploy_key_deletion=Exclusão de chave de deploy
+settings.deploy_key_deletion_desc=Excluir esta chave de implantação removerá permissões de acesso a este repositório. Quer mesmo continuar?
+settings.deploy_key_deletion_success=Chave de implantação excluída com sucesso!
diff.browse_source=Ver Fontes
diff.parent=pai
@@ -718,7 +806,7 @@ config.enable_cache_avatar=Habilitar Cache de Avatar config.active_code_lives=Ativar Code Lives
config.reset_password_code_lives=Redefinir Senha de Code Lives
config.webhook_config=Configuração de Hook da Web
-config.task_interval=Intervalo da Tarefa
+config.queue_length=Tamanho da fila
config.deliver_timeout=Intervalo de Entrega
config.skip_tls_verify=Pular Verificar TLS
config.mailer_config=Configuração de Correio
@@ -796,3 +884,8 @@ years=%d anos %s raw_seconds=segundos
raw_minutes=minutos
+[dropzone]
+default_message=Arraste e solte arquivos aqui, ou clique para selecioná-los.
+invalid_input_type=Você não pode enviar arquivos deste tipo.
+file_too_big=O tamanho do arquivo ({{filesize}} MB) excede o limite máximo ({{maxFilesize}} MB).
+remove_file=Remover
diff --git a/conf/locale/locale_ru-RU.ini b/conf/locale/locale_ru-RU.ini index 1f62ce0e2b..263b77a6a6 100755 --- a/conf/locale/locale_ru-RU.ini +++ b/conf/locale/locale_ru-RU.ini @@ -14,6 +14,9 @@ version=Версия page=Страница
template=Шаблон
language=Язык
+create_new=Create new...
+user_profile_and_more=User profile and more
+signed_in_as=Signed in as
username=Имя пользователя
email=Эл. почта
@@ -32,6 +35,8 @@ manage_org=Управление Организацией admin_panel=Панель администратора
account_settings=Настройки аккаунта
settings=Настройки
+your_profile=Your Profile
+your_settings=Your Settings
news_feed=Лента новостей
pull_requests=Pull Requests
@@ -178,7 +183,6 @@ repo_name_been_taken=Имя репозитория уже принято. org_name_been_taken=Название организации было уже принято.
team_name_been_taken=Название команды было уже принято.
email_been_used=Адрес электронной почты уже используется.
-ssh_key_been_used=Имя открытого ключа уже используется.
illegal_team_name=Имя группы содержит недопустимые знаки.
username_password_incorrect=Имя пользователя или пароль не правильный.
enterred_invalid_repo_name=Пожалуйста, убедитесь, что введенно правильное имя хранилища.
@@ -264,13 +268,16 @@ add_key=Добавить ключ ssh_desc=Это список ключей SSH связанных с вашей учетной записью. Удаляйте любые неизвестные вам ключи.
ssh_helper=<strong>Нужна помощь?</strong> Ознакомьтесь с нашим путеводителем по <a href="%s">созданию SSH-ключей</a> или посмотрите решения <a href="%s">частых проблем, связанных с SSH</a>.
add_new_key=Добавить SSH ключ
+ssh_key_been_used=Public key content has been used.
+ssh_key_name_used=Public key with same name has already existed.
key_name=Имя ключа
key_content=Содержимое
-add_key_success=Был добавлен новый ключ SSH!
+add_key_success=New SSH key '%s' has been added successfully!
delete_key=Удалить
add_on=Добавлено
last_used=Последний раз использовался
no_activity=Еще не применялся
+key_state_desc=This key is used in last 7 days
manage_social=Управление привязанными учетными записями в соцсетях
social_desc=Это список привязанных учетных записей в соцсетях. Удаляйте любые неизвестные вам привязки.
@@ -298,7 +305,7 @@ owner=Владелец repo_name=Имя репозитория
repo_name_helper=Лучшие названия репозиториев коротки, запоминаемы и <strong>уникальны</strong>.
visibility=Видимость
-visiblity_helper=Это хранилище — <span class="label label-red label-radius">частное</span>
+visiblity_helper=This repository is <span class="ui red text">Private</span>
fork_repo=Ответвить репозиторий
fork_from=Ответвление от
fork_visiblity_helper=Ответвленному репозиторию нельзя поменять уровень видимости
@@ -317,9 +324,10 @@ form.name_pattern_not_allowed=Шаблон имени репозитория '%s need_auth=Требуется авторизация
migrate_type=Тип миграции
-migrate_type_helper=Этот репозиторий будет <span class="label label-blue label-radius">зеркалом</span>
+migrate_type_helper=This repository will be a <span class="text blue">mirror</span>
migrate_repo=Перенос репозитория
migrate.clone_address=Скопировать адрес
+migrate.clone_address_desc=This can be a HTTP/HTTPS/GIT URL or local server path.
migrate.invalid_local_path=Недопустимый локальный путь. Возможно он не существует или является не папкой.
forked_from=forked from
@@ -365,22 +373,64 @@ commits.older=Раньше commits.newer=Новее
issues.new=Новая задача
+issues.new.labels=Labels
+issues.new.no_label=No Label
+issues.new.clear_labels=Clear labels
+issues.new.milestone=Milestone
+issues.new.no_milestone=No Milestone
+issues.new.clear_milestone=Clear milestone
+issues.new.open_milestone=Open Milestones
+issues.new.closed_milestone=Closed Milestones
+issues.new.assignee=Assignee
+issues.new.clear_assignee=Clear assignee
+issues.new.no_assignee=No assignee
+issues.create=Create Issue
issues.new_label=Новая метка
issues.new_label_placeholder=Имя метки...
+issues.create_label=Create Label
issues.open_tab=%d Открыть
issues.close_tab=%d Закрыть
issues.filter_label=Метка
issues.filter_label_no_select=Нет выбранной метки
issues.filter_milestone=Этап
+issues.filter_milestone_no_select=No selected milestone
issues.filter_assignee=Назначено
+issues.filter_assginee_no_select=No selected Assignee
issues.filter_type=Тип
issues.filter_type.all_issues=Все задачи
issues.filter_type.assigned_to_you=Назначено Вам
issues.filter_type.created_by_you=Созданные вами
issues.filter_type.mentioning_you=Вы упомянуты
+issues.filter_sort=Sort
+issues.filter_sort.latest=Newest
+issues.filter_sort.oldest=Oldest
+issues.filter_sort.recentupdate=Recently updated
+issues.filter_sort.leastupdate=Least recently updated
+issues.filter_sort.mostcomment=Most commented
+issues.filter_sort.leastcomment=Least commented
issues.opened_by=opened %[1]s by <a href="/%[2]s">%[2]s</a>
+issues.opened_by_fake=opened %[1]s by %[2]s
issues.previous=Предыдущая страница
issues.next=Следующая страница
+issues.open_title=Open
+issues.closed_title=Closed
+issues.num_comments=%d comments
+issues.commented_at=`commented at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.no_content=There is no content yet.
+issues.close_issue=Close
+issues.close_comment_issue=Close and comment
+issues.reopen_issue=Reopen
+issues.reopen_comment_issue=Reopen and comment
+issues.create_comment=Comment
+issues.closed_at=`closed at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.reopened_at=`reopened at <a id="%[1]s" href="#%[1]s">%[2]s</a>`
+issues.poster=Poster
+issues.admin=Admin
+issues.owner=Owner
+issues.sign_up_for_free=Sign up for free
+issues.sign_in_require_desc=to join this conversation. Already have an account? <a href="%s">Sign in to comment</a>
+issues.edit=Edit
+issues.save=Save
issues.label_title=Имя метки
issues.label_color=Цвет метки
issues.label_count=%d меток
@@ -392,12 +442,39 @@ issues.label_deletion=Удаление метки issues.label_deletion_desc=Удаление ярлыка затронет все связанные задачи. Продолжить?
issues.label_deletion_success=Метка была удалена успешно!
+pulls.compare_changes=Compare Changes
+pulls.compare_changes_desc=Compare two branches and make a pull request for changes.
+pulls.no_results=No results found.
+
+milestones.new=New Milestone
+milestones.open_tab=%d Open
+milestones.close_tab=%d Closed
+milestones.closed=Closed %s
+milestones.no_due_date=No due date
+milestones.open=Open
+milestones.close=Close
+milestones.new_subheader=Create milestones to organize your issues.
+milestones.create=Create Milestone
+milestones.title=Title
+milestones.desc=Description
+milestones.due_date=Due Date (optional)
+milestones.clear=Clear
+milestones.invalid_due_date_format=Due date format is invalid, must be 'year-mm-dd'.
+milestones.create_success=Milestone '%s' has been created successfully!
+milestones.edit=Edit Milestone
+milestones.edit_subheader=Use better description for milestones so people won't be confused.
+milestones.cancel=Cancel
+milestones.modify=Modify Milestone
+milestones.edit_success=Changes of milestone '%s' has been saved successfully!
+milestones.deletion=Milestone Deletion
+milestones.deletion_desc=Delete this milestone will remove its information in all related issues. Do you want to continue?
+milestones.deletion_success=Milestone has been deleted successfully!
+
settings=Настройки
settings.options=Опции
settings.collaboration=Сотрудничество
settings.hooks=Автоматическое обновление
settings.githooks=Git хуки
-settings.deploy_keys=Ключи развертывания
settings.basic_settings=Основные параметры
settings.danger_zone=Опасная зона
settings.site=Официальный сайт
@@ -445,6 +522,17 @@ settings.add_slack_hook_desc=Добавить интеграцию с <a href="% settings.slack_token=Token
settings.slack_domain=Домен
settings.slack_channel=Канал
+settings.deploy_keys=Ключи развертывания
+settings.add_deploy_key=Add Deploy Key
+settings.no_deploy_keys=You haven't added any deploy key.
+settings.title=Title
+settings.deploy_key_content=Content
+settings.key_been_used=Deploy key content has been used.
+settings.key_name_used=Deploy key with same name has already existed.
+settings.add_key_success=New deploy key '%s' has been added successfully!
+settings.deploy_key_deletion=Delete Deploy Key
+settings.deploy_key_deletion_desc=Delete this deploy key will remove all related accesses for this repository. Do you want to continue?
+settings.deploy_key_deletion_success=Deploy key has been deleted successfully!
diff.browse_source=Просмотр исходного кода
diff.parent=Родитель
@@ -718,7 +806,7 @@ config.enable_cache_avatar=Кешировать аватар config.active_code_lives=Active Code Lives
config.reset_password_code_lives=Reset Password Code Lives
config.webhook_config=Настройка автоматического обновления репозиции
-config.task_interval=Интервал задания
+config.queue_length=Queue Length
config.deliver_timeout=Задержка доставки
config.skip_tls_verify=Пропустить TLS проверка
config.mailer_config=Настройки почты
@@ -796,3 +884,8 @@ years=%d years %s raw_seconds=секунд
raw_minutes=минут
+[dropzone]
+default_message=Drop files here or click to upload.
+invalid_input_type=You can't upload files of this type.
+file_too_big=File size({{filesize}} MB) exceeds maximum size({{maxFilesize}} MB).
+remove_file=Remove file
diff --git a/conf/locale/locale_zh-CN.ini b/conf/locale/locale_zh-CN.ini index e3596c3614..343526546f 100755 --- a/conf/locale/locale_zh-CN.ini +++ b/conf/locale/locale_zh-CN.ini @@ -324,9 +324,10 @@ form.name_pattern_not_allowed=仓库名称不允许 '%s' 的格式。 need_auth=需要授权验证
migrate_type=迁移类型
-migrate_type_helper=本仓库将是 <span class="label label-blue label-radius">镜像</span>
+migrate_type_helper=该仓库将是一个 <span class="text blue">镜像</span>
migrate_repo=迁移仓库
migrate.clone_address=克隆地址
+migrate.clone_address_desc=该地址可以是 HTTP/HTTPS/GIT URL 或本地服务器路径。
migrate.invalid_local_path=无效的本地路径,不存在或不是一个目录!
forked_from=派生自
diff --git a/conf/locale/locale_zh-HK.ini b/conf/locale/locale_zh-HK.ini index e58e321c87..d2ddf0f146 100755 --- a/conf/locale/locale_zh-HK.ini +++ b/conf/locale/locale_zh-HK.ini @@ -14,6 +14,9 @@ version=當前版本 page=頁面
template=模版
language=語言選項
+create_new=創建新的...
+user_profile_and_more=用戶信息及更多
+signed_in_as=已登錄用戶
username=用戶名
email=郵箱
@@ -32,6 +35,8 @@ manage_org=管理我的組織 admin_panel=管理面版
account_settings=帳戶設置
settings=帳戶設置
+your_profile=個人信息
+your_settings=用戶設置
news_feed=最新活動
pull_requests=合併請求
@@ -178,7 +183,6 @@ repo_name_been_taken=倉庫名稱已經被佔用。 org_name_been_taken=組織名稱已經被佔用。
team_name_been_taken=團隊名稱已經被佔用。
email_been_used=郵箱地址已經被使用。
-ssh_key_been_used=SSH 密鑰已經被使用。
illegal_team_name=團隊名稱包含不合法字符。
username_password_incorrect=用戶名或密碼不正確。
enterred_invalid_repo_name=請檢查您輸入的倉庫名稱是正確。
@@ -264,13 +268,16 @@ add_key=增加密鑰 ssh_desc=以下是與您帳戶所關聯的 SSH 密鑰,如果您發現有陌生的密鑰,請立即刪除它!
ssh_helper=<strong>需要幫助嗎?</strong> 請查看有關 <a href="%s"> 如何生成 SSH 密鑰</a> 的指南或 <a href="%s"> SSH 的常見問題</a> 的疑難排解。
add_new_key=增加 SSH 密鑰
+ssh_key_been_used=公共密鑰已經被使用
+ssh_key_name_used=使用相同名稱的公共密鑰已經存在!
key_name=密鑰名稱
key_content=密鑰內容
-add_key_success=新的 SSH 密鑰添加成功!
+add_key_success=新的 SSH 密鑰 '%s' 添加成功!
delete_key=刪除
add_on=增加於
last_used=上次使用在
no_activity=沒有最近活動
+key_state_desc=該密鑰在 7 天內被使用過
manage_social=管理關聯社交帳戶
social_desc=以下是與您帳戶所關聯的社交帳號,如果您發現有陌生的關聯,請立即解除綁定!
@@ -298,7 +305,7 @@ owner=擁有者 repo_name=倉庫名稱
repo_name_helper=偉大的倉庫名稱一般都較短、令人深刻並且 <strong>獨一無二</strong> 的。
visibility=可見度
-visiblity_helper=本倉庫將是 <span class="label label-red label-radius">私有的</span>
+visiblity_helper=該倉庫為 <span class="ui red text">私有的</span>
fork_repo=派生倉庫
fork_from=派生自
fork_visiblity_helper=派生倉庫無法修改可見性。
@@ -317,9 +324,10 @@ form.name_pattern_not_allowed=倉庫名稱不允許 '%s' 的格式。 need_auth=需要授權驗證
migrate_type=遷移類型
-migrate_type_helper=本倉庫將是 <span class="label label-blue label-radius">鏡像</span>
+migrate_type_helper=該倉庫將是一個 <span class="text blue">鏡像</span>
migrate_repo=遷移倉庫
migrate.clone_address=複製地址
+migrate.clone_address_desc=該地址可以是 HTTP/HTTPS/GIT URL 或本地服務器路徑。
migrate.invalid_local_path=無效的本地路徑,該路徑不存在或不是一個目錄!
forked_from=派生自
@@ -365,22 +373,64 @@ commits.older=更舊的提交 commits.newer=更新的提交
issues.new=創建問題
+issues.new.labels=標籤
+issues.new.no_label=未選擇標籤
+issues.new.clear_labels=清除已選取標籤
+issues.new.milestone=里程碑
+issues.new.no_milestone=未選擇里程碑
+issues.new.clear_milestone=清除已選取里程碑
+issues.new.open_milestone=開啟中的里程碑
+issues.new.closed_milestone=已關閉的里程碑
+issues.new.assignee=指派成員
+issues.new.clear_assignee=取消指派成員
+issues.new.no_assignee=未指派成員
+issues.create=創建問題
issues.new_label=創建標籤
issues.new_label_placeholder=標籤名稱...
+issues.create_label=創建標籤
issues.open_tab=%d 個開啓中
issues.close_tab=%d 個已關閉
issues.filter_label=標籤篩選
issues.filter_label_no_select=無篩選標籤
issues.filter_milestone=里程碑篩選
+issues.filter_milestone_no_select=無篩選里程碑
issues.filter_assignee=指派人篩選
+issues.filter_assginee_no_select=無篩選指派人
issues.filter_type=類型篩選
issues.filter_type.all_issues=所有問題
issues.filter_type.assigned_to_you=指派給您的
issues.filter_type.created_by_you=由您創建的
issues.filter_type.mentioning_you=提及您的
+issues.filter_sort=排序
+issues.filter_sort.latest=最新創建
+issues.filter_sort.oldest=最早創建
+issues.filter_sort.recentupdate=最近更新
+issues.filter_sort.leastupdate=最少更新
+issues.filter_sort.mostcomment=最多評論
+issues.filter_sort.leastcomment=最少評論
issues.opened_by=由 <a href="/%[2]s">%[2]s</a> 於%[1]s創建
+issues.opened_by_fake=由 %[2]s 於 %[1]s創建
issues.previous=上一頁
issues.next=下一頁
+issues.open_title=開啟中
+issues.closed_title=已關閉
+issues.num_comments=%d 條評論
+issues.commented_at=`於 <a id="%[1]s" href="#%[1]s">%[2]s</a> 評論`
+issues.no_content=尚未有任何內容
+issues.close_issue=關閉
+issues.close_comment_issue=關閉及評論
+issues.reopen_issue=重新開啟
+issues.reopen_comment_issue=重新開啟及評論
+issues.create_comment=評論
+issues.closed_at=`於 <a id="%[1]s" href="#%[1]s">%[2]s</a> 關閉`
+issues.reopened_at=`於 <a id="%[1]s" href="#%[1]s">%[2]s</a> 重新開啟`
+issues.poster=發佈者
+issues.admin=管理員
+issues.owner=所有者
+issues.sign_up_for_free=免費註冊
+issues.sign_in_require_desc=及加入到對話當中。如果您已經註冊,可以直接 <a href="%s">登錄及評論</a>
+issues.edit=編輯
+issues.save=保存
issues.label_title=標籤名稱
issues.label_color=標籤顏色
issues.label_count=%d 個標籤
@@ -392,12 +442,39 @@ issues.label_deletion=刪除標籤 issues.label_deletion_desc=刪除該標籤將會移除所有問題中相關的訊息。是否繼續?
issues.label_deletion_success=標籤刪除成功!
+pulls.compare_changes=對比文件變化
+pulls.compare_changes_desc=對比兩個分支間的文件變化及發起一個合併請求。
+pulls.no_results=未找到結果
+
+milestones.new=新的里程碑
+milestones.open_tab=%d 開啟中
+milestones.close_tab=%d 已關閉
+milestones.closed=於 %s關閉
+milestones.no_due_date=暫無截止日期
+milestones.open=開啟
+milestones.close=關閉
+milestones.new_subheader=創建里程碑來更好地組織你的問題
+milestones.create=創建里程碑
+milestones.title=標題
+milestones.desc=描述
+milestones.due_date=截止日期(可選)
+milestones.clear=清除
+milestones.invalid_due_date_format=截止日期的格式錯誤,必須是 'year-mm-dd' 的形式。
+milestones.create_success=里程碑 '%s' 創建成功!
+milestones.edit=編輯里程碑
+milestones.edit_subheader=使用更加清晰的描述來幫助人們更好地理解里程碑的作用。
+milestones.cancel=取消
+milestones.modify=修改里程碑
+milestones.edit_success=里程碑 '%s' 的修改內容已經生效!
+milestones.deletion=刪除里程碑
+milestones.deletion_desc=刪除該里程碑將會移除所有問題中相關信息。是否繼續?
+milestones.deletion_success=里程碑刪除成功!
+
settings=倉庫設置
settings.options=基本設置
settings.collaboration=管理協作者
settings.hooks=管理 Web 鉤子
settings.githooks=管理 Git 鉤子
-settings.deploy_keys=管理部署密鑰
settings.basic_settings=基本設置
settings.danger_zone=危險操作區
settings.site=官方網站
@@ -445,6 +522,17 @@ settings.add_slack_hook_desc=為您的倉庫增加 <a href="%s">Slack</a> 集成 settings.slack_token=令牌
settings.slack_domain=域名
settings.slack_channel=頻道
+settings.deploy_keys=管理部署密鑰
+settings.add_deploy_key=添加部署密鑰
+settings.no_deploy_keys=您還沒有添加任何部署密鑰。
+settings.title=標題
+settings.deploy_key_content=密鑰文本
+settings.key_been_used=部署密鑰已經被使用!
+settings.key_name_used=使用相同名稱的部署密鑰已經存在!
+settings.add_key_success=新的部署密鑰 '%s' 添加成功!
+settings.deploy_key_deletion=刪除部署密鑰
+settings.deploy_key_deletion_desc=刪除該部署密鑰會移除本倉庫所有相關的操作權限。是否繼續?
+settings.deploy_key_deletion_success=刪除部署密鑰成功!
diff.browse_source=瀏覽代碼
diff.parent=父節點
@@ -718,7 +806,7 @@ config.enable_cache_avatar=開啟緩存頭像 config.active_code_lives=激活用戶連結有效期
config.reset_password_code_lives=重置密碼連結有效期
config.webhook_config=Web 鉤子配置
-config.task_interval=任務周期
+config.queue_length=隊列長度
config.deliver_timeout=推送超時
config.skip_tls_verify=忽略 TLS 驗證
config.mailer_config=郵件配置
@@ -796,3 +884,8 @@ years=%d 年%s raw_seconds=秒
raw_minutes=分鐘
+[dropzone]
+default_message=拖曳文件到此處或單擊上傳
+invalid_input_type=您不能上傳該類型的文件
+file_too_big=文件大小({{filesize}} MB)超過了最大允許大小({{maxFilesize}} MB)
+remove_file=移除文件
diff --git a/config.codekit b/config.codekit index 21fac6785f..f782190358 100644 --- a/config.codekit +++ b/config.codekit @@ -86,15 +86,6 @@ "randomFootnoteNumbers": 0, "useCompatibilityMode": 0 }, - "\/public\/css\/bootstrap.min.css": { - "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/public\/css\/bootstrap.min.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, "\/public\/css\/dropzone.css": { "fileType": 16, "ignore": 0, @@ -158,15 +149,6 @@ "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0 }, - "\/public\/css\/markdown.css": { - "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/public\/css\/markdown.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, "\/public\/css\/semantic.min.css": { "fileType": 16, "ignore": 0, @@ -187,15 +169,6 @@ "outputPathIsSetByUser": 0, "processed": 0 }, - "\/public\/css\/todc-bootstrap.min.css": { - "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/public\/css\/todc-bootstrap.min.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, "\/public\/img\/404.png": { "fileType": 32768, "ignore": 0, @@ -229,61 +202,6 @@ "outputPathIsSetByUser": 0, "processed": 1 }, - "\/public\/img\/bootstrap-colorpicker\/alpha-horizontal.png": { - "fileType": 32768, - "ignore": 0, - "ignoreWasSetByUser": 0, - "initialSize": 3635, - "inputAbbreviatedPath": "\/public\/img\/bootstrap-colorpicker\/alpha-horizontal.png", - "outputAbbreviatedPath": "\/public\/img\/bootstrap-colorpicker\/alpha-horizontal.png", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "processed": 0 - }, - "\/public\/img\/bootstrap-colorpicker\/alpha.png": { - "fileType": 32768, - "ignore": 0, - "ignoreWasSetByUser": 0, - "initialSize": 3271, - "inputAbbreviatedPath": "\/public\/img\/bootstrap-colorpicker\/alpha.png", - "outputAbbreviatedPath": "\/public\/img\/bootstrap-colorpicker\/alpha.png", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "processed": 0 - }, - "\/public\/img\/bootstrap-colorpicker\/hue-horizontal.png": { - "fileType": 32768, - "ignore": 0, - "ignoreWasSetByUser": 0, - "initialSize": 2837, - "inputAbbreviatedPath": "\/public\/img\/bootstrap-colorpicker\/hue-horizontal.png", - "outputAbbreviatedPath": "\/public\/img\/bootstrap-colorpicker\/hue-horizontal.png", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "processed": 0 - }, - "\/public\/img\/bootstrap-colorpicker\/hue.png": { - "fileType": 32768, - "ignore": 0, - "ignoreWasSetByUser": 0, - "initialSize": 2972, - "inputAbbreviatedPath": "\/public\/img\/bootstrap-colorpicker\/hue.png", - "outputAbbreviatedPath": "\/public\/img\/bootstrap-colorpicker\/hue.png", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "processed": 0 - }, - "\/public\/img\/bootstrap-colorpicker\/saturation.png": { - "fileType": 32768, - "ignore": 0, - "ignoreWasSetByUser": 0, - "initialSize": 8817, - "inputAbbreviatedPath": "\/public\/img\/bootstrap-colorpicker\/saturation.png", - "outputAbbreviatedPath": "\/public\/img\/bootstrap-colorpicker\/saturation.png", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "processed": 0 - }, "\/public\/img\/checkmark.png": { "fileType": 32768, "ignore": 0, @@ -317,6 +235,26 @@ "outputPathIsSetByUser": 0, "processed": 1 }, + "\/public\/less\/_admin.less": { + "allowInsecureImports": 0, + "createSourceMap": 0, + "disableJavascript": 0, + "fileType": 1, + "ieCompatibility": 1, + "ignore": 1, + "ignoreWasSetByUser": 0, + "inputAbbreviatedPath": "\/public\/less\/_admin.less", + "outputAbbreviatedPath": "\/public\/css\/_admin.css", + "outputPathIsOutsideProject": 0, + "outputPathIsSetByUser": 0, + "outputStyle": 0, + "relativeURLS": 0, + "shouldRunAutoprefixer": 0, + "shouldRunBless": 0, + "strictImports": 0, + "strictMath": 0, + "strictUnits": 0 + }, "\/public\/less\/_base.less": { "allowInsecureImports": 0, "createSourceMap": 0, @@ -457,6 +395,26 @@ "strictMath": 0, "strictUnits": 0 }, + "\/public\/less\/_user.less": { + "allowInsecureImports": 0, + "createSourceMap": 0, + "disableJavascript": 0, + "fileType": 1, + "ieCompatibility": 1, + "ignore": 1, + "ignoreWasSetByUser": 0, + "inputAbbreviatedPath": "\/public\/less\/_user.less", + "outputAbbreviatedPath": "\/public\/css\/_user.css", + "outputPathIsOutsideProject": 0, + "outputPathIsSetByUser": 0, + "outputStyle": 0, + "relativeURLS": 0, + "shouldRunAutoprefixer": 0, + "shouldRunBless": 0, + "strictImports": 0, + "strictMath": 0, + "strictUnits": 0 + }, "\/public\/less\/gogs.less": { "allowInsecureImports": 0, "createSourceMap": 0, diff --git a/docker/README.md b/docker/README.md index 2ef372711f..d7e41628f5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,86 +1,65 @@ -Docker -====== +# Docker for Gogs -TOOLS ARE WRITTEN FOR TESTING AND TO SEE WHAT IT IS! +Visit [Docker Hub](https://hub.docker.com/r/gogs/gogs/) see all available tags. -For this to work you will need the nifty docker tool [docker-compose]. +## Usage -The most simple setup will look like this: - -```sh -./assemble_blocks.sh docker_gogs w_db option_db_mysql -docker-compose up +To keep your data out of Docker container, we do a volume(`/var/gogs` -> `/data`) here, and you can change it based on your situation. ``` +# Pull image from Docker Hub. +$ docker pull gogs/gogs -That's it. You have GoGS running in docker linked to a MySQL docker container. - -Now visit http://localhost:3000/ and give details for the admin account an you're up and running. - - -How does it work ----------------- +# Create local directory for volume. +$ mkdir -p /var/gogs -`./assemble_blocks.sh` will look in `blocks` for subdirectories. -In the subdirectories there are three relevant files: `Dockerfile`, `config` and `docker-compose`. +# Use `docker run` for the first time. +$ docker run --name=gogs -p 10022:22 -p 10080:3000 -v /var/gogs:/data gogs/gogs -`Dockerfile` will be copied to `docker/` (also means last `Dockerfile` wins). - -The `config` file contains lines which will in the gogs docker container end up in `$GOGS_PATH/custom/config/app.ini` and by this gogs will be configured. -Here you can define things like the MySQL server for your database block. - -The `docker-compose` file will just be added to `docker-compose.yml`, which is used by docker-compose to manage your containers. -This includes container linking! +# Use `docker start` if you have stopped it. +$ docker start gogs +``` -Just have a look at them and it will be clear how to write your own blocks. +Files will be store in local path `/var/gogs` in my case. -Just some things +Directory `/var/gogs` keeps Git repoistories and Gogs data: - - all files (`Dockerfile`, `docker-compose` and `config`) are optional - - the gogs block should always be the first block + /var/gogs + |-- git + | |-- gogs-repositories + |-- ssh + | |-- # ssh public/private keys for Gogs + |-- gogs + |-- conf + |-- data + |-- log + |-- templates -Currently the blocks are designed that, the blocks that start with `docker` pull in the base docker image. -Then one block starting with `w` defines, what containers should be linked to the gogs container. -For every option in the `w` block you need to add an `option` container. +## SSH Support -Example: +In order to support SSH, You need to change `SSH_PORT` in `/var/gogs/gogs/conf/app.ini`: -```sh -./assemble_blocks.sh docker_gogs w_db_cache option_db_mysql option_cache_redis ``` - - -More sophisticated Example --------------------------- - -Here is a more elaborated example - -```sh -./assemble_blocks.sh docker_gogs w_db_cache_session option_db_postgresql option_cache_redis option_session_mysql -docker-compose up +[server] +SSH_PORT = 10022 ``` -This will set up four containters and link them proberly. One for each of -docker-compose - - session (mysql) +Full documentation of settings can be found [here](http://gogs.io/docs/advanced/configuration_cheat_sheet.html). -WARNING: This will not work at the Moment! MySQL session is broken! +## Todo +Install page need support set `SSH_PORT`. -Remark ------- +## Troubleshooting -After you execute `assemble_blocks.sh` you should always trigger `docker-compose build` to inculde the the new init script `init_gogs.sh` in the docker image. +If you see the following error: -If you want to use another GoGS docker file, but keep everything else the same, you can create a block, e.g. `docker_gogs_custom`, with only a `Dockerfile` and call - -```sh -./assemble_blocks.sh docker_gogs_custom w_db option_database_mysql +``` +checkVersion()] [E] Binary and template file version does not match ``` -This will pull in the `Dockerfile` from `docker_gogs` instead of the one from `docker_gogs`. - -`Dockerfile`s for the `master` and `dev` branch are provided as `docker_gogs` and `docker_gogs_dev` +Run `rm -fr /var/gogs/gogs/templates/` should fix this it. Just remember to backup templates file if you have made modifications youself. +## Known Issues -[docker-compose]:https://docs.docker.com/compose/ +- [Use ctrl+c when clone through SSH makes Docker exit unexpectedly](https://github.com/gogits/gogs/issues/1499)
\ No newline at end of file diff --git a/docker/assemble_blocks.sh b/docker/assemble_blocks.sh deleted file mode 100755 index 3109a6a090..0000000000 --- a/docker/assemble_blocks.sh +++ /dev/null @@ -1,72 +0,0 @@ -#!/bin/bash - -blocks_dir=blocks -docker_dir=docker -template_dir=templates - -docker_file=Dockerfile - -gogs_config_file=conf.tmp -gogs_config=config -gogs_init_file=$docker_dir/init_gogs.sh - -compose_file=docker-compose.yml -compose_config=docker-compose - -gogs_init_template=$template_dir/init_gogs.sh.tpl - -if [ "$#" == 0 ]; then - blocks=`ls $blocks_dir` - if [ -z "$blocks" ]; then - echo "No Blocks available in $blocks_dir" - else - echo "Available Blocks:" - for block in $blocks; do - echo " $block" - done - fi - exit 0 -fi - -for file in $gogs_config_file $compose_file; do - if [ -e $file ]; then - echo "Deleting $file" - rm $file - fi -done - -for dir in $@; do - current_dir=$blocks_dir/$dir - if [ ! -d "$current_dir" ]; then - echo "$current_dir is not a directory" - exit 1 - fi - - if [ -e $current_dir/$docker_file ]; then - echo "Copying $current_dir/$docker_file to $docker_dir/$docker_file" - cp $current_dir/$docker_file $docker_dir/$docker_file - fi - - if [ -e $current_dir/$gogs_config ]; then - echo "Adding $current_dir/$gogs_config to $gogs_config_file" - cat $current_dir/$gogs_config >> $gogs_config_file - echo "" >> $gogs_config_file - fi - - if [ -e $current_dir/$compose_config ]; then - echo "Adding $current_dir/$compose_config to $compose_file" - cat $current_dir/$compose_config >> $compose_file - echo "" >> $compose_file - fi -done - -echo "Creating $gogs_init_file" -sed "/{{ CONFIG }}/{ -r $gogs_config_file -d -}" $gogs_init_template > $gogs_init_file - -if [ -e $gogs_config_file ]; then - echo "Removing temporary GoGS config" - rm $gogs_config_file -fi diff --git a/docker/blocks/docker_gogs/Dockerfile b/docker/blocks/docker_gogs/Dockerfile deleted file mode 100644 index 1b58fbcf92..0000000000 --- a/docker/blocks/docker_gogs/Dockerfile +++ /dev/null @@ -1,49 +0,0 @@ -FROM buildpack-deps:trusty-scm - -# This part is taken from the official docker image -------------------- - -RUN apt-get update && apt-get install -y \ - build-essential --no-install-recommends - -ENV GOLANG_VERSION 1.3 - -RUN curl -sSL https://golang.org/dl/go$GOLANG_VERSION.src.tar.gz \ - | tar -v -C /usr/src -xz - -RUN cd /usr/src/go/src && ./make.bash --no-clean 2>&1 - -ENV PATH /usr/src/go/bin:$PATH - -RUN mkdir -p /go/src /go/bin && chmod -R 777 /go -ENV GOPATH /go -ENV PATH /go/bin:$PATH -WORKDIR /go - -# ---------------------------------------------------------------------- - - -RUN useradd -m git - -ENV GOGS_PATH $GOPATH/src/github.com/gogits/gogs -ENV GOGS_CUSTOM_CONF_PATH $GOGS_PATH/custom/conf -ENV GOGS_CUSTOM_CONF $GOGS_CUSTOM_CONF_PATH/app.ini - -RUN go get -u -d github.com/gogits/gogs -# WORKDIR $GOGS_PATH -WORKDIR /go/src/github.com/gogits/gogs -RUN go build github.com/gogits/gogs -RUN chown -R git $GOGS_PATH - -ADD init_gogs.sh /tmp/ -RUN chown git /tmp/init_gogs.sh -RUN chmod +x /tmp/init_gogs.sh - -USER git -ENV HOME /home/git -ENV USER git -ENV PATH $GOGS_PATH:$PATH - -RUN git config --global user.name "GoGS" && git config --global user.email "gogitservice@gmail.com" - -ENTRYPOINT ["/tmp/init_gogs.sh"] -CMD ["gogs", "web"] diff --git a/docker/blocks/docker_gogs_dev/Dockerfile b/docker/blocks/docker_gogs_dev/Dockerfile deleted file mode 100644 index a51d165ee8..0000000000 --- a/docker/blocks/docker_gogs_dev/Dockerfile +++ /dev/null @@ -1,49 +0,0 @@ -FROM buildpack-deps:trusty-scm - -# This part is taken from the official docker image -------------------- - -RUN apt-get update && apt-get install -y \ - build-essential --no-install-recommends - -ENV GOLANG_VERSION 1.3 - -RUN curl -sSL https://golang.org/dl/go$GOLANG_VERSION.src.tar.gz \ - | tar -v -C /usr/src -xz - -RUN cd /usr/src/go/src && ./make.bash --no-clean 2>&1 - -ENV PATH /usr/src/go/bin:$PATH - -RUN mkdir -p /go/src /go/bin && chmod -R 777 /go -ENV GOPATH /go -ENV PATH /go/bin:$PATH -WORKDIR /go - -# ---------------------------------------------------------------------- - - -RUN useradd -m git - -ENV GOGS_PATH $GOPATH/src/github.com/gogits/gogs -ENV GOGS_CUSTOM_CONF_PATH $GOGS_PATH/custom/conf -ENV GOGS_CUSTOM_CONF $GOGS_CUSTOM_CONF_PATH/app.ini - -RUN git clone -b dev https://github.com/gogits/gogs.git $GOGS_PATH -# WORKDIR $GOGS_PATH -WORKDIR /go/src/github.com/gogits/gogs -RUN go get -d && go build -RUN chown -R git $GOGS_PATH - -ADD init_gogs.sh /tmp/ -RUN chown git /tmp/init_gogs.sh -RUN chmod +x /tmp/init_gogs.sh - -USER git -ENV HOME /home/git -ENV USER git -ENV PATH $GOGS_PATH:$PATH - -RUN git config --global user.name "GoGS" && git config --global user.email "gogitservice@gmail.com" - -ENTRYPOINT ["/tmp/init_gogs.sh"] -CMD ["gogs", "web"] diff --git a/docker/blocks/option_cache_memcache/config b/docker/blocks/option_cache_memcache/config deleted file mode 100644 index daca6f3ef9..0000000000 --- a/docker/blocks/option_cache_memcache/config +++ /dev/null @@ -1,3 +0,0 @@ -[cache] -DB_TYPE = memcache -HOST = HOST = ${CACHE_1_PORT_11211_TCP_ADDR}:${CACHE_1_PORT_11211_TCP_PORT} diff --git a/docker/blocks/option_cache_memcache/docker-compose b/docker/blocks/option_cache_memcache/docker-compose deleted file mode 100644 index 80d0215cc7..0000000000 --- a/docker/blocks/option_cache_memcache/docker-compose +++ /dev/null @@ -1,2 +0,0 @@ -cache: - image: sylvainlasnier/memcached:latest diff --git a/docker/blocks/option_cache_redis/config b/docker/blocks/option_cache_redis/config deleted file mode 100644 index 648f4f3802..0000000000 --- a/docker/blocks/option_cache_redis/config +++ /dev/null @@ -1,3 +0,0 @@ -[cache] -DB_TYPE = redis -HOST = ${CACHE_1_PORT_6379_TCP_ADDR}:${CACHE_1_PORT_6379_TCP_PORT} diff --git a/docker/blocks/option_cache_redis/docker-compose b/docker/blocks/option_cache_redis/docker-compose deleted file mode 100644 index 0e74bc4aef..0000000000 --- a/docker/blocks/option_cache_redis/docker-compose +++ /dev/null @@ -1,2 +0,0 @@ -cache: - image: redis:latest diff --git a/docker/blocks/option_db_mysql/config b/docker/blocks/option_db_mysql/config deleted file mode 100644 index 53f8949d9b..0000000000 --- a/docker/blocks/option_db_mysql/config +++ /dev/null @@ -1,6 +0,0 @@ -[database] -DB_TYPE = mysql -HOST = ${DB_1_PORT_3306_TCP_ADDR}:${DB_1_PORT_3306_TCP_PORT} -NAME = ${DB_1_ENV_MYSQL_DATABASE} -USER = ${DB_1_ENV_MYSQL_USER} -PASSWD = ${DB_1_ENV_MYSQL_PASSWORD} diff --git a/docker/blocks/option_db_mysql/docker-compose b/docker/blocks/option_db_mysql/docker-compose deleted file mode 100644 index a005a0593c..0000000000 --- a/docker/blocks/option_db_mysql/docker-compose +++ /dev/null @@ -1,7 +0,0 @@ -db: - image: mysql:latest - environment: - MYSQL_ROOT_PASSWORD: rootpass - MYSQL_DATABASE: gogs - MYSQL_USER: gogs - MYSQL_PASSWORD: password diff --git a/docker/blocks/option_db_postgresql/config b/docker/blocks/option_db_postgresql/config deleted file mode 100644 index e5946b06db..0000000000 --- a/docker/blocks/option_db_postgresql/config +++ /dev/null @@ -1,6 +0,0 @@ -[database] -DB_TYPE = postgres -HOST = ${DB_1_PORT_5432_TCP_ADDR}:${DB_1_PORT_5432_TCP_PORT} -NAME = ${DB_1_ENV_POSTGRESQL_DB} -USER = ${DB_1_ENV_POSTGRESQL_USER} -PASSWD = ${DB_1_ENV_POSTGRESQL_PASS} diff --git a/docker/blocks/option_db_postgresql/docker-compose b/docker/blocks/option_db_postgresql/docker-compose deleted file mode 100644 index c839e90448..0000000000 --- a/docker/blocks/option_db_postgresql/docker-compose +++ /dev/null @@ -1,6 +0,0 @@ -db: - image: wyaeld/postgres:9.3 - environment: - POSTGRESQL_DB: gogs - POSTGRESQL_USER: gogs - POSTGRESQL_PASS: password diff --git a/docker/blocks/option_session_mysql/config b/docker/blocks/option_session_mysql/config deleted file mode 100644 index b8bc2cc703..0000000000 --- a/docker/blocks/option_session_mysql/config +++ /dev/null @@ -1,3 +0,0 @@ -[session] -PROVIDER = mysql -PROVIDER_CONFIG = ${SESSION_1_ENV_MYSQL_USER}:${SESSION_1_ENV_MYSQL_PASSWORD}@SESSION_1_PORT_3306_TCP_PROTO(${SESSION_1_PORT_3306_TCP_ADDR}:${SESSION_1_PORT_3306_TCP_PORT})/${SESSION_1_ENV_MYSQL_DATABASE} diff --git a/docker/blocks/option_session_mysql/docker-compose b/docker/blocks/option_session_mysql/docker-compose deleted file mode 100644 index 0e2dbf19c9..0000000000 --- a/docker/blocks/option_session_mysql/docker-compose +++ /dev/null @@ -1,7 +0,0 @@ -session: - image: mysql:latest - environment: - MYSQL_ROOT_PASSWORD: rootpass - MYSQL_DATABASE: gogs_session - MYSQL_USER: gogs - MYSQL_PASSWORD: password diff --git a/docker/blocks/w_cache/docker-compose b/docker/blocks/w_cache/docker-compose deleted file mode 100644 index fd66c35786..0000000000 --- a/docker/blocks/w_cache/docker-compose +++ /dev/null @@ -1,6 +0,0 @@ -gogs: - build: docker - links: - - cache - ports: - - "3000:3000" diff --git a/docker/blocks/w_cache_session/docker-compose b/docker/blocks/w_cache_session/docker-compose deleted file mode 100644 index 0f90114064..0000000000 --- a/docker/blocks/w_cache_session/docker-compose +++ /dev/null @@ -1,7 +0,0 @@ -gogs: - build: docker - links: - - cache - - session - ports: - - "3000:3000" diff --git a/docker/blocks/w_db/docker-compose b/docker/blocks/w_db/docker-compose deleted file mode 100644 index a7e9c1b69a..0000000000 --- a/docker/blocks/w_db/docker-compose +++ /dev/null @@ -1,6 +0,0 @@ -gogs: - build: docker - links: - - db - ports: - - "3000:3000" diff --git a/docker/blocks/w_db_cache/docker-compose b/docker/blocks/w_db_cache/docker-compose deleted file mode 100644 index 42402e40f3..0000000000 --- a/docker/blocks/w_db_cache/docker-compose +++ /dev/null @@ -1,7 +0,0 @@ -gogs: - build: docker - links: - - db - - cache - ports: - - "3000:3000" diff --git a/docker/blocks/w_db_cache_session/docker-compose b/docker/blocks/w_db_cache_session/docker-compose deleted file mode 100644 index 42444405af..0000000000 --- a/docker/blocks/w_db_cache_session/docker-compose +++ /dev/null @@ -1,8 +0,0 @@ -gogs: - build: docker - links: - - db - - cache - - session - ports: - - "3000:3000" diff --git a/docker/blocks/w_db_session/docker-compose b/docker/blocks/w_db_session/docker-compose deleted file mode 100644 index 3703c6ba33..0000000000 --- a/docker/blocks/w_db_session/docker-compose +++ /dev/null @@ -1,7 +0,0 @@ -gogs: - build: docker - links: - - db - - session - ports: - - "3000:3000" diff --git a/docker/blocks/w_none/docker-compose b/docker/blocks/w_none/docker-compose deleted file mode 100644 index c0fed209d6..0000000000 --- a/docker/blocks/w_none/docker-compose +++ /dev/null @@ -1,4 +0,0 @@ -gogs: - build: docker - ports: - - "3000:3000" diff --git a/docker/blocks/w_session/docker-compose b/docker/blocks/w_session/docker-compose deleted file mode 100644 index 7dda0dde92..0000000000 --- a/docker/blocks/w_session/docker-compose +++ /dev/null @@ -1,6 +0,0 @@ -gogs: - build: docker - links: - - session - ports: - - "3000:3000" diff --git a/docker/docker/.gitkeep b/docker/docker/.gitkeep deleted file mode 100644 index e69de29bb2..0000000000 --- a/docker/docker/.gitkeep +++ /dev/null diff --git a/docker/start.sh b/docker/start.sh new file mode 100755 index 0000000000..47a835ad8c --- /dev/null +++ b/docker/start.sh @@ -0,0 +1,47 @@ +#!/bin/bash - +# + +if ! test -d /data/gogs +then + mkdir -p /var/run/sshd + mkdir -p /data/gogs/data /data/gogs/conf /data/gogs/log /data/git +fi + +if ! test -d /data/ssh +then + mkdir /data/ssh + ssh-keygen -q -f /data/ssh/ssh_host_key -N '' -t rsa1 + ssh-keygen -q -f /data/ssh/ssh_host_rsa_key -N '' -t rsa + ssh-keygen -q -f /data/ssh/ssh_host_dsa_key -N '' -t dsa + ssh-keygen -q -f /data/ssh/ssh_host_ecdsa_key -N '' -t ecdsa + ssh-keygen -q -f /data/ssh/ssh_host_ed25519_key -N '' -t ed25519 + chown -R root:root /data/ssh/* + chmod 600 /data/ssh/* +fi + +service ssh start + +# sync templates +test -d /data/gogs/templates || cp -ar ./templates /data/gogs/ +rsync -rtv /data/gogs/templates/ ./templates/ + +ln -sf /data/gogs/log ./log +ln -sf /data/gogs/data ./data +ln -sf /data/git /home/git + + +if ! test -d ~git/.ssh +then + mkdir ~git/.ssh + chmod 700 ~git/.ssh +fi + +if ! test -f ~git/.ssh/environment +then + echo "GOGS_CUSTOM=/data/gogs" > ~git/.ssh/environment + chown git:git ~git/.ssh/environment + chown 600 ~git/.ssh/environment +fi + +chown -R git:git /data . +exec su git -c "./gogs web" diff --git a/docker/templates/init_gogs.sh.tpl b/docker/templates/init_gogs.sh.tpl deleted file mode 100644 index ada11f95ae..0000000000 --- a/docker/templates/init_gogs.sh.tpl +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -if [ ! -d "$GOGS_CUSTOM_CONF_PATH" ]; then - mkdir -p $GOGS_CUSTOM_CONF_PATH - -echo " -{{ CONFIG }} -" >> $GOGS_CUSTOM_CONF - -fi - -exec "$@" diff --git a/etc/mysql.sql b/etc/mysql.sql deleted file mode 100644 index cacd76cf70..0000000000 --- a/etc/mysql.sql +++ /dev/null @@ -1,2 +0,0 @@ -DROP DATABASE IF EXISTS gogs; -CREATE DATABASE IF NOT EXISTS gogs CHARACTER SET utf8 COLLATE utf8_general_ci; diff --git a/etc/supervisord.conf b/etc/supervisord.conf deleted file mode 100644 index 4f4d40eaea..0000000000 --- a/etc/supervisord.conf +++ /dev/null @@ -1,26 +0,0 @@ -[unix_http_server] -file=log/supervisor.sock ; path to your socket file - -[supervisord] -logfile=log/supervisord.log ; supervisord log file -logfile_maxbytes=50MB ; maximum size of logfile before rotation -logfile_backups=10 ; number of backed up logfiles -loglevel=warn ; info, debug, warn, trace -pidfile=log/supervisord.pid ; pidfile location -nodaemon=false ; run supervisord as a daemon -minfds=1024 ; number of startup file descriptors -minprocs=200 ; number of process descriptors -user=root ; default user -childlogdir=log - -[rpcinterface:supervisor] -supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface - -[supervisorctl] -serverurl=unix://log/supervisor.sock ; use a unix:// URL for a unix socket - -[program:gogs] -command = gogs_start -autostart = true -stdout_logfile = log/supervisor-gogs-out.log -stderr_logfile = log/supervisor-gogs-err.log @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.5.0815 Beta" +const APP_VER = "0.6.5.0819 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/cron/cron.go b/models/cron/cron.go new file mode 100644 index 0000000000..cbf980c050 --- /dev/null +++ b/models/cron/cron.go @@ -0,0 +1,59 @@ +// 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 cron + +import ( + "time" + + "github.com/gogits/gogs/models" + "github.com/gogits/gogs/modules/cron" + "github.com/gogits/gogs/modules/log" + "github.com/gogits/gogs/modules/setting" +) + +var c = cron.New() + +func NewCronContext() { + var ( + entry *cron.Entry + err error + ) + if setting.Cron.UpdateMirror.Enabled { + entry, err = c.AddFunc("Update mirrors", setting.Cron.UpdateMirror.Schedule, models.MirrorUpdate) + if err != nil { + log.Fatal(4, "Cron[Update mirrors]: %v", err) + } + if setting.Cron.UpdateMirror.RunAtStart { + entry.Prev = time.Now() + go models.MirrorUpdate() + } + } + if setting.Cron.RepoHealthCheck.Enabled { + entry, err = c.AddFunc("Repository health check", setting.Cron.RepoHealthCheck.Schedule, models.GitFsck) + if err != nil { + log.Fatal(4, "Cron[Repository health check]: %v", err) + } + if setting.Cron.RepoHealthCheck.RunAtStart { + entry.Prev = time.Now() + go models.GitFsck() + } + } + if setting.Cron.CheckRepoStats.Enabled { + entry, err = c.AddFunc("Check repository statistics", setting.Cron.CheckRepoStats.Schedule, models.CheckRepoStats) + if err != nil { + log.Fatal(4, "Cron[Check repository statistics]: %v", err) + } + if setting.Cron.CheckRepoStats.RunAtStart { + entry.Prev = time.Now() + go models.CheckRepoStats() + } + } + c.Start() +} + +// ListTasks returns all running cron tasks. +func ListTasks() []*cron.Entry { + return c.Entries() +} diff --git a/models/login.go b/models/login.go index 82cea35f4c..8ac4b827ef 100644 --- a/models/login.go +++ b/models/login.go @@ -19,7 +19,6 @@ import ( "github.com/gogits/gogs/modules/auth/ldap" "github.com/gogits/gogs/modules/auth/pam" "github.com/gogits/gogs/modules/log" - "github.com/gogits/gogs/modules/uuid" ) type LoginType int @@ -258,18 +257,19 @@ func UserSignIn(uname, passwd string) (*User, error) { // Return the same LoginUserPlain semantic // FIXME: https://github.com/gogits/gogs/issues/672 func LoginUserLdapSource(u *User, name, passwd string, sourceId int64, cfg *LDAPConfig, autoRegister bool) (*User, error) { - name, fn, sn, mail, logged := cfg.Ldapsource.SearchEntry(name, passwd) + fn, sn, mail, logged := cfg.Ldapsource.SearchEntry(name, passwd) if !logged { // User not in LDAP, do nothing - return nil, ErrUserNotExist{u.Id, u.Name} + return nil, ErrUserNotExist{0, name} } + if !autoRegister { return u, nil } // Fallback. if len(mail) == 0 { - mail = uuid.NewV4().String() + "@localhost" + mail = fmt.Sprintf("%s@localhost", name) } u = &User{ diff --git a/models/publickey.go b/models/publickey.go index 70da8057ce..400486eba7 100644 --- a/models/publickey.go +++ b/models/publickey.go @@ -386,9 +386,6 @@ func ListPublicKeys(uid int64) ([]*PublicKey, error) { // rewriteAuthorizedKeys finds and deletes corresponding line in authorized_keys file. func rewriteAuthorizedKeys(key *PublicKey, p, tmpP string) error { - sshOpLocker.Lock() - defer sshOpLocker.Unlock() - fr, err := os.Open(p) if err != nil { return err @@ -444,6 +441,9 @@ func UpdatePublicKey(key *PublicKey) error { } func deletePublicKey(e *xorm.Session, key *PublicKey) error { + sshOpLocker.Lock() + defer sshOpLocker.Unlock() + has, err := e.Get(key) if err != nil { return err diff --git a/models/repo.go b/models/repo.go index 9aed7d7d33..e4122966d5 100644 --- a/models/repo.go +++ b/models/repo.go @@ -173,7 +173,7 @@ func (repo *Repository) getOwner(e Engine) (err error) { return err } -func (repo *Repository) GetOwner() (err error) { +func (repo *Repository) GetOwner() error { return repo.getOwner(x) } @@ -326,12 +326,23 @@ func IsUsableName(name string) error { type Mirror struct { ID int64 `xorm:"pk autoincr"` RepoID int64 - RepoName string // <user name>/<repo name> - Interval int // Hour. - Updated time.Time `xorm:"UPDATED"` + Repo *Repository `xorm:"-"` + Interval int // Hour. + Updated time.Time `xorm:"UPDATED"` NextUpdate time.Time } +func (m *Mirror) AfterSet(colName string, _ xorm.Cell) { + var err error + switch colName { + case "repo_id": + m.Repo, err = GetRepositoryByID(m.RepoID) + if err != nil { + log.Error(3, "GetRepositoryByID[%d]: %v", m.ID, err) + } + } +} + func getMirror(e Engine, repoId int64) (*Mirror, error) { m := &Mirror{RepoID: repoId} has, err := e.Get(m) @@ -368,7 +379,6 @@ func MirrorRepository(repoId int64, userName, repoName, repoPath, url string) er if _, err = x.InsertOne(&Mirror{ RepoID: repoId, - RepoName: strings.ToLower(userName + "/" + repoName), Interval: 24, NextUpdate: time.Now().Add(24 * time.Hour), }); err != nil { @@ -784,18 +794,6 @@ func TransferOwnership(u *User, newOwnerName string, repo *Repository) error { return fmt.Errorf("transferRepoAction: %v", err) } - // Update mirror information. - if repo.IsMirror { - mirror, err := getMirror(sess, repo.ID) - if err != nil { - return fmt.Errorf("getMirror: %v", err) - } - mirror.RepoName = newOwner.LowerName + "/" + repo.LowerName - if err = updateMirror(sess, mirror); err != nil { - return fmt.Errorf("updateMirror: %v", err) - } - } - // Change repository directory name. if err = os.Rename(RepoPath(owner.Name, repo.Name), RepoPath(newOwner.Name, repo.Name)); err != nil { return fmt.Errorf("rename directory: %v", err) @@ -1108,7 +1106,7 @@ func RewriteRepositoryUpdateHook() error { } var ( - // Prevent duplicate tasks. + // Prevent duplicate running tasks. isMirrorUpdating = false isGitFscking = false isCheckingRepos = false @@ -1122,22 +1120,32 @@ func MirrorUpdate() { isMirrorUpdating = true defer func() { isMirrorUpdating = false }() - mirrors := make([]*Mirror, 0, 10) + log.Trace("Doing: MirrorUpdate") + mirrors := make([]*Mirror, 0, 10) if err := x.Iterate(new(Mirror), func(idx int, bean interface{}) error { m := bean.(*Mirror) if m.NextUpdate.After(time.Now()) { return nil } - repoPath := filepath.Join(setting.RepoRootPath, m.RepoName+".git") + if m.Repo == nil { + log.Error(4, "Disconnected mirror repository found: %d", m.ID) + return nil + } + + repoPath, err := m.Repo.RepoPath() + if err != nil { + return fmt.Errorf("Repo.RepoPath: %v", err) + } + if _, stderr, err := process.ExecDir(10*time.Minute, repoPath, fmt.Sprintf("MirrorUpdate: %s", repoPath), "git", "remote", "update", "--prune"); err != nil { desc := fmt.Sprintf("Fail to update mirror repository(%s): %s", repoPath, stderr) log.Error(4, desc) if err = CreateRepositoryNotice(desc); err != nil { - log.Error(4, "Fail to add notice: %v", err) + log.Error(4, "CreateRepositoryNotice: %v", err) } return nil } @@ -1151,7 +1159,7 @@ func MirrorUpdate() { for i := range mirrors { if err := UpdateMirror(mirrors[i]); err != nil { - log.Error(4, "UpdateMirror", fmt.Sprintf("%s: %v", mirrors[i].RepoName, err)) + log.Error(4, "UpdateMirror[%d]: %v", mirrors[i].ID, err) } } } @@ -1164,26 +1172,28 @@ func GitFsck() { isGitFscking = true defer func() { isGitFscking = false }() - args := append([]string{"fsck"}, setting.Git.Fsck.Args...) - if err := x.Where("id > 0").Iterate(new(Repository), + log.Trace("Doing: GitFsck") + + args := append([]string{"fsck"}, setting.Cron.RepoHealthCheck.Args...) + if err := x.Where("id>0").Iterate(new(Repository), func(idx int, bean interface{}) error { repo := bean.(*Repository) - if err := repo.GetOwner(); err != nil { - return err + repoPath, err := repo.RepoPath() + if err != nil { + return fmt.Errorf("RepoPath: %v", err) } - repoPath := RepoPath(repo.Owner.Name, repo.Name) - _, _, err := process.ExecDir(-1, repoPath, "Repository health check", "git", args...) + _, _, err = process.ExecDir(-1, repoPath, "Repository health check", "git", args...) if err != nil { desc := fmt.Sprintf("Fail to health check repository(%s)", repoPath) log.Warn(desc) if err = CreateRepositoryNotice(desc); err != nil { - log.Error(4, "Fail to add notice: %v", err) + log.Error(4, "CreateRepositoryNotice: %v", err) } } return nil }); err != nil { - log.Error(4, "repo.Fsck: %v", err) + log.Error(4, "GitFsck: %v", err) } } @@ -1210,33 +1220,55 @@ func CheckRepoStats() { isCheckingRepos = true defer func() { isCheckingRepos = false }() - // Check count watchers - results_watch, err := x.Query("SELECT r.id FROM `repository` r WHERE r.num_watches!=(SELECT count(*) FROM `watch` WHERE repo_id=r.id)") + log.Trace("Doing: CheckRepoStats") + + // ***** START: Watch ***** + results, err := x.Query("SELECT repo.id FROM `repository` repo WHERE repo.num_watches!=(SELECT COUNT(*) FROM `watch` WHERE repo_id=repo.id)") + if err != nil { + log.Error(4, "Select repository check 'watch': %v", err) + return + } + for _, watch := range results { + repoID := com.StrTo(watch["id"]).MustInt64() + log.Trace("Updating repository count 'watch': %d", repoID) + _, err = x.Exec("UPDATE `repository` SET num_watches=(SELECT COUNT(*) FROM `watch` WHERE repo_id=?) WHERE id=?", repoID, repoID) + if err != nil { + log.Error(4, "Update repository check 'watch'[%d]: %v", repoID, err) + } + } + // ***** END: Watch ***** + + // ***** START: Star ***** + results, err = x.Query("SELECT repo.id FROM `repository` repo WHERE repo.num_stars!=(SELECT COUNT(*) FROM `star` WHERE repo_id=repo.id)") if err != nil { - log.Error(4, "select repository check 'watch': %v", err) + log.Error(4, "Select repository check 'star': %v", err) + return } - for _, repo_id := range results_watch { - log.Info("updating repository count 'watch'") - repoID := com.StrTo(repo_id["id"]).MustInt64() - _, err := x.Exec("UPDATE `repository` SET num_watches=(SELECT count(*) FROM `watch` WHERE repo_id=?) WHERE id=?", repoID, repoID) + for _, star := range results { + repoID := com.StrTo(star["id"]).MustInt64() + log.Trace("Updating repository count 'star': %d", repoID) + _, err = x.Exec("UPDATE `repository` SET num_stars=(SELECT COUNT(*) FROM `star` WHERE repo_id=?) WHERE id=?", repoID, repoID) if err != nil { - log.Error(4, "update repository check 'watch', repo %v: %v", repo_id, err) + log.Error(4, "Update repository check 'star'[%d]: %v", repoID, err) } } + // ***** END: Star ***** - // Check count stars - results_star, err := x.Query("SELECT s.id FROM `repository` s WHERE s.num_stars!=(SELECT count(*) FROM `star` WHERE repo_id=s.id)") + // ***** START: Label ***** + results, err = x.Query("SELECT label.id FROM `label` WHERE label.num_issues!=(SELECT COUNT(*) FROM `issue_label` WHERE label_id=label.id)") if err != nil { - log.Error(4, "select repository check 'star': %v", err) + log.Error(4, "Select label check 'num_issues': %v", err) + return } - for _, repo_id := range results_star { - log.Info("updating repository count 'star'") - repoID := com.StrTo(repo_id["id"]).MustInt64() - _, err := x.Exec("UPDATE `repository` SET .num_stars=(SELECT count(*) FROM `star` WHERE repo_id=?) WHERE id=?", repoID, repoID) + for _, label := range results { + labelID := com.StrTo(label["id"]).MustInt64() + log.Trace("Updating label count 'num_issues': %d", labelID) + _, err = x.Exec("UPDATE `label` SET num_issues=(SELECT COUNT(*) FROM `issue_label` WHERE label_id=?) WHERE id=?", labelID, labelID) if err != nil { - log.Error(4, "update repository check 'star', repo %v: %v", repo_id, err) + log.Error(4, "Update label check 'num_issues'[%d]: %v", labelID, err) } } + // ***** END: Label ***** } // _________ .__ .__ ___. __ .__ @@ -1435,9 +1467,9 @@ func NotifyWatchers(act *Action) error { // \/ \/ type Star struct { - Id int64 - Uid int64 `xorm:"UNIQUE(s)"` - RepoId int64 `xorm:"UNIQUE(s)"` + ID int64 `xorm:"pk autoincr"` + UID int64 `xorm:"uid UNIQUE(s)"` + RepoID int64 `xorm:"UNIQUE(s)"` } // Star or unstar repository. @@ -1446,7 +1478,7 @@ func StarRepo(uid, repoId int64, star bool) (err error) { if IsStaring(uid, repoId) { return nil } - if _, err = x.Insert(&Star{Uid: uid, RepoId: repoId}); err != nil { + if _, err = x.Insert(&Star{UID: uid, RepoID: repoId}); err != nil { return err } else if _, err = x.Exec("UPDATE `repository` SET num_stars = num_stars + 1 WHERE id = ?", repoId); err != nil { return err diff --git a/models/token.go b/models/token.go index 909d05e072..6c4328e53e 100644 --- a/models/token.go +++ b/models/token.go @@ -18,8 +18,8 @@ var ( // AccessToken represents a personal access token. type AccessToken struct { - Id int64 - Uid int64 + ID int64 `xorm:"pk autoincr"` + UID int64 `xorm:"uid INDEX"` Name string Sha1 string `xorm:"UNIQUE VARCHAR(40)"` Created time.Time `xorm:"CREATED"` @@ -35,8 +35,8 @@ func NewAccessToken(t *AccessToken) error { return err } -// GetAccessTokenBySha returns access token by given sha1. -func GetAccessTokenBySha(sha string) (*AccessToken, error) { +// GetAccessTokenBySHA returns access token by given sha1. +func GetAccessTokenBySHA(sha string) (*AccessToken, error) { t := &AccessToken{Sha1: sha} has, err := x.Get(t) if err != nil { @@ -62,8 +62,14 @@ func ListAccessTokens(uid int64) ([]*AccessToken, error) { return tokens, nil } -// DeleteAccessTokenById deletes access token by given ID. -func DeleteAccessTokenById(id int64) error { +// UpdateAccessToekn updates information of access token. +func UpdateAccessToekn(t *AccessToken) error { + _, err := x.Id(t.ID).AllCols().Update(t) + return err +} + +// DeleteAccessTokenByID deletes access token by given ID. +func DeleteAccessTokenByID(id int64) error { _, err := x.Id(id).Delete(new(AccessToken)) return err } diff --git a/models/user.go b/models/user.go index ca49a5b8f6..bc0a0461ca 100644 --- a/models/user.go +++ b/models/user.go @@ -373,17 +373,9 @@ func CreateUser(u *User) (err error) { } else if err = os.MkdirAll(UserPath(u.Name), os.ModePerm); err != nil { sess.Rollback() return err - } else if err = sess.Commit(); err != nil { - return err } - // Auto-set admin for the first user. - if CountUsers() == 1 { - u.IsAdmin = true - u.IsActive = true - _, err = x.Id(u.Id).AllCols().Update(u) - } - return err + return sess.Commit() } func countUsers(e Engine) int64 { @@ -515,8 +507,12 @@ func DeleteBeans(e Engine, beans ...interface{}) (err error) { } // FIXME: need some kind of mechanism to record failure. HINT: system notice -// DeleteUser completely and permanently deletes everything of user. +// DeleteUser completely and permanently deletes everything of a user, +// but issues/comments/pulls will be kept and shown as someone has been deleted. func DeleteUser(u *User) error { + // Note: A user owns any repository or belongs to any organization + // cannot perform delete operation. + // Check ownership of repository. count, err := GetRepositoryCount(u) if err != nil { @@ -533,80 +529,116 @@ func DeleteUser(u *User) error { return ErrUserHasOrgs{UID: u.Id} } - // Get watches before session. + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + // ***** START: Watch ***** watches := make([]*Watch, 0, 10) - if err = x.Where("user_id=?", u.Id).Find(&watches); err != nil { + if err = x.Find(&watches, &Watch{UserID: u.Id}); err != nil { return fmt.Errorf("get all watches: %v", err) } - repoIDs := make([]int64, 0, len(watches)) for i := range watches { - repoIDs = append(repoIDs, watches[i].RepoID) + if _, err = sess.Exec("UPDATE `repository` SET num_watches=num_watches-1 WHERE id=?", watches[i].RepoID); err != nil { + return fmt.Errorf("decrease repository watch number[%d]: %v", watches[i].RepoID, err) + } } + // ***** END: Watch ***** - // FIXME: check issues, other repos' commits + // ***** START: Star ***** + stars := make([]*Star, 0, 10) + if err = x.Find(&stars, &Star{UID: u.Id}); err != nil { + return fmt.Errorf("get all stars: %v", err) + } + for i := range stars { + if _, err = sess.Exec("UPDATE `repository` SET num_stars=num_stars-1 WHERE id=?", stars[i].RepoID); err != nil { + return fmt.Errorf("decrease repository star number[%d]: %v", stars[i].RepoID, err) + } + } + // ***** END: Star ***** - sess := x.NewSession() - defer sessionRelease(sess) - if err = sess.Begin(); err != nil { - return err + // ***** START: Follow ***** + followers := make([]*Follow, 0, 10) + if err = x.Find(&followers, &Follow{UserID: u.Id}); err != nil { + return fmt.Errorf("get all followers: %v", err) + } + for i := range followers { + if _, err = sess.Exec("UPDATE `user` SET num_followers=num_followers-1 WHERE id=?", followers[i].UserID); err != nil { + return fmt.Errorf("decrease user follower number[%d]: %v", followers[i].UserID, err) + } } + // ***** END: Follow ***** if err = DeleteBeans(sess, - &Follow{FollowID: u.Id}, &Oauth2{Uid: u.Id}, - &Action{UserID: u.Id}, - &Access{UserID: u.Id}, + &AccessToken{UID: u.Id}, &Collaboration{UserID: u.Id}, - &EmailAddress{Uid: u.Id}, + &Access{UserID: u.Id}, &Watch{UserID: u.Id}, + &Star{UID: u.Id}, + &Follow{FollowID: u.Id}, + &Action{UserID: u.Id}, &IssueUser{UID: u.Id}, + &EmailAddress{Uid: u.Id}, ); err != nil { - return err + return fmt.Errorf("DeleteBeans: %v", err) } - // Decrease all watch numbers. - for i := range repoIDs { - if _, err = sess.Exec("UPDATE `repository` SET num_watches=num_watches-1 WHERE id=?", repoIDs[i]); err != nil { - return err - } - } - - // Delete all SSH keys. + // ***** START: PublicKey ***** keys := make([]*PublicKey, 0, 10) if err = sess.Find(&keys, &PublicKey{OwnerID: u.Id}); err != nil { - return err + return fmt.Errorf("get all public keys: %v", err) } for _, key := range keys { if err = deletePublicKey(sess, key); err != nil { - return err + return fmt.Errorf("deletePublicKey: %v", err) } } + // ***** END: PublicKey ***** // Clear assignee. if _, err = sess.Exec("UPDATE `issue` SET assignee_id=0 WHERE assignee_id=?", u.Id); err != nil { - return err + return fmt.Errorf("clear assignee: %v", err) } if _, err = sess.Delete(u); err != nil { - return err + return fmt.Errorf("Delete: %v", err) } - // Delete user data. - if err = os.RemoveAll(UserPath(u.Name)); err != nil { - return err + if err = sess.Commit(); err != nil { + return fmt.Errorf("Commit: %v", err) } - // Delete avatar. + + // FIXME: system notice + // Note: There are something just cannot be roll back, + // so just keep error logs of those operations. + + RewriteAllPublicKeys() + os.RemoveAll(UserPath(u.Name)) os.Remove(u.CustomAvatarPath()) - return sess.Commit() + return nil } // DeleteInactivateUsers deletes all inactivate users and email addresses. -func DeleteInactivateUsers() error { - _, err := x.Where("is_active=?", false).Delete(new(User)) - if err == nil { - _, err = x.Where("is_activated=?", false).Delete(new(EmailAddress)) +func DeleteInactivateUsers() (err error) { + users := make([]*User, 0, 10) + if err = x.Where("is_active=?", false).Find(&users); err != nil { + return fmt.Errorf("get all inactive users: %v", err) + } + for _, u := range users { + if err = DeleteUser(u); err != nil { + // Ignore users that were set inactive by admin. + if IsErrUserOwnRepos(err) || IsErrUserHasOrgs(err) { + continue + } + return err + } } + + _, err = x.Where("is_activated=?", false).Delete(new(EmailAddress)) return err } @@ -895,9 +927,9 @@ func SearchUserByName(opt SearchOption) (us []*User, err error) { // Follow is connection request for receiving user notification. type Follow struct { - Id int64 - UserID int64 `xorm:"unique(follow)"` - FollowID int64 `xorm:"unique(follow)"` + ID int64 `xorm:"pk autoincr"` + UserID int64 `xorm:"UNIQUE(follow)"` + FollowID int64 `xorm:"UNIQUE(follow)"` } // FollowUser marks someone be another's follower. diff --git a/modules/auth/auth.go b/modules/auth/auth.go index 92bcd72080..825bbd3c9c 100644 --- a/modules/auth/auth.go +++ b/modules/auth/auth.go @@ -8,6 +8,7 @@ import ( "net/http" "reflect" "strings" + "time" "github.com/Unknwon/com" "github.com/Unknwon/macaron" @@ -37,14 +38,18 @@ func SignedInId(req *http.Request, sess session.Store) int64 { if len(auHead) > 0 { auths := strings.Fields(auHead) if len(auths) == 2 && auths[0] == "token" { - t, err := models.GetAccessTokenBySha(auths[1]) + t, err := models.GetAccessTokenBySHA(auths[1]) if err != nil { if err != models.ErrAccessTokenNotExist { - log.Error(4, "GetAccessTokenBySha: %v", err) + log.Error(4, "GetAccessTokenBySHA: %v", err) } return 0 } - return t.Uid + t.Updated = time.Now() + if err = models.UpdateAccessToekn(t); err != nil { + log.Error(4, "UpdateAccessToekn: %v", err) + } + return t.UID } } } diff --git a/modules/auth/auth_form.go b/modules/auth/auth_form.go index 1102dc3492..94753b3edd 100644 --- a/modules/auth/auth_form.go +++ b/modules/auth/auth_form.go @@ -13,17 +13,16 @@ type AuthenticationForm struct { ID int64 `form:"id"` Type int Name string `binding:"Required;MaxSize(50)"` - Domain string Host string Port int - UseSSL bool `form:"usessl"` - BaseDN string `form:"base_dn"` - AttributeUsername string + UseSSL bool `form:"use_ssl"` + BindDN string `form:"bind_dn"` + BindPassword string + UserBase string AttributeName string AttributeSurname string AttributeMail string Filter string - MsAdSA string `form:"ms_ad_sa"` IsActived bool SMTPAuth string `form:"smtp_auth"` SMTPHost string `form:"smtp_host"` diff --git a/modules/auth/ldap/README.md b/modules/auth/ldap/README.md index 531ba85361..9a2a6aa1fa 100644 --- a/modules/auth/ldap/README.md +++ b/modules/auth/ldap/README.md @@ -1,43 +1,64 @@ -LDAP authentication -=================== +Gogs LDAP Authentication Module +=============================== -## Goal +## About -Authenticat user against LDAP directories +This authentication module attempts to authorize and authenticate a user +against an LDAP server. Like most LDAP authentication systems, this module does +this in two steps. First, it queries the LDAP server using a Bind DN and +searches for the user that is attempting to sign in. If the user is found, the +module attempts to bind to the server using the user's supplied credentials. If +this succeeds, the user has been authenticated, and his account information is +retrieved and passed to the Gogs login infrastructure. -It will bind with the user's login/pasword and query attributs ("mail" for instance) in a pool of directory servers +## Usage -The first OK wins. +To use this module, add an LDAP authentication source via the Authentications +section in the admin panel. The fields should be set as follows: -If there's connection error, the server will be disabled and won't be checked again +* Authorization Name **(required)** + * A name to assign to the new method of authorization. -## Usage +* Host **(required)** + * The address where the LDAP server can be reached. + * Example: mydomain.com + +* Port **(required)** + * The port to use when connecting to the server. + * Example: 636 -In the [security] section, set -> LDAP_AUTH = true +* Enable TLS Encryption (optional) + * Whether to use TLS when connecting to the LDAP server. -then for each LDAP source, set +* Bind DN (optional) + * The DN to bind to the LDAP server with when searching for the user. + This may be left blank to perform an anonymous search. + * Example: cn=Search,dc=mydomain,dc=com -> [LdapSource-someuniquename] -> name=canonicalName -> host=hostname-or-ip -> port=3268 # or regular LDAP port -> # the following settings depend highly how you've configured your AD -> basedn=dc=ACME,dc=COM -> MSADSAFORMAT=%s@ACME.COM -> filter=(&(objectClass=user)(sAMAccountName=%s)) +* Bind Password (optional) + * The password for the Bind DN specified above, if any. -### Limitation +* User Search Base **(required)** + * The LDAP base at which user accounts will be searched for. + * Example: ou=Users,dc=mydomain,dc=com -Only tested on an MS 2008R2 DC, using global catalog (TCP/3268) +* User Filter **(required)** + * An LDAP filter declaring how to find the user record that is attempting + to authenticate. The '%s' matching parameter will be substituted with + the user's username. + * Example: (&(objectClass=posixAccount)(uid=%s)) -This MSAD is a mess. +* First name attribute (optional) + * The attribute of the user's LDAP record containing the user's first + name. This will be used to populate their account information. + * Example: givenName -The way how one checks the directory (CN, DN etc...) may be highly depending local custom configuration +* Surname name attribute (optional) + * The attribute of the user's LDAP record containing the user's surname + This will be used to populate their account information. + * Example: sn -### Todo -* Define a timeout per server -* Check servers marked as "Disabled" when they'll come back online -* Find a more flexible way to define filter/MSADSAFORMAT/Attributes etc... maybe text/template ? -* Check OpenLDAP server -* SSL support ?
\ No newline at end of file +* E-mail attribute **(required)** + * The attribute of the user's LDAP record containing the user's email + address. This will be used to populate their account information. + * Example: mail diff --git a/modules/auth/ldap/ldap.go b/modules/auth/ldap/ldap.go index c78e241d37..82d66fec37 100644 --- a/modules/auth/ldap/ldap.go +++ b/modules/auth/ldap/ldap.go @@ -1,8 +1,8 @@ -// Copyright github.com/juju2013. All rights reserved. +// 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 ldap provide functions & structure to query a LDAP ldap directory +// Package ldap provide functions & structure to query a LDAP ldap directory // For now, it's mainly tested again an MS Active Directory service, see README.md for more information package ldap @@ -15,86 +15,115 @@ import ( // Basic LDAP authentication service type Ldapsource struct { - Name string // canonical name (ie. corporate.ad) - Host string // LDAP host - Port int // port number - UseSSL bool // Use SSL - BaseDN string // Base DN - AttributeUsername string // Username attribute - AttributeName string // First name attribute - AttributeSurname string // Surname attribute - AttributeMail string // E-mail attribute - Filter string // Query filter to validate entry - MsAdSAFormat string // in the case of MS AD Simple Authen, the format to use (see: http://msdn.microsoft.com/en-us/library/cc223499.aspx) - Enabled bool // if this source is disabled + Name string // canonical name (ie. corporate.ad) + Host string // LDAP host + Port int // port number + UseSSL bool // Use SSL + BindDN string // DN to bind with + BindPassword string // Bind DN password + UserBase string // Base search path for users + AttributeName string // First name attribute + AttributeSurname string // Surname attribute + AttributeMail string // E-mail attribute + Filter string // Query filter to validate entry + Enabled bool // if this source is disabled } -//Global LDAP directory pool -var ( - Authensource []Ldapsource -) - -// Add a new source (LDAP directory) to the global pool -func AddSource(name string, host string, port int, usessl bool, basedn string, attribcn string, attribname string, attribsn string, attribmail string, filter string, msadsaformat string) { - ldaphost := Ldapsource{name, host, port, usessl, basedn, attribcn, attribname, attribsn, attribmail, filter, msadsaformat, true} - Authensource = append(Authensource, ldaphost) -} +func (ls Ldapsource) FindUserDN(name string) (string, bool) { + l, err := ldapDial(ls) + if err != nil { + log.Error(4, "LDAP Connect error, %s:%v", ls.Host, err) + ls.Enabled = false + return "", false + } + defer l.Close() -//LoginUser : try to login an user to LDAP sources, return requested (attribute,true) if ok, ("",false) other wise -//First match wins -//Returns first attribute if exists -func LoginUser(name, passwd string) (cn, fn, sn, mail string, r bool) { - r = false - for _, ls := range Authensource { - cn, fn, sn, mail, r = ls.SearchEntry(name, passwd) - if r { - return + log.Trace("Search for LDAP user: %s", name) + if ls.BindDN != "" && ls.BindPassword != "" { + err = l.Bind(ls.BindDN, ls.BindPassword) + if err != nil { + log.Debug("Failed to bind as BindDN[%s]: %v", ls.BindDN, err) + return "", false } + log.Trace("Bound as BindDN %s", ls.BindDN) + } else { + log.Trace("Proceeding with anonymous LDAP search.") + } + + // A search for the user. + userFilter := fmt.Sprintf(ls.Filter, name) + log.Trace("Searching using filter %s", userFilter) + search := ldap.NewSearchRequest( + ls.UserBase, ldap.ScopeWholeSubtree, ldap.NeverDerefAliases, 0, 0, + false, userFilter, []string{}, nil) + + // Ensure we found a user + sr, err := l.Search(search) + if err != nil || len(sr.Entries) < 1 { + log.Debug("Failed search using filter[%s]: %v", userFilter, err) + return "", false + } else if len(sr.Entries) > 1 { + log.Debug("Filter '%s' returned more than one user.", userFilter) + return "", false } - return + + userDN := sr.Entries[0].DN + if userDN == "" { + log.Error(4, "LDAP search was succesful, but found no DN!") + return "", false + } + + return userDN, true } -// searchEntry : search an LDAP source if an entry (name, passwd) is valide and in the specific filter -func (ls Ldapsource) SearchEntry(name, passwd string) (string, string, string, string, bool) { +// searchEntry : search an LDAP source if an entry (name, passwd) is valid and in the specific filter +func (ls Ldapsource) SearchEntry(name, passwd string) (string, string, string, bool) { + userDN, found := ls.FindUserDN(name) + if !found { + return "", "", "", false + } + l, err := ldapDial(ls) if err != nil { log.Error(4, "LDAP Connect error, %s:%v", ls.Host, err) ls.Enabled = false - return "", "", "", "", false + return "", "", "", false } + defer l.Close() - nx := fmt.Sprintf(ls.MsAdSAFormat, name) - err = l.Bind(nx, passwd) + log.Trace("Binding with userDN: %s", userDN) + err = l.Bind(userDN, passwd) if err != nil { - log.Debug("LDAP Authan failed for %s, reason: %s", nx, err.Error()) - return "", "", "", "", false + log.Debug("LDAP auth. failed for %s, reason: %v", userDN, err) + return "", "", "", false } + log.Trace("Bound successfully with userDN: %s", userDN) + userFilter := fmt.Sprintf(ls.Filter, name) search := ldap.NewSearchRequest( - ls.BaseDN, - ldap.ScopeWholeSubtree, ldap.NeverDerefAliases, 0, 0, false, - fmt.Sprintf(ls.Filter, name), - []string{ls.AttributeUsername, ls.AttributeName, ls.AttributeSurname, ls.AttributeMail}, + userDN, ldap.ScopeWholeSubtree, ldap.NeverDerefAliases, 0, 0, false, userFilter, + []string{ls.AttributeName, ls.AttributeSurname, ls.AttributeMail}, nil) + sr, err := l.Search(search) if err != nil { - log.Debug("LDAP Authen OK but not in filter %s", name) - return "", "", "", "", false - } - log.Debug("LDAP Authen OK: %s", name) - if len(sr.Entries) > 0 { - cn := sr.Entries[0].GetAttributeValue(ls.AttributeUsername) - name := sr.Entries[0].GetAttributeValue(ls.AttributeName) - sn := sr.Entries[0].GetAttributeValue(ls.AttributeSurname) - mail := sr.Entries[0].GetAttributeValue(ls.AttributeMail) - return cn, name, sn, mail, true + log.Error(4, "LDAP Search failed unexpectedly! (%v)", err) + return "", "", "", false + } else if len(sr.Entries) < 1 { + log.Error(4, "LDAP Search failed unexpectedly! (0 entries)") + return "", "", "", false } - return "", "", "", "", true + + name_attr := sr.Entries[0].GetAttributeValue(ls.AttributeName) + sn_attr := sr.Entries[0].GetAttributeValue(ls.AttributeSurname) + mail_attr := sr.Entries[0].GetAttributeValue(ls.AttributeMail) + return name_attr, sn_attr, mail_attr, true } func ldapDial(ls Ldapsource) (*ldap.Conn, error) { if ls.UseSSL { + log.Debug("Using TLS for LDAP") return ldap.DialTLS("tcp", fmt.Sprintf("%s:%d", ls.Host, ls.Port), nil) } else { return ldap.Dial("tcp", fmt.Sprintf("%s:%d", ls.Host, ls.Port)) diff --git a/modules/auth/ldap/ldap_test.go b/modules/auth/ldap/ldap_test.go deleted file mode 100644 index a842eebf9b..0000000000 --- a/modules/auth/ldap/ldap_test.go +++ /dev/null @@ -1,29 +0,0 @@ -package ldap - -// import ( -// "fmt" -// "testing" -// ) - -// var ldapServer = "ldap.itd.umich.edu" -// var ldapPort = 389 -// var baseDN = "dc=umich,dc=edu" -// var filter = []string{ -// "(cn=cis-fac)", -// "(&(objectclass=rfc822mailgroup)(cn=*Computer*))", -// "(&(objectclass=rfc822mailgroup)(cn=*Mathematics*))"} -// var attributes = []string{ -// "cn", -// "description"} -// var msadsaformat = "" - -// func TestLDAP(t *testing.T) { -// AddSource("test", ldapServer, ldapPort, baseDN, attributes, filter, msadsaformat) -// user, err := LoginUserLdap("xiaolunwen", "") -// if err != nil { -// t.Error(err) -// return -// } - -// fmt.Println(user) -// } diff --git a/modules/auth/user_form.go b/modules/auth/user_form.go index 0d6987ad82..709271a929 100644 --- a/modules/auth/user_form.go +++ b/modules/auth/user_form.go @@ -39,7 +39,7 @@ type InstallForm struct { RequireSignInView bool AdminName string `binding:"OmitEmpty;AlphaDashDot;MaxSize(30)" locale:"install.admin_name"` - AdminPasswd string `binding:"OmitEmpty;MinSize(6);MaxSize(255)" locale:"install.admin_password"` + AdminPasswd string `binding:"OmitEmpty;MaxSize(255)" locale:"install.admin_password"` AdminConfirmPasswd string AdminEmail string `binding:"OmitEmpty;Email;MaxSize(50)" locale:"install.admin_email"` } @@ -58,7 +58,7 @@ func (f *InstallForm) Validate(ctx *macaron.Context, errs binding.Errors) bindin type RegisterForm struct { UserName string `form:"uname" binding:"Required;AlphaDashDot;MaxSize(35)"` Email string `form:"email" binding:"Required;Email;MaxSize(50)"` - Password string `form:"password" binding:"Required;MinSize(6);MaxSize(255)"` + Password string `form:"password" binding:"Required;MaxSize(255)"` Retype string `form:"retype"` LoginType string `form:"logintype"` LoginName string `form:"loginname"` @@ -70,7 +70,7 @@ func (f *RegisterForm) Validate(ctx *macaron.Context, errs binding.Errors) bindi type SignInForm struct { UserName string `form:"uname" binding:"Required;MaxSize(35)"` - Password string `form:"password" binding:"Required;MinSize(6);MaxSize(255)"` + Password string `form:"password" binding:"Required;MaxSize(255)"` Remember bool `form:"remember"` } @@ -117,7 +117,7 @@ func (f *AddEmailForm) Validate(ctx *macaron.Context, errs binding.Errors) bindi type ChangePasswordForm struct { OldPassword string `form:"old_password" binding:"Required;MinSize(1);MaxSize(255)"` - Password string `form:"password" binding:"Required;MinSize(6);MaxSize(255)"` + Password string `form:"password" binding:"Required;MaxSize(255)"` Retype string `form:"retype"` } @@ -135,7 +135,7 @@ func (f *AddSSHKeyForm) Validate(ctx *macaron.Context, errs binding.Errors) bind } type NewAccessTokenForm struct { - Name string `form:"name" binding:"Required"` + Name string `binding:"Required"` } func (f *NewAccessTokenForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { diff --git a/modules/base/markdown.go b/modules/base/markdown.go index d06e1338e7..03f1287c1d 100644 --- a/modules/base/markdown.go +++ b/modules/base/markdown.go @@ -198,7 +198,6 @@ func RenderRawMarkdown(body []byte, urlPrefix string) []byte { extensions |= blackfriday.EXTENSION_FENCED_CODE extensions |= blackfriday.EXTENSION_AUTOLINK extensions |= blackfriday.EXTENSION_STRIKETHROUGH - extensions |= blackfriday.EXTENSION_HARD_LINE_BREAK extensions |= blackfriday.EXTENSION_SPACE_HEADERS extensions |= blackfriday.EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 22f5f0a461..c2f4276a7f 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -112,7 +112,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x5a\x4b\x8f\xe3\x56\x76\xde\xf3\x57\x5c\x97\xe3\xb8\x3b\x90\x54\x2f\xf7\xc3\x65\x57\x62\x95\x44\xa9\x38\xad\x97\x49\xa9\xcb\xed\x46\x81\xc5\x22\xaf\x24\x76\x51\xa4\x9a\x97\xac\x6a\x19\x59\x8c\x91\x45\x80\x2c\x93\x41\xb2\x09\x82\x64\x11\x04\x98\x3c\x90\x41\x36\x33\x13\x64\x65\x64\xdf\xfd\x1f\x0c\xcf\xe4\x5f\xe4\x3b\xe7\x92\x12\x55\x5d\xee\xf1\x4c\x32\xb0\x51\x22\xef\xe3\xdc\x7b\xbe\x7b\x1e\xdf\xb9\xec\xf7\xc5\xc0\x7c\x6a\xda\x82\xff\xf4\x87\x6d\xab\xf3\x4c\x8c\x4f\x2d\x47\x74\xac\x9e\x69\xbc\x2f\x46\x3d\xb3\xe9\x98\xa2\xdf\x7c\x62\x8a\xd6\x69\x73\xd0\x35\x1d\x31\x1c\x88\xd6\xd0\xb6\x4d\x67\x34\x1c\xb4\xad\x41\x57\xb4\x26\xce\x78\xd8\x47\xe3\xa0\x63\x75\xf5\x4c\xe3\x13\xd1\x5c\x2e\x45\xec\x2d\xa4\xc8\xe6\x5e\x26\xd4\x3c\xb9\x51\x22\x89\x85\xbc\x96\xe9\x4a\x2c\xbd\x19\x3a\xc2\x2c\x92\x46\x73\x34\x72\x07\xcd\xbe\x29\x8e\x45\x37\x99\xa9\x23\xfc\x15\xdd\x30\x13\x8e\x4c\xaf\x43\x5f\x42\x52\x6b\xee\xc5\x18\x8e\xb6\x70\x2a\x56\x49\x2e\xd2\x3c\x16\x51\xe2\x7b\x51\xb4\x32\xec\xc9\xc0\x9d\x38\xd8\xfd\xb1\x98\x85\x19\x46\x9b\x61\x36\x97\xa9\xd8\x09\xe4\xf5\x4e\x4d\xec\x2c\xd3\x24\xd8\x11\x09\x1a\x32\xa9\x32\xb4\x04\x72\xea\xe5\x11\x64\x29\x3d\x86\x25\x40\x75\xda\x00\xde\x0d\xe3\x79\x2a\x97\x89\x0a\xb3\x24\x5d\x9d\x1b\xf6\x70\x38\x16\xc7\x86\xd3\xb2\xad\xd1\xd8\x1d\x3f\x1b\xd1\xb0\x4b\x4f\xcd\x31\x2e\x0f\xcf\xb1\xde\x20\x5f\x5c\x62\xbd\x64\x0a\x89\x2a\x97\x4a\xeb\xeb\xa5\x92\x75\x96\x81\x08\x63\xe8\x2d\x59\x65\xc3\x72\x9c\x89\xe9\x8e\x9a\x5d\xe0\xe6\x0e\x26\x7d\x08\xdb\xdf\x83\x28\x05\x65\x65\x7a\x6e\x8c\xec\xe1\x78\xd8\x1a\xf6\xd0\x3e\xcf\xb2\xa5\xd1\x1e\xf6\x9b\xd6\x00\x6f\xac\xee\x3c\x51\x19\xef\xc8\x9d\xd8\x34\xe4\x83\x7b\xe5\xf8\xfb\xea\x68\x77\xf7\x83\x7b\x7a\x38\x5e\x3e\xb8\x77\x3a\x1e\x8f\xdc\xd1\xd0\x1e\xdf\x57\xbb\x06\xbf\x34\xdb\x6d\xa0\x64\xac\x3b\x20\xe0\x70\x6f\x6f\x0f\x2a\xb4\x43\xe5\x5d\x46\x52\x38\xce\xa9\x98\x4a\x2f\xcb\xb1\xf9\x9b\xb9\x8c\x45\x9c\x40\x93\x6b\x2f\x8c\xa8\xdb\x68\x5b\x4e\xf3\xa4\x67\xba\x34\xec\x58\x4c\xbd\x48\x49\x03\xcf\xa5\xb0\x83\x83\x8a\xa8\x56\x7b\x40\x47\x1d\x93\xf6\xc5\x19\x2c\x92\x40\x1a\xc3\x4e\xa7\x67\x0d\xcc\x12\x70\x2d\xa4\x14\x6c\x0f\x27\x63\xd3\x76\x7b\xc3\xee\xba\xeb\x13\xd1\x95\xb1\x4c\xbd\x0c\x70\x66\x72\xa9\x8e\xd0\xf2\x07\xc2\x0f\x00\x67\x36\xdf\xcd\x92\xdd\x19\x6c\x66\xd7\xcf\x55\x96\x2c\x76\x09\x32\xc5\x03\x1a\xdc\x2e\x7c\x99\x66\xa2\xee\x7b\xc7\x59\x9a\x4b\x51\x0f\x72\x08\x0a\x93\xf8\xf8\xf1\xa3\x87\x7b\xf3\xbd\xc5\x9e\x12\x75\xc2\xf4\x78\xb1\xa2\x9f\x86\x7c\xe5\x2d\x96\x91\x6c\xf8\xc9\xc2\xf8\x04\x72\x86\xa9\x98\xa6\xc9\x42\x78\xa2\xb1\x9c\xbe\x12\xd3\x10\x8a\xc9\x57\xcb\x24\xcd\x70\xac\xdc\x03\x53\x13\x67\x61\x1c\x90\x71\xd3\x62\xe1\x34\xf4\xf5\x5e\x13\x60\x78\x2f\x48\x20\x85\x40\x9c\x26\xe9\x4c\x66\x22\x4b\x8a\xf9\x3c\x71\x99\x86\xd7\x34\xf8\x4a\xae\xee\x6b\xbd\x92\xa5\x8c\x95\x8a\xc4\xf2\xca\x57\xfb\x07\xa2\x0e\xf0\x48\x2a\xaf\x5e\x4f\xf2\xac\x78\x93\x0b\x51\x8f\x13\x4c\x53\x3f\x6c\x16\x46\x96\x93\xa8\x43\xd1\x43\x20\x95\xd1\x32\xed\xb1\x4b\xfe\x0a\xb8\xab\x10\xee\x96\xcb\x18\x4f\xcc\x67\x77\x0e\x28\x24\x62\xf9\xc9\x72\x09\xeb\x8f\x70\xd6\x11\xf9\x40\x26\x81\x20\x29\xe5\xc5\x01\x50\x00\xdc\xbe\xc6\x8d\xce\x0b\xc3\x2b\xde\xc7\x10\xa0\x95\x4c\x0d\x60\x91\xf3\x53\xb3\x7c\x25\xfd\x1c\x00\x1b\xce\xb8\x39\xb6\x5a\x2e\xdb\xfb\xa8\x39\x86\xcd\xe9\xa8\x12\x11\xc4\x38\xc5\x62\xd1\xee\x97\xd6\x48\xa8\x7c\x49\xb0\x1a\xe6\x80\x0d\x89\xdb\x36\x26\xd4\xc3\x66\xc2\x78\xa6\xa3\x0e\x8e\x02\x47\x12\xd7\xa3\x64\x36\xc3\x31\xe6\x70\x3d\x55\x13\xbe\x17\x8b\x4b\x29\x76\xe6\xc9\x42\xea\x70\x81\x83\x8a\x70\x88\x3b\x46\xaf\xc9\x61\x8e\xbc\x96\x70\xa0\x11\xf0\xd8\xc0\xcb\x3c\xc4\x01\x79\x5e\x09\x39\x8b\x95\x7a\x19\x71\xd0\x81\x35\xcd\x52\xa9\xb4\x24\x34\x86\x99\x3c\x44\x47\x98\x7d\xa8\x28\x82\xa5\xc2\x9f\x27\x14\xdc\xda\x27\x65\x4c\xe1\xb9\xc6\xe9\xd0\x21\x57\xda\x3f\x78\xd4\xd8\xc3\x7f\xfb\x47\x87\x87\x7b\x0f\x8d\x22\x3c\x92\x49\x1b\x45\xac\x4b\x93\x24\x33\x46\x4d\xc7\x39\x6b\x33\x2e\x1d\x5a\xa8\xb2\x6c\x1c\xad\x6a\x42\x96\xa1\x50\x3b\x25\xed\x2c\x95\x2f\xf3\x30\x2d\x54\x44\xc8\x09\xa7\xab\xfa\x34\x8f\xa2\x1d\x78\x72\x6f\x1d\x06\xf5\xf8\x52\x6c\xb9\x7f\x96\x6a\xe8\xa3\x10\xa4\x3f\x3b\x59\x23\xb8\x04\x1c\x5e\xb0\x08\xe3\x73\x8e\x64\x7e\x9e\x86\x19\x42\xa7\x35\xc0\x09\xf6\x7a\x70\xe7\xd6\x93\xca\x61\xbc\xf7\x9e\x4e\x24\x3a\xcf\x8c\x87\xe2\x89\x69\x8e\xc4\xb3\xe1\xc4\x16\xac\x5b\xbb\x39\x6e\x0a\xa7\xd9\x31\xdf\x7b\xcf\x70\xcc\x96\x6d\x8e\x5d\x58\x21\x04\xbc\xf7\xfe\x67\x9d\xb6\x79\x66\xe3\xff\x3f\xfc\xa3\x7b\x64\x0b\x79\x96\xd0\x31\xc2\xde\x53\xb9\x90\x1c\x86\x03\x0f\x4e\x81\x00\x62\x0d\x5c\xdb\xec\x9b\xfd\x13\xc4\x93\x76\xf3\x99\x83\xf9\x8f\x8c\xd6\x70\xf8\xc4\x32\x39\x5d\x54\x20\x75\xbd\x1b\xa9\xe8\x50\x8b\xee\xf5\xbc\xea\x98\x30\xf6\x53\x19\x84\x1a\x15\x9b\x92\x98\x22\x07\x4e\x5e\xad\x84\x97\x03\xe5\x38\x2b\xad\x72\x2e\xbd\x00\x1b\xe1\xd4\x07\x87\x20\xfb\xe2\x17\xc3\xa6\x24\xeb\x20\xfa\xdb\xc3\x2f\x9e\xb9\xcd\xc9\xf8\xd4\x1c\xc0\xc0\x61\xe4\xc3\x75\x0a\xfb\xa2\x7e\x66\x9e\x50\x57\x9d\x1a\x8a\xc4\x00\x43\x39\x37\x9a\xad\xb1\xf5\xd4\x74\x5b\x38\x21\xb7\x47\x4f\x7d\x6b\x80\x68\x49\x8a\xed\x3f\xde\x83\x70\xc7\x24\x37\x21\x83\xf8\xde\x41\xf0\x56\xde\x8d\x84\xdd\x23\x14\xf9\x49\x3c\x0d\xd3\x85\x90\xf5\x05\x42\x3c\x3b\x46\x2a\x67\xa1\xca\x74\x94\x84\xcc\xae\xe5\x50\x40\x36\x91\x55\x7a\x2e\xe7\x77\xbb\x5f\x39\xca\x76\x82\x74\xc7\x39\x22\x8a\x92\x9b\x62\x32\x16\x20\xdf\x67\x83\x10\x00\x8d\x83\x81\xef\x27\x79\x9c\x69\x03\x5a\x47\x7b\x16\x6f\xb3\xfe\x15\xa1\xbc\xc5\x05\x82\x8d\x50\xe1\x8c\xf3\x07\xb6\x7a\x1d\xca\x1b\x88\x5d\x65\x73\xf8\x71\x03\x3b\xfb\x7c\x62\xd9\xc8\x44\x56\x77\x80\x93\x7e\x6a\x99\x67\x15\x09\x2d\xcf\x47\x68\x41\xde\xca\x3c\xec\x45\x89\x65\xe8\x53\x4a\x2b\x83\x43\xab\xd9\x3a\x35\xdd\xe6\x53\xd8\x99\x5d\x99\xd5\x27\x0c\xa0\x8c\x0e\xe1\xa4\x7f\x31\x7e\x30\x1c\x83\x16\xb9\x84\x41\x75\x38\x05\xf8\x40\x66\x98\x75\xc4\xb9\x9a\x32\x30\x18\xc8\x3c\xbf\xa4\xfc\x41\xae\x11\x66\x4a\xa7\x27\x4d\x0c\x76\xf7\x1f\x3e\x28\x65\xbe\xcb\x16\xd6\x8b\x7c\xdf\xd8\xe1\xf7\x41\xd7\x4e\xf8\x34\xa0\xbd\x7f\x25\x00\x7f\xb8\xc8\x17\x14\xfc\x81\xe4\x57\xc8\xe8\xd8\x1c\xce\x3c\x45\x80\x58\x26\x3a\x20\x66\xab\xe5\x26\xfb\xc2\x56\xac\xfe\xa4\x4f\xde\x06\x60\xbf\x04\x50\xa7\x66\xc5\x73\x8d\xe7\x37\xf2\x72\x9e\x24\x57\x14\xf1\x4e\xf1\x2b\x32\x4f\x5d\x89\x97\xb9\x44\x6a\x8d\x64\x3c\x43\x7c\xff\x7c\x62\x82\xde\xf4\xcc\x41\x97\x63\xc4\x7e\x41\x2f\x64\x14\xc2\x61\xc0\xf7\x16\x92\xd2\x11\x8e\x14\x51\x02\x5b\x50\x46\xdb\x24\x33\xb5\xdd\xb1\xd5\x37\x91\xfc\x31\xe7\x01\x39\x36\x9b\x53\x18\x73\x2c\x91\x95\xc4\x4a\xa7\xe2\x3c\xb1\x46\xee\xb8\xe7\xb8\x98\x47\x74\x75\xb3\x3f\xb2\x62\x22\x51\x1a\xb7\x76\x05\x98\x93\x7c\x3a\xe5\x2c\x45\xbb\x24\xaf\xf4\x41\x29\x63\x19\xd5\x80\x8e\x5c\x12\xb3\x84\x99\x84\x9c\x95\x0a\x8a\x19\x24\xf1\x87\x48\x9c\x31\xf6\x71\x43\x7c\x8e\x3b\x1b\x08\x48\x83\xb6\x7b\x32\xe9\x74\x88\xa6\x98\x03\x4d\xdf\xc0\x01\xc9\xd9\x11\x35\x91\xfa\x56\x9a\xf1\xb1\x47\x69\x82\xeb\x4c\x4e\x7e\x64\xb6\xc6\xcc\xd7\x4a\xb2\x7b\x5f\x95\x16\xa7\x99\x1f\xf1\x9c\x05\x9b\x92\x5a\x64\xcb\xc6\x8c\x9e\xc9\x8c\x8e\x1e\x3c\x7e\x84\xbe\xcf\x3f\x2f\x3a\x5e\xbe\xe4\xd6\x03\x42\x69\x90\x64\xb2\x46\xfb\xe5\x44\x4a\xa4\x42\x02\x52\x7d\xcc\x3b\x1f\x3d\x7c\x80\x70\xef\xf4\xc7\x23\x07\x2d\x51\x44\xc9\x0d\xa1\x28\x68\xc0\xbf\xe8\xe4\x11\x9a\xed\x31\x50\x24\x4a\xce\x73\xb1\x10\xa9\x9f\xe2\x60\x16\x0b\x08\x82\x1a\x94\xd8\xed\x4e\x4b\x3c\xfc\x68\xef\xe3\x86\xb0\xf4\x42\x7a\xbf\x65\xc2\x55\x1b\x41\x40\x88\x17\xf2\xa2\x1b\xc4\xe0\xf5\x7a\x65\x4a\xab\x70\xc3\x53\xb3\x37\x24\xd2\xa2\xc3\x8c\x66\x9a\xc4\xbf\x38\x64\x12\x71\x0e\x42\x3a\x2e\xc4\xd4\xc6\xda\x38\x79\x0e\x4b\x69\x31\x0f\xd9\x4c\xa0\xb0\xb5\x2d\x71\x8b\xe3\x33\x4d\x53\x2b\xc4\xa5\x05\xf6\x82\x71\x2e\x6d\xa8\x08\xed\x1b\x9f\xd1\xa9\x90\x35\xac\xf2\xb8\xa4\xaa\x74\x43\x0c\x11\xbf\x48\x2d\x34\x92\x68\xac\xac\x64\x34\xad\x53\xa0\x02\x5e\x95\x89\x4a\x9b\xe9\xda\x44\x75\x5c\x13\x7e\x14\x42\xab\xea\x40\xca\xe7\x2e\xf1\x30\xab\x43\xee\xbf\xe1\xc4\x77\x70\x33\x6d\xdf\xef\x22\x67\xc5\x88\x0d\x3b\x63\x13\xd3\x1c\x36\x08\xe0\xf8\x60\x3a\x74\xa2\x0f\x0e\x0f\x0e\x1a\x62\x4c\x4a\x14\xc4\xe7\x05\x05\x5c\x3c\x4a\x36\xdc\xf5\x60\x68\x48\xfa\x5f\xec\x90\x85\xef\x88\x4f\xb9\xfb\xb3\x0a\x4f\xfe\xe3\x0b\x82\x61\x01\x0f\x31\x3a\x36\x8a\xc0\xe3\x62\x51\x98\xc8\x3a\xf3\x71\x3e\x58\x7a\x4a\xdd\x24\x69\x50\x10\x98\x0d\x77\x31\x9e\x27\x94\x41\xdf\x76\xdb\xa2\xa3\xa1\x83\xea\xdb\xfd\xad\x9e\x85\xa0\xe9\x5a\x24\xa4\x78\xd6\x7c\x81\xeb\xb5\xe1\x88\xd3\x5e\x19\x99\xbd\x65\xd8\xa8\x44\x67\xda\x9b\x41\x61\xb7\xa8\xa4\xee\x08\xe0\x4c\x2c\x76\x79\x0b\xbb\xf4\x27\x49\x11\x44\x8d\xf1\xf0\x89\x39\xf8\x81\x93\x7c\x1f\x18\xba\x19\x88\x7a\x6c\x70\x21\x93\x95\x06\x10\x06\x9a\x1f\x4b\xe4\xc7\x8c\xcf\x07\xfd\xa5\x38\x44\x46\x95\x00\xdd\x80\xe8\x2d\x19\xb5\x6a\xcc\x92\x64\xa6\xf1\xde\x05\xe7\x78\x21\xfd\x6c\x0d\x0e\xf7\xfc\x1f\xc1\xb9\xb9\xb9\x29\x04\x01\x26\xc5\xcb\xb0\x06\x84\x52\x18\x4f\x93\x86\xb6\x8a\x1f\x3c\x1c\x7b\x24\xce\x7f\x17\xc0\x05\x13\xd8\x52\x29\xd1\x80\x1d\xb0\x94\x3b\x11\x7e\xe7\xac\x02\xe0\x02\x90\x97\x2f\x7f\x47\x30\x50\x9f\xb9\xa4\x81\x4b\x2a\x70\xcc\x15\xdf\xfe\xf2\x2f\x7f\xfd\xf5\x4f\xee\xb4\x93\xd4\x5b\xce\x8b\x68\x5c\xec\xa3\xb1\xf7\x9b\xcc\xe4\xce\x39\xdb\xbb\xbf\x91\xe1\x65\xf2\x3b\x2a\x00\x12\x76\x27\xe2\xb0\x7c\x16\x5b\x59\xf7\x37\xec\xf4\xee\x29\x5b\xe6\xfc\xdc\x27\x92\xb5\x55\xfc\xc8\x45\x92\xae\x74\x8d\x81\x54\xb8\xc3\xc1\x83\x5a\x79\xe4\xad\x8b\x97\x62\xb0\xd1\x6c\x37\x47\x63\x66\xbe\xba\xa5\x2c\x39\x8a\xfe\xa2\x8e\xe9\xb6\x90\x52\x41\x2c\xaf\xbd\xa8\x42\x1e\xb6\x24\x3e\xdc\x43\xbd\x01\x49\x4f\x9b\xa4\xc8\xc3\xbd\x52\x90\xde\x0b\x7b\x5b\x75\x2f\x10\x10\xc3\x8b\x98\xaf\x27\x14\xf9\x74\xc0\xc3\x2c\x9e\x70\x04\x8e\x9c\x21\x5a\x5d\x1d\x67\xfe\xb2\x46\x9d\xc7\x47\x0f\x0f\x1f\x7d\x5c\x2b\xa3\xd8\xf1\xc2\xf3\xbd\x14\xa9\x26\xb8\x3c\xde\xab\x2d\x93\x24\x72\x89\x63\x1d\x83\xf1\xd4\xc2\x20\x92\x6e\xc1\x75\x8e\x35\xed\x2e\x57\x3e\x12\x17\x9b\xd2\x6e\x7f\xff\x60\x7f\xff\xa2\xc8\x8f\x4c\xf5\x95\xc2\x86\xee\xc6\x94\xfc\x69\x83\xad\x86\xb6\xa8\x36\xef\xc2\x15\x5c\xf1\xa9\xd5\xde\x06\x76\x94\x26\xd7\x21\x95\x26\xcc\xfb\x67\xc8\x97\xa4\xbf\xd2\xdb\xc3\x90\x23\x4e\x84\x73\xef\x9a\x02\xf6\xaa\x1c\xb5\x92\x74\xa9\x46\xcb\x83\x82\xe8\x1d\x6e\x0a\x7a\x94\x98\x8d\x59\x43\x5c\x70\x31\x58\xf4\xaa\x8b\xdf\x1b\x8a\xa4\xf0\x11\xea\xb1\x3a\x7e\xeb\x41\x4a\xa4\x72\x97\x1b\x45\xa0\xe2\x72\xc3\x28\x5f\x40\x70\xca\x9d\x51\x9d\x7c\x54\xae\xf7\x59\xb9\x47\x37\x23\x22\x72\xb1\x86\xc9\x2d\xee\x2e\x8b\xb2\xb6\xd4\x04\x6b\x3a\x85\xca\x3e\x08\x6f\x28\x75\x21\x57\xd4\x89\x05\x87\x08\xdd\x28\xbc\x92\xae\xe6\xfb\x98\x61\x69\x02\x49\x2c\xa1\xc4\x0b\x36\xcb\xae\x55\x98\x73\x95\x9d\x68\xf7\xd6\x02\xe1\xd2\x13\xdb\xac\xd0\x56\x33\x66\xbe\xa4\x28\x71\xf0\xfa\x5b\x73\xe9\x4e\xab\xac\x11\xa8\xf8\xd3\x52\x30\x9d\x3b\x36\x5b\x87\xf7\x10\x8e\x6b\x17\xda\x12\xf2\x18\xe4\x6e\xcf\xe8\xb6\xdc\xd2\x7b\x98\x8a\x43\x88\xee\xd8\x48\x89\xc2\xa9\x64\x39\x77\x4c\x77\x4c\xc7\xa1\x22\xb6\x67\x75\xcc\xed\xf9\xc6\xf3\xa2\xf8\x22\xab\x1e\x13\x4f\x8d\x3c\x5f\x52\x45\x57\xb4\x33\xe0\x9b\x9b\x0a\x4d\xb4\xb4\x7d\xbf\x44\x01\x93\xdf\xb2\xef\xa2\x1f\x2b\xda\x4f\xad\x16\xad\x53\xf0\x67\x5d\xce\xb9\x93\x51\x6f\xd8\x6c\xbb\xd5\x3b\x0a\x5d\x07\x2a\xbe\x47\x0e\x63\xa9\xa4\xbe\xf2\x61\xe2\xe3\xa3\x9e\x41\xc3\x4e\x90\x27\x6a\x9e\x27\x3b\x18\x84\x95\xbd\x82\x4e\x95\x25\xa4\x4a\xf2\xd4\x87\xde\x74\xce\xba\xd6\xa3\x2c\x1d\x37\x10\xd0\x79\x80\xce\x80\xfc\xb8\x6b\x74\xed\x62\x2b\xce\x70\x62\xf3\x0e\xcb\x61\x6b\x2e\x5b\x0e\xa9\x30\x1d\x2f\xcb\x10\x1f\xc0\xbb\x33\x02\xea\x6c\x2e\x19\x8e\x4d\xab\x62\x5e\x2c\xd9\x1e\xc0\xe1\xdb\x1a\x12\x45\x40\x5e\xd0\x71\x5f\x14\x86\xb0\x39\xfd\x11\xdd\xac\x11\x43\xad\x08\xb9\x35\x51\xc3\xb3\xe9\xbe\xd8\xba\xdb\xa9\x74\xd0\x55\x68\x2c\x09\x9a\x05\x55\xbd\x5c\xed\xd3\x15\x02\xaa\x47\x55\x38\x5a\xb8\xf0\x66\x72\xf7\xc5\x52\xce\xfe\x54\x3f\x2e\xe3\x99\xd1\xec\xf5\x86\x67\x66\x9b\xaf\xb8\x28\x43\xdd\x39\x88\xf8\xe2\x2b\x5d\xa1\x82\x6d\x4b\xac\xc9\xf1\x65\x7b\xaf\x87\x07\xfd\x13\xa3\xdf\xfc\x82\x0b\x53\xba\xb8\x3e\x28\xe6\xc5\xeb\xdb\x77\x9a\xa4\xb8\x66\xc9\x97\x51\xe2\xdd\x42\x09\x65\x1a\x4d\x27\xba\xec\x70\x95\x69\x3c\x27\x63\x26\xb4\x9d\xa5\xf4\xc1\xc6\xa5\xbe\x91\x2c\xd8\x2c\x21\x47\xf7\x62\x2b\x81\xf8\xb3\xa4\xfb\x48\x42\x45\xde\x82\x10\x5c\x1a\x51\xfc\xb0\x14\x82\xf4\x54\xd4\x45\x18\x0e\x4f\xa3\xaf\x01\x74\x6e\xcd\x81\x63\xb5\x6a\x62\x12\x87\xaf\xda\x1e\x15\x6d\x76\x7e\xb9\x2a\x9e\x3a\xad\xc7\x07\x07\xe5\xef\x97\xfa\xe1\xc1\x5e\xad\x14\xbd\x7e\xd0\x5d\x87\x87\x87\x1f\xaf\x1f\x06\x5e\x9c\xd4\xc4\x93\x30\x43\x66\x41\xd1\xe3\x64\x60\xe5\xc5\x4f\x1f\x95\x58\xb8\x7e\xf6\xd3\x84\x33\x20\xbf\xd2\xac\x22\x3b\xf2\x69\x12\xdd\x21\x95\xc9\xc9\xbd\x4b\xaa\xcf\x2b\x30\x28\x29\x4b\x83\x9f\x25\x91\x17\xcf\x1a\x49\x3a\xdb\x5d\x5e\xcd\x76\x09\xbd\xdd\xf7\xf1\x54\x27\xbe\x9a\x79\x64\x26\x9d\xa1\xdd\x6f\xea\x64\x06\x22\xac\x3f\x9e\x6c\xae\x6e\xcb\xa4\x56\xf0\xdb\x6a\x56\xa3\x74\x4c\xbf\x54\xe3\x6a\xe7\x2f\xaf\x57\x6f\xf9\x7f\x39\xb7\xac\xa7\x50\xab\x7a\x74\x10\x4a\x2e\x3d\xfe\x48\xb0\xc0\xc8\x10\xb5\x09\x7f\x6d\x28\x8d\xb3\x9c\x56\x63\x23\xd9\x31\x8a\x6b\xce\xa2\xf5\xff\xf3\x7e\xe0\xd6\xd5\x80\xbe\xff\x28\x15\x1f\xa7\x88\x7d\xa4\x66\x5b\x5e\xe6\x33\x7a\xb0\x80\x3d\xfd\x9e\x79\x29\xeb\x6f\xa6\x69\x92\xd2\x43\x2b\x0d\xe9\x42\xf1\x76\x7a\xd7\x12\x8c\x9e\xf9\xd4\x24\x9a\xc3\xaf\x46\x49\x75\x4a\x6c\x58\x75\x7d\xd5\x46\xc7\xd0\x28\xda\xcf\xcb\x69\xeb\x09\x0c\xc6\xed\xd1\xd4\xb8\x19\xfa\x89\x2e\x12\x75\xe0\x51\x74\xd5\x99\xc0\x2c\x60\xdd\x18\x2a\xd2\x24\xc3\xf3\x3d\x75\x43\x16\xc8\x2e\x98\x50\x64\xa0\xeb\x85\x82\x5b\xdc\x7f\x3b\x61\xf5\x86\x5d\xd7\x1e\x8e\x75\xa9\x5b\xc4\x2a\x72\xe4\x08\xb1\xb9\xe2\xcd\x74\x49\x81\x53\xa4\xdd\x6c\xc9\x60\x4c\xf7\xb4\x33\xd3\x87\x24\xa7\xc4\x99\x91\x5e\x47\x12\x35\x0f\xa7\xd9\xbb\xe4\x1c\x3c\x06\xeb\xf1\x62\x08\x14\x9f\x7e\x8a\xb7\x9a\x38\x78\xf0\xb0\x12\x63\x5c\xe7\xd4\xea\xf0\x57\xad\xc7\x9c\x04\x67\x14\x08\x59\xeb\x00\xa5\xd0\xea\x6d\xbd\xda\x4d\xab\xf7\xec\x2d\xcd\xcc\x57\xcb\x30\xe5\xd8\xb1\x52\xb4\x1d\x12\x40\x7b\xb9\x17\xc8\x48\xd2\xc5\xe8\x94\xee\x4b\x17\xd8\x36\x8d\xd8\x86\xeb\x11\x6f\x66\x7d\x79\x5d\x39\xe6\xf8\xae\x33\x8e\xab\xa7\x66\xcb\x82\xe1\x6a\x7a\x4b\xd1\x4c\x7f\x78\x2d\xf0\x58\x20\xab\x23\x00\xdf\xc1\x45\x6c\x13\x5c\x68\x60\xb6\xc6\x2e\x12\x7a\xdf\xa9\x7e\x89\x1b\x63\x3e\x7c\x2d\x5d\xcb\xe6\x9b\x9b\x0a\x95\x86\x90\x08\xcb\xbd\x4b\x6a\x95\xdd\x14\x6e\x01\x72\x48\x26\x9f\x23\x3a\x6a\xdf\xcf\x83\xe5\x2d\xbb\xa7\x21\xd5\x6f\xa3\x78\xe7\x4b\xc8\x0a\x73\x2f\xbe\x6e\xae\xbf\x59\x70\x24\xb9\x85\x12\x35\x56\x51\x7a\xd7\xb5\xdd\xf6\x06\xda\xa1\x37\x8b\xb1\x5c\xe8\x97\xd0\x15\x17\x4b\xc4\x3e\x76\x2a\x57\x7c\xef\x1c\x78\xeb\xce\xaf\x60\xfe\xbf\xed\x85\x09\x9f\xae\x24\xf2\xbb\xf9\x6e\x95\x6c\xd2\x73\x11\xf3\x9e\xef\xec\x57\xef\x69\x76\x6a\x3b\x07\x5b\xef\xe7\x74\x26\x26\x5d\xbe\x3a\x15\xd8\xd6\x61\xf7\x36\x74\x9b\xcf\x5d\x1b\xf8\xb6\x3f\x7b\x89\xad\x2f\x50\x46\xdb\x26\xd9\x3c\xee\x04\xf3\x02\xba\x68\x7c\x85\xa4\xa2\xb7\x77\xc4\x1f\xb0\x8e\xe8\xcf\x67\xeb\x4f\xdb\x7c\x59\xfe\x27\x08\xbd\x29\x18\xef\x71\x9e\x4d\x1f\x1b\x64\x35\x9c\x4f\x40\xae\xcf\xd9\x1f\xba\xd6\xd8\x6d\x5b\x9d\xce\xb6\xf7\xd3\xa5\x71\x3a\xcb\x35\x55\x22\x6b\xe7\xcc\x00\x14\x3f\xc4\x44\x31\xf3\x3f\x2c\x97\xdd\xa9\xd7\xbd\x19\xed\x50\x01\x40\x81\x17\x44\x34\xca\x26\x94\xe8\x38\x1d\x26\xf1\x3a\xe1\x85\x59\x5d\xf9\x0b\x66\x77\x41\xe2\x2b\x6e\x98\xf9\xbb\xfb\x8d\x47\x8d\x07\x44\x99\x9b\x76\x97\x36\xc0\x77\x3b\x58\x65\x2e\xbd\x88\x6e\xd8\xe9\xf6\xbd\xc1\x3b\x6e\x4c\x95\x7f\x75\xfe\x16\x35\x33\xf9\x0b\xa7\x2e\x0c\x36\x55\xed\x1c\x2c\x73\x43\x2f\x38\x46\x7d\xd4\xa8\x16\xb5\x07\x1f\xbd\x5b\x4b\x5a\xac\xaa\x67\x1e\xa7\xc4\xa6\xb8\x84\xa8\xd7\x33\x6f\xa6\x7e\x1b\x45\x49\x5a\xa1\xea\x5a\xcf\xe7\xe1\xfe\x63\x0a\x33\xcd\x01\x37\xc8\xb8\x3e\x71\x6a\x5f\xcd\xeb\xad\x01\xfd\x3d\x7d\x52\x0b\x64\xbd\x6d\xd6\xa6\x69\xbd\x63\xd7\xe2\xa8\x3e\xe8\xd5\xa2\xeb\x7a\xef\x69\x2d\xcd\xeb\xf6\xa4\xf6\xc2\xab\xff\x68\x54\x93\xaa\x6e\x3a\xb5\x65\x56\x3f\xb1\x6b\xcb\xa8\x3e\xea\xd5\x2e\x67\xf5\x93\x6e\x0d\x6b\x5a\x63\xfe\xd4\x49\xb2\x4d\x84\xa9\x50\xcd\x6b\xbf\xfa\xb7\x1f\x7f\xfb\x5f\x7f\xf5\xed\xcf\xff\xf5\xbb\xbf\xfe\xf3\xda\xaf\x7e\xf1\xf5\xff\xfc\xf3\x4f\x8a\x97\xb6\xcc\x33\xe5\xcf\x6b\x9d\xd4\x8b\xbf\xf9\x27\x2f\x54\xb5\x81\x44\x75\x0b\x92\x12\xa8\x5a\xcf\xcb\xae\x43\xf9\xdf\xff\x90\xd7\x5e\xff\xfd\x9b\x3f\x7b\xf3\xf5\x9b\xaf\x5f\xff\xf2\xf5\xcf\x5f\xff\xa2\xf6\xdd\xdf\xfc\xe3\x77\x7f\xfb\x2f\xbf\xfe\xe9\xdf\xd5\x4c\xb5\xf4\xbe\xf9\x59\x12\xd5\x46\xe0\x6b\xf9\x2c\xff\xe6\xa7\x0a\x8f\x91\xba\x0a\x6b\xaf\x7f\xf6\xe6\x2f\x5e\xff\xe7\xeb\xff\x78\xfd\xef\x6f\x7e\xac\x67\xd6\xac\xcc\x8b\x42\x62\x4e\x9a\x79\x04\x0c\x3f\x31\x42\xe2\x41\xa8\x65\xae\xe0\xcf\x0c\x0f\x79\x8a\x24\xa6\x74\x6e\x30\x3e\x8c\x93\xc1\x20\xe1\xf1\xab\xb9\xc1\x48\xf1\x63\x7d\x7c\x66\x30\x62\xfc\x2f\x4f\x0c\x86\x8d\xe2\x63\x6a\x30\x76\x78\x8c\x23\x83\x01\xa4\x7f\x00\x72\x6d\x30\x8a\xf4\xed\x37\x37\x18\x4a\x3c\xbe\xf0\x0c\xc6\x93\x56\x51\x06\x83\x8a\x47\xfe\x35\x18\x5c\x7a\x8b\x0c\x46\x98\xfe\xe1\xca\xcc\x60\x98\x89\x8b\x67\x74\xe9\x44\x0e\x7c\x6e\x38\xa7\xc3\x33\xb7\x03\xb2\x06\xea\x72\x62\xeb\xcf\xdd\xeb\x40\xfd\xbf\x01\x00\x00\xff\xff\xbe\x02\x9b\x98\x23\x24\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x5a\x4b\x8f\xe3\x56\x76\xde\xf3\x57\x5c\x97\xe3\xb8\x1d\x48\xaa\x97\xfb\xe1\xb2\x2b\x69\x95\x44\xa9\x38\xad\x97\x49\xa9\xcb\xed\x46\x81\xc5\x22\xaf\x24\x76\x51\xa4\x9a\x97\xac\x6a\x19\x59\x8c\x91\x45\x80\x2c\x93\x41\xb2\x09\x82\x64\x11\x04\x98\x3c\x90\x41\x36\x33\x13\x64\x65\x64\xdf\xfd\x1f\x0c\xcf\xe4\x5f\xe4\x3b\xe7\x92\x12\x55\x5d\xee\xf1\x4c\x32\xe8\x46\x89\xba\x8f\x73\xef\xf9\xee\x79\x7c\xe7\x52\xef\x8b\x81\xf9\xd4\xb4\x05\xff\xe9\x0f\xdb\x56\xe7\x99\x18\x9f\x5a\x8e\xe8\x58\x3d\xd3\x78\x5f\x8c\x7a\x66\xd3\x31\x45\xbf\xf9\xc4\x14\xad\xd3\xe6\xa0\x6b\x3a\x62\x38\x10\xad\xa1\x6d\x9b\xce\x68\x38\x68\x5b\x83\xae\x68\x4d\x9c\xf1\xb0\x8f\xc6\x41\xc7\xea\xea\x99\xc6\xa7\xa2\xb9\x5c\x8a\xd8\x5b\x48\x91\xcd\xbd\x4c\xa8\x79\x72\xa3\x44\x12\x0b\x79\x2d\xd3\x95\x58\x7a\x33\x74\x84\x59\x24\x8d\xe6\x68\xe4\x0e\x9a\x7d\x53\x1c\x8b\x6e\x32\x53\x47\xf8\x2b\xba\x61\x26\x1c\x99\x5e\x87\xbe\x84\xa4\xd6\xdc\x8b\x31\x1c\x6d\xe1\x54\xac\x92\x5c\xa4\x79\x2c\xa2\xc4\xf7\xa2\x68\x65\xd8\x93\x81\x3b\x71\xb0\xfb\x63\x31\x0b\x33\x8c\x36\xc3\x6c\x2e\x53\xb1\x13\xc8\xeb\x9d\x9a\xd8\x59\xa6\x49\xb0\x23\x12\x34\x64\x52\x65\x68\x09\xe4\xd4\xcb\x23\xc8\x52\x7a\x0c\x4b\x80\xea\xb4\x01\x7c\x37\x8c\xe7\xa9\x5c\x26\x2a\xcc\x92\x74\x75\x6e\xd8\xc3\xe1\x58\x1c\x1b\x4e\xcb\xb6\x46\x63\x77\xfc\x6c\x44\xc3\x2e\x3d\x35\xc7\xb8\x3c\x3c\xc7\x7a\x83\x7c\x71\x89\xf5\x92\x29\x24\xaa\x5c\x2a\xad\xaf\x97\x4a\xd6\x59\x06\x22\x8c\xa1\xb7\x64\x95\x0d\xcb\x71\x26\xa6\x3b\x6a\x76\x81\x9b\x3b\x98\xf4\x21\x6c\x7f\x0f\xa2\x14\x94\x95\xe9\xb9\x31\xb2\x87\xe3\x61\x6b\xd8\x43\xfb\x3c\xcb\x96\x46\x7b\xd8\x6f\x5a\x03\x7c\x63\x75\xe7\x89\xca\x78\x47\xee\xc4\xa6\x21\x1f\xdc\x2b\xc7\x7f\xa4\x8e\x76\x77\x3f\xb8\xa7\x87\xe3\xcb\x07\xf7\x4e\xc7\xe3\x91\x3b\x1a\xda\xe3\x8f\xd4\xae\xc1\x5f\x9a\xed\x36\x50\x32\xd6\x1d\x10\x70\xb8\xb7\xb7\x07\x15\xda\xa1\xf2\x2e\x23\x29\x1c\xe7\x54\x4c\xa5\x97\xe5\xd8\xfc\xcd\x5c\xc6\x22\x4e\xa0\xc9\xb5\x17\x46\xd4\x6d\xb4\x2d\xa7\x79\xd2\x33\x5d\x1a\x76\x2c\xa6\x5e\xa4\xa4\x81\xe7\x52\xd8\xc1\x41\x45\x54\xab\x3d\xa0\xa3\x8e\x49\xfb\xe2\x0c\x16\x49\x20\x8d\x61\xa7\xd3\xb3\x06\x66\x09\xb8\x16\x52\x0a\xb6\x87\x93\xb1\x69\xbb\xbd\x61\x77\xdd\xf5\xa9\xe8\xca\x58\xa6\x5e\x06\x38\x33\xb9\x54\x47\x68\xf9\x03\xe1\x07\x80\x33\x9b\xef\x66\xc9\xee\x0c\x36\xb3\xeb\xe7\x2a\x4b\x16\xbb\x04\x99\xe2\x01\x0d\x6e\x17\xbe\x4c\x33\x51\xf7\xbd\xe3\x2c\xcd\xa5\xa8\x07\x39\x04\x85\x49\x7c\xfc\xe8\xe1\x83\xbd\xf9\xde\x62\x4f\x89\x3a\x61\x7a\xbc\x58\xd1\x47\x43\xbe\xf2\x16\xcb\x48\x36\xfc\x64\x61\x7c\x0a\x39\xc3\x54\x4c\xd3\x64\x21\x3c\xd1\x58\x4e\x5f\x89\x69\x08\xc5\xe4\xab\x65\x92\x66\x38\x56\xee\x81\xa9\x89\xb3\x30\x0e\xc8\xb8\x69\xb1\x70\x1a\xfa\x7a\xaf\x09\x30\xbc\x17\x24\x90\x42\x20\x4e\x93\x74\x26\x33\x91\x25\xc5\x7c\x9e\xb8\x4c\xc3\x6b\x1a\x7c\x25\x57\x1f\x69\xbd\x92\xa5\x8c\x95\x8a\xc4\xf2\xca\x57\xfb\x07\xa2\x0e\xf0\x48\x2a\xaf\x5e\x4f\xf2\xac\xf8\x26\x17\xa2\x1e\x27\x98\xa6\x7e\xd8\x2c\x8c\x2c\x27\x51\x87\xa2\x87\x40\x2a\xa3\x65\xda\x63\x97\xfc\x15\x70\x57\x21\xdc\x2d\x97\x31\x9e\x98\xcf\xee\x1c\x50\x48\xc4\xf2\x93\xe5\x12\xd6\x1f\xe1\xac\x23\xf2\x81\x4c\x02\x41\x52\xca\x8b\x03\xa0\x00\xb8\x7d\x8d\x1b\x9d\x17\x86\x57\xbc\x8f\x21\x40\x2b\x99\x1a\xc0\x22\xe7\xa7\x66\xf9\x4a\xfa\x39\x00\x36\x9c\x71\x73\x6c\xb5\x5c\xb6\xf7\x51\x73\x0c\x9b\xd3\x51\x25\x22\x88\x71\x8a\xc5\xa2\xdd\x2f\xad\x91\x50\xf9\x92\x60\x35\xcc\x01\x1b\x12\xb7\x6d\x4c\xa8\x87\xcd\x84\xf1\x4c\x47\x1d\x1c\x05\x8e\x24\xae\x47\xc9\x6c\x86\x63\xcc\xe1\x7a\xaa\x26\x7c\x2f\x16\x97\x52\xec\xcc\x93\x85\xd4\xe1\x02\x07\x15\xe1\x10\x77\x8c\x5e\x93\xc3\x1c\x79\x2d\xe1\x40\x23\xe0\xb1\x81\x97\x79\x88\x03\xf2\xbc\x12\x72\x16\x2b\xf5\x32\xe2\xa0\x03\x6b\x9a\xa5\x52\x69\x49\x68\x0c\x33\x79\x88\x8e\x30\xfb\x50\x51\x04\x4b\x85\x3f\x4f\x28\xb8\xb5\x4f\xca\x98\xc2\x73\x8d\xd3\xa1\x43\xae\xb4\x7f\xf0\xb0\xb1\x87\x7f\xfb\x47\x87\x87\x7b\x0f\x8c\x22\x3c\x92\x49\x1b\x45\xac\x4b\x93\x24\x33\x46\x4d\xc7\x39\x6b\x33\x2e\x1d\x5a\xa8\xb2\x6c\x1c\xad\x6a\x42\x96\xa1\x50\x3b\x25\xed\x2c\x95\x2f\xf3\x30\x2d\x54\x44\xc8\x09\xa7\xab\xfa\x34\x8f\xa2\x1d\x78\x72\x6f\x1d\x06\xf5\xf8\x52\x6c\xb9\x7f\x96\x6a\xe8\xa3\x10\xa4\x3f\x3b\x59\x23\xb8\x04\x1c\x5e\xb0\x08\xe3\x73\x8e\x64\x7e\x9e\x86\x19\x42\xa7\x35\xc0\x09\xf6\x7a\x70\xe7\xd6\x93\xca\x61\xbc\xf7\x9e\x4e\x24\x3a\xcf\x8c\x87\xe2\x89\x69\x8e\xc4\xb3\xe1\xc4\x16\xac\x5b\xbb\x39\x6e\x0a\xa7\xd9\x31\xdf\x7b\xcf\x70\xcc\x96\x6d\x8e\x5d\x58\x21\x04\xbc\xf7\xfe\xe3\x4e\xdb\x3c\xb3\xf1\xff\x0f\xff\xe8\x1e\xd9\x42\x9e\x25\x74\x8c\xb0\xf7\x54\x2e\x24\x87\xe1\xc0\x83\x53\x20\x80\x58\x03\xd7\x36\xfb\x66\xff\x04\xf1\xa4\xdd\x7c\xe6\x60\xfe\x43\xa3\x35\x1c\x3e\xb1\x4c\x4e\x17\x15\x48\x5d\xef\x46\x2a\x3a\xd4\xa2\x7b\x3d\xaf\x3a\x26\x8c\xfd\x54\x06\xa1\x46\xc5\xa6\x24\xa6\xc8\x81\x93\x57\x2b\xe1\xe5\x40\x39\xce\x4a\xab\x9c\x4b\x2f\xc0\x46\x38\xf5\xc1\x21\xc8\xbe\xf8\x8b\x61\x53\x92\x75\x10\xfd\xed\xe1\x17\xcf\xdc\xe6\x64\x7c\x6a\x0e\x60\xe0\x30\xf2\xe1\x3a\x85\x7d\x51\x3f\x33\x4f\xa8\xab\x4e\x0d\x45\x62\x80\xa1\x9c\x1b\xcd\xd6\xd8\x7a\x6a\xba\x2d\x9c\x90\xdb\xa3\xa7\xbe\x35\x40\xb4\x24\xc5\xf6\x1f\xed\x41\xb8\x63\x92\x9b\x90\x41\x7c\xef\x20\x78\x2b\xef\x46\xc2\xee\x11\x8a\xfc\x24\x9e\x86\xe9\x42\xc8\xfa\x02\x21\x9e\x1d\x23\x95\xb3\x50\x65\x3a\x4a\x42\x66\xd7\x72\x28\x20\x9b\xc8\x2a\x3d\x97\xf3\xbb\xdd\xaf\x1c\x65\x3b\x41\xba\xe3\x1c\x11\x45\xc9\x4d\x31\x19\x0b\x90\xef\xb3\x41\x08\x80\xc6\xc1\xc0\xf7\x93\x3c\xce\xb4\x01\xad\xa3\x3d\x8b\xb7\x59\xff\x8a\x50\xde\xe2\x02\xc1\x46\xa8\x70\xc6\xf9\x03\x5b\xbd\x0e\xe5\x0d\xc4\xae\xb2\x39\xfc\xb8\x81\x9d\x7d\x3e\xb1\x6c\x64\x22\xab\x3b\xc0\x49\x3f\xb5\xcc\xb3\x8a\x84\x96\xe7\x23\xb4\x20\x6f\x65\x1e\xf6\xa2\xc4\x32\xf4\x29\xa5\x95\xc1\xa1\xd5\x6c\x9d\x9a\x6e\xf3\x29\xec\xcc\xae\xcc\xea\x13\x06\x50\x46\x87\x70\xd2\xbf\x18\x3f\x18\x8e\x41\x8b\x5c\xc2\xa0\x3a\x9c\x02\x7c\x20\x33\xcc\x3a\xe2\x5c\x4d\x19\x18\x0c\x64\x9e\x5f\x52\xfe\x20\xd7\x08\x33\xa5\xd3\x93\x26\x06\xbb\xfb\x0f\xee\x97\x32\xdf\x65\x0b\xeb\x45\xbe\x6f\xec\xf0\xfb\xa0\x6b\x27\x7c\x1a\xd0\xde\xbf\x12\x80\x3f\x5c\xe4\x0b\x0a\xfe\x40\xf2\x2b\x64\x74\x6c\x0e\x67\x9e\x22\x40\x2c\x13\x1d\x10\xb3\xd5\x72\x93\x7d\x61\x2b\x56\x7f\xd2\x27\x6f\x03\xb0\x5f\x02\xa8\x53\xb3\xe2\xb9\xc6\xf3\x1b\x79\x39\x4f\x92\x2b\x8a\x78\xa7\xf8\x14\x99\xa7\xae\xc4\xcb\x5c\x22\xb5\x46\x32\x9e\x21\xbe\x7f\x3e\x31\x41\x6f\x7a\xe6\xa0\xcb\x31\x62\xbf\xa0\x17\x32\x0a\xe1\x30\xe0\x7b\x0b\x49\xe9\x08\x47\x8a\x28\x81\x2d\x28\xa3\x6d\x92\x99\xda\xee\xd8\xea\x9b\x48\xfe\x98\x73\x9f\x1c\x9b\xcd\x29\x8c\x39\x96\xc8\x4a\x62\xa5\x53\x71\x9e\x58\x23\x77\xdc\x73\x5c\xcc\x23\xba\xba\xd9\x1f\x59\x31\x91\x28\x8d\x5b\xbb\x02\xcc\x49\x3e\x9d\x72\x96\xa2\x5d\x92\x57\xfa\xa0\x94\xb1\x8c\x6a\x40\x47\x2e\x89\x59\xc2\x4c\x42\xce\x4a\x05\xc5\x0c\x92\xf8\x43\x24\xce\x18\xfb\xb8\x21\x3e\xc7\x9d\x0d\x04\xa4\x41\xdb\x3d\x99\x74\x3a\x44\x53\xcc\x81\xa6\x6f\xe0\x80\xe4\xec\x88\x9a\x48\x7d\x2b\xcd\xf8\xd8\xa3\x34\xc1\x75\x26\x27\x3f\x32\x5b\x63\xe6\x6b\x25\xd9\xfd\x48\x95\x16\xa7\x99\x1f\xf1\x9c\x05\x9b\x92\x5a\x64\xcb\xc6\x8c\x9e\xc9\x8c\x8e\xee\x3f\x7a\x88\xbe\xcf\x3f\x2f\x3a\x5e\xbe\xe4\xd6\x03\x42\x69\x90\x64\xb2\x46\xfb\xe5\x44\x4a\xa4\x42\x02\x52\x7d\xcc\x3b\x1f\x3f\xb8\x8f\x70\xef\xf4\xc7\x23\x07\x2d\x51\x44\xc9\x0d\xa1\x28\x68\xc0\xbf\xe8\xe4\x11\x9a\xed\x31\x50\x24\x4a\xce\x73\xb1\x10\xa9\x9f\xe2\x60\x16\x0b\x08\x82\x1a\x94\xd8\xed\x4e\x4b\x3c\xf8\x78\xef\x93\x86\xb0\xf4\x42\x7a\xbf\x65\xc2\x55\x1b\x41\x40\x88\x17\xf2\xa2\x1b\xc4\xe0\xf5\x7a\x65\x4a\xab\x70\xc3\x53\xb3\x37\x24\xd2\xa2\xc3\x8c\x66\x9a\xc4\xbf\x38\x64\x12\x71\x0e\x42\x3a\x2e\xc4\xd4\xc6\xda\x38\x79\x0e\x4b\x69\x31\x0f\xd9\x4c\xa0\xb0\xb5\x2d\x71\x8b\xe3\x33\x4d\x53\x2b\xc4\xa5\x05\xf6\x82\x71\x2e\x6d\xa8\x08\xed\x1b\x9f\xd1\xa9\x90\x35\xac\xf2\xb8\xa4\xaa\x74\x43\x0c\x11\xbf\x48\x2d\x34\x92\x68\xac\xac\x64\x34\xad\x53\xa0\x02\x5e\x95\x89\x4a\x9b\xe9\xda\x44\x75\x5c\x13\x7e\x14\x42\xab\xea\x40\xca\xe7\x2e\xf1\x30\xab\x43\xee\xbf\xe1\xc4\x77\x70\x33\x6d\xdf\xef\x22\x67\xc5\x88\x0d\x3b\x63\x13\xd3\x1c\x36\x08\xe0\xf8\x60\x3a\x74\xa2\xf7\x0f\x0f\x0e\x1a\x62\x4c\x4a\x14\xc4\xe7\x05\x05\x5c\x3c\x4a\x36\xdc\xf5\x60\x68\x48\xfa\x5f\xec\x90\x85\xef\x88\xcf\xb8\xfb\x71\x85\x27\xff\xf1\x05\xc1\xb0\x80\x87\x18\x1d\x1b\x45\xe0\x71\xb1\x28\x4c\x64\x9d\xf9\x38\x1f\x2c\x3d\xa5\x6e\x92\x34\x28\x08\xcc\x86\xbb\x18\xcf\x13\xca\xa0\x6f\xbb\x6d\xd1\xd1\xd0\x41\xf5\xed\xfe\x56\xcf\x42\xd0\x74\x2d\x12\x52\x3c\x6b\xbe\xc0\xf5\xda\x70\xc4\x69\xaf\x8c\xcc\xde\x32\x6c\x54\xa2\x33\xed\xcd\xa0\xb0\x5b\x54\x52\x77\x04\x70\x26\x16\xbb\xbc\x85\x5d\xfa\x93\xa4\x08\xa2\xc6\x78\xf8\xc4\x1c\xfc\xc0\x49\xbe\x0f\x0c\xdd\x0c\x44\x3d\x36\xb8\x90\xc9\x4a\x03\x08\x03\xcd\x8f\x25\xf2\x63\xc6\xe7\x83\xfe\x52\x1c\x22\xa3\x4a\x80\x6e\x40\xf4\x96\x8c\x5a\x35\x66\x49\x32\xd3\x78\xef\x82\x73\xbc\x90\x7e\xb6\x06\x87\x7b\xfe\x8f\xe0\xdc\xdc\xdc\x14\x82\x00\x93\xe2\x65\x58\x03\x42\x29\x8c\xa7\x49\x43\x5b\xc5\x0f\x1e\x8e\x3d\x12\xe7\xbf\x0b\xe0\x82\x09\x6c\xa9\x94\x68\xc0\x0e\x58\xca\x9d\x08\xbf\x73\x56\x01\x70\x01\xc8\xcb\x97\xbf\x23\x18\xa8\xcf\x5c\xd2\xc0\x25\x15\x38\xe6\x8a\x6f\x7f\xf9\x97\xbf\xfe\xfa\x27\x77\xda\x49\xea\x2d\xe7\x45\x34\x2e\xf6\xd1\xd8\xfb\x4d\x66\x72\xe7\x9c\xed\xdd\xdf\xc8\xf0\x32\xf9\x1d\x15\x00\x09\xbb\x13\x71\x58\x3e\x8b\xad\xac\xfb\x1b\x76\x7a\xf7\x94\x2d\x73\x7e\xee\x13\xc9\xda\x2a\x7e\xe4\x22\x49\x57\xba\xc6\x40\x2a\xdc\xe1\xe0\x41\xad\x3c\xf2\xd6\xc5\x4b\x31\xd8\x68\xb6\x9b\xa3\x31\x33\x5f\xdd\x52\x96\x1c\x45\x7f\x51\xc7\x74\x5b\x48\xa9\x20\x96\xd7\x5e\x54\x21\x0f\x5b\x12\x1f\xec\xa1\xde\x80\xa4\xa7\x4d\x52\xe4\xc1\x5e\x29\x48\xef\x85\xbd\xad\xba\x17\x08\x88\xe1\x45\xcc\xd7\x13\x8a\x7c\x3a\xe0\x61\x16\x4f\x38\x02\x47\xce\x10\xad\xae\x8e\x33\x7f\x59\xa3\xce\xe3\xa3\x07\x87\x0f\x3f\xa9\x95\x51\xec\x78\xe1\xf9\x5e\x8a\x54\x13\x5c\x1e\xef\xd5\x96\x49\x12\xb9\xc4\xb1\x8e\xc1\x78\x6a\x61\x10\x49\xb7\xe0\x3a\xc7\x9a\x76\x97\x2b\x1f\x89\x8b\x4d\x69\xb7\xbf\x7f\xb0\xbf\x7f\x51\xe4\x47\xa6\xfa\x4a\x61\x43\x77\x63\x4a\xfe\xb4\xc1\x56\x43\x5b\x54\x9b\x77\xe1\x0a\xae\xf8\xd4\x6a\x6f\x03\x3b\x4a\x93\xeb\x90\x4a\x13\xe6\xfd\x33\xe4\x4b\xd2\x5f\xe9\xed\x61\xc8\x11\x27\xc2\xb9\x77\x4d\x01\x7b\x55\x8e\x5a\x49\xba\x54\xa3\xe5\x41\x41\xf4\x0e\x37\x05\x3d\x4a\xcc\xc6\xac\x21\x2e\xb8\x18\x2c\x7a\xd5\xc5\xef\x0d\x45\x52\xf8\x08\xf5\x58\x1d\x9f\xf5\x20\x25\x52\xb9\xcb\x8d\x22\x50\x71\xb9\x61\x94\x2f\x20\x38\xe5\xce\xa8\x4e\x3e\x2a\xd7\x7b\x5c\xee\xd1\xcd\x88\x88\x5c\xac\x61\x72\x8b\xbb\xcb\xa2\xac\x2d\x35\xc1\x9a\x4e\xa1\xb2\x0f\xc2\x1b\x4a\x5d\xc8\x15\x75\x62\xc1\x21\x42\x37\x0a\xaf\xa4\xab\xf9\x3e\x66\x58\x9a\x40\x12\x4b\x28\xf1\x82\xcd\xb2\x6b\x15\xe6\x5c\x65\x27\xda\xbd\xb5\x40\xb8\xf4\xc4\x36\x2b\xb4\xd5\x8c\x99\x2f\x29\x4a\x1c\xbc\xfe\xd6\x5c\xba\xd3\x2a\x6b\x04\x2a\xfe\xb4\x14\x4c\xe7\x8e\xcd\xd6\xe1\x3d\x84\xe3\xda\x85\xb6\x84\x3c\x02\xb9\xdb\x33\xba\x2d\xb7\xf4\x1e\xa6\xe2\x10\xa2\x3b\x36\x52\xa2\x70\x2a\x59\xce\x1d\xd3\x1d\xd3\x71\xa8\x88\xed\x59\x1d\x73\x7b\xbe\xf1\xbc\x28\xbe\xc8\xaa\xc7\xc4\x53\x23\xcf\x97\x54\xd1\x15\xed\x0c\xf8\xe6\xa6\x42\x13\x2d\x6d\xdf\x2f\x51\xc0\xe4\xb7\xec\xbb\xe8\xc7\x8a\xf6\x53\xab\x45\xeb\x14\xfc\x59\x97\x73\xee\x64\xd4\x1b\x36\xdb\x6e\xf5\x8e\x42\xd7\x81\x8a\xef\x91\xc3\x58\x2a\xa9\xaf\x7c\x98\xf8\xf8\xa8\x67\xd0\xb0\x13\xe4\x89\x9a\xe7\xc9\x0e\x06\x61\x65\xaf\xa0\x53\x65\x09\xa9\x92\x3c\xf5\xa1\x37\x9d\xb3\xae\xf5\x28\x4b\xc7\x0d\x04\x74\x1e\xa0\x33\x20\x3f\xee\x1a\x5d\xbb\xd8\x8a\x33\x9c\xd8\xbc\xc3\x72\xd8\x9a\xcb\x96\x43\x2a\x4c\xc7\xcb\x32\xc4\x07\xf0\xee\x8c\x80\x3a\x9b\x4b\x86\x63\xd3\xaa\x98\x17\x4b\xb6\x07\x70\xf8\xb6\x86\x44\x11\x90\x17\x74\xdc\x17\x85\x21\x6c\x4e\x7f\x44\x37\x6b\xc4\x50\x2b\x42\x6e\x4d\xd4\xf0\x6c\xba\x2f\xb6\xee\x76\x2a\x1d\x74\x15\x1a\x4b\x82\x66\x41\x55\x2f\x57\xfb\x74\x85\x80\xea\x51\x15\x8e\x16\x2e\xbc\x99\xdc\x7d\xb1\x94\xb3\x3f\xd5\x8f\xcb\x78\x66\x34\x7b\xbd\xe1\x99\xd9\xe6\x2b\x2e\xca\x50\x77\x0e\x22\xbe\xf8\x4a\x57\xa8\x60\xdb\x12\x6b\x72\x7c\xd9\xde\xeb\xe1\x41\xff\xc4\xe8\x37\xbf\xe0\xc2\x94\x2e\xae\x0f\x8a\x79\xf1\xfa\xf6\x9d\x26\x29\xae\x59\xf2\x65\x94\x78\xb7\x50\x42\x99\x46\xd3\x89\x2e\x3b\x5c\x65\x1a\xcf\xc9\x98\x09\x6d\x67\x29\x7d\xb0\x71\xa9\x6f\x24\x0b\x36\x4b\xc8\xd1\xbd\xd8\x4a\x20\xfe\x2c\xe9\x3e\x92\x50\x91\xb7\x20\x04\x97\x46\x14\x3f\x2c\x85\x20\x3d\x15\x75\x11\x86\xc3\xd3\xe8\x6d\x00\x9d\x5b\x73\xe0\x58\xad\x9a\x98\xc4\xe1\xab\xb6\x47\x45\x9b\x9d\x5f\xae\x8a\xa7\x4e\xeb\xd1\xc1\x41\xf9\xf9\xa5\x7e\xb8\xbf\x57\x2b\x45\xaf\x1f\x74\xd7\xe1\xe1\xe1\x27\xeb\x87\x81\x17\x27\x35\xf1\x24\xcc\x90\x59\x50\xf4\x38\x19\x58\x79\xf1\xd1\x47\x25\x16\xae\x9f\xfd\x34\xe1\x0c\xc8\x5f\x69\x56\x91\x1d\xf9\x34\x89\xee\x90\xca\xe4\xe4\xde\x25\xd5\xe7\x15\x18\x94\x94\xa5\xc1\xcf\x92\xc8\x8b\x67\x8d\x24\x9d\xed\x2e\xaf\x66\xbb\x84\xde\xee\xfb\x78\xaa\x13\x5f\xcd\x3c\x32\x93\xce\xd0\xee\x37\x75\x32\x03\x11\xd6\x2f\x4f\x36\x57\xb7\x65\x52\x2b\xf8\x6d\x35\xab\x51\x3a\xa6\x4f\xaa\x71\xb5\xf3\x97\xd7\xab\xb7\xfc\xbf\x9c\x5b\xd6\x53\xa8\x55\x3d\x3a\x08\x25\x97\x1e\xbf\x24\x58\x60\x64\x88\xda\x84\xdf\x36\x94\xc6\x59\x4e\xab\xb1\x91\xec\x18\xc5\x35\x67\xd1\xfa\xff\x79\x3f\x70\xeb\x6a\x40\xdf\x7f\x94\x8a\x8f\x53\xc4\x3e\x52\xb3\x2d\x2f\xf3\x19\x3d\x58\xc0\x9e\x3e\xcf\xbc\x94\xf5\x37\xd3\x34\x49\xe9\xa1\x95\x86\x74\xa1\x78\x3b\xbd\x6b\x09\x46\xcf\x7c\x6a\x12\xcd\xe1\xaf\x46\x49\x75\x4a\x6c\x58\x75\x7d\xd5\x46\xc7\xd0\x28\xda\xcf\xcb\x69\xeb\x09\x0c\xc6\xed\xd1\xd4\xb8\x19\xfa\xa9\x2e\x12\x75\xe0\x51\x74\xd5\x99\xc0\x2c\x60\xdd\x18\x2a\xd2\x24\xc3\xf3\x3d\x75\x43\x16\xc8\x2e\x98\x50\x64\xa0\xeb\x85\x82\x5b\x7c\xf4\x76\xc2\xea\x0d\xbb\xae\x3d\x1c\xeb\x52\xb7\x88\x55\xe4\xc8\x11\x62\x73\xc5\x9b\xe9\x92\x02\xa7\x48\xbb\xd9\x92\xc1\x98\xee\x69\x67\xa6\x17\x49\x4e\x89\x33\x23\xbd\x8e\x24\x6a\x1e\x4e\xb3\x77\xc9\x39\x78\x04\xd6\xe3\xc5\x10\x28\x3e\xfb\x0c\xdf\x6a\xe2\xe0\xfe\x83\x4a\x8c\x71\x9d\x53\xab\xc3\x6f\xb5\x1e\x71\x12\x9c\x51\x20\x64\xad\x03\x94\x42\xab\xb7\xf5\x6a\x37\xad\xde\xb3\xb7\x34\x33\x5f\x2d\xc3\x94\x63\xc7\x4a\xd1\x76\x48\x00\xed\xe5\x5e\x20\x23\x49\x17\xa3\x53\xba\x2f\x5d\x60\xdb\x34\x62\x1b\xae\x87\xbc\x99\xf5\xe5\x75\xe5\x98\xe3\xbb\xce\x38\xae\x9e\x9a\x2d\x0b\x86\xab\xe9\x2d\x45\x33\xfd\xe2\xb5\xc0\x63\x81\xac\x8e\x00\x7c\x07\x17\xb1\x4d\x70\xa1\x81\xd9\x1a\xbb\x48\xe8\x7d\xa7\xfa\x26\x6e\x8c\xf9\xf0\xb5\x74\x2d\x9b\x6f\x6e\x2a\x54\x1a\x42\x22\x2c\xf7\x2e\xa9\x55\x76\x53\xb8\x05\xc8\x21\x99\x7c\x8e\xe8\xa8\x7d\x3f\x0f\x96\xb7\xec\x9e\x86\x54\xdf\x8d\xe2\x3b\x5f\x42\x56\x98\x7b\xf1\x76\x73\xfd\xce\x82\x23\xc9\x2d\x94\xa8\xb1\x8a\xd2\xbb\xae\xed\xb6\x37\xd0\x0e\xbd\x59\x8c\xe5\x42\xbf\x84\xae\xb8\x58\x22\xf6\xb1\x53\xb9\xe2\x7b\xe7\xc0\x5b\x77\x7e\x05\xf3\xff\x6d\x2f\x4c\xf8\x74\x25\x91\xdf\xcd\x7b\xab\x64\x93\x9e\x8b\x98\xf7\x7c\x67\xbf\x7a\x4f\xb3\x53\xdb\x39\xd8\xfa\x7e\x4e\x67\x62\xd2\xe5\xab\x53\x81\x6d\x1d\x76\x6f\x43\xb7\x79\xdd\xb5\x81\x6f\xfb\xb5\x97\xd8\x7a\x03\x65\xb4\x6d\x92\xcd\xe3\x4e\x30\x2f\xa0\x8b\xc6\x57\x48\x2a\x7a\x7b\x47\xfc\x02\xeb\x88\xfe\x3c\x5e\xbf\xda\xe6\xcb\xf2\x3f\x41\xe8\x4d\xc1\x78\x8f\xf3\x6c\xfa\xc8\x20\xab\xe1\x7c\x82\x14\xa6\x2b\x23\x4d\x89\xd3\x3c\x8e\x29\xce\x50\x33\xdf\x43\x73\xe6\x0f\x93\x20\xe4\x5f\x05\x34\x2a\x15\x74\xe1\x89\x76\x1e\x57\x47\xb3\xe9\xf2\x2b\x47\xe4\xae\x14\xd4\x88\x7f\x06\xd0\x44\x5d\x4d\xf7\x99\x1b\x66\x46\x2f\x38\x03\x4e\x2c\x21\xc5\x66\xa5\x77\xd2\xc8\xb9\xd1\x2d\x1a\xcf\x51\x84\x9f\x9a\xed\x09\xf3\xaf\xc7\xda\xd1\xf6\xe7\x06\x9f\x54\xf9\x53\x02\x7a\x2f\x14\xd1\x05\x3c\x5d\xce\x17\x52\xe8\x87\x06\xae\x6e\x77\xb9\xfd\x2e\x41\x07\x1f\xd3\x7b\xd3\x66\x3a\xcb\x35\x11\x24\x5f\xe6\xbc\x07\x1b\xf9\x10\x35\x87\x98\x2a\xff\xea\xc3\x12\xd6\x9d\x7a\x3d\x8f\x53\x62\x51\x8c\x53\xbd\x9e\x79\x33\x45\xe9\x92\x32\x39\xe7\xfb\x24\x5e\x67\xf4\x30\xab\x2b\x7f\xc1\xf4\x35\x48\x7c\xc5\x0d\x24\x6d\x77\xbf\xf1\xb0\x71\xdf\x68\xda\x5d\x0a\x3d\x06\x53\x67\x7a\xa5\xb0\xf9\x61\x84\x7e\xb5\x4b\x66\x5e\x22\xc2\xfb\x77\x59\x23\xea\x03\x26\xb7\x00\xe5\x73\xb8\x5b\x3d\xe3\x39\x56\x3e\xe7\x70\xd7\xb5\xc6\x6e\xdb\xea\x74\xb6\x83\xfb\xbb\x01\x98\xf9\x55\xf5\xbd\x19\x19\xa0\x82\x7f\x40\x7b\x4a\x58\xbf\x8d\xf6\x33\xbf\xd0\x1d\x15\xd1\x5a\xfd\xe7\xe1\xfe\x23\x8a\xae\xcd\x01\x37\xc8\xb8\x3e\x71\x6a\x5f\xcd\xeb\xad\x01\xfd\x3d\x7d\x52\x0b\x64\xbd\x6d\xd6\xa6\x69\xbd\x63\xd7\xe2\xa8\x3e\xe8\xd5\xa2\xeb\x7a\xef\x69\x2d\xcd\xeb\xf6\xa4\xf6\xc2\xab\xff\x68\x54\x93\xaa\x6e\x3a\xb5\x65\x56\x3f\xb1\x6b\xcb\xa8\x3e\xea\xd5\x2e\x67\xf5\x93\x6e\x0d\x8b\x5a\x63\x7e\xc3\x4b\xb2\x4d\x44\xe7\x50\xcd\x6b\xbf\xfa\xb7\x1f\x7f\xfb\x5f\x7f\xf5\xed\xcf\xff\xf5\xbb\xbf\xfe\xf3\xda\xaf\x7e\xf1\xf5\xff\xfc\xf3\x4f\x8a\x2f\x6d\x99\x67\xca\x9f\xd7\x3a\xa9\x17\x7f\xf3\x4f\x5e\xa8\x6a\x03\x89\xa2\x1e\xdc\x2c\x50\xb5\x9e\x97\x5d\x87\xf2\xbf\xff\x21\xaf\xbd\xfe\xfb\x37\x7f\xf6\xe6\xeb\x37\x5f\xbf\xfe\xe5\xeb\x9f\xbf\xfe\x45\xed\xbb\xbf\xf9\xc7\xef\xfe\xf6\x5f\x7e\xfd\xd3\xbf\xab\x99\x6a\xe9\x7d\xf3\xb3\x24\xaa\x8d\x40\x53\xf3\x59\xfe\xcd\x4f\x15\xc8\x8c\x38\x49\x3d\x15\x52\x63\xa4\xae\xc2\xda\xeb\x9f\xbd\xf9\x8b\xd7\xff\xf9\xfa\x3f\x5e\xff\xfb\x9b\x1f\x6b\x19\x35\x2b\xf3\xa2\x90\xa8\xa3\xa6\x5e\x01\x1f\x03\x39\x01\x11\x41\x14\x73\x57\x08\x68\x0c\x14\x85\x0a\x49\x54\xf1\xdc\x60\xa4\x18\x31\x83\xe1\xc2\xe3\x57\x73\x83\x31\xe3\xc7\xfa\xf8\xcc\x60\xec\xf8\xa7\x37\x06\x03\x48\xae\x97\x1a\x8c\x22\x1e\xe3\xc8\x60\x28\xe9\x17\x30\xd7\x06\xe3\x49\x2f\xbf\x73\x83\x41\xc5\xe3\x0b\xcf\x60\x64\x69\x15\x65\x30\xbc\x78\xe4\x4f\x83\x61\xa6\x6f\x91\xc1\x58\xd3\x2f\x77\x66\x06\x03\x4e\xc5\x48\x46\xb7\x6e\x14\xc1\xe0\x75\xa7\xc3\x33\xb7\x03\xb6\x0a\xee\x76\x62\xeb\xf7\xfd\xeb\x18\xf0\xbf\x01\x00\x00\xff\xff\x09\xe2\x44\x92\x24\x25\x00\x00") func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -127,7 +127,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 9251, mode: os.FileMode(420), modTime: time.Unix(1439479286, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 9508, mode: os.FileMode(420), modTime: time.Unix(1439835459, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -712,7 +712,7 @@ func confLicenseMozillaPublicLicenseVersion20() (*asset, error) { return a, nil } -var _confLocaleTranslators = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x4c\x91\xcf\x6e\xd4\x40\x0c\xc6\xef\xf3\x14\x96\x7a\x66\x54\x21\x71\x40\x8a\xa2\x09\x8b\x28\xa5\xdb\x82\xb4\x45\x88\xa3\x9b\x38\x19\x93\xf9\x13\x66\x26\xdb\x6d\x6f\xbc\x14\x2f\x80\x78\xaf\x3a\xd9\xae\xda\x43\x22\xfb\x17\xc7\xfe\x3e\xfb\x0c\x6e\x2d\x67\xe8\xd9\x11\x38\xce\x25\x03\x3a\x07\xdf\xbe\x7f\xd8\x5e\x6e\x80\x43\xc7\x7b\xee\x66\x74\x19\x2c\xee\x39\x0c\xd0\xc6\x50\x12\xdf\xcd\x85\xba\x35\xa6\x50\xa0\x44\x28\x96\xa0\x24\x0c\xd9\x61\xe1\x18\xb4\x3a\x83\xaf\xa9\xa3\x04\xb1\x87\x80\x9e\x40\x66\x78\xc2\x20\x2d\x1c\xe5\xac\x95\x6a\x46\xb6\x9c\x22\xfc\x6c\x2e\x9a\x5d\x73\x75\x09\xd5\x03\x0e\xc3\x43\x29\x94\x8c\x8f\x9e\x71\x20\xdd\x46\x5f\xab\xc6\xd1\x01\xc3\xd2\x6b\x57\x88\x83\xfd\xf7\xb7\x97\xb8\x1a\x65\x38\x8e\xc5\xb8\xc3\x9b\xac\x3b\xaa\xd5\xc6\x26\xd1\x1f\x27\x0b\x57\x9c\x7b\x72\x1d\x54\xed\x09\xe9\xf1\x88\xcc\xe0\x91\xdd\xb1\xef\x47\x51\x43\x0e\x76\x13\x71\x6b\x29\x15\xa8\xba\x95\x98\x7c\x22\x7a\x72\xb5\xfa\x3c\xb3\xe7\x00\x3f\x50\xcc\x57\xf7\xf2\xb6\xfe\xed\xf9\xf9\x7b\x63\x63\x79\xee\xa5\x7f\x4d\xb5\x62\x37\x46\xa8\x68\x41\xb5\xba\xb5\xd1\x63\x86\x4f\x18\x16\xc3\x8b\xda\x21\x0e\x59\x97\x15\x9b\xfe\x84\x35\x96\x5a\xfd\xff\x33\x8f\x98\x1f\xe1\x0b\x06\xb8\x61\xf2\xbc\x94\xbb\x95\x99\x70\xcc\x57\x1d\x5b\xec\x13\x8f\x59\xbe\x1d\x83\xd7\x56\xb6\x73\xbb\x2c\x67\x92\xfa\xfb\x3c\xf2\xf2\x7f\x6b\xf2\x0b\xd0\x7d\xaa\xd5\x35\x0f\xb3\xf8\xed\xe4\xce\x08\x9b\x34\x3f\x42\xe5\x57\x64\x7c\x9b\x0e\xda\xcb\x0a\x6f\xb0\x88\x8a\xc6\xdd\xcd\xbf\x67\x4a\xf2\x40\x15\x16\x84\x2f\xe4\xdd\xeb\xb9\xd7\x98\x64\x70\x6b\xd9\xb9\x45\xb5\x97\xd4\xe4\xe7\x54\xb3\x14\x5c\x24\x1a\xa2\x1c\x0e\x43\x09\xeb\x1a\x3a\xda\x1b\xc7\x7b\x5a\x2f\xf6\x14\x00\x00\xff\xff\x12\x0d\x30\x0c\x7c\x02\x00\x00") +var _confLocaleTranslators = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x54\x92\xcf\x6e\xd3\x40\x10\xc6\xef\x7e\x8a\x91\x7a\x66\x55\x21\x21\x81\x64\x59\x6b\x8a\x28\xa5\x49\x41\x4a\x11\xe2\x38\xb1\xc7\xde\xc1\xfb\xc7\xec\xae\xd3\xb4\x37\x5e\x0a\x71\xaf\x78\x2f\xc6\x4e\x43\xc3\xc1\xd6\xec\xcf\xe3\x6f\xbe\xf9\xb4\x67\x70\x6b\x38\x41\xc7\x96\xc0\x72\xca\x09\xd0\x5a\xf8\xfc\xe5\xed\xea\xea\x02\xd8\xb7\xbc\xe3\x76\x42\x9b\xc0\xe0\x8e\x7d\x0f\x4d\xf0\x39\xf2\x76\xca\xd4\x2e\x35\xf9\x0c\x39\x40\x36\x04\x39\xa2\x4f\x16\x33\x07\xaf\x8a\x33\xf8\x14\x5b\x8a\x10\x3a\xf0\xe8\x08\x64\x86\x23\xf4\x22\x61\x29\x25\x55\x14\xf5\xc0\x86\x63\x80\x6f\xf5\x65\xbd\xa9\xaf\xaf\xa0\xbc\xc7\xbe\xbf\xcf\x99\xa2\x76\xc1\x31\xf6\xa4\x9a\xe0\xaa\xa2\xb6\xb4\x47\x3f\x6b\x6d\x32\xb1\x37\x8f\xbf\x3a\xa9\xcb\x41\x86\xe3\x90\xb5\xdd\xbf\x48\xaa\xa5\x7f\x7d\x91\x60\x8d\xbd\x0f\x50\xe2\x11\x28\xb7\x75\xba\x77\xc8\xf6\xa0\x78\x61\xa2\x6c\x1a\x46\x03\xd7\x9c\x3a\xb2\x2d\x94\xcd\x11\xa9\xe1\x80\x4e\xfb\xdf\x89\x6f\xb2\xb0\x19\x89\x1b\x43\x31\x43\xd9\x2e\x44\xa7\x23\x51\xa3\xad\x8a\xcb\x48\x7d\x10\x97\xe8\xb3\x9f\x1d\xf6\x2d\xed\xb4\xe5\x1d\x2d\xf6\x3e\x4c\xec\xd8\xc3\x57\x94\x10\xcb\x3b\x79\x1b\xf7\xf2\xfc\xfc\x8d\x36\x21\x3f\x4d\x52\xdf\xc7\xaa\x60\x3b\x88\x75\x9a\x51\x55\xdc\x9a\xe0\x30\xc1\x7b\xf4\x73\x70\x8b\x66\xe8\x93\xca\x0b\xd6\xdd\x11\x2b\xcc\x55\xf1\xe7\xe7\x34\x60\x7a\x80\x8f\xe8\xe1\x86\xc9\xf1\xdc\x6e\x17\xa6\xfd\xe1\xbc\xb8\x5c\x61\x17\x79\x48\xf2\xed\x50\x9c\x2e\xba\x9a\x9a\x39\xe4\x51\xfa\xef\xd2\xc0\xf3\xff\x8d\x4e\xcf\x40\x75\xb1\x2a\xd6\xdc\x4f\x92\x46\x2b\xf7\x05\xe1\x22\x4e\x0f\x50\xba\x05\x69\xd7\xc4\xbd\x72\xb2\xeb\x1a\xa3\x08\x35\x86\xad\x9d\x5d\x38\x39\xea\xf4\x74\x54\x2c\x83\xd6\x21\xca\xcd\x81\xcd\xe3\xef\x48\x3e\x49\x55\x0e\x96\xdd\xeb\xff\x52\xbf\xc1\x2c\xab\xd4\x76\x3b\xfd\x98\x28\xca\x03\xa5\x9f\x11\x3e\x93\x57\x27\xfd\x7f\x03\x00\x00\xff\xff\x04\xe3\xf7\xf9\xc9\x02\x00\x00") func confLocaleTranslatorsBytes() ([]byte, error) { return bindataRead( @@ -727,12 +727,12 @@ func confLocaleTranslators() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/TRANSLATORS", size: 636, mode: os.FileMode(420), modTime: time.Unix(1439571009, 0)} + info := bindataFileInfo{name: "conf/locale/TRANSLATORS", size: 713, mode: os.FileMode(420), modTime: time.Unix(1439724924, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_bgBgIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\x7d\xed\x8e\x1c\x55\x96\xe0\x7f\x4b\x7e\x87\xc0\x2b\x4b\x20\xd9\x89\x68\xb4\xab\x15\x72\x99\x65\xa0\x07\x58\x61\x60\x31\x68\x56\x42\x28\x3b\x2a\x33\xaa\x2a\xc6\x99\x19\xd9\x11\x91\x2e\xaa\x7f\x95\x6d\xc0\x80\xb4\x63\x86\xee\x9e\x46\x0c\xd8\x98\xde\xee\xd9\xd1\xfc\x49\x97\x2b\xa9\x74\x95\x2b\x2d\xf5\x13\x44\xbe\x42\x3f\xc9\xde\xf3\x75\xbf\xe2\x46\x64\x9a\x99\xfd\xb7\x92\xe5\xaa\x8a\xb8\xf7\xc4\xfd\x38\xf7\x7c\x9f\x73\xe3\xf1\xb8\xdb\x4f\x8a\xde\x46\xf5\xc7\xea\xb0\x5a\x54\x0f\xaa\xd3\x6a\x1a\x2d\x6f\x2d\x6f\x54\x27\xcb\x5b\xd5\x43\xf5\x47\x75\x04\x4f\x6e\x54\xd3\xea\x71\xb5\x58\xde\x58\xde\x54\xff\xdf\x51\xff\xcf\xaa\x13\xd5\x78\x1e\xbd\x9e\x96\x76\x87\xf9\x85\x08\x60\x54\x4f\xaa\x39\x76\x02\x78\xf8\xdf\xeb\xd9\xd9\x33\x67\xcf\xec\x64\xc3\x64\xa3\xfa\xbe\x9a\x2e\x6f\xab\x97\x27\xd5\xe2\xec\x99\x7e\x5c\xec\x6c\x66\x71\xde\xdf\xa8\x7e\x54\xcf\x1e\xd0\xd3\xe4\xe3\xf1\x20\xcb\x55\xdb\x1f\xd4\xb3\x23\x05\xf8\x44\x7d\xf1\x50\xfd\xfe\x48\x01\x49\x06\xe3\x8d\xea\x9e\x1a\x2f\x0c\xe9\x8b\xb3\x67\x8a\x74\x7b\xd4\x4d\x47\x1b\xd5\xd7\xaa\xd9\x1c\x46\xac\x3e\x39\x53\xcf\xb3\x5e\x1a\x0f\xba\xe6\xf5\xf2\x53\xd5\xe9\x30\x5a\xde\x5e\xee\x2b\x70\x47\x30\xaf\xc5\xf2\x33\xd5\x65\x8a\xb3\x51\x43\x7d\x8c\x6f\x7e\xaa\xa6\x2f\x45\xbf\xe8\x44\x30\xdf\xe5\x97\x6a\x32\xc7\xea\xdd\xa5\x62\x18\x0f\x06\x97\xd5\xd8\xa5\xd7\x5c\x35\xc6\x4f\xd1\x14\xd5\xef\xaa\x9d\x5a\x86\xd3\xe5\xcd\x4b\xcf\x53\x6b\x1e\x5c\x36\x29\x37\xaa\x6f\xd4\xc8\xdc\xf1\xc1\xab\xc9\x18\x26\x39\x83\xb5\xc3\xcf\xed\x33\xd8\x47\xb0\xc8\x30\x42\xd5\x30\x4f\xb6\xd3\xa2\x4c\xf2\x70\x4b\x84\xb5\x9b\x6c\x16\x69\x99\xc0\x4e\xce\xaa\x07\xb8\xf6\x0a\xc2\xd9\x33\xd7\x93\xbc\x48\x33\x5c\x9b\xd9\x72\x5f\x3d\x9f\x2f\xef\x9c\x3d\x33\x8e\xb7\x55\xd3\xfb\x08\x04\x00\xcc\xd5\x7c\xa6\x67\xcf\x94\xc9\x70\x3c\x88\x01\xca\xff\x91\xad\xa8\x4e\xcf\x9e\x19\xc4\xa3\xed\x09\xf6\xf8\xbd\x1a\xfc\xbc\x3a\x86\xad\x9c\x14\x49\x3e\x8a\x61\x3b\xd5\x4e\x20\x20\xf5\x5d\x05\x08\x51\x43\x7d\xe7\xb8\x5a\x44\xaa\xed\x63\x18\x5c\x32\x8c\xd3\x01\xf4\x86\x5d\x3c\xc6\xc6\x0a\x30\x2d\xda\x13\xd8\x43\xf8\xf8\x38\x2e\x8a\xdd\x0c\xf0\xe0\x9e\x5a\x45\x68\x71\x02\x8f\xf3\xa4\x5b\xee\x8d\x13\xd8\xbd\x2f\xab\x03\xc4\x82\x19\x2e\x0d\x7c\x55\x81\x58\xa8\x87\x0a\x61\x7a\xf1\xb8\xec\xed\xc4\x1b\xaf\xd2\x4f\x18\x61\x9e\x8c\x33\xb5\x26\x59\xbe\xb7\x51\xfd\x49\x26\x0a\x3b\xa0\xbe\xa7\x06\x95\xe5\xdb\xf1\x28\xfd\x4d\x5c\xe2\xf2\xdc\x55\x0d\x1e\x72\x13\xb5\x41\xb0\xbf\xb0\x50\xc3\x34\xcf\xb3\x7c\xe3\x0a\xfe\x38\x7b\x66\x94\xec\x76\x01\x2c\xe0\x30\x7e\x38\x5a\x7e\x5a\x87\x0c\xad\x86\xe9\x76\x8e\x2b\x49\x0d\x01\xb5\x54\x93\x87\xd0\x58\x60\x43\xb3\xad\x2c\xbf\x06\x1b\xf1\xa5\xfa\x28\xa0\xf7\x81\x83\x50\x38\xbb\x68\xf9\x89\x9a\xea\x7e\x75\x4c\x0f\xeb\x1f\x84\x33\x49\xd0\xd4\x94\xac\x0f\x2e\x1a\xa6\x14\x8f\xd4\x5e\x52\xdb\x3f\x56\x4f\x10\xda\x01\xee\x0c\x34\x94\x4f\x07\x3a\x57\xf3\xb3\x67\xe2\xfe\x30\x1d\x75\xc7\xf1\x28\x51\xfb\xf9\x95\x1a\x32\xcc\xea\x14\x76\x11\xc7\x5d\x9d\xa8\x26\xbd\x5e\x36\x19\x95\xdd\x22\x29\xcb\x74\xb4\x5d\xd0\x79\xbf\xc1\xbb\xfe\x48\x21\xc6\x9c\xbf\x01\xdf\x5e\xa8\xd9\xcd\x69\xa7\x5b\x3a\xc0\x76\xaa\x09\x16\xdd\xad\x24\xe9\x03\x22\x3d\x46\xfa\xa2\xe6\xc3\x8b\x04\xa3\x80\x66\xe3\xc9\x60\xa0\x76\xe8\xd7\x93\xa4\x28\x8b\x8d\x77\xd5\x5f\xd1\x7b\xfc\xd7\xd9\x33\x69\x51\xa8\xdf\x14\x7e\x21\xe0\x07\x38\xe7\xc7\x04\xbc\x17\x8f\x7a\x30\xa5\xbb\x6a\x31\x8f\x81\xe4\xc0\xc3\x0f\x8b\x24\xce\x7b\x3b\x1f\xc1\xd0\xe0\x17\x45\xa1\x96\x5f\xe2\x21\x82\xb5\x9a\x75\x3a\x9d\x95\x48\x06\xa7\x24\x78\x42\x78\x34\xde\x60\xd4\x40\xb2\xbe\x7a\xf8\x2d\xd0\x29\x1c\x42\x3a\x2a\x4a\x45\x48\xd4\x18\xf8\x37\xa0\x23\xa7\x48\x88\x81\x68\xe9\x5d\x2d\xd3\x72\xc0\x47\x9a\x08\xd6\x9c\x48\x37\x2c\x8c\x6e\x6d\x11\x2c\x58\xfb\x39\xfc\x50\x13\x02\x44\x86\x1d\x61\xa2\x7c\x0a\x68\x8d\x5d\xd4\x5c\x6f\xda\x44\x06\x16\x56\x11\x99\x6e\x7f\x93\xd8\xc6\xeb\xd9\x76\x11\x21\x82\xcc\xf1\xc4\x03\xda\x5d\xd9\xbb\xfa\x3f\xde\xba\x10\xbd\x9b\x15\xe5\x76\x9e\xa8\xdf\x23\x5a\x8f\x48\xfd\xaa\xfa\xbe\xa8\xd6\x4c\x75\xe7\xe1\x36\x61\xc6\x03\xa4\xfa\x53\x18\x43\x84\xe7\xe2\x94\xb6\x17\x7a\x22\x31\xf8\x51\x01\x7d\xe2\x36\x76\x1a\xee\xa8\xcf\xab\x0d\x21\x96\xd5\xba\x0d\x0d\x64\x47\x7d\x89\xa8\xdb\x37\x40\xc2\x5a\xbe\xa4\x1a\x02\x43\x02\xf8\xdf\x41\xe7\xe5\x9d\x0b\xb4\x24\x4f\x10\xd4\x11\x1e\x69\x22\xe6\x6f\xbe\xfd\xf6\x3b\xaf\xfd\x4d\x94\x8c\xb6\xd3\x51\x12\xa9\x35\x8e\x26\xe5\xd6\x7f\xed\x6e\x27\xa3\x24\x57\x7c\xaa\x97\x46\x8a\x72\xe5\xea\x18\xd0\xd6\xe1\x4a\xaa\xe5\x2a\x8a\x41\x77\x88\x68\xf1\x03\xf2\x26\x45\x54\xa3\xab\x57\xdf\x82\xa1\x97\x3b\x80\x40\x5f\xc2\x14\x8b\x5f\x0f\x60\x6b\x64\x2c\xea\x29\x50\x8c\x63\xf5\xe3\x31\x50\x10\x35\x06\x98\x18\x4d\x84\xb7\x22\x34\x21\xf5\xbd\x24\xcf\xbb\x8a\x11\x94\x7b\x5d\x86\x69\x7d\x07\x78\x3f\x8d\xae\x0e\xc3\x05\x14\x11\x9e\x29\x16\xad\x86\x3c\xc3\x17\x91\x20\x1e\x74\x50\x47\xa8\x03\x18\x2e\xb3\x67\x8c\xb8\xab\x98\xd7\x17\x8c\x07\x21\xd4\x00\x94\x53\x34\x46\x09\x2e\xf5\xed\x41\x7a\x42\x34\x56\x3d\x45\xec\x31\x4d\xcd\xca\xb0\x1c\x03\x54\x6f\xce\x2c\x0a\x48\x28\x93\xd7\x9b\x70\x1a\x50\xc4\x69\x22\xa1\xaa\x8d\x62\xf2\xc7\xd1\xc5\x48\xbd\xc3\x1d\x87\x59\xe2\xe4\x8e\x01\xbb\x96\x5f\xa8\xee\x5f\x54\x8b\x67\x88\x3a\xf0\xf2\xdd\x55\x27\x84\x48\xd5\x0c\x09\x26\xac\xa6\xde\x9f\x06\x9a\xae\xbb\xeb\xc1\x7f\x8d\x54\xef\x36\xad\x07\x30\xc0\x43\x3c\xb2\x33\xf5\x08\xe9\x77\x1d\x94\x9a\xd2\x17\x30\xb4\x07\xea\x4b\x87\xb0\x28\x70\xb6\xbf\xd4\xcd\xa8\x17\x70\x99\x9b\xb8\x2d\x73\xa2\xe5\x28\xf2\x00\x79\x9b\x28\x09\x05\x0e\xcf\x7b\x93\x51\xf4\x81\xfa\xc5\x3c\x92\x31\xbd\xbf\x93\x44\xf0\x77\x34\x9c\x14\x65\xb4\x13\x5f\x4f\x22\xc5\x02\x92\xa2\x88\xca\x4c\x11\x5f\x21\x8f\xd1\x7b\x59\x56\x46\xef\xaa\xc9\x44\xf1\xa8\x1f\x29\x28\xb8\x97\x40\x0e\x32\x25\x1e\x28\x16\xfc\x3b\x94\xe8\x66\x6a\xb7\x4f\xe5\xa1\x9e\xf7\x8f\xc2\xd4\x0e\x70\x5a\x77\x64\xcf\x3f\x78\xef\xad\x8b\x6a\xb8\x87\xb8\xee\x37\x34\x16\x1e\x93\xe8\xe2\x10\x3c\xb5\x45\x57\xaf\xbe\xa1\xbe\xb7\x53\x96\xe3\xee\x38\xcb\xcb\x8d\x37\xde\x7f\xff\x5d\x92\x40\xf6\xe1\x08\xe9\x17\x0e\xae\xa8\x57\x17\x18\xc1\x8e\x01\x17\x09\x57\x02\xb8\x46\x0b\x4d\xa2\xf0\xf2\x73\x5c\x3e\x40\xbe\x49\x3e\xd8\x50\xc3\x5c\x85\xa3\xaa\x99\x33\x5b\xd9\x0a\x6e\x39\x03\xc2\xbe\xdc\x0f\x2d\x00\xfd\x02\x73\x79\x1e\xfe\xbb\x1a\x51\x4f\x35\x7f\xd5\x0c\x86\xfc\x50\xce\xbd\xbb\x52\xf8\x64\x56\x97\xc9\x08\xf5\x59\x2e\xc3\x33\x9a\x8d\x41\x48\xb2\x0f\xe9\x13\x14\x08\x90\x6b\xb0\x22\x50\x3f\xb0\x2c\xf7\x35\xd1\x7a\x19\x01\x6d\xf9\x89\xa3\x76\xd0\xb2\x14\x43\xb5\x1f\x48\xc9\xaf\x5e\x51\x1b\x05\xd2\x3b\x91\x73\x7c\xb1\x95\x67\x43\x64\xd8\xd6\xdf\xd6\xc6\x01\x47\xc2\x63\xb9\x80\x73\xa6\x27\x7e\x21\x7a\xef\x6f\x5f\x8d\xfe\xf3\x8b\xbf\x50\xe2\xbd\x62\xe7\x77\x7c\x0a\x45\xc7\x64\x66\x86\x65\xba\x0a\x23\xc3\x61\x47\x97\x22\x9c\xdd\x7f\x4b\x3e\x8e\x95\xd0\x9c\x74\x7a\xd9\x30\xba\x2c\xb2\x1a\xee\x6c\x07\x64\xad\x74\xa0\x4e\x0a\xb1\x9f\xaf\x0c\xa0\x53\xe2\xcc\x47\x44\x0d\x61\x9d\x81\xf7\xea\xf6\x41\x9e\xd4\xdc\x4b\xd4\x83\x6e\x2f\x1b\x6d\xa5\xf9\x10\x84\x7d\x75\x02\x96\xff\xa0\x5e\x13\x2a\x00\x55\x43\x4e\xff\x13\x4c\x8e\x04\x3d\x8b\xe6\xed\x3b\x5a\x05\x0b\x7b\xc0\xb2\x68\x44\xdd\x51\x56\xa6\x5b\x7b\x1e\xd8\x05\xe2\xd8\x01\x4c\x08\xf8\x82\x88\xae\x7c\x3c\xf8\x3f\x1c\x24\x6d\x66\x92\x2b\x5d\xa4\x0b\x3f\xd2\x5e\xb2\x42\x00\x40\x12\xb5\xcf\x63\x9e\x22\x42\xab\xb5\x23\x0d\xd3\x51\x37\x15\x6e\x6e\x6d\x0d\x14\x3b\x65\x0e\xe9\x8e\x50\xed\xc6\x09\x72\xbe\xd3\x88\xf5\x3a\xa0\xf6\x53\xb7\x93\x3a\xf1\x63\x50\xc2\xfe\x00\x2a\x8f\xd0\x0b\xe4\xd7\xaf\xbe\xf6\x36\x60\xc5\x82\x44\xa5\x03\x0b\x46\x34\xce\xb3\xfe\xa4\x07\xa7\x42\xd1\x86\x03\x8b\x28\xd3\x0e\xab\x21\xee\x23\xbd\x9f\x1b\xde\x8b\x6b\x55\x23\xc6\xaa\xf3\xbe\x9a\xa5\x90\x6f\x6c\x77\x2c\x62\x18\x10\xc7\xb4\x88\x37\x07\x49\x97\xf6\x38\x67\x6d\x05\x54\x49\x33\x51\xad\x9e\x07\xf6\x91\x38\x59\x18\x8e\xcc\xdc\x85\x46\xf8\x12\xd0\xe7\x98\xc8\xb5\x7e\xec\x82\x7e\x8f\x07\x87\xd4\x03\xab\x11\x98\x0f\xf6\xbd\x33\x07\x9b\x6d\xd4\x1f\x57\x2d\x98\x77\x58\xea\x54\x6a\x20\xeb\xf1\xdd\xeb\x69\xb2\x4b\x83\xd6\x52\x67\xf5\x08\x08\x23\x19\x1d\xb4\x0a\x75\x24\xc0\x66\x62\x3f\xd0\xc8\x65\xeb\xbd\x8c\xe8\xa1\xaf\xc8\x02\xdd\x97\x29\x1d\x58\x86\x8d\xf0\x4a\xc1\xe3\xc7\x44\x73\x61\x77\x0f\x89\x67\xcd\xf1\xe0\x31\xf3\xad\x7d\xfc\x02\x41\xba\x81\x68\xa7\xe1\x90\x92\xeb\xf6\xe5\x71\x84\x80\xb0\xa5\x26\xb8\x2b\x78\x80\x0e\xc8\xfa\xd1\x11\x25\x8e\xd5\x2d\x36\x00\x7d\x8f\x52\x8c\x1a\xec\xf7\xea\x60\xfd\x44\xe3\xae\x6f\x0e\x7d\xa8\x71\x63\x71\x3b\xe6\x8e\x21\x04\xce\x0d\x2e\x08\xd0\xd3\x53\xc4\xa0\x8b\x61\x14\xbb\x03\x02\xf1\x9b\xaf\x45\x2f\x10\xf3\x02\x26\x7a\x5b\x50\x62\xe5\x17\x0f\x89\x35\x80\xee\x03\xad\x0f\xe0\x2d\xf3\x57\x38\x99\x74\x96\x68\xde\x2b\x54\x0f\x6b\xec\x36\xdb\x0c\x7f\x1e\x99\x37\x42\x5d\xd7\x14\x22\x0a\x74\x50\xe9\x60\xfa\xed\xbc\x0e\xd2\x6e\x11\x26\x4c\x67\x16\x24\x10\xfa\x5a\xe6\x16\x56\x27\xbb\xdb\x19\x68\xdc\xdf\xd4\xb4\xc4\x47\x2c\x6a\x97\x4a\x77\xee\x6e\xa7\x65\x77\x0b\x78\x53\x1f\x16\x6e\x86\x14\xf8\x89\xfa\xf9\xa9\x28\x92\x30\x57\x04\xe0\x70\x01\xf8\xe2\x39\xd5\xf7\x1c\x89\x4e\x8f\xf1\xdd\x21\x18\xd7\xce\x5f\x17\x8d\xe5\x45\xe0\x2e\xdd\xf8\xba\x82\x0e\x04\x0a\x48\xf8\x14\xa4\x27\x5a\xfe\x03\x63\xb5\x8a\xb4\x1c\xa7\x40\x1c\xf2\x8a\x68\x3d\xe4\x02\x61\x99\x56\xbf\x70\xf1\xf1\xd8\x8b\xb1\xe8\x13\x3a\x2b\x62\xeb\x13\xdd\x12\x74\xdf\x39\xd1\x5f\xef\x73\x20\x38\x9c\x2f\x14\xb8\x29\x7d\x7a\x3b\xdb\x9c\xa4\x83\xbe\xd3\xaa\x03\x0b\x79\x3d\x1e\xa4\x7d\x50\x8a\xf9\x48\x05\x90\x8b\x06\xd1\xa2\xdb\xd2\x27\x48\x30\x13\x9b\xcc\x9c\x44\x2b\x5a\x2d\xf9\x8c\xa5\x52\xfc\x16\xb9\xdb\x01\xa2\x25\xea\x65\xac\x54\x1c\x35\x9a\x89\x22\x1a\xc5\x0c\xb7\x09\x6c\x91\x88\x51\xf4\x01\x2d\xd7\xc3\x7e\x0c\xe3\x12\xec\x1d\x21\x7c\xbe\x03\xdf\xb9\x85\xdc\x6d\x0a\xf2\x11\x22\x00\xf2\xad\x9f\x7c\xd1\x62\x06\xdf\xc3\x6e\xc7\xaa\xc7\x17\xb4\xac\x81\xb3\xaf\x06\x50\x44\x17\x2f\xab\xff\x15\x56\x28\x05\x82\x04\x99\xed\x76\x94\x43\x3b\xea\x13\x5c\x4c\xd7\x6a\x76\x8c\xa2\xef\x27\x68\x6e\xbb\xe5\xf2\x41\x77\x29\x1d\x3a\xd8\xb8\x69\x47\x3f\x83\x2a\xb4\xad\xb3\x1c\xbc\x62\x82\x5a\x12\xe9\x3d\x20\x78\xcc\x88\x8c\x7d\x0e\x1d\x9e\x51\x84\x18\x0f\x3a\x70\x85\x08\xb7\xf2\x10\x81\x3d\x06\x76\x01\xe8\x4a\x26\x9a\x19\x09\x84\x24\xb7\x00\xf3\x41\x9d\x2a\x42\xab\x12\xcd\xf9\x94\x25\x31\x6d\x8b\x50\xc3\x7a\x06\x4d\x4b\x60\x8c\xff\xe8\xec\x99\x09\x69\xc7\xd9\xa0\xdf\x60\x23\x71\x28\x98\x16\x82\xe7\x22\x21\x1b\x13\x8a\x05\xc4\x22\x6a\xc5\x6e\xaa\x70\xa9\xab\xed\xfc\xb0\xb9\x65\xf2\x71\x49\xa6\x2f\x58\x22\x91\x3d\x42\xdb\x48\xc8\x73\xc3\x5a\x76\x7e\xce\x1f\x38\x45\x02\xb9\x20\xf5\x95\x9d\x07\xc3\x3d\x3c\x25\x05\x59\x64\x68\x1b\xeb\x7a\x31\x90\xdb\x81\xa2\x39\x19\x08\x43\xd7\x13\xe9\x72\x1f\xcd\xcc\x8f\x99\x9c\x85\x55\x6a\xfc\x44\x96\x6f\x3b\x5f\x68\x32\x99\xaa\xa6\x64\x45\xf6\x5a\x5b\x4e\x0d\x5c\x27\xb5\x23\xec\xf5\xf8\x88\xcd\x8a\x75\x8b\x22\x35\x8b\x27\x25\x18\x25\x7b\x79\x12\x97\x49\x17\x0c\xbf\x6c\x73\x5d\x65\x49\xb6\xd1\xd8\x52\x1b\x76\x92\x31\x68\x1d\xc3\x62\x9b\xdc\x04\xb7\x69\x9b\x1f\x33\xbf\x0f\xcb\x14\x2f\x47\xaa\x2d\x48\x43\x9f\x33\x89\x25\x4c\xbd\x81\x6d\xa7\xcf\x68\xef\xcb\xba\x5f\xb1\xc5\x3e\x05\xfb\xbe\x66\x7a\x06\x3a\x03\x76\x45\x59\x50\x97\x94\xe6\x37\x2e\x51\x82\x27\x79\xe5\x27\x32\x8a\x30\xaf\x6c\x16\x8b\xb5\x41\x0a\xc9\x0b\xa2\x90\x36\xd1\x28\xd5\x37\x42\x6b\x14\x8c\xe2\xd4\x9e\x23\x1b\x6d\xda\xcf\xff\xa9\x88\xca\x60\x2f\x98\xd6\x04\x79\x58\x08\x64\xd2\x0d\x63\xfe\x79\x4a\xdb\x5a\xb3\x82\x8d\x1f\x26\xc3\x4d\x18\x42\x42\x6a\xcf\x13\x64\xce\xa7\x24\xbb\x2a\x21\x65\x4b\xe1\xb6\x62\x02\x46\x0c\x31\xba\x11\x43\x71\x64\x0f\xea\x90\xac\xdf\xe1\x65\xed\xfb\x52\xcc\x66\x77\xc3\x96\x39\x59\x5b\xd7\x68\xaa\x50\xa1\xdd\x3b\xa6\x31\xa3\xa3\xe5\x27\x52\x6e\x50\x73\x2d\x92\x51\xa9\xf1\xe3\x7b\x3a\x04\x73\xa3\xdb\x1f\x89\x48\x14\x94\xb1\x40\x51\x03\x74\xb4\x95\xee\x9b\x24\x28\x28\x42\x1d\x5d\xda\xbc\x7c\xbe\xb8\xf4\xfc\xe6\x65\x47\xf6\x20\x03\x0f\x8a\x08\x22\x7b\x90\xcc\x05\xe2\xaf\xa3\x46\xcd\x23\x64\x8b\x37\x89\x2d\x1e\x44\x6c\xe9\x71\xa4\x05\xd0\x74\x91\x48\x1c\xa0\xc2\x4f\x6f\xce\xf7\x81\x03\x80\x1f\x72\x7a\xc1\x98\x5d\x89\x21\xe2\x34\xd4\x99\x9c\xdb\x87\xea\x33\xdb\xe4\x13\x46\x9c\x8e\x76\xa3\x8a\xf8\xf8\x35\x7e\xf9\xc8\xf1\x96\xa2\x69\xd4\xa1\xfd\x71\x0f\x89\xe7\x5e\x36\xc9\x0d\x15\xfa\x0a\xa4\x4e\xd5\xea\xa0\xcd\x45\x4a\x96\x0b\xdc\xa0\x41\x3a\x4c\xcb\x55\xc7\x18\x05\xa2\x19\x49\x5f\x3e\xed\xf0\xb7\x74\xaa\x07\x20\xd3\x8b\xc4\x3a\x4f\xd2\xe1\x6d\x1a\x09\xe3\xd1\x8b\xe4\x9d\x3b\xa5\xdd\xb8\xa0\x57\x9d\x98\x0d\x1f\xba\x05\x52\xbb\x9b\xba\x93\xed\x7f\x04\xab\x62\x5c\x74\x27\x23\xc6\xc0\xa4\xaf\x8f\xf7\xa1\x3e\x05\xd4\x0d\x25\x4a\x6b\xe8\x20\x25\xd8\x18\x78\x48\x08\x36\x0f\x19\xa0\x9e\xd5\x28\xf7\x9c\x9a\xd0\x57\xc4\x96\x4f\x2d\x59\xc0\x28\x4e\x3e\x97\x5e\x85\xeb\x56\x7b\x19\x98\xaf\x08\x8a\xb0\x21\x07\x61\xce\x6c\xc5\x41\xff\x63\x14\x77\x8e\x35\xc5\x64\x84\xfc\x74\x79\x0b\xac\x1e\xb7\x50\x2f\x13\x45\xe4\x22\x06\x1d\xa8\xf1\x76\x18\x13\x64\xd5\xfe\x15\xd7\xcc\x00\x21\x83\xbb\x83\xeb\xce\x40\xf4\x79\x91\xfd\x68\xc3\x08\xcb\x9f\x95\x88\x75\xab\xab\x08\x17\xb0\xab\x32\xb1\x8c\xaf\xc1\x2d\xd0\x52\xed\x0d\x5e\x45\xf2\xe6\xc3\xfa\x44\xb8\x96\x68\x23\x76\x10\x1d\x8e\x16\xcc\x0d\xa6\x58\xae\x3f\x43\x6b\x2f\xb1\xc9\xb3\xf6\x04\x9f\xab\xcf\x10\xf6\xeb\xa4\x76\xe0\x6a\x2a\x22\x8d\xc2\x50\xea\xef\xd7\xeb\x26\x32\x33\xf9\x27\xc3\x47\x14\x4c\x61\xa8\xbc\x21\x41\x3b\xc6\x58\x8b\xd5\x24\x56\x94\x35\xe0\xaa\x27\x96\x8d\x95\xde\x3a\x02\x74\xc7\x1f\xbe\xb6\xf7\xae\xb1\x9e\xd6\xfa\xc8\x61\x71\xe6\x88\x24\xd9\x12\x66\xcb\x2c\xeb\x16\x3b\xe0\x26\xa8\x7e\x07\x43\x43\xcb\x9f\x8e\x67\xa9\xf5\xae\x02\xee\x2e\x6d\x4c\x46\x64\x7f\x8c\x53\x39\x16\x9b\xf4\x7f\x41\xd3\xfa\x87\xc3\xac\x1f\x83\x7b\x77\x2f\x41\x55\x40\x2d\xf5\x08\xc3\x0b\xc0\xf6\x9a\xf5\xd1\xec\x4a\x2e\xe2\xc7\xb4\x6a\xd8\x49\xf1\xdb\xa1\xea\x03\x0e\x99\xb7\xd7\x34\x3c\x80\x27\xe6\x6d\xdf\x65\x16\x8a\x5e\xf8\x25\x61\xa8\x6f\xad\x5e\xe5\x28\x38\x7b\xe6\xdd\xb0\x51\xe3\xbd\x64\x75\xfc\x46\xd3\x66\x5c\xbd\xfa\xc6\xfb\x64\xae\xb1\x06\xad\x1e\x46\xa2\x33\x9c\x3d\xf3\x46\x59\x8e\x8b\x0f\xf2\xc1\x06\xf9\x3e\x3e\x78\xef\x2d\x18\xc9\xde\x20\x8b\xfb\xf0\x94\x7f\xa5\xe7\xef\x27\xf1\xb0\xb6\x06\x30\x2b\xf0\x26\xc3\x58\x5f\x51\x92\xb5\xd3\x80\x68\x07\xd1\x2d\xd4\x73\xad\x40\x8a\x57\x40\x7d\xe4\xd5\xfa\xc6\x1c\xc6\xd5\x16\x23\x63\x6c\x4c\x30\xba\xe4\x5c\x3b\xee\x2c\x8d\xc3\xf4\x9c\x62\xb8\x83\xf1\x4e\x8c\xda\x14\xf7\xfe\x15\x80\x5f\xde\x51\x1b\x7f\x20\xb8\x9e\xd8\xe7\x86\x8c\x0e\x70\x1c\xe0\x21\x2a\x8f\x73\x64\x70\x0b\x39\x6c\x4b\x72\xf2\xcf\x9e\xbd\xd8\x7d\xae\xf3\x2b\xe7\x13\x7d\x45\x1b\xff\xbd\x9f\xb9\xe0\x7c\xc0\xfa\xe8\x02\x6d\xe6\x53\xf8\x64\x91\xfe\x26\x69\xfe\x10\xd2\xdb\x88\xd7\x01\x54\xb3\x7d\xc5\x46\xa1\x1b\xea\xef\xa6\xeb\xb9\x7a\x57\xa4\x52\xc6\x5a\x44\x7e\x31\x64\xc3\xb0\xb9\xa7\x44\xa7\x61\x5d\x87\xf1\xc7\x4f\x09\x0a\x3a\x3f\xba\x88\x82\x33\x28\x73\x8b\x3a\x4c\xe2\x2f\x04\xf0\xaf\xfb\x77\xc3\x44\x2d\xcc\x68\x3a\x7f\xdd\xff\x4e\xe9\xe6\xf9\xc0\xc5\x91\x5a\x67\xf4\xff\x99\x5e\xe7\x40\x9f\xbf\xa6\x84\xea\x11\xf7\x03\x4a\x82\x93\x3e\x32\x27\xf6\x21\x36\xfe\x1c\x46\xf9\x92\x8e\x9c\x52\x92\x5f\x2f\xcb\xf3\xa4\x57\x4a\x0c\x95\x16\x2d\xbe\x44\xbb\x37\xa0\x34\x08\xd9\x9a\x40\x3a\x76\x22\x8f\x18\xae\x70\x3b\x2d\xbf\x0f\x01\x47\x56\x69\x22\xcb\xba\x9b\x49\x32\xea\x96\xf1\xb5\x64\xd4\x42\xe0\x48\x38\x63\xdb\x04\x9d\x58\xfa\x08\x07\xe7\x74\x6b\xa0\xbe\xf1\x3c\xfe\x0d\x96\x32\x2d\x67\x7a\x40\x95\xaa\xb3\x12\x66\x38\x70\xc0\x98\x34\x6f\x6b\x5d\xd2\xb2\xcc\x74\xc0\xd8\x1a\x0f\x57\x03\xd7\x04\xab\x1d\x18\x61\x1f\x02\x52\x4b\xda\xb7\x24\x9b\xd9\xc5\xa0\x68\x63\xf4\x1d\x4b\xc6\x76\x03\x59\x4e\x31\x1e\x65\xa7\x7b\x2d\xd9\xb3\x21\xbb\x51\x18\xb7\xd0\x10\xa3\x8d\xaa\x4c\xaa\xf5\xc1\x77\x8e\x91\xe8\xe8\x37\xc8\x34\xaa\xc5\x50\xef\xb3\xe8\x08\x4a\x07\x83\x64\x1b\xbc\xd0\xb2\x4a\x8d\x4b\x13\x38\xab\x33\x14\x36\x9f\xb0\x4a\x0c\xf8\x32\xe7\xd3\x0a\x9b\xd3\xb1\xd0\x4e\x23\xb8\x39\x11\x6b\xa2\x1f\x8f\x3e\x2c\x1a\xa0\x2c\x7c\x07\x8d\x09\xb8\x3b\xa3\x52\x9d\xd0\x04\xbe\x62\x19\x76\x69\x56\xdf\xb5\x69\x93\x87\x6c\xe9\xab\x45\xae\x34\x5b\x7c\x0f\x0c\xeb\x65\x7b\xa0\x63\x61\x5e\x84\x86\xa3\x48\x08\xd8\x82\xed\xf1\x44\x6a\x67\xed\xa1\x00\xd2\xb1\x31\xd2\xff\x84\xb3\x2c\xac\xc8\x82\x95\x93\x5c\x04\x44\x0a\x8e\x9d\x35\x09\x0e\xc2\x88\xa9\x4f\x3d\x04\x2d\x9d\x58\x0e\x74\x6f\x0b\xb4\xb5\x3b\xf9\x38\x85\x70\xb1\xdf\x21\x19\x9a\x59\xf6\xf4\xfa\xae\x1b\xba\x85\x2b\x8c\xf3\xc1\x31\x01\xc0\x41\x5c\x94\x60\x17\xa4\xc5\x13\x03\x27\x68\x54\x9f\x7a\xf6\x38\xf2\xf7\x91\x6a\x7f\xda\x68\x17\x27\x41\x31\xb4\x74\x36\xae\x6b\xf4\x22\x32\x7f\x80\xb3\xc5\x5d\x00\xce\xab\x16\xe5\x51\xc4\x66\x87\x45\xc4\x91\x92\x53\x72\xa4\xd7\x19\xed\x9c\x9c\x80\xc2\x25\x71\x7c\x10\xe0\x19\xde\xbe\x03\xc2\xc6\x43\x31\xf1\x04\xa9\x1e\xd2\x74\xd9\x50\xa6\x1d\x2d\x1a\x84\xf6\x6f\xe1\xe6\x22\xfe\x1c\xd0\x7a\x73\xf0\xb9\xb4\x40\x96\x7c\x4b\x3c\x7f\xfa\x94\x80\x77\xde\x52\x43\x6c\x61\xf1\x25\x74\x30\x4c\x46\x68\x87\xbb\x9e\xe4\x4a\xb8\xd6\x03\xa2\x50\xc6\x80\x1c\x66\x9f\xc0\x79\x13\x64\x1c\xf7\x42\xbc\xcd\x87\x4c\xbb\xa6\xb8\x18\xc6\x62\x5f\xe3\xde\xab\x0c\x47\x0f\xc9\x6d\xa9\x84\xd2\xa0\x2b\xe4\x73\xfc\x68\x7d\x0d\x4c\x30\x06\x79\x1c\x14\xc9\x2e\x15\xed\x04\xac\xe4\xe8\x65\xdb\xc7\x16\xb6\x07\x51\x54\x03\x4a\xe9\x5f\x68\x8d\x37\x80\x02\xa7\x35\x74\x39\x0d\x46\x45\x5f\x10\xfb\x4d\x10\xe9\x8e\xc8\xb4\x27\xf3\x66\x3a\x8a\x2f\x1f\x52\x98\x2a\xac\xc9\xa7\x2c\x4d\x9c\x18\xeb\x16\x47\xaf\x76\x64\x8a\x60\x85\xc1\xc8\x66\x67\x86\x37\x98\x52\xe2\xb1\x71\xe7\x45\x08\xaf\xb6\xe7\x84\x0c\x74\x38\xbb\x05\xa2\xb6\x96\xef\xb4\xda\x36\x13\x39\x37\x88\xe8\x6d\x53\xc4\x9c\x08\xf6\x9a\x79\x13\xac\xcd\x5e\x50\x0c\xe9\x9b\x3b\xb0\xa9\x3b\x67\x20\x35\xfe\xd6\xfe\x58\x71\x18\x5f\x38\x76\x31\x3c\x7d\x7f\x6b\x11\x9d\x9a\xd8\x4a\xcb\x3c\xc5\xbc\xd6\xb4\x9b\xe4\x3c\x5c\xb9\x97\x36\xc2\x52\xec\x94\x9e\x15\xe9\x62\x14\x4a\x80\x74\x50\x62\x32\x7d\x01\xc8\x9d\xa9\x39\x69\x72\x48\x89\x2a\x6b\x7b\xc1\x1d\x31\x3d\xfb\xf0\xd5\x6f\x96\xf0\x36\x5f\x69\x07\x54\x42\x5c\x8c\xc6\xf0\xcd\x3c\x1e\xf5\x76\x2c\xfe\xf2\x3e\x3e\x8f\xe8\x79\xd4\xcf\x92\x22\x52\x2f\x23\x7c\x49\xb6\x00\x98\x2b\x38\x76\x76\xe2\xd1\x76\x02\x3e\x71\x05\x0a\xa2\x4f\x48\xf5\xf7\xd0\xe3\x4e\xa4\x63\x32\xa6\x10\x53\x03\x9b\xb5\x9d\x53\x27\x88\x46\xd3\x70\x7a\x93\xa2\xcc\x86\x1a\x1c\x5b\x13\x90\x90\x8a\x31\xa3\x09\xe6\x41\x20\xac\x6f\x89\xe1\x32\x7f\x9f\x29\xd5\x0b\x42\x91\xc8\xd3\x08\x94\x9c\x79\x05\x05\x24\x11\xa3\xb3\xe2\xe3\xd3\x24\xec\xcf\x42\x03\x72\x5a\xee\x49\xe8\xef\xcc\x42\x43\xc4\x2a\x0c\x08\x95\xc8\xbf\xad\x6c\x30\xc8\x76\x13\xf0\xa5\xdd\xb3\x58\xe8\x42\x82\x53\x00\x2e\x60\x4f\x0c\x62\x04\x05\x09\x49\x4c\xd7\x42\x7a\xa3\xb3\xf7\xbe\xb1\xab\x93\x2d\x10\x9d\x18\xc3\x0e\x4a\x80\x60\x64\xca\xaf\x27\xfd\x35\xe5\xbe\x73\xe7\x8b\x73\x5a\x4d\x78\x22\xca\x3a\x62\x83\x81\x39\x8e\x4b\x25\xdc\x8c\xc8\xda\x88\x93\x58\x17\x7c\xf4\x97\x7f\x3b\x5f\xfc\xe5\xc4\xf0\x79\x5f\x90\x25\xb4\xfb\x50\xf2\x27\x14\x06\x8d\xf3\x6c\x2b\x1d\x48\x76\x01\x39\xd5\x1a\x43\xdd\x99\x05\x16\x1b\x36\x47\x23\x5e\x22\x5e\x3c\x58\x2f\x3b\x53\x6a\xee\x45\x69\x61\x08\xeb\x20\xed\xa1\xe7\x85\x33\x2c\x9c\x98\x00\xb0\x97\x90\xc3\x34\x90\x68\x83\x61\xf4\xc9\x20\x29\x51\xa0\x17\xea\x71\xd0\xe4\x38\x50\x2c\x3c\xed\x6f\x7c\xf0\xe6\x6b\x30\xeb\xf1\x64\x53\x7d\xb7\x6b\x4d\xd8\xd3\x3e\x9e\x38\x2b\x40\xcd\x38\xe6\xe9\x6b\xc1\x7a\x38\xf8\x61\x6b\xef\x2c\xa0\xcf\xcc\x9d\x20\xbe\x90\x92\xc4\x76\x23\x24\x40\x14\x15\xe8\x5a\x8b\xe7\x68\x2d\x76\xd2\x5f\x90\xa6\xb2\x74\x8b\x1b\xfc\x58\xa4\x22\x1d\xbe\x65\x05\x19\xde\x02\x8c\x91\x50\x12\xb1\xdd\x32\x6d\x9a\x2d\x75\x08\xa7\x24\xe3\x59\x8e\xb8\xb9\xe3\xcf\x31\xee\xc9\x2d\x48\x9c\xe1\x20\x26\xb4\x76\x9e\x5a\xb6\xc3\xa6\xe4\xb2\x41\xd6\xe3\x80\xc4\xef\xf8\xdc\x2e\x78\x21\xac\x60\x10\xb5\x5d\xe3\x3e\x38\xaa\xf5\x1e\xa1\x7b\x48\xcd\x81\x24\xa1\xa3\xba\xf1\xb9\xb6\x30\x3e\x0c\x13\x3c\xe1\xec\xa1\xd5\x11\xb7\x6e\x1a\xfe\x50\xe4\x4a\x50\x1d\x4d\x29\xd7\xc8\x69\xf3\xcd\x0d\x4f\x2c\xdb\xec\x8c\xa8\x8c\x07\x8c\x91\x4d\xa8\xf8\x5c\x31\x54\x8b\x8e\x9b\x78\xd9\x56\xfb\x2d\x04\x2b\x13\x95\x63\xe4\x3b\x42\xff\x1f\x08\x6e\xa7\xa4\xd6\xec\xa3\xe7\x5f\x9c\x87\x98\xa3\x78\x1b\x72\x11\xc8\xcd\xc8\x0e\x6b\x27\x88\x45\xad\xab\x02\xfb\x8d\x76\x4a\xce\x22\x4b\x2a\xa1\x79\x1d\x8a\xe1\x1b\x5e\xbf\x8c\x0e\x56\x45\x62\x4c\xda\x92\x7e\xdf\x90\x41\x95\x90\xac\xed\x71\x20\xcc\xe9\x64\x1b\x54\x4b\xbc\xe9\xdc\x61\x46\x61\x60\x26\x31\x42\x13\x2e\x71\x00\x68\x39\x88\x82\xd5\x51\x3e\x73\xfd\x47\x3a\xe6\x55\x96\x6c\xba\xa4\x08\x5f\x8a\xca\x12\xbf\x9f\xc2\xac\xd7\x99\xaf\xc2\xe6\x66\x59\xc1\x41\x17\x3c\x1d\x64\x32\xb6\xd8\xae\x83\x2d\xac\xc1\x33\xfe\x4a\x9f\xbb\x98\x6b\x8b\x89\x6b\x0d\x2c\x56\xd3\x3d\x0d\x04\x68\xf5\x64\x0c\xd6\x6c\xa5\x21\xf3\xf4\x91\x9b\x74\xd3\x21\x66\x67\x7e\x8b\x01\xe1\x46\x7f\x95\xd0\x63\xc3\x39\x60\xd6\x0b\xe6\x88\xfa\x80\x76\xc0\xe5\xe0\x2d\xab\x15\x8f\x77\xdf\x95\x0d\x3d\x09\x81\xb9\x9e\x0e\x9c\x46\xa5\xa6\x16\xd2\xb3\x74\x62\xcf\x10\x53\x49\xcb\xa2\xe3\xe7\x2c\x8e\x39\xdb\xed\x01\x59\xd6\xba\xb0\xf9\x68\xa1\x17\x95\x29\x9d\x7f\xcc\xf5\xd9\xb4\x38\xa1\xed\x5b\xf1\xa2\x1a\xb2\x81\x6d\x81\xf8\xb1\x92\x30\x36\x3f\xfa\x01\x90\xc1\x72\xa8\xf1\x39\x75\xdb\x84\x8c\x4a\x5f\xaf\x34\x58\x84\x0c\x47\xde\x14\x7c\x52\x18\x02\xf3\x00\xd0\xdb\xd5\x1a\x6b\x84\x0b\xc2\x5d\xee\x23\x41\x99\x6a\x15\x58\x1b\x9c\x28\xed\x64\x06\x82\xcd\x92\x02\x96\x6b\x19\x6e\xc4\x98\xf4\xa9\x3b\x0d\xac\x02\xee\x00\x5a\x25\x0b\xc7\x63\x62\xb2\x52\xe6\x3a\x3d\x55\x9a\x35\x67\xa8\x86\x18\xb6\x49\x3a\x09\x70\xf8\x85\x9b\x81\x15\x64\xf8\x92\xc2\x53\xe7\xea\x3a\x9d\xf2\xa8\xe2\x9c\x07\xcd\x9a\x4d\x6a\x82\xcf\x80\xc1\x5c\x9e\xab\xd3\x09\xd9\xa1\x4e\x02\x98\x7e\x2e\xd1\x16\x7f\x20\x13\xb8\x91\x7a\xb4\xc5\xc6\x0c\x1b\x05\x6a\x12\x94\xa4\x5b\x4d\x5c\x82\x18\xe0\x3e\x92\x27\x6e\x81\xd1\x85\x18\x18\x72\xa7\xaa\xc5\x83\x85\xd6\x80\x20\xb4\xf6\xb6\xe3\x3f\xa4\x6d\xd7\x09\xbe\x81\xb0\x8e\xff\x1f\x70\xb3\x22\xe0\xc6\xac\x9d\x3e\xc3\x7f\x74\x0f\xe9\x03\xfc\x95\x45\xfe\x07\x22\xc4\xb5\x6e\x1f\x1e\x32\x3e\x44\x5a\xb2\x6f\x3e\x46\x21\x99\x1f\xc6\x85\x46\xba\xf0\xee\x6b\xd7\x2b\x80\xa7\x73\xa6\xd3\xf3\xf0\xf0\x3c\x61\x85\xf0\xb8\xe9\x13\x17\xc2\x02\xb1\xa3\x85\x9a\xf0\x09\xc8\xd3\x72\x8c\x98\x88\x13\x48\x65\x1c\xa8\x8e\x01\x94\x6c\x60\x62\xc4\x30\xa2\xf8\x05\x27\x8b\xef\x61\xc0\xd9\x50\x0f\xbf\xf0\xd2\x0b\x0e\x43\x06\x2e\x1d\xaf\x3e\x47\xe4\x14\x97\xa0\x98\xfc\x7e\xa2\xfd\xd4\x81\x34\xda\x8c\xcd\x09\x20\x64\x1f\x7c\x48\x09\x44\x53\x1e\x10\xf9\x12\x59\xb3\x65\xc7\x0b\xcb\x3b\x97\x8a\x32\xcf\x46\xdb\x97\xc1\x1e\x28\x4e\xc7\xc7\xb8\x42\xd5\xf1\xcb\x97\x9e\xe7\xb7\x11\xb3\xb7\x03\x57\x3a\x99\x42\xd5\x8e\x37\x26\x9b\x30\x0a\x0c\x19\x77\xd9\x34\x02\xa1\xb1\x5e\x8a\xa3\x9d\x3c\xd9\xda\x00\x0d\xf7\xb2\x9d\x0b\x72\x68\xec\xef\x18\x40\x1f\xb0\x0e\x06\xf6\xfd\xd2\xf3\xf1\x65\xed\x06\x22\xf9\xcf\x0b\x54\x75\x3f\x68\xb2\x81\xe9\x90\xeb\x94\x7d\x00\xc4\x3b\x39\xa7\x41\xbb\x46\x5b\x12\x31\x4e\x39\x12\x69\x2a\xba\x41\xd0\xb3\x64\x0e\x42\xc7\x10\x4f\x17\xfd\xf9\x70\xbb\x81\x07\xe0\x02\xab\xe7\x20\xcb\x7c\xa7\xd4\x00\x63\x9d\x25\x30\xd7\x73\x7a\xe9\x83\xe6\x85\x82\x9b\x63\xae\x65\x49\xfb\xcb\xcf\x68\x1e\x80\x83\x34\x1c\xe0\x11\x01\xcc\x46\x35\x38\xc8\x38\xd0\x39\x41\xee\xba\x7b\x8e\xf7\x61\x11\xd4\x60\x4f\x29\x14\xa5\x6b\xec\x33\x92\x22\xc4\x8a\xd0\x3e\xc6\xaa\x8b\x72\xbe\xa4\xe0\x2a\x6d\xa8\x31\x34\x88\x0d\x08\x8d\x14\xc8\x27\x05\x8c\x57\x11\x26\x9b\x7f\xea\x6a\x2d\x94\x86\x77\xc3\xb7\x45\x48\xd5\x96\xb9\x8e\x3a\x5e\x83\x2c\x05\xbf\xfb\x54\x5f\xe3\x38\x7b\xdf\x96\x68\xab\xea\x2e\x92\xa2\x53\xa3\xf9\x7c\x4f\x46\x9b\xe9\xa8\x4f\x92\xc2\x01\xee\xe0\x82\x95\x11\xcd\xdc\xa9\x89\x41\x18\xcf\x2c\x23\xe6\x4d\x5b\x09\x5e\x58\xd0\x24\x8a\x4a\xef\x0e\x65\x6a\x77\xcb\x0c\x1d\xcd\x8d\x7b\x84\xef\x0b\xcd\xbe\x29\xfd\x45\xb2\x7f\x85\x3f\x0b\x85\x94\x9c\x7e\x8e\x4d\x67\xd8\xbf\x65\x1b\x26\x47\xf0\x6a\x1e\xf6\x18\xe5\xc3\x63\x78\x73\xf6\x0c\x7d\x87\x77\xef\x3b\xf3\x46\xc8\xa4\xb5\x98\xc4\x5f\x1f\xba\x50\x69\x83\x02\x29\x78\x56\xc2\xa5\xe7\x57\xd6\xfc\xdc\xa3\xf0\xaf\xbc\xfb\xe6\x45\xe3\x5c\xe5\x54\x75\x3d\x1f\x91\x2f\xb5\x85\xc7\x9e\x47\x64\xdb\xd6\x81\xc2\x06\x16\x89\x3e\xd2\xc4\xf2\x78\x25\x02\xf4\xc5\xfa\x0c\x1c\x50\xbd\xd2\xe1\x55\xb6\xb8\xb6\xb3\xce\x6e\x37\x42\xa7\xa4\x2e\x7e\xcc\x02\x0b\xec\x8c\xd9\x9e\x74\x6d\x1d\x9f\x89\x14\x42\x35\x38\x6b\x25\x60\xf5\x21\x31\x1c\xb2\xa9\x73\x0e\x4b\xc0\x6b\x79\x2a\xd9\x89\x87\x61\xed\xe4\xa1\xb8\x36\x0f\x4d\x32\x86\x36\xca\x1b\x82\xc9\x8b\x14\x10\x9a\xed\x06\xe6\x74\xe9\x80\x89\xfa\x3c\x2d\x7b\xa0\xb3\xab\x33\xdf\xbf\x80\x89\x9b\x8e\xee\x85\xb9\x3d\x8e\xde\x0c\xf2\xd5\x23\x6b\x3a\x41\xbb\x55\xdd\x39\x54\x4f\xbd\x62\x6f\x2b\xcf\x46\xc7\x63\x37\x19\x55\xc3\xd8\xa7\xfb\x4b\x40\xf6\x8f\x96\x29\xc5\x68\x37\xe0\x74\x61\x3c\xd7\x0e\x9f\x26\x90\x2c\x2a\x5b\xbe\x67\xf5\x4f\xcb\x30\xc1\xdd\xb5\x84\x18\x13\x7e\x0c\xbb\xca\xba\xfa\x33\x26\x5d\xd2\x9f\xae\x9f\x34\xe9\x27\xc3\xcc\xfd\xe5\x58\x62\xb5\x0d\x17\x8c\xe4\x89\xae\x61\x90\xb6\xd4\x32\xe9\x6c\xf8\xcf\x91\x9f\x10\xeb\x19\x8f\x17\x9c\xd0\x74\x5b\x3b\x30\x84\x23\x73\xba\xc3\xcd\xa7\x35\xd2\x9d\x3d\xf3\x21\x78\x5d\x3e\x3a\x7b\x86\xc3\x10\xee\xd7\x1d\xb7\x56\x6c\xd4\xca\x80\x50\x13\x45\x25\xc6\x36\xc9\x58\xf3\x42\x3c\x6a\x7d\x23\x21\x83\x28\xf1\x1b\x17\x3e\x54\x47\x61\x7f\xdb\x31\xa3\x36\xf1\x4a\x72\xa0\x60\x32\x0a\xb6\x12\x57\x12\x9a\xbc\x39\xf0\x41\xd8\xb0\x2d\x59\xa2\x12\x7e\x0b\x24\x43\x85\xff\xd7\xd3\x22\xdd\x4c\x07\x28\xb3\x7c\x4d\x34\xa1\x7a\x2c\x72\x09\xbe\x84\x77\xb5\xd2\x22\xe1\xe1\x5f\x2a\xc6\xf1\x28\xea\x29\xe1\xa9\xd8\x38\x37\x88\x37\x93\x41\x84\xff\x5f\xcc\x93\xbe\xfc\x16\xf7\xd3\x09\xca\xc7\xb7\xc9\x60\x05\x3b\xa8\xd0\x57\x75\xbc\x8c\x1e\xa0\x6b\xe4\x9a\xfd\x5b\xf5\x5b\x5b\xa8\x0e\xb7\xc5\xba\x16\xd4\x76\x41\x2e\x2f\xf5\xb0\x3e\xec\xef\xad\x50\x05\x8b\x74\xd8\x66\x1d\x2b\x85\xdc\x5a\x83\xa5\x4e\xa5\x93\xc2\x62\x6c\x7c\x0a\xb9\xed\x25\x88\x8e\xf0\xf9\xae\x9d\xfe\xae\x51\x03\xca\xc3\x59\xa5\xe1\xf4\x33\x3d\x54\xdf\x40\xda\xd9\x4e\xcb\x74\x7b\x94\xe5\x89\x36\x51\x2a\xf1\x34\xed\x29\xd6\xaf\xb0\xf1\x9f\x2b\xc8\xd3\x85\xf1\x1f\xe9\xa7\x8d\xa0\x70\x9c\xdc\xba\xa2\x82\x24\x40\x93\x0d\xd8\x74\x94\x96\x6a\xf9\xe3\x3e\x21\x3a\x27\xcc\x37\xb9\x1e\x38\x86\x22\x88\x0c\x4a\x24\x7d\xef\x97\xaf\xbc\x76\xe5\x97\x9d\x61\x5f\x27\xdf\x91\xcf\xbd\x21\xeb\x2e\x74\x98\xfa\xc9\x56\x3c\x19\x88\x77\x18\x6c\xb6\x58\xa9\xc6\x54\xcc\xe0\x84\x91\x23\x34\x86\xeb\x4c\x05\xca\x20\xec\xa6\x10\x20\x75\x3d\xe6\x22\x60\x37\x71\x21\x30\xa2\x44\x33\x79\xd5\x87\x55\x3e\xec\xf9\x2c\xdb\x2d\x50\xfd\x7a\xae\xc9\xcb\xb9\x5e\x44\xe4\xcf\x77\x73\xae\x84\x1f\x45\x7f\xdd\xbf\x7b\xbe\xf8\xeb\xfe\x77\x2d\xd1\x4c\x1d\xaa\x02\x07\xc6\xef\x09\xa4\x3f\x7b\x59\x63\x6d\x71\x30\xb0\x80\xdb\x24\xf0\xd8\xe5\xc3\xa4\x24\x9f\xb3\xd0\xa6\x9d\x75\xd6\xbe\x6a\x5a\x14\x97\x9a\xbb\x1a\xb2\xda\xd6\x46\xf2\xb1\x39\x98\x24\x1e\xfd\xa0\xdd\x83\x23\xa9\x89\x87\x8c\x86\xd0\xec\x3b\x7f\xb8\xed\xd4\x84\x3b\x77\x7a\x83\x6c\xa4\x38\x53\xbf\x9f\xa3\x50\xc3\x18\x57\x49\x9a\xbf\x6d\xf9\x93\x2e\x12\xae\x05\x0e\xbe\x01\x67\x9b\x43\x20\xb1\x17\xb8\x4c\xf9\xe6\x17\x9b\x63\xe2\x6a\xe9\x1c\x87\x14\x08\x8e\xfa\x22\x06\xd4\xb3\xc4\x02\x44\x4e\x6d\x2c\xd5\xf4\xf9\xdf\x1e\x59\xb2\xe8\x20\x16\xf9\x29\x92\xc1\x56\x13\x01\xf4\x68\x5a\x20\xf1\x77\x66\x67\x75\x91\x55\x70\x16\xb1\xa5\x78\x86\x52\xc5\x78\xaf\x3b\x48\x47\xd7\xa8\x0c\x9f\x08\xa6\x4a\xbb\xee\x29\x6a\x74\x4d\xc9\x88\x5d\x68\xe2\xbe\x25\x27\x9c\xa4\x3f\x3d\x01\x65\x6b\x09\xb9\x5c\x98\x65\x3c\x4e\xe1\x10\x78\xb2\xf5\xb1\xd3\x1b\xdc\x86\xb8\x4d\x1a\xe5\x04\xb9\xa1\x87\x91\x7e\x22\x66\x8f\x8b\xe5\x17\xda\xa4\x51\x2b\x76\xf5\x72\xc4\x1a\x3e\xd6\x13\x01\x9b\x0a\x85\xa4\x6c\x9c\xeb\x6e\x2a\xc2\x7c\xed\x9c\x65\x63\x31\x75\x54\xc1\xa6\xf2\x0c\x68\x98\xbb\x14\xd3\xfd\x3d\x49\xec\x64\x25\xe0\x8a\x52\x1c\x17\x7c\xf6\x0c\xb7\x91\x28\x0a\x70\xd0\x42\x5a\x3b\xf1\x25\x25\xf7\x4e\xd9\x1e\x8f\x29\xeb\x14\x90\x01\xe5\xf8\xbc\xc7\x54\xfd\x92\xb7\x1b\x4f\x77\xe6\x97\x23\x59\xf8\x2c\xe7\xd7\x13\xd8\x84\xed\x49\x0a\x79\x48\xff\x48\x0a\x3c\x6a\xf7\xac\xb9\x2e\xb0\xdc\x07\x72\x22\x5a\xd1\x72\x27\x2d\xf8\x00\x7d\xeb\xaf\x54\xfb\x01\xb2\x12\xac\x91\xa9\xf5\xb2\xa1\x52\x9b\xfb\x36\xbd\x7f\x24\x9e\x8e\x10\xf3\x34\xae\x76\xa7\xfc\x05\xe9\xe9\xf8\xe6\x10\x02\x18\x20\x93\x03\x62\x80\x78\x90\xf7\xb0\x7a\xd8\x29\x47\x4a\xfb\x27\x0a\x45\xa7\x10\x4e\x3f\x59\xfd\xa9\xb3\x67\x84\xeb\xfc\x23\xf5\x07\x33\x56\x99\x27\x09\x66\x38\x21\x2b\x59\x48\x9b\xae\x9a\x68\xb7\x8c\x21\x62\x43\x37\x16\x33\x2b\xfb\x79\x1e\x8a\xbd\x98\x7a\x24\xf5\xa6\x10\x0b\xb5\x5d\x90\x02\xa1\x5b\x73\x15\xce\x37\xf1\x07\x98\xa5\x14\x0d\x54\x6d\x7e\xcf\x01\x57\x88\xb3\x40\x89\x06\x49\x51\xaa\xfd\xe3\x57\x58\x52\x18\x0e\xd3\x70\x98\x96\x05\x1d\xbe\xc7\x28\xe1\xcc\x41\xe4\x18\x24\x71\x01\x4d\x7f\xa0\x10\x20\xc5\xfb\x8f\xe0\x05\xc6\x0a\xe4\xf1\x2e\x6c\xd9\x2d\xe2\x8b\xfc\x50\x21\x05\x15\xed\xfc\x86\x85\xd2\x7d\x0a\x52\xc1\x97\x58\xfb\x07\xbb\xdd\x63\xe3\xbd\x2e\x3f\xcc\xd1\xa8\x0c\x8c\x85\x2b\xee\xa6\x0e\xee\x30\x26\xca\xf1\x23\xfb\x05\x6e\x90\x35\x52\x9c\xf3\x98\xfc\xc3\x73\xe8\x84\xe7\x22\x6f\x83\x25\x47\xad\x12\x08\xb5\x0e\x5b\x68\x3b\xfa\xbe\xa2\x6a\x71\xfb\xf6\x2b\xe0\x97\x90\x0b\xf2\x15\x15\xc6\x01\x0b\x80\xbc\x1a\x2a\x9e\xc0\xc5\x80\xbf\x44\xa9\xfe\x0b\x13\xb7\x21\x6d\xfa\x98\x17\xf9\xbb\x8a\x53\x01\xe5\xb1\xa9\x18\x71\x51\xca\x85\xda\x1f\x55\xc7\x46\x5e\xf3\x19\xc1\xdc\x35\xda\x7e\x78\xab\xfd\x43\x60\xad\x25\xab\xd5\x0d\xfb\x7d\x17\x51\x43\xb7\x9a\x19\x04\xa9\xb7\xea\x8e\x07\x71\x2f\x91\xfa\x13\x4e\x76\x97\xe9\x86\x05\x5b\xb9\x67\x36\xc6\xfc\x8a\xcd\x8d\xf3\x7d\x52\x2b\x0f\x2a\x2a\x69\x85\x29\x76\xdc\x48\x11\x10\x25\x7b\x4a\x2b\x2a\xda\x12\x6a\xa7\x76\x1f\x32\xfa\x79\xbc\xbf\x0f\x0c\xd4\x6e\xa1\x64\x23\x60\x61\xe8\x02\xfe\xde\x72\xcc\x3f\x10\x03\x4b\x68\xa6\x0c\x40\x1f\x0b\x7d\x2a\xfc\x16\x4a\xd2\x50\xb2\x75\x42\x15\x8e\x38\xc1\xe1\xb6\x44\xd3\xa1\x51\xd7\x6d\x6f\x09\x44\xa1\x57\x1d\x28\x55\x22\x85\x73\x9d\xea\x93\xd6\xae\xd5\x97\x82\xba\xd2\x50\x20\x95\x12\x12\xc4\xeb\x23\x9a\x6b\xa9\x7b\x56\x3d\x08\x82\x20\x12\xdc\xef\x6e\xee\x11\x84\xfb\xae\x7c\xc5\x55\x30\xdb\x20\x0c\x93\x11\x78\x24\xa1\xd2\x15\x42\xf8\xd6\x58\x10\x6f\x8a\x5d\x58\x14\x26\x36\xc6\x3a\x48\x82\x1f\xdf\x70\x51\x24\x3a\xff\xe1\x0b\x1f\x15\xf4\x69\xed\xb1\x78\xfe\xfc\x87\xbf\xf8\x48\x71\x54\xfc\x01\xcc\x54\x83\x19\xe7\xc9\xf5\x34\x9b\x14\x42\x4e\x40\x08\xfa\xdc\xd9\x8b\x11\xd6\x43\xb9\xef\xb8\x1e\xcd\x5b\xc2\x9a\xb2\x96\x08\x19\x44\x14\x6a\xdc\xcb\x06\x70\xe0\xff\x8c\x91\x03\x37\xd7\x68\x0e\x86\x13\x40\xf2\x99\x4b\x86\x9d\x56\x78\x66\x18\x17\x02\xc7\xa6\x09\x25\xa8\x73\xd2\x4f\x4b\xa2\xcf\x87\x68\xdf\xe2\x24\x4a\xa7\x4d\x63\x10\xa0\xd7\x4e\x12\x63\xbf\x43\x93\xf6\x5c\x4a\x3b\x79\x16\xcf\xe6\xe9\xe2\x77\xa4\x90\x5e\xd0\xba\xb3\xba\x2f\x0b\x2a\x6b\x00\x88\x6c\x06\xad\x5d\x05\x70\xe6\x4f\xad\x72\x91\x56\x90\xf1\x11\x87\x7e\xb0\x59\x13\xa2\x44\xbc\xf8\x3f\xdf\x7b\xea\xae\x7c\x27\xaa\xfe\x09\xf9\xe0\xd4\xd2\x92\x5b\x4d\x46\xe1\x19\x6a\x3b\xa8\x45\xd1\xa8\xc2\xd4\xcc\x31\x50\xf9\xf6\x4d\x0c\xe0\x6e\x2b\xe6\x2d\x2f\x3b\x54\x58\xb4\x30\x15\x45\xed\x97\x56\x79\x1e\xd8\xaa\xfb\x58\x7f\x78\x1f\xd5\xbc\x53\xb2\xbe\x4a\xb8\xbe\xd5\x69\x27\xcb\xae\x15\x1b\x7f\x97\x6c\xe2\x2f\xd6\x8b\xed\xb4\xa4\x77\x70\x63\xc1\x1b\xde\xcb\x7e\x32\x1e\x64\x7b\xec\x2b\xff\xc6\x0f\x6d\xa9\x07\xc5\x4a\xbf\xcd\xb8\x48\x7b\x56\xa5\xf3\xbb\x56\xac\x46\xb8\x24\xaa\xf9\x24\x44\xf1\xe4\xdd\xdf\x20\x2d\xbf\x8b\x61\x32\x37\x2a\x1d\x05\x74\x44\xde\x15\xab\x3d\x05\x60\xde\x75\xca\x98\xcd\x28\x33\x87\xa3\x31\x75\x53\x0e\xa7\x6a\x2b\xc0\x6e\x57\x45\xb0\x0c\xcd\x4e\xe9\x4f\xb3\x11\x14\x71\x04\xe2\x69\x30\xeb\xae\x25\xf3\x2c\x10\x1e\xd9\x04\x56\x1f\xa8\x9f\x0d\x7b\x55\x90\xe4\x09\xda\x9f\x8f\x59\x8f\x21\x87\x12\xf9\x09\x60\x79\x6c\x7b\x63\xd0\xc5\x4f\x09\xa0\x4f\x69\x8c\xd5\xb3\x2d\x95\x90\x5c\x6c\xe9\xac\x30\x93\x00\x61\xc7\x56\x84\x13\x31\x96\x37\x1d\x4c\x10\x48\xbc\x60\x35\x70\xad\x56\x2c\xa2\x4e\x1c\xb1\xd4\x90\x74\x66\x95\xb9\x6d\xce\x74\x41\x29\x14\x29\xd6\xa2\x56\xc6\x89\xab\x36\xb6\x67\xc2\x77\xac\x29\xe1\xe5\x05\x98\x70\x08\x09\x3c\x05\x59\xa7\xcc\x35\x0b\x1c\xce\x18\xce\x41\xab\xec\x72\x30\x61\xc3\x1d\x58\x9e\x45\x9b\xb2\x23\x78\x61\x33\x7d\x83\xa2\x04\x73\xe9\x36\x0e\x99\x68\x0d\x52\x6f\x59\xf7\x1a\x10\x1d\x15\xac\x0b\xcd\x4c\x65\x60\x6e\xfa\x4c\x30\xff\x46\x7b\x4c\xa8\x7a\xec\x17\xd6\x28\x90\x27\x1c\x9a\x7a\x37\x17\xb4\x75\x4a\xe4\x1d\xa9\x8b\x47\x49\xb5\x75\xb4\x82\x6a\xbf\x8a\xee\x6f\x5c\x1a\x5f\xbe\x58\xfd\xab\x18\xfc\x1e\x62\x18\xfc\x5c\x2c\x2d\x4e\xb9\x4d\xae\x43\xb3\x6a\xab\x88\xe7\xa1\x2d\x1a\xd5\x26\x26\x3c\x33\x36\x7f\xfa\x88\xd8\xb9\xf4\xfc\xf8\x72\x84\xa3\xf8\x51\x07\xdd\x1b\xdb\xa3\x92\xa1\x9c\x81\x5c\x78\xba\x91\x34\xa4\x47\xcd\x75\x72\x13\x7b\x28\x25\x03\xb2\x21\x15\x53\xca\xaf\xe2\x60\x9b\x69\xb0\xe1\xa5\x9a\xd3\x35\xd5\x69\x7c\xba\xc8\xf5\xfa\xf6\xb1\xd3\x87\xb4\xa6\xd0\xf4\xad\x4e\xc3\xf8\x9a\xd2\x6f\x34\x65\x02\xf9\x5c\xa7\x06\x47\x52\x63\x56\xf5\xfe\x84\xdc\xc6\xf5\x8f\x91\xe7\xb8\x5f\xf7\x31\xf9\xae\x86\x76\x32\x6e\xe7\x83\x91\xaa\xd2\x3c\x51\xd7\xeb\xf7\xb3\xbd\x7d\x1a\x1e\xc4\xcc\x18\x51\x03\xa4\xe6\xb6\x90\x49\xa4\x22\x96\x18\xe2\x2c\xa7\x0f\x6a\x75\x60\x0f\x1a\x8c\xa7\xa2\x96\xdb\xd3\xcc\x93\x61\x86\x95\x30\x43\xe0\xee\xdb\xbd\xb4\x48\x56\x73\x3c\xdb\xf0\x30\xd9\x39\xc5\xec\xc8\x2e\x95\x7f\x6b\x28\xef\x49\xc0\x24\xf1\x70\x55\x3d\x03\x37\x9e\xae\xad\x8e\x89\x17\xc2\xa8\x83\xf9\x1a\x57\x00\x56\x73\x97\x04\x39\x27\x16\x2b\x62\xe9\xce\x97\xfa\x88\xa4\x8a\xe8\xc7\x01\x22\x56\x28\x5e\x30\xa2\x96\x08\x1a\x5e\x04\xf0\xee\x3b\x57\xdf\x8f\x18\x55\x1e\x92\x09\x45\x91\xd1\x6f\x25\x92\x84\xe7\x47\x06\x38\x2e\x3c\xa7\x03\x04\x0f\x30\x42\x44\xa7\x2f\x1b\x89\x1f\xeb\x53\xc1\x15\x0f\x81\xcc\x1e\x39\x04\x24\x6d\xb0\xef\xc2\x5b\xd1\x99\xe4\x8a\x2f\x28\x9a\x1e\x69\x4d\x84\x12\xdd\x2d\x9d\xec\x60\xdb\x66\xf9\x2e\x07\x62\x44\xad\xa6\xdf\xc8\x2c\x15\xd8\xa7\x48\x2e\x02\x09\x86\xa5\x6a\xd0\x61\x3b\x01\x09\x9a\xef\x7e\x11\x31\xda\xa9\x0c\x86\x99\x43\x26\xf6\x12\x73\x27\xd2\x52\x67\x8c\x06\x73\xab\x6d\x67\xa5\x5b\x2d\x7d\x69\xf2\x20\xac\xb2\xbf\x9c\x34\xae\xbb\x7c\xaa\x56\xe2\x96\x88\x75\x1c\xb2\xa5\x63\xbd\xd8\x3b\x54\x71\xa5\x31\x27\x7c\xd7\x1d\x4c\x60\x02\xb4\xb4\x6e\xb4\xd3\xbc\x35\xe3\x2a\xb0\x5e\xa8\xf9\x32\xbb\xa7\x92\x6d\x32\x62\x7d\x70\x41\x7e\x35\x31\x74\x94\x43\x41\xb1\x1d\x64\xca\x3b\x95\x73\x52\x2b\x9b\xe1\x57\x93\xe7\x04\xf4\xa5\x5c\x70\x22\x72\x31\xd7\x8a\xb3\x6e\x3e\x61\x69\xa0\x0e\x74\x79\xd3\x54\x88\x38\x62\xa9\x14\x11\x4a\xa7\x61\x12\x7e\x1d\x51\x69\x54\x9c\x49\x28\x23\x4e\xe7\xe3\x50\xd1\x10\x7f\x55\x42\xa1\x07\x08\x2b\xd0\xb6\x2d\x8a\xd2\xed\xec\x08\xca\xcc\x83\x19\x8a\x9b\x74\x13\xec\xc0\x34\x17\xbf\x29\xb4\x96\x0f\x89\x17\x9c\xae\x63\x33\xc2\xf4\xca\xba\x1e\x49\xc7\xc8\x58\x75\xf3\x2e\x41\x15\xb5\xcb\x40\x6f\x2e\x3d\x8f\xbf\x92\xaa\x02\x58\x87\x08\xcb\xb7\xc2\xdc\x31\x79\x88\x86\x22\xd0\xa0\xc5\xe9\xc5\x31\x13\x3a\xef\xfe\x46\xd0\xac\x20\xb7\xf8\x29\xb0\x44\xe8\x79\x9b\x2f\x38\x05\x0e\x67\x46\x61\x85\x2b\xa4\x30\xb0\x88\xe5\x48\x53\x85\x95\x64\x68\x5d\x7d\xc1\x1a\x0a\x07\x0e\xa3\xb5\xc2\xbe\x06\x43\x54\x0e\xdc\x30\x3c\x33\x3f\xb9\xc6\x89\x60\xb5\x3b\xbb\xc8\x33\xe6\x00\xdb\xd5\xc5\xc5\x0c\x4e\x03\x40\x29\xe3\xd9\xff\x7e\xf5\x9d\xb7\x2f\x44\x1f\x5f\xdc\xdd\xdd\xbd\x08\xee\xe8\x8b\x93\x7c\x90\x8c\x60\x75\xfb\x17\xa2\xff\x79\xe5\xad\x0b\xe4\xb7\xe8\x28\x6c\x84\xe2\x89\xf7\x6c\x8a\x19\x5c\xb2\x7a\x6c\xc5\xa9\xb1\xad\xd3\x53\x4e\x8f\x96\x2c\xbe\x76\x47\xdb\x0f\x21\x1a\xcb\x3b\x83\xf9\x9c\x17\x79\x42\x73\x9f\xf0\x8e\xa9\x86\x19\xde\x24\xe3\xd4\x33\xb3\x65\x22\x38\x20\xf5\xcb\xb1\x9a\x0e\xb8\x6d\x58\x48\x7a\x79\xc2\x51\x5e\x8f\x3c\xa3\x43\x72\x3d\xd1\xc1\x4c\xf7\xc4\xdb\x08\x52\xf6\x81\x14\xf2\x61\x7c\x82\x05\x33\x61\x5a\xb5\x4d\x33\x14\x83\x0f\xc8\xcb\xb5\x8f\xa0\x1f\x2c\x1b\x0d\xf6\xcc\x75\x0b\x74\x4c\x30\xd5\xf9\x73\x39\x28\x75\x24\x76\x8e\x20\x56\x23\xb5\x0b\x90\x62\xae\x8d\xf7\xde\xbe\xde\x07\x8f\x18\x27\x8e\x51\x52\x8f\x8e\x1d\x24\x29\x21\xf0\x45\xc9\x02\x92\x70\xa4\x85\x45\x4d\x02\x01\x01\x74\x60\x42\x94\x79\xea\x93\x0f\x87\xf2\xe8\x4c\xb2\x5d\x8b\x04\x39\x52\x54\xa7\x4e\xec\xb4\xc0\xe4\x27\xd9\x6a\xbc\x06\xb4\xa8\x4b\x50\xdc\x7d\x15\xe9\x6b\xd0\x4b\xea\x4a\xb2\x19\x48\x83\xb2\x5c\x1f\x42\x9e\xf4\x08\xdb\x06\x29\x14\x67\x49\x0a\x3f\x50\xdd\x55\x3e\x71\x11\x5c\x9b\x1a\x8e\x9e\xab\x0d\x82\x82\xd9\xc2\x1b\x60\xb5\x8b\x41\xdc\xbb\xd6\x35\xf4\xba\x31\xdb\x89\xca\x90\x5b\x97\x37\x02\xa1\x75\x52\x15\xae\x02\x28\x4a\x6f\x38\x70\x53\x7b\x83\x31\x55\xe6\xf0\xe1\x10\x38\x2e\xf5\x3b\x3b\x44\xd7\x6b\x12\xbc\x24\xcb\x6b\x03\x06\x35\xbc\x98\xf1\x5b\xfc\xe0\x14\xe2\x9f\xa0\xf0\xf4\xd6\x56\x67\x33\xcf\x76\x0b\x08\xc6\x9f\xe4\xbd\xc4\x73\x6b\x5a\x4e\xc5\x43\xba\x2a\x46\x75\x18\xc7\x39\x70\x5c\xb2\x69\x55\xfa\xb6\x3c\x7c\x47\x1e\xbe\x0d\xfa\xc1\xcf\x14\xf6\xc4\xfe\x4d\x0e\xe2\xc4\x7f\x4d\x35\x70\xaf\x98\xc3\x2e\xc5\x4e\xb6\xdb\x85\xdf\xba\x45\x19\x97\xb4\xdb\xcc\x50\xe6\xd4\x87\xdd\x8a\x37\xc9\x74\x44\xe7\x4d\x3a\x43\x17\xda\x36\x89\x23\x05\x97\x84\x6f\x13\xf4\xef\xdf\x31\x51\xa5\xb0\x83\x56\x47\xaa\xa9\x40\x89\xef\x1c\x4a\x6b\x45\xa0\x5a\xc1\xaa\x73\x4c\x5d\x16\x25\x13\x70\xe1\x7c\x5f\xb7\x94\xd5\x56\x3b\xf5\x37\x6f\xbe\xcd\x7f\xa1\x37\xd9\x94\x63\xf0\x6f\xa3\xd1\x77\xf3\x51\x61\x48\xf4\x64\x77\x1a\x3d\xda\xd2\x80\x82\x12\xf0\x77\xad\xeb\xef\x9b\xa6\xa6\x61\x3f\x8f\xb7\x14\x75\xff\x17\x11\x24\x61\xe0\xe6\xed\x38\x4f\x34\x14\x71\x4e\x1d\x90\x27\x77\xe9\x46\xa3\xf2\xfe\x71\xd8\x1f\xf5\x56\x9b\xb0\xc9\xb7\x4e\x56\x53\xae\xde\x76\x6a\x83\x47\xa7\x0f\x83\x65\x01\x77\xa9\x43\xad\xa4\x51\xbc\x93\xc4\x7d\x6b\x17\xad\x75\xd7\x8e\xee\x67\xab\xe9\x73\x50\x5f\x71\xa9\x2b\x33\x07\x2a\x68\x35\x8d\x12\x91\x9e\x2b\xd7\x52\x42\x94\xdc\xbf\xc6\x9a\x28\x5e\xb6\x29\xcd\xcb\x78\x3b\x10\x77\xef\x38\x84\x4c\x53\xe4\xf6\xd5\x9f\xe9\x70\xd8\x10\x9a\x02\x16\xc3\x31\x1d\xae\xbf\xa8\xb2\x0a\xe5\x71\x98\xc9\xd2\x4e\x2c\x77\xda\xea\x8b\x3c\xb9\x4a\x05\x0a\x11\x4c\x69\x3b\x35\x84\x12\x2f\xe2\x1f\x30\x22\x83\xae\x0f\xb1\x53\x6a\xad\x05\x5c\xf2\x15\x84\xd4\x5f\x24\x8c\x5d\x25\x4c\x77\x87\xfd\xb0\x28\xee\x53\xc5\xe8\x4a\x9c\x5f\xeb\x67\xbb\x23\x72\x87\x0a\xac\xdd\x3c\x25\xc3\x8d\x04\xf6\xcc\x1c\x84\xa4\xfb\x9d\x9c\xa3\x52\x1f\x87\xe3\xef\xff\x9e\xc2\x43\xf4\x55\x04\x7c\xf3\x1d\x09\x2a\x61\xd5\xc9\x40\x04\x71\x0a\x4b\xc2\xfc\xc1\xcf\xff\xe7\x0b\x5e\xfd\x93\x52\x4f\x2e\xd2\x75\xbf\xd6\x3f\x3a\x16\x38\x13\x65\xa8\x55\x3a\x13\xed\xfe\xa0\xa2\xc2\xbb\x78\xed\x98\x24\x4f\xe8\x2c\xeb\xfa\xf5\x38\x94\x53\xa1\x0d\x00\xd5\x91\xd1\xb3\xe7\x1c\x4e\xa9\x85\x4f\x7b\x76\x50\x46\xa5\xd8\x71\xeb\xa7\xb4\x1e\x7d\xb8\xa6\x85\x69\xcb\x1f\x8c\x4d\x16\x07\x18\x22\x34\xa8\x04\x6b\x52\xf3\x43\x88\x22\xac\x46\x42\x39\x9a\xdd\x78\x00\x21\xbd\x7b\x52\xb8\xcf\xa2\x91\x94\x39\x06\xd8\xad\x7f\x3b\x96\xb5\xe0\x58\x75\x53\x33\x33\x58\xc4\xef\xec\x99\x0f\xb3\x7c\xfb\x23\xab\xd0\x67\x28\xac\xa4\xd1\x20\x66\xf7\xf3\xc2\xe5\x59\x7e\x99\x4b\xb4\x41\x1b\x28\x36\x5f\x59\xe1\xf1\x91\xb9\xf3\xc6\x0f\x90\xe7\x52\x60\x94\x4b\x6c\xdf\x5d\xa9\xf3\x52\xdb\xc7\x1c\xd5\x6f\xdc\xf2\xca\xcd\x34\x55\xa5\x09\xa6\x72\x63\x4c\x27\x07\xcf\x61\x31\xb6\xa6\x5b\x49\x1a\x6e\xa8\xc6\x60\x3b\x12\x48\xfb\x2d\xd5\x62\xce\x9e\x19\x27\xd9\x18\xa8\xd9\x9f\x2a\xae\xac\x9c\x8e\xae\xc3\x85\xb5\x45\x36\x4c\xd0\xaf\x2a\x12\xc5\xa9\x4b\x18\xd0\x20\x48\xd5\x56\xc1\xbb\x5d\x51\x39\xd5\x39\x14\xb4\xd9\xc5\x6b\x31\xc0\x3c\x5a\x6c\x88\x0d\x54\xdc\xbe\xf4\xd6\xa9\x68\x15\xbc\x56\xc6\x84\x0d\xc2\x17\x56\x5e\xca\xc2\x75\x1c\x69\x0f\x1b\x02\xed\xfd\x92\xa7\xc2\x95\x2a\x5d\xba\x1a\x5b\xac\xea\x6d\xea\xa5\x6b\xa3\x84\x71\x74\x2f\xb9\x6e\x8a\x7b\x5a\xf8\x7e\xaf\x5a\x98\x4c\xe5\xba\xbd\x8e\x44\x71\xc2\xc8\x57\x9d\x5d\x7f\xc4\x71\x7f\x18\x5f\xd7\xb1\x46\xa9\x47\xf2\x2d\x93\x69\xca\xd2\xfc\x0c\x6d\xd0\xc6\x6d\x50\x07\xfd\x32\x03\x81\x60\xbb\xb4\x28\x4c\x24\xc6\xb7\x9a\xde\xe3\xb4\x0f\x74\x4d\x58\xdb\x59\xd5\x58\xf2\x32\xfc\xa5\x95\xe1\xf2\x47\xcd\x07\xf8\xff\x61\xb8\x3c\xbe\x5b\x37\x62\xfe\x3f\x20\x12\xa3\xb5\x38\x94\x6e\xd5\x54\x25\x4a\x37\x58\xb3\x5c\x54\x73\x1c\x43\x98\x14\x3c\x6a\xa8\xa0\x53\x0f\x35\x50\x07\xac\xb5\x6c\xb0\xc5\xcd\x57\x04\x2d\x30\xa4\x70\xcc\x42\x1b\xa1\x95\xaa\xa6\xd5\x9a\x31\x0b\x81\xc2\x4e\xf5\xc2\x09\x8d\xdf\xfb\xd9\xd1\x0a\xee\xd2\xaf\x2c\xc9\xb3\x62\xd6\xc8\xcb\xfc\x02\x34\xee\xb1\x98\xb7\xfb\xd9\x1f\xb5\x72\x5c\xdf\xf6\x10\x48\x7c\x7c\x64\x57\x84\x0a\xb3\x1d\x1f\x8a\xa4\x3f\x06\x2a\xd6\xc9\xbc\x6a\x56\x6f\xb1\x0b\x23\x61\x89\xac\x2a\x0d\xbf\x07\x43\xea\xdd\xea\x9f\xaa\xdf\x07\x13\x1b\x0f\xe4\x9a\xa9\x67\x1a\x3d\x9d\xe1\xfc\xc6\x43\x2e\x6a\xd0\xea\xe2\x64\x00\xc0\x5f\x56\x64\x35\x3e\xc5\x22\x1b\x6e\xb5\xa2\xe4\xe8\x53\x27\x3c\xfe\x3b\xf0\xd6\x72\x50\x39\x2e\x43\xb6\x46\x15\x8e\x73\x6d\xbd\x32\x7e\x7a\x13\x1d\x91\xa8\xc6\xf7\xad\x6d\x3d\x58\x85\x6b\x94\x81\x4f\x52\x06\x89\xde\xbd\x50\xf9\xcb\x85\xdf\x48\x33\x4d\xe0\xc1\x96\xa3\x5e\xf2\x0e\xd1\xd8\xa9\xbb\xe4\xe9\x75\x0c\xdc\xfe\x17\x93\x95\x58\x7b\xdb\x00\xd1\x29\x7a\xe8\xf4\x6b\x4b\x29\x95\x36\xe2\x5e\xfe\xa3\x95\x10\xe9\x34\x50\x88\xdd\x4b\x20\x8b\x8d\xea\x44\x1e\x2f\x9d\x50\x4f\x69\x45\xde\x98\x0d\xaf\xc6\xc2\xdc\x34\x50\x4a\xc1\xf5\x44\xa2\x16\xa8\xb6\xae\xf5\x96\x65\x41\xc2\x05\xbe\xe5\x0c\x67\xe3\xba\x1d\x2c\xad\xb1\xb1\x08\xdf\xd2\x84\x0c\xd5\xae\xe8\x39\xb6\x5d\x91\xda\x69\x7e\x10\x9d\x2f\x5e\xaa\x8d\x05\x2f\x3b\x33\x32\x29\x09\xef\x80\x1e\x58\x36\x16\xa4\xd1\x0e\xd4\x55\x0d\x14\x55\xb5\x53\xd9\xa8\x61\x78\xf2\xf4\x0e\x94\x23\x2e\xed\x80\xc7\xc0\xc4\xea\xa0\xb7\x81\xdd\xc6\x36\x34\xab\x47\xfd\x16\x7a\x5d\x54\xff\x8b\xba\x0b\x57\xdf\x4f\x1c\xd5\x52\x91\x74\x71\x98\x65\x30\x8e\x49\xee\x3b\x28\xc8\x1e\xd0\x3c\x5e\xe6\x14\x73\xc8\x0e\xa8\x77\x78\xaa\xe1\x9a\xf2\x80\xed\x43\x8b\x74\xbc\x91\xef\xb0\x86\xdc\x9c\x03\x6b\xec\x74\x87\xa8\x8c\xfd\xab\xa6\x60\xb7\x65\xfd\x9e\xe2\x10\x04\x3d\x19\xd6\x49\xc8\x43\xdc\x30\x86\x48\x0e\xea\x09\xab\x6c\xeb\xcc\xaa\xe2\x0b\xbd\xb4\xa1\x3b\xb2\x23\x4c\x0a\x3d\x2f\x9d\x89\x55\x5b\x56\x13\x7c\x56\xcb\xcd\xa2\xae\xad\x02\x27\x35\x41\x2a\x52\xd4\x65\xf8\x1a\x59\x31\xb7\x5b\xcf\xc5\x9b\xd8\x56\x4f\xe3\xe9\x69\xb5\xb9\xf3\xcc\x74\x5e\x3b\x84\xd1\x82\xd3\xce\x3d\xf5\xb2\x8a\x6a\xa9\x88\xb2\xa5\x5a\x5a\x42\x94\xa7\xd1\xfd\x07\x08\xc1\x04\x46\x0a\x5c\xa0\x42\xda\x16\xbf\x68\xef\xb5\x41\xd1\x3e\x5d\xba\x21\x94\x3d\xe8\x28\xb1\xa9\x5f\x7d\x1e\xd6\x00\x1a\x85\x90\x90\x44\x1e\xea\xcf\x98\x59\xab\x0a\x16\x24\x00\x56\x74\x84\x25\x63\x5c\x88\x5c\xed\xde\x6c\x41\x1d\x8e\x77\x00\xad\x68\xc8\x50\x49\x17\x31\x31\x84\x10\xef\x69\xe5\x9a\xfa\xd4\xad\x88\x32\xef\xb2\x0a\x3d\xda\x60\xa0\x42\x3d\xa0\xce\x22\xfc\xb5\x73\x58\x3f\xf4\x62\xe1\xd4\xae\x37\xf2\xf8\x7a\xa4\x5a\x8e\x90\xcd\x62\xf4\x21\x79\xc9\x5b\xf2\x5a\x95\x1e\x6d\x31\x38\x11\x2b\x2c\x6e\x9a\xc7\x56\x60\x2e\x0d\xd5\xd7\x5c\xcc\xf1\xf8\xcb\xcf\x9d\xa4\x45\x0d\x1c\x71\x90\x44\x87\x69\xe3\xf4\x68\x87\xfd\x29\xd2\xc2\xe8\xe0\x28\x26\xe1\x44\xd0\xa9\x1e\x06\x86\x7e\x3c\xdd\x04\xf9\x52\xf9\x35\x26\xe8\x99\xf9\xf4\x64\x56\x5c\xb0\xef\xe8\x2c\x7a\xcf\x9f\x72\xc6\x17\x7c\x06\xc6\xf3\xb7\x99\x91\x1f\x5e\x09\x24\xf4\x67\x2e\xca\x8a\xca\xf3\x4d\x74\x46\xd3\x3a\xdd\xdf\xad\x04\xd7\x1c\x54\x5f\x03\xc5\xe1\x44\x92\xd6\xeb\x49\xb1\xe6\x73\xa3\x6c\x84\x86\x6c\xf0\x6b\x50\x63\x7f\xb4\xf5\x68\x1d\xf6\x10\xf0\x5d\x04\x3a\x5a\xcd\xe5\xee\x46\x3d\x6f\xb0\x76\x5b\xb7\xa2\xea\xfb\x17\xa8\x9a\x52\xbd\xd6\x1f\x5d\x1a\x8e\xa8\xf6\xd1\xd9\x33\xfa\x3a\x6f\x52\xff\xf8\xe6\x6d\x08\x32\x2d\x82\x71\xa5\x30\x63\xa5\x31\xc6\xa3\xf4\x37\x52\x24\x3e\xa8\x57\xaf\x73\x63\xc0\xa4\xdc\x81\xa4\x3e\x31\x26\x7d\x15\xbe\x9e\x8f\xee\x90\xa7\x84\xbf\xc0\x75\xf0\x90\x6c\x4e\x71\xee\x4a\xea\x98\xb3\xfa\xc4\x97\x20\x7b\x45\x5e\xe1\x26\xc6\x51\x5a\xd2\x6d\x6a\x38\xd7\xe5\x3f\x54\x87\xc6\x60\x05\x3e\x2b\x37\xb7\x8f\x62\x33\x02\x59\x7d\xe8\x90\x97\xa5\x43\x27\xb6\xda\x77\xd0\xfe\xee\xd7\x3c\xdd\x73\xbb\x65\x36\x4e\xf2\xd8\x58\xe8\xec\x90\x43\x07\xe0\x9e\xc2\xa2\x21\xfa\xd3\x27\x45\x70\xb4\x3a\xcf\xc4\x99\x32\x9d\x3c\x1c\x01\xf0\x89\xe0\x18\xbb\xe9\x68\x2b\xe3\x7b\x72\xa8\xf0\x3c\x9f\x3f\x2b\xb2\x8b\x6c\xa9\x50\xa7\xb5\x0f\x75\x5a\x83\x2a\x15\x14\xfa\xb1\x5a\x04\x6f\x4d\x77\x5a\xb8\xba\xa8\x5f\xf5\xd3\x6e\x5a\xa7\x10\xf6\x5b\xac\x59\x90\x14\xf6\x23\xa8\x4b\xe0\x3c\x70\xc2\x96\x30\xd3\xc5\xbc\x23\x11\xdd\x05\x40\x89\x73\x0e\x84\x63\xb1\x1d\x2e\x39\x25\xda\x19\xa1\x5f\x4d\x90\x8d\x3a\x2e\x08\xdb\xb7\xed\x5c\x6d\x11\xd9\xcd\xf8\x56\x79\xfb\x91\x84\x0d\xd8\xcf\x06\xd9\x76\x3a\x8a\xc0\x09\x9e\xf4\xdc\x37\xc6\x28\x62\x03\x95\xbc\x7b\x07\x06\x24\x06\xda\x0f\x30\x2e\xa8\x8c\x8b\x6b\x85\xf5\x10\x29\x9a\xdd\x8a\x64\x57\x6a\xe7\xac\x64\x59\xc6\xbd\x1d\xc8\xcc\x05\x85\x23\x80\xe5\x01\x57\x87\x57\x7b\x8c\x6c\x52\xa1\xae\xc5\x6e\x4a\x77\x12\x22\xda\xd5\x4a\x91\x87\x3b\xe5\x93\x91\x9c\xc1\x7d\x37\x4a\xc1\xb4\xee\xa9\xb5\x1d\x75\xb9\x02\x63\x46\x35\x68\xbe\xc1\xbb\xa4\xe7\x12\x39\x76\x4a\xd5\x2d\x6a\x65\x25\xdf\x81\x8b\x45\xa1\xda\x41\x1b\x34\xab\x92\xb7\x9d\x67\x0d\x86\xe2\xc0\x7d\x78\x02\x93\x1d\x85\xb6\xf9\x2c\x50\xf9\xdc\x7c\x97\x85\xc9\x74\x84\xb1\x70\xb1\xb1\x2b\x16\x2d\x75\xe2\xfc\xf1\xd8\x05\x3f\xeb\x77\x81\xac\xf3\xb1\x96\xc9\xb6\x01\xff\x99\xb3\x45\x8f\x22\xd4\x53\x48\xaf\x27\x85\x67\x57\x76\x26\x07\xdb\xff\x29\x7e\x7b\xde\xe0\x7c\x99\xfa\x98\x17\xfa\x44\xc3\xec\xd6\x84\x1e\xb8\x0d\x71\xbd\xd9\x6e\xa7\x65\x77\xbb\x47\x92\x0b\x71\x61\x17\x37\xf9\x4e\x6f\x2b\x92\x4e\x53\xee\x83\x35\x66\x6a\x83\x0f\xcf\x30\x60\x73\xd0\x1b\xa6\xc3\xab\x68\x56\xdb\x71\xbe\x19\x6f\x27\x68\x7e\x48\x7a\x70\x08\xdb\x66\x96\x27\xc5\xde\xa8\x07\x2e\x32\x28\x6a\x4d\x79\xba\x74\xc0\xb5\x71\x88\x56\xf4\x5c\x47\xbd\x7f\x9e\x0a\x5e\xa4\xbf\x49\xb0\xbe\x6e\x71\xce\x5c\x85\xf0\x2c\xa1\x15\x57\x48\x99\xc3\x15\x69\xb0\x32\x17\x89\xaf\xb9\xf5\xa4\x6b\xfa\xa3\xd1\xfc\x90\x9b\x3e\xd7\x3e\xc2\x06\x24\x68\x67\x67\xfe\xde\x3f\x71\x27\x29\x76\xc3\xb5\x56\xca\x8a\xe9\xd4\xcb\x75\x5a\xe9\x50\x99\xc8\xb7\x92\x38\x69\x14\xe4\xd9\x94\x88\x79\x63\x7f\x6c\x45\xdc\x67\x11\xcb\xc0\x86\xf3\x29\xc5\x0d\x82\x36\xc0\x72\xeb\x43\x9d\xf0\x23\xbe\x4a\x29\xb8\xed\x27\xa9\x49\x61\x29\x1a\xc3\x71\x58\x7e\x83\xef\x35\x6d\x80\x3d\xf1\x86\x5d\xe0\x50\x6b\xda\xd3\x63\xbf\x22\x45\x15\x4c\x8c\x96\xe8\xd9\x60\x8e\xa9\x28\xf1\x66\x89\x1b\x37\xcb\x11\xaf\xc0\xa7\x9c\xab\x11\x97\xe9\x90\xaa\xb0\x80\x14\x0e\xff\x47\x98\xd2\x8f\xf7\x8c\x41\xad\x24\x8b\x73\x4c\x72\x88\xcd\xec\x6e\x67\x79\x36\x29\xd3\x51\xe2\xdc\x4d\x81\xfb\xf0\xba\xbc\x2a\x42\x1d\x87\x4a\x2f\xc9\xf7\xba\x13\x2a\xfc\x62\xfa\x2e\xfc\xe2\xb8\x26\xf9\x86\x02\xdf\x6f\xfa\x14\xa1\xcc\xca\x78\x20\xf0\xc0\x7f\xdd\xa3\x98\x8d\x3f\x2b\x7c\x39\x31\xb9\xec\x64\xa9\x90\xd4\x3e\x03\xce\x06\xc5\x40\xb2\xcd\x32\x56\xe3\xee\xcb\x8d\x08\xab\xba\x8d\x33\xac\x89\xd7\x1d\xa8\xbd\x9e\x8c\xbb\xb0\x8a\x45\xb0\x68\x0e\x27\x2b\x1c\x89\x30\x15\xf8\xb6\x4c\x40\xa0\xe8\x11\x38\xe1\xc0\x6d\xa3\xdf\xca\x13\xdd\xbb\xb1\x8a\x73\x1b\x1c\xd9\xa2\x9d\x24\x1e\x07\x37\xa8\xee\xa4\x82\xa6\x36\x08\xec\xba\x7a\x35\x31\xbc\xbd\xd3\x30\x0c\x1b\x46\xda\x97\xc8\x55\xc9\x07\x7a\x8a\xbe\x78\x7f\x5f\xbd\xa4\xc2\xd3\x41\x61\xa9\xd6\xab\x8c\x7d\xb8\xfe\x4c\xb2\xcd\xbf\x57\x2c\xa6\xa0\x0c\x20\x2a\x3e\x87\x2c\xaf\xbd\xeb\x66\x96\x95\x45\x99\xab\xfe\x4a\x4d\xe8\x5d\x93\xed\xa0\xb9\x4c\xad\x1d\x60\x4d\xea\x98\x08\x96\xee\xe6\x69\x51\x0a\xc2\x53\xe0\x38\xd7\x99\x42\xb8\xee\x99\x1b\x42\x6d\x40\x35\xa4\x7c\xd2\x2b\x95\x4c\x5f\xb8\xe3\x72\x65\xc4\x2b\x57\xa1\xfc\x20\x2e\x18\x4f\xbb\x15\x92\x19\xd8\x3d\x6d\x28\x9a\xad\x03\xa8\xa7\xc4\xf9\x64\xdd\x31\xbd\x0a\x8d\x9f\x02\x56\xcb\xa8\xda\x41\xd1\x65\x61\x10\xbf\xb0\x39\xe9\x5d\x4b\x4a\x28\x2e\xb0\xd3\xc5\x98\xe5\x16\xa0\xef\x4a\xaf\xe8\x6f\xb0\x57\xf4\x86\xea\x15\xbd\x0f\xbd\x1c\x61\xa8\xa7\xb6\xb3\x8c\x31\xee\xbd\x19\xd8\xeb\xaf\x46\x1c\x1b\x32\x35\xd2\x96\xa3\x82\x28\x19\x3e\xef\xb2\xde\xce\x04\x08\x14\x92\x26\x90\xa6\x78\x43\x5d\x8d\x6f\x22\x2a\x60\x87\x20\xc1\xad\xb7\xd7\xa3\x2b\x9d\x4e\x12\x5d\x67\x68\x41\x57\x31\x7c\x86\x46\x87\x13\x3f\x1c\xf3\xf5\x57\x6d\x48\x78\x87\x80\x82\x44\xcc\xea\x6b\x36\x69\xcd\x4c\x69\x42\xad\xb6\x02\x1b\x77\xfb\x12\xaf\xd0\x9d\xc9\xdd\x8d\xf5\x6d\x34\x94\xa3\xda\x07\x75\xa7\x71\x8c\x84\x44\xf7\x82\x7a\x29\xb7\xb4\x7b\xb0\x61\x98\xdc\xc9\xcd\x22\x99\xae\xe8\xcc\x23\xe4\x6a\x76\x0b\xa5\x22\xc0\x7b\xb6\x6d\x51\x1a\x35\x17\xcf\x57\x47\x02\xb2\x2d\xee\xd1\x7a\xc9\xf5\x36\x78\xa9\x06\x99\x8c\xfd\x2b\x8b\x82\xd6\x10\xf2\xd2\x10\x74\xbc\x56\x4c\xc2\x3c\x56\x84\x0d\x3a\x17\x1b\x72\x77\xa3\x35\xcb\x23\x51\xbc\xfa\x76\x52\x14\xef\xb1\x6e\x03\x36\xbd\x16\xe7\xa5\xb4\x63\xbd\x22\x60\x92\xa3\xf7\x5c\xac\x2b\x30\x72\x69\x11\x2c\x02\xb5\xfc\x5f\x7a\x20\xa8\x05\x73\x8e\x0a\x2a\x69\x52\xce\x91\xec\xc0\xbc\xbc\x2d\x65\x5e\x09\x0e\x96\x2d\x85\x4a\xc2\x8b\x4a\x0a\x46\x2f\x9c\x6f\xa0\x4d\xa4\xbb\xe2\xaa\x3f\x1d\x02\x29\x9f\x6d\xff\x68\xd3\x0d\x85\xd6\x15\x9c\x3a\xe1\xd7\xb9\xa9\xac\x2e\x20\x9a\xc5\x32\xd8\xd0\x16\x32\xed\x5c\x98\x28\xdd\xd3\xa2\x6b\x6d\xbe\xf6\x05\x04\xef\x48\x0c\x61\x05\xf4\x27\xc4\x08\xf7\xe5\xeb\x0d\xc2\x9e\x03\x47\x7b\x9f\x52\x28\x38\xaf\x3f\x44\x39\x42\x4e\x6e\x97\xd2\xc3\xda\x80\x93\xcc\x81\xe4\xe9\x73\x73\x94\x28\x6a\xca\x46\x31\xc8\x31\x8f\xb8\xe0\x53\x68\x33\xdc\xd4\xdf\x86\xf5\x5a\xb7\x68\xbe\x57\xf8\x9d\x3a\xd7\x6f\x61\x0e\x2f\x77\xb8\x1c\x89\xce\x70\xa7\x48\xce\xaa\xe9\x12\x6d\xbc\x0a\xc9\x8f\x5f\x7d\xe8\x46\x80\xcd\xc4\x5d\x6e\xa9\x8f\xf6\x8d\x3d\x95\x57\x00\x48\xac\xd6\x3a\xf2\xb7\xe3\xce\x49\xdf\xa8\x6d\xa6\x14\xaa\x19\x34\xb3\x26\x70\x10\x55\xed\x37\x65\xe3\xc5\x29\xe2\x6e\x08\x5f\x08\x5e\x59\xd7\xcd\x89\xab\xcc\xb3\x86\x48\x28\x87\xbe\x0d\x2a\x68\x4a\x46\x7d\x0b\xae\x9e\xed\x60\xe5\x0b\x87\x72\x37\x5f\x2e\x17\x04\x45\x94\x1a\x61\x39\x94\x16\x9f\xd4\x83\xc9\xf1\x71\xd8\xe1\x4f\xa9\x5e\x8a\x9a\x22\x4d\x5d\x77\x54\x4d\x16\x1a\x82\xb4\xaa\xd8\xbf\x37\x68\x7a\xa4\x83\xc4\xfe\xb9\xe2\xfb\x2c\xe4\x0d\x5b\xcb\x37\xfe\x8e\x7e\xca\x63\xb4\x98\x6f\x5c\x85\xff\xe5\x91\x57\xd0\x95\x1c\x34\x4c\x68\xd7\x9d\x59\x0b\x51\xa7\x58\x46\x82\x89\x55\x43\x6d\x67\x9c\x30\xc3\x53\xd4\xe0\xe7\x12\xb3\xd7\xce\x24\x18\x96\xbd\x1a\xf4\xc8\xa9\x85\x49\x8f\xe8\xd2\xd1\x30\xf7\xa4\x16\xeb\x24\x2a\x58\x2b\x52\x4f\xd1\x0e\x10\x39\xa7\x47\xbd\x52\xc2\x9a\xab\x15\xcc\x19\xa5\x57\x3b\x19\xe4\xcd\xfc\xa9\xe2\x5b\x11\xe8\xe1\x38\xcb\x39\xba\x74\xdf\x3c\xdc\xc4\x8c\xa7\x91\x77\x7f\x61\xf4\xda\xdb\x7a\x8c\x65\x99\xa7\x9b\x93\xd2\xbe\x3e\xf7\x2b\x3e\xa1\x0f\xc0\x35\xd7\x2c\xfc\x38\x7c\xb6\x0e\x2f\x08\xab\xa1\x6d\x31\x09\x7e\x1a\xed\x7e\x8f\xf9\xc0\xdc\xa9\x77\xc3\x5b\x0e\x7f\x79\xf1\x8a\xfa\x11\xa1\xf7\x4b\x77\x95\xb6\x54\x4b\x14\xaa\x54\x03\x03\xbf\x89\x96\x19\xc2\xb1\x9b\x8e\x91\x41\xda\x0f\x81\x6d\x76\x8b\x78\xe3\x4a\x11\xbd\xd2\x8f\xae\xbe\x22\x2f\x8a\x61\x39\xe6\xca\xf5\x56\x72\xf2\xd5\x2b\xef\xbf\xbb\x16\xba\x42\x77\xdc\x35\xea\xf1\xa9\xbb\x75\xf0\x16\xb7\x0f\xdf\xe2\x5a\x5b\x7b\xc8\x37\xe7\x96\x83\xc2\xbd\x7c\xd7\x93\x2c\xdf\x7f\xeb\x6a\x84\x97\xb7\x7c\xb2\xb4\xae\x10\xd0\xd8\x01\xd1\x27\x49\x7e\x3d\xed\x25\x75\x94\x7c\xf7\x95\x2b\x24\xc6\x9c\x90\x6a\xe2\x7d\x59\xfd\x91\x29\xce\xb8\x0d\x4e\xee\xdc\xbe\xac\xd7\x67\xad\x58\x06\x88\x8b\xc9\x91\x81\x94\x2d\xe2\x94\x0c\xe8\xdd\xa1\xa8\xcf\x6d\x3a\xe6\xa2\x48\x14\x85\x30\xd7\x9f\xf7\xe4\xcd\xba\xe8\xc4\x04\x5e\xea\x21\x86\x5d\xc9\x8c\x35\xae\x34\x75\xb0\xe2\x24\x7a\xd2\xd5\xa9\x39\x97\x12\xd2\xb5\xc6\x3d\xb7\xad\x1f\x58\xae\x77\xeb\xad\xfd\xd1\xf5\x6e\x1e\x5e\x97\x84\x86\xe2\xf4\x97\x37\xd7\x58\x1b\x17\x40\x97\x08\x63\x6b\x64\xfa\xda\x34\xcf\x82\xe8\xe6\x69\xb6\x2f\x65\x73\x24\xff\x53\x97\x7c\x94\xd0\x03\xb1\xed\x4a\x20\x82\x65\xdb\xd5\x96\x66\x3f\x3c\x92\x7b\xc6\xe3\x71\xc0\x05\x4a\x9f\x93\xdc\x65\x5d\x8d\x5b\xf7\xb8\x4e\x67\xcb\x49\x09\x9d\x06\x6e\x89\x92\x15\xb3\xba\x42\x69\x91\x0f\xde\x7b\x6b\x8d\x0f\x05\x99\x0a\xbf\xcb\xb6\xb6\x06\xe9\x28\x81\xfa\xbc\x5c\xab\xf4\x04\xcd\xd7\xa7\x74\x7e\x31\x87\xd5\x00\x4a\x0b\xa4\x0d\x60\xa9\x46\x03\xee\x36\xd9\x8b\xf4\xad\xdc\x11\x8e\xf9\x21\x29\x4d\x38\x2e\xbc\x86\x6b\xf9\x39\xc8\xae\x78\xaa\x8e\x44\x43\xb5\xc6\x97\x4f\xd0\xe6\x98\x6f\xbc\x37\x19\x45\x1f\xa8\x5f\x9c\x37\x38\x32\x78\x73\x45\xfd\x62\xde\x80\x10\x96\x67\x59\xc9\x57\x5d\xdc\xa3\x6f\x36\x84\x1d\xb9\xab\x87\xf1\x11\xbd\x2e\x55\x9a\x6f\x02\x61\xea\x18\xdc\xb6\x1c\x1c\x1a\x86\x9a\x7b\x3b\x00\x5a\x09\xa7\x56\x80\x7c\xbe\x97\xa7\xe3\x60\xe1\x17\x0e\xab\x7f\xe2\xec\x5e\x9e\x28\x24\x29\xf8\x7c\xe0\x32\xad\xa1\xff\x72\x8a\x39\x5f\x1c\xbe\xbc\x49\xda\x49\xeb\xf1\x96\x3d\xde\xd4\xd8\x5f\x23\x72\xbc\xa7\xe1\x50\x12\x1b\x82\x23\x95\x99\xc7\x9e\x08\x63\x5e\x38\x82\x9d\x79\xdc\x38\x5b\xbb\x51\x51\x0c\x08\x47\xae\x5e\x7d\x2b\x88\xb4\xa6\x89\xc4\x6a\x3f\x8b\x8e\x9e\xc7\x92\x0d\xf8\x97\x7f\x53\x32\x71\xb9\x9d\x27\xc5\x5f\x4e\x9e\xb3\xfb\x59\xdb\xea\x3f\x6e\x00\x75\xae\xf8\xf5\x20\x2d\x93\x17\xcf\x3d\xe7\x90\x94\x14\x8b\x19\x84\x57\x55\xf2\x26\x2d\x56\xec\xed\x3f\xf1\x60\xf7\xce\x66\x3a\x78\x73\xdc\x76\xae\x78\x6c\x5d\x2d\xdc\x70\x5d\x73\xfd\x20\x6b\xfe\x6e\x1f\x63\x97\x8a\xbb\x6c\x5c\x33\x63\xf7\x44\x41\x5d\x10\x02\xc6\xd1\x19\x4a\x54\x2b\x21\xd2\xcb\x2e\x10\x42\x52\x5a\xb5\xd0\x22\x7f\x83\x84\xa0\x27\xfe\xeb\x49\x9a\x2b\xa6\x9b\x6e\x8f\xc0\x2d\x41\x45\x06\x9c\x69\xd3\x25\xe7\x73\x0e\xdc\x98\x59\xb9\xf3\x56\x1d\x02\x06\x87\xab\x07\x01\x64\x50\x86\x1c\x6f\x39\xa4\xf4\x68\x9b\xfd\xcb\x8d\x4e\x9c\x15\x4c\x1d\x59\x20\x22\x23\x37\x5d\x78\xef\xca\x64\xa8\x23\x46\x58\xdd\xe1\xf3\x9a\xb4\x62\xdf\x7a\x6f\x71\x0b\xaa\x6a\x04\x05\x2e\xba\x03\x8a\x70\xf8\x16\x1d\x24\xb6\x2b\xb7\x66\xe7\xb1\x76\x10\x52\x5b\x4b\x73\xa3\x7c\x2b\x20\x1c\xe6\x0d\x72\x51\x68\x63\xea\x7e\xb5\x70\xa8\x92\x94\x41\x63\x34\xd5\x85\x84\x9a\x39\x1e\xc4\x08\xad\xbc\xde\x0a\xcb\x1c\x32\xc5\xaf\x61\x21\x95\x0d\x42\xdb\xad\xe2\x28\x8e\x75\x9a\xb3\x74\x6f\x92\x07\xd0\x4d\x0b\xae\xa8\x8c\x90\x45\x51\xaf\xa5\x63\x10\x95\x81\x9d\xe2\xf6\x52\xc9\x10\x9d\x64\x83\x62\xb2\x73\xeb\xf8\xb1\x77\xc8\x00\x39\x2c\xbe\xff\x1d\x1d\x24\xd2\x1c\x1a\xbc\xd9\x7e\x5f\xad\x76\x1a\x51\x99\x33\xc2\xdc\x76\x72\xf6\x14\x01\xc9\x7c\xf6\xf9\xc6\x2f\xdf\x7a\xc7\x6f\x1f\xa2\x8d\xfc\x2a\x4c\x4f\xf9\xe5\x6a\xe2\x49\x21\x4c\x3c\x67\x8c\x4d\x5a\x3d\x59\xea\xd3\xa6\x62\x73\x43\x3a\x2e\x2b\x22\x3a\x75\x1d\x23\x54\x6d\xbc\xbe\x71\x3f\x1e\x97\x94\x6f\x0e\x17\x2a\xb1\x3b\xe6\x09\x21\x99\xd7\xd6\xa0\x21\x37\x9e\xbb\xd8\x58\x1f\xd6\x48\x37\xe5\x78\x29\x7d\xe1\x8b\x83\x18\x45\x42\xe1\xd9\x6b\x4d\x04\x0f\xd9\x0d\x13\xeb\xe6\xc1\x18\xe7\xd9\xf5\xb4\xcf\xc9\x18\x3a\x5e\xfd\xb6\x31\x28\x9a\xfe\xba\xaf\xf4\x59\x73\x25\x0f\x7d\xc0\x66\xe2\xea\x34\xa7\x01\x35\x10\xf1\x82\xc8\xe9\x9c\x8e\x9b\x4f\xf8\x80\xd0\x50\x6f\x97\xec\x91\xde\x82\x1f\x0b\x06\x9c\xd4\x20\x1b\xd2\xb1\xdd\xd3\x3b\x46\xbe\x25\x70\xba\xe9\xeb\x90\x9a\xf6\x4e\xd6\x71\x90\x6e\x25\x75\x7f\x16\x7e\xf2\x27\xc4\xc5\x85\x50\xba\x86\x0d\xd9\x29\xcb\x71\x41\x95\xeb\xa0\x8c\xec\xd5\x48\x98\xb8\xbf\x5a\xeb\x7f\xa9\x65\x19\xc7\x29\x7a\x45\xd7\xdc\xc1\x39\xc5\x82\xe3\x69\xfa\xa9\x46\x32\x05\x16\x0b\x15\x74\x45\x19\x49\x0d\xe2\x6c\x41\x8a\xa7\x06\x6a\xaf\xb7\xd0\x9c\xed\x5c\xf8\x57\x23\xbf\x7f\x9d\x9b\x38\x92\xee\x7a\x43\x47\x89\xd7\xe4\x15\x38\x10\x48\xbf\xf8\x41\xa4\x33\xa7\x87\x16\x41\x75\xd4\x76\xa7\x97\x2b\xe1\xe1\x55\xf5\x9f\xc4\xa2\xa0\xad\xd0\xbc\x77\x88\xa2\x3c\x2c\xd4\xd1\xee\x4f\x40\x23\xfd\x2d\x8e\xed\x13\x3a\x00\xba\x4f\x3d\xb6\x5b\x4b\xf5\xd2\x26\x7c\xef\x8b\x2d\xff\x4b\xcb\xe4\xe3\xa4\x37\x31\x81\x27\x3e\x7a\xd8\xd1\x73\x7a\x13\xcd\x57\x32\x32\x23\x7c\x53\x79\x05\x6c\x2b\x2b\x7e\xf2\x33\xc4\xdd\xa9\xe9\xd6\x50\x2a\x44\x4f\x5f\xed\x5a\x49\xf2\xe5\xed\x4a\xdf\x35\x81\xf9\xbc\xe1\x61\xd7\x19\x6e\x70\xd4\x3a\xec\x5e\x62\xd5\xe9\x4f\x75\x38\x8a\x72\x9d\x48\x7c\xe9\x6d\x55\xf9\x73\x1f\x76\x5f\x08\xa4\x4f\x98\x26\x0d\xd3\x96\xd7\xd9\x78\xe3\x9d\x71\xc7\x6e\x8e\xe6\x04\xeb\xbe\x75\x7b\x80\x8b\xa5\xae\x60\xed\x5c\x9d\xe5\x5f\x90\x82\xea\x52\x2d\x08\xec\xc3\x18\xc3\x1e\x3f\x72\x2f\x13\x5d\x7a\x57\x48\x52\x65\xd6\x40\xc8\x99\x5b\x69\xeb\x3c\x5f\x39\x44\x45\xf9\xd8\x0b\xf5\x84\xaf\x92\xe3\xea\xd5\xa4\x4b\x5a\xfd\x9e\x2f\xf2\xde\xf3\xe7\xed\x3b\x8b\xc0\x79\x63\x1a\xc0\x2d\x47\xf0\xf2\x45\xb9\xd0\x88\x07\x8a\x16\xff\x8d\x5f\x55\xee\xa5\x48\xf6\x25\x34\xce\x57\xc8\x41\x40\x1f\x2a\xfe\x13\x5d\x93\x04\xf0\x7e\x45\xc3\x85\x78\x27\x81\x68\x07\xcf\xf3\x3d\xf1\x3f\x03\xaa\x2e\x4f\x2f\xcb\x50\xaf\x30\x1f\x72\xaf\xbd\x14\xf1\x95\x4e\x58\x6a\x14\x56\x94\x8b\xf3\xd2\xc2\x35\xac\x38\x16\x2e\x2d\xe3\x6d\x67\xb9\xdd\x22\x6d\x2b\x96\xdc\xdf\x17\x5a\x76\x6b\xd5\xb3\x21\x94\x63\xec\xfe\xa2\xab\xaf\x8c\x03\xc4\xff\x09\x30\x8f\xdc\x29\xa7\x95\x53\x50\xfc\x31\x52\xc6\xc3\xe5\x2d\xe3\x1c\xfb\x85\x7d\x6b\x1c\xe6\x9b\x7f\x58\x66\xd9\x40\x21\x5f\xbc\x2d\x4b\x54\xe1\x45\x8e\x78\xc5\x26\x66\xaa\xf3\x8d\x07\x9c\xa1\x0e\x8f\xcc\x5f\x2f\x14\x1b\x2f\xd0\xcb\x63\xbc\x9a\x19\xec\x61\xe7\x0b\xf5\x7c\xa8\x9e\x93\x43\x18\xf5\x33\x7e\xba\x03\xad\x91\x7a\xd0\xdf\x7d\x68\x45\x51\x22\xf8\xf7\xae\x40\x43\x67\xb2\xa2\x56\x02\x4d\x51\xee\x17\x28\x84\x06\xb8\xef\x67\xf4\x74\x0f\x9e\x3d\xe4\x08\xd3\x53\x6e\x5b\x24\x8a\x43\xf4\xf1\x66\x2a\x67\x5c\x73\x7c\x3b\x4c\x47\x8a\x52\xd1\xbd\x55\x66\x74\xf4\x6e\x27\x9b\xe4\xd4\x8f\x2e\xcb\x25\x78\xfd\x78\x8f\x9a\x63\x22\x1a\x3e\xda\x4d\x92\x6b\xe6\x03\x32\x54\xfe\x40\x36\x2a\x77\x04\x3e\x8f\x96\x21\xed\x25\x31\xc1\xb7\xc6\x4c\x9d\xf2\x78\xb7\x2b\xe3\x76\x07\x4d\xef\x64\xd4\xf6\x90\x61\xef\xfe\x6f\x00\x00\x00\xff\xff\xaf\x77\x5b\x21\xb9\xc9\x00\x00") +var _confLocaleLocale_bgBgIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xbd\x6b\x6f\x1c\xd7\x99\x20\xfc\x9d\x00\xff\x43\x59\x03\x21\x36\x20\xb5\xe1\x04\xef\xbb\x8b\x40\x94\xd7\x91\x12\xdb\xbb\x96\xad\xb1\x64\xcc\x0e\x0c\xa3\x53\xec\x2e\x92\x35\xea\xee\xea\x54\x55\x8b\x66\x06\x03\x50\x52\x1c\xd9\x06\x76\xe4\xf1\x24\x13\xc3\x63\x5b\x91\xb3\x93\xdd\xc1\x7c\xa1\x28\xb6\xd9\xa2\xc4\x16\x90\x5f\xd0\xfd\x17\xf2\x4b\xf6\xb9\x9e\x4b\xd5\xa9\xee\x96\x67\xf6\xdb\x02\x82\x48\x56\x9d\x73\xea\x5c\x9e\xf3\xdc\x2f\xf1\x70\xd8\xee\x26\x45\x67\x63\xf6\x87\xd9\xd1\x6c\x3a\x7b\x38\x3b\x9d\x1d\x44\xf3\x3b\xf3\x5b\xb3\x27\xf3\x3b\xb3\x47\xf0\xc7\xec\x18\x9f\xdc\x9a\x1d\xcc\x9e\xce\xa6\xf3\x5b\xf3\xdb\xf0\xff\x3d\xf8\x7f\x3c\x7b\x02\x8d\x27\xd1\xeb\x69\xe9\x76\x98\x9c\x8b\x70\x8c\xd9\xb3\xd9\x84\x3a\xe1\x78\xf4\xdf\xeb\xd9\xfa\xda\xfa\xda\x4e\xd6\x4f\x36\x66\x5f\xcf\x0e\xe6\x77\xe1\xe5\x93\xd9\x74\x7d\xad\x1b\x17\x3b\x9b\x59\x9c\x77\x37\x66\xdf\xc2\xb3\x87\xfc\x34\xf9\x70\xd8\xcb\x72\x68\xfb\x7b\x78\x76\x0c\x03\x3f\x81\x2f\x1e\xc1\xef\x8f\x61\x90\xa4\x37\xdc\x98\xdd\x87\xf9\xe2\x94\x3e\x59\x5f\x2b\xd2\xed\x41\x3b\x1d\x6c\xcc\x3e\x87\x66\x13\x9c\x31\x7c\x72\x0c\xcf\xb3\x4e\x1a\xf7\xda\xf6\xf5\xfc\x23\xe8\x74\x14\xcd\xef\xce\xf7\x61\xb8\x63\x5c\xd7\x74\xfe\x6b\xe8\x72\x40\xab\x81\xa9\x3e\xa5\x37\xdf\xcd\x0e\x7e\x1c\xfd\xb0\x15\xe1\x7a\xe7\x9f\xc2\x62\x4e\xe0\xdd\x85\xa2\x1f\xf7\x7a\x17\x61\xee\xda\x6b\x02\x8d\xe9\x53\xbc\x44\xf8\x1d\xda\xc1\x36\x9c\xce\x6f\x5f\x78\x99\x5b\xcb\xe4\xb2\x51\xb9\x31\xfb\x02\x66\xe6\xcf\x0f\x5f\x8d\x86\xb8\xc8\x31\xee\x1d\x7d\x6e\x5f\x86\x7d\x8c\x9b\x8c\x33\x84\x86\x79\xb2\x9d\x16\x65\x92\x87\x5b\xd2\x58\xbb\xc9\x66\x91\x96\x09\x9e\xe4\x78\xf6\x90\xf6\x1e\x46\x58\x5f\xbb\x99\xe4\x45\x9a\xd1\xde\x8c\xe7\xfb\xf0\x7c\x32\xbf\xb7\xbe\x36\x8c\xb7\xa1\xe9\x03\x1a\x04\x07\x98\xc0\x7a\x0e\xd6\xd7\xca\xa4\x3f\xec\xc5\x38\xca\xff\xd6\xa3\x98\x9d\xae\xaf\xf5\xe2\xc1\xf6\x88\x7a\xfc\x16\x26\x3f\x99\x9d\xac\xaf\x75\xf2\x04\xda\xb5\x07\xc9\xee\xc6\x25\xfa\x35\x82\x5f\x5b\xad\xd6\xfa\xda\xa8\x48\xf2\xf6\x30\xcf\xb6\xd2\x5e\xd2\x8e\x07\xdd\x76\x1f\xcf\xf1\x3d\x78\x1a\xc9\xd3\x08\x9e\x46\xf8\x94\x77\x20\xe9\xc2\xe1\xb4\xe3\x62\xe3\x1a\xfd\x11\xa5\x83\x28\x2e\x10\x58\x70\xa4\x41\x8c\x00\x03\x67\x4d\x53\x85\x95\xc1\x54\x09\xf8\x60\x25\x27\xb3\x69\x04\xb3\x79\x8a\xcb\x4f\xfa\x71\xda\xc3\xf9\x21\x9c\x9c\x50\x63\x98\x3a\x1f\xcb\x33\x84\x12\x5c\xde\x30\x2e\x8a\xdd\x0c\x21\xed\x3e\x9c\x13\xb6\x78\x82\x8f\xf3\xa4\x5d\xee\x0d\x13\x84\x8f\x4f\x67\x87\x04\x67\x63\xda\x7c\xfc\x2a\x0c\x31\x85\x87\x00\x92\x9d\x78\x58\x76\x76\xe2\x8d\x4b\xfc\x13\x67\x98\x27\xc3\x0c\x76\x3d\xcb\xf7\x36\x66\xff\xa2\x5b\x89\x67\x0c\xdf\x83\x49\x65\xf9\x76\x3c\x48\x7f\x19\x97\x74\x00\xdf\x40\x83\x47\xd2\x04\x40\x00\x21\x08\x8f\xa2\x9f\xe6\x79\x96\x6f\x5c\xa1\x1f\xeb\x6b\xb0\x8d\x6d\x1c\x16\x6f\x09\x7d\x38\x9a\x7f\x54\x1f\x19\x5b\xf5\xd3\xed\x9c\xce\x8a\x1b\x22\xf0\x42\x93\x47\xd8\x58\xc7\xc6\x66\x5b\x59\x7e\x03\x8f\xfa\x53\xf8\x28\x5e\xa0\x43\x0f\x64\x69\x75\xd1\xfc\x57\xb0\xd4\xfd\xd9\x09\x3f\xac\x7f\x10\x6f\x3d\x8f\x06\x4b\x72\x3e\x38\x6d\x58\x52\x3c\x00\x68\xe1\xb6\x7f\x98\x3d\xa3\xd1\x0e\xe9\x64\xb0\xa1\x7e\x3a\xd0\x79\x36\x59\x5f\x8b\xbb\x7d\x00\x87\x61\x3c\x48\xe0\x3c\x3f\x83\x29\xe3\xaa\x4e\xf1\x14\x69\xde\xb3\x27\xd0\xa4\xd3\xc9\x46\x83\xb2\x5d\x24\x65\x99\x0e\xb6\x0b\xc6\x28\xb7\xe4\xd4\x1f\x03\x60\x4c\xe4\x1b\xf8\xed\x29\xac\x6e\xc2\x27\xbd\xa0\xc3\xfa\xda\x5e\x36\x32\x80\xbb\xf1\xd7\xf0\x47\x74\x95\xff\x90\x57\xa6\x33\xbd\xbb\x26\x7f\x21\x18\xc0\xc6\x14\xed\xad\x24\xe9\x22\x00\x3e\x25\xcc\x07\xfb\x20\x9b\x8b\xb3\xc7\xe1\x87\xa3\x5e\x0f\x4e\xf6\x17\xa3\xa4\x28\x8b\x8d\xab\xf0\x57\xf4\xae\xfc\xb5\xbe\x96\x16\x05\xfc\x06\x70\x49\x13\x7a\x48\x7b\xf5\x14\x7b\x21\xd8\x0d\x3a\xb8\x15\xdf\xc0\x21\x9c\x20\x32\xc4\x87\xef\x17\x49\x9c\x77\x76\x3e\xc0\x25\xe1\x2f\x80\x3b\xe7\x9f\xd2\xf5\xc6\x3d\x1e\xd3\x45\x5c\x02\x9c\x78\xbb\x82\x37\x4b\x66\x53\x99\x0c\x4c\x24\xeb\xc2\xc3\x2f\x11\x83\xd2\x14\xd2\x41\x51\x02\x8a\x83\x39\xc8\x6f\x88\xe1\x4e\x89\x44\x20\x3a\x35\xd0\x50\xa6\x65\x4f\x90\x0d\xa3\xd2\x09\x13\x15\xdc\x18\xd3\xda\x41\xa5\x78\x66\x13\xfc\x01\x0b\xc2\x0b\x80\x27\x29\xe4\xe2\x14\xaf\x03\x75\x81\xb5\xde\x76\xd1\x1f\x6e\x2c\xa0\xbf\x76\x77\x93\x09\xda\xeb\xd9\x76\x11\x11\x60\x4d\x08\x53\x20\xb8\x5e\xd9\xbb\xf6\x97\x6f\x9d\x8b\xae\x66\x45\xb9\x9d\x27\xf0\x7b\xc4\xfb\x11\xc1\xaf\xd0\xf7\x47\xb0\x67\xd0\x5d\xa6\xdb\x04\x51\x0f\x89\x1e\x1d\xe0\x1c\x22\xba\x4f\xa7\x7c\xbc\xd8\x93\x90\xc8\xb7\x30\xe8\x33\xbf\xb1\xd7\x70\x07\x3e\x0f\x07\xc2\xc4\x74\xe1\x31\x34\xa0\x2b\xf8\x12\x63\xc5\x2f\x10\xf5\x2d\xf8\x12\x34\x44\x52\x89\xe3\x7f\x85\x9d\xe7\xf7\xce\xf1\x96\x3c\xa3\xa1\x8e\x09\x15\x30\x99\x79\xf3\xed\xb7\xdf\xb9\xfc\x93\x28\x19\x6c\xa7\x83\x24\x82\x3d\x8e\x46\xe5\xd6\x7f\x6e\x6f\x27\x83\x24\x07\x0a\xda\x49\x23\xc0\x78\x39\xdc\x00\x3e\x3a\xda\x49\xd8\xae\xa2\xe8\x01\x7a\xef\x26\x4c\x97\xbe\x43\x64\x1c\x5d\xbb\xf6\x16\x4e\xbd\xdc\x41\x00\xfa\x14\x97\x58\xfc\xa2\x87\x47\xa3\x73\x81\xa7\x88\x69\x4e\xe0\xc7\x53\xc4\x3c\x30\x07\x5c\x18\x2f\x44\x8e\x22\xb4\x20\xf8\x5e\x92\xe7\x6d\x20\x51\xe5\x5e\x5b\xc6\x74\xbe\x83\x5c\x09\xcf\xae\x3e\x86\x3f\x50\xc4\x70\x06\xcc\x03\x4c\x79\x4c\x2f\x22\x05\x3c\xec\x00\x57\xa8\x85\x10\xae\xab\x17\x88\xf8\x06\xc8\xea\x27\x02\x07\x21\xd0\x40\x90\x03\xdc\x04\x2c\x55\xfd\x78\x08\x0f\x31\x6e\x86\xa7\x04\x3d\xb6\xa9\xdd\x19\xe1\xb0\x10\x5b\x4e\x84\xb4\x21\xea\x15\xb4\x7c\x1b\x6f\x03\x31\x5f\x4d\xa8\x17\xda\x00\xfb\x71\x12\x9d\x8f\xe0\x1d\x9d\x38\xae\x92\x16\x77\x82\xd0\x35\xff\x04\xba\x7f\x32\x9b\xbe\xc0\xd8\x41\xb6\xef\x1b\xb8\x21\x8c\xaa\xc6\x84\x68\x71\x37\xcd\xf9\x34\xd0\x02\xd3\xdd\x4c\xfe\x73\xc2\x7a\x77\x79\x3f\x90\x70\x1e\xd1\x95\x1d\xc3\x23\xc2\xfb\xf5\xa1\x60\x49\x9f\xe0\xd4\x1e\xc2\x97\x8e\x70\x53\xf0\x6e\x7f\x6a\x9a\x71\x2f\xa4\x4e\xb7\xe9\x58\x26\x4c\x03\x88\x19\x43\xf4\x36\x02\xde\x09\x2f\xcf\xbb\xa3\x41\x84\xec\x85\x7d\xa4\x73\xba\xbe\x93\x44\xf8\x77\xd4\x1f\x15\x65\xb4\x13\xdf\x04\xd6\xa3\xd3\x49\x8a\x22\x2a\x33\x40\xbe\x8a\x1e\xa3\x77\xb3\xac\x8c\xae\xc2\x62\x88\x33\x81\x51\xe8\x2c\x11\x1d\x64\xc0\x56\x00\xe9\xfe\x0d\xf1\x9a\x63\x38\xed\x53\x7d\x68\xd6\xfd\xad\x12\xc3\x43\x5a\xd6\x3d\x3d\xf3\xf7\xde\x7d\xeb\x3c\x4c\xf7\x88\xf6\xfd\x96\x81\xc2\x13\x66\xaa\x3c\x84\x07\x47\x74\xed\xda\x1b\xf0\xbd\x9d\xb2\x1c\xb6\x87\x59\x5e\x6e\xbc\x71\xfd\xfa\x55\xe6\x5c\xf6\xf1\x0a\x99\x17\x1e\xac\xc0\xab\x73\x02\x60\x27\x08\x8b\x0c\x2b\x01\x58\xe3\x8d\x66\x26\x7d\xfe\x31\x6d\x1f\x02\xdf\x28\xef\x6d\xc0\x34\x97\xc1\x28\x34\xf3\x56\xab\x47\x21\x2d\xc7\x88\xd8\xe7\xfb\xa1\x0d\xe0\x5f\x70\x2d\x2f\xe3\x7f\xd7\x22\xee\x09\xeb\x87\x66\x38\xe5\x47\x7a\xef\xfd\x9d\xa2\x27\xe3\x3a\x2f\xc7\xa0\x2f\xfc\x1c\xdd\xd1\x6c\x88\xcc\x95\x7b\x49\x9f\x11\x23\x41\x54\x43\x44\x94\xfa\x85\x15\x7e\xb1\x09\xd7\xeb\x0c\xf8\xc8\x9f\x78\x02\x11\x6f\x4b\xd1\x87\xf3\x20\x4c\x7e\xed\x0a\x1c\x14\xca\x15\x8c\xce\xe9\xc5\x56\x9e\xf5\x89\x60\x3b\x7f\x3b\x07\x87\x14\x89\xae\xe5\x14\xef\x99\x59\xf8\xb9\xe8\xdd\x9f\x5d\x8a\xfe\xbf\x1f\xfd\x10\x04\x0f\x20\xe7\xf7\xaa\x18\x8a\xaf\xc9\xd8\x4e\xcb\x76\x55\x42\x46\xd3\x8e\x2e\x44\xb4\xba\xff\x92\x7c\x18\x03\x3b\x9f\xb4\x3a\x59\x3f\xba\xa8\x3c\x1e\x9d\x6c\x0b\x79\x34\xe0\x6c\x72\xbe\x41\xc8\x66\xe9\x40\xa7\x4c\x99\x8f\x19\x1b\xe2\x3e\x23\xed\x35\xed\x83\x34\xa9\xb9\x97\x0a\x2e\xed\x4e\x36\xd8\x4a\xf3\x3e\x8a\x21\x70\x03\xe6\x7f\x0f\xaf\x19\x14\x10\xab\x11\xa5\xff\x0e\x17\xc7\x0c\xa2\x83\xf3\xf6\x3d\x79\x47\x98\x44\x24\x59\x3c\xa3\xf6\x20\x2b\xd3\xad\xbd\xca\xb0\x53\x82\xb1\x43\x5c\x10\xd2\x05\x65\x79\xe5\x7a\xc8\x7f\x34\x49\x3e\xcc\x24\x07\x29\xa9\x8d\x3f\xd2\x4e\xb2\x84\x01\x20\x14\xb5\x2f\x73\x3e\x20\x80\x86\xbd\x63\xd9\xd7\x13\x84\x01\x36\xb7\xb6\x7a\x40\x4e\x85\x42\xfa\x33\x84\xd3\x78\x42\x94\xef\x34\x12\x89\x13\xb1\xfd\x81\xdf\x09\x6e\xfc\x10\xc5\xc3\xdf\xa1\x30\xa6\xf8\x82\xe8\xf5\xa5\xcb\x6f\x23\x54\x4c\x99\x55\x3a\x74\xc6\x40\x21\xab\x3b\xea\xe0\xad\x00\xdc\x70\xe8\x20\x65\x3e\x61\x98\xe2\x3e\xe1\xfb\x89\xa5\xbd\xb4\x57\x35\x64\x0c\x9d\xf7\x61\x95\x8a\xbe\xa9\xdd\x89\xb2\x61\x88\x1c\xd3\x22\xde\x04\x19\x8f\xcf\x38\x17\x29\x07\x85\x5c\xbb\x50\xa3\x38\x08\x9c\x23\x53\xb2\xf0\x38\xba\x72\x7f\x34\x86\x97\x80\x1c\x28\x48\x6e\xe1\xc7\xce\x99\xf7\x74\x71\x58\xac\x70\x1a\xa1\x62\x63\xbf\x72\xe7\xf0\xb0\xad\xd8\xe4\x8b\x13\x93\x96\x70\x9d\x20\x3e\x8a\x86\xa1\x7d\x33\x05\x79\x98\x26\x6d\xb8\xce\xd9\x63\x44\x8c\xac\x0e\x31\xa2\xd7\xb1\x0e\x36\x56\xcd\x86\x01\x2e\x57\x22\x17\x40\x0f\x7d\x45\x37\xe8\x81\x2e\xe9\xd0\x51\xb9\x84\x77\x0a\x1f\x3f\x65\x9c\x8b\xa7\x7b\xc4\x34\x6b\x42\x17\x4f\x88\x6f\xed\xe3\xe7\x78\xa4\x5b\x04\x76\x66\x1c\x16\x8e\xfd\xbe\x32\x8f\xd0\x20\xa2\x43\x0a\x9e\x0a\x5d\xa0\x43\xd6\xcb\xb4\x54\xf8\x13\x49\x4b\x54\x53\x5f\x13\x17\x03\x93\xfd\x1a\x2e\xd6\x77\x3c\xef\xfa\xe1\xf0\x87\x1a\x0f\x96\x8e\x63\xe2\xa9\x68\xf0\xde\xd0\x86\x20\x3e\x3d\x25\x08\x3a\x1f\x06\xb1\x7b\xc8\x10\xbf\x79\x39\x7a\x85\x89\x17\x12\xd1\xbb\x0a\x12\x4b\xbf\x78\xc4\xa4\x01\x65\x1f\x6c\x7d\x88\x6f\x85\xbe\xe2\xcd\xe4\xbb\xc4\xeb\x5e\x22\x7a\x38\x73\x77\xc9\x66\xf8\xf3\x44\xbc\x69\xd4\x55\x55\x28\x2a\x78\x07\x85\x0e\xc1\xdf\xde\xeb\x20\xee\x56\x66\xc2\x76\x16\x46\x82\x46\x5f\x49\x4d\x23\xe2\x64\x7b\x3b\x43\x49\xfd\x8b\x9a\x94\xf8\x58\x58\xed\x12\x64\xe7\xf6\x76\x5a\xb6\xb7\x90\x36\x75\x71\xe3\xc6\x84\x81\x9f\xc1\xcf\x8f\x54\x90\xc4\xb5\xd2\x00\x1e\x15\xc0\x2f\x9e\x81\xbe\x67\x98\x75\x7a\x4a\xef\x8e\x50\xed\x77\xf6\xa6\x4a\x2c\x3f\x42\xea\xd2\x8e\x6f\xc2\xe8\x88\xa0\x10\x85\x1f\x20\xf7\xc4\xdb\x7f\x68\xf5\x69\x91\xe1\xe3\x60\x88\x23\xd9\x11\x23\x87\x9c\x63\x28\x33\xe2\x17\x6d\x3e\x5d\x7b\x55\x32\xfd\x8a\xef\x8a\x6a\x21\x55\xb6\x44\xd9\x77\xc2\xf8\xb7\xf2\x39\x64\x1c\xce\x16\x30\xdc\x01\x7f\x7a\x3b\xdb\x1c\xa5\xbd\xae\xd7\xaa\x85\x1b\x79\x33\xee\xa5\x5d\x14\x8a\xe5\x4a\x05\x80\x8b\x27\xb1\x40\xb6\xe5\x4f\x30\x63\xa6\xba\x9c\x09\xb3\x56\xbc\x5b\xfa\x19\x47\xa4\xf8\x47\xa2\x6e\x87\x04\x96\x24\x97\x89\x50\x71\xdc\xa8\x5e\x8a\x78\x16\x63\x3a\x26\xd4\x92\x12\x44\xf1\x07\x0c\x5f\x8f\xe7\xd1\x8f\x4b\xd4\x77\x84\xe0\xf9\x1e\x7e\xe7\x0e\x51\xb7\x03\xe4\x8f\x08\x00\x88\x6e\x7d\x57\x65\x2d\xc6\xf8\x3d\xea\x76\x02\x3d\x3e\xe1\x6d\x0d\xdc\x7d\x98\x40\x11\x9d\xbf\x08\xff\x03\x54\x80\x00\xc1\x8c\xcc\xf6\x62\x90\x23\x0d\xef\x33\xda\x4c\x5f\xdb\x76\x42\xac\xef\xaf\x48\x4d\x77\xc7\xa7\x83\xfe\x56\x7a\x78\xb0\xf1\xd0\x8e\xbf\x07\x56\x58\xb4\xcf\x7a\xf1\x8a\x11\x49\x49\x2c\xf7\x20\xe3\x31\x66\x34\xf6\x31\x76\x78\x01\x10\x31\x5d\x74\xa4\x0a\x11\x1d\xe5\x11\x0d\xf6\x14\xc9\x05\x82\x2b\xab\x68\xc6\xcc\x10\x32\xdf\x82\xc4\x87\x64\xaa\x88\xb4\x4a\xbc\xe6\x53\xe1\xc4\x8c\x2e\x02\xa6\xf5\x02\xa9\x96\xd0\x4c\xf0\xc1\xfa\xda\x88\xa5\xe3\xac\xd7\x6d\xd0\x91\x78\x18\xcc\x30\xc1\x13\xe5\x90\xad\x0a\xc5\x19\xc4\x41\x6a\xc5\x6e\x0a\xb0\xd4\x36\x16\x08\x3c\xdc\x32\xf9\xb0\x64\xd5\x17\x6e\x91\xf2\x1e\xa1\x63\x64\xe0\xb9\xe5\x6c\xbb\x3c\x97\x0f\x9c\x12\x82\x9c\xb2\xf8\x2a\x66\x8d\xfe\x1e\xdd\x92\x82\x35\x32\x7c\x8c\x75\xb9\x18\xd1\x6d\x0f\x70\x4e\x86\xcc\xd0\xcd\x44\xbb\x3c\x20\xf5\xf4\x53\x41\x67\x61\x91\x9a\x3e\x91\xe5\xdb\xde\x17\x9a\x54\xad\xd0\x94\xb5\xcf\x95\xd6\x8e\xb9\x85\xf6\x09\x4e\x44\xec\x31\x1f\x88\x5a\xb1\xae\x51\xe4\x66\xf1\xa8\x44\xa5\xa4\xb5\x0e\xb4\x45\x57\xbb\x4c\x03\xed\x82\xb1\x23\x36\xec\x24\x43\x94\x3a\xfa\xc5\x36\x1b\x30\xee\xf2\x31\x3f\x15\x7a\x1f\xe6\x29\x5e\x8d\xa0\x2d\x72\x43\x1f\x0b\x8a\x65\x48\xbd\x45\x6d\x0f\x5e\x30\x76\xa1\x55\xbf\xe2\xb2\x7d\x30\xf6\x03\x43\xf4\xec\xe8\x32\xb0\xcf\xca\xb2\x1d\xa4\x3f\x2c\x89\x83\x67\x7e\xe5\x3b\x56\x8a\x08\xad\x6c\x66\x8b\x8d\x42\x8a\xd0\x0b\x81\x90\x51\xd1\x80\xe8\x1b\x91\x36\x0a\x67\x71\xea\xae\x51\x94\x36\x8b\xef\xff\xa9\xb2\xca\xa8\x2f\x38\xa8\x31\xf2\xb8\x11\x44\xa4\x1b\xe6\xfc\xfd\x84\xb6\x95\x56\x85\x07\xdf\x4f\xfa\x9b\x38\x85\x84\xc5\x9e\x67\x44\x9c\x4f\x99\x77\x05\x26\x65\x0b\x60\x1b\x88\x80\x65\x43\xac\x6c\x24\xa3\x78\xbc\x07\x77\x48\x56\xef\xf0\xaa\xb1\xca\x01\xb1\xd9\xdd\x70\x79\x4e\x91\xd6\x0d\x98\x02\x28\x2c\xb6\xdb\x19\xc8\x68\x19\xfe\x89\x85\x1b\x92\x5c\x8b\x64\x50\x1a\xf8\xf8\x9a\x2f\xc1\xc4\xca\xf6\xc7\xca\x12\x05\x79\x2c\x14\xd4\x10\x1c\x5d\xa1\xfb\x36\x33\x0a\x80\xa8\xa3\x0b\x9b\x17\xcf\x16\x17\x5e\xde\xbc\xe8\xf1\x1e\xac\xe0\x21\x16\x41\x79\x0f\xe6\xb9\x90\xfd\xf5\xc4\xa8\x49\x44\x64\xf1\x36\x93\xc5\xc3\x48\x34\x3d\x1e\xb7\x80\x92\x2e\x21\x89\x43\x12\xf8\xf9\xcd\xd9\x2e\x52\x00\xb4\x90\x1e\x9c\xb3\x6a\x57\x26\x88\xb4\x0c\xb8\x93\x13\xf7\x52\xfd\xda\x55\xf9\x84\x01\xa7\x65\x0c\xbc\xca\x3e\x7e\x4e\x5f\x3e\xf6\xec\xb8\xa4\x1a\xf5\x70\x7f\xdc\x21\xe4\x49\xb6\x1b\x83\x85\x3e\x43\xae\x13\x5a\x1d\x2e\x32\xde\xb2\xe6\x82\x0e\xa8\x97\xf6\xd3\x72\xd9\x35\x26\x86\x68\xcc\xdc\x57\x15\x77\x54\x8f\xf4\xc0\x4c\x40\x97\x17\xa9\x76\x9e\xb9\xc3\xbb\x3c\x13\x81\xa3\x1f\xb1\x55\xef\x94\x4f\xe3\x9c\xd9\x75\x26\x36\x72\xe9\xa6\x84\xed\x6e\x9b\x4e\xae\xdd\x12\xb5\x8a\x71\xd1\x1e\x0d\x04\x02\x93\xae\xb9\xde\x47\xe6\x16\x70\x37\xe2\x28\x9d\xa9\x23\x97\xe0\x42\xe0\x11\x03\xd8\x24\xa4\x80\x7a\xd1\x80\xdc\x4b\xb0\xa0\xcf\x98\x2c\x9f\x3a\xbc\x80\x15\x9c\xaa\x54\x7a\x19\xac\x3b\xed\x75\x62\x55\x41\x50\x99\x0d\xbd\x08\x13\x21\x2b\x1e\xf8\x9f\x10\xbb\x73\x62\x30\xa6\x00\xe4\x47\xf3\x3b\xa8\xf5\xb8\x43\x72\x99\x0a\x22\xe7\xc9\x1d\x02\xe6\xdb\x12\x48\xd0\x5d\xfb\x57\xda\x33\x3b\x08\x2b\xdc\x3d\x58\xf7\x26\x62\xee\x8b\x9e\xc7\x22\x88\x70\xec\x59\x89\x6a\xb7\xda\x80\xb8\x90\x5c\x95\x89\xa3\x7c\x0d\x1e\x81\xe1\x6a\x6f\xc9\x2e\xb2\x9f\x01\xee\x4f\x44\x7b\x49\x3a\x62\x0f\xd0\xf1\x6a\xe1\xda\x70\x89\xe5\xea\x2b\x74\xce\x92\x9a\xbc\xe8\x2e\xf0\xa5\xfa\x0a\xf1\xbc\x9e\xd4\x2e\x5c\x4d\x44\xe4\x59\x58\x4c\xfd\xf5\x6a\xdd\x94\x67\x66\xfb\x64\xf8\x8a\xa2\x2a\x8c\x84\x37\x42\x68\x27\xe4\x05\xb2\x1c\xc5\xaa\xb0\x86\x54\xf5\x89\xa3\x63\xe5\xb7\x1e\x03\xdd\xaa\x4e\xdf\xe8\x7b\x57\xd8\x4f\x67\x7f\xf4\xb2\x78\x6b\x24\x94\xec\x30\xb3\x65\x96\xb5\x8b\x1d\x34\x13\xcc\x7e\x83\x53\x23\xcd\x9f\xf1\xb4\xa9\xf5\x9e\x05\xcc\x5d\x46\x99\x4c\xc0\xfe\x94\x96\x72\xa2\x3a\xe9\xff\x9f\x54\xeb\xef\xf7\xb3\x6e\x8c\xe6\xdd\xbd\x84\x44\x01\xd8\xea\x01\xb9\x25\xa0\xee\x35\xeb\x92\xda\x95\x4d\xc4\x4f\x79\xd7\xa8\x13\xd0\xdb\x3e\xf4\x41\x83\xcc\xdb\x2b\x2a\x1e\xd0\x12\xf3\x76\xd5\x64\x16\xf2\x7a\xf8\x29\x43\x68\x55\x5b\xbd\xcc\x50\xb0\xbe\x76\x35\xac\xd4\x78\x37\x59\xee\xf7\xd1\x74\x18\xd7\xae\xbd\x71\x9d\xd5\x35\xce\xa4\xe1\x61\xa4\x32\xc3\xfa\xda\x1b\x65\x39\x2c\xde\xcb\x7b\x1b\x6c\xfb\x78\xef\xdd\xb7\x70\x26\x7b\xbd\x2c\xee\xe2\x53\xf9\x95\x9f\x5f\x4f\xe2\x7e\x6d\x0f\x70\x55\x68\x4d\xc6\xb9\xbe\x06\x9c\xb5\xd7\x80\x71\x07\xe3\x2d\x92\x73\x1d\x07\x8c\xd7\x50\x7c\x94\xdd\xfa\xc2\x5e\xc6\xe5\x1a\x23\xab\x6c\x4c\xc8\x2b\xe5\xcc\x62\xd8\x99\x5b\x83\xe9\x19\x20\xb8\xbd\xe1\x4e\x4c\xd2\x94\xf4\xfe\x39\x0e\x3f\xbf\x07\x07\x7f\xa8\xb0\x9e\xb8\xf7\x86\x95\x0e\x78\x1d\xf0\x21\x09\x8f\x13\x22\x70\x53\xbd\x6c\x73\x36\xf2\x8f\x5f\x3c\xdf\x7e\xa9\xf5\x73\xef\x13\x5d\xc0\x8d\xff\xde\xcf\x9c\xf3\x3e\xe0\x7c\x74\x4a\x3a\xf3\x03\xfc\x64\x91\xfe\x32\x69\xfe\x10\xe1\xdb\x48\xf6\x01\x45\xb3\x7d\x20\xa3\xd8\x8d\xe4\x77\xdb\xf5\x4c\xbd\x2b\x61\x29\xab\x2d\x62\xbb\x18\x91\x61\x3c\xdc\x53\xc6\xd3\xb8\xaf\xfd\xf8\xc3\xe7\x1c\x0a\x3b\x3f\x3e\x4f\x8c\x33\x0a\x73\xd3\xfa\x98\x4c\x5f\x78\xc0\x3f\xef\x7f\x13\x46\x6a\x61\x42\xd3\xfa\xf3\xfe\x57\x20\x9b\xe7\x3d\x1f\x46\x6a\x9d\xc9\xfe\x67\x7b\x9d\x41\x79\xfe\x06\x30\xd5\x03\xe9\x87\x98\x84\x16\x7d\x6c\x6f\xec\x23\x6a\xfc\x31\xce\xf2\xc7\xc6\xe3\x0a\x38\xbf\x4e\x96\xe7\x49\xa7\x54\xdf\x2b\xc3\x5a\x7c\x4a\x7a\x6f\x04\x69\x64\xb2\x0d\x82\xf4\xf4\x44\x15\x64\xb8\xc4\xec\x34\xff\x3a\x34\x38\x91\x4a\xeb\x91\xd6\xde\x4c\x92\x41\xbb\x8c\x6f\x24\x83\x05\x08\x8e\x99\x33\xd1\x4d\xf0\x8d\xe5\x8f\x88\x73\x4e\xbb\x36\xd4\x17\x15\x8b\x7f\x83\xa6\xcc\xf0\x99\x95\x41\x41\xd4\x59\x3a\x66\xd8\x71\xc0\xaa\x34\xef\x1a\x59\xd2\xd1\xcc\xb4\x50\xd9\x1a\xf7\x97\x0f\x6e\x10\xd6\xe2\xc1\x18\xfa\x68\x20\xd8\xd2\xae\xc3\xd9\x8c\xcf\x07\x59\x1b\x2b\xef\x38\x3c\xb6\xef\xc8\x82\x24\x38\xed\xf5\x92\x6d\x34\x06\xeb\x64\x1b\x67\x18\xb8\x32\x63\xe2\xf9\x9e\x89\x64\x8a\xc7\x36\x91\x4b\x83\x7b\xd4\x72\x4e\xdf\xc0\x99\x05\xcc\x15\xa1\x40\x58\x88\x30\x85\x26\x96\xf4\x1e\xc9\xf4\xb4\x49\x03\x90\xc5\x73\xf2\x8e\x74\xf4\xab\xbc\xaa\xaf\x16\x09\x75\x47\xa2\x70\xab\x39\x90\x34\x2b\x5e\x0f\x2d\x05\x14\xb5\x9c\xa7\xe8\x9d\x86\xa6\x03\x37\x19\x55\xb2\xee\x7c\x22\x40\xb2\xee\x54\xf0\xec\x45\x27\x58\xfd\x84\xb7\x2d\x22\x4f\xa2\xb2\x91\x35\xf5\x7c\x23\x4f\xbc\x3d\x09\x4e\xc2\x72\x8b\xcf\x3d\x05\xc3\x24\x38\x76\xec\xca\x11\x18\xa5\x73\xf2\x61\x8a\x5e\x5b\xbf\x21\x6c\x30\x76\xd4\xda\xf5\x53\xb7\xe8\x83\x76\x98\xd6\x43\x73\xc2\x01\x7b\x71\x51\xa2\x7a\x8e\x37\x4f\xf5\x8c\x28\xd8\x7c\x54\x51\x8b\xb1\xd9\x8d\x25\xec\xd3\x46\xf5\x34\xf3\x6b\xa1\xad\x73\x61\xdd\x80\x17\x63\xdb\x43\x5a\x2d\x9d\x02\x12\x40\xd8\x94\xc7\x91\x48\xff\xd3\x48\x1c\x16\x0f\xd8\x9e\x5d\xa7\x77\x13\xb6\xc5\x29\xb1\xa2\xf9\xa1\x7f\x66\xf8\xf8\x0e\x19\x1a\x8f\x54\xd3\x12\x44\x3e\x84\x5a\xf5\x40\x0b\x20\xed\x37\x92\xbd\x05\x8c\xbc\x31\x33\xd1\xe1\x12\xfc\x1c\xf2\x7e\x8b\x77\xba\xb6\x20\xca\x78\x47\x0d\x70\xe6\x96\xa0\x91\xdc\x91\x06\x5c\x9e\xed\xc7\xa4\xe7\x1f\x0d\x48\x1d\x76\x33\xc9\x81\xc7\x35\x13\x62\x8f\xc2\x00\x3b\xe4\xde\xc0\x49\xd3\xc8\x34\xef\xa9\x1a\x7d\x8f\x04\x73\x1d\xd0\x66\x58\xc5\x79\x8d\x88\x2e\xd3\xdf\x3c\x62\xeb\x21\xf0\x86\x41\x8b\xc4\xc7\xf4\xd1\xfa\x1e\x58\x9f\x08\x56\xfc\x03\x97\x53\x02\xee\x44\xa8\x14\xe7\x63\xd7\xd4\x15\x56\xcb\xb0\x73\x01\x31\xcb\x9f\x18\xc1\x33\x00\x02\xa7\x35\x70\x39\x0d\x3a\x35\x9f\x53\x35\x4a\x10\xe8\x8e\x59\xc3\xa6\xeb\x16\x3c\x4a\x2f\x1f\xb1\xb7\x28\xee\xc9\x47\x42\xd4\x9f\x58\x25\x93\x38\x91\xb6\x74\x89\xa8\x0c\x21\xc7\x64\x6f\x85\xb7\x04\x53\xd2\xb5\xf1\xd7\xc5\x00\x0f\xc7\xf3\x84\xf5\x64\xb4\xba\x29\x81\xb6\x61\xb3\x8c\xf4\x34\x56\x76\x33\x08\xe8\x8b\x96\x48\x41\x13\x62\xbc\xaa\x2c\xb0\xb6\x7a\x05\x31\xc2\x6f\xfe\xc4\x0e\xfc\x35\x23\xaa\xa9\x1e\xed\xb7\x33\xf1\xa6\x0b\xbb\x10\x86\x97\x5f\x3d\x5a\x02\xa7\x26\xb2\xb2\x60\x9d\xaa\xe5\x6a\x3a\x4d\xb6\xe1\x2d\x3d\x4b\x17\x60\xd9\x85\xc9\xac\x8a\x45\x22\xb6\xe8\x13\x1e\x54\xd7\xc8\x2a\x1f\xe2\xaf\xd4\xde\x34\xbd\xa4\x8c\x95\x8d\xd8\x7e\x4f\x35\xc0\xd5\xf1\xe1\x37\x87\x87\x9a\x2c\x55\xc7\x01\x2f\x15\x93\x4e\x7a\x33\x8f\x07\x9d\x1d\x87\xbe\x5c\xa7\xe7\x11\x3f\x8f\xba\x59\x52\x44\xf0\x32\xa2\x97\x2c\x92\xe3\x5a\xd1\xbe\xb2\x13\x0f\xb6\x13\x34\x4d\xc3\x50\xe8\x04\xc2\x12\x78\x05\x3c\xee\x45\xc6\x35\xe2\x00\x5d\x5b\xf0\xb0\xb6\x73\xee\x84\x4e\x61\x66\x9c\xce\xa8\x28\xb3\xbe\x19\x4e\x84\x7a\x42\xa4\xaa\x53\x68\x1a\xf3\x30\xe0\x5d\x37\x27\xaf\x95\xbf\xc9\x40\x02\x42\x8f\x20\x36\xf8\x21\x26\x17\x5a\xc1\x7e\x41\x4c\xe8\x1c\x37\xf5\x34\x09\x9b\x95\x48\x8f\x9b\x96\x7b\xea\x81\x3b\x76\xc0\x90\xa0\x8a\xfc\x32\xd5\x01\x6f\x2b\xeb\xf5\xb2\xdd\x04\x4d\x5a\xf7\x1d\x12\x3a\x55\x1f\x11\x1c\x17\xa1\x27\x46\x36\x82\x7d\x75\xd4\xb5\x6a\xaa\xbd\xc9\xe6\xfa\xc0\xaa\xb7\x59\x25\x47\xb6\x84\x7e\x8b\x38\x40\xd4\xf5\xe4\x37\x93\xee\x8a\x7c\xdf\x99\xb3\xc5\x19\xc3\xad\x3f\x53\x99\x99\xa0\xc1\x8e\x39\x8c\x4b\x60\x6e\x06\xac\xf4\xa3\x45\xac\x3a\x7c\xf4\xa7\x7f\x3b\x5b\xfc\xe9\x89\xa5\xf3\x55\x46\x96\xc1\xee\x7d\x8d\x60\x00\x08\xd2\x38\x07\x3e\x6c\xb6\x6d\x35\x7a\x9c\x0b\x09\x2c\x36\x5c\x8a\xc6\xb4\x44\x8d\x69\xb8\x5f\x6e\x28\xd5\xa4\xe2\x2c\x45\x9e\xa4\xbd\xb4\x43\x06\x10\x09\x74\xf0\x4c\xf3\xa8\xb6\x60\xbb\x65\x20\x4e\x86\xbc\xd9\x93\x5e\x52\x12\x43\xaf\xd8\xe3\xb0\x49\x7f\x0f\x24\x3c\xed\x6e\xbc\xf7\xe6\x65\x5c\xf5\x70\xb4\x09\xdf\x6d\x3b\x0b\xbe\x43\xd6\x58\xe3\x59\xf1\xcc\xdb\x01\x09\x5c\x62\xd7\xa3\xcf\x15\xea\xf1\xe2\x87\x95\xae\x84\x98\x2a\x23\x4e\x3c\x5f\xba\x90\xac\x22\xea\x1b\x42\x40\xec\x9c\xe7\x2b\x6d\x27\xa4\xb4\xf5\xa2\x57\x08\xa7\x0a\x77\x4b\x07\xfc\x54\xb9\x22\xe3\x45\xe5\xf8\xfa\xdd\x41\x88\x51\x8f\x0e\x55\xa1\x0a\x6e\x1a\xcf\x8d\x27\xa5\x46\xeb\x39\xf6\xb0\x89\x67\x56\xb1\x56\xc2\x2d\x8c\x5f\x11\x5f\x22\x52\x3a\x9e\x3a\x2a\xbc\xa6\xe8\xb3\x5e\xd6\x11\xbf\xc0\xaf\xe4\xde\x4e\x65\x23\x1c\x9f\x0c\x38\xae\x61\x17\xed\xc5\xe6\x8c\xc8\x4a\x03\x6b\x60\x4e\xe8\xb8\xae\x03\xae\x6d\x4c\x75\x0c\xeb\xc3\xe0\x9d\xa1\xd3\x91\x8e\xee\x20\xfc\xa1\xc8\xe7\xa0\x5a\x06\x53\xae\x10\x92\x56\x95\xfa\x9f\x39\x2a\xd2\x31\x63\x99\xca\x60\x02\x6c\x8a\xc5\x27\x40\x50\x1d\x3c\x6e\xdd\x56\x17\xaa\x51\xd1\x67\x98\xb1\x9c\x00\xdf\x31\x99\xe1\x90\x71\x3b\x65\xb1\x66\x9f\x0c\xf0\x6a\xc3\xa3\x20\xc6\xbb\x18\x12\xc0\xd6\x3e\xb1\x1b\x7b\xbe\x24\xb0\xaf\x30\xec\x17\xc6\x36\x38\x8e\x1c\xae\x84\xd7\x75\xa4\xfa\x67\x7c\xfd\x2a\xd9\x39\x01\xc5\xd8\xe8\x21\xf3\xbe\x21\x90\x29\x61\x5e\xbb\x42\x81\x28\xe8\x53\x54\x41\x0b\xdc\x3e\x27\x1e\x31\x0a\x0f\x66\xe3\x13\x0c\xe2\x52\x3d\xbc\xe1\x83\xd8\x67\x9c\xf8\x33\xdf\x8c\x63\x5c\x4f\x75\xcb\x0e\xe6\xec\x68\xcb\xce\x51\x6a\x7e\x03\xc8\x7a\x5d\xe8\x2a\x1e\x6e\x96\x15\xe2\xfb\x20\xcb\x21\x22\xe3\xb2\xed\xc6\xe7\xc1\x99\xbc\xc0\xaf\xf6\xf9\x86\x82\x71\x29\x7e\xac\x81\xc4\x1a\xbc\x67\x06\x41\x5c\x3d\x1a\xa2\x52\x19\x24\x64\x59\x3e\x51\x93\x76\xda\xa7\xf0\xcd\x2f\xc9\x2f\xdb\xca\xaf\xea\x01\x6c\x29\x07\xae\x7a\x2a\x14\xd1\x5c\xd0\x16\x6a\xfe\x2b\xdb\xea\xb8\xc5\x3d\xf0\x79\xc3\x0a\x87\x20\x54\xcf\xf8\x2f\x93\x50\x53\xf3\xac\x99\x7b\x2e\x60\x04\xa9\x2c\x65\xf1\xf5\xf3\x36\xc7\xde\xed\xc5\x7e\x51\xce\xbe\x88\xfb\xda\xd4\x6c\xaa\x60\xba\xea\x35\x37\x77\xd3\xa1\x84\xae\x89\xa3\xe2\x5c\x90\xf5\x5c\x0d\xc4\xb7\x33\xf5\x26\xab\x3a\x21\x20\x30\x38\x76\x2d\xb9\xa7\x7e\x9b\x90\x52\xe9\xf3\xa5\x0a\x8b\x90\xe2\xa8\xb2\x84\x2a\x2a\x0c\x0d\xf3\x10\xc1\xdb\x97\x1a\x6b\x88\x0b\xbd\x4e\x1e\xb0\x43\x83\x11\x81\x8d\xc2\x89\xa3\x3f\xc6\xc8\xd8\xcc\xd9\x6f\xb8\x16\x68\xc6\x84\xc9\xdc\xba\xd3\xc0\x2e\xd0\x09\x90\x72\xb0\xf0\x0c\x17\x36\x38\x64\x62\xa2\x4b\xb5\x59\x73\x80\x69\x88\x60\xdb\xd8\x8f\x00\x85\x9f\xfa\x81\x50\x41\x82\xaf\x91\x34\x75\xaa\x6e\xa2\x1a\x8f\x67\x12\x7a\x60\x48\xb3\x8d\x10\xa8\x12\x60\xd4\x5a\xe7\x70\x3b\x31\x48\xd3\x8b\xc3\x32\xcf\xd5\xe9\xe1\x77\xac\x89\xb6\x5c\x8f\xd1\xd8\xd8\x69\x13\x43\xcd\x8c\x92\x76\xab\xb1\x4b\xe8\x8a\xdb\x25\xf4\x24\x2d\xc8\xc9\x8f\xfc\x33\xee\xcd\x6a\x6e\x59\xa1\x3d\xe0\x11\x16\xf6\x76\xdd\x30\xb4\x6d\xdb\xf3\x81\x41\xef\x8a\xff\xe7\xf7\xb2\xc4\xef\xc5\xee\x9d\xb9\xc3\x7f\xf0\x2f\xe9\x43\xfa\x55\x58\xfe\x87\xca\xc4\x2d\x3c\x3e\xba\x64\x72\x89\x0c\x67\xdf\x7c\x8d\x42\x3c\x3f\xce\x8b\x94\x74\xe1\xd3\x37\x16\x50\x1c\x9e\xef\x99\x89\x92\xa3\xcb\xf3\x4c\x04\xc2\x93\xa6\x4f\x9c\x0b\x33\xc4\x9e\x14\x6a\xbd\x18\x30\x5c\xca\x53\x62\x12\x4c\x10\x96\xf1\x46\xf5\x14\xa0\xac\x03\x53\x25\x86\x65\xc5\xcf\x79\xc1\x74\x8f\x58\x8f\x5e\xb9\xe8\x55\x2f\x88\x8a\x97\xff\x51\x48\xc1\x65\xdc\xc6\x27\x04\x9c\x6a\x99\x53\x95\xdf\x77\x7c\x9e\xc6\x9f\xc5\xa8\xb1\x25\x0e\x83\xf5\x83\x8f\x38\x8e\xe7\x40\x26\xc4\x26\x3d\x91\x6c\x5b\xbc\xdf\xc2\xef\x5c\x28\xca\x3c\x1b\x6c\x5f\x44\x7d\xa0\xda\xfe\x9e\xd2\x0e\xcd\x4e\x5e\xbd\xf0\xb2\xbc\x8d\x84\xbc\x1d\xfa\xdc\xc9\x01\xa6\xf5\x78\x63\xb4\x89\xb3\x20\xcf\x6d\x9f\x4c\xd3\x20\x3c\xd7\x0b\x71\xb4\x93\x27\x5b\x1b\x28\xe1\x5e\x74\x43\x32\x8e\xac\xfe\x9d\xfc\xd8\x03\xda\xc1\xc0\xb9\x5f\x78\x39\xbe\x68\xcc\xb0\xcc\xff\x55\xfc\x45\xfd\x0f\xda\xa0\x5c\xbe\xe4\x26\x72\x1e\x07\x92\x93\x9c\xf0\xa4\x7d\xa5\x2d\xb3\x18\xa7\xe2\x10\x74\xa0\xb2\x41\xfd\xb0\xed\x97\x39\x44\x53\x91\xa7\x0f\xfe\x72\xb9\x7d\xfb\xbf\x5c\x2e\xc7\xce\x75\x95\x64\xd1\x08\x1e\x46\xe4\x6a\x3c\xc0\xa8\xd4\x22\xc2\x06\x18\xa8\xda\x6d\xd9\x4e\x24\x18\x54\x3b\xed\xa6\xe5\x4e\x54\xc0\x9b\x08\x5f\x53\xdf\xb8\x97\x27\x71\x77\x8f\x95\x44\x34\x82\xf6\xf6\x5d\x09\x74\x9b\x0f\xb8\x81\x7c\x9e\xdd\x72\x8d\x19\x4c\xe5\x31\xb9\xdf\x06\xeb\xbc\x9d\xec\xd2\xda\x70\x0e\x3f\x38\x5b\xfc\xc0\xce\x1a\x5a\x26\xdd\x48\xda\xa1\x88\xb8\xf7\x82\xa1\x40\xb4\x45\x96\xfe\x3c\xe6\x71\xb3\x81\xbb\x6f\x82\xac\x0e\xc4\x34\xc2\xd6\xc0\xfb\x9e\xed\x63\x1a\x94\x9f\x4f\xd9\x1f\xa5\x6d\xb5\x43\x1a\x27\x24\x62\xd8\x3e\x39\xac\xab\x6a\x60\xce\x1e\x56\x46\x4d\x44\xab\x2b\x91\xa7\x24\xfc\x74\x7d\x27\x2d\x68\x75\xf0\x03\xe7\x80\x49\x48\x70\x42\xd1\x7f\x8a\xba\xf1\x5e\xe1\x62\x4c\x51\x77\x34\xe2\xcb\x2a\xe2\x92\x5b\x10\x51\x84\xfa\x47\xbe\x8c\xc5\xb1\x7b\xb7\xaa\x9a\x13\x4d\x42\x33\x31\xae\xca\x2b\x20\xd1\xe0\x77\x9f\xeb\x6b\xe2\x9c\x5f\xd5\x7c\xba\x8a\x05\xff\x4a\x91\x09\xa6\x19\x1b\x8d\x06\x9b\xe9\xa0\xcb\x7c\xcd\x21\x9d\xf8\x54\x44\x27\xc3\x8a\x70\x13\x4b\xdd\x2a\x4a\x24\x55\xc6\xba\x22\xfb\xd4\x19\x4d\x5d\xaf\xcc\xe9\x70\x78\x77\xbb\xcc\xc8\x3a\xdd\x78\x46\xf4\xbe\x30\xcc\x06\xc7\xcc\x68\xc8\xb0\x72\x13\x8a\xcf\x35\x11\x80\x38\xb4\xcb\xd8\xff\x28\x1a\x57\x71\xfb\x35\x14\xf7\x29\x71\xb3\x27\xf8\x66\x7d\x8d\xbf\x23\xa7\xf7\x95\x7d\xa3\x48\xdd\xd9\x4c\xe6\x06\x1e\xf9\xa3\xf2\x01\x05\xe2\xf6\x9c\x28\x4d\x1f\x57\x4d\x0c\xf7\x51\xa1\x47\xaf\x5d\x7d\xf3\xbc\x35\x05\x4b\x7c\xbb\x59\x8f\x72\xc3\x46\x1f\xe5\xae\x23\x72\x2d\x01\x48\x0f\x02\x9b\xc4\x1f\x69\x22\xd0\xb2\x13\x01\xb4\xe4\x7c\x06\x2f\xb4\xd9\xe9\xf0\x2e\x3b\x3c\x86\xb7\xcf\x7e\x37\x06\xa7\xa4\xce\x2c\x8d\x03\x1b\xec\xcd\xd9\x5d\x74\x6d\x1f\x5f\x88\x00\xa0\x1a\x4c\xcb\xea\xe5\xfa\x88\xc9\x23\x5b\x00\x24\xf0\x25\x60\x63\x3d\xd5\x90\xc6\xa3\xb0\x2c\xf5\x48\x0d\xb1\x47\x36\x82\xc3\x98\x10\x2c\x82\x95\x4d\x0a\xb0\xf8\x6e\x03\x7b\xbb\x8c\x97\x45\x7d\x9d\x8e\xf6\xd2\x3b\xd5\x71\xd5\x1a\x42\xd1\x9e\x9e\xa4\x48\x01\x41\x9e\x94\x8f\xdc\xe0\x63\x67\x39\x41\x2d\x5b\xdd\x94\x55\x8f\xd7\x12\xdb\xb0\xac\xc6\x38\x71\x37\xa9\x80\xc3\xd0\x67\xfa\xab\x17\xf7\xb7\x8e\xe2\xc7\xca\x62\x68\x22\x12\x38\x37\xe6\xa9\xa6\x21\x85\xb1\x77\x2c\xe5\xf0\xcf\x70\x5c\xc1\xd3\x75\x58\x2e\xeb\xb3\x8c\xa7\x2a\x9a\x85\x17\x6c\x8c\x65\x75\xb9\xd5\x48\xcb\x6a\x04\xcd\xa4\xba\x1d\x73\x4a\xd1\xe1\x0f\xa3\xc1\xa5\x2b\xa8\xcf\x1d\x21\x52\x3b\x5b\xfa\x73\x5c\x8d\xa2\xad\xa8\xba\xa7\x12\x05\x75\xd7\x98\x5b\x94\x82\x4b\x8c\xc4\xed\xe7\x55\x29\xae\xaf\xbd\x8f\x36\xa2\x0f\xd6\xd7\xc4\x69\xe2\x41\xdd\xcc\xec\x38\x54\x2d\xf5\x22\xb5\xae\x57\xaa\x1a\xd4\x30\xb7\x8a\x43\x4a\xad\x6f\xa4\x68\x90\xe4\x13\xeb\x70\x80\x29\x55\xc4\x3a\x78\x22\xa0\xcd\xb4\x92\xcd\x3d\x14\xc1\x42\xad\xd4\xf0\x45\x0a\x7a\x71\xd3\x50\x32\xec\xf2\xc1\xa4\x32\xb8\x83\x7c\x2c\xc0\xff\xcd\xb4\x48\x37\xd3\x1e\xf1\x38\x9f\x33\x4e\x98\x3d\x55\x3e\x86\x5e\xe2\x3b\x9b\xf3\x04\x58\x18\x9b\xfa\x09\x19\x9a\x0b\xc5\x30\x1e\x44\x1d\xe0\x67\x8a\x8d\x33\xa3\x14\xde\x76\x23\x0c\x73\x3b\x73\xf1\x6a\x9e\xde\x04\xb4\x09\xb0\x09\x2d\x2e\x92\x31\xea\x06\x5b\x89\x7f\x06\xbf\x2d\xf2\x1a\x92\xb6\x94\xe9\x82\xdb\x4e\xd9\xfa\x06\x0f\x6b\x73\x62\xfc\x50\x47\x73\xae\x86\xc9\x09\x2a\x77\x16\x38\x37\xc1\x75\x9a\xa2\x4c\xf4\x60\x21\x0f\x02\x75\xab\x63\x60\xfd\xc6\x0d\x88\x37\xe7\x8e\xa9\xec\x9c\x34\x76\xe6\x99\x99\x6a\x55\x57\xdb\xda\x4e\xcb\x74\x7b\x90\xe5\x89\xd1\x96\x02\xaf\x9a\x76\x80\xae\x03\xa8\xfd\xf3\x0c\x23\x77\x71\xfe\xc7\xe6\x69\xe3\x50\x34\x4f\x69\x3d\xe3\x14\x25\x88\x70\xed\xb0\xe9\x20\x2d\xdb\xc8\xce\x33\x14\x4b\x08\x7d\x93\x15\x44\xdc\x39\x82\x80\x0a\xfc\xe6\xbb\x3f\x7d\xed\xf2\x95\x9f\xb6\xfa\x5d\x13\x8e\xc7\xe6\xff\x86\x38\xbc\xd0\x4d\xe9\x26\x5b\xf1\xa8\xa7\x86\x6a\x54\x1f\x53\xee\x1a\x9b\x43\x43\x42\x48\x8e\x49\x2f\x6f\x62\x17\x38\xa6\xb0\x9d\xa2\xaf\xd6\xcd\x58\xd2\x82\xdd\xa6\x8d\x20\xe7\x16\x43\xc1\xa1\x8f\x48\x9f\xd4\xf3\x45\x51\xa1\x90\x24\xf8\x52\x93\xc1\x75\x35\x1f\xc9\xef\x6f\x71\x5d\x3a\x7e\x14\xfd\x79\xff\x9b\xb3\xc5\x9f\xf7\xbf\x5a\xe0\x58\xd5\xe2\xbc\x70\xa8\x87\x1f\x61\x40\x74\x25\x8e\x6c\x91\x4b\x0e\x6e\xe0\x36\x73\x33\x6e\x42\x31\x4d\xee\xe7\x6d\xb4\x6d\xd7\x74\xff\x77\xd3\x5e\x0f\x44\xb5\x28\xf6\xd1\x00\xde\xff\x68\xb3\x37\x4a\xce\x5c\xe4\xe3\x32\x38\x40\x07\x65\x68\xf9\xaa\xfa\xd5\xc5\x48\x41\x3a\xb7\x3a\xbd\x6c\x00\xd4\xa3\xdb\xcd\x89\xf1\x10\xc0\x99\x69\xfc\xbe\xab\x4b\x0c\x76\x71\xa4\xb2\x0e\x4c\x9a\xe6\x6f\xd3\x08\xbd\xfc\xfa\x9b\xd7\xc9\xbd\x38\xcb\x23\xb4\x30\xf6\x22\x4e\xe1\x12\x61\xf0\x79\xcb\x0e\xa9\x3e\x65\xd4\x46\x22\xd3\xd1\xe9\xb8\xe2\xe4\xcc\xb1\xe9\xe7\x9b\x1d\xf7\x6a\xa1\x1f\x47\xec\x34\x4e\x62\x25\x39\xdf\x0b\xa3\x82\xe8\x0f\x8e\x9c\xf3\xff\xfc\xcf\x0a\xc2\x72\x30\x24\x25\x04\x2a\x92\xde\x56\x13\x6a\xac\x60\xbb\x40\x90\xf0\xd8\x8d\x00\x63\xd5\xe5\x38\x12\x75\xf6\x98\x98\x89\xe1\x5e\xbb\x97\x0e\x6e\x70\xca\x3e\xe5\x47\x41\x08\xef\x00\x9e\xba\x01\xac\x61\x1b\x9b\xf8\x6f\xd9\x52\xa8\xa1\x52\xcf\x50\xc6\x9a\x63\xdc\x17\x45\x24\x0f\x53\xbc\x1e\x15\x96\xfa\xc4\xeb\x8d\xb6\x4d\x3a\x46\x83\xf8\x15\xec\xb1\x87\x65\x7a\x22\xa1\x8a\xd3\xf9\x27\x46\xef\x52\x4b\x8c\xf5\x6a\x24\x8a\x00\xca\x3d\x82\x8a\x1f\xf6\x9b\xd9\x38\xd3\xde\x04\x94\x7d\xe3\x8c\xa3\x08\xb2\xd9\x60\x51\xf1\xf3\x02\x0a\x96\xbb\xec\xff\xfd\x35\x33\xea\xac\x4c\x90\xec\x53\xe2\x43\xbc\xbe\x26\x6d\xd4\xd5\x03\xad\xc8\x18\x02\xcf\x14\x0b\xd8\xdd\x03\x31\x1a\x50\x78\x3b\x7b\x8d\x60\xea\xbe\xca\x63\xce\xb0\x29\xc7\x4d\xf7\x3e\xab\xa6\x2e\x99\x56\x89\xd1\x2f\x46\x78\x08\xdb\xa3\x14\x63\x96\xfe\x81\xe5\x76\x12\xea\x45\x60\x9d\x52\x6a\x10\x4e\xb5\x4a\x3b\x5a\xc2\x5d\x90\x3b\xf9\x65\x75\xa7\x16\xdf\x49\x27\x18\x9b\xc8\x5d\x27\xeb\x83\xb4\xdc\x75\x29\xc1\x63\x35\xc7\x84\xc8\xaa\xf5\x07\xf0\x52\x65\xb0\x78\x4e\x6f\x8e\xd0\xcb\x02\xa3\x3e\x50\x07\x25\x93\xbc\x4f\x99\xc6\x58\x71\x5b\xbf\x51\xc4\x31\x85\x60\xfa\xd9\xf2\x4f\xad\xaf\x29\x3d\xfa\x07\xee\x8f\xba\xb6\x32\x4f\x12\x8a\x86\x22\x22\x33\xd5\x36\x94\x80\xb6\x8c\xd1\xad\xc4\x34\x56\x5d\xb0\x18\xa3\x1e\xa9\x52\x9b\x7b\x24\xf5\xa6\xe8\xb0\xb5\x5d\xb0\xdc\x60\x5a\x4b\xc6\xce\x37\xe9\x07\x6a\xaf\x36\x13\xb4\x46\xfd\x56\xbc\xc2\x08\x66\x11\x13\xf5\x92\xa2\x84\xf3\x93\x57\x94\x18\x19\x2f\x53\xbf\x9f\x96\x05\x5f\xbe\xa7\xc4\xfb\x4c\x90\x19\xe9\x25\x71\x81\x4d\x7f\xcf\x7e\x4a\xc0\x15\x1c\xe3\x0b\x72\x68\xc8\xe3\x5d\x3c\xb2\x3b\x4c\x31\xe5\x21\x00\x05\x27\xf8\xfc\x42\x78\xd1\x7d\xf6\xa4\xa1\x97\x94\x27\x88\xba\xdd\x17\x0b\x83\x49\xa2\x2c\x2e\xb3\x32\x98\xb0\x5d\xd2\x0d\x2e\x6e\x3f\x66\xcc\xf1\xad\x18\x2f\x6e\xb1\xca\x54\x3d\x08\x28\x50\x48\xd6\xd0\x0a\xaf\x45\xdf\x06\xd3\x93\x3a\xe9\x12\x6a\x1d\xb6\x48\x65\xf4\xf5\x8c\x33\xcb\xed\xbb\xaf\x90\x92\x62\xdc\xc8\x67\x9c\x44\x07\x05\x7f\x7d\xd5\x07\x9a\x21\x29\x8d\x3f\x25\x66\xfe\x13\xeb\x5c\xa2\x6d\xba\x14\x43\xf9\x9b\x99\x84\x0d\xea\x63\x9b\x5d\xe2\xbc\xa6\x16\x75\x3f\x0a\xd7\x46\x5f\xcb\x1d\xa1\x38\x37\x3e\x7e\x7c\x6b\x8c\x58\xa8\x52\x66\x65\xd5\x2d\xf7\x7d\x4b\x40\xe3\x2d\xfa\xe1\xbd\x19\x20\xef\x09\x4f\x37\xde\xce\x22\x7a\xed\xbd\xed\x00\x34\xe4\x6d\xe9\x7d\x09\xff\x88\x7a\xf5\x31\x0c\x84\x6d\x5c\xd1\xdf\xaa\xdf\xb0\x4d\xe0\x3b\xe1\x56\xfc\x2d\xdb\x90\x3f\xd7\x0f\xb6\xcd\x86\xc9\xc0\x69\xfa\x0e\xfc\x69\x47\x2d\x2a\xc3\x66\x05\x06\x1c\x3b\xe3\xe2\x83\xa6\xe6\xc0\x99\x60\x0a\xe8\x64\xe3\x35\xf9\x25\x30\x47\xd3\x86\xa7\x18\x87\x5a\xa2\x5a\x58\x9b\xc1\x92\x6b\x6d\x18\x23\x6a\xe2\x6a\xba\xc2\x6e\x7f\x39\x14\x3d\xd7\xb1\xbd\xd2\xf5\x56\xed\x61\x2f\xee\x24\x9a\x5d\xc4\x8b\xdd\xb3\xdd\x28\x1d\xaf\xf7\x6d\xf9\x84\xcc\xc0\x3f\x7b\xda\xdf\x32\xde\xdc\x38\xdb\x65\x0d\xc1\xe1\x8c\x53\x9a\x51\x88\xa5\x0e\x83\x1b\x69\x5a\x71\xd2\x9e\x50\x3b\xb8\xd1\x98\xd1\x41\x56\xf4\xdb\xc0\x52\xdc\x16\xc0\x09\x23\x5b\x42\xbe\x07\x5f\x3b\x1e\x21\x0f\x55\x57\x16\xda\x0b\x19\xc0\x1e\xb2\x62\xba\xc6\x16\xce\x67\xe0\x78\xf8\x37\x80\x8a\x3a\xb8\x49\x47\x73\x98\x84\x17\x38\x24\xe7\xae\xfa\x7f\x92\x21\xa0\xd6\x1e\xf3\xd8\x36\x7d\xa7\x06\x5d\xd2\xcd\x61\xb7\x43\xaf\x5a\x98\x1a\x47\x13\x35\x7b\xd9\x4e\x9d\x9b\x5f\xdf\x7a\xee\x5a\x48\xa6\x73\x60\xbb\xf6\xb2\x51\x7d\x21\x13\x23\xd3\x8d\x67\x0f\x83\x43\x30\xe0\x74\xdb\x9b\x7b\x3c\xc2\x03\xd7\xd4\xc6\x23\x90\x64\xd1\x3c\x42\x3f\x19\xa0\xe9\x1d\x33\xab\xd1\x08\x5f\x5a\xe5\xf3\x6d\x35\x29\xa8\x38\x2e\x7a\xfc\xea\x38\x05\x06\x1d\x5f\x83\xff\x42\x2f\x5a\x98\x3a\xbe\x28\xd1\x5a\x04\x3f\x82\x2d\xf0\x9e\x40\x8b\x77\xe8\x47\xb0\x45\x9e\x80\x10\x5d\xb2\xbf\xcf\xc6\xbb\xf4\x47\x6f\x2f\xe2\xbf\xbb\xe1\xaf\x02\xd1\xd4\x0e\x6f\xe1\xef\x51\xbe\x4a\xb7\x7e\x56\x94\x88\xe4\xd1\x0a\x76\x05\x7e\x8f\xe4\x8f\x45\x5f\xd1\xf6\xfc\x99\x7a\x07\xbc\xba\x74\x44\x1b\xfe\xc5\x8d\xce\xbe\xff\xca\x07\x05\x1f\x90\x31\x60\xbe\x7c\xf6\xfd\x1f\x7e\x00\xbc\x2b\xfd\x40\xb6\xb5\x3e\x4c\x7b\x2b\xbe\x91\x6c\xf0\x9f\x32\xc6\xe6\x5e\x44\x1d\x4c\xe3\x61\x9e\xdc\x4c\xb3\x51\xa1\x54\x1e\x65\x93\x8f\xbd\x5b\x31\xa0\x94\x46\x0f\x3c\xb7\x85\x83\x0a\xba\x21\xe5\x20\xa2\x72\x1f\xc3\x74\xe5\x0d\xe3\x6d\x3b\xe2\xa8\xdf\x96\xd5\x17\x88\x80\xf4\x77\xdb\x59\xb7\xa6\x1d\x97\x1b\x3f\x37\x7f\x45\x71\x89\xeb\x4f\xbb\xc0\xb5\xe3\x6a\x94\x85\xff\x0b\xfe\xcb\x6e\xc5\xcf\xed\xa7\x32\x63\xab\xbc\xbe\x93\xe4\x09\x2a\xb4\x06\x99\x31\x9f\xee\x25\x65\xab\x82\x14\x39\x7b\x39\xcd\xb8\xf2\x46\xe6\xe1\xb6\xa0\x8c\xbf\xf2\xdc\xb4\xce\x13\xda\x14\x6e\xf6\x2e\xfd\x51\x7d\xe7\x0f\xc5\x6d\x82\x63\x09\xbe\x57\xc8\xb9\x54\x7d\xcd\xbb\x4c\xbb\xc4\xb4\xf1\xf9\xb7\x88\xa7\x24\xa3\xe8\x1f\xdf\x63\x9c\x61\x46\x35\x26\xae\xd2\x0f\xf3\x94\x52\x91\x6d\x50\x44\xb9\x85\x19\x52\xc4\xbe\x83\xff\x9b\x67\x9a\x36\x07\xa4\x21\x90\x6f\x01\x59\x63\x39\x07\xb8\x81\x11\x3c\x88\xf0\x81\xdf\x32\x1d\xb4\x35\xd4\x9c\x64\xa5\x32\x8b\x30\x62\x20\x2a\x49\xe6\xcf\x06\x58\xb7\x82\x3c\x85\x5a\xd1\x6b\x62\xe2\xe6\x04\xce\x83\x48\x94\xd2\xaf\xfa\xbe\x00\xf4\x39\x1c\x20\xd3\x33\xf0\xee\x54\xd2\x4d\xcb\x8d\x9f\xc2\x7f\x76\x1a\x30\xdc\xc6\x35\xf8\xcf\x3c\x61\x1a\x58\xd6\xc2\xfa\x83\x64\x8f\x1b\x77\xb2\x1e\xb2\xa4\x7f\x24\x07\xbc\xdb\x2b\x34\x47\x8d\x3e\x92\xec\xb1\x2f\x28\x78\xad\x2c\xf4\x15\x21\x26\xa0\x89\xe0\x70\x67\x5a\x28\x49\x10\x47\x64\x78\x91\x94\x00\x5e\x9b\x46\x5f\xfa\x4a\x3b\x4d\xf3\xf0\x15\xd9\x5a\x27\x9a\xa8\xb0\x62\x8a\x6b\x5e\x2e\x7d\x47\xd3\xc2\x06\xcd\x0e\xcb\xfb\x8a\x28\xbd\xc2\x00\x91\x2b\x42\x1a\x1b\x36\x72\x30\xa7\x4e\xf2\x63\x27\x56\xe7\x58\x3c\x28\xc5\xde\x86\xce\x96\x15\x37\xfa\xaa\x13\x92\xbf\xf3\xad\x68\xf6\x4f\x24\xa9\x1d\x38\x1a\xde\x85\xb6\x8c\xf0\x0a\x8d\x81\xce\xe1\xcf\x38\x5f\xe2\xd8\xb3\x9c\x54\x0d\x6f\x1c\xde\xd0\xeb\x11\xbe\x1d\xc6\x70\x95\xd8\xf5\xb3\x40\x34\x83\x7f\x47\x97\xf8\xef\x86\x66\xbc\xb5\xda\xb6\xdc\xcd\x22\x95\x81\xb9\x44\x0b\x10\x9f\x28\x8e\xb0\x6b\x24\x85\x2b\xe8\x32\x4b\xef\x96\x8e\x0a\x28\x3a\x4f\x8a\x51\x0f\x68\x01\xb0\x59\xf2\x2b\xb4\x1c\x0d\xba\x6c\x9b\x37\xdc\x3e\xc9\x4b\xe8\x4c\xe2\x48\x21\xce\x5b\x97\xf3\x65\x5a\xe4\xbc\xf4\x38\x5e\xa5\x47\xd5\xf7\x5d\x95\x30\x30\x8e\xd3\xfd\x6e\xd6\xee\x8e\x00\xd3\x20\x8f\x00\x73\x84\xdf\x23\xfc\xbd\xf6\xf5\x8d\xf0\x67\x95\x9a\xf8\x2b\x81\x73\xdb\xdc\x01\xcc\x04\xa8\x50\x18\x79\xfb\x1e\xd1\x90\x94\x7f\x49\x22\x4c\x41\x15\xc9\xd1\xfb\x83\x7b\x82\x48\x78\x53\x18\x1d\x51\xae\x11\xef\x39\x9d\xdd\x65\xf8\x2f\x4f\x29\x07\xba\xff\x52\x17\x7b\x19\x56\x7a\x19\x07\x7f\x51\x33\xa5\xbf\x54\x59\x1e\x48\x51\x2c\x4b\x79\xcf\x4d\xea\x50\x19\x08\xd1\x7a\x1f\xe8\xcb\x65\xd9\xb9\x88\xff\x46\x6a\x2c\x4d\xcf\x71\x96\xfd\xcd\x24\xfa\xc1\x1e\x8c\x76\xbe\xdf\x3f\xdf\xed\xfe\x20\xb4\x5e\x03\xef\x66\xc1\x15\xa7\x22\x61\x75\xab\x6e\x45\xce\x40\x06\x9b\x37\x6c\x1a\xbe\x77\x8e\xe7\x3d\x20\xf4\x9b\x09\x2a\xfb\xa3\xae\xdd\x31\x02\x66\xe7\xc8\x8a\x2c\x1a\x02\xf5\xec\x25\xd1\x6e\x36\xf8\x01\x2d\x05\x4d\xb2\xe2\x98\xe5\x2e\x83\x23\x19\x2e\xd1\x0f\xef\x8d\x20\xcc\x2b\xf4\x63\xf1\xdc\x78\x0b\xe4\x82\x46\xd9\x96\x9d\x49\x65\x37\x90\x4e\x2d\xda\x0b\x83\x64\xed\x76\x5e\x96\x47\xc1\x76\x6d\x81\x1c\x24\x01\x4c\x6e\xed\x97\xc9\x5a\x90\x27\xfd\x0c\x28\x6d\x5a\xe2\xd9\xf2\x39\xe3\x6e\x61\x5d\x26\x7a\xdb\xa3\xc3\x11\x78\x8e\x2e\x67\x08\xdf\xd1\x6e\x0c\xdc\x58\xc9\x8c\x19\x06\x80\xbc\x1a\xfe\x76\xfd\xe8\xcd\x3a\x99\x28\xd5\x56\xba\xa4\x6a\x8f\xbe\x6c\x31\x7c\x17\xb6\x04\x80\xfb\xd2\xc9\xa7\x89\xd4\xe8\x01\x15\x0c\xd9\x27\x2b\xcc\x29\x7b\x3e\x68\x60\xaf\xd3\x69\x27\xcb\x6e\x14\x1b\x7f\x95\x6c\xd2\x2f\xce\x8b\xed\xb4\xe4\x77\x58\xfc\xec\x8d\xca\xcb\xcd\xb8\x48\x3b\x4e\x69\xa2\x6f\x1c\xef\xec\x70\x2d\x02\xd3\xb5\x8b\xb0\x90\xb7\x7f\x49\x42\xf4\x37\xe4\x18\x7f\x6b\x66\xfc\xfe\x8f\xd9\x43\xc9\x69\xcf\x21\x57\xdf\x78\xf9\x83\xc7\x1c\x8b\x2f\xf1\x57\xa6\xa9\x04\x50\x2c\xaa\x98\xe4\xa6\x23\x73\x9c\x35\xbc\x9c\xfb\x76\x43\x39\xc6\x00\x75\xbd\xc1\x3c\x1b\x0b\x72\x4d\x04\x02\xa2\x9a\x86\x35\xb4\xff\x7b\x8f\xbd\x2c\x2c\xea\x09\xf9\x70\x9c\x88\x51\x80\x9d\xb2\xd8\xd7\x06\xb7\xc7\xb5\xd9\x07\x9d\x7a\x39\xf3\xca\x73\x3a\x34\x98\xd5\x96\x40\x6d\x8b\x2d\x93\x07\xc2\x86\x3c\xbb\xde\xd4\xe1\xd0\xeb\xf9\x6d\x0f\x12\x74\x24\xd9\xb0\xda\x70\x0b\x8d\xc5\xcc\x48\x49\x8c\x42\x43\x9a\x09\xa7\xbe\x44\x73\x6c\x3b\xa9\x74\x89\xb9\x9a\xd6\xf2\xa7\x4a\xba\xf4\xc5\x29\xa8\x5a\xce\x92\xa8\xda\x18\xa5\x18\xc1\x90\xfd\x82\x8d\xc0\xb6\x2e\x9a\x04\x30\x85\xb3\x4e\xcc\xdc\x3c\x8c\x61\xfb\x38\x7a\x6f\xa8\x69\xc2\x8d\xd9\xc3\xc3\xac\xda\xed\x35\x7c\xc3\xb4\x71\xef\xec\xe2\xb0\xd4\x05\xfb\x5e\x1b\xc4\xc4\x01\x9a\x0c\x8f\x07\x3a\x31\x3f\x60\x3e\x18\x71\x6f\xbc\x8e\xb8\x6c\xc3\x27\xce\x2c\x88\x7d\x3d\xb2\x89\x26\xcf\x19\x7f\x1d\x55\xfc\x68\x42\xea\x53\xf2\x38\xa9\x83\x15\x96\xd9\x00\xa4\xbc\x71\x61\x78\xf1\xfc\xec\x5f\xd5\xae\xfe\x88\x02\x5f\x27\x6a\xb6\xf4\xf2\xdc\x4b\x02\xc8\x65\x47\xc5\xec\x39\xb9\x7c\x90\x0d\x42\x10\xcf\x58\xbc\x0c\xaa\x80\xd8\xba\xf0\xf2\xf0\x62\x44\xb3\xf8\xd6\x84\xd9\x5a\x13\xff\x64\xfe\xb1\x37\x91\x73\xcf\x37\x93\x86\x84\x08\x13\x93\xce\x40\xbc\xfc\x34\xe7\x49\x43\xf2\x15\xad\x7b\x40\x93\x6d\xc6\xc1\x96\xed\x37\x14\xab\x29\x41\xfa\xf3\xc5\xaa\xd6\x8f\x4f\x1c\xa7\x58\xa1\x1d\x5a\xbe\xd3\x09\xb9\xfe\xb6\xc5\x4c\xa8\xa8\x34\xc9\x80\x22\x2d\xee\x00\xbd\x7f\xc5\xae\x97\xf5\x8f\xb1\xf7\x65\xb7\xee\xa7\x55\xf5\xe8\x59\x8c\xc6\xdd\x0c\x10\xac\xea\x6d\x5e\xa8\xef\x39\xf7\xbd\x3d\xe6\xcc\x78\xe8\xa7\x6e\x59\x06\x14\xf0\x17\x05\x49\x11\x16\x71\xd8\x09\x6f\x3b\xab\x43\x55\x92\xab\xcf\x8c\x13\xfc\xd8\x1d\x6e\x76\xa0\x36\x2e\x77\x99\xcc\x98\x35\x0c\xf7\xc0\xed\x65\xa4\xc7\x9a\xf3\xa6\x3b\x1e\xa5\x37\x4a\x29\x1f\x4a\x9b\xf3\x2e\x37\xe4\xd5\xe7\xc1\x34\xd5\xc8\xb2\x44\x62\x7e\x04\xcd\xa2\x04\x82\x95\xa0\x25\x13\xbe\xd3\xb8\x03\xb8\x9b\xbb\xcc\x90\x79\xd1\x17\x91\x70\x69\x55\xee\x8d\x51\xaa\xb2\x70\xe2\x64\xed\x04\xdf\x04\x63\xe8\x18\xa1\x51\x05\xae\xab\xef\x5c\xbb\x1e\x09\xa8\x3c\x62\x7b\x24\xa0\xd1\x2f\xd5\x1b\x5b\xd6\xc7\xd6\x6c\xc9\xf8\x6c\x42\x82\x0e\xc9\xcb\xda\x24\x2c\xb2\xca\x09\x4a\x0c\x8b\xb5\xd5\x02\xb1\xfc\x7a\x09\x98\xdb\x10\x17\xa1\xca\x8e\x8e\x35\x3b\xd4\x94\xe3\x67\x09\xd7\x44\xc4\xd1\xdd\x31\xe1\xcd\xae\xa3\x83\x14\x51\x63\x42\xb4\xd0\x8f\x22\xb2\x5b\x85\xc6\x5e\xe6\x8b\x90\x83\x11\xee\x18\x55\x6a\xad\x00\x27\x2c\x45\x17\x95\x1d\xf6\x52\xf2\x52\xae\x00\x1b\x6d\x45\xd1\xd2\x69\x69\x72\xc4\x04\xb3\x29\xb9\x3e\x81\x7e\x99\xa2\xb9\x8d\x7c\x76\xea\x6d\x48\x9a\x28\xd3\xe5\x23\xd8\x89\x3b\xca\xd6\x49\xd8\x83\x89\x97\x10\x27\xac\x99\xa4\xf8\xf5\x02\xf6\xfc\xc9\x04\x16\xc0\x5b\xeb\x47\x0c\x4c\x16\xe6\x58\x08\xec\x17\x29\xe9\x84\xdc\x73\xae\x64\x9d\xb1\xb9\xb8\xc8\xbf\xda\xb8\x15\x8e\x9a\x66\xff\x68\xb6\x8b\x9f\xea\x3d\xa9\x04\xef\xd4\xcb\x38\x49\xca\xa9\xb9\x56\x16\x54\xbe\x58\x92\x34\x3b\x25\x07\x85\x1b\xa8\x0f\x3a\xbf\x6d\x73\xc2\x1d\x0b\x57\x4a\x00\x65\x12\xaf\x30\x7c\x1d\x73\x4d\x02\x5a\x49\x28\x07\x86\x89\xc0\xa7\xa8\x8d\xda\xae\x84\xdc\x77\x69\xac\x40\xdb\x45\x01\x4c\x7e\x67\x8f\x51\x16\x1a\x2c\xa3\xf8\x61\xf6\xc1\x0e\x82\x73\xe9\x9b\x8a\x6b\xe5\x92\x54\xc2\x51\x8d\x7f\x73\x18\x5f\x39\x75\x49\x8d\x9f\xb9\x93\xb0\xfa\x02\xa6\x2f\xbe\x88\xf8\xe6\xc2\xcb\xf4\x2b\x8b\x2a\x08\x75\x04\xb0\x52\x8e\xf1\x9e\xcd\x3c\x62\x31\x02\x4f\x5a\x3d\xc8\xc4\xef\xd8\x64\xda\xba\x15\xd4\x80\x6a\x61\x6f\x18\x96\x11\xbd\x1c\xf3\x39\x2f\xb3\xf8\xd8\x0a\xac\x58\xbb\x95\x9c\xf3\x85\x8f\xb4\xe5\x0f\x98\x87\x36\xf9\xd6\x9c\xa9\x48\xa8\x20\x29\x56\xdd\xfa\x73\x2a\x72\xcc\x4c\x89\x99\xef\x7c\x3d\x6a\x30\xcd\xb4\x5b\x5d\x85\xb2\xfe\xb8\x65\x7d\xd4\xa7\x84\x27\x40\x5c\xc6\x8b\xff\xf5\xda\x3b\x6f\x9f\x8b\x3e\x3c\xbf\xbb\xbb\x7b\x1e\xf5\x18\xe7\x47\x79\x2f\x19\xe0\xee\x76\xcf\x45\xff\xfd\xca\x5b\xe7\xd8\x09\xa8\x05\xd0\x88\x59\xcb\xef\xbb\x18\x33\xb8\x65\x75\x17\xe6\x53\xeb\xa8\xc2\x4f\x25\x21\x92\xe6\xed\x58\xec\xb5\xf6\xfb\x10\x8e\x95\x93\xa1\x0c\x2e\xe7\x65\x41\x93\x2a\xe2\x1d\x72\xf2\x60\x2a\xe1\xe8\x25\x12\x76\x79\x22\xbc\x20\xf5\xaa\xb4\x4d\x17\xdc\x55\x2c\x24\x9d\x3c\x91\x48\x89\xc7\x15\xa5\x43\x72\x33\x31\x01\x01\xf7\xd5\x75\x0f\xb9\xec\x43\xf1\xf5\x52\x78\xc2\x0d\xb3\xa1\x0e\xb5\x43\xb3\x18\x43\x2e\xc8\xab\xb5\x8f\x90\x53\x59\x36\xe8\xed\xd9\x3a\x67\x7c\x4d\x28\xb9\xd1\xc7\x7a\x51\xea\x40\xec\x5d\x41\x2a\x03\xe0\x66\xfe\xa7\xe8\xfa\xca\x7b\xb7\xae\x26\x5d\x31\x49\x15\xc1\x61\xfc\x26\xfe\x86\xb9\x84\xc0\x17\x35\xee\x5f\x5d\xfa\xa7\x0e\x36\xa9\x60\x42\x7b\x61\x42\x98\xf9\xa0\x8a\x3e\x3c\xcc\x63\x72\x47\xec\x3a\x28\xc8\xe3\xa2\x5a\x75\x64\x67\x18\xa6\x6a\x5a\x1d\x03\xd7\x08\x16\x75\x0e\x4a\xba\x2f\x43\x7d\x0d\x72\x49\x5d\x48\xb6\x13\x69\x10\x96\xeb\x53\x60\x4b\x3e\xf2\xf5\x29\xa6\x63\x4c\x8a\x6a\x70\xa8\x2f\x7c\xd2\x26\xf8\x3a\x35\x9a\xbd\xa4\xf9\x46\x01\x73\x01\x6d\xc0\xdd\x2e\x7a\x71\xe7\x46\xdb\xe2\xeb\xc6\xfc\x06\x5c\xff\xc7\xa9\xb6\x8e\x88\xd6\x37\x48\xe2\x50\x1c\xd0\x7c\xe8\x27\xf3\x09\x86\x2e\xd8\xcb\x47\x53\x90\xd8\xae\xaf\xdc\x30\xb7\x4a\x93\x60\x75\xda\x4a\x1b\x54\xa8\x51\x25\xf5\x2f\xe9\x83\x07\x18\x66\xe0\x1c\xcb\xb0\x97\xed\x49\x02\x80\x2f\xaa\xf9\x3a\xea\x99\xbe\xdc\x8d\xb2\x7d\x37\x5e\xeb\x76\xa3\xcb\xf4\x67\xf4\xdf\x92\x3d\x57\x85\x93\xb5\xdd\x4f\xfc\x75\x36\x22\x1b\x2e\xea\xd6\x39\x6e\x38\x1e\xec\x45\xdc\x02\x83\x6f\x3d\xd1\xd5\xb5\x7a\x04\x26\x6c\xe8\xff\x25\xfe\xe9\x34\xf2\x43\xae\x2f\x9b\xe1\x9b\x43\xae\xdd\x9e\x36\xee\xda\xe9\xb9\x52\xdc\xb5\xb7\x3d\xd5\xe8\x69\xbb\xca\x55\x02\xa8\x43\x0b\x36\x6a\x7e\xd1\xdc\x07\x77\x3c\xd0\xbe\xae\xee\xef\xba\x0b\xb3\xfa\x7e\x57\xb9\xcf\x71\xb4\x49\x41\x26\x92\xd2\x0f\x29\x58\xa4\xf2\x5f\x38\x11\xdd\x0f\x67\x63\x97\x2b\xff\xbb\xe9\xd6\x56\x6b\x33\xcf\x76\x0b\x8c\xbd\x1e\xe5\x9d\xa4\xe2\xce\xea\x38\x93\x1e\x71\x39\x51\xe8\x80\x06\x4d\x00\x0e\x56\xbf\xce\x4c\x45\x75\x7a\xc7\x9e\x9d\x1b\xfc\x43\x9e\x01\xa2\x8b\xab\xd5\xfe\xd4\x79\xfb\x32\x34\xf0\xcb\x90\x53\x97\x62\x27\xdb\x6d\xe3\x6f\x14\x47\xce\x88\x49\x78\x9f\x09\xf7\x11\x77\xd2\xdb\xac\xe5\x64\xd2\xa0\x9d\xb1\x0b\x9f\x8c\x86\x0d\xa2\xa1\xbf\xaa\xbe\xae\xd6\x68\xb5\x41\x84\x88\x6c\x9c\x8e\x9c\xf0\x8f\xb3\xb2\x49\xe4\xa4\x13\x70\xe8\xc4\x26\x4e\x28\xaf\x96\xea\x43\x10\x6d\x9d\xed\x9a\x96\xba\xdb\x80\x54\x7e\xf2\xe6\xdb\xf2\x17\x79\x11\xdb\x5c\x81\xd5\x8a\xa5\xa6\x7e\x3b\x17\x0f\x20\x0f\xe6\x56\xa3\x27\xb3\x36\x60\x67\x74\xfa\xdd\xa8\xa5\xf6\x6d\x53\xdb\xb0\x9b\xc7\x5b\xc0\x88\xfc\x2f\x95\x79\x70\xe2\xf6\xed\x30\x4f\xcc\x28\xea\xfd\x74\xc8\x1e\xbc\x73\x3f\xf8\x50\xce\x4f\x02\xc1\xb8\x37\x1c\x02\xe7\xaf\x9a\x73\x85\x36\xce\x75\xed\x0c\x4f\x56\x46\x19\x56\x64\xb1\xb9\x09\xbe\xd1\x46\x31\xda\x18\x9d\x53\x74\xf6\xdd\x38\x38\xbf\x38\x3b\x78\x09\x73\xf0\xcf\x4d\xf5\x9e\x40\x7a\xe7\xa6\x59\x12\xd0\x4b\x75\x13\xce\xd6\xa1\x35\xba\x45\x69\x32\x45\xd7\x6d\x6d\x5e\xc6\xdb\x81\x30\x6b\xcf\xcd\xc2\x36\x25\xc6\x74\xf6\x47\xbe\x1c\xee\x08\x4d\x21\x6c\x61\x5f\x7e\xdf\x0b\x43\x6c\x05\x4e\x2e\x90\xc7\x73\x37\xeb\x99\xd7\x56\x58\x7a\x93\x42\x91\xf8\x5d\x61\x0a\x5a\x35\x80\x52\xdf\x9c\xdf\x91\x27\x3e\x97\x98\x74\xf3\x3d\x39\x1b\x38\x97\x32\xf5\xdc\x5f\x99\x61\x44\xe4\xed\x7e\x37\x2c\x35\x56\x09\x78\x74\x25\xce\x6f\x74\xb3\xdd\x01\x3b\x12\xe9\x58\xbb\x79\xca\x3a\x46\x0d\xe8\x18\x7b\x00\xc9\x35\x80\xbd\xab\x52\x9f\x87\xe7\x35\xfc\x35\x87\x05\x98\x72\x75\x52\x1d\x9d\x79\xea\xb0\x94\x6f\x47\x44\xce\x9f\xf2\x95\xfe\xae\x9a\x9c\x8e\xbc\x8e\xeb\x37\xa5\x9e\x4b\xc2\x24\xa5\x5e\xfd\xea\x38\xc3\xd9\x18\x4f\xa3\x7d\xb0\xc1\xcd\x0f\x67\x5c\x9c\x85\x4a\x53\x6b\xac\xbc\x49\x01\x56\x2f\xa1\xca\x21\xf4\x46\x57\x35\x3b\xb6\x2a\xa1\x89\x04\xd8\x19\x39\xc9\x5d\x1d\xa6\x48\x29\x76\xfc\xe4\x9e\x0b\xaf\x3e\x96\xf2\x14\xdc\xf2\x3b\x6b\x3e\xa0\x09\x86\x10\x0d\xe9\x6b\x0c\xaa\xf9\x7d\x08\x23\x2c\x07\x42\xbd\x9a\x6d\xe1\x1d\x34\xab\xbc\x83\x23\x39\x51\x08\x42\xb7\xf9\xed\x44\xf7\x42\x42\x93\x6d\x5d\x85\x60\x86\xf9\xf5\xb5\xf7\xb3\x7c\xfb\x03\xa7\x18\x44\xc8\x39\xbd\x51\x77\xeb\xf6\xab\x44\x47\x0b\xab\x3d\x51\x0f\xe1\x45\x43\x89\xa6\xd5\x89\x86\x8e\x6c\x5d\xd4\x6a\x3c\xb4\xe4\xa9\xe6\x44\x57\x8e\x1c\x66\x93\x26\x2d\x9e\x73\xa0\x2a\x73\x25\x17\x6a\x53\xca\xd4\x60\x9e\x31\x8a\xe5\x13\x4f\x15\xca\x14\xde\x54\xb9\x32\x38\x21\x89\x29\x16\xcf\xe3\x05\xa9\x4c\xd7\xd7\xd8\xd9\x04\x03\xca\xa4\xfa\x4e\x3a\xb8\x99\xa2\x81\x28\xeb\x27\xe4\x02\xa0\x1c\xc5\xa9\x8f\x18\x48\x77\xcd\x15\x39\xd0\x67\x6c\xc6\x25\x37\x26\x98\x6d\x75\x97\x4a\x27\xa2\x26\xbf\xd8\x50\x75\xbd\xb2\xef\xfc\xd6\x4b\xb7\x1c\x2c\x3d\x6a\xc3\xc5\xf0\x0b\x4b\x0b\x77\x4a\x91\x01\x3e\xc3\x86\xd0\xeb\x6a\x3d\x0e\xa5\x4a\x33\x53\xde\x88\x5a\x2c\xeb\x6d\x6b\x6a\x19\xfd\x99\x15\x58\xe6\x92\xd4\xd3\xbf\x2d\x52\x03\xba\xe6\xda\x3e\xf3\x2d\xb4\xc7\x2a\xe3\x53\xc4\xa3\x49\xfd\x76\x2c\xf1\x5e\x14\x57\xd5\x72\x66\x69\x66\xf2\xa5\xa0\x69\x4e\xca\xf3\x6b\x32\x97\x58\x0b\x57\x7d\xe8\x57\x65\x10\x0c\xb2\x4a\x8b\xc2\xfa\x37\x7e\x69\xf0\x3d\x2d\xfb\xd0\x14\x2c\x71\xed\xaa\x8d\xf5\x18\xc2\x5f\x5a\x1a\x40\x7d\xdc\x7c\x81\xff\x2f\x06\x50\xd3\xbb\x55\x63\xa8\xff\x03\x9c\x7f\x16\x66\x2e\x36\xad\x9a\x52\x18\x9b\x06\x2b\xe6\x32\x6e\x76\xb9\x09\xa3\x82\xc7\x0d\xe9\x5d\xeb\x5e\x31\x70\xc1\x16\xd6\xb4\x71\xa8\xf9\x12\xff\x1a\x19\x29\xec\x5e\xb3\x08\xd1\x6a\xc9\x8d\xd9\x8a\xee\x35\x81\xac\xc3\xf5\xac\x7e\x8d\xdf\xfb\xde\x8e\x35\xfe\xd6\x2f\xcd\x17\xbb\x64\xd5\x44\xcb\xaa\xd9\x51\xfd\x6b\x31\x59\xec\x12\xf2\x78\x21\xc5\xad\xaa\xc9\x02\x79\x6e\x1e\xbb\xe9\x8a\xc3\x64\xa7\x3a\x8a\x66\xbb\x09\xa4\x53\xd7\x75\xd5\x0c\x34\x6a\xc2\x20\xc4\x12\x39\x29\x04\x7f\x8b\x3a\xff\x6f\x66\xff\x34\xfb\x6d\x30\x8f\xcd\xa1\x96\x22\x7e\xa1\xd1\x28\x1f\x4e\x67\x73\x24\x19\xf7\x16\x5a\xe3\x65\x00\xa4\x2f\x4b\x92\xd8\x3c\xc7\x26\x5b\x6a\xb5\xa4\x1e\xc6\x73\xe7\xb7\xf9\x77\xc0\xad\x63\x4b\xf5\xac\xdb\xa2\x38\x2d\x3c\x3b\xf0\x6a\x39\xe6\xcd\x21\x7a\x2c\x51\x8d\xee\x3b\xc7\x7a\xb8\x0c\xd6\xd8\xa9\x9b\xb9\x0c\x66\xbd\x3b\xa1\xda\x0c\xd3\x6a\x23\x43\x34\x91\x06\x3b\x3e\x25\x77\xf9\x56\xb2\x5e\xde\x74\xe1\xd4\x34\x28\xfa\xf3\x5b\x7f\x40\x7e\xdb\x30\xa2\x97\x91\xdf\xeb\xb7\x28\x83\x90\xb6\x51\x4f\x88\x3f\x98\x89\x55\x1a\x00\x60\x77\x12\xcc\x6b\xc2\x45\x0c\x4e\xe6\x5e\x00\x85\xb6\x62\xad\xda\x46\x25\xa5\xde\xc4\x36\x00\xa1\xe0\x66\xa2\x0e\x36\x5c\xf8\xc5\x79\x2b\xbc\x20\xc3\x82\x54\xc2\xa6\xd5\xf8\x16\x32\x47\x6a\x6c\xcc\x10\x3f\xb7\xde\x6d\xb5\x32\xae\x27\xae\xd5\xdc\xf8\x77\x1c\x46\x67\x8b\x1f\xd7\xe6\x42\x05\xb1\x2d\x4f\xca\xcc\x3b\x82\x07\xd5\x34\x41\x6e\xb4\x85\x21\x3c\x81\x8a\x1f\x6e\x72\x13\x6e\x18\x5e\x3c\xbf\x43\xe1\x48\x32\xf9\xd1\x35\xb0\x6e\x65\x64\x18\x13\x0f\x07\x77\x34\xa7\x87\x01\x09\x5b\x52\x6e\x26\x15\xdf\x3e\xa9\x7b\x1b\xa0\xfa\x40\xd2\xb2\x54\x53\x50\x98\xcc\xa5\xf3\xa0\xcb\x9d\xd6\xc4\x2b\x58\x1f\xd0\x3c\x5f\xa1\x14\x13\x8c\x0a\xaf\x77\x78\xae\xe9\xda\xdc\xf5\x8b\xa7\x16\x19\xd7\xb8\xaa\x6f\x05\xe6\x64\x38\x74\xe6\x4e\xc1\x5d\x66\xee\x9f\x35\xf9\x65\x6a\xb6\x7d\x2f\x2b\x62\x7d\x04\xb3\x18\x91\x49\xd8\x99\xa1\x61\x0e\x91\x5e\xd4\x27\x22\xb2\xad\xb2\xaa\x99\x14\x7d\x36\x36\x99\xc8\x75\x86\x2a\xcc\xba\x4c\x06\x8e\xda\xb6\x5a\x3f\xc9\x5a\x4e\x0e\xee\xba\x90\xe1\xe4\x26\x84\x45\x8a\x3a\x0f\x5f\x43\x2b\xea\x09\x68\xbc\x61\x17\xa7\x4f\x7c\x7e\x5c\x6d\xeb\x62\xdb\xce\x2b\x7b\xdb\x3a\xe3\x2c\xa6\x9e\x66\x5b\x55\xb4\x04\xa4\xec\x88\x96\x0e\x13\x55\x91\xe8\xfe\x03\x98\x60\x1e\x46\xf3\x19\x92\x40\xba\xc8\xd5\xd6\x3d\x6b\x0b\xa2\x5d\xae\x08\xa9\x98\x3d\x68\xd3\x73\xb1\x5f\x7d\x1d\xce\x04\x1a\x99\x90\x10\x47\x1e\xea\x2f\x90\x59\x4b\x59\x1d\x44\x00\x8e\x23\x8f\xc3\x63\x9c\x8b\x7c\xe9\xde\x1e\x41\x7d\x9c\xca\x05\x74\x1c\x77\x43\x19\x3c\x55\xc5\x10\x02\xbc\xe7\xe5\x6b\xea\x4b\x77\x9c\x1f\x2b\x95\x14\xcd\x6c\x83\x3e\x35\x75\xdf\x4f\x07\xf1\xd7\xee\x61\xfd\xd2\xab\x86\xd3\x58\x89\xd9\x39\xa1\x82\xaa\xf5\x0a\xb9\x24\xc6\x5c\x92\x1f\x57\xb6\xbc\x96\x94\xd5\x68\x0c\x9e\xa8\x16\x96\x0e\xad\x42\x56\x70\x2d\x0d\xa9\xc1\x7d\xc8\xa9\xd0\x97\xef\xbb\x48\x07\x1b\x78\xec\x20\xb3\x0e\x07\x8d\xcb\xe3\x13\xae\x2e\x91\x37\xc6\xf8\xf1\x09\x0a\x67\x84\xce\xe9\x0f\xc9\x4b\xe9\xf9\x16\xc8\x24\x64\x95\x05\x56\xd4\x7c\x66\x31\x8d\x28\x8e\x09\x97\x27\xb3\x98\x33\x7f\xce\x15\x9f\xab\x12\x30\x59\xbf\x4b\x8c\xaa\x9e\xc0\x88\x42\xbf\xe7\xa6\x2c\x29\x8b\xd6\x84\x67\x0c\xae\xb3\xf6\x5a\x5f\x94\x68\x8c\xff\xa8\x0d\x25\x9e\x6f\x9a\xce\xa9\xc2\xc5\xda\xcf\x0d\xb2\x01\x1b\xc1\x07\x9a\xfb\xa9\x3a\xdb\xba\x63\x99\x58\x08\xa4\x50\x9e\x71\xac\xf4\xa9\xbb\x15\xcf\x1b\xb4\xdd\x26\xa0\xc1\x29\x0e\xc8\xc9\x73\xeb\x89\xe8\xc9\x98\xfc\x3e\x81\xda\x07\xeb\x6b\x58\x41\x7c\x33\x8b\xb9\x6a\xcb\x01\xc9\x0a\x53\x2e\xf7\x5a\x04\x5d\xa0\x71\xc5\x12\xce\xa9\x15\xcc\x82\x72\xf5\x2a\xe5\xec\x46\xe5\x0e\x26\xe2\x50\x65\xd2\x67\xe1\x12\xee\x24\x3d\x6f\x73\x92\x8e\x53\x4a\x7f\xcd\x11\x1a\xa6\x81\x86\x64\x00\xd7\x31\x11\xf1\xe9\x29\x71\xe5\xb3\x4a\x05\x12\xac\xd6\x3f\x48\x4b\xae\xb8\x4d\x6b\x9d\xff\xfd\xec\xc8\x2a\xac\xd0\x66\xe5\x27\x8f\x60\x37\xa2\x40\xda\x08\x32\xc8\xeb\xd6\x91\x11\x1b\xce\x1d\xa5\xbf\x07\x35\x4b\xf7\xc4\x6d\x99\x0d\x93\x3c\xb6\x1a\x3a\xd7\x3b\xd6\x1b\x70\x0f\xa0\xa8\x4f\xf6\xf4\x51\x11\x9c\xad\x09\x89\xf2\x96\xcc\x37\x8f\x66\x80\x74\x22\x38\xc7\x36\x86\x32\x4a\x11\x57\xae\x8a\x26\xf7\xcf\x71\x42\x64\x5d\x2a\x16\x11\xe9\x62\x11\x91\xa0\x48\x85\x79\x5d\x9d\x16\x01\x9e\xa9\xd2\xc2\x97\x45\xab\x25\x29\xdc\xa6\x75\x0c\xe1\xbe\xa5\x5c\x75\x49\xe1\x3e\xc2\x7c\x74\xde\x03\xcf\xc3\x8e\x82\xb2\xec\x3b\x75\xe9\x70\x9f\x71\x0c\xa7\x37\xc2\x89\xea\x0e\xe7\x92\x0a\xcb\x9b\x61\x35\x79\xbc\x28\x75\xfc\x21\x5c\xdb\xb6\x57\x77\x31\x72\x9b\x71\xda\x49\xaf\xa7\xba\x0d\xb8\xcf\x7a\xd9\x76\x3a\x88\xd0\x08\x9e\x74\xfc\x37\x56\x29\xe2\x0e\xaa\x21\xa7\xde\x18\x18\x6e\xef\x3e\x20\x17\xb6\x32\x2e\x6e\x14\xce\x43\xc2\x68\x6e\x2b\xe6\x5d\xb9\x9d\xb7\x93\x65\x19\x77\x76\x28\xe1\x49\x2b\x08\xe5\x01\x53\x47\x25\xd5\x34\xeb\xa4\x42\x5d\x8b\xdd\x94\xeb\xd6\x13\xd8\xd5\xea\x64\x85\x3b\xe5\xa3\x81\xde\xc1\x7d\xdf\x4b\xc1\xb6\xc6\x48\xef\x41\x5b\x12\xee\x67\x9c\x95\x14\x59\xd8\xbb\x7a\x69\x39\x94\x21\x54\x45\xe0\x9d\xd7\x10\x67\x15\x8b\x47\x73\xca\x4c\xb9\xb9\x91\x50\x51\x5c\x2f\xa9\x31\xd1\x31\xc5\x50\xe8\xaa\xcf\x02\x65\xb9\xec\x77\x85\x99\x4c\x07\xe4\xb6\x19\x5b\xbd\x62\xb1\x20\x2d\x78\x75\x3e\x6e\x3d\x88\x7a\xa1\xca\x55\x3e\xb6\x60\xb1\x8b\x06\xff\x9e\xab\x25\x8b\x22\xe6\xd1\x4b\x6f\x26\x45\x45\xaf\xec\x2d\x0e\x8f\xff\x23\xfa\xf6\xa4\xc1\xf8\x72\x50\x85\xbc\xd0\x27\x1a\x56\xb7\xe2\xe8\xb2\xc8\x87\xb2\xe4\xd5\x57\xbb\x9d\x96\xed\xed\x0e\x73\x2e\x4c\x85\x7d\xd8\x04\x9c\x74\x87\xea\xe4\x18\xa7\x4f\x83\xb9\x0f\x57\x58\xa9\x3b\x7c\x78\x85\x01\x9d\x83\x39\x30\xe3\x5e\xc5\xab\xda\x8e\xf3\xcd\x78\x3b\x21\xf5\x43\xd2\xa1\xf8\xf8\x05\x2b\xcb\x93\x62\x6f\xd0\x41\x13\x19\x56\x5c\x62\x7f\x4b\xbe\xe0\x46\x39\xc4\x3b\x7a\xa6\x05\xef\x5f\xe6\x44\x87\xe9\x2f\x13\xf2\x23\x2c\xce\xd8\x3a\x7d\x2f\x32\x58\x49\x66\xcc\x09\xd6\xef\xc6\x9d\x39\xcf\x74\xcd\x2f\x76\x54\x93\x1f\xad\xe4\x47\xd4\xf4\xa5\xc5\x33\x6c\x00\x82\xc5\xe4\xac\x7a\xf6\xcf\xfc\x45\xaa\xde\x70\xa5\x9d\x72\xdc\x8f\xcd\x76\x9d\xce\x8c\xab\x4c\x54\xd5\x92\x78\x11\x3f\x6c\xd9\xd4\xe0\x0e\xab\x7f\x5c\x08\xb8\x2f\x12\x94\xa1\x0e\xe7\x23\xf6\x1b\x44\x69\x40\xf8\xd6\x47\x26\x36\x4d\x6d\x95\x5a\x0d\xaa\x1a\x4f\xa9\x09\x85\x79\x0e\x27\x61\xfe\x0d\xbf\xd7\x74\x00\xee\xc2\x1b\x4e\x41\xa2\x02\xf8\x4c\x4f\xaa\x59\xe4\x66\xc1\x18\x7e\x75\xf4\x0e\x86\x43\xab\x10\x6f\xb7\xb8\xf1\xb0\x3c\xf6\x8a\xf2\x2e\xc3\x8c\xcb\xb4\xcf\xd9\x37\x91\x0b\xc7\xff\x23\x4a\x94\x43\x45\xb0\x31\x47\xae\x43\x39\x46\x39\xfa\x66\xb6\xb7\xb3\x3c\x1b\x95\xe9\x20\xf1\x0a\x27\xd2\x39\xbc\xae\xaf\x8a\x50\xc7\x3e\xc8\x25\xf9\x5e\x7b\xc4\x09\x3f\x6d\xdf\x69\xb5\x16\x8a\x8d\x13\xe3\x18\x8d\xdb\x55\x8c\x50\x66\x65\xdc\xd3\xf1\xd0\x7e\xdd\x61\x9f\x8d\x3f\x02\xbc\x3c\xb1\x69\x17\x58\x53\xa1\x51\xa8\x76\x38\x77\x28\x19\x24\xdb\x2c\x63\x98\x77\x57\xcb\xf5\x2d\xeb\x36\xcc\x28\x4b\x7a\xbb\x07\x67\x3d\x1a\xb6\x71\x17\x8b\x60\xb2\x54\x89\xab\x39\x56\x66\x2a\xf0\x6d\x5d\x80\x8e\x62\x66\xe0\x79\xae\x2f\x9a\x3d\x66\xe9\xd2\xde\x8d\x45\x7b\x16\x8d\xa3\x47\xb4\x93\xc4\xc3\xe0\x01\xd5\x8d\x54\xd8\xd4\x1d\x82\xba\x2e\xdf\x4d\x8a\xc4\x68\x35\x4c\xc3\x1d\x23\xed\xaa\xe7\xaa\x86\xae\x3d\x47\x5f\xf2\x21\xaf\xbb\xc6\x3f\xdf\x28\xc2\xd5\x56\x0a\x21\x1d\xad\xbe\x92\x6c\xf3\x6f\x80\xc4\x14\x1c\xac\xc6\x49\xc7\x89\xe4\x2d\xee\xba\x99\x65\x65\x51\xe6\xd0\x1f\xc4\x84\xce\x0d\x3d\x0e\x5e\xcb\x81\x73\x02\x22\x49\x9d\x30\xc2\x32\xdd\x2a\x52\x14\x8c\xf0\x1c\x30\x2e\xf9\x85\x69\x5c\xff\xce\xf5\x31\xcd\x3c\x4c\x29\x1f\x75\x4a\xe0\xe9\x0b\x7f\x5e\x3e\x8f\x78\xe5\x1a\x66\xac\xa7\x0d\x93\x65\x2f\x1c\xc9\x4e\xec\xbe\x51\x14\x8d\x57\x19\xa8\x03\xec\x7c\xb2\xea\x9c\x2e\x61\xe3\xe7\x18\x6b\xc1\xac\x16\x0f\xc5\x95\xac\xd1\x7f\x61\x73\xd4\xb9\x91\x94\x98\x07\x63\xa7\x4d\x3e\xcb\x0b\x06\xbd\xaa\xbd\xa2\x9f\x50\xaf\xe8\x0d\xe8\x15\x5d\xc7\x5e\x1e\x33\xd4\x81\xe3\x2c\x63\xf2\x7b\x6f\x1e\xec\xf5\x4b\x91\xf8\x86\x1c\x58\x6e\xcb\x13\x41\x80\x87\xcf\xdb\x22\xb7\x0b\x02\x42\x81\xa4\x69\x48\x9b\x67\xa4\x2e\xc6\x37\x21\x15\xd4\x43\x30\xe3\xd6\xd9\xeb\x70\xbd\xe1\x27\x89\x49\x64\x39\xe5\x3a\x81\xbf\x26\xa5\xc3\x93\xaa\x3b\xe6\xeb\x97\xdc\x91\xa8\xc4\x1c\x8c\xc4\xc4\xea\x73\x51\x69\x8d\x6d\x4a\x7a\x23\xb6\x22\x19\xf7\xfb\x32\xad\x30\x9d\xd9\xdc\x4d\x59\xe3\xcc\x28\xc7\xb5\x0f\x9a\x4e\xc3\x98\x10\x89\xe9\x85\xa9\x7d\xee\x18\xf3\x60\xc3\x34\xa5\x93\x1f\xf0\x74\xb0\xa4\xb3\xcc\x50\xb2\x98\x4f\x41\x44\xc0\xf7\xa2\xdb\xe2\x88\x7f\xa9\x95\x06\x57\x02\x03\x83\xee\xf3\x7e\x69\xed\x55\xaa\xf8\xc8\x2a\xe3\x6a\x3d\xdd\xa0\x36\x84\xad\x34\x3c\x3a\xd5\xbc\x56\x37\x8f\x25\x6e\x83\x5e\xd5\x7d\xe9\x6e\xa5\x66\x7d\xa4\x82\x57\xd7\x8d\xdf\x93\x33\x36\x6d\x28\x41\x65\xb3\xf1\x52\xdb\x89\x5c\x11\x50\xc9\xf1\x7b\xc9\x3a\x16\x98\xb9\xb6\x08\xa6\x56\x9c\xff\x0f\x33\x11\x92\x82\x25\x46\x85\x84\x34\x4d\xe3\xcf\x7a\x60\xd9\xde\x05\x85\x3f\x78\x1c\x2a\x57\x81\xb5\x65\xa6\x33\xad\x0f\x34\xf5\xbe\x41\x3a\x91\xf6\x92\x3a\xf4\xc6\x05\x52\x3f\xbb\xf8\xa3\x4d\xe5\xf3\xef\xdb\x73\x32\xb1\xe9\x5e\x19\xed\x3a\x83\x68\x37\xcb\x42\xc3\x22\x97\x69\xaf\x9a\xbf\x76\x4f\x8b\xb6\x73\xf8\xc6\x16\x10\x2c\xe0\x1f\x82\x0a\xec\xcf\x80\x11\xee\x2b\xd5\xec\xc2\x96\x03\x4f\x7a\x3f\x60\x57\x70\xd9\x7f\xf4\x72\xc4\xf0\xf1\x36\x47\x32\x2e\x1a\x9c\x79\x0e\x42\x4f\x1f\xdb\xab\xc4\x5e\x53\x2e\x88\x61\x3a\x84\x48\x72\x8c\x85\x0e\xc3\x8f\x52\x6f\xd8\xaf\x55\x6b\xa4\x55\xea\x7c\x71\xe7\xa2\x4c\x41\xee\xc8\x76\x07\xa2\xc0\x6f\xda\xee\x70\xe6\x1c\x93\x8c\x81\x3d\x39\x35\xee\xbc\x1e\xe4\x88\x75\x7a\xab\xfe\xab\x8f\x7c\x0f\xb0\xb1\x9a\xcb\x1d\xf1\xd1\x2d\x27\x3b\xab\xe4\xaa\x52\xad\xb5\xf1\xfc\x6d\xf9\x6b\xc2\xdc\x51\xe4\xc4\x6d\x97\x14\x4a\x6f\x35\x76\x16\x70\x18\x59\x54\x1b\xf6\x7f\xc2\x3a\x99\x6a\x6e\x08\xba\xe4\x1e\xcf\x9c\x5a\xe8\x6a\x2a\xab\x68\x43\xd4\x95\xc3\x94\x2a\x0e\xaa\x92\x49\xde\x82\x05\x14\x2d\x4a\xd2\xe2\x61\xee\xe6\xca\xe7\xc1\xa1\x18\x53\xd3\x58\x1e\xa6\xa5\x27\x75\x67\x72\x7a\x1c\x36\xf8\x73\xa8\x17\x60\x53\xc2\xa9\xab\xce\xaa\x49\x43\xc3\x23\x2d\xab\xed\x56\x99\x34\x3f\x32\x4e\x62\xff\x3c\x93\xf2\x85\xfa\x46\xb4\xe5\x1b\x7f\xc5\x3f\xf5\x31\x69\xcc\x37\xae\xe1\xff\xfa\xa8\x52\xc8\x83\x0d\x34\x82\x68\x57\x5d\xd9\x02\xa4\xce\xbe\x8c\x3c\x26\x55\x8b\x70\x8d\x71\x4a\x0c\x4f\x49\x82\x9f\xa8\xcf\xde\x62\x22\x21\x63\xb9\xbb\xc1\x8f\xbc\xfc\xf5\xfc\x28\x19\x20\xe3\x17\xa6\x9e\xdc\x62\x95\x40\x05\x67\x47\xea\xd9\x04\x02\x48\xce\xeb\x51\x4f\xea\xb1\xe2\x6e\x05\xc3\x9b\xf9\xd5\x4e\x86\x71\x33\xff\x32\x93\x22\x78\xfc\x70\x88\xb9\xe9\x89\x1e\xee\xdb\x87\x9b\x14\xf1\x34\xa8\x14\xd7\x8f\x2e\xbf\x6d\xe6\x58\x96\x79\xba\x39\x2a\x29\xe8\x37\xe7\xc9\x7e\x26\x37\xf4\x21\x9a\xe6\x9a\x99\x1f\x8f\xce\xd6\xc7\x0b\x8e\xd5\xd0\xb6\x18\x05\x3f\x4d\x7a\xbf\xa7\x72\x61\xee\xd5\xbb\x51\x09\xfe\x9f\x9e\xbf\x02\x3f\x22\xb2\x7e\x99\xae\xda\x96\x53\xd8\x63\x75\x22\x24\xe0\xb7\x49\x33\xc3\x30\x76\xdb\x53\x32\x68\xfb\x3e\x92\xcd\x76\x11\x6f\x5c\x29\xa2\xd7\xba\xd1\xb5\xd7\xf4\x45\xd1\x2f\x87\x52\xcb\xcc\x89\xa3\xbf\x76\xe5\xfa\xd5\x95\xc0\x15\xbb\xd3\xa9\x71\x8f\x8f\xfc\xa3\xc3\xb7\x74\x7c\xf4\x96\xf6\xda\x39\x43\x06\xe2\x76\xd9\xa3\x78\x52\x0b\x6d\x15\xce\xf2\xfa\x5b\xd7\x22\xaa\xd5\xf9\xab\xb9\x53\x54\xce\x40\x07\x7a\x9f\x24\xf9\xcd\xb4\x93\xd4\x41\xf2\xea\x6b\x57\x98\x8d\x79\xc2\xa2\x49\xe5\xcb\xf0\x07\xa6\x38\xde\x4e\x29\x3f\x3a\xac\xbf\x62\x94\x31\xa4\x95\x32\x56\x49\xde\x43\x56\x90\x8a\x46\x9c\x83\x01\x2b\x05\xfe\xcd\xbd\x4d\x87\x92\xbf\x8b\xbd\x10\x26\xe6\xf3\x15\x7e\xb3\xce\x3a\x09\x82\xd7\xd4\x9d\x61\x53\xb2\x40\x8d\xcf\x4d\x1d\x2e\xb9\x89\x15\xee\xea\xd4\xde\x4b\x75\xe9\x5a\xe2\x54\xbf\x0c\x91\x89\xd2\xd1\xe3\x25\x43\xea\x46\xf7\xa3\x3e\x27\x34\x0b\xba\x8c\xad\x8e\x42\x43\x7e\xfa\xf3\xdb\x2b\xec\x8d\x3f\x40\x9b\x11\xe3\x42\xcf\xf4\x95\x71\x9e\x33\xa2\x1f\xa7\xb9\x78\x2b\x9b\x3d\xf9\x9f\x3b\x3b\xa9\xba\x1e\xa8\x6e\x57\x1d\x11\x1c\xdd\xae\xd1\x34\x57\xdd\x23\xa5\x67\x3c\x1c\x06\x4c\xa0\xfc\x39\x8d\x5d\x36\x55\x98\x4c\x8f\x9b\x7c\xb7\xbc\x90\xd0\x83\x40\x51\x60\xdd\x31\xa7\x2b\x66\xc1\xc1\x7a\x80\xcb\x3f\x14\x24\x2a\xf2\x2e\xdb\xda\xea\xa5\x83\x04\xb3\xde\x4b\x5a\xdd\x27\xa4\xbe\x3e\xe5\xfb\x4b\x31\xac\x76\xa0\xb4\x20\xdc\x80\x9a\x6a\x52\xe0\x6e\xb3\xbe\x48\x51\xc3\x24\xa2\x39\x3f\x62\xa1\x89\xe6\x45\x55\x97\xe7\x1f\x23\xef\x4a\xb7\xea\x58\x25\x54\x67\x7e\xf9\x88\x74\x8e\xf9\xc6\xbb\xa3\x41\xf4\x5e\x81\xf5\x15\x9c\x37\x34\x33\x7c\x73\x05\x7e\xb1\x6f\x90\x09\xcb\xb3\xac\x94\x12\x87\xf7\xf9\x9b\x0d\x6e\x47\xfe\xee\x91\x7f\x44\xa7\xcd\x15\xc6\x9a\x86\xb0\x79\x0c\xee\x3a\x06\x0e\x33\x06\xac\x7d\xf1\x00\xbc\x13\x5e\xae\x00\xfd\x3c\xe5\xe2\x0e\xe5\x28\x12\xb7\xfa\x67\xde\xe9\xe5\x09\x96\x85\x90\xfb\x41\xdb\xb4\x82\xfc\x2b\x21\xe6\x1c\xc4\x8a\xcb\x38\xe5\x94\x59\x0b\xae\xb7\x9e\xf1\xa6\x81\xfe\x1a\x92\x93\x33\x0d\xbb\x92\xb8\x23\x78\x5c\x99\x7d\x5c\x61\x61\xec\x0b\x8f\xb1\xb3\x8f\x1b\x57\xeb\x36\x2a\x8a\x1e\xc3\xc8\xb5\x6b\x6f\x05\x81\xd6\x36\x51\x5f\xed\x17\xc9\xd0\xf3\x54\xa3\x01\xff\xf4\x6f\x58\x05\x64\x3b\x4f\x8a\x3f\x3d\x79\xc9\xed\xe7\x1c\x6b\xf5\x71\xc3\x50\x67\x8a\x5f\xf4\xd2\x32\xf9\xd1\x99\x97\x3c\x94\x92\x52\x32\x83\xf0\xae\x6a\xdc\xa4\x43\x8a\x2b\xe7\xcf\x34\x58\x62\x85\x25\xc2\x88\x2f\xde\x84\x8e\x5d\x32\xd7\x4c\xe4\x72\x3f\x69\x88\xf1\x75\xf7\x56\x2f\xb2\xa1\xef\xee\x35\xf6\xb1\xb8\x4f\xc6\x0d\x31\xf6\x6f\x14\xe6\x05\xe1\xc1\xc4\x3b\x03\x58\xb5\x12\x3d\xbd\xdc\x04\x21\xcc\xa5\xcd\xa6\x86\xe5\x6f\xe0\x10\xcc\xc2\xb9\x54\x8a\x96\x4e\xe1\x24\x03\xde\xb2\x23\x92\x4b\x26\xe2\xb8\x31\x76\x62\xe7\x9d\x3c\x04\x32\x1c\xed\x1e\x3a\x90\x61\x71\x0f\x2a\x6a\xcf\xe1\xd1\x2e\xf9\xd7\x1a\xbf\x12\x15\xcc\x1d\x85\x21\x62\x25\x77\x0c\xec\x04\x16\xc4\xfc\x7d\x45\x02\xa0\xbc\x9a\x63\x62\xc5\xf6\xab\x0c\x12\x1f\x28\x6e\x9e\x45\xe0\x9c\x80\x0b\x13\x5c\xb4\x7b\xec\xe1\xf0\x25\x19\x48\x5c\x53\x6e\x4d\xcf\xe3\x9c\x20\x86\xb6\x22\xde\x29\x8a\xdd\x2c\xef\x2e\x1e\x88\xa6\x79\x8b\x4d\x14\x46\x99\xba\x4f\x3a\x7e\xbb\x4a\xcd\xd8\x27\x60\x6a\x72\x5e\x35\x53\xbc\x5f\x8c\x92\x11\x7c\x34\x19\x6c\xc3\x2d\xf9\x4b\xfc\x23\x7a\x8b\xfe\xb0\x60\xc6\x29\xac\x48\x39\x0b\x24\xc3\x53\x3f\x4b\x18\xee\x6d\x36\xf1\xf9\x71\xbf\x33\x4e\x69\xe5\xa0\xcc\x1b\xe9\x10\x79\x61\xa4\x97\x74\x7e\x9c\x13\xc4\x44\xd1\x10\x1f\x2c\x34\x90\x10\x9b\xe6\xc3\xf3\x4e\xdf\x21\xec\x5f\xf1\x4d\x61\xd1\xa0\xc1\x5c\x5d\xed\x6b\xe4\x4a\xcb\x0b\x4b\xc8\x97\xdf\x4e\x2f\x17\x60\x88\xac\x4a\x1f\xdf\xf8\xe9\x5b\xef\x54\xdb\x87\x90\x9f\xbc\x0a\x23\x4c\x79\xb9\x1c\x3b\xb2\x8f\x92\xac\x99\x9c\x8f\x96\x2f\x96\xfb\x2c\x92\xa1\xa5\x21\xdf\x87\x25\x2e\x9b\x26\x51\x11\xc9\x2e\x95\xbe\x71\x37\x1e\x96\x1c\x50\x8e\x95\x72\xc5\xde\x82\xd4\x6f\xcc\x75\x2e\x9d\xb6\xb6\xb0\xb6\x34\x9e\xf8\xf5\xb5\xeb\xd3\x1a\x98\xa6\xe2\x10\x65\x2a\x79\x7a\x80\x51\x24\xec\x7f\xbd\xd2\x42\xe8\x16\xdd\xb2\xce\x6c\x95\x31\x86\x79\x76\x33\xed\x4a\xb4\x85\x71\x48\xbf\x6b\x35\x86\xb6\xbf\xe9\xab\x7d\x56\xdc\xc9\xa3\xea\xc0\x76\xe1\x70\x5d\xd3\x80\x9c\x47\x70\xc1\xf8\x72\xc2\xd7\xad\x8a\xd9\x10\x93\x70\x6f\x1f\xaf\xb1\x60\x42\x1f\x0b\x7a\x94\xd4\x46\xb6\xb8\x61\xbb\x63\x4e\x8c\x8d\x47\x68\x55\x33\x75\x6e\x9b\xce\x4e\xf7\xb1\x97\x6e\x25\x75\x83\x15\x7d\xf2\x3b\x82\xc5\xa9\xa2\xb2\x86\x03\xd9\x29\xcb\x61\xc1\x59\x14\xa9\x78\x76\xa4\x54\xba\xba\x5b\xab\x7f\x69\xc1\x36\x0e\x53\x32\x7b\xae\x78\x82\x13\x76\xf6\xa6\xdb\xf4\x5d\x8d\x32\xeb\x58\xc2\x35\x70\xed\x69\x66\x0b\xd4\x9a\x42\x18\x0f\x26\xea\xee\xb7\xe2\x9c\xed\x5c\x09\x54\x23\x41\x7f\x5d\x9a\x78\xac\xec\x6a\x53\x27\x96\xd6\x06\x0e\x78\x23\xb0\x00\xf1\x7b\x65\xbf\xbc\x1e\x86\xc7\x34\x6e\xd9\xad\x4e\x0e\xdc\xc1\x25\xf8\x4f\x9d\x4d\x48\x19\x68\xdf\x7b\x48\x51\x1f\x16\x70\xb5\xbb\x23\x14\x39\xff\x91\xe6\xf6\x2b\xbe\x00\xa6\x4f\xdd\x79\xdb\xb0\xed\xda\x26\x5c\x39\xd0\x65\xf0\xb5\x65\xf2\x61\xd2\x19\x59\xcf\x92\x2a\x78\xb8\xee\x71\xe6\x10\xed\x57\x32\xd6\x13\x7c\x31\xab\x24\x53\x9e\x39\x0e\x92\xbf\x26\xd8\x3d\xb0\xdd\x1a\x72\x81\x98\xe5\xc3\xa9\x95\xcc\x40\xde\x9d\x99\xba\x27\x14\xb0\x1b\x9e\x76\x9d\xe0\x06\x67\x6d\xfc\xea\xd5\x19\x9d\xff\x84\xcb\x51\x94\xab\xb8\xda\x6b\x6f\x27\xe3\xa4\xff\xb0\xfd\x4a\x20\x3e\xc2\x36\x69\x58\xb6\xbe\xce\x86\x1b\xef\x0c\x5b\x6e\x73\xd2\x17\xd8\x24\xf0\xde\x04\xa7\x73\x93\x4d\xdd\xab\x89\x5c\xad\x2b\x46\xf2\x50\xcd\xcb\xeb\xfd\x98\xfc\x1a\x3f\x30\x29\x61\xc8\x36\xe4\x47\x56\x30\xb7\x17\x2c\x4f\xef\xa7\xd2\x3a\x2b\x15\x2e\x39\xeb\x9e\x98\x99\x9e\x49\x8d\x70\xc9\xa4\xce\xc2\xa2\xd3\xef\xe5\x22\xef\xbc\x7c\xd6\x2d\x56\x88\xd6\x19\xdb\x40\x2b\x19\xfe\x48\xeb\x67\xca\x44\xb9\x28\xe3\xcf\x67\x7e\x0d\x4e\xb7\x76\x9b\xf7\x15\xb6\x00\xf0\x87\x8a\xbf\xe0\xaa\x9c\x52\x19\xd1\x2f\xf3\xf8\x73\xcf\x3b\x9e\xa3\x84\xbf\xcf\xa8\xa6\x54\x82\x6e\x43\xbd\xda\x41\xc8\x7e\xf6\xe3\x48\x2a\x88\x52\xda\x5b\xdc\x51\x49\x14\xcd\x1b\xd7\xb0\xe3\x94\x44\xb7\x8c\xb7\xbd\xed\xf6\xb3\xb0\x2d\xd9\xf2\xea\xb9\xf0\xb6\x3b\xbb\x2e\x55\xe5\x7e\xd8\x36\xb5\xc0\x11\xf0\xbf\x43\xc8\x63\x7b\xc9\xe9\xcc\x4b\x6e\xff\x94\x30\xe3\xd1\xfc\x8e\xb5\x7e\xfd\xd0\x2d\x07\x4e\x01\xe5\xef\x97\x59\xd6\x03\xe0\x8b\xb7\x75\x8b\x66\x54\xa1\x7f\x2b\xcf\xfa\x1c\x8a\x2e\xd5\x37\x24\x04\x1d\x1f\xd9\xbf\x5e\x29\x36\x5e\xe1\x97\xe8\x2a\x79\x4a\x0a\x2f\xac\x09\xf7\x4a\x1f\x9e\xb3\xc5\x97\x04\x30\x79\xba\x83\xad\x09\x7b\xf0\xdf\x5d\x6c\xc5\x6e\x20\xf4\xf7\xae\x8e\x46\xd6\x62\xc0\x56\x3a\x1a\x60\xee\x57\xd8\x47\x06\xa9\xef\xaf\xf9\xe9\x1e\x3e\x7b\x24\x2e\xa4\xa7\xd2\xb6\x48\x80\x42\x74\xa9\xa0\xa3\x37\xaf\x89\xd4\xaa\x1b\x00\xa6\xe2\x72\x8f\x76\x76\xfc\x6e\x27\x1b\xe5\xdc\x8f\x66\x28\xe3\x75\xe3\x3d\x6e\x4e\x91\x66\xf4\x68\x37\x49\x6e\xd8\x0f\xe8\x54\xe5\x03\xd9\xa0\xdc\xd1\xf1\x65\xb6\x32\x12\x96\x6b\xe3\x37\x76\xce\xdc\x29\x8f\x77\xdb\x3a\x6f\x7f\xd2\xfc\x4e\x67\xed\x4e\x99\xce\xae\x9b\x67\x43\x2c\x63\x85\xa1\x56\xc9\x56\x3c\xea\xa1\xdb\x26\x97\x68\xbf\x0c\xaf\x22\x54\x17\x15\x11\xd5\x73\xc5\x82\x82\xbd\xb4\x73\x03\x33\x89\x8e\x86\x98\xce\xae\x45\x99\xb0\xa8\xfc\x5c\x3a\x18\x8e\x44\x3d\x84\xd9\x63\x3b\x31\xe6\x8e\xe5\x56\x32\x46\xb6\xc5\xf9\x49\xa9\xc2\xb1\x54\xb0\x07\xc8\x69\x6f\x02\x09\xff\x19\xfc\x11\x15\xe9\x2f\x93\x17\xff\xf6\x6f\xa9\x35\xfc\xfa\x77\x7f\x17\x5d\xf9\xc9\x4b\x51\xf2\x21\xd6\x28\x29\xa2\x7e\xfc\x61\xda\x1f\xf5\xb5\x15\xfc\xf9\x33\xaf\x21\x25\x99\xa3\x38\x38\xb2\xc4\xbf\xcb\xa9\x52\xf1\xf7\xf5\xb5\xff\x13\x00\x00\xff\xff\x18\x44\x5e\xa5\x3e\xd9\x00\x00") func confLocaleLocale_bgBgIniBytes() ([]byte, error) { return bindataRead( @@ -747,12 +747,12 @@ func confLocaleLocale_bgBgIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 51641, mode: os.FileMode(493), modTime: time.Unix(1438485627, 0)} + info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 55614, mode: os.FileMode(493), modTime: time.Unix(1439758812, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_deDeIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7d\xcd\x8e\x1c\x47\x92\xe6\x9d\x00\xdf\x21\xc4\x01\x57\x12\x50\x99\x84\x5a\xd8\x1f\x08\x0c\x6a\x8b\xff\x6a\xb1\x48\x0e\x8b\x92\x00\x35\x84\x54\x64\x86\x67\x66\x4c\x46\x46\xa4\xc2\x23\xaa\x58\x35\x18\x60\x0f\xf3\x0c\x7b\x5a\x60\x2e\xc2\x3e\x82\x4e\xba\xd5\x9b\xec\x93\xac\x7d\x66\xe6\x3f\xf1\x93\x25\x76\xf7\xf4\x81\xac\x0c\x77\xf3\x3f\x73\x73\x73\x33\x73\x73\xf3\xec\x70\x58\xe4\xc6\xae\xd2\x67\x45\x95\xd8\xd5\x76\x6f\x9a\xeb\xb2\xb6\xa6\x39\x49\xac\x29\x97\xb6\x4d\x36\x66\x5b\xdb\xd6\xb4\xa6\x49\x5e\x14\xed\xec\xdc\x34\x17\xc5\xca\x9c\x50\x3a\x81\x37\x85\x59\x9a\x2a\xa1\xb2\x2f\xea\xbb\x77\xee\xde\xd9\xd6\x7b\x93\xbe\xa4\xff\xee\xde\xc9\x33\xbb\x5d\xd6\x59\x93\xa7\x37\xff\x67\x69\x1a\x5b\xac\xb6\xed\xdd\x3b\xe6\xc3\xa1\xac\x1b\x93\x3e\x6b\x76\x5d\x95\x9b\x8a\x8a\x98\xf2\x90\xbe\x2c\xca\x35\x95\xb1\xc5\xa6\x5a\x14\x55\x7a\x5a\xed\x4d\xc9\xb9\xb6\x5e\x15\x59\xb9\xe8\x67\x74\xd5\x26\xb9\xf9\x9d\x2a\x4d\x6c\x7d\x4d\xd9\xc6\x26\xdf\xd6\x55\x5b\x7f\x95\x5c\x5f\x9a\x02\x3d\x3d\x47\xd7\xda\x36\x79\x68\xf7\x59\x59\x3e\xe2\xdc\xe4\xc2\x34\xbb\xea\xe6\xf7\xc3\xda\x54\x0f\x1f\x48\x86\x36\x59\x77\x6d\x7a\xba\xf4\x6d\x22\xa9\x3b\xa4\xef\xcc\xa6\xb0\x2d\x0d\xb1\x41\x6a\xc3\x5f\xa6\x19\x24\x5f\x9a\xa5\xa5\x26\xd3\x1f\xe8\x2f\xda\xbe\x7b\xe7\x02\x83\xad\xab\xf4\x7b\xf9\x7b\xf7\xce\x21\xdb\x98\xf4\x5c\x32\x5b\xb3\x3f\x94\x19\xc1\x7f\x5f\x37\x25\xa5\xdf\xbd\x53\x66\xd5\xa6\x63\x88\x43\x93\xad\xb6\x94\xb2\x6a\x0c\x41\x2c\x2a\x73\x49\x68\xa2\x26\xcb\xd2\x54\xf3\xf9\xfc\xee\x9d\x8e\xe6\x65\x71\x68\xea\x75\x51\x9a\x45\x56\xe5\x8b\x3d\x50\xf9\xd8\x54\x5d\x7b\x6d\x1a\xc9\x48\x08\xad\xc9\xde\x6c\x1b\x19\x87\xc9\x09\x6d\x8b\xcc\x62\x7e\x37\xa6\xac\x37\x9b\x36\xc9\x4a\x8b\xb9\x42\x6d\x55\xb6\x0f\x15\xe0\x83\x66\x68\x9f\x15\x65\xfa\x6c\x76\x46\x7f\xd0\x77\x6b\x2f\x6b\x9a\xc4\xb7\xf2\xa3\x05\x22\x16\xed\xd5\xc1\xf8\x94\x64\x69\x6c\x7b\xf3\x6b\x5b\x6c\x80\x8f\x55\x76\x68\x57\xdb\x2c\x7d\x22\x7f\xd1\x50\x63\x0e\x35\xe1\xa8\x6e\xae\x08\x77\xee\xe7\xdd\x3b\x75\xb3\xc9\xaa\xe2\x3a\x6b\x81\xac\x37\xfc\x61\xf9\xe3\xee\x9d\x7d\xd1\x34\x75\x43\x18\x29\x0c\x75\xfa\xee\x1d\x42\xc5\x02\xb5\xa4\xaf\x4d\x47\x93\x1d\xd7\x82\xac\x7d\xb1\x69\x80\x53\xe4\x26\x67\xfc\xc1\xd5\x20\x6f\x5d\x37\x3b\x2d\x96\x2d\x89\x66\x0f\x59\x09\x62\x1e\x57\x42\xdd\x91\x0a\x06\x5d\xc9\x2a\x9a\x1c\xce\x8d\x33\x88\xe8\x69\x9e\x2f\x51\x19\x01\x65\xf9\x9e\xb0\x7c\xc8\x2a\x53\xa6\xa7\xf8\x3d\x7b\x8b\xdf\x94\xb1\x5a\xd5\x5d\xd5\x2e\xac\x69\x5b\x9a\x00\x9b\x32\x25\x9a\xa2\xe2\x69\x25\x3a\x66\x7a\x73\x99\xcf\xfa\xe9\x57\x75\xe7\xa7\x3b\x7d\x4a\x85\x92\xb7\xfc\xa1\x39\xbe\x18\xb2\x4c\x32\x28\xcc\x83\xb2\x8b\xb5\x31\x39\x0d\xeb\xd2\x26\xcf\xe9\x17\xcd\x67\x57\x96\x84\xca\x5f\x08\x1f\xad\x4d\xdf\xd2\x17\x21\x42\xbe\xee\xde\x29\xac\xa5\x5f\xe9\x37\xfc\x07\x55\xac\xb2\x6a\x85\x21\x2d\x97\x8d\x21\xd2\xe4\x6a\xff\x62\x4d\xd6\xac\xb6\x3f\xa1\xdf\xf8\x91\x9e\x77\xc8\x62\x02\x3d\x32\xd3\xa0\x34\x4f\x65\xda\x4c\x4a\x63\x59\x96\x66\x4f\x8d\xd4\xb9\x49\x9f\xd0\x7f\x5c\x3b\x46\x41\x2b\x93\xaa\xd7\x5f\xe9\x37\xf2\x57\xe7\xa3\x2d\x5a\xc2\x46\x9c\x96\xac\x6f\x7e\x6f\x12\x5a\x6c\x2d\x2d\x69\x10\x61\x72\xde\x66\x42\xa8\xbf\x74\xb4\xe8\x16\xf9\x52\x58\xdc\x8b\x7a\x63\x09\x8e\x28\x22\x37\x44\xb6\x67\x57\xe7\xff\xfc\xea\x24\x79\x4b\xdc\x6d\xd3\x18\xfa\x9d\x50\x1f\x88\x75\xfc\xf3\x2b\x2a\x94\x7c\x79\x42\xf4\xe2\x3f\xbf\x4c\x68\xc9\x83\xcd\x01\xa2\x5e\xaf\x8b\xeb\x82\x97\x65\xb2\x2c\xaa\x9b\x5f\x89\x11\x24\xba\xda\x93\x6c\x57\x5c\x10\x6b\x68\x09\x1b\xd4\xae\xf4\xf6\x29\x11\x67\xb5\xcc\xaa\xdd\x60\xe2\x01\x80\x95\xe4\xf3\xe9\x0b\x3c\xd4\xb6\xc4\x43\x6d\x3b\x42\xdc\xc4\x62\xa4\x2a\x78\x0d\xfb\x2a\x64\x11\x53\x32\xf8\x2a\x4a\x13\x1b\x34\x4c\xab\x06\xfc\x36\xf9\xa6\xaa\xea\xa7\x8f\x67\xcf\xaa\x0d\x88\x66\x5f\xb4\x49\xd7\xae\xff\xc7\x82\xfa\x63\x1a\x62\xb4\xab\x22\xf9\xd1\x14\x98\x50\xa2\xf3\x6b\x41\x2d\x23\x8a\xc6\x63\x6d\x49\x1c\x87\x26\xeb\xfc\xfc\xd5\xec\xac\xce\x3b\x8b\x2e\xb5\xdb\xf4\xed\x3a\x23\xd2\xb2\xbf\x94\xc0\xb6\xb6\xfb\x94\x10\x85\x4e\x15\x07\xca\x24\xb4\x59\x8f\x49\xdf\x55\xaa\xd2\x34\xcd\x82\x38\x62\x7b\xb5\xd0\xd2\xbe\xbe\xe4\xba\xf3\xc8\x9f\xf9\x22\x49\x9e\x35\xeb\xa4\xc2\x5e\x92\x94\x06\x1b\x00\xa1\x74\x0e\xc2\x71\x03\x10\x8c\x9f\x96\xe5\xc6\xec\xc7\xeb\x22\xb9\xa8\xb1\x55\x6d\xa8\xe7\xd8\xf9\x18\x75\xa7\x15\x50\x43\xd9\x56\x70\xe7\x32\xdc\x48\x5e\xd2\x74\x26\x40\x5d\xbc\xfe\x19\xb6\x4a\xa8\x05\x42\x11\x55\xac\xc4\x2f\xfd\x0f\xb4\x9f\xbc\xab\xeb\x76\x46\xb4\x71\x0d\xa4\x52\xe1\x03\xa3\xca\x83\xba\x36\xa8\xbf\x86\xb7\xd7\x50\xd4\x26\x97\xa6\xc9\x65\x73\xcd\x0b\x63\xcd\x3e\x89\xea\xc1\xf6\x7b\xe0\x89\x62\x52\x6b\x3a\xda\xb1\x40\x2c\xa7\x9d\xa5\x0e\x6d\x1b\x4c\x76\x93\x04\xd2\x71\x00\xf1\xf4\xb8\xdc\x64\xdf\x59\x8b\x36\x92\x1f\xbb\x4d\x53\xac\xd7\x96\x08\x9f\xd6\x3b\x71\x74\xec\xb4\x4c\x03\xb4\x9b\x27\xb7\x0c\x2b\xd9\x66\x90\x03\xb0\xf7\xa0\xdd\x2c\xea\x45\x68\xc6\xe1\xde\x4d\x5a\x5e\xd3\x56\x53\xa5\x4f\xf9\x8f\xfb\xf4\x1d\xa4\x21\x53\xad\x6d\x42\x23\xba\x2c\x20\x2d\x6c\xa8\xda\x35\x77\xf3\xfc\xfc\x65\xb2\x2a\x89\x09\x27\xdf\xbd\x7b\x65\xa9\xa6\x6d\xdb\x1e\x16\x07\x5a\x10\xe9\xcb\xf7\xef\xdf\xd2\x92\xc6\xd2\xf0\x89\x1e\xc9\x52\x9c\xb0\xc0\x10\xc9\xeb\x6e\x4f\xe2\x0e\xaf\x6c\xd4\x7a\x7a\x28\xcb\x62\x27\x2c\x85\xe8\x12\x23\x5b\x66\xcd\x5c\x08\xa2\x6b\xca\x88\x50\x66\xd4\xae\x4f\xff\x98\x1e\xa3\x5b\x0f\xf0\xdf\x79\xd4\x71\x46\x97\x60\x97\x40\x64\xc7\xb5\x4c\xcc\xf5\x01\xbd\xf0\xd4\xfc\x46\x3f\x47\x4c\x9e\xf7\x6a\x05\x92\xf2\x4e\x3e\x1b\x42\xda\x3d\x21\x83\x39\xcb\xf9\x19\x61\x48\xd8\x0b\x27\xae\x9b\x7a\x4f\xd2\x48\x15\x7d\x7a\x84\x91\x48\x03\x3a\x9a\x9d\xe6\x8d\xb1\xd6\x24\x15\x09\x28\xc9\xbb\xe7\x4f\x92\xff\xfa\xe5\x9f\xfe\x34\x4f\x9e\x55\xed\xa5\xc1\x7c\x57\xb4\x56\x65\xb1\x71\x27\x12\x07\xcf\x0c\xb5\xd8\x27\xeb\x9a\x96\x23\xb3\x9f\xe7\x75\xb3\xcf\xda\xaf\x92\x7b\xaf\x69\xfd\xdc\x4b\x1e\xf2\x08\xfe\xa7\xf9\x90\x91\x58\x64\xe6\xab\x7a\xff\x68\x8e\x3d\x97\x76\xbc\x46\x08\xfa\x5c\x28\xf9\xd9\x6c\xcf\xf2\x88\x66\x79\x4e\xa8\xd9\xb1\x74\x22\x62\xda\x62\x55\x57\xeb\xa2\xd9\x47\xe2\x1a\x66\xce\xcb\x2a\x3c\x3b\xbb\xf6\x42\xc5\x38\x46\x64\x55\xb7\xc5\xfa\xca\x61\x92\xe8\x36\x83\x18\x49\x0b\xc1\x41\x17\x0e\x9c\x7a\x46\x2c\x75\x61\x05\xd9\x3a\x03\xe7\x9c\x38\xe3\x69\xb5\xc4\x22\x20\x11\x25\x44\x15\x98\x88\xfe\x6c\xd0\x0e\x52\x12\xba\x84\x9b\xbe\x91\x0f\xe1\xa8\xbd\x56\x62\x30\xa2\xe4\x03\xc9\xa4\x4f\x8d\x07\xe0\x35\xf9\xe4\xe9\x6b\x22\x32\x9a\x15\xc2\x32\xed\xa8\x79\xb7\x63\xee\xb4\x47\x5d\xb4\x83\x81\xad\x30\x17\x26\xd4\x2b\x3b\xc1\x2a\x54\x7e\x22\x1d\xc6\x6a\x25\x29\xab\x30\x6b\xdd\xb6\x88\xc5\xd1\xce\xbc\x10\x4c\x8a\x2c\xe5\x37\xa1\x26\xc6\x26\xad\xf5\xb8\xbb\x53\x05\xa7\xba\x5d\x04\x9e\xd0\xab\xee\x84\xe9\x88\xe5\x27\x29\x5f\x63\x63\xdd\xdd\xfc\x56\x41\xdc\x72\x45\x76\x24\x41\xd1\x67\x56\x95\xc6\xf1\x5d\xda\xe6\x49\x28\x55\x1d\x61\x41\xad\x40\x70\x96\x6d\x9e\x96\xb5\x53\x19\x4e\x92\x6e\x4f\xdb\xdf\x16\x32\x1b\x15\xbf\x26\xf2\xda\x8a\x60\x3f\x2e\xaf\xdd\x7e\x65\xf2\x62\x53\x12\x05\x10\x3c\xf6\x13\xd2\x0f\xda\x88\xa1\xb9\xae\xb9\x4a\x97\xa6\x85\x08\x4f\xdd\x3b\x49\x5e\xdc\xfc\x4a\x33\x9e\x70\x1b\x3c\x2e\x66\x31\xaa\xd7\x3c\x88\x75\x88\x84\x55\x83\xb9\x93\x22\x55\xac\x13\x91\xe5\x9c\x0a\xed\x6f\x7e\xa7\xb5\x54\x25\xff\x62\xda\xeb\x36\xa9\x6a\xea\x0d\x04\x09\x4a\xe9\xa1\x6a\x76\x2a\xb2\xa6\xc7\x4c\x02\x1e\x0f\xb1\x28\xea\xf1\x67\xf7\xbe\x79\x9a\x7e\x71\xef\x73\x4a\xdf\xde\xfc\x5a\x12\x70\xd7\x12\xdb\x6d\x0b\xd2\xe5\xe2\xea\x40\x43\xbc\x05\x84\x7e\x09\x8d\xb3\xfc\x3a\xeb\xef\xa9\xc2\xc2\x86\xfd\x71\xe5\x26\x54\x0c\x27\x2e\x8f\xa4\x19\x5d\xb3\xe3\xac\xbe\x8e\x21\xe5\xfb\x8a\x8a\x4a\x8b\x8b\x0d\x6d\x30\x22\xe9\x69\x8a\x12\x27\x89\xfc\xed\x62\x53\xb4\x8b\x35\x38\x48\x9e\x3e\x37\x5b\x62\x24\x54\x2f\x2d\x9c\xf7\x06\x5b\x00\x71\xef\x4f\x09\xe0\x53\xd2\x25\xf7\x24\xf5\xe7\xb5\xfd\x2a\xb9\x7f\xe1\xe4\x9a\x2f\xc1\x1d\x16\xd9\x05\x95\x06\x91\xab\xd0\xed\xa4\x3e\xc2\x3b\x30\x7d\xf3\x3b\xa6\xc8\x09\x3a\x2c\xa6\x9c\x90\x88\x08\x09\xac\xcc\x72\x90\xbe\xd0\x41\x90\x20\x9d\x00\xe9\x6b\xc2\xf2\xbc\x4f\xfb\x08\x56\x44\x0b\x35\xfc\xf5\x37\x4f\x5e\xbe\xe7\x52\x9b\x7a\xd9\x15\x65\x3e\x53\xd0\x39\x06\x7d\x41\x22\x6f\x0e\x09\x57\xc9\x26\x08\x82\x83\x49\xb2\x05\x71\x25\x11\x9c\x76\x35\xad\xbb\x5d\x2b\xa3\x73\x55\x7c\x94\xf4\xc2\x7b\x25\xd5\x77\xf3\x7b\x49\x53\x21\x15\x78\xc9\x02\xf8\x21\x52\x22\x8d\xe0\xe9\x51\x11\x00\xe5\xa5\x13\x2c\x26\xec\xda\x8e\x91\xe0\xf2\xbf\xc2\xd0\x67\x8f\xe8\x7f\x42\x7b\x76\x61\x84\x89\x6f\xdc\x9c\x61\xe0\x50\x36\x18\x1b\xdf\x72\x56\x27\xc4\x4a\xd2\x62\xe2\xe4\xa1\x8a\x5b\x59\xd3\xfc\xb2\x89\x02\x5a\x76\xd5\x1f\x6b\x6f\xa1\xa9\xc2\x26\x26\x82\x09\x9c\x0d\x86\xeb\xe8\x8c\x3a\xb2\xa2\x3d\x2e\x7d\x09\x83\x09\x38\xc4\x0f\x45\x59\xee\x88\x72\x4c\xf5\x09\xfd\x6e\xa4\x30\xed\xa6\xdb\x13\x30\x6a\x92\xaf\x3a\xea\x36\xc1\xf1\x6a\x11\x55\xa4\x6a\xa9\x7f\x85\xc1\xd2\xd9\x66\xb6\x9d\x73\xb9\xcb\x9b\xdf\x2b\x0b\x01\x3c\x21\x46\x54\x82\x2e\x36\x15\x8b\x98\x54\x0d\x89\xeb\x2c\x1f\xfc\x05\x76\x16\x52\x91\x3a\x91\x53\x6b\xe2\x29\x4d\x6f\x8d\xc9\xce\x3b\x54\xe2\x1d\x64\x58\x70\x24\xa8\xd0\x84\x2d\xbc\xad\x06\x08\x6f\xcd\x87\x96\xc8\x48\x53\xd8\xb2\x42\x29\xb4\x7d\xac\xb6\xd6\x94\xd8\x2b\xaf\x98\x5a\x6c\x7a\xc6\x6b\x20\x12\x59\xb1\x82\x49\x2b\x5b\xd6\x98\x95\x0b\xa3\x60\x2f\x58\x12\xa7\x31\x65\xeb\x16\xa8\x1a\x14\xa1\xea\x48\xbb\x76\xb5\xf5\x95\x6c\xce\x15\x6b\x80\x03\xf0\x46\x01\x42\x83\x5a\x93\x7e\x52\xcd\x33\xed\xd5\x4b\xf9\xc4\xdd\xa0\xa8\x06\x83\xca\x42\x15\x72\xb5\x08\xc8\xa4\x1b\x67\x64\x89\xa4\x87\xad\x39\x40\xce\xd8\x5b\x5a\x51\x1d\xcf\x0e\xac\x63\x35\x4b\xfc\x52\xec\xeb\xe4\xcf\xcc\x90\x33\xe5\xe9\x9f\x78\x63\xd5\xc7\x55\xd2\x37\x5d\xb9\xda\x22\x1b\xd5\x27\xc3\x1d\x55\x8c\x3f\xa4\x2d\xa5\xcf\x6c\xd2\x76\x58\x89\x96\xb4\xa0\x22\x3f\xe1\x05\xd1\x13\x74\x92\xcb\xae\x01\xc3\xf1\xfb\x2e\x51\x97\xa8\x82\xac\x07\x0a\x29\x66\xd5\x98\x6d\x8f\x04\x00\x0c\x80\x19\xed\x54\x9b\x8f\x63\x71\x0a\x24\xd7\x97\xb6\x66\x2a\x0f\x8e\x3b\x03\x54\xef\xcd\x7e\x89\xda\x4d\x1a\x76\xd7\x84\x1a\x2e\x96\x98\x0a\xda\xbf\x37\xc4\x51\xc6\x5b\x01\xa1\x68\x03\xe9\x52\x61\xcc\xad\x30\x5f\x7b\x73\x1e\xf1\xa7\x4b\x4c\xc3\x25\xad\x53\x9a\x88\xd1\x3c\x36\xd1\x96\xfc\x89\xdf\x8a\x44\x88\x61\xe9\x90\x6a\x6b\xfd\x04\x80\x12\x2b\x58\x8b\x62\x0c\x0c\xc6\x4b\xe8\x7d\xb8\x7c\x74\xdf\x3e\x7c\xb0\x7c\x04\x7d\x0d\x88\xa7\x69\x40\xab\x4d\x2d\x1b\x13\xe1\x04\x66\x1d\x92\xc6\xd7\x10\xad\x0b\x12\x27\x1a\x92\x25\x96\x8c\x4b\xda\x18\x68\xc9\x41\xd8\xb9\x9f\x27\xe7\x2d\xdb\x4b\x59\x88\x19\xcf\x76\xb6\x24\x71\x86\x78\x5d\x61\x6e\xfe\x83\x85\x22\x27\xcc\xc8\x26\x79\x06\xdc\xca\x9c\x43\xe3\x47\xa3\x9e\x3d\x78\xe1\x3e\xc3\xce\xba\xe2\x75\xcb\xf6\x25\xb7\x54\x4e\x83\xe4\xe6\x91\x86\xe9\x63\x7c\x94\x05\x55\x78\x9c\x2c\x89\x2b\x63\xd4\x84\x6f\x62\xd0\x24\x71\x74\xc4\xb2\x13\x57\x61\x84\x31\xeb\xa9\x33\x6b\x60\x7c\x49\xce\x0a\x62\x66\x3c\x12\x5a\x36\x8b\xae\xd2\xe9\x30\xb9\x10\xe3\x4b\x62\xc1\x35\x6d\x13\xdc\x04\x2f\x2c\xe6\x0d\x5d\xe5\xe5\x84\xd6\x0c\xc7\xf7\x99\x9f\x8c\xcf\x89\xd3\x9a\xaa\x42\x59\x96\xa4\xa6\x27\x91\x67\xa2\x55\xde\x2c\x0c\xd5\xf8\x69\x27\x12\xbd\xf9\x0d\xcd\x58\xda\xe1\x77\xc4\xd5\x76\x46\x37\x7a\x56\xf9\x20\x15\x79\x9d\xe7\x71\xd7\xb6\xb5\x48\xaa\xc0\x86\x8e\x00\x56\x05\x29\xa8\x93\xca\x95\x4f\xe0\x86\x3a\x42\x4d\x32\x06\x61\x5a\x36\x62\x36\x37\x4e\x63\x59\x10\xcd\x83\xef\xb4\x86\x35\xd0\xd1\xb0\xb1\x19\x62\xd2\x79\xa4\xfb\x64\x60\x0a\xc7\x4a\xe4\x4e\xa1\x6f\xed\xb1\xae\x79\xf5\x94\x3a\xb1\xf7\xca\xd6\xec\xba\x6b\x6e\x7e\x5f\xed\xa8\xe0\x35\x6c\x21\x53\xdd\x94\x6a\xc7\x0b\xb4\x57\x34\xec\xcc\x6c\x0b\x1c\x93\x11\x1b\x2b\xa2\x29\x02\x18\x0f\x0c\x26\xdd\x92\x30\x4e\xcd\xf3\x04\xf9\xcd\x7a\x3e\x6c\xba\x67\xcd\xe9\x0d\x8e\xb4\xa8\x61\xb7\xa0\x1b\x48\xc7\x7c\xf1\xb6\xae\x17\x76\x0b\x13\xc3\xd3\xb8\x00\x9b\x4e\x88\x7d\xe6\xac\xe5\x51\x8f\xff\x9b\xb3\x9f\x25\x30\xec\xb3\xa9\x83\xb7\x22\xd2\xc8\x32\x58\x35\xaf\x8c\x4d\xff\x9c\xdd\xbd\x53\xc1\x98\x8d\x3c\xca\x80\xd2\x79\xf3\xef\x50\x64\x05\x96\xd8\xda\x9e\x40\xbf\x23\xa9\xea\xf5\x58\x7a\xc6\x26\xc7\xc9\x61\xb7\x9b\xbd\xe6\x9c\x67\x91\x44\xec\xe6\xff\xee\x9d\xb7\x63\x39\xfb\x9d\xb9\xc5\x82\x7f\x7e\xfe\xf2\xbd\xe8\xb3\xe7\x2f\x67\xe7\xc4\x54\x58\xff\x28\xa5\xf1\x97\x6d\x7b\xb0\xdf\x35\x25\x1b\x5a\xce\xc5\x0e\xf2\x36\xbb\x2a\xeb\x2c\x47\xaa\xfe\x94\xf4\xf7\x26\xdb\x73\x47\xf1\x43\x8a\x9f\xd2\x86\xcc\x49\xf8\x41\xfc\xa3\x60\x39\xb8\x09\xc6\x37\xde\x8b\x64\x1c\xfc\xd3\x2b\xfe\x41\x4f\x33\x7c\x36\xf0\xf3\xb4\x29\xf0\x67\xe2\x61\xe5\x61\x9b\xb1\x48\xe3\x41\x77\x19\xad\x76\x92\x48\x1d\x8b\x14\x95\x0e\x70\x55\xb7\x37\x0d\xb4\x1f\xe3\xe7\x0d\xea\xfb\xbd\xd9\xe2\x1e\xe4\x33\xe1\x00\x83\x5a\x73\x5a\x74\x7f\x7b\xcd\xf3\x51\xd5\xb6\xb8\x0e\xa3\xf2\xb6\xb8\x17\xcd\xcd\x6f\xc4\xcc\x59\x19\x80\x71\x0d\x90\x2c\xb6\x8e\xa0\x99\xfc\x84\xfa\x08\xd8\x35\xd6\x6b\x62\x9f\x7d\xe8\x17\x64\xe4\x6d\x6f\x7e\x93\x0d\xe6\x78\x41\x61\x33\xae\x14\x96\x9c\x70\x4c\x5d\x66\x43\x6e\x83\x22\x30\x89\xdd\x52\x80\x48\x83\xa1\xaa\x1d\x6d\xc8\x95\x42\x7e\x47\x8c\x1b\xa8\xc4\xd9\x9d\x68\x66\x5f\xf9\xa3\x24\xda\xc6\x56\xd0\x58\x56\xad\x3b\x54\x4a\x6c\x5b\xec\xf7\x4e\x93\xe0\x93\x40\xb1\x28\xfa\xd5\x1a\xe9\x22\x84\x4a\xa6\xf3\x9b\xdf\x1a\xd4\xce\x45\xa1\x92\x0f\xcb\x86\x03\xb1\xc5\xd2\x18\xd2\x77\x33\xe2\x10\x7d\xa1\x1a\xa3\x61\xf8\xd6\x8a\x84\xb1\x0c\x86\xdf\x61\xc1\xc1\xe2\x3c\x56\x96\x04\x98\x51\xd1\x91\x9d\xf9\x58\xe1\x96\xd6\xd5\xa8\xb4\x5b\x6c\xc7\x0a\xc9\x8c\x72\x01\x1a\x70\x3e\x60\x17\x24\x1e\x91\xcc\x1f\x15\xbb\x14\xa9\x85\x58\x34\x49\xc8\x1b\x98\x24\x5d\xa3\xa1\x25\x50\x0c\x5b\x13\x3c\xfb\xf5\x34\x3f\x8f\xd0\xea\x67\x27\x4c\xe8\x58\x67\xf1\x3c\x29\xa8\x8a\xaa\xaf\xa2\xef\x20\x90\x86\xcf\x34\x23\xad\x55\x2c\x0c\xbc\xf9\x8a\x20\x9f\x58\x56\x04\x9d\xe2\x25\x1b\xf7\xc6\x30\x06\x62\xe5\x43\x66\x86\x2d\x7c\x24\x96\x50\x83\x53\x4d\x10\x91\x42\xb9\xfd\xeb\xda\xa0\xdd\xaa\xf0\xe3\xfa\x83\x06\xfc\xe6\x78\x4b\xf5\xb4\xe5\xc4\xd5\x7b\x24\xf5\xab\xf6\x6a\xb8\xf9\x40\x09\xe9\xa9\x2f\x10\xd9\xfa\x39\x0b\x22\xb8\x20\x77\x8e\x03\x68\xdb\x42\x03\x93\x91\xb2\xf2\x4e\x7b\x38\x75\x73\x8d\x1d\x7d\xa4\xbe\x63\xa8\x25\x24\xe6\x30\xca\x44\xe4\xc9\x98\x6e\xe7\x89\x08\x23\xce\x78\x75\xdd\x41\xcb\x22\x29\xb8\xbc\xf9\xcd\x62\x52\x79\xb2\x79\xf9\x91\xde\xb1\xf1\xe6\x49\x5e\x88\x0e\x33\x96\x98\xed\xce\x5c\xa5\xaf\x48\x0a\x30\xaa\x51\x13\x7d\x2a\x59\xe8\x69\xdc\x2b\x2a\x7d\x22\xd2\x53\x95\xf4\xb7\x2c\x8c\x83\x9b\x38\xd0\xae\xbe\x66\x2b\x80\x65\xa5\x19\xda\x0d\xd1\x36\xed\xbb\xbe\x0d\xd6\xc8\x99\x9b\x4f\x57\x25\x6d\x72\x21\xde\xb2\x20\x3d\x54\xcc\x85\xf8\x98\x30\xab\x74\xaa\xe8\xb7\xae\x01\x9e\x94\xa4\x37\xa9\xb0\xbb\x3a\xbf\x0a\x99\x60\x98\xd7\x68\x2b\x74\x16\x8e\xd1\xb6\x38\x69\xc7\xa0\x2d\xa3\xa5\xe5\x88\x09\x93\x63\xf1\xa7\x5e\x30\xc7\x56\x5e\x78\x3b\xa1\x27\x75\x6a\xf7\xef\x98\x11\x69\x0d\x82\x38\x8e\xc1\x49\x87\x5a\xf2\xe2\x44\x0b\x67\x45\xbb\xa1\x8d\x2f\x9f\x20\x01\x6f\xf9\xe2\xfa\x0d\x35\xa8\x0a\x8d\x98\x9f\x7d\x51\x31\x0c\x28\x2f\x1c\x0e\x8c\x21\xe3\x5a\x8f\x0c\xf0\xea\xef\x19\x5f\x8c\x4f\x3e\x74\x90\x9a\xc6\x93\xc1\xcc\x91\x1b\xbe\x10\x2d\x9e\x8f\x9b\x3d\x13\xa3\xc6\xf0\xab\x3d\xd1\x11\xde\xde\x95\x9c\x8d\xbf\xe3\x46\x36\xe6\xe6\xd7\x8a\x4f\xa8\xa3\x0e\xb6\x19\x6b\xba\xcb\x26\xab\x56\xdb\x68\x8d\xff\x58\x98\x72\xf6\x98\x53\x87\x4b\x9b\x45\x49\x0c\x07\x16\x90\x2d\x54\x6c\x98\x2f\xa9\x22\x95\x35\x9d\xf2\xc9\x3e\x05\xcb\xa2\xcc\x59\x75\xd9\x34\x02\x84\xb3\x18\x5f\x6e\xd5\xd9\xb6\xde\x4f\x15\xc7\x08\x38\x55\x96\x63\x35\x3c\x77\xfa\x97\x9a\x44\x96\xba\x8a\x4e\x61\xda\xc8\x4d\x80\xb0\xd4\xb7\xd9\xb0\xfe\x59\xb4\x24\x0e\xff\xef\x35\x2d\x58\x35\x17\x89\x52\x04\x09\x15\x2a\x3f\x69\x7e\x84\x18\x9b\x3e\x67\x05\x0b\x73\x97\x81\x9f\xa6\x67\x59\xb3\x93\xfa\x05\x06\xb6\x3d\xc0\x30\x22\x20\x52\xcf\x79\x17\x82\x5a\xd0\x5c\x10\x7c\x7c\x04\xca\x7c\xfa\xd3\xfb\xf6\x53\x66\x71\x02\xa2\x76\x8a\x50\xf2\x90\x11\x39\x37\x95\x28\x5d\xdc\x8b\xbc\xb7\x81\x55\x76\x76\xd6\xc1\x60\x92\xdc\xbb\x6f\xef\x45\x1b\xd8\x75\x57\xde\xfc\x6a\x2d\x6b\x25\xec\x40\x21\x8e\x1b\x34\x2f\xce\xbb\xc3\x39\x76\x4c\xd8\xc4\x95\x41\xd9\x81\x38\xee\xac\x4d\xe9\xb9\xd8\x91\xc4\x4e\x57\xf1\xa9\x24\x61\x4d\x84\x87\x70\x64\xc9\xc7\x49\xb0\xb2\x0d\xed\x6b\xb9\x21\x66\xae\x76\x7d\xb7\x54\x29\xb9\x2b\xf2\xf4\xbb\x22\x47\x7f\x0f\xdd\x92\x2a\xf4\x8e\x28\xf1\xcc\x58\xef\x91\xe2\xbc\x92\xf8\xd4\xe2\x69\x74\x16\xd8\xd3\x43\x6f\x7e\xf3\x65\xb1\x7a\xac\xc1\x09\x2b\x8b\xc5\xbc\xb2\xd8\x34\xaa\x66\x07\x7b\x30\xd7\xb4\x28\x98\x73\x44\x27\x71\xac\xff\xa9\xf3\x0d\x4b\x26\x27\x89\xa5\xa9\x36\x5a\x16\x4c\xf6\xd2\x2c\x67\xcb\xcc\x62\xfa\x70\xe0\x48\x82\xa6\x8c\x55\x2c\x56\xe2\x37\xc6\xa7\xc8\x38\x76\xa1\xd5\xb6\xc7\x91\x4d\x58\x6b\x6b\x78\xc8\xf0\x76\xff\x7d\x0d\x4b\x11\x16\x23\x2d\xf3\x26\x11\x1d\x6b\xec\xef\x55\xd6\x82\xed\xf4\xbc\xc5\xa9\x01\xe6\xac\x3b\xe4\x30\x38\xf6\x67\x97\xcd\xdd\xb4\xaf\x59\x3d\x91\xe8\x03\x79\x83\xf2\x18\xb8\xf5\xeb\x70\xd2\x65\x2b\x30\x8c\x11\x9c\x4c\x47\x0f\x58\x4c\x53\xbe\xc8\x09\x31\xa9\xdf\x70\xce\x03\xb6\xdc\x25\x44\xec\xed\x3a\x83\xd5\xfe\x6b\x66\xa7\xc4\x6d\x69\x9e\xda\x06\x8c\x1b\xd6\x8e\xc4\xde\xfc\xba\xd7\x55\xf9\xaa\xa8\x76\x56\x90\x9a\xc7\xfb\x4f\xdb\x18\xcc\xf2\x9c\x6d\x68\x44\xe8\x1d\x90\x05\xaf\xbc\x69\x7f\x22\x23\xdb\x71\x9f\xc5\x04\x9b\x13\x89\x2f\xdd\x35\x7a\x9f\x9b\x35\xf1\x5b\x99\x54\x61\x39\xd3\x65\xfd\xe1\x75\x7c\xe0\x68\x83\x89\xc5\x33\x2c\xdd\xd1\xe1\x94\xa0\x3c\x0f\xf2\x02\xce\x69\xe0\xc6\xb6\xad\x6b\xab\x26\x63\xe9\x12\x2c\xc6\xbe\x2c\x69\x7c\x97\x37\xbf\x6e\xcb\x68\x1e\x5d\xcf\xf9\x4f\x7c\xf8\x32\x9e\x77\xa8\xc8\x24\x00\x6a\x7f\x99\x9d\x2c\x8a\x3d\x7c\x00\xa1\xad\x6c\x69\x7f\x81\x55\x23\x87\xa4\xc7\x87\xb7\x5e\x8d\x22\x69\xa2\xcc\xe7\x30\x1e\x0c\xc6\x1c\xce\xa5\xbe\x05\xd8\x52\x67\x3c\xe0\xac\x71\x3d\xa7\x85\x03\x8f\x15\x5a\x77\x27\xb1\xb1\x29\xe2\x56\x44\x10\x7c\xe6\x39\x1f\x0c\xcd\x53\xa8\x2c\xef\x89\x81\xaa\xd9\x33\xa2\x5c\x66\x78\x4a\x94\x63\x23\x90\xd0\x20\x38\x53\x19\x89\xc1\xa7\x7a\x2a\x64\xa3\x53\x7d\xcc\x83\x07\x10\xdb\x7d\xc8\x9c\xd0\x2b\xc6\x75\x4c\xea\x13\x83\x9e\x85\x35\xe8\x0a\xf9\x75\x42\xd2\x45\xc7\xe2\x21\x8b\x2f\xc4\xbe\xe4\x34\x56\xac\xa9\x7b\xb6\x09\x56\xa1\x2d\x77\x26\xc0\xc3\x67\x85\xcb\x0e\xf4\xac\xe0\x59\x38\x9d\x1d\x7b\x17\x8a\xc6\x16\x71\xd6\x43\x53\xec\xf9\xd0\x70\x4a\x77\x63\x46\x38\xc1\x31\xc1\x65\x33\xd9\xb8\x03\x4f\xec\x69\x78\xa8\x36\x6b\xae\x88\x03\x71\xf5\x3e\x41\x8d\xc8\xa7\xa5\x0d\x2d\xbb\x26\xbd\x63\x99\xdb\x49\x14\xf8\x95\xdf\x49\xb2\x3c\xe7\x65\x24\xe9\xec\x61\x39\xe8\xf6\xb6\xa8\xae\x3b\x71\xa3\x12\x70\x33\x61\xc7\x3a\x02\xb5\xe8\xd9\xe9\x61\x92\x3e\x66\x9b\xdf\xff\x81\x61\xde\x89\xab\xb1\xc2\x90\xe0\xfc\xfd\x1b\xb0\x43\xb6\xd1\x43\x05\x83\x51\x2f\x98\xe9\xf9\xb4\xd6\x1b\xe7\x9d\xad\xb4\x77\x2a\x32\x32\xcd\x87\xbe\xf7\x17\x54\x35\x81\x1a\xe9\x2f\x7c\x16\xcb\x0d\x7b\x24\x09\x1a\x36\x06\x88\x90\xd5\xa5\x64\x74\x44\x4c\xe8\x7b\xa9\xe6\xac\xea\x0c\x20\x7a\x88\x45\x35\x42\x69\xe0\xfe\x85\x33\xac\xbf\xc2\x41\x10\x6f\xaf\xcd\x40\x31\x92\x0d\xc0\x9f\x2a\x8c\x0d\xcc\xac\xb6\xb1\xaf\x10\xeb\x93\xb2\x47\x0f\xcb\xd3\xd6\xa3\x6b\xd3\x60\x89\xcd\xa5\x23\xca\xc9\x1f\x92\xe0\x58\x57\x9b\x47\x50\x3c\x1a\x38\xbb\x50\xaf\xd8\x61\xfc\xeb\x87\x0f\x34\x2b\x61\xb3\xae\xef\xee\x69\x55\xd2\x8e\x03\xec\xc3\x5e\xfd\x30\x4b\x68\x0a\xd7\x29\xa4\xb2\x47\xcf\x9a\x6b\xd3\x39\x4f\xc0\x81\x85\xf3\xe1\x83\xec\x91\xc8\xe6\xbd\x22\xea\xa9\x0a\xe1\x48\x5d\xfe\xe0\xa7\x2d\x88\xd0\x3c\x83\xa2\xf3\x40\xec\x1f\x83\x66\x82\x89\xcc\x30\xe2\x43\xc2\x5e\x08\x91\x94\x04\x12\xf4\x55\x58\x25\x87\x78\xcd\xba\x8a\x78\xb7\x17\x7b\x0e\xf1\xff\xb8\x86\x26\xaa\xc1\xf3\x2b\xe8\xa0\x54\xf7\x6b\x71\x62\xf4\x7a\x83\xda\x7d\xa8\x5e\x57\x67\x3a\x34\x00\x23\x83\x0f\x89\x69\xa5\x49\x9f\x3d\x61\x79\x7a\xc6\x22\x1f\xd2\x89\x48\xd7\xb7\xd3\xf3\x27\x9e\x89\x4c\xe0\xaf\xec\x71\x14\x12\xb7\x5e\x46\x25\x93\x6c\xaf\x86\x0c\xc6\xc1\x8f\x5d\xe9\x4e\x53\x05\x53\x50\x6d\x78\xdb\xf4\x0a\xc6\xb7\x7e\xcd\x55\x91\x7e\x81\xea\x79\x24\x2d\xf6\x3d\xbf\x10\xfa\x48\x94\x41\xa8\xbe\x23\xa6\x90\x2a\xf9\xef\xc9\xfb\xac\x27\x98\xc6\x6b\x53\x24\xf5\xef\xfd\x9a\x30\xee\xf4\x57\xa5\xf6\x78\x95\xea\x21\xf2\xd1\x45\x18\x56\x56\xb8\xff\xd0\x68\x3d\xc3\x65\xe6\x5b\xe4\x2d\xe0\xd8\x52\xeb\xaa\x25\x2d\xd1\x34\x06\x0e\xe6\x1f\x97\x1d\x98\x55\xd1\xaf\x97\x97\x98\xf6\xc3\x09\x81\x3a\xcd\x52\x47\x8f\x4d\x65\x5c\xc9\xa2\xad\x61\xaa\xfc\x5e\x46\x8d\x4a\x68\x9d\xdb\x9b\xdf\x2a\xa5\xd8\x1f\x3b\xf0\x59\x3b\x7b\x0f\x30\xeb\x9c\x7b\xf5\x08\x5f\xca\x8a\x10\xc0\x00\x89\xd1\x35\x4d\x6a\x32\x17\xf0\xc8\x53\x67\xb7\x46\x21\x80\x69\xa9\xd2\xbb\x6e\xa1\xf3\xea\xf5\xea\x9d\x35\x61\x0a\x9a\x9d\xbe\xfd\x26\x22\x1f\xaf\x1d\xf8\x0e\x48\x1b\x67\x35\x2d\x20\x12\xfb\xa9\x81\x32\xeb\x96\x2d\x89\x05\xb9\xef\xd6\x45\xcd\x2e\xe2\xbd\xea\xbd\xa0\x3c\xd7\xce\xaa\x29\x15\x3f\xf5\x14\xc7\x0f\x56\x06\x3a\x1c\x62\x3f\x5b\xa6\xc5\x58\xc5\x47\x0f\x71\x7e\xb5\xb1\x80\xd6\x7e\xa2\xb6\xa8\x5d\x7d\x08\xa7\xb9\x31\xde\x87\xc5\x59\xc4\x61\xc1\x87\x04\x0b\x10\xa1\x4d\xec\x01\x8b\xc4\xc9\xce\xb8\x66\x02\x4f\x3a\xc3\x66\x10\x45\x69\x58\xc4\xd2\xff\x20\x09\xc4\xc9\x41\xd4\xba\xa5\x03\x4e\x57\x51\xb3\xc9\x27\xec\x0c\x53\x58\xeb\x3c\xab\xd8\xf1\x51\xcf\x4d\x83\xa2\x0b\x29\xbe\x27\x72\x33\xfd\x69\xe3\xee\x50\x7b\xa8\xef\x6a\xb6\x1e\x64\xab\xfd\x87\x85\x24\x91\xaa\x22\x0d\x27\xcf\x3a\xec\xfe\xb4\xb3\xb9\xe2\x2c\x5b\xb1\xed\xd0\x6d\x55\xec\xb4\x15\x76\x27\x3e\x54\xdc\x90\x28\xb9\x29\x36\x03\x8d\x33\xb8\x1a\x2c\x06\x5d\x1c\x21\xce\x5d\x26\x51\x17\x77\x75\xf7\x1b\x8d\xc1\x81\xc9\x22\x50\x63\x5d\x9e\x2d\x49\x8f\x60\xb3\x94\x1d\x8d\x03\x6a\x8f\xd6\x72\xe2\xfc\x23\xfa\xca\x20\xdb\x2d\x60\xb6\xf9\x89\x84\x75\x36\x13\x3b\xdb\x6f\x74\xfc\x31\x3e\x90\x0c\x27\x23\xba\x95\xbf\xe8\xda\x91\x01\x5e\xfd\xac\x76\x5d\x73\x7d\x02\x46\x47\xb2\xd7\xaf\x1b\x9b\xed\x19\xab\x0e\xa1\x94\x7e\x5d\x6c\xb2\x86\x84\x2a\x8f\x56\x9a\xd7\x0b\x9a\xe2\x65\x51\x82\xa1\x9f\x83\x26\x48\xad\x21\x3d\xa9\xd5\x0c\xa4\x07\x21\xe2\x40\xcb\x74\x45\x7b\x84\x4d\xef\x75\x45\xd2\x98\x3c\x81\x5f\x13\xb6\xf7\x82\x54\x19\x43\xd2\x20\x40\x1e\xf5\x2e\x06\xe1\xf6\x90\x58\x22\x23\xaf\xb8\x6c\x29\xb7\x88\x2a\xcd\x67\x0f\xea\x53\x49\x04\x2f\xbb\xa8\x5d\xce\xa8\x17\x71\x27\x99\x39\xc5\x77\x92\xaa\x9e\xbd\x36\x52\x58\x88\x0f\x89\x1a\xb2\xcc\x1c\xbe\x55\xb1\xc7\x15\x3c\x53\x2c\xa9\x55\x4d\xc7\xa1\x73\xb8\x49\xe6\x93\x5c\xfb\x3f\xb0\xd2\x2a\xdb\xc9\x7c\x53\x10\x36\xab\xba\x51\x2d\x93\x36\xd0\x62\x45\xbc\xd1\xa4\xaf\x8a\x6b\x53\x5d\xfb\xef\xa9\xc2\x02\x02\x3d\x18\xe6\xfa\xa2\x25\x24\x65\x79\x8f\x04\x58\xd6\x78\xf7\xec\xf4\xe9\xd9\xb3\xf9\x3e\x4f\x00\x54\x44\x5a\xb0\xfa\x64\x0d\x71\x1b\xf9\x62\x91\xf2\x9a\x75\xa5\xb3\x79\x8a\x75\x25\x6b\x72\xb5\x76\xba\x4b\x62\xa4\xf4\x11\x43\xba\x80\x21\x4c\x1c\xc3\x66\xdf\x68\x42\x99\x7c\x56\x54\x4e\x34\xff\xfc\x88\x11\x70\x78\x18\xe4\x6d\x80\x13\x27\x67\xb7\x5b\x02\x07\x35\xd9\xbd\x98\x02\x7d\x85\x53\xa6\xc0\xca\xc0\x0c\xd0\xb5\x5b\x36\xfc\xd3\xb4\x5b\xd5\xc6\xbd\x7b\x09\x86\xb9\x11\x76\x8f\x13\x7b\x7f\xb9\xcd\xf2\x55\xa1\x38\x2f\xbe\x86\xd0\xbb\xde\x26\x0c\x0c\xfc\xab\xb7\x06\x4a\xe2\x08\x24\x55\xe1\xff\xd9\xb2\xec\x8c\xfe\x6c\xb2\xbc\xe8\x48\xe8\x55\x6c\xea\xa2\x08\x4d\x0d\x27\x0c\xe9\xce\x87\x5e\x40\xe6\x7c\xc3\x61\x41\x52\x1a\x74\x98\xd4\xa9\x32\xba\xed\x44\x70\xee\x98\x07\x06\xb4\x52\x7c\x4f\x5f\xd5\x3b\x16\x67\xf8\x06\x50\xcf\xd9\xf4\x24\x19\x1f\x5e\xe9\xfd\x02\x67\x1c\x79\xd3\xe4\x15\x9f\xa8\xc8\xea\x23\xd4\xf2\xca\x7c\x61\xf0\xd5\x46\xcb\x92\xef\x38\x90\x24\xb7\x4e\xcf\xbf\x31\x5e\x14\xe0\x3a\xa2\x91\x71\x1d\x72\xac\x93\x14\x5b\x40\x6c\xcc\x16\xa7\xc8\xcc\xb2\x0f\x57\x8b\xb2\xa8\x76\xb4\x91\xb8\x61\xad\xe0\x54\x42\xbb\xdb\x02\x99\x24\x1b\x27\x3f\x5e\xb2\xf9\x12\x36\x2a\x12\x7d\x22\x04\xac\xf0\x2b\xd7\xa2\x6d\xf2\xe6\x5b\x14\x06\xce\xdc\x14\x0e\x15\x1d\x71\x53\xfe\x16\x30\xd5\xd7\xa2\xeb\x6c\x8a\x25\xef\xc8\xa4\xa9\xc8\xd9\x40\x7a\x6f\x41\xed\x54\xbb\x7b\x91\xe6\xc2\x85\xa1\x9a\x7c\x02\x31\xee\x92\x0f\xc4\x1f\x9b\x7a\x89\xfd\x47\xc8\x4c\x75\xf7\x7e\x96\x48\x7d\xb0\xab\x3b\xa3\xba\xde\x65\xd9\x9a\xa5\xb3\xb8\x47\x39\x82\xd5\x88\x03\x32\x69\x2b\x8f\xfa\xd6\x39\x58\x45\x9c\xea\x97\x0e\x98\xda\x74\x45\x6e\xd2\x6f\x89\xed\x67\x4e\x5d\x73\x78\x68\xb7\x85\x8d\x0e\x80\x7a\xd4\xbc\x2b\xc5\x70\x1d\x39\x75\x32\x9b\x5b\x89\xd7\xb6\xbf\x32\xcb\x14\x5f\x0d\xee\x8b\x82\x29\xb5\xd0\xa4\x72\x96\x99\xc5\xcf\x9b\xe4\x97\xd2\xc0\xce\x0d\x8f\x11\x50\x98\x34\xcd\xd7\x96\xf9\xa8\x88\xab\x72\xb4\xc7\xfe\x6c\x71\x95\x2c\x63\x8e\xab\xbb\x7b\x47\x19\x97\xe3\x57\x6d\x63\x48\x9d\x6a\x9b\x8e\x64\x93\xc6\xe5\xf2\x35\xde\x36\xdb\x58\x05\xa3\xaa\xff\x0b\x34\x09\xeb\x00\x4c\xc8\xc1\x29\x10\xfc\x64\x3d\xe2\xd9\x73\xaa\x7f\x67\x93\x17\xb1\x4d\x5f\xe1\x0f\x56\x5a\x69\x6c\x4b\xf8\x62\xe7\xd9\x52\x6f\xa2\xe0\x8a\x31\xf5\x95\xb8\x5b\xfa\x44\xfe\x62\xa7\x28\x4d\x46\x98\x86\x4c\x1e\x69\x8f\xda\x08\x1b\xa8\x9b\xec\x32\x7d\x57\x6f\xf5\x8b\x66\x88\xef\x79\x7e\xcf\x92\xef\x5a\x53\xf9\xee\x04\x00\x4f\x2b\xbe\xf0\x9d\x84\x02\x44\xd8\xb8\x9f\x49\x4b\xe6\xad\xfb\xc5\xc6\x41\xe9\xc1\x7c\xd4\x23\x97\xa1\xb7\x4c\x9f\x76\xf4\xbf\x78\x7f\x8f\x40\xd6\x50\x5f\x9e\x17\x42\xca\x2e\x31\x63\x8e\xaa\x8c\x35\x24\x13\x67\xb6\xb0\xb4\x9e\x81\x10\x8a\x52\x88\x4e\xf3\x72\x76\xa2\xcb\xda\x6e\x1f\xd2\xc4\x63\xfa\xe6\xdf\x4b\x31\x60\x6b\x2a\x51\x9d\x11\x93\x70\xc3\x07\xd6\x8c\x7d\xa4\x3a\xe3\xa4\xbb\xdc\x1a\x72\xe6\xf1\xd4\xd8\x5e\x4e\x85\x4d\x9a\x52\xc5\x78\xab\x73\x17\xe5\xaf\x68\x6e\x9a\x45\xaf\x7c\xac\xa0\x45\x90\x7e\xc2\xe3\xf9\x1e\xb6\x15\x80\xb8\xbd\x63\x90\xd2\xea\x64\x8d\x47\x5a\xaf\x0f\x24\xd8\x87\x02\x6f\x40\x46\x26\xe9\x53\x5e\xaf\x81\xda\xc2\xa1\xd3\x17\x78\xc1\xe7\xdc\x35\xec\x9f\xb7\x14\xcb\x2c\x5f\x6c\x37\xa4\xe5\x87\xd3\x99\x89\x9e\x4f\xc1\x1d\xeb\x39\x2c\x03\x0e\x9c\x91\x32\x59\xb7\xb0\x1c\x59\x6b\xb1\xa4\x12\x2a\xd2\x79\x14\x22\x18\x4d\xa4\xe4\x2e\x0e\x65\xb6\x32\xea\x8a\xcf\x30\x2c\x30\xf0\x05\xea\x5e\x43\x5a\x19\x83\x4c\x34\xc7\xd8\x6e\xb3\x65\x7a\x3f\xc7\x85\x92\x28\x87\x11\xeb\xb2\x36\x01\xa9\x1e\x80\x16\x24\xfc\xba\xa3\xfa\x27\xb3\x48\xbe\xc1\x36\x09\x83\x7a\xa0\x4c\xaa\x90\x8f\x3e\xda\x61\x91\xdb\x69\x6f\x08\x34\xac\x9b\x2f\xa1\x49\xc5\xc4\x4b\x6f\xa9\xc1\xcf\xd3\x63\x43\x7c\x07\xfc\xb9\x8d\xa6\x28\x00\xe1\x7e\x73\xdc\xca\xeb\x3a\x91\x5f\x24\xf8\x9f\x6a\x1d\xc3\x62\x2c\x63\xbd\x87\x64\x35\x4e\x9f\xe3\xd6\x87\x72\x5b\xbe\xae\xeb\x4c\x7f\xd3\xc0\x56\xa3\x2f\x90\x3c\x70\x55\x77\xb4\x8f\xe1\x74\x89\x46\x88\xfd\x6c\x34\x26\x2e\x22\x93\x9e\x2f\x96\x57\x5c\x42\xf7\xb1\xd6\xd9\x30\x26\xcb\xc0\xfa\x40\xd2\x20\xee\x8b\x49\x19\x60\x10\xa2\x0a\xce\x28\x86\x25\x2c\xbc\x57\xcf\xf9\xc8\x64\x9c\x31\x47\x54\x0a\x4b\x5a\x27\xff\x99\x84\x00\xc5\x12\xc4\x1b\xfe\x33\x09\xd1\x18\x52\x18\x5a\x39\x35\x22\x21\x11\x1f\x89\x7c\xe5\xd3\x6d\xd2\x9e\xe3\xc0\x5f\xe1\xf7\xad\xd0\xfb\xda\xb6\x2b\xbe\x61\xd3\xa6\x67\xf4\x3b\xd1\x0f\x7b\xbc\x6e\x07\x2e\x95\x8f\xe0\xb1\x84\x18\xe3\xa9\xec\x7a\x95\x69\x93\xfb\x7f\xf9\xe2\x27\xcb\x48\xf7\x46\xe0\x07\xf7\xff\xf2\xa7\x9f\x48\x9c\xe2\x3f\x10\xa7\xc6\x15\x2c\xd6\xd9\xce\xa4\xf2\xa9\x55\x2c\xaf\x12\x2e\xe0\x81\x0f\x8d\xb9\x28\xea\xce\x22\xf6\xc7\xd6\x34\xf0\x92\xd3\xa8\x20\x9e\x45\x7c\x20\x3a\x55\xaf\xff\x41\x9e\xac\x76\xbd\x0e\x3c\x5c\xeb\xb9\xe6\x3c\xe1\x8f\x50\x5f\xb7\x5f\xb8\x31\x83\x15\x8c\xc6\xaf\x09\x50\x42\xda\xf4\x67\xff\x95\x64\x2d\x06\x5f\xe4\x24\x45\x62\x28\x4e\xa4\xfc\x27\xf9\x0a\x78\xf8\x39\x34\x55\x7b\xab\xf0\xfb\x2d\xac\x4b\x85\x4d\xaa\x3a\xd1\xb4\xe4\x4a\x5c\x08\x63\xf6\x24\x51\x20\xb8\xc7\x83\x1c\xed\x47\x0c\x81\x93\x2b\xd7\x7d\x0f\xdd\x18\x46\x8a\x80\xbd\xe3\x8f\x61\x5e\xbf\x2a\x81\x99\xac\x4b\x39\xae\xa3\x97\x27\xc3\x6c\xc1\x32\x63\x89\x7f\xfe\x0d\x28\x92\x2e\x69\x2d\xee\xe3\x6f\xa8\xe7\x50\x73\x18\x1a\x3e\x90\x0a\x5c\x81\xef\xb4\x89\xcf\x74\xa0\x19\xb6\xd4\xbc\xc1\xff\x3e\xcd\xdd\x86\x21\x91\x9d\xf4\x20\x48\xa4\x94\x40\xcb\x0e\xea\x4e\x82\x84\x3e\x64\x51\x2d\x9c\xdf\x35\x8b\xf3\x6d\x9d\xc0\xa5\x27\x81\x84\x8e\xd9\x85\xab\xbf\x3a\xfc\x9d\x96\xb0\x01\x5c\x25\xdb\xec\x82\x8f\xd8\xd4\x0e\xf5\x75\xff\x30\x85\x9b\x43\x05\xb5\x9b\x83\xde\x82\x32\x79\xd1\xa6\xcf\xf2\x22\xa0\x1e\xf7\x00\xd3\x73\xfa\xcf\xa7\xc8\xde\x24\x14\x2f\x5b\x92\x58\x9b\x7a\xd9\xab\xba\xac\x75\x7b\x4d\x9e\x67\xcd\x72\x9c\x0f\x1b\x1b\x2d\x8a\x81\x3c\x26\xb9\x81\xb0\xac\xdf\x5e\x27\x38\xbe\x00\x73\x9f\x69\x37\xa2\x46\x8a\x36\xa2\x41\xc9\x55\x07\x9b\x60\xcd\xeb\xe5\xaa\xf7\xbf\xf4\x53\x1c\xab\x58\x24\x1d\x57\x01\x0f\x13\x01\x93\xaa\x8e\x83\xa9\xe5\x8f\xd4\x56\xd7\x28\xdb\x6c\x54\x20\xf1\xa2\x23\xab\x8f\x6c\x83\x62\x33\x75\x74\xae\x50\x25\xa2\x4e\xcc\x93\xb3\x23\xce\x21\xc7\x5a\x76\x56\x5d\xe9\xe8\xf8\xb4\x27\xd8\x72\xc5\xb3\xa8\x2c\x99\x09\x1d\x32\xa2\x2f\x39\x8c\xb7\xa9\xc7\x82\x74\x6a\x53\x8a\x27\xf1\x11\x70\x19\xec\xf7\x1e\x8e\x43\x40\x25\x5e\x99\x82\x0d\xd1\x44\x1a\x21\x4e\x72\xa3\xa0\x37\x21\xfc\x42\xd4\xea\xdc\x35\x45\x4c\xad\x31\xb6\x2b\x89\x7b\x8a\x1a\xfb\x0c\xb6\xa0\xaa\xd0\x83\x6f\xf5\xa3\x90\xe3\x0d\xaf\x69\x79\x2d\x60\x20\xc5\x44\x10\x13\x92\x5b\x94\x7b\x5c\x7a\x1b\x02\xe5\xb1\xc4\xcc\xbe\xad\x71\x37\x48\x01\xef\x68\xd5\x62\x6f\x65\x09\xeb\xf9\xcd\xaf\x65\x59\x6c\x60\x7a\xb4\xb9\x28\x39\x83\x3e\x89\xc4\x3e\x6e\x27\x6e\x66\x38\x54\x9a\xf2\xe5\x96\xd6\x3d\x31\x1a\xaf\x79\xc7\x9a\x02\x0e\x58\xd4\xe7\x4c\x6e\xbb\x43\x55\x56\xf2\xea\xb7\x24\xc2\x75\x4f\xcb\x08\x32\x6f\x04\x28\x0b\xff\x3d\x2d\xb5\x9e\x86\x3b\x9f\x30\x89\xc6\xb9\x0e\x17\x23\x34\x24\x9f\xb9\x70\x1b\x9f\x0f\x86\x4e\x4b\x9a\x2a\x6c\xd4\xcf\xb3\x97\xe9\x6f\x5e\x6b\xb5\xe0\xa7\x7b\x62\xec\x12\xdf\x82\x8f\x71\x47\x0d\x0d\xae\x4f\xcf\x93\x67\x56\xaf\x7b\xd0\x52\xd5\x82\x9f\xfe\x99\x16\xd8\x6c\xbf\x9f\xe5\xf9\xa7\x7a\xef\x63\x02\x4b\x7e\x9d\xc5\xd8\x3a\x72\xc0\xea\x8f\x7f\x7a\xf5\x30\xcf\x8a\x4b\x2f\x23\xfe\x35\x80\x8b\xa6\x58\x5d\xc9\xc4\x06\xbc\x84\x5d\xaf\xe9\x1b\x77\xc2\x82\x8a\xf5\x37\x7f\x8b\xec\xcc\xe8\xdd\x66\x67\x0d\xe5\x33\xb6\xa2\x69\x46\xe3\x1c\x79\x8a\x45\x99\xca\x34\xe3\xee\x7b\x57\xa2\x71\xdf\x05\x53\x31\x57\xc1\xec\x44\x85\x6d\x84\xba\x6a\xc0\xae\x7c\x90\x9d\x4f\x06\xb4\xa6\x1c\x39\xee\x43\x38\x89\x99\x80\x14\x3e\xe5\x19\xb2\x9e\xc4\xf4\x7a\xc1\x76\x5a\x3e\xb7\x85\xa6\x00\x53\x23\x6b\xac\xdf\x54\x42\x5b\xe2\xb0\x53\x38\x7e\x2d\x6b\x28\xe8\xb3\xf3\xe4\xbc\x26\xc6\x06\x26\xbd\x31\xc2\xa6\xf5\x88\xe9\xeb\xe9\x0e\x4d\xd1\xd0\x71\x5e\x7d\x2c\x48\x99\x4b\x9f\xcb\x22\xb2\x1a\xac\xa6\x97\x15\x5d\x0a\x27\x94\x91\x6a\x9d\x61\xe3\x17\x7a\x8b\xc0\xb6\x75\xbd\xb3\x70\xac\xe4\x1f\x51\xc6\xa6\x68\x25\x0f\x11\x92\x5e\x0e\x32\xe1\xea\xb9\x0a\xc1\xd0\x5e\x34\xb0\xf7\x1f\xe9\x63\x8e\x2d\xa3\x59\x5c\x8b\xb1\x41\x90\x84\x8f\x08\x84\x9d\x3b\xdf\x84\xf8\x0c\xc1\xcf\xd3\x83\xa8\x57\x9c\x6f\xf2\x34\x1c\x36\xc2\xd1\xe8\x58\xe3\xea\x6c\x06\xdb\x22\x9f\x96\xf1\x79\x43\xcf\x96\x88\x53\x9f\xc8\x99\xf3\x58\x49\x21\xa5\xe1\xc9\xc5\x3f\xc6\xb1\x73\x64\x7e\x8d\xfd\x3b\x7d\x07\x49\x0b\xaf\xec\xda\x9f\x0a\xc6\x5e\xf6\x13\x50\xd2\xff\xc8\xbc\x3a\x6e\x45\x5c\x89\xc4\x5d\x2d\x38\xd8\x87\x4b\xb8\xfd\x9b\x06\xee\x2a\x08\x8d\x53\x82\x39\xbc\xe3\xd0\x25\x12\x54\x21\xea\x00\x87\xf9\xe3\xeb\x3c\xb8\xcb\x60\xe5\x20\x48\xa3\x0a\x36\xc9\x33\xac\xb6\xf6\xe6\x77\xc4\x84\x42\x18\x27\x77\x02\x34\x38\x16\x70\x2e\x34\x4e\x2e\x11\x27\x9a\xb8\x19\x95\xf8\xa2\x32\x81\x33\x0c\x80\x04\x15\x72\x19\x79\x84\x84\x70\x5f\xa0\xc0\x2d\x63\x67\xf1\xd7\xe0\x2f\x3f\x98\x8d\xbb\xae\x3a\x87\xae\xc8\x7e\x0e\x72\xa9\xe4\x93\x29\xa4\x23\xb8\x11\xad\xf7\xf4\xe1\xe1\xd1\x2c\x9c\xe9\xe7\x91\x83\x02\xb1\xe2\x52\x6f\xb6\xac\x89\xc7\x88\x91\xdc\x39\xd2\xf9\x8b\x3e\xf8\x77\x6d\xca\xde\xa5\x22\xdc\x74\x79\xf8\xe0\xf0\x68\x58\x37\x77\x54\xce\xf4\x09\x9d\x72\xab\xf0\xd6\xca\x07\x77\x3d\x78\xdc\x1c\x54\xac\xc3\x5e\x51\x6c\x85\x1a\xf4\x6e\x95\x9e\xc7\x68\xdb\xc7\x17\xa8\xe7\x74\xd1\x92\x71\x5c\x6a\xe0\x67\x3d\x46\x9b\xe8\x50\x42\x21\xe1\xcc\xdb\xc3\xed\x49\xed\x5f\x78\xf2\xff\x03\xba\x17\x5f\x8d\xde\x51\xa1\x10\x1d\xed\x8e\xe3\x8d\x3b\xaa\x6c\xde\x63\xa6\xb1\xb7\x40\xa4\x57\x78\x08\xf8\x47\x05\x96\x4b\x5a\xd0\x59\xd1\xea\xe6\xde\x0c\xdc\xd0\x8e\x15\x09\x9b\xc3\xb0\xa8\x3a\x5c\x45\x65\x1b\xb3\xaf\x39\x54\xcb\x1f\x14\x77\x6a\x47\x3c\x51\xb8\xb0\x56\xf0\xb5\xa2\x85\x44\x83\x48\x7b\x77\xcd\xe4\x54\x2f\xba\x0d\xb9\x77\xd7\x8d\xbc\xc7\x85\x08\x12\x19\x11\xd4\xb1\xae\x46\xf7\x98\xe2\xe1\x5e\xca\x3e\xe3\xf6\x9b\x23\x88\xe1\x7d\xc7\xad\x52\xd9\x98\xd4\xd7\x07\xa2\x02\x6e\xea\x36\x27\x89\xf9\xd0\xb2\xcf\x95\xc6\xfa\x62\x52\xe5\x4d\x5b\x57\xd3\x25\xd6\xb7\x69\x2f\x33\xcb\x37\xad\x71\x6b\x0c\xe7\xfb\x95\x73\x99\x8c\xd6\x3c\x5c\x91\x25\x5a\x87\x46\xca\x63\xf7\xa3\x1c\x23\x55\xed\xe5\xcd\xf9\xfb\x99\xd3\x5e\x32\x11\x06\x38\x3a\x95\xdc\xf4\xab\x24\x24\x1e\x69\x2a\xcc\xed\xc5\x45\xa7\x80\x87\x0a\x44\xb5\xfd\xed\xc7\x85\x7e\x84\x2f\x70\x34\xa7\x2e\x8d\xa3\x5d\x58\x83\x69\xba\xad\x38\x8e\x2b\x46\x89\xee\x7a\x9b\x70\xcf\x8d\x11\xe1\xb3\xef\x3e\x1d\x62\x92\xc9\x9d\xfd\x10\x3b\x89\x92\xa4\x52\x77\xb9\x8f\x5d\xde\x3a\xf6\x91\x0b\x12\x2a\x8b\x93\xec\x74\x44\xfc\xe2\x60\x1a\x27\x1b\x81\x33\x75\x4b\x3e\x07\x9a\xe8\x38\xeb\xe9\x11\xc3\x05\x71\xa1\x31\x47\x42\x70\x02\x14\x8e\xa3\x1e\x3f\x4d\xe2\x7c\x0e\x0a\x71\xce\x14\xb7\x7a\x1a\xcc\xab\x0c\x2a\x60\xee\x43\x7f\xf1\x05\x74\xbd\x62\xa0\x95\x12\x0d\xc4\xd1\xd1\xa6\xfa\xc3\x52\x00\x80\xd5\x5b\x66\x04\xe0\x2c\x6a\x0c\xe3\x9c\x2d\x87\x5c\x4e\x81\x63\x29\xc4\x70\x17\xc6\x4b\x94\x2b\x75\x4b\xd3\xd1\xfd\xc4\xb2\x8c\x96\x47\x14\x39\x55\x69\x51\xc8\xf0\x21\x42\x30\x3c\x02\x31\x3e\x7c\xc0\x3f\x63\x9a\xc4\x0c\xcb\x9c\xd1\xec\x6d\xf9\x0a\x29\x51\x25\xef\x9c\x4f\x4d\x0b\x77\x77\x75\x25\x26\x7e\x51\xb9\x3b\x1d\xcf\x88\x5e\x36\xac\x5b\xc7\xc4\xc2\x2e\x5e\x20\xef\xa5\x2c\xa4\x92\xb5\x7a\x0e\x72\xb5\x56\x55\xab\x0b\x91\x3a\xd4\x77\xe9\xb3\x3f\x9f\xbf\x79\x7d\xa2\x7d\xfc\x30\xbb\xbc\xbc\x9c\x01\x78\xd6\x35\x24\xe8\x22\x31\xd7\x4e\x9f\x20\x00\xe1\x23\xd3\xae\x1e\x3e\xa0\xbf\x9f\xcf\x49\x1e\xa7\xe5\xd2\x17\xb8\xd7\x72\xbb\x1e\xed\x14\x7f\xd7\xfa\x39\x48\x6c\x04\x0e\x25\xd9\x8b\x93\x10\xb3\x76\xcc\xb7\x1c\x43\xc8\x7c\x8b\x9f\x47\x90\x4e\x0d\x29\x80\x6d\x7a\xce\x7f\xa2\x74\x73\x61\x2a\x4f\xdb\xc0\x51\x84\xce\xc4\x8a\x1f\x22\x0b\x18\x90\x1b\x64\xde\xb3\xce\x8a\x47\xf3\xd7\xa3\x7a\xf8\x24\xbc\xae\xca\xab\xf4\x75\x27\xa1\x3f\x05\x95\x48\x77\xd3\xed\xea\xef\xb1\x55\x8e\x1e\x23\x37\x6f\x46\xc9\xce\xb9\xc1\x15\xcc\x95\x12\x94\x7d\xc4\x41\x08\x95\x63\x6a\xac\xce\xa8\xc3\x22\x11\xb5\xbc\x40\x87\xfc\x7c\x92\xb8\x8f\x6c\x59\xba\x74\x86\x5b\xc0\xe0\xa2\xce\x10\x7c\xb2\x85\x23\xf2\x83\x8a\x77\xc3\x16\x26\x04\x41\x39\x33\xc1\x76\x5e\xe0\x76\x31\x49\x68\x7a\xbb\x1a\x47\x90\x13\x6a\x04\xf7\x82\x29\x84\xf9\xcc\xfb\x1e\x7d\x00\x11\xb6\xcc\x56\xbb\x45\x58\xbc\xcf\xb1\xa7\x0d\x8c\xb0\x00\x01\x7d\xb2\xb3\xd4\x26\xc4\x50\x1b\x6f\x48\x8c\xc1\x18\xd7\x52\x7d\xe4\x9b\x3a\xca\x1b\xc4\x75\x1d\xe4\x42\x99\x41\x9c\xec\x6f\xb3\x2a\x2b\x7b\x18\x3b\x94\xf5\x95\xdc\x61\x78\xca\xbf\x67\xdf\x9a\x2b\x3b\x18\x5c\x80\x72\x40\x47\x5d\xec\xbd\xd4\x5f\x2f\x7a\x75\x6b\xc0\xa0\x10\x48\x31\x39\x52\x53\xb8\x65\x11\x44\xb9\xd8\xf6\x34\xd1\xf5\x91\x6b\xbc\x87\xe9\x7b\xfb\x8f\x5b\x9c\x70\xed\x8f\x8b\x06\xff\xfe\x71\x51\xd6\x48\x24\xa2\xe7\x71\x87\xfe\x1e\x16\x63\x67\x7d\x0e\xd4\x3c\xaa\xf3\xe3\xbc\xf5\xa7\x30\xe0\x4d\x23\xe3\x4a\x27\xd5\xa0\x51\x41\xa1\xda\xd7\x19\xfb\xf6\x36\xc1\xda\xed\x34\xa4\x51\xbd\x9e\x87\x44\x66\x13\xa7\xd4\x68\x3c\xa6\x7e\xf4\xe2\xc8\x7b\xd9\x5d\x76\x93\xe8\x31\xb7\xd8\xbb\x6f\xed\x71\xc0\xe5\xf4\xb4\x1e\x37\xab\xe4\xd4\xc7\xf9\xb2\xa9\x2f\x2d\xae\x09\x74\xcd\xca\xa4\xff\x8c\x9b\x6b\x1c\xe1\x28\xf7\x3e\x2f\x95\x42\xc2\xf2\x4d\xd4\xf5\x5d\x63\x0f\x72\x4e\xc0\xa9\xe2\x95\xa2\xae\x33\x9a\x46\x1c\x2b\x1b\x84\xac\x14\x1b\xf6\x53\xca\x95\x80\xda\x7d\x1b\x36\x97\xb2\xdb\xfa\x72\x81\x5f\x7c\x03\x02\xce\xfe\x04\x4c\x52\x50\x0b\x82\xda\x79\x5f\x6f\x07\x0d\x18\x99\x2e\xe7\xa7\x9b\xb0\xcd\x5a\x6d\x10\x5e\xce\x0b\x9e\xd0\xa0\x55\x07\x4b\xa0\x72\xff\xe2\x47\xb6\x40\x05\xa0\xd8\xf1\x97\xeb\x53\x8c\x8d\x41\x1d\x02\x89\xdd\x3c\xfe\xe6\xb5\x7e\xb1\x13\x92\x04\xcd\xe7\xdb\x93\xa1\xd7\xde\xcf\x69\xee\xfd\x9d\xde\xe9\x8f\x90\x25\x1e\x65\xfc\xdb\xbf\x37\xc0\x5f\x01\x24\x6f\xb2\x75\x9b\x22\xfc\x71\xd7\xac\x43\xf2\xa1\x31\xae\xe0\xdb\xc6\xcc\x46\xc5\x08\x5f\x98\x87\x67\x55\x7e\xe1\xde\x86\x70\x59\x6c\x8f\x8d\x6d\xb0\x2e\x23\x83\xe5\x35\x0d\xd8\x08\x58\x52\x37\x28\xb0\xed\xfb\x1c\x53\xdb\x73\x81\x71\xc3\x4c\x59\x12\x5d\x8b\xc9\x0b\x9e\xcf\x21\xbb\xcd\x36\x7a\x0d\x21\xdb\x78\xcf\x6d\x97\xc5\xc2\x0e\xc2\x0c\xf4\xe1\x47\x3e\xc1\xea\x6b\x47\x55\xa8\x99\x26\xf6\xc3\x43\x2a\xfb\x30\xf6\xdd\xcb\x34\x7c\x4e\x6f\x4a\xf4\x60\x4f\xc7\x30\x53\x5e\xeb\x80\x9c\x88\x74\x49\x52\xef\x62\xef\xaf\x4d\x31\x59\xc5\x3b\x1c\x9c\xe4\x72\xd2\xdd\xe5\x70\xd1\x95\xbe\x6c\x60\xdd\x3b\x17\x6b\x75\x8c\x65\x3e\x9a\x37\x97\x38\x99\x47\x38\x8a\x6e\xdc\x60\xec\xb4\xe3\x2a\x20\x76\x88\x81\x42\xb1\x0b\x05\x20\xd7\x21\xf4\xc0\x2b\x5c\xe0\xfd\x7f\xff\xeb\xff\x4e\x91\xc7\xd4\xed\x9e\x88\x62\x66\xdf\x0f\xc9\x23\x2a\xea\x10\x5f\x34\xce\xc2\x87\xc8\xa0\x0d\xd8\x1c\x71\xe7\x4b\x53\x58\xe3\x62\x91\x78\x93\x12\x97\x54\xb6\xe7\xa3\xf5\x1e\x34\x5c\xf4\x85\x46\x6d\x40\xbc\xff\x8d\xc9\x33\x35\x38\x45\x33\xc3\x11\x00\xec\xd6\xcd\x09\xfb\xa3\xc7\x93\x18\x11\x1a\x82\xb6\xf6\x56\x47\x08\xcb\xda\x27\x76\xbf\xc4\x5c\xa5\x53\xc4\xef\x08\x73\x91\xc9\xd9\xb2\x06\xbd\x78\xc6\x16\x39\x29\x16\x6d\x7e\x20\xb2\xa9\xad\xef\xee\x9d\xbf\xd4\xcd\xe6\xa7\x28\xd8\x92\xce\xa3\x5a\x60\x9b\xc1\x93\x1f\x01\x2c\xba\xb4\x20\x3b\x2b\x94\xdc\xc1\x33\x20\xfe\xf2\x82\x9c\x35\x86\xfb\x0b\x73\xa9\x49\xae\x7a\x06\xe7\xec\xe1\x15\xcf\x61\xfb\x21\x34\xb3\x46\xc6\x9d\xba\xc8\x3b\x15\xb0\x10\x43\xd5\xe3\xa1\xe1\x6b\x25\xfd\x10\xa7\x87\x7a\xa1\x6e\x36\xb1\xd2\x88\x8b\xd4\xa6\x3e\x20\x5c\x01\x41\x8b\x05\xbf\xa8\x2e\xf0\x28\x83\xad\xf7\x06\x26\xf3\x10\x44\xa8\xa8\xf4\x9e\x3c\xa2\x41\x59\x8e\x04\x05\xe7\x53\x04\xe6\x50\x43\x0e\xdb\x7e\xd8\x56\x03\x7b\x99\xe4\x1c\x8f\xfb\x11\x39\xf3\xa2\x46\x77\xbb\x8b\x7e\xc6\x5d\x07\x3a\x27\x4e\xf9\xc6\x11\xa9\x34\xed\x36\x58\x37\x23\xdf\xab\xc4\xe5\xd4\x23\x9e\x67\x3d\xaf\x82\xea\xe9\xde\x0c\xd0\xde\x10\xb3\x5d\x9a\xeb\xc2\x6c\x43\x00\x2e\xb4\xe2\x57\x65\x26\x4f\x00\x18\xdb\x23\x4c\x94\x44\x4d\x30\xcf\x7e\xad\xc5\xe0\x0f\x4b\xea\x99\x17\x78\x54\x6f\x7b\x1c\x3d\xbd\x60\x6d\xdb\xad\x45\x7f\x63\x11\x86\xeb\xe1\x43\xc1\xaf\x8f\x5c\x67\x18\x87\x0e\xfb\xdb\x2f\x34\xf4\xea\x92\x9b\x3a\x1f\x75\xa9\xe1\xef\x39\x29\xfa\x83\xe0\x1b\x1e\x6e\x1c\x85\xc3\x67\x4d\x84\xe3\xf8\x4f\x3a\xb9\x21\xf2\xe3\xae\x8d\x91\x7c\xcb\xa1\x8d\x16\x92\x39\x1e\x97\xfc\xc7\x9d\xda\x0c\xa3\x26\x4d\x1c\xdb\xf4\xd1\xe1\xa5\xd8\x5e\x2f\x7b\x38\xb9\x5d\xdb\xed\xb3\x9c\xe3\x67\x1e\xee\x82\xdb\x44\x70\xa7\xe3\x85\xc2\xcd\xbc\x7e\x09\xb1\xd5\xf9\xab\x6c\x5e\x56\x94\x70\x50\x7f\xc7\xad\xbc\x23\x06\xf7\x89\xeb\x79\xc3\xae\x82\x4d\xa9\xa7\xde\xc7\x8d\xcd\xf3\xb5\x09\x8c\x1c\x1b\xdf\x71\x4a\x99\xb6\x5e\x8b\x15\xc0\x5b\xa8\x58\x91\x13\x6a\x61\x81\xc0\xa1\x08\x9b\x4e\xc0\x50\xfc\x1a\x8d\x5a\x63\x7a\x9d\x8b\x4d\x32\x21\x56\x95\x6e\x00\x22\x36\xac\xe2\x80\x41\xc3\x3c\xc7\x36\xe5\x0a\x5e\x82\x19\xe0\xe3\x73\x07\x24\x37\xf3\x34\x7b\x94\xee\x4a\x47\x0d\x8c\xaa\x18\x5e\x56\x74\xe9\x7a\xda\xe0\xf6\xa8\x90\x41\xb3\xbd\x32\x72\x59\x7b\x09\x4e\x19\xd5\x25\x56\xd4\xf4\x59\xf0\x20\x77\x39\x24\x8a\x50\x06\x5f\x85\x50\x1f\x19\xcd\xd0\x0d\x74\x14\x86\xa7\x92\x70\x7e\x4b\xdd\x6a\x8a\x6d\xc5\x47\x18\x22\x42\xfb\x98\x6a\x05\x3f\x05\xc0\x56\x6d\xde\x6e\xbf\x1a\x55\x8c\x98\xd6\x12\xbe\x3a\x6c\xc9\xba\x29\xcf\xe1\xa7\x47\x8d\x16\xb4\xf0\x5b\xbf\x55\x8f\xbb\x2a\xc9\x10\xaf\xf4\x72\x76\xfa\x8a\x26\xfa\x5a\xd4\xe7\x89\xec\xc1\x3d\x33\xde\x93\x98\x48\x63\x62\x91\xe0\x4e\xee\x66\x2c\xdf\xd8\x71\xf7\xac\xe6\xae\x4e\x16\xc6\x5d\x9b\x2a\x52\x0f\x9a\x8d\x41\x8e\xb6\x2b\xd1\xb0\x8f\xb4\x8d\x40\xeb\x05\x07\x0f\xe1\xdb\xce\x9d\xdd\x4e\xf4\x44\xde\x03\xd0\x9e\xf0\x09\xf2\xa0\x1f\x31\xc0\xd1\x7e\xc0\x67\x4c\x1e\x7f\x41\x33\xee\x0c\xda\xfb\xc3\xc4\x5d\x0c\xaf\x25\xf5\x0e\xc8\x74\x0a\x47\xfd\x73\x77\xa9\xe2\x26\x21\x65\xec\x26\xee\x56\x49\x89\x63\x7b\xb0\xe4\xf2\xa2\xb0\x23\x09\xc4\x1f\xc4\x4a\xf7\x26\xae\xaf\xc7\x5c\x22\x1e\xd0\xb4\xea\x2e\x01\x7c\x05\x0f\x01\xc2\x21\x64\xc0\xe8\xfc\x60\x9d\xf8\x88\x51\xee\x23\x11\x52\x72\x87\x3b\xf8\xb3\x63\xdb\x53\x18\xad\xbb\x76\x0e\xb9\x32\xc6\x60\xe0\xc7\x6e\x92\x73\x09\x6e\xaa\xbc\x21\xee\x40\xdf\xb4\x38\xaa\x57\xd9\xfd\x64\xb5\x31\xd8\x68\x16\x99\x70\x3e\x82\xa7\x27\x41\x98\x8e\xc5\x51\x1b\xce\xec\xbd\x25\x0b\xf2\x6c\x81\x78\x6b\x7c\x58\xae\x87\xef\x08\xe8\xa9\xd1\x0a\x7b\x31\x21\xa7\x3a\xe9\xc4\x00\xee\xa0\xef\x5b\x8f\x13\x0c\x29\x67\x48\x98\x8e\x02\x22\x4e\xe2\x09\xe0\xab\x78\x2c\xee\xee\x25\x4a\xce\x7a\x7e\x30\x13\x1c\x64\xc0\x39\x6e\xeb\x84\x0b\xc7\xe0\x3a\xd2\x67\x2f\x7f\x4d\x5f\x86\x0c\xa5\xc7\x49\x06\x1c\x64\xb2\x47\xd3\x1d\x8a\xb9\xcc\x74\x77\x7a\xd3\xec\xfa\x06\x1e\x83\x3d\x43\x19\x99\xbc\xb7\xa6\x0a\xc6\x91\x53\xfe\x79\x98\xb9\x48\xfb\x1a\x0e\x72\xb4\x08\xa2\xa7\x1c\x07\xb0\x53\x6b\x41\x0f\x18\xd9\x9b\x26\xda\x1f\x43\x9d\x15\x4d\x20\x54\x73\x98\x52\xe4\x62\x67\xcf\x24\x2b\xb7\x6c\x11\xcb\x3f\xd4\xad\xa7\x79\x27\xa3\x90\xb5\x1a\xc7\x22\x18\x98\xac\x46\xd8\x14\x5d\x9f\xe7\xe2\xa7\xf8\x01\x5a\xff\x98\x89\x84\xc8\xb5\xd1\x93\x8a\xf1\x23\xa4\xe3\xe0\x88\xb7\x04\xaa\xd4\xb0\x9d\xaa\x6b\x8c\xa2\x78\x6a\x54\x87\x4d\xda\x7b\xa6\x06\xd7\x62\xc5\x0b\xe7\xfc\x8a\x3a\xbf\x9f\x85\x5b\x88\x2c\x35\xd4\x55\xc1\xfe\x1a\xf2\xb7\x40\x35\xb0\x4c\xa5\xea\xe7\x83\x0b\xe3\x1f\xda\xf4\xa2\xe6\x4b\x87\x7e\x7c\x6c\x87\x05\x8a\x56\xa9\x37\xd5\xc6\xd9\xb5\x3b\x22\x87\xca\xe5\x4f\xcb\x7b\x15\x70\x6f\xd8\xe6\xdb\x85\xbe\x49\x2f\xd8\xfc\x8b\x6b\xfe\x13\xed\x2d\xe0\xe6\x90\xbe\xa8\x5f\x9c\x87\x57\x1d\x85\x01\x2c\xd9\x54\xb9\x7c\xe4\x7d\x84\x4e\xa2\xb4\x3e\x9a\xe3\x9c\xd8\xac\xd4\x0b\x12\x15\x40\xa2\x69\x38\xe9\xb5\xe3\xaf\x35\xf7\xab\x8c\xaf\xcb\xc6\xe9\xa7\xbb\x71\xf3\xee\xd0\x20\x4e\x13\x3f\xcb\x38\xe5\x5b\xb9\xb7\x90\x35\x3d\xb8\x7e\x44\x9f\x38\xe7\xb9\xbe\x04\x11\xa7\xe9\xf5\xfa\xfe\xc0\xc4\x12\x1d\xa7\xbd\xaa\x37\x45\x35\x63\x93\x6d\xbf\x4e\x27\xc8\xf7\x46\xea\x9d\x3c\x7b\x55\xb0\xd3\x7f\x9c\xc2\xee\x04\xef\x33\xdb\x2f\xcd\x8c\x66\x80\xa0\x58\x39\x1e\x97\x38\xad\xb6\x50\x9e\xf0\x44\xd8\x04\xb1\x2d\x62\x27\xc7\x26\xf8\x69\x4c\x03\xcb\x43\x44\xe9\x39\xff\x99\x06\xa1\x5e\x44\xcf\x5b\xc6\x30\xf0\xd4\xae\x16\x1a\xa7\xa8\xe6\x78\x0a\x98\xee\x25\x47\x7e\x20\x31\x03\xab\xd3\x8a\x01\x44\x3d\xb9\x6f\x2b\xeb\x37\x40\xbe\xe5\x17\x55\x54\x49\x4d\x1a\x95\xc8\xf9\x0b\x07\x8d\x33\xae\x56\x37\xd4\xa2\xe2\xc3\xef\x2c\xe8\x8d\x36\xa5\x34\xb6\xba\xba\xd8\x4f\x51\x00\x97\x8f\x28\xde\xef\x9d\xab\xab\x72\x95\x4d\x3a\x31\xdf\xd2\x41\xb6\x06\xe2\x82\x35\x55\xa2\x75\x46\xde\x69\xa7\x92\x71\x5b\x17\x7b\x15\xf4\x3b\x17\xf6\xf3\x50\xd3\xad\x48\xc3\xf3\x6c\x9b\x95\xbe\x1a\xf5\x9c\xe7\x39\x79\x41\x7b\x1a\x7c\x44\x9f\x40\x1a\x5d\xa9\xd6\xb9\xee\xfb\xcc\x66\x7d\xf6\x14\x57\xe3\x7b\x34\x51\x8f\x06\x03\xa4\xda\xc4\xa3\xba\x2f\x7f\x44\x18\x64\x35\x97\xe9\xae\xdf\xdf\xc6\xd8\xab\x6a\xb5\xe0\xe7\xc0\xec\x96\x4f\x97\xe5\xad\x73\x77\x3e\xf0\xe9\x9c\xd2\x1f\xc8\x4d\xf4\xe2\xda\xf0\xc1\xab\xfd\x54\x83\x7a\x7e\xf6\x43\xd6\x54\x44\x5e\x5f\x25\x38\xe7\x16\x5d\xdc\xbb\xc5\xb3\xc7\x8d\x9c\x66\x9a\xf0\x74\x23\x49\x11\xfc\x26\xe2\x06\xe2\xc8\xe7\xb7\x77\xa5\x3f\x17\xfd\x98\x72\x68\x50\x0c\xd7\xf1\x30\x49\xfb\xec\xbd\xea\x8e\x90\x98\x2c\x3f\x4c\x36\x13\x39\x45\x0c\x87\xcd\xea\x81\xf8\x71\xc9\x9b\x50\x11\x5e\x3f\xf3\xa1\x4d\xd4\xcb\x03\x36\x51\x06\x93\x98\x1f\x2e\x96\x42\xfc\xb8\x9b\x1a\xc7\x8e\x0d\x38\xee\x49\x2f\x4c\x99\x74\x41\x5c\x8d\x7a\x9d\xf8\xf8\xa1\xf7\xb6\x3d\x79\xf4\xb3\x3b\xb4\xc5\xde\xbf\xf6\xf9\x1d\x7f\xf5\x38\x4a\x87\xeb\x0c\x44\x82\x75\x53\x77\xa4\xa5\x18\x1f\x8d\x94\x66\x55\x93\xec\x54\x01\xd2\x3b\x68\xd1\x2d\x3a\x8e\x4f\xe0\xcb\x9c\xbb\xf3\x13\xda\x46\xe5\xc8\xd7\x17\x6c\xeb\x36\x2b\x5d\x31\x98\x6d\x57\x6c\xd4\xa7\x5d\xcc\x40\xaa\xe0\x27\xfb\x8d\xcd\xf6\xad\x3b\x83\x89\x0b\x6b\xb1\x7a\xd9\x66\xd4\x21\xc4\xcd\x10\x27\x2a\xb8\xbd\x4d\x80\x1f\x6a\x0e\xb4\xb3\x28\x09\xa7\xdd\x61\x81\x41\xdb\xf4\xad\x24\xd2\x36\x85\xc4\xe4\x3d\x12\x27\xda\x70\x5d\xd3\x52\x67\x9c\x9a\x9c\x6a\xea\xd1\x62\xb8\x8d\xd8\x2f\xf2\x9c\x52\xc6\xe0\x0e\x7f\x5b\x93\x1d\x86\xd8\x7b\x49\x69\x33\xda\x35\x10\x1b\x70\x80\x3d\x06\x1f\x62\xc1\x04\x2c\x70\x51\x69\xf8\x58\xb1\x22\x27\xad\x0f\x8f\x4e\xb1\x5f\xe0\x47\x96\x61\x17\x90\xf4\xaf\x2a\xa3\xe7\x61\x79\xba\x86\xf3\x94\x7f\xd4\xe1\xb6\x92\xf5\xf2\x5f\x88\xcd\xe1\x7d\x42\x82\x79\x43\x1f\xbb\xb6\x47\xa5\xcb\xba\x6e\xf1\xe4\xdb\x01\x52\xdf\x6a\xa7\x78\x7b\xec\x52\x21\xf5\xad\x76\x47\x30\x27\x25\x6e\x41\x9d\x14\x1e\xf7\x6c\x8f\x60\x42\xd4\x60\xd3\xad\xda\x8e\x56\xb0\xb6\x7a\x76\x4e\xc9\xb3\x73\x9f\x7c\xa4\xd9\x51\xe9\x71\xd3\xc9\xb0\xaa\x5e\xf9\x15\x8c\x83\x13\xcd\x3f\x41\xfa\x47\xb4\x3f\x2a\x3f\xd5\x81\x61\x65\xbd\x45\xc4\xb1\xbd\x61\x6b\x5f\x76\xab\x9d\x69\x71\x0f\x61\xbb\x60\xaf\x80\x50\xd7\x5b\x07\x94\x3c\x66\xa0\xe4\x25\x01\x25\xef\x01\x94\xbc\x51\xa0\xde\x76\xb7\xa2\xa9\x68\x33\x76\xf8\x98\xe8\xd0\x8b\x27\x34\x11\x92\xdd\x93\xab\x48\x61\x69\x16\x2a\xf8\xeb\x02\x85\x94\xe5\x6b\xd0\x58\xc1\xa1\x22\x55\x0b\xb0\x6c\x77\xf2\x36\x6f\x5c\x1f\x34\x13\xd9\x75\x57\x57\x24\x53\xa5\xee\xf1\xba\x06\x1d\xf8\xf1\x6a\x57\xf6\xf7\x68\x8e\xd5\x49\xe0\xcc\x4a\xd9\x77\x41\xbc\xde\xf6\xd3\xe0\xc2\xe9\x1c\xfc\x06\x4c\x6d\xdf\xf2\xd8\x7e\xe4\x3b\x44\x13\x90\x87\x0c\xcb\x2c\x06\x7d\x8b\x94\xa9\x4e\x08\xa8\xba\xdd\x4d\x01\x6a\xc3\x24\x45\x3c\x21\x31\x78\xd7\xba\xd7\x82\xd4\x83\x5d\x63\x5b\x12\xe5\x99\x32\xd2\x2d\x05\xe2\x23\x5e\x9d\x54\x40\x27\x2f\xbb\x04\x27\xfb\xe5\x3e\x96\x79\xeb\xb3\xe2\xdb\xde\x92\x34\xf1\x02\xa6\x64\x68\x5c\x89\x54\x22\xdf\xfa\x2a\x46\xb7\x96\xb5\x66\x96\x80\xc5\x13\x89\xa5\x5d\x51\x3e\x5c\x36\xc7\xea\x92\x30\x5d\xbd\x12\x25\x14\x15\x7d\x4f\x1f\xa5\x44\x71\x89\x47\x73\x24\xdc\x3d\x23\xe3\x30\x15\xf3\x3e\x74\x73\x10\xb5\x71\x39\xea\x74\x61\x17\x01\x59\x4f\xe3\x20\x87\xfc\x48\xdc\x10\x7b\x00\x67\x04\xf6\x40\xf9\xe9\xf6\xf8\x29\x4c\x79\x00\xd9\x0f\x13\xc7\xa2\xfc\x82\x30\x7b\x74\x8e\x5a\xf1\x6f\xe6\x93\x60\x13\x9c\xe3\x61\x78\x1b\x4e\xf4\xe0\x75\x80\x23\x18\x08\xf0\x53\xc7\x66\xae\xe5\xe8\xc5\x06\x86\x9d\x7a\x3f\xc5\xfe\x03\x9f\x86\x89\x5b\xf5\x0f\xc4\x0c\x51\xf3\xb1\x2f\xc5\xb8\xbb\x8c\x93\x0f\xc4\xc4\x36\x1e\xbc\x64\x31\xe7\x4b\x23\xf1\xca\xeb\x9b\x15\x2e\x7c\x70\x59\x85\x8f\xd6\x17\x7f\xf7\x5c\x17\x38\x65\xca\x73\x41\x8d\x40\xbc\xbc\xfa\xcd\xf5\x96\x9a\x00\x4d\x85\xc6\xec\x35\x2c\x09\xc3\x73\x2d\x49\xe5\x18\x6c\x08\xf7\x15\x5b\x32\x5c\x26\x42\xae\x0d\x43\x7f\x49\xce\x20\x00\x98\x98\xa6\x74\x55\xf6\xfa\x3b\x61\xa3\x12\x50\x77\x61\x7d\xfc\x16\x8d\xfd\x45\xa4\xa8\x7e\xec\x75\x29\x14\x06\x25\x09\x21\x76\x8e\x7c\xcb\xdb\x0c\xb4\x8f\x84\xd5\x27\x19\xce\xf7\xa4\xbf\xda\xa3\x5e\x73\x4d\xe3\xbe\xb4\xa1\x6e\x06\xab\x6e\x7b\x47\x50\xe0\x06\x9e\xc8\x92\xb8\xad\x2d\xae\x54\x58\xdf\xe8\x01\x71\x71\xde\xd6\xa1\x17\x4b\x76\xd1\xaa\xd2\xc7\x70\x30\x7a\xfa\xda\xb7\xda\xb6\x4d\xb1\xec\xda\x63\xef\x70\x9c\x6a\xfe\x18\x5e\x3d\x1a\xfe\x08\xcc\x76\x8d\xa2\x75\xb5\xfd\x03\xd0\x28\x42\xfe\x08\x4a\xa2\xe0\xa4\xe7\xdd\x6a\x2b\x3f\x5d\xc6\x1e\x7c\x6f\x61\xb3\xf4\xcc\x12\xa7\x4b\xce\x4f\x5d\x86\xdd\xb7\x07\x89\x43\x79\x7e\xf6\xfe\xed\xec\x56\xdc\x03\x96\x51\xc8\xa0\x31\x1e\x91\xc3\xb8\xe4\x9c\x18\xa1\xfa\x4e\x47\x5b\xd2\x7a\x7b\x75\xce\xee\x6d\xde\xb6\xa7\x2f\x64\xe8\x3d\x19\x3f\x27\x38\x88\xc0\x23\x3c\x2b\xc5\xde\xdb\xd3\x33\xbd\x5f\x15\x4f\xb0\x56\x8c\x57\xec\xfd\x73\xc5\xa0\x09\xf7\xa6\xfd\xe8\x9d\xdc\x51\x43\x6d\x71\xa0\x4e\x15\x87\x83\xf5\x75\x62\x63\x1c\xa3\xa0\xef\x08\x11\xef\x41\x3a\x37\xfd\x0d\x68\xe2\x61\xa7\xc1\x5e\x14\xaf\x86\xa0\xac\xff\x41\xbb\x53\x8b\x46\x03\x28\xfd\x15\x45\x43\xaf\xd5\x73\x63\xdc\xd9\x28\xdc\x7a\x04\xb8\x90\x05\x2a\x01\x88\x8f\x71\x8b\xdb\x8a\x46\xe7\x22\x47\xcb\x7f\xec\xa1\x98\x84\x0f\x84\xa1\xc0\xa9\xe6\x6a\x73\x57\xd5\x7c\x60\x7a\x57\xd0\xec\x70\x50\xd6\xe1\x42\x46\x2b\xcb\x88\xf2\x2f\x40\x45\x3e\xdb\x3b\xeb\x46\x10\xb8\xc4\x13\x20\xe4\x1e\x8f\x66\x0f\x98\x8e\xa6\xd6\xeb\x35\xc9\xf4\x06\x01\x5f\xf8\x7e\x39\x3e\x66\x67\x75\xde\xd9\x50\xd0\xbd\xbb\x5d\x77\xa2\x69\x6f\xd2\x77\xfc\x13\xd2\x54\xef\x36\x99\x2f\xe2\x1e\xdf\x4f\x5f\x65\xdd\xfa\x9a\xe8\x71\x16\xc4\xcf\x08\x84\x1b\xf5\x20\xfd\x56\x79\x63\x6b\x6a\x7e\x6a\xbb\xf7\xfa\x7f\xfc\xf0\x7f\x40\x34\x4c\xff\xab\x85\x04\x84\xf4\x85\x22\x48\x39\xdf\x95\x13\x02\xac\x3f\xf5\x00\xf7\x15\xd0\xa8\x86\xa5\x69\x74\xd3\x6d\xad\x9a\xe2\xa0\xb7\xa1\xce\x77\xf8\x3d\xe3\xfd\xc5\x77\x9c\xdf\x19\x16\xba\x62\x24\xbc\x16\xef\x44\x44\xba\x7e\x27\x99\x63\x56\x16\xb0\xbd\x74\xe4\xe2\x8f\x2e\x76\x93\x04\x43\x80\x61\x6f\x0b\x69\xd1\x36\x12\x12\xa3\x5d\x31\x24\x72\xdf\x46\xf3\x42\x19\xd6\x96\x32\x35\xe7\xe7\xaf\x86\xb4\x10\x72\x9d\xc3\xc1\x67\x55\xd7\x08\x76\xef\x21\x04\xd4\x86\x74\xcb\x7b\x9f\xc7\x05\x86\x53\x31\xcc\x9b\xa8\xc8\xfe\x52\x12\x0f\xfb\x32\xaa\xc7\x31\xdd\x68\x29\xd1\xe7\x6c\xe0\x47\xe0\xa7\x40\x5f\x88\xef\xbd\xc5\xe2\x5e\x6e\xe9\x3d\x83\x22\x93\x12\xf1\xe2\x31\xd9\x3b\xfe\xdd\x67\xd9\x93\x74\xcf\xf7\x14\xf4\xc5\x76\xd1\x5b\x97\xfc\xc8\x76\xfa\x23\xec\x23\xf2\xbc\xd7\x0a\x8a\xeb\xba\x84\x1e\x1a\x6f\x03\xbd\xee\x4b\x64\x2b\x17\xe9\x8a\x5d\xc0\x4f\xf5\xb0\x17\xe6\xc1\x86\x9f\xe1\x9b\xee\xb6\x7b\x7f\x1b\x91\x48\xfc\x80\xfb\xce\xba\x1e\xd6\xbd\x53\xc5\xf6\x83\xfe\x43\x51\x6c\x2e\x48\x26\x86\xa8\xb7\xe6\xe0\xb3\xbf\x28\xc5\x3a\x1f\xbd\x0d\xce\xf7\x43\x5e\xc1\x0e\x64\xd9\x39\x2c\x1a\x53\xef\xd5\xeb\xa8\xb8\x7b\x9d\xe8\x68\x51\x77\xe5\x53\xa7\x5e\x8f\x98\x8e\x4c\x3d\xf1\xea\x8e\x6a\x36\xd5\x86\x88\xee\x07\xbc\xda\xce\x6f\x54\x02\xa6\xe4\x53\xa1\x30\xbf\x72\xb3\x8d\x35\x68\x62\x67\x98\xa2\x96\x9f\x8d\x17\x1a\x0c\xd7\xdc\xc2\xec\xee\x8a\x03\x84\x05\x7d\xa3\x13\x32\x83\xbe\xbc\xb9\x53\x83\x30\x54\x11\x7b\xc0\x09\x69\xd4\x25\xcc\x48\xd8\x04\xce\xf8\xeb\x48\xef\x15\xd4\xc9\xa8\x91\x7e\xdd\x07\x70\xb4\x49\x2b\xa7\x4e\x5f\x3e\x7b\xf5\x26\x79\x3a\x45\x8e\x0a\x3d\x5e\xfd\x9a\x31\xe6\x15\x9a\x31\xcd\x1a\xe4\x18\x4a\xc7\x21\x67\x4e\xd3\xc3\x10\xc0\xe3\xa3\x10\x82\xd3\x8a\xc4\x30\x35\x5d\x91\x52\x66\x9e\x1d\xb0\x00\x05\xf2\x54\xbe\x06\x30\x3e\xdc\xba\x00\xf9\x60\xeb\xe3\x36\x2b\x57\x0f\x9f\xad\xf5\xe6\xd7\x88\x93\x84\xe7\x31\xfc\x79\xa4\x6b\x0e\x98\x34\xe4\x8b\x82\x6f\x5f\x28\xf8\x5b\x4d\xf0\x90\x0e\xc2\xd5\xeb\x00\x8e\x8d\x99\x88\xbb\x50\xe9\xf2\x09\xff\x9e\xf5\xe6\x4e\x17\x2d\x96\x93\x80\x2a\x94\x38\x84\xac\xb6\xfa\x04\x80\x42\x6f\x56\x1e\x35\x62\xa4\x7a\xf1\x24\x20\xe7\x9a\x8d\x54\x83\x01\x95\xc5\x5a\xcc\xdb\x7e\x44\x53\x8b\x72\x8b\x07\xd7\xe5\x32\x2e\xd8\x36\x3f\xbb\x3e\x1c\x42\xa8\x49\xc7\x31\x55\xd1\xa1\x60\x7b\xa4\x43\x0e\x5e\x92\x33\x93\x78\x71\x80\xba\x13\x30\xa4\xfe\x1e\xf1\x6c\xf7\x5a\x68\xea\x9f\xd0\x9b\x64\xd7\xd8\xf4\xb5\x5d\x6c\xf6\xd3\xf3\x01\x20\x11\x54\x08\x44\x77\x43\xef\x13\x31\x5f\x35\xc4\xdd\x9f\xd0\x7f\x72\x0e\x1d\x32\xa2\x45\xe7\x92\x20\x78\xe4\x1d\x89\xa8\x60\x35\x07\x62\x4a\x11\x34\x1c\x28\x9c\x6d\x32\x71\xc7\xc9\x12\x2c\x4c\x41\x7c\x98\x4e\x35\x08\x4e\x02\x99\x0f\x66\xd5\xf9\x13\x8d\xd3\xea\x3a\xdb\x96\x31\x64\xe4\xce\x01\xba\xd4\xa0\x78\xdd\x9a\xaf\x1a\x10\x61\x5e\xcb\xdb\xfc\x0e\x64\x2a\x76\x99\x1b\x0c\x61\xb5\x85\x63\x47\xd3\x0a\x19\x4d\x75\x21\x8d\x9a\xb6\x02\xe6\x7d\x4d\x9c\x77\x87\x7c\x12\xb1\x40\x77\x9b\x72\x3f\x71\xf0\x41\xda\x89\x53\x16\x5f\xa4\xf1\xcb\x18\x2e\x6b\xa2\xe7\x2e\xab\x3e\xa4\x6f\x0e\xf3\x18\x94\xf5\x00\xa7\xea\x8c\xfa\x70\xf4\xd4\x1a\x4e\x3d\x7c\x64\xfb\x53\xff\xdd\x08\x58\xec\x22\xbf\xa4\xde\x05\xb0\xfb\x1c\x35\xd3\x47\x3f\x73\xa1\xbb\x43\x41\x6c\xd5\x71\x91\x07\xb6\x59\x3d\xb8\x1f\x87\xdc\xc4\x61\x64\x00\x70\xf1\x38\xbf\xd4\xcc\x8d\x81\x13\x56\xeb\x7b\x24\x21\x46\x7f\x46\xd5\x12\x20\x3a\xae\x5b\x8c\x34\x52\xbd\xfd\xa7\xd0\x82\x0f\x3b\xfb\xb3\x74\x30\xc4\x2a\xfd\x2b\x2b\xda\x49\x61\x70\xff\x9f\x11\x6a\x5e\x23\xce\x4c\xa2\x89\x2f\xf0\x03\x3f\xfc\x23\x71\xc0\xec\x61\x95\x55\x53\x68\xd4\xe0\xf8\x6d\xb6\xf9\x4f\x46\x9d\xc6\x72\xfc\xd3\xc2\x85\x7f\x17\xf9\xcd\x87\x73\x74\x5e\xe7\x7f\x0a\x41\xdf\x89\x18\xda\xba\x2e\x89\x14\xb2\x4d\x2d\xbe\x50\xfc\x9e\x03\x5c\xa1\xb3\x65\x62\xeb\xb5\xbc\x18\xe9\x3c\xa3\xef\xde\xf9\xc2\xa6\xf7\x6d\xf2\x45\x72\x6e\x76\x70\xe4\xa0\x84\xbd\x24\x9c\x15\xb4\xf1\xe2\x7b\xab\x00\xad\xe6\xe7\xf2\xfd\x3e\x23\x6a\xfe\xe2\x52\x3e\x7e\xa8\xf9\x49\x95\x2f\x68\xf9\x69\xe9\xba\x82\xf1\xee\x8b\x2b\xf9\x44\xe0\x3e\xb8\xde\x13\x37\xcb\xa9\x41\x60\x82\x03\x01\xe7\xae\x5d\x70\x04\x6e\xb0\x9f\x2b\x9d\xa0\xcc\x6d\xdd\x35\x83\x82\xad\x96\xcb\xb3\xab\x7e\xce\x7b\x09\x31\x74\x69\xcc\xae\x9f\xc1\xbd\x14\xde\x43\xaa\x77\xbf\x21\xf4\x17\x79\x57\x26\x1b\x34\xf4\xe7\x4c\x5c\x6a\x9a\xec\x72\xe1\x46\x10\x7a\x8d\x54\xd7\x73\xdf\x5b\x9a\x86\xbc\xa9\x0f\x88\x9e\xf6\x53\x78\xab\xc5\x45\xd7\x7f\xee\x2e\x19\x7e\xc7\x8f\x9d\x26\x3b\xbc\x8d\x41\x9f\xb5\x7a\x36\xaa\x0b\x04\xdf\x9f\xc4\x46\x22\x7e\x8a\x2e\xa8\x62\x51\x1d\x3a\xd5\xfb\x7c\xa0\x18\xbd\xfb\x8d\x4f\xca\x08\x1e\x91\xe2\x31\x11\xbd\x99\x1a\xbd\xe4\x0b\x35\x93\x68\x65\xb1\x54\x25\xaf\xd8\xd0\x72\xbb\xf9\x0f\x93\x7c\xf6\xaf\xff\x8a\x4c\x5b\x5c\x9b\x7f\xfb\xb7\xe4\xec\xf1\xe7\x2a\x51\x32\x13\x6b\x8d\xc4\xa8\x39\xcb\x3e\x14\xfb\xac\x8c\xca\xec\xb3\x0f\xcf\x7b\xc5\xf8\x8e\x24\x7b\x3e\x46\xd7\x8d\xa3\x08\xf3\xff\x3f\x00\x00\xff\xff\xfc\x56\x0e\x44\x5e\x9f\x00\x00") +var _confLocaleLocale_deDeIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7d\xdd\x8e\x1b\x47\xb2\xe6\xbd\x00\xbd\x43\x59\x07\x5a\xdb\x40\x93\x82\x67\xb0\x3f\x30\x44\x79\x5b\xff\x1a\xa9\x25\x1d\xb7\x6c\x03\x1e\x18\x74\x91\x4c\x92\x75\x58\xac\xe2\x54\x56\x75\xab\xfb\xe0\x00\x7b\x71\x9e\x61\xaf\x16\x38\x37\xc6\x3e\x82\xaf\x7c\xd7\x6f\xb2\x4f\xb2\xf1\x45\x44\xfe\x55\x15\xdb\x9a\x99\x33\x17\xb6\x9a\x95\x91\x7f\x91\x91\x91\x11\x91\x11\x91\xf9\xe1\x30\x5f\x19\xbb\x9c\x3d\x2b\xaa\xcc\x2e\xb7\x7b\xd3\x5c\x97\xb5\x35\xcd\x49\x66\x4d\xb9\xb0\x6d\xb6\x31\xdb\xda\xb6\xa6\x35\x4d\xf6\xa2\x68\x27\xe7\xa6\xb9\x28\x96\xe6\x84\xbe\x13\x78\x53\x98\x85\xa9\x32\xaa\xfb\xa2\xbe\x7b\xe7\xee\x9d\x6d\xbd\x37\xb3\x97\xf4\xbf\xbb\x77\x56\xb9\xdd\x2e\xea\xbc\x59\xcd\x6e\xfe\xcf\xc2\x34\xb6\x58\x6e\xdb\xbb\x77\xcc\xc7\x43\x59\x37\x66\xf6\xac\xd9\x75\xd5\xca\x54\x54\xc5\x94\x87\xd9\xcb\xa2\x5c\x53\x1d\x5b\x6c\xaa\x79\x51\xcd\x4e\xab\xbd\x29\xb9\xd4\xd6\xcb\x22\x2f\xe7\x69\x41\x57\x6d\xb2\x9b\xdf\xa8\xd1\xcc\xd6\xd7\x54\x6c\x6c\xf6\xba\xae\xda\xfa\xeb\xec\xfa\xd2\x14\x18\xe9\x39\x86\xd6\xb6\xd9\x43\xbb\xcf\xcb\xf2\x11\x97\x66\x17\xa6\xd9\x55\x37\xbf\x1d\xd6\xa6\x7a\xf8\x40\x0a\xb4\xcb\xba\x6b\x67\xa7\x0b\xdf\x27\x3e\x75\x87\xd9\xb7\x66\x53\xd8\x96\xa6\xd8\xe0\x6b\xc3\xbf\x4c\xd3\xfb\x7c\x69\x16\x96\xba\x9c\xfd\x40\xff\xa2\xef\xbb\x77\x2e\x30\xd9\xba\x9a\x7d\x2f\xff\xde\xbd\x73\xc8\x37\x66\x76\x2e\x85\xad\xd9\x1f\xca\x9c\xe0\xbf\xaf\x9b\x92\xbe\xdf\xbd\x53\xe6\xd5\xa6\x63\x88\x43\x93\x2f\xb7\xf4\x65\xd9\x18\x82\x98\x57\xe6\x92\xd0\x44\x5d\x96\xa5\xa9\xa6\xd3\xe9\xdd\x3b\x1d\xad\xcb\xfc\xd0\xd4\xeb\xa2\x34\xf3\xbc\x5a\xcd\xf7\x40\xe5\x63\x53\x75\xed\xb5\x69\xa4\x20\x23\xb4\x66\x7b\xb3\x6d\x64\x1e\x66\x45\x68\x9b\xe7\x16\xeb\xbb\x31\x65\xbd\xd9\xb4\x59\x5e\x5a\xac\x15\x5a\xab\xf2\x7d\x68\x00\x3f\x68\x85\xf6\x79\x51\xce\x9e\x4d\xce\xe8\x1f\x8c\xdd\xda\xcb\x9a\x16\xf1\xbd\xfc\xd1\x02\x11\xf3\xf6\xea\x60\xfc\x97\x6c\x61\x6c\x7b\xf3\x4b\x5b\x6c\x80\x8f\x65\x7e\x68\x97\xdb\x7c\xf6\x44\xfe\x45\x47\x8d\x39\xd4\x84\xa3\xba\xb9\x22\xdc\xb9\x3f\xef\xde\xa9\x9b\x4d\x5e\x15\xd7\x79\x0b\x64\xbd\xe3\x1f\x96\x7f\xdc\xbd\xb3\x2f\x9a\xa6\x6e\x08\x23\x85\xa1\x41\xdf\xbd\x43\xa8\x98\xa3\x95\xd9\x5b\xd3\xd1\x62\xc7\xad\xa0\x68\x5f\x6c\x1a\xe0\x14\xa5\xd9\x19\xff\xe0\x66\x50\xb6\xae\x9b\x9d\x56\xcb\x17\x44\xb3\x87\xbc\x04\x31\x0f\x1b\xa1\xe1\x48\x03\xbd\xa1\xe4\x15\x2d\x0e\x97\xc6\x05\x44\xf4\xb4\xce\x97\x68\x8c\x80\xf2\xd5\x9e\xb0\x7c\xc8\x2b\x53\xce\x4e\xf1\xf7\xe4\x3d\xfe\xa6\x82\xe5\xb2\xee\xaa\x76\x6e\x4d\xdb\xd2\x02\xd8\x19\x53\xa2\x29\x2a\x5e\x56\xa2\x63\xa6\x37\x57\xf8\x2c\xfd\x7e\x55\x77\x7e\xb9\x67\x4f\xa9\x52\xf6\x9e\x7f\x68\x89\xaf\x86\x22\x93\xf5\x2a\xf3\xa4\xec\x7c\x6d\xcc\x8a\xa6\x75\x69\xb3\xe7\xf4\x17\xad\x67\x57\x96\x84\xca\xbf\x10\x3e\x5a\x3b\x7b\x4f\xbf\x08\x11\xf2\xeb\xee\x9d\xc2\x5a\xfa\x6b\xf6\x8a\xff\x41\x13\xcb\xbc\x5a\x62\x4a\x8b\x45\x63\x88\x34\xb9\xd9\x3f\x5b\x93\x37\xcb\xed\x4f\x18\x37\xfe\x98\x9d\x77\x28\x62\x02\x3d\xb2\xd2\xa0\x34\x4f\x65\xda\xcd\x8c\xe6\xb2\x28\xcd\x9e\x3a\xa9\x57\x66\xf6\x84\xfe\xc7\xad\x63\x16\xb4\x33\xa9\x79\xfd\x6b\xf6\x4a\xfe\xd5\xf5\x68\x8b\x96\xb0\x11\x7f\xcb\xd6\x37\xbf\x35\x19\x6d\xb6\x96\xb6\x34\x88\x30\x3b\x6f\x73\x21\xd4\xbf\x74\xb4\xe9\xe6\xab\x85\xb0\xb8\x17\xf5\xc6\x12\x1c\x51\xc4\xca\x10\xd9\x9e\x5d\x9d\xff\xf3\x9b\x93\xec\x3d\x71\xb7\x4d\x63\xe8\xef\x8c\xc6\x40\xac\xe3\x9f\xdf\x50\xa5\xec\x8f\x27\x44\x2f\xfe\xe7\x1f\x33\xda\xf2\x60\x73\x80\xa8\xd7\xeb\xe2\xba\xe0\x6d\x99\x2d\x8a\xea\xe6\x17\x62\x04\x99\xee\xf6\x2c\xdf\x15\x17\xc4\x1a\x5a\xc2\x06\xf5\x2b\xa3\x7d\x4a\xc4\x59\x2d\xf2\x6a\xd7\x5b\x78\x00\x60\x27\xf9\x72\xfa\x05\x1e\x6a\x5b\xe2\xa1\xb6\x1d\x20\x6e\x64\x33\x52\x13\xbc\x87\x7d\x13\xb2\x89\xe9\x33\xf8\x2a\x6a\x13\x1b\x34\x4c\xab\x06\xfc\x36\x7b\x55\x55\xf5\xd3\xc7\x93\x67\xd5\x06\x44\xb3\x2f\xda\xac\x6b\xd7\xff\x63\x4e\xe3\x31\x0d\x31\xda\x65\x91\xfd\x68\x0a\x2c\x28\xd1\xf9\xb5\xa0\x96\x11\x45\xf3\xb1\xb6\x24\x8e\x43\x8b\x75\x7e\xfe\x66\x72\x56\xaf\x3a\x8b\x21\xb5\xdb\xd9\xfb\x75\x4e\xa4\x65\xff\x52\x02\xdb\xda\xef\x53\x42\x14\x06\x55\x1c\xa8\x90\xd0\x66\x3d\x26\xfd\x50\xa9\x49\xd3\x34\x73\xe2\x88\xed\xd5\x5c\x6b\xfb\xf6\xb2\xeb\xce\x23\x7f\xe2\xab\x64\xab\xbc\x59\x67\x15\xce\x92\xac\x34\x38\x00\x08\xa5\x53\x10\x8e\x9b\x80\x60\xfc\xb4\x2c\x37\x66\x3f\xdc\x17\xd9\x45\x8d\xa3\x6a\x43\x23\xc7\xc9\xc7\xa8\x3b\xad\x80\x1a\x2a\xb6\x82\x3b\x57\xe0\x66\xf2\x92\x96\x33\x03\xea\xe2\xfd\xcf\xb0\x55\x46\x3d\x10\x8a\xa8\x61\x25\x7e\x19\x7f\xa0\xfd\xec\xdb\xba\x6e\x27\x44\x1b\xd7\x40\x2a\x55\x3e\x30\xaa\x3c\xa8\xeb\x83\xc6\x6b\xf8\x78\x0d\x55\x6d\x76\x69\x9a\x95\x1c\xae\xab\xc2\x58\xb3\xcf\xa2\x76\x70\xfc\x1e\x78\xa1\x98\xd4\x9a\x8e\x4e\x2c\x10\xcb\x69\x67\x69\x40\xdb\x06\x8b\xdd\x64\x81\x74\x1c\x40\xbc\x3c\xae\x34\xdb\x77\xd6\xa2\x8f\xec\xc7\x6e\xd3\x14\xeb\xb5\x25\xc2\xa7\xfd\x4e\x1c\x1d\x27\x2d\xd3\x00\x9d\xe6\xd9\x2d\xd3\xca\xb6\x39\xe4\x00\x9c\x3d\xe8\x37\x8f\x46\x11\xba\x71\xb8\x77\x8b\xb6\xaa\xe9\xa8\xa9\x66\x4f\xf9\x1f\xf7\xd3\x0f\x90\xa6\x4c\xad\xb6\x19\xcd\xe8\xb2\x80\xb4\xb0\xa1\x66\xd7\x3c\xcc\xf3\xf3\x97\xd9\xb2\x24\x26\x9c\x7d\xf7\xed\x1b\x4b\x2d\x6d\xdb\xf6\x30\x3f\xd0\x86\x98\xbd\xfc\xf0\xe1\x3d\x6d\x69\x6c\x0d\xff\xd1\x23\x59\xaa\x13\x16\x18\x22\x7b\xdb\xed\x49\xdc\xe1\x9d\x8d\x56\x4f\x0f\x65\x59\xec\x84\xa5\x10\x5d\x62\x66\x8b\xbc\x99\x0a\x41\x74\x4d\x19\x11\xca\x84\xfa\xf5\xdf\x3f\x65\xc4\x18\xd6\x03\xfc\xef\x3c\x1a\x38\xa3\x4b\xb0\x4b\x20\x72\xe2\x5a\x26\xe6\xfa\x80\x51\x78\x6a\x7e\xa7\x3f\x07\x4c\x9e\xcf\x6a\x05\x92\xfa\x4e\x3e\xeb\x43\xda\x3d\x21\x83\x39\xcb\xf9\x19\x61\x48\xd8\x0b\x7f\x5c\x37\xf5\x9e\xa4\x91\x2a\xfa\xe9\x11\x46\x22\x0d\xe8\x68\x72\xba\x6a\x8c\xb5\x26\xab\x48\x40\xc9\xbe\x7d\xfe\x24\xfb\xaf\x7f\xfc\xc3\x1f\xa6\xd9\xb3\xaa\xbd\x34\x58\xef\x8a\xf6\xaa\x6c\x36\x1e\x44\xe6\xe0\x99\xa1\x16\xfb\x6c\x5d\xd3\x76\x64\xf6\xf3\xbc\x6e\xf6\x79\xfb\x75\x76\xef\x2d\xed\x9f\x7b\xd9\x43\x9e\xc1\xff\x34\x1f\x73\x12\x8b\xcc\x74\x59\xef\x1f\x4d\x71\xe6\xd2\x89\xd7\x08\x41\x9f\x0b\x25\x3f\x9b\xec\x59\x1e\xd1\x22\xcf\x09\xb5\x38\x96\x4e\x44\x4c\x9b\x2f\xeb\x6a\x5d\x34\xfb\x48\x5c\xc3\xca\x79\x59\x85\x57\x67\xd7\x5e\xa8\x18\xc7\x88\xac\xea\xb6\x58\x5f\x39\x4c\x12\xdd\xe6\x10\x23\x69\x23\x38\xe8\xc2\x81\xd3\xc8\x88\xa5\xce\xad\x20\x5b\x57\xe0\x9c\x3f\x4e\x78\x59\x2d\xb1\x08\x48\x44\x19\x51\x05\x16\x22\x5d\x0d\x3a\x41\x4a\x42\x97\x70\xd3\x77\xf2\x43\x38\x6a\xd2\x4b\x0c\x46\x94\x7c\x20\x99\xf4\xa9\xf1\x00\xbc\x27\x9f\x3c\x7d\x4b\x44\x46\xab\x42\x58\xa6\x13\x75\xd5\xed\x98\x3b\xed\xd1\x16\x9d\x60\x60\x2b\xcc\x85\x09\xf5\xca\x4e\xb0\x0b\x95\x9f\xc8\x80\xb1\x5b\x49\xca\x2a\xcc\x5a\x8f\x2d\x62\x71\x74\x32\xcf\x05\x93\x22\x4b\xf9\x43\xa8\x89\xb1\x49\x7b\x3d\x1e\xee\x58\xc5\xb1\x61\x17\x81\x27\x24\xcd\x9d\x30\x1d\xb1\xfc\x24\xf5\x6b\x1c\xac\xbb\x9b\x5f\x2b\x88\x5b\xae\xca\x8e\x24\x28\xfa\x99\x57\xa5\x71\x7c\x97\x8e\x79\x12\x4a\x55\x47\x98\x53\x2f\x10\x9c\xe5\x98\xa7\x6d\xed\x54\x86\x93\xac\xdb\xd3\xf1\xb7\x85\xcc\x46\xd5\xaf\x89\xbc\xb6\x22\xd8\x0f\xeb\xeb\xb0\xdf\x98\x55\xb1\x29\x89\x02\x08\x1e\xe7\x09\xe9\x07\x6d\xc4\xd0\xdc\xd0\x5c\xa3\x0b\xd3\x42\x84\xa7\xe1\x9d\x64\x2f\x6e\x7e\xa1\x15\xcf\xb8\x0f\x9e\x17\xb3\x18\xd5\x6b\x1e\xc4\x3a\x44\xc6\xaa\xc1\xd4\x49\x91\x2a\xd6\x89\xc8\x72\x4e\x95\xf6\x37\xbf\xd1\x5e\xaa\xb2\x7f\x31\xed\x75\x9b\x55\x35\x8d\x06\x82\x04\x7d\x49\x50\x35\x39\x15\x59\xd3\x63\x26\x03\x8f\x87\x58\x14\x8d\xf8\x8b\x7b\xaf\x9e\xce\xbe\xba\xf7\x25\x7d\xdf\xde\xfc\x52\x12\x70\xd7\x12\xdb\x6d\x0b\xd2\xe5\xe2\xe6\x40\x43\x7c\x04\x84\x71\x09\x8d\xb3\xfc\x3a\x49\xcf\x54\x61\x61\xfd\xf1\xb8\x7a\x23\x2a\x86\x13\x97\x07\xd2\x8c\xee\xd9\x61\x51\xaa\x63\x48\xfd\x54\x51\x51\x69\x71\xbe\xa1\x03\x46\x24\x3d\xfd\xa2\xc4\x49\x22\x7f\x3b\xdf\x14\xed\x7c\x0d\x0e\xb2\x9a\x3d\x37\x5b\x62\x24\xd4\x2e\x6d\x9c\x0f\x06\x47\x00\x71\xef\xcf\x09\xe0\x73\xd2\x25\xf7\x24\xf5\xaf\x6a\xfb\x75\x76\xff\xc2\xc9\x35\x7f\x04\x77\x98\xe7\x17\x54\x1b\x44\xae\x42\xb7\x93\xfa\x08\xef\xc0\xf4\xcd\x6f\x58\x22\x27\xe8\xb0\x98\x72\x42\x22\x22\x24\xb0\x32\x5f\x81\xf4\x85\x0e\x82\x04\xe9\x04\x48\xdf\x12\xb6\xe7\x7d\x3a\x47\xb0\x23\x5a\xa8\xe1\x6f\x5f\x3d\x79\xf9\x81\x6b\x6d\xea\x45\x57\x94\xab\x89\x82\x4e\x31\xe9\x0b\x12\x79\x57\x90\x70\x95\x6c\x82\x20\xd8\x5b\x24\x5b\x10\x57\x12\xc1\x69\x57\xd3\xbe\xdb\xb5\x32\x3b\xd7\xc4\x27\x49\x2f\x7c\x56\x52\x7b\x37\xbf\x95\xb4\x14\xd2\x80\x97\x2c\x80\x1f\x22\x25\xd2\x08\x9e\x1e\x15\x01\x50\x5f\x06\xc1\x62\xc2\xae\xed\x18\x09\xae\xfc\x6b\x4c\x7d\xf2\x88\xfe\x4f\x68\xcf\x2f\x8c\x30\xf1\x8d\x5b\x33\x4c\x1c\xca\x06\x63\xe3\x35\x17\x75\x42\xac\x24\x2d\x66\x4e\x1e\xaa\xb8\x97\x35\xad\x2f\x9b\x28\xa0\x65\x57\xe9\x5c\x93\x8d\xa6\x0a\x9b\x98\x08\x46\x70\xd6\x9b\xae\xa3\x33\x1a\xc8\x92\xce\xb8\xd9\x4b\x18\x4c\xc0\x21\x7e\x28\xca\x72\x47\x94\x63\xaa\xcf\xe8\xef\x46\x2a\xd3\x69\xba\x3d\x01\xa3\x26\xf9\xaa\xa3\x61\x13\x1c\xef\x16\x51\x45\xaa\x96\xc6\x57\x18\x6c\x9d\x6d\x6e\xdb\x29\xd7\xbb\xbc\xf9\xad\xb2\x10\xc0\x33\x62\x44\x25\xe8\x62\x53\xb1\x88\x49\xcd\x90\xb8\xce\xf2\xc1\x9f\x61\x67\x21\x15\xa9\x13\x39\xb5\x26\x9e\xd2\x24\x7b\x4c\x4e\xde\xbe\x12\xef\x20\xc3\x86\x23\x41\x85\x16\x6c\xee\x6d\x35\x40\x78\x6b\x3e\xb6\x44\x46\xfa\x85\x2d\x2b\xf4\x85\x8e\x8f\xe5\xd6\x9a\x12\x67\xe5\x15\x53\x8b\x9d\x9d\xf1\x1e\x88\x44\x56\xec\x60\xd2\xca\x16\x35\x56\xe5\xc2\x28\xd8\x0b\x96\xc4\x69\x4e\xf9\xba\x05\xaa\x7a\x55\xa8\x39\xd2\xae\x5d\x6b\xa9\x92\xcd\xa5\x62\x0d\x70\x00\xde\x28\x40\x68\x50\x6b\xd2\x4f\xaa\x79\xce\x92\x76\xa9\x9c\xb8\x1b\x14\xd5\x60\x50\x99\xab\x42\xae\x16\x01\x59\x74\xe3\x8c\x2c\x91\xf4\xb0\x35\x07\xc8\x19\x7b\x4b\x3b\xaa\xe3\xd5\x81\x75\xac\x66\x89\x5f\xaa\x7d\x93\xfd\x89\x19\x72\xae\x3c\xfd\x33\x6f\xac\xfa\xb4\x46\x52\xd3\x95\x6b\x2d\xb2\x51\x7d\xd6\x3f\x51\xc5\xf8\x43\xda\xd2\xec\x99\xcd\xda\x0e\x3b\xd1\x92\x16\x54\xac\x4e\x78\x43\x24\x82\x4e\x76\xd9\x35\x60\x38\xfe\xdc\x25\xea\x12\x55\x90\xf5\x40\x21\xc5\xbc\x1a\xb2\xed\x81\x00\x80\x09\x30\xa3\x1d\xeb\xf3\x71\x2c\x4e\x81\xe4\x52\x69\x6b\xa2\xf2\xe0\x70\x30\x40\xf5\xde\xec\x17\x68\xdd\xcc\xc2\xe9\x9a\x51\xc7\xc5\x02\x4b\x41\xe7\xf7\x86\x38\xca\xf0\x28\x20\x14\x6d\x20\x5d\x2a\x8c\xb9\x15\xe6\x1b\x6f\xce\x23\xfe\x74\x89\x65\xb8\xa4\x7d\x4a\x0b\x31\x58\xc7\x26\x3a\x92\x3f\xf3\x47\x91\x08\x31\x2c\x1d\x52\x6b\xad\x5f\x00\x50\x62\x05\x6b\x51\x8c\x81\xde\x7c\x09\xbd\x0f\x17\x8f\xee\xdb\x87\x0f\x16\x8f\xa0\xaf\x01\xf1\xb4\x0c\xe8\xb5\xa9\xe5\x60\x22\x9c\xc0\xac\x43\xd2\xf8\x1a\xa2\x75\x41\xe2\x44\x43\xb2\xc4\x82\x71\x49\x07\x03\x6d\x39\x08\x3b\xf7\x57\xd9\x79\xcb\xf6\x52\x16\x62\x86\xab\x9d\x2f\x48\x9c\x21\x5e\x57\x98\x9b\xff\x60\xa1\xc8\x09\x33\x72\x48\x9e\x01\xb7\xb2\xe6\xd0\xf8\xd1\xa9\x67\x0f\x5e\xb8\xcf\x71\xb2\x2e\x79\xdf\xb2\x7d\xc9\x6d\x95\xd3\x20\xb9\x79\xa4\x61\xf9\x18\x1f\x65\x41\x0d\x1e\x27\x4b\xe2\xca\x98\x35\xe1\x9b\x18\x34\x49\x1c\x1d\xb1\xec\xcc\x35\x18\x61\xcc\x7a\xea\xcc\x1b\x18\x5f\xb2\xb3\x82\x98\x19\xcf\x84\xb6\xcd\xbc\xab\x74\x39\xcc\x4a\x88\xf1\x25\xb1\xe0\x9a\x8e\x09\xee\x82\x37\x16\xf3\x86\xae\xf2\x72\x42\x6b\xfa\xf3\xfb\xc2\x2f\xc6\x97\xc4\x69\x4d\x55\xa1\x2e\x4b\x52\xe3\x8b\xc8\x2b\xd1\x2a\x6f\x16\x86\x6a\xfc\xb2\x13\x89\xde\xfc\x8a\x6e\x2c\x9d\xf0\x3b\xe2\x6a\x3b\xa3\x07\x3d\xab\x7c\x90\x8a\xbc\xce\xf3\xb8\x6b\xdb\x5a\x24\x55\x60\x43\x67\x00\xab\x82\x54\xd4\x45\xe5\xc6\x47\x70\x43\x03\xa1\x2e\x19\x83\x30\x2d\x1b\x31\x9b\x1b\xa7\xb1\xcc\x89\xe6\xc1\x77\x5a\xc3\x1a\xe8\x60\xda\x38\x0c\xb1\xe8\x3c\xd3\x7d\xd6\x33\x85\x63\x27\xf2\xa0\x30\xb6\xf6\xd8\xd0\xbc\x7a\x4a\x83\xd8\x7b\x65\x6b\x72\xdd\x35\x37\xbf\x2d\x77\x54\xf1\x1a\xb6\x90\xb1\x61\x4a\xb3\xc3\x0d\x9a\x54\x0d\x27\x33\xdb\x02\x87\x64\xc4\xc6\x8a\x68\x89\x00\xc6\x13\x83\x49\xb7\x24\x8c\x53\xf7\xbc\x40\xfe\xb0\x9e\xf6\xbb\x4e\xac\x39\xc9\xe4\x48\x8b\xea\x0f\x0b\xba\x81\x0c\xcc\x57\x6f\xeb\x7a\x6e\xb7\x30\x31\x3c\x8d\x2b\xb0\xe9\x84\xd8\xe7\x8a\xb5\x3c\x1a\xf1\x7f\x73\xf6\xb3\x0c\x86\x7d\x36\x75\xf0\x51\x44\x1a\x59\x0e\xab\xe6\x95\xb1\xb3\x3f\xe5\x77\xef\x54\x30\x66\xa3\x8c\x0a\xa0\x74\xde\xfc\x3b\x14\x59\x81\x25\xb6\xb6\x27\xd0\xef\x48\xaa\x7a\x3b\x94\x9e\x71\xc8\xf1\xe7\x70\xda\x4d\xde\x72\xc9\xb3\x48\x22\x76\xeb\x7f\xf7\xce\xfb\xa1\x9c\xfd\xad\xb9\xc5\x82\x7f\x7e\xfe\xf2\x83\xe8\xb3\xe7\x2f\x27\xe7\xc4\x54\x58\xff\x28\xa5\xf3\x97\x6d\x7b\xb0\xdf\x35\x25\x1b\x5a\xce\xc5\x0e\xf2\x3e\xbf\x2a\xeb\x7c\x85\xaf\xfa\xa7\x7c\xff\x60\xf2\x3d\x0f\x14\x7f\x48\xf5\x53\x3a\x90\xf9\x13\xfe\x20\xfe\x51\xb0\x1c\xdc\x04\xe3\x1b\x9f\x45\x32\x0f\xfe\xd3\x2b\xfe\x41\x4f\x33\x7c\x37\xf0\xf3\xb8\x29\xf0\x67\xe2\x61\xe5\x61\x9b\xb3\x48\xe3\x41\x77\x39\xed\x76\x92\x48\x1d\x8b\x14\x95\x0e\x70\x55\xb7\x37\x0d\xb4\x1f\xe3\xd7\x0d\xea\xfb\xbd\xc9\xfc\x1e\xe4\x33\xe1\x00\xbd\x56\x57\xb4\xe9\xfe\xf6\x96\xa7\x83\xa6\x6d\x71\x1d\x66\xe5\x6d\x71\x2f\x9a\x9b\x5f\x89\x99\xb3\x32\x00\xe3\x1a\x20\x59\x6c\x1d\x40\x33\xf9\x09\xf5\x11\xb0\xeb\x2c\xe9\x62\x9f\x7f\x4c\x2b\x32\xf2\xb6\x37\xbf\xca\x01\x73\xbc\xa2\xb0\x19\x57\x0b\x5b\x4e\x38\xa6\x6e\xb3\x3e\xb7\x41\x15\x98\xc4\x6e\xa9\x40\xa4\xc1\x50\xd5\x8e\x0e\xe4\x4a\x21\xbf\x23\xc6\x0d\x54\xe2\xee\x4e\x34\xb3\xaf\xfd\x55\x12\x1d\x63\x4b\x68\x2c\xcb\xd6\x5d\x2a\x65\xb6\x2d\xf6\x7b\xa7\x49\xf0\x4d\xa0\x58\x14\xfd\x6e\x8d\x74\x11\x42\x25\xd3\xf9\xcd\xaf\x0d\x5a\xe7\xaa\x50\xc9\xfb\x75\xc3\x85\xd8\x7c\x61\x0c\xe9\xbb\x39\x71\x88\x54\xa8\xc6\x6c\x18\xbe\xb5\x22\x61\x2c\x82\xe1\xb7\x5f\xb1\xb7\x39\x8f\xd5\x25\x01\x66\x50\x75\x60\x67\x3e\x56\xb9\xa5\x7d\x35\xa8\xed\x36\xdb\xb1\x4a\xb2\xa2\x5c\x81\x26\xbc\xea\xb1\x0b\x12\x8f\x48\xe6\x8f\xaa\x5d\x8a\xd4\x42\x2c\x9a\x24\xe4\x0d\x4c\x92\xae\xd3\xd0\x13\x28\x86\xad\x09\x9e\xfd\x7a\x9a\x9f\x46\x68\xf5\xab\x13\x16\x74\xa8\xb3\x78\x9e\x14\x54\x45\xd5\x57\x31\x76\x10\x48\xc3\x77\x9a\x91\xd6\x2a\x16\x06\x3e\x7c\x45\x90\xcf\x2c\x2b\x82\x4e\xf1\x92\x83\x7b\x63\x18\x03\xb1\xf2\x21\x2b\xc3\x16\x3e\x12\x4b\xa8\xc3\xb1\x2e\x88\x48\xa1\xdc\xfe\x75\x7d\xd0\x69\x55\xf8\x79\xfd\x4e\x07\xfe\x70\xbc\xa5\x79\x3a\x72\xe2\xe6\x3d\x92\xd2\xa6\xbd\x1a\x6e\x3e\xd2\x87\xd9\xa9\xaf\x10\xd9\xfa\xb9\x08\x22\xb8\x20\x77\x8a\x0b\x68\xdb\x42\x03\x93\x99\xb2\xf2\x4e\x67\x38\x0d\x73\x8d\x13\x7d\xa0\xbe\x63\xaa\x25\x24\xe6\x30\xcb\x4c\xe4\xc9\x98\x6e\xa7\x99\x08\x23\xce\x78\x75\xdd\x41\xcb\x22\x29\xb8\xbc\xf9\xd5\x62\x51\x79\xb1\x79\xfb\x91\xde\xb1\xf1\xe6\x49\xde\x88\x0e\x33\x96\x98\xed\xce\x5c\xcd\xde\x90\x14\x60\x54\xa3\x26\xfa\x54\xb2\xd0\xdb\xb8\x37\x54\xfb\x44\xa4\xa7\x2a\x4b\x8f\x2c\xcc\x83\xbb\x38\xd0\xa9\xbe\x66\x2b\x80\x65\xa5\x19\xda\x0d\xd1\x36\x9d\xbb\xbe\x0f\xd6\xc8\x99\x9b\x8f\x37\x25\x7d\x72\x25\x3e\xb2\x20\x3d\x54\xcc\x85\xf8\x9a\x30\xaf\x74\xa9\xe8\x6f\xdd\x03\xbc\x28\x59\xb2\xa8\xb0\xbb\x3a\xbf\x0a\x59\x60\x98\xd7\xe8\x28\x74\x16\x8e\xc1\xb1\x38\x6a\xc7\xa0\x23\xa3\xa5\xed\x88\x05\x93\x6b\xf1\xa7\x5e\x30\xc7\x51\x5e\x78\x3b\xa1\x27\x75\xea\xf7\xef\x58\x11\xe9\x0d\x82\x38\xae\xc1\x49\x87\x5a\xf0\xe6\x44\x0f\x67\x45\xbb\xa1\x83\x6f\x35\x42\x02\xde\xf2\xc5\xed\x1b\xea\x50\x15\x1a\x31\x3f\xfb\xaa\x62\x18\x50\x5e\xd8\x9f\x18\x43\xc6\xad\x1e\x99\xe0\xd5\xdf\x33\xbf\x18\x9f\x7c\xe9\x20\x2d\x0d\x17\x83\x99\x23\x77\x7c\x21\x5a\x3c\x5f\x37\x7b\x26\x46\x9d\xe1\xaf\xf6\x44\x67\x78\xfb\x50\x56\x6c\xfc\x1d\x76\xb2\x31\x37\xbf\x54\x7c\x43\x1d\x0d\xb0\xcd\x59\xd3\x5d\x34\x79\xb5\xdc\x46\x7b\xfc\xc7\xc2\x94\x93\xc7\xfc\xb5\xbf\xb5\x59\x94\xc4\x74\x60\x01\xd9\x42\xc5\x86\xf9\x92\x1a\x52\x59\xd3\x29\x9f\xec\x53\xb0\x28\xca\x15\xab\x2e\x9b\x46\x80\x70\x17\xe3\xeb\x2d\x3b\xdb\xd6\xfb\xb1\xea\x98\x01\x7f\x95\xed\x58\xf5\xef\x9d\xfe\xa5\x26\x91\xa5\xae\xa2\x5b\x98\x36\x72\x13\x20\x2c\xa5\x36\x1b\xd6\x3f\x8b\x96\xc4\xe1\xff\xbd\xa6\x0d\xab\xe6\x22\x51\x8a\x20\xa1\x42\xe5\x27\xcd\x8f\x10\x63\x67\xcf\x59\xc1\xc2\xda\xe5\xe0\xa7\xb3\xb3\xbc\xd9\x49\xfb\x02\x03\xdb\x1e\x60\x18\x11\x10\xa9\xa7\x7c\x0a\x41\x2d\x68\x2e\x08\x3e\xbe\x02\x65\x3e\xfd\xf9\x7d\xfb\x39\xb3\x38\x01\x51\x3b\x45\xa8\x79\xc8\x89\x9c\x9b\x4a\x94\x2e\x1e\xc5\x2a\x39\xc0\x2a\x3b\x39\xeb\x60\x30\xc9\xee\xdd\xb7\xf7\xa2\x03\xec\xba\x2b\x6f\x7e\xb1\x96\xb5\x12\x76\xa0\x10\xc7\x0d\x5a\x17\xe7\xdd\xe1\x1c\x3b\x46\x6c\xe2\xca\xa0\x6c\x4f\x1c\x77\xd6\xa6\xd9\xb9\xd8\x91\xc4\x4e\x57\xf1\xad\x24\x61\x4d\x84\x87\x70\x65\xc9\xd7\x49\xb0\xb2\xf5\xed\x6b\x2b\x43\xcc\x5c\xed\xfa\x6e\xab\xd2\xe7\xae\x58\xcd\xbe\x2b\x56\x18\xef\xa1\x5b\x50\x83\xde\x11\x25\x5e\x19\xeb\x3d\x52\x9c\x57\x12\xdf\x5a\x3c\x8d\xee\x02\x13\x3d\xf4\xe6\x57\x5f\x17\xbb\xc7\x1a\xdc\xb0\xb2\x58\xcc\x3b\x8b\x4d\xa3\x6a\x76\xb0\x07\x73\x4d\x9b\x82\x39\x47\x74\x13\xc7\xfa\x9f\x3a\xdf\xb0\x64\x72\x92\x59\x5a\x6a\xa3\x75\xc1\x64\x2f\xcd\x62\xb2\xc8\x2d\x96\x0f\x17\x8e\x24\x68\xca\x5c\xc5\x62\x25\x7e\x63\x7c\x8b\x8c\x6b\x17\xda\x6d\x7b\x5c\xd9\x84\xbd\xb6\x86\x87\x0c\x1f\xf7\xdf\xd7\xb0\x14\x61\x33\xd2\x36\x6f\x32\xd1\xb1\x86\xfe\x5e\x65\x2d\xd8\x9e\x9d\xb7\xb8\x35\xc0\x9a\x75\x87\x15\x0c\x8e\xe9\xea\xb2\xb9\x9b\xce\x35\xab\x37\x12\x29\x90\x37\x28\x0f\x81\x5b\xbf\x0f\x47\x5d\xb6\x02\xc3\x18\xc0\xc9\x72\x24\xc0\x62\x9a\xf2\x55\x4e\x88\x49\xfd\x8a\x7b\x1e\xb0\xe5\x2e\x23\x62\x6f\xd7\x39\xac\xf6\xdf\x30\x3b\x25\x6e\x4b\xeb\xd4\x36\x60\xdc\xb0\x76\x64\xf6\xe6\x97\xbd\xee\xca\x37\x45\xb5\xb3\x82\xd4\x55\x7c\xfe\xb4\x8d\xc1\x2a\x4f\xd9\x86\x46\x84\xde\x01\x59\xf0\xca\x1b\xf7\x27\x32\x72\x1c\xa7\x2c\x26\xd8\x9c\x48\x7c\xe9\xae\x31\xfa\x95\x59\x13\xbf\x95\x45\x15\x96\x33\x5e\xd7\x5f\x5e\xc7\x17\x8e\x36\x98\x58\x3c\xc3\xd2\x13\x1d\x4e\x09\xca\xf3\x20\x2f\xe0\x9e\x06\x6e\x6c\xdb\xba\xb6\x6a\x32\x96\x21\xc1\x62\xec\xeb\x92\xc6\x77\x79\xf3\xcb\xb6\x8c\xd6\xd1\x8d\x9c\xff\x89\x2f\x5f\x86\xeb\x0e\x15\x99\x04\x40\x1d\x2f\xb3\x93\x79\xb1\x87\x0f\x20\xb4\x95\x2d\x9d\x2f\xb0\x6a\xac\x20\xe9\xf1\xe5\xad\x57\xa3\x48\x9a\x28\x57\x53\x18\x0f\x7a\x73\x0e\xf7\x52\xaf\x01\xb6\xd0\x15\x0f\x38\x6b\xdc\xc8\x69\xe3\xc0\x63\x85\xf6\xdd\x49\x6c\x6c\x8a\xb8\x15\x11\x04\xdf\x79\x4e\x7b\x53\xf3\x14\x2a\xdb\x7b\x64\xa2\x6a\xf6\x8c\x28\x97\x19\x9e\x12\xe5\xd0\x08\x24\x34\x08\xce\x54\x46\x62\xf0\xa9\xde\x0a\xd9\xe8\x56\x1f\xeb\xe0\x01\xc4\x76\x1f\x0a\x47\xf4\x8a\x61\x1b\xa3\xfa\x44\x6f\x64\x61\x0f\xba\x4a\x7e\x9f\x90\x74\xd1\xb1\x78\xc8\xe2\x0b\xb1\x2f\xb9\x8d\x15\x6b\xea\x9e\x6d\x82\x55\xe8\xcb\xdd\x09\xf0\xf4\x59\xe1\xb2\x3d\x3d\x2b\x78\x16\x8e\x17\xc7\xde\x85\xa2\xb1\x45\x9c\xf5\xd0\x14\x7b\xbe\x34\x1c\xd3\xdd\x98\x11\x8e\x70\x4c\x70\xd9\x5c\x0e\xee\xc0\x13\x13\x0d\x0f\xcd\xe6\xcd\x15\x71\x20\x6e\xde\x7f\x50\x23\xf2\x69\x69\x43\xcf\xae\x4b\xef\x58\xe6\x4e\x12\x05\x7e\xe3\x4f\x92\x7c\xb5\xe2\x6d\x24\xdf\xd9\xc3\xb2\x37\xec\x6d\x51\x5d\x77\xe2\x46\x25\xe0\x66\xc4\x8e\x75\x04\x6a\x9e\xd8\xe9\x61\x92\x3e\x66\x9b\xdf\xff\x8e\x61\xde\x89\xab\xb1\xc2\x90\xe1\xfe\xfd\x15\xd8\x21\xdb\xe8\xa1\x82\xc1\xa8\x17\xcc\xf4\x7c\x5b\xeb\x8d\xf3\xce\x56\x9a\xdc\x8a\x0c\x4c\xf3\x61\xec\xe9\x86\xaa\x46\x50\x23\xe3\x85\xcf\x62\xb9\x61\x8f\x24\x41\xc3\xc6\x00\x11\xb2\xbb\x94\x8c\x8e\x88\x09\xa9\x97\xea\x8a\x55\x9d\x1e\x44\x82\x58\x34\x23\x94\x06\xee\x5f\x38\xc3\xfa\x1b\x5c\x04\xf1\xf1\xda\xf4\x14\x23\x39\x00\xfc\xad\xc2\xd0\xc0\xcc\x6a\x1b\xfb\x0a\xb1\x3e\x29\x67\x74\xbf\x3e\x1d\x3d\xba\x37\x0d\xb6\xd8\x54\x06\xa2\x9c\xfc\x21\x09\x8e\x75\xb5\x79\x04\xc5\xa3\x81\xb3\x0b\x8d\x8a\x1d\xc6\xbf\x79\xf8\x40\x8b\x32\x36\xeb\xfa\xe1\x9e\x56\x25\x9d\x38\xc0\x3e\xec\xd5\x0f\xf3\x8c\x96\x70\x3d\x83\x54\xf6\xe8\x59\x73\x6d\x3a\xe7\x09\xd8\xb3\x70\x3e\x7c\x90\x3f\x12\xd9\x3c\xa9\xa2\x9e\xaa\x10\x8e\xd4\xe5\x0f\x7e\xda\x82\x08\x2d\x33\xa8\x3a\x0d\xc4\xfe\x29\x68\x26\x98\xc8\x0c\x23\x3e\x24\xec\x85\x10\x49\x49\x20\x41\xdf\x84\x55\x72\x88\xf7\xac\x6b\x88\x4f\x7b\xb1\xe7\x10\xff\x8f\x5b\x68\xa2\x16\x3c\xbf\x82\x0e\x4a\x6d\xbf\x15\x27\x46\xaf\x37\xa8\xdd\x87\xda\x75\x6d\xce\xfa\x06\x60\x14\xf0\x25\x31\xed\x34\x19\xb3\x27\x2c\x4f\xcf\xd8\xe4\x7d\x3a\x11\xe9\xfa\x76\x7a\xfe\xcc\x33\x91\x11\xfc\x95\x09\x47\x21\x71\xeb\x65\x54\x33\xcb\xf7\x6a\xc8\x60\x1c\xfc\xd8\x95\xee\x36\x55\x30\x05\xd5\x86\x8f\x4d\xaf\x60\xbc\xf6\x7b\xae\x8a\xf4\x0b\x34\xcf\x33\x69\x71\xee\xf9\x8d\x90\x22\x51\x26\xa1\xfa\x8e\x98\x42\xaa\xec\xbf\x67\x1f\xf2\x44\x30\x8d\xf7\xa6\x48\xea\xdf\xfb\x3d\x61\xdc\xed\xaf\x4a\xed\xf1\x2e\xd5\x4b\xe4\xa3\x9b\x30\xec\xac\x10\xff\xd0\x68\x3b\xfd\x6d\xe6\x7b\xe4\x23\xe0\xd8\x56\xeb\xaa\x05\x6d\xd1\x59\x0c\x1c\xcc\x3f\xae\x38\x30\xab\x22\x6d\x97\xb7\x98\x8e\xc3\x09\x81\xba\xcc\xd2\x46\xc2\xa6\x72\x6e\x64\xde\xd6\x30\x55\x7e\x2f\xb3\x46\x23\xb4\xcf\xed\xcd\xaf\x95\x52\xec\x8f\x1d\xf8\xac\x9d\x7c\x00\x98\x75\xce\xbd\x7a\x85\x2f\x75\x45\x08\x60\x80\xcc\xe8\x9e\x26\x35\x99\x2b\x78\xe4\xa9\xb3\x5b\xa3\x10\xc0\xb4\x34\xe9\x5d\xb7\x30\x78\xf5\x7a\xf5\xce\x9a\x30\x05\x4d\x4e\xdf\xbf\x8a\xc8\xc7\x6b\x07\x7e\x00\xd2\xc7\x59\x4d\x1b\x88\xc4\x7e\xea\xa0\xcc\xbb\x45\x4b\x62\xc1\xca\x0f\xeb\xa2\x66\x17\xf1\xa4\x79\x2f\x28\x4f\x75\xb0\x6a\x4a\xc5\x9f\x7a\x8b\xe3\x27\x2b\x13\xed\x4f\x31\x2d\x96\x65\x31\x56\xf1\x91\x20\xce\xef\x36\x16\xd0\xda\xcf\xd4\x16\xb5\xab\x0f\xe1\x36\x37\xc6\x7b\xbf\x3a\x8b\x38\x2c\xf8\x90\x60\x01\x22\xb4\x99\x3d\x60\x93\x38\xd9\x19\x61\x26\xf0\xa4\x33\x6c\x06\x51\x94\x86\x4d\x2c\xe3\x0f\x92\x40\xfc\x39\x88\x5a\xb7\x0c\xc0\xe9\x2a\x6a\x36\xf9\x8c\x9d\x61\x0a\x6b\x9d\x67\x15\x3b\x3e\xea\xbd\x69\x50\x74\x21\xc5\x27\x22\x37\xd3\x9f\x76\xee\x2e\xb5\xfb\xfa\xae\x16\xeb\x45\xb6\xda\x7f\x58\x48\x12\xa9\x2a\xd2\x70\x56\x79\x87\xd3\x9f\x4e\x36\x57\x9d\x65\x2b\xb6\x1d\xba\xa3\x8a\x9d\xb6\xc2\xe9\xc4\x97\x8a\x1b\x12\x25\x37\xc5\xa6\xa7\x71\x06\x57\x83\x79\x6f\x88\x03\xc4\xb9\x60\x12\x75\x71\x57\x77\xbf\xc1\x1c\x1c\x98\x6c\x02\x35\xd6\xad\xf2\x05\xe9\x11\x6c\x96\xb2\x83\x79\x40\xed\xd1\x56\x4e\x9c\x7f\x44\xaa\x0c\xb2\xdd\x02\x66\x9b\x9f\x48\x58\x67\x33\xb1\xb3\xfd\x46\xd7\x1f\xc3\x0b\xc9\x70\x33\xa2\x47\xf9\x8b\xae\x1d\x18\xe0\xd5\xcf\x6a\xd7\x35\xd7\x27\x60\x74\x24\x7b\xfd\xb2\xb1\xf9\x9e\xb1\xea\x10\x4a\xdf\xaf\x8b\x4d\xde\x90\x50\xe5\xd1\x4a\xeb\x7a\x41\x4b\xbc\x28\x4a\x30\xf4\x73\xd0\x04\xa9\x35\xa4\x27\xb5\x5a\x80\xef\x41\x88\x38\xd0\x36\x5d\xd2\x19\x61\x67\xf7\xba\x22\x6b\xcc\x2a\x83\x5f\x13\x8e\xf7\x82\x54\x19\x43\xd2\x20\x40\x1e\x25\x81\x41\x88\x1e\x12\x4b\x64\xe4\x15\x97\x2f\x24\x8a\xa8\xd2\x72\xf6\xa0\x3e\x95\x8f\xe0\x65\x17\xb5\x2b\x19\x8c\x22\x1e\x24\x33\xa7\x38\x26\xa9\x4a\xec\xb5\x91\xc2\x42\x7c\x48\xd4\x90\x45\xee\xf0\xad\x8a\x3d\x42\xf0\x4c\xb1\xa0\x5e\xf5\x3b\x2e\x9d\x43\x24\x99\xff\xe4\xfa\xff\x81\x95\x56\x39\x4e\xa6\x9b\x82\xb0\x59\xd5\x8d\x6a\x99\x74\x80\x16\x4b\xe2\x8d\x66\xf6\xa6\xb8\x36\xd5\xb5\xff\x3d\x56\x59\x40\xa0\x07\xc3\x5c\x5f\xb4\x84\xa4\x7c\x95\x90\x00\xcb\x1a\xdf\x3e\x3b\x7d\x7a\xf6\x6c\xba\x5f\x65\x00\x2a\x22\x2d\x58\x7d\xb2\xfa\xb8\x8d\x7c\xb1\x48\x79\xcd\xbb\xd2\xd9\x3c\xc5\xba\x92\x37\x2b\xb5\x76\xba\x20\x31\x52\xfa\x88\x21\x5d\xc0\x10\x26\x8e\x61\x93\x57\xfa\xa1\xcc\xbe\x28\x2a\x27\x9a\x7f\x79\xc4\x08\xd8\xbf\x0c\xf2\x36\xc0\x91\x9b\xb3\xdb\x2d\x81\xbd\x96\xec\x5e\x4c\x81\xbe\xc1\x31\x53\x60\x65\x60\x06\xe8\xda\x2d\x1b\xfe\x69\xd9\xad\x6a\xe3\xde\xbd\x04\xd3\xdc\x08\xbb\xc7\x8d\xbd\x0f\x6e\xb3\x1c\x2a\x14\x97\xc5\x61\x08\x71\x78\x5b\xa1\x7a\x21\x18\x58\xb2\x09\xd8\xab\x6f\x51\x76\xe6\xde\x23\x45\x1d\x5f\xa1\xeb\x36\x08\x8d\xf7\x97\x08\xdf\x9d\xd7\xbc\x80\x4c\x39\xa6\x61\x4e\x72\x19\xb4\x96\x99\x53\x5e\xf4\xa0\x39\x06\xa7\x0c\x2a\xd7\x6b\x17\x26\xab\x10\x27\xf1\xe0\xc5\xab\x0f\xb8\x2b\xf6\x8e\x37\x59\x59\xef\x58\xd4\x11\xaf\x75\x0e\x2b\xd2\x40\x12\xd7\xbc\xbb\x37\x82\x45\xae\x14\x67\xd6\x37\x5a\x89\x43\x8a\x12\xef\xd5\x93\x6c\x78\x1b\xa6\x01\x0b\xce\xda\xf2\xae\x59\x55\x7c\x45\x23\xdb\x99\xd6\x8a\xb7\xfa\x0b\x83\x5f\x6d\xb4\xcf\x39\x68\x82\x44\xc3\xf5\xec\xfc\x95\xf1\xb2\x05\xb7\x11\x21\x8e\xdb\x90\x7b\xa2\xac\xd8\x02\x62\x63\xb6\xb8\x96\xe6\x33\xe0\x70\x35\x2f\x8b\x6a\x47\x27\x93\xc3\xda\x12\x5e\x2a\x74\x5c\xce\x51\x48\xc2\x76\xf6\xe3\x25\xdb\x43\x61\xf4\x22\x59\x2a\xc2\xef\x12\x7f\xad\xb4\x6a\x9b\xbd\x7b\x8d\xca\x40\xb5\xa3\x89\xbe\xe6\x24\x7e\xcf\xaf\x01\x53\x7d\x23\xca\xd3\xa6\x58\xf0\x11\x4f\xaa\x8f\x5c\x36\xcc\xee\xcd\xa9\x9f\x6a\x77\x2f\x52\x85\xb8\x32\x74\x9d\xcf\x20\x17\x5e\xf2\x0d\xfb\x63\x53\x2f\x70\xa0\x09\xdd\xaa\x31\x20\x2d\x12\x31\x12\x86\x7a\x67\xa5\xd7\xe0\x98\xad\x59\x38\x13\x7e\x54\x22\x58\x8d\x58\x2a\xef\x15\x65\x7a\xaf\x9d\xc7\x56\xc4\xfa\xfe\xd2\x01\x53\x9b\xae\x58\x99\xd9\x6b\x3a\x47\x72\xa7\xff\x39\x3c\xb4\xdb\xc2\x46\x37\x4a\x49\x2c\xd3\xae\x14\x4b\x78\xe4\x25\xca\x7c\x73\x29\x6e\xe0\x3e\x06\x97\x89\xb0\xea\x05\xa0\x82\xcb\xb5\x50\xcd\x56\x2c\x84\x8b\xe3\x38\x09\x44\xa5\x81\xe1\x1c\x2e\x28\xa0\x30\xe9\x9a\xe3\xa0\xf9\xee\x89\x9b\x72\xb4\xc7\x0e\x72\x71\x93\x2c\xb4\x0e\x9b\xbb\x7b\x47\x39\xa1\x63\x80\x6d\x63\x48\x3f\x6b\x9b\x8e\x84\x9d\xc6\x95\x72\x5c\x70\x9b\x6f\xac\x82\x51\xd3\xff\x05\xaa\x89\x75\x00\x26\x94\xe0\x5a\x09\x8e\xb7\x1e\xf1\xec\x8a\x95\x06\x81\x96\x24\x38\x94\x76\xf6\x06\xff\x60\xa7\x95\xc6\xb6\x84\x2f\xf6\xc6\x2d\x35\xb4\x05\x31\xcb\x34\x56\x62\x97\xb3\x27\xf2\x2f\x8e\x9e\xd2\xe4\x84\x69\x08\xf9\x91\x3a\xaa\x9d\xb0\xc5\xbb\xc9\x2f\x67\xdf\xd6\x5b\xfd\x45\x2b\xc4\x81\xa3\xdf\xb3\x28\xbd\xd6\xaf\x1c\x8c\x01\xc0\xd3\x8a\x23\xc8\xb3\x50\x81\x08\x1b\x01\x9f\xb4\x65\xde\xbb\xbf\xd8\xda\x28\x23\x98\x0e\x46\xe4\x0a\x34\x6c\xf5\x69\x47\xff\x17\x77\xf2\x01\xc8\x1a\xfa\xd0\xf3\x42\x48\xd9\x7d\xcc\x99\x45\x2b\xa7\x0e\x9f\x89\xd5\x5b\x98\x6e\xcf\x40\x08\x45\x29\x44\xa7\x65\x2b\xf6\xca\xcb\xdb\x6e\x1f\xbe\x89\x0b\xf6\xcd\xbf\x97\x62\x11\xd7\xaf\x44\x75\x46\x6c\xcc\x0d\xdf\x80\x33\xf6\xf1\xd5\x59\x3b\x5d\xb4\x6c\x28\x99\xc6\x4b\x63\x93\x92\x0a\xa7\x3e\x7d\x15\x6b\xb0\xae\x5d\x54\xbe\xa4\xb5\x69\xe6\x49\xfd\x58\xe3\x8b\x20\xfd\x82\xc7\xeb\xdd\xef\x2b\x00\x71\x7f\xc7\x20\xa5\xd7\xd1\x16\x8f\xf4\x5e\x1f\x48\x53\x08\x15\xde\x81\x8c\x4c\x96\x52\x5e\xd2\x41\x6d\xe1\x21\xea\x2b\xbc\xe0\x8b\xf3\x1a\x06\xd5\x5b\xaa\xe5\x96\x23\xe5\xcd\xec\xc7\x2e\x5c\xf7\x8c\x8c\x7c\x0c\xee\xd8\xc8\x61\x6a\x70\xe0\x8c\x94\xd1\xb6\x85\xe5\xc8\x5e\x8b\x45\x9f\xd0\x90\xae\xa3\x10\xc1\x60\x21\xa5\x74\x7e\x28\xf3\xa5\x51\xdf\x7e\x86\x61\x09\x84\x23\xb2\x93\x8e\xb4\x31\x06\x19\xe9\x8e\xb1\xdd\xe6\x8b\xd9\xfd\x15\x22\x54\xa2\x12\x46\xac\x2b\xda\x04\xa4\x7a\x00\xda\x90\x70\x14\x8f\xda\x1f\x2d\x22\x81\x09\xc7\x24\x2c\xf4\x81\x32\xa9\x41\xbe\x4b\x69\xfb\x55\x6e\xa7\xbd\x3e\x50\xbf\x6d\x8e\x6a\x93\x86\x89\x97\xde\xd2\x82\x5f\xa7\xc7\x86\xf8\x0e\xf8\x73\x1b\x2d\x51\x00\x42\xc0\xf4\x68\x2f\xbe\x93\xd1\x35\xd6\x06\x58\x7c\xfb\x00\xa1\x6d\xf8\x7d\x8a\x80\x12\xe5\xbb\x1c\x09\xec\xac\x8a\xe3\xc0\x56\x13\x3b\x90\x64\x70\x55\x77\x74\xa2\xe1\xe2\x8a\xe6\x8a\x93\x6d\x30\x3b\xae\x22\xcb\xbf\x9a\x2f\xae\xb8\x86\x9e\x68\xad\x33\x8f\x8c\xd6\x81\x61\x83\x04\x4d\x84\xa2\x49\x1d\x4c\x13\x42\x0b\xae\x3f\xfa\x35\x2c\x1c\x63\xcf\xe9\x7f\x2a\x90\x0c\x4b\xa7\xc8\x7a\x61\x35\xf0\xa2\x1d\xcc\x8c\x41\x40\xc1\x04\xc2\xbc\xf1\x18\x4c\x63\x48\x27\x69\xe5\x62\xca\xdb\xf9\xd2\xcb\xd2\xb1\xce\xe9\x2c\x72\x95\x4e\xf7\xa4\xed\x92\x2a\xce\x9e\xf5\x22\xf6\xfd\x6e\xfd\x7d\x6d\xdb\x25\x07\xf7\xb4\xa8\xbf\x37\x05\xd7\x96\x78\x9f\xf6\xf6\x6e\xa3\x7a\x97\xa6\x2a\x36\x47\x6b\x62\xff\xf1\x22\xcd\xe4\xc8\xac\x4c\x9b\xdd\xff\xf3\x57\x3f\x59\x5e\x27\x6f\x92\x7e\x70\xff\xcf\x7f\xf8\x89\x64\x31\xfe\x07\xb2\xd8\xb0\x81\xf9\x3a\xdf\x99\xd1\x56\xb8\x92\xaf\x70\x68\xcc\x45\x51\x77\x16\xd9\x48\xb6\xa6\x81\xdf\x9e\xe6\x29\xf1\x3c\xe6\x23\x2d\x99\xc6\x21\xf4\xca\x84\x5d\x48\x80\xf2\x90\x5b\xac\xb4\xe8\xc5\x08\xb7\xa8\xba\xfd\x5c\xb1\x62\xc1\x51\x5e\xcb\xdf\x79\x13\x1a\xd7\x62\xa8\x47\xed\xec\xe7\x08\x5b\xb0\xbb\x12\x2a\x8a\x15\x09\xa4\x98\x95\x93\x4e\xff\x49\x7e\x05\xac\xfc\x1c\xba\xab\xbd\xc5\x3a\x91\x74\x17\x85\x1d\x09\xaa\x14\xa3\xf6\xb4\xc7\xfb\x24\x67\xc5\xb9\xbf\xc7\xe9\x15\xeb\x70\x07\x60\x62\x19\xf2\xa3\x8f\xea\x35\x86\xf1\x27\x15\x7e\x40\x10\x58\xe3\xd6\x6b\x00\x94\xb6\xde\x03\x3e\xde\x85\x32\x7d\x47\x7f\xaf\x47\x61\x64\xad\x80\xe4\x88\xaf\xff\x0d\x48\x96\xa1\x6a\x53\x97\xc9\x10\xff\x96\x35\x3b\xd4\x9c\x6b\xc7\xc9\xde\x81\x45\x71\xec\x9e\xf8\x86\x07\x4a\xec\x59\xa4\xf4\xb3\x0b\xfc\x21\x65\x82\x34\x34\x1c\xc4\x68\xb4\xa2\x29\xfa\x0b\xda\x14\xb6\xa8\xe6\xce\xc9\x9c\x55\x0d\xb9\xce\xb3\x62\x5e\x47\x50\x83\x3a\xa0\x15\xd7\x1d\xc9\xde\x6c\x6f\x7f\x99\x8b\xad\xcc\x99\x0b\xd4\xc3\x40\x4c\x70\xdf\xa4\xf7\x48\x2e\xfa\x97\x8d\xce\xf1\x8a\x25\x9b\xd8\xac\x0a\xf8\xc5\xe6\xcd\x02\xbb\x2d\x1a\x61\x7e\x81\x1c\x41\x1a\xe3\xe8\x3f\xcb\xb9\x2a\x7b\x4d\x8e\x53\x31\xbd\x25\xc5\xcb\xba\xac\x55\x34\xc8\x9e\xa3\xe5\x41\x39\x0c\x8e\xb4\x13\x7b\xb2\xa4\x94\x06\x42\xb5\x5e\x34\x18\x39\xa3\x04\xf8\xd8\xf0\xa5\x54\xbd\x8d\x82\x69\x33\x29\xd5\x50\x08\x19\xa7\x78\x99\xb1\x38\x3d\x6c\x02\xee\x36\x02\x26\x4d\x1d\x07\x0b\x56\x06\xd7\x29\xaf\x91\x0a\x53\x5e\xec\x65\x86\xc0\x06\x39\xb6\xd9\x47\x97\x2c\xc4\x11\xa4\xdd\xec\xec\x88\xa7\xcc\xb1\x9e\x9d\x89\x5b\x06\x3a\xbc\xfa\x0a\x86\x6d\x71\xb3\x2a\x4b\xe6\x7b\x07\xe2\x83\x73\xf1\x4c\xb0\x33\x8f\x05\x19\xd4\xa6\x14\xb7\xea\x23\xe0\x32\xd9\xef\x3d\x1c\xe7\xc3\xca\xbc\x22\x08\x4e\x61\x22\x6d\x16\xd7\xda\x51\x06\xa0\x90\x8b\x22\xea\x75\xea\xba\x22\x2e\xda\x18\xdb\x95\xc4\xb2\x45\x05\x7f\x06\xc3\x58\x55\xa8\x17\x80\x3a\x95\xc8\x5d\x8f\xd7\x12\xbd\x06\xd3\x93\xc0\x22\x88\x11\xa9\x33\x2a\x3d\x2e\x79\xf6\x81\x56\xf1\x51\xc3\x8e\xbe\xf1\x30\xea\xf9\xaa\xa3\x5d\x8d\xf3\x9f\xe5\xb6\xe7\x37\xbf\x94\x65\xb1\x81\x1d\xd6\xae\x44\x41\xeb\x8d\xc9\x1d\x6a\xfd\x7e\xd2\x13\x2d\x9d\x2a\x2d\xf9\x62\x6b\xf2\x55\xc4\xb9\xe2\x79\xf3\xc6\x57\x07\x3c\x09\xfd\x87\x9a\xaf\xe4\x95\xf6\x24\x8a\x41\xa2\x21\x05\x79\x3d\x02\x94\x8d\xff\x81\xb6\x5a\xa2\x9d\x4f\x47\xec\xc3\x71\xa9\xc3\xc5\x00\x0d\xd9\x17\x2e\xf7\xc8\x97\xbd\xa9\xd3\x96\xa6\x06\x1b\x75\x7a\x4d\x0a\x7d\x18\xba\x36\x0b\x8e\xbb\xa7\x73\x40\x92\x7d\xf0\x9d\xf6\xa0\xa3\x5e\x2c\xf9\x34\x7b\x66\x35\xf6\x85\xb6\xaa\x56\xfc\xfc\x4f\xb4\xc1\x26\xfb\xfd\x64\xb5\xfa\x5c\x83\x60\x46\xb0\xe4\xf7\x59\x8c\xad\x23\xb7\xcd\xfe\x2e\x2c\x69\x87\x79\x56\x5c\x7b\x11\xf1\xaf\x1e\x5c\xb4\xc4\xea\x57\x27\x96\xcb\x05\x4c\x9e\x4d\x6a\x98\x0a\x1b\x2a\xd6\x3d\x7d\x48\xdd\x99\xd1\x40\x6f\x67\x1a\xe6\x0b\xc7\xa2\x69\x06\xf3\x1c\xb8\xcd\x45\x85\xca\x34\xe3\xe1\x7b\xbf\xaa\xe1\xd8\x05\x53\x31\x57\xc1\xea\x44\x95\x6d\x84\xba\xaa\xc7\xae\x7c\xc6\xa1\xcf\x7a\xb4\xa6\x1c\x39\x1e\x43\xb8\x96\x1a\x81\x14\x3e\xe5\x19\xb2\x5e\x4b\x25\xa3\x60\x9b\x35\x5f\x62\x43\xb7\x81\x99\x94\xb5\xed\x57\x95\xd0\x96\x78\x2f\x15\x8e\x5f\xcb\x1e\x0a\xba\xf8\x34\x3b\xaf\x89\xb1\x81\x49\x6f\x8c\xb0\x69\xbd\x6f\xfb\x66\x7c\x40\x63\x34\x74\x9c\x57\x1f\xcb\xd8\xe6\xbe\x4f\x65\x13\x59\xcd\xdc\x93\x14\x45\x11\xf2\x84\x32\x52\x19\x73\x08\x02\x42\x6f\x11\xd8\xb6\xae\x77\x16\x5e\xa6\xfc\x47\x54\xb0\x29\x5a\x29\x43\xba\xa8\x97\xbd\x42\xf8\xbd\x2e\x43\x66\xb8\x17\x0d\x2e\x3f\x8e\x8c\x71\x85\x23\xa3\x99\x5f\x8b\xa1\x44\x90\x84\x1f\x11\x08\x7b\xba\xbe\x0b\xc9\x2a\x82\xd3\xab\x07\x51\x17\x41\xdf\xe5\x69\x50\xa5\xe0\x75\x75\xac\x73\xf5\xbc\x83\x5d\x94\xaf\x0e\xf9\xf2\x65\x95\xde\x5b\xd8\xd8\xb3\xf5\x58\x4d\x21\xa5\xfe\x35\xce\x3f\xc6\xcb\x75\x60\x3a\x8e\x9d\x5d\xfd\x00\x5b\x3a\x6e\xed\xda\x0b\xa4\x71\xc8\xc1\x08\x94\x8c\x3f\x32\x0d\x0f\x7b\x11\xbf\x2a\xf1\xdd\x0b\xd1\x06\x21\x22\x39\x0d\xbb\x70\x71\x31\x34\x4f\xc9\x6c\xf1\x2d\xe7\x71\x91\x0c\x13\xd1\x00\x38\xe7\x21\xc7\x36\x21\xb0\xc3\xca\xad\x98\xa6\x58\x6c\xb2\x67\xd8\x6d\xed\xcd\x6f\x48\x90\x85\x9c\x56\x91\x7c\xdb\xb3\x7e\xb3\x3f\x91\x93\x4b\xc4\xa3\x28\xee\x46\x25\xbe\xa8\x4e\xe0\x0c\x3d\x20\x41\x85\x44\x66\x0f\x90\x10\x82\x27\x0a\x84\x5c\x3b\x1d\x4e\x95\xb6\x1f\xcc\xc6\xc5\xee\x4e\xa1\xa6\xb2\xd3\x87\x44\xd8\x7c\x36\x86\x74\x64\x7a\xa2\xfd\x3e\x7b\x78\x78\x34\x09\x0e\x0e\xab\xc8\x5b\x83\x58\x71\xa9\x61\x3e\x6b\xe2\x31\x62\xe0\x77\x5e\x85\x3e\xea\x09\xff\x5d\x9b\x32\x89\xb0\x42\xd8\xcf\xc3\x07\x87\x47\xfd\xb6\x79\xa0\xe2\xe0\x40\xe8\x94\x10\xcb\x5b\x1b\xef\x05\xbe\xf0\xbc\x39\xc3\x5a\x87\xb3\xa2\xd8\x0a\x35\x68\xa0\x99\xde\x25\x69\xdf\xc7\x37\xa8\xe7\x74\xd1\x96\x71\x5c\xaa\x67\x07\x19\xa2\x4d\x14\x2d\xa1\x90\xa0\x6e\x79\xb8\x7d\xbe\x23\x59\xcd\x91\xff\xef\xd0\xbd\x38\xae\x24\xf7\xa6\x42\x74\x74\x3a\x0e\x0f\xee\xa8\xb1\x69\xc2\x4c\x63\xd7\x89\x48\xaf\xf0\x10\x70\x16\x0b\x2c\x97\xb4\xa0\xb3\xa2\xd5\xc3\xbd\xe9\xf9\xe4\x1d\xab\x12\x0e\x87\x7e\x55\xf5\x3e\x8b\xea\x36\x66\x5f\x73\xde\x9a\xdf\xa9\xee\xd4\x8e\x78\xa1\x10\xbd\x57\x70\x8c\xd5\x5c\x52\x63\xcc\x92\xc0\x3b\xb9\x91\x8c\x42\x43\xf7\x2e\xf6\xca\xbb\x9f\xa8\x35\x8b\x08\xea\xd8\x50\xa3\xa0\xae\x78\xba\x97\x72\xce\xb8\xf3\xe6\x08\x62\xf8\xdc\x71\xbb\x54\x0e\x26\x75\x7c\x82\xa8\x80\xb0\xe5\xe6\x24\x33\x1f\x5b\x76\x40\xd3\xc4\x67\x4c\xaa\x7c\x68\xeb\x6e\xba\xc4\xfe\x36\xed\x65\x6e\x39\xec\x1c\x21\x74\x70\x76\xa8\x9c\xff\x68\xb4\xe7\xe1\x97\x2d\xa9\x4b\x34\x6d\x20\xfb\x62\xad\xdc\x6d\x31\x69\x2f\xef\xce\x3f\x4c\x9c\xf6\x92\x8b\x30\xc0\xa9\xba\x24\xec\xb1\x92\xfc\x80\xa4\xa9\x30\xb7\x17\x7f\xa5\x02\x16\x13\x88\x6a\xfb\xdb\xaf\x3a\xfd\x0c\x5f\xe0\x5a\x51\xfd\x3b\x07\xa7\xb0\x66\x16\x75\x47\x71\x9c\x64\x8d\x3e\xba\x58\x3f\xe1\x9e\x1b\x23\xc2\x67\xea\x4b\x1e\x12\xb4\x49\x02\x83\x90\x48\x8a\x3e\x49\xa3\x2e\xd2\x91\xfd\xff\x3a\x76\x18\x0c\x12\x2a\x8b\x93\xec\x81\x45\xfc\xe2\x60\x1a\x27\x1b\x81\x33\x75\x0b\xbe\xc3\x1a\x19\x38\xeb\xe9\x11\xc3\x05\x71\xa1\xb3\x60\x10\x2d\x2e\x84\xe3\xa8\xfb\x53\x93\x39\x07\x8c\x42\x3c\x55\x25\xc6\x80\x26\xf3\x26\x87\x0a\xb8\xf2\xa6\x33\x8e\xc6\xd7\x78\x0b\x6d\x94\x68\x20\x4e\x15\x37\x36\x1e\x96\x02\x00\xac\xae\x43\x03\x00\x6f\xc2\x03\x8c\xf3\x3c\xed\x73\x39\x05\x8e\xa5\x10\xc3\x43\x18\x6e\x51\x6e\xd4\x6d\x4d\x47\xf7\x23\xdb\x32\xda\x1e\x51\x1a\x59\xa5\x45\x21\xc3\x87\xc8\x47\xf1\x08\xc4\xf8\xf0\x01\xff\x19\xd3\x24\x56\x58\xd6\x8c\x56\x6f\xcb\xf1\xb4\x70\x6b\xc0\xc9\xf9\xd4\xb4\xf0\xfd\x57\xbf\x6a\xe2\x17\x95\x0b\x70\x79\x46\xf4\xb2\x61\xdd\x3a\x26\x16\xf6\x77\x03\x79\x2f\x64\x23\x95\xac\xd5\x73\xc6\xaf\xb5\xaa\x5a\x5d\x48\x5b\xa2\x8e\x5c\x5f\xfc\xe9\xfc\xdd\xdb\x13\x1d\xe3\xc7\xc9\xe5\xe5\xe5\x04\xc0\x93\xae\x21\x41\x17\x1f\x57\x3a\xe8\x13\x64\x63\x7c\x64\xda\xe5\xc3\x07\xf4\xef\x97\x53\x92\xc7\x69\xbb\xa4\x02\xf7\x5a\x52\x0d\xa0\x9f\xe2\xef\xda\x3f\x07\x49\x14\xc1\x79\x35\x93\xa4\x11\x31\x6b\xc7\x7a\xcb\xc5\x89\xac\xb7\x38\xbd\x04\xe9\xd4\x90\x02\xd8\xce\xce\xf9\x9f\xe8\xbb\xb9\x30\x95\xa7\x6d\xe0\x28\x42\x67\x66\xc5\x29\x93\x05\x0c\xc8\x0d\xb2\xee\x79\x67\xc5\xbd\xfb\x9b\x41\x3b\x7c\x8b\x5f\x57\xe5\xd5\xec\x6d\x27\x79\x50\x05\x95\xf8\xee\x96\xdb\xb5\x9f\xb0\x55\x4e\xa5\x23\x61\x48\x83\xcf\xce\x31\xc3\x55\x5c\x29\x25\x28\xfb\x88\x33\x32\x2a\xc7\x54\x43\x64\x34\x60\x91\x88\x5a\xde\xa0\x7d\x7e\x3e\x4a\xdc\x47\x8e\x2c\xdd\x3a\xfd\x23\xa0\x17\xb5\xd4\x07\x1f\xed\xe1\x88\xfc\xa0\xe2\x5d\xbf\x87\x11\x41\x50\x6e\x77\x70\x9c\x17\x08\xb5\x26\x09\x4d\x43\xcd\x71\xb5\x36\xa2\x46\xf0\x28\x98\x42\x98\xcf\x7c\x48\xe8\x03\x88\xb0\x65\xbe\xdc\xcd\xc3\xe6\x7d\x8e\x33\x2d\x35\xcb\x9e\x03\x04\xf4\xc9\x9e\x63\x9b\x90\x50\x6e\x78\x20\x31\x06\x63\x5c\x4b\xf3\x91\xa3\xee\xa0\xac\x97\xe4\xb6\x57\x0a\x65\x06\x49\xc3\x5f\xe7\x55\x5e\x26\x18\x3b\x94\xf5\x95\x04\x74\x3c\xe5\xbf\x27\xaf\xcd\x95\xed\x4d\x2e\x40\x39\xa0\xa3\xf1\x06\x5e\xea\xaf\xe7\x49\xdb\x9a\x3d\x29\x5c\x80\x64\x47\x5a\x0a\x21\x27\x41\x94\x8b\x6d\x4f\x23\x43\x1f\xc4\x09\x78\x98\x34\xf4\x61\xd8\xe3\x48\x9c\x43\x5c\x35\x04\x3b\x0c\xab\xb2\x46\x22\xe9\x4d\x8f\x47\x37\x24\x58\x8c\x23\x17\x38\x6b\xf5\xa0\xcd\x4f\x0b\x5d\x18\xc3\x80\x37\x8d\x0c\x1b\x1d\x55\x83\x06\x15\x85\x6a\xdf\xe6\xec\xe8\xdc\x04\x6b\xb7\xd3\x90\x06\xed\x7a\x1e\x12\x99\x4d\x9c\x52\xa3\xc9\xa9\xd2\x54\xce\x91\x2b\xb7\x8b\xfc\x13\xbf\xba\x5b\xec\xdd\xb7\x8e\x38\xe0\x72\x7c\x59\x8f\x9b\x55\x56\x34\xc6\xe9\xa2\xa9\x2f\x2d\x62\x26\xba\x66\x69\x66\xff\x8c\x30\x3e\x4e\xf7\xb4\xf2\xfe\x3a\x95\x42\xc2\xf2\x4d\xd4\xf5\x5d\x63\x0f\x72\x4f\xc0\x5f\xc5\xa3\x46\xdd\x7e\xf4\x1b\x71\xac\xbc\x97\xbf\x53\x6c\xd8\x4f\xa9\x54\xb2\x8b\xa7\x36\x6c\xae\x65\xb7\xf5\xe5\x1c\x7f\x71\x38\x08\x22\x1f\x08\x98\xa4\xa0\x16\x04\xb5\xf3\x8e\xef\x0e\x1a\x30\xb2\x5c\xce\x69\x39\x63\x9b\xb5\xda\x20\xbc\x9c\x17\xdc\xc2\x41\xab\x0e\x96\x40\x25\x18\xe5\x47\xb6\x40\x05\xa0\xd8\x0b\x9a\xdb\x53\x8c\x0d\x41\x1d\x02\x89\xdd\x3c\x7e\xf5\x56\x7f\xb1\x03\x95\xbc\x20\xc0\xa1\xa4\x61\xd4\xde\x47\x6b\xea\x7d\xb5\xbe\xd5\x3f\x42\x91\x78\xc3\xf1\xdf\xfe\xf1\x05\xfe\x15\x40\x56\x4d\xbe\x6e\x67\xc8\x05\xdd\x35\xeb\xf0\xf9\xd0\x18\x57\xf1\x7d\x63\x26\x83\x6a\x84\x2f\xac\xc3\xb3\x6a\x75\xe1\x1e\xca\x70\x45\x6c\x8f\x8d\x6d\xb0\xae\x20\x87\xe5\x75\x16\xb0\x11\xb0\xa4\x2e\x5c\x60\xdb\xf7\x39\xc1\xb8\xe7\x02\xc3\x8e\x99\xb2\x24\xd5\x18\x93\x17\x1c\x61\x43\x71\x9b\x6f\x34\x26\x23\xdf\x78\x37\x76\x57\xc4\xc2\x0e\x72\x2e\xa4\xf0\x03\x07\x69\xf5\x13\xa4\x26\xd4\x4c\x13\xfb\x10\xe2\x2b\xfb\x5f\xa6\xae\x71\x9a\x4b\x28\x59\x12\xbd\xd8\xd3\x39\x4c\x94\xd7\x3a\x20\x27\x22\x5d\x92\xd4\x3b\xdf\xfb\x18\x32\x26\xab\xf8\x84\x83\x83\xdf\x8a\x74\x77\xb9\x67\x74\xb5\x2f\x1b\x58\xf7\xce\xc5\x5a\x1d\x63\x99\xbd\x02\xcc\x25\x9c\x02\x90\x9b\xa3\x1b\x76\x18\x3b\x1c\xb9\x06\x88\x1d\x62\xa2\x50\xec\x42\x05\xc8\x75\xc8\xc3\xf0\x06\xd1\xcc\xff\xef\x7f\xfd\xdf\x31\xf2\x18\x0b\x75\x8a\x28\x66\xf2\x7d\x9f\x3c\xa2\xaa\x0e\xf1\x45\xe3\x2c\x7c\x48\x93\xda\x80\xcd\x11\x77\xbe\x34\x85\x35\x2e\x31\x8b\x37\x29\x71\x4d\x65\x7b\x3e\x75\xf1\x41\x73\x67\x5f\x68\x0a\x0b\x3c\x7e\xb0\x31\xab\x5c\x0d\x4e\xd1\xca\x70\x3a\x04\xbb\x75\x6b\xc2\xce\xf9\xf1\x22\x46\x84\x86\x0c\xb6\xc9\xee\x08\x39\x6a\x53\x62\xf7\x5b\xcc\x35\x3a\x46\xfc\x8e\x30\xe7\x79\x09\x67\xfb\x2b\xcd\x00\xf2\x8c\x2d\x72\x52\x2d\x3a\xfc\x40\x64\x63\x47\xdf\xdd\x3b\x7f\xae\x9b\xcd\x4f\x51\xe6\x29\x5d\x47\xb5\xc0\x36\xbd\xf7\x4f\x02\x58\x14\xc1\x21\x27\x2b\x94\xdc\xde\x9b\x28\x3e\x92\x43\xee\x1a\x43\x30\xc7\x54\x5a\x92\xb8\xd7\xe0\xa9\xde\x8f\x77\xed\xf7\x1f\xf2\x54\x6b\x9a\xe0\xb1\xa8\xe6\xb1\xec\x8d\x98\xaa\x5e\x0f\xf5\x9f\x6e\x49\xf3\xbd\x1e\xea\xb9\x48\xb4\xab\x58\x69\x44\x54\xb9\xa9\x0f\xc8\xdd\x40\xd0\x62\xc1\x2f\xaa\x0b\xbc\x50\x61\xeb\xbd\x81\xc9\x3c\x64\x54\x2a\x2a\x4d\x1a\x80\xd4\x58\x96\xd3\x62\xc1\x71\x16\x59\x4a\xd4\x90\xc3\xb6\x1f\xb6\xd5\xc0\x5e\x26\x25\xc7\x93\xa0\x44\x8e\xc8\x68\xd1\x85\xba\xd1\x9f\xf1\xd0\x81\xce\x91\x5b\xbe\x61\x7a\x2e\xfd\x76\x1b\xac\x5b\x91\xef\x55\xe2\x72\xea\x11\xaf\xb3\xde\x57\x41\xf5\x74\x0f\x28\xe8\x68\xae\xe1\xf7\x70\x5d\x98\x6d\xc8\x46\x86\x5e\xfc\xae\xcc\xe5\x3d\x04\x63\x13\xc2\x44\x4d\xb4\x04\xf3\xec\x37\x5a\x0d\xbe\xbc\xa4\x9e\x79\x81\x47\xf5\xb6\xc7\xd1\x3b\x14\xd6\xb6\xdd\x5a\xf4\x37\x16\x61\xb8\x1d\xbe\x14\xfc\xe6\x48\x6c\xc7\x30\x8f\xda\xdf\x1e\xdd\x91\xb4\x25\x61\x4b\x9f\x14\xe1\xf1\xf7\xdc\x14\xfd\x4e\x26\x12\x0f\x37\x4c\x49\xe2\x8b\x46\x72\x93\xfc\x27\xdd\xdc\x10\xf9\xf1\xd0\x86\x48\xbe\xe5\xd2\x46\x2b\xc9\x1a\x0f\x6b\xfe\xe3\x6e\x6d\xfa\x29\xa4\x46\xae\x6d\x52\x74\x78\x29\x36\x19\x65\x82\x93\xdb\xb5\xdd\x94\xe5\x1c\xbf\xf3\x70\xd1\x7e\x23\x99\xae\x8e\x57\x0a\x61\x8a\x69\x0d\xb1\xd5\xf9\xb8\x3e\x2f\x2b\x4a\x6e\xac\xbf\x23\x44\xf1\x88\xc1\x7d\x24\x56\xb1\x3f\x54\xb0\x29\x75\x12\xfc\xb4\xb9\x79\xbe\x36\x82\x91\x63\xf3\x3b\x4e\x29\xe3\xd6\x6b\xb1\x02\x78\x0b\x15\x2b\x72\x42\x2d\x2c\x10\x38\x14\xe1\xd0\x09\x18\x8a\x9f\xe6\x51\x6b\x4c\x32\xb8\xd8\x24\x13\x12\x77\xe9\x01\x20\x62\xc3\x32\xce\x9e\xd4\x2f\x73\x6c\x53\xe2\x11\x33\xac\x00\x5f\x9f\x3b\x20\x09\x53\xd4\xe2\xc1\x77\x57\x3b\xea\x60\xd0\x44\xdf\x4f\xce\x7d\xd7\xdb\x06\x77\x46\x85\x02\x5a\xed\xa5\x91\xc8\xf5\x05\x38\x65\xd4\x96\x58\x51\x67\xcf\x82\xf7\xbb\x2b\x21\x51\x84\x0a\x38\x8c\x43\x7d\x64\xb4\x40\x0f\xd0\x41\x4e\xa2\x4a\x72\x1b\x2e\xf4\xa8\x29\xb6\x15\x5f\x61\x88\x08\xed\x13\xcc\x15\xfc\x2e\x02\x5b\xb5\xf9\xb8\xfd\x7a\xd0\x30\x12\x7c\x4b\x2e\xef\x70\x24\xeb\xa1\x3c\x45\x1e\x32\xea\xb4\x10\xbf\x3d\xf7\x75\x30\x54\xf9\x0c\xf1\x4a\x23\xd5\x67\x6f\x68\xa1\xaf\x45\x7d\x1e\x29\xee\x05\xdd\xf1\x99\xc4\x44\x1a\x13\x8b\x64\xba\x72\x9e\x9a\x1c\x6d\xe4\x62\xc4\xa6\xae\x4d\x16\xc6\x5d\x9f\x2a\x52\xf7\xba\x8d\x41\x8e\xf6\x2b\xa9\xc1\x8f\xf4\x8d\xac\xf3\x05\x67\x52\xe1\xd0\xef\xce\x6e\x47\x46\x22\x8f\x23\xe8\x48\xf8\x06\xb9\x37\x8e\x18\xe0\xe8\x38\xe0\x33\x26\x2f\xe1\xa0\x1b\x77\x07\xed\xfd\x61\xe2\x21\x86\xa7\xa3\x92\x0b\x32\x5d\xc2\xc1\xf8\x5c\x1c\x58\xdc\x25\xa4\x8c\xdd\x48\x5c\x98\xd4\x38\x76\x06\x4b\x29\x6f\x0a\x3b\x90\x40\xfc\x45\xac\x0c\x6f\x24\x96\x3f\xe6\x12\xf1\x84\xc6\x55\x77\xc9\x66\x2c\x78\x08\x10\x0e\x21\x3d\x46\xe7\x27\xeb\xc4\x47\xcc\x72\x1f\x89\x90\x52\xda\x3f\xc1\x9f\x1d\x3b\x9e\xc2\x6c\x5d\x0c\x3e\xe4\xca\x18\x83\x81\x1f\xbb\x45\x5e\x49\xa6\x57\xe5\x0d\xf1\x00\x52\xd3\xe2\xa0\x5d\x65\xf7\xa3\xcd\xc6\x60\x83\x55\x64\xc2\xf9\x04\x9e\x9e\x05\x61\x3a\x16\x47\x6d\xb8\xb3\xf7\x96\x2c\xc8\xb3\x05\x92\xcf\xf1\x65\xb9\x5e\xbe\x23\xbb\xa9\xa6\x6e\x4c\x12\x64\x8e\x0d\xd2\x89\x01\x3c\x40\x3f\xb6\x84\x13\xf4\x29\xa7\x4f\x98\x8e\x02\x22\x4e\xe2\x09\xe0\xeb\x78\x2e\x2e\x6e\x14\x35\x27\x89\x1f\xcc\x08\x07\xe9\x71\x8e\xdb\x06\xe1\x72\x53\xb8\x81\xa4\xec\xe5\xaf\x19\x4b\x9f\xa1\x24\x9c\xa4\xc7\x41\x46\x47\x34\x3e\xa0\x98\xcb\x8c\x0f\x27\x59\x66\x37\x36\xf0\x18\x9c\x19\xca\xc8\xe4\xf1\x39\x55\x30\x8e\xdc\xf2\x4f\xc3\xca\x45\xda\x57\x7f\x92\x83\x4d\x10\xbd\x6b\xd9\x83\x1d\xdb\x0b\x7a\xc1\xc8\xde\x34\xd1\xf9\x18\xda\xac\x68\x01\x3f\x72\x04\x89\x46\x86\x3e\x4d\x4c\xb2\x12\x21\x8c\x87\x0d\x42\xdb\x7a\x9b\x77\x32\xc8\xdf\xab\x49\x3d\x82\x81\xc9\x6a\xba\x51\xd1\xf5\x79\x2d\x7e\x8a\x5f\xe3\xf5\x2f\xbb\x48\xbe\x60\x1b\xbd\x2f\x19\xbf\xc8\x3a\xcc\x14\x79\x4b\xd6\x4e\xcd\x61\xaa\xba\xc6\x20\xa5\xa9\xa6\xb8\xd8\xcc\x92\x37\x7b\x10\xd2\x2b\x5e\x38\xe7\x57\x34\xf8\xfd\x24\x44\x50\xb2\xd4\x50\x57\x05\xfb\x6b\xc8\xbf\x05\x9a\x81\x65\x6a\xa6\x7e\x3e\x88\x9e\xff\xd8\xce\x2e\x6a\x0e\x98\xf4\xf3\x63\x3b\x2c\x50\xb4\x9c\x79\x53\x6d\x5c\x5c\xbb\x2b\x72\xa8\x5c\xfe\xb6\x3c\x69\x80\x47\xc3\x36\xdf\x2e\x8c\x4d\x46\xc1\xe6\x5f\xe4\x3c\x18\xe9\x6f\x0e\x37\x87\xd9\x8b\xfa\xc5\x79\x78\xe2\x52\x18\xc0\x82\x4d\x95\x8b\x47\xde\x47\xe8\x24\xfa\x96\xa2\x39\x2e\x89\xcd\x4a\x49\xc6\xac\x00\x12\x2d\xc3\x49\xd2\x8f\x0f\xc9\x4e\x9b\x8c\x43\x7d\xe3\xef\xa7\xbb\x61\xf7\xee\xd2\x20\xfe\x26\x7e\x96\xf1\x97\x10\xbb\x13\x7f\x4d\xd3\x1b\xc5\x25\xcf\xf5\x59\x8c\xf8\x9b\xa6\x1f\x48\x27\x26\x96\xe8\xf8\xdb\x9b\x7a\x53\x54\x13\x36\xd9\xa6\x6d\x3a\x41\x3e\x99\xa9\x77\xf2\x4c\x9a\x60\xa7\xff\xf8\x0b\xbb\x13\x7c\xc8\x6d\x5a\x9b\x19\x4d\x0f\x41\xb1\x72\x3c\xac\x71\x5a\x6d\xa1\x3c\xe1\xbd\xb4\x11\x62\x9b\xc7\x4e\x8e\x4d\xf0\xd3\x18\x07\x96\x57\x99\x66\xe7\xfc\xcf\x38\x08\x8d\x22\x7a\xeb\x33\x86\x81\xa7\x76\x35\xd7\xa4\x4d\x35\x27\x97\xc0\x72\x2f\x38\x0d\x06\x89\x19\xd8\x9d\x56\x0c\x20\xea\xc9\x7d\x5b\x5d\x7f\x00\x72\x5c\x62\xd4\x50\x25\x2d\x69\x8a\x26\xe7\x2f\x1c\x34\xce\xb8\x59\x3d\x50\x8b\x8a\x2f\xbf\xf3\xa0\x37\xda\x19\x7d\x63\xab\xab\x4b\x84\x15\x65\xb3\xf9\x84\xea\xe9\xe8\x5c\x5b\x95\x6b\x6c\xd4\x89\xf9\x96\x01\xb2\x35\x10\xc1\xe1\xd4\x88\xb6\x19\x79\xa7\x9d\x4a\xc1\x6d\x43\x4c\x1a\x48\x07\x17\xce\xf3\xd0\xd2\xad\x48\xc3\x5b\x75\x9b\xa5\x3e\xa1\xf5\x9c\xd7\x39\x7b\x41\x67\x1a\x7c\x44\x9f\x40\x1a\x5d\xaa\xd6\xb9\x4e\x7d\x66\xf3\x94\x3d\xc5\xcd\xf8\x11\x8d\xb4\xa3\x99\x11\xa9\x35\xf1\xa8\x4e\xe5\x8f\x08\x83\xac\xe6\x32\xdd\xa5\xe3\x6d\x8c\xbd\xaa\x96\x73\x7e\x1b\xcd\x6e\xf9\x76\x59\x1e\x7e\x77\xf7\x03\x9f\x4f\xe9\xfb\x03\x89\xa2\x2f\xae\x0d\x5f\xbc\xda\xcf\x35\xc3\xe9\x17\x3f\xe4\x4d\x45\xe4\xf5\x75\x86\x7b\x6e\xd1\xc5\xbd\x5b\x3c\x7b\xdc\xc8\x6d\xa6\x09\xef\x58\x92\x14\xc1\x0f\x44\x6e\x20\x8e\x7c\x79\xfb\x50\xd2\xb5\x48\x13\xec\xa1\x43\x31\x5c\xc7\xd3\x24\xed\x33\x79\xe2\x1e\xf9\x41\x59\x7e\x18\xed\x26\x72\x8a\xe8\x4f\x9b\xd5\x03\xf1\xe3\x92\x07\xb2\x22\xbc\x7e\xe1\xf3\xbc\xa8\x97\x07\x6c\xa2\x0c\x26\xf9\x4a\x5c\x1e\x88\xf8\xa5\x3b\x35\x8e\x1d\x9b\x70\x3c\x92\x24\x67\x9b\x0c\x41\x5c\x8d\x92\x41\x7c\xfa\xd4\x93\x63\x4f\x5e\x40\xed\x0e\x6d\xb1\xf7\x4f\x9f\x7e\xc7\xbf\x12\x8e\xd2\x21\x9c\x81\x48\xb0\x6e\xea\x8e\xb4\x14\xe3\x53\xb3\xd2\xaa\xea\x27\x3b\x56\x81\xf4\x0e\xda\x74\xf3\x8e\x73\x2b\xf8\x3a\x3e\xfe\x8d\x8e\x51\xb9\xf2\xf5\x15\xdb\xba\xcd\x4b\x57\x0d\x66\xdb\x25\x1b\xf5\xe9\x14\x33\x90\x2a\x20\x08\xbe\x30\x36\xdf\xb7\xee\x0e\x26\xae\xac\xd5\xea\x45\x9b\xd3\x80\x90\xf3\x43\x9c\xa8\xe0\xf6\x36\x02\x7e\xa8\x39\xeb\xd0\xbc\x24\x9c\x76\x87\x39\x26\x6d\x67\xef\xe5\x23\x1d\x53\xf8\x98\x7d\xc0\xc7\x91\x3e\xdc\xd0\xb4\xd6\x19\x7f\xcd\x4e\xf5\xeb\xd1\x6a\x08\x60\x4c\xab\x3c\xa7\x2f\x43\x70\x87\xbf\xad\xc9\x0f\x7d\xec\xbd\xa4\x6f\x13\x3a\x35\x90\x28\xb1\x87\x3d\x06\xef\x63\xc1\x04\x2c\x70\x55\xe9\xf8\x58\xb5\x62\x45\x5a\x1f\x5e\xe0\x62\xbf\xc0\x4f\xac\xc3\x2e\x20\xb3\xbf\xaa\x8e\xde\x87\xad\x66\x6b\x38\x4f\xf9\x17\x2e\x6e\xab\x59\x2f\xfe\x85\xd8\x1c\x1e\x6b\x24\x98\x77\xf4\x63\xd7\x26\x54\xba\xa8\xeb\x16\xef\xdf\x1d\x20\xf5\x2d\x77\x8a\xb7\xc7\xee\x2b\xa4\xbe\xe5\xee\x08\xe6\xa4\xc6\x2d\xa8\x93\xca\xc3\x91\xed\x91\x67\x89\x3a\x6c\xba\x65\xdb\xd1\x0e\xd6\x5e\xcf\xce\xe9\xf3\xe4\xdc\x7f\x3e\xd2\xed\xa0\xf6\xb0\xeb\xac\xdf\x54\x52\x7f\x09\xe3\xe0\x48\xf7\x4f\xf0\xfd\x13\xfa\x1f\xd4\x1f\x1b\x40\xbf\xb1\x64\x13\x71\xa2\x73\xd8\xda\x17\xdd\x72\x67\x5a\xc4\x21\x6c\xe7\xec\x15\x10\xda\x7a\xef\x80\xb2\xc7\x0c\x84\x80\xdb\x6d\xf6\x01\x40\xd9\x3b\x05\x4a\x8e\xbb\x25\x2d\x45\x9b\xb3\xc3\xc7\xc8\x80\x5e\x3c\xa1\x85\x90\xe2\x44\xae\x22\x85\xa5\x99\xab\xe0\xaf\x1b\x14\x52\x96\x6f\x41\x13\x27\x87\x86\x54\x2d\xc0\xb6\xdd\xc9\x43\xc5\x71\x7b\xd0\x4c\xe4\xd4\x5d\x5e\x91\x4c\x35\x73\x2f\xf9\x35\x18\xc0\x8f\x57\xbb\x32\x3d\xa3\x39\x71\x29\x81\x33\x2b\x65\xdf\x05\xf1\x7a\xdb\x8f\x83\x0b\xa7\x73\xf0\x1b\x30\xb5\x7d\xcb\x73\xfb\x91\x63\x88\x46\x20\x0f\x39\xb6\x59\x0c\xfa\x1e\x5f\xc6\x06\x21\xa0\xea\x76\x37\x06\xa8\x1d\x93\x14\xf1\x84\xc4\xe0\x5d\xeb\x9e\x4e\x52\x0f\x76\x4d\xf4\x49\x94\x67\xca\x48\xb7\x14\x88\x4f\x78\x82\x53\x01\x9d\xbc\xec\x3e\x38\xd9\x6f\xe5\x13\xbb\xb7\xbe\x28\x0e\x09\x97\x4f\x23\xcf\x81\x4a\x81\x66\xc2\x98\x49\x1a\x60\xdf\xc4\x20\x6a\x59\x5b\x66\x09\x58\x3c\x91\x58\xda\x15\xe5\xc3\x15\x73\x9e\x31\x49\x31\x96\xd4\x28\xa1\xa8\x88\xc8\xcf\xb5\x44\x71\x89\x67\x73\x24\xf7\x3f\x23\xe3\x30\xf6\x00\x40\x18\x66\x2f\x85\xe5\x62\x30\xe8\xc2\xce\x03\xb2\x9e\xc6\x19\x1f\xf9\xc5\xbc\x3e\xf6\x00\xce\x08\x4c\x40\xf9\x1d\xfb\xf8\x5d\x50\x79\x0d\xda\x4f\x13\xd7\xa2\xfc\x9c\x32\x7b\x74\x0e\x7a\x59\xb8\x8b\x5b\x12\x6c\x82\x73\x3c\x0c\x6f\xfd\x85\xee\x3d\x95\x70\x04\x03\x01\x7e\xec\xda\xcc\xf5\x1c\x3d\x5f\xc1\xb0\x63\x8f\xc9\xd8\x7f\xe0\x3b\x39\x71\xaf\xfe\xb5\x9c\x3e\x6a\x3e\xf5\xd9\x1c\x17\xcb\x38\xfa\x5a\x4e\x6c\xe3\xc1\xb3\x1e\x53\x0e\x1a\x89\x77\x5e\x6a\x56\xb8\xf0\x99\x76\x15\x3e\xda\x5f\xfc\x3b\x71\x5d\xe0\x2f\x63\x9e\x0b\x6a\x04\xe2\xed\x95\x76\x97\x6c\x35\x01\x1a\xcb\x13\x9a\x74\x2c\x1f\xfa\xf7\x5a\xf2\x95\xf3\xc7\x21\x55\x59\x6c\xc9\x70\x85\x48\x17\xd7\x4f\x5b\x26\x25\xbd\xe4\x65\x62\x9a\xd2\x5d\x99\x8c\x77\xc4\x46\x25\xa0\x2e\x60\x7d\xf8\x30\x8f\xfd\x8b\x48\x51\x69\x22\x7a\xa9\x14\x26\x25\x1f\x42\xb6\x1f\xf9\x2d\x0f\x55\xd0\x39\x12\x76\x9f\x14\x38\xdf\x93\x74\xb7\x47\xa3\xe6\x96\x86\x63\x69\x43\xdb\x0c\x56\xdd\xf6\xa8\xa2\xc0\xf5\x3c\x91\xe5\xe3\xb6\xb6\x08\xa9\xb0\xbe\xd3\x03\x32\xf9\xbc\xaf\xc3\x28\x16\xec\xa2\x55\xcd\x1e\xc3\xc1\xe8\xe9\x5b\xdf\x6b\xdb\x36\xc5\xa2\x6b\x8f\x3d\x4a\x72\xaa\xe5\x43\x78\xf5\x68\xf8\x3d\x30\xdb\x35\x8a\xd6\xe5\xf6\x77\x40\xa3\xe7\x02\x06\x50\x92\x8e\x67\x76\xde\x2d\xb7\xf2\xa7\x2b\xd8\x83\xef\xcd\x6d\x3e\x3b\xb3\xc4\xe9\xb2\xf3\x53\x57\x60\xf7\xed\x41\x92\x72\x9e\x9f\x7d\x78\x3f\xb9\x15\xf7\x80\x65\x14\x32\x68\x8c\x47\x94\x30\x2e\xb9\x24\x46\xa8\x3e\x5a\xd2\x96\xb4\xdf\xde\x9c\xb3\x7b\x9b\xb7\xed\xe9\x73\x21\x1a\x27\xe3\xd7\x04\x17\x11\x78\x91\x68\xa9\xd8\x7b\x7f\x7a\xa6\xf1\x55\xf1\x02\x6b\xc3\x78\xd2\xdf\xbf\xdd\x0c\x9a\x70\x0f\xfc\x0f\x1e\x0d\x1e\x74\xd4\x16\x07\x1a\x54\x71\x38\x58\xdf\x26\x0e\xc6\x21\x0a\x52\x47\x88\xf8\x0c\xd2\xb5\x49\x0f\xa0\x91\x57\xae\x7a\x67\x51\xbc\x1b\x82\xb2\xfe\x3b\xfd\x8e\x6d\x1a\x97\xe4\xe9\xd3\xab\x86\x51\xab\xe7\xc6\x70\xb0\x51\xee\xf9\x08\x70\x2e\x1b\x54\xb2\x31\x1f\xe3\x16\xb7\x55\x8d\xee\x45\x8e\xd6\xff\xd4\x4b\x31\x49\x7d\x08\x43\x81\x53\xcd\xd5\xe6\xae\xaa\x79\xcf\xf4\xae\xa0\xf9\xe1\xa0\xac\xc3\xe5\xcf\x56\x96\x11\x95\x5f\x80\x8a\x7c\xb1\x77\xd6\x8d\x20\x10\xc4\x13\x20\x24\x8e\x47\x8b\x7b\x4c\x47\xbf\xd6\xeb\x35\xc9\xf4\x06\x09\x5f\x38\xbe\x1c\x3f\x26\x67\xf5\xaa\xb3\xa1\xa2\x7b\x84\xbc\xee\x44\xd3\xde\xcc\xbe\xe5\x3f\x21\x4d\x25\xd1\x64\xbe\x0a\xa1\x4d\x9e\x6f\x7b\x93\x77\xeb\x6b\xa2\xc7\x49\x10\x3f\x23\x10\xee\xd4\x83\xa4\xbd\xf2\xc1\xd6\xd4\xfc\xee\x78\xbb\x8d\x63\x53\xbf\x47\x06\xf6\x82\x58\x51\x11\xa0\xd9\xf4\xbf\x9c\x4b\x32\x4b\x5f\x29\x82\x94\xfb\x5d\xb9\x21\xc0\xfe\x53\x0f\x70\xdf\x00\xcd\xaa\x5f\x9b\x66\x37\xde\xd7\xb2\x29\x0e\x1a\x0d\x75\xbe\xc3\xdf\x13\x3e\x5f\xfc\xc0\xf9\xd1\x65\xa1\x2b\x46\xc2\x5b\xf1\x4e\x44\xda\xef\x6f\xa5\x70\xc8\xca\x02\xb6\x17\x8e\x5c\xfc\xd5\xc5\x6e\x94\x60\x08\x30\x9c\x6d\xe1\x5b\x74\x8c\x84\x8f\xd1\xa9\x18\x3e\xf2\xd8\x06\xeb\x42\x05\xd6\x96\xb2\x34\xe7\xe7\x6f\xfa\xb4\x10\x4a\x9d\xc3\xc1\x17\x55\xd7\x08\x76\xef\x21\x55\xd4\x86\x74\xcb\x7b\x5f\xc6\x15\xfa\x4b\xd1\x2f\x1b\x69\xc8\xfe\xa5\x24\x1e\xf6\xc7\xa8\x1d\xc7\x74\xa3\xad\x44\x3f\x27\x3d\x3f\x02\xbf\x04\xfa\x5c\x7e\xf2\x30\x8d\x7b\xc6\x26\x79\x13\x46\x16\x25\xe2\xc5\x43\xb2\x77\xfc\x3b\x65\xd9\xa3\x74\xcf\x71\x0a\xfa\x7c\xbd\xe8\xad\x0b\x7e\x71\x7c\xf6\x23\xec\x23\xf2\xd6\xd9\x12\x8a\xeb\xba\x84\x1e\x1a\x1f\x03\xc9\xf0\x25\xf3\x95\xcb\x84\xc5\x2e\xe0\xa7\x7a\xd9\x0b\xf3\x60\xc3\x6f\x12\x8e\x0f\xdb\x3d\x46\x8e\x4c\x24\x7e\xc2\xa9\xb3\xae\x87\x75\x8f\x76\xb1\xfd\x20\x7d\x35\x8b\xcd\x05\xd9\xc8\x14\x35\x6a\x0e\x3e\xfb\xf3\x52\xac\xf3\xd1\x43\xe9\x1c\x1f\xf2\x06\x76\x20\xcb\xce\x61\xd1\x9c\x92\x27\xc0\xa3\xea\xee\xa9\xa6\xa3\x55\x5d\xc8\xa7\x2e\xbd\x5e\x31\x1d\x59\x7a\xe2\xd5\x1d\xb5\x6c\xaa\x0d\x11\xdd\x0f\x78\xc2\x9e\x1f\xec\x04\x0c\xa7\x1a\x8c\x76\x80\x44\xb6\xb1\x06\x4d\xec\x0c\x4b\xd4\xf2\x1b\xfa\x42\x83\x21\xcc\x2d\xac\xee\xae\x38\x40\x58\xd0\x07\x4b\x21\x33\xe8\x33\xa4\x3b\x35\x08\x43\x15\xb1\x07\xdc\x90\x46\x43\xc2\x8a\x84\x43\xe0\x8c\x7f\x1d\x19\xbd\x82\x3a\x19\x35\xd2\xaf\x53\x00\x47\x9b\xb4\x73\xea\xd9\xcb\x67\x6f\xde\x65\x4f\xc7\xc8\x51\xa1\x87\xbb\x5f\x0b\x86\xbc\x42\x0b\xc6\x59\x83\x5c\x43\xe9\x3c\xe4\xce\x69\x7c\x1a\x02\x78\x7c\x16\x42\x70\xda\x90\x18\xa6\xc6\x1b\x52\xca\x5c\xe5\x07\x6c\x40\x81\x3c\x95\x5f\x3d\x18\x9f\x7b\x5e\x80\x7c\xe6\xf9\x61\x9f\x95\x6b\x87\xef\xd6\x92\xf5\x35\xe2\x24\xe1\x79\x0c\xff\x3c\x32\x34\x07\x4c\x1a\xf2\x45\xc1\xd1\x17\x0a\xfe\x5e\x3f\x78\x48\x07\xe1\xda\x75\x00\xc7\xe6\x4c\xc4\x5d\xa8\x74\xf9\x84\xff\x9e\x24\x6b\xa7\x9b\x16\xdb\x49\x40\x15\x4a\x1c\x42\x96\x5b\x7d\x0f\x41\xa1\x37\x4b\x8f\x1a\x31\x52\xbd\x78\x12\x90\x73\xcd\x46\xaa\xde\x84\xca\x62\x2d\xe6\x6d\x3f\xa3\xb1\x4d\xb9\xc5\xeb\xf3\x12\x8c\x0b\xb6\xcd\x89\xe2\xfb\x53\x08\x2d\xe9\x3c\xc6\x1a\x3a\x14\x6c\x8f\x74\xc8\xc1\xb3\x7a\x66\x14\x2f\x0e\x50\x4f\x02\x86\xd4\xbf\x07\x3c\xdb\x3d\x9d\x3a\xf3\xef\x09\x8e\xb2\x6b\x1c\xfa\xda\x2f\x0e\xfb\xf1\xf5\x00\x90\x08\x2a\x04\xa2\xa7\xa1\xf7\x89\x98\x2e\x1b\xe2\xee\x4f\xe8\x7f\x72\x0f\x1d\x0a\xa2\x4d\xe7\x3e\x41\xf0\x58\x75\x24\xa2\x82\xd5\x1c\x88\x29\x45\xd0\x70\xa0\x70\xb6\xc9\xcc\x5d\x27\x4b\xb2\x30\x05\xf1\x19\x42\xd5\x20\x38\x0a\x64\x3e\x9a\x65\xe7\x6f\x34\x4e\xab\xeb\x7c\x5b\xc6\x90\x91\x3b\x07\xe8\x52\x93\xe2\x75\x6b\x0e\x35\x20\xc2\xbc\x46\xec\x47\x00\x19\xcb\x5d\xe6\x26\x43\x58\x6d\xe1\xd8\xd1\xb4\x42\x46\x63\x43\x98\x45\x5d\x5b\x01\xf3\xbe\x26\xce\xbb\x43\x7e\x12\xb1\x40\x77\x1b\x73\x3f\x71\xf0\x41\xda\x89\xbf\xcc\xbf\x9a\xc5\xcf\x84\xb8\xa2\x91\x91\xbb\xa2\xfa\x30\x7b\x77\x98\xc6\xa0\xac\x07\x38\x55\x67\x30\x86\xa3\xb7\xd6\x70\xea\xe1\x2b\xdb\x9f\xd2\x47\x34\x60\xb1\x8b\xfc\x92\x92\x00\xb0\xfb\x9c\x5d\xd3\x67\x3f\x73\x69\xc7\x43\x45\x1c\xd5\x71\x95\x07\xb6\x59\x3e\xb8\x1f\xa7\xe6\xd4\x1c\x9e\x0a\xe0\xf2\x76\xfe\x51\x0b\x37\x06\x4e\x58\xad\x1f\x91\x64\x2a\xfd\x19\x4d\x4b\x72\xeb\xb8\x6d\x31\xd2\x48\xf3\xf6\x9f\x42\x0f\x3e\x5f\xe8\xcf\x32\xc0\x90\xf2\xf4\xaf\x6c\x28\x4a\x17\xfb\x33\xd2\xe4\x6b\xc6\x99\x51\x34\x71\x00\x3f\xf0\xc3\x7f\x64\x0e\x98\x3d\xac\xf2\x6a\x0c\x8d\x9a\xd8\xbf\xcd\x37\xff\xc9\xa8\xd3\x5c\x8e\x7f\x98\xbb\xd4\xf5\x22\xbf\xf9\x74\x8e\xce\xeb\xfc\x0f\x21\x61\x3d\x11\x43\x5b\xd7\x25\x91\x42\xbe\xa9\xc5\x17\x8a\xdf\xa2\x80\x2b\x74\xbe\xc8\x6c\xbd\x96\xe7\x33\x9d\x67\xf4\xdd\x3b\x5f\xd9\xd9\x7d\x9b\x7d\x95\x9d\x9b\x1d\x1c\x39\xe8\xc3\x5e\x3e\x9c\x15\x74\xf0\xe2\xf7\x56\x01\x5a\x2d\x5f\xc9\xef\x0f\x39\x51\xf3\x57\x97\xf2\xe3\x87\x9a\xdf\x97\xf9\x8a\xb6\x9f\xd6\xae\x2b\x18\xef\xbe\xba\x92\x9f\x48\xdc\x07\xd7\x7b\xe2\x66\x2b\xea\x10\x98\xe0\x24\xc4\x2b\xd7\x2f\x38\x02\x77\x98\x96\xca\x20\xa8\x70\x5b\x77\x4d\xaf\x62\xab\xf5\x56\xf9\x55\x5a\xf2\x41\x52\x0c\x5d\x1a\xb3\x4b\x0b\x78\x94\xc2\x7b\x48\xf5\x4e\x3b\xc2\x78\x51\x76\x65\xf2\x5e\x47\x7f\xca\xc5\xa5\xa6\xc9\x2f\xe7\x6e\x06\x61\xd4\xf8\xea\x46\xee\x47\x4b\xcb\xb0\x6a\xea\x03\xb2\xa7\xfd\x14\x1e\xae\x71\x2f\x03\x3c\x77\x41\x86\xdf\xf1\xcb\xaf\xd9\x0e\xef\x7a\xd0\xcf\x5a\x3d\x1b\xd5\x05\x82\xe3\x27\x71\x90\x88\x9f\xa2\x4b\xaa\x58\x54\x87\x4e\xf5\x3e\x9f\x28\x46\x63\xbf\xf1\x93\x0a\x82\x47\xa4\x78\x4c\x44\x0f\xc8\x46\xcf\x1a\x43\xcd\x24\x5a\x99\x2f\x54\xc9\x2b\x36\xb4\xdd\x6e\xfe\xc3\x64\x5f\xfc\xeb\xbf\xa2\xd0\x16\xd7\xe6\xdf\xfe\x2d\x3b\x7b\xfc\xa5\x4a\x94\xcc\xc4\x5a\x23\x39\x6a\xce\xf2\x8f\xc5\x3e\x2f\xa3\x3a\xfb\xfc\xe3\xf3\xa4\x1a\xc7\x48\xb2\xe7\x63\x14\x6e\x1c\x65\xc7\xff\xff\x01\x00\x00\xff\xff\x9d\x65\xbb\xc2\x6b\xa0\x00\x00") func confLocaleLocale_deDeIniBytes() ([]byte, error) { return bindataRead( @@ -767,12 +767,12 @@ func confLocaleLocale_deDeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 40798, mode: os.FileMode(493), modTime: time.Unix(1439590380, 0)} + info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 41067, mode: os.FileMode(493), modTime: time.Unix(1439758816, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\x7b\x93\xdb\x48\x8e\xe7\xff\xfc\x14\x6c\x6f\xf8\xec\x8e\x28\xcb\xd1\x3d\x71\x8f\xe8\xb0\xdd\x57\x5d\xd5\x7e\xcc\xba\x1e\xeb\x2a\xf7\xdc\x9c\xc3\xa1\xa6\x44\x96\xc4\xb1\x44\xaa\xf9\x28\xb9\x66\x63\x23\xee\x6b\xdc\xd7\xbb\x4f\x72\xc0\x0f\x40\x3e\x48\xaa\x6c\xcf\x6e\xdc\xfd\x23\x25\x33\x91\x2f\x24\x12\x09\x20\x91\x99\xd9\x6e\x37\xcf\x8b\x76\x99\x3e\x4f\x8f\xd3\x5d\x56\x56\x9b\xa2\x6d\xd3\xb6\xd8\xdc\x3c\x59\xd7\x6d\x57\xe4\xe9\xab\xb2\xa3\xef\xe6\xb6\x5c\x16\x49\xb2\xae\xb7\x05\x81\xbe\xa6\xbf\x24\xcf\xda\xf5\xa2\xce\x9a\x9c\x22\x4e\x2d\x9c\x14\x9f\x77\x9b\xba\x61\xa0\x5f\x25\x94\xac\x8b\xcd\x8e\xf3\xd0\x5f\xd2\x96\xab\x6a\x5e\x56\xf4\x79\x45\xa1\xf4\x4d\x95\xb4\xf5\xb2\xcc\x36\xf3\x20\x01\x11\x96\xfe\x53\xfa\x63\x95\xa7\x57\x5d\xb1\x4b\x9f\xb5\xdb\x6c\xb3\x79\x91\xb5\xc8\xd2\x15\x69\xb6\x5c\xd6\x7d\xd5\x3d\x7b\x2a\x09\x52\x78\xdd\x77\x56\xfa\x45\xdf\x49\x5c\xbf\xb3\xa8\xf7\xbb\xa4\x29\x56\x25\x75\xac\xa1\xa8\x77\x1a\x4c\xf6\xc5\xa2\x2d\x3b\x6e\xf4\x5f\x24\x94\xdc\x16\x4d\x5b\xd6\xdc\x9e\xdf\x24\x94\xec\xb2\x15\x03\x5c\xd2\x5f\xd2\x15\xdb\xdd\x26\x43\x86\x6b\x0d\x26\x9b\xac\x5a\xf5\x02\xf3\x56\x83\xc9\xb2\x29\x28\x69\x5e\x15\x7b\x8a\x3d\xc1\x47\x4a\x1f\xb3\xd9\x2c\xe9\x09\xa7\xf3\x5d\x53\xdf\x94\x9b\x62\x9e\x55\xf9\x7c\x2b\x58\x7b\x4f\xf1\xa9\xc6\xa7\x14\x9f\x72\x3c\xba\x51\xe4\x84\xa0\x79\xd6\x6a\x5f\x68\x68\x08\x5f\x59\x9b\xa0\xa8\x2a\xdb\x5a\x6e\x0e\x26\xc5\x36\x2b\x37\x3c\x08\x4f\x38\x40\x8d\x6f\xdb\x7d\x8d\xa1\xba\xd4\x20\x21\x62\xde\xdd\xed\x0a\xe0\xe1\xc9\x35\x85\x92\x65\xb6\xeb\x96\xeb\x8c\xdb\x2a\xa1\x84\x80\x76\x35\x21\xa4\x6e\xee\x00\x67\x1f\x49\xdd\xac\xb2\xaa\xfc\x7b\xd6\x09\x92\x2e\x82\xcf\x64\x5b\x36\x4d\xcd\xf8\x3d\x43\x20\xa1\x1e\xcf\xb9\x1c\x8a\x39\x27\x4c\x04\xa5\x70\xca\xb6\x5c\x35\x82\x4a\x4e\x3c\xc3\x17\x97\xc2\x69\x37\x75\xf3\x49\x13\x5e\x72\x70\x90\x95\x1a\xa1\xa9\x71\xfd\x59\x45\xc8\xd7\xd4\x33\x7c\x44\x00\x6d\x92\xe5\x5b\x42\xe5\x2e\xab\x0a\xc6\xd1\x31\x7f\x11\x5e\xe8\x2b\x51\x9a\x9a\xb7\x45\xd7\x95\xd5\x8a\x91\x7d\x2c\x51\xe9\x95\x46\x25\x41\x9a\x8b\xbb\xab\x7b\x37\x9c\x14\xff\x57\xfa\x4c\x2f\xe5\x53\xd2\x82\x4c\x48\x74\x39\xb9\x27\xed\xfc\xa6\x28\x72\xe9\x4b\x9b\xbe\xa4\x70\xb2\xeb\x37\x1b\xc2\xda\x1f\x7d\xd1\x76\x9c\xe9\x92\xbe\xa9\xff\xf2\x9d\x94\x6d\x4b\x01\x8a\x7e\x83\x40\x42\x43\x57\x2d\xd1\x99\x13\x04\x92\xe4\x43\x5b\x64\xcd\x72\xfd\x31\x91\x7f\xb4\x95\x03\x4c\x7b\x87\x06\x95\x09\x49\x89\x48\x6a\xb0\x0a\x92\x65\x9d\xf3\xc7\x09\xfd\x51\xd1\x65\xd5\x76\x34\xe3\x3e\x26\x1a\x60\x30\x09\xc9\x00\x74\x65\x07\x2c\x68\x24\xa6\x6f\xcb\x23\x98\xbe\x2c\x9b\xb6\x7b\xd2\x95\x44\xac\xef\xfa\x2a\xe1\xfe\xd1\x6c\x9b\xe7\x0b\x63\x42\xaf\x6a\x42\x11\xa2\x1b\xea\xdf\xd9\xdd\xd5\xbf\xbc\x3d\x4a\x2f\x89\x13\xad\x9a\x82\xc2\x29\x95\x41\x7f\x94\xe7\x4f\xb3\x84\x72\x59\x4d\xa7\x59\x97\x2d\xb2\xb6\xf0\x68\xe5\x44\xa1\x6e\x97\x06\x1a\x67\xae\x06\x0e\xd6\x76\x51\x7f\xa7\x66\x08\x95\xa1\xf3\xca\x95\x71\xce\x93\x8b\xe2\x99\xa9\x21\xf3\xe5\xa6\xe0\x78\x2a\x2a\x7d\x73\x7e\x7e\x71\xfa\x4b\x5a\x54\xab\xb2\x2a\xd2\x7d\xd9\xad\xd3\xbe\xbb\xf9\x6f\xf3\x55\x51\x15\x0d\xf1\xb8\x65\x99\xd2\x9c\x6a\x88\x12\x52\x22\x6c\xe9\xdc\x2c\x69\xdb\x0d\xcd\x7d\xa0\xf7\xea\xea\x6d\x7a\xc6\x28\xde\x65\xdd\x1a\x0d\xe9\xd6\x49\xfb\xc7\x86\x51\xe4\x2a\xbc\x5e\x17\x29\xa8\x0c\x40\xf5\x8d\xe1\x23\xcd\xb5\x8d\xb3\xa4\x68\x9a\x39\xb1\xa5\xee\x6e\xae\x99\xb5\xbc\x21\xa4\x14\x41\xa4\x53\xd5\x5d\xba\x28\x52\xe4\x99\x25\x89\x35\xd8\xb0\x7b\xbc\xdb\x6d\xca\xa5\xcc\xf5\x57\x92\xe6\x11\xcd\x2b\x88\x62\x29\x84\x03\xa2\x2c\x2d\x40\x17\xb1\x67\x9e\x0f\x69\xc4\x40\x90\x7f\x5d\x10\x03\x5c\xf7\x2b\x61\x7b\x9b\xba\xcf\xbf\x03\xa5\x5a\xeb\x3d\xa1\xa6\xef\x6a\x6a\x30\xb0\xe3\x00\x7c\x15\xc7\x44\x71\xbc\x68\x35\xc5\xb6\x26\xbe\xe2\x88\xbd\x24\x82\xda\x97\x94\x48\x3d\x6d\xb3\x5b\x9a\x6f\x5d\x9d\x76\xeb\xb2\x4d\x73\x22\xb6\x25\x17\x4c\x53\xa3\xa7\xe5\x42\xc8\x82\x08\x54\x48\xc3\xe2\xe2\x31\x00\xd4\xb6\x27\x6a\x5a\x53\x61\xbc\x18\xf1\xca\x49\x45\x4e\xb5\x13\x5d\xa2\x72\x40\xdf\x44\xb9\x35\x71\x65\xe6\x9b\xa7\x08\xe8\x77\x58\x3e\xb5\x2a\xbb\xb9\xa1\x56\xb5\x44\x15\xaf\xd3\xe5\xa6\x26\x92\x7a\xff\xee\x2d\x65\x5e\x77\xdd\x6e\xbe\xab\x1b\x90\xf1\xf5\xf5\x25\x4d\x8f\xa6\xf3\xb1\x01\xae\x19\xa6\xea\xb7\x0b\xfa\xda\xaf\x4b\x62\x02\x59\x30\x40\x40\xc5\x86\xd7\xbf\x2a\xad\xab\x19\xc6\xaa\x6f\x36\x83\x61\xa4\x2a\x2d\xe5\x40\xf3\xb8\x09\x4f\xf9\xe7\xca\xb7\x12\xdd\x6d\x49\x48\xd8\x63\x50\xa9\xab\x05\xd6\x21\xa2\xad\x7a\xc7\xe5\x06\xc4\x75\xa1\x11\x9e\xa2\xb0\x76\xb9\x74\x59\xc1\x28\x15\x22\x48\xc0\x85\xb7\xd4\x61\x9d\xcd\x57\x67\x84\x06\x4c\x69\xc4\xde\x34\xf5\x96\x62\x5f\xd2\x9f\x8f\xf0\xcd\x3f\xe3\xf2\x00\x93\xe5\x39\xb1\x99\xf6\x28\x7d\xf7\xf2\x24\xfd\xcf\x7f\xfa\xf1\xc7\x59\xfa\xa6\xe3\x09\xc1\x34\xf2\x37\x1e\x5b\x0a\xca\x52\xea\x40\x69\xe6\x76\x34\xfc\x0f\x98\xc0\x1f\xa4\xcf\x90\xfa\xdf\x8b\xcf\x19\x89\x01\xc5\x6c\x59\x6f\x5f\xf0\xe4\xde\x66\xdd\x2c\xe1\x14\xa2\x1a\x25\xa7\xab\xa2\xca\x29\xa0\x0b\xb2\xa6\x05\x5c\x47\xd3\x83\xe5\x59\x84\x93\xf9\xb2\xae\x6e\xca\x86\x3b\xf4\x6b\x95\x2d\x08\x27\x26\xb6\x10\x3b\x46\x8a\xad\x7a\x84\x34\x9a\xc8\xe5\xcd\x9d\x07\x45\x57\xcf\x39\x52\x07\x34\x61\x51\xae\xe0\xe5\x08\xe8\x74\x58\xbe\x42\x34\xc6\xed\x82\xba\xd7\x18\xbe\x5b\x8f\xf0\xfa\xe6\x66\x43\x8c\xcd\x98\x95\xd6\x70\x21\xb1\xc2\xb7\x42\x10\x22\xc6\x1d\x04\xaf\xd3\xb2\x05\xe4\xc9\xe9\x79\x5a\xdc\x12\xb5\x11\x39\xd0\x4a\x99\xf7\x4b\x50\x18\xc3\x1e\xa5\xbc\x4c\x10\x7e\x89\x33\x2c\x85\xbd\x05\x73\x95\x9b\xc6\x0c\x61\x49\x40\x34\x45\x73\x29\x6f\x2e\x08\x6a\x4c\x04\xb1\x6a\xae\x58\x76\x0d\xd3\x26\x33\x8c\x5a\x87\x51\x6a\x87\x79\x69\xb8\xab\xcd\x5d\x0a\x79\x01\x74\x21\x12\x9d\x89\x9e\xed\x2c\xd1\xb5\xca\x04\xd8\xf9\x6d\x09\x61\xcf\x0d\x15\x52\x4d\x9a\x65\xf6\xf0\x1b\x03\xb0\x14\xd9\x4e\xe6\x75\x0d\xbb\xe0\x8a\x5b\x27\xe8\x71\xfb\x5a\x34\x01\x35\xb0\x34\x4a\xc4\x78\x5b\x82\xd3\x28\xb2\xd0\x56\xc2\x18\xaa\xa6\xaa\xda\xa2\x40\x09\x94\xff\x29\x95\x89\x3c\x33\x15\x7e\x54\x1e\xb1\x75\x97\x64\x92\x34\xaf\x53\x5e\x08\xc0\xce\x28\xb7\x75\xb5\xd2\xee\x6b\x9f\xd3\xa6\x5c\xad\x89\xaf\xd4\xfb\x23\x41\xda\x7e\x5d\x17\x4c\x3b\x6f\x4e\x9f\xff\x20\xed\x58\x31\x73\x73\x99\x98\x2d\x66\x7d\x57\x33\x9d\xea\x10\x4a\x13\xdc\xf2\x02\xc8\x91\x98\x25\x40\x43\xc1\xd6\x44\xb7\xf1\x6a\xad\xf3\x24\x4c\xd3\x09\xe2\x61\x24\xf7\x40\x38\x56\x29\x66\xbe\xaa\x21\x9e\x99\xd4\xc2\xac\x9a\x24\xfd\xb6\x9b\xaf\xca\x6e\x7e\xc3\x13\x96\xcb\x7c\xc9\x79\x79\xe5\xa0\x94\xf4\x11\x25\x3d\x4a\x69\xd6\x93\xcc\x99\xff\x94\x3e\xbc\xd5\xe5\xfa\x4f\x3c\x13\xe7\xd9\x2d\xc1\x62\x30\x54\xe8\x6b\x0a\x91\x16\x4c\xbb\xc8\x6b\xa2\x73\xc6\x79\xdb\xef\xc0\xd1\x75\x85\x3e\x4a\x77\x02\x98\xd7\xfb\x6a\x53\x67\x39\x58\x0e\xcd\xae\x12\xba\xd1\xa2\xac\x32\x5a\x5d\xac\x14\xb0\xb2\x87\x44\x0d\xe7\x17\xd7\x00\x5c\xd5\x8b\xbe\xdc\xe4\x06\x30\xa3\x1e\xde\x66\x9b\x32\x67\x39\x4b\xc7\x3d\x94\x69\x2c\xaa\x94\xb6\x2c\xeb\x86\x97\x43\xf4\xc6\x32\x1e\x58\x87\x1b\x5e\xdf\x10\x4d\x79\x15\x16\xf9\xdc\x92\xc9\x68\xa0\x81\x87\x00\xca\x0b\x2a\x28\xa6\x6c\xab\x47\x1d\x5a\xba\xec\xa9\x2e\x1a\x74\x8e\xa6\x8c\x6d\xfa\xe4\x05\xfd\x26\xbc\x3c\x0b\xdf\x5b\x8d\x11\xcf\x89\xa9\x24\xf6\x32\x4b\xa3\xa6\x46\xe4\xed\xa8\xcb\x88\x37\xe8\x6b\xd8\x5e\x23\x81\xb6\x17\x7a\x65\x45\x70\x43\xc3\x5a\x7c\x47\x81\x47\x34\x81\x57\x1b\x0c\x42\x06\xe9\x85\xc4\xb8\x9a\xf0\xc6\x04\x72\x24\xd3\xe5\x86\xba\xc6\xbc\xb3\xcb\x3e\x51\xdb\xb2\x86\x84\xb0\xe4\x03\x2b\xcb\x1f\x93\x5e\x04\xa0\x7a\x93\x3b\x61\x13\x34\x5d\x37\x43\xe5\xcc\x03\x39\x7a\x6d\x49\x8a\x5c\xae\xe7\x4e\xd5\x66\xa4\x74\xc5\x67\xac\x79\x48\xf2\x9a\x37\x13\x3b\x27\x25\xdb\x3b\x0c\x17\x77\xe2\xec\xce\x8f\x16\x89\x3f\x34\x45\x48\x44\x5f\xd4\x8c\xb5\xdb\xc2\x41\x9d\x84\xb1\x71\x06\x2a\x8b\x04\x35\x2d\x2a\xd6\xa1\x28\x49\x14\x3d\x4d\x15\x65\x8f\x54\x91\x0f\x6a\x02\xf8\x98\x58\x05\x51\x91\xc9\x07\x62\x06\xa4\x97\x78\xdd\x78\x6e\x83\xe3\x74\x64\x56\xe9\x94\x1f\xf8\x75\x70\x5d\xec\x78\xc9\xdc\xb6\x18\xd5\x0d\x41\xe6\x77\x2a\x7b\xb9\xf1\xfd\x59\x38\x2d\x0d\x38\xf1\xa7\xef\xcc\xb8\xf0\x8d\x45\xfc\x52\xd2\x48\x22\x7f\xbc\x72\x88\xc2\x4e\x32\x32\xac\x14\x4d\x73\x77\x94\x46\x6b\xd0\x9a\x74\xf3\x45\x41\x0b\x9c\x66\xcb\x67\xa6\x1d\xf0\xa8\x65\x4b\x21\x79\x18\x1a\x40\xa4\x92\xb3\x6e\x86\x4b\x1a\xb7\x50\x18\x94\xd6\xe2\x16\x7c\x2c\xe7\xe1\xaa\x3f\x51\x27\x21\x6c\x5b\xb0\xcc\x37\xdf\x8a\x6e\x2f\x5f\xe9\x59\x91\x90\x60\xb2\xa2\xf9\x68\xf4\xf6\x9c\x55\xb2\x15\x24\x54\x25\x37\x06\x28\xba\x90\x83\x2a\x84\xc5\xfc\x6c\x06\x15\x9a\xd8\x7b\xe8\xab\x34\x35\x47\xe8\xa7\xb5\x86\x92\x67\xc6\x91\x65\xc1\x85\x7c\xd2\xd2\x64\xf7\x48\x3c\x66\x63\x48\x1a\x42\xa9\x9c\xe8\xbb\xc5\x19\x78\xd2\x3f\x5b\xbc\x78\xd8\x3e\x7b\xba\x78\xe1\x58\xe3\x72\x5d\x2c\x3f\x89\x2e\x51\x56\x8b\xfa\x33\x14\x2e\x1a\x78\xc6\x71\xc5\x53\xe4\x61\x9e\xae\x29\x15\x32\x39\x4d\x65\xca\x46\x88\xe7\xd4\x68\xd0\xa8\x31\x3c\xe3\x67\x66\x9a\x72\x8b\x83\x11\x12\xe5\x46\x25\xd2\xb2\x84\x86\x91\xe7\x0e\x74\x7a\x4f\xb7\xc7\x1c\xcb\x94\x0b\x36\xef\x49\x17\xfd\xdd\x94\xdb\xb2\x1b\x91\x0e\xf3\x91\x4c\x49\x50\xf5\x7c\xc3\x25\xca\x02\x36\xd0\x16\xe2\xc6\x54\x0c\xad\x9b\x46\x4e\xfb\x8c\xd4\x9b\x3f\xa5\x44\x42\x3d\xad\x42\xdc\x27\x6a\x26\xb1\xe3\x8c\x17\x5e\x52\x10\xb2\x76\xde\x57\x8a\xd6\x22\x37\x62\x7a\x5d\x62\x91\xe0\x7a\x8d\xe4\x03\x28\xc3\xbc\xca\xb9\xe9\x63\x87\xf1\xef\x49\x28\xbe\x71\xd9\x98\x73\x73\x83\x4a\x96\xc9\xb2\xc9\xc1\x23\xce\x56\x15\xa2\x5e\x01\x03\x0c\xc7\x03\x4d\xca\x81\x1f\x3d\xd2\x30\x3e\x51\x0c\x06\x64\xd1\x77\x5d\xcd\x32\xf7\x86\xa9\x46\xf2\x58\xab\x4f\x00\x08\x35\xc2\x97\x87\x01\x09\xf1\x24\x63\x53\x98\x0c\x3c\xf7\x46\x42\xd5\x56\x06\xbd\xd3\xa5\xce\x81\xe5\xa2\xae\x67\xd5\x9d\x91\x32\x11\x04\xb7\x82\x2b\xec\xa6\xdb\xf2\xb8\x29\xbe\xf7\xad\x71\x73\x06\x39\xac\x45\x92\x3d\x98\x4f\xef\x90\x2a\xe6\x21\x9b\x75\xb6\x72\xa9\x91\xc5\xd3\x47\x13\xa3\x17\xe9\x3c\x33\x88\xc1\x92\xd8\x98\x03\xd1\xd4\x0b\xe4\x9e\x0d\xea\xf2\xea\xce\x18\x83\x5d\xdc\x64\xbf\x00\x75\x75\x3d\x6f\xd7\xa2\x5a\x5a\xf3\xd2\x4d\x51\xad\x22\x33\x01\x4c\xc4\x20\xba\xff\xc2\xcb\x1c\x09\xf0\xd9\xe6\x63\x72\x07\x7b\xd4\x5f\x89\xc3\x57\xb0\xf4\xd5\x09\x25\x88\x32\x72\x86\x00\x81\xb2\x66\xf4\x31\xe1\x25\xf0\x7c\x20\xd6\xf1\x12\xa1\x71\x81\x7c\x81\xa4\x5f\x23\x69\xcd\x86\x30\xb9\x9c\x10\x01\xdf\x15\xde\xa2\x89\x90\xeb\x22\x29\xd1\xd7\xa6\xea\x90\x3e\xfd\xa9\xd0\xc2\x5f\x93\xda\xdc\xbe\x87\xda\x2b\x3a\x2c\x2b\xbc\x97\xd9\x1d\x0b\x5d\x12\xad\x1f\x48\xb8\x2e\xb2\xad\xb6\x92\x83\x52\xc4\x31\x2d\x67\x1a\xc9\x41\x5a\xe5\x02\xab\x46\x02\xf1\xc3\xba\x20\xb2\x88\x2e\xfb\x4e\xfc\x2f\xd4\x5c\xfa\xfb\xc8\x14\xf3\x7b\x92\x6d\x76\xeb\x0c\xeb\x7f\x00\x06\xab\x03\x01\x61\xe0\x53\x80\x80\x16\xfa\x6d\xd1\x94\x4b\x0e\x72\x86\xc7\x4f\xe6\xdf\xc3\xe0\x44\x13\x85\x04\xc1\xb8\xb0\x9c\x26\xc9\x3f\x54\x20\x87\x59\x48\x0c\xcb\x6d\xcb\xbf\x5b\x2f\xa2\xe2\x38\x9e\x78\x0e\x41\x40\x24\xf3\x50\x0e\x08\x0b\x23\x8b\x67\x5d\xca\x7c\xa1\x63\x11\x30\x2a\x7a\x9b\x7d\xfe\x52\xc6\x6d\x3d\x91\x4f\x58\x81\xcf\x64\x13\x5e\xbb\x18\xb3\x03\x82\x67\xfb\xc6\x41\x68\x1a\x7a\x06\xa9\x3e\xd1\xaa\x56\x39\xb0\xf7\xf2\x9d\xe2\xfb\x27\x33\x9e\xd3\x12\xa2\x02\x74\xea\xcc\xe8\xb4\x38\xe7\xcc\x37\x21\x08\xcf\xfc\x74\x0b\x85\x63\x47\xce\x2c\x46\x9a\xca\xef\x18\x07\x49\x94\xa2\x27\x10\x49\xcd\xbc\xc5\x7f\xce\x6b\xe4\x9c\x85\xce\x2a\x14\x2d\xdd\xea\x69\xeb\x0b\x20\xc4\xee\x3b\x1f\xe7\x1b\x4c\xb8\x83\xd9\x49\x14\x98\xc8\x7d\x31\x36\xe4\x1d\xc8\xdf\xd1\x94\x99\x28\xc0\xcd\xa4\x83\x19\x65\x30\x91\x89\x7a\x9e\x8f\x78\xc1\x38\x23\x83\x91\xda\xb3\xd9\x14\x2b\x36\x35\x59\xc5\x51\x6d\x4a\x42\xb4\x18\x08\x58\x48\x40\x1e\xc3\x6e\xb0\xc2\x71\x0d\x85\x78\x37\x46\xb1\xfa\x44\xad\x26\x71\x9c\x82\x9c\x33\x50\xa2\xb4\x19\xba\x92\x6f\x59\x5f\x68\x7b\x66\xcd\xac\x5b\x88\x74\x12\x8f\x06\x2f\xbc\x28\xaa\x40\x15\x87\x8b\x27\x5a\x64\x85\xeb\x4b\xe5\x03\xec\x1b\x8b\x0e\xd5\xed\x71\xc1\x5a\xb8\x03\x3a\x54\xac\x53\x08\x8b\xcf\x25\xcc\x76\xaf\x4a\x36\x07\x41\x25\x74\x9a\x30\xd2\x66\xc9\x86\x98\x01\xab\x1e\xd2\x2b\x91\x63\xeb\x5b\xd6\xdc\xb8\x3e\x4e\x95\x7c\x62\xc6\xd3\x4e\xf1\x38\xab\x72\x49\xca\x5c\xbd\x2f\xf2\x23\x5a\xe2\x39\x07\xb5\x13\x6c\x23\xdb\xec\xb3\xbb\x16\x36\x12\xe3\x38\x6c\xb2\x94\xec\xcc\x4e\x48\x00\x58\xa1\x55\xa1\x7d\x9a\x66\x9c\x61\xa2\x25\xde\xc9\x8b\x87\x5b\xa6\xf7\x50\x0f\xc1\x2d\xd4\xea\x42\x5a\x37\x2f\x7b\x58\x62\x75\xad\x61\xd5\x96\x15\x41\x96\xf1\x25\x39\x28\x08\x5b\x1e\xca\xf9\x27\xf2\x1e\xb1\x78\x44\xd5\xb0\xb0\x42\xfc\x58\x70\x4d\xf2\x1f\x61\x16\x4d\x0a\x6c\x05\x3d\x95\xff\x44\xe4\xe2\x92\x70\xc8\x7a\x96\x57\x9f\x79\x6d\xa2\x51\x31\xc3\xae\xc4\x43\xf9\x4d\xda\x8e\xa6\x00\x63\xda\xb6\xe9\xfe\x2a\xf2\x95\xaa\xcc\x9c\x8a\x29\x06\x34\xb5\xeb\x72\x97\xd6\x30\x16\x86\x28\xf4\x64\x1b\x88\x98\x84\x8d\xbc\x80\xdc\xcd\x56\xd3\x26\xab\xda\x9b\x02\xe6\xd3\x6d\x7a\xc3\x3b\x41\x33\xad\x9a\x25\x56\xd9\xae\x3b\x50\xb3\xe8\x30\xa8\x3a\x5c\x2d\x30\x76\xc1\x40\xc5\x55\x13\xcc\x2d\x6a\xd6\x36\x00\xab\xbe\xa4\xd6\xda\xc0\x64\x36\x42\x01\xa4\xc6\x68\x93\xc2\x5a\x73\x5b\x84\x88\xb8\xf9\x47\x7b\x1e\x60\x5d\x2d\xc4\x62\x56\x8f\x87\x49\x2a\x85\xb5\x02\x7b\x4c\x8b\xbb\xb8\xf7\x9c\xd5\x51\x00\xef\x78\xdc\x16\x5a\x0b\x4f\x0c\x9e\x2b\x83\x02\x61\xa5\xf0\xba\x42\xd2\x65\x50\xf9\x16\xd4\xc4\xe5\x3a\x9a\x9d\xd7\x48\x49\x25\x65\x34\x41\x93\x0f\x5c\x35\xa9\xf1\xeb\xac\x5a\x15\x6c\xea\xa2\x92\x78\xc9\xc3\xb7\x4a\xe8\x12\x49\x0d\x5e\x35\x12\x66\x03\xb9\x65\x59\xd2\x84\xac\xb7\xf7\xe6\x2c\x2b\x33\xd8\xb4\xc9\xdf\x6a\x92\x21\x60\xe9\xfd\x33\x85\x58\xfa\xad\x92\x68\x6f\x67\x60\x67\x80\x7a\x50\x76\x77\xd8\x74\x5a\x90\x0c\x2c\x4a\x1a\xc5\x90\x9a\x0b\xee\x00\xcb\xc5\x4b\x0b\xd3\x78\x64\xcc\xf4\x78\x6a\x4b\x48\xe1\xc4\x8c\xf4\xd2\xc2\x09\x6b\xc9\xdb\x19\x16\x07\x16\xa6\x61\x9c\x0e\x96\x84\x47\x0f\xdb\x47\x3c\x60\x96\x36\x0b\xe0\x77\x59\x47\x6c\xb1\x12\x15\x45\x38\x54\x98\x55\x93\x5d\x11\xe0\x2a\x02\x36\xc3\x8e\xae\xa0\xe2\x63\xe2\x37\x9a\x6d\x8f\x79\xca\x20\xaa\x2c\xa6\x55\x99\xf7\x9f\x29\xa8\x16\x91\xd4\xb9\x59\xa8\xaa\x8a\x6d\x3c\xdb\xf4\x69\xe3\x3d\xa0\x36\x51\x13\x50\x6c\xff\x51\xf2\x7e\x9e\x9e\x4a\xc0\x94\xde\xbe\x44\x9f\xca\x3c\x49\x76\xc0\x7b\xb0\x2d\xae\x03\xe1\x1a\xad\xee\x0f\xde\x06\xdd\x0c\x57\x76\xc2\x82\x94\x02\xc2\xb5\x2d\x01\x48\x01\xbc\x87\x1a\x28\x6c\x6c\x5c\x85\x26\x57\x05\xdb\x1d\xa4\xef\x72\x3e\x06\xdb\x17\x8b\x94\xcd\x9d\x44\x38\xa4\x17\x69\x47\xb7\x19\xa9\x54\xb7\x65\xe6\x2c\x33\x34\x5a\xbc\xf1\xae\xab\xe8\x4b\xde\x74\xc7\x4e\xe6\xd8\x43\x84\xf7\x23\x74\xeb\xe1\xad\x06\x93\x7e\x97\xb3\x4d\xcb\x77\xf8\x3d\x22\x5c\x87\xe3\xf4\xc0\xda\x88\xae\x5b\x36\x27\xcd\x08\x78\x9e\x2a\x1c\xb7\xec\x6e\x66\xd3\x67\xc2\xeb\x43\xa7\x50\x3e\x04\x09\x8d\xfc\x92\xa4\x4a\xab\x01\xcc\x84\xf7\x00\xbd\xb2\xaf\x07\x84\xd0\x5a\x99\xae\xeb\x7d\xba\x29\xab\x4f\xad\xe2\xd7\xd9\x43\x4c\x4f\x4e\x4f\x11\x41\xc0\x62\xa9\x61\xb1\xaa\xac\xfa\xe2\xe7\xc4\x42\x62\x88\x47\x70\xec\xa7\x50\xc8\xaa\x38\x64\x06\xba\x7f\x72\x82\xe8\xf4\x18\xd1\x93\xb0\x5e\xcf\xd5\x2c\xd8\xd1\x65\xf6\xab\x1b\x3b\x37\x05\x0b\xd8\x60\x87\xaf\x94\x0b\x11\x7e\xea\xba\x55\xdb\xa3\x67\x3f\x1c\x07\x43\x85\x42\xe9\x68\x39\x08\x1d\x4c\x69\x8c\xed\x53\x10\x14\xab\x87\x24\x2c\x69\x7b\x30\xb7\xe7\xe5\x56\x5c\x81\xde\x6b\xaa\x6c\xd9\x3b\xbd\x02\xc9\x33\xd2\x94\x07\x9d\x09\x77\x0c\xce\x09\x97\xd2\x7d\xe3\xa3\x96\x78\x64\xe2\x82\x20\x04\x8b\x7d\xd4\xd8\x21\x65\x69\x01\x66\xfc\xfe\x02\x81\x19\xf9\x84\x1b\x29\xc2\x9b\x1d\x6b\xa9\x37\x91\x50\x78\xa2\x66\x7c\x97\xce\x98\x0d\xd2\xcf\xb1\xe5\x35\xb4\x36\x44\x9a\x92\x96\x70\x50\x9a\x1e\xb4\x69\x34\x77\x2c\xdf\x9e\xfa\x16\x76\xc7\x08\x7e\x26\xd4\x9f\xc1\x32\x2c\xbb\x62\x7d\x2b\xf2\x24\x57\x85\x2d\x35\x29\x82\x10\x00\x85\xa3\xf5\x7a\xc6\xb1\x70\x23\x36\x88\x8b\x6f\x91\x03\x50\xf7\xa2\x58\x9f\x2c\x6c\x0f\x3b\x64\x6c\xbb\x86\x06\x9d\x16\xde\x81\x25\x6a\xc4\xd2\x22\xf6\x05\xee\x55\x63\x43\xd6\x73\x2d\xd2\x20\xb5\x2c\xe6\xff\x08\x59\x8c\xb7\x5e\x16\x6c\xdd\xb2\x4a\x95\x59\xbb\x54\x61\xd9\x09\xb5\x01\x73\xa0\x70\xe6\x89\x1c\x98\x88\x9b\x08\xb0\x10\xc4\x2c\xa1\x16\x3d\x8f\xec\xbc\xb0\xd8\xfe\x7f\xb3\xed\x46\x15\x3a\xdb\xae\x6f\xea\x80\x6c\xb8\x8d\x83\x15\x67\x44\x40\x94\x80\xf5\x57\x87\x3e\x58\x55\x75\xf0\xdd\xe2\xca\xd5\x88\x4c\xcf\x68\xa2\x28\x2c\xc1\x4a\x04\xe0\xb0\x2c\xe0\xc1\xe9\x02\x8e\x3b\x22\xe0\xb7\x23\x33\x64\xcc\x5f\x8f\xa1\xc1\x10\x56\x04\x96\xe5\x01\x5e\xd0\x44\xfa\x53\x8d\x68\xcb\x88\x90\x6d\x57\xe7\x87\x72\x27\x3b\x8e\x5e\x24\x3a\x52\xb5\x61\x5d\xae\xd6\xd4\xaf\x72\xcb\x5b\x8e\xe0\xda\xb6\xaf\xe5\xb5\x3a\xfe\xa2\x89\x57\xaf\x2a\xb6\xe1\x70\x0d\x33\x74\xc6\x71\xdb\x67\x6d\xd7\xd4\xd5\xea\xc5\x69\xcd\xea\x16\x5b\x42\x78\xa9\xf8\xf9\xd9\x53\x8d\x27\x96\xc1\x63\xc8\xee\x98\xaf\xca\xee\x75\xbf\x78\xd4\xa6\x2b\x92\x0d\xb0\x80\x3c\xcb\xd2\x75\x53\xdc\x3c\x7f\xf0\xb0\x7d\xf0\x42\xf7\x99\xc5\x2b\x68\x5f\x39\xb4\x3c\x7b\x9a\xbd\x60\xe9\xb9\xad\x37\x24\xd4\xc6\x59\xea\xed\x56\xc6\x97\xd8\xdf\x56\x20\xd1\x7e\x6c\x4d\x17\x15\x30\x57\x34\x8a\x1f\x2a\x70\xe6\x68\xdd\x8f\x8f\x0e\x9b\x89\x49\x91\x7d\x41\x05\x15\x06\xc6\x8e\x5b\xd5\x05\x4c\x93\x6d\x0b\xa9\xcb\x86\x05\x76\x9c\x0d\x03\xc9\xe6\x1a\x6f\xda\x30\xe3\x04\x24\x68\x94\x61\xf9\x29\x2b\xb5\x44\x24\x0d\x8e\xb3\x3a\x65\xe1\xa4\x90\x91\x56\x40\xbf\xcc\x53\xcd\x94\x09\x81\xd1\x1b\x41\x98\x60\x23\x1a\xfe\xce\x18\x80\xf4\x3e\x98\xfe\x90\x5f\x8e\x91\x81\xe4\x17\x68\xdd\xda\x97\xb7\xaa\x63\x23\x81\x16\xaa\x40\x9e\x3e\xaf\x75\x4f\x22\xb5\x48\xb4\x9a\x04\xe8\xae\x88\xc8\x9d\xab\xa3\x3f\x94\x42\xb4\x09\xb5\xfd\xbf\xa6\x39\xa9\xe0\x7e\x3a\x99\x40\xaa\x93\xe9\xd8\xcf\x85\xa1\x88\xaa\xbb\x79\x07\xe7\x53\x30\x8d\xb4\x54\xe7\xa6\x21\xe6\x83\x02\x82\xe0\xa2\xac\x72\x99\x36\x4a\xf5\xea\xf7\xe0\xc8\x9d\x16\xd3\x8a\x81\x60\xe3\xe3\x80\x7e\x07\xc8\xbf\x8a\xca\x0f\x68\x83\xb8\x55\x5f\x05\xdc\x42\xa6\xe3\xbc\xab\xc5\xd6\xa5\x9d\xbc\x24\x7d\x03\x3e\x4f\xc7\x52\xe0\x35\x27\xb7\xea\x77\xa7\x9b\xa2\x96\xe5\x95\x46\x62\xc0\x01\x98\x20\xa9\x75\x88\xc0\x97\x57\x3d\xad\x14\xdd\xaf\x56\x6f\x26\x8c\x01\x4d\x3d\xe3\x0f\x6b\xd9\xbf\x4e\x8f\x2f\xdf\xcc\x12\x57\x9f\x95\xf9\x6b\x46\x32\x93\xb4\x60\xef\xb4\x5e\x26\xa5\x21\x7f\x71\xbb\x25\x92\xdd\x8c\x6c\xc8\x09\x72\x76\x7d\x1a\xf5\x47\xfa\x12\xa7\x0b\x8a\x8b\x36\xb0\x04\x48\x6d\x68\xc9\x90\x33\xbb\x9e\x7e\x47\x88\x75\xf6\x28\x5e\x11\x76\x77\xcc\xeb\x02\x4f\x95\x4c\x10\xb4\x07\xb7\x1a\xb8\xc8\x10\x24\xb4\xe1\x94\xe5\xdb\xc6\xcd\x15\x6b\xb0\xce\x96\x30\x36\xa0\x04\x90\xe1\xce\xc6\x33\x6a\xaf\x5f\xe8\xc2\x46\x8b\x92\x3e\x98\x9f\xa9\xb0\x51\xd9\x7f\xe5\x76\x89\x64\xa6\x38\x0e\x55\x33\x2a\x73\x5f\x6c\xd8\x93\x4e\x1b\xe4\x37\x21\x55\x11\x8b\xb6\x20\x15\xc8\x6d\x3e\xb2\xe7\xa2\x93\x24\x64\x6c\x43\xeb\x88\x15\x46\x10\x44\xc0\xd8\x75\x14\x0d\xca\xd8\xfd\xc9\xf1\xf9\xf9\xc5\xb5\xe7\xf2\x4c\x59\x55\x4e\x6b\xd1\x77\xce\xff\x66\xd4\x2e\xf3\xc2\x41\xfb\xe0\x90\x15\x41\x78\x3f\x20\xcd\x71\x08\x2e\x9c\xf8\x56\x3a\x05\x57\x35\x66\x73\xcd\x6d\x91\x1c\x79\xdc\xfe\xfc\x90\x82\x92\x7c\xe0\xe5\xf1\x63\x62\x36\xc6\x0b\xfe\x4f\x42\x33\x6d\x60\x1a\x07\x35\x7b\x0b\xba\x77\x37\xa5\x06\xd4\xf9\xc8\x6c\x0b\xb6\xd7\x67\x90\x40\x09\xf7\x35\x18\xe9\x4d\x8a\xdd\xb5\x23\xb6\x42\xd5\x0d\x68\x90\x91\xdb\x57\xe5\x1f\x3d\xd6\x77\x96\x3f\x49\x5e\x61\xb7\xae\x45\xb9\x11\x6e\xfb\x9b\xfb\x90\x78\x0e\x0d\x7c\x31\x83\xca\xe9\xeb\x59\xbb\x63\x4f\x35\xe2\xb6\xed\xf3\x07\x7d\x99\xb2\x51\x83\x3d\x43\x1e\xbc\x20\x69\x91\x77\xa9\x69\xf8\x08\xe2\x05\x1b\x26\x3e\x99\xbd\x6b\xe8\x5f\x8f\x34\x73\xa4\xe4\x34\x78\x53\x22\x76\xa2\x15\x2a\x5b\x8b\xc1\xa2\x13\x4b\x57\x1a\xf4\x82\xb9\x33\x53\xf7\xa7\x22\xc4\x94\xee\x48\xe8\xb8\x9e\xd2\x5f\x53\xc2\x1b\x54\xe2\xf9\x44\x45\x1a\x9c\xa6\x70\x91\xbe\xde\x2b\x1a\xef\x25\x2b\x54\xb3\x55\xd9\x91\x4c\xcf\x67\x28\xa0\x69\xd3\x84\x21\xa6\x88\xc3\x18\x12\xb2\x98\x89\xbc\x06\x8b\x8c\x65\x55\x76\x73\x5e\xa7\xb7\xe2\xc1\x4e\xc5\x66\x1b\x91\x81\x62\x44\xcb\x86\x71\xfa\xee\xd7\xe3\xd3\xb3\x5f\x67\xdb\xdc\x1c\x5a\x14\x9f\xea\xc9\x12\x60\x34\x2f\x6e\xb2\x7e\x63\xa6\x36\x74\x18\x11\xe9\x2f\x88\xd0\x63\x13\xa4\x15\x11\xfe\x6e\x65\x49\x94\x83\x14\x6f\x2c\xe6\x31\xcb\xbc\xdf\x1f\x30\x40\x0d\x77\x71\xbe\xdd\x0e\x35\x2c\xe1\x7e\x73\x14\x6f\xf1\xcf\xd9\xb8\x98\xaa\x1b\x48\xb4\xf9\x99\xe8\xb1\x0e\x73\xc2\x77\xe7\x3a\xc4\x0b\x3f\x4c\x3d\x4c\xcb\xa6\x1b\x65\x31\x49\x93\x0e\x5c\x6c\x52\xfc\x3e\x59\x6c\xfa\x42\x83\x4d\x96\x97\x3d\x09\x87\x82\x47\xa3\x71\xab\x49\x87\xe5\x4c\x4f\x9b\x04\xe3\xa2\x10\x33\x78\x2f\xcf\x4d\x0d\xe0\x7d\x73\x16\xb1\x55\xf5\x73\x50\xb6\x11\x00\x77\x54\x73\x89\x7b\x23\x91\xe2\xa3\x0a\x87\x38\xc8\xda\xb1\xcd\xd4\xb6\xeb\xb3\xd0\xdf\x3c\x91\x49\x61\x33\x4d\xa7\xc8\x8d\x9b\x6b\xf0\x5c\x66\xb7\xd4\x78\x92\xe1\x60\x4c\x80\xa9\xd0\x99\x84\xb9\x59\xce\xec\x78\x77\x37\x67\xcb\x0d\x38\xf0\xee\x2e\x81\xcb\x05\xad\x5f\x73\x2c\x8f\x12\x09\x7e\xb8\x29\x77\x72\x76\x8b\x12\xca\x42\xfc\x26\x11\xb8\xf8\xe7\x44\x90\xe2\x46\x08\x03\x8d\x03\x5d\x9c\x40\x7c\xf7\x67\xb0\xa7\x8e\xc5\x73\xb1\x24\x3f\x7f\x30\x5f\xd0\x1c\xfd\xf4\x20\x10\xd7\xf9\xe8\x17\xcb\xe8\xdf\x91\x20\xb5\xd7\xfd\xce\xf7\x12\x4a\xec\xfb\x2f\xf8\xea\xd9\x0f\x4f\x36\x57\x39\x90\xe8\x17\x1b\x64\x13\x3d\x0c\xc4\xcc\x28\x61\x81\x54\xd9\x06\x09\xa3\x21\xe7\xf8\xa3\xe7\x5e\x8a\xa6\xf1\x3c\xfd\x17\xfe\x4a\x5f\xf1\x97\x76\x85\xa7\xb1\x9b\xa3\x18\xe1\xc1\xc4\x0e\x1d\xd3\xc0\x71\xd4\xbb\xd3\xcf\x69\xf1\x66\x09\xb0\xaf\x6e\x2c\x06\xc8\x2e\xd0\xc9\xae\xe7\x2d\x7b\x1e\x77\xab\xed\x92\x62\xe0\x4f\xce\x91\xbc\x64\x05\x25\x38\x6b\x7d\x54\x46\xe2\x58\x85\xb2\x88\xae\x29\x20\x5e\xd1\x9f\xa6\xe1\xe8\x58\x97\xc1\x3e\x2b\x40\x44\x72\xff\x29\xbd\xa6\x18\x85\x28\xc2\xa4\x44\x41\x91\x3e\x3c\x44\x84\x69\xd4\x82\xe3\x72\x80\x48\x7e\x53\xb4\x1d\xa1\x08\xba\xae\xfb\x48\xb8\x8d\x65\x27\x9e\x83\x08\x25\xea\xd7\x2a\x36\x78\x09\x26\xb0\x70\x36\x19\x7b\x89\xbd\xcb\xf6\xf2\x49\x98\xd6\x53\x47\xaf\x25\x24\xd1\xf0\x7b\x16\x50\x78\x47\x3b\x78\x2c\xe3\x4a\xc3\x97\x16\x4e\xac\x01\xb3\x71\x43\x2c\x65\x70\xe8\x29\x5d\x0e\xd2\x6f\x44\xbc\x7f\xc9\xc2\xbd\xc5\x65\xe0\x5f\xa9\x79\x71\xb8\xf8\x2d\x4d\x7f\x31\xe6\x9d\x49\xc8\xa5\xe4\xe2\x60\x74\xca\xc7\xff\x2c\xce\x5c\x38\x2f\xf8\xdf\xc5\x12\xc1\xe8\xfc\xa1\xff\x44\x31\x3f\x93\x73\x81\x2c\xd7\xcb\x29\x2b\x1f\x3d\x1b\x8e\x45\x90\x54\xf1\x22\xb8\x80\x11\x95\x68\x1f\xe9\x61\xf2\x92\xf0\xdf\xcc\x5d\xfe\x13\xfe\x14\x0e\x19\x95\xe2\x06\x37\x1c\xdb\x41\x35\x21\x0c\x55\x35\x09\x26\xd5\x85\x90\x52\xe3\x76\x0a\x98\x24\xcf\x2a\x82\xbd\xa0\x88\x90\xb4\xa2\x82\x59\x66\x1a\x94\x0c\x31\x6a\x1a\x9e\x96\x06\x76\x96\x87\x20\xa9\xc1\x71\x3b\x03\x20\x69\x66\x36\x01\xca\xca\xae\x87\xa3\x8e\x0f\x81\xd4\x62\xe1\x18\xc2\x70\xf4\xfc\xf8\xd0\xd0\x0e\x07\x48\x12\xe7\xbb\x4d\xb6\x2c\x9c\xc3\x2f\x80\xb0\xea\xf2\xf9\xbc\xa8\x1a\x57\x98\x56\x16\x95\x07\x84\x76\xd9\x82\x92\x1f\xe6\xc0\xa6\xcb\xcc\xb8\xf2\x49\x82\x3a\x4b\xa4\xc9\xc5\x5e\xa6\x56\x72\x54\x64\x98\x46\x02\x02\x2f\x3e\x62\xa2\x3d\x67\x6d\x89\xc3\x7c\x18\x63\x22\xc7\xbd\x14\x35\x84\x39\x58\xf2\x88\x6e\x34\xe7\x3d\xc3\xeb\x21\xf8\xe0\xdd\xe1\xa2\x0f\xe4\x53\x09\x05\x72\xc9\x38\x65\xc6\x6e\xe1\x8e\x53\x1e\x63\x33\x16\xdc\x72\x0a\xb4\xd5\x73\xba\xb4\xc8\xf2\x8a\xec\x9a\x9a\xab\xbe\x3c\x95\x49\x46\x39\x9f\x2f\xee\x34\x8f\x8c\x73\xce\x5b\xbd\x07\xb2\x6c\x79\x3f\x17\xcb\xaf\x66\x39\x73\x11\x13\x59\x5a\xf1\xe7\xbb\xe2\x53\x62\xe3\x94\x19\x2b\xbd\xd8\xef\x7d\x8b\xc0\x14\x08\x53\x29\x40\x2e\x10\x98\x02\x11\x7b\x90\x6a\xad\xbc\x0a\xc0\x3c\xa4\xfb\x0b\x93\xd5\xf2\x16\xb6\x83\x7f\x8b\x0d\xed\x7b\xc0\xd9\xc9\x8b\x99\xa9\x58\xc5\xce\x6a\xb8\x80\xe1\x73\x38\x12\xbe\x74\x0f\x2f\xc5\x0f\x33\xf0\xe4\x01\xe2\x09\x42\xc2\xe9\xc3\x0f\x3f\x7c\x6c\x19\xf3\xce\xdc\xf8\xf4\xe1\x87\x1f\x3f\x92\x0c\x83\x3f\x16\x62\x46\xb9\xe7\x37\x6c\x7b\x18\x17\x81\x1c\x06\xbd\x6b\x8a\xdb\xb2\xee\x71\x92\x57\x83\x9e\x27\xc0\x9f\xff\x9c\x7d\xf7\xa3\x69\xed\x0e\xc8\x0d\x66\x75\xee\x92\xe2\x59\x5d\xf5\xdb\xb9\xf5\x51\x66\xfd\xb0\xc7\xfa\xcd\x82\x3b\x57\xf9\xbb\xfb\xe6\x3d\x7a\xea\x72\x99\x93\xc0\xc6\xed\x37\xe9\xed\x9f\xe4\xcb\xf7\xfe\x77\x57\x59\x1d\x58\x29\xaf\xe5\x98\x1f\x0b\xbb\xce\x5e\x7a\x57\x74\xb3\x98\x19\xd9\x91\x62\xb4\x3a\x4e\xd2\x86\xc4\x20\xea\x0a\x87\x14\x03\x6f\x0a\xe0\xc6\xe0\xde\xe1\x73\x90\x38\x2c\x4c\x80\xa6\x4a\x53\x0e\xeb\x09\xe5\x64\x90\x2e\xe8\x56\x64\xc9\xea\xf3\xcd\x98\x92\x56\xb9\x62\xec\xf3\xdb\x0b\xda\xd5\x7a\x6f\xc1\x25\x02\x16\x2d\x07\xad\xd4\xb9\xd4\x51\x50\x64\xd2\xd0\x48\xf3\xdd\x27\x49\x9a\x14\x0b\xf0\x52\xf3\xd7\xe7\x9d\x27\x8e\x8a\x40\xcb\x6a\x6e\x3e\xaa\x2a\x6c\x13\x1b\x63\x3f\x0c\x91\x99\x69\xa4\xf9\x84\x91\xb8\x48\x1d\x3e\x4e\x11\x59\xee\x03\xaf\x7a\xc5\x7a\x38\xa7\x8a\xbc\x64\x1c\xfd\x4a\x7f\xae\x21\x5c\x1c\xb5\x93\xfe\x2c\x4a\x96\x26\x9b\x03\x7e\xe9\x8c\xd3\x97\xf5\xa6\xf6\x4b\x2b\xbe\x86\x00\x62\x9e\x7a\x98\x0f\xc4\x23\x49\xf6\x74\xa6\x93\x09\x44\x14\x33\x7f\x81\x9c\x68\xb5\x24\x0c\x5c\x24\xe2\x44\xe7\x1d\x2d\x0d\x84\x8f\xb4\x1d\xd2\x1c\x97\xa2\x8e\x06\x00\x75\xf6\xb1\x49\x30\x6f\x4e\xd1\x4d\x31\x1a\x29\x59\xe8\xa1\x4e\xab\x8f\x10\x8b\xcd\x65\x25\x27\x55\xb9\x6c\xde\x39\x42\xaa\xf8\x50\x68\xc9\x87\xf7\xf6\xa7\xab\xf6\x66\x51\x69\xa9\x3f\x9d\xa2\x76\xb9\x78\x53\x02\x97\x1c\x80\x2b\xed\x32\xa2\x31\xd9\xa9\x55\x71\x9e\x63\x74\xdb\xb9\x9d\x86\xb3\x8e\x1a\x70\xb7\xaf\x53\xa7\xf2\xe0\xe6\x0c\xe6\xcb\x59\xca\x99\xed\x84\x05\xe8\x5c\xf3\xcf\xb4\x58\xe2\x64\xa4\xe1\xf7\x1b\x30\x4d\x6c\x6d\xc8\xc7\x8d\x59\xf2\x9d\xb8\x19\x08\xec\x5e\xc0\x09\x92\x27\xa4\xb1\x20\x75\x5a\x22\x1b\x02\xe4\x5e\xce\x7d\xd8\x46\x75\x93\xc6\xdb\xd3\x44\xd4\xbb\x32\xea\x94\xbe\x52\x7c\x0d\x9b\x60\x6b\xc6\xb0\x68\xc7\x7a\xe3\x1e\xd1\xa8\x2d\xd6\x34\x75\xe5\xb0\x80\x08\x99\x81\xea\x47\xc3\xae\x6e\x70\x6a\x23\xd6\xa1\x8f\x8a\x1f\x08\xc4\x93\xd8\xb1\x09\x0b\x3f\xfc\x30\x61\xc2\xfe\x17\xa6\xfa\x4e\x9f\x52\x8f\x59\xd9\x4a\x1f\xdb\x29\xf2\xef\xe3\x4e\x16\xe2\xc9\xc1\xff\x61\x82\x3b\xfe\xa8\x45\xcd\x85\xee\xb5\x44\x14\xae\x31\xfe\x58\xe0\x91\xf3\x62\x7f\x74\x47\xc5\x3d\xd9\x6e\x9f\xe4\xf9\xa3\x89\x5e\x07\x44\xef\xba\x3d\xd8\x90\x53\x11\x6f\x40\xfd\x41\x49\x01\x07\x99\xc6\x1d\x03\x44\xe3\xf4\x9e\x7d\x01\x0b\xb6\xcf\xa5\xb9\xc7\x1b\xc8\x3b\x18\xbb\xb6\x4e\x77\xb4\xdc\x10\xda\xdd\xc6\x07\x5b\xe9\xc5\x3b\x3a\xec\xc9\xc0\x2b\x27\x48\x1a\x1c\xe2\xb8\xb7\x79\x86\x07\x9d\xb6\x6c\xf5\xdd\x1e\x40\x89\x5c\xc0\x70\x10\x21\x01\xcf\xf3\x48\x75\x7c\x6f\x02\x70\x8a\xeb\xf9\xba\xff\x23\x39\xdf\x54\xe5\x53\x24\xf0\x25\xde\x37\x75\x8b\x8c\xc5\xcd\x84\xbe\xe1\x74\x27\x21\x9f\x14\x9c\xe1\x04\x7e\x4e\xc2\x6f\x0f\xb6\xae\xeb\x4f\x72\x8e\x75\x81\xa0\x4f\x59\x95\x9d\x25\xf2\x35\x19\xaf\xe3\xd4\x45\xd6\x96\xcb\xf0\xb6\x9a\x5f\x38\x62\xa2\x89\x39\x8f\x71\x33\xff\xbb\x28\x7c\xa7\xf8\x4a\xff\x27\x13\x86\x03\x51\x8f\xb9\x0b\x3b\xb7\x7c\xc5\x7e\x73\x2e\x55\x3d\x96\x82\xaa\xd4\xc1\x6a\x5c\x97\x3a\xff\xb0\xc1\x6c\x7a\x63\xc6\x79\xbe\x1d\xca\x62\xf4\x31\xb4\x71\xf3\x9e\xa2\xf3\x10\x1a\x39\xc1\x4d\x39\xbf\xc5\x3e\xfa\xf7\x10\x8a\x6b\x8a\x73\xff\x65\xcb\x9d\x06\x2f\xcc\x83\x78\x0c\xe6\xf6\xb9\xbc\xd7\x70\x6c\x16\xe7\x5d\xdc\x4a\x9c\x82\xe0\x39\xcc\x1e\xc6\x1c\x15\xbb\x2b\x13\x5d\xcb\xa5\x1f\xfe\xc0\x1f\x04\x45\x6c\x8a\xf2\x79\x47\xab\x17\x37\x29\xe1\xec\x00\xbb\x61\xb7\xb2\xad\xa0\x3e\xd0\xe2\x0f\x27\xc2\x64\xe6\x04\x3c\xde\x74\x1f\xee\x84\x38\x57\x07\x7f\xe8\x55\x1c\xea\xac\xa9\x48\x0b\xc8\x67\xe0\x3e\x0a\xdc\x07\x56\xf9\x01\xa0\x21\xe5\x82\xf8\x93\x6c\xda\x4b\xb6\x2c\x72\xbf\xee\x02\x3d\x44\xb6\x05\x17\xd9\xf2\x93\x6b\x11\xb3\xbf\xa2\xe9\xe0\xf8\x3c\x46\x3b\x3b\x5e\x2d\x21\x7e\x3c\xdb\xbd\x78\x02\x6b\xbb\xdc\x91\x82\x5e\xc8\x04\x2f\x6f\x02\x84\xc0\xf9\x80\x9d\x09\x6e\xcb\xbc\x27\xf2\xe6\xc1\x98\x3d\x7b\xba\x7b\x11\xe7\x27\x8a\xc0\x0e\xcc\xc1\x32\x06\x03\xc7\xa2\x4b\x89\x03\x97\x7c\xb2\x00\x2e\xee\x37\xfe\xe4\x46\x8b\x1a\x0e\xce\xa2\x80\x15\x05\xa4\x6e\xec\xe4\x0b\x8e\x7f\x63\x9c\x98\x1a\x81\x3b\xb6\xa0\x4a\x38\x18\x96\xae\xe6\x01\x69\x63\x07\xde\x68\x76\xa2\x28\xd9\xd9\x1f\xec\x33\x79\x47\x7a\xd7\x34\xcb\xd0\x1c\x6e\x5e\xbc\xd3\x9c\x4e\xec\x30\x3b\x50\xf6\x71\xf1\x1c\x53\xcc\xbb\x79\x8e\xfe\x9c\x04\xd1\x87\x33\x0c\x3c\x6e\xa2\xb2\x62\x8f\x9b\xa0\x81\xb2\xd4\x1c\x2a\xe7\x64\xb2\x0c\xf5\x0b\x08\x4a\xc1\x79\x99\x12\x27\x23\xe6\x7a\x88\x5b\xef\x87\x1b\x1e\x4d\xd0\xd4\xfd\xba\x0e\x8e\x10\x8a\x1b\x10\x26\x6b\xd8\x90\x59\xdc\xd7\xbd\xac\x0f\x8a\x17\x5d\x2d\x06\xcb\x88\x4d\x3e\x5b\x4b\x70\x1c\x6d\xdb\x13\x6f\xd9\x94\x34\xe8\x58\x32\xf4\x2a\xa2\x8b\xab\x6b\x5c\xf2\x42\xbc\x90\x18\xcd\x8a\xe9\x35\xfd\xcb\x9a\xf4\x5d\x3e\x30\xc2\x37\x02\xb1\x1f\xdf\x2a\xad\x97\x4b\xf6\xde\x2b\x2b\xbd\x44\x61\x5f\x98\x9f\x49\x95\x6f\xc4\x93\x2f\xf4\x83\x34\xbe\x2b\x5b\x4c\x29\x6e\xfd\x61\x26\xd0\xee\x8a\x25\x09\x25\x33\x36\xf0\x34\x15\xae\xca\x4b\x4d\x3b\xbd\x77\x47\xca\xf5\x04\x5b\x43\xac\x82\xce\xc6\x0b\xa4\xbb\x93\xcc\x56\x49\xf4\x7b\xc7\xa7\x05\xc4\x3c\xc7\x09\x24\x4e\x14\x9b\x1b\x39\xf9\xc1\xae\x36\x10\xe5\xe4\x02\x1b\xde\xee\x97\x7b\x3d\x78\xd3\x0c\x05\xa8\x0f\x23\x3c\x96\x70\xdc\x99\x7b\xb6\x2b\x1a\x16\x47\xcc\xdb\x37\x74\xf4\x1c\xb6\x09\xba\xa6\xb5\xeb\x8d\xb0\x05\x0c\x1f\x04\x57\x39\x9b\x7e\xc4\xbc\x98\x65\x3e\xb3\xc4\xd8\x36\xea\x4e\xce\xa3\xf3\x4a\x47\xf8\xc2\x61\x2a\x03\x91\xf5\x03\x87\x4e\xf9\x54\x51\xaf\xc3\x61\x3e\xd4\x40\x28\xd7\x33\xd1\x22\x5d\x90\x19\x41\xe2\x23\x31\x82\xf0\x76\x22\x00\x99\x4b\xdb\x90\x85\x29\xb8\x97\x03\x5e\x47\x94\xa8\x73\x0a\x25\x86\xd7\x74\x08\xf9\xde\x33\x8d\x02\x2a\x8f\x6e\x99\x43\x0f\xf5\x78\xfa\x33\x3e\x5b\xfd\x82\xa9\xf7\xd9\x53\x04\x9d\xc2\xa8\x94\xc7\x97\x5a\x05\x14\xc7\x17\x16\xd5\x84\x3f\x2c\x7d\x4d\xb1\xca\x9a\xdc\xce\xa6\x29\xf5\xb3\xeb\x15\xa8\x3c\x74\x3d\xce\x36\x24\x91\x6b\x11\x34\x5b\x09\xe4\x13\x6f\x44\x11\xa1\xf0\x95\x6c\xa6\x84\x30\xe7\xcf\x65\x6a\xb1\x57\x67\xc1\x86\x51\x9e\x03\x32\xa1\xac\x1e\x74\xfb\xf1\x9f\xaf\x2e\xce\x8f\xd2\xcf\x4f\xf6\xfb\xfd\x13\xce\xfe\xa4\x6f\x36\xec\xff\x98\xf3\xd9\xb7\xff\x71\xf6\xf6\x28\x2d\xba\xe5\xf7\x33\x92\xde\x31\x35\xbc\xd8\xab\x6e\x61\x50\x72\x99\x2c\x59\xb3\xfb\xc7\xa7\xcc\x4e\x0e\x49\xeb\x05\x62\xe1\x91\xe9\x90\x69\xf3\xb0\x9b\xb9\x5d\xa9\x40\xcc\xee\x5e\x62\x2c\x48\x57\x82\xb5\x1a\x01\x9f\x00\xac\xda\xf0\xbd\x67\x74\x88\x70\x83\xf8\x96\xdd\x6a\xfa\x4d\x2e\x74\x6a\x1c\x8d\x7a\xa7\x28\x2b\xf2\x9f\x87\x25\x61\x7b\x16\xf7\x25\x3d\x4f\xff\xcc\x8a\x1e\xa3\x54\xa8\x80\x93\x8c\x0a\x00\x1c\xd2\x12\x66\x58\xaa\x17\x3e\x14\xc3\x04\xbf\x51\x7e\x5a\x74\xf0\x10\x9f\xa2\x0d\x69\xb9\x6b\x9b\x1f\x4d\x9b\xa8\xb4\xae\x51\x61\x8d\x70\x6f\xf1\xf6\x8a\xa8\x79\x30\x07\x78\x5d\xda\x0f\xe7\xc1\x70\x49\xd2\x49\xe6\xd9\xbd\x4e\xb2\x11\xc7\x57\xc0\x2f\xcd\x33\x95\x20\x46\x12\x5d\x50\x83\x4a\x76\xa3\x1a\x64\xaf\x60\xae\xbd\xb4\xa3\x5b\xd8\x30\x38\x75\x71\xf1\x12\x64\x54\x03\x06\x12\x93\x0c\x23\xa4\xdd\x90\x98\x37\x0f\x67\x38\x2f\x66\xb1\xe1\x91\x41\xe0\x28\xcc\x0e\x36\xe6\x8c\x32\x72\x93\x0e\xc5\x0c\x29\xd5\xdc\x00\xc5\x5d\x71\x90\x38\xbc\xc8\x6f\x90\xcc\x9a\x85\xdc\x31\x7a\x22\xa1\x10\x5b\xbb\x4d\x7d\x67\x9e\xe4\xa7\xf8\xd2\x23\x5a\x61\xcf\x3c\x98\x76\xca\x43\x06\x12\x7c\x3d\x8f\x8b\xfb\x6b\x70\x59\x87\x8a\x01\xd5\x5d\x2a\x30\xec\x66\x16\x8a\x7a\x91\x55\x66\xa2\x79\x13\xce\xc8\x0e\x6a\xe8\x36\x7d\xea\x6a\x38\xe0\x36\x1d\x67\x0d\x5d\xa7\x83\xac\x5f\xe1\x3a\x1d\x23\x69\xec\x18\xed\xbb\xfa\x15\xbe\xd1\x53\x9d\x0e\x0c\x10\x4a\xc6\x53\x88\x9f\xc8\x30\x65\x88\xc8\xc3\xbe\x79\x4b\x44\x68\x76\x10\xdd\xa0\x68\x61\xc1\x19\x28\x7c\x5f\xa3\x63\x4e\xb5\xc4\xa3\x24\x40\xee\x97\xcc\x12\x79\x79\x73\x33\x5b\x34\xf5\xbe\x65\xdf\x6c\x5c\xc7\xc7\xee\x23\xfc\x9d\x5e\xe1\x5b\x40\xd8\xe4\x0a\xa2\x90\x80\x44\x8a\xbb\x03\x45\x4a\x40\x22\x79\x69\x1b\x5d\x87\x76\x4a\x29\xb8\x81\x8c\x6f\x27\xe4\x23\x55\x92\x32\x93\x2c\xc4\xce\xf7\x73\x0e\xc1\xa7\x1c\x26\x12\x56\xc5\x91\xe9\x8a\x63\x14\x8c\x83\x86\x70\xf3\x50\xc5\xbe\x97\x1e\x72\x83\x1c\xe6\x9d\x55\x41\x58\x06\x47\x60\x44\x0c\x25\x04\x2d\x0f\x12\xfa\xba\x12\x84\xe1\xd2\x43\x28\x82\x30\xe9\x7f\x79\x73\x2e\x9f\x70\x60\xd1\x23\x7f\xf0\x60\x79\xc9\xae\x84\xe6\x16\x33\x9b\x72\x8f\xb1\x34\x71\x33\x12\xfd\xd4\xee\x47\xc6\x97\x83\xc8\x9b\xec\x06\xb6\x4a\xfe\x77\xb1\x24\xcc\xf9\x6c\x97\x4d\xf1\x64\x98\x8d\x90\x23\xa8\xbe\x42\xc0\xc5\xab\xad\x91\xff\x5c\x5c\xc6\x76\xc5\x00\x87\x0f\x73\x8f\x11\x73\xb2\x21\xba\x7b\x48\x0b\x6d\xc9\x0a\xb8\x12\xe8\xa0\x42\x50\x87\xbf\xc5\x06\xb4\x83\x1b\x83\x0d\xa2\xcb\x56\xce\x43\x3c\x5b\xc9\x9e\x8d\x4f\x83\x68\x6f\xc7\x8e\xa3\x3c\xfe\x2a\x1b\x33\x29\x78\x27\x2a\x4a\xc7\x9d\x9c\xcb\xd0\x37\x8b\x22\xd9\x29\x0b\x27\x47\xdb\xf5\x6c\x38\x10\x6e\xef\x48\x71\x96\xe2\xdb\x41\x99\xa4\xc2\xe4\x32\xdf\xe6\x81\xb0\x22\x04\x14\x2e\x2b\x67\x59\xf3\x89\x2f\xe9\xc3\x2e\x96\x15\xb0\x6f\xf4\xa8\x28\xff\x87\x23\xa6\x97\x43\x5e\x4a\x68\x54\x61\xec\x13\x82\xdc\xd0\x99\x8c\x99\xba\x0c\x2c\x5d\xc9\xb1\xe4\xb7\x12\x92\x5b\x9d\x87\x94\x31\x3e\x2a\x41\x69\x4f\x86\xe3\x16\xc0\x3b\x44\xff\xa5\xf8\x3f\xff\xeb\x7f\x13\x7b\xda\xd5\xb4\x5a\xe2\x10\x8f\xde\x1f\xe1\xc7\xdd\x3c\x42\xfd\x55\x9e\x4f\xc0\xa3\x83\x86\x08\xfa\x53\x3d\x17\x43\xa1\x11\x8d\xf2\x3d\x7f\x46\xdf\xbc\xc5\x37\x20\x72\x68\x3b\x9e\xcc\x61\x1f\x1f\x96\x61\x44\x35\xd7\x35\xc2\x9d\x5f\xb7\xc1\xc5\xa0\xc9\xa9\x50\x25\xba\xe9\x25\x25\xf9\x40\x3a\xf5\x47\x7f\xcb\x89\x1b\x88\xe8\x86\x13\xa8\x38\x1e\xc6\x10\xf6\x8a\xc9\x6f\x7c\xa9\xb1\xa8\x8c\x72\xa5\x12\xb6\xa4\xcc\xef\x5b\x6e\x1d\x90\x33\x69\xae\x90\xb0\xa2\x47\xad\x1d\x4c\xd3\xdb\xb6\x70\xf4\x6b\xe2\x74\x60\x78\xe2\x8d\x34\x46\xdd\x94\x90\xdb\x14\x74\x3b\x26\xba\x1d\x1d\x3e\x8d\x66\xff\x31\x31\x30\x4f\x74\x9f\x80\xfd\xec\x38\xc0\x17\x5e\xf0\xcd\xd1\x4c\x7e\x62\xe1\x7d\x83\x08\x9a\xd7\x88\xc0\x65\x2e\xf0\x24\xe4\xff\x04\x47\xe8\xd5\x48\xc1\xb1\x1a\xd2\xf8\xc1\x31\xfd\x26\xba\x92\xd0\x7b\x5b\xe2\xfa\x8e\xe8\x0e\x40\x2e\x1c\x88\x9a\xd8\x22\x1a\x5d\xea\x82\x91\x41\xec\x7d\xd0\x91\xcf\xfa\xa3\x0d\xac\x76\x7a\x06\x94\xcb\x22\x2e\xa7\xde\x35\x4a\x32\xb8\x52\xa4\x8a\xf6\xba\xdb\x99\xaf\x26\x98\x32\x6b\xd9\x3f\xf2\xd9\x78\xbc\xb2\x05\x4d\x9e\x9f\x05\x9e\xbd\x19\xcb\xb6\x0d\x84\x04\xe4\xf1\xd1\xe9\x86\x14\x84\x4d\xa4\xcc\xa0\x20\x16\xe5\x7e\x3e\xe0\xf6\x3d\xbe\x7e\xe7\xdb\x1d\xbf\xc7\x65\xdc\xef\xfa\xfd\x8f\x6e\x5d\x4c\x1f\xad\x77\xc9\xe3\x33\xf6\x2e\x69\xea\xb0\xfd\xbf\x63\x23\x81\x48\x4a\x9b\x31\x9a\xdb\x07\x77\x12\x34\x8f\x33\x44\x1f\xbe\xf6\xe8\xdb\xf7\x13\xa2\xcb\x66\xbe\x42\xda\x8b\x7b\x1c\x08\x7a\x51\xab\x1c\x42\xd8\x60\x15\x1f\x42\x3a\xa4\xbd\x79\xc1\x35\xe2\x19\x43\x1d\x6f\x74\xe6\x08\x3d\xbd\x37\x4b\x7c\x02\x29\x6c\xa6\x33\x4f\xf9\x33\x3b\x66\xc5\x91\xb3\x47\x62\xce\xfb\xf2\x01\xa4\x03\xf6\xe1\xfb\x4e\x22\x0d\x5b\xc9\xbc\xc6\xf9\x5d\x85\x8d\xbc\x37\x47\xb8\xcc\xc6\x7b\x30\xff\x9e\xd3\x49\xd3\x36\x58\xd6\x01\xf7\x66\x8a\xc1\xa2\x6c\xf8\xf3\x06\x05\xd6\x21\x0c\x5f\xa2\x64\x78\x86\xeb\x31\xd7\xe3\xbe\xf1\x6e\xd8\x68\xf6\x78\x10\xee\x3d\xd3\x9b\x37\xec\x5c\xeb\x20\xde\xb3\x3e\x38\x5a\xec\xe4\x6c\x91\x07\x92\x6f\x88\x3b\x93\x29\xc3\xfc\x71\x1d\xb1\x03\x93\xc5\x3a\x33\xf8\x19\x02\x2e\x9e\xb0\xb6\x2c\x70\x66\xe6\x44\x42\x2e\x45\x75\x2d\xbd\x40\xca\x37\x42\x2e\x07\x82\x6b\x60\x10\xab\xab\x9e\xe2\x9a\x8f\x1d\xd0\xa0\xdc\xed\x78\x08\x33\x77\x5b\x06\x0f\x93\x00\xaa\xb8\xa9\xad\x82\x84\xfc\xd3\xb0\x2c\xb9\x28\x55\x57\xcf\xf3\x7a\x9f\xc8\xd2\x39\x83\x1f\x95\x5c\x66\xa3\x31\x71\x93\x24\x8e\x65\x14\x3d\x44\x8a\x3e\x90\x98\x2e\x67\x46\xc7\xe9\x83\x73\x34\x58\x39\xdc\x09\x1a\xbb\x9b\x8a\x05\x50\x48\x0d\x38\xfa\xc0\x72\x7d\x48\x1c\x33\x2d\x15\x02\xac\xaf\x56\x24\xd1\xa8\xde\x10\xe2\x6b\x2a\xe6\x76\x8e\xaa\x3b\x32\xfb\x16\xae\x2a\xe0\xe3\x11\xc2\x0f\xb7\xd6\x0e\xb9\xcb\xd9\xb5\xc3\x5d\x14\xee\xdb\x11\x42\x7c\x4d\x3b\xb8\x96\xa7\xf0\x08\xe2\x41\xbc\xaf\x3d\xa4\x1c\xea\xcd\x0b\xe1\xee\x49\x3b\x6c\xa2\x3f\x88\x72\x1d\xac\xd7\xd8\x81\xcc\x07\xf2\x07\x9b\x37\xc7\x0b\xa7\xa4\xc8\x46\xd8\x84\x88\x20\x1b\xc5\x93\x07\x70\xbf\x3c\xc5\x79\xa4\x91\xd3\x81\x06\x5b\xc0\x1e\x6c\x6a\x15\xd2\x76\x79\x91\x0e\x32\xd6\x99\xca\x75\x92\xf8\xe5\x85\x57\xe0\xec\xe8\xac\xc8\x77\xe1\x92\x01\x01\xcf\x46\x32\x97\x8b\xfa\xdc\x1c\x67\x56\x17\xd4\x3a\x2e\xcc\xb1\x6a\x40\x39\x16\x3d\x86\x33\xde\x19\x4a\x67\x81\xb1\x95\x99\xf2\x91\xc9\xac\xb2\xdb\x6a\x50\xdb\xec\x2e\xda\x00\xe6\x23\xc3\xac\x91\x45\xb3\xe6\xf0\x8a\x3d\x6e\x8a\x5f\xab\xe5\xf6\x3b\x47\x30\x07\x8d\x32\xb3\x70\xaa\x8f\x09\xc4\x93\xdd\xaa\xc9\xd8\x16\x6e\x63\xcd\xcc\x22\x20\x05\x14\xf8\x93\xeb\xa5\x7b\x49\xc0\x73\x03\xec\xb0\x51\x41\x8f\xee\x63\x0a\xdf\xd0\x00\xb0\x8d\xfb\x5b\x00\xb6\x20\x77\xf8\x51\x33\x02\x16\x70\x5f\x43\xf4\x09\x80\xaf\x6f\x08\xf8\xc6\x57\x36\xe4\xc8\x5a\xa1\x37\x47\xe5\xf9\xe4\xfc\xbf\xaf\x7d\x03\x75\x07\xc4\x19\x5d\x4d\x36\x20\xf8\xe8\x39\x26\x47\xf4\x81\x2f\x84\x15\x8b\x0d\x30\xf5\xcd\xd0\xe5\xcc\x17\x55\xd1\x10\x42\x95\xad\xba\xd0\x7f\x23\x3e\x24\xc8\x1e\x05\x5d\x73\xa7\x22\x09\x77\x2e\x3e\xa3\xe8\x6f\x60\x11\x25\x0c\x7b\x99\x72\x5d\xdd\x07\xa0\xfd\xe3\x81\x67\xdf\xe4\x79\x0a\xd9\x9e\x6e\xa3\xd7\xc1\xc6\x37\x87\xdd\x7b\x6b\x5b\x7c\x5b\xdd\xf0\xda\xc2\x56\x4e\x99\xaf\x4c\x96\xb3\x17\x00\x12\xef\xbc\x71\x75\x47\x38\xd8\xe2\xd1\x93\x25\x5f\xd8\x53\x57\xa5\xec\xfb\x9f\x49\x88\xef\x6c\x62\x53\x8c\xda\x61\xf8\xf2\x03\xef\x7f\xef\x7b\x07\xe3\x22\xdb\x98\x54\x10\x90\x70\x90\x1e\xdc\x22\x06\x7f\xcb\xc6\xee\x45\xf3\x25\xa0\x25\x30\x61\xf6\x41\xcb\xb4\x1d\x28\xb4\x6f\xa7\x6a\x9c\xf3\x46\x5d\xaa\xdb\x94\xee\xb1\x26\x66\x12\x7c\x55\x4e\xce\x57\xe5\xc8\x7b\x20\x47\x41\x44\x84\xf3\x30\x61\xe7\x2e\x25\x89\xa2\xe3\x85\xcf\xc7\xe3\x40\x66\x1c\xc5\xa7\x30\xa3\x88\x6c\x39\xaa\xc5\x0c\xd8\x61\x9c\xf8\xd2\x85\x31\x76\x20\x21\x2a\x3d\xbe\xab\x23\x4c\x92\x0b\xf8\xa2\x28\x7d\x73\x20\xee\x89\xd8\x54\xc3\xb8\x4d\xbd\xe2\xcb\x03\x61\x84\x8c\xbb\xa7\xb2\x73\x5c\xa6\xb9\xf4\x45\x45\xc0\x29\x3c\x8c\xc1\xbe\x56\x97\xb5\x71\x6e\x4c\xc1\x30\x42\x4f\xb5\x8c\x00\x49\xa7\xce\x96\x6b\xf4\x7f\x36\x45\x48\xa6\x1a\x3b\x62\xd2\xd7\xc6\x26\x20\xe5\x5d\x88\xd4\x5e\x81\x98\x84\xe1\xe7\xa6\xf0\xe8\x46\x90\xca\x2e\xb2\xd5\x5c\xaf\x33\xa9\xf5\xf4\x36\xfb\xcb\xba\xab\x4b\xd2\x0b\xcc\xb8\xf6\xde\x4c\xc1\x2a\xc6\x27\xa2\xf4\xba\x14\xcd\x29\x12\xc7\x3d\xcb\x99\x2f\x59\x17\x46\xf5\x5c\xc8\xbc\xae\xd6\x7a\x39\x81\xa5\x1b\x73\x6d\x70\x44\xf2\x55\x65\x0c\x5a\xe9\x21\x5c\x31\xdf\xde\x54\x58\xcf\xf8\x48\x29\x2c\x72\x51\x23\x23\xb6\x66\x20\x5f\x28\x61\xd0\xc4\xc9\x22\xbe\xa1\x91\xfc\x50\xcd\x6a\xe9\x1e\xf6\x38\xe5\x3b\xa1\x9a\x05\x1f\x5e\xe5\x35\xac\x90\x07\x97\xea\x2a\xb6\xc0\x4d\x67\xbf\xaf\x65\x68\x10\xeb\xdc\x53\xc5\x1f\x6a\x5b\x53\xb4\x77\xd5\x72\x8e\x57\x56\xda\xb5\x6e\x54\xbe\x2b\xc4\x56\xfe\x68\x46\x71\x4f\x33\xbd\x41\xa0\xc0\x96\x5e\xfb\x48\x2e\xcd\x7b\xbc\xa4\x78\xbc\xf2\x42\x4b\xdc\x13\xf0\x44\xe4\x36\x01\x8e\xc4\xb3\xee\xfb\x7b\x2b\x1a\xf4\x25\x60\x88\x01\x6e\x1b\x34\xa5\x2b\xbe\xaa\x07\xc1\x26\x79\xd8\x0d\x26\x03\x9d\xfd\xe0\x15\xe1\xed\xb0\x8c\xb8\xc7\x7c\x69\x02\xdf\xf2\xc5\x97\xe7\xab\xbb\x8f\x2e\x68\xf6\x8a\x8e\x1a\x8f\x0e\x74\x28\xac\xf7\x9e\x11\x7a\x14\xb5\xe2\xcb\x7d\x0c\x17\x21\x79\x1f\xac\xdf\xe1\x91\x46\xf7\x30\xd8\x7b\x7c\x87\x4c\x41\x2e\xec\x9b\xaf\xea\xa6\xa6\xe1\x91\xf3\xb9\x7a\x89\xdf\x2b\x8b\x6b\x27\x32\xc0\x04\x7e\x37\xef\xf5\x4c\xb5\xe5\x39\x43\x34\xc9\x0f\x7c\xc0\xda\xe7\xea\xea\x2e\xdb\x58\x1e\xb6\x40\x2e\xd5\x6e\x7d\xcd\x09\x96\xeb\xd8\x12\x82\x9c\x9a\xa7\x5e\xb0\xbf\x27\xb2\x28\xf0\x85\xc6\x04\xb0\xd8\xe6\xe0\x43\xaf\x84\xae\x7e\x37\xe7\xae\xe2\xa4\x9e\x44\xa7\x6f\x11\x9d\x5e\x73\xf4\xb8\x06\x6b\x95\xcb\x36\x68\xd4\xa1\x7c\x7c\xdc\x6a\x98\xe7\x25\x9f\xca\x1a\xc2\x1b\xe6\xd6\x45\xb6\x1b\xe1\xed\x35\x45\x8e\xb0\x06\xc8\x31\x02\x00\x7b\x18\x0b\x61\xae\x32\x87\x62\x15\xe6\x78\x43\x51\x87\xa0\xe1\x01\x30\x84\xc7\xf3\x89\x07\x72\xe8\x9a\x3d\x6c\x95\xee\xd9\x8c\x5a\x55\x2f\xfe\x86\xc7\x06\x15\xfa\x42\x3e\x03\xa8\x45\x5d\x77\xfc\xa6\xcb\x8e\xc5\xad\xe5\x27\x87\xa6\x5f\x2c\x9e\xc5\xad\xe5\xa7\x11\xa6\x04\x7a\x8c\x2a\x81\x3e\x8c\xab\x2d\xdf\x2e\x42\x75\x35\xfd\xb2\xeb\x69\x82\xba\x0a\xcf\xae\xf8\xa6\x92\x2b\x97\x30\xaa\x71\x94\x33\xa4\xd0\x61\xe6\xa9\x9a\x97\x24\x44\x14\x93\x55\x9f\x70\xca\xbd\x75\x8f\xf2\x86\x95\x8f\xb2\x4f\xcd\x14\xdc\x51\xcb\x46\xe7\x45\xbf\xfc\x54\x74\xec\x33\xbe\x9e\x63\x87\x39\x2c\xeb\xd2\xc0\xd2\x5f\x00\x96\xbe\x26\xb0\xf4\x5a\x5e\x0c\x1c\x97\x4a\x8b\xce\xb6\xe8\x32\x78\x0a\x04\xa5\xbc\x3a\xa1\x11\xe0\xe8\x3c\x9b\xca\x05\xeb\xcc\x5c\xa5\x6c\x9d\x85\x2c\xf8\x04\x25\xe8\x5b\x86\x22\x78\x1f\x3b\x90\xa9\xd2\x58\x0d\x90\xd5\x6f\x79\xb7\x94\x0b\x58\x59\x31\xa0\x36\xbc\x93\x98\x00\x16\xf7\xe4\x11\xac\xf1\x48\x6c\x8a\xe3\xc2\x3c\x02\xbf\x8e\x19\xa5\x70\x30\x0f\x2c\x8c\x8b\xe0\x2e\xb3\xbe\x9d\x04\xdc\x65\x32\x99\x0e\x42\x5a\xf5\x06\x68\x35\x0f\xe1\xb4\xd2\x56\x50\x29\x6c\x45\x34\x35\xf1\x2d\xd6\x3b\xea\xec\x1d\x64\xb8\x16\xdb\x0d\x75\x78\x0d\x59\x60\xbf\xf8\x44\x97\x82\x89\xf4\x0a\x99\x55\x62\x4c\xde\xc2\xf5\xf3\x16\xb6\xb4\xe8\xd4\xaa\xc4\x45\xef\x85\x69\x9c\x9d\x9d\x72\xe7\xe2\x35\x3e\x3c\x74\xa9\x25\x42\x30\x35\x97\x95\xf8\x29\x16\xf5\x5c\x11\x40\xb9\xa5\x47\x76\x92\x36\x61\x66\x28\x0d\xee\x31\xdb\xa8\x80\xb7\xd0\x27\x82\xbe\x1d\xbc\xca\xd9\x6e\x31\xfb\xca\xdb\x9c\x7d\x6f\x02\x1c\x63\xa3\x3b\xc6\x6e\xd9\xce\x43\x74\x0e\x2f\x41\xcb\x06\xe8\x65\x70\xc5\x70\x04\x8a\x9d\xef\xf0\xf1\xb1\x60\xfb\xd1\x50\x8e\x8d\x3e\x3c\x7a\xa8\x8e\x7c\xa3\x12\x82\x3c\xc1\x4b\x91\xec\x0e\x2d\x67\x8d\xa6\x50\xe4\xad\x83\x86\x21\x77\x2b\x36\xa0\xef\xdd\x5a\x8a\x71\x31\x7d\x59\xff\xff\x93\xf7\x0a\xc2\x06\xf8\x57\x0b\x0e\xd4\xff\x1f\xf2\x6a\xc1\xd0\x32\xeb\x9e\x2d\xc0\xb5\xec\x33\x1c\x0e\x88\xe7\x71\xb4\x71\x15\xcd\x67\xe4\x08\xe7\x29\x22\xe2\xad\x7c\x44\x79\xb3\xaf\x59\x7c\xc5\x6a\x83\x29\x3a\xac\x2f\x38\xcf\x11\xd5\x26\x39\xc6\x97\xeb\xc5\x4d\x90\x98\xf1\x6e\x91\xc4\xab\x35\x22\xd5\x0b\xa2\x0a\xb5\x1e\xcd\x60\x92\xd0\x2d\x1a\x8b\x1b\x3d\x8a\xce\x93\x5a\xa7\xf6\xa0\xc9\xf1\xe4\x8e\x5a\x2d\x99\xe4\xa4\xaf\x1d\x15\x99\x64\x26\x0a\x18\x74\x45\x62\xc2\xfb\x44\x24\x46\xae\xe9\xc6\xbb\x35\x12\xd2\xf8\xb1\x17\x46\xd0\x62\x2d\x26\xae\x3a\x28\x14\x40\x93\xbc\x2a\x68\xcb\xd0\x3f\x55\x62\xc3\x37\xd0\x25\x46\x9f\x93\xc6\x4b\xd2\x12\xb3\x80\xff\x10\xbc\xdc\xd8\xf8\x74\x7a\x6e\xd5\x76\x5d\x53\x2e\xfa\x6e\xfa\x02\x7a\x97\x3a\x82\xb6\x6d\x7f\xa6\xdd\xf4\x0b\xb0\x6d\x6f\x05\x5f\xf5\x5f\x2a\x77\xf0\x38\xd8\x00\x4e\xee\x04\x49\xdd\x3d\x50\x2f\xf1\xad\x89\x5b\xe6\x91\xf3\x36\x63\x2a\x27\x16\x93\xa7\x57\xc7\x9a\x82\x47\xa3\xd5\x3a\x82\xb7\xa5\x0f\x8e\x02\x43\x8e\x1e\xa1\xf6\x49\x8a\x57\x24\x05\xc8\xd5\x8b\xec\x3b\xb9\x63\x5c\x2e\x71\xbf\x7e\x7b\x45\xc1\x65\x73\x27\x1b\x46\x3a\x2e\xbc\x63\xa0\x4f\x35\xdb\xcb\x3e\xc7\x67\xee\x31\xec\x60\xa4\xb5\x48\x7e\x68\xd7\x3d\x23\xe9\x0b\xa7\xf6\xd7\xfa\x8c\xa4\x1a\x4c\x95\x56\xf9\x19\x14\x76\xfe\xdd\xb5\x56\x4e\x70\x14\x79\x40\xf6\x7a\xe1\xbd\x8e\xc0\x68\x31\x8a\x2d\xb7\x58\x68\xdc\xa2\x14\xd2\x7b\xb8\x56\x46\x15\x7c\xe5\xf5\xf4\x61\x59\xc1\xa2\x72\x4f\x5b\x27\xcf\x1a\xc6\xd7\x15\x86\x80\x73\x99\x7f\x76\x2b\x69\x54\xb0\xdb\x64\x1a\x67\x88\xae\x27\x8d\x32\x4d\xbb\x01\xdc\x77\x31\xa9\x18\x05\x4c\x19\x77\x36\x6f\x55\xc6\x63\xd3\xb7\xc2\xde\xf7\x0e\x7f\x00\x72\x2b\x5b\x6b\x01\xc4\x6f\xf2\x4a\x70\x08\x34\xfd\x0e\xbc\x02\x0c\x79\x8a\x46\x0f\x9e\x07\x8f\xde\x05\xb7\x9c\xf6\xcc\x69\xdd\x8b\xb6\x8d\x67\x88\xf5\x8c\xd1\x3b\x44\xb2\xa0\x65\xe0\x53\x6f\xf1\x07\x49\x5a\x11\x27\x85\x95\x60\x85\xe2\x87\x89\x27\xde\x2b\x76\xef\xf1\x3b\x04\xb3\xc9\x7d\x39\x97\xbb\xea\x82\x3c\x30\xf8\x2f\xe1\xc6\x3b\xce\x44\xed\x1e\xe7\xa0\x76\x1f\x00\x97\x4d\x60\xe3\xe7\x57\xf8\x12\x16\xe2\x5a\xcc\xae\x65\x4a\x45\xd6\x61\x89\x1b\xbe\xda\x14\xe2\x20\x5f\x78\xc2\x70\x6f\x39\x4f\x92\x06\x41\x86\x8b\x92\x8f\x0d\x17\x02\x1f\x1b\x2e\x69\x3e\x56\x1b\x36\x68\x41\xdb\x6e\x6c\x20\xae\xae\xde\xc6\xa3\xed\x53\xfd\xce\xfc\x63\xf6\x4d\x79\xc0\x37\xd9\xac\x48\xc3\x7c\x80\x27\xcb\xbf\x0f\x72\x28\x36\x43\xfc\x69\xec\xb0\x0c\x7d\x68\x7b\x50\x84\x31\xcb\x68\xca\x94\xcb\x03\x88\x71\xef\xed\x46\xef\x18\x00\xfd\xf2\x6e\xbb\x2e\x2b\xd1\x43\xfb\x43\x62\xf6\xcc\xd6\x91\x72\xc8\x68\xad\x61\xec\xd2\x1e\xbd\x40\xaf\xaf\x9e\xaa\x6f\xbb\x7b\xe3\xf7\x17\x44\xfb\x16\x4e\x3e\x2f\x3f\x7c\x57\x9e\x9d\xce\x2d\x8b\x3d\x82\xaa\xd7\x36\x70\xfb\xcf\x03\xaf\x51\x03\xb3\xc7\x54\x60\x11\x18\xbd\xbb\x02\x53\x80\x3e\xbb\x62\x8c\x41\x8e\x38\xb1\x7f\xf7\x7c\xa3\xe6\x6f\x39\x06\x05\x2f\xef\xf4\x2d\xec\xdd\xae\xdd\xd1\x63\xa4\x51\x26\x79\x03\xd5\x3d\x78\x38\xce\x6c\xa7\xf5\xdc\x20\xda\xe9\xa3\xc9\x41\xfc\xa3\x2f\x7a\x2a\x5c\x5e\x29\xe5\x2b\x3f\xe9\x33\x7d\x8b\x4f\x37\x56\x72\xac\x08\xda\x30\x3b\x33\x3f\xb7\x83\x46\x50\x8a\x29\xc6\x8d\xd2\xa7\x72\xc7\xcb\xb2\xbe\xd2\xc6\x83\x43\x31\x58\x9b\x7f\x43\x4c\x88\xe4\x90\x33\x9f\xe1\x7b\xba\x81\x0a\x3b\x96\x02\xe3\x74\x23\x28\xa2\xf3\x3a\x20\xa6\xd7\xbf\xbe\xbd\x18\x40\x4e\x4c\x50\x4d\x99\x98\xd0\x9a\x32\x31\x7d\x65\x2b\xc7\x75\x01\xdb\x37\xd3\x3d\x10\xc8\x83\x1d\x10\x1a\xf2\x3b\xb3\x20\x9e\xc9\x82\x94\xda\xf2\x6c\x27\x33\x46\xe9\x4c\xbe\x63\xa0\xe0\x1e\x64\x81\xb2\x6b\x90\x47\xb5\x56\x61\x9d\x95\x6c\x43\x78\x7e\x20\x2e\x02\x01\x3f\x10\x57\xdb\xc9\xe6\x19\x34\xa9\xac\xb7\x65\xae\x82\xa3\xc0\x5f\x6a\x94\x81\x1a\x88\x2f\xd9\x20\xb4\x68\xd7\x4c\x22\xdc\xd2\x49\x6f\x27\xf8\x8a\x86\x4e\x27\x22\xcf\x17\x81\xf5\xd3\x90\x5f\x71\x91\x1c\x06\xbc\x5a\x3a\xc4\x98\x41\xe9\xd5\x89\xbf\x21\x1a\xb6\xa7\x41\x67\x36\xe5\x4d\xe1\x2c\x55\xda\x9b\xb7\x14\x17\x01\xaf\xf9\x1d\x5c\x3b\x10\x29\x2f\xe1\x5e\xd0\xc7\xa0\x13\x61\x51\xda\x93\x51\x49\xbb\x12\xd6\xc3\x00\x2f\x12\x31\x8d\x71\x83\x56\xbe\x1d\x80\x2b\xe3\x1e\xb2\x5b\x7b\x49\x2e\x98\x21\xfe\x59\x27\xbf\x3e\xbb\xda\x79\x5d\x9e\xac\x99\xa1\x74\xe5\x62\x18\xac\x5c\xe6\x2d\x30\x5b\x36\x72\xb7\x0a\xff\x5d\xf3\x3e\xae\x4b\x09\xe7\x9e\xc5\xb5\x44\x7b\x79\x2f\x87\x6d\x34\xe8\xe1\xbd\x77\x81\xa0\xc9\x12\x26\x6e\x04\x8c\x01\x8a\xcf\xc5\xb2\x0f\xb6\x15\x7e\x95\x6f\xb5\xe3\xf9\x62\x6a\x73\x0e\xec\x2b\xdc\x00\x79\x29\x31\x01\xcc\xd4\x05\x4b\xd6\x74\xb8\x38\x9a\xab\xe3\xc1\xfa\x5d\xf5\x50\x7f\x18\xca\x3c\x2e\xcc\xcb\x41\x3e\xe7\x1b\x39\x7b\x31\x70\xc2\x30\xd8\x50\x0a\x09\xe3\xe6\x3f\x44\x72\x9a\x4b\x9b\x68\xb8\x25\xd5\x3b\x66\x59\xbb\x59\x00\x0b\x51\x3c\x78\xa3\x43\xda\x20\xe9\x5f\x72\xb1\x4a\x3e\x88\x4f\xc3\xc7\xc1\x35\xee\x66\x7e\x0c\xdc\x68\xa2\xf3\x3f\x0f\xe5\x4e\x48\x39\x24\x65\x99\xd8\x83\x48\xee\xfc\x0c\x60\x9f\xb6\xcd\xf2\xe9\xc3\xf0\x62\x3f\xbd\x01\x50\x01\xec\xd6\xbf\x3f\xe9\x35\x93\xda\x0e\xbb\xc4\xf0\x77\xbd\x35\x50\xbe\xc3\x72\xc5\xec\x21\x45\xb7\xff\x14\x5c\x1b\x38\xbc\x07\x31\xb8\xee\xb1\xae\xbe\xa5\x20\x77\x87\x87\xf6\xcf\xbe\x07\x78\xc1\x91\x69\x46\x88\x9c\x9d\x1e\xbe\xf3\xa3\xa8\xc2\xc9\x6b\x3e\x89\xe3\xf1\x44\x1f\xf7\x23\x2a\x2a\x6a\x84\x28\xbd\x16\xee\xc7\xb9\xbf\x0f\x1a\x87\xf0\x24\xa1\x6c\xf5\x5e\x2c\x79\x44\xe9\x47\x77\x17\x74\xf2\xa1\xab\xeb\xcd\xc7\x24\x5b\x71\x9f\xe8\x37\xc1\x65\xeb\xe2\xaf\x0b\x9f\x34\x0a\x26\xf2\xc9\xa1\x1f\xb8\xe0\x1f\x48\x4b\x25\x06\x82\xcb\xd9\x7e\xd8\x22\x42\x9e\xe1\x47\xc4\x1a\x11\x7c\x4b\x3f\x3e\x73\x7c\xe6\xd9\x1d\xbe\xf6\xf8\xda\x17\xc5\x27\xc9\x0c\x0e\x43\xd9\x49\xeb\x5b\x23\xe6\x0e\xdf\x7c\xdb\x18\x7f\x4a\x3d\x7a\xf7\xa0\x7d\xe0\x4a\x38\x79\xf5\x1f\xf1\xf6\x41\xf1\xf2\x1e\xd6\x73\xff\x34\xd6\x43\xde\x1f\xbb\xd3\x28\x84\x28\x86\xab\xd7\x28\x09\x3e\x04\x9b\x20\x5d\x56\x0b\x94\x30\xc5\x72\x3b\x34\x52\x82\x14\xd7\x64\xfb\xb9\x6f\x97\x86\x10\xeb\x5b\xa5\x21\x42\x6f\xde\xd4\x3b\xbe\x1e\xea\xa3\x7b\xfa\xc0\x5f\xa5\x7d\x4a\x69\x7a\x4d\x06\xee\xec\xe1\x13\x7c\x78\xa7\x1e\x6f\x9f\xf0\xf9\xb6\x99\x7b\x73\xb7\xac\x76\xbd\xd3\x9f\xf4\x2a\x85\x47\x9d\x82\xf9\xbb\x36\xc4\x69\x93\xef\xc7\x95\xcb\xc3\xf9\x31\xfb\x05\xd6\x00\xe8\x65\xfc\x8a\xf8\xe3\x7f\xfd\x57\x80\x53\xf0\xdf\xfe\x2d\x3d\xfb\xe5\xfb\xb4\xf8\xcc\x97\xd2\xf0\x43\x90\x9f\xcb\x6d\xbf\x35\x28\xfa\x7c\x19\x01\xf2\xa9\x36\xb8\xdf\xa9\x29\x5b\xdf\x13\xe2\xaf\xff\x1b\x00\x00\xff\xff\x92\x8c\xcb\x0f\x43\x95\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xfd\x72\xdb\x48\x92\xe7\xff\x78\x0a\xb4\x37\x7c\x76\x47\xc8\x74\x74\x4f\xdc\x47\x4c\xd8\xee\x93\xa5\xf6\xc7\xac\x65\x69\x2d\x79\xe6\xe6\x1c\x0e\x34\x48\x40\x24\x46\x24\xc0\x06\x40\xd1\x9a\x8d\x8d\xb8\xd7\xb8\xd7\xbb\x27\xb9\xcc\x5f\x66\xd6\x07\x00\xca\xf6\xec\xc6\xdd\x3f\x64\xa1\x2a\xeb\x2b\x2b\x2b\x2b\x33\x2b\xab\x2a\xdf\x6e\xb3\xa2\xec\x16\xe9\xf3\xf4\x38\xdd\xe6\x55\xbd\x2e\xbb\x2e\xed\xca\xf5\xf5\x93\x55\xd3\xf5\x65\x91\xbe\xae\x7a\xfa\x6e\x6f\xab\x45\x99\x24\xab\x66\x53\x12\xe8\x1b\xfa\x4b\x8a\xbc\x5b\xcd\x9b\xbc\x2d\x28\xe2\xd4\xc2\x49\xf9\x65\xbb\x6e\x5a\x06\xfa\x55\x42\xc9\xaa\x5c\x6f\x39\x0f\xfd\x25\x5d\xb5\xac\xb3\xaa\xa6\xcf\x4b\x0a\xa5\x6f\xeb\xa4\x6b\x16\x55\xbe\xce\x82\x04\x44\x58\xfa\x1f\xd3\x9f\xeb\x22\xbd\xec\xcb\x6d\xfa\xac\xdb\xe4\xeb\xf5\x8b\xbc\x43\x96\xbe\x4c\xf3\xc5\xa2\xd9\xd5\xfd\xb3\xa7\x92\x20\x85\x37\xbb\xde\x4a\x3f\xdf\xf5\x12\xb7\xdb\x5a\xd4\xc7\x6d\xd2\x96\xcb\x8a\x3a\xd6\x52\xd4\x07\x0d\x26\xfb\x72\xde\x55\x3d\x37\xfa\x2f\x12\x4a\x6e\xcb\xb6\xab\x1a\x6e\xcf\x9f\x25\x94\x6c\xf3\x25\x03\x5c\xd0\x5f\xd2\x97\x9b\xed\x3a\x47\x86\x2b\x0d\x26\xeb\xbc\x5e\xee\x04\xe6\x9d\x06\x93\x45\x5b\x52\x52\x56\x97\x7b\x8a\x3d\xc1\x47\x4a\x1f\xb3\xd9\x2c\xd9\x11\x4e\xb3\x6d\xdb\x5c\x57\xeb\x32\xcb\xeb\x22\xdb\x08\xd6\x3e\x52\x7c\xaa\xf1\x29\xc5\xa7\x1c\x8f\x6e\x94\x05\x21\x28\xcb\x3b\xed\x0b\x0d\x0d\xe1\x2b\xef\x12\x14\x55\xe7\x1b\xcb\xcd\xc1\xa4\xdc\xe4\xd5\x9a\x07\xe1\x09\x07\xa8\xf1\x5d\xb7\x6f\x30\x54\x17\x1a\x24\x44\x64\xfd\xdd\xb6\x04\x1e\x9e\x5c\x51\x28\x59\xe4\xdb\x7e\xb1\xca\xb9\xad\x12\x4a\x08\x68\xdb\x10\x42\x9a\xf6\x0e\x70\xf6\x91\x34\xed\x32\xaf\xab\xbf\xe7\xbd\x20\xe9\x3c\xf8\x4c\x36\x55\xdb\x36\x8c\xdf\x33\x04\x12\xea\x71\xc6\xe5\x50\xcc\x7b\xc2\x44\x50\x0a\xa7\x6c\xaa\x65\x2b\xa8\xe4\xc4\x33\x7c\x71\x29\x9c\x76\xdd\xb4\x37\x9a\xf0\x8a\x83\x83\xac\xd4\x08\x4d\x8d\xeb\xcf\x6b\x42\xbe\xa6\x9e\xe1\x23\x02\xe8\x92\xbc\xd8\x10\x2a\xb7\x79\x5d\x32\x8e\x8e\xf9\x8b\xf0\x42\x5f\x89\xd2\x54\xd6\x95\x7d\x5f\xd5\x4b\x46\xf6\xb1\x44\xa5\x97\x1a\x95\x04\x69\x2e\xee\xae\xd9\xb9\xe1\xa4\xf8\xbf\xd2\x67\x7a\x21\x9f\x92\x16\x64\x42\xa2\xcb\xc9\x3d\xe9\xb2\xeb\xb2\x2c\xa4\x2f\x5d\xfa\x8a\xc2\xc9\x76\xb7\x5e\x13\xd6\x7e\xdf\x95\x5d\xcf\x99\x2e\xe8\x9b\xfa\x2f\xdf\x49\xd5\x75\x14\xa0\xe8\xb7\x08\x24\x34\x74\xf5\x02\x9d\x39\x41\x20\x49\x3e\x75\x65\xde\x2e\x56\x9f\x13\xf9\x47\x5b\x39\xc0\xb4\x77\x68\x50\x99\x90\x94\x88\xa4\x06\xab\x20\x59\x34\x05\x7f\x9c\xd0\x1f\x15\x5d\xd5\x5d\x4f\x33\xee\x73\xa2\x01\x06\x93\x90\x0c\x40\x5f\xf5\xc0\x82\x46\x62\xfa\x76\x3c\x82\xe9\xab\xaa\xed\xfa\x27\x7d\x45\xc4\xfa\x61\x57\x27\xdc\x3f\x9a\x6d\x59\x31\x37\x26\xf4\xba\x21\x14\x21\xba\xa5\xfe\x9d\xdd\x5d\xfe\xcb\xbb\xa3\xf4\x82\x38\xd1\xb2\x2d\x29\x9c\x52\x19\xf4\x47\x79\xfe\x30\x4b\x28\x97\xd5\x74\x9a\xf7\xf9\x3c\xef\x4a\x8f\x56\x4e\x14\xea\x76\x69\xa0\x71\xe6\x6a\xe0\x60\x5d\x1f\xf5\x77\x6a\x86\x50\x19\x3a\xaf\x5c\x19\xef\x79\x72\x51\x3c\x33\x35\x64\xbe\x58\x97\x1c\x4f\x45\xa5\x6f\xdf\xbf\x3f\x3f\x7d\x99\x96\xf5\xb2\xaa\xcb\x74\x5f\xf5\xab\x74\xd7\x5f\xff\xb7\x6c\x59\xd6\x65\x4b\x3c\x6e\x51\xa5\x34\xa7\x5a\xa2\x84\x94\x08\x5b\x3a\x37\x4b\xba\x6e\x4d\x73\x1f\xe8\xbd\xbc\x7c\x97\x9e\x31\x8a\xb7\x79\xbf\x42\x43\xfa\x55\xd2\xfd\xbe\x66\x14\xb9\x0a\xaf\x56\x65\x0a\x2a\x03\x50\x73\x6d\xf8\x48\x0b\x6d\xe3\x2c\x29\xdb\x36\x23\xb6\xd4\xdf\x65\x9a\x59\xcb\x1b\x42\x4a\x11\x44\x3a\x75\xd3\xa7\xf3\x32\x45\x9e\x59\x92\x58\x83\x0d\xbb\xc7\xdb\xed\xba\x5a\xc8\x5c\x7f\x2d\x69\x1e\xd1\xbc\x82\x28\x96\x42\x38\x20\xca\xd2\x02\x74\x11\x7b\xe6\xf9\x90\x46\x0c\x04\xf9\x57\x25\x31\xc0\xd5\x6e\x29\x6c\x6f\xdd\xec\x8a\x1f\x40\xa9\xd6\x7a\x4f\xa8\xe9\x87\x86\x1a\x0c\xec\x38\x00\x5f\xc5\x31\x51\x1c\x2f\x5a\x6d\xb9\x69\x88\xaf\x38\x62\xaf\x88\xa0\xf6\x15\x25\x52\x4f\xbb\xfc\x96\xe6\x5b\xdf\xa4\xfd\xaa\xea\xd2\x82\x88\x6d\xc1\x05\xd3\xd4\xd8\xd1\x72\x21\x64\x41\x04\x2a\xa4\x61\x71\xf1\x18\x00\x6a\xb3\x23\x6a\x5a\x51\x61\xbc\x18\xf1\xca\x49\x45\x4e\xb5\x13\x5d\xa2\x72\x40\xdf\x44\xb9\x0d\x71\x65\xe6\x9b\xa7\x08\xe8\x77\x58\x3e\xb5\x2a\xbf\xbe\xa6\x56\x75\x44\x15\x6f\xd2\xc5\xba\x21\x92\xfa\xf8\xe1\x1d\x65\x5e\xf5\xfd\x36\xdb\x36\x2d\xc8\xf8\xea\xea\x82\xa6\x47\xdb\xfb\xd8\x00\xd7\x0c\x53\xef\x36\x73\xfa\xda\xaf\x2a\x62\x02\x79\x30\x40\x40\xc5\x9a\xd7\xbf\x3a\x6d\xea\x19\xc6\x6a\xd7\xae\x07\xc3\x48\x55\x5a\xca\x81\xe6\x71\x13\x9e\xf2\xcf\xa5\x6f\x25\xba\xdb\x91\x90\xb0\xc7\xa0\x52\x57\x4b\xac\x43\x44\x5b\xcd\x96\xcb\x0d\x88\xeb\x5c\x23\x3c\x45\x61\xed\x72\xe9\xb2\x82\x51\x2a\x44\x90\x80\x0b\x6f\xa8\xc3\x3a\x9b\x2f\xcf\x08\x0d\x98\xd2\x88\xbd\x6e\x9b\x0d\xc5\xbe\xa2\x3f\x1f\xe1\x9b\x7f\xc6\xe5\x01\x26\x2f\x0a\x62\x33\xdd\x51\xfa\xe1\xd5\x49\xfa\x9f\xff\xf0\xf3\xcf\xb3\xf4\x6d\xcf\x13\x82\x69\xe4\x6f\x3c\xb6\x14\x94\xa5\xd4\x81\xd2\xcc\xed\x69\xf8\x1f\x30\x81\x3f\x48\x9f\x21\xf5\xbf\x97\x5f\x72\x12\x03\xca\xd9\xa2\xd9\xbc\xe0\xc9\xbd\xc9\xfb\x59\xc2\x29\x44\x35\x4a\x4e\x97\x65\x5d\x50\x40\x17\x64\x4d\x0b\xb8\x8e\xa6\x07\xcb\xb3\x08\x27\xd9\xa2\xa9\xaf\xab\x96\x3b\xf4\x6b\x9d\xcf\x09\x27\x26\xb6\x10\x3b\x46\x8a\xad\x7a\x84\x34\x9a\xc8\xd5\xf5\x9d\x07\x45\x57\xdf\x73\xa4\x0e\x68\xc2\xa2\x5c\xc9\xcb\x11\xd0\xe9\xb0\x7c\x89\x68\x8c\xdb\x39\x75\xaf\x35\x7c\x77\x1e\xe1\xcd\xf5\xf5\x9a\x18\x9b\x31\x2b\xad\xe1\x5c\x62\x85\x6f\x85\x20\x44\x8c\x5b\x08\x5e\xa7\x55\x07\xc8\x93\xd3\xf7\x69\x79\x4b\xd4\x46\xe4\x40\x2b\x65\xb1\x5b\x80\xc2\x18\xf6\x28\xe5\x65\x82\xf0\x4b\x9c\x61\x21\xec\x2d\x98\xab\xdc\x34\x66\x08\x0b\x02\xa2\x29\x5a\x48\x79\x99\x20\xa8\x35\x11\xc4\xaa\xb9\x64\xd9\x35\x4c\x9b\xcc\x30\x6a\x1d\x46\xa9\x1b\xe6\xa5\xe1\xae\xd7\x77\x29\xe4\x05\xd0\x85\x48\x74\x26\x7a\x76\xb3\x44\xd7\x2a\x13\x60\xb3\xdb\x0a\xc2\x9e\x1b\x2a\xa4\x9a\x34\xcb\xec\xe1\xcf\x0c\xc0\x52\x64\x37\x99\xd7\x35\xec\x9c\x2b\xee\x9c\xa0\xc7\xed\xeb\xd0\x04\xd4\xc0\xd2\x28\x11\xe3\x6d\x05\x4e\xa3\xc8\x42\x5b\x09\x63\xa8\x9a\xaa\xea\xca\x12\x25\x50\xfe\xa7\x54\x26\xf2\xcc\x54\xf8\x51\x79\xc4\xd6\x5d\x92\x49\xd2\xa2\x49\x79\x21\x00\x3b\xa3\xdc\xd6\xd5\x5a\xbb\xaf\x7d\x4e\xdb\x6a\xb9\x22\xbe\xd2\xec\x8f\x04\x69\xfb\x55\x53\x32\xed\xbc\x3d\x7d\xfe\x93\xb4\x63\xc9\xcc\xcd\x65\x62\xb6\x98\xef\xfa\x86\xe9\x54\x87\x50\x9a\xe0\x96\x17\x40\x8e\xc4\x2c\x01\x1a\x0a\xb6\x26\xba\x8d\x57\x6b\x9d\x27\x61\x9a\x4e\x10\x0f\x23\xb9\x07\xc2\xb1\x4a\x31\xd9\xb2\x81\x78\x66\x52\x0b\xb3\x6a\x92\xf4\xbb\x3e\x5b\x56\x7d\x76\xcd\x13\x96\xcb\x7c\xc5\x79\x79\xe5\xa0\x94\xf4\x11\x25\x3d\x4a\x69\xd6\x93\xcc\x59\xfc\x31\x7d\x78\xab\xcb\xf5\x1f\x78\x26\x66\xf9\x2d\xc1\x62\x30\x54\xe8\x6b\x4b\x91\x16\x4c\xbb\x28\x1a\xa2\x73\xc6\x79\xb7\xdb\x82\xa3\xeb\x0a\x7d\x94\x6e\x05\xb0\x68\xf6\xf5\xba\xc9\x0b\xb0\x1c\x9a\x5d\x15\x74\xa3\x79\x55\xe7\xb4\xba\x58\x29\x60\x65\x0f\x89\x1a\xde\x9f\x5f\x01\x70\xd9\xcc\x77\xd5\xba\x30\x80\x19\xf5\xf0\x36\x5f\x57\x05\xcb\x59\x3a\xee\xa1\x4c\x63\x51\x95\xb4\x65\xd1\xb4\xbc\x1c\xa2\x37\x96\xf1\xc0\x3a\xdc\xf2\xfa\x86\x68\xca\xab\xb0\xc8\xe7\x96\x4c\x46\x03\x0d\x3c\x04\x50\x5e\x50\x41\x31\x55\x57\x3f\xea\xd1\xd2\xc5\x8e\xea\xa2\x41\xe7\x68\xca\xd8\xa5\x4f\x5e\xd0\x6f\xc2\xcb\xb3\xf0\xbd\xe5\x18\xf1\x9c\x98\x4a\xe2\x4e\x66\x69\xd4\xd4\x88\xbc\x1d\x75\x19\xf1\x06\x7d\x0d\xdb\x6b\x24\xd0\xed\x84\x5e\x59\x11\x5c\xd3\xb0\x96\x3f\x50\xe0\x11\x4d\xe0\xe5\x1a\x83\x90\x43\x7a\x21\x31\xae\x21\xbc\x31\x81\x1c\xc9\x74\xb9\xa6\xae\x31\xef\xec\xf3\x1b\x6a\x5b\xde\x92\x10\x96\x7c\x62\x65\xf9\x73\xb2\x13\x01\xa8\x59\x17\x4e\xd8\x04\x4d\x37\xed\x50\x39\xf3\x40\x8e\x5e\x3b\x92\x22\x17\xab\xcc\xa9\xda\x8c\x94\xbe\xfc\x82\x35\x0f\x49\x5e\xf3\x66\x62\xe7\xa4\x64\x73\x87\xe1\xe2\x4e\x9c\xdd\xf9\xd1\x22\xf1\x87\xa6\x08\x89\xe8\xf3\x86\xb1\x76\x5b\x3a\xa8\x93\x30\x36\xce\x40\x65\x91\xa0\xa6\x45\xc5\x3a\x14\x25\x89\xa2\xa7\xa9\xa2\xec\x91\x2a\xf2\x49\x4d\x00\x9f\x13\xab\x20\x2a\x32\xf9\x44\xcc\x80\xf4\x12\xaf\x1b\x67\x36\x38\x4e\x47\x66\x95\x4e\xf9\x81\x5f\x07\x57\xe5\x96\x97\xcc\x4d\x87\x51\x5d\x13\x64\x71\xa7\xb2\x97\x1b\xdf\x5f\x84\xd3\xd2\x80\x13\x7f\xfa\xc1\x8c\x0b\xdf\x59\xc4\xcb\x8a\x46\x12\xf9\xe3\x95\x43\x14\x76\x92\x91\x61\xa5\x68\xdb\xbb\xa3\x34\x5a\x83\x56\xa4\x9b\xcf\x4b\x5a\xe0\x34\x5b\x31\x33\xed\x80\x47\x2d\x5f\x08\xc9\xc3\xd0\x00\x22\x95\x9c\x4d\x3b\x5c\xd2\xb8\x85\xc2\xa0\xb4\x16\xb7\xe0\x63\x39\x0f\x57\xfd\x89\x3a\x09\x61\x9b\x92\x65\xbe\x6c\x23\xba\xbd\x7c\xa5\x67\x65\x42\x82\xc9\x92\xe6\xa3\xd1\xdb\x73\x56\xc9\x96\x90\x50\x95\xdc\x18\xa0\xec\x43\x0e\xaa\x10\x16\xf3\x8b\x19\x54\x68\x62\xef\xa1\xaf\xd2\xd4\x1c\xa1\x9f\xd6\x1a\x4a\x9e\x19\x47\x96\x05\x17\xf2\x49\x47\x93\xdd\x23\xf1\x98\x8d\x21\x69\x08\xa5\x72\xa2\xef\x16\x67\xe0\x49\xff\x6c\xfe\xe2\x61\xf7\xec\xe9\xfc\x85\x63\x8d\x8b\x55\xb9\xb8\x11\x5d\xa2\xaa\xe7\xcd\x17\x28\x5c\x34\xf0\x8c\xe3\x9a\xa7\xc8\xc3\x22\x5d\x51\x2a\x64\x72\x9a\xca\x94\x8d\x10\xcf\xa9\xd1\xa0\x51\x63\x78\xc6\xcf\xcc\x34\xe5\x16\x07\x23\x24\xca\x8d\x4a\xa4\x65\x09\x0d\x23\xcf\x1d\xe8\xf4\x9e\x6e\x8f\x39\x96\x29\x17\x6c\xde\x93\x2e\xfa\xbb\xae\x36\x55\x3f\x22\x1d\xe6\x23\xb9\x92\xa0\xea\xf9\x86\x4b\x94\x05\x6c\xa0\x2d\xc4\x8d\xa9\x18\x5a\x37\x8d\x9c\xf6\x39\xa9\x37\x7f\x48\x89\x84\x76\xb4\x0a\x71\x9f\xa8\x99\xc4\x8e\x73\x5e\x78\x49\x41\xc8\xbb\x6c\x57\x2b\x5a\xcb\xc2\x88\xe9\x4d\x85\x45\x82\xeb\x35\x92\x0f\xa0\x0c\xf3\x2a\xe7\xa6\x8f\x1d\xc6\x7f\x24\xa1\xf8\xda\x65\x63\xce\xcd\x0d\xaa\x58\x26\xcb\x27\x07\x8f\x38\x5b\x5d\x8a\x7a\x05\x0c\x30\x1c\x0f\x34\x29\x07\x7e\xf4\x48\xc3\xb8\xa1\x18\x0c\xc8\x7c\xd7\xf7\x0d\xcb\xdc\x6b\xa6\x1a\xc9\x63\xad\x3e\x01\x20\xd4\x08\x5f\x1e\x06\x24\xc4\x93\x8c\x4d\x69\x32\x70\xe6\x8d\x84\xaa\xad\x0c\x7a\xa7\x4b\x9d\x03\x2b\x44\x5d\xcf\xeb\x3b\x23\x65\x22\x08\x6e\x05\x57\xd8\x4f\xb7\xe5\x71\x5b\xfe\xe8\x5b\xe3\xe6\x0c\x72\x58\x8b\x24\x7b\x30\x9f\x3e\x20\x55\xcc\x43\x36\xeb\x6c\xe5\x52\x23\x8b\xa7\x8f\x36\x46\x2f\xd2\x79\x66\x10\x83\x25\xb1\xb1\x00\xa2\xa9\x17\xc8\x3d\x1b\xd4\xe5\xd5\x9d\x31\x06\xfb\xb8\xc9\x7e\x01\xea\x9b\x26\xeb\x56\xa2\x5a\x5a\xf3\xd2\x75\x59\x2f\x23\x33\x01\x4c\xc4\x20\xba\xff\xc2\xcb\x1c\x09\xf0\xf9\xfa\x73\x72\x07\x7b\xd4\x5f\x89\xc3\xd7\xb0\xf4\x35\x09\x25\x88\x32\x72\x86\x00\x81\xb2\x66\xf4\x39\xe1\x25\xf0\xfd\x40\xac\xe3\x25\x42\xe3\x02\xf9\x02\x49\xbf\x46\xd2\x9a\x0d\x61\x72\x31\x21\x02\x7e\x28\xbd\x45\x13\x21\xd7\x45\x52\xa2\xaf\x4c\xd5\x21\x7d\xfa\xa6\xd4\xc2\xdf\x90\xda\xdc\x7d\x84\xda\x2b\x3a\x2c\x2b\xbc\x17\xf9\x1d\x0b\x5d\x12\xad\x1f\x48\xb8\x2a\xf3\x8d\xb6\x92\x83\x52\xc4\x31\x2d\x67\x1a\xc9\x41\x5a\xe5\x02\xab\x46\x02\xf1\xc3\xba\x20\xb2\x88\x2e\xfb\x4e\xfc\x2f\xd5\x5c\xfa\xdb\xc8\x14\xf3\x5b\x92\xaf\xb7\xab\x1c\xeb\x7f\x00\x06\xab\x03\x01\x61\xe0\x53\x80\x80\x16\x76\x9b\xb2\xad\x16\x1c\xe4\x0c\x8f\x9f\x64\x3f\xc2\xe0\x44\x13\x85\x04\xc1\xb8\xb0\x82\x26\xc9\x3f\x54\x20\x87\x59\x48\x0c\xcb\xed\xaa\xbf\x5b\x2f\xa2\xe2\x38\x9e\x78\x0e\x41\x40\x24\xf3\x50\x0e\x08\x0b\x23\x8b\x67\x7d\xca\x7c\xa1\x67\x11\x30\x2a\x7a\x93\x7f\xf9\x5a\xc6\x4d\x33\x91\x4f\x58\x81\xcf\x64\x13\x5e\xbb\x18\xb3\x03\x82\x67\xfb\xc6\x41\x68\x1a\x7a\x06\xa9\x6f\x68\x55\xab\x1d\xd8\x47\xf9\x4e\xf1\xfd\x47\x33\x9e\xd3\x12\xa2\x02\x74\xea\xcc\xe8\xb4\x38\x17\xcc\x37\x21\x08\xcf\xfc\x74\x0b\x85\x63\x47\xce\x2c\x46\x9a\xca\xef\x18\x07\x49\x94\xa2\x27\x10\x49\xcd\xbc\xc5\x3f\xe3\x35\x32\x63\xa1\xb3\x0e\x45\x4b\xb7\x7a\xda\xfa\x02\x08\xb1\xfb\x66\xe3\x7c\x83\x09\x77\x30\x3b\x89\x02\x13\xb9\xcf\xc7\x86\xbc\x03\xf9\x7b\x9a\x32\x13\x05\xb8\x99\x74\x30\xa3\x0c\x26\x32\x51\xcf\x8b\x11\x2f\x18\x67\x64\x30\x52\x7b\xd6\xeb\x72\xc9\xa6\x26\xab\x38\xaa\x4d\x49\x88\x16\x03\x01\x0b\x09\xc8\x63\xd8\x0d\x56\x38\xae\xa1\x10\xef\xc6\x28\x56\x9f\xa8\xd5\x24\x8e\x53\x90\x73\x06\x4a\x94\x36\x43\x57\xf2\x0d\xeb\x0b\xdd\x8e\x59\x33\xeb\x16\x22\x9d\xc4\xa3\xc1\x0b\x2f\x8a\x2a\x51\xc5\xe1\xe2\x89\x16\x59\xe1\xfa\x5a\xf9\x00\xfb\xce\xa2\x43\x75\x7b\x5c\xb0\x16\xee\x80\x0e\x15\xeb\x14\xc2\xf2\x4b\x05\xb3\xdd\xeb\x8a\xcd\x41\x50\x09\x9d\x26\x8c\xb4\x59\xb2\x26\x66\xc0\xaa\x87\xf4\x4a\xe4\xd8\xe6\x96\x35\x37\xae\x8f\x53\x25\x9f\x98\xf1\xb4\x53\x3c\xce\xaa\x5c\x92\x32\xd7\xec\xcb\xe2\x88\x96\x78\xce\x41\xed\x04\xdb\xc8\xd7\xfb\xfc\xae\x83\x8d\xc4\x38\x0e\x9b\x2c\x25\x3b\xb3\x13\x12\x00\x96\x68\x55\x68\x9f\xa6\x19\x67\x98\xe8\x88\x77\xf2\xe2\xe1\x96\xe9\x3d\xd4\x43\x70\x0b\xb5\xba\x90\xd6\xcd\xcb\x1e\x96\x58\x5d\x6b\x58\xb5\x65\x45\x90\x65\x7c\x49\x0e\x0a\xc2\x96\x87\x72\xfe\x89\xbc\x47\x2c\x1e\x51\x35\x2c\xac\x10\x3f\x16\x5c\x93\xfc\x47\x98\x45\x93\x02\x5b\xc1\x8e\xca\x7f\x22\x72\x71\x45\x38\x64\x3d\xcb\xab\xcf\xbc\x36\xd1\xa8\x98\x61\x57\xe2\xa1\xfc\x26\x5d\x4f\x53\x80\x31\x6d\xdb\x74\x7f\x15\xf9\x4a\x55\x66\x4e\xc5\x14\x03\x9a\xba\x55\xb5\x4d\x1b\x18\x0b\x43\x14\x7a\xb2\x0d\x44\x4c\xc2\x46\x51\x42\xee\x66\xab\x69\x9b\xd7\xdd\x75\x09\xf3\xe9\x26\xbd\xe6\x9d\xa0\x99\x56\xcd\x12\xab\x6c\xd7\x1d\xa8\x59\x74\x18\x54\x1d\xae\x16\x18\xbb\x60\xa0\xe2\xaa\x09\xe6\x16\x35\x6b\x1b\x80\x55\x5f\x52\x67\x6d\x60\x32\x1b\xa1\x00\x52\x63\xb4\x49\x61\xad\xb9\x2d\x43\x44\x5c\xff\xa3\x3d\x0f\xb0\xae\x16\x62\x31\xab\xc7\xc3\x24\x95\xc2\x5a\x81\x3d\xa6\xf9\x5d\xdc\x7b\xce\xea\x28\x80\x77\x3c\x6e\x4b\xad\x85\x27\x06\xcf\x95\x41\x81\xb0\x52\x78\x5d\x21\xe9\x73\xa8\x7c\x73\x6a\xe2\x62\x15\xcd\xce\x2b\xa4\xa4\x92\x32\x9a\xa0\xc9\x27\xae\x9a\xd4\xf8\x55\x5e\x2f\x4b\x36\x75\x51\x49\xbc\xe4\xe1\x5b\x25\x74\x89\xa4\x06\x2f\x5b\x09\xb3\x81\xdc\xb2\x2c\x68\x42\x36\x9b\x7b\x73\x56\xb5\x19\x6c\xba\xe4\x6f\x0d\xc9\x10\xb0\xf4\xfe\x89\x42\x2c\xfd\xd6\x49\xb4\xb7\x33\xb0\x33\x40\x3d\xa8\xfa\x3b\x6c\x3a\xcd\x49\x06\x16\x25\x8d\x62\x48\xcd\x05\x77\x80\xe5\xe2\x95\x85\x69\x3c\x72\x66\x7a\x3c\xb5\x25\xa4\x70\x62\x46\x7a\x65\xe1\x84\xb5\xe4\xcd\x0c\x8b\x03\x0b\xd3\x30\x4e\x07\x4b\xc2\xa3\x87\xdd\x23\x1e\x30\x4b\x9b\x05\xf0\xdb\xbc\x27\xb6\x58\x8b\x8a\x22\x1c\x2a\xcc\xaa\xc9\xae\x08\x70\x15\x01\x9b\x61\x47\x57\x50\xf1\x39\xf1\x1b\xcd\xb6\xc7\x3c\x65\x10\x55\x16\xd3\xa9\xcc\xfb\xcf\x14\x54\x8b\x48\xea\xdc\x2c\x54\x55\xc5\x36\x9e\x6d\xfa\x74\xf1\x1e\x50\x97\xa8\x09\x28\xb6\xff\x28\x79\x3f\x4f\x4f\x25\x60\x4a\xef\xae\x42\x9f\xaa\x22\x49\xb6\xc0\x7b\xb0\x2d\xae\x03\xe1\x1a\xad\xee\x0f\xde\x06\xdd\x0e\x57\x76\xc2\x82\x94\x02\xc2\xb5\x2d\x01\x48\x01\xbc\x87\x1a\x28\x6c\x6c\x5c\x85\x26\x57\x07\xdb\x1d\xa4\xef\x72\x3e\x06\xdb\x97\xf3\x94\xcd\x9d\x44\x38\xa4\x17\x69\x47\x37\x39\xa9\x54\xb7\x55\xee\x2c\x33\x34\x5a\xbc\xf1\xae\xab\xe8\x2b\xde\x74\xc7\x4e\xe6\xd8\x43\x84\xf7\x23\x74\xeb\xe1\x9d\x06\x93\xdd\xb6\x60\x9b\x96\xef\xf0\x47\x44\xb8\x0e\xc7\xe9\x81\xb5\x11\x5d\xb7\x6c\x4e\x9a\x11\xf0\x22\x55\x38\x6e\xd9\xdd\xcc\xa6\xcf\x84\xd7\x87\x4e\xa1\x62\x08\x12\x1a\xf9\x25\x49\x95\x56\x03\x98\x09\xef\x01\x7a\x65\x5f\x0f\x08\xa1\xb5\x32\x5d\x35\xfb\x74\x5d\xd5\x37\x9d\xe2\xd7\xd9\x43\x4c\x4f\x4e\x4f\x11\x41\xc0\x62\xa9\x61\xb1\xaa\xaa\x77\xe5\x2f\x89\x85\xc4\x10\x8f\xe0\xd8\x4f\xa1\x94\x55\x71\xc8\x0c\x74\xff\xe4\x04\xd1\xe9\x31\xa2\x27\x61\xbd\x9e\xab\x59\xb0\xa3\xcb\xec\x57\x37\x76\xae\x4b\x16\xb0\xc1\x0e\x5f\x2b\x17\x22\xfc\x34\x4d\xa7\xb6\x47\xcf\x7e\x38\x0e\x86\x0a\x85\xd2\xd1\x72\x10\x3a\x98\xd2\x18\xdb\xa7\x20\x28\x56\x0f\x49\x58\xd2\xf6\x60\x6e\x67\xd5\x46\x5c\x81\x3e\x6a\xaa\x6c\xd9\x3b\xbd\x02\xc9\x33\xd2\x94\x07\x9d\x09\x77\x0c\xde\x13\x2e\xa5\xfb\xc6\x47\x2d\xf1\xc8\xc4\x05\x41\x08\x16\xfb\xa8\xb1\x43\xca\xd2\x02\xcc\xf8\xfd\x15\x02\x33\xf2\x09\x37\x52\x84\x37\x3b\xd6\xd2\xac\x23\xa1\xf0\x44\xcd\xf8\x2e\x9d\x31\x1b\xa4\xbf\xc7\x96\xd7\xd0\xda\x10\x69\x4a\x5a\xc2\x41\x69\x7a\xd0\xa6\xd1\xdc\xb1\x7c\x7b\xea\x5b\xd8\x1d\x23\xf8\x99\x50\x7f\x0e\xcb\xb0\xec\x8a\xed\x3a\x91\x27\xb9\x2a\x6c\xa9\x49\x11\x84\x00\x28\x1c\x9d\xd7\x33\x8e\x85\x1b\xb1\x41\x5c\x7c\x8b\x1c\x80\xba\x17\xc5\xfa\x64\x69\x7b\xd8\x21\x63\xdb\xb6\x34\xe8\xb4\xf0\x0e\x2c\x51\x23\x96\x16\xb1\x2f\x70\xaf\x06\x1b\xb2\x9e\x6b\x91\x06\xa9\x65\x31\xff\x47\xc8\x62\xbc\xf5\xb2\x64\xeb\x96\x55\xaa\xcc\xda\xa5\x0a\xcb\x4e\xa8\x0d\x98\x03\xa5\x33\x4f\x14\xc0\x44\xdc\x44\x80\x85\x20\x66\x09\xb5\xe8\x2c\xb2\xf3\xc2\x62\xfb\xff\xcd\xb6\x1b\x55\xe8\x6c\xbb\xbe\xa9\x03\xb2\xe1\x36\x0e\x56\x9c\x11\x01\x51\x02\xd6\x5f\x1d\xfa\x60\x55\xd5\xc1\x77\x8b\x2b\x57\x23\x32\x3d\xa3\x89\xa2\xb0\x04\x2b\x11\x80\xc3\xb2\x80\x07\xa7\x0b\x38\xee\x88\x80\xdf\x8d\xcc\x90\x31\x7f\x3d\x86\x06\x43\x58\x11\x58\x96\x07\x78\x41\x13\xe9\x4f\x35\xa2\x0d\x23\x42\xb6\x5d\x9d\x1f\xca\x9d\xec\x38\x7a\x91\xe8\x48\xd5\x86\x55\xb5\x5c\x51\xbf\xaa\x0d\x6f\x39\x82\x6b\xdb\xbe\x96\xd7\xea\xf8\x8b\x26\x5e\xb3\xac\xd9\x86\xc3\x35\xcc\xd0\x19\xc7\x6d\x9f\x75\x7d\xdb\xd4\xcb\x17\xa7\x0d\xab\x5b\x6c\x09\xe1\xa5\xe2\x97\x67\x4f\x35\x9e\x58\x06\x8f\x21\xbb\x63\xbe\xae\xfa\x37\xbb\xf9\xa3\x2e\x5d\x92\x6c\x80\x05\xe4\x59\x9e\xae\xda\xf2\xfa\xf9\x83\x87\xdd\x83\x17\xba\xcf\x2c\x5e\x41\xfb\xda\xa1\xe5\xd9\xd3\xfc\x05\x4b\xcf\x5d\xb3\x26\xa1\x36\xce\xd2\x6c\x36\x32\xbe\xc4\xfe\x36\x02\x89\xf6\x63\x6b\xba\xac\x81\xb9\xb2\x55\xfc\x50\x81\x33\x47\xeb\x7e\x7c\x74\xd8\x4c\x4c\x8a\xec\x0b\x2a\xa8\x30\x30\x76\xdc\xea\x3e\x60\x9a\x6c\x5b\x48\x5d\x36\x2c\xb0\xe3\x6c\x18\x48\x36\xd7\x78\xd3\x86\x19\x27\x20\x41\xa3\x0c\xcb\x4f\x59\xa9\x25\x22\x69\x70\x9c\xd5\x29\x0b\x27\x85\x8c\xb4\x02\xfa\x65\x9e\x6a\xa6\x4c\x08\x8c\xde\x08\xc2\x04\x1b\xd1\xf0\x0f\xc6\x00\xa4\xf7\xc1\xf4\x87\xfc\x72\x8c\x0c\x24\xbf\x40\xeb\xd6\xbe\xbc\x53\x1d\x1b\x09\xb4\x50\x05\xf2\xf4\xfb\x46\xf7\x24\x52\x8b\x44\xab\x49\x80\xee\xcb\x88\xdc\xb9\x3a\xfa\x43\x29\x44\x9b\x50\xdb\xff\x6b\x5a\x90\x0a\x9e\xf4\xcd\x0d\xa1\x7b\x9c\x05\xf1\x87\x32\xb9\x39\x68\x52\xac\xce\xc0\x63\x3f\x81\x86\x72\xad\x6e\x01\x1e\x9c\x84\xc1\xdc\xd3\x52\x9d\x6f\x87\xd8\x1c\x4a\x48\x8f\xf3\xaa\x2e\x64\xae\xe9\x54\x51\x67\x09\x37\x47\x68\x05\xae\x19\x08\x86\x41\x0e\xe8\x77\x30\x62\x97\x51\xf9\x01\x41\x11\x8b\xdb\xd5\x01\x8b\x91\x39\x9c\x09\x2a\x5c\x27\x2f\x48\x49\x81\xa3\xd4\xb1\x14\x78\xc5\xc9\x9d\x3a\xeb\xe9\x4e\xaa\x65\x79\xad\x91\xa0\x12\x00\x0a\xc2\x3b\x87\x08\x7c\x79\x7d\xd5\x4a\xd1\x4d\x6e\x75\x81\xc2\x18\xd0\x7c\x35\xa6\xb2\x92\x4d\xef\xf4\xf8\xe2\x2d\x71\x55\x57\xa1\x15\xfa\x6b\x4e\x92\x96\x34\x61\xef\x74\x65\x26\xc0\x21\x57\x72\x7b\x2c\x92\xdd\x4c\x73\xc8\x89\x49\xe0\x3a\x35\xea\x90\x74\x26\x4e\x17\x1c\x97\x5d\x60\x3f\x90\xda\xd0\x92\x21\x3f\x77\x5d\xfd\x81\x30\xeb\xac\x58\xbc\x8e\x6c\xef\x98\x43\x06\xfe\x2d\xb9\x60\x68\x0f\x1e\x37\x70\xac\x21\x48\xe8\xd0\x29\x4b\xc5\xad\x9b\x61\xd6\x60\x9b\x63\xc1\x50\x66\x00\x11\x95\x61\x72\x30\x25\x13\x2b\x12\x93\xd9\x0c\xcd\xaa\x70\x41\x70\xd9\x5a\x39\x71\x9f\x2b\xb8\x53\x09\xf5\x22\x28\xaa\x91\x00\x11\xa2\x98\xf0\xbd\x86\x77\x8f\x0c\x1f\xf6\x2a\x20\xe5\x8b\xc9\x6a\x1d\x45\x4b\xd5\x03\x1e\x94\xca\x52\x21\x7b\xcc\x5c\x8b\x48\x9f\x4a\x11\x81\xcf\x21\x95\xb2\x2f\xd7\xec\x2c\xa8\xb5\xfb\x7d\x56\xed\x7a\xb4\xcb\xaa\x40\x6e\x7f\x95\x9d\x33\x9d\xb0\x24\xa8\x08\x0d\x40\x56\x18\x41\xd0\x74\xc3\xc6\xaa\x28\x89\xb6\xa2\x9d\x1c\xbf\x7f\x7f\x7e\xe5\x17\x32\x9e\x07\x75\x41\xcb\xed\x0f\xce\xc5\x68\xd4\x2e\x73\x34\x72\x03\x18\x43\x78\x57\x27\xcd\x71\x08\x2e\x64\x53\x56\x3a\x05\x97\x0d\x78\x4f\xc3\x6d\x91\x1c\x45\xdc\xfe\xe2\xd0\xf8\x25\x9f\x58\x02\xf8\x9c\x98\x19\xf5\x9c\xff\x93\xd0\x12\x1d\x58\xff\x31\xf5\xfc\x26\x81\xf7\xa8\xa5\x06\x34\xc5\xc8\x32\x0d\x26\xbd\xcb\x21\x64\x13\xee\x1b\xac\x15\xd7\x29\x36\x10\x8f\xd8\xd0\xd6\xb4\x98\x30\x8c\xdc\x5d\x5d\xfd\xbe\x83\x08\xc3\x22\x36\x31\x0f\xf6\x5c\x9b\x57\x6b\x59\x50\xfe\xec\x3e\x24\x9e\x43\x03\x77\xd3\xa0\x72\xfa\x7a\xd6\x6d\xd9\x19\x8f\xd6\x86\xee\xf9\x83\x5d\x95\xb2\xdd\x86\x9d\x5f\x1e\xbc\x20\x81\x98\x37\xe2\x69\xf8\x08\xe2\x05\xdb\x5e\x6e\xcc\xa4\x37\x3c\x42\x80\x34\xf3\x15\xe5\x34\x38\x8c\x22\x76\xa2\x15\xaa\x3e\x88\x4d\xa6\x17\x63\x5e\x1a\xf4\x82\xa7\x14\x13\xf7\x4d\x19\x62\x4a\x37\x5d\xdc\xcc\xed\x16\x6d\x05\x87\x57\x89\xe7\x43\x23\x69\x70\x60\xc4\x45\xfa\x7a\x2f\x69\xbc\x17\xac\x33\xce\x96\x55\x4f\x6a\x0b\x1f\x13\x81\x31\x81\xe6\x0b\xb1\x70\x9c\x37\x91\x90\xc5\x4c\xe4\x35\x58\x64\xac\xea\xaa\xcf\x58\x14\xd9\x88\x93\x3e\x15\x9b\xaf\x45\xcc\x8b\x11\x2d\x7b\xe2\xe9\x87\x5f\x8f\x4f\xcf\x7e\x9d\x6d\x0a\xf3\xd9\x51\x7c\xaa\xb3\x4e\x80\xd1\xa2\xbc\xce\x77\x6b\xb3\x26\xa2\xc3\x88\x48\x5f\x22\x42\x4f\x86\x90\xe2\x47\xf8\xbb\x95\x05\x5c\xce\x8a\xbc\xb5\x98\xc7\x2c\xd6\xff\x78\xc0\xc6\x36\xdc\xa8\xfa\x7e\x53\xdb\xb0\x84\xfb\x2d\x6e\xec\xc5\x90\xb1\xfd\x34\x55\x4f\x97\x68\x7f\x37\xd1\x93\x2b\x76\xce\xc0\x1d\x5d\x91\x83\x06\x61\xea\x61\x5a\x36\xf5\x2f\x8f\x49\x1a\x3e\x5e\xf3\xf5\xae\x7c\xf0\x42\x70\x66\xf4\x6c\xa5\xea\x10\x9c\xe9\xe1\x99\x60\x0c\x14\x62\x06\x67\xec\xcc\xb4\x1a\x76\x03\x60\x8d\x41\x35\xd9\x69\xa8\x88\xfd\xa8\x08\x90\x07\x0e\xde\x4f\x5f\xbf\xbd\x82\x7b\x37\x8d\x18\xdc\x71\xc5\x37\xb7\x85\x0b\xe0\xcc\x95\x69\x7b\x25\x00\x31\xaf\xc1\xb7\x12\xa9\xf9\x38\x12\xea\x48\x6c\x56\x36\x8f\x86\x3c\x74\xc9\x4f\x64\x52\xd9\x4c\xd5\x29\x76\xed\xe6\x2a\x9c\xbb\xd9\x73\x37\x9e\xa4\x38\x3b\x14\x60\x3a\xf4\xb7\x61\x6e\x58\x30\x3b\xdf\xde\x65\x6c\xdc\x02\x07\xdf\xde\x25\xf0\x4a\xa1\xc5\x2e\x83\x2c\x20\x91\xe0\xa7\xeb\x6a\x2b\xc7\xdb\x28\xa1\x2a\xc5\xb5\x14\x81\xf3\x7f\x4e\x04\x85\x6e\x84\x41\x28\x38\xf3\xc6\x09\xc4\xb7\x7f\x01\x7b\xeb\x59\x83\x11\x63\xfb\xf3\x07\xd9\x9c\xe6\xf8\xcd\x83\x40\xa3\xe1\xd3\x71\xac\xc6\xfc\x40\x62\xe3\x5e\xb7\x84\x3f\x4a\x28\xb1\xef\xbf\xe0\x6b\xc7\xae\x8a\xb2\xff\xcc\x81\x44\xbf\xd8\x66\x9d\xe8\x79\x29\x66\x66\x09\xcb\xec\x3a\x9e\x24\xaf\x87\x9c\xe7\xf7\x1d\xf7\x52\x94\xb1\xe7\xe9\xbf\xf0\x57\xfa\x9a\xbf\xb4\x2b\xcc\x06\xdc\x1c\x07\xd5\x0c\x18\x43\xe8\xbb\x07\x8e\xa5\x0e\xb0\x9e\x27\x88\xc3\x4f\x80\x7d\xf5\xf4\x31\x40\xf6\x12\x4f\xb6\x3b\xf6\x6a\xe0\x71\xb7\xda\x2e\x28\x06\x2e\xf7\x1c\xc9\x4b\x5e\x50\x82\xdb\xd0\x88\xca\x48\x1c\xab\x51\x16\xd3\xb7\x25\x64\x49\xfa\xd3\x34\x9c\xae\xeb\x73\x98\xb0\x05\x88\x48\xee\x3f\xa5\x57\x14\xa3\x10\x65\x98\x94\x28\x28\xd2\x87\xe7\xac\xd6\xf9\xbc\x84\xdd\xe7\x1d\x02\x44\xf2\xeb\xb2\xeb\x09\x45\x30\x07\xb8\x8f\x84\xdb\x58\xf5\xe2\x5c\x89\x50\xa2\xae\xbf\xb2\x4d\x21\xc1\x04\x46\xe0\x36\x67\x47\xba\x0f\xf9\x5e\x3e\x09\xd3\x7a\x30\xeb\x8d\x84\x24\x1a\xae\xe1\x02\x0a\x07\x72\x07\x0f\x31\x40\x69\xf8\xc2\xc2\x89\x35\x60\x36\x6e\x88\xa5\x0c\xce\x85\xa5\x8b\x41\xfa\xb5\x28\x33\xaf\x58\x95\xb1\xb8\x1c\xfc\x2f\x35\x47\x17\x17\xbf\x21\xe6\x21\xf6\xce\x33\x09\xb9\x94\x42\x7c\xb0\x4e\xf9\x84\xa4\xc5\x99\x97\xeb\x39\xff\xbb\x58\x22\x18\x9d\x3f\xf4\x9f\x28\xe6\x67\x72\x74\x92\xb5\x18\x39\x88\xe6\xa3\x67\xc3\xb1\x08\x92\x6a\x5e\x44\xe7\xb0\x33\x13\xed\x23\x3d\x4c\x5e\x10\xfe\xdb\xcc\xe5\x3f\xe1\xcf\x74\x3d\x2a\xc5\x0d\x6e\x38\xb6\x83\x6a\x42\x18\xaa\x6a\x12\x4c\xaa\x0b\x21\xa5\xc6\xcd\x14\x30\x49\xae\x75\x04\x7b\x4e\x11\x21\x69\x45\x05\xb3\xcc\x35\x28\x19\x62\xd8\x34\x3c\x2d\x2d\x7c\x9e\x00\x82\xa8\x06\xc7\xed\x0c\x80\xa4\x99\xf9\x04\x28\xdb\x03\x3c\x1c\x75\x7c\x08\xa4\x46\x1d\xc7\x10\x86\xa3\xe7\xc7\x87\x86\x76\x38\x40\x92\x98\x6d\xd7\xf9\xa2\x74\x3e\xd1\x00\xc2\xaa\xcd\x47\x18\xa3\x6a\x5c\x61\x5a\x59\x54\x1e\x10\xda\xe7\x73\x4a\x7e\x58\x00\x9b\x2e\x33\xe3\xca\x27\x09\xea\x2c\x91\x26\x17\x3b\xe2\x5a\xc9\x51\x91\x61\x1a\x09\x18\xbc\xf8\x88\x15\xfb\x3d\xab\x86\x1c\xe6\xf3\x2a\x13\x39\xee\xa5\xa8\x21\xcc\xc1\x92\x47\x74\xa3\x39\xef\x19\x5e\x0f\xc1\x67\x13\x0f\x17\x7d\x20\x9f\x4a\x38\x90\x6b\xc6\x29\x33\xf6\x9c\x77\x9c\xf2\x18\xfb\xd5\xe0\x96\x53\xa0\x9d\x1e\x65\xa6\x45\x96\x57\x64\xd7\xd4\x42\x8d\x03\x53\x99\x64\x94\x8b\x6c\x7e\xa7\x79\x64\x9c\x0b\xde\x0d\x3f\x90\x65\xc3\x5b\xde\x58\x7e\x35\xcb\x99\x8b\x98\xc8\xd2\x89\xcb\xe3\x25\x1f\xa4\x1b\xa7\xcc\x58\x79\xc6\x96\x38\xf3\xa6\x6e\x12\x84\xa9\x14\x20\xe7\x08\x4c\x81\x88\xc9\x4c\x95\x5e\x5e\x05\xc4\xab\xd7\x36\x61\x26\x2b\xe6\x7d\x7e\x97\xe3\x1d\x76\xfd\xdb\x6f\xc8\xc7\x2e\x71\xcc\x57\xc5\x86\x78\xd6\xc0\x61\x0e\x9f\xf7\xd4\xe3\x33\x48\x45\xa3\x1c\x3c\x93\x30\x0a\x04\x22\xe1\xf4\xe1\xa7\x9f\x3e\x77\x3c\x0c\xce\x3c\xfb\xf4\xe1\xa7\x9f\x3f\x93\x40\x83\x3f\x96\x68\x46\xb9\xb3\x6b\xb6\xba\x8c\x8b\x40\x0e\x83\xde\xb6\xe5\x6d\xd5\xec\x60\x6b\xd0\xa0\x67\x10\x5f\x64\x2c\xbe\xf4\xf1\x1c\x77\x07\x0a\x07\x53\xbc\x70\x49\xf1\x14\xaf\x77\x9b\x4c\x3b\xd9\x09\x0b\xb0\x2f\x97\xdd\x50\x90\xe5\x5c\xe5\x6f\xee\x9b\x7d\x1a\xa8\xcb\x55\x41\xd2\x1b\xb7\xdf\x44\xb9\x7f\x92\x2f\xdf\xfb\xdf\x5c\x65\x4d\x60\xd5\xbd\x92\x63\x91\x2c\xf9\x3a\xfb\xf2\x5d\xd9\xcf\x62\xce\x64\x47\xb0\xd1\xea\x38\x49\x1b\x12\x83\xa8\xeb\x20\x52\x0c\xbc\x2d\x81\x1b\x83\xfb\x80\xcf\x41\xe2\xb0\x30\x01\x9a\x2a\x4d\xd9\xad\xa7\x94\x93\x41\xba\xa0\x5b\x91\x25\x4b\xd1\x77\x63\x4a\x5a\xe5\x8a\xb1\xcf\xef\x2f\x68\xdb\xe8\x3d\x0f\x17\x08\x58\xb4\x1c\x4c\x53\x67\x5c\x47\x41\x91\x7d\x44\x23\xed\xac\x03\x89\xd5\xa4\x65\x80\xb1\xda\xf9\x06\xde\xa9\xe3\xa8\x08\xb4\xaa\x33\xf3\xe9\x55\xc9\x9b\x78\x1a\xfb\xad\x88\x00\x4d\x23\xcd\x27\xb2\xd4\xe4\x76\xf0\xf8\x49\xb4\xd3\x11\x9c\x42\x50\xac\x87\x73\xaa\x2c\x2a\xc6\xd1\xaf\xf4\xe7\x1a\xc2\xc5\x51\x3b\xe9\xcf\xa2\x64\x9d\xb2\x39\xe0\xd7\xd1\x38\x7d\xd1\xac\x1b\xbf\xce\xe2\x6b\x08\x20\xb6\xae\x87\xc5\x40\x56\x92\x64\x4f\x67\x3a\x99\x40\x44\xf1\x4a\x20\x90\x13\xad\x96\x84\x81\x4b\x49\x9c\xe8\xbc\xc9\xa5\x81\xf0\x29\xb7\x43\xad\xe3\x52\xd4\x31\x03\xa0\xce\xd8\x36\x09\x36\x65\x55\x95\x55\x3f\xb4\xa2\xb2\x0c\x5d\xd5\x72\xb2\x97\xcb\xe6\x9d\xb6\xc0\xb0\xaa\x25\x1f\xb6\xa3\x4e\x57\xed\x0d\xaa\xd2\x52\x7f\x9a\x47\x8d\x7c\xf1\x26\x0e\x2e\x85\x00\x57\xda\xe6\x44\x63\xb2\xb3\xad\xb2\x3d\xc7\xe8\x36\x7d\x37\x0d\x67\x1d\x35\xe0\x7e\xdf\xa4\x4e\xff\xc1\x4d\x23\xcc\x97\xf3\x94\x33\xdb\x89\x14\xd0\xb9\xe6\x9f\x69\xb1\xc4\xc9\xda\xb2\xdb\xad\xc1\x34\xb1\x15\x24\x1f\xd7\xb6\x89\xe1\x64\xcf\x40\x7a\xf7\xd2\x4e\x90\x3c\x21\x9a\x05\xa9\xd3\xe2\xd9\x10\xa0\xf0\x42\xef\xc3\x2e\xaa\x9b\xd4\xdf\x1d\x4d\x44\xbd\x5b\xa4\x49\xe9\x2b\xc5\xd7\xb0\x09\xb6\x66\x0c\x8b\x76\xac\x37\xee\x11\x8d\xda\x7c\x45\x53\x57\x0e\x57\x88\xc4\x19\xe8\x81\x34\xec\xea\x36\xa8\x06\x67\x1d\xfa\xa8\xf8\x81\x74\x3c\x89\x1d\x9b\xb0\x38\xb7\x10\x26\x4c\x18\x13\xc3\x54\xdf\xe9\x53\xea\x31\x6b\x5e\xe9\x63\x3b\x75\xff\x63\xdc\xc9\x52\x3c\x5f\xf8\x3f\x4c\x70\xc7\x45\xb5\xa8\x4c\xe8\x5e\x4b\x44\xe1\x1a\xe3\x8f\x51\x1e\x39\xaf\xff\x47\x77\x54\xdc\x93\xcd\xe6\x49\x51\x3c\x9a\xe8\x75\x40\xf4\xae\xdb\x83\x0d\x4c\x95\xf7\x06\xd4\x1f\x94\x14\x70\x90\x69\xdc\x31\x40\x34\x4e\x1f\xd9\x77\xb2\x64\x63\x5f\x5a\x78\xbc\x81\xbc\x83\xb1\xeb\x9a\x74\x4b\xcb\x0d\xa1\xdd\x6d\xf9\xb0\xc9\x5f\xbc\xc9\xc3\x9e\x0c\xbc\x98\x82\xa4\xc1\xa1\x97\x7b\x9b\x67\x78\xd0\x69\xcb\x26\xe4\xcd\x01\x94\xc8\x85\x15\x07\x11\x12\xf0\x3c\x8f\x54\xc7\xf7\x26\x00\xa7\xb8\x9e\xaf\xfb\x3f\x92\xf3\x4d\x55\x3e\x45\x02\x5f\xe3\x7d\x53\xb7\xee\x58\xdc\x4c\xe8\x1b\x4e\x8a\x12\xf2\x49\xc1\x99\x57\xe0\xe7\x24\xfc\xf6\x60\xab\xa6\xb9\x91\x73\xbf\x73\x04\x7d\xca\xb2\xea\x2d\x91\xaf\x15\x79\x13\xa7\xce\xf3\xae\x5a\x84\xb7\xfb\xbc\xe4\x88\x89\x26\x16\x3c\xc6\x6d\xf6\x77\xd1\xfe\x4e\xf1\x95\xfe\x4f\x26\x0c\x07\xa2\x1e\x86\xe7\x76\xce\xfb\x92\xfd\x0c\x5d\xaa\x7a\x78\x05\x55\xa9\x43\xda\xb8\x2e\x75\x96\x62\xeb\xd9\xf4\x2e\x8f\xf3\x14\x3c\x94\xc5\xe8\x63\x68\x30\xe7\xdd\x54\xe7\x51\x35\x72\x1a\x9c\x72\x16\x8c\xcf\x34\xdc\x43\x28\xae\x29\xce\x5d\x9a\xcd\x78\x1a\x3c\x37\x8f\xeb\x31\x98\xb3\x5a\x7b\x2f\xeb\xd8\xc6\xce\x1b\xd8\xb5\x38\x51\xc1\xd3\x9a\x3d\xb2\x39\x2a\x76\xef\x26\xba\x96\x4b\x52\xfc\x01\x49\x08\x8a\xd8\x0e\xe6\xf3\xa1\x56\x2f\x6e\x9e\xc2\x59\x0b\x76\x5b\xef\x64\x8f\x42\x7d\xc6\xc5\x7f\x50\x84\xc9\xdc\x09\x78\xec\x6f\x30\xdc\x56\x71\xae\x21\xfe\x90\xb0\x38\x20\x5a\x53\x91\x16\x90\xcf\xc0\xdd\x16\xb8\x0f\xcc\xfe\x03\x40\x43\xca\x39\xf1\x27\xf1\x57\x90\x6c\x79\xe4\xae\xde\x07\x7a\x88\xec\x31\xce\xf3\xc5\x8d\x6b\x11\xb3\xbf\xb2\xed\xe1\x28\x3e\x46\x3b\x3b\xaa\x2d\x20\x7e\x3c\xdb\xbe\x78\x02\xd3\xbb\xdc\x29\x83\x5e\xc8\x04\xaf\xae\x03\x84\xc0\xef\x82\xfd\x28\x6e\xab\x62\x47\xe4\xcd\x83\x31\x7b\xf6\x74\xfb\x22\xce\x4f\x14\x81\x6d\x85\x83\x65\x0c\x06\x8e\x45\x97\x0a\x07\x54\xf9\x24\x06\x8e\x04\x5c\xfb\x93\x2e\x1d\x6a\x38\x38\x8b\x02\x56\x14\x90\xba\xb1\x93\xaf\x38\x4a\x8e\x71\x62\x6a\x04\xee\x24\x83\x2a\xe1\x60\x58\xba\xca\x02\xd2\x86\xef\x81\xd1\xec\x44\x51\xe2\xd3\x30\xd8\xb4\xf2\x07\x0f\x5c\xd3\x2c\x43\x7b\xb8\x79\xf1\xb6\x75\x3a\xb1\x5d\xed\x40\xd9\x27\xc8\x73\x4c\xb1\xf5\x16\x05\xfa\x73\x12\x44\x1f\xce\x30\xf0\x50\x8a\xca\x8a\x3d\x94\x82\x06\xca\x52\x73\xa8\x9c\x93\xc9\x32\xd4\xc7\x20\x28\x05\xe7\x8b\x2a\x9c\x24\xc9\xf4\xd0\xbb\xde\xa7\x37\x3c\xca\xa1\xa9\xfb\x55\x13\x1c\xb9\x14\xb7\x29\x4c\xd6\xb0\x21\xb3\xb8\xaf\x7b\x59\x1f\x14\x2f\xba\x5a\x0c\x96\x11\x9b\x7c\xb6\x96\xe0\xf8\xde\x66\x47\xbc\x65\x5d\xd1\xa0\x63\xc9\xd0\xab\x9b\xce\x2f\xaf\x70\x29\x0e\xf1\x42\x62\x34\x4b\xa6\xd7\xf4\x2f\x2b\xd2\x77\x79\x5b\x8d\x6f\x50\x62\xbf\xc7\x65\xda\x2c\x16\xec\xed\x58\xd5\x7a\xe9\xc4\xbe\x34\x0f\x9b\xba\x58\x8b\xe7\x63\xe8\x37\x6a\x7c\x57\xf6\x9b\x52\xdc\x92\xc4\x4c\xa0\xdb\x96\x0b\x12\x4a\x66\x6c\xe1\x69\x6b\x5c\x2d\x98\x9a\x76\x7a\xef\xf6\x94\xeb\x09\xf6\x89\x58\x05\x9d\x8d\x17\x48\x77\x87\x9b\xad\x92\xe8\xf7\x96\x4f\x57\x88\xad\x8e\x13\x48\x9c\x28\xd7\xd7\x72\x52\x86\xb7\x18\x21\xca\xc9\x85\x3f\xec\x3b\x20\xf7\xa0\xf0\x0e\x1a\x0a\x50\x9f\x4f\x38\x6b\xe1\x78\x38\xf7\x6c\x5b\xb6\x2c\x8e\x98\x77\x74\xe8\x18\x3b\x6c\x13\x74\x4d\x6b\xd7\x5b\x61\x0b\x18\x3e\x08\xae\x72\x96\xff\x88\x79\x31\xcb\x7c\x66\x89\xb1\x3d\xd9\xad\x9c\xdf\xe7\x95\x8e\xf0\x85\xc3\x67\x06\x22\xeb\x07\x0e\xe9\xf2\x29\xac\x9d\x0e\x87\xf9\x9c\x03\xa1\x5c\xcf\x44\x8b\x74\x41\x66\x04\x89\xc3\xc5\x08\xc2\xdb\x89\x00\x64\x2e\x80\x43\x16\xa6\xe0\x5e\x0e\x78\x13\x51\xa2\xce\x29\x94\x18\x5e\x6b\x22\xe4\x7b\xcf\x34\x0a\xa8\x3c\xba\x95\x0f\x3d\xd4\xe3\xfc\xcf\xf8\x2c\xfa\x0b\xa6\xde\x67\x4f\x11\x74\x0a\xa3\x52\x1e\xef\x12\x07\x14\xc7\x17\x3c\x35\x84\x3f\x2c\x7d\x6d\xb9\xcc\xdb\xc2\xce\xf2\x29\xf5\xb3\xd7\x19\xa8\x3c\x74\xd5\xce\xd7\x24\x91\x6b\x11\x34\x5b\x09\xe4\x86\x77\xa5\x88\x50\xf8\x0a\x3b\x53\x42\x98\xf3\x17\x32\xb5\xd8\x0b\x96\x08\x7e\xb7\xe5\x39\x20\x13\xca\xea\x41\xb7\x1f\xff\xe9\xf2\xfc\xfd\x51\xfa\xe5\xc9\x7e\xbf\x7f\xc2\xd9\x9f\xec\xda\x35\xfb\x8b\x16\x7c\x56\xf0\x7f\x9c\xbd\x3b\x4a\xcb\x7e\xf1\xe3\x8c\xa4\x77\x4c\x0d\x2f\xf6\xea\x76\x38\x94\x5c\x26\x4b\xd6\xec\xfe\xf1\x29\xb3\x95\x43\xe5\x7a\xe1\x5a\x78\xc4\x3c\x64\xda\x3c\xec\x66\x7b\x57\x2a\x10\x1b\xbc\x97\x18\x4b\xd2\x95\x60\xba\x46\xc0\x27\x00\xab\x36\x7c\x1f\x19\x1d\x22\xdc\x20\xbe\x63\x1f\x9d\xdd\xba\x10\x3a\x35\x8e\x46\xbd\x53\x94\x95\xc5\x2f\xc3\x92\xb0\x57\x8b\xfb\xa5\x9e\xa7\x7f\x62\x45\x8f\x51\x2a\x54\xc0\x49\x46\x05\x00\x0e\x69\x09\x33\x2c\xd5\x0b\x32\xca\x61\x82\xdf\x35\x3f\x2d\x7b\x78\xd4\x4f\xd1\x86\xb4\xdc\xb5\xcd\x8f\xa6\x4d\x54\x5a\xd7\xa8\xb0\x56\xb8\xb7\xb8\x8e\x45\xd4\x3c\x98\x03\xbc\x2e\xed\x87\xf3\x60\xb8\x24\xe9\x24\xf3\xec\x5e\x27\xd9\x88\xe3\x2b\xe0\xd7\xe6\x99\x4a\x10\x23\x89\x2e\xa8\x41\x25\xbb\x51\x0d\x62\xf1\xcf\xb4\x97\x76\xd4\x0d\xfe\xb7\xa7\x2e\x2e\x5e\x82\x8c\x6a\xc0\x40\x62\x92\x61\x84\x74\x6b\x12\xf3\xb2\x70\x86\xf3\x62\x16\x1b\x1e\x19\x04\x8e\xd5\xec\xad\x63\x9e\x2d\x23\xb7\xf2\x50\xcc\x90\x52\xcd\x01\x52\x1c\x35\x07\x89\xc3\x8b\x0f\x07\xc9\xac\x59\xc8\x9d\xac\x27\x12\x0a\xb1\xb5\x5d\x37\x77\xe6\x79\x7f\x8a\x2f\x3d\xd2\x16\xf6\xcc\x83\x69\xa7\x3c\x64\x20\xc1\x37\x59\x5c\xdc\x5f\x83\xcb\x4d\x54\x0c\xa8\xef\x52\x81\x61\x9f\xb5\x50\xd4\x8b\xac\x32\x13\xcd\x9b\x70\xde\x76\x50\x43\x37\xf3\x53\x57\xc3\x01\x37\xf3\x38\x6b\xe8\x6a\x1e\x64\xfd\x06\x57\xf3\x18\x49\x63\x47\x72\xdf\xd5\x6f\xf0\x25\x9f\xea\x74\x60\x80\x50\x32\x9e\x42\xfc\x44\x86\x29\x43\x44\x11\xf6\xed\x2b\x9e\xac\xd7\xcd\x48\xe1\xfb\x16\x1d\x73\xaa\x25\x1e\x25\x01\x72\xbf\x66\x96\x28\xaa\xeb\xeb\xd9\xbc\x6d\xf6\x1d\xbb\xa5\xe3\xfa\x42\xf6\x25\xe1\xef\xf4\x12\xdf\x02\xc2\x26\x57\x10\x85\x04\x24\x52\x7c\x1f\x28\x52\x02\x12\xc9\x4b\xdb\xe8\xfa\xb8\x53\x4a\xc1\x8d\x6d\x7c\x9b\x23\x1f\x41\x93\x94\x99\x64\x21\x76\xbe\xcf\x38\x04\x87\x7a\x98\x48\x58\x15\x47\xa6\x4b\x8e\x51\x30\x0e\x1a\xc2\xcd\xdd\x15\xfb\x5e\x7a\x28\x10\x72\x98\xf7\x7c\x05\x61\x19\x1c\x81\x11\x31\x54\x10\xb4\x3c\x48\xe8\x38\x4b\x10\x86\x4b\x0f\xa1\x08\xc2\xa4\x7f\xf9\xf6\xbd\x7c\xc2\x9b\x45\x8f\x48\xc2\x9d\xe5\x15\xfb\x25\x9a\x8f\xcc\x6c\xca\x57\xc6\xd2\xc4\xe7\x48\xf4\x53\xbb\x4f\x1a\x5f\x0e\xa2\x68\xf3\x6b\xd8\x2a\xf9\xdf\xc5\x92\x30\xe7\xb3\x5d\xb4\xe5\x93\x61\x36\x42\x8e\xa0\xfa\x12\x01\x17\xaf\xb6\x46\xfe\x73\x71\x39\xdb\x15\x03\x1c\x3e\x2c\x3c\x46\xcc\xe3\x86\xe8\xee\x21\x2d\xb4\x15\x2b\xe0\x4a\xa0\x83\x0a\x41\x1d\xfe\xd6\x1f\xd0\x0e\x6e\x58\x36\x88\x3e\x5f\x3a\xdf\xf8\x7c\x29\x7b\x36\x3e\x0d\xa2\xbd\x1d\xd3\x8e\xf2\xf8\xab\x7f\xcc\xa4\xe0\x3d\xaa\x28\x1d\x77\x98\x2e\x42\x47\x2d\x8a\x64\x0f\x2d\x9c\xb4\xed\x56\xb3\xe1\x40\xb8\xbd\x23\xc5\x59\x8a\x6f\x07\x65\x92\x0a\x93\x4b\xb6\x29\x02\x61\x45\x08\x28\x5c\x56\xce\xf2\xf6\x86\x2f\x35\xc4\x2e\x96\x15\xb0\x6f\xf5\x68\x2d\xff\x87\x23\xa6\x97\x69\x5e\x48\x68\x54\x61\xec\x20\x82\xdc\xd0\x99\x8c\x99\xba\x0c\x2c\x5d\xc9\x31\xee\x77\x12\x92\x5b\xb0\x87\x94\x31\x3e\x25\x42\x69\x4f\x86\xe3\x16\xc0\x3b\x44\xff\xa5\xfc\x3f\xff\xeb\x7f\x13\x7b\xda\x36\xb4\x5a\xe2\xd0\x93\xde\xb7\xe1\xc7\xdd\xdc\x4b\xfd\xd5\xa7\x4f\xc0\xa3\x83\x86\x08\xfa\x53\x3d\x47\x44\xa1\x11\x8d\xf2\xbd\x88\x46\xdf\xbc\xc5\x37\x20\x72\x68\x3b\x9e\xcc\x61\x1f\x1f\x96\x61\x44\x95\xe9\x1a\xe1\xce\xfb\xdb\xe0\x62\xd0\xe4\x14\xad\x12\xdd\xf4\x92\x92\x7c\x22\x9d\xfa\xb3\xbf\x15\xc6\x0d\x44\x74\x23\x0c\x54\x1c\x0f\x63\x08\x7b\xcd\xe4\x37\xbe\x04\x5a\x54\x46\xb9\x82\x0a\x5b\x52\xe6\x44\x2e\xb7\x34\xc8\x19\x3e\x57\x48\x58\xd1\xa3\xce\x0e\xf2\xe9\xed\x64\x38\x2a\x37\x71\x9a\x32\x3c\x21\x48\x1a\xa3\x6e\x4a\xc8\xed\x13\xba\x1d\x13\xdd\x26\x0f\x07\x47\xb3\xff\x98\x18\x58\x24\xba\x4f\xc0\x4e\x77\x1c\xe0\x0b\x42\xf8\xa6\x6d\x26\x3f\xb1\xf0\xbe\x45\x04\xcd\x6b\x44\xe0\xf2\x1b\xb8\x15\xf2\x7f\x82\x2b\x07\xd4\x48\xc1\xb1\x1a\xd2\xf8\xc1\xb5\x06\x6d\x74\x85\xa3\x77\xbd\xc4\x75\x27\xd1\x9d\x89\x5c\x38\x10\x35\xb1\x45\x34\xba\x04\x07\x23\x83\xd8\xfb\xa0\x23\x07\xf8\x47\x6b\x58\xed\xf4\xcc\x2c\x97\x45\x5c\x4e\x5d\x6d\x94\x64\x70\x05\x4b\x1d\xed\x75\x77\x33\x5f\x4d\x30\x65\x56\xb2\x7f\xe4\xb3\xf1\x78\xe5\x73\x9a\x3c\xbf\x08\x3c\xbb\x36\x56\x5d\x17\x08\x09\xc8\xe3\xa3\xd3\x35\x29\x08\xeb\x48\x99\x41\x41\x2c\xca\xfd\x72\xc0\x87\x7c\x7c\x5d\xd1\xf7\x7b\x91\x8f\xcb\xb8\xdf\x8f\xfc\x1f\xdd\xba\x98\xbe\x8a\xc0\x25\x8f\xef\x24\x70\x49\x53\x97\x13\xfc\x3b\x36\x12\x88\xa4\xb4\x19\xa3\xb9\x7d\x70\x27\x41\xf3\x38\x43\xf4\xe1\x6b\xa2\xbe\x7f\x3f\x21\xba\x9c\xe7\x1b\xa4\xbd\xb8\xc7\x81\xa0\x17\xb5\xca\x21\x84\x0d\x56\xf1\x99\xb1\x43\xda\x9b\x17\x5c\x23\x9e\x31\xd4\xf1\x46\x07\x98\xd0\xd3\x7b\xb3\xc4\xc7\x99\xc2\x66\x3a\xf3\x94\x3f\x00\x64\x56\x1c\x39\xc8\x24\xe6\xbc\xaf\x9f\x66\x3a\x60\x1f\xbe\xef\x58\xd3\xb0\x95\xcc\x6b\x9c\xdf\x55\xd8\xc8\x7b\x73\x84\xcb\x6c\xbc\x07\xf3\xef\x39\xea\x34\x6d\x83\x65\x1d\x70\x6f\xa6\x18\x2c\xca\x86\x3f\x6f\x50\x60\x1d\xc2\xf0\x25\x4a\x86\x67\xb8\x1e\x73\x3b\xdc\xcf\xde\x0f\x1b\xcd\x1e\x0f\xc2\xbd\x67\x7a\x53\x89\x9d\x03\x1e\xc4\x7b\xd6\x07\x47\x8b\xad\x1c\x54\xf2\x40\xf2\x0d\x71\x67\x32\x65\x98\x3f\xae\x23\x76\x60\xb2\x58\x67\x06\x3f\x43\xc0\xc5\x13\xd6\x16\x25\x0e\xe0\x9c\x48\xc8\xa5\xa8\xae\xa5\x17\x6e\xf9\x46\xc8\x65\x4a\xf0\x0d\x0c\x62\x75\xd5\x53\x5c\xf3\x19\x04\x1a\x94\xbb\x2d\x0f\x61\xee\x6e\x17\xe1\x61\x12\x40\x15\x37\xb5\x55\x90\x90\xff\x38\x2c\x4b\x2e\x96\xd5\xd5\xf3\x7d\xb3\x4f\x64\xe9\x9c\xc1\x8f\x4a\x2e\xff\xd1\x98\xb8\x49\x12\xc7\x32\x8a\x9e\x9f\x45\x1f\x48\x4c\x97\x13\x96\xe3\xf4\xc1\xa1\x1c\xac\x1c\xee\x38\x8e\xdd\xe5\xc5\x02\x28\xa4\x06\x9c\x83\x60\xb9\x3e\x24\x8e\x99\x96\x0a\x01\xd6\x57\x2b\x92\x68\x54\x6f\x08\xf1\x2d\x15\x73\x3b\x47\xd5\x1d\x99\x7d\x0b\x57\x3b\xf0\x59\x09\xe1\x87\x1b\x6b\x87\xdc\x7d\xed\xda\xe1\x2e\x56\xf7\xed\x08\x21\xbe\xa5\x1d\x5c\xcb\x53\x78\x04\xf1\x20\xde\xd7\x1e\x52\x0e\xf5\xa6\x8a\x70\xf7\xa4\x1b\x36\xd1\x9f\x4a\xb9\x0a\xd6\x6b\xec\x40\x16\x03\xf9\x83\xcd\x9b\xe3\x85\x53\x52\x64\x23\x6c\x42\x44\x90\x8d\xe2\xc9\xa3\xc7\x5f\x9f\xe2\x3c\xd2\xc8\xe9\x40\x83\x2d\x60\x0f\x36\xb5\x0a\x69\xbb\xbc\x48\x07\x19\xeb\x4c\xe5\x3a\x49\xfc\xfa\xc2\x2b\x70\x76\xe8\x56\xe4\xbb\x70\xc9\x80\x80\x67\x23\x59\xc8\xc5\x86\x6e\x8e\x33\xab\x0b\x6a\x1d\x17\xe6\x58\x35\xa0\x1c\x8b\x1e\xc3\x19\xef\x0c\xa5\xb3\xc0\xd8\xca\x4c\xf9\xc8\x64\x56\xd9\x6d\x35\xa8\x4d\x7e\x17\x6d\x00\xf3\x61\x69\xd6\xc8\xa2\x59\x73\x78\xc5\x1e\x37\xc5\xaf\xd5\x72\x5b\xa0\x23\x98\x83\x46\x99\x59\x38\xd5\xc7\x04\xe2\xc9\x6e\xd9\xe6\x6c\x0b\xb7\xb1\x66\x66\x11\x90\x02\x0a\xfc\xa3\xeb\xa5\x7b\x79\xc1\x73\x03\xec\xb0\x51\x41\x8f\xee\x63\x0a\xdf\xd1\x00\xb0\x8d\xfb\x5b\x00\xb6\x20\x77\x1e\x52\x33\x02\x16\x70\x5f\x43\xf4\xc9\x84\x6f\x6f\x08\xf8\xc6\x37\x36\xe4\xc8\x5a\xa1\x37\x6d\x15\xc5\xe4\xfc\xbf\xaf\x7d\x03\x75\x07\xc4\x19\x5d\xe5\x36\x20\xf8\xe8\xf9\x2a\x47\xf4\x81\x2f\x84\x15\x8b\x0d\x30\xf5\xcd\xd0\xe5\xcc\x17\x55\xd3\x10\x42\x95\xad\xfb\xd0\x7f\x23\x3e\x31\xc8\x1e\x05\x7d\x7b\xa7\x22\x09\x77\x2e\x3e\xb0\xe8\x6f\xac\x11\x25\x0c\x7b\x99\x72\xbd\xdf\x27\xa0\xfd\xf3\x81\x67\xf2\xe4\x39\x0f\xd9\x9e\xee\xa2\xd7\xd4\xc6\x37\xad\xdd\x7b\xcb\x5d\x7c\xbb\xdf\xf0\x9a\xc7\x4e\x8e\xac\x2f\x4d\x96\xb3\x17\x13\x12\xef\xbc\x71\x79\x47\x38\xd8\xe0\x91\x98\x05\x5f\x70\xd4\xd4\x95\xec\xfb\x9f\x49\x88\xef\xb8\x62\x53\x8c\xda\x61\xf8\xda\x07\xef\x7f\xef\x7b\x07\xe3\x22\xdb\x98\x54\x10\x90\x70\x90\x1e\xdc\xba\x06\x7f\xcb\xd6\xee\x91\xf3\x25\xa0\x25\x30\x61\xee\x82\x96\x69\x3b\x50\xe8\xae\x9b\xaa\x31\xe3\x8d\xba\x54\xb7\x29\xdd\xe3\x56\xcc\x24\xf8\x6a\xa1\x82\xaf\x16\x92\xf7\x53\x8e\x82\x88\x08\xe7\x61\xc2\xd6\x5d\xe2\x12\x45\xc7\x0b\x9f\x8f\xc7\xe9\xcc\x38\x8a\x8f\x64\x46\x11\xf9\x62\x54\x8b\x19\xb0\xc3\x38\xf1\xa5\x0b\x63\xec\x40\x42\x54\x7a\x7c\x4d\x49\x98\x24\x17\x16\x46\x51\xfa\x46\x43\xdc\x13\xb1\xa9\x86\x71\xeb\x66\xc9\x97\x2d\xc2\x08\x19\x77\x4f\x65\xe7\xb8\x4c\x73\xe9\x8b\x8a\x80\x53\x78\x18\x83\x7d\xad\x3e\xef\xe2\xdc\x98\x82\x61\x84\x1e\x70\x19\x01\x92\x4e\x9d\x2f\x56\xe8\xff\x6c\x8a\x90\x4c\x35\x76\xc4\xa4\xaf\xb3\x4d\x40\xca\x3b\x1a\xa9\xbd\x9a\x31\x09\xc3\xcf\x73\xe1\x91\x92\x20\x95\x5d\x64\xeb\x4c\x6f\x72\x69\xf4\x28\x38\xfb\xcb\xba\x5b\x5b\xd2\x73\xcc\xb8\xee\xde\x4c\xc1\x2a\xc6\xc7\xa3\xf4\xa6\x18\xcd\x29\x12\xc7\x3d\xcb\x99\x2f\x59\x17\x46\xf5\x5c\xc8\xbd\xae\xd6\x79\x39\x81\xa5\x1b\x73\x6d\x70\x44\xf2\x4d\x65\x0c\x5a\xe9\x21\x5c\x31\xdf\xdf\x54\x58\xcf\xf8\x7c\x29\x2c\x72\x51\x23\x23\xb6\x66\x20\x5f\x29\x61\xd0\xc4\xc9\x22\xbe\xa3\x91\xfc\xb0\xcf\x72\xe1\x1e\x42\x39\xe5\x3b\xb4\xda\x39\x9f\x64\xe5\x35\xac\x94\x07\xaa\x9a\x3a\xb6\xc0\x4d\x67\xbf\xaf\x65\x68\x10\xeb\xdc\x53\xc5\x1f\x6a\x5b\x5b\x76\x77\xf5\x22\xc3\xab\x34\xdd\x4a\x37\x2a\x3f\x94\x62\x2b\x7f\x34\xa3\xb8\xa7\xb9\x5e\x47\x50\x62\x4b\xaf\x7b\x24\x97\x0c\x3e\x5e\x50\x7c\xc5\xaf\xe2\xd0\x12\xf7\x04\x3c\x11\xb9\x4d\x80\x23\xf1\xac\xff\xf1\xde\x8a\x06\x7d\x09\x18\x62\x80\xdb\x16\x4d\xe1\xd7\xe3\xbe\xa1\x07\xc1\x26\x79\xd8\x0d\x26\x03\x9d\xfd\xe0\x15\xe1\x6d\xba\x8c\xb8\xc7\x7c\x03\x03\xdf\x8a\xc6\x8f\x0d\xa8\xbb\x8f\x2e\x68\xf6\xea\x90\x1a\x8f\x0e\x74\x28\xac\xf7\x9e\x11\x7a\x14\xb5\xe2\xeb\x7d\x0c\x17\x21\x79\x4f\x6d\xb7\xc5\xa3\x96\xee\x21\xb5\x8f\xf8\x0e\x99\x82\x5c\x70\x98\x2d\x9b\xb6\xa1\xe1\x91\xc3\xba\x7a\xe9\xe1\x6b\x8b\xeb\x26\x32\xc0\x04\x7e\x97\xed\xf4\x80\xb5\xe5\x39\x43\x34\xc9\x0f\x7c\xda\xda\xe7\xea\x9b\x3e\x5f\x5b\x1e\xb6\x40\x2e\xd4\x6e\x7d\xc5\x09\x96\xeb\xd8\x12\x82\x9c\x9a\xa7\x99\xb3\xbf\x27\xb2\x28\xf0\xb9\xc6\x04\xb0\xd8\xe6\xe0\x13\xb0\x84\xae\xdd\x36\xe3\xae\xe2\xa4\x9e\x44\xa7\xef\x10\x9d\x5e\x71\xf4\xb8\x06\x6b\x95\xcb\x36\x68\xd4\xa1\x7c\x7c\xdc\x6a\x98\xe7\x15\x9f\xca\x1a\xc2\x1b\xe6\x56\x65\xbe\x1d\xe1\xed\x0d\x45\x8e\xb0\x06\xc8\x31\x02\x00\x7b\x18\x0b\x61\xae\xaa\x80\x62\x15\xe6\x78\x4b\x51\x87\xa0\xe1\x01\x30\x84\xc7\x73\x93\x07\x72\xe8\x9a\x3d\x6c\x95\xee\xd9\x8c\x5a\xd5\xcc\xff\x86\xc7\x19\x15\xfa\x5c\x3e\x03\xa8\x79\xd3\xf4\xfc\x06\xce\x96\xc5\xad\xc5\x8d\x43\xd3\x4b\x8b\x67\x71\x6b\x71\x33\xc2\x94\x40\x8f\x51\x25\xd0\x87\x71\xb5\xe1\xeb\x4b\xa8\xae\x76\xb7\xe8\x77\x34\x41\x5d\x85\x67\x97\x7c\xed\xc9\xa5\x4b\x18\xd5\x38\xca\x19\x52\xe8\x30\xf3\x54\xcd\x0b\x12\x22\xca\xc9\xaa\x4f\x38\xe5\xde\xba\x47\x79\xc3\xca\x47\xd9\xa7\x66\x0a\xee\xf4\x65\xa3\xf3\x7c\xb7\xb8\x29\x7b\xf6\x19\x5f\x65\xd8\x61\x0e\xcb\xba\x30\xb0\xf4\x25\xc0\xd2\x37\x04\x96\x5e\xc9\x0b\x8b\xe3\x52\x69\xd1\xd9\x94\x7d\x0e\x4f\x81\xa0\x94\xd7\x27\x34\x02\x1c\x5d\xe4\x53\xb9\x60\x9d\xc9\x54\xca\xd6\x59\xc8\x82\x4f\x50\x82\xbe\xfd\x28\x82\xf7\xb1\x03\x99\x2a\x8d\xd5\x00\x59\xfd\x16\x77\x0b\xb9\xb0\x96\x15\x03\x6a\xc3\x07\x89\x09\x60\x71\xaf\x20\xc1\x1a\x8f\xc4\xa6\x38\x2e\x18\x24\xf0\xab\x98\x51\x0a\x07\xf3\xc0\xc2\xb8\x08\xee\x22\xdf\x75\x93\x80\xdb\x5c\x26\xd3\x41\x48\xab\xde\x00\xad\xe6\x21\x9c\x56\xda\x09\x2a\x85\xad\x88\xa6\x26\xbe\xc5\x7a\x3d\x9f\xbd\x1b\x0d\xd7\x62\xbb\x9c\x0f\xaf\x47\x0b\xec\x57\x9f\x34\x53\x30\x91\x5e\x21\xb3\x4a\x8c\xc9\x5b\xb8\xae\xdf\xc2\x96\x16\x9d\x5a\x95\xb8\xe8\x7d\x35\x8d\xb3\xb3\x53\xee\x90\xbc\xc6\x87\x87\x2e\xb5\x44\x08\xa6\xe6\xb2\x12\x3f\x5d\xa3\x9e\x2b\x02\x28\x57\xf6\xc8\x4e\xd2\x3a\xcc\x0c\xa5\xc1\x3d\xfe\x1b\x15\xf0\x0e\xfa\x44\xd0\xb7\x83\x57\x5f\xdb\x95\x68\xdf\x78\xfb\xb5\xef\x4d\x80\x63\x6c\x74\xc7\xd8\xad\xba\x2c\x44\xe7\xf0\x46\xb5\x7c\x80\x5e\x06\x57\x0c\x47\xa0\xd8\xf9\x0e\x1f\x6b\x0b\xb6\x1f\x0d\xe5\xd8\xe8\xc3\x23\x91\xea\xc8\x37\x2a\x21\xc8\x13\xbc\xac\xc9\xee\xd0\x72\xd6\x68\x0a\x45\xde\x3a\x68\x18\x72\xb7\x88\x03\xfa\xde\xad\xa5\x18\x17\xd3\x8f\x1b\xfc\x3f\x79\xdf\x21\x6c\x80\x7f\xe5\xe1\x40\xfd\xff\x21\xaf\x3c\x0c\x2d\xb3\xee\x99\x07\x5c\x63\x3f\xc3\xe1\x80\x78\x1e\x47\x1b\x57\xd1\x7c\x46\x8e\x70\x9e\x22\x22\xde\xca\x47\x94\x37\xfb\x9a\xc5\x57\xac\x36\x98\xa2\xc3\xfa\x82\xf3\x1c\x51\x6d\x92\x63\x7c\x53\x5f\xdc\x04\x89\x19\xef\x16\x49\xbc\x5a\x23\x52\xbd\x2d\xaa\x54\xeb\xd1\x0c\x26\x09\xdd\xa2\xb1\xb8\xd1\x23\xf2\x3c\xa9\x75\x6a\x0f\x9a\x1c\x4f\xee\xa8\xd5\x92\x49\x4e\xfa\xda\x51\x91\x49\x66\xa2\x80\x41\x57\x24\x26\xbc\x5c\x44\x62\xe4\x5a\x73\xbc\xf3\x23\x21\x8d\x1f\x7b\x61\x04\x2d\xd6\x62\xe2\xaa\x83\x42\x01\x34\xc9\xab\x82\xb6\x0c\xfd\x53\x25\x36\x7c\x33\x5e\x62\xf4\xf9\x6d\xbc\xbc\x2d\x31\x50\xf6\x0b\x78\xb9\xb1\x6e\x7f\xfa\x3e\x8c\x0f\xae\x42\x47\xaa\x7f\x8f\x56\xfa\xc5\x8b\xcb\x5c\x7c\x76\xb0\xa8\xe8\x95\x4c\x2f\xd9\x6f\x47\x5b\xdf\xf7\x6d\x35\xdf\xf1\xfe\x98\xfa\x03\x30\x51\xcb\x46\xba\x4b\x1b\xc1\x76\x3b\x7b\x22\xe0\x52\x43\x87\x61\x07\xaf\xac\x0d\xe0\xe4\xb6\x10\x6b\xdf\x2b\x7c\x69\xd2\x86\x59\x67\xd6\xe5\x4c\xfc\xc4\x79\x8a\xf4\xf2\x58\x53\xf0\xf6\xb6\x1a\x4d\xf0\x44\xf7\xc1\xc1\x61\xc8\xd1\x5b\xde\x3e\x49\xd1\x8d\xa4\x00\xe7\xfa\x1e\x40\x2f\x57\xb5\xcb\x5d\xf8\x57\xef\x2e\x29\xb8\x68\xef\x64\x1f\x49\x87\x8b\x37\x12\xf4\xc5\x6b\x7b\x20\xe9\xf8\xcc\xbd\x29\x1e\x10\x80\x16\xc9\xef\x15\xbb\xd7\x38\x7d\xe1\xd4\xfe\x46\x5f\xe3\x54\x3b\xaa\x92\x30\xbf\x26\xc3\x3e\xc1\xdb\xce\xca\x09\x4e\x28\x0f\x66\x83\xbe\x1b\xa0\xf8\x1f\xad\x51\xb1\x41\x17\xeb\x8f\x5b\xab\xc2\x69\x10\x2e\xa1\x51\x05\xdf\x78\xcb\x7f\x58\x56\xb0\xd6\xdc\xd3\xd6\xc9\x23\x88\xf1\x95\x88\x21\x60\x26\xd3\xd2\x6e\x3e\x8d\x0a\xf6\x17\xdd\x8e\x32\x44\x57\xa0\x46\x99\xa6\xbd\x03\xee\xbb\xfc\x54\x6c\x05\xa6\xa3\x3b\x53\xb8\xea\xe8\xb1\x45\x5c\x61\xf9\xb1\x7b\xe3\x12\xc1\x9d\xb4\x20\x91\x00\xe4\x56\x76\xdc\x02\x88\x3f\xcb\x63\xcb\x21\xd0\xf4\x73\xfa\x0a\x30\x64\x35\x1a\x3d\x78\x65\x3d\x7a\x5e\xdd\x72\xda\x6b\xb1\xcd\x4e\x94\x70\xbc\xe6\xac\x47\x8f\x3e\x20\x92\xe5\x2f\x03\xb7\xb7\x98\xc5\xb8\x89\x09\x1c\x26\x69\x45\x9c\x14\x56\x82\x85\x8b\xdf\x77\x9e\x78\xf6\xf9\x43\x83\x47\x63\xfb\x95\x43\x30\x5b\xe2\x17\x99\xdc\x67\x17\xe4\xc1\x3e\xc0\x02\xde\xbd\xe3\x4c\xd4\xee\x71\x0e\x6a\xf7\x01\x70\xd9\x1b\x36\x36\x7f\x89\x2f\x61\x21\xae\xc5\xec\x71\xa6\x54\x64\x1d\x96\xb8\xe1\xe3\x57\x21\x0e\x8a\xb9\x27\x0c\xf7\x24\xf6\x24\x69\x10\x64\xb8\x56\xf9\xd8\x70\x7d\xf0\xb1\xe1\x4a\xe7\x63\xb5\x61\x83\x16\x74\xdd\xda\x06\xe2\xf2\xf2\x5d\x3c\xda\x3e\xd5\x6f\xd8\x3f\x66\x97\x95\x07\x7c\xc1\xcd\x92\x14\xcf\x07\x78\xf9\xfd\xc7\x20\x87\x62\x33\xc4\x9f\xc6\x0e\xcb\xd0\xf7\xca\x07\x45\x18\xb3\x8c\xa6\x4c\xb5\x38\x80\x18\xf7\x6c\x71\xf4\x1c\x04\xd0\x2f\xcf\xdf\xeb\xa2\x12\xbe\x5c\x3c\x22\x66\xcf\x6c\x1d\x29\x87\x8c\xd6\x1a\xc6\x9e\xee\xd1\x43\xfe\xfa\x78\xac\xba\xbc\xbb\xa7\x92\x5f\x22\xda\xb7\x70\xf2\x95\xfe\xe1\xf3\xfc\xec\x8b\x6e\x59\xec\x2d\x59\xbd\xcd\x81\xdb\xff\x3e\x70\x26\x35\x30\x7b\x93\x06\x86\x82\xd1\xf3\x35\xb0\x10\xe8\xeb\x35\xc6\x18\xe4\xe4\x13\xbb\x7d\x67\x6b\xb5\x8a\xcb\xe9\x28\x38\x7f\xa7\xef\x60\x06\x77\xed\x8e\xde\x74\x8d\x32\xc9\x53\xb2\xee\xdd\xc8\x71\x66\x3b\xc4\xe7\x06\xd1\x0e\x25\x4d\x0e\xe2\xef\xbb\x72\x47\x85\xcb\x63\xaf\x7c\x2d\x28\x7d\xa6\xef\xf0\xe9\xc6\x4a\x4e\x1b\x41\x49\x66\x1f\xe7\xe7\x76\xfe\x08\xba\x32\xc5\xb8\x51\xba\xa9\xb6\xbc\x2c\xeb\x63\x77\x3c\x38\x14\x83\xb5\xf9\xcf\x88\x09\x91\x1c\x72\xe6\x33\x7c\x4f\x37\x50\x61\xc7\xc2\x61\x9c\x6e\x04\x45\x74\xde\x04\xc4\xf4\xe6\xd7\x77\xe7\x03\xc8\x89\x09\xaa\x29\x13\x13\x5a\x53\x26\xa6\xaf\xec\xf0\xb8\x2e\x60\x57\x67\xba\x07\x02\x79\xb0\x03\x42\x43\x7e\xc3\x16\xc4\x33\x59\x90\x52\x5b\x91\x6f\x65\xc6\x28\x9d\xc9\x77\x0c\x14\xdc\xb5\x2c\x50\x76\xd5\xf2\xa8\xd6\x3a\xac\xb3\x96\xdd\x09\xcf\x0f\xc4\x73\x20\xe0\x07\xe2\x81\x3b\xd9\x3c\x83\x26\x4d\xf6\xb6\x2a\xf4\x26\x6a\x81\xbf\xd0\x28\x03\x35\x10\x5f\xb2\x41\x68\xd1\xae\x99\x44\xb8\x95\x93\xde\x4e\xf0\x15\x0d\x9d\x4e\x44\x9e\x2f\x02\xeb\xa7\x21\x3f\x86\x23\x39\x0c\x78\xb9\x70\x88\x31\x3b\xd3\xeb\x13\x7f\x0b\x35\x4c\x52\x83\xce\xac\xab\xeb\xd2\x19\xb0\xb4\x37\xef\x28\x2e\x02\x5e\xf1\x73\xc2\x76\x4e\x52\x1e\x14\x3e\xa7\x8f\x41\x27\xc2\xa2\xb4\x27\xa3\x92\xb6\x15\x8c\x8a\x01\x5e\x24\x62\x1a\xe3\x06\xad\x7c\x3b\x00\x57\xc6\x3d\x64\xb7\xf6\x20\x5f\x30\x43\xfc\xeb\x58\x7e\x7d\x76\xb5\xf3\xba\x3c\x59\x33\x43\xe9\xca\xc5\x30\x58\xb9\xcc\x89\x60\xb6\x68\xe5\xca\x15\xfe\xbb\xe2\xed\x5d\x97\x12\xce\x3d\x8b\xeb\x88\xf6\x8a\x9d\x9c\xc1\xd1\xa0\x87\xf7\x4e\x07\x82\x26\x4b\x98\xb8\x28\x30\x06\x28\xbf\x94\x8b\x5d\xb0\xdb\xf0\xab\x7c\xab\x79\xcf\x17\xd3\x98\xcf\xe0\xae\xc6\x2d\x91\x17\x12\x13\xc0\x4c\xdd\xbb\x64\x4d\x87\xe7\xa3\x79\x40\x1e\xac\xdf\x55\x0f\xf5\x87\xa1\xcc\x11\xc3\x9c\x1f\xe4\x33\x5b\xcb\x91\x8c\x81\x6f\x86\xc1\x86\x52\x48\x18\x97\xfd\x14\xc9\x69\x2e\x6d\xa2\xe1\x96\xd4\x6c\x99\x65\x6d\x67\x01\x2c\x44\xf1\xe0\xd5\x12\x69\x83\xa4\x7f\xcd\xf3\x2a\xf9\x24\xae\x0e\x9f\x07\x57\xc5\x9b\x55\x32\xf0\xae\x89\x8e\x05\x3d\x94\xab\x22\xe5\xec\x94\x65\x62\xc7\x22\xb9\x17\x34\x80\x7d\xda\xb5\x8b\xa7\x0f\xc3\xfb\xfe\xf4\x62\x40\x05\xb0\xcb\x00\xff\xa0\xb7\x4f\x6a\x3b\xec\x6e\xc3\xdf\xf4\x32\x41\xf9\x0e\xcb\x15\x6b\x88\x14\xdd\xfd\x53\x70\x9b\xe0\xf0\x7a\xc4\xe0\x16\xc8\xa6\xfe\x9e\x82\xdc\xd5\x1e\xda\x3f\xfb\x1e\xe0\x05\x27\xa9\x19\x21\x72\xa4\x7a\xf8\x5c\x92\xa2\x0a\x07\xb2\xf9\x80\x8e\xc7\x13\x7d\xdc\x8f\xa8\xa8\xa8\x11\xa2\xf4\xb6\xb8\x9f\x33\x7f\x67\x34\xce\xe6\x49\x42\xd5\xe9\x75\x59\xf2\x16\xd5\xcf\xee\xbe\xe8\xe4\x53\xdf\x34\xeb\xcf\x49\xbe\xe4\x3e\xd1\x6f\x82\x0b\xd9\xc5\x8d\x17\xae\x6a\x14\x4c\xe4\x93\x43\x3f\x71\xc1\x3f\x91\x96\x4a\x0c\x04\x77\xb6\xfd\xb4\x41\xc4\x86\x74\xb6\xbe\x44\xc4\x0a\x11\xfc\x12\x00\x3e\x0b\x7c\x16\xf9\x1d\xbe\xf6\xf8\xda\x97\xe5\x8d\x64\x06\x87\xa1\xec\xa4\xf5\xad\x10\x73\x87\x6f\xbe\x84\x8c\x3f\xa5\x1e\xbd\x92\xd0\x3e\x70\x53\x1c\x57\xa7\xf1\xf6\x41\xf1\xf2\xac\xd8\x73\xff\xc2\xd8\x43\xde\x36\xbb\xd3\x28\x84\x28\x86\xab\xd7\x28\x09\x3e\x04\x9b\x20\x5d\x56\x0b\x94\x30\xc5\x72\x3b\x34\x52\x82\x14\xd7\xe6\xfb\xcc\xb7\x4b\x43\x88\xf5\xad\xd2\x10\xa1\xb7\x68\x9b\x2d\xdf\x1a\xf5\xd9\x3d\xaf\xe0\xaf\xdb\x3e\xa5\x34\xbd\x3d\x03\x57\xf9\xf0\xc1\x3e\x3c\xf7\x8f\xe7\x55\xf8\xd8\xdb\xcc\x3d\x5d\x5c\xd5\xdb\x9d\xd3\x9f\xf4\x86\x85\x47\xbd\x82\xf9\x2b\x38\xc4\x97\x93\xef\xd0\x95\x0b\xc6\x69\x74\xb3\x39\xd6\x00\xe8\x65\xfc\x18\xfb\xe3\x7f\xfd\x57\x80\x53\xf0\xdf\xfe\x2d\x3d\x7b\xf9\x63\x5a\x7e\xe1\xbb\x6a\xf8\x3d\xcd\x2f\xd5\x66\xb7\x31\x28\xfa\x7c\x15\x01\xf2\x61\x37\x78\xe5\xa9\x85\x5b\x5f\x58\x82\x59\xfb\xff\x06\x00\x00\xff\xff\xa6\x54\x9c\x46\x8b\x96\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -787,12 +787,12 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 38211, mode: os.FileMode(420), modTime: time.Unix(1439618768, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 38539, mode: os.FileMode(420), modTime: time.Unix(1439936510, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_esEsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\xcd\x8e\x1c\x47\x92\x27\x7e\x27\xc0\x77\x08\x69\x40\x48\x02\xc8\x24\xba\x1b\xff\xff\x2e\x04\x26\xb5\xc5\x62\x49\xe4\x2e\x3f\x6a\x58\x45\x0d\x66\x05\x21\x15\x99\xe1\x95\x15\x62\x64\x44\x76\x78\x44\x15\x93\x83\x39\xec\x6b\xec\x4d\x47\x1d\x04\xec\xa0\x6f\x7d\x69\x40\xf5\x62\x6b\x3f\x33\xf3\xaf\x88\xc8\x2c\x4a\xdd\xb3\x07\xb2\x32\xdc\xcd\xbf\xcc\xdd\xcc\xcd\xcc\xcd\xcd\xf3\xed\x76\x51\x18\xbb\x9a\xbf\xad\x33\x6b\xda\xab\x72\x55\x36\x59\x61\xb2\x6f\xca\x2e\xcb\xfb\xae\xc9\xf2\xaa\xf9\x31\x2f\x9a\x6c\x97\xd9\xb2\xce\x56\xcd\x66\x5b\x95\xab\x9c\xa0\x6a\x63\xef\xde\xb9\x7b\xe7\xb2\xd9\x98\xf9\xf3\x9a\x12\xee\xde\x29\x72\x7b\xb9\x6c\xf2\xb6\x98\x9f\xe6\xb5\xa9\x50\xcf\xaa\xa9\xbb\xb6\xa9\xee\xde\x31\xef\xb7\x55\xd3\x9a\xf9\x09\xff\xcd\x5b\x2a\x69\xaa\xed\xfc\x68\xd7\x17\xf9\xdd\x3b\xb6\x5c\xd7\x8b\xb2\xa6\x8a\xa8\x03\x79\x4b\x5d\xb1\xe5\xcd\x5f\x6a\xca\x68\xe8\xbb\x5a\x24\xf9\xdc\x41\x85\xc8\x04\xe0\xcb\xec\x8f\xbf\xfe\x9f\x6c\x9b\xdb\x26\x7b\x64\x37\x79\x55\x3d\x5e\xf5\xa6\xee\x72\x40\xe6\x0c\x52\x34\x8f\x1e\x4a\x8e\xb6\xd6\xf4\xdd\xfc\xd8\xb4\x6d\xd2\x1a\x32\xfa\xed\xfc\xac\xb7\xab\xb6\xdc\xae\x24\xb5\x35\xeb\xd2\x76\xa6\x9d\xbf\xe1\x1f\x2d\x8d\xf4\xda\x2c\x6d\xd9\x19\x1a\xe7\xba\xac\xf3\xec\x5f\xcc\xf2\xee\x9d\x2b\xd3\x5a\x42\xcb\xfc\x5b\xfc\xe5\x82\xdb\x7c\x4d\x20\x37\x3f\x01\xe6\xee\x9d\xce\x10\xee\x72\x14\xaa\xf2\xba\x2b\xab\x8a\xd2\xe8\xd7\xba\x07\xd4\x0b\x83\x1f\x3f\x9a\xbb\x77\x56\xad\x21\xa0\x45\x6d\xae\xe7\xc7\xf4\xb3\xcd\xea\xde\x5c\x35\xb3\xd9\xec\xee\x9d\x9e\x66\x68\xb1\x6d\x9b\x8b\xb2\x32\x8b\xbc\x2e\x16\x1b\x60\xf4\xd4\xb4\x94\x80\x91\xf6\xb6\xcf\xdb\x12\x73\xb5\xb9\xf9\xc9\xca\x70\x4c\x41\x78\x5b\xe4\x76\xfe\xbc\x20\x84\x94\x17\x34\x79\x34\x9b\x34\x8f\x0d\x66\x0f\x35\xd6\x39\xcd\xe0\xab\x66\xb3\x6c\x4d\x54\x09\xcd\xd8\x26\x2f\xab\xf9\x71\xd3\xb6\xa6\xc9\x4c\x65\x56\x5d\x4b\xa3\x2a\x57\x0d\x06\x66\xed\x75\x43\xf3\x7c\x8c\xe9\xcd\xad\xb9\xf9\x8f\x1c\x78\x5a\x74\xbb\x2d\x56\xc3\xba\x35\x96\x2b\xe3\xbe\xd3\x98\xf2\x6d\xb7\xba\xcc\xe7\xc7\xf2\x17\x2d\xb7\x66\xdb\x10\x0a\x9b\x76\x47\x68\xd5\x9f\x68\xb5\x69\xd7\x79\x5d\x7e\xc8\x3b\xa0\xf2\xb5\x7e\xe8\x44\x6c\xca\xb6\x6d\xda\xf9\x89\xdd\x9a\x1f\x09\x94\x50\xb4\x40\x35\xf3\x57\x68\x25\x6b\xe3\x6a\x90\xb7\x29\xd7\x2d\xf0\x8d\xec\x3c\x7b\x89\x2f\xad\x08\xb9\x17\x4d\xfb\x4e\x4b\x7e\x4d\x3f\xa9\xb7\x55\xf6\x66\x58\x05\xf5\x46\x8b\x37\x83\xae\xe4\x35\x4d\x1b\xe7\x1f\x15\x9b\xb2\xc6\xba\xa0\xb9\x0a\x50\x42\x1f\x39\xf2\x16\x5b\x50\x43\xa0\x89\xdc\x17\xd0\xca\xf2\xd5\xaa\xe9\xeb\x6e\x61\x4d\xd7\x95\xf5\xda\x02\xad\x17\xe5\xba\x6f\xb5\x1e\x14\xaa\xf2\x4c\x96\x34\x4d\xeb\x1e\xb0\xbb\x77\x76\x4d\xef\x17\xc8\xfc\xbc\xcf\xb6\xbc\x34\x34\xdd\x17\xa3\x8c\x55\x28\xc9\x3d\xe0\xd1\xda\xc5\x85\x31\xc5\xdc\x60\x4a\x0b\x26\x9d\xba\xe9\x40\x8f\x54\xf3\xb6\xaf\x2a\x42\xf6\x9f\x7b\x63\x3b\x3b\x3f\x6b\x88\x09\x94\x5d\x5f\x48\xdf\x5a\xd3\x95\xa0\x8a\xd2\x5a\xca\x9f\x9f\xf6\xcb\x94\x47\xac\xf2\x7a\x45\x08\x38\xe6\x3f\x20\xfd\xbb\x77\xbe\xb3\xb4\xb4\x57\x97\xdf\x63\x34\xf8\x31\x7f\x42\x24\x97\xb7\xbc\xcc\xf7\x2d\x0d\x2c\xd6\xf9\x5b\xb7\x3c\xb9\x31\xe6\x3c\xb4\xb0\xa9\x93\xd4\x4c\x53\x98\xf9\xf1\xcd\x5f\x8a\x72\xcd\x8b\xfb\xbb\xb2\xb6\x1d\x51\x3c\x35\xa2\xbf\x08\x1c\x7f\xdd\xa8\xbb\xb2\xab\x40\xc3\xb6\x71\x28\x2e\xa3\xfc\x6c\xdb\xb4\xd9\xb6\x2d\x37\xa6\xcd\xb3\x2b\xf3\x01\x1d\xfb\x73\x4f\x54\xbf\x28\x96\xc2\x33\xbf\x69\xd6\x36\xab\xcd\x8a\xd8\x07\xb1\x9a\x97\xbb\xb3\x7f\x7e\x71\x3f\x3b\x6d\x6c\x47\xeb\x9f\x7e\x67\x4d\x46\xff\x53\x81\x3f\xd1\xa0\xa8\x8c\x34\x77\x9c\xa0\x1e\xed\x2e\x73\x21\x96\x22\xef\x1a\x2b\x90\x20\xa3\xf3\x72\xdb\x4c\x64\x5f\x52\xfd\xf3\x23\xaa\xa3\x6b\x65\x14\x29\x5a\xa6\x49\x93\xea\x1c\x90\x39\x0d\x76\xdc\x2e\x58\x32\x55\x76\x4a\x03\xbf\xc8\xaf\xe8\xff\x9e\xf8\x54\xb9\x32\x44\xfe\xd9\xa6\xa1\x69\xc8\x9e\xbf\x7a\xf5\xfa\xe9\x13\xac\x1f\x5e\x91\xa3\xb1\xd0\x1c\xe6\x2b\xe2\x95\xb4\x30\xfa\xee\xe2\xbf\x2e\xd6\xa6\x26\xf4\x55\x8b\x55\x49\xdc\xb9\x55\x24\x11\x3a\xac\xad\x88\x7b\xd1\x7c\xbd\x6c\x88\x1d\x9d\x9d\xbd\x40\xcf\xbb\xcb\xf9\x9b\x9e\x57\xf8\x9f\x2b\xe0\x59\xbb\x83\x34\x26\x4f\x2c\x94\xf2\xaa\x99\xea\x3e\x7e\x04\x64\x13\x5b\x5f\x10\xb7\xed\x76\x0b\xad\x89\xeb\x7e\x91\x67\xad\x54\x35\x2e\xae\x65\x69\xc5\x67\xdb\xde\x50\x32\xad\x73\xa2\xe7\xab\x7c\x75\xf3\x4b\x3e\xc3\x6a\x72\x23\x99\x9c\xc5\x6f\x24\x93\x77\x4e\x5a\x14\x44\xd2\xb4\xaf\x8e\x31\x7e\xa4\x9b\xa7\x50\xbd\x82\x04\xac\xd7\x59\xfe\xe7\xfe\xe6\x17\x60\xbb\xf6\xc5\xba\x3e\xe5\x3d\xf7\xb3\x5f\x7f\xca\xab\x0e\x5c\x7e\x45\xc4\xd4\x7c\x22\x04\xb3\xf0\xe8\x63\x54\x45\xcc\x10\x95\xbc\xc9\xcb\x0f\xd9\xe7\x6f\x9a\xa6\xfb\x22\x02\x77\x2d\x9f\xd3\x1c\xd8\xac\xa2\x7f\x51\x31\x7c\x60\xce\xad\x13\x07\x08\x5d\xb4\x45\xb5\x45\xde\xde\xfc\x54\x67\xa6\x06\x8a\xa8\x87\x65\x4b\x3b\x03\x0a\x80\x72\x7b\xda\x3e\xb1\x1c\x8f\x96\x6d\xd9\x62\x1c\x7e\x37\x71\x59\xae\xcd\x13\x9f\x17\x28\xa8\x03\x16\x33\xe2\x86\x86\xf6\xf1\x1c\x08\xe3\xf1\xbc\xc9\x6f\x7e\xf9\x30\xe4\xcf\x34\x7c\xf3\xa3\x59\xf5\x98\x25\xa0\x1c\x24\xd6\xd0\x8e\x55\xcf\x9f\x36\x60\xaf\x8d\xfb\xf6\x0d\x5a\x48\x33\x17\xd4\xd9\x9c\xeb\xb6\xd9\xdb\x37\x2f\xac\xac\xca\x55\xd5\xd4\x54\x0f\x08\xfe\xec\xec\x19\x55\x75\xd9\x75\xdb\x05\x7d\x76\xc4\xcc\x4c\x4b\x05\x9f\x9d\x9f\x9f\x46\xc9\x7e\xce\x24\x17\xc8\xa8\x32\x62\x8e\x84\x93\x55\x4f\x3b\x1c\xa1\x08\xdd\xcf\xc3\x7c\xcf\x64\xc2\xfb\xb6\x9a\x53\xbb\xba\x1e\xf2\xe1\x7a\xa0\xec\xdf\xd8\x5f\x74\xec\x21\xfe\x3b\x23\x8c\x10\x64\xb5\xee\x6b\x9a\xb3\x15\x6f\xdb\x36\xd9\xb7\x2d\xaf\xe3\x66\x8b\xad\x75\xdf\x42\x7e\xbd\x5d\x71\xae\x6e\xff\xfb\x78\x56\x95\x9d\x45\xc2\xa2\xc8\x08\x44\xb6\x1b\x42\x0f\xf3\xa7\xb3\x97\xe7\xa7\xd9\x33\xfa\xa5\x89\x17\x6d\xb3\x99\x3f\x35\xb6\x30\x51\x82\xa7\x6f\xb3\x21\xda\xab\xb1\x98\xa8\x62\x6e\xf7\x7e\xf6\xe6\xeb\xe3\xec\xff\xfb\xd3\x1f\xff\x38\xcb\x4e\x99\x1e\x69\xe9\x90\xac\x57\x11\xbd\x00\xb0\x27\xa1\x8b\x57\x5e\x60\x3c\x63\x39\xe5\x3e\x31\x60\x21\x63\x99\x1f\xda\xf1\x37\x44\xec\xd9\xa7\x42\x93\x9f\x66\x8f\xb8\xad\xff\x66\xde\xe7\x24\x99\x99\x19\x09\x45\x8f\x67\xd8\xda\x69\xf7\x6c\x65\x1d\xa7\x5d\x53\x59\xe8\x24\x91\x85\x14\x7c\x8a\xef\xea\x9a\xd5\x2a\x82\x20\xb9\x60\xbe\xd9\x6e\xe6\xcf\xf2\x25\xf1\x57\xf4\x90\x16\xc3\xb1\x24\x2a\x8e\xa5\xcb\x41\xe2\xe4\xd9\xc0\x7e\x7c\xb1\x4b\x8a\xd9\xec\x55\x23\x62\x5d\x90\x15\xfc\x7c\xd0\x1c\x19\x6c\xfc\x98\x2a\xb3\x77\xff\xe1\xa9\x2c\x68\x2d\xed\xb2\xd7\xd4\x96\xf5\x73\x4b\x7c\xac\xb9\xb8\xa8\xca\xda\x08\xaf\x3e\x5a\x75\xe5\x55\xde\xca\x6e\x00\xb6\x4d\x1a\x01\x55\x67\xde\xcb\x02\x8e\x61\x89\x4a\xb6\x24\x48\xd3\x94\xe7\xa1\xd0\xf1\xd3\x57\xb4\xc3\xae\xaa\xde\x3a\x92\xe1\x6a\xa8\x0b\x24\xb3\x14\xfd\x4a\xf9\x5b\x17\xb1\xa3\x55\xdf\x62\x77\xb6\x46\xb4\x13\x66\x3d\x55\xb3\xca\x2b\x5e\x07\x20\xfa\xd2\xe6\x4b\x12\x87\x05\xb7\xad\xc8\x8d\x51\xb3\x47\xa4\xc4\x3c\x08\x68\x9c\x02\x1f\xf7\x15\x9a\xcf\x03\x05\x69\x78\x16\x95\x57\xdd\xc7\x1a\xc4\x2a\x8b\x84\x38\x60\x6e\xdb\x14\x20\xf9\x15\x0b\xec\x22\xa7\x59\x16\x7e\x73\x3b\x53\xb9\x81\xa4\x63\xd5\x62\x16\x57\x25\x09\xf7\x11\x32\x83\x56\x73\xa6\x5a\x4d\x43\x12\xd4\x3a\x17\x46\xc7\x14\x4f\x4a\x45\xa6\x9a\x84\x9d\xae\x50\x47\x71\x86\xfe\x01\x77\xda\x63\x20\x72\x9d\x03\xa1\xbc\xaf\xd5\x24\xc9\x50\x77\xb5\xa6\xfb\x0c\x79\x55\x82\xfb\x12\x3a\x6d\x96\xd7\x58\xd6\x1b\x60\x1c\xf5\xc8\xb0\xa4\x0c\x96\x9a\x2b\xc7\xec\xab\xa1\x9f\x0f\x1d\x92\x66\x4e\xd6\x55\x29\x53\x04\xa4\x57\x20\x40\xe1\xef\xcc\xe9\x05\x3f\x20\xde\x48\x3d\x4b\x10\x99\x5f\x92\x72\x98\x6d\x4a\xbb\x21\x5c\x07\xbc\x33\x6f\x25\x2a\x5a\xe7\xd9\xf3\xa7\xf3\x3f\x10\x7e\xe8\x83\x51\x4e\x02\xda\x15\x11\xe0\xba\x94\x8d\x6a\x50\x1b\xcd\x23\xa9\x42\x24\xc4\xe6\x6e\xbd\x48\x2f\xf7\x91\x02\xc8\xd0\xf7\xec\x28\xae\xcb\x95\xdc\xa7\x2d\x39\x49\x7f\x4a\xfa\x52\x72\x4f\x72\x99\xd4\xdb\x2c\x81\x93\x3a\x0e\xe8\x5d\x2a\xc6\x2e\xd6\xb4\xe1\x39\x59\xb6\x55\x89\x83\xa6\xaf\x5b\xac\xcb\x6e\x71\x01\x86\x54\xcc\xbf\x26\x40\xa8\xef\xa0\xad\xa5\xac\x33\x62\x70\xa4\x35\x36\xd9\x67\x04\xf6\xd9\x97\xd9\xbd\x2b\x27\x69\xfd\x09\x9c\x65\x91\x5f\x51\x49\x50\x07\x34\x84\x2b\xd5\x62\x21\x11\xd9\x06\x7b\x5e\xee\x84\xa4\xfb\xbc\xf1\x88\x80\x88\x69\xce\x49\x3c\x41\xf5\x4b\x5a\x1a\x98\x2b\x52\x3f\xa0\x93\x23\x8f\x30\x74\x8f\x56\xd9\xab\xd7\xc0\xac\xaf\x92\x52\xd7\xcd\xb2\x2f\xab\x62\x86\x31\x5d\xe5\x55\x59\x40\xa8\xd6\xb5\x03\x41\x6d\x2c\x59\x8e\x44\xb6\x9a\x17\x17\xf3\x7d\xda\x23\x65\x38\xae\xb2\x20\x11\xa5\x42\x5f\xeb\x45\x89\x58\x40\xa2\x6a\xa8\xe0\xcd\x4f\x54\x52\xeb\xf1\xd2\x0a\xf0\x42\x9b\x06\x29\x28\x27\xe9\x62\x24\x6c\xd3\xea\x53\x11\x04\x48\x4d\xb7\x73\xed\x5d\xb4\x82\x89\xb7\xf4\x30\x54\xdc\xb3\xd9\x83\xc7\xf4\x3f\xe1\x3e\xbf\x32\xb2\x15\xac\xdd\xa4\x9d\x40\xc1\xc5\xa4\xa9\xa4\x35\x16\xb2\xd3\x71\x26\x34\xb7\x17\x6f\x53\xc4\xa6\xbb\xcc\x68\xe4\x6e\x89\xd9\x1e\x62\x98\x9d\x3f\x29\x4d\x7d\x65\x6a\xda\x1f\x3e\xc9\x48\x24\xc9\xc1\x1b\x48\xdf\x22\x76\xc1\x4c\x85\xea\x04\x36\x2e\xf3\x1d\x71\x05\x5a\x0b\xc4\x14\x08\x17\x58\x91\xf7\x69\x83\xbe\x2a\x6f\x7e\x6e\x3b\x43\xdb\x27\x09\xab\x24\xd9\xd2\xc4\x19\x16\x42\xbe\x83\xd9\x88\xf4\xb2\x5e\x04\xe0\xa6\x2a\x68\xb3\x1d\x51\x55\xd6\x4c\x6d\xeb\x41\xc7\x71\x05\x13\x22\xb2\xd7\x25\x4d\xd7\xc2\xdb\xa2\x80\xe1\xce\xbc\xef\x48\xfd\xdc\x2c\x4b\x47\x08\x9c\x24\xac\xfd\xa9\x83\xa4\x4d\x76\xc7\x2b\xc7\xce\x5f\x96\x36\x16\x36\x2d\x68\xb8\x22\xda\x68\xb0\x63\x5c\x19\x85\x8a\x21\x88\x92\x7d\x3e\xe0\xa9\x2a\x12\xdb\xa5\xa6\xd7\x03\xab\x00\xe5\x89\x29\x43\xb2\x5f\xca\x6f\xc6\x8b\x9a\xc9\xbe\x57\x2d\x78\x9e\x76\x82\x00\x88\xa5\x41\x6b\x0e\x56\xa2\x85\x5a\x0f\xd4\x5a\x04\xe6\x2a\x16\x8b\x63\x35\x17\x78\xa9\xe3\xd2\x6c\x21\xa9\x6c\xec\x7a\xfe\xeb\xdf\xfe\x95\xc4\x6d\x9a\x5a\xe8\x69\x9e\x1d\x7f\x45\xaa\x85\x58\xe0\x9c\x49\xec\x13\x6f\x81\xfb\x6d\xb5\x9c\xd4\xd5\xcd\x4f\x1f\x88\x3b\x7d\x32\xdc\x72\xc5\x82\x45\xba\xd9\xfc\x05\x31\x16\x98\xa4\x68\x45\x31\xab\xf7\xfb\xad\x90\x16\x71\x8f\x4b\x95\x73\x8a\x86\xa4\x40\xc7\x72\xee\xf3\xec\xe5\x10\x8b\xa1\x85\x8e\xb6\x62\x4c\x29\x61\x8c\xf5\x91\x51\xd3\xcc\x5a\xa3\x86\x67\xd9\x8b\x48\x58\x66\xd1\x29\x16\xc2\xa0\x39\x25\xbd\xaa\xd3\x6e\xc9\xe6\xbe\x31\x9b\x25\xea\x36\x34\x5b\xb4\xca\x7f\x26\xc2\xdd\x90\xb4\x47\xe2\xe6\x9a\xb8\x87\x67\xfa\xcf\x4c\xd6\x54\x24\x68\xc1\xfe\xb6\x29\xc5\x32\xea\x16\x2d\x60\x4d\x04\xfb\xeb\xdf\x9e\x11\x3d\x79\xf0\xae\x8f\xc1\xbf\xf2\x86\x4a\x62\x4f\xd7\x04\xfb\x4a\x15\xa8\x74\x16\xa8\xe7\x37\xbf\xb0\x8c\x63\x64\x5b\x9d\xf9\x9d\x48\xc4\x1e\x16\x29\x81\x09\x37\x23\x6f\x6b\x31\xd8\x39\xaa\x13\xfb\x6d\x84\x0f\x0b\x4a\x27\xf2\xbf\x82\x3d\x95\xb4\x8d\x47\xcb\xc7\xf7\xec\xa3\x87\xcb\xc7\x83\xf9\xd9\x6c\xdb\xde\x2c\x73\xf4\x7b\x49\xcc\xd1\xfc\xc8\xcc\xc7\x19\x96\x4c\xcd\xc2\x04\x8d\xa1\x2f\x0d\x8b\x1d\xf7\x8a\x0c\x1d\x74\xda\x0d\x8c\xcc\xa6\x13\x52\xa5\xae\xb1\x3a\xc8\x66\x26\x2f\x6b\x38\xc1\x47\xf6\xca\x74\xcd\xf2\xb2\x60\x8c\x4d\xb0\x0e\x96\xf0\xcc\x82\x0d\x62\x8e\x70\x44\x12\xe3\x22\x9e\x64\x18\x2d\x55\x49\xa2\xfb\xf4\x72\xc5\x62\x60\x21\x09\x76\x30\xe6\xff\xbc\x82\x09\x35\x37\xbf\x08\x5b\x41\xcf\x98\xe5\x72\xed\x2b\xdf\xb3\x82\xfa\x6c\x4b\xe0\xe1\x02\xe2\x2d\xdb\xae\x12\xf4\x19\xbb\x85\xc5\xe9\x4f\xb4\x48\x6a\x92\x5f\xb0\xc6\x2e\x73\xbb\xe8\x6b\x9d\x0b\x53\xc8\x32\x7e\x46\x0c\x87\x77\xd7\xe9\xb1\x66\x9f\xfb\xd9\xf9\x42\x76\x23\x50\x95\x9b\x4f\x90\xd4\x59\x89\x74\xaa\x1b\x72\x76\xb9\x04\xe3\xee\xeb\xbd\x73\x1f\xf4\x74\xcb\x2c\x1f\x62\x30\x2d\x04\xb3\x11\xc2\xe1\x85\x13\x49\x06\xf7\xa9\xe2\x0f\xa4\xa8\x96\xab\x77\x2a\xeb\xfb\xf9\xce\x96\x4d\x27\x1a\x31\xe3\xd9\x0d\xc7\x83\x8b\x11\x84\x97\x02\x63\x14\x4c\x7b\xcf\x18\x53\xfc\x3a\xa5\x95\x85\x19\xcb\x8c\xab\x33\x50\xa4\x3f\x42\x59\x54\x14\xe5\xee\xb8\x00\x4a\x77\x4d\x9b\x6a\xa0\x28\x2c\x3b\xf4\x16\x9d\xee\x5c\x9f\xd7\x39\x77\x3a\xee\xf3\xe7\xad\xf9\x42\x7b\xcd\x5b\x0d\x37\xc5\x39\xbc\x44\xa8\x0d\x62\x49\x2b\x5a\x5a\x54\xa9\xb3\x65\xad\x52\x3b\xba\x8d\x79\xc1\x1b\x57\x04\x1a\x70\x9f\x82\x3a\x39\x80\x4d\x9f\xc9\x0a\x05\xa4\x98\x42\xc7\x53\x09\x1a\x7e\xbf\x2d\xc1\x2f\x33\x1d\x78\xc6\xf5\x34\xb3\x61\xeb\x4e\x47\xe7\x91\x1e\x0f\x46\xda\x1e\xe8\x99\xaf\xa0\x6b\x9a\x85\xbd\x84\x29\x85\xc4\x93\xaa\xa9\xd7\xb0\x1b\x8f\x87\x1d\x2c\x6f\xd0\xf4\x49\x5a\x87\x1c\x94\xfd\xff\x22\x2d\x90\x9a\x98\xc3\x8c\xbb\x33\x76\x7e\x76\xf3\xcb\xdd\x3b\x75\x43\xd2\x02\x6d\xa4\x4d\x01\x7d\xf8\xa4\x80\x32\xcc\x90\xd0\xf1\x09\xf0\x2d\x55\xf2\x6a\x8f\xa4\x8e\x2d\x35\xcd\xab\xd2\xb3\x83\x13\x9e\xdb\xa7\xb7\xad\x98\xbb\x77\x4e\x27\xa5\xfd\x37\x86\xcd\xb7\xdf\xf6\xa6\xba\xc2\x2a\x32\x38\x4b\x5a\x96\xed\x68\x9e\xcf\xce\x9e\x9d\xb3\x1e\x92\xd8\x08\x8f\x2b\x12\x0b\x59\x17\x3c\x7b\x76\xf7\xce\xb3\xae\xdb\xda\xb7\x2d\x2d\x35\x36\xf1\xbc\x7d\xf3\x02\xcd\xee\xaa\x26\x2f\xde\x06\x53\x12\x8b\xe0\x77\xef\x9c\x9b\x7c\x33\x1c\x19\x34\xc5\x2d\xf5\x95\xf4\xe0\xcb\x01\x46\xa0\x1d\xb5\xe1\x48\x83\xd5\x9d\x93\x7d\xca\x87\x18\x60\x53\x8d\x28\x28\xa2\x86\x0f\x66\x7e\x98\x34\x9f\x36\xb3\x1f\x88\xef\x56\xdb\xcb\x9c\x85\x32\x0f\x0b\xd5\x33\x32\x17\x17\x66\x69\xf8\x0c\x32\x3b\xaa\x2e\xf2\xba\xdf\x98\x16\x36\x2b\x5a\xa0\x28\xf5\xf9\x83\xc5\x17\x83\x7a\x0a\xa2\x72\x57\x17\x0a\x73\x59\x30\x30\xad\x93\xc4\x68\xae\x87\x36\x64\x18\x8d\x45\xca\x25\x16\x45\x20\xc4\x88\x30\xaf\x6c\x46\x6d\x68\x8b\xfa\x91\xb8\x25\x35\x90\x31\x03\xc4\xde\x22\x46\x09\xda\x1c\x7a\xb5\xde\xfd\x80\x3d\xe7\x83\x19\x37\x08\x0b\x6d\xbe\xc9\x6f\xfe\xa3\x21\x5e\x0c\x30\x16\xc8\x47\xa0\x2c\x71\xb2\x75\xb3\xe2\xc5\x6d\xa1\x07\x84\xd1\x73\xc1\xfc\xfd\xa1\x82\x38\xb2\xc3\xb9\xde\x7b\xa2\xef\x71\x61\x61\x7c\xd1\x34\xa8\x48\x36\xc9\xf7\x54\xe0\x47\x39\x18\x1c\xc7\xa5\xb0\xac\x62\xa0\xfa\x1d\x09\x1a\xb5\x02\x8a\x8e\x02\xc5\xaf\xa9\x89\x55\x16\xcd\x97\xfe\x80\x8f\xb6\x64\xd5\xc7\xa0\x2e\x69\xa2\x63\x30\x82\xff\x59\xc4\x1a\x82\x72\xf5\x22\xe5\x05\x23\x8e\x55\x43\x26\x29\xf9\xac\x67\x16\x9f\x5b\x2e\x96\xb4\x41\x2c\xba\xfc\x9d\xa9\xe7\xff\x0a\xae\x06\x31\x0f\x93\xe8\x34\x08\x16\x11\x91\x26\x06\x75\x3d\x5d\x5a\x1c\x2c\x1b\xab\x86\xe3\xf2\x24\xa9\x1d\x2c\x3e\x38\x2a\x9c\xa8\xa1\x23\x32\x3d\xdc\x03\x21\xda\x89\xa2\x32\xcd\x5c\x8c\x50\x50\x7c\xec\xde\xb6\xcb\x9d\xbe\x0a\xcc\x60\x0e\xca\xaa\x32\x6b\x18\x81\x5d\x5f\x30\x61\xf5\x90\x6d\xf0\xa4\x40\xbe\x8f\x09\xd5\x29\x8c\x2c\x99\xf8\x89\xf0\x93\x1a\x96\xc0\xb4\x3e\x17\x66\xd9\x43\x72\x4d\x90\x0c\xe8\x0b\x15\x44\x3a\x3c\x77\x2d\x12\x8e\xa8\xe8\xfa\xe6\xaf\x2c\xd3\x7a\xd5\x13\x5d\xea\xd8\x80\x58\x16\x8d\x37\x08\x88\xa1\xd8\x24\xa3\x8a\x66\x76\xaa\x45\x5a\xe3\x50\xf9\xff\xa1\x4d\x92\xf4\xb8\x2d\x21\xcc\x4e\x37\xe9\x77\xf9\xbf\xa3\xc1\x54\x3b\x70\x7e\x02\x20\x2e\x5e\x51\xb1\xe5\xa2\xac\x0b\x71\x00\x00\x4d\xf2\x72\x9b\xc1\x09\xc1\x76\x50\x56\x65\xfc\x43\x43\x07\xc9\xfc\x25\x58\x50\x07\xf9\x85\xa4\x16\x1c\x3c\x88\x65\xe3\xe6\xaf\x15\x84\x0d\x92\x53\x49\x01\x52\x3b\xa9\xae\x1b\x31\xe9\xba\x81\x93\x9a\xf5\x14\xbc\x8c\x5b\xa4\x8d\xb0\x81\x3e\x95\x22\x26\x88\x32\x96\x58\xfb\x3b\xb3\x4b\xa5\x19\x36\x42\x6d\x78\xc3\xd8\xe6\x2b\xb1\x72\x5f\xd1\x06\x01\xbb\xb7\x08\x87\xbc\x6b\xd2\x96\xf9\x25\x9b\x56\x88\x0c\xa1\xf7\x31\xc8\xce\x57\x29\xe7\xb5\x6e\x8b\xba\xa2\xe1\x8c\xcb\xdf\xc7\xa1\x39\xe9\x36\xb6\xdf\xb0\x1d\x54\x6c\x3d\x9e\x1b\x66\x07\xe7\x09\x16\x54\x7b\xf3\x0b\xcc\x8c\xb4\xdd\xa6\x46\x1d\xd9\x70\x31\xa2\x55\x6c\xc9\xa1\x7d\x05\xbe\x20\xc0\xbd\x38\x33\x9c\x3b\x35\x04\xb5\x91\x3c\x10\xf0\xc4\x7c\xb1\xaf\x41\x46\xf0\xef\x48\x0e\xeb\xee\x3b\x3d\x1c\xdd\x58\x36\x70\x6b\xa9\x78\xf3\xa4\x65\x51\xdb\x0b\xc2\x03\x7f\xcb\x71\x36\x6b\x50\xdc\x2a\x14\x0b\xf8\x30\x24\x8d\x86\xf9\x14\x76\x26\xad\xa5\xae\x0d\x49\x7b\x39\x94\x3c\x9c\x48\x41\xad\x6b\xfc\x32\x61\x8b\xb1\x6f\x10\x0b\x6c\x30\x54\xe6\x5e\x29\xb7\xc4\xd4\xf6\x6e\x0f\xf8\x98\xb1\xfa\xc6\x0e\x8e\x36\xc6\x32\x1f\xec\x70\xd3\xe9\x7c\x24\x2c\x92\x15\x19\x77\x98\xe6\x4c\xe9\xf7\x79\x4b\x26\x04\x35\xb4\xb0\xd0\xc0\x2e\x13\xb3\x79\x11\xf5\x43\x4e\x8b\x69\xbe\xa0\xd0\x2f\xa9\x3f\xab\xcb\x88\x16\x61\x8e\x24\x71\x81\xad\x98\xd4\x5e\x59\x47\xa4\xc8\x02\x2c\x7a\x07\xfb\xce\x65\x5e\xaf\x0d\x4c\xb2\x54\x93\x9a\xae\xb0\x4e\x25\x01\x9d\x5c\xb7\xf2\x1b\xc7\x56\x1e\x7e\xd5\xdb\xae\xd9\x1c\x2a\x36\x32\x28\xde\xbd\xf3\x23\xed\xac\x8b\xa6\x76\xee\x4d\x60\x0f\xa6\x8e\xdc\x30\x4a\x33\xb4\x43\xb1\xce\x55\x76\x3b\x51\x9d\x61\xa3\xc8\xb6\x37\x7f\x65\xaf\x0f\xd8\x32\xaa\xaa\xb9\x36\x2d\x89\xea\x86\x04\x2d\x92\x14\x61\xf3\x82\x3c\x48\x8c\x0f\xa7\x2c\x5d\x0e\x16\x64\x1d\x24\x2c\x97\x67\xa2\x1b\x16\xec\xb7\x01\x19\x7e\xc6\x9b\x0a\x74\x91\xf6\x0a\x24\x14\x78\xd2\x67\xf7\xec\x67\x3a\x55\x92\x9d\xb3\x50\x11\x0a\x6d\xf3\x8e\x98\x6c\x2d\x5a\x20\x77\x85\xcb\x53\x72\xab\x5b\x64\x3d\xda\x98\xb8\x52\xaf\x24\x13\x07\x20\xc5\x5f\x84\x15\x76\x55\x11\xc7\x19\x9a\x16\xe7\x5b\x73\xaa\x8e\x35\xd3\xf6\x7e\xe5\x37\x76\xce\xb2\xbc\x15\x49\x5e\xec\x68\x84\x48\x38\xcd\x9c\xf1\x87\x11\x47\x01\xa0\x0d\x06\x19\x3b\x3f\x4a\x9c\xeb\xd8\x7e\x38\xb4\x1d\x12\x93\x35\x50\x6a\x1d\x2b\x76\x56\x3e\x42\xf4\xfc\xed\xdb\xe7\x4f\xd1\xe3\x2d\x3b\xe0\x2c\xd2\xce\x66\xa7\x32\x43\x8d\x1f\x85\x9c\xd1\x9c\x4f\x6b\xd6\xc6\xba\x29\x65\xdf\x3f\x83\xb3\x96\xde\x62\x6d\xb0\xea\xd7\x91\x46\x66\xd9\x8c\x53\xa7\xc7\x8f\xad\xa9\xf8\x67\x8e\x7c\x08\x30\xab\x3e\xaf\x68\x53\x30\xee\x5c\x8c\x4d\xc1\x2e\xa9\x81\xa9\x43\x95\x52\x03\x59\x31\x07\x09\x5f\xdd\xfc\xec\x1c\x72\xae\xcd\x12\x93\x0b\xef\xa3\xf8\xe4\xe5\x58\x4c\x44\xb1\x27\x9e\x1c\x4d\x89\x2b\x1e\x4e\x08\xf9\x20\xf0\x05\x8e\x0a\x83\x8a\xd3\x6f\x61\x81\xf6\x88\x39\x62\x93\x3c\x65\xb7\x99\x9b\xd0\x14\xc2\x5b\xc1\xbd\x2f\x95\x9a\xc0\x72\x57\x72\xb8\x19\xcf\x3c\x29\xee\x77\xad\xcb\x58\x6d\xe5\x7d\x78\x04\x2d\x73\x12\xcb\x62\xbe\x14\x35\x6b\xb1\xf9\x87\xd2\xf7\xb3\x5f\xff\xc6\x78\xe4\x73\x10\xe2\x64\x35\x41\x7e\x95\x09\x6f\x53\x89\x50\x3c\x08\x30\x7b\x79\x74\xb0\x6a\xea\x8a\xb7\xd1\x30\x5b\x8d\xf5\x76\x33\x67\xed\xd0\x2a\xf9\x9c\x4c\xea\x9e\x74\xe5\x32\xb2\xd7\xa6\xac\xc7\x9d\x6e\x1e\x09\xe3\x21\xf4\x5a\xb8\x15\x30\xc6\xa6\x8b\x38\x4b\x83\x5a\xe3\x0c\xdc\x1f\x78\xa9\x15\xe1\x5c\x16\x5d\x17\x68\x61\xba\xdf\x28\x0f\x04\x1a\x9b\xc6\xaa\x3d\x5c\x7a\x70\x86\xe5\xcc\x63\x53\xa3\xa6\x03\xd5\x29\x0e\x1d\x75\x6b\x60\xc2\xcb\xe1\xc8\x97\x81\xc6\x4d\x72\x9b\xf6\x95\x79\xcb\xa2\xdc\xc0\x75\xf3\x24\x38\x26\x39\xcb\x68\xd0\xa4\x18\x04\xa6\xae\xba\x19\x0c\x37\x9c\xb6\xbd\xc2\xdc\xee\xd8\xda\x74\xf3\xd7\xda\xf1\xea\x6d\x8c\x32\x92\xf1\xed\xb6\xa9\x4b\x02\x17\x61\xc8\xa8\x10\xe3\x6c\xd1\xed\x6c\x30\x30\xbf\x74\x27\x0f\x85\xc2\x96\x70\xfb\x7a\xf6\x6b\x34\x30\x3b\x3d\x49\x49\xac\x19\x4d\x55\x4c\x3b\x41\x48\xdd\xe2\x4f\xe9\x01\xe4\x88\x62\xda\x62\x14\x34\x88\x71\x35\x41\x69\xc8\x67\xa3\x8e\x0d\xc6\xec\x8b\xca\x18\x03\xdd\x0c\x86\x98\x91\xee\xc5\xd8\x84\x90\x9d\xf8\x1f\x3b\x92\xa8\x87\xbd\x65\xb4\xb0\x32\x66\x9d\xa1\xc8\x39\x5f\x4c\x5a\x8a\xd4\x5d\x54\x4b\x7c\x83\x9d\x9f\x3d\x78\x8a\x8f\x28\x2b\x3a\x9f\xe3\xd5\x93\xca\x1e\x09\x3a\xa4\x1b\x6f\x73\x66\x4f\xec\xb3\xf7\x81\x49\x9e\xe9\x67\x82\x49\xef\x20\x82\x43\x56\x13\xf6\x8b\x34\xe8\xe5\x24\x2e\xe5\xed\x6e\x7e\xea\x6a\xf3\x49\x6a\x67\x7f\x49\xeb\x3c\x57\x4b\xc4\x36\x00\xc9\x96\xa4\x30\x6e\x63\xc2\x69\x76\xc1\xf4\x28\xe9\x47\x84\x35\xea\xbb\xa2\xf2\x56\x95\x55\x8a\xa7\x45\x0f\x83\x2d\x92\xb3\x0d\xa8\x0e\xb7\x9f\x67\x38\x96\x3a\x71\xa2\x91\x98\xb2\x3f\xf2\x44\x63\x4b\xbd\x7a\x4f\x08\xfb\xd8\x03\x8d\xa4\x33\xb3\x78\x2c\xd1\xbe\x93\x8c\x20\xd9\xa2\x95\x74\x19\x3b\x93\x74\xab\xab\xce\x8b\x23\x61\xdd\xc5\x82\x09\x5a\x85\x76\xe4\xd0\xcc\x79\x22\xc4\xc8\x66\x64\xbd\x2e\x52\x95\x56\xce\x91\x57\xbe\xbc\xb7\x97\x0f\xf7\x8f\x4c\x57\x42\x2c\x00\xb0\x92\x05\xa9\xbd\x86\xbb\x36\xec\x47\x1f\x56\xec\x21\x83\xc6\x94\xff\x3f\xc2\x11\x4f\xbd\x7e\x1c\x1f\x6b\xe5\xb8\x25\xf0\xd5\xa3\x87\x9a\x35\x03\xab\xb6\x7d\xd5\x31\x6b\x87\xc8\x9a\xad\xfb\x9b\x5f\x72\xc1\xf6\xa3\x3c\xbb\x6c\xcd\xc5\xfc\xd3\x7b\xf6\xd3\xc7\xe2\xb5\xd9\x46\x1d\x7e\xf4\x30\x7f\x9c\x41\x9d\xac\xfa\x95\x20\x23\x29\x00\x6f\x89\x0a\x47\x34\x98\xb5\x5e\xe9\x52\x8b\xcd\xc2\xa2\x8e\x11\xe6\x75\x47\x2f\xf9\xc5\x16\x1a\x3d\x6d\xc6\x09\xba\xb3\x7a\x33\xbc\x13\x98\x75\x1a\x95\x6a\x59\xe6\x74\xb5\xb0\x40\xc0\xb5\xa4\x06\xa6\x41\x05\x7a\x0c\xca\x4e\x33\xc1\x54\xe4\x2a\x98\xb0\x2e\x4b\xa6\x74\x4b\x98\x2c\x77\xcf\x2f\x05\xbf\xfc\x7e\xfd\x49\xf9\xb4\x1b\xa1\x08\xca\xba\xe4\xf2\x74\xc9\x7d\xe2\x39\x01\x90\x93\xf2\x01\x12\xc5\x8e\xdc\x3a\x85\x6e\xc1\x26\x07\x1e\xd9\x5b\x37\x6e\xa6\x37\x31\x29\xb0\xbb\x35\xc3\xd1\xae\xe9\x75\x0d\xdd\x26\x73\xaf\x72\xe0\xd4\x4a\x1c\xeb\xb8\xcf\x1d\x36\xbf\xb0\x62\xa5\xcf\x8e\xc2\x21\xba\x0a\x9d\x92\x08\xa1\x86\x0b\x9b\xfd\x97\xac\xa0\x65\x63\x63\x5a\x11\x29\x3d\x50\x4a\x2a\xaf\x87\xd5\xee\x0f\xc6\x13\x1a\xc1\xec\x78\x22\x01\x4b\xd8\x57\x7c\x8a\x3c\xae\x6e\x7e\xa9\x57\x7d\xd5\x4c\x52\x48\x5f\x2f\xcb\x9a\xd5\xa7\xab\x12\x50\x2c\x95\x70\x5a\xbc\xeb\x51\x73\xda\x98\x1f\x79\xe1\x4b\x14\x79\xcc\x15\xd8\xcd\xd6\x2e\xba\x06\xd6\xc7\x30\x5e\xe0\xe7\x1c\x69\xbc\xf0\x8f\xc4\x17\xd7\xc9\x22\x50\x40\x84\xa2\xd4\xf7\xc0\x95\x16\x22\x13\x56\xc5\xa5\x49\x03\xe6\x4a\x74\xdf\x92\x0a\xa5\x68\xa1\x56\x15\xf5\x47\x63\xab\xbd\x15\x0f\x35\x90\x2f\xfa\x55\x88\xa1\xfc\xe8\xf4\xb9\xf3\xa8\x9e\x89\xfc\xc0\x95\x4a\x9d\xec\x4d\x2a\x07\xdb\xb1\xcb\xa0\x34\x9b\xa9\x7b\x58\xed\xbc\x89\x95\x05\x83\xc5\xc7\x22\xae\xd4\x57\x0f\xce\x4c\x74\x04\x7e\xa4\xe9\x28\x27\x73\x65\x12\x0c\x48\x06\x1e\x05\x8c\x09\xdf\x19\x3e\xa5\xe4\x6e\x30\xad\xd7\x1e\x11\x03\x02\xca\x8e\x12\x8b\xd2\xaa\xd9\xea\xd1\xa7\x20\x96\x6b\x8b\x2a\x73\xb3\x32\xcb\x88\x4e\x9d\xb3\x9e\xcd\xd8\x36\xe1\x8f\x64\x03\x55\xca\x28\x02\x5d\xc6\xc9\x11\xc5\xbf\x98\xea\x77\x58\x00\x6e\x08\x6a\xef\x18\x8f\x81\x7a\xc2\x7e\x0b\x58\xed\x41\xb6\x06\x2d\xe4\x91\x76\xab\x47\xc8\xb0\xad\x90\x44\x55\xf3\xc2\xd4\x0e\xb9\x63\x79\x47\x20\xd1\xb9\xbc\x42\xb8\x13\xf9\x3c\xd6\x1f\x9d\x01\x86\xc4\x1e\x5f\x02\x23\x60\xaf\x5f\x56\xe9\xf3\x9a\xcd\xa5\x3b\x42\x97\xdb\x64\x5e\xbd\xf6\x9b\x4a\x90\xa9\xd9\xc5\x63\x65\xda\x4f\x82\xe7\xde\xa0\x6b\xc1\x7f\x4f\x3b\xa9\xfa\x65\x0a\xa6\x5e\x86\x31\x08\xbb\x98\xa4\x83\x71\xc0\x11\xe7\x92\xbe\x53\x7f\xe4\xfc\xd0\xa9\xfa\x61\x0c\x8c\xea\x69\xed\x8f\x2d\x16\x30\xdd\x7c\x4f\x22\x39\xdb\x73\x4f\x83\xa1\x35\x3a\xfd\x88\xd7\x7b\x72\xcb\x26\x9c\x8f\xe8\x86\x8c\x05\xb1\x6e\x21\xf4\x58\xdd\x5d\xf4\xd2\x4f\xe4\xfc\x64\x1b\x76\x1c\xe8\x60\x23\xdb\x98\x0d\xd1\xe4\xb2\x62\x39\xd3\x21\x9a\x14\x1b\x9c\xe6\x85\x2d\xfc\xee\x1d\xb8\x9d\xb2\xf2\xb2\x9b\x7f\xab\x3f\x89\xab\x6b\x3a\x92\x23\x4f\x78\x33\xf4\xd7\x7b\x64\xb7\xb4\x08\x89\xc7\xd3\x9a\xfd\xb4\x2f\x29\xbb\xc8\xe0\xd2\xf5\xe9\x63\x92\x5e\xaf\xe4\xb6\x1f\x41\x3c\x66\xc3\xd0\x3b\x31\x37\x3e\xc3\xa4\x86\xcb\x5e\xc9\x99\x2f\x43\xb1\x97\xba\x73\xa3\x72\x80\xec\xb3\xce\xd9\xa3\x8e\x89\x7b\x2b\x6a\xa1\xd1\x66\x2b\xd5\x8a\xe0\xe9\x18\xc6\x23\x76\x4c\xae\x4c\x71\xeb\xb8\x57\x72\xc3\x90\xd2\x71\x17\x70\xfe\xbc\x28\x9b\x4d\x1e\xa5\xb8\xb6\x22\x75\x96\xaa\x23\x59\xfe\x12\x66\xea\xd9\xba\xec\x70\x5c\xd9\x52\x1f\x71\x51\xa7\xb6\x66\xfe\x02\x7f\xf9\x42\x94\xa6\x1c\xae\x02\x1b\x95\x2f\x41\xfa\x4f\x47\xc8\xca\x0b\x5a\x20\x82\x08\x33\x44\x3e\xa4\x8d\xa8\xf8\x9b\x93\xa3\xa7\x2f\x4f\x66\x9b\xc2\xfb\xa4\x31\xae\xa5\x70\xb2\xb0\x0a\x73\x91\x93\xcc\xa6\x36\xd1\xf9\x1b\x98\x41\xb7\x6c\x18\x87\x89\xa2\x71\xd7\xfb\x16\x38\x6d\x68\xaf\x72\xb8\xf5\xc8\x0f\xee\xa3\x64\x7e\x4e\x0c\x90\x05\xeb\x2f\xf6\x1b\x0a\xa7\xcf\x7b\xfe\x01\x76\xc3\xc3\x55\xef\xb1\x1e\xd6\x06\x56\x83\x1e\x77\x73\x8c\x50\x2b\xbb\xa4\xb7\xf1\xad\xc6\xb5\xec\x23\xf1\xa5\xaf\xf8\xb6\x62\x0c\xb0\x97\x26\xd4\x42\x57\xa7\x94\x51\xe5\x4b\xea\x2b\xff\xff\x60\x59\x81\xe5\xf2\x4f\xda\x7b\xca\x9e\x84\x5d\xf1\x3c\xf4\xa4\xe2\x1a\xe2\x19\xe4\x1e\x0c\xa6\x50\x01\x66\xb8\x7f\x42\x9c\xab\x28\x5a\xec\x19\xc7\x72\x1b\x25\x38\x4c\x04\x40\x77\xa8\xc3\x2e\xfb\xe1\x8a\x52\x25\x3e\xfc\xc1\xf7\xf4\x7e\xb0\x82\x67\xc1\x7c\x92\x5e\x2e\x12\x2a\x24\x6c\x32\x99\xca\xef\xcc\x13\x27\x5f\x28\xb1\xa6\xba\x98\x33\x43\x4c\x4f\xde\x86\x33\x76\xdf\x9f\x02\xd9\x8c\x59\x3d\x76\x89\x77\xcc\xef\xb7\xbb\x45\x55\xd6\xef\x88\xc5\x63\xf3\xa5\x14\xb8\x24\xd1\x26\xb9\x40\x96\xa6\xb2\x57\x35\x3c\xa2\xb7\xf9\xd6\xb0\x50\x84\xad\xda\x14\x92\x3d\xdc\x12\x51\x07\xd0\xa5\x33\x37\xd2\x6b\x9c\xfc\xce\x50\x70\x9e\xf4\xca\x4d\xc5\xca\x8c\x1c\x25\xcc\x3f\x5d\x2c\x89\x1f\xbc\xfb\x34\xd2\x55\xf8\xf2\x34\x14\x93\x4f\x20\x0b\x5e\xf3\x49\xfa\x53\x52\x4d\xf9\xb0\xe9\xaa\x5c\x97\x2c\x25\x4a\xfa\xb7\xee\xb3\x87\x83\x6f\x1b\x0c\xc8\x85\x33\xc8\x8b\x8d\xde\x19\xe8\x5b\xc1\xeb\x5c\x18\x17\x4b\xe2\xcc\xb8\x70\xe7\x23\x65\x5e\xb4\xaa\x09\x43\xb0\xf4\x9b\xf9\x37\xac\x86\xbd\xb9\xf9\x69\x5b\xe2\x5a\xb7\x0c\xbc\xbb\x2c\xad\x72\x05\x59\x29\x43\x9e\x92\xb8\xb3\x32\xe7\x23\x71\x0d\xae\xea\x81\x19\xd7\xc3\x2b\xbe\xea\x5d\x5e\x91\xcc\x6c\xd4\x61\x80\x9d\xdb\xf9\xae\x2a\xbc\x4c\xb0\x98\x62\xbe\x7f\x4a\xa9\xca\x8c\x93\xbd\x84\x17\x9d\xdc\xf0\xd9\x57\xe1\xdd\x3b\x11\xcf\x22\xa1\xb1\x35\x66\x7e\xf3\xbf\xda\x25\xee\xb5\xeb\x09\x0f\x6e\x63\x77\xf9\xda\x32\x08\x36\xbe\x93\xae\x24\x11\xa7\x83\xa2\x20\x20\x46\xf3\x70\x36\x44\x70\x51\xbe\x5e\x9b\x0d\x57\x59\x2d\x14\x24\xa2\xd3\x04\x6a\x53\x56\xb0\x89\x92\xec\x44\xa4\xe9\x7e\x62\xe5\x6d\x88\xdb\xe0\x2e\x30\xff\xc5\xce\x51\x19\x12\xa9\x70\x64\x23\x3f\x68\x22\x61\xca\x6e\xf3\x6b\xea\xc0\xb5\x7e\xd1\x94\xf0\x05\xdb\x67\xf4\xf7\xe6\x2f\x2d\x9b\x52\x38\x83\xaf\x92\x00\x16\x37\x4e\x02\x3c\xcb\x1e\x4c\x18\xa7\xee\x17\x5b\x06\xa5\xd5\xd9\xa8\x17\x2e\x23\xb9\xdd\x9b\x8d\xb2\x2f\xa0\xd3\x48\x66\x48\x04\xb7\x6c\xda\x39\xb3\xc9\x90\xba\x21\x56\x03\x73\xeb\x4b\xda\xd2\xe4\xa2\xbc\x66\xc0\xe8\x39\xff\xda\xf0\xbd\x72\x97\x26\x7e\xe1\x47\xd8\x40\xca\xb8\x12\x5a\x60\x7c\xd3\xd2\xba\x0c\x87\x7d\xe4\xa8\x51\x32\xbe\x52\x1c\x32\x67\xe3\x19\x89\x32\x6b\x6c\xd6\x94\xcf\xe4\x61\x26\x41\x56\x34\x1b\xed\x42\x6b\x79\x51\x6e\x98\x91\x4c\x83\xfa\xa9\x0e\x33\x3d\x6c\x2d\x80\xa0\xc5\x69\x30\x69\x31\x40\xba\x46\xa7\xa1\x49\x94\xae\x17\x13\x2d\x13\x97\x5a\xd2\xb6\x35\x1e\x4e\x63\xe1\x89\x3a\x55\x60\x85\xb0\x0a\xc5\xa0\x00\xed\x47\x08\x47\x60\xe6\x47\xf8\xcb\xd6\xb6\x89\xde\x7a\x28\xd7\xd9\x5c\xa1\x87\x08\xf0\x80\x18\xff\x08\x48\xf8\x89\xb2\x8f\x72\x72\x42\x75\xc2\x64\xce\xdd\xac\x8e\x01\x16\x5b\x9c\x94\xa4\x37\x14\xdc\xac\xf1\x6d\xf5\xa4\x45\xad\x54\x45\xa7\x61\xa5\x8c\xe2\x2e\x5f\xce\xef\x15\x63\xa4\x32\x42\x5d\xee\x08\x83\x44\x84\xf0\x5f\x97\xea\x47\xbd\x8d\x73\x49\x7e\xc1\x3e\xc8\x0e\x38\xea\xbf\xea\x3a\x92\x59\x2f\x01\x16\xa3\xc2\x87\x16\xdd\x10\x24\x6e\xa3\x91\x5a\x3b\xda\x8c\x37\xfb\x0a\x0e\xe7\x9e\x05\xbf\x09\xa0\x75\x49\x40\x7b\x2a\x3f\xd2\x3a\x86\xc5\xbc\xd8\x34\x95\x31\xc3\x55\x16\xe5\xaf\xe7\xfe\xc8\xb2\x8c\x39\xed\x54\x21\xab\x91\x33\x68\xdb\xdf\x35\x7d\xe8\x35\x6e\x3b\x4c\x96\x90\xd9\x2f\x16\xcb\x1d\x17\xc0\xfc\xcb\x20\xf7\x15\x80\x64\x40\xf3\x80\x9b\x72\x5c\x80\xaf\x13\xb0\xc9\x2b\x05\xb6\x70\x9c\x3d\xa3\xff\xa6\x32\x66\x08\x27\xc2\x4e\x05\xf8\x33\x09\x81\x75\x4b\x10\xaf\xf9\xcf\x24\x04\x09\x2a\xd4\x17\x39\x3b\xc2\x05\x06\xfa\xc8\xe4\xab\x98\x6e\x93\x36\x15\x07\xfe\x02\xbf\x0f\x42\x6f\x88\xd5\x82\xf9\xc2\xd0\xf8\x92\x7e\x67\xfa\x31\x42\x7c\xa8\xdb\x81\x4b\xe5\x23\x78\x10\x11\x63\x7a\xae\x24\x94\xdd\xfb\xee\x0f\xdf\x5b\x46\xb6\xb7\xe4\x3e\xbc\xf7\xdd\x1f\xbf\x27\x09\x89\xff\x40\x42\x1a\x17\x5f\x5c\xe4\xef\xcc\x5c\x3e\xb5\x8a\xe5\x2e\xe3\x02\x1e\x78\xdb\x9a\xab\xb2\xe9\xad\x3f\x5d\x0e\x3b\x8a\xe7\x13\xef\x3b\x9f\x7b\xe6\x3c\xdc\x07\x14\xcf\x66\x80\xd7\xdb\x68\x76\x95\x7b\xea\x35\x44\xfe\x08\x55\xf6\x9b\x85\x1b\x35\xf3\x82\x21\x06\x34\x01\x7a\x45\x37\xff\xc1\x7f\x65\x79\x07\x04\x94\x05\x09\x87\x18\x8e\x93\x14\xff\x49\xbe\x02\x2e\x7e\x08\x4d\x35\xde\x0a\x7c\x7e\x09\xd5\xa4\xb4\xe2\x6a\xc9\x69\xd9\xce\x74\xb3\x01\x7f\x92\xa8\x1b\xdc\xe3\x41\x8e\xf6\x23\x86\xc8\x48\x2a\x72\xdd\xf7\xd0\xad\x61\xa4\x08\xd8\x1b\xfe\x18\xe6\xa5\x55\x09\xcc\x64\x5d\xca\x74\xdd\x8a\x39\x1e\x66\x0b\x96\x19\x4b\xfc\xf3\x77\xa0\x48\xba\xa4\xb5\xb8\x8f\xdf\x51\xcf\x96\x65\x0e\x15\x3d\x7c\x2a\x3b\x54\x4b\x04\x99\xb0\x66\xd8\x6a\xf3\x1a\xff\xfb\x34\x77\xdf\x87\x44\x72\xd2\x74\x78\xd7\x5b\x93\x1a\xbe\x85\xde\x82\x7b\x24\x26\x85\x2c\xeb\x85\xf3\xcc\x66\xa1\xbd\x6b\x32\x38\xf9\x64\x90\xc4\x31\xbb\xb8\x89\xc9\xe7\x64\xb3\xec\xa8\x02\xaf\xda\x91\x1a\x74\x85\xf9\xca\xd4\x1c\xf5\x55\x7a\x2a\xc2\xcd\xa1\x82\xc6\xcd\x41\x42\x54\xa6\x28\x3b\xf6\xc2\x0f\xdd\xa0\xea\xe6\x67\x7c\xd6\xa0\x29\xb2\x39\x75\xb1\xc3\xfb\x68\x83\x14\x98\x55\x53\x35\xb8\xd4\x47\xff\xef\x07\x81\x19\x8e\x88\x63\x2c\x40\x09\x40\x58\x63\x4c\x43\x11\xc7\x1f\xef\xbc\x52\xc2\x8f\x21\x6f\x07\x39\xea\x72\xf3\x84\xbd\xea\x06\x79\x7a\x03\xe1\xa5\x9e\x2d\x7b\x23\xdf\x68\x8b\x8e\xaa\x82\x63\x0a\x57\x26\x27\x42\xb7\x80\xca\x0c\x1e\x55\xea\xd5\x07\xa5\x30\xec\xe7\x3d\x8d\x8c\x0d\x9c\xee\x7e\x16\x8c\x00\xce\x34\xcb\x5a\x4c\x37\xb5\xeb\x25\x5e\x3a\x70\xce\x24\x31\x3d\xb1\x21\x4e\xf7\xc4\x19\x89\x5d\x8f\xa5\x4b\xaa\xc1\xde\xfc\xfc\x9e\x54\xaa\x4f\xc4\xff\xa8\xaa\x98\x4d\x6d\x73\x5a\x81\x72\x48\xcf\xba\x01\xbe\xb3\x63\xf9\xde\x03\x26\xc3\x75\xb0\xdd\x75\x93\x39\xf5\x89\x39\xc0\x86\x98\x76\x86\xe3\xfa\x0a\x0a\x3d\x87\x23\x62\x1a\xd0\xd2\x33\x57\x2b\x71\xb6\xd6\x40\x8b\xb6\x10\x22\xf4\x27\x41\xf6\x75\x21\x87\x20\x5e\x5a\x15\xc9\xdf\x5c\xc7\x62\x71\x94\x1b\xcb\x6c\xc2\xc2\xa3\xcc\x44\x66\x73\x6c\x7c\x98\x5f\x28\x83\x67\xc7\xd4\xb8\x5d\xd2\xa8\x7b\x22\x50\x0e\x51\xd5\xc0\xed\x11\x17\x9b\xc7\xad\xcf\xa7\x9b\x75\x4c\x38\x1d\x09\xcd\xd1\xf2\x92\x08\x1a\xb7\x62\x99\x39\x06\xa1\x0c\x66\x7d\xe7\x6d\x69\x32\xdc\x80\xcb\x74\x9a\xd3\xca\x83\xe8\xdc\x99\x3d\x48\x11\x2a\xe6\xcb\x2b\x49\x7a\x6c\xda\xc4\x8a\x49\x33\xdd\x60\x9f\xd2\x48\x9f\xa2\xf2\xcf\x5d\x2c\x92\x2f\x06\xc3\x33\x70\x5e\xc4\xff\x49\xba\xbf\x29\xae\x15\x2d\x24\xa0\x07\xd7\x87\x6f\x0d\xf0\x81\x4d\x4c\x41\xef\x67\x9b\x9e\x16\xc8\xd2\x64\x9f\xed\xa8\xb6\x07\x9b\xcd\x83\xa2\xf8\x6c\x6a\xbc\x7e\x6d\xfb\x01\x8b\x55\x0f\x9e\xd7\x38\xcc\xcd\x54\xc2\xcb\x14\x0e\x1e\x69\xbb\x4f\x92\x8a\x3c\x03\xd9\x83\x34\xe4\x47\xd3\xf3\x96\xf6\xc7\xa5\x81\xc9\x91\xef\x52\x28\xc6\x78\x31\x47\x53\xc6\x67\x2f\xcd\xb6\x32\xd9\x75\x53\x7f\xc6\x43\xc1\x99\x04\x8e\x4e\x07\xc3\x88\x1d\xb3\x92\x9c\x98\x45\xed\x0e\xf7\x4d\x50\xa0\x04\x9a\x35\x17\xa1\x27\x03\x6c\x80\xbd\x1f\xc2\x85\xe7\x73\x01\x9d\x4f\x35\x69\x12\xce\x19\xc5\xc1\x68\x65\x97\x0a\x2d\x5f\x97\x4c\xeb\x70\xba\xcd\x48\x87\x77\x1c\x8f\xb1\x05\xdd\x8f\x73\x2b\x9e\x1c\x5d\xcf\xd9\xd3\x06\xeb\x3b\xbb\xce\x49\x88\xe9\x1a\xc7\xd9\xcc\x57\xd3\x6d\x8f\xa7\xde\x8f\x53\x58\xff\x68\xa4\xd3\x31\xd8\x24\x84\xa0\x66\xcc\x64\x6d\xdb\xb9\x44\xd4\x61\x17\x58\x97\x15\xdd\x25\x27\x14\xb9\x8b\xe3\xc3\x0a\x2e\x9b\xe6\x9d\x9d\xff\x8b\x59\xf2\x8f\x28\x63\x5d\x76\x92\x87\xa8\x4c\xcf\x06\x99\x4b\xd2\x85\x57\x93\x91\xe4\xb0\x41\x3c\xb9\xf9\xc9\xb2\x93\xae\x87\x2f\x30\xd7\xed\xe2\x03\x14\xbf\xff\x89\xa3\x01\xda\x33\x4e\x69\x07\x59\xb7\x4d\x04\xc5\x2e\x96\x67\xb8\x55\x9d\xbd\x96\xe8\x0e\x51\xa6\xfa\x9d\xf9\x36\xf7\xba\xd4\xc5\x28\x10\xcf\x2d\x58\xe2\x0e\x9c\x46\x65\x2f\x23\x4f\xc9\x7d\x65\xc7\x2e\x93\xa9\x75\xfe\xb7\xf8\x4d\x36\xbf\xd5\x5f\x72\x68\xca\x9c\x45\xfd\x74\xce\xe8\xf3\x73\xef\x95\x8e\xdd\x5b\xce\xe3\xf8\xa8\x6b\x04\xaa\xc7\xe5\x01\x7e\x74\xfc\x92\xcb\xed\x09\xe7\x14\x3a\x08\x0e\x96\x15\x4d\x5d\x68\xa4\x14\x2b\x27\x11\x76\x18\x18\xc5\x79\x1b\xf9\xc6\x39\xd0\x21\x5f\x7d\xc1\x75\x00\x2b\xe7\x29\x70\xcf\xaf\xd4\xec\x1a\x5b\xd2\xe5\x3a\xd0\xd4\x2d\xa9\x91\x07\x4a\x58\x63\x03\x9f\x65\x1e\x54\x72\xb0\x30\x00\x75\x21\x49\xc5\x11\x04\xd4\x18\x8e\x9b\xd3\xa6\xef\xcb\x15\xe6\x5d\x76\xd5\x1b\x98\xcc\x71\x58\xf3\x93\xbd\xfd\x9a\x86\x7a\x59\xe8\x2a\x98\x9a\x35\x0e\xb6\x44\x73\x3e\x7f\xb4\x7d\xfc\x00\x0e\xac\x85\xe1\xe3\x75\x77\x92\x5f\xf2\x45\x9f\x11\x7e\xe4\xe0\x22\xbe\x6f\x73\x55\x16\x44\x0e\xb3\x47\x0f\xb7\x8f\xb9\x2a\xf6\x8a\xe7\xaa\xe0\x76\x03\xa7\xf7\x8f\xaa\x73\x78\x53\x62\xe7\x2e\xa1\xcb\xed\xea\x75\xdb\xcb\xc9\x91\x5c\x7c\x88\xee\xde\xa0\xe1\xfd\xd4\x1a\x79\x8f\xc0\x1f\xd0\xfb\x22\x56\x83\xd3\x25\x3e\xf4\x3f\xe4\x26\x3a\x46\xa0\x28\x32\x12\x62\x33\x39\x84\xf6\xa0\x90\xe6\x16\x13\x64\x32\x55\x9b\x38\x58\x14\x38\xf5\xdf\x3a\x0a\xda\x4b\xeb\xfe\x1e\x48\xc1\x8e\x53\x5d\x63\xc7\xfd\x4c\xcf\xf6\xf7\x9e\xe9\x7b\x78\xf8\x31\x05\xce\x0d\x03\xb5\xfa\x7f\xc9\x08\x1d\x1b\xe7\x9b\xb1\x7b\x0b\x79\x74\x9f\xa5\xce\x7b\x7e\xde\x57\xa1\x9a\xb8\xb3\xb2\xff\x1d\xaa\x2a\x50\x08\xdf\x3a\x9f\xac\x85\x2f\x86\x95\x7c\xe5\x67\x21\x51\x2b\xe2\x9b\x15\xe9\xd5\x9f\x2a\x1f\xc6\x1d\x4c\x6e\x68\x47\x6e\x87\x9b\xbd\xbd\xc6\xe8\xaf\x65\x03\xf3\xd8\xd2\x0d\x6d\xb8\xd1\x09\xc9\xc3\xd7\xc0\xed\x78\x7a\x90\x0a\xd5\xdf\x87\x26\xa6\xd5\xfe\x1e\x87\xb4\x8d\x8b\x59\xd0\x0e\x5d\x5b\x57\x3d\x47\x63\x20\xdc\xd0\x02\x21\xb1\x0d\xba\x1e\x8a\x5d\xe1\xb6\x3d\x13\x0b\xbb\x13\x65\xc7\x29\x5c\x15\xc3\xd8\x2d\xd5\x2d\x5b\x05\x62\x3d\xf0\x5d\x7e\x8e\x73\x00\x2a\xdc\x1a\xc4\x44\x05\x05\x9e\xbe\x3e\x3b\xa7\xbe\xad\xa0\x01\xf5\xb5\x77\xf9\xe2\x30\x7d\x7a\xd1\x0e\xda\xd5\x29\xbc\x9a\x38\x60\x15\x2e\xb6\x83\x62\x63\x9d\x8d\xc3\x99\xa4\xbe\x8c\x07\xcf\xfc\xe4\x84\x8d\x9a\x72\x68\x52\xc7\xc4\x91\x74\x10\x10\xea\xc5\x04\x76\xd3\x40\x4f\x2f\xfa\x5a\xc2\xfc\x95\x8e\x88\x98\xa4\x1a\x80\xde\x77\x07\xa3\xa6\x90\x10\x73\x54\x83\x1e\xf6\x5b\xc7\x5f\x2e\xb5\x36\x3e\x04\x2d\x04\xad\x55\x1e\x45\x78\x10\x1f\x38\xf1\xe7\x62\xaf\x9f\x36\xf6\x35\x4e\x7c\xdb\x73\x3b\xd1\x7b\xd6\xc6\xdd\x81\x23\x16\x34\x12\xc3\x11\x3b\xfb\x00\x22\x18\x1b\xa9\x37\x0d\x47\xde\x95\xd0\x16\xc1\xcd\xd2\xfc\x88\x68\xcb\x0d\x74\xdb\x1f\xa3\x98\x3f\x9c\x2d\xb7\xd2\xe3\x48\x2e\xac\x35\x63\x53\x42\x33\x53\xdd\x19\xca\x28\xcf\xd2\x15\xec\xc0\x46\x2e\x95\x53\xc0\xca\x80\xb5\x4c\x2c\x2d\x0d\x00\x95\xe6\xb9\x66\xaf\x7a\x57\x6e\xe2\x83\xf3\xb2\x23\xfc\x3d\x94\xa7\xf2\xd1\xbe\x55\xfc\x08\xb1\x23\x1e\x63\x2d\x3f\x7a\xc8\x3f\x25\xf2\x66\x98\x4b\x5c\x06\xe7\x78\xaf\x3c\xff\x08\x0e\xa5\xce\xea\xde\x71\x51\x08\x87\x68\x09\x6a\x4c\x47\x48\x3f\x87\x2b\xcc\xcd\xcf\xb5\x5f\x4a\x9e\xa2\x5a\xda\x72\x6f\x7e\xf6\xa1\x18\x7d\x30\xaf\x0e\xc1\x45\x71\xfe\x8c\xd5\xed\x48\xfb\xf3\xff\x7e\xf6\xfa\xd5\x7d\xed\xe1\xfb\x07\xd7\xd7\xd7\x0f\x50\xf0\x41\xdf\x56\xa6\x46\x62\xa1\x5d\xbe\x8f\x50\x8e\x8f\x4d\xb7\x7a\xf4\x90\xfe\x7e\xa1\x31\x23\x39\x50\x15\xfb\xec\x4f\xd0\x9d\x2e\xd9\xbf\x8f\xd6\xb6\x12\x89\x21\x8e\xea\xa9\xc1\x19\xd2\x7d\x06\x8b\x22\xf5\xef\x88\x9c\x6e\x83\x90\x6d\x48\xc9\xec\x88\x9d\xe3\x4f\x9c\xc1\xf8\x95\x69\xfc\xf5\x6f\xff\x0c\xfc\x39\x56\x95\xa0\x0d\x02\x4d\x81\x88\x2a\xc4\x78\x4c\x0d\xb7\x3a\x59\xd4\xba\x0e\xbe\x1a\xd5\xc8\x07\xe5\x4d\x5d\xed\x24\x6a\x20\xae\xef\xca\x4c\x0a\xc6\x91\xad\x08\x4e\x96\x16\x87\xd0\x91\x7b\x3a\xcd\x28\xdd\x3b\xa8\x84\xf5\x16\x2d\x1a\xdf\x82\xb2\x69\x4f\x74\x20\x65\xdc\x71\xc9\x53\xc9\x11\xcb\x38\x59\xff\x83\x6d\xd3\x7b\x06\xe8\x18\x67\x63\x3a\xf3\xfb\x4f\xa0\xb3\xf1\x16\xa4\xb0\x53\x4d\x45\x22\x8f\xf1\xc4\x37\x96\x6e\x7d\x3b\x62\x26\x9c\x68\x43\x0e\x5a\x20\x6e\x94\xb8\x97\x4c\x92\xe5\x09\x47\x0b\x82\x93\xb0\x38\x32\xdb\xc1\xa6\x98\x2e\x99\x01\x77\x00\x6a\x2c\x69\x23\xef\x16\x81\xc8\x79\x8f\x95\xfb\xda\xce\x7d\x88\x49\x37\xb5\xe5\xa2\x10\x7b\xc1\xb3\x6f\xe5\x1e\xe5\x45\xaa\x16\x9f\x51\xf5\x78\x1d\xe4\x0d\xc3\xed\x0e\xb2\xa1\xa5\xd5\x62\x91\x48\xb4\xc5\xc2\x10\x5f\xde\x25\xf7\x23\x0b\x58\x07\x2c\xed\x13\x24\x19\x9b\xc1\x10\x03\xf8\xfc\xa8\x28\x08\x0e\x9f\xd9\xff\x30\xbb\x58\x81\x69\x16\x71\xad\xff\x4a\xaa\x3f\xcc\xd9\xb0\x97\x50\x15\x30\xd7\xd7\xbb\x4c\x20\x32\x82\x48\x84\xd5\xd8\x92\x35\xd1\xc7\x01\x4b\xef\x22\xa0\xd4\xcf\xff\xa9\xaf\xde\x1f\x9f\x78\x2b\x82\x5a\x6b\x92\x92\xc1\xb7\x3f\x2a\x79\x4d\x7b\x42\x06\x51\x35\x43\x36\x57\x90\xab\x7d\x5e\xfc\x54\x8a\x21\x71\xc4\xde\xfa\x30\x62\x86\x51\x0e\x2c\x36\x82\x88\x81\x1d\x63\x6a\xc0\xde\x74\xa3\xd6\x98\x49\x8c\x4f\xc0\x8f\x4d\x38\x45\x3c\xb0\x60\xc3\x89\x0d\x36\xe2\x84\x6e\x2c\x9b\xbd\xb8\x50\x08\xfe\x7e\xc8\x8c\x73\xb0\x23\x0e\x1f\x11\x62\x6f\x37\xe8\x14\xe5\xc5\xc5\x8c\x44\xdf\x6b\x8b\x4b\x00\x7d\xbb\x0a\x4f\x55\x70\xe8\x5a\x17\x56\x9e\xe1\xc0\xa6\x68\x4d\x6c\xf3\x02\x8e\x97\x9c\x24\x1e\x26\x73\xf9\xa3\x69\xc4\x53\xf2\x41\x64\x4d\xc8\x63\x2e\x60\x79\x95\x3d\x25\x28\x2f\xd5\xd4\xd1\x25\x3f\x0e\x67\x8d\x2a\xec\x65\x73\xbd\xc0\x2f\xbe\xdf\x60\xf9\x0c\x15\x5d\x82\xa3\x70\x81\xf0\x6e\xb4\xa7\x0a\x01\x11\x8c\x2b\x03\x48\x15\x9e\x44\x6f\x73\x5e\xb8\xd1\x15\xb8\x7b\x85\x97\xea\x82\x0b\x34\xf3\x0a\xfd\x80\x8f\x42\x51\x8a\xc0\x16\x20\x76\x71\xbe\x98\xff\xa3\x0a\x1c\x1a\x89\x2d\x3c\x79\xfe\x4a\xbf\xd8\xa3\x88\xef\xdb\xc2\xa5\xe8\x6b\x69\x54\x82\x07\xb1\x83\xd2\x6c\xc2\x63\xc9\x65\x89\x43\x18\xff\x56\x4f\x0d\x85\x09\x20\x45\x9b\x5f\x74\xee\x3c\xa5\x0d\xe9\xdb\xd6\xb8\x92\xa7\xad\x79\x30\x2a\x27\xa1\xab\xd8\xe3\x7a\x59\x45\xe9\x6c\xc6\x35\x7a\x0e\xe4\x12\x73\x18\x6d\xe7\x61\xe8\x31\xca\xd8\xb3\x08\xe2\xc4\x3d\xab\x3e\x64\x1c\x47\xac\x1d\x35\xc8\xab\x6a\x11\xbf\x52\x90\x7d\xdd\xbb\xc8\xd0\x02\xd3\xe5\xeb\x89\x4b\x3b\xe1\x10\x2c\xc0\xb1\xcc\xf2\x54\x42\x08\xa4\xe5\xbd\x87\xe8\xaa\x59\xcb\x7d\x21\x7f\x5e\x24\x11\x78\x39\x4d\xee\xe1\xc1\x91\x51\x5e\x6b\x68\x67\xa3\x09\xd1\xc3\xba\xf3\x9b\x5f\xba\xbe\x72\x3a\xe1\x08\x8f\x4e\xbc\x01\xef\x5a\x6c\x8a\x48\xf6\x5d\x89\x39\x9b\x05\xbd\x64\x07\x7a\x99\xb7\xef\x8a\xe6\xba\x96\x33\x44\x57\xd1\x75\x5b\x72\xb4\x36\x89\x96\x95\x4c\x24\x07\x4c\xfe\x96\x75\x8a\x53\x7c\xe5\xe3\xe6\x63\x37\x1d\xa9\x03\x9c\xc6\x47\x3f\x73\xc2\x96\x2b\x06\x19\x0d\x81\x07\x8e\x11\x39\x8b\x24\x11\x7d\x78\x62\xb8\x74\xc6\xb7\x7b\x28\xef\xc1\x68\x6a\xa3\x02\xc1\x3f\xd7\x2f\x01\x55\x5a\x36\xb8\x3d\xc9\x87\x65\x6c\x24\x23\xc5\xc8\xa9\x48\x51\xf4\xeb\xb8\x17\x98\x18\x7b\xe9\x9e\xd3\x68\xc7\xa8\xe7\x00\xb2\xb2\xfe\xbf\xd1\x78\xb1\x63\x3a\x60\x4d\xca\x51\x82\x9c\x6f\x8e\x6b\x72\xeb\x6e\xa1\xdb\x8d\x46\xab\x48\xaf\x9d\x69\x29\x67\xf7\x0c\xeb\x4a\xc2\x24\x34\xed\xfa\xfb\x28\x3c\xd2\x28\xa8\x2b\x2d\x9e\xc1\x7b\x2e\x01\xf6\xe0\x4d\x83\x34\xf2\x48\x74\xd7\x00\x0f\xdd\xf8\xcb\x06\x1a\x62\x44\xee\x4f\x46\x15\x4e\x46\xc2\x77\xba\xfa\xa0\x6a\x56\x3c\x4c\xbd\x3f\xba\xc1\x2e\xba\xb3\xa9\xb7\x66\xf5\xfc\x08\x51\x54\xc4\xed\x6b\x30\x48\xf6\x67\x55\x17\x99\x20\x84\x62\x2d\xca\xc1\xce\x5c\xef\xc6\x5b\x0e\x81\x83\xc7\x2a\x6c\xb3\x31\x30\xc7\x3f\xc7\x27\x5c\xe0\x38\x10\x49\xc9\x97\xaa\x4c\xbe\x21\xb9\x91\x83\xec\xc0\x4b\x14\x71\x36\xd4\x92\x63\xe7\x6a\xbc\xf1\xe9\x49\x00\x8f\x36\x8d\x66\x1b\xfc\x6d\x51\x65\xf0\xb3\x15\x5b\xd6\x89\x06\x8d\x03\x42\x27\xae\x2b\x84\xa0\x51\x91\x4a\xec\xca\x70\xe6\xa1\x42\x6e\x72\xf4\xe6\x5f\x1c\xe1\x4a\xc8\x61\x63\x6a\xbd\x99\xa9\x99\x1a\x54\x48\x6f\xd9\x3a\xff\x05\x3f\x03\xbe\xc5\xe0\x62\x7d\x52\x8b\x9e\x09\xdb\x0a\xaf\xdf\xa8\x9e\xaf\xb4\x84\x58\xc7\xad\x17\x5d\x54\xb5\xaa\x49\x3a\xe7\xc0\x9d\x91\xf5\x9c\xd0\x0b\x05\x4b\x4c\x38\x69\x55\xb7\xde\x42\x18\x19\xd2\xfe\xb1\x11\x4c\xa6\x6b\xdf\x73\x19\xe1\xef\x3a\xb5\x3a\x10\x84\xc3\xc3\xb8\x68\x1c\x72\x54\xc4\xb1\x38\x7c\xde\xbe\xa0\x1c\xff\x88\x73\x24\x42\xc1\x78\xdb\x4c\x08\xf1\xe0\x51\x92\x16\x9f\x08\xbe\x31\x42\xef\xff\x93\x28\x1c\x66\x14\x18\x69\x42\xb1\x75\x91\xf6\x0f\x06\x7a\x18\xa1\xe1\xf6\x78\x0f\x7b\x8f\x6d\x06\x8c\x6d\xa8\x00\x0f\xee\xed\xb5\x32\x8a\x5b\x0a\xe9\x55\x3e\x89\x04\x35\x79\x99\x6f\x8c\x0b\xbe\x0e\x94\xe3\x06\x65\x74\x25\xee\xfe\xe0\x5e\x5f\x76\xfa\xf6\xe4\xe9\x49\x90\xd3\xdc\xa5\x3e\x6b\x3e\xd9\x7b\x06\x70\xeb\xfd\xbe\x61\xef\xc1\x1f\xa7\x2f\xf9\x8d\x37\xbb\xa9\xb2\x41\xba\x68\x86\x93\xf4\xbb\xae\xfe\x4d\x99\xd4\x9d\xdd\xfd\xda\x99\xd5\x25\xa8\x9b\x3c\xe2\x23\xe1\xeb\xfd\xdd\x5b\x87\xbe\x6e\xf2\x41\xa0\x18\x99\xd3\x4b\xf4\xee\x1d\xdd\x8b\x44\x78\x59\xcd\x43\xcc\xa1\x34\xc3\x71\x6a\xe1\xe5\x88\x09\x47\xcc\x7d\x2b\x37\xf7\x22\x58\x24\x20\xb6\xcf\x9e\x8c\xe9\x5a\x46\x4d\x4e\x5c\x83\x74\x59\x7a\x08\xf2\x52\x76\xce\x90\x4e\x35\xae\x4c\x5e\xcd\x5f\xaf\x60\x99\x6f\x43\x86\xe8\xb0\xd1\x2d\x5a\x97\x41\xa2\x11\x8c\x62\x2e\x12\x5a\xc8\xd0\x4d\xdd\xb9\x35\xd1\x36\xfe\x81\x1d\x89\x0d\xbb\xb9\xb0\x05\x6b\x14\xea\x87\x27\xa3\xf4\xdb\xbf\xb7\x72\xb9\xe3\x19\xc4\x7d\xfe\x72\xd4\x04\x82\x81\xab\xcc\xc0\x21\xc8\x20\x2b\xcc\xe0\xf7\x37\x7f\x5b\x97\x2d\xc4\x3d\x49\x1a\x75\x55\x92\x21\xf8\xe9\xad\xf0\xb9\xde\xfb\xa6\x2e\xbd\x20\xd6\x40\x0c\x65\x02\x28\xb9\x8a\xa6\x5b\xb4\xbe\x83\x82\xf7\x42\x76\xee\x95\x22\xdb\xa7\xcb\x68\xe6\xea\x62\x81\x7f\xdc\x22\x4b\xef\x71\x9b\x31\xdc\x81\x46\x2b\x63\xc6\x8d\xdd\xe7\x80\x7c\x22\x73\xcb\x4d\x2f\x58\x35\xe5\xcc\xb4\x8a\xfa\x22\x0f\x29\x8c\xfa\x32\x78\x02\x64\x0c\x7b\xa0\x3f\xa1\xb9\x87\xec\xae\x06\xb7\x99\x03\xbd\xcb\x7d\x94\x13\x7f\x94\x06\x9f\xb7\x41\x3f\xdd\x35\xac\xb8\xbd\xda\x9d\xca\x17\x23\x81\x0b\x46\xe5\x3d\x5b\xbe\x64\x33\x6d\xd8\x91\x2c\xf4\x62\x70\x88\x2c\x0d\x4c\xdd\xa6\xff\x58\x96\xb1\x73\x55\xb8\x02\xa4\x1c\x98\xd5\xe5\xa4\x73\x42\x28\x25\x46\xfa\x21\x9b\x91\xae\x3b\xb1\x57\x89\xd7\x8e\xa4\xd0\xdf\x24\x51\x48\x01\x77\x27\x1e\x32\xb1\x1a\x72\x59\xdc\x4b\xab\x85\xe1\x8d\x45\x48\x65\x1f\x8e\xc5\xbe\x74\xe4\x39\xec\x47\x54\x6d\xba\x5f\xb4\x07\x00\x47\xf3\xcc\x5b\x02\xce\x5e\xfd\x89\x0f\xf6\x01\x6b\x68\x14\x89\x37\x43\x2c\x85\x60\x22\x37\x01\x41\x89\x3c\xad\x01\x18\xb6\xec\xda\x10\x9e\x5d\x73\x51\x0f\x27\x69\x36\xee\x60\x74\x26\x25\xa3\x70\xef\x03\x4c\x87\x06\x98\x25\x3c\x64\xb8\xe2\xe2\x81\xca\x6a\x8e\xbd\x57\xdc\xa2\x51\x6e\xe4\x17\xc8\x97\x4c\x52\x7e\x80\xd1\x13\x47\x9e\xfd\x8c\x9e\xb5\x0b\x61\x4a\x07\x9c\xe8\xf7\x75\xc9\xb3\xab\x5b\x3a\xc5\xec\x69\x17\x33\xa1\xfc\xa3\xfa\xa6\x0f\x0b\xfd\xae\xbe\x1d\xed\xa1\xab\xfd\x3d\xbc\x1f\x77\x70\xb7\x97\x29\x7d\x4c\xc7\xf7\xc6\x8f\x9c\x20\x54\x4f\x51\xd1\xdb\x9f\x8e\xaa\x62\x7f\xb0\x11\x65\xe9\x19\xa9\xfa\x2b\xb9\x4d\x39\x54\x5a\xf3\xf3\x64\x7c\xc3\xd3\x3b\x35\xc5\x0e\x23\xfe\x29\x1f\xeb\xa2\xdc\xb2\x3f\x8e\x0b\x56\xe5\xee\x87\xa6\xd1\xa0\xda\x9b\x9f\x71\x2b\x3d\x0e\x2f\xfa\x1d\x4f\xd3\xf7\xf1\x1b\xc8\xd1\xbb\x32\xf0\xbb\xb0\xee\x8d\x4e\x9b\x3e\x72\x3b\x0e\xf1\x78\x28\xf0\x66\xdf\x5d\x4a\xc8\x52\xd6\xa4\x8e\x42\x00\x53\x77\x1b\x14\x5c\x6d\xc4\xeb\x9d\x2b\xd3\xd1\x95\xae\x90\x2a\x3b\xc3\xb0\x70\x9b\x75\xd3\xd4\xa8\x7e\xfe\x52\xfe\x06\x81\x15\x76\xb7\xe8\x0a\x25\xdf\x74\x89\x6e\xb8\x44\x43\x65\x8b\x33\x42\xfb\x8a\x30\xeb\xed\xd2\x31\x08\x0b\xf7\x4e\xb7\x34\xe1\xc9\xda\xa8\x92\x1d\x7a\xc4\x76\xee\xde\x4a\x45\x72\x7e\xae\x3d\x4b\xbb\x3d\xd1\xf8\x02\xe7\xbb\x50\x83\x46\x2f\x83\x72\xe0\x5f\x1f\xcb\x1a\x31\xbe\x0a\xc4\xf8\x8a\x02\xbb\x86\xb4\x61\x9c\xdb\x90\xa3\x31\xa4\x5c\xdc\xa5\x24\x2f\xdd\xd5\x43\xba\xdc\xc2\x2e\xd2\x44\x7f\xe5\x3a\x49\xcd\x57\xe3\x26\x85\x29\x27\x49\x91\x1b\x7f\xd2\xb9\x06\x4c\x76\x34\x1a\xf7\x16\x1d\x07\xec\x28\xd8\x7a\x26\xa1\x88\x62\x20\xeb\xe3\xb4\xc6\xa9\xfa\x44\x51\x3a\x4a\x31\xd0\xc7\x69\x17\xbd\x71\x31\x70\xf9\x49\xb8\x38\xcf\xe9\x1c\x69\xb5\xce\x03\x37\x4e\xf5\xf7\x38\xe2\xc4\x51\x59\xe1\x30\x49\x12\x62\x41\xe6\x51\xa8\x99\x22\xad\x22\x2f\x7e\xec\x6b\x09\x30\x3e\xb1\x16\x27\x6c\xed\xaf\xbd\x12\x3a\x5d\x42\x9e\x97\x92\xd8\x14\x6d\xbf\xe5\x2b\xca\x53\x70\x6d\x5f\xcf\x4f\xf4\x81\xd2\x18\x02\x52\x7f\xbd\xd0\xc8\x4d\x0d\x07\x86\x70\x57\x5d\x6d\xfa\xaa\xf2\x6b\x3c\xd9\xa0\xaf\xae\xab\x3a\x7a\xb8\xa2\xc4\x95\xef\xf6\xca\x6e\x89\xe4\x93\x60\x4c\xb7\x7d\x68\xb8\x9d\xa8\x5e\xaa\x2a\xdb\x20\xc9\x04\xa3\xa9\x5b\x74\x0e\xdc\x7e\x5c\x55\x21\xea\xdd\xfe\x9a\x7e\x47\xa7\xd9\x00\x2b\x11\x3a\x4d\xda\x5d\x15\x58\x35\x7a\xe7\x28\xaa\xcd\x6d\x75\xc5\xfd\xbd\xa5\xaa\xdf\xd2\x6d\xbc\xe1\xb7\x5e\xe9\x13\x63\x6e\x09\xf1\xe3\x75\x86\xb6\xe1\x28\x6c\x22\xb1\xb9\xbe\xf5\x41\xcd\xf6\xf5\x3c\xae\x6e\xa2\xc7\x49\x2f\xb9\x8b\xce\x26\x30\x0e\x6b\xaf\x1d\x10\x5e\xac\xcd\xa7\x94\x45\x2c\x64\x57\xaf\x16\xfc\x80\x9c\xbd\xe4\xd3\xf8\x37\xc6\x3f\x80\x82\x37\x58\x35\x6c\xcc\x67\x33\xca\x7f\x28\x37\xfd\xcb\x0f\x86\x0f\xb2\xed\x67\x9f\xd3\x72\xa8\x35\x38\xba\x35\x2a\x99\xf2\x93\x9f\x58\x0b\xc2\x7e\x35\x38\x1a\xe5\xc1\x1c\xfb\x61\x05\xb7\x54\x66\xf0\x5f\x1c\xee\xc8\xd4\xea\x1a\x30\x74\x37\x4b\xad\x74\xb9\x3b\x34\x4b\x51\x03\x91\xf3\x48\x32\xdc\xb0\xc2\xc4\xf0\xc2\xe1\xb4\x94\x4d\x05\x43\xd1\x70\x0e\x3e\x8f\x9e\xcb\x54\x1f\x45\xe3\xad\x8d\xbc\x0c\xf4\x39\xc3\x81\xb1\x2f\xf1\xa9\xdb\x87\x8b\xb8\xab\x13\x8b\xe1\xb7\xf4\xf3\x56\x5c\x25\x7b\xb4\xbc\x44\x4b\xfc\x92\x44\xa6\xf9\x5b\xfe\x93\xf9\x67\x84\x8b\x94\x89\xae\xfa\x16\xc7\xeb\x8b\x75\xd3\x36\x3d\x29\x32\x66\xfe\x4d\xd3\xe2\x07\xcd\x90\x68\x70\xa9\xe0\xe0\xe0\xf9\x2c\x68\xb7\xe8\x39\x4c\xc4\x5b\x51\xe0\x5f\x22\xad\xcc\xb5\x5c\x5c\xaa\x6b\xba\xbc\x72\x65\x60\x65\x5f\xf1\x09\xcd\x39\x92\xe3\x92\x6f\xd4\x44\x9f\xc8\x1c\x5a\xac\x59\x76\x39\xf5\xaf\x98\x3b\xe0\xd7\x4b\x3e\x68\x4c\x60\xb7\x0d\x47\x34\x5a\x54\x84\xdc\x7e\xbb\xc0\xd0\x09\xe7\x24\x7b\x6f\x85\x4f\x3c\xb9\xf9\xab\xa5\x45\x2d\xd7\xf5\x4e\x7b\xc0\xa6\x14\x3c\xe8\xe3\xb8\x06\xed\x62\xd4\xeb\x89\xe2\xb8\x25\x3a\x2e\xfa\xa2\x5c\x1a\x77\x11\x71\xa2\xac\x43\xed\xa5\xc9\xb7\x29\x62\x9f\x51\xca\x04\x56\x19\x70\x1f\x76\x5c\xb1\x29\x2c\xc5\x05\xcb\xa2\x32\xa3\x42\xcf\x75\x0b\xd8\x5b\x88\x1d\x71\x46\xc5\x88\x3b\x52\x8f\xf7\x15\x52\x81\x66\xdc\x45\xc5\xcb\xb8\xb5\x66\x49\xfc\x91\xb6\xbd\xd7\xf4\x57\x1d\x8a\xe1\xe2\x49\x59\x31\xe8\xb2\x69\x3a\xa8\x5d\x5b\x88\xb3\xab\x77\x29\xea\x70\x07\x84\x84\x42\x9e\x7b\x07\x37\x10\x68\xa9\xc8\x01\x24\x72\xe9\x29\x24\x6e\x10\xc8\x89\x9a\x6c\x7b\xa8\xc9\xb4\x43\x25\xed\x9e\xb8\x0c\xa2\xa3\x97\x67\x04\x79\xb0\xa8\x6f\x78\x54\xcc\x37\x9d\xae\x52\xd2\x42\x2e\xcd\xde\xc6\x4d\x5c\xcb\x31\x40\x0f\x17\x9e\x6e\x9e\x0b\x4e\xb7\x2f\x21\xdb\x71\x20\xb2\xec\x57\xef\x4c\x87\xcb\x2c\x97\x0b\x76\xee\x08\x95\x9d\x3a\xa0\xec\x09\x03\x65\xcf\x08\x28\x3b\x07\x90\xab\x35\x59\x2b\xb4\x71\x6e\x48\x2a\x65\x47\x9e\x68\x26\x38\x45\x15\xa9\x37\xc9\xa6\xf8\x44\x36\x45\x5f\x59\xaa\x03\x91\xf2\xd6\x2e\x54\xcf\x51\x72\x86\xac\xe8\x6b\x96\xe7\xb7\xdf\xb8\x57\xaf\x23\x85\x27\x73\x51\x53\x92\x0a\xa1\x93\xc9\xe6\xbe\xda\x91\x3c\x18\xd4\x33\x76\x29\x5c\x55\x4e\x83\x9a\xec\x63\x5c\x11\xc7\x63\xa5\x8a\x98\x3d\x0b\x7b\x70\xbe\x2c\x55\x76\xf3\xbf\xe5\x9d\x97\x6f\x8e\xc7\xfc\xd3\x95\x39\xcd\x69\xb6\x33\x61\x9e\x50\x95\xf7\xc0\x6e\x73\xd0\xe8\x61\x60\xd7\x17\x81\x95\xc6\x89\x62\xb8\xcc\x18\x5a\x3b\xa0\x92\x92\x1e\xd3\x03\x44\xb5\x6e\xb9\xf3\xa0\x31\x4f\x69\xf1\x9a\x8a\x9a\xaf\xe5\x84\x97\xa3\x9e\xea\xfe\x16\x94\x73\x29\x36\x7e\x59\x35\x7d\x55\x55\xa1\x82\xfe\xe0\x92\x9c\x58\x5b\x68\x24\x7b\x2c\x28\xcd\x09\x97\xfd\x83\x49\x59\xb2\xa6\x1e\x7b\x95\x1c\xbd\x77\x2a\x21\x45\x7c\x55\xc9\x65\x75\xad\x9d\x35\x00\xf1\x5c\x7b\xdd\x96\x6b\x09\x15\x3a\x88\x35\x27\xa0\x1c\x7c\x4d\x8e\x61\x93\xd2\xac\xbf\x0d\x75\x22\x45\xcc\xde\xca\xf6\xbc\x98\x80\xf3\x6a\x79\x31\xa1\x88\xdf\x20\xbe\xfd\xf8\x31\x0c\x30\x9c\x28\x8a\xd7\x4a\x8a\xfa\xd2\x2e\x02\xaa\xe3\xb8\x99\xd1\x15\x01\x66\xe0\x01\x9c\xf1\x1f\x83\x8e\x2d\x67\xf9\xd4\xec\xf0\x19\x3c\xbf\xad\xcd\x1e\xbe\x07\x6a\x90\x70\xdf\xbc\x5c\xbc\x2c\xf5\x0d\xfc\x01\xa7\x70\x35\x7e\x7f\x42\x71\x95\x0e\xf4\xe0\xf1\x6a\x0a\x3a\xf5\xbe\x4e\x78\xd7\xe7\x3f\xe9\x25\xa1\xb8\x69\xf7\x9e\xd0\xa0\xe5\xff\x9c\x17\x85\xe4\x85\x94\x19\x5f\x66\xba\x95\xbe\xc7\xae\x47\x03\xea\xe5\x94\x81\x7f\x0d\xa7\x0d\xcf\x19\xc4\x75\x91\xf2\x99\x6a\x3f\xa2\xe9\x94\xac\xa5\xe8\x9e\xd0\xac\x83\x3e\x49\xd2\xe8\x18\x54\x92\x39\xae\x1f\x31\x3e\x89\xec\x27\xee\xe3\x92\x83\x0b\x01\x6c\x41\x23\xf1\xa6\xca\x7d\xf2\x54\x9c\x39\x31\x29\x2a\xfd\xdf\x3e\x94\xc0\x01\xc4\x7a\x27\x85\x11\x41\x21\x8e\xef\x8f\x30\x03\x8e\x01\x0d\x1e\x99\xd4\x02\xf1\x20\x25\x29\x0a\xe3\x24\x09\xf2\x46\x48\xe1\xef\x19\x48\xea\xa4\x23\x55\x34\x84\xc4\x63\xfe\x68\xaa\x6d\x06\x1b\xf0\xb8\x49\xc0\xa1\x7f\xbb\xa4\x5e\x36\xb6\x9b\x3f\x6b\x10\x4c\x49\x12\x70\x07\x6a\x7e\xda\xe3\x9a\x99\x4b\x5a\xb2\xe7\x60\x3d\x7f\x02\x3b\xe4\xd3\x57\xbe\xe5\xae\x23\xc5\xb0\xef\xa2\xb7\x61\x8e\x24\x05\xf7\x79\x25\x65\x0c\x9b\xc2\xd5\x09\xd2\x02\x14\xed\xe8\x29\x20\x22\x53\x56\x65\x84\x1d\x0f\x2a\x6f\x2a\x38\xb8\xe9\x47\x15\xb8\x88\x44\x66\x9a\x7f\x4d\x7f\x84\x76\xbd\xa6\xe2\x20\x36\x60\xaa\x0b\x9b\xcf\x5f\x92\x66\x56\x64\x67\x47\x2e\xc3\x6e\xba\xad\x44\x3d\x9d\x9c\x8b\xec\xec\xe5\xf9\x69\x0c\xcb\x58\x45\x62\x16\xa3\x16\x39\x11\x7a\x93\x52\xfa\x84\x4c\x57\xd9\xf9\x33\x77\x8b\x2b\x3b\x2e\x2f\x58\x99\x39\x7f\x71\xe6\xa7\x07\x07\x55\x7c\x7b\xd0\x8c\x5c\xd6\xce\xf4\x56\x61\x76\x7a\xf4\x72\x50\x2f\x96\xad\x7f\x36\x1c\x2d\x54\xda\x04\xc6\xf1\xc0\x3d\x0a\xee\x17\x6f\xb9\xe5\x03\x56\x6b\x7e\x6c\x3c\x55\x44\x7b\x34\x33\xf5\x91\x6f\xce\xf4\xf2\x4c\xf7\xb4\xc1\x13\x65\xce\xfb\x28\xec\x6e\x31\x59\xc4\xae\x40\xb7\x34\x17\xd7\xe4\x0c\xa7\xa3\xad\x38\xae\x3b\xde\xac\x3e\x7e\x34\x13\x37\xbf\xf3\x43\x90\x0b\x21\xe2\x49\x97\x9a\x5b\x8b\x39\x8f\xf7\xd4\x75\xc6\x28\x1a\x43\xd9\xfd\x81\xb3\xc5\xa4\xe2\xac\x15\x93\x87\x29\x03\xab\x85\x96\xc8\xb7\xdb\x09\x5b\xb2\x7b\xce\x8b\xfb\x1b\x41\x52\xe5\xf0\x85\xb7\x91\xb3\xd0\x3e\xd0\xe8\x66\xd9\x1e\xa8\x21\x9b\xd2\xe4\xe6\xe2\x82\xf4\x1c\x83\x00\x45\x06\xb1\x3f\x88\x7a\xca\x1a\xd3\x66\xde\xa7\xc5\xdd\x13\xf9\x4d\x2f\x46\x8a\x35\xfc\x36\xfd\xc5\xc8\xec\x45\xb3\x16\x15\x82\xf3\x7d\xb1\xb6\xd7\x87\xf4\x22\xf1\x50\x25\xf0\xb8\x76\x80\x85\x1e\xec\x81\xc1\x2e\xda\x36\xfc\x54\xbe\xc6\x07\xce\x46\x51\xc9\xdd\xcc\xe0\xac\x67\xb5\x90\x80\xa6\xc3\x22\x6c\xa3\xfa\xda\x5d\x55\x3d\x81\x18\xd8\xc1\xd9\xd7\x97\xa6\xc1\x7d\x54\x51\xd8\x45\x9a\x75\x68\x94\x83\xb3\xa4\x5b\xcb\x19\xa7\x45\x63\x80\x4b\xaa\xae\x43\xc6\xcb\x51\x4a\xb8\xcf\xc5\x67\x35\x12\xa8\xc3\x0c\x2c\xf7\xae\x34\xcc\xf9\x13\x3d\xcc\x7a\x0a\x8d\x33\x2e\x14\xed\x98\x21\x31\xda\x9e\x42\x62\xb2\xdd\x86\xe4\x78\xfe\xe2\x74\x6b\xab\x78\xd9\x9c\xbd\x98\xca\x74\x8e\x2f\x9f\x5b\x5c\x1d\x64\xb9\xf7\x53\xc4\x38\x5b\x13\x55\x7d\xfa\x45\x5c\xc2\xe3\x79\x98\x38\x55\x85\xfd\x33\x2d\x3b\xf3\xa7\xa8\x06\xc7\xbc\x6f\xa1\xc6\x55\x34\x06\xc7\xb7\xd3\x87\x81\x70\xc9\x91\x5f\xeb\x57\xe7\x0f\x7f\x13\x14\x4a\xa5\xbe\x78\x7d\x92\x6c\x83\x43\x12\x71\xdb\x41\x42\x20\xbc\x52\xdd\x76\xe0\xfa\x8c\x5b\x3b\xad\x3e\xa7\xc8\x2a\x3e\xed\xb5\x1d\xc2\xe1\xe8\xf5\x9d\x27\xfc\x02\xbe\x08\x87\x83\xb2\x2e\x70\x9b\x0b\xe4\xc6\x77\x1f\x42\xd7\x69\x45\x7c\xeb\x1e\x18\x79\x5e\xf3\xee\x85\xe5\x28\xef\x55\xf9\x4a\xdc\x33\xf8\x08\xfc\xf3\xca\xbb\xb0\x7f\xcc\x60\xdd\xd3\x6c\x6c\x8f\x19\x3c\xe6\x06\xbe\x4f\xe9\x37\x3f\x33\x3b\x76\x2f\xaf\x29\xb3\x92\xdb\x9f\xb8\xdd\xb2\xa8\xf8\xa4\x25\x6c\xcb\xdf\x96\x85\x90\xb4\xbf\x45\xe5\xc7\x9a\xbc\x35\x1f\x15\x8e\x1f\xbd\x3f\x4e\x5f\x86\xde\x5b\x9b\xbb\xef\xbc\x97\x9a\x42\x2c\x1d\x2d\x41\xc2\x4c\x4f\x2d\x9a\x7a\x4d\x4b\xf4\x9f\xf1\x91\xbd\xe0\x8f\x30\xf7\x72\x5b\x93\x6d\x0c\xc4\x01\x89\xde\xf8\x2f\xb3\x32\xea\x95\x59\x87\x55\x6d\xdf\x95\x5b\xc8\x23\xfa\xea\xec\xfc\x35\x1c\xaf\x65\xc2\xf4\xa5\x5a\xe9\x08\x0b\x27\xd1\x3c\x1d\xdc\x69\x5e\x32\xc0\x10\x3e\x91\x8d\xe5\x19\xc1\x24\xdf\xad\x58\x22\xb0\x06\xab\xd5\xbd\x9f\xf7\xec\xe4\xc5\xeb\x21\xec\x14\x73\xd0\xac\x31\x33\xd1\x8c\x49\xce\x21\x67\x90\xd3\x43\xe1\xe3\xc7\x01\xe4\xde\x41\xc8\xda\x3b\xc4\x13\x65\x15\x0e\x0a\x90\x04\xb3\x05\x75\x1e\xe1\x2f\xd4\xf7\x43\xc0\xd3\x8f\x0c\xec\x83\xa6\x0f\xc4\x69\xd2\xbd\x73\x1a\xd2\x1a\x71\xcf\x39\xd4\xef\x21\x99\xba\x32\xa4\x99\xe3\xc5\x14\x56\x08\xaf\x8c\x09\x7d\x1f\x16\x70\x80\x07\x56\x8c\xaf\x22\x8c\x81\xd6\x7c\x39\x94\x7e\x45\x88\x43\xc6\x90\xf4\x41\x92\x52\xc4\x13\xbe\x5e\x92\x5b\x95\x70\x5f\xed\xf4\x02\x7b\x52\x76\xbd\xf2\x28\x15\x83\x60\x82\xd7\xce\x59\x14\x2b\x36\xcd\x0d\x46\x5f\x95\x17\x66\x60\x79\x74\x44\x3e\x85\x83\xcb\xae\xdb\x5a\xbd\xb6\x7e\xf3\x17\x6a\xe0\xd9\xf9\xf9\xe9\xd9\x70\xb4\xb7\x54\x3a\xe8\xfe\xb6\x64\xb3\xf3\xfe\xc9\x7b\xce\xef\x38\x8e\xe0\x75\x73\x9a\x7b\x4d\x82\x41\x6f\x7e\x8a\x61\x1d\x31\xba\x07\x7b\x63\x82\x8c\x1e\xb0\x0c\x22\xca\xfe\xb9\x8d\xa5\x12\x40\xc6\xa2\x95\xe6\x7a\x87\x9e\xd9\xaa\xa5\x0d\xe7\x5c\xdc\x23\x30\x61\x2d\xc7\x5e\xd3\xcc\x84\xea\x5d\xa2\xa5\xb5\x5e\xf4\x30\x4c\x51\xff\x8b\x3c\x82\xe6\x28\xb7\xfa\xba\x1d\xb1\xb3\x0f\x21\xcb\x87\xc8\xa5\xd4\x28\x3c\xae\xcb\x36\xef\x71\x9a\x6c\xc6\x36\xda\xb8\x86\x86\x95\x96\x53\x79\x18\x8f\x8f\x54\x62\x31\xd1\xc1\x4d\xdc\x29\xf2\x1d\x27\x14\x82\x53\xb5\xd1\xb6\x38\xdd\x87\x68\x35\x98\xa8\x0d\xef\x22\xe5\xbc\x90\xe4\x73\x81\x38\x26\xd1\x06\xea\x63\x23\x79\x37\x24\x57\x2c\x12\xc6\xe2\xa4\xc5\x1f\xe6\x89\x18\xeb\xf2\x26\xc6\xe2\xb2\x9a\xed\xfc\xf5\x76\x16\x83\xb2\x86\x13\xa9\x76\x75\xb2\xa1\xa3\x3b\x56\x0f\x09\x6e\xf3\xbf\x84\x9f\xda\x0a\xf2\xc8\xf7\xe9\x6b\x2d\xb1\x8b\xdd\x8a\x0d\xcd\xe9\x85\xcd\x7b\x1a\x43\x59\x2e\xbb\x4a\x99\xcb\xf2\x43\xe3\xfc\x18\x23\xe0\x87\xb6\x5d\x3d\xbc\x17\xc7\xc0\xc5\x7c\x06\x00\x17\x20\xf7\x4f\x2e\x2e\xb3\xf6\x43\x62\xfd\xfe\x10\xbc\x9b\x5c\x9c\xd6\xa4\x72\x31\x61\x49\xfd\xf6\x9f\xe2\x30\xbb\x69\xcc\xe0\x1f\xc4\x1d\xea\xe6\x2f\xea\x41\x1c\x55\xfb\x71\xd5\xf9\xb0\x53\x3c\x56\xf9\x2a\xdb\x12\x15\xa6\x0e\x84\x12\x2a\x03\x08\x72\xc1\x53\x26\x31\xc7\xa1\x36\xba\x7c\x1d\xa1\x0d\x13\x47\x29\xb7\x20\x2f\x3f\x88\x3b\x8d\x9d\xfa\xc7\x85\x7b\x80\x01\x57\xac\x2b\x79\x71\x32\x8f\xd8\x17\x3c\xae\x6c\xf6\x47\x77\x5b\x99\x57\x42\xd7\x34\x15\xad\x83\x7c\x4d\x73\x99\xaf\xf0\x8e\x0a\x9e\x50\xc1\x25\x82\x22\x3c\xad\x86\x75\x78\x3d\xd7\x9f\x7f\xb0\xf3\x3f\xb0\xb3\x18\xbc\x12\x10\xcd\xf4\x0f\x1b\x4a\xa0\xb5\x06\x43\x12\x7f\x5f\xd2\x37\x60\xe5\xab\xa0\x2f\x3c\xb0\x27\x5f\xd7\x5c\x18\x36\x46\x2d\x4b\xec\x89\x4a\x13\x45\xf1\xe7\x8e\x3e\xf2\x9b\xff\x90\x8a\x2c\x9e\xbe\x2b\x38\x74\xaf\xb6\x67\x35\x7c\x2a\xb5\x25\x21\x7d\xa5\x59\x49\xbe\x6c\xfa\x96\x13\xe5\xd1\xcd\x7b\x7c\xb6\xb5\xe3\x14\x7e\xe0\x8f\x53\xae\x8d\x79\xa7\x35\xa2\x13\x5a\x21\xc9\x96\x97\x52\x9f\xb1\xda\x15\x84\x0a\xe5\x24\x74\x47\x92\xda\xfc\x7a\xe1\xfa\xe4\x3a\x24\xa9\xae\x47\xda\x1d\xc6\x6c\xd1\x36\x5b\x04\x54\xfc\x3e\x3c\x7a\xe4\x5e\xaf\x78\x4a\x59\x19\x74\x50\x9b\x71\xc0\x6d\x84\xae\xc5\x0b\x33\x88\x6f\x20\x8f\x0c\xcf\xf8\x1e\x28\x07\x3a\x2d\xeb\x6d\xaf\x7a\x27\x62\x5a\xac\x72\x44\xb4\x10\x28\xad\xa3\xb9\x90\xa8\x09\x1c\x53\x5e\x9f\xea\xa0\x79\x5d\x2c\x69\xff\xf8\x9a\x3e\x88\x33\x7c\x30\x9f\xff\xdb\xbf\x31\x34\xfd\xfc\xf7\x7f\xcf\x5e\x3e\xf9\x22\x33\xef\x11\x4a\xcd\x66\x9b\x9c\x18\x7a\xbf\x71\x50\xf4\xf9\x75\x02\xc8\xb7\x91\xd9\xc1\x96\xcf\x2b\xde\x48\x00\x07\xfc\xbe\x7b\xe7\xff\x06\x00\x00\xff\xff\xba\xcf\xf7\x30\x3a\xa4\x00\x00") +var _confLocaleLocale_esEsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\xcd\x8e\x1c\x47\x92\x27\x7e\x27\xc0\x77\x08\x69\x40\x48\x02\x8a\x49\x74\x37\xfe\xff\x5d\x08\x4c\x6a\x8b\xc5\x92\xc8\x5d\x7e\xd4\xb0\x48\x0d\x66\x05\x21\x15\x99\xe1\x95\x15\x62\x64\x44\x76\x78\x44\x15\x93\x83\x39\xec\x6b\xec\x4d\x47\x1d\x04\xec\xa0\x6f\x7d\x69\x40\xf5\x62\x6b\x3f\x33\xf3\xaf\x88\xc8\x2c\x4a\xdd\xb3\x07\x89\x95\xe1\xe6\x5f\xe6\x66\xe6\x66\xe6\xe6\xe6\xf9\x76\xbb\x28\x8c\x5d\xcd\xdf\xd6\x99\x35\xed\x55\xb9\x2a\x9b\xac\x30\xd9\x37\x65\x97\xe5\x7d\xd7\x64\x79\xd5\xfc\x98\x17\x4d\xb6\xcb\x6c\x59\x67\xab\x66\xb3\xad\xca\x55\x4e\x50\xb5\xb1\x77\xef\xdc\xbd\x73\xd9\x6c\xcc\xfc\x59\x4d\x1f\xee\xde\x29\x72\x7b\xb9\x6c\xf2\xb6\x98\x9f\xe5\xb5\xa9\xd0\xce\xaa\xa9\xbb\xb6\xa9\xee\xde\x31\xef\xb7\x55\xd3\x9a\xf9\x29\xff\x9b\xb7\x54\xd3\x54\xdb\xf9\xf1\xae\x2f\xf2\xbb\x77\x6c\xb9\xae\x17\x65\x4d\x0d\xd1\x00\xf2\x96\x86\x62\xcb\x9b\xbf\xd4\x54\xd0\xd0\xef\x6a\x91\x94\xf3\x00\x15\x22\x13\x80\x2f\xb3\x3f\xfe\xfa\x7f\xb2\x6d\x6e\x9b\xec\xa1\xdd\xe4\x55\xf5\x68\xd5\x9b\xba\xcb\x01\x99\x33\x48\xd1\x3c\x7c\x20\x25\xda\x5b\xd3\x77\xf3\x13\xd3\xb6\x49\x6f\x28\xe8\xb7\xf3\xf3\xde\xae\xda\x72\xbb\x92\xaf\xad\x59\x97\xb6\x33\xed\xfc\x35\xff\xd1\xd2\x4c\xaf\xcd\xd2\x96\x9d\xa1\x79\xae\xcb\x3a\xcf\xfe\xc5\x2c\xef\xde\xb9\x32\xad\x25\xb4\xcc\xbf\xc5\xbf\x5c\x71\x9b\xaf\x09\xe4\xe6\x27\xc0\xdc\xbd\xd3\x19\xc2\x5d\x8e\x4a\x55\x5e\x77\x65\x55\xd1\x37\xfa\x6b\xdd\x03\xea\xb9\xc1\x1f\x3f\x9a\xbb\x77\x56\xad\x21\xa0\x45\x6d\xae\xe7\x27\xf4\x67\x9b\xd5\xbd\xb9\x6a\x66\xb3\xd9\xdd\x3b\x3d\xad\xd0\x62\xdb\x36\x17\x65\x65\x16\x79\x5d\x2c\x36\xc0\xe8\x99\x69\xe9\x03\x66\xda\xdb\x3e\x6f\x4b\xac\xd5\xe6\xe6\x27\x2b\xd3\x31\x05\xe1\x6d\x91\xdb\xf9\xb3\x82\x10\x52\x5e\xd0\xe2\xd1\x6a\xd2\x3a\x36\x58\x3d\xb4\x58\xe7\xb4\x82\x2f\x9b\xcd\xb2\x35\x51\x23\xb4\x62\x9b\xbc\xac\xe6\x27\x4d\xdb\x9a\x26\x33\x95\x59\x75\x2d\xcd\xaa\x5c\x35\x98\x98\xb5\xd7\x0d\xad\xf3\x09\x96\x37\xb7\xe6\xe6\x3f\x72\xe0\x69\xd1\xed\xb6\xa0\x86\x75\x6b\x2c\x37\xc6\x63\xa7\x39\xe5\xdb\x6e\x75\x99\xcf\x4f\xe4\x5f\xf4\xdc\x9a\x6d\x43\x28\x6c\xda\x1d\xa1\x55\xff\x44\xaf\x4d\xbb\xce\xeb\xf2\x43\xde\x01\x95\xaf\xf4\x87\x2e\xc4\xa6\x6c\xdb\xa6\x9d\x9f\xda\xad\xf9\x91\x40\x09\x45\x0b\x34\x33\x7f\x89\x5e\xb2\x36\x6e\x06\x65\x9b\x72\xdd\x02\xdf\x28\xce\xb3\x17\xf8\xa5\x0d\xa1\xf4\xa2\x69\xdf\x69\xcd\xaf\xe9\x4f\x1a\x6d\x95\xbd\x1e\x36\x41\xa3\xd1\xea\xcd\x60\x28\x79\x4d\xcb\xc6\xe5\xc7\xc5\xa6\xac\x41\x17\xb4\x56\x01\x4a\xf8\x23\x47\xd9\x62\x0b\x6e\x08\x3c\x91\xfb\x0a\xda\x58\xbe\x5a\x35\x7d\xdd\x2d\xac\xe9\xba\xb2\x5e\x5b\xa0\xf5\xa2\x5c\xf7\xad\xb6\x83\x4a\x55\x9e\x09\x49\xd3\xb2\xee\x01\xbb\x7b\x67\xd7\xf4\x9e\x40\xe6\x6f\xfa\x6c\xcb\xa4\xa1\xdf\x7d\x35\x2a\x58\x85\x9a\x3c\x02\x9e\xad\x5d\x5c\x18\x53\xcc\x0d\x96\xb4\x60\xd6\xa9\x9b\x0e\xfc\x48\x2d\x6f\xfb\xaa\x22\x64\xff\xb9\x37\xb6\xb3\xf3\xf3\x86\x84\x40\xd9\xf5\x85\x8c\xad\x35\x5d\x09\xae\x28\xad\xa5\xf2\xf9\x59\xbf\x4c\x65\xc4\x2a\xaf\x57\x84\x80\x13\xfe\x07\xac\x7f\xf7\xce\x77\x96\x48\x7b\x75\xf9\x3d\x66\x83\x3f\xe6\x8f\x89\xe5\xf2\x96\xc9\x7c\x1f\x69\x80\x58\xe7\x6f\x1d\x79\x72\x67\x2c\x79\x88\xb0\x69\x90\xd4\x4d\x53\x98\xf9\xc9\xcd\x5f\x8a\x72\xcd\xc4\xfd\x5d\x59\xdb\x8e\x38\x9e\x3a\xd1\xbf\x08\x1c\xff\xba\x59\x77\x65\x57\x81\x87\x6d\xe3\x50\x5c\x46\xe5\xd9\xb6\x69\xb3\x6d\x5b\x6e\x4c\x9b\x67\x57\xe6\x03\x06\xf6\xe7\x9e\xb8\x7e\x51\x2c\x45\x66\x7e\xd3\xac\x6d\x56\x9b\x15\x89\x0f\x12\x35\x2f\x76\xe7\xff\xfc\xfc\x28\x3b\x6b\x6c\x47\xf4\x4f\x7f\x67\x4d\x46\xff\xa7\x0a\x7f\xa2\x49\x51\x1d\xe9\xee\x24\x41\x3d\xfa\x5d\xe6\xc2\x2c\x45\xde\x35\x56\x20\xc1\x46\x6f\xca\x6d\x33\x51\x7c\x49\xed\xcf\x8f\xa9\x8d\xae\x95\x59\xa4\x68\x99\x66\x4d\x6a\x73\xc0\xe6\x34\xd9\x71\xbf\x10\xc9\xd4\xd8\x19\x4d\xfc\x22\xbf\xa2\xff\xf7\x24\xa7\xca\x95\x21\xf6\xcf\x36\x0d\x2d\x43\xf6\xec\xe5\xcb\x57\x4f\x1e\x83\x7e\x98\x22\x47\x73\xa1\x35\xcc\x57\x24\x2b\x89\x30\xfa\xee\xe2\xbf\x2e\xd6\xa6\x26\xf4\x55\x8b\x55\x49\xd2\xb9\x55\x24\x11\x3a\xac\xad\x48\x7a\xd1\x7a\xbd\x68\x48\x1c\x9d\x9f\x3f\xc7\xc8\xbb\xcb\xf9\xeb\x9e\x29\xfc\xcf\x15\xf0\xac\xc3\xc1\x37\x66\x4f\x10\x4a\x79\xd5\x4c\x0d\x1f\x7f\x04\x64\x93\x58\x5f\x90\xb4\xed\x76\x0b\x6d\x89\xdb\x7e\x9e\x67\xad\x34\x35\xae\xae\x75\x89\xe2\xb3\x6d\x6f\xe8\x33\xd1\x39\xf1\xf3\x55\xbe\xba\xf9\x25\x9f\x81\x9a\xdc\x4c\x26\x57\xf1\x1b\x29\xe4\x9d\x93\x88\x82\x58\x9a\xf6\xd5\x31\xc6\x8f\x75\xf3\x14\xae\x57\x90\x80\xf5\x3a\xcb\xff\xdc\xdf\xfc\x02\x6c\xd7\xbe\x5a\xd7\xa7\xb2\xe7\x28\xfb\xf5\xa7\xbc\xea\x20\xe5\x57\xc4\x4c\xcd\x27\xc2\x30\x0b\x8f\x3e\x46\x55\x24\x0c\xd1\xc8\xeb\xbc\xfc\x90\x7d\xfe\xba\x69\xba\x2f\x22\x70\xd7\xf3\x1b\x5a\x03\x9b\x55\xf4\x5f\x54\x0d\x3f\xb0\xe6\xd6\xa9\x03\x84\x2e\xda\xa2\xda\x22\x6f\x6f\x7e\xaa\x33\x53\x03\x45\x34\xc2\xb2\xa5\x9d\x01\x15\xc0\xb9\x3d\x6d\x9f\x20\xc7\xe3\x65\x5b\xb6\x98\x87\xdf\x4d\x5c\x91\xeb\xf3\xd4\x97\x05\x0e\xea\x80\xc5\x8c\xa4\xa1\xa1\x7d\x3c\x07\xc2\x78\x3e\xaf\xf3\x9b\x5f\x3e\x0c\xe5\x33\x4d\xdf\xfc\x68\x56\x3d\x56\x09\x28\x07\x8b\x35\xb4\x63\xd5\xf3\x27\x0d\xc4\x6b\xe3\x7e\xfb\x0e\x2d\xb4\x99\x0b\x1a\x6c\xce\x6d\xdb\xec\xed\xeb\xe7\x56\xa8\x72\x55\x35\x35\xb5\x03\x86\x3f\x3f\x7f\x4a\x4d\x5d\x76\xdd\x76\x41\x3f\x3b\x12\x66\xa6\xa5\x8a\x4f\xdf\xbc\x39\x8b\x3e\xfb\x35\x93\x52\x20\xa3\xca\x48\x38\x12\x4e\x56\x3d\xed\x70\x84\x22\x0c\x3f\x0f\xeb\x3d\x93\x05\xef\xdb\x6a\x4e\xfd\x2a\x3d\xe4\x43\x7a\xa0\xe2\xdf\x38\x5e\x0c\xec\x01\xfe\x77\x4e\x18\x21\xc8\x6a\xdd\xd7\xb4\x66\x2b\xde\xb6\x6d\xb2\x6f\x5b\xa6\xe3\x66\x8b\xad\x75\x1f\x21\xbf\xda\xae\xb8\x54\xb7\xff\x7d\x32\xab\xca\xce\x23\x65\x51\x74\x04\x62\xdb\x0d\xa1\x87\xe5\xd3\xf9\x8b\x37\x67\xd9\x53\xfa\x4b\x3f\x5e\xb4\xcd\x66\xfe\xc4\xd8\xc2\x44\x1f\x3c\x7f\x9b\x0d\xf1\x5e\x0d\x62\xa2\x86\xb9\xdf\xa3\xec\xf5\xd7\x27\xd9\xff\xf7\xa7\x3f\xfe\x71\x96\x9d\x31\x3f\x12\xe9\x90\xae\x57\x11\xbf\x00\xb0\x27\xa5\x8b\x29\x2f\x08\x9e\xb1\x9e\x72\x44\x02\x58\xd8\x58\xd6\x87\x76\xfc\x0d\x31\x7b\xf6\xa9\xf0\xe4\xa7\xd9\x43\xee\xeb\xbf\x99\xf7\x39\x69\x66\x66\x46\x4a\xd1\xa3\x19\xb6\x76\xda\x3d\x5b\xa1\xe3\x74\x68\xaa\x0b\x9d\x26\xba\x90\x82\x4f\xc9\x5d\xa5\x59\x6d\x22\x28\x92\x0b\x96\x9b\xed\x66\xfe\x34\x5f\x92\x7c\xc5\x08\x89\x18\x4e\xe4\xa3\xe2\x58\x86\x1c\x34\x4e\x5e\x0d\xec\xc7\x17\xbb\xa4\x9a\xcd\x5e\x36\xa2\xd6\x05\x5d\xc1\xaf\x07\xad\x91\xc1\xc6\x8f\xa5\x32\x7b\xf7\x1f\x5e\xca\x82\x68\x69\x97\xbd\xa2\xbe\xac\x5f\x5b\x92\x63\xcd\xc5\x45\x55\xd6\x46\x64\xf5\xf1\xaa\x2b\xaf\xf2\x56\x76\x03\x88\x6d\xb2\x08\xa8\x39\xf3\x5e\x08\x38\x86\x25\x2e\xd9\x92\x22\x4d\x4b\x9e\x87\x4a\x27\x4f\x5e\xd2\x0e\xbb\xaa\x7a\xeb\x58\x86\x9b\xa1\x21\x90\xce\x52\xf4\x2b\x95\x6f\x5d\x24\x8e\x56\x7d\x8b\xdd\xd9\x1a\xb1\x4e\x58\xf4\x54\xcd\x2a\xaf\x98\x0e\xc0\xf4\xa5\xcd\x97\xa4\x0e\x0b\x6e\x5b\xd1\x1b\xa3\x6e\x8f\xc9\x88\xb9\x1f\xd0\x38\x05\x3e\x1e\x2b\x2c\x9f\xfb\x0a\xd2\xf0\x2a\xaa\xac\x3a\x02\x0d\x82\xca\x22\x25\x0e\x98\xdb\x36\x05\x58\x7e\xc5\x0a\xbb\xe8\x69\x96\x95\xdf\xdc\xce\x54\x6f\x20\xed\x58\xad\x98\xc5\x55\x49\xca\x7d\x84\xcc\x60\xd5\x9c\xab\x55\xd3\x90\x06\xb5\xce\x45\xd0\x31\xc7\x93\x51\x91\xa9\x25\x61\xa7\x1b\xd4\x59\x9c\x63\x7c\xc0\x9d\x8e\x18\x88\x5c\xe7\x40\x28\xef\x6b\x35\x69\x32\x34\x5c\x6d\xe9\x88\x21\xaf\x4a\x48\x5f\x42\xa7\xcd\xf2\x1a\x64\xbd\x01\xc6\xd1\x8e\x4c\x4b\xea\x80\xd4\x5c\x3d\x16\x5f\x0d\xfd\xf9\xc0\x21\x69\xe6\x74\x5d\xd5\x32\x45\x41\x7a\x09\x06\x14\xf9\xce\x92\x5e\xf0\x03\xe6\x8d\xcc\xb3\x04\x91\xf9\x25\x19\x87\xd9\xa6\xb4\x1b\xc2\x75\xc0\x3b\xcb\x56\xe2\xa2\x75\x9e\x3d\x7b\x32\xff\x03\xe1\x87\x7e\x30\xca\x49\x41\xbb\x22\x06\x5c\x97\xb2\x51\x0d\x5a\xa3\x75\x24\x53\x88\x94\xd8\xdc\xd1\x8b\x8c\x72\x1f\x2b\x80\x0d\xfd\xc8\x8e\xe3\xb6\x5c\xcd\x7d\xd6\x92\xd3\xf4\xa7\xb4\x2f\x65\xf7\xa4\x94\x59\xbd\xcd\x12\x38\x69\xe3\x80\xdd\xa5\x6a\xec\x62\x4d\x1b\x9e\xd3\x65\x5b\xd5\x38\x68\xf9\xba\xc5\xba\xec\x16\x17\x10\x48\xc5\xfc\x6b\x02\x84\xf9\x0e\xde\x5a\x0a\x9d\x91\x80\x23\xab\xb1\xc9\x3e\x23\xb0\xcf\xbe\xcc\xee\x5d\x39\x4d\xeb\x4f\x90\x2c\x8b\xfc\x8a\x6a\x82\x3b\x60\x21\x5c\xa9\x15\x0b\x8d\xc8\x36\xd8\xf3\x72\xa7\x24\x1d\xf1\xc6\x23\x0a\x22\x96\x39\x27\xf5\x04\xcd\x2f\x89\x34\xb0\x56\x64\x7e\xc0\x26\x47\x19\x61\xe8\x1e\x51\xd9\xcb\x57\xc0\xac\x6f\x92\xbe\xae\x9b\x65\x5f\x56\xc5\x0c\x73\xba\xca\xab\xb2\x80\x52\xad\xb4\x03\x45\x6d\xac\x59\x8e\x54\xb6\x9a\x89\x8b\xe5\x3e\xed\x91\x32\x1d\xd7\x58\xd0\x88\x52\xa5\xaf\xf5\xaa\x44\xac\x20\x51\x33\x54\xf1\xe6\x27\xaa\xa9\xed\x78\x6d\x05\x78\xa1\x4d\x83\x0c\x94\xd3\x94\x18\x09\xdb\x44\x7d\xaa\x82\x00\xa9\xe9\x76\xae\xa3\x8b\x28\x98\x64\x4b\x0f\x47\xc5\x3d\x9b\xdd\x7f\x44\xff\x27\xdc\xe7\x57\x46\xb6\x82\xb5\x5b\xb4\x53\x18\xb8\x58\x34\xd5\xb4\xc6\x4a\x76\x3a\xcf\x84\xe7\xf6\xe2\x6d\x8a\xd9\x74\x97\x19\xcd\xdc\x91\x98\xed\xa1\x86\xd9\xf9\xe3\xd2\xd4\x57\xa6\xa6\xfd\xe1\x93\x8c\x54\x92\x1c\xb2\x81\xec\x2d\x12\x17\x2c\x54\xa8\x4d\x60\xe3\x32\xdf\x91\x54\x20\x5a\x20\xa1\x40\xb8\x00\x45\x1e\xd1\x06\x7d\x55\xde\xfc\xdc\x76\x86\xb6\x4f\x52\x56\x49\xb3\xa5\x85\x33\xac\x84\x7c\x07\xb7\x11\xd9\x65\xbd\x28\xc0\x4d\x55\xd0\x66\x3b\xe2\xaa\xac\x99\xda\xd6\x83\x8d\xe3\x2a\x26\x4c\x64\xaf\x4b\x5a\xae\x85\xf7\x45\x01\xc3\x9d\x79\xdf\x91\xf9\xb9\x59\x96\x8e\x11\xf8\x93\x88\xf6\x27\x0e\x92\x36\xd9\x1d\x53\x8e\x9d\xbf\x28\x6d\xac\x6c\x5a\xf0\x70\x45\xbc\xd1\x60\xc7\xb8\x32\x0a\x15\x43\x10\x27\xfb\x72\xc0\x53\x53\xa4\xb6\x4b\x4b\xaf\x06\x5e\x01\x2a\x13\x57\x86\x14\xbf\x90\xbf\x19\x2f\xea\x26\xfb\x5e\xad\xe0\x79\x3a\x08\x02\x20\x91\x06\xab\x39\x78\x89\x16\xea\x3d\x50\x6f\x11\x84\xab\x78\x2c\x4e\xd4\x5d\xe0\xb5\x8e\x4b\xb3\x85\xa6\xb2\xb1\xeb\xf9\xaf\x7f\xfb\x57\x52\xb7\x69\x69\x61\xa7\x79\x71\xfc\x15\x99\x16\xe2\x81\x73\x2e\xb1\x4f\xbc\x07\xee\xb7\xb5\x72\x5a\x57\x37\x3f\x7d\x20\xe9\xf4\xc9\x70\xcb\x15\x0f\x16\xd9\x66\xf3\xe7\x24\x58\xe0\x92\x22\x8a\x62\x51\xef\xf7\x5b\x61\x2d\x92\x1e\x97\xaa\xe7\x14\x0d\x69\x81\x4e\xe4\x1c\xf1\xea\xe5\x50\x8b\x61\x85\x8e\xb6\x62\x2c\x29\x61\x8c\xed\x91\x51\xd7\x2c\x5a\xa3\x8e\x67\xd9\xf3\x48\x59\x66\xd5\x29\x56\xc2\x60\x39\x25\xa3\xaa\xd3\x61\xc9\xe6\xbe\x31\x9b\x25\xda\x36\xb4\x5a\x44\xe5\x3f\x13\xe3\x6e\x48\xdb\x23\x75\x73\x4d\xd2\xc3\x0b\xfd\xa7\x26\x6b\x2a\x52\xb4\xe0\x7f\xdb\x94\xe2\x19\x75\x44\x0b\x58\x13\xc1\xfe\xfa\xb7\xa7\xc4\x4f\x1e\xbc\xeb\x63\xf0\xaf\xbc\xa3\x92\xc4\xd3\x35\xc1\xbe\x54\x03\x2a\x5d\x05\x1a\xf9\xcd\x2f\xac\xe3\x18\xd9\x56\x67\x7e\x27\x12\xb5\x87\x55\x4a\x60\xc2\xad\xc8\xdb\x5a\x1c\x76\x8e\xeb\xc4\x7f\x1b\xe1\xc3\x82\xd3\x89\xfd\xaf\xe0\x4f\x25\x6b\xe3\xe1\xf2\xd1\x3d\xfb\xf0\xc1\xf2\xd1\x60\x7d\x36\xdb\xb6\x37\xcb\x1c\xe3\x5e\x92\x70\x34\x3f\xb2\xf0\x71\x8e\x25\x53\xb3\x32\x41\x73\xe8\x4b\xc3\x6a\xc7\xbd\x22\xc3\x00\x9d\x75\x03\x27\xb3\xe9\x84\x55\x69\x68\x6c\x0e\xb2\x9b\xc9\xeb\x1a\x4e\xf1\x91\xbd\x32\xa5\x59\x26\x0b\xc6\xd8\x84\xe8\x60\x0d\xcf\x2c\xd8\x21\xe6\x18\x47\x34\x31\xae\xe2\x59\x86\xd1\x52\x95\xa4\xba\x4f\x93\x2b\x88\x81\x95\x24\xf8\xc1\x58\xfe\x33\x05\x13\x6a\x6e\x7e\x11\xb1\x82\x91\xb1\xc8\xe5\xd6\x57\x7e\x64\x05\x8d\xd9\x96\xc0\xc3\x05\xd4\x5b\xf6\x5d\x25\xe8\x33\x76\x0b\x8f\xd3\x9f\x88\x48\x6a\xd2\x5f\x40\x63\x97\xb9\x5d\xf4\xb5\xae\x85\x29\x84\x8c\x9f\x92\xc0\xe1\xdd\x75\x7a\xae\xd9\xe7\x7e\x75\xbe\x90\xdd\x08\x5c\xe5\xd6\x13\x2c\x75\x5e\xe2\x3b\xb5\x0d\x3d\xbb\x5c\x42\x70\xf7\xf5\xde\xb5\x0f\x76\xba\x65\x91\x0f\x35\x98\x08\xc1\x6c\x84\x71\x98\x70\x22\xcd\xe0\x88\x1a\xfe\x40\x86\x6a\xb9\x7a\xa7\xba\xbe\x5f\xef\x6c\xd9\x74\x62\x11\x33\x9e\xdd\x74\x3c\xb8\x38\x41\x98\x14\x18\xa3\x10\xda\x7b\xe6\x98\xe2\xd7\x19\xad\xac\xcc\x58\x16\x5c\x9d\x81\x21\xfd\x11\xc6\xa2\xa2\x28\x77\xc7\x05\x30\xba\x6b\xda\x54\x03\x47\x81\xec\x30\x5a\x0c\xba\x73\x63\x5e\xe7\x3c\xe8\x78\xcc\x9f\xb7\xe6\x0b\x1d\x35\x6f\x35\xdc\x15\x97\x30\x89\x50\x1f\x24\x92\x56\x44\x5a\xd4\xa8\xf3\x65\xad\x52\x3f\xba\x8d\x65\xc1\x6b\x57\x05\x16\x70\x9f\x82\x3a\x3d\x80\x5d\x9f\x09\x85\x02\x52\x5c\xa1\xe3\xa5\x04\x0f\xbf\xdf\x96\x90\x97\x99\x4e\x3c\xe3\x76\x9a\xd9\xb0\x77\x67\xa3\xf3\x4c\x4f\x06\x33\x6d\x0f\x8c\xcc\x37\xd0\x35\xcd\xc2\x5e\xc2\x95\x42\xea\x49\xd5\xd4\x6b\xf8\x8d\xc7\xd3\x0e\x9e\x37\x58\xfa\xa4\xad\x43\x0f\xca\xfe\x7f\xd1\x16\xc8\x4c\xcc\xe1\xc6\xdd\x19\x3b\x3f\xbf\xf9\xe5\xee\x9d\xba\x21\x6d\x81\x36\xd2\xa6\x80\x3d\x7c\x5a\xc0\x18\x66\x48\xd8\xf8\x04\xf8\x96\x1a\x79\xb9\x47\x53\xc7\x96\x9a\x96\x55\xe9\xd9\xc1\x29\xaf\xed\x93\xdb\x28\xe6\xee\x9d\xb3\x49\x6d\xff\xb5\x61\xf7\xed\xb7\xbd\xa9\xae\x40\x45\x06\x67\x49\xcb\xb2\x1d\xad\xf3\xf9\xf9\xd3\x37\x6c\x87\x24\x3e\xc2\x93\x8a\xd4\x42\xb6\x05\xcf\x9f\xde\xbd\xf3\xb4\xeb\xb6\xf6\x6d\x4b\xa4\xc6\x2e\x9e\xb7\xaf\x9f\xa3\xdb\x5d\xd5\xe4\xc5\xdb\xe0\x4a\x62\x15\xfc\xee\x9d\x37\x26\xdf\x0c\x67\x06\x4b\x71\x4b\x63\x25\x3b\xf8\x72\x80\x11\x58\x47\x6d\x38\xd2\x60\x73\xe7\x74\x9f\xf1\x21\x0e\xd8\xd4\x22\x0a\x86\xa8\xe1\x83\x99\x1f\x26\xdd\xa7\xcd\xec\x07\x92\xbb\xd5\xf6\x32\x67\xa5\xcc\xc3\xc2\xf4\x8c\xdc\xc5\x85\x59\x1a\x3e\x83\xcc\x8e\xab\x8b\xbc\xee\x37\xa6\x85\xcf\x8a\x08\x14\xb5\x3e\xbf\xbf\xf8\x62\xd0\x4e\x41\x5c\xee\xda\x42\x65\xae\x0b\x01\xa6\x6d\x92\x1a\xcd\xed\xd0\x86\x0c\xa7\xb1\x68\xb9\x24\xa2\x08\x84\x04\x11\xd6\x95\xdd\xa8\x0d\x6d\x51\x3f\x92\xb4\xa4\x0e\x32\x16\x80\xd8\x5b\xc4\x29\x41\x9b\x43\xaf\xde\xbb\x1f\xb0\xe7\x7c\x30\xe3\x0e\xe1\xa1\xcd\x37\xf9\xcd\x7f\x34\x24\x8b\x01\xc6\x0a\xf9\x08\x94\x35\x4e\xf6\x6e\x56\x4c\xdc\x16\x76\x40\x98\x3d\x57\xcc\xdf\x1f\xaa\x88\x23\x3b\x9c\xeb\xbd\x27\xfe\x1e\x57\x16\xc1\x17\x2d\x83\xaa\x64\x93\x72\x4f\x15\x7e\xd4\x83\xc3\x71\x5c\x0b\x64\x15\x03\xd5\xef\x48\xd1\xa8\x15\x50\x6c\x14\x18\x7e\x4d\x4d\xa2\xb2\x68\xbe\xf4\x07\x7c\xb4\x25\xab\x3d\x06\x73\x49\x3f\x3a\x01\x23\xf8\x9f\x45\xa2\x21\x18\x57\xcf\x53\x59\x30\x92\x58\x35\x74\x92\x92\xcf\x7a\x66\xf1\xb9\xe5\x62\x49\x1b\xc4\xa2\xcb\xdf\x99\x7a\xfe\xaf\x90\x6a\x50\xf3\xb0\x88\xce\x82\x60\x15\x11\xdf\xc4\xa1\xae\xa7\x4b\x8b\x83\x75\x63\xd3\x70\x5c\x9f\x34\xb5\x83\xd5\x07\x47\x85\x13\x2d\x74\xc4\xa6\x87\x47\x20\x4c\x3b\x51\x55\x96\x99\xab\x11\x0a\x8a\x8f\xdd\xdb\x76\xb9\xb3\x57\x81\x19\xac\x41\x59\x55\x66\x0d\x27\xb0\x1b\x0b\x16\xac\x1e\x8a\x0d\x5e\x14\xe8\xf7\x31\xa3\x3a\x83\x91\x35\x13\xbf\x10\x7e\x51\x03\x09\x4c\xdb\x73\x61\x95\x3d\x24\xb7\x04\xcd\x80\x7e\xa1\x81\xc8\x86\xe7\xa1\x45\xca\x11\x55\x5d\xdf\xfc\x95\x75\x5a\x6f\x7a\x62\x48\x1d\x3b\x10\xcb\xa2\xf1\x0e\x01\x71\x14\x9b\x64\x56\xd1\xca\x4e\xf5\x48\x34\x0e\x93\xff\x1f\xda\x25\x69\x8f\xdb\x12\xca\xec\x74\x97\x7e\x97\xff\x3b\x3a\x4c\xad\x03\x17\x27\x00\xe6\x62\x8a\x8a\x3d\x17\x65\x5d\x48\x00\x00\x78\x92\xc9\x6d\x86\x20\x04\xdb\xc1\x58\x95\xf9\x0f\x1d\x1d\xa4\xf3\x97\x10\x41\x1d\xf4\x17\xd2\x5a\x70\xf0\x20\x9e\x8d\x9b\xbf\x56\x50\x36\x48\x4f\x25\x03\x48\xfd\xa4\x4a\x37\xe2\xd2\x75\x13\x27\x33\xeb\x09\x64\x19\xf7\x48\x1b\x61\x03\x7b\x2a\x45\x4c\x50\x65\x2c\x89\xf6\x77\x66\x97\x6a\x33\xec\x84\xda\xf0\x86\xb1\xcd\x57\xe2\xe5\xbe\xa2\x0d\x02\x7e\x6f\x51\x0e\x79\xd7\xa4\x2d\xf3\x4b\x76\xad\x10\x1b\xc2\xee\x63\x90\x9d\x6f\x52\xce\x6b\xdd\x16\x75\x45\xd3\x19\xd7\x3f\xc2\xa1\x39\xd9\x36\xb6\xdf\xb0\x1f\x54\x7c\x3d\x5e\x1a\x66\x07\xd7\x09\x1e\x54\x7b\xf3\x0b\xdc\x8c\xb4\xdd\xa6\x4e\x1d\xd9\x70\x31\xa3\x55\xec\xc9\xa1\x7d\x05\xb1\x20\xc0\xbd\x04\x33\xbc\x71\x66\x08\x5a\x23\x7d\x20\xe0\x89\xe5\x62\x5f\x83\x8d\x10\xdf\x91\x1c\xd6\x1d\x39\x3b\x1c\xc3\x58\x36\x08\x6b\xa9\x78\xf3\x24\xb2\xa8\xed\x05\xe1\x81\x7f\xcb\x71\x36\x5b\x50\xdc\x2b\x0c\x0b\xc4\x30\x24\x9d\x86\xf5\x14\x71\x26\xbd\xa5\xa1\x0d\x49\x7f\x39\x8c\x3c\x9c\x48\xc1\xac\x6b\x3c\x99\xb0\xc7\xd8\x77\x08\x02\x1b\x4c\x95\xa5\x57\x2a\x2d\xb1\xb4\xbd\xdb\x03\x3e\x66\xae\xbe\xb3\x83\xb3\x8d\xb1\xcc\x07\x3b\xdc\x75\xba\x1e\x89\x88\x64\x43\xc6\x1d\xa6\x39\x57\xfa\x11\x6f\xc9\x84\xa0\x86\x08\x0b\x1d\xec\x32\x71\x9b\x17\xd1\x38\xe4\xb4\x98\xd6\x0b\x06\xfd\x92\xc6\xb3\xba\x8c\x78\x11\xee\x48\x52\x17\xd8\x8b\x49\xfd\x95\x75\xc4\x8a\xac\xc0\x62\x74\xf0\xef\x5c\xe6\xf5\xda\xc0\x25\x4b\x2d\xa9\xeb\x0a\x74\x2a\x1f\x30\xc8\x75\x2b\x7f\xe3\xd8\xca\xc3\xaf\x7a\xdb\x35\x9b\x43\xd5\x46\x0e\xc5\xbb\x77\x7e\xa4\x9d\x75\xd1\xd4\x2e\xbc\x09\xe2\xc1\xd4\x51\x18\x46\x69\x86\x7e\x28\xb6\xb9\xca\x6e\x27\xa6\x33\x7c\x14\xd9\xf6\xe6\xaf\x1c\xf5\x01\x5f\x46\x55\x35\xd7\xa6\x25\x55\xdd\x90\xa2\x45\x9a\x22\x7c\x5e\xd0\x07\x49\xf0\xe1\x94\xa5\xcb\x21\x82\xac\x83\x84\xe7\xf2\x5c\x6c\xc3\x82\xe3\x36\xa0\xc3\xcf\x78\x53\x81\x2d\xd2\x5e\x81\x85\x82\x4c\xfa\xec\x9e\xfd\x4c\x97\x4a\x8a\x73\x56\x2a\x42\xa5\x6d\xde\x91\x90\xad\xc5\x0a\xe4\xa1\x70\x7d\xfa\xdc\xea\x16\x59\x8f\x36\x26\x6e\xd4\x1b\xc9\x24\x01\xc8\xf0\x17\x65\x85\x43\x55\x24\x70\x86\x96\xc5\xc5\xd6\x9c\x69\x60\xcd\xb4\xbf\x5f\xe5\x8d\x9d\xb3\x2e\x6f\x45\x93\x17\x3f\x1a\x21\x12\x41\x33\xe7\xfc\xc3\x48\xa0\x00\xd0\x06\x87\x8c\x9d\x1f\x27\xc1\x75\xec\x3f\x1c\xfa\x0e\x49\xc8\x1a\x18\xb5\x4e\x14\x3b\x2f\x1f\x21\x7a\xfe\xf6\xed\xb3\x27\x18\xf1\x96\x03\x70\x16\xe9\x60\xb3\x33\x59\xa1\xc6\xcf\x42\xce\x68\xde\x4c\x5b\xd6\xc6\xba\x25\xe5\xd8\x3f\x83\xb3\x96\xde\x82\x36\xd8\xf4\xeb\xc8\x22\xb3\xec\xc6\xa9\xd3\xe3\xc7\xd6\x54\xfc\x67\x8e\x72\x28\x30\xab\x3e\xaf\x68\x53\x30\xee\x5c\x8c\x5d\xc1\xee\x53\x03\x57\x87\x1a\xa5\x06\xba\x62\x0e\x16\xbe\xba\xf9\xd9\x05\xe4\x5c\x9b\x25\x16\x17\xd1\x47\xf1\xc9\xcb\x89\xb8\x88\xe2\x48\x3c\x39\x9a\x92\x50\x3c\x9c\x10\xf2\x41\xe0\x73\x1c\x15\x06\x13\xa7\xdf\xc2\x03\xed\x11\x73\xcc\x2e\x79\x2a\x6e\x33\xb7\xa0\x29\x84\xf7\x82\xfb\x58\x2a\x75\x81\xe5\xae\xe6\x70\x33\x9e\x79\x56\xdc\x1f\x5a\x97\xb1\xd9\xca\xfb\xf0\x08\x5a\xd6\x24\xd6\xc5\x7c\x2d\xea\xd6\x62\xf3\x0f\xb5\x8f\xb2\x5f\xff\xc6\x78\xe4\x73\x10\x92\x64\x35\x41\x7e\x95\x89\x6c\x53\x8d\x50\x22\x08\xb0\x7a\x79\x74\xb0\x6a\xea\x8a\xb7\xd1\xb0\x5a\x8d\xf5\x7e\x33\xe7\xed\xd0\x26\xf9\x9c\x4c\xda\x9e\x0c\xe5\x32\xb2\xd7\xa6\xa2\xc7\x9d\x6e\x1e\x8b\xe0\x21\xf4\x5a\x84\x15\x30\xc6\xa6\xab\x38\x4f\x83\x7a\xe3\x0c\xc2\x1f\x98\xd4\x8a\x70\x2e\x8b\xa1\x0b\xb4\x08\xdd\x6f\x54\x06\x02\x8d\x4d\x63\xd5\x1f\x2e\x23\x38\x07\x39\xf3\xdc\xd4\xa9\xe9\x40\x75\x89\xc3\x40\x1d\x0d\x4c\x44\x39\x1c\xfb\x3a\xb0\xb8\x49\x6f\xd3\xb1\xb2\x6c\x59\x94\x1b\x84\x6e\x9e\x86\xc0\x24\xe7\x19\x0d\x96\x14\x83\xc0\xd5\x55\x37\x83\xe9\x86\xd3\xb6\x97\x58\xdb\x1d\x7b\x9b\x6e\xfe\x5a\x3b\x59\xbd\x8d\x51\x46\x3a\xbe\xdd\x36\x75\x49\xe0\xa2\x0c\x19\x55\x62\x9c\x2f\xba\x9d\x0d\x26\xe6\x49\x77\xf2\x50\x28\x6c\x09\xb7\xd3\xb3\xa7\xd1\x20\xec\xf4\x24\x25\xf1\x66\x34\x55\x31\x1d\x04\x21\x6d\x4b\x3c\xa5\x07\x90\x23\x8a\x69\x8f\x51\xb0\x20\xc6\xcd\x04\xa3\x21\x9f\x8d\x06\x36\x98\xb3\xaf\x2a\x73\x0c\x7c\x33\x98\x62\x46\xb6\x17\x63\x13\x4a\x76\x12\x7f\xec\x58\xa2\x1e\x8e\x96\xd1\xc2\xc6\x98\x75\x8e\x22\x17\x7c\x31\xe9\x29\xd2\x70\x51\xad\xf1\x0d\x76\x7e\x8e\xe0\x29\x3e\xa2\xae\xd8\x7c\x4e\x56\x4f\x1a\x7b\xa4\xe8\x90\x6d\xbc\xcd\x59\x3c\x71\xcc\xde\x07\x66\x79\xe6\x9f\x09\x21\xbd\x83\x0a\x0e\x5d\x4d\xc4\x2f\xbe\xc1\x2e\x27\x75\x29\x6f\x77\xf3\x33\xd7\x9a\xff\xa4\x7e\xf6\x17\x44\xe7\xb9\x7a\x22\xb6\x01\x48\xb6\x24\x85\x71\x1b\x13\x4e\xb3\x0b\xe6\x47\xf9\x7e\x4c\x58\xa3\xb1\x2b\x2a\x6f\x35\x59\xa5\x7a\x5a\xf5\x30\xd8\x22\x39\xdb\x80\xe9\x70\xfb\x79\x86\x13\xa9\x13\x27\x1a\x89\x2b\xfb\x23\x4f\x34\xb6\x34\xaa\xf7\x84\xb0\x8f\x3d\xd0\x48\x06\x33\x8b\xe7\x12\xed\x3b\xc9\x0c\x92\x2d\x5a\x59\x97\xb1\x33\xc9\xb7\x4a\x75\x5e\x1d\x09\x74\x17\x2b\x26\xe8\x15\xd6\x91\x43\x33\x97\x89\x12\x23\x9b\x91\xf5\xb6\x48\x55\x5a\x39\x47\x5e\xf9\xfa\xde\x5f\x3e\xdc\x3f\x32\xa5\x84\x58\x01\x60\x23\x0b\x5a\x7b\x8d\x70\x6d\xf8\x8f\x3e\xac\x38\x42\x06\x9d\xa9\xfc\x7f\x88\x23\x9e\x7a\xfd\x28\x3e\xd6\xca\x71\x4b\xe0\xab\x87\x0f\xb4\x68\x06\x51\x6d\xfb\xaa\x63\xd1\x0e\x95\x35\x5b\xf7\x37\xbf\xe4\x82\xed\x87\x79\x76\xd9\x9a\x8b\xf9\xa7\xf7\xec\xa7\x8f\x24\x6a\xb3\x8d\x06\xfc\xf0\x41\xfe\x28\x83\x39\x59\xf5\x2b\x41\x46\x52\x01\xd1\x12\x15\x8e\x68\xb0\x6a\xbd\xf2\xa5\x56\x9b\x05\xa2\x8e\x11\xe6\x6d\x47\xaf\xf9\xc5\x1e\x1a\x3d\x6d\xc6\x09\xba\xf3\x7a\x33\xbc\x53\x98\x75\x19\x95\x6b\x59\xe7\x74\xad\xb0\x42\xc0\xad\xa4\x0e\xa6\x41\x03\x7a\x0c\xca\x41\x33\xc1\x55\xe4\x1a\x98\xf0\x2e\x4b\xa1\x0c\x4b\x84\x2c\x0f\xcf\x93\x82\x27\xbf\x5f\x7f\x52\x39\xed\x66\x28\x8a\xb2\x92\x5c\x9e\x92\xdc\x27\x5e\x12\x00\x39\xa9\x1c\x20\x55\xec\xd8\xd1\x29\x6c\x0b\x76\x39\xf0\xcc\xde\xba\x79\x33\xbf\x89\x4b\x81\xc3\xad\x19\x8e\x76\x4d\x6f\x6b\xe8\x36\x99\x7b\x93\x03\xa7\x56\x12\x58\xc7\x63\xee\xb0\xf9\x05\x8a\x95\x31\x3b\x0e\x87\xea\x2a\x7c\x4a\x2a\x84\x3a\x2e\x6c\xf6\x5f\xb2\x82\xc8\xc6\xc6\xbc\x22\x5a\x7a\xe0\x94\x54\x5f\x0f\xd4\xee\x0f\xc6\x13\x1e\xc1\xea\x78\x26\x81\x48\xd8\x57\x7d\x8a\x3d\xae\x6e\x7e\xa9\x57\x7d\xd5\x4c\x72\x48\x5f\x2f\xcb\x9a\xcd\xa7\xab\x12\x50\xac\x95\xf0\xb7\x78\xd7\xa3\xee\xb4\x33\x3f\xf3\xc2\xd7\x28\xf2\x58\x2a\x70\x98\xad\x5d\x74\x0d\xbc\x8f\x61\xbe\xc0\xcf\x1b\x7c\x63\xc2\x3f\x96\x58\x5c\xa7\x8b\xc0\x00\x11\x8e\xd2\xd8\x03\x57\x5b\x98\x4c\x44\x15\xd7\x26\x0b\x98\x1b\xd1\x7d\x4b\x1a\x94\xaa\x85\x7a\x55\x34\x1e\x8d\xbd\xf6\x56\x22\xd4\xc0\xbe\x18\x57\x21\x8e\xf2\xe3\xb3\x67\x2e\xa2\x7a\x26\xfa\x03\x37\x2a\x6d\x72\x34\xa9\x1c\x6c\xc7\x21\x83\xd2\x6d\xa6\xe1\x61\xb5\x8b\x26\x56\x11\x0c\x11\x1f\xab\xb8\xd2\x5e\x3d\x38\x33\xd1\x19\xf8\x99\xa6\xb3\x9c\x2c\x95\x45\x30\x60\x19\x44\x14\x30\x26\xfc\x60\xf8\x94\x92\x87\xc1\xbc\x5e\x7b\x44\x0c\x18\x28\x3b\x4e\x3c\x4a\xab\x66\xab\x47\x9f\x82\x58\x6e\x2d\x6a\xcc\xad\xca\x2c\x23\x3e\x75\xc1\x7a\x36\x63\xdf\x84\x3f\x92\x0d\x5c\x29\xb3\x08\x7c\x19\x7f\x8e\x38\xfe\xf9\xd4\xb8\x03\x01\xb8\x29\xa8\xbf\x63\x3c\x07\x1a\x09\xc7\x2d\x80\xda\x83\x6e\x0d\x5e\xc8\x23\xeb\x56\x8f\x90\xe1\x5b\x21\x8d\xaa\x66\xc2\xd4\x01\xb9\x63\x79\xc7\x20\xd1\xb9\xbc\x42\xb8\x13\xf9\x3c\xb6\x1f\x9d\x03\x86\xd4\x1e\x5f\x03\x33\xe0\xa8\x5f\x36\xe9\xf3\x9a\xdd\xa5\x3b\x42\x97\xdb\x64\x5e\xbe\xf2\x9b\x4a\xd0\xa9\x39\xc4\x63\x65\xda\x4f\x42\xe4\xde\x60\x68\x21\x7e\x4f\x07\xa9\xf6\x65\x0a\xa6\x51\x86\x31\x08\x87\x98\xa4\x93\x71\xc0\x91\xe4\x92\xb1\xd3\x78\xe4\xfc\xd0\x99\xfa\x61\x0e\x8c\xea\x69\xeb\x8f\x3d\x16\x70\xdd\x7c\x4f\x2a\x39\xfb\x73\xcf\x82\xa3\x35\x3a\xfd\x88\xe9\x3d\xb9\x65\x13\xce\x47\x74\x43\x06\x41\xac\x5b\x28\x3d\x56\x77\x17\xbd\xf4\x13\x05\x3f\xd9\x86\x03\x07\x3a\xf8\xc8\x36\x66\x43\x3c\xb9\xac\x58\xcf\x74\x88\x26\xc3\x06\xa7\x79\x61\x0b\xbf\x7b\x07\x61\xa7\x6c\xbc\xec\xe6\xdf\xea\x9f\x24\xd5\xf5\x3b\x3e\x47\x91\xf0\x66\x18\xaf\xf7\xd0\x6e\x89\x08\x49\xc6\x13\xcd\x7e\xda\x97\x54\x5c\x64\x08\xe9\xfa\xf4\x11\x69\xaf\x57\x72\xdb\x8f\x20\x1e\xb1\x63\xe8\x9d\xb8\x1b\x9f\x62\x51\xc3\x65\xaf\xe4\xcc\x97\xa1\x38\x4a\xdd\x85\x51\x39\x40\x8e\x59\xe7\xe2\xd1\xc0\x24\xbc\x15\xad\xd0\x6c\xb3\x95\x5a\x45\x88\x74\x0c\xf3\x11\x3f\x26\x37\xa6\xb8\x75\xd2\x2b\xb9\x61\x48\xdf\x71\x17\x70\xfe\xac\x28\x9b\x4d\x1e\x7d\x71\x7d\x45\xe6\x2c\x35\x47\xba\xfc\x25\xdc\xd4\xb3\x75\xd9\xe1\xb8\xb2\xa5\x31\xe2\xa2\x4e\x6d\xcd\xfc\x39\xfe\xe5\x0b\x51\xfa\xe5\x70\x13\xd8\xa8\x7c\x0d\xb2\x7f\x3a\x42\x56\x5e\x10\x81\x08\x22\xcc\x10\xf9\xd0\x36\xa2\xea\xaf\x4f\x8f\x9f\xbc\x38\x9d\x6d\x0a\x1f\x93\xc6\xb8\x96\xca\x09\x61\x15\xe6\x22\x27\x9d\x4d\x7d\xa2\xf3\xd7\x70\x83\x6e\xd9\x31\x0e\x17\x45\xe3\xae\xf7\x2d\x70\xda\xd0\x5e\xe5\x08\xeb\x91\x3f\x78\x8c\x52\xf8\x39\x09\x40\x56\xac\xbf\xd8\xef\x28\x9c\x3e\xef\xf9\x07\xf8\x0d\x0f\x37\xbd\xc7\x7b\x58\x1b\x78\x0d\x7a\xdc\xcd\x31\xc2\xad\x1c\x92\xde\xc6\xb7\x1a\xd7\xb2\x8f\xc4\x97\xbe\xe2\xdb\x8a\x31\x80\xbf\xb2\x73\x59\x46\x4e\xf1\x5d\x76\x5d\x56\x55\xb6\x34\xb0\x60\x62\xce\x00\x4b\x64\xcb\xaa\x37\x9f\x3e\x12\x04\x7a\xb6\x70\x8d\xf2\x6a\x71\x6f\x83\xe5\x52\x80\x19\xee\x9a\x90\x94\x2a\x8a\x16\xfb\xc3\x89\xdc\x3c\x09\xc1\x11\x7b\x00\x75\xdf\xc7\x28\x57\x34\x1c\x1e\x59\xb8\xaa\xf2\xe0\x9b\x67\x6f\xf8\x90\xb9\x69\x25\x9a\x3f\x93\xab\x0a\x40\xf6\xe5\x2c\x34\xe9\xce\x84\x18\x26\xdc\x70\xaa\xb4\x92\x0f\x5d\x3d\x0a\x4e\xf4\x2c\x78\x5f\xd2\xbb\x49\xc2\xc4\xb4\x18\xcc\xe5\xf2\x77\xe6\x79\x9b\xef\xa3\x58\x53\x5d\xcc\x59\x9e\xa6\x07\x77\xc3\x05\x3f\xf2\x87\x48\x36\xe3\x9d\x02\x9b\xcc\x3b\xde\x2e\xb6\xbb\x45\x55\xd6\xef\x68\x87\xc0\xde\x4d\x5f\x10\xd1\x44\x7b\xec\x02\x45\xfa\x95\x83\xb2\x11\x50\xbd\xcd\xb7\x86\x75\x2a\xec\xf4\xa6\x90\xe2\xe1\x8e\x8a\x36\x80\x58\x5d\xf8\x91\x59\xe4\xd4\x7f\x86\x42\xec\xa5\xb7\x8d\x2a\xb6\x85\xe4\x24\x62\xfe\xe9\x62\x49\xe2\xe4\xdd\xa7\x91\xa9\xc3\x77\xaf\x61\xd7\x7c\x02\x55\xf2\x9a\x0f\xe2\x9f\x90\x65\xcb\x67\x55\x57\xe5\xba\x64\x25\x53\xbe\x7f\xeb\x7e\xf6\x88\x0f\x6e\x83\xff\xb9\x70\xfe\x7c\x71\xf1\x3b\xff\x7e\x2b\x78\x9d\x8b\xdc\x63\x45\x9e\x29\x02\x57\x46\x52\xd9\x47\x4c\x41\x18\xc2\x41\x81\x99\x7f\xc3\x56\xdc\xeb\x9b\x9f\xb6\x25\x6e\x85\xcb\xc4\x3b\x22\x22\x15\x2a\x42\x7c\x43\x91\x94\x44\xc3\xb2\xe0\x24\x6d\x0f\x91\xee\x41\x96\xd7\xc3\x1b\xc2\x1a\x9c\x5e\x91\xca\x6d\x34\xde\x80\x63\xe3\xf9\xaa\x2b\x82\x54\x40\x4c\xf1\xb6\x71\x46\x5f\x55\x96\x27\x5b\x11\x13\x9d\x5c\x10\xda\xd7\xe0\xdd\x3b\x91\xc8\x23\x9d\xb3\x35\x66\x7e\xf3\xbf\xda\x25\xae\xc5\xeb\x01\x11\x2e\x73\x77\xf9\xda\x32\x08\xf6\xcd\xd3\xae\x24\x0d\xa9\x83\x9d\x21\x20\x46\xcb\x70\xb4\x44\x70\x51\xb9\xde\xba\x0d\x37\x61\x2d\xec\xab\xa5\xa9\x12\xa8\x4d\x59\xc1\xa5\x4a\xaa\x17\x71\xbb\xfb\x13\x94\xb7\x21\x61\x85\xab\xc4\xfc\x2f\x36\x9e\xca\x90\x46\x86\x13\x1f\xf9\x83\x16\x12\x9e\xf0\x36\xbf\xa6\x01\x5c\xeb\x2f\x5a\x12\xbe\x9f\xfb\x94\xfe\xbd\xf9\x4b\xcb\x9e\x18\x2e\xe0\x9b\x28\x80\xc5\x85\x95\x00\xcf\xaa\x0b\x33\xc6\x99\xfb\x8b\x1d\x8b\xd2\xeb\x6c\x34\x0a\x57\x90\x5c\x0e\xce\x46\xc5\x17\x30\x89\xa4\x30\x7c\x84\xb0\x6d\xda\x39\x4b\xd9\xf0\x75\x43\x42\x09\xde\xda\x17\xb4\x23\xca\x3d\x7b\x2d\x80\xcf\x74\xfe\xb5\xe1\x6b\xe9\xee\x9b\x84\x95\x1f\x63\xff\x29\xe3\x46\x88\xc0\xf8\xa2\xa6\x75\x05\x0e\xfb\x28\x51\x9f\x66\x7c\x23\x39\x14\xce\xc6\x2b\x12\x15\xd6\xd8\xeb\xa9\x9c\xd9\xc3\x4c\x82\xac\x68\x35\xda\x85\xb6\xf2\xbc\xdc\xb0\x20\x99\x06\xf5\x4b\x1d\x56\x7a\xd8\x5b\x00\x41\x8f\xd3\x60\xd2\x63\x80\x74\x9d\x4e\x43\x93\x26\x5e\x2f\x26\x7a\x26\x29\xb5\xa4\x5d\x6f\x3c\x9d\xc6\x22\x90\x75\xaa\xc2\x0a\x59\x19\x8a\x41\x05\xda\xce\x90\xcd\xc0\xcc\x8f\xf1\x2f\x3b\xeb\x26\x46\xeb\xa1\xdc\x60\x73\x85\x1e\x22\xc0\x03\x62\xfe\x23\x20\x91\x27\x2a\x3e\xca\xc9\x05\xd5\x05\x93\x35\x77\xab\x3a\x06\x58\x6c\x71\xd0\x92\x5e\x70\x70\xab\xc6\x97\xdd\x93\x1e\xb5\x51\xd5\xbc\x86\x8d\x32\x8a\xbb\x7c\x39\xbf\x57\x8c\x91\xca\x08\x75\xa5\x23\x0c\x12\x13\x22\xfc\x5d\x9a\x1f\x8d\x36\x2e\x25\xf5\x07\xfb\x20\xc7\xef\x68\xf8\xab\x1b\x48\x66\xbd\x02\x59\x8c\x2a\x1f\x22\xba\x21\x48\xdc\x47\x23\xad\x76\xb4\x19\x6f\xf6\x55\x1c\xae\x3d\xeb\x8d\x13\x40\xeb\x92\x80\xf6\x34\x7e\xac\x6d\x0c\xab\x79\xad\x6b\xaa\x60\x86\x9b\x30\x2a\x5f\xdf\xf8\x13\xcf\x32\x96\xb4\x53\x95\xac\x26\xde\xa0\x6d\x7f\xd7\xf4\x61\xd4\xb8\x2c\x31\x59\x43\x56\xbf\x58\x2c\x77\x5c\x01\xeb\x2f\x93\xdc\x57\x01\x9a\x01\xad\x03\x2e\xda\x71\x05\xbe\x8d\xc0\x1e\xb3\x14\xd8\x22\xee\xf6\x9c\xfe\x37\x55\x30\x43\x36\x12\x4b\x68\x22\xa9\x66\xa7\x21\x40\xb7\x04\xf1\x8a\xff\x99\x84\x20\x45\x85\xc6\x22\x47\x4f\xb8\xff\x40\x3f\xaa\x5d\x26\xbf\x8b\xe9\x5e\x69\x5b\x71\x15\x9e\xe3\xef\xac\xfd\x98\x6a\x1b\x92\xba\x90\xc3\x70\x59\xbe\xa0\xbf\x33\xfd\x71\xa8\x17\x07\x2f\xdd\x8c\x2b\x80\xa3\x18\xed\x73\xe5\xa7\xec\xde\x77\x7f\xf8\xde\x32\xe6\xbd\x57\xf8\xc1\xbd\xef\xfe\xf8\x3d\xa9\x4b\xfc\x0f\xd4\xa5\x71\xf5\xc5\x45\xfe\xce\xcc\xe5\xa7\x36\xb1\xdc\x65\x5c\xc1\x03\x6f\x5b\x73\x55\x36\xbd\xf5\x27\xd5\x61\x7b\xf1\x42\xe3\x7d\xe7\x4b\xcf\x5d\xb4\xfc\x80\xfd\xd9\xa5\xf0\x6a\x1b\x2d\xb5\x8a\x52\xbd\xd2\xc8\x3f\x42\x93\xfd\x66\xa1\xd3\xb6\x2c\x18\xf4\xef\x50\xd9\xe1\x64\x91\x77\xf3\x1f\xfc\xaf\x2c\xef\x80\x80\xb2\x20\x4d\x11\xd3\x71\x6a\xe3\x3f\xc9\xaf\x80\x8b\x1f\x42\x57\x8d\xf7\x28\xbf\xb9\x84\x99\x53\x5a\x09\xdb\xe4\x6f\xd9\xce\x74\xb3\x81\xb0\x92\x0c\x1e\x3c\xe2\x41\x89\x8e\x23\x86\xc8\x48\x45\x72\xc3\xf7\xd0\xad\x61\xa4\x08\xd8\x6b\xfe\x31\x2c\x4b\x9b\x12\x98\xc9\xb6\x54\x02\x3b\x92\x39\x19\x16\x0b\x96\x19\x4b\xfc\xe7\xef\x40\x91\x0c\x49\x5b\x71\x3f\x7e\x47\x3b\x5b\x56\x40\x54\x0f\xf1\x5f\x39\x38\x5b\xb2\xd1\x04\x9a\x61\x0f\xd0\x2b\xfc\xdf\x7f\x73\x77\x87\x48\x3f\x27\xb3\x87\xb7\xc0\x35\x99\xf4\x5b\x18\x31\xb8\x93\x62\x52\xc8\xb2\x5e\xb8\x28\x6f\xd6\xe0\xbb\x26\x43\xc0\x50\xd6\xb1\x6d\xd7\xd4\xb8\xd5\xc9\x67\x6e\xb3\xec\xb8\x82\xe0\xda\x91\x4d\x74\x85\xf5\xca\xd4\xb5\xf5\x55\x7a\xc2\xc2\xdd\xa1\x81\xc6\xad\x41\xc2\x54\xa6\x28\x3b\x8e\xe8\x0f\xc3\xa0\xe6\xe6\xe7\x7c\x6e\xa1\x5f\x64\xa7\xea\xe2\xe0\xf9\xd1\x6e\x29\x30\xab\xa6\x6a\x70\x41\x90\xfe\xbf\x1f\x04\x2e\x3d\x62\x8e\xb1\x36\x25\x00\x81\xc6\x98\x87\x22\xf1\x3f\xde\x86\xa5\x86\x9f\x43\xde\x0e\x4a\x34\x7c\xe7\x31\x47\xe8\x0d\xca\xf4\x36\xc3\x0b\x3d\xa7\xf6\x0e\xc3\xd1\x7e\x1d\x35\x85\x20\x17\x6e\x4c\x4e\x97\x6e\x01\x95\x15\x3c\xae\x34\x42\x10\x16\x62\xd8\xdc\x7b\x9a\x19\x3b\x4b\xdd\x5d\x2f\xb8\x52\x9d\x9b\x97\x4d\x9a\x6e\x6a\x0b\x4c\x22\x7e\x10\xe8\x49\x3a\x7b\xe2\x8f\x9c\x1e\x89\x73\x38\xbb\x11\xcb\x90\xd4\x9c\xbd\xf9\xf9\x3d\xd9\x57\x9f\x48\x2c\x53\x55\xb1\x98\xda\xe6\x44\x81\x72\xe0\xcf\x86\x02\x7e\x67\x27\xf2\x7b\x0f\x98\x4c\xd7\xc1\x76\xd7\x4d\xe6\x6c\x29\x96\x00\x1b\x12\xda\x19\x8e\xfe\x2b\x58\xf7\x9c\xda\x88\x79\x40\x6b\xcf\x5c\xab\x24\xd9\x5a\x03\x93\xda\x42\xa3\xd0\x3f\x09\xb2\xaf\x0b\x39\x50\xf1\xaa\xab\x98\x01\xe6\x3a\xd6\x91\xa3\xd2\x58\x81\x13\x11\x1e\x15\x26\x0a\x9c\x13\xe3\xc3\xf2\x42\x05\x3c\x07\xb9\xc6\xfd\x92\x79\xdd\x13\x83\x72\xba\xab\x06\x21\x94\xb8\x24\x3d\xee\x7d\x3e\xdd\xad\x13\xc2\xe9\x4c\x68\x8d\x96\x97\xc4\xd0\xb8\x61\xcb\xc2\x31\x68\x68\x38\x22\x70\x91\x9b\x26\xc3\x6d\xba\x4c\x97\x39\x6d\x3c\xe8\xd1\x9d\xd9\x83\x14\xe1\x62\xbe\x08\x93\x7c\x8f\xdd\xa4\xa0\x98\xb4\xd0\x4d\xf6\x09\xcd\xf4\x09\x1a\xff\xdc\xe5\x35\xf9\x62\x30\x3d\x83\x40\x48\xfc\x3f\xf9\xee\x6f\x9d\x6b\x43\x0b\x49\x0e\xc2\xed\xe1\xb7\x26\x0b\xc1\x26\xa6\xa0\x47\xd9\xa6\x27\x02\x59\x9a\xec\xb3\x1d\xb5\x76\x7f\xb3\xb9\x5f\x14\x9f\x4d\xcd\xd7\xd3\xb6\x9f\xb0\x78\x08\x11\xc5\x8d\x83\xe1\x4c\xd5\xbd\x4c\xe1\x10\xdd\xb6\xfb\x24\x69\xc8\x0b\x90\x3d\x48\x43\x79\xb4\x3c\x6f\x69\x7f\x5c\x1a\xb8\x2f\xf9\x5e\x86\x62\x8c\x89\x39\x5a\x32\x3e\xc7\x69\xb6\x95\xc9\xae\x9b\xfa\x33\x9e\x0a\xce\x37\x70\x0c\x3b\x98\x46\x1c\xe4\x95\x94\xc4\x22\x6a\x77\x78\x6c\x82\x02\x65\xd0\xac\xb9\x08\x23\x19\x60\x03\xe2\xfd\x10\x2e\xbc\x9c\x0b\xe8\x7c\xa2\x9f\x26\xe1\x9c\x83\x1d\x82\x56\x76\xa9\xd0\x33\xbb\x49\x91\xd7\x88\x36\x28\x32\xe8\x9d\xc4\x63\x6c\xc1\x10\xe4\xd2\x8a\x17\x47\xe9\x39\x7b\xd2\x80\xbe\xb3\xeb\x9c\x94\x98\xae\x71\x92\xcd\x7c\x35\xdd\xf7\x78\xe9\xfd\x3c\x45\xf4\x8f\x66\x3a\x9d\xcf\x4d\xd2\x11\x6a\xc1\x4c\x68\xdb\xce\x25\x3b\x0f\x87\xd3\xba\xa2\xe8\x5e\x3a\xa1\xc8\x5d\x42\x1f\x36\x70\xd9\x34\xef\xec\xfc\x5f\xcc\x92\xff\x88\x0a\xd6\x65\x27\x65\xc8\xf0\xf4\x74\x50\xb8\x24\xc3\x78\x35\x99\x95\x0e\x1b\xc4\xe3\x9b\x9f\x2c\x07\xfc\x7a\xf8\x02\x6b\xdd\x2e\x3e\xc0\x0a\xfc\x9f\x38\x66\xa0\x3d\xe3\x8c\x76\x90\x75\xdb\x44\x50\x1c\xae\x79\x8e\x1b\xda\xd9\x2b\xc9\x14\x11\x15\x6a\x0c\x9b\xef\x73\x6f\x78\x5e\x8c\x02\x89\x02\x83\x5b\xee\xc0\xc9\x56\xf6\x22\x8a\xba\xdc\x57\x77\x1c\x7e\x99\x7a\xfa\x7f\x4b\x0c\x66\xf3\x5b\x63\x2f\x87\x7e\xcd\x59\x34\x4e\x17\xd8\x3e\x7f\xe3\x23\xdc\xb1\x7b\xcb\xd9\x1e\x1f\x9b\x8d\x40\xd5\x05\x1f\xe0\x47\x47\x39\xb9\xdc\xc4\x70\x01\xa6\x83\x44\x63\x59\xd1\xd4\x85\x66\x5d\xb1\x72\xaa\x61\x87\x49\x56\x5c\xe4\x92\xef\x9c\x93\x26\xf2\x35\x1a\x5c\x2d\xb0\x72\x36\x83\x50\xff\x4a\x7d\xb0\xb1\x5b\x5d\xae\x16\x4d\xdd\xb8\x1a\x45\xb3\x04\x1a\x1b\xc4\x3f\xf3\xa4\x92\x83\x8b\x01\xa8\x4b\x6f\x2a\x41\x25\xe0\xc6\x70\x74\x9d\x76\x7d\x24\xd7\xa1\x77\xd9\x55\x6f\xe0\x3f\xc7\xc1\xcf\x4f\xf6\xf6\x2b\x1f\x1a\xb1\xa1\x54\x30\xb5\x6a\x9c\xb8\x89\xd6\x7c\xfe\x70\xfb\xe8\x3e\x82\x61\x0b\xc3\x47\xf5\x2e\x2a\xa0\xe4\x4b\x43\x23\xfc\xc8\x29\x46\x7c\x77\xe7\xaa\x2c\x88\x1d\x66\x0f\x1f\x6c\x1f\x71\x53\x1c\x61\xcf\x4d\x21\x84\x07\x01\xf4\x1f\xd5\xe6\xf0\xd6\xc5\xce\x5d\x68\x97\x9b\xda\xeb\xb6\x97\x53\x28\xb9\x44\x11\xdd\xe3\x41\xc7\xfb\xb9\x35\x8a\x44\x41\x6c\xa1\x8f\x6b\x4c\x79\x48\x03\x08\x0e\x85\x9c\x8e\x11\x28\x86\x8c\xa4\xeb\x4c\x0e\xb4\x3d\x28\xb4\xb9\xc5\x04\x9b\x4c\xb5\x26\xc1\x1a\x05\x22\x08\xb6\x8e\x83\xf6\xf2\xba\xbf\x53\x52\x70\x10\x56\xd7\xd8\xf1\x38\xd3\x38\x81\xbd\xf1\x01\x1e\x1e\x31\x51\x41\x72\xc3\x5b\xad\xb1\x64\x32\x43\x27\xc6\xf9\x96\xed\xde\x4a\x1e\xdd\xe7\x69\x20\xa0\x5f\xf7\x55\x68\x26\x1e\xac\xec\x7f\x87\x9a\x0a\x1c\xc2\x37\xd8\x27\x5b\xe1\x4b\x66\x25\x5f\x1f\x5a\x48\x06\x8c\xf8\x96\x46\x7a\x8d\xa8\xca\x87\x39\x0c\x93\xdb\xde\x51\x08\xe3\x66\xef\xa8\x31\xfb\x6b\xd9\xc0\x3c\xb6\x74\x43\x1b\x6e\x74\xc2\xf2\x88\x5b\x70\x3b\x9e\x1e\xca\xc2\xf4\xf7\x69\x8e\x89\xda\xdf\xe3\xc0\xb7\x71\xf9\x0f\xda\x61\x98\xec\xaa\xe7\xcc\x0e\x84\x1b\x22\x10\x52\xdb\x60\xeb\xa1\xda\x15\x6e\xee\x33\xb3\x70\x68\x52\x76\x92\xc2\x55\x31\x8c\xdd\x52\xdb\xb2\x55\x20\x6f\x04\xe7\x05\xe0\x9c\x09\xe0\xc2\xad\x41\x7e\x55\x70\xe0\xd9\xab\xf3\x37\x34\xb6\x15\x2c\xa0\xbe\xf6\xe1\x63\x9c\xf2\x4f\x2f\xed\xc1\xba\x3a\x43\x84\x14\x27\xbf\xc2\x25\x79\x70\x6c\x6c\xb3\x71\x6a\x94\x34\x2e\xf2\xe0\x01\xa0\x1c\xb7\x51\x57\x0e\x4d\x1a\xe4\x38\xd2\x0e\x02\x42\xbd\x9a\xc0\x21\x1f\x18\xe9\x45\x5f\x4b\xca\xc0\xd2\x31\x11\xb3\x54\x03\xd0\x23\x77\x4a\x6a\x0a\x49\x57\x47\x2d\x68\xe0\x80\x75\xf2\xe5\x52\x5b\xe3\x13\xd1\x42\xd0\x5a\xe5\x51\xb6\x08\x89\xa7\x93\xd8\x30\x8e\x20\x6a\xe3\xb8\xe5\x24\x4e\x3e\xb7\x13\xa3\x67\x6b\xdc\x9d\x3e\x82\xa0\xf1\x31\x1c\xd7\x73\x3c\x21\x12\xbb\x91\x79\xd3\x70\x16\x5f\x49\x93\x11\x42\x36\xcd\x8f\xc8\xdc\xdc\xc0\xb6\xfd\x31\xca\x1f\xc4\xc5\x72\xc3\x3d\xce\x0a\xc3\x56\x33\x36\x25\x74\x33\x35\x9c\xa1\x8e\xf2\x34\xa5\x60\x07\x36\x0a\xcf\x9c\x02\x56\x01\xac\x75\x62\x6d\x69\x00\xa8\x3c\xcf\x2d\x7b\xd3\xbb\x72\x0b\x1f\x02\xa1\x1d\xe3\xef\xe1\x3c\xd5\x8f\xf6\x51\xf1\x43\xe4\xa1\x78\x04\x5a\x7e\xf8\x80\xff\x94\x2c\x9e\x61\x2d\x71\xe6\xcf\xb9\x63\x79\xfd\x91\x68\x4a\x03\xdf\x7d\x10\xa4\x30\x0e\xf1\x12\xcc\x98\x8e\x90\xfe\x06\x61\x35\x37\x3f\xd7\x9e\x94\x3c\x47\xb5\xb4\xe5\xde\xfc\xec\xd3\x3a\xfa\xc4\x60\x1d\x12\x95\xe2\x30\x1a\xd4\xed\x58\xfb\xf3\xff\x7e\xfe\xea\xe5\x91\x8e\xf0\xfd\xfd\xeb\xeb\xeb\xfb\xa8\x78\xbf\x6f\x2b\x53\xe3\x63\xa1\x43\x3e\x42\x5a\xc8\x47\xa6\x5b\x3d\x7c\x40\xff\x7e\xa1\xf9\x27\x39\xe9\x15\xc7\xff\x4f\xf0\x9d\x92\xec\xdf\xc7\x6b\x5b\xc9\xea\x10\x67\x08\xd5\x44\x0f\xe9\x3e\x03\xa2\x48\x63\x45\xa2\x00\xde\xa0\x64\x1b\x32\x32\x3b\x12\xe7\xf8\x27\x2e\x60\xfc\xca\x32\xfe\xfa\xb7\x7f\x06\xfe\x9c\xa8\x4a\xd0\x06\x85\xa6\x40\x76\x16\x12\x3c\xa6\x46\x88\x9e\x10\xb5\xd2\xc1\x57\xa3\x16\xf9\xd4\xbc\xa9\xab\x9d\x64\x20\xc4\x55\x60\x59\x49\xc1\x38\x8a\x15\xc1\x09\x69\x71\x3a\x1e\xb9\xf3\xd3\x8c\xbe\xfb\x00\xb0\x40\x6f\x11\xd1\xf8\x1e\x54\x4c\x7b\xa6\x03\x2b\xe3\xbe\x4c\x9e\x6a\x8e\x20\xe3\x84\xfe\x07\xdb\xa6\x0f\x13\xd0\x39\xce\xc6\x7c\xe6\xf7\x9f\xc0\x67\xe3\x2d\x48\x61\xa7\xba\x8a\x54\x1e\xe3\x99\x6f\xac\xdd\xfa\x7e\xc4\x4d\x38\xd1\x87\x9c\x98\x40\xdd\x28\x71\xc7\x99\x34\xcb\x53\xce\x3c\x84\x80\x63\x09\x8a\xb6\x83\x4d\x31\x25\x99\x81\x74\x00\x6a\x2c\x59\x23\xef\x16\x81\xc9\x79\x8f\x95\xbb\xdf\x2e\x14\x89\x59\x37\xf5\xe5\xa2\x12\x47\xd4\x73\x9c\xe6\x1e\xe3\x45\x9a\x96\xf8\x53\x8d\x9e\x1d\x94\x0d\x53\xf7\x0e\x8a\x61\xa5\xd5\xe2\x91\x48\xac\xc5\xc2\x90\x5c\xde\x25\x77\x2d\x0b\x78\x07\x2c\xed\x13\xa4\x19\x9b\xc1\x14\x03\xf8\xfc\xb8\x28\x08\x0e\x3f\xb3\xff\x61\x76\xb1\x01\xd3\x2c\xe2\x56\xff\x95\x4c\x7f\xb8\xb3\xe1\x2f\xa1\x26\xe0\xae\xaf\x77\x99\x40\x64\x04\x91\x28\xab\xb1\x27\x6b\x62\x8c\x03\x91\xde\x45\x40\xe9\x9d\x81\x27\xbe\x79\x7f\x7c\xe2\xbd\x08\xea\xad\x49\x6a\x86\x7b\x02\x51\xcd\x6b\xda\x13\x32\xa8\xaa\x19\x8a\xb9\x81\x5c\xfd\xf3\x12\xb4\x52\x0c\x99\x23\x8e\xfc\x87\x13\x33\xcc\x72\xe0\xb1\x11\x44\x0c\xfc\x18\x53\x13\xf6\xae\x1b\xf5\xc6\x4c\x62\x7c\x02\x7e\xec\xc2\x29\xe2\x89\x05\x1f\x4e\xec\xb0\x91\x80\x76\x63\xd9\xed\xd5\xa5\xf1\x71\x87\xdc\x38\x07\x07\xe2\xf0\x11\x21\xf6\x76\x87\x4e\x51\x5e\x5c\xcc\x48\xf5\xbd\xb6\xb8\x50\xd0\xb7\xab\xf0\xec\x05\xa7\xc1\x75\x29\xea\x19\x0e\x62\x8a\x68\x62\x9b\x17\x08\xe2\xe4\x4f\x12\x6e\x32\x97\x7f\xf4\x1b\xc9\x94\x7c\x90\xa5\x13\xfa\x98\x4b\x7e\x5e\x65\x4f\x08\xca\x6b\x35\x75\x74\x61\x90\x53\x63\xa3\x09\x7b\xd9\x5c\x2f\xf0\x17\xdf\x95\xb0\x7c\x8a\x8a\x21\x21\xe8\xb8\x40\xaa\x38\xda\x53\x85\x81\x08\xc6\xd5\x01\xa4\x2a\x4f\x62\xb7\xb9\x88\xde\xe8\x3a\xdd\xbd\xc2\x6b\x75\x21\x9c\x9a\x65\x85\xfe\x40\xc0\x42\x51\x8a\xc2\x16\x20\x76\x71\xb9\xb8\xff\xa3\x06\x1c\x1a\x49\x2c\x3c\x7e\xf6\x52\x7f\x71\x78\x11\xdf\xdd\x45\x7c\xd1\xd7\xd2\xa9\x24\x22\xe2\x68\xa5\xd9\x44\xf8\x92\x2b\x92\xe8\x30\xfe\x5b\xc3\x36\x14\x26\x80\x14\x6d\x7e\xd1\xb9\xf3\x94\x36\x7c\xdf\xb6\xc6\xd5\x3c\x6b\xcd\xfd\x51\x3d\x49\x83\xc5\xd1\xdb\xcb\x2a\xfa\xce\x6e\x5c\xa3\xe7\x40\xee\x63\x0e\xa7\xed\x3c\x4c\x3d\x46\x19\x87\x19\x41\x9d\xb8\x67\x35\xa0\x8c\x73\x92\xb5\xa3\x0e\x99\xaa\x16\xf1\x8b\x07\xd9\xd7\xbd\xcb\x32\x2d\x30\x5d\xbe\x9e\xb8\x00\x14\x0e\xc1\x02\x1c\xeb\x2c\x4f\x24\x1d\x41\x5a\xdf\x47\x60\xaf\x9a\xb5\xdc\x3d\xf2\xe7\x45\x92\xcd\x97\xbf\xc9\x9d\x3e\x44\x35\xca\xcb\x0f\xed\x6c\xb4\x20\x7a\x58\xf7\xe6\xe6\x97\xae\xaf\x9c\x4d\x38\xc2\xa3\x53\x6f\x20\xbb\x16\x9b\x22\xd2\x7d\x57\xe2\xce\x66\x45\x2f\xd9\x81\x5e\xe4\xed\xbb\xa2\xb9\xae\xe5\x0c\xd1\x35\x74\xdd\x96\x9c\xf9\x4d\x32\x6f\x25\x0b\xc9\xc9\x97\xbf\x65\x9b\xe2\x0c\xbf\xf2\x71\xf7\x71\xcc\x8e\xb4\x01\x49\xe3\x33\xa9\x39\x65\xcb\x55\x83\x8e\x86\x24\x06\x27\xc8\xc2\x45\x9a\x88\x3e\x62\x31\x24\x9d\xf1\x4d\x21\x2a\xbb\x3f\x5a\xda\xa8\x42\x88\x7f\xf7\x24\xa0\x46\xcb\x06\x37\x31\xf9\xb0\x8c\x9d\x64\x64\x18\x39\x13\x29\xca\xa4\x1d\x8f\x02\x0b\x63\x2f\xdd\xd3\x1c\xed\x18\xf5\x9c\x8c\x56\xe8\xff\x1b\xcd\x3d\x3b\xe6\x03\xb6\xa4\x1c\x27\xc8\xf9\xe6\xb8\x25\x47\x77\x0b\xdd\x6e\x34\xf3\x45\x7a\x85\x4d\x6b\x39\xbf\x67\xa0\x2b\x49\xb9\xd0\xb4\xeb\xef\xa3\x54\x4b\xa3\x04\xb1\x44\x3c\x83\xb7\x61\x02\xec\xc1\x5b\x0b\x69\x16\x93\xe8\xde\x02\x1e\xcd\xf1\x17\x17\x34\x5d\x89\xdc\xc5\x8c\x1a\x9c\xcc\xaa\xef\x6c\xf5\x41\xd3\x6c\x78\x98\x7a\x7f\xa6\x84\x5d\x74\xff\x53\x6f\xe0\xea\xf9\x11\x32\xb2\x48\x0c\xd8\x60\x92\x1c\xdc\xaa\x41\x32\x41\x09\x05\x2d\xca\xc1\xce\x5c\xef\xd9\x5b\x4e\xa7\x83\x87\x2f\x6c\xb3\x31\x70\xc7\x3f\xc3\x4f\xc4\xc3\x71\x52\x93\x92\x2f\x68\x99\x7c\x43\x7a\x23\x27\xec\x41\xc8\x28\x72\x76\xa8\x27\xc7\xce\xd5\x79\xe3\xbf\x27\xc9\x40\xda\x34\x33\x6e\x08\xbe\x45\x93\x21\xe8\x56\x7c\x59\xa7\x9a\x80\x0e\x08\x9d\xb8\xfa\x10\x12\x50\x45\x26\xb1\xab\xc3\x85\x87\x2a\xb9\xc5\xd1\x5b\x84\x71\xb6\x2c\x61\x87\x8d\xa9\xf5\x96\xa7\x16\x6a\x82\x22\xbd\xb1\xeb\xe2\x17\xfc\x0a\xf8\x1e\x43\xbc\xf5\x69\x2d\x76\x26\x7c\x2b\x4c\xbf\x51\x3b\x5f\x69\x0d\xf1\x8e\x5b\xaf\xba\xa8\x69\x55\x93\x76\xce\x49\x40\x23\xef\x39\xa1\x17\x06\x96\xb8\x70\xd2\xa6\x6e\xbd\xd1\x30\x72\xa4\xfd\x63\xb3\xa1\x4c\xb7\xbe\xe7\x62\xc3\xdf\x75\x6a\x75\x20\xa1\x87\x87\x71\x99\x3d\xe4\xa8\x88\xf3\x7a\xf8\xb2\x7d\x09\x3e\xfe\x11\xe7\x48\x84\x82\xf1\xb6\x99\x30\xe2\xc1\xa3\x24\xad\x3e\x91\xc8\x63\x84\xde\xff\x27\x19\x3d\xcc\x28\xc9\xd2\x84\x61\xeb\xb2\xf6\x1f\x4c\x1a\x31\x42\xc3\xed\xb9\x23\xf6\x1e\xdb\x0c\x04\xdb\xd0\x00\x1e\xdc\x01\x6c\x65\x16\xb7\x54\xd2\x6b\x81\x92\x55\x6a\xf2\x62\xe0\x18\x17\x7c\xb5\x28\xc7\x6d\xcc\xe8\x7a\xdd\xd1\xe0\x8e\x60\x76\xf6\xf6\xf4\xc9\x69\xd0\xd3\xdc\x05\x41\x6b\x3e\xd9\x7b\x06\x70\xeb\x5d\xc1\xe1\xe8\x21\x1f\xa7\x2f\x0c\x8e\x37\xbb\xa9\xba\x41\xbb\x68\x86\x8b\xf4\xbb\xae\x11\x4e\xb9\xd4\x9d\xdf\xfd\xda\xb9\xd5\x25\x41\x9c\x3c\x08\x24\xa9\xf0\xfd\x3d\x5e\x87\xbe\x6e\xf2\x71\xa1\x18\x99\xd3\x24\x7a\xf7\x8e\xee\x45\xa2\xbc\xac\xe6\x21\x7f\x51\x5a\xe0\x24\xb5\xc8\x72\xe4\x97\x23\xe1\xbe\x95\x5b\x80\x11\x2c\x3e\x20\x4f\xd0\x9e\x82\xe9\x56\x46\x5d\x4e\x5c\xa9\x74\x45\x7a\x08\xf2\x42\x76\xce\xf0\x9d\x5a\x5c\x99\xbc\x9a\xbf\x5a\xc1\x33\xdf\x86\x02\xb1\x61\xa3\x1b\xb9\xae\x80\x54\x23\x38\xc5\x5c\x56\xb5\x50\xa0\x9b\xba\x0b\x6b\xa2\x6d\xfc\x03\x47\x15\x1b\x0e\x73\x61\x0f\xd6\x28\x6d\x10\x2f\x46\xe9\xb7\x7f\xef\xe5\x72\xc7\x33\xc8\x21\xfd\xe5\xa8\x0b\x24\x16\x57\x9d\x81\xd3\x99\x41\x57\x98\x21\xee\x6f\xfe\xb6\x2e\x5b\xa8\x7b\xf2\x69\x34\x54\xf9\x0c\xc5\x4f\x6f\x98\xcf\xf5\x0e\x39\x0d\xe9\x39\x89\x06\x12\x28\x13\x40\xc9\x55\x4f\xdd\xa2\xf5\x4d\x15\x5c\x0b\xdb\xb9\x17\x8f\x6c\x9f\x92\xd1\xcc\xb5\xc5\x0a\xff\xb8\x47\xd6\xde\xe3\x3e\x63\xb8\x03\x9d\x56\xc6\x8c\x3b\x3b\xe2\xe4\x7e\xa2\x73\xcb\xb5\x2f\x78\x35\xe5\xcc\xb4\x8a\xc6\x22\x8f\x32\x8c\xc6\x32\x78\x4e\x64\x0c\x7b\x60\x3c\xa1\xbb\x07\x1c\xae\x86\xb0\x99\x03\xa3\xcb\x7d\xc6\x14\x7f\x94\x86\x98\xb7\xc1\x38\xdd\x9d\xac\xb8\xbf\xda\x9d\xca\x17\x23\x85\x0b\x4e\xe5\x3d\x5b\xbe\x14\x33\x6f\xd8\x91\x2e\xf4\x7c\x70\x88\x2c\x1d\x4c\xdd\xcc\xff\x58\x91\xb1\x73\x4d\xb8\x0a\x64\x1c\x98\xd5\xe5\x64\x70\x42\xa8\x25\x4e\xfa\xa1\x98\x91\xa1\x3b\xb5\x57\x99\xd7\x8e\xb4\xd0\xdf\xa4\x51\x48\x05\x77\xbf\x1e\x3a\xb1\x3a\x72\x59\xdd\x4b\x9b\x85\xe3\x8d\x55\x48\x15\x1f\x4e\xc4\xbe\x70\xec\x39\x1c\x47\xd4\x6c\xba\x5f\xb4\x07\x00\x47\xeb\xcc\x5b\x02\xce\x5e\xfd\x89\x0f\xf6\x01\x6b\x68\x16\x49\x34\x43\xac\x85\x60\x21\x37\x01\x41\x89\x3e\xad\xc9\x1c\xb6\x1c\xda\x10\x9e\x70\x73\x19\x14\x27\x79\x36\x1e\x60\x74\x26\x25\xb3\x70\x6f\x0d\x4c\xa7\x19\x98\x25\x32\x64\x48\x71\xf1\x44\x85\x9a\xe3\xe8\x15\x47\x34\x2a\x8d\x3c\x81\x7c\xc9\x2c\xe5\x27\x18\x3d\x97\xe4\xc5\xcf\xe8\x89\xbc\x90\xf2\x74\x20\x89\x7e\xdf\x90\xbc\xb8\xba\x65\x50\x2c\x9e\x76\xb1\x10\xca\x3f\x6a\x6c\xfa\x48\xd1\xef\x1a\xdb\xf1\x1e\xbe\xda\x3f\xc2\xa3\x78\x80\xbb\xbd\x42\xe9\x63\x06\xbe\x37\x17\xe5\x04\xa3\x7a\x8e\x8a\xde\x11\x75\x5c\x15\xc7\x83\x8d\x38\x4b\xcf\x48\x35\x5e\xc9\x6d\xca\xa1\xd1\x9a\x9f\x3a\xe3\xeb\x9e\x3e\xa8\x29\x0e\x18\xf1\xcf\x02\x59\x97\x31\x97\xe3\x71\x5c\xe2\x2b\x77\x59\x34\xcd\x2c\xd5\xde\xfc\x8c\x1b\xee\x71\xaa\xd2\xef\x78\x99\xbe\x8f\xdf\x53\x8e\xde\xa8\x41\xdc\x85\x75\xef\x7d\xda\xf4\xc1\xdc\x71\xba\xc8\x43\x49\x3c\xfb\xee\x52\xd2\x9f\xb2\x25\x75\x1c\x92\xa1\xba\xab\xa1\x90\x6a\x23\x59\xef\x42\x99\x8e\xaf\x94\x42\xaa\xec\x1c\xd3\xc2\xd5\xd6\x4d\x53\xa3\xf9\xf9\x0b\xf9\x37\x28\xac\xf0\xbb\x45\xf7\x29\xf9\xa6\x4b\x74\xc3\x25\x9a\x2a\x7b\x9c\x91\x26\x58\x94\x59\xef\x97\x8e\x41\x58\xb9\x77\xb6\xa5\x09\xcf\xdf\x46\x8d\xec\x30\x22\xf6\x73\xf7\x56\x1a\x92\xf3\x73\x1d\x59\x3a\xec\x89\xce\x17\x38\xdf\x85\x19\x34\x7a\x65\x94\x93\x08\xfb\xbc\xd8\xc8\x17\x56\x20\x5f\x58\x94\x24\x36\x7c\x1b\xe6\xcc\x0d\x25\x9a\x8f\xca\xe5\x70\x4a\xca\xd2\x5d\x3d\x7c\x97\x2b\xd9\x45\xfa\xd1\xdf\xbf\x4e\xbe\xe6\xab\x71\x97\x22\x94\x93\x4f\x51\x18\x7f\x32\xb8\x06\x42\x76\x34\x1b\xf7\xae\x1d\x27\xff\x28\xd8\x7b\x26\x69\x8d\x62\x20\xeb\x73\xbe\xc6\x5f\xf5\xb9\xa3\x74\x96\xe2\xa0\x8f\xbf\x5d\xf4\xc6\xe5\xd3\xe5\xe7\xe5\xe2\x32\x67\x73\xa4\xcd\xba\x08\xdc\xf8\xab\xbf\xc7\x11\x7f\x1c\xd5\x15\x09\x93\x7c\x42\x5e\xc9\x3c\x4a\x5b\x53\xa4\x4d\xe4\xc5\x8f\x7d\x2d\xc9\xca\x27\x68\x71\xc2\xd7\xfe\xca\x1b\xa1\xd3\x35\xe4\xa9\x2a\xc9\x73\xd1\xf6\x5b\xbe\xaf\x3c\x05\xd7\xf6\xf5\xfc\x54\x1f\x3b\x8d\x21\xa0\xf5\xd7\x0b\xcd\x02\xd5\x70\x92\x09\x77\xef\xd5\xa6\x2f\x34\xbf\xc2\xf3\x0f\xfa\x82\xbb\x9a\xa3\x87\x1b\x4a\x42\xf9\x6e\x6f\xec\x96\xac\x40\x09\xc6\x74\xdb\x87\x85\xdb\x89\xe9\xa5\xa6\xb2\x0d\x9a\x4c\x70\x9a\x3a\xa2\x73\xe0\xf6\xe3\x9a\x0a\x19\xf4\xf6\xb7\xf4\x3b\x06\xcd\x0e\x58\xc9\xf6\x69\xd2\xe1\xaa\xc2\xaa\x99\x40\x47\x19\x72\x6e\x6b\x2b\x1e\xef\x2d\x4d\xfd\x96\x61\xe3\x3d\xc0\xf5\x4a\x9f\x2b\x73\x24\xc4\x0f\xe1\x19\xda\x86\xa3\x14\x8c\x24\xe6\xfa\xd6\x27\x48\xdb\x37\xf2\xb8\xb9\x89\x11\x27\xa3\xe4\x21\x3a\x9f\xc0\x38\x45\xbe\x0e\x40\x64\xb1\x76\x9f\x72\x16\x89\x90\x5d\xbd\x5a\xf0\x63\x74\xf6\x92\x4f\xe3\x5f\x1b\xff\x98\x0a\xde\x73\xd5\x14\x34\x9f\xcd\xa8\xfc\x81\x5c\xfb\x2f\x3f\x18\x3e\xc8\xb6\x9f\x7d\x4e\xe4\x50\x6b\xa2\x75\x6b\x54\x33\xe5\xe7\x43\x41\x0b\x22\x7e\x35\xd1\x1a\x95\xc1\x1d\xfb\x01\x99\x4a\x72\x16\xf0\x5f\x1c\x1e\xc8\x14\x75\x0d\x04\xba\x5b\xa5\x56\x86\xdc\x1d\x5a\xa5\xa8\x83\x28\x78\x24\x99\x6e\xa0\x30\x71\xbc\x70\x6a\x2e\x15\x53\xc1\x51\x34\x5c\x83\xcf\xa3\xa7\x37\x35\x46\xd1\x78\x6f\x23\x93\x81\x3e\x8d\x38\x70\xf6\x25\x31\x75\xfb\x70\x11\x0f\x75\x82\x18\x7e\xcb\x38\x6f\xc5\x55\xb2\x47\xcb\xab\xb6\x24\x2f\x49\x65\x9a\xbf\xe5\x7f\x32\xff\x24\x71\x91\x0a\xd1\x55\xdf\xe2\x78\x7d\xb1\x6e\xda\xa6\x27\x43\xc6\xcc\xbf\x69\x5a\xfc\x41\x2b\x24\x16\x5c\xaa\x38\x38\x78\x3e\x0b\xda\x2d\x7a\xce\x19\xf1\x56\x0c\xf8\x17\xf8\x56\xe6\x5a\x2f\xae\xd5\x35\x5d\x5e\xb9\x3a\xf0\xb2\xaf\xf8\x84\xe6\x0d\x3e\xc7\x35\x5f\xab\x8b\x3e\xd1\x39\xb4\x5a\xb3\xec\x72\x1a\x5f\x31\x77\xc0\xaf\x96\x7c\xd0\x98\xc0\x6e\x1b\xce\x8e\xb4\xa8\x08\xb9\xfd\x76\x81\xa9\x13\xce\x49\xf7\xde\x8a\x9c\x78\x7c\xf3\x57\x4b\x44\x2d\xd7\xf5\xce\x7a\xc0\xa6\x1c\x3c\x18\xe3\xb8\x05\x1d\x62\x34\xea\x89\xea\xb8\x25\x3a\xae\xfa\xbc\x5c\x1a\x77\x11\x71\xa2\xae\x43\xed\xa5\xc9\xb7\x29\x62\x9f\xd2\x97\x09\xac\x32\xe0\x3e\xec\xb8\x6a\x53\x58\x8a\x2b\x96\x45\x65\x46\x95\x9e\xe9\x16\xb0\xb7\x12\x07\xe2\x8c\xaa\x91\x74\xa4\x11\xef\xab\xa4\x0a\xcd\x78\x88\x8a\x97\x71\x6f\xcd\x92\xe4\x23\x6d\x7b\xaf\xe8\x5f\x0d\x28\x46\x88\x27\x15\xc5\xa0\xcb\xa6\xe9\x60\x76\x6d\xa1\xce\xae\xde\xa5\xa8\xc3\x1d\x10\x52\x0a\x79\xed\x1d\xdc\x40\xa1\xa5\x2a\x07\x90\xc8\xb5\xa7\x90\xb8\x41\xa2\x28\xea\xb2\xed\x61\x26\xd3\x0e\x95\xf4\x7b\xea\x0a\x88\x8f\x5e\x9c\x13\xe4\xc1\xaa\xbe\xe3\x51\x35\xdf\x75\x4a\xa5\x64\x85\x5c\x9a\xbd\x9d\x9b\xb8\x95\x13\x80\x1e\xae\x3c\xdd\x3d\x57\x9c\xee\x5f\xd2\xbf\xe3\x40\x64\xd9\xaf\xde\x99\x0e\x97\x59\x2e\x17\x1c\xdc\x11\x1a\x3b\x73\x40\xd9\x63\x06\xca\x9e\x12\x50\xf6\x06\x40\xae\xd5\x84\x56\x68\xe3\xdc\x90\x56\xca\x81\x3c\xd1\x4a\xf0\x17\x35\xa4\x5e\x27\x9b\xe2\x63\xd9\x14\x7d\x63\xa9\x0d\x44\xc6\x5b\xbb\x50\x3b\x47\xd9\x19\xba\xa2\x6f\x59\x9e\xf2\x7e\xed\x5e\xd0\x8e\x0c\x9e\xcc\xa5\x50\x49\x1a\x84\x4d\x26\x9b\xfb\x6a\x47\xfa\x60\x30\xcf\x38\xa4\x70\x55\x39\x0b\x6a\x72\x8c\x71\x43\x9c\xdb\x95\x1a\x62\xf1\x2c\xe2\xc1\xc5\xb2\x54\xd9\xcd\xff\x96\x37\x63\xbe\x39\x19\xcb\x4f\x57\xe7\x2c\xa7\xd5\xce\x44\x78\xc2\x54\xde\x03\xbb\xcd\xc1\xa3\x87\x81\xdd\x58\x04\x56\x3a\x27\x8e\xe1\x3a\x63\x68\x1d\x80\x6a\x4a\x7a\x4c\x0f\x10\xb5\xba\xe5\xce\x83\xe6\x4f\x25\xe2\x35\x15\x75\x5f\xcb\x09\x2f\x67\x50\xd5\xfd\x2d\x18\xe7\x52\x6d\xfc\x4a\x6b\xfa\x42\xab\x42\x05\xfb\xc1\x7d\x72\x6a\x6d\xa1\x59\xf1\x41\x50\x5a\x12\x2e\xfb\x07\x97\xb2\x14\x4d\x3d\x1c\x2b\x25\x7a\xef\x54\xf2\x8b\xf8\xa6\x92\xcb\xea\xda\x3a\x5b\x00\x12\xb9\xf6\xaa\x2d\xd7\x92\x76\x74\x90\xb7\x4e\x40\x39\x13\x9b\x1c\xc3\x26\xb5\xd9\x7e\x1b\xda\x44\x8a\x98\xbd\x8d\xed\x79\x7d\x01\xe7\xd5\xf2\xfa\x42\x11\xbf\x67\x7c\xfb\xf1\x63\x98\x60\x38\x51\x94\xa8\x95\x14\xf5\xa5\x5d\x04\x54\xc7\x39\x38\xa3\x2b\x02\x2c\xc0\x03\x38\xe3\x3f\x06\x1d\x7b\xce\xf2\xa9\xd5\xe1\x33\x78\x7e\xa7\x9b\x23\x7c\x0f\xb4\x20\xa9\xc3\x99\x5c\xbc\x2e\xf5\x0d\xe2\x01\xa7\x70\x35\x7e\xcb\x42\x71\x95\x4e\xf4\xe0\xf1\x6a\x0a\x3a\xf5\x56\x4f\x78\x23\xe8\x3f\xe9\x55\xa2\xb8\x6b\xf7\x36\xd1\xa0\xe7\xff\x9c\xd7\x89\xe4\xb5\x95\x19\x5f\x66\xba\x95\xbf\xc7\xa1\x47\x03\xee\xe5\x2f\x83\xf8\x1a\xfe\x36\x3c\x67\x90\xd0\x45\x2a\x67\xae\xfd\x88\xae\x53\xb6\x96\xaa\x7b\xd2\xbc\x0e\xc6\x24\x9f\x46\xc7\xa0\xf2\x99\x93\xfc\x91\xe0\x93\x34\x7f\x12\x3e\x2e\x25\xb8\x10\xc0\x1e\x34\x52\x6f\xaa\xdc\x7f\x9e\x4a\x3a\x27\x2e\x45\xe5\xff\xdb\xa7\x12\x24\x80\x78\xef\xa4\x32\x32\x28\xc4\x6f\x05\x20\xcd\x80\x13\x40\x83\x07\x2b\xb5\x42\x3c\x49\xf9\x14\xe5\x74\x92\x0f\xf2\xde\x48\xe1\xef\x19\xc8\xd7\xc9\x40\xaa\x68\x0a\x49\xc4\xfc\xf1\x54\xdf\x0c\x36\x90\x71\x93\x80\xc3\xf8\x76\xf9\x7a\xd9\xd8\x6e\xfe\xb4\x41\x66\x25\xf9\x80\x3b\x50\xf3\xb3\x1e\xd7\xcc\xdc\xa7\x25\x47\x0e\xd6\xf3\xc7\xf0\x43\x3e\x79\xe9\x7b\xee\x3a\x32\x0c\xfb\x2e\x7a\x67\xe6\x58\xbe\xe0\x3e\xaf\x7c\x19\xc3\xa6\x70\x75\x82\xb4\x00\x45\x3b\x7a\x0a\x88\x34\x95\x55\x19\x61\xc7\x83\xca\xfb\x0c\x0e\x6e\xfa\x81\x06\xae\x22\xa9\x99\xe6\x5f\xd3\x3f\xc2\xbb\xde\x52\x71\x10\x1b\x08\xd5\x85\xcd\xe7\x2f\xc8\x32\x2b\xb2\xf3\x63\x57\x60\x37\xdd\x56\x32\xa8\x4e\xae\x45\x76\xfe\xe2\xcd\x59\x0c\xcb\x58\xc5\xc7\x2c\x46\x2d\x4a\x22\xf4\x26\xb5\xf4\x39\x9a\xae\xb2\xf3\xa7\xee\x16\x57\x76\x52\x5e\xb0\x31\xf3\xe6\xf9\xb9\x5f\x1e\x1c\x54\xf1\xed\x41\x33\x0a\x59\x3b\xd7\x5b\x85\xd9\xd9\xf1\x8b\x41\xbb\x20\x5b\xff\x04\x39\x7a\xa8\xb4\x0b\xcc\xe3\xbe\x7b\x60\xdc\x13\x6f\xb9\xe5\x03\x56\x6b\x7e\x6c\x3c\x57\x44\x7b\x34\x0b\xf5\x51\x6c\xce\x34\x79\xa6\x7b\xda\xe0\xb9\x33\x17\x7d\x14\x76\xb7\x98\x2d\xe2\x50\xa0\x5b\xba\x8b\x5b\x72\x8e\xd3\xd1\x56\x1c\xb7\x1d\x6f\x56\x1f\x3f\x9b\x89\x9b\xdf\xf9\x21\xc8\x85\x30\xf1\x64\x48\xcd\xad\xd5\x5c\xc4\x7b\x1a\x3a\x63\x14\x8d\xa1\xee\xfe\x24\xdc\xe2\x52\x71\xde\x8a\xc9\xc3\x94\x81\xd7\x42\x6b\xe4\xdb\xed\x84\x2f\xd9\x3d\x0d\xc6\xe3\x8d\x20\xa9\x71\xc4\xc2\xdb\x28\x58\x68\x1f\x68\x74\xb3\x6c\x0f\xd4\x50\x4c\xe9\xe7\xe6\xe2\x82\xec\x1c\x83\x04\x45\x06\xb9\x3f\x88\x7b\xca\x1a\xcb\x66\xde\xa7\xd5\xdd\x73\xfb\x4d\x2f\x4e\x8a\x35\xe2\x36\xfd\xc5\xc8\xec\x79\xb3\x16\x13\x82\xcb\x7d\xb5\xb6\xd7\x47\xf9\x22\xf5\x50\x35\xf0\xb8\x75\x80\x85\x11\xec\x81\xc1\x2e\xda\x36\xfc\xec\xbe\x26\x0b\xce\x46\x19\xce\xdd\xca\xe0\xac\x67\xb5\x90\xec\xa6\xc3\x2a\xec\xa3\xfa\xda\x5d\x55\x3d\x85\x1a\xd8\x21\xd8\xd7\xd7\xa6\xc9\x7d\x54\x55\xf8\x45\x9a\x75\xe8\x94\x93\xb3\xa4\x5b\xcb\x39\x7f\x8b\xe6\x80\x90\x54\xa5\x43\xc6\xcb\x71\xca\xb8\xcf\x24\x66\x35\x52\xa8\xc3\x0a\x2c\xf7\x52\x1a\xd6\xfc\xb1\x1e\x66\x3d\x81\xc5\x19\x57\x8a\x76\xcc\xf0\x31\xda\x9e\xc2\xc7\x64\xbb\x0d\x9f\xe3\xf5\x8b\xbf\x5b\x5b\xc5\x64\x73\xfe\x7c\xaa\xd0\x05\xbe\x7c\x6e\x71\x75\x90\xf5\xde\x4f\x91\xe3\x6c\x4d\x5c\xf5\xe9\x17\x71\x0d\x8f\xe7\xe1\xc7\xa9\x26\xec\x9f\x89\xec\xcc\x9f\xa2\x16\x9c\xf0\xbe\x85\x1b\x57\xd1\x1c\x9c\xdc\x4e\x1f\x19\xc2\x25\x47\x7e\xf9\x5f\x83\x3f\xfc\x4d\x50\x18\x95\xfa\x7a\xf6\x69\xb2\x0d\x0e\x59\xc4\x6d\x07\x09\x83\x30\xa5\xba\xed\xc0\x8d\x19\xb7\x76\x5a\x7d\x9a\x91\x4d\x7c\xda\x6b\x3b\xa4\xc3\xd1\xeb\x3b\x8f\xf9\x35\x7d\x51\x0e\x07\x75\x5d\xe2\x36\x97\xc8\x8d\xef\x3e\x84\xa1\x13\x45\x7c\xeb\x1e\x2b\x79\x56\xf3\xee\x05\x72\x94\xb7\xaf\x7c\x23\xee\x49\x7d\x24\xfe\x79\xe9\x43\xd8\x3f\x66\xb2\xee\x99\x37\xf6\xc7\x0c\x1e\x86\x83\xdc\xa7\xef\x37\x3f\xb3\x38\x76\xaf\xb8\xa9\xb0\x92\xdb\x9f\xb8\xdd\xb2\xa8\xf8\xa4\x25\x6c\xcb\xdf\x96\x85\xb0\xb4\xbf\x45\xe5\xe7\x9a\xbc\x5b\x1f\x55\x8e\x1f\xd0\x3f\x49\x5f\x99\xde\xdb\x9a\xbb\xef\xbc\x97\x9b\x42\x2e\x1d\xad\x41\xca\x4c\x4f\x3d\x9a\x7a\x4d\x24\xfa\xcf\xf8\x91\x3d\xe7\x1f\x61\xed\xe5\xb6\x26\xfb\x18\x48\x02\x12\xbf\xf1\xbf\x2c\xca\x68\x54\x66\x1d\xa8\xda\xbe\x2b\xb7\xd0\x47\xf4\x05\xdb\xf9\x2b\x04\x5e\xcb\x82\xe9\xab\xb7\x32\x10\x56\x4e\xa2\x75\x3a\xb8\xd3\xbc\x60\x80\x21\x7c\xa2\x1b\xcb\x93\x84\x49\xb9\xa3\x58\x62\xb0\x06\xd4\xea\xde\xe2\x7b\x7a\xfa\xfc\xd5\x10\x76\x4a\x38\x68\xd1\x58\x98\x68\xc1\xa4\xe4\x90\x33\xc8\xe9\xa9\xf0\xf1\xe3\x00\x72\xef\x24\x84\xf6\x0e\xc9\x44\xa1\xc2\x41\x05\xd2\x60\xb6\xe0\xce\x63\xfc\x0b\xf3\xfd\x10\xf0\xf4\x83\x05\xfb\xa0\xe9\x07\xf2\x34\xe9\xde\x39\x0d\x69\x8d\x84\xe7\x1c\x1a\xf7\x90\x4d\x5d\x1d\xb2\xcc\xf1\xfa\x0a\x1b\x84\x57\xc6\x84\xb1\x0f\x2b\x38\xc0\x03\x14\xe3\x9b\x08\x73\x20\x9a\x2f\x87\xda\xaf\x28\x71\x28\x18\xb2\x3e\x58\x52\xaa\x78\xc6\xd7\x4b\x72\xab\x12\xe1\xab\x9d\x5e\x60\x4f\xea\xae\x57\x1e\xa5\xe2\x10\x4c\xf0\xda\x39\x8f\x62\xc5\xae\xb9\xc1\xec\xab\xf2\xc2\x0c\x3c\x8f\x8e\xc9\xa7\x70\x70\xd9\x75\x5b\xab\xd7\xd6\x6f\xfe\x42\x1d\xf0\xf3\x04\xc3\xd9\xde\xd2\xe8\x60\xf8\xdb\x92\xdd\xce\xfb\x17\xef\x19\xbf\x09\x39\x82\xd7\xcd\x69\xee\x2d\x09\x06\xbd\xf9\x29\x86\x75\xcc\xe8\x1e\xff\x8d\x19\x32\x7a\x0c\x33\xa8\x28\xfb\xd7\x36\xd6\x4a\x00\x19\xab\x56\x5a\xea\x03\x7a\x66\xab\x96\x36\x9c\x37\x12\x1e\x81\x05\x6b\x39\xf7\x9a\x16\x26\x5c\xef\x3e\x5a\xa2\xf5\xa2\x87\x63\x8a\xc6\x5f\xe4\x11\x34\x67\xb9\xd5\x97\xf2\x48\x9c\x7d\x08\x45\x3e\x45\x2e\x7d\x8d\xd2\xe3\xba\x62\xf3\x1e\xa7\xc9\x66\xec\xa3\x8d\x5b\x68\xd8\x68\x39\x93\x47\xf6\xf8\x48\x25\x56\x13\x1d\xdc\xc4\x9d\x22\x3f\x70\x42\x21\x24\x55\x1b\x6d\x8b\xd3\x63\x88\xa8\xc1\x44\x7d\xf8\x10\x29\x17\x85\x24\x3f\x17\xc8\x63\x12\x6d\xa0\x3e\x37\x92\x0f\x43\x72\xd5\x22\x65\x2c\xfe\xb4\xf8\xc3\x3c\x51\x63\x5d\xd9\xc4\x5c\x5c\x51\xb3\x9d\xbf\xda\xce\x62\x50\xb6\x70\x22\xd3\xae\x4e\x36\x74\x0c\xc7\xea\x21\xc1\x6d\xf1\x97\x88\x53\x5b\x41\x1f\xf9\x3e\x7d\xf9\x25\x0e\xb1\x5b\xb1\xa3\x39\xbd\xb0\x79\x4f\x73\x28\xcb\x65\x57\xa9\x73\x59\x7e\x68\x5c\x1c\x63\x04\xfc\xc0\xb6\xab\x07\xf7\xe2\x1c\xb8\x58\xcf\x00\xe0\x12\xe4\xfe\xc9\xe5\x65\xd6\x71\x48\xae\xdf\x1f\x42\x74\x93\xcb\xd3\x9a\x34\x2e\x2e\x2c\x69\xdf\xfe\x53\x9c\x66\x37\xcd\x19\xfc\x83\x84\x43\xdd\xfc\x45\x23\x88\xa3\x66\x3f\xae\x39\x9f\x76\x8a\xe7\x2a\xbf\xca\xb6\x44\x83\x69\x00\xa1\xa4\xca\x00\x82\x5c\xf2\x94\x49\xcc\x71\xaa\x8d\x2e\x5f\x47\x68\xc3\xc2\xd1\x97\x5b\x90\x97\x1f\xc4\x9d\xe6\x4e\xfd\xe3\xc2\xbd\xc6\x80\x2b\xd6\x95\xbc\x5e\x99\x47\xe2\x0b\x11\x57\x36\xfb\xa3\xbb\xad\xcc\x94\xd0\x35\x4d\x45\x74\x90\xaf\x69\x2d\xf3\x15\x1e\x55\xc1\x7b\x2a\xb8\x44\x50\x84\x67\xda\x40\x87\xd7\x73\xfd\xf3\x0f\x76\xfe\x07\x0e\x16\x43\x54\x02\xb2\x99\xfe\x61\x43\x1f\x88\xd6\xe0\x48\xe2\xdf\x97\xf4\x1b\xb0\xf2\xab\xa0\x5f\x78\xac\x4f\x7e\x5d\x73\x65\xf8\x18\xb5\x2e\x89\x27\xaa\x4d\x1c\xc5\x3f\x77\xf4\x23\xbf\xf9\x0f\x69\xc8\xe2\x19\xbd\x82\x53\xf7\x6a\x7f\x56\xd3\xa7\x52\x5f\x92\xd2\x57\xba\x95\xcf\x97\x4d\xdf\xf2\x47\x79\xc0\xf3\x1e\x9f\x6d\xed\xf8\x0b\x3f\x16\xc8\x5f\xae\x8d\x79\xa7\x2d\x62\x10\xda\x20\xe9\x96\x97\xd2\x9e\xb1\x3a\x14\xa4\x0a\xe5\x4f\x18\x8e\x7c\x6a\xf3\xeb\x85\x1b\x93\x1b\x90\x7c\x75\x23\xd2\xe1\x30\x66\x8b\xb6\xd9\x22\xa1\xe2\xf7\xe1\x01\x25\xf7\x94\xc5\x13\x2a\xca\x60\x83\xda\x8c\x13\x6e\x23\x75\x2d\x9e\x9b\x41\x7e\x03\x79\xb0\x78\xc6\xf7\x40\x39\xd1\x69\x59\x6f\x7b\xb5\x3b\x91\xd3\x62\x95\x23\xa3\x85\x40\x69\x1b\xcd\x85\x64\x4d\xe0\x04\xf3\xfa\x6e\x07\xad\xeb\x62\x49\xfb\xc7\xd7\xf4\x83\x24\xc3\x07\xf3\xf9\xbf\xfd\x1b\x43\xd3\x9f\xff\xfe\xef\xd9\x8b\xc7\x5f\x64\xe6\x3d\x52\xa9\xd9\x6c\x93\x93\x40\xef\x37\x0e\x8a\x7e\x7e\x9d\x00\xf2\x6d\x64\x0e\xb0\xe5\xf3\x8a\xd7\x92\xc0\x01\x7f\xdf\xbd\xf3\x7f\x03\x00\x00\xff\xff\x1e\x69\x75\x99\x86\xa4\x00\x00") func confLocaleLocale_esEsIniBytes() ([]byte, error) { return bindataRead( @@ -807,12 +807,12 @@ func confLocaleLocale_esEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 42042, mode: os.FileMode(493), modTime: time.Unix(1439590380, 0)} + info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 42118, mode: os.FileMode(493), modTime: time.Unix(1439758812, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_frFrIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7d\x4b\x8f\xdc\xc6\x96\xe6\x5e\x80\xfe\x03\xad\x81\xa6\x24\xa0\x94\x82\x6d\xcc\x03\x17\x4a\x79\x4a\x25\xd9\x96\x51\x7a\x5c\x95\xec\x8b\x1e\xc3\xc8\xcb\x24\xa3\xb2\x68\x31\xc9\x34\x83\xac\x52\xa9\xd1\xc0\x6c\xef\xbf\xb8\x98\xc5\x8c\xd5\x8b\x59\xf5\x6e\x76\x5d\xff\x64\x7e\xc9\x9c\xef\x9c\x13\x2f\x92\x59\xb2\xdd\xe8\x85\x54\xc9\x78\xc7\x89\xf3\x8e\x13\x11\xf9\x6e\xb7\x2a\x8d\x2d\x96\xdf\x37\x99\x35\xdd\x45\x55\x98\xac\x34\xd9\x37\x55\x9f\xd9\xbc\xb1\xd9\xae\xab\x2c\xa7\xf4\xd7\xff\xdc\x9b\x2c\x1f\xfa\xf6\xc1\xf9\xf5\xc7\xb5\xe9\x36\xd7\x1f\xb3\xa2\x2d\xe9\x7f\xd3\x64\xdf\xb4\xb7\x6f\xdd\xbe\x75\xde\x6e\xcd\xf2\xa8\x28\x06\x53\xd5\xb7\x6f\x95\xb9\x3d\x5f\xb7\x79\x57\x2e\xdf\xe6\xeb\xda\xe4\x03\x9a\x59\xb7\x5d\x79\xfb\x96\x79\xbf\xab\xdb\xce\x2c\x9f\xc9\xdf\x8e\xaa\x9a\x7a\xb7\x3c\xaa\x4a\x73\xfb\x96\xad\x36\xcd\xaa\x6a\x96\xc7\x6d\xd3\x98\xf7\x55\xdb\x50\x52\x5b\x54\x79\xbd\x9a\xe4\x64\xf9\x85\x29\xb2\xa1\xc9\xba\xeb\x8f\x16\x3d\x48\xc1\xec\x4f\xd9\x17\x26\xbb\xfe\xd8\xe7\x3b\x93\x3d\xb2\xdb\xbc\xae\x1f\xe7\x16\x79\xa6\x43\xe9\xa2\xdd\xee\x7a\xf3\xe8\xa1\xe4\x68\x8f\xed\xd0\x2f\x9f\x5e\x7f\x2c\xa2\x5e\x91\x3c\xec\x96\xc7\xd4\x7a\x5c\xf1\xf6\xad\xce\x6c\x2a\xdb\x9b\x6e\x79\x7a\x60\x1a\xf9\xe0\x59\x5c\x9a\xb5\xad\x7a\xb3\x3c\xa5\xff\xb2\xbf\x98\xf5\xed\x5b\x17\xa6\xb3\xd4\xd8\xf2\x07\xf9\x7b\xfb\xd6\x2e\xdf\x98\xe5\x6b\xfa\xef\xf6\xad\xde\x6c\x77\x75\x4e\xc5\x5f\x10\x18\x7f\xad\x29\xa5\xce\x9b\xcd\x80\x02\x27\xf8\x41\x09\x45\x67\xa8\xc0\xaa\x31\x97\x34\x0a\xfc\xcc\xe8\xe7\x62\xb1\xb8\x7d\x6b\xa0\xd5\x5a\xed\xba\xf6\xac\xaa\xcd\x2a\x6f\xca\xd5\x16\x00\xfd\x9e\x52\x33\x4d\xcd\x28\x35\x43\xaa\xcc\xc4\x94\x04\xba\x55\x6e\x69\x70\xf8\xc8\x2a\x82\x9e\xc5\xaa\xa1\xa5\x26\xa7\x95\x7b\xd9\x6e\xb3\xf2\x60\xe8\xab\xba\xb2\xd4\xd5\x40\x13\x32\xdb\xbc\xaa\x97\xcf\x1e\xe0\x0f\xc6\x6e\xed\x25\x2d\x20\x0d\xb8\xc7\x62\xe2\x9b\xa1\xb1\xea\xaf\x76\x06\xcb\x72\x56\x75\x5b\xf3\x81\xc6\x9d\xef\xfa\xe2\x3c\x5f\x1e\xcb\x5f\x74\xd3\x99\x5d\x4b\xc0\x69\xbb\xab\xe5\x9b\xeb\x8f\x67\xd7\x1f\x3b\xd3\xf4\x95\xa1\x66\xdb\x6e\x93\x37\xd5\x87\xbc\x07\xa0\x5e\xf1\x87\xe5\x8f\xdb\xb7\xb6\x55\xd7\xb5\xdd\xf2\x45\xd5\xb5\x15\x0d\x87\x26\xbf\x42\x3b\x34\xd4\xe1\x02\xeb\x3d\x6a\x09\xf9\xdb\x6a\xd3\x01\xa8\x5c\xa4\x26\x30\xbc\xe0\x04\x6e\x0e\xf9\x67\x6d\xf7\x6e\xbe\x3e\x4d\xfe\xd9\x76\xdd\xe5\x4d\x71\x6e\xb6\x94\x24\xe5\x69\x74\xa1\xad\xd1\xe8\xf2\x86\x16\x8b\x4b\x7c\x83\x56\xba\xac\x36\x36\x29\x43\x00\xce\xcb\x2d\xc1\x7d\x97\x37\xa6\x5e\x1e\xe1\x37\x90\x45\x1b\xc8\x8b\xa2\x1d\x9a\x7e\x65\x4d\xdf\x57\xcd\xc6\x12\x62\x74\xf9\xf6\xfa\x57\xc2\x26\x9b\x95\x43\x76\xac\xf8\x36\x97\x7f\xfb\xd6\x55\x3b\x78\x14\x58\xfe\x03\x7d\x64\xaf\xe5\x43\xb3\x7c\x2d\xce\x3b\xd5\x2f\xac\x05\xcd\xcb\xae\xce\x8c\x29\x97\x5f\xd7\xc3\x7b\x9a\x77\x5e\xf4\x43\x5e\x57\x3d\x91\x11\x2d\xf3\x50\xd7\x04\xe6\x5f\x06\x63\x7b\x4b\x34\x4a\xc3\xad\x3a\xc3\x73\x7b\x43\xa9\x60\x04\x54\xaa\xb2\x96\x0a\x2c\xa9\xcb\x75\x7d\xfd\xeb\xd6\x70\xc3\x05\x01\x0f\xf3\x6c\x9a\xa1\x06\x41\xdc\xbe\xf5\x23\xd1\x65\x57\x9c\xff\x84\x49\xe0\xc7\xf2\x8d\x21\xf0\x76\xf8\xc7\x78\xbc\x1f\x2d\x80\x97\xcb\xef\x63\x6c\xe4\x2e\x43\x8f\xd4\x5d\x5b\x02\xed\xc0\x35\xa8\xa7\xaa\xb1\x3d\x11\x34\x75\xa5\xbf\x96\xcf\xe5\xaf\x42\xbb\xaf\x7a\x02\x14\xd2\xba\xa1\xe0\xd5\x01\x12\xbf\xee\xcc\xb6\xba\xfe\x95\x26\x98\x96\x06\x00\x88\x8c\x57\xe5\x5a\x18\xe4\x37\xed\xc6\x66\x0d\x31\x08\x63\x41\xe3\xd9\x8b\xab\xd3\x3f\x9f\x1c\x66\xaf\x5b\xdb\x6f\x3a\x43\xbf\xb3\x76\xc8\xe8\x0f\xe5\x7d\x49\xf3\xa2\x6a\xd2\x5f\xb2\xa4\x04\xc5\x3c\x5b\xe7\xc2\x52\x4b\x62\x35\xc4\x59\xac\x14\x06\x05\xbd\xa5\xff\x90\xf3\x44\x4b\x3c\xf5\x25\xce\xa9\x9b\xe5\xb7\xd7\xff\x02\x6c\x98\x02\x26\x21\xcc\xa7\x34\x27\x21\x4c\x6a\x36\x10\x36\x77\x3d\x6d\x98\xca\x80\xf7\x52\x8b\x3f\x98\xa1\x22\x1c\xff\x90\x09\x07\x60\x6c\x26\xfe\x81\x1e\xb2\xe7\x2f\x5f\xbe\x7a\xfa\x44\xd8\x2d\xa5\xfe\x6c\x98\x99\x17\x34\xb5\xa2\x07\xec\x2c\x55\x3a\xfb\xaf\xab\x8d\x69\x4c\x47\x8c\xba\xa8\xb2\x1d\x70\x8e\x61\x44\xc0\xb0\xb6\x26\xfe\x54\x32\xa7\x33\xd9\xe9\xe9\x09\x86\xdc\x9f\x2f\x8f\x89\xd0\x2a\x70\xda\x5f\x6a\x80\x5a\x07\xf2\x0c\x6c\xb1\x60\x12\x04\x11\x9c\x55\xc5\x39\x18\xf7\x3c\xf0\x22\x90\x9b\xae\x5b\x11\x4b\xed\xaf\x56\xda\x1e\xf7\x71\x42\xe3\xe4\x6e\xe6\x1b\x70\xf5\x89\xb1\x66\x3b\x33\xf4\x19\xa1\x37\xe1\xc2\x05\x89\xa2\x05\xb0\xca\x4d\x69\xba\x98\x44\xf2\xd4\x40\x97\x83\x80\x48\x62\xb6\x20\x2d\x88\xd3\x04\xe4\x07\x47\xbb\x5d\x5d\x15\x8e\xde\x35\xdb\xcd\x94\x30\xae\xe8\xaa\x0b\x82\xf9\x19\xa3\x20\x4f\x99\xe0\xdb\x48\xed\x8b\x16\x43\x69\x23\x7e\x92\x55\x04\xda\xcf\x84\x6a\x64\x7a\x31\xb0\xde\xe4\x45\x45\xd3\x28\x27\x7c\xd1\x17\x77\x1d\xbf\x6d\x07\x2b\x04\x1d\x17\xb4\x2c\xf7\x4b\x62\x50\x79\xd3\x5b\xe8\x03\x6d\x03\x3d\x80\x98\xdf\x86\xe4\x38\x31\x07\xf4\x0f\xa2\x1d\x48\x30\x02\x0b\x9f\x35\x10\x7c\x10\x8d\x09\x3e\xba\x7c\xd7\xdd\x49\x2c\x55\x08\xf2\xd4\x4b\x7e\x41\x1c\x3d\x23\x06\x78\xfd\xab\xcd\xae\xff\x8e\x95\xd9\x33\xfc\xcc\xd0\xa2\x7c\x7c\x4f\x94\x37\x90\xc8\x65\x40\x83\xbe\x5a\x92\x49\xcd\xf2\x29\xff\x31\xee\xdb\x75\x78\x6c\xa8\xbd\xfc\xec\xcc\x14\xbd\x30\xae\xb2\x1d\xd6\x35\x53\xfc\xc1\xf7\x6f\x4e\x08\x05\xbf\xa5\x36\xce\xfb\x7e\xb7\xda\xb5\x5d\xbf\x7c\x4d\xff\x65\xdf\xbe\x7d\xfb\x3a\x4a\x74\x6d\xbd\x1c\xb6\x34\x96\x96\x05\x1e\x8a\x11\x5f\xa4\x75\xcd\xc3\xba\x66\xd0\x1a\x30\xb6\x7c\x21\x4b\x3c\x74\xf5\x12\xbd\xcc\x23\x00\xe5\xfe\xd6\x61\x62\x44\x0f\xf1\xdf\x29\x80\x40\x88\x41\xda\x49\x6f\x1a\x22\xbe\x03\xc3\x32\x99\x51\xb4\xdd\xa1\xf1\x59\x1c\x3d\xcb\x8b\xa1\xee\xa9\xf3\x33\xab\xc2\x7c\x8e\x2b\x11\xdf\x0a\xaa\xdf\x0b\xe2\x6f\x24\xd5\xba\x0a\x72\x67\x4b\xb0\x08\xac\x27\x3b\x7d\x01\x08\x71\xea\x59\xd7\x6e\xc1\x8a\x2f\x4c\x93\x83\x4e\x4d\x94\xee\xa6\x77\x54\x52\xf3\x42\x6d\xf5\x01\xe9\x7c\xd7\x1f\xcb\x0a\x18\x70\x98\xbd\xf9\xfa\x38\xfb\x4f\x5f\x7e\xf1\xc5\x22\x3b\x05\x32\x0c\xb4\xec\xb9\x16\x26\x50\x76\x1d\x96\xdd\x56\x84\xda\xe6\x90\x74\x3a\xa0\x0b\xf1\x81\xb6\xdb\xe6\x7d\x76\x87\x48\xeb\x4e\xf6\x88\x27\xf3\xdf\xcc\xfb\x1c\x85\x16\xa4\x98\x3d\x5e\x40\x20\x93\xf4\xeb\x14\x35\x19\x40\xd2\xf7\xb3\xd0\xb7\x2f\x34\x56\x66\x98\x67\xce\x14\x77\xba\xde\xaa\x10\xf5\x86\x14\xdc\x9e\x48\xb6\x03\xc6\xaa\xc6\x23\x58\x40\xda\x83\xd7\x05\x45\x7d\x60\x78\x37\x2d\x41\xff\x2a\xae\xf5\x12\x29\x0e\x77\x48\xb6\x64\x2f\xa8\x9c\xcd\x3a\x73\xfd\xbf\x07\x0b\x39\xd9\x51\xc1\x95\x6a\xe3\xf3\xeb\xc5\x65\x88\x94\x4c\xcf\x0d\x90\x5a\x8e\x0c\xad\x42\x6d\xb4\x67\x67\x35\x91\x85\x30\x5d\xdf\x35\x2d\x2e\xf8\xef\x79\xdb\xd9\x2c\xd2\x73\xe3\xc2\x84\xf9\x3b\x52\x79\x49\x11\xb6\x79\xa8\x76\xfc\xf4\xe5\x61\xb6\xbd\xfe\xe7\xad\x81\xb2\x4f\x2a\x47\x29\x02\x74\x91\xbd\x05\xe2\x0b\x2b\xc1\xf2\xd1\xda\x15\xc6\x73\x0e\x70\x92\xae\x5a\x0f\xcc\xa7\xa9\x62\xdd\x16\x39\x50\x96\xd2\x61\x11\xac\x14\x5a\xa2\xf8\x8d\xba\xc4\x6a\x0f\x35\x2b\x1e\xe5\x41\xc5\x7c\x72\x27\x34\x34\x57\x7b\x7e\xd8\xfb\xda\x20\x9c\x32\x43\x2d\xa3\xce\x83\x4a\x46\x00\xb5\x90\x01\x17\xe0\xa5\x85\x28\xfd\x80\xae\x68\xfd\x76\xa1\x3a\x01\xa9\xbb\x6a\x88\xac\x2e\x2a\x52\xcc\x9f\x12\x2a\x36\x25\x73\x41\x13\xc0\x2a\x02\x90\x68\xbb\x82\xaa\xc3\xed\x40\xf5\xb7\xf3\x8d\xe8\xf8\x4f\x69\x58\x0a\x4d\xa2\x1f\x8b\xb6\x74\xa5\x48\xcc\x7e\x34\x61\x74\xcc\x3c\x6b\xd7\xe6\x22\x3b\xa1\x9f\x17\x95\xad\x64\x0e\x79\xd3\x36\x57\xa4\x91\xb1\x4c\x03\x39\xb5\xae\x0a\xf3\x2e\x57\x8d\x45\xb8\x1b\xef\x43\x93\x20\xef\xc2\x29\xae\xaa\x44\x8a\x0e\xf4\x03\xc4\x46\x73\x90\x43\x62\x11\xfd\x64\x6b\x43\xc4\xc9\x82\xb5\x18\xd9\x48\x02\x57\x1a\x58\xc2\xf9\xf3\x2b\xf0\x8a\xfa\xe0\xf9\xd3\x6c\x99\x7d\x4e\x68\xdb\xe5\x60\xa5\x22\x04\xb8\x06\x5b\x98\x20\x28\x1a\x69\x32\x8e\x59\x32\x10\xfd\x38\x3b\x4a\xd6\xd0\xd5\x88\x6c\x9a\x44\x38\x39\x85\x7c\x86\xfc\xa1\x51\x32\x45\x87\x6c\x6f\xd4\x08\xf9\xc4\x65\xa5\xa1\xd4\x44\x52\xcd\x73\xb5\x21\x29\xe5\xd4\x4f\x15\x5a\x30\xf8\x6c\xbf\xda\x54\xfd\xea\x0c\x2c\x88\xec\x62\x9a\x60\x0e\x6c\x95\x95\xd8\x32\x1e\x65\x77\xa8\xc4\x1d\xc8\x94\xf3\x16\x94\x43\xc6\xec\xdd\x0b\xa7\x22\x7d\x09\x76\xb2\xca\x2f\xa8\x3e\x68\x80\x16\x84\x95\x15\x31\x2e\xb3\x1d\x09\x8f\x0a\x55\xb0\xee\x24\x3d\x4b\x5e\x24\x22\x3c\x32\xc1\xba\x8d\x57\x75\x16\x99\x57\xf5\x08\xab\x6a\xf4\x84\x6c\xe6\x4d\xae\xa9\x75\xd5\x30\xdd\xb4\x40\xe0\x8a\x6d\x1f\x12\xd2\x05\x21\x43\xe0\xd4\x77\x41\x12\x55\x73\x41\x86\x43\x09\x35\x59\x51\x65\xac\xf1\x4e\x34\xb6\xaa\x29\xda\xae\x23\x94\xb6\x3a\x37\xd7\x46\xd0\x6a\x44\x31\xdc\xab\x11\x68\x05\x07\x1b\xaf\x6e\x00\x38\x84\x3c\x64\x65\xa4\x78\x47\xd5\x08\x3f\x09\x73\x69\x01\x18\x26\x75\x8a\x96\x64\xfd\x18\x78\x0d\xee\xda\xec\xc1\x63\xfa\x9f\xc0\x4d\x38\x2e\x1c\x7f\xe3\x56\xeb\xd4\xe9\x41\x46\x35\x49\xc9\x1e\x3a\xaf\x04\x24\x0b\xe6\x26\x95\x90\xd1\x18\x81\x63\x62\xf1\x08\xec\xa7\x17\xe0\x23\x48\x65\x87\x02\xd6\xc7\xf2\x49\x65\x1a\x62\x03\x44\xcb\x9f\x91\x30\x21\x92\xb4\x84\x3b\x54\xfa\x9c\x2a\x1b\x52\x47\x41\xe5\x17\x48\xcf\xaf\x68\x8d\x69\x58\xc4\x19\x18\x05\x0f\xb3\x7c\x4b\x80\xfa\xf0\x80\x73\x49\x78\x00\x4b\xa8\x88\xa3\x62\x24\xb3\x4a\xf1\x23\x5c\x39\x64\x48\x0d\xa2\xad\xb6\x75\x09\x45\x68\x4c\x4b\xb0\x78\xc6\xbe\x01\x57\x38\x25\x15\x7b\x59\xd1\xaa\xac\xbc\x4b\x68\xc5\x8a\xcc\xfb\x7e\x49\x06\x49\x01\x53\x91\xa5\x8c\xa4\xf1\x7a\x47\x2e\xa3\x27\xec\x32\xda\x5e\x31\x7a\xd8\xe5\x8b\x89\xd6\x0a\xaa\x25\xb3\x6d\xdd\x76\x4c\x4c\x5a\x6e\xa4\xd9\x46\x45\xa0\x0b\x51\x73\xa4\x57\x4b\x6b\x23\x83\x9d\xb2\xc4\xed\x20\xb9\xe2\x7b\x60\xeb\xf6\x47\xf5\x5b\xfd\xa4\x66\xeb\x72\x3c\x0e\x2a\x42\xfc\x0b\xc6\x6e\x70\xdc\xac\xd4\xc8\x8f\xdc\x48\xce\xfb\x70\x3c\x72\x27\x91\xde\xb4\x83\x6a\xb2\xb5\x1b\x88\xb2\x9f\x89\xe2\x3c\x57\x26\xf4\xfd\x2a\x3b\x16\x51\xe0\x16\xf0\x33\xef\x19\x9b\x6b\x81\x2c\x53\x0b\x3a\x85\xc6\x7d\x10\x18\xf3\x57\xd9\x91\xb8\xc2\x3e\x3c\x20\x98\x7f\x36\x96\xa7\xe2\x55\xa2\x92\x2c\x4c\x5b\xe2\x0e\x87\x2c\x31\x52\xf1\x60\x33\x88\x94\xeb\x8f\xc4\x3f\xb2\xd2\x09\x5d\xfa\x1b\xb1\x16\xac\x30\x25\x63\x69\x0f\x46\xf8\x0d\x05\x86\x18\xd1\x44\x13\xc0\xc0\xc1\x4c\xa3\x9e\x47\x3a\xd6\x2e\xef\x58\x5b\x62\x79\xfa\x6c\x34\xa4\x7c\x3a\x20\xc3\x42\x7b\x6b\xb6\x6b\xb4\x6d\x48\xc0\x12\xae\x43\x84\x56\x6c\x4f\xbe\x68\xab\xdb\xb7\x48\x4b\xd8\x10\xdf\x98\xd7\x07\x5b\x61\xa9\x52\xca\x7c\xa2\xd4\xbf\xfe\xfd\x2b\xef\x35\x24\x5e\x74\x49\xd4\xae\x42\x56\x21\xaf\x28\x00\x4b\xa5\x67\xbd\x79\xe1\x25\x8e\xa8\x31\xac\x31\x5a\x9a\x8d\x5b\x84\xef\x1b\x32\x06\x05\x5b\x9c\x3a\x1b\x57\x00\x53\x96\x49\x13\x47\x68\xaf\xe8\x2f\x25\x3c\x5a\x3f\xbe\x6b\x1f\x3d\x5c\x3f\x8e\x56\x83\x60\xd1\x91\xd2\x49\x9d\x8b\x51\xb9\x6e\xaf\xff\x4f\xcf\x8c\xac\x83\x4b\x63\x27\xba\x28\x3c\xbe\x84\x29\x04\x40\xd2\x9a\x90\x79\xb7\x14\xa6\x62\x45\x9d\xc1\x44\x68\x5d\x7a\xdf\xcc\x44\x69\x70\x4a\x8d\x48\xc5\x91\xa3\x96\x34\x6b\xe5\x16\xa2\xa4\xad\xd8\x4d\xe5\xe8\xc3\xa9\xa9\xd2\x72\xa0\x0d\x06\x47\x5d\x6d\xab\x7e\x8a\x99\x17\xad\xcd\x7a\x27\x45\xad\x38\xb2\xaa\x0b\x01\x8d\x05\x8a\xf6\x5d\xbb\xcb\xce\x68\x8e\xc4\x13\x1b\x28\x71\x01\x24\x58\x0b\x32\x75\xae\xa0\x9d\x61\xe2\x5f\x66\x84\xa4\x83\x28\x7a\xe7\xb9\x5d\x0d\x8d\x42\xda\x94\x82\x96\x4f\xda\xe6\x67\x40\xe1\xae\x3d\xd4\x41\x4e\x6c\x96\x7b\x1e\xf6\xf7\xa1\x27\xb1\xac\x91\xf5\xd1\xb6\x80\x92\xd9\x69\x25\xec\x59\x35\x29\x56\xfc\x49\xf1\x29\x98\x48\xb5\xa5\xf1\x42\xb7\x70\x6e\x0f\xe7\x39\xd1\x0d\x6a\x30\x52\x30\xdf\x3c\xc0\xca\x57\xc4\xd9\x77\xbb\x01\xec\xde\x0e\xcc\x4c\xd7\xa4\x98\x53\xb5\xa2\x7a\x50\xb2\x5e\x2e\xea\x2b\xc1\x52\x27\x73\x5c\x43\xc5\xfa\xc0\x0e\x05\x5e\xdb\x8e\x31\x48\x18\xd4\x1c\xaa\x39\xfb\x91\x15\x10\xe6\x20\xf0\xb2\x1e\x27\x1a\x81\x18\xa5\x2a\x67\xa5\x10\x04\x22\xe1\xa4\x9b\x1d\x16\x15\x68\x82\x71\x60\x38\xfd\x9e\xd1\xdc\xeb\xee\xbb\xf1\xc0\x0b\xa5\xe3\xa1\x25\x23\x3e\xd2\x13\xc7\x73\xfe\x10\x62\x25\xdb\x91\x33\xda\xc6\x64\xfa\x26\xaa\xe1\x4c\xa0\x58\x30\x39\x29\xcd\x9e\xc4\x80\x57\xf8\x9c\x2c\x81\xd7\x3a\x68\x2d\x48\x12\x54\x34\x9a\xc5\xb8\x43\x6f\xd9\x4f\xc0\x9b\x0e\x44\xf0\x27\x1d\xba\x6f\xa3\x6f\xdb\x95\x3d\x87\x5f\xe2\x24\x2d\x23\xae\x13\x71\x02\x10\x07\xfb\xcf\x89\x07\x0e\x2c\x76\x3b\x6c\x45\x7e\x93\x2d\x97\xc3\x13\x7a\x65\xec\xf2\xd5\x40\x5c\xae\x81\xd3\x1c\x3e\xeb\xb6\x84\x39\xfa\x02\x7f\x2a\x75\xd1\xc2\x4e\xa2\xb2\xd8\x3c\x78\xb9\x47\x69\x7e\x43\xf2\x2e\xe4\x4d\x1c\x4c\xcf\x78\x15\x9d\xbd\xef\xa8\xfc\xf5\xbc\x8e\xfd\xc6\xa4\xdb\x05\xd3\x55\x39\x3d\xfd\xf6\x2d\xeb\xfb\xc1\x73\x59\xd0\xba\xc0\x6d\x73\xfb\xd6\xb7\x7d\xbf\xb3\xdf\xab\x8b\x85\x9d\x23\xe8\xe9\xaa\x6e\xf3\xf2\x7b\xef\x78\xb1\xde\xc5\xc9\x9e\x29\xd8\x5d\x6f\x4d\xbe\x8d\xa6\x07\x96\x50\xed\xa8\xb3\x23\x92\xd8\x51\x3a\x0c\x90\xce\xbb\xf8\xd9\xb4\x78\x16\xa9\xf8\xe2\x21\xc8\x47\x16\x47\xb0\xea\x0c\x6f\x58\xfc\x35\x7b\x39\x71\x27\x66\x7f\x25\xbe\x57\xef\xce\x73\x56\x83\x7c\x41\x5a\x52\x36\xe9\xa4\x20\xdb\x9b\xd1\xa2\x72\x85\xc3\xac\x19\xb6\xa6\x03\x46\x59\x20\x1f\x21\x00\xe1\xa9\xc9\xee\x3d\x58\xdd\xcf\x9c\xaa\x98\xb6\x5e\x12\x95\xfe\xc1\x1e\x0e\xe7\xdb\x6f\x07\x31\x62\x49\x55\xec\xb9\x37\x5b\x7d\x30\x71\x1f\xae\x03\x71\xe6\xf5\x39\xb8\x2c\xcb\x10\xbb\xf8\x2b\x76\x72\x48\x09\x8e\x6b\xdc\xb5\x73\xd8\x8b\x86\xb7\xf9\xfb\x9b\x8b\xe6\xef\x5d\x51\x61\x49\xae\xdc\x88\x0d\x79\x7a\xa5\x82\x70\xba\xb9\x62\xc0\x90\x24\xaf\x79\x47\xc2\xba\xd1\xfc\x67\x64\x9a\xb0\x0e\x0e\xd3\x98\x14\xe9\x3f\xf9\xdd\xac\x95\x37\x5c\x40\x97\xba\xb5\x95\xb1\xd1\x4f\xa9\x76\xd7\x8a\xc1\xb5\x88\x28\x39\x32\x48\x46\x94\x0c\x7f\x5e\x9e\xf2\x97\x72\x54\x24\x69\x19\x0b\x28\x8d\x87\x1d\xbb\xd5\xda\x18\xb2\x8c\xf3\x77\xa6\x99\x6e\xde\x41\x8a\x43\x83\xc4\x0e\xae\xee\xb3\xac\x66\x2b\x99\xf1\x2e\x58\x52\x8f\xd4\x9e\xf9\x6a\x07\x89\x5f\x3a\xad\xd4\x13\xa9\xed\xa9\xa5\x64\x37\xaa\x20\xeb\xc8\x85\x69\x72\xa5\xe7\x24\xba\x92\x5a\x58\x66\x27\x5a\x1d\xb0\x6b\x03\x9f\xa7\xeb\x0a\x10\x6e\x9c\xd7\xdd\xf5\x02\x56\x59\xf1\x3e\xc2\x08\xeb\xa1\x80\x75\x65\xd5\xdb\x45\x04\x4e\xbf\x6c\x61\xa1\xa7\x60\x6d\x53\x89\x13\xac\x59\x4c\x03\xad\x76\xbc\xd3\x1a\x59\xb4\x3c\xba\x19\x4d\x4c\x9c\x31\x3c\x68\x9b\xc3\x44\x9b\xd8\xb9\x56\xd8\xfd\xde\xe6\x09\x6b\x61\xf5\x7e\xba\x7d\x6a\x99\x74\x27\x02\x36\x36\xc5\x61\xd7\x4b\x87\x9f\x6a\xdf\x8b\xd1\xfd\xad\x27\xb0\x98\x6d\xd5\x5b\xe6\xa4\x09\xda\x1e\x1a\x43\x16\xc3\x93\x94\x05\xa4\x1b\xc5\xee\x3a\xb7\x3d\x4c\x33\x99\xdb\xc8\x8e\x87\x41\xf4\xbe\xa8\x07\x68\x9e\x96\x1d\xe2\x64\x6a\x36\x18\x0d\x54\xfc\xce\xa4\x8b\x9f\xcc\x78\x91\x3d\xaf\x85\x4b\x5d\xe9\xde\xc3\xd0\x88\xdf\x74\x54\x0e\x04\xe6\xe6\x6f\x89\x93\xbe\x33\x57\x91\x62\x50\x6d\xc9\xee\xb3\xd5\x5a\x58\x9b\xf0\x10\x27\xcd\x9d\x88\x62\x47\x02\xdb\xce\x30\x6d\x48\xa5\x25\x81\xeb\x9b\x92\x6d\x44\xa8\x86\x43\x04\x4c\x78\x5e\xd0\x56\xc5\xf6\x8b\x19\x35\xe8\x7c\xaf\x04\xdb\x06\x7a\x23\x59\x41\x3d\x6f\x12\x60\x55\x09\xff\x30\xd9\x5f\x86\x03\xf6\xd2\xd4\x86\xe1\xbf\xc8\xb0\xb7\xf0\x80\x1a\x24\x5d\xd5\x2f\x1e\x5b\xfd\xd8\xf7\x27\x25\xd1\x74\xf0\xad\x91\xec\x73\xfe\x8d\xeb\xbf\x15\xe7\xa4\xa4\xb3\x04\x3c\x07\x02\x7a\x1f\xb5\xcc\x87\x38\x3e\x2d\x45\x8d\x85\x91\x4d\x78\x71\x3e\xa9\x71\x83\x3f\xa4\xb1\x98\xac\x6f\x07\x68\xc9\x56\xa4\x85\x03\x2d\xf6\x8e\x68\xb8\x44\xc8\xbb\xeb\x7f\xa1\xd1\xb1\x27\xb1\x34\x50\x7f\xa9\x43\x44\x85\xb0\x95\x69\x87\x1d\x95\x27\x49\x04\x32\x43\x02\x49\xd8\xc6\x32\x45\x60\xb8\x32\x00\x28\xe7\xd8\x73\x1f\xf5\xaf\x94\xee\xfb\x87\xc9\x44\xc2\xca\xea\xee\xc2\x39\x0d\x41\x2d\x26\x24\xc4\xdc\xeb\x50\x20\x23\xc3\xc1\xae\x6f\x2f\x03\x08\xa3\x71\xea\xbe\x36\xa2\x7c\x71\x04\x0f\xd1\x85\x13\xb6\xf8\x5b\xa0\x32\xe2\xbf\x7f\x14\x36\xf1\xf2\xf0\x06\x88\xaa\xe6\xe3\xc5\xcc\x1d\x37\xe5\xdd\x02\x80\x83\x57\x5c\xf6\x70\x3d\xa9\xc5\x86\x12\x6f\x4c\xd1\xc2\x61\x9f\xb1\x23\xbc\xad\xc2\x58\x3e\xa0\xbe\x1a\xa8\x3c\x86\x3e\x67\x33\x59\xa2\x28\x22\xaa\x3f\xc9\x33\x8d\xac\x20\x93\x04\xd4\x33\x22\x7b\xd2\x42\x31\x68\x78\x4e\xce\xf3\x66\x63\xe0\xe3\xa4\xb6\x96\xc7\xfc\xc5\x80\xe0\x04\xd2\xa4\xf2\x6c\xd3\xc9\x07\xb6\x7d\x7c\x85\x62\xb0\x7d\xbb\x4d\xeb\xf9\x85\x93\xba\x6c\xe6\x89\xfb\x3b\x0a\xa3\xf8\x99\x90\x64\xd5\x36\x24\x73\x68\x75\xe1\x67\xa9\x4d\x14\x96\x50\x99\xa9\x9b\x87\x8d\xcc\xaa\xd7\x4d\x1d\x8e\x9a\x10\xdf\x2b\xd4\x27\xb8\x0a\xea\xba\xbd\x34\x9d\x5d\x1e\xad\x59\x09\x85\x3f\x91\xfa\x27\xce\x0a\x9c\xe5\x6f\x29\x03\x8f\x20\x97\x11\x0f\x06\xc0\x00\x5d\x7c\xc1\xd2\x08\x86\x45\x77\x41\x75\x54\xb0\x1d\xdc\xb5\x07\xcc\xf6\x38\xd8\xa9\xbb\x60\xeb\x23\x14\xdf\xe5\x40\xdb\x46\xec\x33\x1e\x00\xeb\xdd\xd5\x99\x54\x74\x02\x4f\xac\x11\x00\x81\xda\xb4\xa9\x6c\x5b\x68\xc0\x86\x04\x8a\xd0\x5a\xb8\xe0\x12\x89\x2b\x99\x06\x00\x39\xef\x9e\xf0\x36\x4b\x56\x0f\x40\xc1\x5a\xba\x38\xa6\x00\x3a\x04\x66\xbd\xcf\x4e\xf1\x3d\xbc\xe7\x2d\x50\xb7\x1f\x4a\x00\x8a\x3e\x98\xa6\xec\x72\xe4\x8d\x2b\xc9\xca\x45\x44\x95\x47\xfe\x3a\xf8\x06\x86\xaa\x5c\x3e\x7f\x3a\x36\x55\x10\xc0\x42\x6b\x51\xac\xd2\xd1\x67\xaf\x39\xd5\x4f\xca\xed\x68\xc4\x76\xbc\xaa\x1b\xec\x25\xd6\xf5\x84\xa2\x46\xd0\xce\x83\xf2\x11\x43\x30\xd0\x15\xf6\xbf\x6a\x75\x43\xe4\xce\xb1\x4b\x56\x39\x31\xa0\x8a\x65\x25\xd7\xea\xb1\x5d\x96\xb5\x3b\xc4\x0d\x30\x35\xfe\xc5\xac\x33\xc3\x1b\xc0\xec\x3a\x06\x76\x83\x83\x8b\x77\xec\x0c\x81\x38\xba\x8d\xd1\xf0\xac\x09\x16\x73\x51\x66\xd8\x58\xe3\x4d\xb4\x13\xec\xb0\x79\xe3\x65\xd8\x95\x70\x42\x3a\x38\xfc\xa0\xd2\x0a\x43\x67\x33\x30\x40\x3e\x2d\xe9\x1d\xcd\x0a\xb9\x6d\xc5\x5b\xf4\xec\xfc\x60\x47\x0e\xf2\xaf\x7f\x05\xdd\x2a\xf1\x45\x31\x64\xcd\x48\x5f\x92\x9e\xe0\x42\x1b\x95\x95\x05\x98\x2a\x58\xae\x82\x88\x30\xbf\x3d\xde\xbb\x90\x85\x9a\xd8\xbc\x83\xf6\x19\x0f\xec\x22\x12\x04\x0b\x76\x23\x57\xa4\xb9\x77\xd9\x57\xec\x5d\xe3\x8f\xa5\x4f\x9d\x0b\x52\x32\x22\xaa\x53\x16\xe2\xb7\x4d\x0f\x8e\x84\x7d\xe8\x96\x5c\xce\x68\x30\x5f\x29\x6c\xec\xb3\x28\xd8\x39\xdd\x58\x77\x25\x61\x39\xf2\x8e\x60\xbe\x91\xb5\xfe\x46\x39\x19\x80\xd3\xb6\x56\x1d\xc6\xd2\xff\xe9\xf5\xc7\xda\xf0\x36\x6b\x23\x5e\x19\xf1\xf9\x64\xae\x86\xae\x99\x96\x7e\x41\x3d\x76\x26\x0c\x96\xc0\xf2\x5d\x3b\x70\x31\x58\xc6\xa4\xd4\xe9\x08\x99\x3f\xac\xaa\x2d\x87\x19\x1a\x1f\x5d\x13\xed\x04\x25\x3b\x25\x90\x95\x5c\x78\x01\x1f\xc2\x68\xb6\x61\x23\xea\x88\xfd\x3b\xf9\x0c\xa0\xb0\x0b\x4c\x06\x0c\x98\xfe\x61\x16\xb9\xe7\x82\x26\xb5\x18\xcd\xc5\xa3\xdf\x0f\x31\xf3\x76\xde\xdd\x1b\x90\xd1\xa3\x58\xc4\xa7\x4a\x55\xb0\xc6\x2e\x86\xb6\x2e\xf7\x38\x73\x65\x37\x48\x82\xff\x7c\x09\xe7\xb2\x4f\x1b\x99\x31\x18\xe2\xd0\x48\xb7\xb1\x14\x9b\x08\xa3\x11\xfa\xb9\x26\xf5\x1c\x09\xa4\x13\x14\xc5\x60\x87\x91\xb0\xdc\xdd\xb1\x20\xe0\xad\xdd\xc1\x6f\x13\x9b\xce\x47\x69\x79\xc7\x71\xd4\x34\x43\x89\xad\x2d\xeb\x8c\x2c\xeb\xfd\x35\x1a\xcf\xa8\xd9\x51\x48\x63\xee\x4a\x1a\x2d\x29\xf6\xda\x7e\x0e\xaa\x6a\x69\x0e\x5e\xf6\x9b\x98\x27\x02\x19\x9c\x1a\x12\xd8\x23\xdb\xd2\xc4\xf6\xf3\xee\x8a\x78\x91\x6b\xd2\xa7\xa9\x97\x99\xb4\xf3\xb3\x0a\xfe\x30\x6c\xa1\x9a\xa8\x6f\x27\x3d\xb4\x9c\x97\x21\xd8\xba\x2d\x99\xd4\x24\xe3\xe8\x67\x0e\xdf\x61\x5c\x6f\x5c\xa8\xe7\xd8\xb7\x2b\x95\xc6\x15\xe6\xb2\x57\x89\x4b\x1f\x2b\xe4\xdd\xf8\xb5\xb7\x68\x47\xbe\xc5\xfc\x06\x37\x3e\xa9\xff\xa6\x2b\xd8\x1f\x3f\x75\xe3\x57\xf3\x5e\x7c\x40\x78\xbf\xf3\xbe\x66\xa3\x07\x78\x37\xd8\xf1\x50\x16\xf1\x4c\x52\x4a\xf4\xce\x69\x37\xda\x1c\x70\x18\xa3\x29\x30\x4c\x31\xc9\x2b\x06\x11\x2e\x15\x41\x47\x40\x3f\xb0\x89\x62\xf8\x43\x85\x10\x8d\x82\xb1\xeb\xd8\xd0\xc4\xc1\x8b\x90\x57\xb3\xc2\x58\xc6\x8d\x04\x2f\xf3\x8c\x24\x38\xf5\x5a\x6a\x81\x25\xb5\x61\x63\x94\x1a\x23\x7a\x04\x8f\xaa\x68\x8d\x3f\xa8\x12\x8a\x5e\x95\x81\x3f\xb2\x7d\xd7\x36\x9b\xc7\x4f\x34\xc2\xe1\x20\x27\xd1\xf9\xd5\xa3\x87\x9a\x0c\x21\x63\x87\x1a\xbe\xf8\x86\xbb\xdc\x0c\x55\xa9\xc8\xfd\x28\xcf\xce\x3b\x73\xb6\xbc\x73\xd7\xde\x79\x9c\x6d\x24\x4a\xd0\x85\x92\xb8\x71\x3f\x7a\x98\x3f\x86\x1e\x0f\x12\x6e\x87\x52\xc3\x6b\xd3\xaa\x3b\x1f\x5a\xcb\x90\xe7\x98\x3c\x0e\x9f\xe4\xda\x8b\x80\xc5\x73\x30\x54\x2d\x4c\x16\x20\xf2\xac\x9c\x44\x41\x64\xc1\xb1\xea\xb5\x1d\xb7\xb2\xb1\xab\xc5\x35\xc2\x42\x9b\x1b\x21\x74\x1e\x55\x53\x96\x23\x76\x2a\xb4\x55\xd5\xee\xc5\xd6\xa0\x46\x5c\x03\x91\x4b\x57\x96\x1a\x19\x32\xa2\x9e\x85\x34\x8d\xcc\x63\x86\xc7\x3f\x32\x1f\x3c\x61\x7a\x33\x9b\xf5\xda\x11\x2a\x9a\x04\x17\x79\x7b\x53\x58\x00\x60\x34\x62\x00\xd0\xf9\x15\x81\x25\xf8\xde\xf6\x32\xbd\xa7\x70\x2a\x70\x48\xb0\xd3\x4b\x40\x57\x28\x43\x12\x30\x28\xff\x10\x79\x26\xcb\x9d\x0d\x20\x34\xd8\x40\x31\xe5\xa1\xf7\x90\x68\x8a\xc4\xd0\x06\x78\xdc\x13\xf8\x92\x55\xdc\x71\x50\x0c\xad\xf2\x7f\x71\xee\x0c\xcb\xe2\xcd\xc6\x94\x24\xea\x74\x44\x47\x9d\xd3\xac\xad\x68\xd6\x9e\x12\xac\xdf\x15\x4e\x29\x88\x20\x1e\x11\x90\xc4\x34\x29\xeb\xd8\xd3\x50\x4a\x41\x71\x60\xc1\x3c\xfd\x0c\xcd\xba\x6a\x08\x7c\x95\x9e\xb5\x70\x29\x7e\x19\x35\x5e\x27\x74\xea\x0e\x6c\x94\x95\xf6\x19\x73\x8f\x9c\x2b\xad\xfa\x16\xde\xc3\x68\xe6\x3f\x1b\xf1\x7e\xb8\xc0\x21\x17\x2a\x05\xd3\x4c\xc2\x75\x75\xe7\xdd\xd7\x6c\x5c\x65\x2f\x13\xb9\x0d\x32\x57\x51\xc2\x0a\xa0\xbe\xe3\x66\x0f\xa3\xe8\x09\xc8\x59\xa5\x5f\x5a\xb2\x5f\x86\xca\xc7\x5f\x89\xa7\xdb\x2d\xa2\x32\x58\x0c\xe7\x23\x14\x6c\x78\xc0\x0f\x8e\x5e\x3f\x77\xb1\xaa\x7e\x2c\xba\x22\x22\xa6\x58\x10\x1e\x70\x6c\x47\xd3\x1f\x22\x46\x07\x3d\xf3\xc0\x24\x32\x0a\x0a\x95\xcc\xb0\x10\xd5\x7f\xc2\xe1\x74\x02\x11\x61\xf9\x99\x79\x40\xcc\x00\x61\xb6\x88\x2c\x12\x59\xbb\x2f\x63\x10\x05\x28\x3b\xcc\x0d\x00\x49\x29\x0d\x61\x05\x24\x6c\x34\x34\x81\x85\xca\x2e\x08\xaa\x66\xbe\x51\xbf\x74\xf1\x9e\xb8\xe8\x39\x0d\xab\x0e\x1a\x68\x66\x1a\x92\x81\x68\x9e\x59\x07\x90\x8f\x5d\x78\x81\xbc\x65\x96\x11\x81\xc7\xe9\x01\xff\x4c\xf6\xdd\xbe\x01\xb8\xf9\xa9\x6b\x63\x3a\xbf\x97\x07\xbc\xcd\xaf\x23\x82\xb3\x5e\x54\x6e\xec\x41\xc7\x46\xad\xd7\x4e\xaf\x3f\x6e\x48\x09\xd1\x8d\x71\x3f\x22\xb7\xdd\x3d\x6b\xd1\x6a\x19\xdd\xe7\x4e\x1c\x5c\xac\x47\x85\xc1\x95\xa2\xf4\xc0\xaa\xe0\xd8\x6f\xc2\x8e\x42\x8d\x0e\x6f\x5c\x82\xea\x9d\x20\x7b\xfe\xe6\xcd\xf5\xdf\x7e\x78\xf6\xe6\xf4\xf9\x93\x93\x67\x41\x8e\x7d\x16\x42\xde\x46\xe3\x73\xdb\x73\xec\x9c\xe4\x7e\x71\xf0\x81\x03\x30\x93\x82\x1a\x99\x77\x1a\x4a\x84\x90\x87\x49\x59\xe5\x48\xbf\x6d\x4e\x8c\x08\xb5\xc3\xa8\x22\x36\xeb\x6e\xdf\xfa\x11\x1e\x9a\x9f\x48\x8f\x67\x37\xf1\xeb\xd8\x85\x1b\x6d\x76\xec\xd9\xae\x0c\x9b\x21\x2e\x10\x9f\xba\xd6\xb5\x3a\xf4\x3e\xf3\x03\x09\x85\xd8\xb1\xfa\x7c\xd1\xe5\x7e\x87\x0b\xd2\xb8\x87\x53\xf6\xe3\xb6\xed\x60\xfe\x00\xfa\x0e\xd0\x43\x03\x89\xe8\x21\x4c\x4b\x8f\xc0\xcc\x35\x71\x0a\x92\x19\x3f\xb8\x9f\x90\x7c\x9c\x8e\x64\x1f\x95\x7f\x5e\xc1\xb0\x75\x07\x62\x32\xfa\x7a\x64\x77\x39\x84\x2d\xf1\xe4\xe5\x1d\x62\x40\x9d\x29\x33\x04\x49\xdd\x79\x4c\xfa\x30\x19\x46\xe8\x88\x4a\x3c\x66\x4f\xd0\x3b\xf1\x43\x7e\xe2\x50\x13\x17\xe4\xf0\xed\x24\x83\x43\xb8\x39\x6f\x32\xae\xef\x1b\xe7\xb8\xcd\x6c\x41\xfc\x1c\x06\xa2\x6e\x6f\x82\x14\x0a\xf5\xb5\xd9\x3c\x73\x55\x31\x3d\x06\x32\x2f\xf8\x53\x13\x85\xef\x72\x32\x0e\xba\xf9\x43\x6e\x3e\xc5\xf5\x37\xb1\x7c\x9d\x91\xba\xd8\x10\x72\x6c\x1a\x3e\xd3\x46\xf4\x46\xac\x9b\x6c\x58\xfc\x2d\x42\xc2\x27\x1b\x01\x07\x71\x75\x80\x6d\x04\xb4\xbc\xdc\xe2\x60\x50\xd8\x9e\x2f\xc6\x9b\x62\xee\xa0\xe1\x9b\x67\x47\x4f\x5f\x3c\x5b\x6c\x4b\x1f\xe2\x25\xae\x5f\x1f\xdb\x35\xc2\xb4\xd2\x9c\xe5\xa4\x27\xaa\x43\x74\xf9\x44\x7d\xa0\x88\x63\x02\xb6\x93\xc5\xe3\x0e\xb9\xad\xd8\x43\x77\x91\xe3\xd4\x92\xfc\xa8\x39\x12\x6e\xcb\xf1\x67\xd9\x3d\x56\xe5\xef\xdf\xec\x22\x2c\x8d\x5f\xa8\x7f\x1f\x6f\xa1\x6f\x7f\x21\xc7\xc8\xe0\x56\x18\xfa\xf3\xe5\xcb\x70\x2e\x0a\x3a\xd1\x51\xb2\x87\xae\x27\xf2\xd2\x23\x4e\xd1\xa9\xbc\x38\x3f\x38\x50\x02\xca\x19\x91\x85\x09\x29\xd4\xf9\x9a\x56\x85\xff\x7f\xb0\xae\xb1\x15\xc5\x3f\xbb\xbc\xac\x06\xd2\x9d\x25\x68\xcf\xd3\x86\xeb\x81\xd7\x0a\x3d\x0b\xd7\x1d\xad\x95\x96\x5a\x14\x75\xdb\x10\xcb\x2a\xd9\x00\x0c\x87\x18\x86\x8c\x33\x42\x39\xb7\x4b\xc4\x61\xed\x49\xdc\x2a\xa7\x10\xc8\x1a\xdd\x21\x3a\xe4\xdf\xac\x12\x43\xd7\x23\xbd\xbf\x39\x00\xb3\x6a\x9c\x8f\x25\x2b\xe1\x0b\x51\x3f\x3e\x88\x90\x00\xcb\x24\x5a\xc2\xe0\xbb\xe0\x4d\x21\x38\xde\x23\xea\x25\xc3\xb2\x3e\xd3\x88\x6c\x95\x97\xea\x1a\x10\xf9\xc4\x15\x05\x27\x1d\x24\xbd\x66\x03\xcf\x0b\x54\x95\x0f\xac\x9f\xe7\x22\x05\x76\x57\xab\xba\x6a\xde\x11\xe3\xdf\xb1\xee\x56\x10\x95\xbc\x23\x01\xba\x42\x96\xa6\x3a\xe3\x32\x63\x5e\x6f\x1e\xec\x72\xa4\x72\x04\x26\xfd\x28\xb9\x14\xbb\xfa\x18\x84\xba\x96\x89\x0d\xe5\x30\x8a\x81\x09\x37\xd8\x57\xd9\x0f\x1c\xb8\xfe\x01\xd6\x8f\x6c\x1f\x2c\xef\xac\xd6\xc4\x0f\xde\xdd\x89\xad\xa1\x9a\xab\x77\x6c\x38\x7d\x06\xcd\xf2\x92\xf7\xd5\x11\x67\x51\x23\x04\x76\xa8\x2e\xc0\x16\x24\xf5\x54\xbf\x06\x68\x57\xdd\xf2\x8d\xe9\x2b\x5d\x73\x52\x47\x8c\xb8\xe3\x21\x5e\x31\x4f\x3e\x10\x3a\xe2\x91\xac\xe9\x33\xef\x52\x2d\xbf\x8c\x59\x18\x69\x82\x04\x19\x36\xf9\x40\xac\xfe\x38\x44\xd6\x11\x38\xc0\x46\x65\xfa\x3d\xb1\x73\x41\xb9\xa7\xc3\x8e\xed\xa4\x29\x63\x49\x22\x45\x99\x11\x6a\x1c\x78\xc4\x52\x9a\xd9\xc3\xaa\x38\x4f\x81\x93\xbc\x71\xec\x38\x5c\xdf\x08\x2d\x01\xa2\x49\xcf\xa7\xed\xa0\x6a\xca\x98\x37\x05\x74\x04\x33\x9a\x69\xea\xf6\xad\x94\x69\x91\xb2\xd9\x19\x83\xfd\x0a\x5a\x7b\xe5\x9f\xba\xcf\x83\xf3\xc7\x7d\xbe\xb1\xae\xa8\xcd\xfe\x63\xf6\x36\x47\xc8\xbb\x42\x35\xe4\x60\x8b\x88\x0a\x4a\xee\xcc\x19\x52\xa6\x63\xbb\x7c\xc6\x27\x00\x7a\x3e\x69\xba\x45\xfc\x0e\x69\x6d\x54\xf2\xfa\x6f\x38\xd3\xcd\xf8\xb6\xdd\x56\x3d\x5b\x14\xdb\x8a\xb5\x0e\x3e\x59\x51\x9b\xdc\xa2\x41\x76\xf5\x3b\xe7\x36\xbb\xb4\xbb\xfc\x72\xf9\x26\xbf\xd4\x2f\x5a\x19\x3e\x72\xfa\x2d\xff\x45\x57\x9a\xc1\x87\x31\x50\xf6\x07\x39\x61\x91\x85\x3a\x84\xca\xdb\x9c\x29\xe4\xa4\xc2\x29\x18\x7c\x36\x8a\x2d\x3a\x9c\xc5\xec\xb0\x5c\xe6\xe4\x00\xac\xb3\xc4\xa6\x45\xcf\x60\x47\xbd\xed\xb0\xf0\x5d\x48\x05\xab\x6d\x3b\x42\x49\xd9\xe8\x70\xc9\x5b\x39\xb1\xb5\xd4\x93\x5b\x21\x03\x3e\xd5\xe5\xd3\xbc\x8f\x92\x24\x38\xfb\x35\x4c\x55\x30\x80\xad\xa0\xbb\xcb\x25\x24\xa4\xdc\x37\x60\xe6\x5b\x47\x08\xb2\x46\xc8\xf2\x96\x41\x74\x02\x37\xe4\x2e\x74\xe5\x4e\xf8\x4f\x92\xd3\x40\xbc\x53\x2a\x35\x90\x71\x76\x92\x5b\xd0\xa2\x75\x2b\xad\x7d\x8c\x0f\x61\xe6\x69\x1b\x1e\x09\x88\x7f\xeb\xaf\x71\x1f\xa1\x08\xf5\x33\x5f\x4a\xfa\x0a\x05\xa5\xbb\xed\x6c\xd9\x76\x47\x96\x43\x28\xfa\x8a\x3e\x43\xab\x76\xd4\x6c\x6b\x11\x25\x1a\xb5\x8b\x84\x7d\xc5\x49\x82\x81\xdc\x88\x96\xf4\xc7\xcc\x18\x7d\x19\x19\x62\x3e\x57\x12\xde\x08\x57\x8c\xa6\x3c\x29\x23\xac\xc5\xdd\x1c\xf0\x1c\x89\x71\x7d\xbf\x28\xea\x58\x21\x89\xa4\x44\x37\x2d\xb5\xe2\xdd\xdf\xf8\x20\x80\x44\x5a\xb8\x1a\x7c\x96\x3b\xe9\x56\x5b\xd7\xce\xd3\x65\x67\xd0\xf6\xf9\x7a\x79\xb7\xcc\x5e\x01\xc7\xfb\x50\x19\x90\x73\x79\x5f\x1b\x44\xcc\xfa\x3c\x22\x43\xc4\x88\x4b\xc3\xc4\x0a\xc6\xa3\x8d\xf3\x49\xb3\x81\x84\x84\x4b\x5e\xf6\x26\xc2\x58\x33\x1b\x54\x43\xe2\xb1\xe3\xea\x61\x15\x85\xdb\xec\xcd\x9f\x74\xf1\x73\x5e\x23\xee\x38\x6e\x7d\x5c\x79\xb4\xf4\xd3\x02\x5e\x49\x9a\xcb\x58\xe0\x14\x88\x32\x4d\x7f\x84\x77\x17\x71\xcf\xb9\x2a\x56\x6f\x7f\x20\x49\x7e\xd5\x0e\xcb\x3f\x0f\x1a\x7d\xcc\xf1\xd1\xb9\x0e\x63\xbe\xae\xac\x64\xb9\x5a\x5f\x71\x55\x88\xa4\xeb\x8f\xf7\x8c\xbd\xcf\x32\x03\xad\xcc\x56\x03\xeb\xa0\xe9\xe3\xd8\x18\xaa\xb1\x8e\xa2\x69\x30\xf0\x13\x34\xe0\xd6\x97\xcc\xe8\xfa\xec\xee\x8f\x9f\xff\xc4\xbb\xf3\xc1\x13\xfa\xf0\xee\x8f\x5f\xfc\x44\xf2\x9f\xff\x40\xf8\xfb\xda\xa4\x82\x5c\x54\xd4\x34\xdf\xa6\x91\x79\x96\xd6\x24\xe8\xfb\xbe\x97\x6c\x28\x04\x79\x9c\x25\x48\xd2\x87\x28\xd3\x61\x84\xa3\x52\xa0\x68\x6b\xe2\xb8\xc7\xb0\x43\xe5\xe0\xc2\x7c\x21\x18\xcc\x84\xaf\x23\xbe\x25\xb9\x8c\xec\xba\x68\x54\x26\xf2\xea\xca\xac\xc7\xe5\x0d\xe9\xdd\x84\x7a\x38\x7f\xda\x8d\xb2\xc6\x9b\xe1\xa3\xec\x24\xb6\xb7\xf0\x01\xd2\x73\x43\xe6\x96\xb0\x63\x9c\xd8\xed\x37\x97\x8d\x9d\x99\x91\x97\xc1\xc7\xa5\xe4\x91\xc7\x43\x76\xba\x05\x41\xab\x46\x8e\xee\x4e\x76\xc9\xdf\x47\xc0\xb8\xc1\xd8\x9f\x1f\x4c\x70\x0d\xc3\x12\xd8\xe7\xb5\x91\x70\x80\xba\x66\xd1\x4c\x88\x65\x56\x62\xad\x8a\x2f\x32\xc7\x41\x03\xf9\xde\x53\xcc\x7b\xec\xb8\x6c\x7f\xd9\xba\x30\x16\x2b\xd7\xab\xe4\xef\xe0\x33\x47\xd5\x4c\x6f\xcc\xc0\xa9\x53\x35\x89\x79\xfb\x8a\x5b\x25\x4e\x41\x40\x26\x43\x10\xee\xb5\x4c\x7f\x52\xc9\xa1\x29\xc5\xe3\xe9\x05\x45\x22\x68\xbf\x03\x43\x49\x72\xe7\x38\x67\x94\x3d\xcb\x3d\xc7\xf9\xe5\xf2\x2e\xf5\x3d\xcd\x84\xca\x3b\x98\x15\x6b\x0d\x4e\xed\x05\xef\x46\xd0\x66\x71\x7e\xfd\x31\x67\x95\x6f\x34\x98\x25\x8d\xa2\xc3\xdd\x2c\xe3\x5e\x96\xe8\xde\x74\xe3\xb9\xd1\xba\xad\xcf\xc9\xe0\x86\x8d\x07\x0d\xf7\x03\x2b\x41\xcc\x39\xd5\x8d\xaa\x01\x54\xec\x3a\x8c\xb9\xdb\x22\xed\xc3\xc9\x36\xa7\x25\x4f\x61\x25\xc4\xfd\xb6\xea\xbb\x74\xd8\x53\x9f\x44\x9c\xe9\x20\xf0\x74\x3c\xf5\xec\x5e\x38\x4d\x7f\x7f\x34\x5f\x12\xd1\xcb\x67\x67\x67\x08\x90\x4a\x72\xfc\xe9\x48\x6d\x75\x25\x94\xc0\x1b\xef\x72\x9c\x5d\xb6\x42\x26\x70\x66\xd3\xdd\x05\x29\x1f\x66\x55\x1d\x47\x58\xcb\x3e\x27\x59\x3c\x64\xe6\xe7\x2c\xc3\x1e\x6c\xb7\x0f\x7e\xfe\xf9\x60\x0e\x44\x81\x50\x8c\xc0\x28\xdd\x37\xe1\x83\xbb\x13\xa2\x89\x5a\x89\xd9\x11\x14\xe2\x29\x9c\x51\x22\x5a\x56\x09\xc6\xc1\x3d\x22\xa9\xdd\x04\xd3\x1d\xa1\xa7\xde\xa5\x10\x2f\x7a\xc3\xfb\xd3\x34\xe3\x72\x70\x77\xcd\x6c\x10\xe6\x41\x3a\x97\xe1\x80\xec\xd1\xd4\x46\x21\x1c\x51\xd6\xe8\x80\xc3\x8d\x43\xbe\x09\x30\xb3\x7b\xf0\x23\xd8\xa4\x5c\xd4\x39\x73\xa7\xdd\xa5\x1c\x34\x14\x2e\x5c\xcf\x46\x70\x27\xcf\xec\x98\x5f\xb2\xc1\xdd\x4f\x65\xbd\x0f\x80\xb9\x81\x71\xce\x8d\x60\x32\xe9\x4f\xf9\xbd\x39\xb2\x70\xf6\xfe\x21\x97\xba\x90\x38\x17\x4b\x2a\xb2\x5a\x5c\x3e\x27\x3a\x75\xd9\xe2\xde\xae\xe8\x2b\x2a\x75\xde\xb6\xef\xec\xf2\x2f\x66\xcd\x3f\xa2\x8c\x4d\xd5\x4b\x1e\xee\x25\xf9\x76\x94\xb9\xce\x6d\x55\xec\xb9\x3a\x49\x4e\x1d\x47\x85\x4b\x76\x51\xae\x3e\x40\xad\xfb\xef\xad\x98\xba\x92\x16\x15\x0a\x51\x55\xee\xd8\x73\x94\xa9\x21\x2a\xbe\x3f\x8d\xa6\x8a\x27\x2b\xa1\x1d\xb0\xbb\xd9\xf7\x9c\x9a\xdb\x38\xb3\xb5\x65\x96\xbb\xaf\x82\x60\xc7\x49\xf0\x7c\xb9\xa5\x71\x55\x7f\x7b\x44\x54\x11\x1c\x75\x69\x3c\x94\xef\x5b\x82\x47\xe1\x74\x0e\x51\xa4\x0e\xc5\x7c\x70\xea\x4c\x79\x19\xa4\x56\xfa\xb5\x13\x24\x76\x03\xe6\xd8\x5a\x8d\xaa\x1e\xc5\xcc\x8f\x63\x6e\x71\x1c\xbc\x9f\x78\xa3\xb0\x76\x1d\x31\x3a\xde\xdd\x4b\xce\xd8\x2c\xa2\xb1\xf0\xb5\x5c\x1c\xfa\x8e\x50\x60\x2b\x9e\xd0\x5d\x2b\x5e\x50\x91\x9c\x69\xb4\xbb\x8f\x79\x8d\x9c\x61\x02\x52\x09\xd0\x8b\x1b\x9f\x04\x1c\x4e\x5d\x36\xa3\xb2\xea\x28\xea\x7b\x51\x71\x25\xca\x09\x11\x4e\x1d\xf1\x56\x3e\x50\x8f\x20\xa7\xec\xb4\xe5\xe3\x79\xd7\xff\x57\x76\xb1\xf4\xac\xf5\x14\xc0\x08\x8c\x21\x12\x5d\x3e\xda\x3d\x7e\xa0\x21\x3f\xa6\x2b\xb1\x13\xe6\xaf\x4a\xb0\x55\xbc\x97\x99\xce\x55\x82\x25\x12\xf0\x13\x57\xad\x2e\x2a\x92\x41\xf5\xe2\xd1\xc3\xdd\xe3\xd0\x30\x9f\x66\xff\x9d\x2d\x8f\x96\xd1\x44\x6e\x45\x62\xd6\x67\x38\xa0\x28\x11\xea\x95\xe1\xde\xf6\x93\x90\xe7\x45\xca\x37\x10\xda\x65\xf6\x06\x77\x4d\x01\x25\x5b\x3f\x2f\xe7\xc6\x1a\x15\x87\x8a\xb6\x9a\xc3\xf6\xb9\x26\x65\x0f\xb4\x0c\xfb\x49\xd8\xdc\xf5\x71\xd6\x1c\x65\xb2\x6f\x58\xe9\x36\xda\x0d\xdb\x67\xbe\x06\x62\x10\x02\x83\x84\x63\x27\x0e\x2b\x72\xe9\xec\xea\xd9\x5b\xc7\xc3\xd0\x81\x21\xa9\xe8\xa2\x22\xe2\x71\x76\x66\xdb\xf2\xdd\x06\x33\x8d\x1c\x27\x95\xbd\x44\x88\xab\xf3\x69\x8e\x8a\x03\xf0\x57\x72\xae\x7a\x7a\xa2\x23\xda\x1b\x12\x85\xc5\xc5\x09\x11\x82\xb0\xc7\x11\x18\x93\x0e\xb4\x20\x9b\x8f\x94\x1c\xa0\x8f\x22\x0f\xef\xbf\xa5\xc8\xb6\x18\x01\xe2\x52\x24\x46\x0c\x37\x15\x22\x63\xe1\x22\x24\xea\x24\x0c\x9b\x1e\xee\xb2\x9c\x0c\x57\x0e\x74\xb8\x68\x45\xc6\x2a\x71\x69\x88\x09\x69\x3b\xcb\x03\x25\x25\x1b\x5c\x82\x98\xf1\xc5\xf5\x47\x0d\xd5\xa6\xea\x72\x0f\x4e\xc5\x11\x78\x38\x74\xcb\x9b\xfd\xd9\x89\xd6\x02\x2b\x4d\x2b\x90\xc5\x54\x70\xcb\xa3\xca\x87\xe2\xbf\x57\x0a\xba\xc0\x29\x34\x3d\xb4\x50\xca\xcd\x32\xd9\xeb\x57\xa7\x6f\x99\xab\x9f\xe7\x70\x33\x80\x4b\xe2\x0c\x9b\xa7\x3b\xb2\x23\xba\x86\x03\x31\x16\xd9\xd1\x4e\xee\x74\x78\x60\x10\x09\x06\x9b\x17\xe6\x2f\x6b\x11\x12\xa9\x74\xb3\x97\xdd\x83\xe8\x1b\x78\xb7\x35\xce\x68\x22\x8f\x9d\xa4\xb2\x22\x94\xe5\xba\x50\x76\x27\xd4\x15\x66\xcb\x21\x11\xb4\xa2\x48\xaf\x87\x4a\xc2\x82\xe4\x96\x1a\xa9\xc0\x56\x56\x0f\xbe\xa8\x7e\x08\xd1\xb6\x72\x4e\x90\x3d\x06\x17\xad\x12\x4e\x30\x8b\xa6\xa8\xd1\xd2\xea\x3d\x8d\x62\x05\xd3\xb0\x53\x63\x67\x06\xce\xb6\xb5\x2a\x61\x15\xd0\x05\xa3\x51\x55\x1b\x4c\xfb\xec\x10\x89\xe6\x3d\x2e\xe6\x74\xe7\x7f\x39\x54\x4a\x1c\x26\x50\xd0\xc0\x66\x5a\x0b\x59\x8c\x20\x28\xcd\xae\x11\x06\x43\x28\xc3\xc7\x3c\xe1\x50\x81\xea\xe9\xdb\xd7\xb6\xe7\xc6\x13\xef\x51\x7f\x9b\xe2\xad\x2b\x32\x8a\x8d\x9a\x29\xa9\x6c\x55\x2b\xf8\x48\x60\x23\xbd\x2b\x3b\x9d\x72\x00\x6e\xdd\x51\xbe\xae\xfb\x3c\xcd\x47\xb4\xe6\x82\xb6\x6f\x46\xd8\x47\x38\x3f\xfd\x18\x68\xfb\xe8\x21\xff\x94\x90\x18\x20\x6d\xb4\x9c\x1a\x34\xc6\x7b\x55\x3d\x5f\x81\x55\x46\x4a\x4d\x4a\x3c\x94\x4a\x76\x44\x6f\xc6\x51\xb0\xc1\xe1\xe0\xe8\x4b\x8e\xa6\xd5\x91\x7d\xe5\x2f\x9e\x51\xb7\x57\x38\x45\x5f\x48\x18\xc9\xbd\xef\x4e\x5f\xbd\x3c\xd4\x51\xbf\x7f\x70\x79\x79\xf9\x20\x5c\x1d\x65\x1f\x0c\x5d\x6d\x1a\xe4\x95\x3a\x9b\x43\x5c\x3f\xf6\xd8\xf4\x05\x09\x38\xfa\x71\x7f\x91\xbd\xc6\x16\x14\xee\x98\x8a\x34\x77\x22\xf2\x9e\x3d\xf8\xd8\x5b\xd7\x6d\xb3\x9b\x89\x8f\x69\x4e\x23\x5c\x1c\x21\x8e\x49\x70\x27\x27\x9d\xa3\x3b\xe6\x66\x8e\x3a\xc7\x42\x09\xc8\x93\x6e\xbd\x16\x2e\xca\x2e\x28\xbe\x86\x6c\x45\x0d\xf9\x28\x27\x5a\x8e\xc1\x14\x64\xe1\xff\x0c\xc8\x62\x65\x7e\x95\x95\x81\x72\xe4\x50\x07\x06\xea\x03\x39\xac\x59\x00\x60\xe7\x23\x8d\x53\x9a\xe1\x0d\xaa\xb6\xa9\xaf\x96\xdf\x37\xee\x92\x27\x89\x7d\x64\xd0\x22\xdb\xe1\xcc\x3d\x5a\x2a\xb7\x35\x72\x3f\xc1\x47\x0e\xa6\xe7\x00\xfd\xb3\x49\xb2\xbf\x73\x30\x46\x2c\x77\x21\xd9\xf5\xc7\xba\xba\xc0\x8e\x78\xc4\xdd\x85\x4c\x98\xb8\xfd\xd0\xa7\xf8\x9f\x50\x8b\x13\xb6\x6e\xea\x33\x62\x56\x89\xd2\x89\xa8\x40\x94\xae\xce\x94\x2e\xb5\xca\x2c\x5d\x46\x51\xef\x53\x65\xd5\xf7\x92\x98\xa1\x53\x51\x08\x84\xe7\x95\xac\xb1\x33\x8c\x93\x4d\x27\x15\xe2\x5a\x2c\x3b\xe6\x34\x7a\xd1\x8e\x64\x67\x8a\x3b\x23\xd6\x03\xc8\xd8\x3a\x2f\xde\xad\x02\x73\x70\xd2\x38\x0d\x66\x3d\x45\x29\xde\xbc\xad\x20\x1f\x74\xf3\x5f\x08\x43\x42\xc4\xba\xe4\x14\x5c\x8c\x9d\xdc\x81\x44\x78\x7d\x27\xa1\x6b\xa3\xbc\xf1\x65\x90\xa3\x6c\xd8\x59\xb8\x7e\xf7\x38\x27\xe1\x90\x40\x6f\x57\xb7\x57\xf1\xd1\x25\x0d\x70\xa8\xdb\x4a\x37\x82\x93\x99\x86\xf2\xd3\x70\x5b\x5c\xaa\x3a\x5f\x93\x77\x92\x43\x47\xf1\x1d\x6a\x3e\x7e\x5a\xbc\x6d\x85\x36\x14\x0f\x21\xd1\x7c\x63\x87\xd6\xcc\x2c\xa6\x71\xb4\xbe\xd0\x6f\x09\x02\x1e\xf5\x3c\x89\x55\x5d\x8c\xda\x8b\xe3\x81\xe7\x07\xff\x1b\xe2\x82\x13\x00\xdf\x18\xf2\x3b\x6e\xfb\xb7\x85\xff\xce\x81\x69\xce\x6d\x93\x7f\x6a\x19\x67\xea\x4f\xdd\x39\x3e\xce\x77\x3c\x58\xef\xe0\xf1\xf2\x4d\x0d\x2e\x6f\xb5\x4b\x8c\xfe\x98\x0c\xf6\x3b\x77\x6e\x1c\x58\x04\xc4\x1b\x97\xd6\x8b\xfb\x29\xe0\x70\x39\xd3\xd9\xd9\x62\xdd\xb5\x97\x16\xf1\xc7\xb8\xd9\x11\x4e\x16\x04\xbf\x55\x0c\xb0\x53\x4e\xd3\x72\xf0\x8f\x37\xd8\x6c\xe9\x18\x6c\x9c\x26\xdb\xca\x12\xef\xda\x33\xd2\x72\x32\x71\xb9\x7c\x74\x8f\x9d\x97\x60\x4f\xa9\x00\xdb\xab\xee\xcc\x10\xdf\xf5\x8a\x5a\xf6\xbc\xbd\x5c\xe1\x17\x47\x56\xdb\xe5\x91\xbb\x5a\x91\x75\x48\x24\x71\x65\x57\x1a\x09\xb2\x3e\x2e\x30\x0f\xe7\x21\x34\x06\xcc\x7a\xef\x9e\x0d\xa1\x90\x0c\x00\x57\x98\xca\x32\x4a\x45\xf9\x51\x8c\x1f\xe5\x46\x26\x5d\x28\xe3\x60\x46\xbc\xe8\xc9\xf3\x97\xfa\xc5\x21\x05\x72\x00\x4f\x63\x0a\x74\x14\x72\x6d\x08\x87\x2c\x2c\x7c\xe8\x82\x5e\x14\x1f\xa2\x19\x16\x12\x19\xc2\xbf\xc3\x5e\xed\x85\xbb\x4f\xde\x95\x2a\xbb\xfc\xac\x5f\x3e\x21\x85\xa3\xaa\xeb\x38\x83\x46\xe9\x6a\x63\x8f\xec\xc1\x2e\xc4\x46\x84\x42\x04\x2e\x2c\xc3\x29\xff\x09\xc9\xe9\x56\x94\x4b\xcd\xe1\xe8\x5d\x06\x58\x04\x10\x45\xb1\x0c\x90\x56\x77\xad\x86\x2d\x29\x65\xcc\x77\xcd\x58\xb4\xf2\x57\x79\x7b\xb4\x72\x05\xc8\x80\x49\xf4\x64\xfa\x8e\x33\x59\x9b\x3a\x06\xaa\xfc\xeb\xdf\xd3\x4a\x2e\x94\x8c\xef\xbf\xb3\xe2\x91\x46\xed\x24\x10\x8b\xfd\xdf\x6c\x2d\x45\x91\x36\x38\x5c\xc5\xb1\xbe\xdd\x62\xb2\x44\xab\x88\x0b\x2b\xf7\x9c\x9d\x97\x53\xbd\x2e\x49\x2d\x5f\x6d\x4b\xaf\xbf\x0b\x9a\xc5\xb2\x91\x18\xce\x36\xef\x48\x19\xb9\x67\xef\xcb\x0e\xa7\x6b\xe3\x12\x2a\x2f\x0e\xe6\x77\x1a\xd6\xea\x97\x94\x6f\x1e\xc5\x7a\x5e\x54\x76\x90\xa0\xc5\x69\xd7\xf1\x9e\xfd\x1b\xdc\x68\x8b\x28\x4d\xbe\x75\x50\xc5\x83\xab\x00\x8d\x12\x67\x91\x8f\xf9\x22\x48\x70\x88\xff\xf7\x3f\xfe\xd7\x1c\x0a\x09\x45\x3d\xaf\x33\x7b\x90\x6f\x70\x57\x34\xdb\xe8\xfe\xfe\xc9\x0e\xfa\xd5\x56\xae\x8e\x9c\xad\xee\xae\x54\x56\x45\x9c\xa3\x8e\xd8\x7a\x10\x55\x0c\x48\xe2\x1a\x83\x55\x86\x8b\x68\xaa\x52\x3c\x2f\xba\xeb\xd1\x48\x3f\x78\x8c\x42\x36\x12\xf2\xf8\x3e\xda\xa8\x53\xac\x89\x3d\x97\x50\xa0\x18\x38\x7c\xb3\xa3\x50\x4b\xb8\xd1\x91\xc9\x72\x86\x78\xd8\x5e\x74\xe4\xe3\x37\x41\xf6\xac\xb8\x43\xd4\x55\x5e\x23\xa4\xf4\x4a\x8f\xbe\x43\x38\x46\xe5\x05\x01\x0a\x1f\xb0\x09\x84\xf4\xfe\x49\xae\x21\xa7\x6e\x6e\xdf\xfa\xb1\xed\x36\x3f\x45\x37\xb0\x24\xd7\x30\xb6\xc9\x4b\x04\xa1\xcc\x4c\x3c\x33\x23\xf6\xf4\xc6\x96\x69\x48\x33\x58\x5c\x08\x6a\xd6\x4b\x0e\xe4\x20\x98\x57\xaa\x93\x1b\xca\xea\xb4\x49\x36\xa8\x44\xc6\xb9\xbd\xdf\xc9\x29\xbf\xf8\xa8\x19\x1f\x20\x96\x4d\x2a\xdc\xe7\xe0\xf7\xf2\x52\xaf\x8f\x06\x08\x8b\x76\x5c\x2e\x5f\x04\x4d\xf8\xf6\xad\x9d\x69\xc9\x52\x67\xda\x22\xed\xdf\xf2\xcd\x1d\xb8\xf9\xdd\xb6\x5b\x03\x57\xff\x73\xfe\x14\x8b\xf0\x97\x81\x90\x55\xee\xa6\x41\x20\x19\xdf\x11\x82\x80\x33\x1c\xd5\x57\x57\x16\x6e\x7c\xc4\x3d\x22\x3e\xf9\xc6\x6b\x00\xa2\xc8\x3d\x34\x1a\x8f\x3f\xc4\xd4\xfc\x4d\x6f\x99\x02\x28\xa7\x1b\x8f\xe1\xf6\x1a\xbd\x1d\xc7\x15\xe7\x8c\x1b\xca\x47\x71\xb2\x7c\x7f\x4c\x7c\xc8\x52\x08\xc3\x05\x5c\xf0\x09\x66\x7f\xeb\x8e\x3b\x1b\x48\xcb\x00\x42\xf3\xcb\xe0\xfb\x73\x0d\xbf\xd6\xc3\xa5\xfe\x6a\xa2\x3a\xdc\x98\xc5\x85\x11\xff\x26\xbc\x3e\x32\x0d\x9b\x8a\xf9\xa7\x3f\x5e\x21\x24\xed\x7b\x17\x94\x7b\xc0\x90\x71\x5e\x7f\x8d\xe7\xbf\x21\xa8\x39\x45\xb2\x7f\xa7\x6b\x10\x46\x7e\xc6\x7f\xc3\x9e\xd7\x9e\x53\xfb\x3e\x7f\x7a\x7c\xdf\x67\xed\x39\xc7\xff\xfb\xf7\xa0\x68\x36\x3c\x82\x57\x29\x79\xca\x9e\x87\xd9\x5b\x5e\xfd\x7a\x07\x49\xb5\xf1\x2e\x94\xf9\x3d\xdb\x50\xe3\x1b\x51\xf6\x6d\x47\xa5\x33\x0b\x17\x10\xc4\x9b\x7a\x29\x1e\x78\x0d\x6e\xaf\x47\x7e\x7a\x75\xc4\x88\x6b\x8e\xcd\xe8\xe9\xd1\x9c\xe9\x04\xa6\xb5\xf4\xb0\x0e\xc3\x24\x8a\x85\x99\x56\x9d\x9e\x6f\x99\xc4\xd2\xfc\xb6\x13\x3b\x7b\xf6\x1c\x26\x47\x77\x3e\xec\xdf\x7b\xd0\x1a\xe0\x4a\x33\xe7\x77\x3e\x01\x27\xcf\xcb\x66\x6e\xbc\x71\x7e\x94\xe4\x70\x52\x30\x33\xf6\xad\x7f\xe4\x56\x16\xd3\x9a\x1d\x5b\xde\x1b\x8d\xb3\x77\xea\xc3\x71\x57\xcd\xea\x61\x5b\x05\x4b\x3f\xff\xa0\x45\x00\x5b\x69\xe6\xb0\x91\x63\x6f\x84\xf5\x8b\xc6\x50\x2c\xdd\x35\x21\x69\xb2\x63\x8b\x6f\x4c\x53\xf2\x95\x51\x18\x43\x54\x48\x0e\xe3\xe0\x90\xfa\x5c\xfa\xb8\xf6\xa8\x8b\xd9\x33\x4c\x2e\x53\x37\x59\x44\x30\x85\x64\x5a\xfa\xc2\xe4\xf5\xf2\x45\x0e\x37\x56\x17\x32\xc4\xbb\xbb\x7c\x26\xf7\x64\x85\x74\xd2\x51\x28\xf9\xcf\x72\xbb\x51\x48\x56\x81\x29\xbb\xba\xf9\x4e\x94\xe4\x66\x72\x29\x07\x03\xbb\x52\x69\x1a\x69\xca\x7a\xef\x16\x19\x62\x1f\xa0\xee\xff\x69\xd2\x30\xae\xc1\x3d\x41\xb4\x86\x1c\x76\xa4\x34\x45\x2a\x95\xc4\x0b\x5c\xbf\x43\x80\xc1\x9f\xb2\x33\x2e\x75\x34\x5a\x49\x84\x56\xa5\xa7\x42\xf1\xcc\x18\x04\x0c\xe9\xed\x27\xd8\x0e\x08\x35\xa3\x42\xe9\x6d\x1c\x4e\x0a\xc9\xad\xf3\x79\x26\xd7\x4f\xc8\x61\x2c\xd9\x90\xad\xe4\x41\x05\x1f\xac\x6f\x27\xf8\xb4\x70\xbd\xb0\x66\x3e\x1d\x0b\xab\xea\xf1\x68\xe2\x72\xf3\xc3\x61\x39\xf8\x6b\x09\xb2\xc9\x07\x1a\x51\xb6\x46\x74\x79\xbc\x13\x0e\xb7\x21\x4f\x91\xb5\x64\x8e\x12\x92\x4e\x78\xdb\xe9\x86\x41\xca\xd5\xe3\xe9\x20\xc7\x77\xe5\x4f\x4b\x7e\x72\x98\xb3\x63\x3b\x8c\x07\x16\xdf\x7b\x53\xcb\xb9\x14\x00\x97\xd4\x02\x75\x9b\x49\xe0\x7b\xb4\x01\x18\x06\x7d\xd3\xc1\x0b\x29\x31\x2f\x99\x25\x8f\x49\xc9\x4e\x94\x93\x93\x38\xb0\x81\xbd\xfa\x7e\x42\x4d\xe0\xb8\xf5\xfe\xf0\x83\xc4\x0d\xc0\xde\x09\xde\xf7\xe3\x33\x82\xd3\x43\xba\xbf\x87\x2b\xd5\x63\xd5\x43\x26\x32\x52\x48\x51\xf2\x24\x55\x0f\x6f\x50\x07\x24\xdb\x1d\x81\x85\x6e\x3a\x16\x69\xa3\x96\xe0\x7c\x63\xad\x4e\xb9\x4d\xb4\xa3\xea\x18\xcf\xa4\xcd\xf9\x83\x9f\x23\x35\x31\xad\x11\x09\x0d\x87\x57\xe9\x11\x50\xdd\x24\xdc\xea\xa4\xf9\xf1\x8a\x9c\xaf\x75\x93\x18\x88\xac\x96\x07\x2e\xfc\xb3\x41\x7e\x73\x56\xc3\x3a\x02\x1e\xc5\xfd\x3a\x75\x42\x67\xbd\xcf\xed\xb5\x48\x78\xc8\x18\x87\x46\xf4\x80\xe8\xc6\x3e\x04\x4e\x98\x26\x42\x23\xa6\x88\xb0\xca\x7f\x92\x2b\x97\xdc\xa4\xe2\x37\x3c\x7e\x1f\xbf\xf9\xc3\x43\xf2\x94\xf9\xa9\x41\xf1\xde\x3b\x2e\x14\xe4\x53\xec\x9f\xe4\x2d\x7f\x78\x40\xfb\xa8\x6b\x3f\xa8\x0e\xe3\xb1\x51\xab\xfb\x59\xc9\x27\x46\x7e\x83\x4d\xa7\x08\xbc\x87\x36\xa2\xa7\xea\x22\xfa\x48\xa3\xbc\x78\x9f\x73\xd4\x80\xee\xb7\xca\x79\xac\x10\xba\x1d\x5a\x6f\xda\x46\xdc\xe2\x4d\x3f\x77\x82\xb7\x6a\x9c\xc3\x2a\xba\xcb\x31\xdc\x0c\xa8\x6f\xaf\x88\xcb\x80\xe1\xfa\xd3\x8d\x8f\x6f\x22\x82\xc3\xc6\xef\xc7\xd9\xf4\x09\xc6\xc9\x15\x6c\x37\xdf\x85\xa7\xf7\x0b\xaa\xe1\x72\x34\xba\x6e\xd0\xea\xf9\xf2\x8d\x28\xa5\xee\xb5\x0c\x9c\xaf\x93\x28\xa7\x97\x2d\x5c\x05\xa7\x57\xb6\xd7\x23\x0c\xdb\xb6\x41\x5f\x80\x14\x22\x34\xf4\xd5\xcc\xce\x5c\xc8\xa9\x25\xbe\x4e\xe1\x7d\xcf\x27\xfc\xe4\x58\xbd\x9b\x29\xfb\x7c\x09\x4e\xa4\xc3\x9d\xea\x2f\xb9\x8f\x2f\x94\x68\x77\xa6\x73\x73\x0c\x81\x03\x49\x1b\x34\x10\xb3\x65\x17\xf3\x20\xc7\xcd\xf8\x0d\xba\x17\x18\x14\xf4\x20\x37\xd0\xd9\x7e\x57\xd8\xff\xe5\xab\x0e\xc7\x4f\x9e\xf0\xad\x9f\xfe\x8a\x4a\xdc\xec\x53\xe2\x66\x9f\xe4\xc6\xc5\xc3\x28\x3d\x16\x09\x49\x86\x5c\x20\xe3\x2f\x1b\x8c\xb3\xd2\x95\x89\x73\x70\x36\xb2\x4a\x52\x70\x0a\x32\x49\x90\x90\xb5\x51\x12\x88\x36\x4e\x09\xd1\xa7\xc9\x90\x5a\x3e\x2b\xc6\x52\x75\x94\xbe\xef\x8a\x91\xa4\x9b\x70\xff\x61\x9c\x2c\xc7\x9e\xd3\xee\xa3\x53\x7d\x69\x47\xfa\xca\x80\xd8\x88\xd5\x86\x08\x26\xce\xd7\xdd\xd1\x51\xf3\x2e\x34\x36\x4e\x95\xf3\x1b\x71\x4a\x7f\xfd\x3f\x39\xd8\x1f\x0d\xc4\xe9\xca\xe2\x66\xcb\xe2\x6a\x08\xbc\x9a\xab\x5e\xaa\xb8\x88\xdb\x7f\x58\xcc\x62\xe5\xe8\xe9\xc0\x80\xa2\xf3\xa5\xe5\x51\x15\xff\x84\xca\x7c\xa1\x6e\x68\xc8\x16\xd0\xc7\xf3\xe2\x22\x08\x5a\x6f\x56\x7a\x41\x4b\x2b\xa7\xb8\x89\x7b\xeb\x95\xfb\x36\x73\x77\xfc\x33\x5c\x5f\x31\x5d\xdb\x9b\xeb\x7b\x31\xcb\x47\x93\x24\xc7\xd5\x8c\xde\x0b\xf1\xc2\x77\x62\xb9\x87\xc6\x55\x78\x4b\xe4\x0c\x5b\x50\x6a\xdb\xda\x48\x93\xf1\xda\x95\xc3\x34\x0d\xb4\xb1\xbf\xad\x25\x3f\xdc\xe7\x92\xa7\xa7\x56\xd2\x26\xff\xd0\xb0\xd9\x5f\x89\xb3\x9e\x38\xe7\x92\x0e\xd8\xf9\x45\x5d\xae\x52\x47\xc2\x52\x6f\x6e\x2f\x86\xf2\xa7\x5b\xfb\x9d\x13\xc0\xe3\x54\x9b\x42\x5f\xd0\x41\x34\xa0\xdc\x28\xa7\x41\x3a\x84\xdd\xbd\xdc\x60\xbb\x7f\xc8\x71\x0b\x29\x42\xb8\x6b\x64\xa1\xa5\xf1\xb0\xfc\xbd\x97\x72\x13\xba\x74\xb6\x7f\x6c\xc4\x5e\xae\x9a\x62\xc5\x0f\x21\xd9\x73\xde\x4b\x27\x96\xf7\x80\x55\x1b\x09\xad\x70\x37\x3c\x1c\x2c\xa8\xc0\x43\x39\x2d\x5b\x7d\x30\xbc\xaf\x6c\x0f\xb2\x7b\xb9\x0b\xd1\x55\x35\x43\x98\x29\x9e\xc3\x7b\xc0\x0c\xfa\xa2\xf5\x57\xfb\x40\xdd\x24\xfe\x7a\xff\xe6\x01\xcc\xad\xc5\x88\x43\x47\x0b\xd0\xb9\xd1\xf6\xd3\x30\xd2\xd9\x5e\xa2\x80\x90\x74\xae\x1e\x4d\xc5\x3b\xa2\x0c\x27\x84\xce\x96\x31\xa8\xef\xf1\xd3\x04\xf0\xa1\xe0\xc4\x52\x3d\x7a\x0e\x35\x7d\xc4\x2a\xbd\xb9\x11\xde\x28\xe7\x66\xdb\x07\x89\x78\x8c\xd1\xe1\x82\x71\x30\x2f\x3f\x3b\x88\x20\xa1\x09\xf2\x30\x80\x94\x32\x3c\x9c\xf6\x81\x29\x11\xbb\xf2\x4e\xe2\x40\xb6\x21\x71\xcd\xa7\x03\x6f\x12\xe1\x66\x09\x50\x83\xe1\x27\x2d\xd9\xc2\x8d\x58\x16\x59\x13\xd0\xb1\x36\x6d\x47\xfd\x91\x94\x58\x7e\xe3\x7e\x59\xbd\xab\xb1\x1e\x31\x39\xad\x41\x0a\x29\xa9\x7d\xab\x81\xcf\x59\x7f\x1f\x5d\x0a\xf6\x02\xdb\x25\x1c\x62\xae\xd5\xe3\xda\x7d\xdb\xe7\xb5\xab\x0b\x67\x74\x21\x3b\x18\xae\x0e\xe7\x53\x55\xca\x19\xd8\x2d\x1b\xaa\x6a\xa5\x76\x0d\xeb\x26\xae\x43\x29\x78\xf9\x2b\x2e\xcb\x4f\x32\xe0\xdc\x2b\x01\x78\xd8\xad\x00\x0e\xe8\x55\xee\x42\x74\xbd\xaa\x4e\x39\xf9\x6b\x2e\x9c\xc2\x65\x34\xc2\x51\x0b\x07\x47\xb5\xf3\x4b\xfb\xe9\xce\xd4\x3e\xeb\xcc\xb8\x26\x99\xac\xd5\xda\xfb\x36\xe7\xea\x3a\xf8\x9e\x9b\x7c\x37\x03\xdd\xb7\x39\xa1\xef\xb7\x94\x97\x60\x1f\x17\xde\x0b\xa0\x50\x67\x0e\x56\x71\xdd\xaa\x24\xf3\x75\xae\x1e\xee\x5a\x00\xff\xda\x5b\x91\xc3\x68\xe6\xf1\xe0\xd3\x43\xd6\xed\xc2\xf9\x21\xd7\x0c\xb0\x11\x32\x70\xed\x76\xfd\x33\x9e\xcc\x5b\xbe\xa2\xbf\x44\xd5\xf3\xfd\xac\xdb\xb6\x87\x51\xb5\x83\x06\x5b\xbc\x9b\x01\xe9\x6b\xbc\x0c\xff\xc4\x15\x1b\xa9\xb1\x54\x63\x2f\x5c\xb9\xe2\x0c\x44\xb7\xb8\x63\x65\x25\x6f\x6a\xe3\xb2\xc9\x99\x3e\x41\xf4\xa7\xbe\x40\xf6\xe2\x94\x6a\xdc\xd8\x84\xef\x7d\x5c\xcb\x0d\x20\x59\x9a\x6d\x91\x13\xc1\xff\xbe\x21\x1c\xe7\x7c\xa3\xc5\x4d\x8d\xcc\x0e\x82\xeb\xcd\x8e\x42\xee\x4e\xc6\xe6\xc5\x7a\x28\xde\x99\x1e\x67\x53\xce\x57\x1c\x50\x11\x9a\x92\x0b\x95\x39\x22\x1b\x1c\x4a\xcc\x32\xb6\xd0\x38\xb8\x8e\x6a\x20\x4f\x9a\x4f\xa4\x6a\x41\x0b\xd3\xe7\x1c\x39\x13\x2f\x0d\x25\x79\x13\xe3\x78\x76\x58\x2d\x69\x5f\xdd\x4a\xcd\x9a\xdc\x53\x72\x68\x25\xa2\x6e\x79\xda\x86\x4f\xef\x38\x3b\x67\x6e\xc5\x61\x7f\x89\x8c\x2f\xae\x0a\x84\x42\x60\x53\x4f\x1c\xfd\x34\x08\x2b\x27\xad\xe3\x0a\x7c\xb3\x22\x55\x10\x46\x2d\x11\x21\xd1\xdb\x0d\xdf\x1c\x4f\x99\xa6\x2b\xfd\x3a\x27\x4a\x43\xb3\xc2\x2b\x67\x0b\xee\x50\xc6\x97\x9c\xeb\x58\x4a\x84\x6b\x1d\xe7\xca\x6a\x8f\x8e\x7b\xb1\x54\x45\x09\x35\x98\xe5\xe0\x83\xde\x4c\x28\xaf\xf9\x7f\x43\xf2\xd1\xe1\x56\x6a\x4e\x4b\x8d\xf9\xc7\xff\x1a\x7f\x50\x43\x2f\x31\x97\xb2\xaa\xf9\xbb\x6f\xa7\xad\x96\x72\x0d\x35\x9f\xc5\xd2\x1c\x58\xf8\xcb\xb1\x1b\x57\xf2\x44\x6f\x7b\xaa\x92\xdf\xa5\xea\x29\x7e\x3d\xbe\xef\x93\xd3\xe0\x1e\x6d\x9c\xd5\x78\x89\xf5\x92\x38\x1c\xf0\xff\xe4\x36\x27\x29\xc8\x37\x1c\xc9\x36\xa5\xb1\x49\xed\xba\xdd\xb8\xc7\x57\xe3\x8a\x1a\x78\xec\xde\x1c\x56\x98\xfe\xd1\x6b\xc7\xc3\x0c\x3c\x84\xe3\x03\x9f\xc7\x09\x6c\x2b\xbb\x0a\xe0\x0c\x97\xcf\xf1\x1b\x65\x02\xdc\xb8\x24\x83\x37\x94\x72\x6e\x62\x5e\xba\xd1\xee\xf6\xf8\x15\x28\x85\x02\x76\x9d\xf9\x99\x57\x8e\xc9\x0d\x4d\xa9\xdb\x38\xd3\x17\x9b\x3d\x68\x5c\xec\x5f\xf4\xe2\x70\xd7\x3a\x5d\x1b\x67\x28\xe6\xc1\x15\xc5\x14\x4b\x4a\x08\x8b\x90\xe2\x37\xec\x6a\x8e\x20\x34\x79\xc8\x62\x32\xfb\xe4\xfd\x0a\xef\x6b\xfd\x83\x4f\x55\xc4\x9d\xba\xc7\x3c\x42\x9f\x79\xe8\x6c\x1b\x9c\xdf\xa9\x9b\xfc\x30\xba\xa1\x93\x66\xbd\xc9\x07\x66\xcb\x43\xf4\x30\x05\x54\x4a\x37\x28\xd6\x1c\xf1\xba\xc0\x82\x8f\x2d\xed\x23\xe2\x91\xdf\x8b\x2b\x04\xc2\xe4\xcf\x71\xf4\x08\x27\x4e\x82\x47\xd4\x67\xc6\xf4\xb8\xbf\xbb\xb1\x2b\x4d\xea\xec\xbd\xd0\x30\x1e\x8b\x7c\x8f\x77\x1d\x25\x95\x6f\xc0\x62\xbb\xb3\xba\xa8\xe0\x34\x75\x19\xb8\xf4\x8a\xaf\x72\x36\xbe\xb3\x99\x0b\x98\xc4\xa5\xa7\xc4\xbc\x77\xec\x31\x69\x5b\x57\x05\x57\x17\xc4\x81\xd1\x3e\x0a\x66\x0f\x2b\xd1\x5a\x7e\x56\xf2\x1d\xdd\x80\x22\x09\x72\xd1\xbe\xe7\x84\x2e\x79\x36\x20\x28\x1a\x7b\x14\xb7\x3e\xdb\x2f\x17\x8a\x62\x6f\xe6\xca\x8c\x03\xcb\x25\x35\xbc\x88\xef\x52\xf0\xc8\xcb\xf2\x75\x8b\xdb\x18\x24\x61\xcd\xc1\x72\x0d\x9c\x33\x26\x7b\xfa\x32\xbb\x87\x3e\x9e\xc2\x4b\xd8\x6c\x06\xb6\xa6\x74\x10\x3d\xbf\x90\xde\x47\x4f\x28\x1c\x69\x12\xfc\x8e\x93\x8d\xd8\x69\xbd\x49\x1d\x44\xe1\x35\x01\x9c\xa1\xa4\x1d\xf6\x74\x40\x96\x73\xbe\xad\xd8\x78\x19\xd7\x91\xeb\xce\x7d\x05\x7e\xc8\xdf\xbd\xe1\xc9\x45\xe5\xde\x97\xe5\xd7\xf4\x47\x54\xfe\xce\x5d\x6f\xe5\x4a\x6c\xc1\x54\x57\x36\x5f\xbe\xc0\xee\x63\x76\x7a\xe4\x32\xec\xb6\xdf\xc9\xf5\x81\x33\xab\x94\x9d\xbe\x78\xfb\x3a\x2e\x19\x80\x3e\xc9\xf2\xd0\x4f\x72\xf4\x7d\x86\x1e\x37\xdd\x47\x4f\xd9\x9f\x57\x67\x67\xf2\x5c\x69\xf6\xf6\xe4\xd4\x2f\x20\x76\x89\xf4\xc5\xfd\x38\xd8\xf4\x54\xd2\xb2\xd7\x47\x2f\x46\xed\x82\x83\xfb\x77\x6b\xa3\x97\x4e\x8f\xc2\x03\xe6\x1e\xa3\xab\x1d\xbc\x29\x8d\x35\x55\xed\x89\x85\xc5\x6f\x24\xb4\xc8\x34\x4b\x82\x5d\x66\x51\x36\x68\x05\x93\x67\x7d\xf4\xc1\xdb\x94\x3a\xf6\x04\xd2\xc4\xd2\xe7\x26\x31\x1b\x37\x15\xc4\xcd\x4d\x23\x1d\x53\xe2\xcc\x69\x6a\xec\x10\xcd\xd2\x9a\x8a\x2b\xa6\xdd\x99\x98\x94\x4f\xd5\x89\x36\xa0\x92\xf9\x4d\x76\x18\x8f\xd3\x9b\x64\xc5\x03\xe2\xdc\x09\x73\xbb\x15\x0e\x11\xf4\xd6\x35\x2e\x9e\xef\x76\x23\x77\x6d\xf4\x96\x4d\x52\x8a\x5a\x75\x51\xdd\x37\x17\x0c\x47\xba\xf6\x14\x1a\x73\x23\x4d\x6e\xcf\xce\xc8\xee\x30\xb8\xfe\xc7\x00\xa3\x8c\xb8\xb4\x38\xb8\x36\xd4\x75\x2f\x2d\x33\x7b\x86\x96\xc6\xaf\x9a\xe5\x8e\x32\x72\x7e\x2e\xa4\x49\x5e\x56\x7d\xd3\xfa\x9b\xe6\xb8\x0d\xf7\xce\xfa\xf2\x59\xd3\x77\xa2\xcd\x26\x2f\xef\x44\xc5\xc2\x58\x10\xd4\x28\xfe\xe7\x78\x2a\x2c\x19\xbb\x96\xdf\x5d\x26\x06\xf0\x6c\xcb\xb1\xca\x4c\x95\x7b\x1e\x7d\x0f\x0b\x05\x57\x46\xb1\x92\x5b\xfd\x3e\xd1\xc2\xd7\xea\x11\xe4\x0d\x21\xa6\x48\x6d\x84\xe6\xff\xfb\x5a\x50\xe8\x84\x51\x70\x54\x42\x7a\x38\xea\x94\xd3\xa2\x39\x22\xc4\x52\xb1\x93\xe1\xa6\xf7\x95\x60\x79\xc7\xf4\xcb\x8b\x3e\x07\xcd\x72\xbd\x07\x27\xd9\x7d\xf7\x44\x77\x9a\xdc\x01\x8a\xb8\x5a\x24\x48\x43\x62\x2c\xbb\x42\x6a\x90\xc1\x21\x8d\x47\xbc\x67\x44\xd6\xd6\xd1\x12\x9f\x9e\x9e\xcc\x65\xba\x40\x92\x7b\x77\x48\xd5\xe8\x37\x44\xc9\x77\xb2\xc1\x1f\xfa\xbb\x1f\x57\x19\x2f\xc0\x38\x2f\x34\x65\x7f\xa9\xc9\x60\xf9\x72\xbe\x25\xc7\xc1\x6f\x22\xe2\xaa\x30\xd1\x0a\xe9\xb3\xe3\xc9\xbb\x1d\xe3\xdb\x6c\x8b\xf1\x0b\xe4\xe1\xcd\x8f\x31\x71\x39\x71\x90\x90\xd6\x41\xfa\x50\x79\x18\x2d\x4e\xb4\x68\x8e\x18\xe5\x24\x63\x7b\x6c\xa2\x86\xa3\x2d\xee\x1d\xe7\xf2\xc0\xcc\x37\xe2\xde\x9d\x75\x0f\x6f\xf3\xc1\x80\x20\x8d\x5e\xad\x89\x0d\xe4\x7d\xeb\x2f\xde\xf9\x21\x3a\x2f\xa0\x4d\xb8\x67\x9d\xf9\xda\x1c\xbc\x05\x28\xe2\xe8\x65\x3b\xb3\x8d\xeb\xa4\x9f\x78\x4b\xc6\x2f\x25\xe1\x55\x54\x28\xe2\xa5\xbe\x42\x14\xd8\x9b\x1c\xcd\xc4\x21\x8f\x55\xcd\xbb\x22\x27\x78\xd0\x5b\x54\x7b\x3e\xf5\xa1\x87\x39\xfd\xac\x92\x47\x95\xa3\x7a\xf3\x0f\x3a\x3f\x75\x8f\xf7\x40\x37\x1d\x35\xed\x1b\x75\x47\x98\x67\xb1\xc3\x9f\x96\xd4\xc2\x84\x5b\x03\xf5\x69\x9a\x0d\x61\xe6\x49\x8b\x9b\xaa\xc5\x8d\x4d\x44\x07\xc6\x01\x29\xca\xdb\x09\x11\x1d\xc9\xb9\x4a\x76\x23\xd0\xaa\x2d\x9f\xe1\x8d\x68\xc5\x3d\xc2\x81\x0b\x3c\x36\xef\x96\xfe\x5d\xb5\x83\x66\xa2\xaf\x43\xf2\x2d\xb6\xb9\x8d\x9e\x77\x61\xd5\x24\x5a\x9f\x1b\x24\x13\x2f\xd9\xd0\x8d\x8b\x4f\xb4\xe6\x34\xdb\xa1\x2c\x11\x56\x9b\xa0\xeb\xb7\xcf\x4e\x5e\x8d\x0b\x4f\xd8\x83\xa6\xcf\x30\x13\xcd\xd9\xcb\x3c\x64\xa7\x70\x76\x2e\xbc\x55\x38\x2a\xb8\x6f\x16\x82\x7f\xfb\x40\xa2\xde\xbd\xa4\x6c\x5e\xe6\x3b\x90\xe6\x11\xfe\xea\x0b\xb9\xf3\x25\x27\x17\x71\xdb\x7d\x25\xe1\xd0\x20\x4c\xe6\x13\xb4\xd3\x32\x56\x54\x97\xbd\xec\xfb\xd4\x45\xe5\x8e\xca\x93\x35\x8f\x8b\x04\x48\xa9\x76\xf7\x3a\x08\xe6\x8d\xcb\xbb\x72\xe3\x0e\x84\x2c\xa2\xca\x61\xd4\x84\xe1\x55\xaa\xe0\x1e\x73\xd2\x98\xbc\x41\x7d\x52\x38\x22\x6e\xab\x85\x03\x33\xd8\x14\x1e\x58\xe2\xae\x0b\x10\x83\xeb\x6c\x34\xaf\xba\x3a\x33\xab\xd1\x66\xcd\x78\x4e\xe7\x78\xdc\x5b\xce\x87\xf3\xd3\xde\x11\x9b\x1f\xcf\x22\x34\x17\x13\xda\x64\x46\xbb\x8a\x7d\xb7\x7b\x56\xe1\xe0\xf9\x56\xaf\xcc\x4d\x0a\xab\x20\x59\x3a\xf5\x5f\xcb\x75\xd5\x54\xa1\x72\x8f\x51\x26\x44\x14\xbd\xeb\x16\xf4\x8d\x7d\xd8\x3a\x56\x2d\x50\x36\xd2\x9f\xa2\x02\x3e\x3a\x66\x51\x74\x24\x27\xde\x6a\xc0\xc1\x71\x27\x2f\xbb\x4b\x56\x20\x56\x97\x62\xa9\x54\x39\xe0\x25\xc4\x3a\x6f\x3c\x4f\x8f\x6a\xb8\x80\x1a\xf6\xdb\xba\xd4\x70\xbf\x66\xb8\x5a\x33\xe4\x9a\xf7\x06\x21\x05\xe3\xbd\xa2\x48\xd7\xb3\x71\x53\xad\x73\xec\xe9\xa3\x53\x46\x5e\xce\xb2\x63\xf5\xd0\xd5\x98\xb9\xa3\xcf\x4d\x86\xc0\x4a\x4c\xc7\xe8\x63\x20\x72\x78\xae\xe3\x45\x9c\x1b\x9b\x2b\x99\x76\xe3\xe3\x8f\x5c\xc0\x8f\x7c\xae\x70\xe5\xc8\x34\x24\xc9\x95\x8d\x14\xaa\x38\x69\xf5\xf9\x72\xa4\xa9\xba\xdc\xe9\x2c\x5c\x4e\xbb\x5b\xc6\xe1\x1d\xa1\x02\xdb\x33\xe1\x9e\x01\xdc\x56\xeb\x5c\xf1\xfb\xa3\x16\x11\xf8\xc5\x01\x3c\x3f\xa5\xcf\x12\xe4\x7a\xbd\xdf\xf8\xae\xfb\xf4\xfc\xe1\x5d\xbd\x57\x55\x8e\xeb\xba\x9a\x72\xf9\x02\x47\xb3\x86\xc2\x0f\x6d\x57\x3c\xbc\x1b\x5f\xc7\x2a\xa1\xdf\xa1\x08\x6e\x70\x45\xf6\x97\xee\xb6\x56\x1d\x0f\x7b\x9a\x96\x7f\xcd\xf5\xd2\x53\xd8\x0e\x3e\x9c\x28\xe9\x41\x5c\x52\xd2\x89\xfd\x0f\xbe\x9f\xbf\xca\xf8\xb0\x59\xe8\x9b\xd2\x04\x7e\xbf\xe9\x77\xb7\xe6\xef\x7c\xd2\xf9\x46\xb7\x3c\xcd\xc0\x8b\x6f\xa4\x00\xa0\xfc\x75\x26\xb3\x20\xe4\xdb\x2d\xfa\x7c\x83\xf6\x72\x3c\xa4\x78\x33\xec\x92\x66\xa6\x90\xd3\xab\x48\xbf\x58\x45\xd7\x8a\x23\x05\x56\xb4\xcd\xbe\x48\xaf\x0e\x27\x1c\xe8\xdb\xb6\x26\x0c\xc8\x37\x34\x9f\x01\x6f\xdc\x0a\x41\xf3\x6b\x01\x88\xc3\xc7\xb1\x56\xc4\x50\xb2\x34\x09\x0f\xee\x00\xfd\x2e\x97\xf1\xf7\xe7\x76\xf9\x39\xd9\xcd\x05\xde\x9d\xe7\xb7\x9f\x3f\xdf\x52\xc2\x96\x8c\xe6\x5e\xbf\xcf\xe9\x9b\x5f\xa4\x90\xcf\x92\x3e\xd9\x81\xc0\x5f\x97\x5c\x9b\x8d\x54\xad\x4d\xcc\xea\x73\xbc\xc6\x6c\xe5\xfb\x8a\xbe\xf2\x86\x7f\x4b\x2f\x7c\x33\xae\x76\x28\x65\xa4\x33\x4e\xd7\x9f\x9c\x7c\x0e\xa6\xb1\x0c\x2f\xdb\xdd\xe5\xcd\xae\x2b\x4e\x12\x9f\x31\x52\x2e\x8d\x79\xa7\x4d\xf2\x28\xb4\x49\xb2\xfb\xcf\xa5\x45\x37\x92\x2b\x93\x4b\x73\x38\x17\x87\x84\x2e\xbf\x5c\xb9\x21\xb9\xf1\x48\xaa\x1b\x90\xfe\x65\x80\x97\x5d\xbb\xc3\x95\x82\x3f\x85\x87\x3e\xdc\x65\xec\x4f\x29\x8b\x15\x45\x4b\x43\xc5\xbe\x3d\x2d\x1a\x1e\x54\xc8\xfa\x36\x93\x27\x39\x17\xe1\x9d\xf1\xaa\xd9\x0d\x6a\x4b\xfe\x03\xce\x24\xe7\xcd\x41\xaf\xa5\xb4\x8d\xf6\x2c\xc3\x73\x02\x19\xdf\xaf\xac\x17\xd2\xd3\x72\xaf\xd6\x24\x50\xbe\xae\xf8\xc9\xd8\x0f\xe6\xde\x3f\xfe\x23\x97\xa6\x9f\xff\xf4\x4f\xd9\x8b\x27\xf7\xf1\x5a\xba\x31\xa5\xa5\xc5\x7e\x5f\x6d\x87\xad\x2b\x45\x9f\x5f\x27\x05\xf9\xe0\x2c\x47\xa9\xf2\xce\xc2\x1b\xfe\xcd\x5d\xdf\xbe\xf5\xff\x03\x00\x00\xff\xff\xe5\x24\xa1\x69\x23\x9e\x00\x00") +var _confLocaleLocale_frFrIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7d\x4b\x8f\x1c\x47\x92\xe6\x9d\x00\xff\x43\x34\x07\xdc\x22\x81\x62\x12\x6a\x61\x1f\x68\x30\xa9\x25\x8b\x94\x44\xa1\xf8\x68\x16\xc5\x01\x56\x10\x52\x91\x19\x5e\x55\x21\x46\x46\xa4\xc2\x23\x8a\x2c\x0e\x06\xd8\x6b\xff\x8b\xc6\x1e\x76\xc5\x39\xec\x69\x6e\x7b\x9b\xfa\x27\xfb\x4b\xd6\x3e\x33\xf3\x67\x44\x16\x25\x2d\xe6\x20\xb1\xd2\xc3\x9f\xe6\xf6\x76\x73\xf3\x72\xb7\x5b\x55\xc6\x6e\x96\xdf\xb7\x85\x35\xfd\x45\xbd\x31\x45\x65\x8a\x6f\xea\xa1\xb0\x65\x6b\x8b\x5d\x5f\x5b\x2e\x19\xae\xfe\x65\x30\x45\x39\x0e\xdd\xbd\xf3\xab\x4f\x6b\xd3\x9f\x5d\x7d\x2a\x36\x5d\x45\xff\x37\x6d\xf1\x4d\x77\xf3\xc6\xcd\x1b\xe7\xdd\xd6\x2c\x1f\x6d\x36\xa3\xa9\x9b\x9b\x37\xaa\xd2\x9e\xaf\xbb\xb2\xaf\x96\x6f\xca\x75\x63\xca\x11\xdd\xac\xbb\xbe\xba\x79\xc3\x7c\xd8\x35\x5d\x6f\x96\x4f\xe5\xdf\x9e\x9a\x9a\x66\xb7\x7c\x54\x57\xe6\xe6\x0d\x5b\x9f\xb5\xab\xba\x5d\x1e\x75\x6d\x6b\x3e\xd4\x5d\x4b\x45\xdd\xa6\x2e\x9b\xd5\xe4\x4b\x51\x5e\x98\x4d\x31\xb6\x45\x7f\xf5\xc9\x62\x04\xa9\x58\xfc\xa5\xf8\xb3\x29\xae\x3e\x0d\xe5\xce\x14\x0f\xec\xb6\x6c\x9a\x87\xa5\xc5\x37\xd3\xa3\xf6\xa6\xdb\xee\x06\xf3\xe0\xbe\x7c\xd1\x11\xbb\x71\x58\x3e\xb9\xfa\xb4\x89\x46\x45\xf1\xb8\x5b\x1e\x51\xef\x71\xc3\x9b\x37\x7a\x73\x56\xdb\xc1\xf4\xcb\x93\x03\xd3\xca\x0f\x5e\xc5\x7b\xb3\xb6\xf5\x60\x96\x27\xf4\xbf\xe2\x1f\xcd\xfa\xe6\x8d\x0b\xd3\x5b\xea\x6c\xf9\x56\xfe\xbd\x79\x63\x57\x9e\x99\xe5\x2b\xfa\xdf\xcd\x1b\x83\xd9\xee\x9a\x92\xaa\x3f\x27\x30\xfe\xda\x50\x49\x53\xb6\x67\x23\x2a\x1c\xe3\x0f\x2a\xd8\xf4\x86\x2a\xac\x5a\xf3\xde\xcd\xa2\xed\xc6\x0b\x5a\xe9\x62\xb1\xb8\x79\x63\xa4\x1d\x5b\xed\xfa\xee\xb4\x6e\xcc\xaa\x6c\xab\xd5\x16\x40\x7d\xc5\x05\xc5\x38\xd4\x4d\x6d\xa9\xf5\xd8\x17\x66\x28\x76\xcd\x68\x65\x49\xa6\x22\x18\xae\x4a\x2b\x60\xdc\x0c\xb2\x83\x43\xd9\x0e\xc5\x2f\x18\x53\xfa\x6d\x4b\xda\xcb\x17\xdd\xb6\xa8\x0e\xa2\x9e\x68\xeb\xb6\x65\xdd\x2c\x9f\xde\xc3\x3f\x58\x8d\xb5\xef\x69\x4b\x69\x09\x03\xb6\x17\xbf\x19\x3e\xab\xe1\x72\x67\x30\xc2\x69\xdd\x6f\xcd\x47\x5a\x49\xb9\x1b\x36\xe7\xe5\xf2\x48\xfe\xc5\x30\xbd\xd9\x75\x04\xae\xae\xbf\x5c\xbe\xbe\xfa\x74\x7a\xf5\xa9\x37\xed\x50\x1b\xea\xb6\xeb\xcf\xca\xb6\xfe\x58\x0e\x00\xdd\x4b\xfe\x61\xf9\xc7\xcd\x1b\xdb\xba\xef\xbb\x7e\xf9\xbc\xee\xbb\x9a\xa6\x43\x90\x59\xa1\x1f\x9a\x2a\xc3\xa5\xc8\x7a\xc2\xf7\x6d\x7d\xd6\x03\xcc\x5c\xa5\x69\x4c\xf1\x9c\x0b\xb8\x3b\x7c\x3f\xed\xfa\x77\xf3\xed\x69\xf1\x4f\xb7\xeb\xbe\x6c\x37\xe7\x66\x4b\x45\x52\x9f\x66\x17\xfa\xca\x66\x57\xb6\xb4\x7d\x5c\xe3\x1b\xf4\xd2\x17\x8d\xb1\x49\x1d\xda\x84\xb2\xda\xd2\x06\xec\xca\xd6\x34\xcb\x47\xf8\x1b\xe8\xa3\x1d\x94\x9b\x4d\x37\xb6\xc3\xca\x9a\x61\xa8\xdb\x33\x4b\xa8\xd2\x97\xdb\xab\x5f\x09\xbf\x6c\x51\x8d\xc5\x91\x62\xe0\xdc\xf7\x9b\x37\x2e\xbb\xd1\x23\xc4\xf2\x6d\x47\x85\x85\xfc\xd2\x4f\xbe\xd5\xdb\x8e\x48\x3b\x6e\xc9\x2b\xb3\xab\x53\x63\xaa\xe5\xd7\xcd\xf8\x81\x56\x5e\x6e\x86\xb1\x6c\x6a\xc2\x0f\xfa\xbe\x1b\x9b\x86\x00\x4d\x08\x62\x07\x4b\x74\x4b\x13\xae\xa9\x77\xac\xee\x35\x95\x82\x39\x50\xad\xda\x5a\xaa\x00\x0c\x5c\x37\x57\xbf\x6e\xa5\xe3\x0d\x81\x0f\x2b\x6d\xdb\xb1\x01\x91\xdc\xbc\xf1\x03\xd1\x6a\xbf\x39\xff\x11\xcb\xc0\x1f\xcb\xd7\x86\x00\xdc\xe3\x3f\xc6\xeb\xfd\x88\x01\xcc\x5c\x7e\x1f\xe3\x23\x0f\x19\x46\xa4\xe1\xba\x0a\x88\x57\x31\x26\xff\x50\xb7\x76\x20\x22\xa7\xa1\xf4\xaf\xe5\x33\xf9\x57\xe1\x3d\xd4\x03\x81\x0a\x65\xfd\xb8\xe1\xfd\x01\x1a\xbf\xea\xcd\xb6\xbe\xfa\x95\x16\x98\xd6\x06\x00\x88\xb4\x57\xd5\x5a\x98\xe6\x37\xdd\x99\x2d\x5a\x62\x1a\xc6\x82\xee\x8b\xe7\x97\x27\x7f\x3d\x3e\x2c\x5e\x75\x76\x38\xeb\x0d\xfd\x5d\x74\x63\x41\xff\xd0\xb7\x2f\x69\x5d\xd4\x4c\xc6\x4b\x36\x95\xa0\x58\x16\xeb\x52\xd8\x6c\x45\x34\x49\x74\x6e\xa5\x32\x68\xe8\x0d\xfd\x0f\x5f\x1e\x6b\x8d\x27\xbe\xc6\x39\x0d\xb3\xfc\xf6\xea\x5f\x81\x0f\x53\xc0\x24\xa4\xf9\x84\xd6\x24\xa4\x49\xdd\x06\xd2\xe6\xa1\xa7\x1d\x53\x1d\xf0\x63\xea\xf1\xad\x19\x6b\xc2\xf2\x8f\xca\x4d\x18\x9f\x8b\x6d\xc7\x4c\xe5\xd9\x8b\x17\x2f\x9f\x3c\x16\x16\x4c\xa5\x3f\x1b\x66\xf0\x1b\x5a\x1a\xf1\x94\x5f\xb1\xb4\x71\x38\xfd\x2f\xab\x33\xd3\x9a\x9e\x98\xf7\xa6\x2e\x76\x84\x83\x02\x23\x02\x86\xb5\x0d\xf1\xab\x8a\xb9\x9f\x29\x4e\x4e\x8e\x31\xe5\xe1\x7c\x79\x44\xa4\x56\x83\xfb\xfe\xd2\x00\xd4\x3a\x91\xa7\x60\x95\x1b\x26\x42\x90\xc1\x69\xbd\x39\x07\x33\x9f\x07\x5e\x04\x72\xd3\xf7\x2b\x62\xb3\xc3\xe5\x4a\xfb\xe3\x31\x8e\x69\x9e\x3c\xcc\x7c\x07\xae\x7d\xd1\x12\xfd\x98\x71\x28\x08\xbd\x09\x17\x2e\x48\x3c\x2d\x80\x55\x6e\x49\xd3\xcd\x24\xa2\xa7\x0e\xfa\x12\x04\x44\x52\x94\xd0\x83\x48\x9a\x44\x6c\x02\xf2\x83\x47\xbb\x5d\x53\x6f\x1c\xc5\xeb\x67\xb7\x52\xc2\xb8\x4d\x5f\x5f\x10\xcc\x4f\x19\x05\x79\xc9\x04\xdf\x56\x5a\x5f\x30\x55\x77\x11\x47\x29\x6a\x02\xed\x9f\x84\x6a\x64\x79\x31\xb0\x5e\x97\x9b\x9a\x96\x51\x4d\x38\xa3\xaf\xee\x06\x7e\xd3\x8d\x56\x08\x3a\xae\x68\x59\x17\xa8\x88\x45\x91\x80\xb0\xd0\x11\xba\x16\xba\x01\xb1\xbf\x33\x92\xed\xc4\x1c\x30\x3e\x88\x76\x24\x61\x09\x2c\x7c\xda\x42\x18\x42\x5c\x26\xf8\xe8\xbe\xbb\xe1\x8e\x63\xb9\x42\x90\xa7\x51\xca\x0b\xe2\xe9\x05\xb1\xc0\xab\x5f\x6d\x71\xf5\x77\xec\xcc\x9e\xe9\x43\xa2\x5d\x7d\xfa\x40\x94\x37\x92\x18\x66\x40\x83\xbe\x3a\x92\x4a\xed\xf2\x09\xff\x63\xdc\x6f\x37\xe0\x91\xa1\xfe\xca\xd3\x53\x12\x79\xc2\xb8\xaa\x6e\x5c\x37\x4c\xf1\x07\xdf\xbf\x3e\x26\x14\xfc\x96\xfa\x38\x1f\x86\xdd\x6a\xd7\xf5\xc3\xf2\x15\xfd\xaf\xf8\xf6\xcd\x9b\x57\x51\xa1\xeb\xeb\xc5\xb8\xa5\xb9\x74\x2c\xf2\x50\x8d\xf8\x22\xed\x6b\x19\xf6\xb5\x80\x26\x81\xb9\x95\x0b\xd9\xe2\xb1\x6f\x96\x18\x65\x1e\x01\xe8\xeb\x6f\x9d\x26\x66\x74\x1f\xff\x3b\x01\x10\x08\x31\x48\x63\x19\x4c\x4b\xc4\x77\x60\x58\x2a\x33\x8a\x76\x3b\x74\x3e\x8b\xa3\xa7\xe5\x66\x6c\x06\x1a\xfc\xd4\xaa\x38\x9f\xe3\x4a\xc4\xb7\x82\x3a\xf8\x9c\xf8\x1b\xc9\xb5\xbe\x86\xe4\xd9\x12\x2c\x02\xeb\x29\x4e\x9e\x03\x42\x5c\x7a\xda\x77\x5b\xb0\xe2\x0b\xd3\x42\x9b\xa8\x4c\x54\xee\x96\xf7\xa8\xa2\xee\x85\xda\x9a\x03\xd2\x03\xaf\x3e\x55\x35\x30\xe0\xb0\x78\xfd\xf5\x51\xf1\x1f\xbf\xfc\xf3\x9f\x17\xc5\x09\x90\x61\xa4\x6d\x2f\xb5\x32\x81\xb2\xef\xb1\xed\xb6\x26\xd4\x36\x87\xa4\xe7\x01\x5d\x88\x0f\x74\xfd\xb6\x1c\x8a\x5b\x44\x5a\xb7\x8a\x07\xbc\x98\xff\x6a\x3e\x94\xa8\xb4\x20\x65\xed\xe1\x02\x22\x99\x84\x61\xaf\xa8\xc9\x00\x92\xb1\x9f\x86\xb1\x7d\xa5\x5c\x9d\x61\x9e\x39\x53\xdd\xe9\x7f\xab\x8d\x28\x38\xa4\xf4\x0e\x44\xb2\x3d\x30\x56\x75\x1e\xc1\x02\xd2\x1f\xbc\x7e\x28\x0a\x04\xc3\xbb\xed\x08\xfa\x97\x71\xab\x17\x28\x71\xb8\x43\xb2\xa5\x78\x4e\xf5\x6c\xd1\x9b\xab\xff\xc5\x7a\x1b\xed\x85\x81\xfc\xe6\x2d\x99\xdf\x2f\xae\x23\xca\x1e\x3a\x20\x55\x1d\x1f\xb4\x09\xf5\xd1\x9d\x9e\x36\x44\x16\xc2\x74\xfd\xd0\xb4\xb9\xe0\xbf\xe7\x5d\x6f\x8b\x48\xf7\x8d\x2b\x13\xe6\xef\x48\x0d\x26\xe5\xd8\x96\xa1\xd9\xd1\x93\x17\x87\xc5\xf6\xea\x5f\xb6\x06\xea\x23\xa9\x19\x95\x08\xd0\x45\xf1\x06\x88\x2f\xac\x04\xdb\x47\x7b\xb7\x31\x9e\x73\x80\x93\xf4\xf5\x7a\x64\x3e\x4d\x0d\x9b\x6e\x53\x02\x65\xa9\x1c\x56\xc2\x4a\xa1\x25\xaa\x5f\x36\x24\x76\x7b\x6c\x58\xf1\xa8\x0e\x6a\xe6\x93\x3b\xa1\xa1\xb9\xd6\xf3\xd3\xde\xd7\x07\xe1\x94\x19\x1b\x99\x75\x19\x94\x32\x02\xa8\x85\x0c\xb8\x00\x2f\xdd\x88\x0a\x0e\xe8\x8a\x25\x60\x17\xaa\x13\x90\xc2\xab\xc6\xc9\xea\xa2\x26\x65\xfd\x09\xa1\x62\x5b\x31\x17\x34\x01\xac\x22\x00\x89\xb6\x6b\xa8\x3a\xdc\x0f\xcc\x01\x3b\xdf\x89\xce\xff\x84\xa6\xa5\xd0\x24\xfa\xb1\xe8\x4b\x77\x0a\xaa\xbb\x09\xb3\x63\xe6\xd9\xb8\x3e\x17\xc5\x31\xfd\x79\x51\xdb\x5a\xd6\x50\xb6\x5d\x7b\x49\x1a\x19\xcb\x34\x90\x53\xe7\x9a\x30\xef\x72\xcd\x58\x84\xbb\xf9\xde\x37\x09\xf2\x2e\x9c\xea\xaa\x6a\xa4\xe8\x40\x6f\x21\x36\xda\x83\x12\x12\x8b\xe8\xa7\x58\x1b\x22\x4e\x16\xac\x9b\xcc\x6e\x12\xb8\xd2\xc4\x12\xce\x5f\x5e\x82\x57\x34\x07\xcf\x9e\x14\xcb\xe2\x0b\x42\xdb\xbe\x04\x2b\x15\x21\xc0\x2d\xd8\xea\x04\x41\xd1\x4c\x93\x79\xcc\x92\x81\x68\xc8\xc5\xa3\x64\x0f\x5d\x8b\xc8\xaa\x49\x84\x93\x53\xc9\x67\xc8\x1f\x1a\x25\x53\x74\xf8\xec\xcd\x1a\x21\x9f\xb8\xae\x74\x94\x1a\x49\xaa\x79\xae\xce\x48\x4a\x39\xf5\x53\x85\x16\x8c\x40\x3b\xac\xce\xea\x61\x75\x0a\x16\x44\xb6\x32\x2d\xb0\x04\xb6\xca\x4e\x6c\x19\x8f\x8a\x5b\x54\xe3\x16\x64\xca\x79\x07\xca\x21\x03\xf7\xf6\x85\x53\x91\xbe\x04\x3b\x59\x95\x17\xd4\x1e\x34\xa0\x7a\xbf\x1a\x9e\xc5\x8e\x84\x47\x8d\x26\xd8\x77\x92\x9e\x15\x6f\x12\x11\x1e\x19\x61\xfd\x99\x57\x75\x16\x85\x57\xf5\x08\xab\x1a\x8c\x84\xcf\xcc\x9b\x5c\x57\xeb\xba\x65\xba\xe9\x80\xc0\x35\x5b\x3f\x24\xa4\x37\x84\x0c\x81\x53\xdf\x06\x49\xd4\xed\x05\x19\x0e\x15\xd4\x64\x45\x95\x5c\xe3\x9d\x68\x6c\x75\xbb\xe9\xfa\x9e\x50\xda\xea\xda\x5c\x1f\x41\xab\x11\xc5\x70\xaf\x46\xa0\x0d\x1c\x6c\xbc\xba\x01\xe0\x10\xf2\x90\x95\x91\xe2\x1d\x35\x23\xfc\x24\xcc\xa5\x0d\x60\x98\x34\x29\x5a\x92\xf5\x63\xe0\x49\xb8\x6d\x8b\x7b\x0f\xe9\xff\x04\x6e\xc2\x71\xe1\xf8\x67\x6e\xb7\x4e\x9c\x1e\x64\x54\x93\x94\xcf\x63\xef\x95\x80\x64\xc3\xdc\xa2\x12\x32\xca\x11\x38\x26\x16\x8f\xc0\x7e\x79\x01\x3e\x82\x54\x76\xdc\xc0\xfa\x58\x3e\xae\x4d\x4b\x6c\x80\x68\xf9\x4f\x24\x4c\x88\x24\x2d\xe1\x0e\xd5\x3e\xa7\xc6\x86\xd4\x51\x50\xf9\x05\xca\xcb\x4b\xda\x63\x9a\x16\x71\x06\x46\xc1\xc3\xa2\xdc\x12\xa0\x3e\xde\xe3\xaf\xf0\x14\x10\x44\xa9\x8a\xa3\x62\x14\xb3\x4a\xf1\x03\xdc\x3b\x64\x48\x8d\xa2\xad\x76\x4d\x05\x45\x28\xa7\x25\x58\x3c\xb9\x77\xc0\x55\x4e\x49\xc5\xbe\xaf\x69\x57\x56\xde\x4d\xb4\x62\x45\xe6\xc3\xb0\x24\x83\x64\x03\x53\x91\xa5\x8c\x94\xf1\x7e\x47\x6e\xa4\xc7\xec\x46\xda\x5e\x32\x7a\xd8\xe5\xf3\x89\xd6\x0a\xaa\x25\xb3\x6d\xdd\xf5\x4c\x4c\x5a\x2f\xd3\x6c\xa3\x2a\xd0\x85\xa8\x3b\xd2\xab\xa5\xb7\xcc\x64\xa7\x4f\xe2\x78\x90\xaf\xe2\x7d\x60\xeb\xf6\x07\xf5\x65\xfd\xa8\x66\xeb\x32\x9f\x07\x55\x21\xfe\x05\x63\x37\x38\x73\x56\x6a\xe6\x47\xae\x25\xe7\x7f\x38\xca\x5c\x4c\xa4\x37\xed\xa0\x9a\x6c\xed\x19\x44\xd9\xcf\x44\x71\x9e\x2b\x13\xfa\x7e\x55\xa8\x17\xc7\x6d\xe0\x9f\xbc\xb7\x6c\xae\x07\xb2\x4c\x2d\xe8\x14\x1a\xf7\x41\x60\xcc\x5f\x15\x8f\xc4\x3d\xf6\xf1\x1e\xc1\xfc\x4f\xb9\x3c\x15\x2f\x13\xd5\x64\x61\xda\x11\x77\x38\x64\x89\x91\x8a\x07\x5b\x40\xa4\x5c\x7d\x82\x43\xa9\x72\x42\x97\xfe\x8d\x58\x0b\x76\x98\x8a\xb1\xb5\x07\x19\x7e\x43\x81\x21\x46\x34\xd1\x04\x30\x71\x30\xd3\x68\xe4\x4c\xc7\xda\x95\x3d\x6b\x4b\x2c\x4f\x9f\x66\x53\x2a\xa7\x13\x32\x2c\xb4\xb7\x66\xbb\x46\xdf\x86\x04\x2c\xe1\x3a\x44\x68\xcd\xf6\xe4\xf3\xae\xbe\x79\x83\xb4\x84\x33\xe2\x1b\xf3\xfa\x60\x27\x2c\x55\x6a\x99\xcf\xd4\xfa\xb7\xbf\x7f\xe5\x3d\x89\xc4\x8b\xde\x13\xb5\xab\x90\x55\xc8\x2b\x0a\xc0\x52\x19\x58\x6f\x5e\x78\x89\x23\x6a\x0c\x6b\x8c\x96\x56\xe3\x36\xe1\xfb\xd6\x79\x01\x0b\xa7\xce\xc6\x0d\xc0\x94\x65\xd1\xc4\x11\xba\x4b\xfa\x97\x0a\x1e\xac\x1f\xde\xb6\x0f\xee\xaf\x1f\x46\xbb\x41\xb0\xe8\x49\xe9\xa4\xc1\xc5\xa8\x5c\x77\x57\xff\x7b\x60\x46\xd6\xc3\xa5\xb1\x13\x5d\x14\x5e\x60\xc2\x14\x02\x20\x69\x4d\xf8\x78\xbb\x12\xa6\x62\x45\x9d\xc1\x42\x68\x5f\x06\xdf\xcd\x44\x69\x70\x4a\x8d\x48\xc5\xcc\x79\x4b\x9a\xb5\x72\x0b\x51\xd2\x56\xec\xa8\x72\xf4\xe1\xd4\x54\xe9\x39\xd0\x06\x83\xa3\xa9\xb7\xf5\x30\xc5\xcc\x8b\xce\x16\x83\x93\xa2\x56\x1c\x59\xf5\x85\x80\xc6\x02\x45\x87\xbe\xdb\x15\xa7\xb4\x46\xe2\x89\x2d\x94\xb8\x00\x12\xec\x05\x99\x3a\x97\xd0\xce\xb0\xf0\x2f\x0b\x42\xd2\x51\x14\xbd\xf3\xd2\xae\xc6\x56\x21\x6d\x2a\x41\xcb\xc7\x5d\xfb\x33\xa0\x70\xdb\x1e\xea\x24\x27\x36\xcb\x1d\x0f\xfb\xbb\xd0\x93\x58\xd6\xc8\xfe\x68\x5f\x40\xc9\xe2\xa4\x16\xf6\xac\x9a\x14\x2b\xfe\xa4\xf8\x6c\x98\x48\xb5\xa7\x7c\xa3\x3b\x38\xbc\xc7\xf3\x92\xe8\x06\x2d\x18\x29\x98\x6f\x1e\x60\xe7\x6b\xe2\xec\xbb\xdd\x08\x76\x6f\x47\x66\xa6\x6b\x52\xcc\xa9\xd9\xa6\xbe\x57\xb1\x5e\x2e\xea\x2b\xc1\x52\x17\x73\xd4\x40\xc5\xfa\xc8\x0e\x05\xde\xdb\x9e\x31\x48\x18\xd4\x1c\xaa\x39\xfb\x91\x15\x10\xe6\x20\xf0\xb3\x1e\x25\x1a\x81\x18\xa5\x2a\x67\xa5\x12\x04\x22\xe1\xa4\x5b\x1d\x36\x15\x68\x82\x79\x60\x3a\xc3\x9e\xd9\xdc\xe9\xef\xba\xf9\xc0\x0b\xa5\xf3\xa1\x2d\x23\x3e\x32\x10\xc7\x73\xfe\x10\x62\x25\xdb\xcc\x1d\x6d\x63\x32\x7d\x1d\xb5\x70\x26\x50\x2c\x98\x9c\x94\x66\x4f\x62\xc0\x2b\xfc\x9c\x6c\x81\xd7\x3a\x68\x2f\x48\x12\xd4\x34\x9b\x45\x3e\xa0\xb7\xec\x27\xe0\x4d\x27\x22\xf8\x93\x4e\xdd\xf7\x31\x74\xdd\xca\x9e\xc3\x2f\x71\x9c\xd6\x11\xd7\x89\x38\x01\x88\x83\xfd\xa7\xc4\x03\x07\x16\xbb\x1d\xb7\x22\xbf\xc9\x96\x2b\xe1\x09\xbd\x34\x76\xf9\x72\x24\x2e\xd7\xc2\x6d\x0e\xaf\x75\x57\xc1\x1c\x7d\x8e\x7f\x6a\x75\xd1\xc2\x4e\xa2\xba\xdf\xd3\xc4\x5e\xec\x51\x9a\x5f\x93\xbc\x0b\xdf\x26\x0e\xa6\xa7\xbc\x8b\xce\xde\x77\x54\xfe\x6a\x5e\xc7\x7e\x6d\xd2\x03\x83\xe9\xae\x9c\x9c\x7c\xfb\x86\xf5\xfd\xe0\xb9\xdc\xd0\xbe\xc0\x6d\x73\xf3\xc6\xb7\xc3\xb0\xb3\xdf\xab\x8b\x85\x9d\x23\x18\xe9\xb2\xe9\xca\xea\x7b\xef\x78\xb1\xde\xc5\xc9\x9e\x29\xd8\x5d\x6f\x4c\xb9\x8d\x96\x07\x96\x50\xef\x68\xb0\x47\x24\xb1\xa3\x72\x18\x20\xbd\x77\xf2\xb3\x69\xf1\x34\x52\xf1\xc5\x43\x50\x66\x16\x47\xb0\xea\x0c\x1f\x59\xfc\x54\xbc\x98\xb8\x13\x8b\x9f\x88\xef\x35\xbb\xf3\x92\xd5\x20\x5f\x91\xb6\x94\x4d\x3a\xa9\xc8\xf6\x66\xb4\xa9\xdc\xe0\xb0\x68\xc7\xad\xe9\x81\x51\x16\xc8\x47\x08\x40\x78\x6a\x8a\x3b\xf7\x56\x77\x0b\xa7\x2a\xa6\xbd\x57\x44\xa5\x7f\x70\x84\xc3\xf9\xfe\xbb\x51\x8c\x58\x52\x15\x07\x1e\xcd\xd6\x1f\x4d\x3c\x86\x1b\x40\x9c\x79\x43\x09\x2e\xcb\x32\xc4\x2e\x7e\xc2\x59\x0e\x29\xc1\x71\x8b\xdb\x76\x0e\x7b\xd1\xf1\xb6\xfc\x70\x7d\xd5\xf2\x83\xab\x2a\x2c\xc9\xd5\xcb\xd8\x90\xa7\x57\xaa\x08\xa7\x9b\xab\x06\x0c\x49\xbe\xb5\xef\x48\x58\xb7\xfa\xfd\x29\x99\x26\xac\x83\xc3\x34\x26\x45\xfa\x2f\xfe\x3c\x6b\xe5\x0d\x17\xd0\xa5\x1e\x6e\x15\x6c\xf4\x53\xa9\xdd\x75\x62\x70\x2d\x22\x4a\x8e\x0c\x92\x8c\x92\xe1\xcf\x2b\x53\xfe\x52\x65\x55\x92\x9e\xb1\x81\xd2\x79\x38\xb3\x5b\xad\x8d\x21\xcb\xb8\x7c\x67\xda\xe9\xf1\x1d\xa4\x38\x34\x48\x9c\xea\xea\x39\xcb\x6a\xb6\x91\xc9\xcf\xc1\x92\x76\xa4\xf6\xcc\x37\x3b\x48\xfc\xd2\x69\xa3\x81\x48\x6d\x4f\x2b\x25\xbb\xac\x81\xec\x23\x57\xa6\xc5\x55\x9e\x93\xe8\x4e\x6a\x65\x59\x9d\x68\x75\xc0\xae\x33\xf8\x3c\xdd\x50\x80\x70\xeb\xbc\xee\x6e\x14\xb0\xca\x9a\xcf\x11\x32\xac\x87\x02\xd6\x57\xf5\x60\x17\x11\x38\xfd\xb6\x85\x8d\x9e\x82\xb5\x4b\x25\x4e\xb0\x66\xb1\x0c\xf4\xda\xf3\xa1\x6b\x64\xd1\xf2\xec\x66\x34\x31\x71\xc6\xf0\xa4\x6d\x09\x13\x6d\x62\xe7\x5a\x61\xf7\x7b\xbb\x27\xac\x85\xd5\xfb\xf9\xfe\xa9\x67\xd2\x9d\x08\xd8\x38\x28\x87\x5d\x2f\x03\x7e\xae\x7f\x2f\x46\xf7\xf7\x9e\xc0\x62\xb6\x57\x6f\x99\x93\x26\x68\x07\x68\x0c\xc9\x79\x35\x29\x0b\x28\x37\x8a\xdd\x4d\x69\x07\x98\x66\xb2\xb6\xcc\x8e\x87\x41\xf4\x61\xd3\x8c\xd0\x3c\x2d\x3b\xc4\xc9\xd4\x6c\x31\x1b\xa8\xf8\xbd\x49\x37\x3f\x59\xf1\xa2\x78\xd6\x08\x97\xba\xd4\xb3\x87\xb1\x15\xbf\x69\x56\x0f\x04\xe6\xd6\x6f\x89\x93\xbe\x33\x97\x91\x62\x50\x6f\xc9\xee\xb3\xf5\x5a\x58\x9b\xf0\x10\x27\xcd\x9d\x88\x62\x47\x02\xdb\xce\x30\x6d\x48\xa5\x25\x81\xeb\xbb\x92\x63\x44\xa8\x86\x63\x04\x4c\x78\x5e\xd0\x57\xcd\xf6\x8b\xc9\x3a\x74\xbe\x57\x82\x6d\x0b\xbd\x91\xac\xa0\x81\x0f\x09\xb0\xab\x84\x7f\x58\xec\x2f\xe3\x01\x7b\x69\x1a\xc3\xf0\x5f\x14\x38\x5b\xb8\x47\x1d\x92\xae\xea\x37\x8f\xad\xfe\x16\x9a\x19\x81\xb0\x87\x6f\x8d\x64\x9f\xf3\x6f\x5c\xfd\x6d\x73\x4e\x4a\x3a\x4b\xc0\x73\x20\xa0\xf7\x51\xcb\x7a\x88\xe3\xd3\x56\x34\xd8\x18\x39\x86\x17\xe7\x93\x1a\x37\xf8\x87\x34\x16\x53\x0c\xdd\x08\x2d\xd9\x8a\xb4\x70\xa0\xc5\xd9\x11\x4d\x97\x08\x79\x77\xf5\xaf\x34\x3b\xf6\x24\x56\x06\xea\x2f\x0d\x88\x48\x11\xb6\x32\xed\xb8\xa3\xfa\x24\x89\x40\x66\x28\x20\x09\xdb\x5a\xa6\x08\x4c\x57\x26\x00\xe5\x1c\xa7\xee\xd9\xf8\x4a\xe9\x7e\x7c\x98\x4c\x24\xac\xac\x9e\x2e\x9c\xd3\x14\xd4\x62\x42\x41\xcc\xbd\x0e\x05\x32\x32\x1d\x9c\xfa\x0e\x32\x81\x30\x1b\xa7\xee\x6b\x27\xca\x17\x33\x78\x88\x2e\x9c\xb0\xc5\xdf\x02\x95\x8c\xff\xfe\x51\xd8\xc4\xdb\xc3\x07\x20\xaa\x9a\xe7\x9b\x59\x3a\x6e\xca\xa7\x05\x00\x07\xef\xb8\x9c\xe1\x7a\x52\x8b\x0d\x25\x3e\x98\xa2\x8d\xc3\x39\x63\x4f\x78\x5b\x87\xb9\x7c\x44\x7b\x17\xa6\x82\x39\x0c\x25\x9b\xc9\x12\x47\x11\x51\xfd\x71\x59\x68\x6c\x05\x99\x24\xa0\x9e\x8c\xec\x49\x0b\xc5\xa4\xe1\x39\x39\x2f\xdb\x33\x03\x1f\x27\xf5\xb5\x3c\xe2\x5f\x0c\x08\x2e\x20\x4d\xaa\x2c\xce\x7a\xf9\x81\x63\x1f\xdf\x60\x33\xda\xa1\xdb\xa6\xed\xfc\xc6\x49\x5b\x36\xf3\xc4\xfd\x1d\x85\x43\xfc\x4c\x48\xb2\xea\x5a\x92\x39\xb4\xbb\xf0\xb3\x34\x26\x0a\x4b\xa8\xcd\xd4\xcd\xc3\x46\x66\x3d\xe8\xa1\x0e\x47\x4d\x88\xef\x15\xea\x13\x5c\x05\x4d\xd3\xbd\x37\xbd\x5d\x3e\x5a\xb3\x12\x0a\x7f\x22\x8d\x4f\x9c\x15\x38\xcb\xbf\xa5\x0e\x3c\x82\x5c\x47\x3c\x18\x00\x03\x74\xf1\x05\x4b\x23\x18\x16\xfd\x05\xb5\x51\xc1\x76\x70\xdb\x1e\x30\xdb\xe3\x00\xa8\xfe\x82\xad\x8f\x50\x7d\x57\x02\x6d\x5b\xb1\xcf\x78\x02\xac\x77\xd7\xa7\xd2\xd0\x09\x3c\xb1\x46\x00\x04\xea\xd3\xa6\xb2\x6d\xa1\x01\x1b\x12\x38\x42\x7b\xe1\xc2\x4b\x5e\x69\x60\xc9\x1e\xa7\xb9\xf2\x36\x4b\x56\x0f\x40\xc1\x5a\xba\x38\xa6\x00\x3a\x04\x6b\x7d\x28\x4e\xf0\x7b\xfc\xc0\x47\xa0\xee\x3c\x94\x00\x14\xfd\x60\x9a\xb2\xcb\xcc\x1b\x57\x91\x95\x8b\x28\x2b\x8f\xfc\x4d\xf0\x0d\x8c\x75\xb5\x7c\xf6\x24\x37\x55\x10\xc0\x42\x7b\xb1\x59\xa5\xb3\x2f\x5e\x71\xa9\x5f\x94\x3b\xd1\x88\xed\x78\x55\x37\xd8\x4b\xac\xfb\x09\x45\x8d\xa0\x5d\x06\xe5\x23\x86\x60\xa0\x2b\x9c\x7f\x35\xea\x86\x28\x9d\x63\x97\xac\x72\x62\x40\x35\xcb\x4a\x6e\x35\xe0\xb8\xac\xe8\x76\x88\x1b\x60\x6a\xfc\x47\xb3\x2e\x0c\x1f\x00\xb3\xeb\x18\xd8\x0d\x0e\x2e\xde\xb1\x53\x04\xe2\xe8\x31\x46\xcb\xab\x26\x58\xcc\x45\x9e\xe1\x60\x8d\x0f\xd1\x8e\x71\xc2\xe6\x8d\x97\x71\x57\xc1\x09\xe9\x83\x84\x54\x5a\x61\xea\x6c\x06\x06\xc8\xa7\x35\xbd\xa3\x59\x21\xb7\xad\xf9\x88\x9e\x9d\x1f\xec\xc8\xc1\xf7\xab\x5f\x41\xb7\x4a\x7c\x51\x14\x59\x9b\xe9\x4b\x32\x12\x5c\x68\x59\x5d\xd9\x80\xa9\x82\xe5\x1a\x88\x08\xf3\xc7\xe3\x83\x0b\x59\x68\x88\xcd\x3b\x68\x9f\xf2\xc4\x2e\x22\x41\xb0\x60\x37\x72\x4d\x9a\x7b\x5f\x7c\xc5\xde\x35\xfe\xb1\xf4\xa5\x73\x41\x4a\x46\x44\x75\xca\x42\xfc\xb1\xe9\xc1\x23\x61\x1f\x7a\x24\x57\x32\x1a\xcc\x37\x0a\x07\xfb\x2c\x0a\x76\x4e\x37\xd6\x53\x49\x58\x8e\x7c\x22\x58\x9e\xc9\x5e\x7f\xa3\x9c\x0c\xc0\xe9\x3a\xab\x0e\x63\x19\xff\xe4\xea\x53\x63\xf8\x98\xb5\x15\xaf\x8c\xf8\x7c\x0a\xd7\x42\xf7\x4c\x6b\x3f\xa7\x11\x7b\x13\x26\x4b\x60\xf9\xae\x1b\xb9\x1a\x2c\x63\x52\xea\x74\x86\xcc\x1f\x56\xf5\x96\x43\x0f\x8d\x8f\xae\x89\x4e\x82\x92\x93\x12\xc8\x4a\xae\xbc\x80\x0f\x21\x5b\x6d\x38\x88\x7a\xc4\xfe\x9d\x72\x06\x50\x38\x05\x26\x03\x06\x4c\xff\xb0\x88\xdc\x73\x41\x93\x5a\x64\x6b\xf1\xe8\xf7\x36\x66\xde\xce\xbb\x7b\x0d\x32\x7a\x14\x8b\xf8\x54\xa5\x0a\x56\xee\x62\xe8\x9a\x6a\x8f\x33\x57\x4e\x83\x24\xfc\xcf\xd7\x70\x2e\xfb\xb4\x93\x19\x83\x21\x0e\x8e\x74\x07\x4b\xb1\x89\x90\xcd\xd0\xaf\x35\x69\xe7\x48\x20\x5d\xa0\x28\x06\x3b\xcc\x84\xe5\xee\x8e\x05\x01\x1f\xed\x8e\xfe\x98\xd8\xf4\x3e\x4a\xcb\x3b\x8e\xa3\xae\x19\x4a\x6c\x6d\x59\x67\x64\x59\xef\xaf\xd1\x88\x46\xfd\x1c\x05\x35\x96\xae\xa6\xd1\x9a\x62\xaf\xed\xe7\xa0\xaa\x96\x96\xe0\x65\xbf\x89\x79\x22\x90\xc1\xa9\x21\x81\x3d\xb2\x2d\x4d\x6c\xbf\xec\x2f\x89\x17\xb9\x2e\x7d\x99\x7a\x99\x49\x3b\x3f\xad\xe1\x0f\xc3\x11\xaa\x89\xc6\x76\xd2\x43\xeb\x79\x19\x82\xa3\xdb\x8a\x49\x4d\x3e\x3c\xfa\x99\xc3\x77\x18\xd7\x5b\x17\xec\x99\xfb\x76\xa5\x51\xde\x60\xee\xf3\x2a\x71\xe9\x63\x87\xbc\x1b\xbf\xf1\x16\x6d\xe6\x5b\x2c\xaf\x71\xe3\x93\xfa\x6f\xfa\x0d\xfb\xe3\xa7\x6e\xfc\x7a\xde\x8b\x0f\x08\xef\x77\xde\x37\x6c\xf4\x00\xef\x46\x9b\x4f\x65\x11\xaf\x24\xa5\x44\xef\x9c\x76\xb3\x2d\x01\x87\x1c\x4d\x81\x61\x8a\x49\x5e\x31\x88\x70\x69\x13\x74\x04\x8c\x03\x9b\x28\x86\x3f\x54\x08\xd1\x28\x18\xbb\x8e\x0c\x2d\x1c\xbc\x08\xdf\x1a\x56\x18\xab\xb8\x93\xe0\x65\x9e\x91\x04\x27\x5e\x4b\xdd\x60\x4b\x6d\x38\x18\xa5\xce\x88\x1e\xc1\xa3\x6a\xda\xe3\x8f\xaa\x84\x62\x54\x65\xe0\x0f\xec\xd0\x77\xed\xd9\xc3\xc7\x1a\xe1\x70\x50\x92\xe8\xfc\xea\xc1\x7d\x2d\x86\x90\xb1\x63\x03\x5f\x7c\xcb\x43\x9e\x8d\x75\xa5\xc8\xfd\xa0\x2c\xce\x7b\x73\xba\xbc\x75\xdb\xde\x7a\x58\x9c\x49\x94\xa0\x0b\x25\x71\xf3\x7e\x70\xbf\x7c\x08\x3d\x1e\x24\xdc\x8d\x95\x86\xd7\xa6\x4d\x77\x3e\xb4\x96\x21\xcf\x31\x79\x1c\x3e\xc9\xad\x17\x01\x8b\xe7\x60\xa8\x5a\x98\x6c\x40\xe4\x59\x39\x8e\x82\xc8\x82\x63\xd5\x6b\x3b\x6e\x67\x63\x57\x8b\xeb\x84\x85\x36\x77\x42\xe8\x9c\x35\x53\x96\x23\x76\x2a\xb4\x55\xd5\xee\xc5\xd6\xa0\x4e\x5c\x07\x91\x4b\x57\xb6\x1a\x1f\x64\x46\x03\x0b\x69\x9a\x99\xc7\x0c\x8f\x7f\x64\x3e\x78\xc2\xf4\x66\x36\xeb\xb5\x19\x2a\x9a\x04\x17\xf9\x78\x53\x58\x00\x60\x94\x31\x00\xe8\xfc\x8a\xc0\x12\x90\x6f\x07\x59\xde\x13\x38\x15\x38\x24\xd8\xe9\x25\xa0\x2b\xd4\x21\x09\x18\x94\x7f\x88\x3c\x53\x94\xce\x06\x10\x1a\x6c\xa1\x98\xf2\xd4\x07\x48\x34\x45\x62\x68\x03\x3c\xef\x09\x7c\xc9\x2a\xee\x39\x28\x86\x76\xf9\x3f\x3b\x77\x86\x65\xf1\x66\x63\x4a\x12\x75\x3a\xa2\xa3\xde\x69\xd6\x56\x34\x6b\x4f\x09\xd6\x9f\x0a\xa7\x14\x44\x10\x8f\x08\x48\x62\x9a\x94\x75\xec\xe9\x28\xa5\xa0\x38\xb0\x60\x9e\x7e\xc6\x76\x5d\xb7\x04\xbe\x5a\xef\x5f\xb8\x12\xbf\x8d\x1a\xaf\x13\x06\x75\x97\x38\xaa\x5a\xc7\x8c\xb9\x47\xc9\x8d\x56\x43\x07\xef\x61\xb4\xf2\x9f\x8d\x78\x3f\x5c\xe0\x90\x0b\x95\x82\x69\x26\xe1\xba\x7a\xf2\xee\x5b\xb6\xae\xb1\x97\x89\xdc\x07\x99\xab\xa8\x61\x05\x50\xdf\x71\xb7\x87\x51\xf4\x04\xe4\xac\xd2\x2f\x6d\xd9\x2f\x63\xed\xe3\xaf\xc4\xd3\xed\x36\x51\x19\x2c\xa6\xf3\x09\x0a\x36\x3c\xe0\x07\x8f\x5e\x3d\x73\xb1\xaa\x7e\x2e\xba\x23\x22\xa6\x58\x10\x1e\x70\x6c\x47\x3b\x1c\x22\x46\x07\x23\xf3\xc4\x24\x32\x0a\x0a\x95\xac\x70\x23\xaa\xff\x84\xc3\xe9\x02\x22\xc2\xf2\x2b\xf3\x80\x98\x01\xc2\x6c\x15\xd9\x24\xb2\x76\x5f\xc4\x20\x0a\x50\x76\x98\x1b\x00\x92\x52\x1a\xc2\x0a\x48\xd8\x68\x68\x02\x0b\x95\x5d\x10\x54\xed\x7c\xa7\x7e\xeb\xe2\x33\x71\xd1\x73\x5a\x56\x1d\x34\xd0\xcc\xb4\x24\x03\xd1\x3d\xb3\x0e\x20\x1f\xbb\xf0\x02\x79\xcb\x2a\x23\x02\x8f\xcb\x03\xfe\x99\xe2\xbb\x7d\x13\x70\xeb\x53\xd7\xc6\x74\x7d\x2f\x0e\xf8\x98\x5f\x67\x04\x67\xbd\xa8\xdc\x38\x83\x8e\x8d\x5a\xaf\x9d\x5e\x7d\x3a\x23\x25\x44\x0f\xc6\xfd\x8c\xdc\x71\xf7\xac\x45\xab\x75\xf4\x9c\x3b\x71\x70\xb1\x1e\x15\x26\x57\x89\xd2\x03\xab\x82\x63\xbf\x09\x3b\x36\x6a\x74\x78\xe3\x12\x54\xef\x04\xd9\xb3\xd7\xaf\xaf\xfe\xf6\xf6\xe9\xeb\x93\x67\x8f\x8f\x9f\x06\x39\xf6\xa7\x10\xf2\x96\xcd\xcf\x1d\xcf\xb1\x73\x92\xc7\xc5\xc5\x07\x0e\xc0\x4c\x2a\x6a\x64\xde\x49\xa8\x11\x42\x1e\x26\x75\x95\x23\xfd\xb6\x35\x31\x22\x34\x0e\xa3\x36\xb1\x59\x77\xf3\xc6\x0f\xf0\xd0\xfc\x48\x7a\x3c\xbb\x89\x5f\xc5\x2e\xdc\xe8\xb0\x63\xcf\x71\x65\x38\x0c\x71\x81\xf8\x34\xb4\xee\xd5\xa1\xf7\x99\x1f\x48\x28\xc4\x8e\xd5\xe7\x8b\xbe\xf4\x27\x5c\x90\xc6\x03\x9c\xb2\x9f\xb6\x5d\x0f\xf3\x07\xd0\x77\x80\x1e\x5b\x48\x44\x0f\x61\xda\x7a\x04\x66\xae\x89\x53\x90\xcc\x78\xeb\xfe\x84\xe4\xe3\x72\x14\x07\xab\xd1\x39\x48\x75\xeb\x76\x25\x04\x2d\xf1\xe3\xe5\x2d\x62\x3e\xbd\xa9\x0a\x04\x48\xb1\x6a\x80\xe8\x16\x1a\x84\x6a\x3c\x64\x2f\xd0\x3b\xf1\x41\x7e\xe6\x4a\x13\x57\xe4\xd0\xed\xe4\x03\x87\x6f\xf3\xb7\xc9\x9c\xbe\x6f\xfd\x9c\xec\x86\x78\x39\x8c\x43\x3d\xda\x04\x19\x6c\xd4\xcf\x66\xcb\xc2\x35\xc5\xd2\x18\xc0\xbc\xd9\x4f\x4c\x14\xba\xcb\xc5\xb8\xf8\xe6\x2f\xbd\xf9\x12\x37\xde\xc4\xea\x75\x06\xea\xe2\x8c\x10\xe3\xac\xed\xb0\xbf\x44\x6b\xc4\xb6\xc9\x7e\xc5\xbf\x9b\x50\xf0\xd9\x4e\xc0\x3d\x5c\x1b\x60\x1a\x01\xad\xac\xb6\xb8\x14\x14\x8e\xe6\x37\xf9\x81\x98\xbb\x78\xf8\xfa\xe9\xa3\x27\xcf\x9f\x2e\xb6\x95\x0f\xef\x12\xb7\xaf\x8f\xeb\xca\xb0\xac\x32\xa7\x25\xe9\x88\xea\x0c\x5d\x3e\x56\xff\x27\x62\x98\x80\xe9\x64\xed\xb8\x2b\x6e\x2b\xf6\xce\x5d\x94\xb8\xb1\x24\x7f\x34\x1c\x05\xb7\xe5\xd8\xb3\xe2\x0e\xab\xf1\x77\xaf\x77\x0f\x56\x01\x79\xfe\x7d\x3c\x85\xbe\xff\x85\x5c\x21\x83\x4b\x61\x1c\xce\x97\x2f\xc2\x9d\x28\xe8\x43\x8f\x92\xf3\x73\xbd\x8f\x97\x5e\x6f\x8a\xee\xe4\xc5\xdf\x67\xc8\x40\x8c\xc7\x36\x25\x05\xd0\x40\xb1\x6e\x46\x43\x84\x20\x10\xf2\x84\xe0\xba\xe3\x8d\xc1\x30\xc2\x5e\xb3\x8d\xd1\x5a\x8b\x4d\xd3\xb5\xc4\x9b\x2a\xb6\xf4\xc2\x6d\x85\xb1\xe0\x0f\x7b\xea\x39\x1e\x46\x5c\x31\x3a\xe0\xc7\xca\xd3\x1b\x1b\xf7\xbf\x79\xf6\x06\x1a\x3e\x6c\x44\xbd\x7f\xe4\x84\x8e\x8b\x83\x77\xfd\xbb\xe3\x26\x2e\x4f\x02\x60\xb9\x84\xe0\xdf\xea\x51\xd3\x21\xff\xcd\xba\x35\x94\x46\xea\xbe\x3d\x00\xd7\x6b\x9d\xb3\xa6\xa8\xe0\x54\xd1\x03\x01\x50\x34\xed\x12\xd3\x7b\x05\xcb\xf1\x82\x4f\x97\xe0\xc1\x8f\x58\x01\x59\xa8\xcd\xa9\x86\x76\xab\xe0\x55\x1f\x83\x08\x3a\x6e\x28\x08\xee\xb6\xc5\xab\x48\x70\xe1\x40\xe7\xf9\xc8\x8a\x7e\x29\xe2\x64\x77\xb9\x6a\xea\xf6\x1d\x49\x90\x1d\x2b\x81\x1b\x22\xb9\x77\x24\x89\x57\xf8\xa4\xa5\xce\x4a\x2d\x58\x68\x98\x7b\xbb\x12\xa5\x1c\xca\x49\x7f\x54\x5c\x8b\x7d\x86\x0c\x7a\x45\x8c\xc4\x18\x73\xe8\xc9\x9b\x05\x7f\xda\x57\xc5\x5b\x8e\x80\xff\x08\x33\x4a\xce\x21\x96\xb7\x56\x6b\x62\x2e\xef\x6e\xc5\x66\x55\xc3\xcd\x7b\xb6\xc0\xfe\x04\x15\xf5\x3d\x1f\xd0\x23\x60\xa3\x41\x2c\xed\x58\x5f\x80\xc7\x48\xe9\x89\xfe\x1a\xa1\xa6\xf5\xcb\xd7\x66\xa8\x15\xa7\x48\xaf\x31\xe2\xd7\x87\x9c\xc6\x3a\xf9\x6e\x69\xc6\x70\xd9\x64\x60\x8c\x51\x73\xa1\x8a\xf9\x21\xa9\x94\x04\x19\xb6\x1d\x41\xf9\xfe\x5e\x45\xd1\x13\x38\xc0\x93\x65\xf9\xc3\x79\x6d\x05\xa5\x9f\x8c\x3b\x36\xb8\xa6\x5c\x2a\x09\x39\x65\xae\xaa\x01\xe5\x11\x7f\x6a\x67\xef\xbd\xe2\x62\x06\xae\x0a\xc7\x41\xe8\xf0\xa1\x23\x46\x05\x88\x26\x23\x9f\x74\xa3\xea\x3b\x39\xa3\x0b\xe8\x08\xce\x36\xd3\xd5\xcd\x1b\x29\x07\x24\xad\xb5\x37\x06\x07\x1f\xb4\xf7\xca\x8c\xf5\xc0\x08\x17\x9b\x87\xf2\xcc\xba\xaa\xb6\xf8\x0f\xc5\x9b\x12\xb1\xf3\x0a\xd5\xf0\x05\x67\x4d\x54\x51\xbe\xce\x5c\x46\x6d\xca\x35\x59\x04\xcb\xa7\x7c\x95\x60\xe0\x2b\xab\x5b\x04\x02\x91\xfa\x47\x35\xaf\xfe\x86\x0b\xe3\x8c\x6f\xdb\x6d\x3d\xb0\x69\xb2\xad\x59\x7d\xe1\x2b\x1a\x8d\x29\x2d\x3a\xe4\x33\x03\xe7\x25\x67\xdf\x78\x5f\xbe\x5f\xbe\x2e\xdf\xeb\x2f\xda\x19\xbe\xbb\xfa\x2d\xff\x5b\xf3\xa5\x6a\xfe\xc0\xb7\x3a\x50\xf7\xad\x5c\xd5\x28\x42\x1b\x42\xe5\x6d\xc9\x14\x72\x5c\xe3\x3a\x0d\x7e\xb6\x8a\x2d\x3a\x9d\xc5\xec\xb4\xdc\xc7\xc9\x4d\x5a\x67\xd2\x4d\xab\x9e\xc2\x20\x7b\xd3\x63\xe3\xfb\x50\x0a\xbe\xdd\xf5\x84\x92\x72\x62\xe2\x8a\xb7\x72\xf5\x6b\xa9\x57\xc0\xc2\x07\x38\x67\x97\x4f\xca\x21\x2a\x92\x28\xef\x57\xb0\x79\xc1\x00\xb6\x82\xee\xee\x2b\x21\x21\x7d\x7d\x0d\xc9\xb0\x75\x84\x20\x7b\x84\x4f\xde\xc4\x88\xae\xf2\x86\xaf\x8b\x99\x9d\x8b\xbe\xb6\xd0\x17\xa8\x82\x04\xd7\x82\xfb\x69\xb5\xa4\xd6\x86\x36\xb0\x5f\xb9\x9e\x4e\x4f\xf9\xe8\x12\xb2\x2c\xd4\x4f\xbb\xf5\xb8\xa1\xa8\x91\x8f\x19\xbe\xfb\x71\xf3\x5a\x32\x66\xa8\xe8\x87\x9d\xab\xdc\xed\xc8\x2e\x09\x75\x5f\x8e\x17\x7d\xbd\xa7\x2a\x31\x01\x8b\x18\xd4\x6c\x86\xb6\x38\x35\x1c\x50\x9a\x2e\x84\x44\x24\x48\x90\xe8\x8b\x0f\x4e\xd8\x97\x38\x33\x4d\x5f\xed\x08\x3f\x0b\xf7\x33\x5f\xb6\xaf\xf6\xa2\x9b\xd6\x11\x8e\x13\x31\x18\x62\x5b\x7c\x45\xb2\x32\xc1\x79\x15\xf7\xa8\x3b\xe7\x2f\xd4\xcf\x6f\x9e\xd4\x5a\xf1\x79\x73\x7c\xf5\x40\x62\x3b\x5c\x0b\xbe\x3d\x9e\x4c\x44\x7b\xf7\xd3\x99\xed\x9f\xe1\x3e\x94\xeb\xe5\xed\xaa\x78\x09\xaa\x18\x42\x2f\x80\xb3\xfb\xf6\x35\xc3\xd6\x7f\x23\xc2\x45\x78\xba\x8c\x40\xf0\xcf\xbb\x8d\xbf\x93\x62\x05\x99\x8a\xd3\x00\x39\x16\x09\xd3\x28\x6c\xd0\x4c\x69\x96\x79\xf3\xbd\x48\x98\x7f\x9f\x0c\xf1\x73\xd9\x20\xe4\x39\xee\x3d\x6f\x1c\x10\x83\xff\x98\xad\x70\x56\x53\x85\xa8\x73\xda\x75\xf9\x8b\x4c\x8f\x47\xf9\xf6\x6b\x33\xaf\xda\xcd\x7d\x58\xe0\xde\x8a\x72\x67\x7f\xe9\x78\x17\xb1\xe9\xb9\x26\x56\x53\x57\x90\xca\x70\xd9\x8d\xcb\xbf\x8e\x1a\x2f\xcd\x11\xdd\xa5\xce\x7e\xbe\xad\x60\x42\xb5\x5a\x5f\x72\x53\xe0\xc2\xd5\xa7\x3b\xc6\xde\x65\xe1\x84\x5e\x66\x9b\x81\x47\x11\xd4\x70\xd1\x0d\xcd\x58\x19\xd2\x32\xb8\x24\xf2\x36\x16\xb1\xb9\x6f\x7a\xd6\x6e\xa6\x5f\x16\x48\xf4\x61\x87\xe5\x2b\xa8\x13\xea\x14\x9c\xad\x07\xdc\x76\xf5\x48\xa8\x91\x30\xb8\xdf\x4e\xa0\xc8\x35\x7b\x83\x4e\xe4\x94\x8c\xf4\xda\xe0\x63\xe8\x23\x16\x3b\x37\x13\x12\x63\xbe\x19\x07\xc3\x84\x06\xf1\x49\xda\x6c\xe3\x6d\x67\x07\x3e\x52\x69\x75\x8e\xfa\x63\x06\xf6\x61\x30\xd7\x40\x46\xf3\x2d\x12\xfa\xe3\xfd\x59\xb2\x4c\x1a\x8a\xdb\x3f\x7c\xf1\x23\x47\x64\x04\xef\xf7\xfd\xdb\x3f\xfc\xf9\x47\x52\xd5\xf8\x1f\xe8\x69\xd3\xd6\xab\xd3\xf2\x9d\x99\x76\xc1\x2d\x7c\x6d\xd2\x2d\x2f\x6a\xda\x4a\xce\xc1\x52\x78\x59\xd5\x26\xec\xe6\xc3\x20\x9f\xa1\xe9\x95\xed\x84\x53\xb0\x73\x63\x8e\x51\x54\xfa\x2d\x63\x14\xed\xb8\x5d\xe9\xaa\x2d\xf8\x88\xfe\x0d\xbf\x44\x98\x98\x16\xc2\x82\x1a\x96\x07\x1e\x48\x7c\xea\x53\x16\x75\x45\x9a\x2a\x96\xe4\xd4\xd6\x7f\x90\x5f\x0f\x65\x79\x07\x09\x44\x70\x26\xab\xde\xf3\x67\x4d\x12\x55\x43\x8a\xdd\xa6\xeb\x5d\x18\x3b\xfc\xea\x8b\x8c\xd5\x49\x3e\x0d\x2c\x20\x42\x64\xf9\xa4\x73\x4a\xaa\xb0\x8f\x49\x67\x1e\xea\xf7\x86\x01\x25\x15\x49\xe2\x77\x2c\xc9\xf2\xcf\x69\x7f\xbe\xda\x7c\x97\xca\xce\x1d\x2a\x25\x39\x79\x1c\x30\xf3\xcd\x20\x40\xde\x12\x79\x38\x81\xe2\x1c\x10\x6f\x25\x40\x94\x49\xea\x76\xf4\x3c\x39\xe0\xd5\x1f\xd8\x0e\x32\x88\x90\x2b\x88\xf5\xc6\x68\x45\x1c\x2f\x2e\x09\x60\x02\x7e\xcd\x79\xae\xf4\x9b\xbb\x44\x44\x26\x05\xd9\x68\xc6\x84\x4c\x11\xe2\x0c\x83\xdd\x88\xec\x24\x09\xe1\xbb\xbb\x37\x2e\x14\x9d\xcd\x0e\xbd\xdb\x81\x20\x27\x9c\x32\x89\x8f\x90\xf0\x01\x17\x3d\xe5\xbc\x4f\xdc\xad\xec\xec\x76\x71\xb6\xd1\x65\xb1\xe4\x48\x2a\xbb\x7f\xe6\x77\x2e\x01\x81\xa9\xea\x21\xba\x5f\xe0\x26\x47\x03\x2c\x9f\xc6\x09\x94\xf4\x83\x88\xcc\x21\x84\xfb\x8f\xc5\x31\x8a\xb2\x0a\x9b\xae\x21\x8d\xf5\x08\x0e\x41\xb9\x41\x36\x5f\x09\x9e\x4b\xa2\x3a\x51\xfc\xb2\xaf\x01\x4f\x99\x32\xa3\xe3\x35\xd9\xef\xbc\x3e\x2f\xe4\xea\x6f\x48\x04\x90\x4f\x37\x8f\x4a\xca\x3e\x27\x97\x2c\x36\xfe\xa6\xca\xdc\x94\xb9\x27\x84\xee\x24\x0e\xd4\xeb\xeb\xc6\xa7\x4a\x91\xbb\xd7\x07\x08\x96\x91\xeb\x59\x42\x8e\x44\xee\xd6\xad\xe4\x50\x98\x84\x2b\x7d\x88\x80\x71\x8d\xd7\x75\x7e\x32\xe1\x8c\x6e\x8d\x90\xe5\x3d\xee\x73\x89\xcb\x6a\x1a\x66\x7e\xc4\xaa\x89\xbc\xd9\x75\x28\x87\x42\xa5\x3f\x1d\xe6\x42\x8d\x86\x9b\xad\xef\xcf\x50\xa4\x51\x85\x73\x29\x67\x1c\x82\x9d\x9c\x72\x7c\xb3\x98\xda\x72\xa1\x5a\x8f\xc7\xc7\x00\xa9\x57\xd4\x71\x70\x6f\x45\x63\x2e\xdc\xa0\xc4\x56\x69\x33\xc6\x86\x98\xb8\x28\x58\x70\xa5\x71\x2a\x0d\x5c\x29\x1b\x2f\xdc\x49\x95\xb7\x28\x13\xbb\xe6\x3b\x68\x63\xc9\xd7\x39\xb5\x33\xfa\x3c\xab\x7a\xe6\xdf\xab\xe5\x6d\xa7\xf3\xa7\x23\x77\xab\x6a\x24\x72\x87\x90\x77\x5e\x86\x12\xc7\x6c\x07\x08\xe8\xb9\xfa\x54\xb2\x85\x9d\x4d\x46\x2d\x8e\xe9\x28\x5e\x1e\xa4\x6b\xa3\x6d\x5e\x9f\x9b\x12\xca\x38\xf3\xe3\x8f\x6c\x73\xb2\xda\xa9\xc7\x5f\x1a\xf8\xca\x47\x3e\xb1\x8e\xb7\x48\xc7\xc8\x6d\x86\x29\xac\x84\x17\xbc\xa9\x87\x3e\x9d\xf6\xd4\x9f\x1c\x7f\x74\x10\x78\x92\x2f\xbd\xb8\x13\xb2\xa0\xdc\xcd\xd6\x4b\xa6\x8f\x33\xd3\x92\x2f\xfe\x56\xbb\xf6\xba\x12\xc2\xe1\x80\x29\x49\x43\x22\x47\xd8\x13\x38\xb3\xdb\xd5\x5d\x2e\x39\x2c\xea\x26\xbe\x19\x23\xf1\x29\x96\x18\x77\x71\x50\xb2\x01\x70\x6f\xbb\xbd\xf7\xf3\xcf\x07\x73\x20\x0a\x74\x65\x04\x46\xe9\x79\x37\x27\x5c\x98\xd0\x58\xd4\x4b\xcc\xbd\xe0\x7f\x98\xc2\x19\x35\xa2\x6d\x95\x20\x4a\xe4\x7f\x4a\xdd\x54\x70\xbb\x82\xa4\x3c\xbd\xc4\x9b\xde\x8a\xaa\x41\xc2\x65\x74\x39\xc2\xce\x10\x9e\x67\xda\xc2\xf0\x45\x9a\x6c\x69\x59\xe8\x5d\xf4\x29\xbb\x98\x76\xed\x94\xaf\x03\xcc\x6c\xec\x54\x06\x9b\x94\xe9\xba\x43\xb8\xe9\x70\x29\xc3\x0d\x95\x37\x6e\x64\x23\xb8\x53\x16\x36\x67\xaf\xec\xdf\x1c\xa6\x16\x8f\x0f\x5c\xbc\x86\xcf\xce\xcd\x60\xb2\xe8\xcf\x9d\x57\x72\x44\xf8\x6c\xe6\x38\x57\xba\x90\xf8\x44\xbb\x7c\xb9\x53\x07\x97\xff\x12\xdd\x96\xef\x90\x83\x31\xfa\x15\xd5\x3a\xef\xba\x77\x76\xf9\x8f\x66\xcd\x7f\x44\x1f\xce\xea\x41\xbe\x21\x9f\xd4\xb7\xd9\xc7\x75\x69\xeb\xcd\x9e\xa4\x77\x92\x2d\x22\xaa\x5c\xf1\xf1\xd2\xea\x23\x6c\xe2\xff\xd6\x89\x67\x51\xca\xa2\x4a\x21\x1a\xd6\xa5\xab\x88\x3e\x6a\x68\x61\x48\x87\x27\x51\xb0\xf1\x62\x25\x24\x0f\x6e\x4e\x3e\x33\x4c\xbd\x9b\xb8\x6b\xbb\x65\x96\xbb\xaf\x81\x60\xc7\x71\x38\xb5\x70\x5b\xe3\x9a\xfe\xf6\x48\xd6\x4d\x38\x64\x49\xe3\x58\xfd\xd8\x12\xf4\x8f\x14\x5e\x21\xfa\xdf\xa1\x98\xbf\x54\x30\x53\x5f\x26\xa9\x8d\x7e\xed\x05\x89\xdd\x84\x45\xe7\x93\xdb\x30\xd9\x5d\xa7\xfc\xae\x04\xd2\x78\x0c\x13\xe7\x3f\xf6\xae\x27\x46\xc7\x51\x19\xc9\xdd\xc8\x45\x34\x17\x4e\xa8\xc8\x57\x96\x70\x85\xc3\xca\x29\xd6\xae\x93\x13\x2c\x91\x9c\xe9\x2d\xa5\x32\xd2\x48\xdd\x5c\x05\xa4\x12\x58\x1d\x77\x3e\x09\x14\x9f\x7a\xc8\xb3\xba\xea\x97\x1f\x06\x31\xf4\x25\x3a\x15\x91\xa9\x3d\xf1\x56\x4e\x84\x82\xe0\xd4\xe2\xa4\xe3\x6b\xd5\x57\xff\x47\x6c\x29\xcd\x91\x31\x05\x30\x02\x1a\x89\x44\x97\x0f\x76\x0f\xef\x69\xa8\xa6\xe9\x2b\x44\x30\xf8\x14\x37\xb6\x8e\x63\x50\xd2\xb5\x4a\x90\x5b\x02\x7e\xe2\xaa\xf5\x45\x4d\x32\xa8\x59\x3c\xb8\xbf\x7b\x18\x3a\xe6\x2c\x24\xbf\xb3\xe7\x6c\x1b\x4d\x74\x8a\x43\xcc\xfa\x14\x17\xcb\xe5\x66\x51\x6d\x78\xb4\xfd\x24\xe4\x79\x91\xf2\x0d\x38\x12\xcc\xde\xa0\xdc\x29\xa0\xc4\xf0\x79\x31\x37\xd7\xa8\xfa\x96\x0c\xfc\xd5\x1c\xb6\xcf\x75\x29\xb1\x2b\x55\xb0\xa6\x10\x94\xe3\xef\xc7\x70\x74\xe0\xbe\x69\xa5\xe1\x0f\xd7\x84\x3d\xf8\x16\x88\x1d\x0b\x0c\x12\x7e\xf4\x38\x1c\xd4\x95\xb3\x67\x7d\x6f\x1b\x0f\x43\x07\x86\xa4\xa1\x8b\x66\x8b\xe7\xd9\x9b\x6d\xc7\x39\x69\x66\x3a\x39\x4a\x1a\x7b\x89\x10\x37\xe7\x5b\x78\x35\x5f\x9c\x5a\x49\x3e\x8c\xe9\x4d\xbc\xe8\x5c\x5f\x14\x16\x17\xdf\x19\xe5\x8c\xcd\x26\xba\x29\x7b\x28\x39\x40\x1f\x45\x1e\x8e\x9b\x48\x91\x6d\x91\x01\xe2\xbd\x48\x8c\x18\x6e\x2a\x44\x72\xe1\x22\x24\xea\x24\x0c\x5b\x2a\x2e\xc9\x59\x81\x54\x31\x3d\x12\x64\xc9\x5c\x25\x9e\x18\xb1\x7c\x5d\x6f\x79\xa2\xa4\x64\x83\x4b\x10\x33\x26\x75\x5d\xaf\xd8\x50\x73\xc9\x5f\x56\x73\xe4\x34\x92\x25\x70\x90\x56\x71\xac\xad\xe4\x8c\x20\x6e\x40\x66\xc3\x86\x7b\xce\x1a\x1f\xca\x71\xa9\x52\xd0\x05\x6e\x0f\xeb\x65\x33\x67\x78\xbc\x7a\x79\xf2\x86\xb9\xfa\x79\x09\x13\x02\x5c\x12\x67\xc4\x9e\xee\x4e\x89\x5c\x5a\x0e\xa0\x5b\x14\x8f\x76\x92\x8b\xe7\x9e\x41\x04\x2f\x3c\x51\x70\x4a\xb1\x16\x21\x11\xa6\xd7\x1f\x6a\x7a\x10\x7d\x83\xc3\x44\x8d\x0f\x9d\xc8\x63\x27\xa9\xac\x08\x65\x49\xfd\xcc\x4e\xd5\xa6\x56\xcf\x1e\xbb\xd1\x50\xde\x8c\xb5\x84\x73\x4a\x76\x31\x69\xc0\xb6\xd8\x00\xbe\xa8\xde\x58\xd1\xb6\x4a\x2e\x90\x23\x5d\x17\x65\x18\x32\x4f\x88\xa6\xa8\xb7\x5c\xf4\xb0\x2a\x8a\xf1\x4e\xaf\x0b\x18\x3b\x33\x71\x36\xc5\x55\x09\xab\x81\x2e\x98\x8d\xaa\xda\x60\xda\xa7\x87\x28\x34\x1f\x90\x64\x39\x76\x78\xa9\xdb\x18\x0a\x1a\xd8\x4c\x67\x21\x8b\x11\xbc\xaa\x9f\x1b\x84\x2f\x12\xca\xf0\xf5\x7c\xb8\x4f\xa0\x7a\xfa\xfe\xb5\xef\xb9\xf9\xc4\xb1\x45\xdf\xa6\x78\xeb\xaa\x64\x31\xad\x33\x35\x95\xad\x6a\x03\x7f\x83\xc3\xc8\xe8\xde\x33\x9b\x73\x00\xee\xdd\x51\xbe\xee\xfb\x3c\xcd\x47\xb4\xe6\x2e\xdb\x5c\x8f\xb0\x0f\x90\xf7\xe2\x21\xd0\xf6\xc1\x7d\xfe\x53\x42\x19\x81\xb4\xd1\x76\x6a\xb0\x2f\x87\x06\x0c\x9c\xba\xb0\x8a\x94\x9a\x94\x78\xa8\x94\xec\x88\xc1\xe4\xb7\x17\x82\x7f\xc2\xd1\x97\x5c\x29\x6e\x22\xfb\xca\x27\x0c\x53\xe7\x7f\xc8\x7e\xb2\x91\xf0\xbf\x3b\xdf\x9d\xbc\x7c\x71\xa8\xb3\xfe\x70\xef\xfd\xfb\xf7\xf7\x42\xca\x3f\x7b\x6f\xec\x1b\xb8\x40\x2b\x53\xe9\x6a\x0e\x91\x36\xf2\xa1\x19\x36\x24\xe0\xe8\x8f\xbb\x8b\x82\xdd\xda\xc8\x0d\x18\x69\xee\x44\xe4\x6c\xe2\x73\x5c\x94\x46\x29\x5c\x4f\x7c\x4c\x73\x1a\x99\xe8\x08\x31\x27\xc1\x9d\x64\xa8\x88\x72\x83\xce\xa4\xa8\x88\x85\x12\x90\x27\x0d\x9b\xd9\xb8\xe8\xe8\xa0\xf8\x1a\xb2\x15\x35\x54\xaf\x9a\x68\x39\x06\x4b\x90\x8d\xff\x2b\x20\x8b\x9d\xf9\x55\x76\x06\xca\x91\x43\x1d\x18\xa8\xf7\xe4\x92\xfd\x06\x00\x3b\xcf\x34\x4e\xe9\x86\xe3\x01\xba\xb6\xb9\x5c\x7e\xdf\xba\xe4\x7c\x12\xb3\xce\xa0\xc5\x67\x87\x33\x77\x68\xab\xdc\x49\xf4\xdd\x04\x1f\xf9\x12\x14\x5f\xac\x3a\x9d\x14\xfb\x5c\xb1\x31\x62\xb9\x44\x92\x57\x9f\x9a\xfa\x02\x2e\x98\x88\xbb\x0b\x99\x30\x71\xfb\xa9\x4f\xf1\x3f\xa1\x16\x27\x6c\xdd\xd2\x67\xc4\xac\x12\xa5\x13\x51\x81\x28\x5d\x9b\x29\x5d\x6a\x93\x59\xba\x8c\xce\x58\xa6\xca\xaa\x1f\x25\x31\x43\xa7\xa2\x50\x4e\x7f\xa0\xa1\x20\x10\x07\x37\x52\x8f\x6b\xc4\x23\xda\xae\xf5\x07\x4c\x09\xfa\xf0\x54\x12\xdc\xc9\x58\x0f\x20\x63\x9b\x72\xf3\x6e\x15\x98\x83\x93\xc6\xe9\x25\x84\x13\xd4\xe2\x58\x99\x1a\xf2\x41\x03\xb7\x84\x30\x24\xb4\xb7\x4f\x6e\x2f\xc7\xd8\xc9\x03\x48\x64\xee\x77\x12\x72\x9c\x7d\xcb\x93\xf8\x66\x9f\x61\x67\x21\x71\xfa\x51\x49\xc2\x21\x81\xde\xae\xe9\x2e\xe3\x2b\xa7\x1a\x9c\xd6\x74\xb5\xba\xc4\x93\x95\x86\xfa\xd3\x6b\x12\x48\x86\x3d\xdf\x92\x03\x77\xc2\x40\x71\xee\x4b\x7f\xef\x45\xbc\x6d\x1b\xed\x28\x9e\x42\xa2\xf9\xc6\x0e\xad\x99\x55\x4c\xef\x3f\xf8\x4a\xbf\xe5\xf2\x46\x36\xf2\xe4\x8e\xc1\x22\xeb\x2f\xbe\xc7\x31\x3f\xf9\xdf\x70\x9f\x23\x01\xf0\xb5\x57\x35\xf2\xbe\x7f\xdb\xb5\x8d\x39\x30\xcd\xb9\x6d\xca\xcf\x6d\xe3\x4c\xfb\xa9\x3b\xc7\xdf\xcf\xc8\x27\xeb\x1d\x3c\x5e\xbe\xa9\xc1\xe5\xad\x76\xb9\x5b\x95\x93\xc1\x7e\xe7\xce\xb5\x13\x8b\x80\x78\xed\xd6\x7a\x71\x3f\x05\x1c\x92\xea\x9d\x9e\x2e\xd6\x7d\xf7\xde\xe2\xde\x08\x32\xf2\xc2\xc9\x82\xa0\xe5\x9a\x01\x76\xc2\x65\x5a\x0f\x5e\x74\x9c\xef\xf2\x3f\x5a\x26\x51\x3c\x72\x4f\x61\x60\xa4\xe5\x62\xe2\x72\x65\x96\x7f\xd4\x4b\xb0\x27\x54\x81\xed\x55\x77\xd7\x93\x73\x74\xa3\x95\x3d\xef\xde\xaf\xf0\x17\xdf\x88\xb1\x08\x4b\x91\x94\xb8\xac\x43\xa2\x88\x1b\xbb\xda\x28\x90\xfd\x71\x01\xd5\xb8\xc7\xa6\xf1\xbb\xd6\x7b\xf7\x6c\x08\x61\x67\x00\xb8\xca\x54\x97\x51\x2a\xfa\x1e\xc5\x66\xd3\xd7\xc8\xa4\x0b\x75\x1c\xcc\x88\x17\x3d\x7e\xf6\x42\x7f\x71\x04\x97\xbe\xae\x20\x21\x5c\x3a\x0b\x49\xf7\xc4\x11\x62\x0b\x1f\x29\xa6\x8f\x7e\x84\xe0\xb1\x85\x04\xe2\xf1\xdf\x21\xe2\xe5\xc2\xbd\x0d\xe2\x6a\x55\x7d\x79\x3a\x2c\x1f\x93\xc2\x51\x37\x4d\xfc\x81\x66\xe9\x5a\xe3\xe4\xfa\xde\x2e\x84\xa2\x85\x4a\x04\x2e\x6c\xc3\x09\xff\x13\x8a\xd3\x93\x2b\x57\x5a\xc2\xd1\xbb\x0c\xb0\x08\x20\x8a\x42\xc7\x20\xad\x6e\x5b\x8d\x12\x55\xca\x98\x1f\x9a\xb1\x68\xe5\x9f\x60\xf0\x68\xe5\x2a\x90\x01\x93\xe8\xc9\xf4\x3b\xfe\xc8\xda\xd4\x11\x50\xe5\xdf\xfe\x9e\x36\x72\x61\xc0\x9c\xb7\xd4\x8a\x47\x1a\xad\x93\xb8\x57\xf6\x7f\xb3\xb5\x14\x05\x36\xe2\x52\xac\x9c\xbc\x2e\x26\x5b\xb4\x8a\xb8\xb0\x72\xcf\xd9\x75\x39\xd5\xeb\x3d\xa9\xe5\xab\x6d\xe5\xf5\x77\x41\xb3\x58\x36\x12\xc3\xd9\x96\x3d\x29\x23\x77\xec\x5d\x39\x01\x75\x7d\xbc\x87\xca\x8b\x84\x2a\xbd\x5e\x47\xf0\x5b\xca\x19\xa3\xb1\x9f\x17\xb5\x1d\x25\xe0\x7c\x3a\x74\x1c\xf9\xf4\x1a\x99\xc8\x11\x61\xcf\xd9\x62\x55\x3c\xb8\x06\xd0\x28\x91\x43\xe2\x88\x13\xf8\x82\x43\xfc\xdf\xff\xfe\x3f\xe7\x50\x48\x28\xea\x59\x53\xd8\x83\xf2\x0c\x39\xfe\xd9\x46\xf7\x79\x83\x7b\xe8\x57\x5b\x49\xf9\x3b\xdb\xdc\xa5\xc2\x57\x45\x9c\x83\x3c\xd9\x7a\x10\x55\x0c\x48\xe2\x3a\x83\x55\x86\x04\x62\x75\x25\x9e\x17\x3d\xf5\x68\x65\x1c\x3c\x2c\x24\x07\x09\x65\x9c\x47\x3c\x1a\x14\x7b\x62\xcf\xc3\x09\xba\xc7\x37\x64\xe4\x15\x6a\x09\x99\x78\x99\x2c\x67\x88\x87\xed\x45\x47\x3e\xfe\x10\x64\xcf\x8e\x3b\x44\x5d\x95\x0d\xae\x03\x5c\x6a\xca\x12\x08\xc7\xa8\xbe\x20\xc0\xc6\x07\xdb\x03\x21\xbd\x7f\x92\x5b\xc8\x6d\xc9\x9b\x37\x7e\xe8\xfa\xb3\x1f\xa3\xcc\x59\x49\xfa\xdc\x2e\x79\x43\x26\xd4\x99\xb9\x87\xc2\x88\x3d\xcd\xb4\x35\xbd\x8a\x02\x16\x17\x2e\xa3\x68\x72\x1a\xb9\xc0\xeb\x95\xea\x24\xb3\x64\x93\x76\xc9\x06\x95\xc8\x38\x77\x54\x3c\xb9\x9d\x1d\x5f\x11\xe6\xc4\x0f\x72\x48\x85\x3c\x3c\x51\xc0\x5d\xba\x3a\x0e\x43\x16\xed\xb8\x8a\xa3\x96\x6e\xde\xd8\x99\x8e\x2c\x75\xa6\x2d\xd2\xfe\x2d\x67\x5c\xc2\x8b\x1d\xb6\xdb\x1a\xb8\xfa\x9f\xf1\x4f\xb1\x08\x7f\x19\x09\x59\x25\xa7\x18\xe2\x76\x39\xb7\x13\xe2\x7b\x91\x62\x45\x5d\x59\xc8\xd4\x8b\xfc\x4f\xbe\xf8\xda\xf4\x2d\x51\xa0\x34\x3a\x8d\xe7\x1f\x22\x13\xff\xa6\xd9\x01\x01\xca\xe9\xc1\x63\xc8\x3a\xa6\x59\xcd\x5c\x75\xfe\x70\x4d\xfd\xe8\x8e\x03\xe7\xfd\x8a\x2f\xc7\x0b\x61\xb8\xb0\x33\x0d\x1c\xd5\x6c\x69\xee\x4e\x77\x1c\xb9\xe1\x33\xad\x61\x3c\xd7\xf1\x2b\x4d\x0a\xe0\x53\xca\x35\x21\xd3\x21\x57\x46\xb8\xb1\xf0\xfa\xc8\x34\x6c\x6b\xe6\x9f\xfe\x86\x82\x90\xb4\x1f\x5d\x50\xee\x1e\x43\xc6\x79\xfd\xf5\x1e\xd6\x35\x17\x52\x52\x24\xfb\x77\x4a\x5f\x93\xf9\x19\xff\x3f\xce\xbc\xf6\x64\x5b\xf1\xdf\xa7\x69\x57\xfc\xa7\x3d\xf9\x57\x7e\xff\x19\x14\xad\x86\x67\xf0\x32\x25\x4f\x39\xf3\x30\x7b\xeb\xab\x5f\xef\x20\x69\x96\x9f\x42\x99\xdf\x73\x0c\x95\x67\xb2\xda\x77\x1c\x95\xae\x2c\x24\x8e\x89\x0f\xf5\x52\x3c\xf0\x1a\xdc\x5e\x8f\xfc\x34\xe5\x4f\xc6\x35\x73\x33\x7a\x7a\xa5\x72\xba\x80\x69\x2b\xbd\x64\xc9\x30\x89\x42\x67\xa6\x4d\xa7\xf7\x12\x27\xa1\x37\xbf\xed\xa6\xe5\x9e\x33\x87\xc9\x95\xcb\x8f\xfb\xcf\x1e\xb4\x05\xb8\xd2\xcc\xbd\xcb\xcf\xc0\xc9\xf3\xb2\x99\x4c\x65\xce\x8f\x92\x5c\x2a\x0d\x66\xc6\xbe\xfd\x8f\xdc\xca\x62\x5a\xb3\x63\xcb\x7b\xa3\x71\x67\x5a\x7d\x38\x2e\x45\xb8\x26\x49\x50\xb0\x0c\xf3\x0f\x11\x05\xb0\x55\x66\x0e\x1b\x39\xf6\x46\x58\xbf\x68\x0c\x9b\xa5\x4b\xef\x94\x16\x3b\xb6\xf8\xda\x70\xf8\x9b\xdc\x9b\x8c\x2a\xf5\x48\x47\x03\x0d\x7b\xb6\x3c\x6f\x9d\x0d\x31\x1b\xc1\xe7\x3e\xea\x21\x8b\x08\xa6\x50\x4c\x5b\xbf\x31\x65\xb3\x7c\x5e\xc2\x8d\xd5\x87\x0f\xe2\xdd\x5d\x3e\x95\xfc\x86\xa1\x9c\x74\x14\x2a\xfe\xab\x64\xa5\x0b\xc5\x2a\x30\xe5\x54\xb7\xdc\x89\x92\xdc\x4e\x92\x29\x31\xb0\x6b\x95\xa6\x91\xa6\xac\xf9\x12\xc9\x10\xfb\x08\x75\xff\x2f\x93\x8e\x91\xbe\xfc\x18\xd1\x1a\x72\x49\x9d\xca\x14\xa9\x54\x12\x2f\x10\x51\x48\x80\xd1\xc0\x42\x57\x9a\xcd\x56\x0a\xa1\x55\xe9\x6d\x7e\x3c\x19\x09\x01\x43\x7a\xfb\x31\x8e\x03\x42\xcb\xa8\x52\x9a\x45\xc9\x49\x21\x79\x2d\xa4\x2c\x24\x6d\x90\x5c\xa2\x95\x03\x59\x89\x23\xad\xfc\xdd\x28\x3b\xc1\xa7\x85\x1b\x85\x35\xf3\xe9\x5c\x58\x55\x8f\x67\x13\xd7\x9b\x9f\x0e\xcb\xc1\x5f\x2b\x90\x4d\x39\xd2\x8c\x8a\x35\x2e\xf3\xc4\x27\xe1\x70\x1b\xf2\x12\x59\x4b\xe6\x28\x21\x19\x84\x8f\x9d\xae\x99\xa4\x3c\x19\x91\x4e\x32\x7f\xe3\x64\x5a\xf3\xb3\xd3\x9c\x9d\xdb\x61\x3c\xb1\x38\x5f\x59\x23\xd7\x00\x01\x5c\x52\x0b\xd4\x6d\x26\xf7\x8c\xa2\x03\xc0\x30\xe9\xeb\xee\xb9\x49\x8d\x79\xc9\x2c\xdf\x98\x94\xec\x44\x39\x39\x8e\x03\x1b\xd8\xab\xef\x17\xd4\x06\x8e\xdb\xec\x0f\x3f\x48\xdc\x00\xec\x9d\xe0\x73\x3f\xbe\xdb\x3d\x4d\xae\xf0\x7b\xb8\x52\x93\xab\x1e\xb2\x90\x4c\x21\x45\xcd\xe3\x54\x3d\xbc\x46\x1d\x90\xcf\x2e\x75\x01\x74\xd3\x5c\xa4\x65\x3d\xc1\xf9\xc6\x5a\x9d\x72\x9b\xe8\x44\xd5\x31\x9e\x49\x9f\xf3\x17\xf6\x33\x35\x31\x6d\x11\x09\x0d\x87\x57\xe9\xd5\x7d\x3d\x24\xdc\xea\xa2\xf9\xd1\xa1\x92\xd3\x71\x4a\x0c\x44\xd1\xc8\xc3\x44\xfe\xb9\x37\x7f\x38\xab\x61\x1d\x01\x8f\xe2\x71\x9d\x3a\xa1\xab\xde\xe7\xf6\x5a\x24\x3c\x24\xc7\xa1\x8c\x1e\x10\xdd\x38\x84\xc0\x09\xd3\x46\x68\xc4\x14\x11\x76\xf9\x2f\x92\x2a\xcf\x2d\x2a\x7e\x7b\xe9\xf7\xf1\x9b\x3f\x3c\x25\x4f\x99\x9f\x9b\x14\x9f\xbd\x23\x11\x2c\x67\x1f\xf9\x2c\x6f\xf9\xc3\x13\xda\x47\x5d\xfb\x41\x75\x18\xcf\x8d\x7a\xdd\xcf\x4a\x3e\x33\xf3\x6b\x6c\x3a\x45\xe0\x3d\xb4\x11\x3d\x31\x1a\xd1\x47\x1a\xe5\xc5\xe7\x9c\x59\x07\x7a\xde\x2a\xd7\x5f\x43\xa4\x77\xe8\xbd\xed\x5a\x71\x8b\xb7\xc3\x5c\xf6\x85\xba\x75\x0e\xab\x28\x07\x6f\xc8\xe8\xaa\x6f\x66\x89\xcb\x80\xe1\xfa\xe3\xb5\x0f\x29\x23\x82\xc3\xc6\xef\x7e\xda\xf4\xf1\xdc\x49\xea\xcc\xeb\x73\x98\x6a\x5e\x58\x35\x5c\x1e\x65\x69\x62\xad\xe6\x05\x39\x13\xa5\xd4\xbd\x72\x84\xeb\xcc\x12\xe5\xf4\xa2\x83\xab\xe0\xe4\xd2\x0e\x7a\x91\x6b\xdb\xb5\x18\x0b\x90\x42\x84\x86\xbe\x80\xdc\x9b\x0b\xb9\x24\xca\x69\x70\x3e\x0c\x7c\xa1\x5a\xd2\xa1\xb8\x95\xb2\xcf\x97\xe0\x44\x3a\xdc\x89\xfe\x25\x79\x54\x43\x8d\x6e\x67\x7a\xb7\xc6\x10\x38\x90\xf4\x41\x13\x31\x5b\x76\x31\x8f\x72\xbb\x97\xdf\x0e\x7d\x8e\x49\x41\x0f\x72\x13\x9d\x1d\x77\x85\xf3\x5f\x4e\x51\x9b\x3f\x55\xc5\xd9\x9a\x7d\x6a\x61\x64\x64\xab\x90\x91\x2d\xc9\x94\x7b\x18\x95\xc7\x22\x21\xf9\x20\x89\xbf\x7c\x92\xd8\xf8\x53\xba\x33\xf1\x17\x5c\x45\xaf\x93\x12\x5c\x3a\x4f\x0a\x24\x64\x2d\x2b\x02\xd1\xc6\x25\x21\xfa\x34\x99\x52\x74\x33\x29\x2b\xdf\x97\x1a\x2a\x19\x26\xe4\xad\x8d\x8b\x25\x21\x43\x3a\x7c\x74\x89\x3a\x1d\x48\x5f\x87\x11\x1b\xb1\xc6\xe5\xc3\xf8\xbb\x9e\x8e\x66\xdd\xbb\xd0\xd8\xb8\x54\xae\x7b\xc4\x25\xc3\xd5\xff\xe0\x0b\x01\xe8\x20\x2e\x57\x16\x37\x5b\x17\x29\x7d\xf0\x02\xba\x7a\xa9\xe2\x2a\xee\xfc\x61\x31\x8b\x95\xd9\x93\xaf\x01\x45\xe7\x6b\xcb\x63\x58\xfe\xe9\xab\xf9\x4a\xfd\xd8\x92\x2d\xa0\x8f\x9e\xc6\x55\x10\xb4\xde\xae\x34\xb1\x56\x27\x19\x38\x88\x7b\xeb\x53\x29\xb6\x70\x6f\xb3\x30\x5c\x5f\x32\x5d\xdb\xeb\xdb\x7b\x31\xcb\x17\x34\xe5\x8b\x6b\x19\xbd\xf3\xe4\x85\xef\xc4\x72\x0f\x9d\xab\xf0\x96\xc8\x19\xb6\xa0\xd4\xb6\xb5\x91\x26\xe3\xb5\x2b\x87\x69\x1a\x68\x63\x7f\x5b\x4f\x7e\xba\xcf\xe4\x9b\x5e\x72\x49\xbb\xfc\x43\xd3\x66\x7f\x25\xae\xd6\xe3\x5a\x4c\x3a\x61\xe7\x17\x75\x5f\x95\x3a\x12\x96\x7a\x7d\x7f\x31\x94\x3f\xdf\xdb\xef\x5c\x00\x1e\x15\x3c\xdb\xe8\xcb\x67\x88\x06\x94\x4c\xa0\x1a\xa4\x43\xd8\x3d\x48\xe6\xf1\xfd\x53\x8e\x7b\x48\x11\xc2\xa5\xff\x86\x96\xc6\xd3\xf2\xf9\x8a\xe5\x05\x0b\x19\x6c\xff\xdc\x88\xbd\x5c\xb6\x9b\x15\x3f\x60\x67\xcf\xf9\x2c\x9d\x58\xde\x3d\x56\x6d\x24\xb4\xc2\x65\xe7\x39\x58\x50\x85\xfb\x92\x9c\xa0\xfe\x68\xf8\x5c\xd9\x1e\x14\x77\x4a\x17\xa2\xab\x6a\x86\x30\x53\x3c\x63\x7a\x8f\x19\xf4\x45\xe7\x53\xb2\x41\xdd\x24\xfe\x7a\xf7\xfa\x09\xcc\xed\x45\xc6\xa1\xa3\x0d\xe8\xdd\x6c\x87\x69\x18\xe9\xec\x28\x51\x40\x48\xba\x56\x8f\xa6\xe2\x1d\x51\x86\x13\x42\x67\xab\x18\xd4\x77\xf8\x1e\x1f\x7c\x28\x65\x2b\xfa\x42\xfc\x8c\x75\xfa\xf8\x60\x9a\x71\x17\xde\x28\xe7\x66\xdb\x07\x89\x78\x8e\xd1\xe5\x82\x3c\x98\xb7\x32\x85\x04\x09\x4d\x90\x87\x01\xa4\x94\xe1\xe1\xb4\x0f\x4c\x89\xd8\x95\xf7\x6d\x47\xb2\x0d\x89\x6b\x3e\x19\xf9\x90\x08\x59\x81\x40\x0d\x86\x9f\x22\x66\x0b\x37\x62\x59\x64\x4d\x40\xc7\x3a\xeb\x7a\x1a\x8f\xa4\xc4\xf2\x1b\xf7\x97\xd5\x1c\xbb\x4d\xc6\xe4\xb4\x05\x29\xa4\xa4\xf6\xad\x46\x4e\x6b\xf1\x7d\x94\xcc\xf1\x39\x8e\x4b\x38\xc4\x5c\x9b\xc7\xad\x87\x6e\x28\x1b\xd7\x16\xce\xe8\x8d\x9c\x60\xb8\x36\xfc\x9d\x9a\xd2\x97\x91\xdd\xb2\xa1\xa9\x36\xea\xd6\xb0\x6e\xe2\x36\x54\x82\x17\x1b\xe3\xba\xfc\x94\x0e\x92\x06\x10\x80\xc7\xdd\x0a\xe0\x80\x5e\xe5\x1e\xb2\xd0\x14\xa3\xca\xc9\x5f\x71\xe5\x14\x2e\xd9\x0c\xb3\x1e\x0e\x1e\x35\xce\x2f\xed\x97\x3b\xd3\x1a\xd7\x4b\x27\x63\x1f\xd7\x6b\xef\xdb\x9c\x6b\xeb\xe0\x7b\x6e\xca\xdd\x0c\x74\xdf\x94\x84\xbe\xdf\xd2\xb7\x04\xfb\xb8\xf2\x5e\x00\x85\x36\x73\xb0\x8a\xdb\xd6\x15\x99\xaf\x73\xed\x90\xda\x06\xfc\x6b\x6f\x43\x0e\xa3\x99\xc7\x83\xcf\x4f\x59\x8f\x0b\xe7\xa7\xdc\x30\xc0\x32\x64\xe0\xd6\xdd\xfa\x67\x3c\x75\xba\x7c\x49\xff\x12\x55\xcf\x8f\xb3\xee\xba\x01\x46\xd5\x0e\x1a\xec\xe6\xdd\x0c\x48\x5f\xd5\x38\xe9\x74\xd5\x32\x35\x96\x5a\xec\x85\x2b\x37\x9c\x81\xe8\x16\x29\xb3\x68\xb8\x7e\x64\xab\xd7\xce\x8c\x09\xa2\x3f\xf1\x15\x8a\xe7\x27\xd4\xe2\xda\x2e\xfc\xe8\x79\x2b\x37\x81\x64\x6b\xb6\x9b\x92\x08\xfe\xf7\x4d\xe1\xa8\xe4\x04\x42\xd7\x75\x32\x3b\x09\x6e\x37\x3b\x0b\xc9\x79\x8f\xc3\x8b\xf5\xb8\x79\x67\x06\xdc\x4d\x39\x5f\x71\x40\x45\xe8\x4a\x12\xe1\x73\x44\x36\x38\x94\x98\x65\x6c\xa1\x71\x70\x1d\xb5\xc0\x37\xe9\x3e\x91\xaa\x1b\xda\x98\xa1\xe4\xc8\x99\x78\x6b\xa8\xc8\x9b\x18\x47\xb3\xd3\xea\x48\xfb\xea\x57\x6a\xd6\x94\x9e\x92\x43\x2f\x11\x75\xcb\x93\x64\x7c\x7b\xc7\xd9\x39\x73\x3b\x0e\xfb\x4b\x64\xfc\xe6\x72\x83\x50\x08\x1c\xea\x89\xa3\x9f\x26\x61\x25\xff\x41\xdc\x80\x33\xe2\x52\x03\x61\xd4\x12\x11\x12\xbd\xb9\xf3\xcd\xd1\x94\x69\xba\xda\xaf\x4a\xa2\x34\x74\x2b\xbc\x72\xb6\xe2\x0e\x75\x7c\xcd\xb9\x81\xa5\x46\x48\xc7\x3b\x57\x57\x47\x74\xdc\x8b\xa5\x2a\x6a\xa8\xc1\x2c\x17\x1f\x34\xa3\x2c\x61\xa2\x69\x96\xdf\x90\x7c\x74\xb8\x95\x9a\xd3\xd2\x62\xfe\xd1\xd6\xd6\x5f\xd4\xd0\xc7\x27\xa4\xae\x6a\xfe\xee\xb7\xd3\x56\x2b\x79\x3e\x80\xef\x62\xe9\x97\x90\x02\x20\x72\xe3\xca\x37\xd1\xdb\x9e\xa8\xe4\x77\xa5\x9a\xcb\x44\x93\x98\xf8\xe2\x34\xb8\x47\x3b\x67\x35\x5e\x62\xbd\x24\x0e\x07\xfc\x3f\xc9\xc4\x27\x15\x39\xa1\x9c\x1c\x53\x1a\x9b\xb4\x6e\xba\x33\xf7\x68\x76\xdc\x50\x03\x8f\xdd\x5b\xf1\x0a\xd3\x3f\xfa\x5c\x44\x58\x81\x87\x70\x7c\xe1\xf3\x28\x81\x6d\x6d\x57\x01\x9c\x21\x69\x28\xbf\x2d\x29\xc0\x8d\x6b\x32\x78\x43\x2d\xe7\x26\xe6\xad\xcb\x4e\xb7\xf3\xd7\xfb\x14\x0a\x38\x75\xe6\xe7\xb9\x39\x26\x37\x74\xa5\x6e\xe3\x42\x5f\xda\xf7\xa0\x71\xb1\x7f\xd1\x4b\xf1\x7d\xe7\x74\x6d\xdc\xa1\x98\x07\x57\x14\x53\x2c\x25\x21\x2c\x42\xaa\x5f\x73\xaa\x99\x41\x68\xf2\x00\xd1\x64\xf5\xc9\xbb\x43\xde\xd7\xfa\x07\x9f\x18\x8a\x07\x75\x8f\x30\x85\x31\xcb\x30\xd8\x36\x38\xbf\x53\x37\xf9\x61\x94\x59\x99\x56\x7d\x56\x8e\xcc\x96\xc7\xe8\x41\x21\xa8\x94\x6e\x52\xac\x39\xe2\x55\x98\x05\x5f\x5b\xda\x47\xc4\x99\xdf\x8b\x1b\x04\xc2\xe4\x9f\x79\xf4\x08\x17\x4e\x82\x47\xd4\x67\xc6\xf4\xb8\x7f\xb8\xdc\x95\x26\x6d\xf6\x26\xa2\x8d\xe7\x22\xbf\xf3\x53\x47\x29\xe5\x84\x83\x6c\x77\xd6\x17\x35\x9c\xa6\xee\x03\x72\x0c\x72\x0a\x7e\xe3\x07\x9b\xc9\x77\x27\x2e\x3d\x25\xe6\xbd\x73\x8f\x49\xdb\xba\x26\x48\x5d\x10\x07\x46\xfb\x28\x98\x3d\xac\x44\x5b\xf9\x55\xc9\xef\x28\x0f\x94\x14\xc8\x03\x29\x9e\x13\xba\xe2\xd9\x80\xa0\x68\xee\x51\xdc\xfa\xec\xb8\x5c\x29\x8a\xbd\x99\xab\x93\x07\x96\x4b\xe9\x79\x67\x87\xe5\xb7\x44\x01\xbe\x04\xd9\xca\x96\xaf\x3a\x64\x63\x90\x82\x35\x07\xcb\xb5\x70\xce\x98\xe2\xc9\x8b\xe2\x0e\xc6\x78\x02\x2f\x61\x7b\x36\xb2\x35\xa5\x93\x20\x12\xae\xd7\x04\xb1\xf0\xf4\xcd\x23\x2d\x82\xdf\x71\x72\x10\x3b\x6d\x37\x69\x83\x28\xbc\x36\x80\x33\xd4\xb4\xe3\x9e\x01\xc8\x72\x2e\xb7\x35\x1b\x2f\x79\x1b\x79\xa6\xc2\x37\x00\x1d\xba\xb7\x3b\xa4\xaa\x24\x6e\x5a\x7e\x4d\xff\x88\xca\xdf\xbb\x6c\x82\xae\xc6\x16\x4c\x75\x65\xcb\xe5\x73\x9c\x3e\x16\x27\x8f\xdc\x07\xbb\x1d\x76\x92\xfa\x75\x66\x97\x8a\x93\xe7\x6f\x5e\xc5\x35\x03\xd0\x27\x9f\x3c\xf4\x93\x2f\xfa\xae\xce\x80\x17\x4a\xdc\x13\x3c\xc4\xf8\xce\xeb\xd3\x53\x79\x66\xba\x78\x73\x7c\xe2\x37\x10\xa7\x44\x72\x23\x30\x09\x36\x3d\x91\xb2\xe2\xd5\xa3\xe7\x59\xbf\xe0\xe0\xfe\xbd\xf1\xe8\x85\x6a\x2c\x02\xe1\x6d\x9c\xc2\x51\x31\xba\xde\xc1\x9b\xd2\x5a\x53\x37\x9e\x58\x92\xf4\x36\xcc\x24\xd3\x60\x97\x59\x94\x0d\x5a\xc1\xe4\x39\x36\x7d\xa8\x3c\xa5\x8e\x3d\x81\x34\xb1\xf4\xb9\x4e\xcc\xc6\x5d\x05\x71\x73\xdd\x4c\x73\x4a\x9c\xb9\x4d\x8d\x13\xa2\x59\x5a\x53\x71\xc5\xb4\x3b\x13\x93\xf2\xb9\x36\xd1\x01\x54\xb2\xbe\xc9\x09\xe3\x51\x9a\x01\x5c\x3c\x20\xce\x9d\x30\x77\x5a\xe1\x10\x41\x93\x5c\x72\xf5\x72\xb7\xcb\xdc\xb5\xd1\x1b\x64\x49\x2d\xea\xd5\x45\x75\x5f\x5f\x31\x5c\xe9\xda\x53\x29\xe7\x46\x5a\xdc\x9d\x9e\x92\xdd\x61\x90\x2d\x08\xd9\xd9\xd8\xd5\xd2\xdb\x7b\x1c\x5c\x1b\xda\xba\x17\xf2\x99\x3d\x43\x4b\xe3\xd7\x28\x4b\x47\x19\x25\x3f\xf3\xd4\x26\x2f\x62\xbf\xee\x7c\x62\x4f\xee\xa3\x1f\xf5\x49\xc0\xa7\x2d\x52\x2f\x41\x25\x4a\x5e\x4c\x8b\xaa\x85\xb9\x20\xa8\x51\xfc\xcf\xf1\x52\x58\x32\xf6\x1d\xbf\x97\x4f\x0c\xe0\xe9\x96\x63\x95\x99\x2a\x5f\x97\x9b\xba\x35\x33\xd9\xd6\xdd\x46\xc1\x95\xb1\x59\x49\x12\xd5\xcf\xf4\xf0\xb5\x7a\x04\xf9\x40\x88\x29\x52\x3b\xa1\xf5\xff\xbe\x1e\x14\x3a\x61\x16\x1c\x95\x90\x5e\x8e\x3a\xe1\xb2\x68\x8d\x08\xb1\x54\xec\x64\xb8\x69\xbe\x12\x6c\x6f\x4e\xbf\xbc\xe9\x73\xd0\xac\xd6\x7b\x70\x92\xdd\x77\x8f\xf5\xa4\xc9\x5d\xa0\x88\x9b\x45\x82\x34\x14\xc6\xb2\x2b\x94\x06\x19\x1c\xca\x78\xc6\x7b\x66\x64\x6d\x13\x6d\xf1\xc9\xc9\xf1\xdc\x47\x17\x48\x72\xe7\x16\xb2\x99\x9d\x11\x25\xdf\x2a\x46\x7f\xe9\xef\x6e\xdc\x24\xdf\x80\xfc\x5b\xe8\xca\xfe\xd2\x90\xc1\xf2\xe5\x7c\x4f\x8e\x83\x5f\x47\xc4\xf5\xc6\x44\x3b\x24\xec\x3b\x7d\x6f\x29\xcf\x44\x9e\x3c\xb0\x84\x6b\xcd\xe1\xad\xa6\x9c\xb8\x9c\x38\x48\x48\xeb\x20\xa4\x2b\x4b\xd6\xc6\x37\x5a\xf4\x8b\x18\xe5\x24\x63\x07\x1c\xa2\x86\xab\x2d\xee\xfd\xfd\xea\xc0\xcc\x77\xe2\x92\xb4\xb9\xa4\x6d\x7c\x31\x20\x48\xa3\x97\x6b\x62\x03\xe5\xd0\xf9\xc4\x3b\x6f\xa3\xfb\x02\xda\x85\x7b\x8e\x9f\xd3\xe6\xe0\x0d\x57\x11\x47\x2f\xba\x99\x63\x5c\x27\xfd\xc4\x5b\x92\xbf\x70\x87\xd7\xac\xa1\x88\x57\xfa\x7a\x5c\x60\x6f\x72\x35\x13\x97\x3c\x56\x0d\x9f\x8a\x1c\xd7\xdb\x5a\x4f\x07\xf9\xd6\x87\x5e\xe6\xf4\xab\x4a\x1e\xc3\x8f\xda\xcd\x3f\xc4\xff\xc4\x3d\xba\x06\xdd\x34\xeb\xda\x77\xea\xae\x30\xcf\x62\x87\xbf\x2d\xa9\x95\x09\xb7\x46\x1a\xd3\xb4\x67\x84\x99\xc7\x1d\x5e\x19\x10\x37\x36\x11\x1d\x18\x07\xa4\x28\x1f\x27\x44\x74\x24\xf7\x2a\xd9\x8d\x40\xbb\xb6\x7c\x8a\xb7\xfd\x15\xf7\x08\x07\x2e\xba\x3a\x6c\xfd\xbb\x7a\x07\xcd\x44\x5f\xf5\xe5\xa4\xe1\xa5\x8d\x9e\xe5\x62\xd5\x24\xda\x9f\x6b\x24\x13\x6f\xd9\xd8\xe7\xd5\x27\x5a\x73\xfa\xd9\xa1\x2c\x11\x56\x97\xa0\xeb\xb7\x4f\x8f\x5f\xe6\x95\x27\xec\x41\xcb\x67\x98\x89\x7e\xd9\xcb\x3c\xe4\xa4\x70\x76\x2d\x7c\x54\x98\x55\xdc\xb7\x0a\xc1\xbf\x7d\x20\x51\xef\x5e\x52\xb7\xac\xca\x1d\x48\xf3\x11\xfe\xd5\x97\xcd\xe7\x6b\x4e\x1e\x51\xb0\xfb\x6a\xc2\xa1\x41\x98\xcc\x37\x68\xa7\x75\xac\xa8\x2e\x7b\xd9\xf7\x89\x8b\xca\xcd\xea\x93\x35\x8f\x44\x02\xa4\x54\xbb\xbc\x0e\x82\x79\x79\x7d\x57\x2f\x1f\x40\xc8\x22\x6a\x1c\x66\x4d\x18\x5e\xa7\x0a\xee\x11\x17\xe5\xe4\x0d\xea\x93\xca\x11\x71\x5b\xad\x1c\x98\xc1\xd9\xc6\x03\x4b\xdc\x75\x01\x62\x70\x9d\x65\xeb\x6a\xea\x53\xb3\xca\x0e\x6b\xf2\x35\x9d\x0f\xc3\xce\xca\xfd\x70\x7e\xfd\x20\x62\xf3\xf9\x2a\x42\x77\x31\xa1\x4d\x56\xb4\xab\xd9\x77\xbb\x67\x17\x0e\x9e\x6d\x35\x43\x79\x52\x59\x05\xc9\xd2\xa9\xff\x5a\xaf\xaf\xa7\x0a\x95\x7b\x44\x38\x21\xa2\xe8\x3d\xce\xa0\x6f\xec\xc3\xd6\x5c\xb5\x40\xdd\x48\x7f\x8a\x2a\xf8\xe8\x98\xc5\xa6\x27\x39\xf1\x46\x03\x0e\x8e\x7a\xce\x37\xa6\x9f\x02\xb1\xba\x12\x4b\xb5\xaa\x11\x2f\xd8\x36\x65\xeb\x79\x7a\xd4\xc2\x05\xd4\xb0\xdf\xd6\x95\x86\xac\xb7\x21\xe1\x6d\xf8\x6a\x3e\x18\x84\x14\xe4\x67\x45\x91\xae\x67\xe3\xae\x3a\xe7\xd8\xd3\xc7\x02\x8d\xbc\x78\x68\x73\xf5\xd0\xb5\x98\xc9\xd1\xe7\x16\x43\x60\x25\xa6\x63\xf4\x11\x27\xb9\x3c\xd7\xf3\x26\xce\xcd\xcd\xd5\x4c\x87\xf1\xf1\x47\x2e\xe0\x47\x7e\xae\x90\x72\x64\x1a\x92\xe4\xea\x46\x0a\x55\x5c\xb4\xfa\x62\x99\x69\xaa\xee\xeb\x74\x15\xee\x4b\xb7\x5b\xc6\xe1\x1d\xa1\x01\xdb\x33\x21\xcf\x00\x52\x7d\x3b\x57\xfc\xfe\xa8\x45\x04\x7e\x71\x00\xcf\x8f\xe9\x93\x32\xa5\xa6\xf7\xcb\x9f\x2e\x49\xef\x1f\xde\xd6\xdc\xc8\x72\x5d\xd7\xb5\x94\xe4\x0b\x9a\xbb\xd6\x55\xbe\x6f\xfb\xcd\xfd\xdb\x71\x4a\x65\x09\xfd\x0e\x55\x24\xa5\xed\xed\x1f\xbe\x74\x19\x97\x75\x3e\x92\xb0\xf7\xa7\x52\x73\xa4\xc2\x76\xf0\xe1\x44\xc9\x08\xe2\x92\x92\x41\xec\x3f\xf8\x71\x7e\x92\xf9\x85\xdc\xbf\x3f\x95\x21\x2b\xb4\xfa\x40\x7f\x57\x6f\x3e\xe7\x93\xae\x37\xca\xf2\x34\x03\x2f\xce\x48\x01\x40\xf9\x74\x26\xb3\x20\xe4\xec\x16\x43\x79\x86\xfe\x4a\x3c\x80\x7b\x3d\xec\x92\x6e\xa6\x90\xd3\x84\xa5\x7f\x5e\x45\xaf\x38\x48\xb6\x52\xe4\x2d\xfa\x73\xfa\x52\x03\xe1\xc0\xd0\x75\x0d\x61\x40\x79\x46\xeb\x19\xf1\x36\xb9\x10\x34\x3f\xce\x82\x38\x7c\x5c\x6b\x45\x0c\x25\x4b\x93\xf0\x50\x1a\xd0\xef\xfd\x32\xfe\xfd\x85\x5d\x7e\x41\x76\x33\xf1\x23\xaa\x88\x37\xfb\xbf\xd8\x52\xc1\x96\x8c\xe6\x41\x7f\x9f\xd3\x6f\x7e\x4d\x48\x7e\x56\xf4\x93\x1d\x08\xfc\xeb\x3d\xb7\x66\x23\x55\x5b\x13\xb3\xfa\x02\xaf\xe8\x5b\xf9\x7d\x49\xbf\xca\x96\xff\x96\x51\x38\x91\xae\x0e\x28\x75\x64\x30\x2e\xd7\x3f\xb9\xf8\x1c\x4c\x63\x19\x5e\x24\xbd\xcd\x87\x5d\x97\x5c\x24\x3e\x63\x94\xbc\x37\xe6\x9d\x76\xc9\xb3\xd0\x2e\xc9\xee\x3f\x97\x1e\xdd\x4c\x2e\x4d\x29\xdd\xe1\x5e\x1c\x0a\xfa\xf2\xfd\xca\x4d\xc9\xcd\x47\x4a\xdd\x84\xf4\x5f\x06\x78\xd5\x77\x3b\xa4\x14\xfc\x31\x3c\xd2\xe4\xde\xbe\xc0\x21\x4c\x67\xf5\xd5\x7b\x7f\xed\xbc\xde\xd4\x7c\xe9\x98\x63\x43\x3e\xea\x5b\xde\xe1\xc5\x64\xf6\x8e\xbb\x9c\xa1\x75\xbb\x1b\xd5\xc0\x7c\x9b\xbe\xa7\x03\x55\x31\x69\xc5\x6a\xaf\x1f\x84\xaf\xba\x14\x9c\x8f\x5e\x5f\x0a\x21\xc4\x58\xad\x49\xf4\x44\xef\x34\xf3\xcd\x53\xf8\xfc\x8a\x3b\xff\xf4\x4f\xa8\x64\xeb\x8f\xe6\x9f\xff\x99\xb4\xe9\xbb\xec\xdf\x67\x6d\xba\x29\x5d\xa5\x6d\xf9\xa1\xde\x96\x52\x9b\xfe\xfe\x3a\x6a\xf0\xf8\x2e\x5f\xbb\xe5\x18\x57\x3e\x97\x48\xb2\x90\xf8\xbb\xee\xff\x2f\x00\x00\xff\xff\x52\xc2\x46\xa2\x36\xa4\x00\x00") func confLocaleLocale_frFrIniBytes() ([]byte, error) { return bindataRead( @@ -827,12 +827,12 @@ func confLocaleLocale_frFrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 40483, mode: os.FileMode(493), modTime: time.Unix(1439321202, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 42038, mode: os.FileMode(493), modTime: time.Unix(1439758812, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_itItIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xcb\x8e\x1c\x47\xb3\x1f\xbe\x27\xc0\x77\x28\xe9\x0f\xfe\x29\x01\xc3\x26\x24\xc1\x86\x21\xb0\x28\x8f\x86\x14\x49\x7b\x86\x33\x1f\x87\xe4\x31\x2c\x08\xad\xec\xae\x9c\xee\x3c\xac\xae\x6a\xd5\x65\x46\xc3\x95\x9f\xc1\x4f\xf0\x2d\x6d\xe0\xac\xbc\xf3\x9a\x2f\xe6\xf8\x45\x44\x5e\xea\xd2\x43\x7e\xfa\xce\x42\xe2\x74\xe5\x3d\x32\xee\x11\x99\x69\xf6\xfb\x65\x61\xdb\x75\xfe\xae\xca\x5a\xdb\x5c\xbb\x8f\xae\xce\x5e\xb8\x2e\x33\x7d\x57\x3f\xaa\xdb\xbd\xeb\x4c\x57\x67\xfb\xa6\xae\xe8\x1f\x53\x96\x0f\xfb\xb6\xbe\x7f\xef\xfe\xbd\x6d\xbd\xb3\xf9\x4b\xfa\xdf\xfd\x7b\x85\x69\xb7\xab\xda\x34\x45\x7e\x61\xaa\xca\x96\x65\x9d\x15\x2e\x5b\x53\x8b\xa6\xa6\x1f\xf7\xef\xd9\x3f\xf7\x65\xdd\xd8\xfc\x79\x8b\x7f\x0d\x35\xb6\xe5\x3e\x3f\x76\x34\xc4\xfd\x7b\xad\xdb\x54\x4b\x57\xe5\xc7\xeb\xb5\x2d\x1c\xfd\xae\xd7\xce\x94\x4b\xff\xf9\xb4\xde\xb8\x2a\xbb\xe4\x8f\xf6\xc7\xec\xc2\xb4\x6d\x9d\x7d\x9f\x3d\x69\x77\x34\x99\xa7\xf8\x45\x25\x8d\xcd\xca\x87\x66\xbd\xae\xfb\xaa\x7b\xf2\x58\x8a\xb4\xe7\xba\xef\x68\xdc\xb5\xd3\x9f\xfd\x3e\x7f\x63\x37\xae\xed\x1a\xd3\xd1\xb7\x86\xff\xb6\xcd\xe0\xe3\x8d\x5d\xb5\xae\xb3\xf9\xa5\xa3\x25\xff\x8b\x5d\xdd\xbf\x77\x6d\x9b\xd6\xd5\x55\xfe\x5e\xfe\xa5\x35\xef\xcd\xc6\xd2\x72\x69\x6e\xb4\x9c\xce\xee\xf6\xa5\xa1\x16\x6f\xf5\x8f\xfb\xf7\x4a\x53\x6d\x7a\xd4\x39\x75\xf8\x03\x10\xeb\x09\xbe\x95\x21\xa8\xbd\x26\xa8\x65\x7d\x67\x2b\x54\xb4\x3b\xe3\xca\xfc\xf9\x23\xfc\x83\x6e\xdb\xf6\xa6\x66\x48\xca\x1f\x98\xe2\xb2\xbb\xdd\xdb\xfc\xa4\xae\xae\x6c\xb3\xa3\xae\xd6\x66\xdf\xad\xb7\x26\x3f\x91\x7f\xd1\x77\x63\xf7\x35\xcd\xb9\x6e\x6e\x69\x25\xfe\xcf\xfb\xf7\xea\x66\x63\x2a\xf7\x91\x56\x45\x93\x3f\x97\x1f\x1f\xcd\x47\x59\xc2\xce\x35\x4d\xdd\xe4\x67\xfc\xcf\xfd\x7b\x95\xbd\x59\xa2\x9b\xfc\x75\x5f\x5f\xd7\x59\xda\x0d\x8a\x76\x6e\xd3\x60\x89\x28\x35\xd9\x19\x7e\x69\x3f\x28\xbd\xaa\x9b\x0f\xda\xf0\x17\xfa\x73\xd2\x9a\x26\xa2\x2d\xeb\xf1\x2c\x4c\x45\x60\xe2\x0a\x2f\x6c\xdb\x39\xda\xaa\xac\xb4\xc3\x6a\xb4\x27\xa6\xd8\xb9\x6a\xb9\x37\x84\x5e\x03\x2c\x33\x3b\xfa\xce\x3b\xa7\xfd\x29\x16\x2c\x5b\xdb\x75\x04\xfa\x36\x7f\xb5\xa3\xa9\x74\xd2\x4f\x56\x50\x3b\x8f\x28\x84\x11\x73\x75\x00\x4e\x9a\x72\xbb\xbc\xb2\xb6\xa0\xbd\xea\x88\x24\xb0\xe1\x7d\x59\x12\x7c\xfe\xe8\x69\x92\x6d\x7e\x41\xbf\x68\x91\xf2\xeb\xfe\x3d\xd7\xb6\xf4\x57\x7e\xd1\xd4\xab\xd2\xee\xb8\x8b\xb5\xa9\xd6\x34\xd7\xe3\xaa\xa2\xaa\xbc\x47\xbf\xb6\xd6\x34\xeb\xed\x6f\x18\x17\x7f\xe4\x6f\xdc\xda\x36\x6b\xb3\x58\x2c\x0e\x6e\x20\x70\x26\x7f\xa7\xa8\xc2\xa3\xf8\x41\x80\x07\x75\x01\xb4\x28\xa8\x1b\xee\xdf\x55\xb4\x86\xb2\xa4\x01\xf4\xaf\xfc\x95\xfc\xeb\x61\xd3\xb9\xae\xb4\x8c\x5a\x04\x89\x87\x2e\x2d\xcc\xf6\xb6\xc9\x5c\x49\x84\xee\x76\x44\xe7\xd7\xd7\xae\xc6\xa4\xfe\xe8\x89\x10\x96\xc5\x4a\x78\xc4\x8b\x7a\xd3\x66\x8d\x5b\x6f\x9d\x2d\x6c\x76\x76\x7b\xf9\x47\x79\x94\x5d\x10\xe4\x36\x8d\x6d\x2f\xff\x76\x9a\xd5\x19\xfd\x9f\x5a\xd0\x82\xa8\x8d\x0c\x37\x80\xff\x33\xd3\x99\x95\x69\xad\x94\x03\xad\xdf\xba\x3d\x6f\x64\x11\x4a\xb6\x54\x9d\x38\x4b\xdb\x8d\x96\x3f\x43\x1b\xd4\x49\xa4\x28\xda\xdb\xa4\x17\x2a\x02\x97\xe1\xf6\xae\x04\x26\x61\x79\xbb\x9a\xe0\x6a\xb3\x57\xaf\x5f\x9f\x3f\xfb\x19\x2c\x8a\xfe\x2b\xdc\x95\x5b\x1b\x22\xc8\xab\xff\xb4\xdc\xd8\xca\x36\xc4\x7d\x08\x09\x01\x10\x5a\xe2\xdf\x4e\x69\x31\x6d\x5b\x2e\x77\x80\xf6\x59\x5d\x98\xd2\x75\x9f\xfe\x9e\x5d\x5e\x9e\x62\x4a\xdd\x36\xbf\xa0\x4d\xac\x1b\x70\xc5\xf6\x8f\x12\xe0\xd2\x71\xfd\x77\xee\xc9\x4f\x4c\x01\xf4\x03\x75\x6a\x9b\x66\x49\xfc\xa2\xbb\x5d\x6a\x3b\xee\xed\x55\x89\xfa\xd2\x30\x5d\x91\x6f\x98\x55\x34\xe9\x7d\xff\xe9\xff\x64\xb6\x25\xe8\xd8\xec\xba\xa7\x35\x2d\x80\x00\x7e\xf2\x33\x70\x27\x00\xff\x8c\x4e\x18\xff\x8f\xf7\xfb\x92\x56\xec\x09\x86\x24\x40\x04\xe2\x7c\x99\x5f\xd2\xe5\xba\x71\xd7\x2e\x23\xac\x00\x30\x2b\x85\x7a\x69\xb2\xae\x1f\x53\x76\x46\x2c\xa1\xb3\x99\xcd\x08\x5b\x4c\x53\x7f\x25\x28\xbe\x1c\x40\x2c\x7b\x53\xd7\x1d\xaf\x32\xc5\xf9\x50\xcf\x8f\xfa\xb6\x27\x32\xcd\x5c\x16\x69\x84\x25\x54\x63\x69\x37\x5d\xd6\x9a\x86\xf8\x41\x4d\xff\x96\xd7\x06\xf5\xaa\x8c\xc9\xd2\xd0\xa2\x1b\xbb\x46\x75\xd0\x57\x4f\xbc\x1f\xd8\xf4\xbc\xb5\x9b\x9e\xa5\x13\x89\x0c\xcf\x84\x7d\xa9\x1f\xf1\x54\x4b\x68\x6e\xd7\x96\xa8\x01\x70\x26\xae\x61\x21\x7b\x4c\xb2\x41\x8d\x9f\x7f\x32\x35\xcb\xd4\x03\x91\x04\x72\x01\x25\xd4\xc4\xdb\xab\xfc\x59\x0d\x4e\x55\xfb\xdf\x7e\xa8\xbf\x61\xae\x35\x21\xa6\xa2\x21\xb1\xb5\xcb\xcb\x97\xd9\xba\x04\x0c\xdf\xbd\x39\x45\x0f\xdb\xae\xdb\x2f\xf7\x04\xcf\xfc\x82\xfe\x67\xb2\x97\x6f\xdf\x5e\x24\x5f\x03\xc2\x71\x21\x98\x62\xbb\xae\xcb\xae\x56\x6e\x97\xec\xe8\x42\xb6\xb4\x6f\xca\x9c\xba\x9e\xd9\x6c\x2a\x19\x4d\xcc\x55\x57\x65\x4f\x5c\xd9\x66\x6d\xbf\x29\x1d\xa6\xe4\x79\x05\xe6\x68\x36\x1b\x52\x18\x68\xbd\x3c\xa9\xc7\xf8\xdf\x25\x81\xa0\x30\xb4\x09\xa6\x5c\x6f\x89\xb1\x18\xe0\x41\xc5\x68\xc2\x18\x99\xd9\x92\xf8\x2e\x29\x14\x34\x34\xe3\x6d\xbd\x87\x7c\x9a\x47\xdc\x5f\x0c\x96\x42\xfb\x7a\xed\x65\xe5\x5c\x2d\x2f\x3e\xdb\x1d\x81\x24\xf0\x8f\xec\xf2\x0c\x70\xe2\x8f\x57\x4d\xbd\xcb\x9f\x99\xe4\x97\x5f\xe7\x19\xb5\xc4\x7c\x5d\x45\xf8\x42\xe8\x5b\x1f\x65\x6f\x7e\x39\xc9\xfe\xc3\x0f\xdf\x7f\xbf\xc8\x2e\x12\x42\x6b\x6b\xda\x9b\xbe\x8a\x15\x33\x9e\x0f\x31\x3d\xfa\x1f\x61\xfb\x0e\x8a\xd2\xd7\xa0\xa2\xaf\xb3\x27\x5c\xf4\x9f\x6d\x4b\x04\xee\xea\xc5\xba\xde\x3d\x5d\x40\xd6\xb9\x92\x90\x4c\xf0\x90\xa7\xcc\xc8\x73\xe6\x3a\xc5\x43\xad\x30\xe1\x74\xa3\x6a\x5e\x6b\x59\x12\x16\x5f\xb9\x66\x97\x1f\xaf\x88\xc5\x11\x64\xbd\x8e\x00\x24\xf0\x1a\x4d\x90\xb3\x04\xba\x8a\x08\xe6\xea\x36\x54\x87\x70\x23\xa4\xa3\x4d\xc2\x06\x3e\x57\x18\x92\x16\x48\x5d\xb3\x32\xb8\xb6\xb3\xcc\x84\x26\x73\xc9\xb5\x68\xa7\x8f\xcb\xae\x71\xfc\x93\xe4\x24\xed\xe5\xd5\x55\xe9\x2a\x2b\xdc\xd2\x8f\x13\xb9\xe6\xb9\x14\x0f\xeb\x11\x12\xef\x49\x2f\x7b\xe6\x5a\xa3\x0d\x08\x30\x27\xcf\x5e\x67\x24\x42\x69\x6e\x44\xd0\xbb\xd0\x01\x29\xa2\x05\xd8\xc1\xb5\x39\x22\xa6\x43\x00\x81\xb2\xd0\xb8\x96\xc8\xd1\x46\x56\x80\xd9\xa0\xa8\x5e\x9b\x72\x07\x98\x81\x0c\xd1\x7d\x69\x97\x4d\xd0\xf4\x48\x27\x4a\xc6\x1c\xc0\x2b\x3b\x33\x15\xe1\xaf\x9d\x6f\x36\x9d\x30\xe1\x76\x33\x68\xbf\x93\xf6\x04\x2b\x10\x0d\x73\x13\x77\x24\x28\x84\x0f\x51\x6d\x21\x9e\xe1\x40\x17\x6d\x4d\x13\x5f\x37\xd6\x08\xab\x81\x82\xb2\x50\x09\x4c\x1a\xa0\x6a\xc3\xcb\x6b\x67\x6f\x02\x58\xdf\xb0\x24\x16\x4e\x97\x1d\x2b\x7b\x02\x6d\xbe\x27\xf1\xdc\x30\x64\x58\x43\xb5\xf3\xfd\xe8\x2a\x2e\xfd\x9c\x64\x92\x04\xb4\xcd\x06\x7c\xd4\xcf\xe9\x3a\x74\xb6\xe7\xce\x8e\x88\x13\x5f\xbb\x96\xed\x02\x9e\x7a\x27\x40\xd7\x7a\xbc\xc4\x50\x99\xb9\x91\xce\xcc\x0e\x41\xb4\xf0\x4a\x9d\x6a\x61\xa2\x62\xbc\x26\xbe\x4c\x4c\x57\xc4\x2f\x11\x15\x89\x6d\x05\x0a\x51\x9e\xc2\x25\xe3\x76\x40\x05\xd2\x56\x88\x21\x17\xe8\xfe\x88\x40\x4e\x5c\x7d\xd7\x57\xc4\xfd\x03\x6b\xcf\x5e\x3d\xcb\xbf\xcb\x6a\xc2\x93\xa6\x21\xec\x61\xdd\x8f\x27\x43\x04\x3f\xd8\x03\xcb\x06\x0f\x91\x30\x31\x25\x8f\x31\x32\xbd\x19\x02\x38\xd6\x79\x1c\x0f\x7a\xf0\x0d\xa6\x3a\xbe\x57\x5e\x27\xfa\x8b\xd2\x6f\x2c\x0a\x04\x1c\xeb\x48\xe3\xa1\x99\xa0\xaa\xdb\x72\x53\x43\x79\x55\x3d\x4e\x25\x0e\xcc\x91\xb6\x5b\x6e\x5c\xb7\xbc\x02\x3b\x29\xf2\x5f\xa8\x14\xa6\x0c\x51\x15\x8a\x98\x7e\x09\x52\xa6\x2a\x68\xe3\x5d\xf7\x63\xf6\xe0\xda\xeb\x2e\x3f\x80\x45\x2c\xcd\x35\x35\x04\xd6\x8b\x10\x30\x99\xda\x3f\x96\x95\x8f\xb6\xdf\xef\x59\xd2\xa8\x46\x42\x68\x4d\xdb\x45\x7b\xcb\x78\xd8\xae\x0d\x69\x88\x6c\x91\x25\xed\x56\x64\x27\x35\xc4\x63\xfa\x2b\xe2\x37\x8e\x09\xc3\x64\x0f\xda\xa3\xec\xf5\xf9\xeb\x41\xc5\x4d\xbd\xea\x5d\x59\x2c\xb0\xc6\x6b\xa2\xf9\x02\xca\xa7\x62\x48\x7e\x8a\x1d\x26\x88\x6d\x7a\x4f\x66\x03\x0d\x09\x93\xfb\xf4\xbf\xa8\x4a\xd3\x50\x03\x23\xeb\xf2\xdd\xcc\x68\x1f\x73\xd2\x5b\xab\xd7\xd2\x38\xe8\x05\x80\x0a\x21\x07\x94\x76\xc2\x43\x7c\xf2\xa3\x05\x4c\xe3\x61\xe9\x8f\x1f\x33\x5a\x58\xf6\xe8\x29\xfd\x9f\xa0\x4a\xba\x83\x70\xe9\xcd\xcc\x6e\x88\xca\x22\x22\x54\xf4\xa8\xe1\xf2\x86\x2b\x18\x50\xcb\x10\x21\x3d\x61\x1c\x33\x61\x60\x66\xdc\x24\x74\x20\xd8\xd2\xf6\x8c\xfc\xf9\xcf\xb6\xba\xb6\x15\xa1\xfb\x57\xd9\xa5\x33\xa4\xee\x5f\x59\x52\x03\x48\x27\x22\x66\xdb\xf5\x99\x59\xad\x68\xa7\x48\xe2\x43\x85\x00\x46\x1d\x65\xab\x1e\x64\x49\x32\xb8\xe9\x1c\xa8\x43\xf4\xcd\x5f\xe1\x03\x20\x6b\xa3\x17\x15\xb1\x2e\x89\x01\x08\xe2\x8b\xca\x4e\x92\x71\x6c\xd7\xfa\x5a\x11\xbd\xdb\x1b\x47\x60\x5d\x06\x1f\x02\xa0\xd5\xd9\x3f\x3b\xb2\x6e\x77\x98\xc7\x33\x5f\x00\xe1\x86\x02\x12\x65\xb7\xbc\x9b\x84\xf9\xd9\xce\x59\x37\x50\x1e\x49\x5b\x20\xcc\xad\x1b\xd6\x18\xb4\x5a\x2c\x47\x1f\xb4\x0c\xe2\x5e\xdc\x0b\x69\xac\x6d\x7e\x6a\xd1\x4b\x76\x3e\x32\x38\xa9\x58\x0c\xe4\x30\x8c\x37\x94\x69\xe1\xea\xd0\xf8\x4d\xed\xb6\x81\xc9\x46\xc5\xc4\x4a\x60\xe6\x81\x71\x91\x5a\x0f\xfb\x57\x37\x28\x3f\xa1\x4f\xe0\x64\x15\x9b\xca\xc7\xde\x10\x0d\x02\x7d\x6b\xf7\x50\x00\x76\xed\x26\x7f\x69\x1c\x51\x27\x31\xad\xc8\xf8\x7e\xca\xc4\x49\x42\xaa\xb6\xf9\x2a\x78\x4a\xbe\xbc\xb1\x38\x4b\x88\x3f\x4b\xfb\xa1\x68\x83\xde\x41\x6a\xd1\xbe\xcb\x05\x29\xda\xbd\x33\x6b\x11\x5b\x43\xd1\x46\x48\x4f\xf8\xc4\x52\xc7\xcb\xbf\xce\x2c\x08\x95\x22\x13\xc0\x1e\x1a\x22\x41\xf1\xcb\x0c\xf9\x2c\x08\x0e\xb0\x9a\x88\x64\x4c\x1d\x4c\x6e\x32\xbc\xd2\x85\x57\x6c\x86\xb3\x81\xe6\xc2\x2a\xdc\x60\x5a\xac\x21\x74\x86\x25\xe8\xce\xee\x56\xe8\xdb\xc2\xe0\x26\x9c\x33\x30\xd0\x49\xb4\x6c\x88\xa6\x67\x34\x2d\x46\x70\xe2\x60\x9d\x91\x5a\xf6\x33\xb5\x7e\x0a\x9e\x25\xe2\x12\x37\xf9\xcf\xa4\x8b\x6c\x2a\x36\x69\x53\xd8\xbf\x6a\xd9\x74\xea\x78\xef\x16\x81\xf3\x8b\x3a\xc1\xba\x59\x4b\x1d\xfa\x1d\x78\x57\x19\x46\x11\xa3\x2a\xa6\x80\x54\x20\x10\xd6\x49\x7c\xc1\xe1\x5f\x93\x3d\x59\x3d\x7d\xd0\x3e\x79\xbc\x7a\x7a\x04\x46\xaa\x76\x84\x18\x65\x6b\x62\x8c\x60\x2c\x85\xf3\xca\x37\xbc\x72\x2c\xa0\x1b\x12\xf0\xb4\x8c\xec\x41\x91\x61\x5f\x20\x70\x49\x2a\x10\x0a\x75\xca\xbd\xc7\xe2\xda\x2b\x0f\x22\x8b\x14\x15\xc9\x1c\xea\xfa\x3a\x55\x8a\x95\xe4\xcd\x9a\x49\xf0\xb6\xee\x9b\x80\xfe\xc7\xbc\x2f\x2c\x88\xfa\x01\xfa\xf3\xe2\x4b\xb7\x73\xdd\x41\x24\x24\x21\x43\xf3\x87\xa6\xc1\x0b\x87\xf0\xb2\x8f\x3c\x74\x64\xc3\x05\x23\x68\x7d\x24\xa0\xa8\x29\x04\xfd\x10\x2f\x0d\x34\x68\x56\x53\x7e\x20\x9a\x26\x16\xe8\x60\x5d\x99\x76\xd9\x57\xba\x21\xb6\x10\x24\x3c\x71\xa6\x66\x01\xb5\x35\x6e\xa8\xf4\x47\x48\x46\x33\x86\x59\xae\xdf\x21\xe2\x9a\xdf\x84\x1d\xf9\x96\x26\x20\x92\x09\x1d\x91\x64\xb4\xd7\xc4\x78\xa9\x47\x93\xcc\x3e\xec\x6d\x0d\x6b\x5e\xab\xd9\xa6\x54\x24\x60\x7d\xe4\x28\xbb\xc2\xb6\xac\x89\x53\x93\x04\x26\x1b\xb4\x2f\x5b\x03\x26\x0b\x63\xbc\x25\x0d\xa7\x5e\x28\x20\xfd\x0a\xa8\xe6\xda\x70\x31\xdb\x6b\x95\x18\xa5\xb1\x47\x22\xcd\x59\x00\x7a\x3b\x8b\x35\x01\x61\x19\x9d\x8d\xe6\xe0\x70\x9f\xbd\x18\xf4\x15\xa1\x8e\x11\x4e\xac\x23\xee\x03\x71\x30\x29\xcc\xad\x9b\x9d\xda\x37\x8d\xfb\xd6\x4f\x4f\xd1\x36\x4e\xac\xb1\x2e\x4a\x3a\xa8\x95\xd1\x2f\xda\xa6\xa4\xf9\xc6\xd7\xf3\x5d\x44\x11\xe3\x05\x28\xfb\xcb\x26\x78\x05\x43\x96\x7d\x68\x13\x2a\x5b\x9b\x02\x7b\x55\x47\x81\xea\x61\x1c\xc7\xf5\x56\xe4\x68\x49\x61\xd6\xb2\xa4\x38\xeb\xd0\xae\xab\xeb\x65\xbb\x85\x4d\x4f\x5a\x4d\xd9\x57\x9b\xad\x85\x8f\x4a\xd4\x00\x5f\x6b\xe2\xec\xa1\x8d\xab\xb3\xff\x48\x54\xdd\x00\x95\x1b\x27\x72\x98\xcd\x23\x12\x38\xb7\xb6\xcd\x2f\x3f\xfd\xdb\xfd\x7b\x55\x4d\x72\x98\x64\x18\x9c\x0a\xb7\x70\x5a\x31\x4f\xe0\xba\x30\x54\xa9\xea\x3b\xea\xee\xf5\x44\x51\x85\x1c\x8b\x5f\x53\xa9\xc6\xc6\x21\xa9\x9a\x7e\xf7\xbd\x60\xbf\x98\x2a\xb5\x6f\x2c\x3b\xf6\x68\x43\x2a\x1a\x84\x1d\xba\x71\xfd\x97\x97\x2f\xdf\xb2\x42\xcd\x23\xc0\x37\x74\x6d\xe1\xf0\xb8\x7f\xef\x65\xd7\xed\xdb\x77\xea\x99\x60\x3f\x02\x7a\xbf\x2d\x6b\x53\xf8\xaf\xfa\xf3\xfe\xbd\xb7\xd6\xec\xe2\x3c\xf1\xeb\xfe\xbd\x63\x12\xba\xf1\x1b\xb4\xf9\x26\x71\x33\xb3\x66\x24\x8b\x78\xee\x0d\xef\xf2\x21\x7f\x15\xff\xb9\xd8\x47\x96\x5d\xe2\xbf\x1f\x70\xb2\xfd\x4e\x5c\xad\xdc\x6f\x0d\x6b\x2b\xa1\x2e\xc9\x37\x0b\x8f\x2a\x5b\x3e\x61\x67\x88\x08\xae\xc8\x06\xdc\xd1\x9f\x04\x80\x3a\x83\xf8\x23\xc5\xcd\x7d\xf3\x68\xf9\xed\xa8\xa3\x82\x08\xed\xaf\x77\x46\x3f\xf7\x44\x66\x0e\x9d\xb6\xee\xa3\x5f\xc3\x43\x76\x5d\xe9\xf4\x1f\xb4\x8b\x87\x70\xf8\x93\xfa\x18\x6b\xfc\x2e\xde\x2d\xd6\xb7\x2a\xf6\x70\x95\x8c\x5e\xa4\xbd\x46\xfc\xfa\x1d\x9e\x83\x3f\xef\x6c\xb6\x83\x3f\x79\x37\x6d\x27\x5c\x24\x85\x28\x11\xd5\xd0\x7f\x22\x54\xae\xa4\x45\x4d\xe0\x7e\x9a\x36\xc0\xd6\x27\x75\xaa\x0f\x24\x67\x2b\xad\xf7\x1c\xff\x27\xab\x93\xa6\x53\x13\xa6\xd1\xae\xff\x18\x02\x24\x24\xab\x58\x29\x5f\x77\xf0\xaa\x6a\xb4\x44\x59\x75\x43\x88\xb9\x27\x65\x10\x72\x2d\xd0\x64\xd4\xf2\x49\x29\x2c\x7a\x3b\xa4\xc3\xd8\x88\xc6\x5a\xa4\x11\x9d\xe5\xca\x5a\x32\x14\xcd\x07\x5b\x61\xa4\x2a\x92\x14\x56\x20\x7a\x98\x3a\xa1\x95\x4d\x93\x2d\x72\xa8\xe1\xd0\x1d\x3a\xdf\x01\xa9\x25\x77\xb5\x2f\x1f\x0e\x63\x3d\x49\x27\xb1\x8f\x8e\xa8\xe6\xce\x49\x80\xac\xe6\x87\x97\x9d\xe5\x66\x04\x82\x22\x3f\x7d\xe8\x46\x8c\x61\xbe\x5d\x4b\xc8\xfe\xc1\xde\x26\x2d\x5f\x0d\xbc\xc8\xca\x0e\xf6\xfd\x6a\x05\xbf\xe4\x7c\x27\xae\x2c\x49\x9a\x97\xcb\x30\xff\xe9\xa4\x81\x9b\x8e\x90\x33\x21\xa0\xc0\xc2\xc1\x32\xc3\xbe\x85\x9d\x8f\x98\x92\xf0\x43\x50\x96\x47\x00\xad\xd0\xb1\xc6\x80\x42\xfa\x81\x66\x89\x71\xc9\x73\x19\x68\x1b\x44\x17\x6b\xb2\xe5\xc8\xb4\x65\xdb\x2a\x71\x99\x0f\x4d\x4e\xb0\x49\x12\x34\xad\x33\xde\x78\xad\xe7\x46\x21\xac\x87\x29\xfa\x8f\x0c\x23\x3e\x12\x68\x74\xae\xfe\xf2\x81\x82\x50\x7d\xaf\xda\x24\x14\x8f\x2d\x4b\xb2\x14\x22\xdc\x9b\x49\x7b\x33\x0a\x5c\xa6\x24\xfb\x27\x69\x8f\xd1\x95\x1e\x46\xc7\x56\xd8\x16\x0a\xff\x02\x71\xd2\xb6\x83\x1d\x26\x8b\x8b\xb5\x31\x1c\xad\x87\xf8\x2e\xfb\xf7\x76\xa4\xb5\x80\xd7\x88\xc1\x5d\x76\xe0\x37\xd0\xeb\x9b\x5a\x9d\x41\x58\x2c\x30\x62\x91\x9d\xb8\x2c\x65\x7d\x50\x44\x4a\xa8\xbc\x29\x28\x98\x7a\xfd\x6a\x15\x2b\xa7\x9a\x01\x3b\x3b\xf8\x23\x0d\xb0\x69\x4c\xc1\xca\xdf\x75\x84\x49\x44\x59\x92\x60\x3f\xb2\xc1\x4f\x8a\x1d\x2c\x1a\xae\x74\x1b\xba\xe6\xc0\x59\x90\x29\x87\x7a\x60\x17\x16\x81\xb7\xdf\xf1\xa0\x02\x02\x23\x68\x6b\x86\x5e\x96\xa4\x8b\xeb\x1a\x8a\x31\x84\x06\x5c\x56\x24\x04\xbd\xa3\xe1\x58\x1c\x7a\xea\xdf\xe7\xe1\x1b\xd7\x13\x93\xf4\xae\x11\x22\x48\x22\xac\x12\xa0\x97\xc8\xef\x2b\xd1\xcb\xbd\x37\x01\x1e\x40\x8e\xf4\x19\x20\xbf\xf1\xf2\x81\x20\x1a\xb1\xf7\x28\x2b\x68\x67\x3a\xcb\x81\x43\x98\x1b\x88\x7a\x96\xa6\x29\x55\x4c\xb5\xa4\x4e\xb9\xa6\x12\x2d\x48\x77\xe0\xd3\xdf\x17\x7e\x68\xe8\xde\x08\xfd\x8e\x46\x86\x42\xa9\x63\x0e\xf5\x4a\x9d\xc0\xc3\x61\xac\xe9\x88\x6d\x3e\x4d\x05\x60\x30\xd1\x5c\x94\x4d\x8e\x96\xa8\x0e\xad\x51\xac\x8a\xc4\x82\x8e\x37\x98\xe6\x88\x52\xc3\x5a\xe3\x2a\x4d\xba\xca\x32\x8e\x9c\x82\x96\xdd\xfd\x3a\xae\x19\xee\x49\x5c\xa7\x83\x57\x49\xdc\x92\x01\xca\x42\x0a\x47\xe2\x0a\x35\xd7\x90\x73\x42\x09\xc4\x0d\xa9\x26\x62\x3b\xc3\xee\x50\x4e\xb3\xbf\x96\x19\x10\xa6\xc3\x78\x5d\x35\x70\xa3\x27\x14\x49\xb0\x6e\x80\x5f\xdf\x48\xc9\xb7\x1c\x7d\x45\xe8\xbd\x4a\x30\x25\x10\x28\xa9\x8c\x58\x00\xdc\x19\x5b\x53\x6d\x2c\x9c\x83\xd4\xb3\x77\xcf\xa8\x29\x27\x1f\xc9\x30\x01\x9d\xf0\xdf\x88\x79\x84\x36\xeb\x9e\x6c\x87\xdd\x9d\x4d\x11\x20\x22\x26\x31\x08\xc4\xff\x6b\x4d\x1a\x4b\x5d\x81\xdb\xb1\x26\x20\x6e\xb3\x24\x58\xee\xec\xd0\xf7\xc2\x36\xa7\xeb\x6e\xc5\xd0\x94\x80\x81\x0a\x13\x18\xf3\x65\x59\xdf\xd8\x86\x74\x64\xbb\xe9\x0d\xa7\x84\xd0\xc8\xc4\xf8\xf2\xf7\x75\xc7\x59\x1b\x52\x05\xee\x35\x54\x71\x1d\x47\xf2\xa1\x31\x2f\x58\x5c\x40\xf5\x6f\xae\x59\xe0\x79\x11\x92\x3d\x7c\xd0\x3e\xc4\xec\x48\x35\xa0\x32\x11\x51\xb1\xc5\x9e\xc5\x4f\x25\xb6\x14\x0f\x5f\x40\xdf\x27\xab\xba\xef\x3a\xe2\xd9\x8c\x61\xa9\xbe\xc0\xdd\x05\x47\x66\x05\xbb\xd8\x75\xb2\x9f\xbf\xfa\x74\x05\xda\x0b\xda\xe5\x2b\x57\x72\x32\x00\xfd\x5b\xcf\x06\xc7\x95\xf9\xb4\xf9\x09\x38\x8c\x13\x2d\x5b\x3c\x40\xb9\xf7\x60\x4b\x5e\x8d\xe3\xe0\x1f\xa0\x04\x77\x44\x9b\x27\x71\x41\xc7\x54\xd4\xe6\x63\xf7\x58\x01\xeb\xd7\xe6\xcf\x61\xb3\x93\x2d\x1b\x52\x2a\x7a\x57\xe4\xef\x5c\x81\xf9\x12\xe4\xa9\x97\xe5\x68\xaa\x7e\x43\xea\xb0\x08\x71\xfc\xbf\x9a\xf7\x23\x00\x0e\xbe\x45\xc6\x11\x1e\xe8\x03\x2d\xe7\x24\x11\x59\xd4\x9b\x0a\xb2\xbd\x13\x9f\x87\x83\x3e\x0a\x28\x9a\x01\x3b\x39\xca\xc4\xbb\x81\x88\x24\x31\x54\x62\x10\x35\xfd\x54\x64\xbf\xb1\xab\xcc\x5e\x5d\x11\x68\x7b\x76\xa6\x90\x49\x8f\x78\x6f\x2b\x0e\x5a\xf1\x53\x5d\x21\xf7\x23\xba\xf5\x4f\xc4\x4b\x52\x8f\x32\x85\x6e\x90\x29\x84\x90\x13\x47\x96\x2e\x08\x29\xd5\xf6\xe8\xf7\x05\xfc\x80\x1e\x10\xc7\xf0\xf7\x12\xf2\x64\x61\xf3\x86\x15\x82\x9f\x56\x41\xb2\x57\xc0\xa9\xe3\x87\x96\xa5\x1d\xd0\x9f\x6b\xf6\xc7\x4b\x4c\x63\x11\xc8\x2d\x64\x1a\xbd\xf3\x58\x2a\x24\x87\x29\x8f\xaa\x08\xf0\xe1\x2e\x5c\x6b\x15\x4f\x97\xbe\xc6\x22\x4b\x23\xc1\xb6\xfa\x68\xb1\x05\x9c\x4b\x51\xb0\x64\x5c\x23\x1b\x20\x2b\x5d\xf5\x01\x22\xaa\xb1\x92\x51\x62\xaa\x7a\xb4\x0d\x8b\xec\x3d\x9c\x1b\xf0\x3b\x81\xb8\x1a\xfb\x13\xbb\xc1\x08\xa5\x7b\xce\x6e\xc2\x1f\x66\x2e\x71\xc6\x8a\x4c\x1d\x32\x11\x1f\x04\x53\xf6\xb1\xc7\x96\x55\x46\xd5\xc4\xf9\x36\x21\x8b\x81\x70\x97\xa7\x28\x99\x19\xc1\x8b\xd9\xb0\xee\x44\xa8\xb0\xde\x82\x11\xbf\x50\x4e\x06\x98\xd5\x34\x67\x71\xe4\xca\xe8\x97\x6b\x89\xeb\x79\x4f\xae\xaf\xa9\x3b\xe9\xe7\xe8\x77\x7a\xc4\xd9\x92\xea\xb0\x67\x49\xf3\xd2\x09\x32\x9b\x58\x92\x08\xd9\xb0\x56\x0b\x6c\xc8\x24\x9e\xa2\x7a\x13\xb3\xc1\x87\x6e\xb7\xe3\xe8\xda\x02\x96\xfe\x68\x8d\x31\x76\xf3\x9a\x90\x02\xda\xcf\x1c\x80\xb0\x6a\xb2\x64\x1c\x2d\x1c\x01\xbd\x1d\x8b\x7a\xfc\xc8\x3c\x2c\x4a\xe0\xd3\x60\x39\x01\x2f\x4f\x11\x26\x98\x5d\x51\xc6\x11\x43\x60\xa9\x8d\x58\x6a\xc7\x58\x1a\x90\x30\x86\xbd\x44\x22\x44\xde\x55\x97\xc5\x8c\xd7\xd5\x80\x48\x4b\x4d\x39\x0b\xc5\x92\x57\x76\x31\x75\xb1\x44\xa5\xfe\x34\x96\xfb\x4e\xc6\xd1\xa2\xc5\x64\x56\x71\xbd\xe2\x50\x0a\x9a\x6f\xf0\xc0\x2a\xc9\x98\xe1\x02\xb3\x73\xe2\xeb\x7b\xa0\x3a\x82\x8d\xec\x6d\x24\x86\x05\x7f\xa5\x77\xe8\x85\xae\x18\x18\x6c\x4d\xb5\xc1\xb7\xe2\x82\x07\x55\x53\xe3\xb4\x3c\x64\xc7\xb9\x58\x51\xea\x89\x39\x76\x27\x17\x65\xbd\x04\x36\xc0\x98\x81\x32\x20\x7c\x16\x80\x65\x55\xd9\x46\xf6\x08\x95\x52\x9a\xde\x12\xff\x96\x2e\xc2\x17\xf5\x03\x6b\x20\x0a\xbe\x63\x1b\xc6\xf1\x02\xc2\xc7\x2d\x45\x4c\x20\x98\x59\x30\x19\xa9\x0b\x99\x50\xa4\xaf\x36\x09\x1d\x8d\xed\x48\x69\x31\xaa\x3d\x29\x5a\x0e\xbc\xe9\x90\x99\xff\x84\x07\x3d\xd1\xb6\x7c\x0a\x6b\xf0\x29\xca\x4a\x89\xe7\x91\xda\xe0\x68\xba\xa2\xb4\x7c\xc6\x93\xce\xe0\xaf\x35\xec\xec\x66\x82\xe0\x7e\x15\x23\xbe\x3f\x86\x48\x14\x88\x51\x0c\xf4\xd5\x54\x08\x04\xc4\x09\x0a\x40\x40\x9d\x75\xa2\x09\x60\x5c\xd8\x26\x01\xac\xac\x26\x58\xd1\x1b\x18\x99\x54\x67\x65\x9e\x43\x20\x70\x9a\x69\x10\x3b\x09\xda\xf9\x58\xe2\x2e\xb2\x8b\x9a\x30\xea\xd3\xff\x96\x54\x2c\xeb\xdb\xa8\x46\x03\x26\xc1\x86\x8f\x04\xeb\x11\xd0\xea\xbc\x0f\x2a\x64\x59\x95\xc2\x65\x52\xf5\x9b\x66\xb2\xe3\xc4\x26\xb0\x9e\xa6\x33\xde\x50\xec\x7a\xc9\x02\x11\x27\x90\x51\x4f\x83\x72\xfb\x27\x2d\x9c\xf4\x9b\xa7\xc8\x2c\x68\x21\xe7\x08\x4f\x7f\x7a\xf2\x58\xbf\x72\x54\x31\xec\x31\x89\xa5\x82\xd7\xf8\xc2\x75\x2f\xfb\x15\x3b\xda\x9f\x98\x6c\xdb\xd8\xab\xfc\xeb\x07\xed\xd7\x4f\x35\x17\x41\xe7\x16\x21\xf1\xe4\xb1\x79\x4a\xa6\x00\xea\x23\x19\xa5\x64\x63\x75\xd0\x72\xaf\xb9\xa1\xd9\x15\x27\x91\x92\xb4\xe3\x36\x9c\x21\x55\x13\xd1\xb5\x9c\xba\xc6\x18\x67\x22\xc7\xa0\xae\x17\x91\x6a\x66\xb6\x4b\xf6\x12\x4e\x95\x41\x22\x24\xad\xc5\x6f\x27\xca\xc4\x59\xd7\xb1\x94\xe5\xc8\x6f\xd8\xfe\x94\xc9\x09\xbd\x44\x7b\x34\x12\x8a\xa2\x1a\x07\x0d\x85\xae\x31\x95\x01\x55\x93\xca\x73\xec\x11\x12\xc4\xc9\x86\x3d\xfb\x78\xde\x89\xb9\xee\x77\x16\x85\x24\xb5\x82\xaa\x2e\x62\xca\x48\x04\x82\x55\x76\x62\xd9\xe2\x8e\x8e\x98\x2c\x5a\x6b\xc0\x63\xc8\xde\x91\x0a\xeb\xa3\x9b\x5d\x4c\x21\x9f\x20\x31\x42\x36\x04\x62\x4d\xca\xf1\xc6\x66\xab\x1d\x78\x64\x76\x8b\xec\x4d\x70\x38\x44\x9d\xd1\x57\xc7\x8e\x89\x67\x20\x60\x1c\xc8\xb8\xaf\x56\x44\xaa\x9c\x13\x24\xfd\xf8\x4f\x01\xc2\xc7\x83\xf1\x6c\x62\xb3\x76\x03\xb2\x15\x40\x2d\xbb\x1a\x0e\xb9\xc8\xf5\xb3\xb7\xf8\x90\xa6\xfa\x5c\xa8\x48\xb7\x3e\xf5\x53\x83\xcd\xbe\x25\x3e\x65\x92\x94\xcd\x6d\xc9\x24\xc4\x3f\xad\x8a\x0a\xed\x10\xeb\x41\x6c\x4a\xbb\xa8\x33\xab\x48\x29\xe9\x3f\xde\x8d\xe2\x5d\x70\x12\xdf\x08\x92\x8d\xe9\xf4\xf8\xe2\x95\x4f\x76\x0c\xe3\xcb\x20\xcf\x8c\x70\x00\x24\x38\x72\xe2\xc0\x91\xa8\xec\x5c\x85\x94\x06\x08\xa3\xbd\x83\xbd\x9b\xa4\x57\xa6\x8c\x44\xe7\x9c\x60\xb7\x2e\x25\xac\x78\xb0\xda\xd9\x42\xd9\x01\x32\x15\x05\x16\x9d\x87\xa3\x1f\x32\xac\x3c\x65\xa4\x5f\x01\xa1\x82\x5f\x8d\xc5\xc7\xde\x29\x3b\xaf\xe6\xfb\xf1\x2a\x16\xb2\xd7\xcd\x8f\x82\x24\x2c\x6e\xa3\x76\x75\xed\xda\x5e\x74\x30\x52\xb0\x92\x58\x5c\x24\x2c\x59\x4e\x20\xad\xf4\x6b\xc0\xa4\xb7\x87\x47\xb6\xd2\x70\xb2\x18\xce\xab\xf2\x41\xeb\x46\xf2\xb2\x54\x41\x6b\xac\x26\xda\x41\xfb\x4b\x2c\x3f\xc6\x49\x1d\xdf\x07\x70\xbd\xbd\x17\x42\xb7\x5a\xae\x41\xdb\xd3\x87\x89\x65\x25\x53\x61\x6b\x61\x0f\xb9\x5b\x61\xa1\x3e\xf2\xe8\xa9\x89\xb8\xa4\xe7\xcf\xe7\xaf\xb3\x8b\xf3\xb7\x6f\x3e\xfd\x8f\xc8\x9c\x15\xf9\x8c\xd8\x02\xcc\x7f\x7c\xca\xd4\x68\x62\x21\x71\x4a\x67\xa8\xa6\xd7\xb0\x96\xe6\x72\xa5\x55\xa2\xe5\x3a\xaa\x1a\x99\x47\x74\x4b\x81\x91\x00\xfb\x75\x5a\x11\xd6\x92\xa2\x08\xc6\x72\xe5\x2a\x47\x7c\x8c\xf0\x9c\x23\xb9\x6a\xdf\x18\x36\x76\xc8\x84\x87\x34\x23\xf3\x5d\x9c\x9d\x17\x89\x47\x32\x09\x0a\x4c\x83\x6f\x31\x5e\xa0\x32\x0d\x19\x29\xc4\xc2\x6a\x76\x6c\xef\xe0\xbe\x19\x64\x47\x33\xe1\xae\x1a\x7b\xed\x10\x35\x5e\x8b\xbb\x08\xfe\x52\x09\x89\x61\xea\x01\xec\x7d\x45\xb3\x5d\xbb\x00\x73\xda\x75\xe4\xc7\xb0\x15\x70\x9b\xbf\xf7\x7f\x7e\xfa\xbb\x7e\xc7\xe7\x51\x8a\x70\x33\x88\x56\x3c\x69\xf7\x86\xb8\x0a\xf1\xff\x36\xff\x9a\x2c\x11\x5b\x66\xfc\xff\x47\x8d\x2d\xfc\x5f\xa6\x70\x3d\xc9\x44\x52\x29\xe1\x31\xa1\xb1\xa9\xc9\x53\xf6\x9b\x7c\x10\x37\x1d\x0e\x91\x98\x01\x0c\xb8\x8c\xb3\x78\xa5\xac\x30\xfa\x6d\x32\xab\xd7\xec\x67\xad\xbd\x45\xab\x99\x68\x71\x21\x9a\x9a\x91\xcc\x1a\xfd\x24\x91\x19\xe1\x5c\x16\x19\x1b\x8a\x46\xfc\x19\x47\x7a\xc2\x71\x9e\xf0\x65\x62\x54\x8a\xcf\x99\x4d\xb7\xc5\x86\x70\x61\x53\x71\x6e\x20\x91\x15\xb1\x5e\x9c\x07\xa2\x7f\x3f\x9a\xf0\xe1\xae\xf6\x05\xcc\x6a\xad\x0e\xbc\x22\xd8\x98\x02\x01\x8f\x8a\x26\xa6\x6c\xc4\x7a\x06\x9b\xac\x07\xa4\xef\xfb\x78\xf3\xfc\xf8\xd9\xd9\xf3\xc5\xae\x08\xf9\x48\x0c\x60\x4e\x44\x4a\xe1\x4b\xa8\x6b\xfa\xd2\xbb\x0b\xf3\x37\xec\x21\xfc\x59\x3d\x84\x7b\xda\x3b\x41\xed\xda\x9f\x1b\x22\xeb\xaa\x83\xc3\x0b\x41\x61\xf9\x83\x18\x9a\xa4\x48\x65\xdf\x10\x3d\xd0\xa2\xbf\x3d\xe0\x3d\xf3\xf1\x9a\x64\xc6\x0f\xda\x7f\x0f\x1f\xda\x28\xb0\xf2\xa0\x3d\xe0\x49\xab\x2c\x4c\xee\xbe\xe3\x23\x38\x31\x85\x76\x1c\x33\xd6\x23\x4f\xc3\x73\x2a\xbb\xe4\xe4\x53\x5a\xe1\x30\x4d\xa8\xc9\x55\x1d\xa6\x8c\x55\x89\x94\xd5\x01\x69\x08\x24\x03\x65\xf8\x91\x78\xef\xf8\xf0\xd5\x60\xf3\xb4\x78\xc1\xa7\x06\x96\xa4\x8e\x35\x10\x13\xcf\x7a\x66\xe6\x59\x88\xda\xc7\x8a\x3e\xf6\xc1\x19\xd2\xa3\xb4\x48\xfe\x66\x93\xa4\x87\xa3\xc4\x23\x9c\x25\x7e\x08\x18\xc0\x4d\x07\x65\x73\xa1\x3b\xfd\x81\xe0\xca\x34\xaa\x14\x15\xa9\x94\x33\xee\x5b\x5b\x5e\x45\xf2\xe4\x3a\x22\x50\x21\xf1\x39\x86\x91\x02\x8e\x99\xfd\xfe\x76\x09\xcf\x12\xf1\xf7\x3d\x54\x2a\xa4\xbf\x7c\x20\x69\xb8\x44\x89\x7c\x24\x23\x8c\xb5\xb9\x3d\x47\xc1\xb9\x8d\x23\x0c\x39\xff\xaf\x22\xb1\xd9\xe7\xc5\x60\xd1\x0d\x82\xaf\x6b\x15\x93\xb4\x0c\x62\xc6\x62\x0a\x1b\x39\xd1\xc0\x9b\xfb\x53\xf6\x9e\x73\x9c\xa1\xc4\x8b\x23\x3d\xff\x7a\xb9\x22\x82\xff\xf0\x75\xa2\xd4\xf3\x11\x46\xe8\xf1\x5f\x41\xdb\xbb\xe1\xd0\x31\xdb\x19\xe2\xe0\x22\xd5\xe6\xd3\xff\xbd\x7f\x4f\xbe\xb3\x47\x19\xd5\xe0\x74\x26\x11\x8e\x49\x23\xf8\x5d\xf3\x21\x48\x7c\x83\x17\x5a\xc0\x25\x3c\x8e\x51\x55\xd9\x91\xd7\x92\x8b\x94\x2d\xfd\xd1\x03\x1a\x30\x5a\x6c\xfe\x82\x4d\x97\xc6\xec\x5d\x61\xfc\x8a\xbb\xad\x6b\x95\xdc\xb1\xb0\x29\xa7\x18\xe4\x28\x32\x4b\x23\xeb\x08\x89\xc1\xc2\x1f\x44\xcf\x49\x50\x19\x23\x38\x9f\xe2\xc7\x09\xc4\x70\xf3\x22\x17\x02\x91\x05\x19\xea\x82\x7e\x7b\xfe\xaa\x48\xc3\x27\x69\x90\xa2\x3c\x6d\x7d\xff\xde\x1c\xc3\x21\xad\xaf\xb1\x36\x3f\x2e\x57\xb6\xa1\xaf\x6f\xe9\xc7\xb7\xbe\xe6\x92\x1a\x2e\x3b\xb3\x69\xd1\xc4\x45\x1e\xf5\xff\x67\x6f\xcd\xc6\x57\xb2\xa3\x52\x44\x43\xa8\x05\xd7\x98\x1c\xd6\x63\xca\x6b\xf3\xe7\x1d\x9c\x20\x1d\x9f\xc3\x20\xce\x49\x90\xaa\xa8\xda\xdb\xc6\x10\xc3\x6f\x0a\xc6\xac\xdd\xce\x75\x2d\xa1\x1d\xfe\x85\x0c\x28\xad\x69\x31\x94\x23\x9a\x46\x3c\x81\xdd\xb7\x8d\xb9\xc9\xcf\x69\xa1\x4e\x54\x73\xfe\x46\x1b\xc1\x67\xfb\x4e\x48\xc6\xd6\x65\xbd\x01\x2e\x73\x01\x27\xe2\xa3\xc5\x7b\xc9\xeb\x1c\x36\x63\xbd\x89\xf1\xff\xc2\xff\xc5\xee\x33\x99\xc8\x62\x38\xa1\x36\x16\x0c\x0f\x18\x32\xa9\x5e\x87\xa3\xab\xbe\xd2\x15\xec\x95\x13\x54\x88\xdf\xc0\x14\xeb\x06\xa1\x43\x16\x5a\xfe\x33\x72\x52\xe0\x93\x3c\xe3\x7f\x37\x50\x57\x7c\x11\x1c\x84\xf9\x33\xce\x96\xf4\x9f\x34\xc5\x97\x70\x9f\x46\x5d\x13\x83\x4d\xaa\x13\xa2\xf9\xb2\xc4\xcc\x93\x2d\x41\xa1\xea\xe8\xf1\x90\x63\x2c\x5a\xf2\x3e\xa9\xbb\xcf\xea\x66\xcd\xd4\x58\xee\x4b\xb3\xb6\x69\x3a\x32\xa7\x44\x84\x16\x7c\xde\x52\x1b\x91\xba\x8a\xd4\x87\x55\xfe\xa0\xc8\x8e\xf7\x48\x6f\x0e\x45\x44\x42\x24\x9d\xb5\x8c\x8c\xe9\xbe\x8d\x65\xb4\x39\x48\x57\x95\x09\x3d\x9f\x4c\x25\x2d\x26\xb1\x05\xbe\xc7\xa9\x05\x4a\xc3\x61\x26\x59\xeb\x85\xfe\xb4\x71\x40\xc1\x80\x81\xf5\xb8\x0a\x02\xff\x9b\x0a\x74\x42\xfa\xe8\x06\x9d\xb0\x22\x39\xac\x14\x84\xd7\x5c\xc1\x02\x69\xe1\x4a\x0f\xfe\x94\xdd\x3e\xd0\xc5\x5c\x7d\x19\x12\xe9\x6b\xc8\xec\x0c\x23\x13\x1f\xcd\xc2\x11\xd5\x61\x13\xe1\x30\xc5\x72\x75\xcb\x2d\xc0\x58\x3a\xd6\x47\x0f\xd4\x67\x1b\x85\xcc\x0f\x52\xad\xb8\x3e\xfc\x3b\x30\xb5\x19\x06\xa6\xaa\x07\x7b\xc7\xfd\xe6\x06\x3b\x57\x67\x0f\x7e\xfd\xee\xb7\x16\x3d\x07\xc7\xcb\xe3\x07\xbf\x7e\xff\x1b\xf1\x69\xfe\x07\x7c\x3a\x34\xde\x43\x3b\xae\xfb\x56\xcf\x70\x43\xc3\x81\x45\x5b\x25\x93\xaa\x90\x85\xae\xc5\x6a\x48\x91\xba\x1a\x8a\x65\x77\xbb\x98\xcc\x36\x45\x49\xa9\xb2\x26\x82\x6f\x88\x46\x91\x31\x7e\x47\x25\x58\x31\x84\x69\x36\x72\xa1\x41\x05\xc6\x54\xdd\x2a\xaa\x16\xdc\x49\x66\x88\xb5\x52\x99\x78\x49\x97\xa4\xfd\x0d\xca\x86\x91\xbb\x51\xe1\x28\x63\x30\x9b\xe2\x76\xd2\x09\xc2\x5c\xde\x20\xfc\x5c\x45\x91\x62\x5a\x9b\xd3\xc2\x23\x15\xf8\xf4\x0e\x8e\x93\xb4\x88\x2c\x54\x7c\x9c\x4e\x22\x0b\xa4\x4b\x76\x23\xd4\x14\xa7\x7d\xc9\xae\x9a\xf7\x13\x33\x6b\x7e\x7c\x6f\x3b\x87\x89\x06\xf3\x6d\xe8\xbe\xff\x8a\x83\xf7\xf3\x07\xc3\xfd\xe7\x85\x9c\x58\x6c\xf3\xf3\xfd\xb8\x24\x39\x7f\x40\xd0\x39\xf1\xbf\x54\x60\x87\x6a\xdb\xba\xfe\xd0\xe6\xff\x62\x57\xfc\x47\x52\x40\x16\x83\x94\xe1\x84\xeb\xcb\x51\x61\x61\xf7\x65\x7d\x2b\x3e\xdd\x67\xae\x25\x3d\x67\xa3\x7e\xbe\x74\x0a\x2b\xd3\xba\xf5\xa1\xf3\xef\x72\x0e\x38\xed\x13\x31\x8f\x66\xf9\x11\x9c\xe6\xbf\x43\x49\xb8\x40\x92\x21\x21\x6b\x6b\x92\x5a\x31\xca\xf9\xce\x9f\xe0\x49\x4a\x35\x4c\x14\x86\x0c\x71\xaf\x03\xe0\xd3\x40\x0b\x34\x84\x39\x83\x37\x89\x56\x1e\x6a\x12\xa2\x1d\x63\x43\x22\x78\xc7\x7d\x38\xf3\x9f\x0a\x5f\x72\x12\xbc\xef\x7b\x0e\xd7\xc2\xfc\x70\x08\x0e\x59\x20\xe0\xd6\x9c\x0d\xc2\x69\xaf\x21\x93\x64\xa6\xa6\x2c\x21\xad\xae\xc7\x96\x93\xd5\x98\x98\xbe\x14\x52\xd2\xcc\x34\xff\x45\x4f\xd7\xfe\xc1\x71\x2d\xf8\xf2\xa0\xef\x83\x64\x8a\xd1\xe1\x8b\x45\x32\x0f\xbe\x96\x81\x33\xca\x90\x84\xd3\x8a\x85\x26\x49\x40\xa2\xf7\x0d\x72\xc7\xb6\x26\x9c\x27\x19\x19\x9a\x65\x50\xdd\xb1\x17\x0b\xe0\x8f\x8f\x9f\xb4\x21\x4a\x2a\x6b\xe0\x0a\x03\x7c\x1e\x24\x11\xcc\xa8\xa7\xa3\xaa\xfe\xaa\x12\x52\x67\x70\x2a\x38\xf8\x2e\x7d\x42\x8e\x44\xaf\xd3\x90\x41\xe5\xad\x8d\x4e\x5d\x5d\x88\xa7\x58\x9a\xcc\xf0\x60\x00\xe7\xd6\xf3\xe9\x80\x70\xd8\x61\xb2\x5f\x88\x93\x11\x8b\xc8\x9f\xec\x9f\x3e\xc2\x2a\x49\xbd\x30\xd1\x05\xd7\x26\x9e\xc1\x01\xe4\xc4\xf3\x1c\x92\xe0\x70\xfc\xa8\xc0\x46\x2d\x9e\x3c\xde\x3f\xe5\xbe\x4e\x60\x9d\xe2\x38\x2d\x75\x17\x4f\x28\xde\xdd\xe1\x18\x03\xa0\x53\xe3\x20\x80\x05\xb8\x6b\x76\x08\x25\x8d\x78\xac\xc3\x04\x9b\x46\x76\x6b\x61\x69\x13\x77\xd2\xe7\x82\xba\x53\x78\x89\x93\x2b\xe8\x73\x89\xab\x2b\xd4\xdd\x99\x0f\xa4\x62\xcd\x90\xce\x5c\x7f\xe2\xc5\x2d\x82\xdb\x6c\x92\x9f\x15\x32\xb1\xc6\x11\xd9\x01\x7f\x4e\xdd\x87\xd1\x6d\x68\x07\x6e\xc3\x50\x1d\x91\x8d\xc8\xd2\xeb\x26\x86\x5f\x64\x63\xd2\xb2\xbb\xda\xa5\xb1\xbd\x99\x96\xd3\xa0\x5e\x3a\x67\x5c\x74\xc0\xc7\x08\xe7\xfb\x3b\xd0\x13\x2e\xf2\x18\x2d\x9e\x53\x33\x1d\x67\xdc\x2d\xe5\x54\x54\x4c\xb8\x14\x34\xd5\x9c\x4a\x56\x98\x47\x18\xe6\xe3\x1e\x69\x5a\x7c\x12\x82\x44\x36\x7f\x3a\x91\xc5\x08\x1a\x37\x22\xeb\x22\x00\x55\xf8\x8d\x85\xa2\x0f\x4e\x78\xd9\x28\xd8\x27\x61\xbf\x96\xf6\x08\xa6\x3e\x66\x0a\x29\xc7\x67\x5e\xed\x35\xe2\x0a\xb4\xf7\x6e\x43\x82\x8c\x4f\x0e\x64\x17\xe7\x97\x6f\x17\xd9\x39\x22\x0d\x91\x51\xf0\x85\x04\x24\xd6\x38\xaf\xd4\x1f\x93\x22\x01\x20\x47\x1c\x3b\xc9\x14\x26\x50\x73\x98\xde\xa7\x14\x21\xcb\x0e\x17\x0a\x4c\x92\xe4\xda\xbd\x5d\x73\x15\x88\x98\x77\x50\x5f\xd9\x1d\x3b\x56\x5d\x94\xa7\xdf\xe9\x45\x10\xd3\xdd\x04\x90\xb0\xa6\xba\x98\x51\x0a\xf4\x16\x16\x02\x01\x6b\x06\x1a\xa8\x14\x08\xc1\xb0\xb8\xea\x99\x7d\x99\xe0\xe6\xe4\xd2\x4e\x8e\x47\x33\x17\xf4\xd7\x4c\x80\x11\xaa\x8f\x91\x59\xb4\x82\x5a\x4f\xf6\x92\xe4\xa8\xd8\x64\x92\x70\x59\x38\x61\x14\x22\xdb\x8e\x37\x5f\x16\x39\x48\x2c\xb1\x33\xd3\x66\x6d\x54\xa6\x7e\x09\xc5\x0f\xdf\x80\x6e\xd0\xbd\xc4\x55\xae\x51\x12\x39\x06\x66\xf8\x78\x94\x9e\x2f\x80\x6f\xc6\x5f\xa2\x90\x9d\xc2\xc8\xe6\xb0\x28\x9f\xd9\xf1\xe5\x7c\x36\x23\x9c\xfa\x63\x2e\xaa\x92\x04\x23\xcd\x4d\x28\x2a\x1d\x23\x0c\xf4\x15\x26\xf1\xd2\x71\x45\x65\xa0\x5a\x3f\x2a\x3c\x2f\x87\xd5\x94\x72\xb9\xcf\x84\x62\x95\x16\xee\xa4\xd5\x84\x66\x92\xcb\x77\xe0\x35\xb1\xe2\x4e\x34\x7a\x13\x0f\xa3\x17\x8e\x36\x3d\x05\xd6\x3f\x79\xcc\x7f\x32\xde\xe2\xdc\x44\x44\x53\x73\x84\x14\x6c\x67\x77\x1a\xb4\x1b\x60\x6a\xdb\x63\xbb\x85\x92\xcc\xb5\x9c\x0e\xc6\xed\x17\x48\x62\xe1\xd8\x50\xe8\x47\x63\xa2\x30\xca\xc4\x21\xea\x6f\xbe\x28\x80\x36\xd7\x50\xcc\x11\xca\x8e\x01\x7d\xea\xd8\x55\x15\xad\x40\xd9\x0a\xaf\xfc\x9b\xff\x72\x79\xfe\xfa\x28\xfb\xf3\xd1\xcd\xcd\xcd\x23\xf4\xf0\xa8\x6f\x18\xd9\x0a\x5b\x1c\x65\xff\xed\xec\xf4\x28\xb3\xeb\xf5\xb7\x3a\x85\x0e\x39\xad\xea\x4e\x1b\xce\x5b\x14\x9f\xaa\x86\x82\xf3\x8f\x11\xd9\x98\xc6\xf6\x72\xb6\x88\xef\x46\xd1\x73\x46\x38\x78\x32\x14\x1d\x40\x8a\x70\x1b\x17\x7e\x64\x6f\xe9\x47\xaa\x27\x5b\x32\x77\x3b\xc2\x73\xfc\x93\x7c\x67\xd0\xfa\x98\x12\x82\xcd\xfc\xc1\x21\xa1\xb8\xb1\x2b\xf6\x72\x09\x90\x12\x87\xbe\xee\xfe\x4f\x93\x6e\xd8\xe3\x56\x57\xe5\xad\xdc\xdd\x10\x36\x4e\xb0\x00\xa5\x8a\x05\x03\x7c\xe2\xe3\x98\x92\x18\x5b\x4f\xbe\x7b\xe7\xe8\xb1\xdc\xb8\x41\x3b\x45\x16\x12\x18\x43\xb0\xbb\x71\x33\x84\x1f\x48\xd4\x2e\x3f\xe3\xae\xf6\x44\xed\xef\xdf\x90\xbc\x1a\x37\x46\xe7\x31\x19\x88\x20\x9c\x10\xc3\x9c\x08\x54\x7a\x4b\x85\x08\xd3\xdb\x54\x88\x68\xcd\xcf\x92\x5c\x4c\xa2\x9c\x6a\xa4\x61\x9c\x68\xaf\x4e\x07\x12\xf7\x15\x14\x09\x30\x1d\xc9\x44\xe6\x83\x03\xd9\xb3\xf0\x69\x24\xdc\x86\x91\x84\x11\xaf\x00\x84\xda\xd2\xac\x3f\x2c\x23\xcd\x07\x61\x39\x48\x25\xc9\x2e\x51\x8d\xd3\x47\x10\x84\xf1\xf1\x08\x1f\x3a\x4f\x2c\x96\x14\x33\xb9\x6b\x89\x2e\x6b\x94\x7c\x54\x36\xbe\xa7\x68\x54\x0c\x0b\x0c\xb7\xaf\x9d\x18\x71\x50\xe2\xf8\xf6\xd5\xd5\x82\xd4\x85\x9b\x16\x19\x1a\x7d\xb3\x26\x13\xf1\x0a\x7e\x6d\x93\x1c\xaa\x6c\x71\x84\x9a\xdd\x2a\x5c\x7d\x6f\x90\xa1\x9b\xcb\x3f\xfa\x4d\x7c\x83\xf9\x5a\xdd\xaa\xfc\x0d\x97\x3a\x8c\xee\xa2\x78\x46\xdf\xf9\x02\x31\x56\x43\x92\x04\xc6\x85\xb6\x69\xb7\xf5\xcd\x12\x7f\x2d\xb1\xc5\x6d\x7e\x26\x6c\x81\xdb\x5d\xe2\x8b\xaf\x87\xbf\x05\xc0\x3e\x0a\xfa\xa0\x00\x42\xc7\x14\x58\x96\x8d\x31\x0e\x0d\x6d\x32\xa9\xaa\x18\x9a\x54\xb0\x69\x71\xa2\x4b\xc6\xb8\xaa\x07\x17\x41\xf8\xe7\x57\xaf\xf5\x17\x7b\x7f\x39\x29\x98\xdd\xbf\xbf\x38\x01\xac\x3a\x96\x17\x53\x07\xb3\x2f\x11\x7f\x3d\xff\xed\xef\xeb\x93\x2a\x75\xac\x53\x34\xe6\xaa\xcb\x7f\xae\x3f\x7e\x34\xf1\x23\x09\x59\xdf\xee\xa2\xb1\x8f\xa6\xad\x08\x38\x00\x36\xc1\x6b\xc5\xb3\xf1\xdf\xd9\xa5\xb4\x0b\x2e\x25\xff\xd9\x6c\xad\x29\x12\x30\xa6\x30\x63\x8f\xaf\x5c\xf4\x21\x17\x42\x89\x79\x37\x1d\x92\x71\x67\x99\x5c\x67\x97\x5d\x06\xac\xf1\x95\x88\x1d\x25\x72\xbb\x83\x23\x3f\x16\x31\xd3\x3f\x5f\xad\x9c\x55\xf6\x96\xb6\x0a\x77\x97\x79\x63\x94\x3e\x26\x81\x09\xb9\x75\x27\xa6\x20\xa2\xb4\x0f\x16\xa6\x3f\x3e\xa0\xd1\xe1\xc1\xbe\xa4\xce\x3f\xfd\x14\xeb\x78\x69\x71\x43\x2a\xc2\x72\x57\x24\xaa\x04\x69\x85\x03\x72\x3e\x33\xcd\x87\x82\x8c\x25\xf1\x4f\xfa\xf6\x37\x0d\xbb\x5c\xf8\xd6\x80\xc1\xf6\xc9\x15\x40\xd4\x19\xe7\x5a\x4e\x07\x4c\xbd\xdf\xe1\xbe\x36\xd1\x7c\x63\x65\x88\x37\x1c\x73\x38\xe1\xe4\x62\xb9\xd2\x63\xb1\x98\x43\x93\x41\x22\x84\x18\x09\x54\xf8\x68\xba\x8b\x49\x13\x7f\x1f\x19\xb1\x48\xd7\x86\xb3\x4c\xa3\xfd\xf7\x71\x44\xbe\x5a\xd4\xf8\x08\x1c\xdf\xef\xe4\x6d\xf0\xd0\x35\x4e\x12\xb4\xdb\xfc\xc2\x1f\x0c\x9c\x41\x5b\x5c\xb4\x22\x18\x7f\x89\x5b\x55\xb2\x11\xde\xb3\x0e\xea\x31\x3f\xb8\x37\xa7\xfd\x78\x34\x5b\x9a\x12\xc1\xf6\x5b\x3d\x33\xf3\xae\x8a\xf3\x06\x33\xd0\xb5\x44\x4c\x62\xef\x88\x1c\xd3\x20\xd4\xfd\x2d\x39\xa2\x39\x09\x44\x8c\xef\xe1\x8c\x35\xf5\xf2\x39\x1b\xb3\x3b\x86\xd7\x60\x66\x5b\x16\xaf\x9c\xf2\xc1\xe9\x1d\x99\x95\xac\x0e\x4e\xda\xd6\x03\x4f\x92\x4b\x1a\x2e\xb2\x4b\x4e\x3b\x8f\x0c\x3a\xb9\x65\x20\xde\xa2\x95\xe6\x01\x97\xd6\xa7\xcb\x62\x1f\x34\x48\x88\x83\x5a\x1c\x17\x1c\xaf\x80\x23\x87\x22\x78\x8b\x20\x9b\xe1\xbe\xdb\xdb\x7a\x4f\x14\xc2\xd7\xc1\x38\x3e\x71\x87\x7b\x0e\x5b\x02\x05\xdc\x8d\xaf\xf0\xd3\x64\x50\x88\xd6\x3d\x1c\xfb\x38\xc0\xd7\xe6\x72\x9c\x9b\x8f\xea\xa8\x95\xda\xe6\x6c\x97\x3a\xff\x75\x70\xfe\xe7\x40\x34\x13\x7d\xc9\x6c\x35\x03\x8e\x7b\x05\x80\xa6\xe9\x1d\xf1\x28\x69\x72\x9e\x9c\x3f\xde\x51\xd7\x83\xf8\xbd\x5c\x2d\x25\x29\xd5\x8a\x17\xec\x95\xe4\x7b\x00\x1c\x9f\x0c\x43\xfa\x60\xc0\x19\x9c\x50\xad\xfc\x6d\x3f\x08\xcb\x85\x74\xab\x30\x64\xc8\xf3\x81\x1d\xd4\x72\x45\xc1\xb2\xa4\x8f\x9f\xb4\x3e\x62\x84\xae\x6d\x83\x8f\xfd\x6f\xac\x9d\x43\x03\xf1\x57\xa4\x0e\xd2\x1a\x82\xca\xa9\xd7\x1a\xaa\x81\xda\x12\x8f\x20\xf2\xf9\xe9\x33\x29\x1b\x23\x14\xfa\xf7\x3a\xfc\x34\x87\x9e\x77\x9c\x84\xfa\xeb\xee\xf9\x83\x27\x79\x42\x8d\xe9\xe5\xbf\xa1\x28\x9c\xed\x79\x43\x34\x5f\x48\x5a\xce\x3f\xeb\x03\xa7\x45\x8f\xcf\x30\x4f\x20\x01\x00\x1c\xf4\x88\x6b\x07\x43\x87\xf8\x5c\x2f\x7c\x0e\x28\xe9\x6a\xde\x31\x1e\x1c\x39\x76\xc3\x62\xc1\x49\x9e\xab\xb8\xe5\x6a\x71\x8a\x8f\x7a\x66\x4f\x6a\xc1\x20\x69\xcc\x01\xf7\xf8\x10\x3a\x51\x31\x9f\xdc\xcd\x3b\x9a\xf4\x17\xf8\x1b\x47\x4e\xe4\xf1\xfd\xc2\x63\xd5\x7e\x9c\xc9\xf8\xc7\xdc\x81\xd0\x69\xb3\x98\xe0\x38\x9c\xe0\xb5\x50\xbf\x18\xf0\x26\x26\x00\xfa\x4b\x5b\x02\x81\x25\x89\x91\x83\x8c\xc7\x77\x9f\xfe\xe7\x9d\xf9\x8e\x07\x3c\x97\x9f\x4b\x7c\x1c\xcf\x1f\x8c\x6f\x26\xfb\x71\xcc\xc9\xe7\x9a\xa5\x69\xd4\xa3\xd5\x7f\x36\x21\x32\x26\x7e\xce\x25\x44\xce\x79\xfe\x82\xc9\xe3\xbc\xcd\xd6\xb2\xf6\x00\x40\xb3\xf4\xd3\xbb\x9d\x24\x0f\xd9\x83\xb2\x9b\x5c\x11\x1b\x81\x2a\xae\xab\xd9\x7d\x96\xb4\x6b\x91\x31\xa2\x65\xac\xbd\x92\x51\x8f\x0b\x3c\x4f\x26\xc3\xa5\xe0\x83\xbe\xd7\x4c\x8f\xa1\x12\x7f\x80\x56\x3d\x5f\x30\x6a\x3e\x19\x64\x2e\x25\xd4\x97\xa9\xaf\xf6\x8c\x9d\xb3\xf1\x33\xc1\x72\x6d\x4d\x99\xbf\xc6\x7d\xaf\x7c\xad\x51\x2c\x13\xcf\x53\x1e\x12\xd9\x63\x09\xe9\x39\xf0\x03\xac\x56\xf0\xa4\x21\x00\xec\x0b\x54\x3a\x8b\xc8\x73\x1b\x88\x66\x28\xc5\xc9\xe1\x54\x7f\x8f\x50\xa7\x49\x8a\xa2\x30\xfb\x73\xf8\xa4\xe6\xff\x38\xe9\x0d\x57\x62\xa9\x9c\xe7\x9b\xdf\x55\xc8\x2f\x70\xb4\x37\x0f\x97\x62\xf9\xaf\x93\xb9\xc9\x67\x68\x62\x9a\x16\x9f\xfb\xe4\x77\x02\xe2\xa9\x65\x31\x32\x53\x6b\x94\x8c\xc7\x22\x57\x9c\x8c\x83\x93\xfc\x31\x19\x9b\x2f\x2a\x2e\x25\xfb\x12\xde\xb0\xda\x0d\xcd\x68\x19\x81\x75\xf2\x99\x89\x40\xcd\x1e\x4c\x25\xad\xf8\x65\x73\x21\x7e\xbb\xb1\x73\x83\x1f\xe9\xc1\xaa\x1e\xfe\xaf\xbe\xdd\xe2\x68\x7d\x98\x90\x5c\x09\x38\x9a\xd0\xf8\x56\xca\x69\xd5\x2f\x9b\x92\x8c\x66\x1f\xe3\xe6\x73\x81\x8b\x44\x94\x78\x72\x98\x56\xfb\xe9\xdf\x64\x72\x62\x0f\x6f\xc4\xdd\x87\xeb\x60\xd3\x48\x40\x9c\xad\xcf\x65\x4b\x87\x95\x9b\xb1\xe4\xc6\xa8\x51\x76\x9b\x34\x3a\x20\xeb\xa5\x90\x89\xa6\x9d\xa8\x40\xaf\xd2\x78\x93\x2a\xcd\xa3\x53\x06\x5f\xc4\x39\xac\xb6\xf5\x75\x43\x58\x35\x5e\xe0\xca\x30\x8e\x2d\xaa\xa9\x0c\x0b\xcb\xf7\xba\x2c\x93\xb1\x0b\xb7\x95\xf8\xe2\x2f\x54\x20\xa4\xb2\x3f\x16\x00\x25\x77\x14\x3e\x4d\xfb\x84\x4f\x89\x95\x44\xe5\x20\xc7\x71\xa3\x88\x7c\xcf\x94\x70\x87\xf3\x48\xba\x9e\x93\x18\x87\xaa\x7a\xdd\x13\xee\xf9\x54\xd3\x55\x01\x19\x44\x03\xae\x8f\xdd\x29\x04\xdc\x48\xfb\x94\x93\x50\xe2\x0e\xdd\x73\x80\xd5\x26\x01\x51\x7f\xb1\xd8\x80\x34\x0f\xeb\x1e\xd3\x29\x86\xe3\x13\x98\xd7\xfc\x41\x89\xc5\x80\x99\x4c\x55\xeb\x00\xe1\x8c\x99\x6f\x11\x0f\xac\xd1\x62\x3c\x9a\x28\x5f\x0a\x58\xf1\x63\x5c\x72\xb8\x54\xf7\x10\xeb\x49\x93\x2d\x15\x41\x46\xec\xe7\x2f\x4e\x2a\xf0\xa8\xbb\xa6\xe5\xb9\x90\x67\x35\x9f\x9b\x91\x5e\x6c\xfb\xd7\x66\x34\xe4\x53\x5f\x32\x2d\x77\x14\xe6\x65\xa0\x5a\x25\x7c\x67\xc0\x71\xe0\xe6\xbf\x6b\xda\x07\xee\x8f\x60\x56\x2e\x98\x38\x21\xa0\xe4\x7d\x86\x84\x88\xee\x6c\xab\xc1\x1f\x4e\xaa\x10\x39\xec\xd2\x6e\x89\xf3\xb1\x6f\x01\x3e\x1b\x9f\x78\x91\xa6\x56\x6c\x59\xbd\x72\x19\x2a\x30\x55\xe9\x91\x1d\x1d\x3a\xa6\x64\x1f\xb1\x03\x0b\x37\x2b\x84\xcb\x47\x7e\xe5\x8d\xf9\xed\xd0\xd3\x2c\x27\xf1\x69\x16\x84\x84\xdb\x60\xa0\xa7\xef\x85\x4c\xef\x7c\x38\x7c\xed\x46\xdf\x6d\xf5\x3a\x4c\x98\x47\x83\x8b\x67\x9c\x1e\xd9\xd9\xb0\xa6\x1a\xef\xb6\x45\x6a\xb3\xe4\x53\x1c\x5f\xe3\x70\x06\xdf\x1d\x8c\xe5\xc0\xa7\xb5\xab\x71\xd4\x80\x34\x1e\xf9\x57\x53\x4e\xe1\xfc\x62\xa7\x12\x9f\x33\xfb\xb3\xcb\x2f\x89\x6a\xe5\x94\x92\x5f\x26\xfb\x76\xa9\x17\xd2\xe3\x2e\xfd\x5f\xdb\xf4\x89\x9a\x05\xeb\xe1\xde\x3c\xf4\xc7\x9c\x07\x3d\xdc\x62\x12\xec\x42\xee\x5b\xee\x45\x1e\x62\xd0\xb9\xf0\x46\xfb\x79\xce\x8c\xbb\x44\x7c\x0a\x7b\x19\xae\x25\x46\x1c\x16\xb1\xbb\xad\x1c\x33\x2e\x70\xcc\x38\xdc\x08\x1e\xbf\x0c\x5d\x3d\x69\x89\x1e\x33\x55\x9d\x71\x6b\xd3\xb2\x54\x51\x18\xf7\x2e\x38\x64\x37\x3d\xd1\x50\x5a\x7a\x5d\x0f\x47\x9e\x8e\x28\xd4\x3a\xf8\xe4\x73\xef\x06\x13\xab\x77\xbb\xf1\x32\x46\xa7\x2a\x67\x66\xd5\xca\xd5\x2a\x69\x89\x1c\x29\x19\xac\x4b\xbc\x6d\xe9\xa7\xab\xba\x52\xd9\x2b\xbc\x24\x2d\x53\x53\x21\xfd\xd4\xf9\xc4\xed\xf4\x63\xc8\xae\x4c\x3f\xba\x8a\xef\x58\xd8\x4a\x18\x7c\xd0\x07\x51\xeb\x60\x71\xe1\x8c\x6a\x72\x7e\x4e\xcf\x35\x26\xb5\xd8\x7a\xe6\xf8\xd7\x0c\xde\x25\xee\x87\x80\x80\xf3\x18\xba\x94\xbb\x91\xf5\x76\x84\xf9\x2a\x4d\x5f\xe9\x93\x16\x69\xf9\x9a\x14\xe9\x6a\xa9\xe7\x4f\x6b\x3e\xe9\x72\xd1\x97\x38\x91\x70\x8e\x6b\x12\xad\x1c\x8c\x31\xf1\xc4\xec\x5d\x4d\xa3\xdc\x64\x55\x09\x4e\xf4\xd9\x5e\x82\x48\x75\x63\x91\x1a\x7b\x57\x71\x4c\xb5\xd6\x9d\x98\x45\x8a\x2f\x6d\x50\x63\xba\x30\x8a\x47\x25\x4d\x14\x70\x5f\xd6\xd1\xcc\x74\xc7\x1d\xfd\x03\x33\x65\xd7\x26\x92\xe9\xdd\xb5\x9d\x9d\x23\x17\x8d\x4f\xe0\x7d\xae\xa3\xb9\x39\x86\x8e\xca\xd9\xdc\xab\x2f\x9a\x34\x2e\x7d\xdf\xac\xf5\xda\xeb\x5f\xfc\xe5\xa3\xb8\x7c\xa0\x60\x7f\x1b\x0d\x65\x9a\x95\xd9\xa8\x8b\x67\x0d\x14\xa2\x9e\x0e\x4d\x3d\xed\x6e\x34\xe5\x81\x80\x15\x2d\xf9\xca\xc0\xce\xfe\x82\x01\x0f\x4e\xbf\xb1\xed\x6d\xb5\x5e\xf2\x5d\xe5\xed\x96\xd3\x5c\xdf\x38\xb1\x11\xf9\x66\x16\xe4\xab\x3c\x5c\x50\xd1\x63\x39\xa7\xe0\x3e\x5a\x3e\xc4\xde\x3e\xcc\xbe\x89\xc9\x7b\x3f\xb2\xf7\x5a\x78\x26\x23\xe8\x9e\x9f\x20\xa9\x98\xf9\x18\xe1\xc5\x3e\x52\x8d\xe4\x15\x1c\x2d\xb9\x6b\x0e\x83\x95\xdb\xa4\xf3\xc0\x90\xe1\xff\x64\xf5\x6a\xe2\xa5\x9a\xed\x37\x09\x51\x87\x05\x42\xa4\x47\xac\x92\x1a\xcc\x8e\xc6\x67\x3b\xbf\xa9\x2c\x3a\xe7\x4c\xc0\x3f\x7a\x9f\x0d\x13\x9f\x0c\x72\xe3\x2b\xf2\x07\xf9\x39\x38\x08\x89\x8b\x11\x7d\x20\xaf\xab\x0f\x2d\x3e\x9d\xe4\x0c\xba\xde\x31\x43\x0f\x8c\x09\x9e\x0e\xe4\xa5\xbc\x32\xd2\xef\x71\xa1\x3c\xbf\x9b\xc6\x4e\xa3\x78\x6f\x57\x7c\x64\x64\xc0\x9d\x7a\xbe\x64\x7f\xb9\xa9\x9b\xba\x27\x5d\xdf\xe6\x2f\xfc\x5f\xa4\xd5\x70\x99\x9b\xab\xcf\x51\x92\xdb\x65\xcf\xa7\x58\xf4\x41\x28\x06\xd6\x19\x1f\x8a\x35\xbe\xf1\x80\x11\x77\x75\x67\x4a\xdf\x14\x0e\xec\x35\x07\x38\x7c\x93\x63\xf9\x82\x43\xe7\x9d\x3c\x15\x12\x5a\x6a\x9b\x7a\x45\x0a\x5c\x95\x34\x39\xef\x38\x06\x38\xe0\xe5\xfb\x9a\x4f\x52\x2e\x4b\x02\x65\xbf\x5f\x02\x1e\xad\x9e\xdc\xd9\xca\x91\xc6\x8b\xbe\xea\xd4\x96\x9f\x0c\xe1\xa7\xa5\xed\x64\x4e\xe2\x4f\xd5\x41\x67\x1a\x5d\x35\xd6\x37\xb8\x44\xf6\x94\x7a\x7a\x8b\xd9\x36\x1e\x84\x5b\x6b\xf6\x63\x00\xbe\xa4\x6f\xb3\xa0\xe3\xca\x87\xa0\xc0\xad\xe6\x40\x91\xb6\x72\x45\x69\x87\x2d\x5e\x09\xf7\x3e\xdc\x82\xaf\xda\x1b\xb7\xc9\xde\xe1\x65\xae\xf9\x16\x1a\xf4\x1b\xcd\x4c\x83\x82\x66\x66\x6e\xf5\xea\x5f\x89\x87\x91\xe6\x48\xf6\x08\x3b\x02\x60\xee\xa3\x51\x5a\x73\x55\xd7\x1d\xac\x9a\x3d\x74\xc8\xf5\x87\x31\xcc\x2e\x9c\x5c\xc7\xfe\xb3\xaf\x36\x52\x23\xa9\xc5\x21\xc0\x5d\xa2\x74\x16\x72\x3b\x9c\x13\x5d\x22\xb2\xb2\x26\x1b\x8f\x04\xcc\x68\xd0\x4b\x8d\xb9\xd8\xec\xec\x92\x6a\xde\xd9\x34\x0c\x3b\x6a\xe4\x07\x1e\xa2\xe1\xda\x10\x9a\xde\x31\x32\xd4\xe5\xd8\xcf\x89\x19\xa9\xe3\xd3\xf6\x73\xc3\x73\xb3\xd9\xf1\xe5\x72\x34\xc4\x14\x56\xfd\xfa\x83\xed\x90\xcc\xbe\x5d\x72\x0e\x43\xec\xe9\x2d\x8e\x82\x08\xd4\x5f\x52\x31\x13\xd5\xcf\x5c\x7d\x16\x98\x24\xf2\x76\xb6\x33\x9c\x82\x92\xec\x81\x7c\xd1\xdb\x55\x5e\x9c\x48\x8a\xdb\xa8\x69\x4d\x6a\x51\xb3\x54\x13\x42\x69\x13\x6a\x5a\xe8\xe6\x98\x2f\x58\x4a\xc9\x34\xda\x13\xb3\x0b\x84\xa1\x23\x42\x78\x7d\xbb\x96\x6b\xf4\xe4\xba\x65\x62\x11\x6e\x5d\xca\xe3\x21\x2f\x4e\xd2\x26\x7c\xf5\x0a\x35\x61\xd6\xfa\x8c\x33\x01\xe5\x0a\x96\x61\x35\x61\x6f\xbe\xde\x85\xa1\x8d\x53\x56\x16\xd6\x38\x5b\x7d\x6f\x40\x66\x9f\xad\xef\x67\x21\xd5\x79\x06\xb8\xf8\xaa\x6f\xcd\x6c\x75\x9d\x47\x0b\x6d\x76\xdd\x0b\x68\x50\x43\x4d\x54\xc9\x5d\xd6\x1b\x52\x46\xcf\x40\xf2\x1d\x29\xfc\x5c\x9a\x9a\xb1\xd2\x62\xf2\xee\xc6\xeb\xe1\xa3\x1b\x5a\xcb\x6b\xe3\xfe\x83\x57\x28\x0b\x7d\xad\xa0\xab\x43\x09\x8c\xea\x7c\xec\x5e\x95\xb2\xf8\x0e\x88\xff\xa2\xe7\xde\xe4\xc0\x5b\xf8\x3a\x3a\x99\xa5\x1d\xb3\x96\x2d\x19\x54\x72\x72\x94\x50\x64\x74\x18\x5d\x6a\xf2\xd9\xec\xfc\x94\x4f\x68\x0f\x5a\xe3\x4c\x69\x6a\x5a\x24\xd7\xc4\xc8\x4d\xe7\xb3\xdd\x1d\xb8\x78\xd0\x5f\xd5\x98\xbe\x96\x79\xc7\xad\x83\x71\x65\x01\xde\x21\xc3\x62\x04\x6d\xd7\x2e\x23\x7c\x47\xb7\x6b\xe0\x32\xd4\x11\xc4\x51\x9d\x81\x3e\xaa\xba\xe5\xb0\x93\xdc\x94\x5e\x8c\x5e\xd3\x8a\x70\x41\xc8\x99\xdf\x41\xe2\x5c\xbe\x69\x17\xa2\x37\xed\xbc\x5f\x4a\xef\x76\xda\x26\xa9\xd5\xf3\x70\x0a\xae\x59\xaa\xed\x41\x35\x5a\xe7\x81\x60\xa3\xce\x61\x54\x79\xee\x8a\xda\x7f\xf8\x16\x5e\x7e\x33\xeb\xae\x3b\x78\x4b\xb7\x18\x0e\xe8\xef\xde\x1d\x8d\x27\xea\x32\x6b\x89\x7e\xc4\xbb\x6e\xde\xa5\x5d\x4b\x34\x52\x99\x81\xf1\x01\x9c\x06\x77\xe1\x78\xc3\xa5\x94\x70\x1b\xae\x13\x5d\xf0\x09\x84\xbb\x89\x79\xec\x7d\xe2\x76\x09\xb5\xf2\xef\x34\x63\x84\x3f\x0c\x9d\xec\xe1\x69\x5c\xa6\xcf\x03\x23\x8e\xee\x4a\x1f\x5f\xbc\x32\x1f\x9a\x93\x92\x64\x3a\xf2\x61\x18\x05\xf4\x3e\xb3\x05\xdf\x00\x60\xe5\xe2\xd9\x50\x17\x67\xfe\x5b\x1c\xfa\x0f\xd5\x66\x9e\x91\x05\x71\x2b\x89\x7f\x06\x5e\x03\x0a\x77\xbe\x25\x8e\x54\x87\x90\xaa\x1c\x9d\x3e\xc4\x61\xb4\x41\x5c\x92\x7c\x48\x0e\x10\xcb\x07\xb9\x5a\xb3\x08\xa9\xc4\xf2\x75\x2e\xfd\x27\x99\xfc\x20\xf3\x75\x7e\x64\xae\x97\xbc\x44\x3a\x5b\x69\x9c\xa4\x2a\x5f\x93\x27\x63\xe5\x43\x7c\x2c\xd3\x7f\x59\x71\x2e\x5b\x95\xf3\x33\xa8\xcf\x5e\x87\x41\xbb\xae\x71\x2b\x92\xb9\xf1\xd2\xd4\x63\xfd\x54\x67\xc9\x5b\x56\xd3\xfa\x33\x75\xa7\x95\xda\x7e\xdc\xe7\x09\x2e\x9e\x98\xab\x2a\x77\x1c\x86\x7a\xfa\x1a\xa3\xd4\x92\xf3\xd1\xf9\x2f\x8e\x8f\xd1\xe1\x71\x47\x39\xd9\xef\xcb\x77\xe0\x93\xcb\xd6\xe4\x67\x6d\x76\x5c\x64\x97\xc7\xbe\x80\x5f\xbb\x64\xff\xcf\x3c\xec\xf5\x89\xcc\x58\x79\xfc\x78\x66\x2c\x49\xde\x1f\x4d\x8b\xf4\xa2\xd5\xae\x6c\xfd\x95\xac\xc4\x15\x4f\x60\xff\xd5\x9b\xc6\x5c\x91\xd6\xfa\xf6\xf4\x32\x6c\x0b\xa2\x30\xfa\xb0\xe4\xf0\xe1\xde\x4b\xff\xf6\xf8\xc5\xf1\xd9\xa8\x6b\xe4\x2f\x85\x27\xa2\x92\x41\x86\x0f\x36\x1e\x87\xe7\xfb\x02\xe2\xba\x3d\xae\x46\xa8\x5a\x24\xd3\x85\x3e\x53\xf9\x8b\x97\x80\x07\xef\xfa\xcd\x92\xd0\x48\x60\x99\xec\x78\x72\x89\xb7\xde\x92\xa7\xaf\x4e\x0d\x49\x62\x2e\xd9\xc5\xce\x09\xe5\x3b\x92\x5d\xd2\xfe\xe6\x03\x83\x07\xe6\x3e\x4a\x8e\x89\x0b\x98\x23\x2d\x95\x59\x4c\xae\xd3\xc0\xdf\xe7\x1b\xa5\x89\x22\xa3\xa4\x33\x89\x2e\x87\x63\x9a\x66\xfe\x7a\x2c\xf1\x5c\x78\xdf\xc0\x6c\xd8\x20\xf8\x04\xb4\xee\x5d\xaf\x17\x27\x55\xae\x25\x51\x4f\xde\x18\x3c\x58\x6b\xfe\x5d\x5c\xad\x30\xe6\x3c\xfa\x79\xf0\xe0\xe9\xcc\x43\xa7\xbe\xb5\x7f\xea\xac\xee\xc5\xd8\xdf\xf0\x55\x81\x8c\x31\x84\x86\xa7\xf5\x46\x1e\xfe\xe0\xe2\xd0\x2a\xbc\x5a\xac\x0f\xea\xb1\x6e\xec\xaf\xe6\x08\x35\x46\x43\x07\x05\x3a\xa9\x05\xe9\x87\xe7\x0e\xbf\xe4\xfd\x65\xbf\x0b\x70\x3a\xae\x97\x72\xa5\xc9\x1d\x4d\x91\xb4\xce\xe9\xf5\x9c\xce\xa2\x8d\x69\x7d\x5f\xd8\x12\x79\x1c\xf5\x26\x8e\xba\x6e\xdc\xbe\x1b\x8a\x8b\x4b\xfe\x96\x2c\x06\x49\x93\x8a\x73\x0c\x9d\x11\x41\x2a\xb0\x5e\x49\x72\x65\xdc\x82\xd5\x01\x94\x8a\x8f\x92\xc7\x9a\x89\xd4\x8b\x1f\x13\x31\x13\x3f\x26\x02\x33\x7e\x1c\x3c\x5c\x1e\x3f\x1f\x7a\x47\x7c\x5a\xc3\xa7\x68\x7c\xc3\x0f\x01\x21\xf1\xe6\xeb\xbd\x3e\xb4\xfe\xf5\xb7\x69\x83\xd1\x13\xe4\xc3\x82\x99\x5e\xf4\x9d\xcf\xa4\x13\xcf\x90\x0f\xd3\x1b\x18\x73\x02\x7e\x7d\xac\x6f\x70\xf5\xae\xde\xa4\x85\xa7\x71\x92\x57\x88\xc1\xe4\x54\x90\x8d\xe9\xc0\xf3\xf3\x43\x2f\xf0\xc6\xe9\xe1\x54\xc7\xe0\xf5\x5d\x92\x8f\x5d\x5d\xf9\xe3\x1d\x17\xfc\x10\x9a\x3d\xd0\x7a\xf6\x01\x5d\x7f\xeb\x57\x3d\xf3\x6a\x6e\x68\x99\x3e\x98\xfc\xdc\xdf\x21\xac\x2f\x26\x47\xa4\xf2\xf7\x8c\xb3\x17\x63\x78\x35\x39\xe4\xa0\x51\x1f\x1e\xf1\x7a\x7f\x97\xb8\xb2\x1b\x39\x76\x85\x33\x0f\xcb\x92\x63\x0b\xfa\x36\xde\x7b\x27\x3e\x86\xcc\x3f\xec\x1f\x16\x32\x78\x76\x2c\x69\xf8\x26\x79\x6b\x2c\x7d\x30\xba\x3c\xdc\x99\x3f\x58\x38\xbf\xe5\xe1\xac\x93\xd6\xee\x4c\xfb\x61\xf6\xba\xb7\xe0\xad\x8d\xdb\x2b\x47\x9f\xd8\x94\x27\x56\xa6\x8e\xdd\x53\x3c\xec\x67\x35\xf2\xcc\x17\xc6\xc4\xdd\xfd\xe0\xf6\x50\x1e\xf4\xc5\x14\x24\xef\xcb\x7b\xb3\x9a\x8a\xce\xca\x43\xb2\x23\x07\xe5\xc2\x19\x17\x8e\xeb\x8e\x75\xd5\x61\xa9\x47\x46\xa2\x92\x3a\xb2\xe3\xec\xe5\xf3\xd3\xf3\x71\xd5\x29\x95\x6b\xc1\x94\x27\xa4\xaf\x7c\x8f\x58\x80\xc4\xd3\xe6\x17\xc0\x31\xb5\x51\xcd\x03\xd3\x17\x6c\x9b\xef\x46\x3d\x6c\x83\x9a\xa6\x30\x7b\xd6\x9d\x0a\x3c\xca\xc9\xc7\xc4\xe7\xaa\xcd\x6d\xf1\x5c\x3d\xfa\x81\xab\x4d\x70\xfa\xaf\x9d\x19\xb3\x95\xcf\x07\xf9\x49\xdb\x0e\xe9\x5b\xab\xe3\xe1\x12\xa4\xf1\xe0\xee\x33\x8e\xb4\xcf\xd4\xf5\x75\x7c\xdf\x03\x0d\xe8\x42\x0b\xe3\x6c\x09\x89\xdd\x58\xd1\x3c\xe1\x8f\x63\xfa\x05\x6d\x49\xf5\xf0\xb0\xc0\xbb\x56\xae\x51\x18\x35\xd8\xac\x03\x9c\xc4\x71\x96\x00\xab\x40\xb6\x06\x10\x3e\x3a\xb8\x46\x8b\x2c\xdd\x95\x55\xbf\x1c\x41\x04\xaa\xf4\x78\x89\x78\xd5\xbf\x4d\x4e\x77\xea\x4b\x78\xc3\x25\x4d\xba\x19\x4d\x72\xef\xd8\x99\x7a\x60\x0b\x7e\xe1\x2b\xe7\x46\x55\x55\x0a\xe4\x41\x11\xbf\x4a\x6b\x79\x4a\xf1\xaf\xbb\xa4\x6c\x3b\x79\x27\x21\x0a\xff\xf9\x91\x53\x49\x8f\x5a\x23\x59\xc8\xc5\x21\xfb\x63\xb1\x6e\x88\xcb\xbf\x92\xe0\xbc\x5c\xc1\x4b\x1f\x62\x71\x42\x92\xfe\x53\x4b\x78\x58\xf4\xec\xa1\xb1\x55\x61\x92\xba\x48\x17\x39\xe5\x27\x37\xe0\x3d\x25\xce\x88\xd3\x5d\xb1\x3c\x5c\x07\x45\x75\x2e\x21\x4a\x27\x35\xec\x9f\x50\xbd\x7c\xd8\xe4\x35\xde\xe2\xe3\x0d\x8f\xee\xca\xb4\xb7\xda\xfb\xd1\x38\x8f\x02\x91\xad\x54\x2b\xf3\xf5\xa6\xa7\x4b\xc2\x42\x08\x9e\x5d\x7e\xde\xb0\x53\x05\x09\x32\xf5\xfc\x4c\x94\xc1\xa6\xf3\xb0\x72\x6d\x20\xe7\xd6\xf8\x64\x16\xf9\xb9\xc4\x15\xee\x49\xba\x4d\x48\x63\xf1\xb5\x13\xa5\x27\xfd\xb4\xfc\x6e\x90\xed\xe3\x8b\xa6\xb3\xf7\x25\xf5\x3e\x3f\xdf\x2f\xd2\x9a\x6c\x24\x84\x8b\xb0\x31\x83\x3a\x49\xf8\x49\xef\x6f\x99\xc4\x0c\x7f\x35\x1c\x35\xfe\x6d\x78\x7f\xe9\x56\xde\x85\x1f\x5f\xf8\x32\x3c\x59\xf7\x40\xef\xfc\x92\xa3\x88\xa1\x21\xe7\x90\x75\x7c\x7b\x7f\x5a\xff\x71\xdb\xac\x1f\x3f\x48\x6f\x0b\x1b\x1e\xd5\xc3\xed\x62\x28\xfc\xc1\x5f\x25\xa6\xf3\x61\xaf\x4d\xfe\x3b\xb2\x58\xe5\x1e\x32\xb9\xf0\x9f\xef\xaf\x1b\xf4\x2f\xee\x1d\x19\xa2\xfd\xff\xc2\x28\xbf\xcb\x04\x11\x63\x8b\x5d\xe9\x17\xf3\x97\xba\x0b\x57\xa6\xf8\x15\x87\x8b\x51\x26\xe0\xe2\x73\xe2\x80\x93\x5e\x1b\x30\x0f\x40\x3e\x71\xde\x99\x4d\x0a\x3d\x5c\xdb\x69\x36\x9f\x01\xa0\xb9\x13\x7e\xf5\x0e\xe7\x80\x97\xdf\x2f\xfd\x45\x86\x7c\x0a\x16\xfc\x01\x67\x02\x6b\x7d\xb4\x87\xef\x13\xf8\x3e\xf3\xc7\x83\x09\x23\xba\xba\xc6\x73\xa7\x66\x53\xe7\x57\xb8\x48\x11\x77\x8b\x22\xd1\x1c\x07\xfc\x0b\x20\x0e\x50\xef\x26\xe7\x84\xf3\xef\xda\xfc\xbb\x8c\x68\x03\xcf\x36\xf2\x0b\x6d\xdf\xed\xe8\x03\x3f\xfe\xab\xbf\xb7\xf4\x1b\x6e\x4e\xfe\x51\xd0\x0f\x36\xaf\xb5\xf0\x86\x5b\x77\x08\x5e\x54\x5a\x85\xe8\x10\x3d\x90\x3e\x26\xbf\x6f\xe9\x17\x27\x13\xf0\x83\xef\x3c\x12\x5f\xd1\x26\x7f\x3a\xfe\xcc\xe3\xc9\xcd\x6d\xf2\xee\x30\x7f\xdd\xd6\x7d\xc3\xdf\xea\x46\xfa\x2a\xcc\x2d\xff\xe6\x19\x48\x9d\x1b\x6b\x3f\x68\x77\x32\x0b\xa9\x49\x93\x20\xf3\x9b\xfb\xb3\xad\xd4\xbc\xb5\x46\x7a\xa3\xc9\xc8\x97\xc6\xdc\x2c\xfd\x84\x74\x36\xf2\xd1\x4f\x47\xe6\x02\x98\xfe\xbf\x00\x00\x00\xff\xff\xa3\x45\x62\xd5\x08\x8e\x00\x00") +var _confLocaleLocale_itItIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x7d\xdb\x6e\x1c\x47\x93\xe6\xbd\x00\xbd\x43\xd9\x03\xad\x6c\x80\x6a\xc1\x36\xf6\x00\x43\x25\x2f\x4d\xca\x96\x76\x28\x91\xbf\x28\x69\x76\xd6\x30\xda\xd9\x5d\xc9\xee\x1c\x55\x57\xb5\xeb\x40\x9a\x1a\x0c\xb0\xcf\xb0\x4f\x30\x97\xbb\xc0\x5c\xed\xdd\x5e\xeb\xc5\x36\xbe\x88\xc8\x43\x1d\x9a\xd2\xef\x7f\x2e\x24\x76\x65\x46\x9e\x22\x23\x23\x22\x23\x23\x23\xcd\x7e\xbf\x2c\x6c\xbb\xce\xdf\x56\x59\x6b\x9b\x6b\xf7\xc1\xd5\xd9\xcf\xae\xcb\x4c\xdf\xd5\x8f\xea\x76\xef\x3a\xd3\xd5\xd9\xbe\xa9\x2b\xfa\x63\xca\xf2\x61\xdf\xd6\xf7\xef\xdd\xbf\xb7\xad\x77\x36\x7f\x4e\xff\xdd\xbf\x57\x98\x76\xbb\xaa\x4d\x53\xe4\x17\xa6\xaa\x6c\x59\xd6\x59\xe1\xb2\x35\x95\x68\x6a\xfa\xb8\x7f\xcf\xfe\xb1\x2f\xeb\xc6\xe6\xcf\x5a\xfc\x35\x54\xd8\x96\xfb\xfc\xd8\x51\x13\xf7\xef\xb5\x6e\x53\x2d\x5d\x95\x1f\xaf\xd7\xb6\x70\xf4\x5d\xaf\x9d\x29\x97\x3e\xf9\xac\xde\xb8\x2a\xbb\xe4\x44\xfb\x7d\x76\x61\xda\xb6\xce\xbe\xcd\x9e\xb4\x3b\xea\xcc\x53\x7c\x51\x4e\x63\xb3\xf2\xa1\x59\xaf\xeb\xbe\xea\x9e\x3c\x96\x2c\xad\xb9\xee\x3b\x6a\x77\xed\xf4\xb3\xdf\xe7\xaf\xed\xc6\xb5\x5d\x63\x3a\x4a\x6b\xf8\xb7\x6d\x06\x89\x37\x76\xd5\xba\xce\xe6\x97\x8e\x86\xfc\x0f\x76\x75\xff\xde\xb5\x6d\x5a\x57\x57\xf9\x3b\xf9\x4b\x63\xde\x9b\x8d\xa5\xe1\x52\xdf\x68\x38\x9d\xdd\xed\x4b\x43\x25\xde\xe8\x8f\xfb\xf7\x4a\x53\x6d\x7a\xc0\x9c\x39\xfc\xb8\x7f\x6f\xdd\x58\xca\x58\x56\xf6\x26\x3f\xe1\x9f\x19\xfd\x5c\x2c\x16\xf7\xef\xf5\x84\xf7\x25\x21\xf8\xca\x95\x76\x69\xaa\x62\xb9\x03\xae\xde\x52\x6a\xa6\xa9\x19\xa5\x66\x48\x95\x41\xd8\x82\x10\xb3\x34\x2d\x75\x10\x1f\x19\xe1\xc7\xb4\x98\x13\xd4\x54\x19\x9a\x97\x57\x34\x2f\x59\xdf\xd9\x0a\x5d\xb1\x3b\xe3\xca\xfc\xd9\x23\xfc\x41\xc7\xdb\xf6\xa6\xe6\xb9\x92\x1f\x40\xc2\xb2\xbb\xdd\xdb\xfc\xa4\xae\xae\x6c\xb3\x43\x67\xcd\xbe\x5b\x6f\x4d\x7e\x22\x7f\x51\x77\x63\xf7\x35\x61\xa5\x6e\x6e\x09\x57\xfe\xe7\xfd\x7b\x75\xb3\x31\x95\xfb\x40\x78\x23\xf4\x9c\xcb\xc7\x07\xf3\x41\x90\xb4\x73\x4d\x53\x37\xf9\x4b\xfe\x73\xff\x1e\x0d\x78\x89\x6a\xf2\x57\x7d\x7d\x5d\x67\x69\x35\xc8\xda\xb9\x4d\x03\x24\x22\xd7\x64\x2f\xf1\xa5\xf5\x20\xf7\xaa\x6e\xde\x6b\xc1\x9f\xe8\xe7\xa4\x34\x75\x44\x4b\xd6\xe3\x5e\x98\x8a\x26\x82\x01\x7e\xb6\x6d\xe7\x88\x18\x32\xc2\xe9\x00\x8c\x66\xdd\x14\x3b\xc2\xea\xde\x10\x01\x0f\xe8\xd8\xec\x28\x9d\x69\x43\xeb\x53\x3a\x5b\xb6\xb6\xeb\x68\x72\xdb\xfc\xc5\x8e\xba\xd2\x49\x3d\x59\x41\xe5\x3c\x29\xd2\x74\xcd\xc1\xdc\xbf\x77\x5b\xf7\x61\xca\xf3\x7f\xa4\x8f\xec\x42\x3e\x34\x2b\x14\xe3\xbc\x4b\xfd\xc2\x34\xd0\x50\xdb\xe5\x95\xb5\x05\xcd\x71\x47\x8b\x15\xa4\xd8\x97\x25\xe1\xf5\xf7\x9e\x06\xd7\xe6\x17\xf4\x45\xc8\x91\xaf\xfb\xf7\x5c\xdb\xd2\xaf\x9c\xaa\x5f\x95\x76\xe7\x50\xc5\xda\x54\x6b\x1a\xe3\x71\x55\x11\x28\xcf\xed\x2f\xad\x35\xcd\x7a\xfb\x2b\xfa\x8b\x1f\xf9\x6b\xb7\xb6\xcd\xda\x30\x79\x1e\x98\x78\xd0\x5a\xfe\x56\x49\x8c\x5b\xf1\x8d\x80\x7e\xea\x02\xe4\x54\x50\x35\x5c\xbf\xab\x68\xec\x65\x49\x0d\xe8\xaf\xfc\x85\xfc\xf5\x38\xed\x5c\x57\x5a\x26\x49\xc2\xe0\x43\x97\x66\x66\x7b\x5a\x08\xae\xa4\xb5\xe0\x76\xc4\x81\xae\xaf\x5d\x8d\x4e\xfd\xde\xd3\x12\x5d\x16\x2b\xe1\x5e\x3f\xd7\x9b\x36\x6b\xdc\x7a\xeb\x6c\x61\xb3\x97\xb7\x97\xbf\x97\x47\xd9\x05\x61\x7c\xd3\xd8\xf6\xf2\x2f\x67\x59\x9d\xd1\xff\x54\x82\x06\x44\x65\xa4\xb9\xc1\xbc\x9d\x9a\xce\xac\x4c\x6b\x25\x1f\xcb\xe1\x8d\xdb\x33\x01\x14\x21\x67\x4b\xe0\xc4\xf3\xda\x6e\x34\xfc\x99\x35\x45\x95\xc4\x95\x48\x34\x91\xd4\x42\x59\xe0\x7f\x5c\xde\x95\xa0\x40\x0c\x6f\x57\x13\x5e\x6d\xf6\xe2\xd5\xab\xf3\xd3\x1f\xc1\x3c\xe9\x5f\xe1\xae\xdc\xda\xd0\x42\xbe\xfa\x2f\xcb\x8d\xad\x6c\x43\x7c\x91\x88\x17\x08\xa1\x21\xfe\xe5\x8c\x06\xd3\xb6\x25\xf1\x0b\xc2\xf6\xcb\xba\x30\xa5\xeb\x3e\xfe\x6b\x76\x79\x79\x86\x2e\x75\xdb\xfc\x82\x26\xb1\x6e\xc0\xaf\xdb\xdf\x4b\xa0\x4b\xdb\xf5\xe9\x5c\x93\xef\x98\x22\xe8\x3b\xaa\xd4\x36\xcd\x92\x38\x59\x77\xbb\xd4\x72\x5c\xdb\x8b\x12\xf0\x52\x30\x1d\x91\x2f\x98\x55\xd4\xe9\x7d\xff\xf1\xff\x66\xb6\x25\xec\xd8\xec\xba\xa7\x31\x2d\x40\x00\xbe\xf3\x33\x78\x27\x04\xff\x88\x4a\x78\xdd\x1c\xef\xf7\x25\x8d\xd8\x2f\x34\x92\x4d\x11\x89\xf3\x79\x7e\x48\x97\xeb\xc6\x5d\xbb\x8c\xa8\x02\xc8\xac\x14\xeb\xa5\xc9\xba\x7e\xcc\x11\x32\x62\x25\xc4\x7e\x6d\x46\xd4\x62\x9a\xfa\x0b\x21\xf1\xe5\x00\x63\xd9\xeb\xba\xee\x78\x94\x29\xcd\x07\x38\xdf\xea\x9b\x9e\x56\x66\xe6\xb2\xb8\x46\x58\x76\x36\x96\x66\xd3\x65\xad\x69\x88\x8f\xd4\xf4\xb7\xbc\x36\x80\xab\x32\x5e\x96\x86\x06\xdd\xd8\x35\xc0\xb1\xbe\x7a\x92\x4a\xa0\xa6\x67\xad\xdd\xf4\x2c\x37\x49\x98\x79\xe6\xed\x73\x7d\x8b\x67\x9a\x43\x7d\xbb\x26\xb9\x70\x0d\x3c\x13\xb7\xb1\x90\x8a\x26\x99\xa0\xc6\xf7\x3f\xe9\x9a\xe5\xd5\x03\x61\x89\xe5\x82\x95\x50\x93\x4c\xa8\xf2\xd3\x1a\x1c\xae\xf6\xdf\xbe\xa9\xbf\xa0\xaf\x35\x11\xa6\x92\x21\xb1\xc3\xcb\xcb\xe7\xd9\xba\x04\x0e\xdf\xbe\x3e\x43\x0d\xdb\xae\xdb\x2f\xf7\x84\xcf\xfc\x82\xfe\x33\xd9\xf3\x37\x6f\x2e\x92\xd4\x40\x70\x9c\x09\x66\xda\xae\xeb\xb2\xab\x95\x4b\x26\x33\xba\x90\x29\xed\x9b\x32\xa7\xaa\x67\x26\x9b\x72\x46\x1d\x73\xd5\x55\xd9\x13\x37\xb7\x59\xdb\x6f\x4a\x87\x2e\x79\x5e\x81\x3e\x9a\xcd\x86\x54\x19\x1a\x2f\x77\xea\x31\xfe\xbb\x24\x14\x14\x86\x26\xc1\x94\xeb\x2d\x31\x16\xd3\xb0\x18\x06\x99\x30\x45\x66\xb6\x24\x56\x4b\xaa\x0e\x35\xcd\x74\x5b\xef\x21\xd7\xe6\x09\xf7\x27\x83\xa1\xd0\xbc\x5e\x7b\x19\x3b\x07\xe5\xc5\x6e\xbb\x23\x94\x04\xfe\x91\x5d\xbe\x04\x9e\x38\xf1\xaa\xa9\x77\xf9\xa9\x49\xbe\xfc\x38\x5f\x52\x49\xf4\xd7\x55\x44\x2f\x44\xbe\xf5\x51\xf6\xfa\xa7\x93\xec\x3f\x7e\xf7\xed\xb7\x8b\xec\x22\x59\x68\x6d\x4d\x73\xd3\x57\x11\x30\xe3\xfe\x10\xd3\xa3\xff\x88\xda\x77\x50\xe1\xbe\xc4\x2a\xfa\x32\x7b\xc2\x59\xff\xd5\xb6\xb4\xc0\x5d\xbd\x58\xd7\xbb\xa7\x0b\xc8\x48\x12\x3e\x8d\xd2\x21\x77\x99\x89\xe7\xa5\xeb\x94\x0e\x15\x60\xc2\xe9\x46\x60\x5e\x9f\x5a\x12\x15\x5f\xb9\x66\x97\x1f\xaf\x88\xc5\x11\x66\xbd\x6e\x01\x22\xf0\xba\x56\x90\xcf\x84\xba\x8a\x16\xcc\xd5\x6d\x00\x87\x70\x23\xa2\xa3\x49\xc2\x04\x3e\x53\x1c\x92\x7e\x6a\x21\x1c\x49\x4d\x5d\xdb\x59\x66\x42\x9d\xb9\x64\x28\x9a\xe9\xe3\xb2\x6b\x1c\x7f\x92\x9c\xa4\xb9\xbc\xba\x2a\x5d\x65\x85\x5b\xfa\x76\x22\xd7\x3c\x97\xec\x21\x1c\x11\xf1\x9e\x34\xc6\x53\xd7\x1a\x2d\x40\x88\x39\x39\x7d\x45\x0a\x19\xfa\x46\x0b\x7a\x17\x2a\x20\x71\x5e\x80\x1d\x5c\x9b\x23\x62\x3a\x84\x10\x28\x19\x8d\x6b\x69\x39\xda\xc8\x0a\xd0\x1b\x64\xd5\x6b\x53\xee\x80\x33\x2c\x43\x54\x4f\xba\x5f\x13\x74\x50\xd2\xa5\x92\x36\x07\xf8\xca\x5e\x9a\x8a\xe8\xd7\xce\x17\x9b\x76\x98\x68\xbb\x19\x94\xdf\x49\x79\xc2\x15\x16\x0d\x73\x13\x77\x24\x24\x84\x84\xa8\xee\x10\xcf\x70\x58\x17\x6d\x4d\x1d\x87\xfa\x2a\xac\x06\x8a\xcd\x42\x25\x30\x69\x8e\xaa\xa7\x2f\xaf\x1d\x69\xb6\x1e\xad\xaf\x59\x12\x0b\xa7\xcb\x8e\x95\x3d\x61\x6d\xbe\x23\xf1\xdc\x30\x66\x58\x77\xb6\xf3\xf5\xe8\x28\x2e\x7d\x9f\xa4\x93\x84\xb4\xcd\x06\x7c\xd4\xf7\xe9\x3a\x54\xb6\xe7\xca\x8e\x88\x13\x5f\xbb\x96\x77\x2c\xdc\xf5\x4e\x90\xae\x70\x3c\xc4\x00\xcc\xdc\x48\x7b\x66\x87\x28\x5a\x78\x65\x50\xd5\x30\x51\x31\x5e\x11\x5f\x26\xa6\x2b\xe2\x97\x16\x15\x89\x6d\x45\x0a\xad\x3c\xc5\x4b\xc6\xe5\x40\x0a\xa4\xad\x10\x43\x2e\x50\xfd\x11\xa1\x9c\xb8\xfa\xae\xaf\x88\xfb\x07\xd6\x9e\xbd\x38\xcd\xbf\xc9\x6a\xa2\x93\xa6\x21\xea\x61\x9d\x91\x3b\x43\x0b\x7e\x30\x07\x96\xb7\x62\xb4\x84\x89\x29\x79\x8a\x91\xee\xcd\x2c\x80\x63\xed\xc7\xf1\xa0\x06\x5f\x60\xba\x37\xf0\x4a\xef\x44\x7f\xd1\xf5\x1b\xb3\xc2\x02\x8e\x30\x52\x78\xb8\xbd\x50\xd5\x6d\xb9\xa9\xa1\xf4\xaa\x1e\xa7\x12\x07\x1b\xa5\xb6\x5b\x6e\x5c\xb7\xbc\x02\x3b\x29\xf2\x9f\x28\x17\x9b\x2c\x5a\x55\xc8\xe2\xf5\x4b\x98\xa2\xed\x0e\x4d\xbc\xeb\xbe\xcf\x1e\x5c\x7b\xdd\xe5\x3b\xb0\x88\xa5\xb9\xa6\x82\xa0\x7a\x11\x02\x26\xd3\x9d\x99\x65\xe5\xa3\xed\xf7\x7b\x96\x34\xaa\x91\x10\x59\xd3\x74\xd1\xdc\x32\x1d\xb6\x6b\x43\x1a\x22\xef\x15\x93\x72\x2b\xda\xc1\x35\xc4\x63\xfa\x2b\xe2\x37\x8e\x17\x86\xc9\x1e\xb4\x47\xd9\xab\xf3\x57\x03\xc0\x4d\xbd\xea\x5d\x59\x2c\x30\xc6\x6b\x5a\xf3\x05\x94\x4f\xa5\x90\xfc\x0c\x33\x4c\x18\xdb\xf4\x7e\x99\x0d\x34\x24\x74\xee\xe3\xff\x26\x90\xa6\xa1\x02\x46\xc6\xe5\xab\x99\xd1\x3e\xe6\xa4\xb7\x82\xd7\x52\x38\xe8\x05\xc0\x0a\x11\x07\x94\x76\xa2\x43\x24\xf9\xd6\x02\xa5\x71\xb3\xf4\xe3\xfb\x8c\x06\x96\x3d\x7a\x4a\xff\x13\x56\x49\x77\x10\x2e\xbd\x99\x99\x0d\x51\x59\x44\x84\x8a\x1e\x35\x1c\xde\x70\x04\x83\xd5\x32\x24\x48\xbf\x30\x8e\x79\x61\xa0\x67\x5c\x24\x54\x20\xd4\xd2\xf6\x4c\xfc\xf9\x8f\xb6\xba\xb6\x15\x91\xfb\x17\xd9\xa5\x33\xa4\xee\x5f\x59\x52\x03\x48\x27\x22\x66\xdb\xf5\x99\x59\xad\x68\xa6\x48\xe2\x43\x85\x00\x45\x1d\x65\xab\x1e\xcb\x92\x64\x70\xd3\x39\xac\x0e\xd1\x37\x7f\x81\x75\x82\x76\x1b\xbd\xa8\x88\x75\x49\x0c\x40\x08\x5f\x54\x76\x92\x8c\xe3\xfd\xb0\x87\x8a\xe4\xdd\xde\x38\x42\xeb\x32\x58\x37\x80\xad\xce\xfe\xd1\xd1\xae\x78\x87\x7e\x9c\xfa\x0c\x08\x37\x64\x90\x28\xbb\xe5\xd9\x24\xca\xcf\x76\xce\xba\x81\xf2\x48\xda\x02\x51\x6e\xdd\xb0\xc6\xa0\x60\x31\x1f\x75\xd0\x30\x88\x7b\x71\x2d\xa4\xb1\xb6\xf9\x99\x45\x2d\xd9\xf9\x68\xa3\x4a\xd9\xb2\xb1\x0e\xcd\xf8\x0d\x36\x0d\x5c\x4d\x2d\xbf\xea\xbe\x6d\xb0\x65\xa3\x6c\x62\x25\xd8\xe6\x45\x63\xc4\x52\x27\x88\x8d\x12\xe0\x64\x15\x6f\xb1\x8f\xfd\x06\x36\x08\xf4\xad\xdd\x43\x01\xd8\xb5\x9b\xfc\xb9\x71\xb4\x3a\x89\x69\x45\xc6\xf7\x43\x26\xe6\x1b\x52\xb5\xcd\x17\xc1\x86\xf3\xf9\x85\xc5\x8c\x43\xfc\x59\xca\x0f\x45\x9b\x98\x47\x68\x3f\x92\x0b\x51\xb4\x7b\x67\xd6\x22\xb6\x86\xa2\x8d\x88\x9e\xe8\x89\xa5\x8e\x97\x7f\x9d\x59\x10\x29\x45\x26\x80\x39\x34\xb4\x04\xc5\x62\x34\xe4\xb3\x58\x70\xc0\xd5\x44\x24\xa3\xeb\x60\x72\x93\xe6\x75\x5d\x78\xc5\x66\xd8\x1b\x68\x2e\xac\xc2\x0d\xba\xc5\x1a\x42\x67\x58\x82\xee\xec\x6e\x85\xba\x2d\x36\xdc\x44\x73\x06\x1b\x74\x12\x2d\x1b\x5a\xd3\x33\x9a\x16\x13\x38\x71\xb0\xce\x08\x94\xfd\x04\xd4\x0f\xc1\xe6\x45\x5c\xe2\x26\xff\x91\x74\x91\x4d\xc5\x5b\xda\x14\xf7\x2f\x5a\xde\x3a\x75\x3c\x77\x8b\xc0\xf9\x45\x9d\x60\xdd\xac\xa5\x0a\xfd\x0c\xbc\xad\x0c\x93\x88\x51\x15\x53\x50\x2a\x18\x08\xe3\x24\xbe\xe0\xf0\xd7\x64\x4f\x56\x4f\x1f\xb4\x4f\x1e\xaf\x9e\x1e\x81\x91\xea\x3e\x42\x36\x65\x6b\x62\x8c\x60\x2c\x85\xf3\xca\x37\xec\x85\x2c\xa0\x1b\x12\xf0\x34\x8c\xec\x41\x91\x61\x5e\x20\x70\x49\x2a\x10\x09\x75\xca\xbd\xc7\xe2\xda\x2b\x0f\x22\x8b\x94\x14\x69\x3b\xd4\xf5\x75\xaa\x14\xeb\x92\x37\x6b\x5e\x82\x6c\x69\xf1\xe4\x7f\xcc\xf3\xc2\x82\xa8\x1f\x90\x3f\x0f\xbe\x74\x3b\xd7\x1d\x24\x42\x12\x32\xd4\x7f\x68\x1a\x3c\x70\x08\x2f\xfb\xc8\x63\x47\x26\x5c\x28\x82\xc6\x47\x02\x8a\x8a\x42\xd0\x0f\xe9\xd2\x40\x83\x66\x35\xe5\x3b\x5a\xd3\xc4\x02\x1d\x76\x57\xa6\x5d\xf6\x95\x4e\x88\x2d\x84\x08\x4f\x9c\xa9\x59\x40\x6d\x8d\x1b\x2a\xfd\x11\x93\x71\x1b\xc3\x2c\xd7\xcf\x10\x71\xcd\xaf\xc2\x8c\x7c\x4d\x1d\x10\xc9\x84\x8a\x48\x32\xda\x6b\x62\xbc\x54\xa3\x49\x7a\x1f\xe6\xb6\xc6\x6e\x5e\xc1\x6c\x53\x2a\x11\xb0\x3e\x72\x94\x5d\x61\x5a\xd6\xc4\xa9\x49\x02\xd3\x1e\xb4\x2f\x5b\x03\x26\x8b\xcd\x78\x4b\x1a\x4e\xbd\x50\x44\xfa\x11\x10\xe4\xda\x70\x36\xef\xd7\x2a\xd9\x94\xc6\x1a\x69\x69\xce\x22\xd0\xef\xb3\x58\x13\x10\x96\xd1\xd9\xb8\x1d\x1c\xce\xb3\x17\x83\x1e\x10\xea\x18\xd1\xc4\x3a\xd2\x3e\x08\x07\x9d\x42\xdf\xba\xd9\xae\x7d\xd5\xb8\xaf\x7d\xf7\x94\x6c\x63\xc7\x1a\xeb\xa2\xa4\x83\x5a\x19\xed\xa9\x6d\xba\x34\x5f\x7b\x38\x5f\x45\x14\x31\x5e\x80\xb2\xbd\x6c\x42\x57\xd8\xc8\xb2\x0d\x6d\xb2\xca\xd6\xa6\xc0\x5c\xd5\x51\xa0\x7a\x1c\xc7\x76\xfd\x2e\x72\x34\xa4\xd0\x6b\x19\x52\xec\x75\x28\xd7\xd5\xf5\xb2\xdd\x62\x4f\x4f\x5a\x4d\xd9\x57\x9b\xad\x85\x8d\x4a\xd4\x00\x0f\x35\x31\xf6\xd0\xc4\xd5\xd9\x7f\xa2\x55\xdd\x80\x94\x1b\x27\x72\x98\xb7\x47\x24\x70\x6e\x6d\x9b\x5f\x7e\xfc\xb7\xfb\xf7\xaa\x9a\xe4\x30\xc9\x30\x18\x15\x6e\x61\xb4\x62\x9e\xc0\xb0\xd8\xa8\x12\x28\x0c\xdf\xaf\x26\x8a\x2a\xe4\x58\x4c\x4d\xa5\x1a\x6f\x0e\x49\xd5\xf4\xb3\xef\x05\xfb\xc5\x54\xa9\x7d\x6d\xd9\xb0\x47\x13\x52\x51\x23\x6c\x08\x8e\xe3\xbf\xbc\x7c\xfe\x86\x15\x6a\x6e\x01\xb6\xa1\x6b\x0b\x83\xc7\xfd\x7b\xcf\xbb\x6e\xdf\xbe\x55\xcb\x04\xdb\x11\x50\xfb\x6d\x59\x9b\xc2\xa7\xea\xe7\xfd\x7b\x6f\xac\xd9\xc5\x7e\xe2\xeb\xfe\xbd\x63\x12\xba\x31\x0d\xda\x7c\x93\x98\xa7\x59\x33\x92\x41\x3c\xf3\x1b\xef\xf2\x21\xa7\x8a\xdd\x5d\xf6\x47\x96\x4d\xe9\xbf\x1d\x30\xb2\xfd\x46\x5c\xad\xdc\x6f\x0d\x6b\x2b\x01\x96\xe4\x9b\x85\x45\x95\x77\x3e\x61\x66\x68\x11\x5c\xd1\x1e\x70\x47\x3f\x09\x01\x75\x06\xf1\x47\x8a\x9b\xfb\xea\xd1\xf2\xeb\x51\x45\x05\x2d\xb4\x3f\x5f\x19\x7d\xee\x69\x99\x39\x54\xda\xba\x0f\x7e\x0c\x0f\xd9\x74\xa5\xdd\x7f\xd0\x2e\x1e\xe2\xa0\x80\xd4\xc7\x08\xf1\x9b\x58\xb7\x58\xdf\xaa\xd8\xc2\x55\x32\x79\x91\xf6\x1a\xe9\xeb\x37\x58\x0e\xfe\xb8\xb3\xd8\x0e\xf6\xe4\xdd\xb4\x9c\x70\x91\x14\xa3\xb4\xa8\x86\xf6\x13\x59\xe5\xba\xb4\xa8\x08\xcc\x4f\xd3\x02\x98\xfa\x04\xa6\x7a\x4f\x72\xb6\x52\xb8\x67\xf8\x9f\x76\x9d\xd4\x9d\x9a\x28\x8d\x66\xfd\xfb\x70\xb0\x42\xb2\x8a\x95\xf2\x75\x07\xab\xaa\x9e\xb2\x28\xab\x6e\x88\x30\xf7\xa4\x0c\x42\xae\x85\x35\x19\xb5\x7c\x52\x0a\x8b\xde\x0e\xd7\x61\x2c\x44\x6d\x2d\xd2\x93\xa0\xe5\xca\x5a\xda\x28\x9a\xf7\xb6\x42\x4b\x55\x5c\x52\x18\x81\xe8\x61\x6a\x84\x56\x36\x4d\x7b\x91\x43\x05\x87\xe6\xd0\xf9\x0a\x48\x2d\xb9\xab\x7c\xf9\x70\x78\x46\x94\x54\x12\xeb\xe8\x68\xd5\xdc\xd9\x09\x2c\xab\xf9\xe6\x65\x66\xb9\x18\xa1\xa0\xc8\xcf\x1e\xba\x11\x63\x98\x2f\xe7\xca\x92\x04\x71\xb9\x0c\x4d\x4f\xdb\x03\x59\x39\xa2\xab\x84\xf6\x03\xf7\x75\x8b\x04\xe5\x61\xd2\xe2\x24\x27\xac\x0c\x8b\xc2\xcf\x9d\x02\x74\x2c\xec\x91\x49\x1f\x28\x96\xec\x0b\xb9\x2f\x03\x45\x81\x48\x7a\x4d\xdb\x30\xda\x95\xf2\xb6\x28\xb1\x76\x0f\x77\x8b\xe0\x70\x24\x23\x5a\x67\xfc\xbe\xb3\x9e\x6b\x85\x08\x16\xbb\xc8\xbf\xa6\x19\x31\x6f\x40\x19\x73\xf5\xe7\x37\x14\xe4\xe1\x3b\x55\x04\xa1\x33\x6c\x59\x08\xa5\x18\xe1\xda\x4c\x5a\x9b\xf1\x67\xa4\x58\x04\xf6\x0f\x52\xfc\xa2\x15\x3c\xb4\x8e\xa9\xb0\x2d\x74\xf5\x05\x0e\x5f\xdb\x0e\x5b\x28\x19\x5c\x84\x46\x73\x34\x1e\x62\x99\x6c\x9a\xdb\x91\xc2\x01\x36\x21\x7b\xe5\xb2\x03\xab\x80\x4a\xde\xd4\x6a\xc7\xc1\x60\x41\x11\x8b\xec\xc4\x65\x29\xd7\x82\x0e\x51\x42\x5b\x4d\x51\xc1\x0b\xcf\x8f\xb6\x25\xee\xf9\xde\xde\x4e\x85\x3a\xdb\x29\x38\x91\x1a\xd8\x34\xa6\x60\xbd\xed\x3a\xe2\x04\x7b\x8a\x20\x7c\xbe\xe7\xbd\x3a\xe9\x64\xd8\x8c\x30\xd0\x6d\xa8\x9a\xcf\xbc\x82\x38\x38\x54\x03\x5b\x9f\x08\xbd\xfd\x8e\x1b\x15\x14\x18\x21\x5b\x33\x34\x90\x24\x55\x5c\xd7\xd0\x69\xc1\xef\x61\x6d\x22\xf9\xe5\x6d\x04\xc7\x62\x8b\x53\xd3\x3c\x37\xdf\xb8\x9e\xf8\x9b\xb7\x6a\x10\xab\xa7\x85\x55\x02\xf5\x72\xd8\xfb\x42\x54\x6a\x6f\x08\x80\xf1\x8e\x0f\xe9\x0c\x88\xdf\x78\xd6\x4e\x18\x8d\xd4\x7b\x94\x15\x34\x33\x9d\xe5\x33\x3f\xec\x14\x70\x60\x59\x9a\xa6\x54\x09\xd3\x92\x26\xe4\x9a\x4a\x14\x18\x9d\x81\x8f\xff\xba\xf0\x4d\x43\x6d\xc6\x69\xef\xa8\x65\xe8\x82\xda\xe6\x50\x25\xd4\x0e\x3c\x1c\x1e\x13\x1d\xf1\x76\x4d\xfd\x0b\x18\x4d\xd4\x17\xe5\x70\xa3\x21\xaa\x2d\x6a\x74\xcc\x44\x1c\x5d\xdb\x1b\x74\x73\xb4\x52\xc3\x58\xe3\x28\x4d\x3a\xca\x32\xb6\x9c\xa2\x96\x2d\xf5\xda\xae\x19\xce\x49\x1c\xa7\x83\x41\x48\x2c\x8a\x01\xcb\xb2\x14\x8e\xc4\x8a\x69\xae\x21\xa2\x64\x25\x10\x37\x24\x48\x1c\xcb\x0c\xab\x43\x3e\xf5\xfe\x5a\x7a\x40\x94\x8e\x7d\xe7\xaa\x81\x05\x3c\x59\x91\x84\xeb\x06\xf4\xf5\x95\xe4\x7c\xcd\x07\xa7\x38\x6d\xaf\x12\x4a\x09\x0b\x94\xb4\x3d\x0c\x00\x96\x88\xad\xa9\x36\x16\x76\x3d\xaa\xd9\x5b\x56\x74\x17\x26\x89\xb4\xa7\xc0\x3a\xe1\xdf\x38\xae\x08\x65\xd6\x3d\xa9\xfd\xbb\x3b\x8b\xe2\x6c\x87\x98\xc4\xe0\xec\xfd\x9f\x6a\x52\x36\xea\x0a\xdc\x8e\x85\xb8\x58\xbc\x92\x73\x6e\x67\x87\x66\x13\xde\x2e\xba\xee\x56\xf6\x88\x62\xeb\xef\x57\xab\x92\xf5\xd6\x2b\x78\xb8\xdc\xd8\x86\xd4\x5b\xbb\xe9\x0d\xfb\x99\x50\xcb\xc4\xf8\xf2\x77\x75\xc7\xae\x20\x02\x02\xcb\x18\x40\x5c\xc7\x87\xf0\x50\x76\x17\x2c\x2e\xa0\xb5\x37\xd7\x2c\xab\xbc\x08\xc9\x1e\x3e\x68\x1f\xa2\x77\x24\xd5\x29\x4f\x44\x54\x2c\xb1\x67\xf1\x53\xc9\x36\x88\x9b\x2f\xa0\xaa\xd3\x86\xb8\xef\x3a\xe2\xd9\x4c\x61\xa9\xa8\xe7\xea\x82\x0d\xb2\xc2\x96\xd6\x75\x32\x9f\xbf\x78\x57\x03\x9a\x0b\xef\x90\x20\xbe\x08\xf5\xec\xb9\xb6\x32\x9f\x36\x3f\x01\x87\x71\xa2\x20\x8b\xf1\x26\xf7\xc6\x67\x71\xd6\x71\x7c\x6e\x07\x2c\xc1\x92\xd0\xe6\xc9\x91\x9e\xe3\x55\xd4\xe6\x63\xcb\x56\x81\x8d\xab\xcd\x9f\x61\xbb\x4d\xdb\xd0\xe0\x45\xd1\xbb\x22\x7f\xeb\x0a\xf4\x97\x30\x4f\xb5\x2c\x47\x5d\xf5\x13\x52\x87\x41\x88\xcd\xfe\xc5\xbc\x09\x00\x78\xf0\x25\x32\x3e\x9c\x81\x3e\xd0\xb2\xa3\x13\x2d\x8b\x7a\x53\x41\xb6\x77\x62\xae\x70\x50\x25\x81\x45\x33\x60\x27\x47\x99\x18\x26\x70\x98\x48\x0c\x95\x18\x44\x4d\x9f\x4a\xec\x37\x76\x95\xd9\xab\x2b\x42\x6d\xcf\x76\x10\xda\x8d\xe3\xa8\xb6\x15\xdb\xaa\x98\x98\xae\xe0\xb6\x11\x2d\xf2\x27\x62\xe0\xa8\x47\xee\x47\x37\x70\x3f\xc2\x69\x11\x1f\x0a\x5d\x10\x51\xea\xb6\xa1\xdf\x17\x30\xe1\x79\x44\x1c\xc3\x54\x4b\xc4\x93\x85\xc9\x1b\x02\x04\x13\xab\xa2\x64\xaf\x88\x53\x9b\x0d\x0d\x4b\x2b\xa0\x9f\x6b\x36\xa5\xcb\x71\xc4\x22\x2c\xb7\xe0\x5c\xf4\xd6\x53\xa9\x2c\x39\x74\x79\x04\x22\xc8\x87\xa5\x6f\xad\x20\x7e\x5d\x7a\x88\x45\x96\x1e\xe2\xda\xea\x83\xc5\x14\xb0\x1b\x44\xc1\x92\x71\x8d\x83\xfc\xac\x74\xd5\x7b\x88\xa8\xc6\x8a\x33\x88\xa9\xea\xd1\x34\x2c\xb2\x77\xb0\x4b\xc0\x64\x84\xc5\xd5\xd8\x1f\xd8\x82\x45\x24\xdd\xb3\x43\x13\x7e\x98\x39\x9f\x17\x2b\x32\x75\xc8\x44\xfc\xf9\x95\xb2\x8f\x3d\xa6\xac\x32\xaa\x26\xce\x97\x09\x0e\x08\x44\xbb\xdc\x45\x71\xaa\x08\x06\xc8\x86\x75\x27\x22\x85\xf5\x16\x8c\xf8\x67\xe5\x64\xc0\x59\x4d\x7d\x16\x1b\xac\xb4\x7e\xb9\x96\x23\x39\x6f\x84\xf5\x90\x3a\x93\xbe\x8f\x7e\xa6\x47\x9c\x2d\x01\xc7\x56\x94\x34\x2f\xed\x20\xb3\x89\x25\x89\x90\x0d\x6b\xb5\xec\x50\x26\x47\x21\xaa\x37\x31\x1b\x7c\xe8\x76\x3b\x3e\x18\x5b\x60\x93\x3e\x1a\x63\x3c\x76\x79\x45\x44\x01\xed\x67\x0e\x41\x18\x35\x6d\x42\x1c\x0d\x1c\x67\x71\x3b\x16\xf5\x2b\xf6\x5f\x53\x5c\x94\xa0\xa7\xc1\x70\x02\x5d\x9e\xc1\xc2\x3f\x3b\xa2\x8c\x0f\xfb\x40\xa5\x36\x52\xa9\x1d\x53\x69\x20\xc2\x78\x62\x25\x12\x21\xf2\xae\xba\x2c\x66\x0c\xa6\x06\x8b\xb4\x54\x2f\xb3\x90\x2d\xae\x64\x17\x53\xeb\x48\x54\xea\xcf\x62\xbe\xaf\x64\x7c\xd0\xb3\x98\xf4\x2a\x8e\x57\x6c\x41\x41\xf3\x0d\xc6\x53\x5d\x32\x66\x38\xc0\xec\x9c\xf8\xfa\x1e\xa4\x8e\x73\x42\x36\x14\x12\xc3\x82\xa9\xd1\xdb\xe2\x42\x55\x8c\x0c\xde\x08\xb5\xc1\x2c\xe2\x82\xf1\x53\xbd\xe1\x34\x3f\x38\xc4\xb9\x08\x28\x70\xb2\x93\xba\x93\x8b\xb2\x5e\x82\x3d\xc0\x98\x81\x32\x22\xfc\x01\xbe\x65\x55\xd9\x46\xf6\x08\x95\x52\x8a\xde\x12\xff\x96\x2a\x42\x8a\x9a\x70\xf5\x0c\x09\x66\x5f\x1b\xda\xf1\x02\xc2\x1f\x39\x8a\x98\xc0\x39\x64\xc1\xcb\x48\xad\xbf\x44\x22\x7d\xb5\x49\xd6\xd1\x78\x0b\x28\x25\x46\xd0\x93\xac\xe5\xc0\x10\x0e\x99\xf9\x37\x18\xbf\x13\x6d\xcb\xfb\xc5\x06\x73\xa0\x8c\x14\x4e\x9c\xb4\x8b\xa7\xee\x8a\xd2\xf2\x09\x23\x38\xa3\xbf\xd6\x13\x63\x37\x73\x7e\xed\x47\x31\xe2\xfb\x63\x8c\x44\x81\x18\xc5\x40\x5f\x4d\x85\x40\x20\x9c\xa0\x00\x04\xd2\x59\x27\x9a\x00\xda\xc5\xde\x24\xa0\x95\xd5\x04\x2b\x7a\x03\x13\x93\xea\xac\xcc\x73\x08\x05\x4e\x9d\x04\x62\x25\x41\x3b\x1f\x4b\xdc\x45\x76\x51\x13\x45\x7d\xfc\x3f\xe2\x45\x65\x7d\x19\xd5\x68\xc0\x24\x78\xe3\x23\xe7\xec\x38\x8b\xea\xbc\xf9\x28\x38\x48\x95\xc2\x65\x52\xf5\x9b\x7a\xb2\x63\x9f\x24\xb0\x9e\xa6\x33\x7e\xa3\xd8\xf5\xe2\xc0\x21\xf6\x1b\xb3\x90\x31\x28\xb7\x7f\xd2\xc2\xbe\xbe\x79\x0a\xa7\x80\x16\x72\x8e\xe8\xf4\x87\x27\x8f\x35\x95\x0f\x04\xc3\x1c\x93\x58\x2a\x78\x8c\x3f\xbb\xee\x79\xbf\x62\x1b\xf9\x13\x93\x6d\x1b\x7b\x95\x7f\xf9\xa0\xfd\xf2\xa9\xba\x11\x68\xdf\x22\x26\x9e\x3c\x36\x4f\x69\x2b\x00\x78\xf8\x91\x94\xbc\x59\x1d\x94\xdc\xab\x5b\x67\x76\xc5\xfe\x9f\x24\xed\xb8\x0c\x3b\x37\xd5\xb4\xe8\x5a\xf6\x3a\x63\x8a\x33\x91\x63\x50\xd5\x8b\xb8\x6a\x66\xa6\x4b\xb5\x3a\x99\xe9\xc4\x9a\x72\xc1\xca\x57\x46\x89\x6a\x64\xeb\x68\x93\xd3\x66\x00\x80\x64\x2f\x16\xb1\x10\xab\x01\xe3\x42\x37\xae\xdb\x12\xba\x88\xa8\x59\x7f\x40\x59\x53\xd2\xe0\x8b\xdb\x8c\x77\x11\x5c\x83\x2f\x1d\x5c\x27\x09\x85\x9e\x8a\x90\xa7\x2d\xb3\x70\xe7\xb3\xe2\x40\x75\x81\xd6\x5f\xd9\x1b\xa6\x24\xb4\xc9\xba\x6f\xe8\x25\x41\xda\xc2\xd3\x35\x34\xb0\xdb\x2f\x02\x57\x01\x22\x06\x3c\x85\x14\xae\x63\xbf\x1c\xc0\x1a\xd8\xac\xc0\x63\x7a\x2b\xc6\x02\x4f\x57\xc8\x24\x99\x19\x36\x0a\x22\x24\x8d\x1c\x5d\xf0\x86\x81\x04\x86\xd8\xb1\xb9\x9b\x10\x65\xb2\x1a\xde\x6c\x5d\xcb\xdd\xa4\x3f\xa8\x19\x6c\x00\xcd\x64\xff\x99\x94\x85\xdb\x36\x5d\x77\xa2\x63\x87\x55\x07\x4d\x61\xa4\x70\xfb\x63\xd4\x2e\x7a\xd1\x4f\x96\x1c\xce\x86\x88\x20\xd4\xfb\xc7\x6f\x8d\x5b\xad\xc0\x2f\x3d\xb7\xc8\x5e\x07\xf3\x48\xd4\x70\x3d\x38\xe8\x4b\xec\x18\x61\x7d\x80\xe9\xf4\xd5\x8a\x18\x0b\x3b\x1f\x49\x3d\x3e\x29\x4c\xcc\xf1\xa0\x3d\x9b\xec\xb0\xbb\x01\x93\x11\xc4\x2e\xbb\x1a\x96\xbf\x28\xa3\xb2\x37\x48\x48\x7d\x8a\x2e\x54\x01\xb1\xde\xc7\x54\x4f\xb5\x7d\x49\x24\x65\xe2\x35\xce\x65\x69\x03\x8b\x3f\xad\x0a\x36\xad\x10\xe3\xc1\x21\x98\x56\x51\x67\x56\x97\x90\xf8\x19\x79\xa3\x8f\x37\x18\xca\x41\x4a\x90\xc3\xcc\x55\x8e\x2f\x5e\x78\xaf\xca\xd0\xbe\x34\x72\x6a\x84\x5f\xc1\x93\x92\x3d\x14\x8e\x64\x83\xc1\x20\xa4\xe2\x40\x74\xee\x1d\x76\xe7\x89\x1f\x67\xca\xf6\xb4\xcf\xc9\xa2\xd0\xa1\x84\x11\x0f\x46\x3b\x9b\x29\x33\x40\x1b\x5b\xc1\x45\xe7\xf1\xe8\x9b\x0c\x23\x4f\xd9\xfe\x17\x20\xa8\x60\x05\x64\x61\xb7\x77\x2a\x7c\xaa\xf9\x7a\xbc\x42\x08\xf7\x7a\xf3\xbd\x10\x09\x2b\x07\x51\x17\xbc\x76\x6d\x2f\x1a\x23\xa9\x83\xc9\xa1\x5f\x5c\x88\x32\x9c\xb0\x14\xd3\xd4\x40\x49\x6f\x0e\xb7\x6c\xa5\xe0\x64\x30\xec\xc0\xe5\x4f\xc7\x1b\x71\x00\x53\x75\xb2\xb1\xea\xd1\x07\x5d\x35\xd9\xa7\x32\x4d\x6a\xfb\xfe\xa4\xd8\xef\x4e\xc3\x19\xb1\xe6\xeb\xe9\xf0\xd9\xc3\x64\x1f\x28\x5d\xe1\xbd\xcd\x1e\x5a\x42\x85\x81\xfa\x23\x4e\xbf\x9a\x88\xa7\x7b\x69\x72\xfe\x2a\xbb\x38\x7f\xf3\xfa\xe3\xff\x8c\xa2\x44\x89\xcf\xc8\xce\xa5\x83\x77\x84\xf7\xcd\x1a\x75\x2c\x78\x68\x69\x0f\x75\xa3\x38\x84\x52\xa7\xb1\x14\x24\xee\xb3\x47\xa0\x91\x79\x44\x23\x1a\x18\x09\xa8\x5f\xbb\x15\x71\x2d\xbe\x90\x60\x2c\x57\xae\x72\xc4\xf7\x88\xce\xf9\xc8\x58\x77\x63\x86\xb7\x66\xf7\xef\xfd\x02\xd9\xfb\x2b\x29\xe3\x6c\x9a\xbd\x48\xec\xa7\xc9\xe9\xc3\xf4\x94\x2f\x1e\x4c\xa8\x04\x86\xeb\x0b\xb1\xb0\x9a\xcd\xf0\x3b\x18\x9b\x06\x6e\xd8\xbc\x70\x57\x8d\xbd\x76\x38\x9e\x5e\x8b\x71\x0b\xd6\x5d\x39\x7b\x43\xd7\x03\xda\xfb\x8a\x7a\xbb\x76\x01\xe7\x34\xeb\x70\xc4\xe1\x3d\xcb\x6d\xfe\xce\xff\xfc\xf8\xaf\x9a\x8e\xe4\xe0\x01\x0e\x06\x9e\xda\xdd\x5b\xaa\x76\x6f\x88\xa7\x10\x1b\x6f\xf3\x2f\x7b\xf4\xaa\xc8\xe0\x1e\xf4\xe5\x53\xd2\x76\x69\x47\x63\xa9\x21\x82\x78\xca\x26\x9d\xf7\x62\x41\xc4\x95\x16\x33\x18\x30\xe7\xb1\x6f\xb0\xe4\x15\x46\xd3\x26\x5d\x78\xc5\x26\xe0\xda\x6f\xb6\xd5\xbf\x2d\xf6\x5a\x1d\x3e\x92\x4e\xa2\x9e\xe4\xbc\x47\xd8\x94\x85\x1f\x88\xd2\x0c\x27\xe3\x0a\x53\xb8\xbe\x14\x52\x26\xfb\x5d\x31\x87\xf3\xae\x72\xb1\xa1\x89\xdf\x54\xec\x71\x48\x6b\x88\xf8\x2c\xee\x3f\xd1\xdf\x0f\x26\x24\xdc\x55\xbe\xc0\x8e\x5f\xc1\x41\x44\x4b\xe8\x06\x38\x8b\xa9\xa8\x63\xca\x33\xac\xe7\xa6\xc9\x78\xb0\xce\x7d\x1d\xaf\x9f\x1d\x9f\xbe\x7c\xb6\xd8\x15\xc1\xcb\x89\x11\xcc\xee\x4d\x29\x7e\x89\x4e\x4d\x5f\x7a\x4b\x66\xfe\x9a\x8d\x97\x3f\xaa\xf1\x72\x4f\x73\x26\x74\x5c\xfb\x5b\x4c\xb4\xf1\xeb\x60\x8b\xc3\x51\xb3\xfc\x20\xee\x25\x8e\x57\xd9\x57\x44\xfc\x34\xe8\xaf\x0f\x18\xf6\xfc\x51\x52\xd2\xe3\x07\xed\xbf\x87\x79\x6f\x74\xe6\xf3\xa0\x3d\x60\xe4\xab\x2c\xac\x01\x7d\xc7\x17\x7b\xa2\x63\xee\xf8\x24\x5a\x2f\x60\x0d\x6f\xbf\xec\x92\x7b\x58\x29\xc0\xa1\x05\x70\xe3\xca\x92\x74\x2d\x6c\x7f\xd2\x75\x80\x05\x90\xad\xca\xde\x7e\xf9\x54\xf0\x19\x16\x81\xaf\x94\xa7\x89\x6f\x7d\x0d\xe6\x49\xb3\x17\x7c\xed\x60\x49\x6a\x59\x03\xf6\x7f\xda\x33\x93\xce\xc2\xb1\xff\x01\xc0\x44\xcb\x5a\x53\x67\xb8\x5f\xf1\x3a\xc0\xe3\x9f\x5f\xbc\xe1\x33\x5c\x9a\x43\xf6\xc8\xce\xc4\xc5\x3c\x83\x37\xe6\x22\x56\xe9\x0f\x75\x18\x66\xe4\xaa\xc9\x69\x36\x71\xc4\x38\x4a\x4c\xdd\x59\x62\x60\xc1\xce\xbe\xe9\xa0\xce\x2e\x94\x4e\xde\xd3\xac\xf0\x0a\xd7\xf5\x18\xd7\x38\xdf\x02\x68\x6d\x79\x15\x17\x37\xc3\x88\xec\x85\x72\xc0\x87\x33\xe9\x22\x60\xb9\xb0\xbf\x5d\xc2\x64\x46\xa2\x60\x0f\xed\x0b\x2e\x39\xef\x49\x70\x2e\x91\x23\x89\xb4\xbb\x64\xc5\x6f\xcf\x27\xf3\x5c\xc6\x11\x7d\x9d\xff\xbd\x08\x77\x36\xe6\x31\x02\x75\x7a\x61\xc4\x5b\x45\xc7\x31\x83\x73\x6c\xd9\xe3\x1b\xb9\x65\xc1\xa4\xf1\x43\xf6\x8e\xfd\xae\xb1\x3b\x91\x13\x82\xfc\xcb\xe5\x8a\xd8\xc5\xfb\x2f\x93\xdd\x0a\x5f\xf8\xc4\x06\xe5\x0b\x28\x86\x37\x7c\x9c\xcd\x1b\x28\xb1\xdc\x91\x16\xf4\xf1\xff\xdd\xbf\x27\xe9\x6c\x2a\x07\x18\xac\xe9\x24\xed\xd1\x69\x1c\xc8\xd7\x7c\x65\x14\x69\x30\xaf\x0b\xba\x84\x43\x32\xa1\x2b\x33\xf3\x0a\x78\x91\x32\xb5\xdf\x7b\x60\x03\xbb\x31\x9b\xff\xcc\x7b\xb2\xc6\xec\x5d\x61\xfc\x88\x3b\xa2\x12\x65\x16\x18\xd8\x94\xcf\x0c\xfc\x26\x99\x21\xd2\xb6\x0f\xce\xca\xc2\x5d\x44\x25\x4a\x96\x02\x5a\x70\xde\xed\x90\x9d\x9a\x61\xbf\x86\x7f\x06\x36\x3b\xd2\xd4\x05\x7d\x7b\xee\xac\x44\xc3\xb7\x7b\xe0\x36\x3d\x2d\x7d\xff\xde\x1c\xbb\x22\x05\xb1\xb1\x36\x3f\x2e\x57\xb6\xa1\xd4\x37\xf4\xf1\xb5\x87\xe4\x0b\xa5\x9d\xd9\xb4\x28\xe2\x22\x87\xfb\x0f\xd9\x1b\xb3\xf1\x40\x76\x94\x8b\x63\x1e\x2a\xc1\x10\x93\x0b\x84\xa5\x59\xd9\xb2\xcd\x9f\x75\xb0\xee\x74\x7c\x37\x84\xf8\x2e\x61\xaa\x22\xb0\x37\x8d\x21\x71\xd1\x14\x4c\x59\xbb\x9d\xeb\x5a\x22\x3b\xfc\x85\x04\x29\xad\x69\xd1\x94\x23\x96\x80\x83\x12\xb6\x4b\x37\xe6\x26\x3f\xa7\x81\x3a\xd1\xe2\x39\x8d\x26\x82\xef\x1b\x9e\x90\x38\xae\xcb\x7a\x03\x5a\xe6\x0c\xbe\x1c\x80\x12\xef\xc4\xd7\x74\x58\x8c\x55\x2c\xa6\xff\x0b\xff\x8b\xed\x82\xd2\x91\xc5\xb0\x43\x6d\xcc\x18\x5e\x7a\xe4\xa5\x7a\x1d\x2e\xfa\x7a\xa0\x2b\x6c\x6d\x4e\x00\x10\xd3\xc0\x52\xeb\x06\x67\xa2\x2c\xf2\x7c\x32\xfc\x64\x60\x6c\x7d\xc9\x7f\x37\xd0\x6c\x7c\x16\x2c\x9f\xf9\x29\x7b\x70\xfa\x24\x75\x3b\x26\xda\xa7\x56\xd7\xc4\x9e\x13\x70\x22\x34\x9f\x17\x76\x90\x7e\x4a\x90\xa9\xea\x7c\xbc\x78\x19\xb3\x16\x3a\x4f\x67\xfc\x67\x90\x53\x41\x92\x53\x2a\x2d\xbe\x8c\xb3\x07\xb9\x6b\x9a\xa6\x66\xa9\xa5\x4f\xf0\x91\x95\xd3\x3a\xc2\x9c\x13\xcb\xd6\x5f\xe3\x36\x22\xc8\x2b\x48\xca\x39\x28\x69\x2b\x02\x4a\x73\xbb\x59\x58\x52\xab\xab\x04\xf4\x9c\x3e\x63\xad\xed\xa8\xda\xba\x85\xbb\x64\x52\x2f\x12\x0e\x81\xc3\xd7\x61\x53\x61\x05\xe9\x8f\x99\x3e\x06\x18\xe9\xa2\x99\x83\x84\x09\xc0\x83\xd1\x90\x27\x30\xc2\x3d\xfc\xf5\xef\x17\x48\x4c\xcb\xfb\x49\x11\x03\xa3\x2e\x2f\x33\x85\x58\xee\x4b\xb3\xb6\xa9\x53\x3b\x3b\xd6\x84\x12\x7c\x6b\x77\xd0\xa4\xd6\xac\x0d\x0f\xa7\x9c\xd1\xda\x99\x55\xfe\xa0\xc8\x8e\xf7\x70\xa3\x8f\x85\x81\x35\x9f\x77\xb2\x75\x7d\x1b\xf3\x68\xc1\xc1\x2d\x5a\x2a\x7e\x36\xe9\x6c\x9a\x4d\x8a\x0c\x64\x19\xfb\xc1\x28\x5f\x0e\x7d\xcd\x5a\xaf\x06\x4e\x0b\xc7\xe9\xf3\x5c\xa5\x3e\x08\x92\xb6\x51\x67\xf2\x8b\x26\x7c\x4a\x49\x5a\x30\x9d\x72\xbb\x41\xeb\xbc\x01\x99\x00\xe1\x40\xe4\x50\xe5\x13\x6a\xd1\x62\x41\x7d\x9a\xcb\x58\xe0\xba\x83\xf2\x54\x7f\x7b\x74\x1f\x78\xeb\x1c\x7c\xab\x57\xfe\x49\x8c\xdf\xd6\x7d\xe8\x30\xc9\xe2\xac\x9b\x6d\x5b\x27\xbd\x58\xae\x6e\xb9\x04\x4f\x3b\x6f\x7f\x0e\xc0\xf3\x96\x98\x76\xbb\xa4\xdc\x33\x3c\x8c\x9f\xb0\xec\x30\xce\x4d\x35\x19\x47\x0b\xdf\xd0\x4b\xfa\x6f\x2e\x63\x81\xf8\x07\x2d\xa6\xfa\xc6\xb6\xf3\x10\xa0\x5c\x82\x38\xe7\x3f\xb3\x10\xc2\xec\xe4\xa0\x28\x7f\xcd\x1f\xe5\x6d\x26\xdf\xc5\x7c\xab\x24\x5b\x7c\x81\x33\xfc\x56\x86\xf9\x89\x62\xbb\xba\xed\xc0\x6c\x61\x50\x7c\x89\x8b\x99\xfa\x71\x57\x2b\x1e\x5e\x9a\x99\x16\xc0\x8a\x62\xec\xe7\x06\xeb\xa9\xce\x1e\xfc\xf2\xcd\xaf\x2d\xf0\x1f\x6c\xb7\x8f\x1f\xfc\xf2\xed\xaf\xa4\x11\xf1\x1f\x68\x44\xd3\xc2\xcb\x2b\xf3\xde\xe6\xf2\xa9\x35\xac\x48\xc5\x47\x81\x00\xbc\xc7\xfe\xb6\xee\x5b\x0d\x44\x81\x6d\x0b\x6c\x52\x55\x97\xf2\x95\x3f\x3a\x9f\xad\xa6\x10\xda\x83\x8e\x56\x3f\x9b\x04\xc0\x50\x87\x4b\xbf\xd0\x1c\xe1\x9e\xb1\xca\x7e\xb7\xd4\x51\xb7\xe0\x0c\xfe\x77\x2c\xec\x51\xb2\x34\x5d\xfe\x5b\xf8\xca\x4c\x07\x0c\xb8\x82\xb4\x41\x8c\xc7\xab\x86\x7f\x27\x5f\x11\x19\xbf\xc5\xa6\xea\x60\xee\x7d\xb3\x85\xbd\xc1\x61\x8b\x13\x8c\xcf\xb7\xb6\x5b\x8c\xb8\x95\x44\x22\xe0\x1e\x8f\x72\xb4\x1f\x29\x04\xc7\xd5\xd0\xf4\x00\xdd\x58\x46\x8a\x80\xbd\xe6\x8f\x71\xde\xb0\x2a\x81\x99\xad\x4b\xd9\xaf\xa7\x98\x93\x71\xb6\x60\x99\xb1\x24\x12\xea\xaf\x47\x91\x74\x49\x6b\xf1\x1f\x7f\xa2\x1e\x9c\x42\xf1\x4d\x6d\xfc\x09\xa9\xec\x07\x97\xab\x33\xb2\xa7\x19\xb6\xdc\x9c\xe3\xff\x90\xe6\xef\x99\x90\x3a\x4e\x9b\x17\x6b\x39\x34\x09\xad\x3c\x6c\x5b\x70\x38\x61\x87\x90\xae\x5a\x7a\xbf\x66\xd6\xd7\x69\x91\xc0\x2d\x27\xeb\x78\xa3\x56\x57\x50\xbf\xf8\xdc\x6d\x91\x1d\xeb\x01\xc1\x16\xe7\x12\x26\xb9\xb7\x32\x38\x08\xe1\xe6\x50\x41\xed\xe7\x60\xb0\xaa\x48\x5b\xec\xf2\x67\x85\x8b\xa8\xc7\xf5\xb7\xfc\x92\x0f\x15\x34\x45\x64\x55\x17\x5d\xc0\xa7\x22\x58\x40\xd6\xa4\x92\x36\x34\x97\xb8\x67\x75\x07\x10\x4c\x72\xb4\x3a\x6c\xd4\x93\x07\x00\x91\xc8\x78\x11\x85\x93\x1c\x33\x94\xc1\x02\xcc\xfd\x8f\xce\xf2\x83\xbc\xa1\xd3\xcc\x28\x73\xe4\x67\x9f\x4d\x25\x75\x52\x09\x3c\x4c\xbc\x75\xf3\x53\x80\x32\x6f\x0a\xcd\x97\xa9\xa2\x4c\xf7\x9e\x95\xec\xa2\xd0\xe2\x50\xbf\xe2\x4b\xe8\x72\xa8\x8f\x59\x1a\x09\x3e\x39\x2f\x2f\xf9\xdc\xe1\xdd\xc4\x66\x38\xdf\xbe\x37\x04\x87\x8e\x06\x5b\xe4\xf0\xe4\xfc\x0b\xf1\x1a\x2a\x4b\xe6\x4b\x7b\xaa\x72\x29\x47\xf2\xbc\x11\xc0\x37\xa9\x36\xfc\x7d\x00\x4c\x46\xea\x61\xbb\x1b\x98\x15\x65\xd3\x24\x61\x79\x88\x4d\x67\x38\x9a\x2f\x61\x8b\xe1\x3d\x23\x13\xbd\x96\x5e\xf8\x5a\x89\x95\x35\xb6\xed\x4b\xe2\x99\xaf\xb0\x4b\xe4\x9f\x04\xd9\x57\x72\x60\x1f\x37\x51\xa2\xd8\xdb\x9b\x54\x67\x4e\x72\x53\x85\x4d\x78\x76\x92\x39\x54\xd9\x94\x6f\x8f\xf3\x0b\xaf\x0f\xc3\xb7\x34\x6d\x97\x76\xcf\x3d\xad\x48\x0e\xc2\x53\xb3\x9b\x79\x61\xba\x69\xeb\xf9\x7c\xb3\x9e\xeb\x0e\x47\x42\x13\xb5\xda\xd2\x0a\xc6\x4d\x14\xd1\x3f\x63\x3e\x96\xab\x3a\x4d\xda\x0c\xd7\xb1\x32\x9d\xeb\x61\xe5\x03\xb5\x79\x1e\x29\xb2\x6c\xf9\xfe\xc6\x20\x3d\x31\x6d\x72\x28\x87\x61\xa6\x1f\xec\x29\x8d\xf4\x14\x95\x7f\xe5\x03\x3e\x7c\x3d\x1a\x9e\x85\x87\x21\xfe\x1f\xa4\x87\x8b\xc0\x5a\xd1\x52\x62\x2d\x70\x7d\xf8\xd6\xd8\x0b\x90\x5a\x0a\x7a\x94\xed\x7a\x22\x90\x95\xcd\x1e\xde\x52\x6d\x8f\x76\xbb\x47\x45\xf1\x70\x6e\xbc\x81\xc0\xc3\x80\x47\x47\x99\xaa\xe5\x8d\x0f\x33\x93\x8a\x02\xd7\x3b\x80\x34\xe4\x27\xd3\xf3\x96\x04\xe2\x0a\x9c\xaa\x51\xbb\x09\xe3\x82\x89\x39\x99\x32\x3e\x6a\xa9\xf7\xb4\xb2\x6f\xea\xea\x21\x0f\x05\xe7\x11\x7a\xfc\x9b\x0e\x43\x5c\xae\x4e\xf8\xcf\x20\x27\x65\x4a\xb7\x77\xf7\x4d\x50\xa0\x0b\x34\xab\xaf\x62\x4f\x46\xd8\x00\x3f\xbf\x0b\x17\x81\xc1\x45\x74\x9e\x6a\xd2\x2c\x9c\x37\x8a\x83\xb7\x8a\x58\x8a\x2d\xb3\x89\x13\x31\x5e\x48\x22\xd1\x2e\xdd\xb3\x37\xc6\x16\xdc\x38\x38\xb7\xe4\xc9\x51\x7a\xce\x4e\x6b\xd0\x77\x76\x63\x48\x6b\x91\x83\x29\xf6\x50\xfb\x61\xbe\xed\xe9\xd4\x87\x71\x0a\xb7\x9f\x8c\xf4\x60\xa4\x29\x9f\xbc\x10\xca\x6e\x69\xed\x8e\x73\x92\x8b\xc9\x84\x9f\x13\xff\xa5\x56\xb3\x00\xb6\xad\xeb\xf7\x6d\xfe\x0f\x76\xc5\x3f\x92\x8c\x8d\xeb\x24\x0f\xa1\x6f\x9e\x8f\x32\x57\xa6\x75\xeb\x43\xa1\xb2\x24\xf4\x4f\x02\x5d\x60\x9e\x9b\xe5\x07\x6c\xfa\xfe\x07\x6c\x70\x17\xb8\x57\x44\x92\xb6\x35\x09\x54\xf4\x8e\x7c\xeb\x2f\xed\x27\xb9\xea\x5e\x16\x9a\x0c\xfe\x72\x07\x10\xa3\x0e\x5a\x30\xc0\xcd\x1d\x3d\x25\x5e\x8e\x87\x8a\x04\x2f\xa9\xb1\x95\x3f\x78\xd5\x78\x37\xc8\xbf\xc9\xed\x91\xef\xbd\xfa\xba\xe7\x04\x65\xe8\x1f\xe2\x5e\xc0\x7b\x1c\x1b\x67\xf6\x22\xe7\x9b\x6e\xc1\x03\x7d\x06\x52\xed\xe4\x09\xb8\x46\x2a\x4a\x46\x63\xe2\xb5\x87\x70\x95\xc5\x4c\xfd\xe6\x35\xa0\xce\xef\xec\x0f\x87\x53\x75\x58\xe8\x21\xef\x8b\xd1\x7d\xeb\x45\xd2\x0f\x8e\xe0\xc6\x37\x51\xe0\xbc\xdf\xca\xf1\x89\x5c\x1e\x10\xb3\xea\xe0\xce\xc9\xd6\x84\x2b\xe4\xa3\x53\xa0\x32\x58\xc6\x31\x17\x0b\xd0\x8f\xf7\xbb\x6a\x83\x77\xa5\x8c\x81\x01\x52\xda\x1b\x3a\x1f\xcf\x58\x7f\x47\xa0\x3e\x6e\xa2\xc9\xae\x11\x08\x28\x78\x11\x78\x47\x7e\xf1\x7a\x4d\x5d\x8d\x2a\x6f\xcc\xef\xf4\xd0\x19\x7e\x58\x96\x3a\x33\xbc\x0b\xcc\xd7\x69\xf9\x42\x70\xb8\xdf\x3c\x99\x2f\xf8\xd7\x11\x03\xc8\x9f\xec\x9f\x3e\xc2\x28\x89\x81\x9b\x78\x18\xde\x26\x67\xf4\x03\xcc\x89\x0f\x48\xb8\x3c\x83\x88\x03\x05\x26\x6a\xf1\xe4\xf1\xfe\x29\xd7\x75\x82\xa3\x23\x1c\x82\x50\x75\x31\x28\xc9\xdd\x15\x8e\x29\x00\x26\x6b\xdc\xfd\xb5\x40\x77\xcd\x47\xb3\x49\x21\x6e\xeb\xf0\x82\x4d\x3d\x42\x6b\x61\x56\x93\x83\xdd\x4f\x39\x83\x4e\xf1\x25\x9b\x96\x60\x2e\x4d\x0e\x9d\x03\x2c\x34\xb9\xe5\xdc\xd2\x99\xab\x4f\xfc\x29\x8a\x70\x80\x3d\xb9\xd7\x11\x6e\x70\x8c\x3d\x39\x07\x9c\x37\x3d\xc8\x8f\x07\xf8\x76\x70\x80\x1f\xc0\xe1\x93\x14\x99\x75\xdd\x44\xb7\x2d\x99\x98\x34\xef\xae\x72\xa9\x4f\xe0\x4c\xc9\xa9\x33\x60\xda\x67\x91\x7b\x07\xeb\x3b\x50\x13\x62\xf7\x8d\x06\xcf\x57\xba\x1c\xdf\xd4\x59\x4a\x20\x84\x78\x51\x4b\xc8\x54\xef\x62\xb1\x75\x73\x44\x61\xde\x03\x29\xbd\x09\x9b\xb8\x2e\xe2\x02\x6f\xda\x91\xc5\x08\x1b\x37\x22\xc5\x22\x02\x55\xac\x8d\xc5\x9d\x77\x13\xf2\x52\x4f\xa8\x4f\xdc\x05\x5b\x9a\x23\x9c\xa4\xa1\xa7\x90\x72\x1c\xe6\xc6\x5e\xc3\xc3\x87\xe6\xde\x6d\x48\x90\xf1\x51\x63\x76\x71\x7e\xf9\x66\x91\x9d\xc3\xe7\x27\x32\x0a\x8e\x41\x46\x62\x8d\xef\xa3\xf9\xc8\x08\x24\x00\x24\xaa\x49\x27\x37\x0c\x09\xd5\xec\xde\xeb\xaf\x22\xe0\x76\x0e\x62\x88\x4d\x2e\xd7\xb4\x7b\xbb\x66\x10\x88\x98\xb7\xb0\x57\xb1\x63\xc4\x78\xdf\xa5\x3c\xfd\xce\x43\x3a\x39\x19\x33\x01\x25\x6c\x26\x58\xcc\x88\x7b\x0d\xbc\x48\x28\x60\x99\xaf\x0e\x8e\x82\x21\xd8\x78\xaf\x7a\x66\x5f\x26\xf8\x20\x70\x6e\x27\x11\x91\x98\x0b\xfa\xc8\x72\x60\x84\xea\x00\xc0\x2c\x5a\x51\xad\xc1\x7c\x48\x72\x54\x6c\xdf\x16\xc7\xb5\x10\x54\x20\x78\xc4\x3a\x9e\x7c\x19\xe4\xc0\x21\xdd\xce\x74\x9b\xb7\xd2\xd2\xf5\x4b\xec\x5a\x91\x06\x72\xc3\xc6\x51\x9c\x56\xd4\x5f\x49\x22\x3f\x18\x8e\x88\xa0\x06\x27\x1c\x7d\xfa\xb8\x69\xd9\x19\xce\xb0\xd8\x9d\x92\xaf\xe9\xfb\x7c\xbe\x8e\x1d\x02\x7d\x30\x17\x55\x49\x82\x96\xe6\x3a\x14\x95\x8e\x11\x05\x7a\x80\x89\xc3\xe3\x18\x50\x19\xa8\xc2\x47\x85\xe7\xf9\x10\x4c\x57\x2e\xd7\x99\xac\x58\x5d\x0b\x77\xae\xd5\x64\xcd\x24\xf1\x36\x71\x28\xc9\x0a\x0c\xa6\xbb\x09\x9e\x05\x4f\x10\xcd\xe0\x29\xa8\xfe\xc9\x63\xfe\xc9\x74\x8b\x63\xf6\x48\xa6\xe6\x08\x57\x37\x9d\xdd\xa9\xfb\xdc\x80\x52\x69\x6b\x4c\xd3\x2d\x2b\xc9\x5c\x4b\x40\x20\x04\xbc\x83\xf3\x3b\x7b\x69\x85\x7a\xd4\x3b\x11\xf6\x6a\xf1\x56\xf0\xc1\xee\x0a\x90\xcd\x35\xac\x0a\x70\x81\x8d\x8e\xc0\x54\xb1\xab\x48\xd7\x5e\x2b\x5b\xe1\x91\x7f\xf5\xdf\x2e\xcf\x5f\x1d\x65\x7f\x3c\xba\xb9\xb9\x79\x84\x1a\x1e\xf5\x0d\x13\x5b\x61\x69\xc3\xf6\xdf\x5f\x9e\x1d\x65\x76\xbd\xfe\x5a\xbb\xd0\xe1\x2e\x9c\x9e\x56\x0f\xfb\x2d\x8a\x4f\x55\x43\xc1\xf9\xeb\x16\xd9\x78\x8d\xed\x25\x9c\x00\x87\x43\xd4\xd0\x02\xf0\x53\x18\x8a\x0e\x10\x45\x08\xdc\xcb\xf6\xd0\x37\xf4\x91\xea\xc9\x96\xf6\x88\x1d\xd1\x39\xfe\x24\xe9\x8c\x5a\xef\xdd\x05\xb7\x4f\x4e\x70\xb8\x88\xd8\xd8\x15\x1f\x22\x0b\x92\x12\x6f\x1b\x9d\xfd\x1f\x26\xd5\xf0\x81\x76\x5d\x95\xb7\x12\xae\x2d\x4c\x9c\x50\x01\x72\x95\x0a\x06\xf4\xc4\x11\x58\xe4\x42\x5d\x3d\x49\xf7\xbe\x07\xc7\x12\x64\x8f\x66\xaa\xeb\x0c\x18\x43\x38\x92\x40\x30\x38\xdf\x90\xa8\x5d\xbe\xc7\x5d\xed\x17\xb5\x0f\xb9\x27\xfe\xf8\x6e\x4c\xce\xe3\x65\x20\x82\x70\xb2\x18\xe6\x44\xa0\xae\xb7\x54\x88\xf0\x7a\x9b\x0a\x11\x85\xfc\xe4\x92\x8b\x97\xaf\xa6\x1a\x69\x68\x27\x1a\xdb\xa6\x0d\xc9\x61\x07\x14\x09\x30\x1d\xb9\xc1\xc8\x17\x8e\xb1\xcb\xd5\xa4\x91\x70\x1b\xba\xf9\x8c\x78\x05\x30\xd4\x96\x66\xfd\x7e\x19\xd7\x7c\x10\x96\x03\xcb\x6b\x76\x09\x30\x76\x3b\x87\x87\x94\x77\x16\xf2\x4e\xac\xc9\x8e\x25\xa5\x4c\xae\x5a\xfc\x3c\xd5\x5f\x75\x94\x37\x0e\x4d\x3a\xca\xc6\x0e\xac\x12\xeb\xc2\x70\xf7\x57\xd8\x7d\x59\xdf\xca\x0d\x85\x53\xd7\x92\x70\xd8\xa8\xfb\xb8\x1b\x0d\x2f\x42\xe6\xc7\x45\x41\x78\xc2\x67\xf6\xf7\x36\x55\xf4\xd9\x9f\x24\x56\xf8\x8f\xb4\x85\x87\x1d\x1a\x76\x0f\xf1\x24\x37\xd5\x6d\x26\x10\xf0\xe2\x1e\x68\x9e\xa9\x45\x6a\xa6\x7b\x23\xb6\x9e\xae\xcf\xa1\xd3\xfd\x69\xa8\xfe\xb0\xd3\x7d\x5a\x32\x7a\xde\x27\x25\x3f\xcb\xf3\x7e\x80\x9e\xb1\x3f\x7d\x1c\xe5\xe7\xb8\xd4\xcf\x0d\x38\x98\x60\xd4\xaa\x32\x8b\xf1\x19\xf8\xa9\x29\xa6\x48\x07\x16\x6d\x31\xa9\xe1\x45\x36\x2e\xb6\x65\xf3\x55\x37\xf4\x51\xbb\xcb\x1c\x73\x67\x47\x3c\x3e\x12\xc4\x7e\xda\x30\x43\x3a\xce\xd5\x82\xf4\xd8\x9b\x16\x4e\xfc\x7d\xb3\xb6\xf9\xe5\x15\xfc\x99\x4c\x12\xe0\xa7\x45\x38\x2f\x3e\xb7\x63\x70\x98\x9a\x89\x34\xe4\x8f\xa6\x89\x4f\x48\xbe\x56\x77\x1a\x4e\x43\x80\xc1\x51\x5c\xc4\x53\x4a\xe7\x60\xd6\xac\x1f\x27\x37\xf2\x16\x5a\xa6\xdd\xd6\x37\x4b\xfc\xe2\x7b\x08\x2d\x1f\x7b\x92\xbc\xe2\x72\x97\x48\xf1\x70\xf8\x2d\xb8\xf7\x8e\xb2\x0f\x0a\x70\xda\x78\xa7\x93\x95\xb6\xe8\xaa\x8c\x6d\x4e\x02\xaa\xac\x33\x01\xb0\x69\x76\xb2\xc9\x89\xae\xb7\x1e\x5d\xb4\xf4\x7f\x7c\xf1\x4a\xbf\xd8\xeb\x87\x6f\xb9\xb2\xdb\xcf\x4f\x1c\x27\x3d\x38\x14\x2d\xa6\x8e\x45\x3e\x47\xfc\xb4\xf8\xb7\x8f\x39\x2f\x20\x75\x84\x29\x1a\x73\xd5\xe5\x3f\xd6\x1f\x3e\x98\x98\x48\xda\x9f\x2f\x77\xd1\xd8\x47\xd3\x52\x84\x1c\x20\x9b\xf0\xb5\xe2\xde\xf8\x74\x36\xb9\xee\xc2\x41\x8d\x4f\x36\x30\xb1\x26\x68\x4c\x71\xc6\x9e\x3e\x12\x74\x52\x82\x13\x8b\xdd\x61\xda\x24\xd3\xce\x32\x09\xad\x9e\x5d\x06\xaa\xf1\x40\x24\x27\x13\x85\xb2\x83\x03\x57\xcc\x62\x6d\xe4\x7c\xb5\x72\x56\xe5\x6e\x5a\x2a\xc4\xd1\xf6\x56\x12\x4a\x4c\x1c\xd2\x24\x02\x6c\xbc\x53\x87\xdc\x3e\x98\x3e\xfc\x7d\x78\xf5\x29\x1e\xcc\x4b\x7a\xa4\xa6\x49\x11\xc6\xab\x31\xe0\x4f\xcb\x5d\x91\xe8\xb8\xb4\x5d\x19\xc8\x99\x97\xa6\x79\x5f\xd0\x2e\x5e\xce\xf5\x7c\xf9\x9b\x86\x6d\x81\x1c\xc1\x6e\x30\x7d\x12\x8e\x96\x2a\xe3\xcb\x83\xd3\x06\x53\x1f\x9a\x10\x3b\x5c\xb6\x64\x11\x18\x7a\x17\xee\xed\x9f\xf0\x6d\x59\x09\x2f\xb9\x58\xcc\x91\xc9\xc0\x57\x5e\x76\xaf\x94\xf9\x68\x3a\x8b\x49\x11\x1f\x1b\x9b\x64\xb7\x6b\x43\x70\x8e\xd1\xfc\x7b\xff\x51\x7e\x80\xc3\x78\xcf\x4b\x8e\x35\xec\x8d\x43\xa1\x6a\x5c\xb4\x6a\xb7\xb8\x70\xc5\x93\x31\x43\xec\x1c\xf4\x53\x28\xfe\x12\x11\x3e\xb3\x11\xdd\xf3\xe6\xc8\x53\x7e\x38\x34\x9c\xd6\xe3\xc9\x6c\xa9\x42\x44\x83\x40\xbc\xad\x62\xbf\xc1\x0c\x74\x2c\x91\x92\xd8\x6c\x27\x71\x07\x88\x74\x7f\x4d\xc2\x05\x4d\xdc\x99\xc6\x6f\x49\x44\x48\x0d\x84\x6e\xe3\x05\x80\xe1\x53\x0e\xd9\x96\xf5\x3e\xbe\x15\xc0\x37\x00\x32\x2b\x8e\xff\x7c\x0b\x59\x23\x78\xc8\xe5\xc8\x10\x54\x3d\x89\xbc\x35\xb2\x34\x48\xc4\xbb\x18\xd1\x39\xbd\xd8\x5a\x5a\x7f\xff\x13\xf3\xa0\xe7\x36\x88\x3c\xc2\xfe\xa0\xe3\x11\xb0\xc7\xa8\x3a\xa3\x04\xa5\x11\x76\x65\x39\x4f\x91\xd7\x04\x1c\x87\x90\x41\xcc\xfd\x96\x50\x01\x3b\xf8\x0b\x7c\x9a\x0c\x9a\xfa\xba\x87\x33\x0e\x22\xd2\xb4\xb9\x84\x16\xe3\xd8\x13\x6a\x3e\x69\x73\x36\x98\x38\x9f\x3a\x08\x68\x71\xc0\x8b\x15\x75\x49\x6f\xf5\x92\x14\xd7\x0a\x04\x4d\x2f\x05\xc4\xd8\x48\x49\x6c\x33\x4e\xbc\x03\xd6\xa3\xf8\x9d\x84\x39\x96\x3b\xc2\x4a\x17\x6c\x2e\xe7\x98\x74\x8e\x43\x9d\xe0\x86\x59\xa0\x19\x84\x5c\xaa\x7c\xe4\x59\xf6\x07\xf0\x37\x72\x42\x93\xe1\x2a\x08\x36\xe8\x2d\x03\x0a\x95\x25\x75\xfc\xa0\xf0\xf0\x0d\x75\x6d\x1b\xd4\x89\xbf\xf0\xb6\x11\xaa\xb1\x7f\xe6\x63\xe0\x0c\x1f\xf6\x42\x1a\x62\x5f\x2d\x27\x2d\xf1\x08\x5a\x3e\x3f\x7c\xc2\xd1\x7f\x44\x42\xff\x5e\xd1\x3c\xe6\xc8\xf3\x8e\xd0\x1e\x7f\xfe\x44\xe8\x60\x68\x8a\x00\x31\x7d\x22\x27\x64\x85\x60\x15\xaf\x69\xcd\x17\x72\x99\xe3\x6f\x3d\x9c\xa1\x41\x8f\x83\x72\x4d\x30\x01\x04\x1c\x3c\xaa\xd1\x0a\x86\x27\x35\x73\xb5\xb0\x7a\x9c\x54\x35\x7f\x62\x13\x2c\x8c\xb4\xbb\x60\xef\x39\xb9\x0a\x29\xf6\xe2\x5a\x4e\x6b\x46\x35\xb3\x89\xbf\x60\x94\x34\xe6\xc0\xb9\xcd\x10\x3b\x71\xc7\x38\x79\x5f\x66\xd4\xe9\xcf\x30\x84\x8f\x4e\x37\xc6\x6f\xe4\x8c\xf7\x9c\xe3\xcb\x6e\xbf\xcf\x45\x38\x9a\x16\x8b\x77\xe0\x86\x1d\xbc\x96\xd5\x2f\x96\x25\x13\xef\x88\xf9\x00\xa2\x61\x81\x25\x77\xe7\x06\x97\xe2\xde\x7e\xfc\x5f\x77\x5e\x89\x3b\x60\x52\xff\xd4\xdd\xb8\x71\xff\xc1\xf8\x66\x2e\xc8\x8d\x39\xf9\x5c\xb1\xf4\xa6\xed\x68\xf4\x9f\xbc\x33\x17\xef\x06\xce\xdd\x99\x9b\x33\x49\x87\xbd\xb8\xf3\xc6\x84\x96\xb5\x07\x20\x9a\xa5\x9f\xc6\x19\x96\xab\xaa\x1e\x95\xdd\xe4\xb9\x92\x88\x54\xb1\xa9\xce\xce\xb3\xf8\xa7\x88\x8c\x11\x2d\x63\xed\x95\x8c\x7a\x9c\xe1\x79\x32\x6d\x5c\x0a\x8e\x5c\x75\xcd\xeb\x31\x00\xc9\x0d\xb8\xfc\xe2\x40\xc6\xa8\xf8\xa4\x91\xb9\x5b\x83\x3e\x4f\x0f\x11\x5e\xf2\xa9\x41\x4c\x26\x5c\xae\xad\x29\xf3\x57\x78\x7b\x84\x43\xec\xc6\x3c\xd9\x38\xe6\xe1\xae\x73\xcc\x21\x3d\x07\x06\xaa\xd5\x0a\x26\x5e\xb8\x55\xf9\x0c\x95\xce\x22\xf2\xdc\x06\xa2\x19\x4a\x71\x12\x6d\xc9\xc7\xb4\xed\xf4\x6a\x9b\x28\xcc\x3e\xb0\x1c\xa9\xf9\xdf\x4f\x6a\x43\x78\x66\x95\xf3\xfc\x3e\x9a\x0a\xf9\x05\x9c\xe2\xf2\x10\xa0\xd9\xa7\x4e\xfa\x26\xc9\xd0\xc4\xf4\xe6\x74\xee\xef\x47\x13\x12\xcf\x2c\x8b\x91\x19\xa8\xd1\x7b\x2a\x2c\x72\xc5\xfa\x3d\x08\x4d\x17\xef\xeb\xf2\xa3\x39\xa5\xdc\xd9\x83\x99\xb6\x76\x43\xfb\x8e\xb4\xc0\x3a\xf9\x4c\x47\xa0\x66\x0f\xba\x92\x02\x7e\x5e\x5f\x88\xdf\x6e\xec\x5c\xe3\x47\x1a\x29\xa4\x87\x61\xb6\x6f\xb7\x88\x15\x17\x3a\x24\xe1\xe9\x47\x1d\x1a\xbf\x90\x30\x05\xfd\xbc\x2e\x49\x6b\xf6\x31\xbc\xbc\x04\x2f\x72\xd4\xc9\x9d\x43\xb7\xda\x8f\xff\x26\x9d\x93\xfd\xf0\x46\xec\xd0\x78\x9a\x24\x3d\xa2\x8a\xbd\xf5\x77\x98\xd2\x66\x25\x4a\xb3\x44\x2f\x1e\xdd\x6a\x92\x42\x07\x64\xbd\x64\xf2\xa2\x69\x27\x2a\xd0\x8b\xf4\x20\x54\x95\xe6\xd1\x45\xf4\xcf\xe2\x1c\x56\xcb\x7a\xd8\x70\xde\x1f\x1f\x13\x61\x1c\xc7\x12\xd5\x54\x86\x85\xe1\x7b\x5d\x96\x97\xb1\x0b\xe1\x37\x7d\xf6\x67\x2a\x10\x02\xec\x6f\x8e\x43\xc9\x1d\x9d\xeb\xa7\x75\xc2\xdc\xc5\x4a\xa2\x72\x90\xe3\x38\x51\xb4\x7c\x5f\xea\xc2\x1d\xf6\x23\xa9\x7a\x4e\x62\x1c\x02\xf5\xba\x27\xce\x8d\x52\x4d\x57\x05\x64\x10\x0d\x78\xca\x64\xa7\x18\x70\x23\xed\x53\x42\x7b\x88\x9d\x7e\xcf\x27\xff\x36\x39\xa9\xf7\x41\xae\x07\x4b\xf3\xb0\xee\x31\xed\x62\xb8\x61\x8f\x7e\xcd\xdf\xa5\x5f\x0c\x98\xc9\x54\xb5\x0e\x18\xce\x98\xf9\x16\x31\x02\x0b\x0d\xc6\x93\x89\xf2\xa5\x40\x15\xdf\xc7\x21\x87\x07\x5e\x0e\xb1\x9e\xf4\x92\x9d\x12\xc8\x88\xfd\xfc\xc9\x4e\x05\x1e\x75\x57\xb7\x3c\x17\xf2\xac\xe6\x53\x3d\xd2\x47\x56\xfe\x5c\x8f\x86\x7c\xea\x73\xba\xe5\x8e\x42\xbf\x0c\x54\xab\x84\xef\x0c\x38\x0e\xce\x9f\xee\xea\xf6\x81\x80\x88\xcc\xca\x85\x12\x27\x0b\x28\x79\x2b\x30\x59\x44\x77\x96\xd5\x53\x49\xf6\xf6\x11\x39\xec\xd2\x6a\x89\xf3\x89\x81\xba\xea\x82\x47\x50\xea\xf3\xb3\x65\xf5\xca\x65\x00\xe0\x55\xa5\x51\x1d\xb4\xe9\x78\x15\xf7\x88\x0d\x58\x08\x15\x18\xa2\x69\xfe\xc2\x13\xf3\xeb\xa1\x07\x4c\x4f\xe2\x03\xa6\xf0\x55\x68\xc3\x06\x3d\x7d\xf3\x72\x1a\xc4\xf0\x70\x1c\xc9\xbe\xdb\xea\xd3\x0c\xd8\x1e\x0d\x22\xa9\x3a\x8d\xea\xb0\x61\x4d\x35\xbe\xb3\x82\x2b\xad\xe2\xe8\x73\x7c\x8d\x2b\xfd\xfc\x8e\x0d\x86\x03\x9b\xd6\xae\xc6\x05\x75\xd2\x78\xe4\xaf\x5e\x35\x84\xf1\x8b\x8d\x4a\x1c\x8a\xe4\x8f\x2e\xbf\xa4\x55\x2b\x81\x2c\xfc\x30\xd9\xb6\x4b\xb5\x90\x1e\x77\xe9\x7f\x6d\xd3\x87\x5c\x17\xac\x87\xfb\xed\xa1\x8f\xdb\x35\xa8\xe1\x16\x9d\x60\x13\x72\xdf\x72\x2d\xf2\x28\xa0\xf6\x85\x27\xda\xf7\x73\xa6\xdd\x25\x0e\x4e\x31\x97\xe1\x89\x1c\x38\x08\xe0\x50\x79\x2b\x71\xb3\x0a\xc4\xcd\x0a\xaf\x53\xc5\x94\xa1\xa9\x27\xcd\xd1\xb8\x49\xaa\x33\x6e\x6d\x9a\x97\x2a\x0a\xe3\xda\x85\x86\xec\xa6\xa7\x35\x94\xe6\x5e\xd7\xc3\x96\xa7\x2d\xca\x6a\x1d\x24\x79\x8f\xf6\x41\xc7\xe4\x42\xc2\xb8\x68\x1a\x78\x67\xa6\x57\xad\xc4\x0a\x4d\x73\xe4\xe2\xfc\x60\x5c\x62\x6d\x4b\x93\xae\xea\x4a\x65\xaf\xf0\x92\x34\x4f\xb7\x0a\x69\x52\xe7\x2f\xec\xa6\x89\xe1\xce\x42\x9a\xe8\x2a\x0e\x1a\xb8\x15\xff\x8c\x41\x1d\xb4\x5a\x07\x83\x0b\x61\x8f\x92\x10\x2b\x1a\xfa\x26\x81\xe2\xdd\x33\x1f\xcc\xce\xd0\x5d\x62\x7e\x08\x04\x38\x4f\xa1\x4b\x79\xa7\x47\xc3\xfd\xcd\x83\x34\x7d\xa5\xcf\x2b\xa6\xf9\x70\xeb\xae\x96\x1a\xa2\xa8\xe6\xf8\x08\x17\x7d\x89\x9b\xe8\xe7\x08\xd9\x6f\x25\x9c\x82\x89\x41\x95\xee\x2a\x1a\xe5\x26\xab\x4a\x30\xa2\xcf\xd6\x12\x44\xaa\x1b\x8b\xd4\x58\xbb\x8a\x63\x82\x5a\x77\xb2\x2d\x52\x7a\x69\x83\x1a\xd3\x85\x56\x3c\x29\xa9\x07\x8b\xfb\xbc\x8a\x66\xba\x3b\xae\xe8\xaf\xe8\x29\x9b\x36\x71\x89\xda\x5d\xdb\xd9\x3e\x72\xd6\x38\x48\xcb\xa7\x2a\x9a\xeb\x63\xa8\xa8\x9c\x75\x0a\xfc\xac\x4e\xe3\x01\xb2\xcd\x5a\x9f\x60\xfa\xc9\x3f\x84\x81\x68\x7a\x05\xdb\xdb\xa8\x29\xd3\xac\xcc\x46\x4d\x3c\x6b\x76\xec\x6e\xfb\x43\x5d\x4f\xab\x1b\x75\x79\x20\x60\x45\x4b\xbe\x32\xd8\x67\x7f\x46\x83\x07\xbb\xdf\xd8\xf6\xb6\x5a\x2f\xf9\xdd\xac\x76\xcb\x07\xd3\xaf\x9d\xec\x11\x39\xd4\x28\x1c\xa9\x1e\x2e\x28\xeb\xb1\xdc\x4f\x77\x1f\x2c\x1f\xe7\xb6\x0f\xb3\xaf\xa2\x57\xe9\xf7\x6c\xbd\x16\x9e\xc9\x04\xba\xe7\xe7\x30\x2b\x66\x3e\x46\x78\xb1\x77\xa1\x80\x57\x15\x42\x0a\xdc\xd5\x87\xc1\xc8\x6d\x52\x79\x60\xc8\xb0\x7f\xb2\x7a\x35\xb1\x52\xcd\xd6\x9b\xf8\x4e\x84\x01\x42\xa4\x47\xaa\x12\x08\x66\x47\xe3\xf0\x3f\x5f\x55\x16\x95\xb3\x8b\xea\xef\xbd\x77\xd3\x8a\xcf\xd7\xba\xf1\x73\x6d\x03\xc7\x31\x84\xcf\x41\xa4\x7f\x7f\x90\xd7\xd5\x87\x06\x9f\x76\x72\x86\x5c\xef\xe8\xa1\x47\xc6\x84\x4e\x07\xf2\x52\x5e\xbc\xec\xf7\x78\xdc\x8c\x5f\x17\x67\xa3\x51\x0c\x44\x1d\x1f\xbc\x1c\x70\xa7\x9e\x1f\x7c\x5b\x6e\xea\xa6\xee\x49\xd7\xb7\xf9\xcf\xfe\x17\x69\x35\x9c\xe7\xe6\xe0\xf9\x94\xe4\x76\xd9\x73\xf4\x02\x7d\x9c\x98\x91\xf5\x92\xe3\x26\x19\x5f\x78\xc0\x88\xbb\xba\x33\xa5\x2f\x0a\x03\xf6\x9a\x0f\x38\x7c\x91\x63\x49\x41\x5c\xb2\x4e\x9e\xad\x0c\x25\xb5\x4c\xbd\x22\x05\xae\x4a\x8a\x9c\x77\x7c\x06\x38\xe0\xe5\xfb\x9a\xe3\xef\x2c\x4b\x42\x65\xbf\x5f\x02\x1f\xad\x46\x6c\xd8\x4a\x20\x9c\x8b\xbe\xea\x74\x2f\x3f\x69\xc2\x77\x4b\xcb\x49\x9f\xc4\x9e\xaa\x8d\xce\x14\xc2\xb5\x45\x2d\x70\x09\xb7\x3e\xb5\xf4\x16\xb3\x65\x3c\x0a\xb7\xd6\xec\xc7\x08\x7c\x4e\x69\xb3\xa8\x63\xe0\x43\x58\xe0\x52\x73\xa8\x48\x4b\xb9\xa2\xb4\xc3\x12\x2f\x84\x7b\x1f\x2e\xc1\x6e\x25\xe3\x32\xd9\x5b\xbc\x12\x3d\x5f\x42\x0f\xfd\x46\x3d\xd3\x43\x41\x33\xd3\xb7\x7a\xf5\x4f\xc4\xc3\x48\x73\xa4\xfd\x08\x1b\x02\xb0\xdd\x47\xa1\x14\x72\x55\xd7\x1d\x76\x35\x7b\xe8\x90\xeb\xf7\x63\x9c\x5d\x38\x79\x1a\xec\x47\x0f\x36\x52\x23\xa9\xc4\x21\xc4\x5d\x22\x77\x16\x73\x3b\x84\x1c\x5a\xe2\x64\x65\x4d\x7b\x3c\x12\x30\xa3\x46\x2f\xf5\xcc\xc5\x66\x2f\x2f\x09\xf2\xce\xa2\xa1\xd9\x51\x21\xdf\xf0\x90\x0c\xd7\x86\xc8\xf4\x8e\x96\xa1\x2e\xc7\x7a\x4e\xcc\x48\x1d\x9f\x96\x9f\x6b\x9e\x8b\xcd\xb6\x2f\xd1\xbe\x71\xa6\xb0\xea\xd7\xef\x6d\x87\x5b\x16\xdb\x25\xfb\x30\xc4\x9a\xde\xe0\x82\xa5\x60\xfd\x39\x65\xf3\xa2\xfa\x91\xc1\x67\x91\x49\x22\x6f\x67\x3b\xc3\x2e\x28\xc9\x1c\x48\x8a\xc6\xed\xfc\xf9\x44\x7c\x2f\x47\x45\x6b\x52\x8b\x9a\xa5\x6e\x21\x74\x6d\x42\x4d\x0b\xd5\x1c\x73\xc4\xe0\x74\x99\xc6\xfd\xc4\xec\x00\xb1\xd1\x11\x21\xbc\xbe\x5d\x4b\x5c\x78\x79\xfa\x87\x58\x84\x5b\x97\xf2\x90\xe5\xcf\x27\x69\x11\x8e\xe6\x49\x45\x98\xb5\x9e\xb2\x8b\xaa\x44\xf5\x1c\x82\x09\x7b\xf3\x70\x17\x86\x26\x4e\x59\x59\x18\xe3\x2c\xf8\xde\x60\x99\x7d\x12\xde\xf7\x42\xc0\xb9\x07\x88\xe4\xdc\xb7\x66\x16\x5c\xfb\xd1\x42\x9b\x5d\xf7\x82\x1a\x40\xe8\x16\x55\x9c\xea\x35\x88\x26\x11\xa3\x2d\xe3\x8e\x96\xc3\x68\x42\xd4\xf9\x6d\xac\x94\x98\xbc\x01\xf9\x6a\xf8\x00\xa4\x42\x79\x6d\xdc\x27\x78\x85\xb2\xd0\x97\xf3\xba\x3a\xe4\xc8\x95\xf1\x91\x79\x55\xf2\xe2\x9b\x94\x3e\x45\x6f\x31\xca\xed\xce\x90\x3a\xba\xef\xac\x15\xb3\x96\x2d\x1e\x54\x12\x31\x88\x48\x64\x14\xc2\x4c\x20\x39\x26\x57\x7e\xc6\x91\xb9\x06\xa5\x11\x4b\x28\xdd\x5a\x24\x91\x44\xe5\xd5\xad\xd9\xea\x0e\x44\xd2\xf7\x6f\x0f\xc8\x5b\xe6\xfe\x01\xe0\x83\x61\xf4\xe3\xc8\x02\xbe\x83\x87\xc5\x08\xdb\xae\x5d\x46\xfc\x8e\x02\x30\xe2\x75\x8f\x11\xc6\x01\xce\x48\x1f\x81\x6e\xf9\xd8\x49\x5e\xed\x2a\x46\x2f\x3b\x47\xbc\xe0\xc8\x99\xdf\xe4\x65\x27\xd3\x69\x15\xa2\x37\xed\xbc\x5d\x4a\x83\x15\x6f\x13\x9f\xff\x79\x3c\x05\xd3\x2c\x41\x7b\x54\x8d\xc6\x79\xe0\xb0\x51\xfb\x30\x02\x9e\x7b\x73\xe5\xaf\x7e\x56\x86\xdf\x6f\xbe\xeb\x51\x99\xd2\x2d\x86\x0d\xfa\xc7\x64\x46\xed\x89\xba\xcc\x5a\xa2\x6f\xf1\xae\xa7\x64\x68\xd6\x12\x8d\x54\x7a\x60\xfc\x01\x4e\x83\x70\xa9\x7e\xe3\x52\xca\x71\x1b\xde\xc7\x58\xf0\xd5\x98\xbb\x17\xf3\xd8\xfa\xc4\xe5\x92\xd5\xca\xdf\xa9\xc7\x08\x27\x0c\x8d\xec\xe2\x4c\x47\x58\xe2\xf5\x79\xa0\xc5\xd1\xbb\x5d\xe3\xd8\x9c\xf3\x47\x73\x92\x93\x74\x47\x12\x86\xa7\x80\xde\x66\xb6\xe0\xc8\x6f\x56\x5e\x52\x09\xb0\x88\xf5\xd6\x22\xd8\x5b\x00\x9b\x44\x24\x13\xd3\x9a\x2e\xf1\x4f\xe0\x6b\xb0\xc2\x9d\x2f\x89\x1b\xf7\xe1\x48\x55\x02\x30\x1d\xe2\x30\x5a\x20\x0e\x49\x12\x92\xa0\x3f\x92\x20\x6f\x45\x14\xc1\xc7\x5d\x52\xe7\xdc\x7f\x92\xce\x0f\x5c\xb2\xe7\x5b\x66\xb8\xc8\xc1\xe6\x81\xc6\xde\xd3\x92\x8a\xab\x43\xf9\xf3\x1a\x31\x77\x24\x01\xf7\x6b\xf2\x0b\x5c\xb2\xf1\x29\x2b\xf6\x65\xab\x72\xdc\xcb\xcd\x4e\x5f\x85\x46\xbb\xae\x71\x2b\x92\xb9\xf1\x15\x90\x63\x4d\xaa\xb3\xe4\x5d\xe5\x29\xfc\x0c\xec\x14\xa8\xed\xc7\x75\x9e\x20\xe0\xe0\x1c\xa8\x04\xed\x0f\x70\xcf\x34\x68\x3f\x43\x49\xa4\x9e\xfc\x27\xc7\xf7\x3b\x09\x83\x1a\xd1\xcd\xe7\xef\xc0\x27\x97\xad\xc9\x5f\xb6\xd9\x71\x91\x5d\x1e\xfb\x8c\x76\xd7\xed\x25\x3e\xe6\x3c\xee\xb3\xcb\x97\x6f\x2e\x52\xe0\x80\xc9\x49\x4e\x44\xe9\x20\x4b\x5f\x0e\xe9\xca\xd6\xbf\x31\x82\xb8\x13\xd8\xff\xd5\x9b\xc6\x5c\x91\xd6\xfa\xe6\xec\x32\x4c\x0b\x4e\x61\x68\x53\x47\xbd\x1f\x46\x42\xe7\xad\x1e\x0e\xfe\xb2\x8b\xe3\x97\xa3\xaa\xe1\xbf\x14\x9e\x2b\x4e\x1a\x79\x3d\x78\x93\xf8\x38\x3c\x25\x1f\x08\xd7\xed\x11\x09\xa3\x6a\xe1\x4c\x17\xea\x4c\xe5\x2f\x55\x32\x7c\x63\x7e\x76\x09\x8d\x04\x96\xc9\x8e\x27\xaf\x52\xc9\xfb\x08\xfe\x05\xe4\xe1\x92\x98\x73\x76\xb1\x73\x42\xf9\x0e\x67\x97\xb4\xbe\xf9\x83\xc1\x03\x7d\x1f\x39\xc7\xc4\x01\xcc\x2d\x2d\x95\x59\xbc\x5c\xa7\x07\x7f\x9f\x2e\x94\x3a\x8a\x8c\x9c\xce\xe4\x74\x39\xdc\x1f\x36\xf3\x11\x94\xc5\x72\xe1\x6d\x03\xb3\xc7\x06\xc1\x26\xa0\xb0\x24\xad\x52\x9e\x11\x23\x5c\xdb\x01\xc8\xb5\x38\xea\xc9\x7b\xf7\x07\xa1\x7a\x7d\xf3\x74\x16\x60\xcc\x79\x34\xb9\xbe\xba\xa2\xed\x87\x45\x3c\x1a\x76\x2c\xd5\x5b\x81\xe7\x92\x1c\x4b\xfb\x67\xb7\xeb\x5e\x36\xfb\x1b\x8e\x26\xcf\x14\x43\x64\x78\x56\x6f\xe4\x11\x4a\xce\x0e\xa5\xfc\x5b\xf8\xb9\x3e\xee\xce\xba\xb1\x0f\xc9\x18\x20\x46\x4d\x07\x05\x3a\x81\x82\xf4\xc3\xd3\xfb\xa3\x10\xaf\xaf\xfd\x6b\xfc\xc3\xe7\xdc\x65\x16\x60\x74\x5c\x2f\x25\x94\xe5\x1d\x45\xe1\xb4\xce\xee\xf5\xec\xce\xa2\x85\x69\x7c\x9f\x59\x12\x7e\x1c\xf5\x26\xb6\xca\xd1\x39\x86\xe2\xe2\x92\xd3\x92\xc1\xc0\x69\x52\x69\x8e\xb1\x33\x5a\x90\x8a\xac\x17\xe2\x5c\x19\xa7\x60\x75\x80\xa4\x4e\xf5\xa4\x26\x85\x4c\xa4\x5e\x4c\x4c\xc4\x4c\x4c\x4c\x04\x66\x4c\x4c\x26\x2d\x4d\x6e\xdb\x72\x3c\x5b\x97\x97\x67\x73\x10\xde\x45\xe3\x2b\x7e\x94\x16\x8e\x37\x5f\x62\xb1\x6f\x68\x87\xfc\xe5\xd7\x69\x81\x01\x6e\xc7\x19\x33\xb5\xb4\xbf\x53\xbb\xf6\xbb\xa4\x12\xcf\x90\x0f\xaf\x37\x30\xe6\x04\xfd\xfa\x70\xfc\xe0\x2d\x19\x8d\xbf\x8c\x67\x5a\xb3\xe0\x92\xc6\x4c\x4e\x05\xd9\x78\x1d\x78\x7e\x7e\x1a\xde\x93\x1a\x32\xf4\xd8\x3d\xdc\xea\xf0\xaf\xc0\xf0\x66\x9a\xe4\x63\x87\x78\x27\x72\xbd\xe3\x82\x1f\xe5\xb6\x07\x4a\xfb\x60\x5c\x3e\x38\x17\x7b\xcf\xfb\x58\xd1\x75\xd8\x23\x01\x35\xef\xac\xb8\x50\x69\x49\xff\x1e\x37\x02\xba\x3c\xf3\x8f\xe2\xbc\xd2\x0b\xcb\x01\xca\x3f\x9c\xc5\x56\x8c\xe1\x5b\x5b\x90\x83\x46\x6d\x78\xc4\xeb\xfd\xe3\x58\xca\x6e\xe4\x3e\x20\xee\x3c\x2c\x4b\x3e\x5b\xd0\x77\xda\xdf\x39\xb1\x31\x64\x72\x13\x22\x19\xc8\xe0\x09\xec\xa4\xe0\xeb\xe4\xdd\xeb\xf8\x58\x3e\x6f\xb1\x0f\x55\xe6\x6f\xbc\xce\x4f\x79\xb8\x84\xa7\xd0\xbf\xf7\xb6\xa7\xc6\x6c\xb5\x21\x52\xfb\x0b\x3e\xb2\x33\xfe\x88\xb3\x2a\x57\xf1\x78\x07\x4f\x1c\x4c\xed\xb9\x67\x78\x5b\xde\xea\x81\x33\xc7\x76\x8c\x93\xfa\xde\xed\xa1\x33\xe8\xcb\x9f\xf0\xd9\xef\x8c\xbf\x2e\x4e\x28\x63\x9d\x21\x99\x88\x83\xe2\xe0\x25\x67\x8e\x61\xc7\x2a\xea\x30\xd7\xd3\x20\x2d\x8e\x3a\x72\xe1\xec\xf9\xb3\xb3\xf3\x31\xe8\x74\x71\x6b\xc6\x94\x15\x68\xc6\xdc\xca\x97\x63\xb4\xf9\x01\xf0\x51\xda\x08\xf2\x40\xf7\x85\xc8\xe6\xab\x51\xc3\xda\x00\xd2\x14\x66\xcf\x2a\x13\xa9\x0d\x62\x40\x9e\x05\x9b\x0b\xff\x3e\x07\x47\x1f\x08\xa2\x83\xdb\xa8\xed\x4c\x9b\xad\x24\x1f\x64\x23\x6d\x3b\x5c\xd6\x0a\x8e\x07\x38\xe1\xbd\x83\x50\xd7\x7c\xc0\x3e\x03\xeb\x61\x7c\xdd\x03\xc5\xe7\x42\x33\x63\x6f\x89\x76\xdd\x58\xbf\x3c\xe1\xc4\xf1\xb2\xc5\x92\x12\xf0\xf0\x40\xde\xdb\x56\xc2\x7a\x8c\x0a\x6c\xd6\x01\x4f\x62\x2f\x4b\x90\x55\xc0\x49\x03\x04\x1f\xed\x5a\xa3\x41\x96\xee\xca\xaa\x39\x8e\x30\x02\x0d\x7a\x3c\xc4\x2d\x5e\x62\x4f\x6e\x1b\xeb\x63\xec\xc3\x21\x4d\xaa\x19\x75\x72\xef\xd8\x86\x7a\x60\x0a\x7e\xe2\x08\xe3\x23\x50\x65\xfe\x79\xd0\xbf\xaf\x52\x28\xbf\x52\xfc\x2b\xa5\x29\xb7\x4e\xde\xfb\x8b\x32\x7f\xbe\xe5\x54\xc0\x03\x6a\x24\x02\x39\x3b\x38\x7d\x2c\xd6\x0d\x31\xf7\x17\x72\x26\x2f\x8f\xb3\x34\x1c\xca\x4a\xb3\x93\x25\xe9\x93\x5a\xa2\xc3\xa2\x67\xc3\x8c\xad\x0a\x93\xc0\xc2\x4b\xe4\x8c\x9f\x8e\x84\xd1\x94\x18\x22\x2e\x75\xc5\xfc\x10\x66\x94\x60\x2e\x21\x41\x27\x10\xf6\x0f\x68\x5c\xfe\xb4\xe4\x15\x9e\x83\xe7\x09\x8f\x56\xca\xb4\xb6\xda\x9b\xcf\xd8\x7d\x02\x07\x5a\xa9\x32\xe6\xe1\xa6\x97\x4a\xc2\x40\x08\x9f\x5d\x7e\xde\xb0\x2d\x05\x7e\x31\xf5\x7c\x4f\x94\xc1\xa6\xfd\xb0\x12\x25\x9e\x5d\x6a\xbc\x0f\x8b\x7c\x2e\xf1\x14\x59\xe2\x65\x13\xbc\x57\x3c\x74\xa2\xeb\xa4\x49\xcb\x6f\x06\x4e\x3e\x3e\x6b\xda\x7b\x9f\x53\xef\xf3\xf3\xfd\x22\x85\xe4\xbd\x41\x78\x22\x09\x3d\xa8\x13\x3f\x9f\x34\x9e\xd0\xe4\xa8\xf0\x17\xc3\x87\xc5\xbf\x0e\x1f\xbb\xc0\x25\x4d\xb6\xa7\x0e\x03\x10\x0d\x2f\xd4\x3d\xd0\xc0\xb3\x72\x03\x31\x14\x64\xd7\xb1\x8e\x5f\xa1\x4b\xe1\x1f\xb7\xcd\xfa\xf1\x83\x34\x74\xe8\xf0\x86\x9e\x8f\x2b\xfa\x9d\x8f\x67\xab\xfd\x91\x10\xa9\xbf\xc1\x79\x55\x82\xe1\xca\xc3\x75\x1c\xae\x7c\x50\xbf\x58\x75\xa4\x89\xf6\xef\xd2\x00\xa5\xc3\x68\xab\xa8\x4a\x53\xcc\x9f\xaa\x2e\x84\xf0\xf1\x23\x0e\x81\x7a\x26\xe8\xe2\xb8\x05\xc0\x93\x86\xb1\x98\x47\x20\x47\x40\xe8\xcc\x26\xc5\x1e\x5e\x69\x30\x9b\x4f\x20\xd0\xdc\x89\x3f\x8d\x42\xf9\xed\xd2\xc7\xad\xe7\xcb\xaf\xe0\x0f\xb8\x0a\x58\xeb\xe3\xb3\x1c\xdf\xe2\xdb\xcc\xdf\x0a\x26\x8a\xe8\xea\xba\x24\x7a\x30\x9b\x3a\xbf\x42\xdc\x7c\x3c\x25\x01\xff\x72\x04\x9c\x28\x40\x38\x20\xbd\x9b\x9c\xfd\xcc\xbf\x69\xf3\x6f\x32\x5a\x1b\x35\x0e\xc8\x11\x0d\xf2\x9b\x1d\x25\xd0\xd6\x0d\xb6\x15\xfe\xde\xd2\x37\xac\x9b\xfc\x51\xd0\x07\xef\xaa\x35\xf3\x86\x4b\x77\x38\xb3\xa8\x14\x84\xd6\x21\x6a\x20\x35\x4c\xbe\x6f\xe9\x8b\x7d\x08\x1e\x70\xfc\x01\xb4\xc4\xf1\x4e\xe5\xa7\xd3\x10\x94\x38\xce\xe1\x64\xfe\x29\xa9\xdb\xba\x6f\x38\x0d\xc2\x0e\x09\x78\x10\x0d\xdf\xdc\x03\x81\xb9\xb1\xf6\xbd\x56\x27\xbd\x10\x48\xea\x04\xed\xba\xb9\x3e\xdb\x0a\x24\xa2\x2d\x72\x0a\x75\x46\x52\x1a\x73\xb3\xf4\x1d\xd2\xde\x48\xa2\xef\x8e\xf4\x85\x71\x5a\x34\xf5\x1e\x41\xe9\x7e\x8d\xef\xc6\xf8\x20\xff\xa7\x94\xc5\x3e\x17\x6d\xc6\x11\x8a\x11\xfa\x13\xcf\x6e\xe0\x5e\xb9\xbc\xc4\xba\x88\xaf\xc2\xbb\x6a\xdf\xeb\xb6\x0d\xb1\x04\x68\x65\x3f\xec\x14\x4a\xeb\xa8\xaf\xe4\xb6\x3a\x07\xe6\xd6\x77\x0d\x68\x46\x97\x2b\x92\x17\xbc\x13\x6c\xdd\x07\xfb\xd5\x3f\xff\x33\x43\xd3\xcf\x7f\xf9\x97\xec\xe5\x8f\x5f\x67\xf6\x0f\x44\xa3\x42\x48\x96\x3f\xdc\xae\xdf\x79\x28\xfa\xfc\x69\x00\xc8\xd7\x45\xd9\xe1\x92\x4d\xf4\xaf\xe5\xe2\xfc\x15\xdf\x61\xfe\xff\x01\x00\x00\xff\xff\xae\x47\xef\x0f\x0b\x9e\x00\x00") func confLocaleLocale_itItIniBytes() ([]byte, error) { return bindataRead( @@ -847,12 +847,12 @@ func confLocaleLocale_itItIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 36360, mode: os.FileMode(493), modTime: time.Unix(1438485627, 0)} + info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 40459, mode: os.FileMode(493), modTime: time.Unix(1439758816, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_jaJpIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\xbd\x7b\x6f\x1b\x47\xb6\x20\xfe\xbf\x01\x7f\x87\xfe\xf9\xc2\xbf\x24\xc0\x44\xc6\xcc\x60\x81\xc5\xc0\xf4\xdd\x8c\x9d\xc9\xcc\x6e\x9c\xe4\x46\x09\x06\x8b\x41\xc0\x50\x64\x4b\xea\x6b\x92\xcd\xb0\x9b\x56\x34\x17\x17\x10\x29\x3f\x64\x4b\x1e\x39\xb6\x65\xc5\x4f\xf9\x2d\x59\xb2\x25\x3b\x72\x26\xb6\x24\xdb\xdf\x65\x29\x52\xd2\x5f\xf9\x0a\x7b\x1e\xf5\xee\x6e\x4a\x99\x1d\x60\x17\x08\x62\xb1\xba\xea\x54\xd5\xa9\xaa\x53\xe7\x5d\x85\x5a\x2d\x5f\xf2\xa3\x62\xee\xa3\x70\x7b\x61\x6c\x7b\xf1\x76\xbb\x39\xdf\x59\x9e\xdb\xbe\x7f\xba\xdd\x9c\x6d\x37\xe7\xda\xad\xf5\xf6\xf8\x52\x7b\x7c\xa6\x3d\x7e\xa3\xdd\x7a\xd5\x1e\x9f\xf8\x28\x88\xdb\xad\x1f\xdb\xe3\x1b\xed\xf1\xcb\x50\xb2\x7f\xdf\xfe\x7d\xc3\x61\xc5\xcf\x61\x05\x2c\xbc\xb3\x7f\x5f\xa9\x10\x0d\x0f\x84\x85\x7a\x09\x0a\xc7\xda\xe3\xe3\xed\xd6\x4f\xed\xf1\x87\xed\xf1\x9b\x54\xe1\xdc\xfe\x7d\xfe\xb7\xb5\x72\x58\x87\x36\xad\x05\x04\xda\x5a\x69\x8f\xcf\xb6\xc7\x9f\xd2\xe7\xc7\x00\xcf\x2f\xd7\xa0\xe9\xf7\xd4\xf3\xec\xfe\x7d\x51\x30\x54\xcd\x07\xd5\x1c\xf6\xdb\x7a\xd0\x1e\x5f\xe5\xff\xc3\x87\xb0\x18\x14\xca\x79\xf9\xbd\xff\x93\x7e\x18\xbe\x53\xeb\x77\x1e\x8d\xfb\x0c\x8e\x63\x7c\xf6\x37\xde\xe1\xa8\x52\x28\x97\x8f\xb4\x5b\xf7\xda\xad\xa5\x76\xeb\x11\x56\x1c\x9f\xd8\x19\xbb\xdf\xbd\xb8\x76\xf8\x10\x7f\x14\x5d\x86\x8d\xd8\xec\xf3\x1e\xd5\x9e\x10\x1f\x1b\x35\xfb\x1b\x81\xdf\xbf\xaf\xee\x0f\x05\x51\xec\xd7\x73\x5b\xd7\xd6\x77\xa6\x7e\xd8\xbf\x6f\xc4\x1f\x88\x82\xd8\xcf\xfd\xf9\xc3\xdf\xcb\xfa\x00\xe2\xa4\x5f\x8f\x82\x10\xa6\x34\x7e\x11\x67\xdd\x7a\xd9\x1e\x9f\xa7\x29\xd5\x0a\x43\x88\xcb\xeb\x5c\xba\x7f\x5f\xec\x57\x6a\xe5\x42\x8c\x65\x67\x68\xa8\x80\xa8\x27\x84\x28\x80\x52\x2e\x54\x87\x1a\xd8\x80\xd7\x6e\xff\xbe\x62\xdd\x87\xba\xf9\xaa\x3f\x92\xeb\x5e\x7d\xb6\xfd\x68\x7a\xf3\xf5\xcd\xee\xc4\xc5\xbe\xbe\xbe\xfd\xfb\x1a\x91\x5f\xcf\xd7\xea\xe1\x60\x50\xf6\xf3\x85\x6a\x29\x5f\xa1\x25\x18\x7f\x44\x5d\xfd\x9d\x60\xf2\x2a\xcc\xb4\x5b\x77\x69\xa0\x4b\xed\xe6\x62\xbb\xf9\x98\x67\xec\x97\x00\xc7\xf9\x42\xe4\x2e\x43\xf7\xe5\x44\xbb\xf9\x16\xf7\x01\xf6\x50\x2d\x54\x0c\xa0\x9d\x8b\x17\x60\xb5\x2b\x85\xa0\x9c\xfb\xf0\x7d\xfc\x07\x27\x18\x45\x23\x21\xed\x8d\xef\x68\x65\x56\xe4\xae\xa8\xfb\xf9\x78\xb4\xe6\xe7\x3a\x67\x2e\x74\x4e\x3f\xec\x9c\xbf\x01\xf3\x29\xd4\xe2\xe2\x70\x01\xba\x84\x61\xdd\xa7\xf1\x35\xe1\x0f\xec\xac\xee\xd7\x42\x40\x6c\x58\x1f\x05\x48\x8b\xed\xf1\x5b\x84\xc4\x09\xf8\x7b\xff\xbe\xb0\x3e\x54\xa8\x06\x7f\x2d\xc4\x88\xe2\xad\x1f\x4f\x6d\xbd\xba\xb2\x7f\x5f\x25\xa8\xd7\xc3\x3a\x54\x9e\x83\x4d\x06\x7d\xee\xdf\x07\x68\xca\x23\x18\xc4\x15\x6d\xf7\x53\x09\x48\x58\xa5\x12\x0c\xd5\x71\x05\x54\xad\xad\xf9\xf5\xed\xbb\x53\xfc\x71\x30\xac\x9f\x30\xdb\x03\xee\x1e\xd3\xdc\x57\xda\xcd\xe5\x54\x70\x30\x38\x03\x94\x1c\x5c\xa1\x0a\xeb\x48\xdf\xb8\xa8\xdd\xba\xb4\xb5\x7c\x77\xeb\xe2\x99\xfd\xfb\x0a\xa5\x0a\x20\xbe\x56\xa8\xfa\xe5\x1c\x97\x6d\x8f\x9d\x46\xec\x8d\x5f\x80\x25\x82\xef\xc5\x62\xd8\xa8\xc6\xf9\xc8\x8f\xe3\xa0\x3a\x84\x0b\x64\xed\xed\xed\x85\xa7\x9d\xe5\xeb\xb0\x88\xf2\xbb\x2c\x18\x0d\x1b\x6a\x47\xe4\xda\xcd\x16\xad\xf6\x1c\x8d\xdb\xdd\x08\xa2\xb2\xee\xc2\xa8\x2d\xc1\xd1\xf4\xa2\xfc\xa0\xef\xe3\xe2\x4e\xd2\x91\xdf\xc0\x25\x46\x80\x00\xea\xbe\x5c\xe8\x5a\xa3\x5c\x06\xc4\x7f\xd3\xf0\xa3\x18\x40\x61\x67\x4b\x88\x2a\xc0\x19\x13\x04\xdc\xdb\x41\x14\xc1\xf7\xdc\xf6\xe2\x0f\x3b\x88\x6b\xdc\x0b\xd5\x22\x60\x40\x6e\x85\x55\x26\x4d\xf8\xe5\x2f\x91\x5f\xa8\x17\x87\xbf\xc2\x29\xe2\x1f\xb9\xee\x83\x9b\x5b\x2f\xee\xd1\xae\xef\xb5\x4d\x70\xbf\xea\xbd\x2a\xba\x54\x3d\x16\xc3\x12\x52\xa8\x55\x39\x6a\xe8\x27\xa8\x46\x31\xd0\x07\xe8\x48\xfc\x95\x93\x07\xe1\x15\xc1\xdc\xa0\x01\xc5\x41\x0c\xf8\xec\x4c\xdc\xea\xdc\xb8\x8d\xb4\xf4\xee\x14\x62\x20\x51\xb1\x7b\x6e\x72\xe7\xce\x19\x1c\xe1\x37\x0d\x20\x10\xf9\xd2\x80\xa4\xc4\x43\x91\xd7\x6e\xc2\xd9\x5b\x69\x8f\x35\x8f\x8f\xf6\xff\xdb\xc7\x40\xc2\x4e\x79\x9f\x85\x51\x3c\x54\xf7\xe9\xe7\x58\x13\xfe\x81\x46\xbf\x85\x8a\x53\x9d\xb7\xa7\xb7\x1f\x35\x91\xf2\x35\xaf\xb5\xc7\x5a\x40\x7f\x07\xf2\x3c\x86\xf6\xf8\x59\x9a\xdb\xdb\xf6\xf8\x35\x5e\x0b\xb9\x56\x58\x05\xcf\x5a\xb2\x06\x8c\x75\x6b\x61\x79\xe7\xee\x6d\xa4\xeb\x51\x9c\x53\x84\x3f\x89\xaf\xec\xa3\x0c\xe0\x05\x21\x70\xc1\x13\x45\x80\xcf\x48\xe3\x01\xda\xf1\xd1\xe8\x9b\xb2\xf7\xa7\x4f\x3e\xf9\xf4\xd8\xef\x3d\x5c\x7d\xc4\x11\x2c\xd0\xaa\xd7\x88\x07\xff\x6b\x7e\xc8\xaf\xfa\x75\xa0\xf0\xc5\x00\x26\xba\xdc\xbd\x7a\xb6\xf3\x74\x96\xd6\x7d\x1c\xd1\xd8\xba\xb4\xf9\xfa\xed\xd6\x95\x05\x3a\x4a\x8f\xda\xcd\xe9\x76\xf3\x4e\xbb\x39\x83\xe7\x10\xd1\x10\x45\x65\xa0\x71\xb0\x88\xfd\xfd\x80\xb2\xf1\x7b\x6a\xfb\x15\xe2\x61\x31\x64\xa8\xf4\x4d\x19\x91\x2f\x86\xa3\xb0\x9a\x86\x16\xf3\x3c\x78\xb2\xbd\x5f\xaf\xe7\x81\x44\xc7\xa3\x79\x01\x89\xa0\xef\x02\x87\xb0\x45\xcb\xbb\xf5\x78\x8d\x96\xfa\x5a\xbb\x35\xd9\x6e\x5e\x6e\x37\x17\xb0\x1c\x97\xf2\x42\xbb\xf9\xa6\xdd\x04\xdc\x5f\xa6\xc9\xec\xdf\x27\x71\xc1\x4b\x2b\x76\xc9\x72\xe7\xf4\xc2\xf6\xc4\x13\xb9\xac\x78\x9d\x33\xe2\xf1\x46\x9a\xa5\x43\xf5\x9c\x3a\xfe\x89\x2f\x18\x42\xbf\xac\x25\x67\xbd\xf5\xe2\x4e\xf7\xda\x8b\x76\xeb\x9c\x49\x93\xa0\x26\x20\x18\x08\x71\xbb\x35\xe5\x60\xf7\xe7\x8d\x26\x1f\xac\xbc\x40\xa5\x75\xae\x68\x86\x4b\x7c\x45\x49\x2c\xa9\xca\xb2\x4b\x9c\x71\xf3\x15\xc1\x5d\xf6\x80\xa5\xf0\x08\x08\x2f\xd1\x84\x97\x80\xb8\x42\xb8\x59\x46\x74\x22\x19\x79\x42\x2c\x03\x7f\x5a\xda\x7c\x7b\xab\xf3\xf4\x7b\x1c\x19\x0e\xf4\x8d\x3c\x04\xf5\x06\xdc\xd1\xb8\x61\xc5\x11\xd4\xdb\x56\x7e\x51\x63\x31\xaf\x40\xe8\xca\xee\xdc\x73\x26\xd3\x6e\xbe\xa4\xe3\x7c\x8f\xc8\xd5\x3a\x96\x8c\x35\x3b\xd3\xe7\xdb\xcd\x55\x5e\x13\x40\x9a\x38\xf4\xb8\xa8\xdd\x85\xc7\x3b\xd7\x2e\x42\x61\xf7\xdc\x58\xf7\xe6\x39\x2e\x94\x27\x76\x0a\xc9\x68\xeb\xbc\x31\xea\x52\x08\xb7\x24\xb2\x05\xe7\xda\xe3\x77\x25\x9b\xc3\x85\x1a\x75\x97\x69\xa6\x2b\xfd\xfd\x7f\x24\x3c\x30\xdf\xb4\xfa\xe5\xe7\x1f\x03\x36\x3a\xaf\x9f\xef\xcc\xbd\x15\x1b\x0a\x21\x0e\xc7\x71\x2d\x5f\x0b\xeb\x71\xee\x8f\x5f\x7c\xf1\x99\x87\x53\x13\xdc\x83\xfa\xa2\x20\x67\x6c\x1a\xa4\x31\x6f\x80\x21\xbc\xdb\x99\x86\xfd\xf1\x9d\x00\x2e\x01\x6d\xcd\x2c\x76\xa6\x7f\xa2\xbe\x70\x63\x35\xea\xe5\x1e\x80\x96\x3d\x18\xa6\xaa\x68\x4e\x49\xde\x23\x7c\x2e\x68\xac\x87\x3c\xfc\xa7\x9f\xd0\xed\xcc\xf3\x7c\xbb\x05\x5c\xc7\x2a\xd4\xdc\x7c\x39\xb6\x33\xbe\x40\x9b\xe3\x2e\x13\x56\x62\x34\xc7\x69\x79\xe4\x6a\xe1\x92\xae\xd2\x9d\x2c\x11\x04\xb4\xe3\xe5\xdf\xda\xcd\x09\x03\xf7\xc0\x37\xd4\x90\x63\x50\x67\xac\xdd\x5a\xc4\x69\xc8\xd1\xcb\x43\x46\xfc\x8c\xa8\xc2\x5c\x8d\xc9\x10\xab\xdb\xb6\x02\xd8\x25\x0a\xda\x7f\x9c\xf0\xae\xc8\x28\x7d\x19\xac\x87\x95\x5c\xe7\xa7\xe5\xce\xd9\xb5\xcd\xb5\x35\xa3\x50\xe2\x64\x07\xa6\xf6\xf6\x2e\xdd\xf4\x72\x5e\x88\xd5\x73\xb4\xfb\x71\xcf\x7d\xfe\x87\xa3\xde\x7f\xf9\xed\x6f\x7e\x03\x63\xd7\x6c\xc7\xf8\x6d\x41\x1b\x71\x1f\xa7\xb5\x03\x64\x34\xdf\x42\x6b\x9a\x37\xdc\xde\x2b\x07\x3e\x01\x4a\x70\xc0\x3b\x4c\xb3\xfa\x6f\xfe\xb7\x05\xe0\x37\xfd\xbe\x62\x58\x39\x42\x48\xc1\x52\x38\x2a\x74\x92\xf4\x90\x9a\xcb\x3b\x37\xd6\x3b\x4f\x2f\xaa\x3e\x54\x45\x75\x27\x98\x95\x53\x58\x3d\xe6\x92\xf3\xc5\xb0\x3a\x18\xd4\x2b\x82\x5b\xc6\xbb\xe7\xde\xda\xf6\x22\x52\x1e\x38\x2c\x9d\xf3\xaf\x14\x71\xe4\x0e\xf2\xd5\x30\x0e\x06\xf1\x2a\x17\xfd\xee\x8c\x5d\xdf\x9a\x7b\x98\x56\x1d\x06\x0c\x4c\x76\x1e\xff\x09\x8a\xbe\x5a\x51\x5e\x28\x62\xba\x91\xd6\xde\x82\x2e\x37\xd7\xaf\xd2\x16\xd3\x6b\x68\x30\x35\xe1\xe0\x60\x39\xa8\xfa\x7c\x91\xd0\x86\x98\x41\xf6\x91\x6f\x73\x79\xa7\x70\xe7\x9d\xa9\xab\x76\x7d\x38\x5c\x35\x14\x13\x04\x37\x35\x46\x5b\x52\x6c\x26\x7d\x21\x01\xb5\x3f\x7a\xec\x13\xa4\x1b\x5b\xa7\xee\xca\x39\xcc\xd2\x12\x69\x1a\x49\x67\xe9\xb5\xb8\x42\x4c\x06\xbd\x75\x49\x1c\x0c\x60\xf8\x90\x5f\x9f\xef\x4e\x5f\xdc\x7c\x73\x83\x28\x39\xee\x6c\x8f\xc9\x4a\x10\x15\x06\x80\xed\x67\xbc\xd7\x99\x31\xde\x3e\xbb\xd8\xf9\xe9\xb9\xc0\xbc\xd5\x3b\x63\x30\xad\x91\x98\x52\x76\x53\x1c\xb8\x66\x52\x79\xb7\x01\x9d\xb3\x39\x52\x96\x4a\xc4\x35\x87\x5d\x11\x0f\x04\xfc\xbf\x90\xe4\xf2\x27\x03\x90\x60\x1c\x39\x43\x08\xa4\x8a\x58\x33\x6c\x29\x29\xed\x5c\xfd\x61\xfb\x11\xc8\x7e\x97\xb6\x17\x9e\x77\xa6\x57\xd2\x41\xca\x05\xd9\x0b\x60\x18\xb4\x84\x0d\x50\x05\x78\x7d\x31\x5f\xa3\x63\x77\x99\xbe\xbe\x15\x17\x87\x03\xb6\xd5\x22\xc8\xd3\xf6\x27\x21\x29\x6a\xe0\xd4\xdd\xf6\xa3\x49\xbc\x7f\xad\x1b\x8c\xf9\x7e\xc1\x72\x33\x6f\xb8\xb9\x7e\x5e\x23\xd7\xc6\x29\x71\x43\x8c\x56\xf3\x8a\x59\x31\xae\x18\xc1\x4c\xfc\xe9\x98\x97\xf3\x7e\x4d\x9b\x4a\x4c\x19\x18\x89\x15\x5c\xd2\xc9\x99\xad\xeb\xa7\x60\x19\xcd\x05\x54\x17\xd8\xd6\x85\x1f\x3a\x6f\x66\xd5\xc6\x32\x86\xc8\x67\x2b\x73\x60\xfa\x30\x71\xf5\x14\x11\x51\x8a\x38\x59\xfc\xa4\x20\x13\x99\x35\x98\x6a\x48\x38\xb6\xc0\x29\x58\xf5\xfc\x10\xdc\xce\x39\x79\x45\xa7\xf2\xed\x20\x8e\xe4\x87\x82\x38\x3f\x88\xa4\xac\x94\x7b\x07\xf8\x92\x77\x3c\x92\x00\x6e\xd3\x54\xce\xa1\x0c\xce\x4d\xe0\x1e\x79\xf0\xbc\x3b\x33\xfb\x3b\xef\xe0\x49\xc9\x44\xfe\x16\xa9\x53\xbe\x70\x12\x5a\xe3\xb9\xc9\x49\x9e\x65\x91\xfe\xc3\x93\xeb\x39\xe2\x3e\xa0\xdd\x53\xac\x22\x0e\xea\x47\x75\xab\x4a\x9e\xf6\x94\xb9\x72\x43\xe1\x40\x23\x28\x97\x92\x60\xe6\x69\xa1\x17\x89\xf3\x6d\x76\x4e\x3f\xe9\x6c\x4c\x53\xd7\x17\x69\x9e\xe7\x99\x8d\xb1\xdb\xb4\x2e\x79\x07\x91\x83\xa4\x7d\x87\xb4\x89\x97\xeb\xa9\x24\x4a\xa9\x2c\x75\x50\x3d\x59\x28\x07\x25\x94\x55\xc4\xbe\x4c\x97\x20\xe4\x55\x3e\xd5\x7d\x7a\x5f\x1e\x02\x6b\x1b\x32\xde\x24\xb8\x3d\xf1\x92\x9e\xe4\xbf\xa6\x24\xb9\x41\x81\x87\x01\x29\x96\x0e\x57\xa0\x52\x88\x41\x06\x74\xd8\x3e\x71\x44\x81\x38\x4d\xbf\xe9\xdc\x5c\x30\x77\x3f\x7d\xd2\x18\x04\x88\xd1\xfb\x47\xe0\x7f\xb0\xae\x85\x93\x3e\x5f\x51\x43\x72\x53\x74\xe7\x27\xe9\x8c\x2d\x4b\xb6\x53\x6c\x04\x26\x22\xf6\xb4\xac\x03\xbc\xfb\xf9\x48\x9d\x99\xdc\xbd\x51\xa3\x58\xf4\x23\x94\xed\xa1\xc1\x19\xda\x5a\xb7\x80\x0f\xef\x4e\x7c\xd7\xc6\x63\xba\x62\x08\xe4\x53\x9e\xdc\xe5\x3b\xc0\xfd\xc0\xc6\x41\x70\xd3\xcc\xc6\x77\x9e\x08\x26\x9f\xfb\x40\x08\x0f\x5f\x53\xc9\x5b\x5a\x1b\xe0\x76\xce\x02\x7c\xe2\xf0\x41\xe0\x45\xcd\x1e\x48\xbb\x0d\x96\x16\xc2\x72\xc9\x61\x97\x51\x48\x90\x8c\xc4\x87\x06\x33\x20\xcf\xa9\x6e\xe3\x1c\xe8\x68\x24\x80\x45\xca\x2b\x4d\x21\x62\x39\xf6\xbf\x8d\x2d\x8d\xa1\xa7\x54\x86\x74\x3f\xaf\x12\xbe\xce\xa0\x02\x80\x0f\x21\x70\xda\x13\x67\xbb\x37\xde\x02\x6f\x30\x4a\x7b\x28\xca\x6d\xcd\x37\xd3\xf4\x2e\xc5\xb0\x0c\x67\x32\xc4\x3b\xec\xa4\x2f\xaa\x76\x4e\x3f\xef\x5c\x9c\x4a\x54\x05\x50\x61\x7d\x48\x42\x52\xfa\x99\xd1\x3c\xeb\x8f\x74\x17\x4a\x8d\x04\x78\x12\x0a\xcd\xaf\x84\xbe\x21\xa9\x6a\x80\x3a\x85\x46\x8c\x2a\x0a\xad\xa2\xcb\x0b\xc5\x8d\x50\xd5\x65\xd1\x73\x83\x5b\x1a\xf6\x6b\xc8\x63\x55\xa2\x21\x16\xa0\xe6\xf1\xca\x4d\x34\x03\xee\xb8\x3b\x05\x63\xbc\x2b\x54\x02\xcd\xc9\x9f\x37\xe6\xe0\xe6\xa0\xbf\x2f\xe2\x11\x6f\x3d\x63\xfa\xe7\xd1\x3a\x0b\x2d\xea\x3f\xb9\x97\x8b\x92\x47\x3a\xc7\xbd\xd8\xdc\x04\xab\x22\x41\x6e\xce\x6d\x5d\xc1\x0b\x78\x7b\x61\xd5\xbd\xa8\xe0\x02\x86\xd3\x2a\xf8\xc2\x29\x83\xc5\x80\x5d\x7e\xdf\xa0\x8d\x74\x13\x4b\xcd\xaa\x71\x73\x2d\x75\x66\x80\xea\x9c\xea\x5c\x84\xd1\x4e\x23\xcc\x14\x7a\x96\x18\x14\xdd\x1c\x7b\x1a\x92\xe2\xae\x25\xcf\xda\x7d\x3c\xb7\x3d\xfe\x7a\xd7\xa1\xe2\x72\x56\xfc\xca\x00\x76\x86\xd7\xa0\x5e\x8d\xad\xf3\x7f\xef\x9e\x9e\xc4\x75\x7f\x7b\x8b\x50\xcb\x6c\xd8\x20\x6c\x47\xa0\x6a\x59\x57\x1f\x9e\x82\xb7\xdf\xd3\xe9\x9e\xe3\xca\xfe\xde\x2a\xc3\x72\x29\x55\x36\xd0\xcd\x11\x57\x6d\xe8\x6a\x96\x9c\x05\x4e\xd1\x7d\x8b\x5b\x9a\x19\x45\x62\xd7\x23\xbf\x1a\xcb\x85\xd6\x3a\x4f\x66\xf1\xb5\x78\x72\xc9\x3b\x3c\x70\xe4\x60\x74\xf8\xd0\xc0\x11\x54\x7c\x81\xe4\x20\xb1\x4e\x8c\xd9\x58\x4b\x31\x9a\x9d\xe5\xa9\xcd\xb5\x33\xb4\x80\x37\x48\x63\x32\xd7\x6e\x35\x11\xd3\x63\xcd\x83\xa5\xee\xb5\xd6\xce\xd5\xcb\x9b\xeb\x0f\x3b\x67\x4e\x13\xf6\x4d\x85\x66\x9a\x6c\x08\x3c\x0d\x0f\x25\x43\x7f\x24\x38\x47\x93\x9d\xd0\xf6\x05\x21\x9b\x17\x8a\x44\x52\x48\x3b\x2a\xcf\x73\xca\x61\x61\x75\x01\x12\xaf\xfb\xed\xf1\xab\xb8\x07\x08\x35\xe5\xa0\x12\xc4\x7b\x3b\x09\x36\x88\x6b\x96\x58\xad\xf7\xe2\xca\xce\x9d\xf5\xad\x57\x4d\xc6\x22\xc8\x5f\x36\x1b\x81\xfb\xef\xb7\x5e\x67\x02\x30\x78\x9e\x25\xfa\xc4\xa4\x87\x0b\x51\xbe\x51\x15\x2b\xe9\x97\xf8\x40\x90\xca\xe1\x32\xe1\xf4\x2e\xf2\x2c\xc4\x38\xcc\x10\x4f\xd2\x34\xd1\xec\x08\x85\x9e\x29\x79\x7a\xef\xaa\x45\x7e\x0f\xf9\xcd\xee\xcd\x45\x89\xfd\x79\x79\x88\x91\x61\x4e\xee\x0e\x1a\xfa\x1d\xa3\xf2\x05\x39\x25\x62\x78\x80\x83\x19\x6b\x76\xaf\xbc\xa2\x9d\xf0\xa8\x73\xe6\x82\x9c\x39\xb1\xc1\x77\x5e\x20\x01\xa0\x9b\x7f\xf3\xe5\x24\x6d\x85\x9b\xc4\xac\xac\xd2\xb2\xb0\xb6\x87\x36\x44\xfa\x26\xa0\x85\x92\x68\xd8\xcb\x12\xc0\x26\xb5\x87\x20\x54\xb9\x78\x63\x5f\x76\xfa\x94\xba\x04\xe2\x1b\x23\xa2\xc3\xb1\xe4\x1b\x7b\xe1\x92\xe7\x93\x38\xaf\xb4\xfe\x57\xef\xed\x8c\xdd\xdf\x5c\xff\x1e\x15\x35\x5a\xa2\x50\x7a\x44\x9a\x0d\x4e\x2a\x16\x73\x72\x08\x04\xca\x99\x52\xbf\x6a\x9e\x1b\x39\xad\x3d\xcc\x89\xa1\x67\x92\x20\xa3\x07\xcd\x2a\x91\xb2\x7d\x17\xba\x4b\x1b\x00\xd5\xbd\x52\x27\x8f\xfc\xe5\xcd\x39\x90\x4e\x80\x0d\x90\x13\x45\x4e\xc4\xe4\xa2\xd4\x22\xea\x11\x69\xbd\x9f\x4b\x1b\xed\xd9\xef\x3a\x51\x05\x30\x0e\xc3\x7c\x34\x8c\x3a\xb6\x9f\x37\xae\xb2\x96\x1a\xb6\x77\x77\x6d\x2c\xa9\xfb\x40\x49\x4b\x70\x7b\x69\x4a\xde\xbf\x54\xc2\x52\x01\x0d\x0c\xa3\x3e\x1a\x59\xa0\xe7\x53\xfb\xf7\x55\xc3\x1c\x6d\x74\xf8\x0f\x50\x06\x35\x50\x05\xd2\x79\x70\xae\x7b\xe3\x05\xb5\x01\xa2\x5f\x81\x26\x5f\x02\x03\xfc\x49\x52\xb6\xfa\x1c\x38\x12\x51\x6c\x31\x25\xf4\xf1\x43\xa6\x6d\xa9\xba\xa2\xfd\xfb\x3e\xcb\x14\xc8\x3e\xf7\x85\xf9\x20\x71\xbd\x68\xe3\x5d\x7f\xff\x1f\xbf\x20\xc9\x10\xfe\xf0\xc8\x6c\xb3\x81\x0a\xeb\x8b\x17\x3a\xe7\xa0\xe7\x3f\xc6\x71\x2d\xfa\xb2\x5e\x26\xb5\x64\x3f\xab\x05\x3f\x2b\x8c\x96\xc3\x42\x09\x4b\x51\x3e\x46\x12\xab\xe4\x11\xa1\x39\xfc\xc2\x2f\x54\xc4\x6c\x9a\x6c\x6f\xa6\x79\x7c\x00\xcc\x15\x15\x77\xcf\xbd\x85\x5d\xc2\x65\xc8\x7e\xf3\x04\x4d\x81\x36\xa1\xb9\xd2\xba\x02\x9f\x2c\x84\x52\x27\x6f\xad\x0f\x50\xfa\x72\x6d\xb8\x40\x1c\xab\xa8\x47\xb8\x5a\x12\xda\x18\x24\x07\xb4\x6d\x80\x16\xcd\x3c\x43\x33\x05\x9c\x95\xf1\x69\x9a\xc3\x0c\x1c\xd0\x03\xef\x1f\x10\x47\x16\x0f\xeb\x98\x90\x94\x5a\x78\x7d\x1e\xc8\x1f\x20\x25\x00\x2c\xef\x75\xda\xc6\x48\xa6\x52\x55\xc4\xd6\x20\x4a\x40\x34\x78\x20\xef\x78\xbd\x86\x32\xf6\x80\x86\xa2\xd9\xea\x77\xdf\x7f\x2f\x6b\x28\xef\xe6\xdf\xf3\xa8\xf6\x39\x06\xf1\x6e\xdf\x7b\xee\xd0\xc8\x26\x00\xeb\xdb\x5b\x93\xed\xbd\x83\xf7\xe7\x5f\x25\x4a\xbf\x96\x97\xe6\x9a\xba\x3e\xe6\xa9\x45\x3a\x80\xaf\xd1\x5a\x0b\x92\x93\x06\xf0\x8e\xd7\x79\xf6\x1d\x11\xfc\x69\xd4\xdb\xb5\x5a\x08\x44\xd8\x83\x32\x90\x85\x43\xa8\x14\xbe\xb5\xa1\xa8\x56\xc0\x26\xf0\x7d\x90\xd9\x96\x49\xb3\xc2\x30\xde\x58\xac\x62\x5c\xec\x4d\x9a\xb5\x24\x89\x50\x50\xcb\x9d\x06\x03\x77\xb3\x97\xaa\x9e\xa1\x56\xd5\x13\xc0\x91\x55\x45\xcb\xcd\x97\x17\xba\xdf\xff\x0d\x61\xa2\x81\x0c\x85\x8e\xdf\x29\xd3\x38\x30\x28\xc5\xb0\x5e\xf7\x8b\x71\xee\x28\x97\xa0\x49\x70\xf3\xe5\xd8\xf6\xd9\x17\x52\x57\x73\x43\x0a\x81\x82\x9d\x32\x28\x97\x96\x97\x13\x74\x6a\x41\x13\x5c\xf7\x93\x80\x8f\xe2\x53\x9a\x9a\xc2\xf4\x05\xc8\x0f\xf8\x7e\x35\x1f\x17\x4e\xf8\xd5\xa4\xe4\xb8\xd2\x9d\xbd\x87\x16\x1c\x61\xc5\x9b\x91\xa6\x26\x9b\x5b\xae\x85\xf9\x24\x24\x97\x94\xed\x0d\x18\x70\xc7\x09\x58\xda\xdc\xb5\x27\x10\x31\x10\xa0\x94\xf1\x68\x62\xb4\x37\x30\xbc\xbb\x08\x04\xa0\xaa\x94\xdb\xe5\xba\xdf\x03\xc4\xa0\x5c\xf6\x87\xd0\x76\x21\x07\xe8\x8c\x6a\x49\x5e\x8b\x8b\xf2\xdc\x4c\x75\x2e\x2e\x21\x80\x14\x60\x6a\xf9\xd4\x4e\xd1\xfb\x2c\x4b\x01\x90\xdc\x26\x59\xda\x1f\xc6\x00\x08\xfc\x00\x10\x21\x1b\x5a\x20\x1a\xb8\xa4\x30\xac\x97\x75\x35\x42\x7c\x83\x18\xe0\x89\x07\x6c\x3e\x26\xbd\xc8\xe4\x6e\x5c\x7d\xa2\x5b\x38\x67\xa8\x38\x32\xfb\x65\xfc\xce\xb1\xc9\x0e\x6e\x0d\x9a\xe5\x3f\xa9\x3b\xc5\x17\xd9\x93\xcc\x42\xdd\xa9\x3d\xf4\xa1\x34\x5f\xfe\xb7\x20\xc5\xe6\xba\x53\x67\x89\xbf\x10\xb3\x70\x54\x60\x9d\xa7\xdf\x93\xfe\x6b\xd6\x5e\x8d\x72\x21\x8a\x51\xf1\xc1\xe8\xc8\x75\xce\x9d\xdf\xb9\xf6\x40\x5a\xfa\x1c\xfb\xa8\xd8\x55\xa8\x1c\xbe\x39\xd6\x79\x33\x25\x19\xc5\x55\x69\x58\x11\x8c\x57\x67\xe2\x21\xd6\x91\x58\x54\x5a\xae\x84\xc3\x82\xe6\x03\x23\xb8\xd8\x4e\xf8\xa3\x39\xb2\x6d\x5e\xb2\x79\x7e\xa9\x3a\x44\xcd\x5c\xa3\x4a\x72\xfb\x49\xbf\x0e\xbc\x90\x6a\x85\x7a\x2f\x5b\x17\xb6\x8c\xbc\x07\x7c\xca\x02\x86\x62\x07\xa2\x62\x92\x2d\x17\x4a\x9d\x26\xe9\xf4\x02\x29\xc6\x16\xb5\xd6\x1b\x6f\xc3\x79\xa8\x89\xea\xf2\x89\x33\xf0\xff\xed\x35\x64\x15\x7a\xae\x0f\x6a\x7e\xa4\xfe\x10\x6a\x6d\x2f\x6c\xd8\x6a\xc3\x37\xa6\xf2\x10\xee\xcd\x18\x8e\x32\xae\x03\x3b\x27\x39\x6c\xbe\xb4\x23\xbb\x4a\x2e\x7d\x83\xe1\xfd\x9d\x38\x33\x62\x3d\xc5\x51\x55\x6b\x82\xda\x8b\xf9\xf5\xed\xa7\x3f\xa4\x2d\x0b\x0f\x04\x25\x42\xf4\x4b\x4a\x88\x1b\x2b\x42\x30\x63\x7f\xa5\x94\x3d\x20\x46\x23\x2b\xa0\xa6\x79\x67\x6c\xac\x73\x76\x4d\xf2\xd6\x93\xe6\x36\xcb\x36\x8a\xe3\xb6\x74\x91\x42\x32\x92\x84\x2c\x46\x92\x9c\xb6\x44\x96\x23\x04\x27\x10\x04\x4c\x8d\x8d\xa0\xed\xf5\x7b\x4a\xd8\xc9\x1e\x98\xb9\x56\xec\x1c\xc3\x86\x6c\xb1\xc6\x62\x58\x86\x85\xda\x3c\x48\x4b\xa4\xca\x45\xf5\x50\x0f\xb2\x9e\xd2\x16\x76\xf2\xfc\x7a\x67\x72\x46\x68\x41\xb0\x3e\xe9\xf0\x91\xa5\x83\xcd\x7c\x06\x9a\x74\xd6\x1e\xc9\xf9\xa4\x6e\x48\xb8\xc5\x0a\xa4\x27\x1a\xa8\x17\xaa\xc5\x61\x83\x76\x08\x63\x56\xeb\x07\xc1\x42\x8e\x5f\x25\x86\x63\x15\x0f\x3d\xec\x10\x4d\x3b\x16\x49\x32\x01\xe1\x03\xe7\x8d\x6a\xcd\xe1\x42\x75\xc8\x47\xeb\x07\x80\xce\x0d\xd5\xf9\x0f\xb4\x23\x23\xaf\xc7\xa7\x45\xf8\x4d\xa0\x6a\x90\x7b\xb9\x24\x85\x18\xd1\xba\xd8\x88\xe2\xb0\x22\x81\x28\x39\x69\xb7\xd6\xff\x1e\x02\xb3\x18\x56\x73\x9d\xe9\x56\xe7\xfc\x1d\xf3\x48\x19\xfe\x5f\x81\x9f\xa2\x96\x25\xed\x4d\x10\x8f\x12\xf7\x83\x73\x95\xca\x80\xf1\x75\x5b\xd8\xbf\xcc\x7f\xa0\x82\xad\x5c\x0e\x47\xfc\x3a\x02\x63\xa3\xfb\x53\x26\xdb\xb8\x17\x0a\x48\xe9\x73\xc4\x4d\xbf\xa5\x22\xae\xcd\x66\x12\x55\x9b\x54\xc6\x28\xb3\xf5\xd1\x0d\x8b\xc2\x69\xfd\x24\xf9\xcc\x59\xf7\xaa\xf7\xce\xc1\x88\x78\xc6\xcd\xb5\x89\xad\x17\xa7\x32\x6e\x7d\x0d\xa7\x56\x88\xe1\xaa\xa9\xb2\x32\x81\x06\x59\xb2\x24\x41\x29\x8b\xbe\x65\x37\x0a\x05\x9e\x0d\xa6\x09\xf0\xa6\x50\x2a\xdd\xfe\x60\x9d\x95\xbb\xa0\x76\x11\xbc\xef\x6a\xfd\x53\xd4\xfd\x4c\xa0\x23\x43\x14\x94\x7a\x67\xf2\xda\xb5\x49\x0b\xf9\x87\x94\x83\x22\x29\x12\xa3\x4c\x6f\x12\x22\x0c\x91\xf2\xef\x2c\xf9\x65\x3f\xf6\x53\x94\x6f\x7c\x14\xe0\xce\x08\x4a\xb9\x2f\x83\x12\xce\xa8\xd6\x18\x00\xf8\xda\xf7\xd1\x5e\x7d\x2f\x75\x72\xc2\x73\x96\xec\xb0\xe9\xba\x45\x9b\x65\xeb\x9c\x7e\xb2\x73\x75\x52\xe0\x75\xac\xb9\xb9\xbe\xde\x3d\x35\x2d\x5d\x87\x0c\xcf\x63\x52\xd8\xa0\x5c\xca\xae\x0c\x2e\x97\x27\x35\xdc\x4c\x99\xc6\x9a\x7f\xf6\x07\x4c\x4b\x5b\xf7\xf2\x85\xcd\xd7\x37\x0d\x13\x33\x19\x0e\xd6\x27\xf9\xe4\x93\x1b\x92\xb5\x5d\xd0\xf5\x52\x30\x87\x33\x24\x32\x5e\xe0\xcb\x3c\xcb\x51\xb9\x1c\xf2\x32\xb0\xa6\xda\xc1\x7f\xa3\x56\x42\x5b\x46\xca\x9e\x10\xee\x09\x70\x3c\xbb\x57\x9f\xb9\x15\xb5\x31\x2b\xdd\xe7\xf4\xbe\xd4\x66\x4e\x71\x7b\x03\x15\x4a\x82\x11\x14\x23\xe9\x72\x2c\x99\xd2\x29\xa6\x0e\x4e\xdb\x44\x43\xb1\x9e\xbb\xb4\xa6\x53\x81\x0e\x55\xcd\xad\xbf\x5f\xdb\xfa\xfb\x75\x31\x10\x69\x46\x63\xdd\xb8\x72\xcc\xb2\xa6\x95\x50\xd2\xc9\x05\xe7\x2b\xd0\x76\xf1\xc8\x72\x52\x12\xbe\x5c\x68\x24\x0b\xaa\x0d\x3f\x07\x43\x20\x0f\xe4\x6c\x9f\x58\x9f\x19\x24\x9b\xa2\xd2\x48\x98\x38\xdd\x49\x92\xd3\x84\x0b\x4d\x1a\x0c\xa9\x3c\xfb\x48\x50\x78\x71\xf9\x08\xef\xc8\x79\xba\x36\x9a\x49\x6f\x12\xea\xed\x12\x72\x58\xba\x93\x59\xa9\xd4\x28\x0e\x87\x61\x24\x4c\x62\x3c\x50\xed\x50\x6d\x0f\x71\xa7\xf9\xb2\x7b\xfe\xb6\xda\x4f\x6a\x5a\x46\x25\x65\x4d\x85\x09\xa9\xdd\x87\x5a\x25\xe0\xc1\xc5\x14\x88\x42\xe6\x83\x0a\xb9\xda\x6b\x87\x0c\xa5\x6a\x52\x8c\xb3\xe9\x08\xbf\xb2\x75\x65\xbd\x33\x3e\x6d\xdb\xda\x5b\xa8\x9c\x73\x10\xa4\x1d\x00\x3a\x13\x8f\xe1\x20\x03\x71\x25\xbb\xd0\xa2\x89\x7d\xcf\x1e\xf3\x94\xd4\x65\x93\x3d\xc3\xc2\x52\x52\x4b\x68\x4d\x3e\xfd\x2c\xa5\x22\xa4\xd7\x71\x52\xe7\xa2\x97\xe5\x48\x5c\xb7\x61\xd9\x90\x62\x0c\x73\xba\x43\xf3\x71\x39\x55\x35\xc3\x43\xde\xa9\x96\x22\x60\x66\xc1\xdc\x4d\xa2\x74\xa6\xa0\x51\x93\x06\xa6\xf3\xf2\x25\x71\xe1\x29\x44\x02\xf9\x2e\x69\xe7\xca\x1a\xf8\xd6\x8f\x53\x5b\x57\x9e\x27\xc3\x4d\x6c\x57\xde\x29\xc7\x63\x88\x4e\x26\x4a\xfe\x91\xb0\x27\x79\xb6\xc2\x55\x84\x01\x64\x57\x31\xc2\x02\x58\x83\x90\x72\x1d\xcd\x4a\x07\xb5\xdb\x44\x52\xd2\x6f\x27\xd8\x64\xd2\x77\xee\x94\xe9\x06\x27\xef\x93\xf4\x5b\x08\xaf\x41\x38\x37\xe4\x4c\xef\x74\xb3\xa1\xbe\x09\x83\x99\x5b\xa3\xb9\xa4\x9c\xcf\xe9\xa6\x16\xd5\xe4\xed\x5c\x28\x95\x88\x02\x70\xa9\x42\xbb\x2f\x1c\x2c\x2d\x14\x6c\xbf\x7d\x0d\x8c\x1e\xb7\xe1\xfa\x8e\xfa\x44\xd5\x71\xdd\x95\x44\xfd\xbc\x65\xaa\x44\x53\x5c\xce\x32\x41\xf6\xb0\x55\x1a\x76\x35\xb5\x5d\x9a\xdd\x27\x77\x51\x43\x7d\xb0\xe4\x39\x46\xc8\xce\xf4\x2c\xd6\x46\x76\xf3\x09\x29\x40\x0d\x49\x5e\x9a\x34\x04\xf1\x61\x5f\x62\x6d\xe3\x4c\x17\x25\xd5\x0c\xe4\xe6\x76\x30\xe5\x28\x8e\xa6\x24\x1a\xd2\x8e\xbc\xd8\x6d\x29\xcc\x99\x15\x7d\x52\x22\xd9\x5a\x7d\x90\xc8\xc7\x66\x62\xf7\xfd\x82\x7b\xcf\xb6\x4c\x89\x7b\xd5\xb3\x2c\x04\xa8\x5c\x14\xbe\x76\xcc\xf9\x68\xcf\x16\x94\xac\xd0\xe9\x66\xd6\xb2\x00\xca\x91\x19\x32\x8f\x5a\x72\x1c\xa5\xb8\xb2\x0e\x47\x71\x3d\xac\x0e\x1d\x51\x91\x65\xa9\x16\xee\xc3\x87\x44\x35\x4f\x2a\x03\x60\x2e\xb4\x76\x6c\x22\x6a\x5e\xa1\xc1\x59\xeb\xe2\x1d\x2e\x78\xc3\x75\x7f\x30\x77\xe0\x60\x74\xe0\x88\x67\xe3\xf1\xca\x5c\x77\xe2\xe2\xe1\x43\x85\x23\x5e\x5a\x35\x9e\xee\xc4\x13\x72\xbc\x5b\xec\xcc\x4c\xef\xdc\x9d\xc2\xca\xfa\x40\x08\x75\x88\x97\xba\x00\xf0\xd1\x50\x22\x32\xcb\xb9\x73\xe1\x47\x94\x1a\x7a\xe9\x0a\x65\x53\xe2\x80\xb8\x29\xea\x72\xbf\x97\xaa\xb5\x65\x13\x12\xeb\x1e\x0d\xd9\xcf\x01\x26\x01\xe5\x12\x36\x1e\xfc\x42\x8e\x3d\x64\x14\x97\xfe\x3b\xf8\xff\x53\x6a\x63\x25\x37\x32\xe9\x7e\x10\x92\x14\x51\x34\xb9\x4e\xdd\xcd\xec\x5e\xc2\x34\x05\x91\x65\x52\x14\x74\x73\xb5\xda\xcc\x09\x55\x17\x4d\xba\x7b\x73\x6c\xeb\xc7\x16\x63\xaa\x3b\xfb\x90\x2e\x73\x25\x12\xc2\xc7\xed\xb7\xdf\x21\x49\x7c\xc1\xe2\x36\x6a\x81\x78\x4e\x20\xe9\xc5\xbe\xde\xfc\xc0\xbb\x13\xa2\x7e\xde\x98\x05\x28\xe6\xf1\x07\xd0\xe8\x7c\x92\xb2\x02\xfa\xf4\xb1\x14\xd4\xe3\x74\x24\x05\x24\xe3\x78\x0a\xe7\x1d\xfb\x20\xa6\x01\x9b\x93\xfe\xc3\x3f\x11\xab\x98\xf0\xe8\x11\x3e\xc6\xec\xdd\xb8\xd7\xa3\xb7\xf5\xe3\xc5\x76\x73\x55\x76\x94\x7a\x00\x1b\xd5\x81\xa0\x5a\xca\x99\x0e\x41\xdb\xf3\xf7\x59\x20\xa3\x4f\x6a\x03\xa4\xcc\x13\x9d\x70\x75\x3b\x7b\x33\x2f\x6a\x6d\x86\x40\x65\x81\xe0\xe4\xe3\x10\x55\xf2\x9d\xb1\xc9\xcd\xb5\x35\x27\x54\xc3\x13\xee\x9e\x28\xd8\xaf\x1a\x58\xe4\xd8\x1a\xe1\x96\xc5\xed\x8d\x8b\xdf\x6e\x42\xe7\x79\xff\x3e\xaa\x15\x31\xe2\xb9\x4c\xaa\x72\xad\xea\xcc\x03\x32\xda\x3c\x19\xb4\xe3\x7d\xf0\xd9\x9f\x3c\xe9\x55\x25\xa3\x48\x76\x61\x1c\xd4\xc8\x94\x27\x30\xe9\x22\x17\x68\xd1\x2f\x90\xdb\xe7\x82\x14\x24\x8c\x11\xec\x46\x95\x85\x18\x68\x0d\xc4\xe9\x99\x7b\x15\x52\x96\x06\x4d\x36\x56\x85\x38\x46\x5a\x06\xae\xec\x5a\xbc\xe0\x7e\x64\x73\xf9\xe9\x4b\x04\xd4\x47\x9e\x7d\x89\x64\xeb\xec\xa3\x6f\x99\xf6\x49\x32\x66\xba\x07\xd8\x68\xce\x07\x2c\x5c\x21\x9a\xc5\xdb\xfa\x3c\xed\x2c\xf7\xda\xdd\x5c\x9b\xea\xac\x41\xe1\x02\x79\x69\x67\xc7\x69\x91\x6e\x38\x4b\x13\x6c\x52\x29\xb1\x43\x05\x9d\x32\x0b\xd5\x61\xd8\xc3\xf6\x35\x70\x23\x0f\x9e\x4b\x17\x81\xaa\x03\x43\xe2\x3a\x43\x65\x45\xe7\x48\x89\xc9\xda\x8a\xda\x63\x6c\x51\xca\xbb\x09\x6d\xa2\x98\x41\xb6\xff\x93\x33\x55\xe1\xf0\xc4\xb4\x53\x6b\x30\x7a\x6c\x54\x62\x8b\x68\x87\x2f\x69\x22\x03\x7b\xfe\xcd\xe3\xee\xec\xbc\xba\xd8\xc5\x7a\xe0\x40\xf5\x35\x4e\x88\x97\x0e\xe4\xce\x48\x25\xac\x65\xe9\x40\x6e\x7f\x57\x51\x23\x2e\xa9\x74\xe6\x23\xab\x1b\x37\x42\x52\x5b\xde\x7d\xf6\x72\xf3\xd5\x69\x6b\x02\xc2\x97\xd7\xb8\x55\x5d\x1d\x03\xdb\x1c\x26\xff\x95\xd4\x70\xa8\xcb\xfc\x0a\xe4\x2f\xb2\xd0\x50\x2c\xca\x06\x39\x77\x6f\x18\x56\xd2\x54\x2f\x0f\x6d\x43\x15\xac\x50\xa7\x79\xae\xf3\x60\x1e\x31\x95\x66\x48\xdd\x9a\x7b\xca\x6b\xdb\x1d\xbb\x85\x1e\x94\xa8\xb0\x5f\xea\x2e\x4f\x0a\xe3\x02\x4a\x0b\x38\x5e\x89\x76\x60\x60\xba\xa7\xa6\x15\xc2\x71\x73\xe0\xb6\x38\x19\x44\xc1\x40\x50\x66\xed\x2a\x05\x4a\xa0\x16\x75\x51\x2a\x52\xe9\x33\x7e\xb5\x83\xc0\x92\xa1\x7f\x87\xa3\x5a\xa1\xea\x15\xe1\xd6\x8e\x72\x07\x1a\x81\x57\xf7\x4b\x1e\xba\x0a\x1f\x38\x62\x48\x18\xd7\xd8\x47\x1c\x06\x01\x95\x8f\x18\x36\x0c\x8c\xcf\x16\x26\x83\x5d\x62\xb3\xa9\x26\x85\x65\x99\x35\x3b\xa7\xc7\xc5\xa7\xe4\x80\x2d\x80\x4a\x69\xe0\x8e\x1f\xe5\xff\x47\x57\x95\x73\xa7\x94\x38\x1d\xef\x12\x5a\x22\xda\x3f\xdb\x8b\x4f\xba\xdf\xff\x4d\x94\x60\x84\xbf\x8a\xee\x57\x25\x72\x04\x7d\x43\x41\x1c\x0c\x55\xc3\xba\xef\x39\x41\x41\x52\x51\x52\x0e\x8a\x70\x4b\xe1\xae\x20\x3c\xa1\x7a\x68\x95\x24\x4d\xf1\x41\xcf\xc5\xfa\x9e\x05\x2e\xa8\x06\x31\x60\xb3\x50\x82\x8d\xf6\xf9\x87\x1f\x1c\x3b\xfe\x61\x5f\xa5\xe4\xd1\xfd\x4f\x96\xb5\xa4\x59\x65\xe2\x56\xf7\xe6\x1c\x45\x46\x09\xc7\x67\xb1\x16\x6e\x45\xe9\xeb\x5c\xf2\x07\x0b\x8d\xb2\xb4\x4c\x70\x74\x01\xa3\x79\x49\x72\x29\xda\x24\x21\x83\xfa\xf3\x01\x5a\x59\x4f\x16\xca\x3a\xba\xdf\x03\x36\x6c\xe7\xfa\x95\x77\x81\xfc\xbd\x97\xa9\x6f\x77\xf7\xfe\x3f\x47\xe5\x9e\x3c\x51\xff\xa8\xe2\xbd\xea\xa3\xd2\xaa\x11\x0f\x2b\xb3\xa1\x10\x58\x70\xe2\x43\x7c\xa3\xb2\x1b\xd6\x6d\x5a\xbd\x67\x22\x37\x84\x11\x6f\x29\x63\xb9\xcd\xfa\xbb\x9d\x38\xcf\x3a\x72\xe5\xc2\x80\x5f\xf6\xe8\xff\xef\x0f\x94\x1b\xbe\xf8\xb3\x5e\x28\x05\x0d\x14\x63\x14\xca\xc5\xe1\xf3\x84\xe7\xb3\x76\x5a\x92\x7d\x67\x2c\xbd\x4c\xa7\x20\xaa\xf5\x15\xcb\x61\x15\x68\x6a\xa9\x54\xe7\x80\x07\x1d\xfa\xe9\x28\x4b\x44\x7d\x69\x3b\x46\x55\x75\x59\x86\x91\x18\x31\x71\x69\x61\x23\x68\x9d\xb6\x8d\x59\xa8\xc8\x4c\x09\x2f\x9e\x4f\xf5\xd1\x11\x3b\xea\x04\x2c\x4f\x0f\x8a\x41\xe1\x9c\x91\x5f\x1e\x34\xfc\xe8\x4d\x16\xc5\x31\x4e\xa2\xa5\x3d\x11\xf7\x6c\xd1\x18\x87\x66\x14\xc3\xda\x68\xbe\x1c\x54\x4f\xe4\x14\x23\x03\x85\x70\xb2\x4f\x00\x33\x91\xc7\xaf\x39\xed\xb0\x88\xb4\x52\x45\x53\x2c\x99\x0d\xc2\x5a\x40\x56\x2b\x51\x02\xc7\xb0\x73\x1e\x15\xe5\xb4\x0c\x2a\x34\x58\xad\xc2\x24\x2d\xc4\x33\xda\x39\x3d\x05\xe9\x82\xc7\x56\xc6\xdc\x81\xfc\x00\x50\xad\x13\x07\x0c\xd9\x57\x35\x25\xc1\x18\x09\xc5\x74\x6b\xeb\xf4\x7c\x06\xdb\xd4\xa8\x8e\x90\x8f\xd2\x97\xfc\xef\xfe\x7d\xfc\xf3\xcf\xfc\xa3\x81\x21\x32\x75\xf8\x88\xff\xb0\x19\x2e\xd7\x4f\x7f\x52\x72\x8e\x3f\xc0\xff\xe8\x30\x59\xf4\x55\x8a\x73\xdf\x34\x10\x5d\x43\x8d\x80\xc2\x3b\x57\x88\xe2\xb1\x0d\x48\x0a\xfd\x12\x13\xf1\x70\x10\x99\xc6\xe7\x94\x50\x25\x6b\xab\x2a\x92\x66\x44\x7c\x10\x05\x2f\x86\x15\x10\x58\x04\xc6\x55\x64\x99\x8c\x29\x6d\xce\x67\x65\x23\x31\x22\xfc\x4c\x01\xab\xd6\x40\x8f\x44\xb4\xde\x4a\x7f\x01\x0d\x16\xf0\xbc\xee\x19\xb0\x51\x57\x0f\xe2\x3c\x05\x2e\x25\x26\x80\xfe\xaf\xb3\xca\x4b\x10\x51\xa6\x88\xb0\x49\x72\xe3\xba\x8f\x14\xe7\x94\xd4\xfa\x09\x1b\x32\x66\x94\x89\x0b\x98\x1a\xc4\xa8\xfd\xff\x7b\x48\xf6\x5a\xcf\x64\x2d\x3f\x72\x81\x51\x0b\x51\xc7\x49\xf9\x41\x74\x26\xa2\xab\x09\xef\x77\x8c\x31\x0e\xca\x7e\x14\xc3\x62\x44\x92\xe4\x8d\x2f\x19\x31\x7c\xab\xb8\x99\x2b\x95\x00\x93\x8a\x20\x12\xe6\xa4\x97\x71\x1d\xd8\xb4\x42\x24\x0d\xc0\x22\x18\x0f\xb6\x07\xda\xa2\xea\x85\x11\x94\xdf\x54\x18\x9b\x28\x86\xc5\xa6\xa4\x21\x9d\xe7\x0f\xbb\x4f\x5f\x88\x42\x8a\x21\x75\x1b\xa0\x46\x86\xe4\x02\x51\x09\x8e\x4b\xa5\xc0\xa7\x12\xcd\x8a\x1b\x52\x41\xba\x4a\x3e\xc3\x6a\x88\x7d\xe9\x43\x95\x5f\x45\x26\x13\xf3\x23\x92\x0c\x4a\x6c\xa2\x6b\x0d\xa2\x68\xed\x16\xe2\x85\x81\x5e\x83\xaf\x6f\x6e\x8f\x9d\xd6\xc5\x15\xa0\xa6\x9c\x5c\xe8\x2e\x2d\xf2\x3a\x0d\xff\xa5\xae\x50\xa2\x24\x37\xb3\x0f\xe1\x3a\xd7\x85\x1c\xbf\xd5\x99\x7e\x40\xf6\x7e\x59\x0a\x7b\xd9\x37\xac\x34\xe4\xc1\x43\x8b\xd7\x27\x52\x0f\x71\x39\xab\xb3\xcc\x6f\x7d\xc9\x45\x35\x3e\x56\x91\xbd\x19\x40\x83\x96\xfc\x2c\x8f\xa9\x51\xa9\x08\x6b\x59\xcf\xbb\x70\xb4\x73\x76\xeb\x9e\x55\x5d\xed\x99\xac\x2d\x63\xf7\xbf\x4b\xf5\xcc\xf1\xec\xd6\x2e\x6b\x78\x61\x0d\x84\x3e\xa3\xb1\xe0\xea\xe1\x1c\xae\x6e\xbe\x7c\x4a\xa7\x74\xb7\x51\x03\x79\x8a\x30\x52\xc3\x00\x22\xe9\x10\xfa\xdb\x2a\xc6\x74\x37\x38\x70\xdb\x63\x9a\x27\xd8\x03\x93\xa7\x3b\xaf\x2f\xd3\xe6\x49\xcc\x33\x59\x29\x73\x6a\xa8\x4c\x4b\xd6\xb6\x11\xc8\xb4\x31\xc7\x1b\xc5\xa0\x99\x1a\x8c\xd8\x11\x06\x51\x4c\xd9\x39\x5c\x29\x5f\x2b\x17\x8a\xbe\x0a\x39\x14\xf5\x80\x03\xa3\x4c\x40\x56\x8f\x89\x7d\x96\xe8\x9a\x16\x26\x2e\x0c\xe4\x0e\x96\x3c\x73\x55\x34\x20\x44\xbb\xae\xa1\x51\xae\x6a\x00\x39\xc0\x98\x32\xa7\xab\xd4\xcf\xc0\x42\x22\xa7\x80\xd6\x2f\xe6\xb5\xa5\x32\x49\x9d\x83\xa9\x34\x2e\xc4\x86\xb4\xd7\xad\xee\x56\x4f\xe9\xbc\xd7\xa6\x71\x96\x50\x40\x53\x4b\x4d\x92\xaf\xb4\x89\x49\x40\x94\xe3\x22\xd1\x60\x28\x80\x06\x46\xef\x9f\x84\x1e\xff\x05\x22\xde\x07\x02\x9e\xdb\x8c\x19\x5e\x24\xbb\x0f\x28\xe8\x2c\xf9\xb5\x0f\xe3\x65\xc5\x5d\x62\x1a\xd8\x1d\x6a\x64\xb5\x88\x44\x86\x33\xe0\x9b\x46\xc3\x86\x69\x50\x03\x71\xfd\x07\xc0\x3b\xec\x5e\x84\xa2\x23\x6a\x94\x1d\x25\x05\x1c\xef\xb1\x52\x7e\x60\xd4\x85\x36\x65\xdf\xe0\xbd\x80\x54\xfc\x2a\x5a\xa7\x30\xf6\xdf\x1d\xd2\xe6\xc6\x2d\xf6\x0a\x70\x1b\x46\x18\x83\xd2\x0f\xff\x4b\xfb\xd0\x87\x79\xe4\xa2\x38\xf7\x31\xfd\x93\x5a\x03\x8f\x0e\xd4\xf8\x94\xfe\x49\xad\x51\xf7\x41\x6e\x8c\xd9\x04\x9d\xfb\x9c\x7e\x78\xfc\xab\x94\xde\x27\x5c\xbc\xb2\xfa\xc7\xf8\x77\xcf\xda\x95\x30\x8a\xf1\x8e\x41\x83\xc1\x71\xf8\xdb\x13\x3f\xa2\x6c\xd8\xb2\x3a\x03\x4f\xd4\xc7\x63\x4c\x2b\x91\x53\xc6\x97\x43\x07\xff\xf2\x9b\xaf\x90\x09\xa5\x7f\x91\x01\x35\x9d\xf1\xc8\x67\x67\x92\x77\x2d\xd4\xf8\xf5\x57\x29\xb0\xf2\x83\x85\x13\x7e\x8e\x7f\x72\x1d\x6f\x60\x94\xc1\xa9\xca\xb5\xba\x7f\x32\x08\x1b\x51\x0e\x0d\x2a\x3a\x9f\x9f\xa2\x59\xdf\xc6\x39\xb4\x1a\x26\xbe\x30\xdd\x21\xbd\xd3\xa7\xf0\xa7\x4d\x6e\x4a\xe2\xcb\x51\xfa\xa1\xa1\x35\x2a\x79\x39\x73\xa4\x46\x09\x2c\x88\x02\x94\x26\xe3\xdc\xd7\xea\x97\x57\x88\xd1\x26\x15\x94\x80\x2b\xc7\x59\x1c\x10\x18\xfa\x17\xfe\x75\x44\x21\xe8\x6b\xdd\x55\xa8\x2c\x3a\x5f\x0c\xfb\x75\xdf\x0b\x22\xaf\x1a\x7a\xa2\xcc\x1b\xf5\xe3\x3e\x87\x42\x72\x56\x35\x1a\xb1\xf3\x45\x8c\xc3\xac\xe1\x01\x1b\x29\x87\xaf\x6a\xd7\x7d\x42\x0a\x57\xfb\x9c\x7e\xb8\xdf\x6c\x50\x5c\x27\x15\x96\x20\xff\x72\xd7\x1c\x75\x3f\x33\x96\x09\x4b\xf4\xe7\x3f\x80\x22\x1e\x92\x80\x22\x7f\xfc\x03\x70\x6a\x21\x25\x92\xfc\x8c\xfe\x51\xa5\x94\x54\x20\x47\xb1\x4d\x7a\xcf\x90\x46\xf0\x53\xfc\xbf\x2a\x93\x91\xbd\x20\x03\x81\x20\x0a\x74\xb9\x1f\x0a\xe0\xf0\x79\x50\xe0\x61\x81\x5d\x33\xa8\xe6\x65\x14\x14\x49\x49\x71\xe8\xa1\x5b\xa5\x87\x52\x0f\xae\x2e\x26\xac\x24\x6b\x79\x9f\xf7\x41\x19\x35\x40\xa3\xde\x70\xe1\x24\xae\x97\x27\xb4\x9f\xff\x6a\x9b\x37\xa9\x3b\x04\x10\xca\x35\x60\xb3\xa6\xe8\xd4\x2f\x05\x71\xee\x43\xf8\x9f\x1e\x06\x80\xcb\xf5\xc3\xff\x54\x09\xdf\x8c\x32\x95\x9d\xbe\xce\x9d\x0a\xc5\xb0\x1c\xd6\x4d\x96\x71\x79\xfb\xdc\x0f\x89\x3a\xa8\xee\xc5\x8b\x3a\x71\x0d\x73\x05\xbd\xc3\xe8\x04\x75\x6f\x2e\x6e\xcf\xdf\xef\x3e\x5f\x4b\xde\x1b\x5c\x9f\xc6\xbf\xf5\xd3\xc2\xce\x8d\x33\xce\x17\xe1\x87\x28\x55\xc4\xd6\x37\x11\xbb\x67\x8e\x55\x7a\xd5\x24\x61\xb0\xd7\x9d\x51\x33\x0d\xa2\xac\x29\xfd\xd8\x34\x3f\x63\xb9\xf0\x37\x17\xd0\xe1\x23\xc3\xf3\x4c\x70\x5f\x20\x5e\x8c\x9f\xee\xdc\x79\x8e\xd2\xbc\x6b\x4f\x40\x51\x93\x9d\xce\x4c\xb5\xb4\x79\x75\x39\xc3\xd1\xbe\x37\x6a\x02\xbb\x98\x2b\x84\x5a\x05\x93\x43\x12\xc1\xaa\x15\x60\x2f\xb2\x4b\x4f\x24\xa2\x1d\xd1\x42\xb1\x72\x65\x7b\x63\x3c\xa3\x1a\x23\xe1\xe7\x8d\x4b\xed\xe6\x03\x47\x55\xa8\x9a\x8a\xdc\x4a\x69\x49\x27\x33\x05\x6c\xec\x0a\x08\x5f\xdd\x8f\x1a\xe5\x18\x3d\x4e\x2f\x76\x6f\xdf\x44\x9b\x28\xc8\x7d\xd8\xd3\xa4\x1d\xad\x3a\x6f\x7b\x59\x28\xa1\xd5\x16\x8e\x32\x78\x34\xa3\x7a\x36\x0b\x6a\x54\xea\xc1\x86\xba\xb5\x4a\xb9\x83\x9c\x16\xe4\xea\xb9\x76\xf3\x7b\xc3\x27\xd2\x1c\x62\x98\x2f\x35\x80\x06\x90\x2c\x48\xc1\xb5\x92\xdd\x73\x06\x96\xa3\x8b\x72\x3a\xd9\x4b\x4e\x80\xa7\x9c\x5d\xd6\xdc\x61\x53\x0c\x0c\x03\xe9\x00\x5a\x75\x94\xc8\xb0\xa7\xbf\x23\x9d\x10\x69\x5b\x7d\x0f\xa3\xe9\x3d\xb1\xaf\xec\x0e\x58\x5c\x10\xad\x8f\xcb\x0f\x56\x1d\xa6\x17\x14\x79\x6a\x95\xd3\xde\x38\x06\xff\xab\x07\x94\xe6\xcd\xfe\x28\xe7\x7c\xac\xe1\x7b\xc7\x10\xf8\xbb\x32\x19\xdc\x7b\xce\x14\x41\x0a\x82\xbb\xca\x47\xfd\x92\x51\xae\x32\xe3\x08\x40\x48\x77\x2b\x70\x01\x20\x3c\xfc\xed\xf1\x6f\xbc\x2e\x45\xd5\x5f\x79\x95\x06\x70\x2c\x03\xbe\xf7\xce\x28\x40\x7b\xbf\x52\x79\xbf\x54\x7a\x27\x6d\xbe\xea\x30\xa9\x09\xb3\x0e\x79\xb8\x00\x7c\x87\x0f\x17\x9d\xe0\x37\x3d\x51\x0f\x9d\x7c\x47\xff\x3f\x0b\x90\x22\xb7\x19\x48\xc3\xef\xc6\xf2\x7c\x09\x37\xf1\x80\x8f\xca\x6d\xaf\xa4\x31\x46\x57\x87\xb1\x64\x51\xe8\xd5\xe0\x7a\x2b\xfb\xde\x48\x58\x7d\x87\xa6\x82\x76\x36\x74\xad\x70\xa6\xc1\x6e\xaa\x47\xe9\x1f\xeb\x8b\x20\x88\xc7\xe9\x9f\xde\x63\x63\x14\x1c\xe5\x93\xee\x85\x83\x7a\x24\x0e\x36\xf0\x22\xe9\x85\x0b\x45\x5c\x35\x3a\x8f\x89\xa2\xd4\x7a\x79\xb1\x73\x90\xac\xf3\x7d\xa8\x7b\x1e\x09\xca\x65\xaf\xee\x57\x42\xb8\x0a\x83\x18\xd7\x96\xd7\x19\xb1\x05\x97\x5f\x81\xbe\x96\x69\x71\xc4\x7e\xf6\x8e\x85\xb8\xbf\xbd\x91\x02\xb0\x4b\x31\x73\x4e\xe8\xd3\xfb\xaf\xe9\x7d\x27\x97\x5e\xcd\x93\x2f\x9a\xc4\x4c\x53\x12\xfd\xca\x82\x3e\xde\xd3\x91\x9b\xd9\xd0\xa8\x61\x64\xca\xc1\xeb\x07\xd5\x4f\x8f\x49\x71\xfc\xc4\x76\xfd\x56\x0d\x86\xc3\xf0\x44\x94\xfb\xb3\x3f\x40\x7f\x18\x1f\x86\x82\x98\xbf\x51\x7a\x4f\x76\x10\x16\x81\xf3\xaa\xce\x40\x21\x0a\x8a\x3a\xab\x70\x67\x6e\xad\x7b\xf3\x49\x62\xd4\x25\x5c\xf2\x7a\xfe\xaf\x28\xd9\x76\x2e\x3c\xdf\xb9\xb6\xd6\xb9\xf9\xac\xf3\xd2\x04\x44\x9e\xeb\x22\xf1\x95\x76\x5e\x57\x9f\x85\xcb\xac\x83\x18\xbc\xf1\x84\x8b\xb0\x9e\x3f\xfb\x90\xa2\x26\x35\xc3\x9c\x9a\xed\x5a\x9e\x05\x44\xde\xcd\x99\x81\x8c\x29\xce\xe6\x32\x52\x29\x69\x0b\x16\x9e\xe6\x09\xfd\xad\xbe\xdd\xf7\xe2\x51\x6e\xf8\x82\xc9\x51\xc7\xf5\x42\x35\x1a\x74\x4c\xcb\x68\x9c\x59\xbf\x97\x52\x2b\x7d\x52\xe8\x20\xa7\x85\x5d\x15\x76\xaf\xb3\xa0\x62\x5e\x9b\xfb\xca\xe0\xc1\x11\x82\x76\x5c\x14\xc6\x39\xc8\xc0\xae\x25\x19\x9c\x36\x9b\x36\x60\xca\xa6\x4d\xd1\x9b\x18\xa3\x16\xb1\x71\xcf\x4a\xe7\x6d\x4c\x84\x7d\x5e\x85\x2f\x9b\xed\xec\x96\x9c\x84\x35\xcc\x94\x9e\x65\xac\x49\xaa\x21\x40\xbb\x3b\x38\xf5\xb3\x50\xe6\x70\x6a\x9d\xd3\xe3\x68\x6f\x9f\x58\xa7\xf0\x2e\xad\xee\xd9\xba\xb7\xd6\x59\x46\xf1\xbf\x77\xd6\x9a\xc4\x42\x61\xce\x4c\x20\x10\xb9\xc3\xb5\x23\xef\x23\x6a\x6c\xa4\x08\x47\x13\x23\xfb\xa1\xc8\x99\x62\xa5\x76\x59\x49\x78\x2b\x29\x57\x8b\x69\xd3\xd8\x07\x43\x38\x7c\xa8\x76\x24\xbd\x2b\xb9\xaa\x3a\x34\x90\x02\x2f\x1f\x58\x5b\x46\x45\x13\x5a\x6d\x97\xba\xe7\xc6\x3a\xcf\x6f\x5b\x49\x5d\x9c\x01\x1a\xa3\x83\xed\x86\x76\xc5\xbf\x3f\xa5\x75\x9c\xb5\x86\x96\x4d\x15\x0c\x9e\xd5\xc9\x00\x6c\x53\xcb\x9e\x8e\xf4\x49\xf4\xb3\x70\x96\xba\x27\x8d\xea\x95\xc2\x09\xe0\xe2\xe4\x09\xe4\xf0\xc3\x34\x68\xec\x3b\x95\x30\x33\x2b\x73\x22\x4e\xdd\xe0\xb4\x65\x1c\x63\x8f\x81\xda\xae\x31\x49\x97\x18\x55\x11\xfd\x29\xf5\xf5\x10\x1a\x73\xe2\x54\x6a\x2c\x0d\xb1\x46\x58\xf9\xa8\x66\x35\x4e\xba\x7d\xba\x40\x7a\xf9\x2e\x2b\xb0\x7c\xf5\xa6\x43\x4e\x02\xcc\x96\x3b\xf4\x9e\xc0\x58\xea\x80\x22\x5e\xf3\x9c\xa6\xcb\xcd\x0f\xad\x76\x28\x06\x5a\x5e\xbe\x4b\x1b\x50\x04\x05\x27\x7a\x14\x9e\x3d\x72\x22\xbb\x66\xf9\xb6\xd0\x35\xc2\x77\xaa\xbc\x5b\xbd\x34\xb4\xd2\x0d\xcb\x74\x45\x5e\xc1\x4c\xe8\x38\x14\x7a\x7e\xeb\xdc\x2b\xbe\xe8\xa4\x97\x8c\x70\x60\xda\xba\xb6\x86\xfe\x74\xe4\x1b\xe6\xc4\x8b\x77\x1e\x5c\xc5\x90\x53\x2b\x1d\xae\xce\xb3\x2b\x9d\x16\x66\x8d\xdc\x6b\x26\xe4\x29\x86\x6c\x8a\x9d\xe8\x30\x84\x90\x41\xdc\x99\x72\xfa\xfa\xb2\x5e\xe6\xec\x5d\x9f\x7d\xda\xff\x85\x2b\x8d\x35\xa7\x28\x13\x98\x95\x15\x75\xfb\xf1\xea\xd6\x8b\x67\x32\x25\xcf\x5d\x11\x7a\xd4\x5c\xf6\x7a\x5a\x9b\x25\x6a\xb4\x51\x97\xb4\x7e\x19\xde\xdc\x29\x3c\x8c\xc8\xcc\xef\x30\x32\xe8\x2a\x81\x65\xdb\x67\x17\x37\x5f\x5f\x36\x95\x88\x32\x09\x6f\x5a\x44\xaf\x4c\x3c\x62\xb8\xdb\x2e\x3b\xee\x36\xbc\x83\x04\x81\x47\x1c\x98\x79\x41\xed\x88\x34\x3d\x96\x65\x33\xbe\x48\x38\xd5\xa1\xe7\x0e\xfb\x9f\xf6\x76\x2e\x75\x27\x4c\xea\x0d\x71\x5d\x71\x1a\x5b\xdd\xcf\x94\x93\xcc\xcc\x8c\x88\x32\xd3\x6d\xd1\xa8\x57\x85\xa0\x6d\x3b\x7f\xe3\xd9\xbe\xbb\xb0\xf5\x60\xcd\x0d\x72\x74\xaa\x01\x26\x1e\xaf\x6d\x5d\x7b\x6d\x84\x91\x2d\x19\xc9\xe0\xe5\x90\x9c\x04\xc4\x3d\xa6\xa5\x23\x1f\x05\xce\xa4\xa7\x7a\xa2\x66\x86\xdb\x3a\x19\xc9\x93\x7c\xac\xb8\x49\x44\xe3\x9c\x39\xb4\x04\x87\x29\x48\x16\xf5\x22\x49\x95\xd8\xa0\x7b\x23\x51\x06\x6d\x10\xee\xc7\x98\x91\x72\x8e\x73\xb3\x21\x8f\xe3\x9c\x31\xca\x0b\xbf\xbd\xba\xb1\xbd\xf8\x54\x1b\x76\x6c\x72\x20\x8e\x15\x66\xe2\xc3\x4c\x5c\x47\xf0\x38\x1e\x3e\x44\x7f\x26\x4e\xa5\xa0\x69\x76\x1c\x8c\xe3\x2d\x4e\x89\x56\x67\x9e\x11\x67\x30\xa9\x2c\xe5\x32\x18\x46\x24\xbe\x7e\xf7\xbf\xf7\x7f\xfa\x89\x8a\xb8\xff\x95\xe8\xfa\xdb\xf7\x47\x46\x46\xde\x47\x29\xea\xfd\x46\xbd\xec\x57\xb1\xb0\x24\xc6\xf2\x2b\x4c\x53\x7e\x44\x85\x2b\x1d\x3e\x04\xbf\xde\x23\xba\x28\xf8\xf9\x5e\xbb\x5c\x92\x8e\x25\xe2\x38\xd8\xcd\x17\xc7\x99\xa4\x1c\x86\x16\x53\x2e\x8c\x43\x37\xb2\xbc\x55\xec\x85\xaa\x71\x3a\x2b\x4e\x89\x9f\x91\xcf\xca\xbc\x86\x71\xc3\x49\xfb\x96\xb5\xeb\x3c\xc3\xde\xa5\x45\x1e\x1f\xc4\xfe\x18\x16\xff\xfb\xce\xca\x19\xa3\xdc\x3f\xe9\x6b\x57\xd4\xc7\x2e\xe9\x47\x9a\x87\xa7\x07\xa3\x7c\x4d\xda\x21\x78\xd1\x27\x22\x35\x81\x2d\x6f\x24\xa0\x93\xcf\x49\x58\x2d\x8f\xe6\x78\xd1\xf0\xb7\x58\x23\xcf\xd9\x5a\xf4\x36\x90\xde\xbb\x94\x2e\x31\x97\xc8\x87\xe8\x54\x70\x3d\xd4\xb2\x06\x3a\xd5\xd9\x98\x51\xd6\x1a\xe1\xe9\x8c\x94\x27\x7d\x73\xef\x9c\xbe\xe0\x6c\x59\xe7\x54\x59\x67\x52\x31\x26\xde\x88\xbc\x80\xf7\xc4\x92\x08\x5a\xe0\xdc\xde\x69\x94\x40\xd4\x4c\xa3\x04\x9e\xe1\x8c\x3d\x9b\xd1\x91\x10\x2a\x52\xd8\x84\x84\xfc\xc1\x56\x3b\x64\xf1\x02\x4c\x99\x82\xbe\xf7\x32\xba\x85\x4e\xe7\x22\x65\xed\x58\xb4\x59\x52\x1a\x97\xf0\x2f\x54\xf4\x2c\xb9\x0f\x11\x71\x51\xb9\x50\x3c\x91\xd7\x14\xc9\x09\x74\xc2\xaf\xc2\xd1\xeb\x81\x4c\xe2\x9b\xf0\x55\xe4\xf4\x7b\x16\x4f\xbb\x94\x16\xc4\xa7\x0f\x00\x75\x9a\x0c\x3c\x48\x54\x49\x7d\x54\xc3\xa9\x83\x22\x7b\x95\xcc\xf4\x4d\x11\x4a\x2d\x5e\x57\x32\xd0\x5d\x2b\x87\xa3\x1c\x29\x47\x48\xe3\xa8\xbd\x07\x2a\x9d\x81\x89\x10\x5d\x39\xf7\x41\xa9\xe4\x1d\xa3\x9f\xde\xff\xf0\x47\x4d\xf1\x35\xcc\x9b\x30\xff\x67\xd8\x20\x93\x0a\x6a\xd2\x00\x04\x9a\x8c\xaa\xa3\x1e\xd7\xc0\x14\x36\x7d\xa6\x38\x60\xea\x38\x53\x46\xa8\xae\xaf\xa3\xfc\xaf\x51\xc9\x8e\x18\x3b\xa6\xc0\x2b\x13\x9e\xd2\x2f\x09\x3d\x9e\xd5\x52\x07\x8c\x19\x2d\x47\xe0\xda\xf3\x50\xfc\xf6\xf0\x33\x01\x28\x08\x1b\x11\xf9\xa5\xd9\x60\xdc\xb8\xaf\x4f\xfc\x11\x63\x96\x8e\x2e\x8f\x11\xe1\x68\xb8\xd2\x26\xac\x94\x7a\x42\x4f\x97\x8a\xf1\x94\xfa\x49\xe5\x5e\xc9\x9c\x98\xd6\xee\x99\xaa\x3c\x0e\x34\xf2\x23\x52\x88\x52\x23\xfd\xcc\x54\x2f\x05\x5f\xcf\x81\x48\x7c\x18\x88\xdd\x5d\xd5\x57\x0a\x06\x07\xfb\x06\xea\xe1\x48\x84\x91\x64\x8d\x7a\x11\x69\xab\x7c\x27\x42\xde\x53\xa2\x1a\x5a\x4a\x60\x4b\x6c\x3f\x5a\x14\x05\xec\xcd\xe5\x38\xa0\xd1\x17\xa0\x4b\x05\x27\x9b\x3d\xbe\x55\x32\x71\x46\x7b\xbd\x35\x57\x64\x68\x53\x52\x8c\x21\x18\xd1\x70\x38\x92\xc7\xbf\x28\x5c\x2e\x12\x00\x84\x89\x09\xae\x6c\x62\x00\x65\x5d\xac\xc1\x4b\x01\x32\x14\x88\xb1\x32\xb6\xe0\x60\xc9\xeb\x8c\x4d\x26\x39\x64\xa9\x31\x43\xaa\xa8\x23\x0f\xe0\x32\x77\xdb\x31\x05\xd1\xd1\x20\xc0\x1a\x78\x89\x4a\x4c\x2f\x35\x1c\x80\x7f\x11\x7a\x19\x93\xf8\x05\xe2\xf1\xfb\x3f\x7d\x22\x7e\x91\x13\xa0\xc8\x77\x61\x26\x08\x58\x96\x33\x52\xfe\x86\x7d\x19\x7e\x87\xf2\x33\x7b\x84\xd2\xdf\xce\x13\x74\x89\xaa\xa5\x7a\x61\x30\xce\x09\x47\x51\xa4\xc6\xda\xab\x11\x3d\x0d\x24\x14\xf9\x3c\x60\x1a\x08\xc0\x31\xad\xe3\xf2\x39\xd2\xae\xca\x62\xcb\x90\x29\x0b\x0b\x68\x07\x48\x79\xc0\x00\x84\x97\x9d\x6b\x17\x38\x81\xe3\x4b\x03\x8f\x06\x7e\xd3\x1c\x2f\xfb\x78\x6b\xe6\xc5\x93\x6a\x62\x7f\x7a\xc6\xe3\x6a\xb2\x62\x5c\x18\x92\xb1\xa4\xe8\x13\x2a\xa2\x57\xe4\x37\xe2\xd2\x9c\x14\x45\x76\x5b\xc1\x37\x68\x1f\x57\x02\xa3\x22\x18\x54\xe2\x29\x64\x93\xb5\x46\x46\xd4\x51\xc6\x3f\x90\x61\x2d\x4b\x27\xe7\x21\xb4\xd6\x54\x99\xa5\xcd\xd7\x1d\xc4\xed\x38\x41\x17\x87\x6c\x20\x19\x3b\xa4\x92\xf9\x4a\xc9\xb9\x1b\x8f\x17\xea\x27\x4a\xe1\x48\x55\x5c\x8f\x4e\x8c\xac\x84\x31\x52\x47\xfd\x76\xf7\xc6\xcb\xed\x37\x1b\xc4\x50\x19\x6b\xcf\x6f\xa5\x88\x85\xbf\xcc\xaf\xee\x25\x7b\xb7\x5c\xe3\x12\x32\x0d\x40\x26\x5b\x9e\x6c\x85\x6c\x2b\x66\x2d\x22\x91\xe1\x2d\x77\xba\xf9\xf2\xe9\xff\x1a\x7b\x94\xb6\xed\xdc\x30\x70\x03\x27\x42\xc1\x8a\x32\xe4\x32\x3b\x87\xa7\x02\x48\x06\x24\x2c\xca\x0c\x37\x2b\x3b\xb7\x6e\xa7\xbe\xa0\x23\xc9\x8f\xd4\xb1\x3c\xfd\x9e\xb4\xc9\x69\x6b\x46\xe9\x7e\xa2\x61\x6b\xb5\x50\x6a\xa4\x65\x36\x76\x29\x3e\xf7\xc0\x27\x0d\x44\x74\xc2\xc9\x05\x4e\xc7\x0e\x9b\xc9\x3e\x31\x79\x7d\xe2\x6c\x90\xce\x41\x92\xfb\x39\x2f\x2e\x44\x99\x66\x4b\xc4\x88\x89\x3d\xce\x62\x2d\xeb\xa6\xed\xd9\x4f\xd9\xe9\xfa\x64\xec\xf0\x5f\xc2\xfa\xd0\x57\x46\x3a\x4b\xb1\xb0\x2a\x95\xa5\xf9\xc9\x89\xf8\x52\xea\x2b\x23\xd6\x6b\x7a\xfb\xd1\x75\x72\x28\x3b\x45\x2c\xff\x29\x23\x7e\x0a\xe1\x70\xc2\x01\xf9\x58\x9c\x6c\xef\xa6\x5c\x40\xb9\x5c\xdb\x1e\x54\x72\x09\xf5\xa0\x13\x3f\x1e\xd6\x99\xbe\x6a\xe7\x50\x13\x26\x4e\xeb\xe5\x4b\xfd\xf0\x41\x2d\xcc\x0b\x7f\xb1\x9c\xc1\x0e\x83\x40\xc2\x86\xc7\x1c\xaa\xae\xc9\x4f\xb5\x7a\x12\x1f\xdf\x8b\xc2\x8a\x8f\x56\xa2\xed\xc5\x67\x9c\x37\xb1\x3b\x79\xa3\xf3\xe6\x34\x67\xed\x8c\x74\x42\x4c\xcc\x6b\x34\x42\x19\xf8\x51\xc3\x17\xe5\xcc\xd4\x75\xf2\x5b\xef\xcc\x61\x86\x53\x3f\xc2\x36\xe9\xb7\x4c\x8f\xa8\xe7\x81\x48\xb4\x62\xbb\xd2\x73\x74\x8a\xf2\xf4\x9a\x12\xff\x9b\x1b\xd7\xb7\x1f\x3f\x47\x7d\x2f\x88\x3b\xa8\x5c\xbb\xac\x2d\x49\xe6\x83\x88\x66\xee\x4f\xba\x6d\x29\xe8\x61\xd6\xcd\x64\x8a\x9d\xb9\xc7\x4f\xe5\x77\xc4\x9c\x0d\x42\xe5\x2e\x83\x8b\xa5\x8b\xc8\x0a\x89\x85\x04\x02\x1d\xde\x83\x28\xd2\x4e\x28\x09\x30\x32\x38\x64\x51\xd8\x81\x90\x52\x09\x9f\x10\x02\x93\x1a\x9e\xa5\x36\xf3\x3f\x23\x2a\xcb\x48\xf2\xfa\x8f\x06\x63\xfd\x9f\x58\x55\x7b\xa4\xdd\x52\x75\xd2\xf3\x6f\xa9\xcf\x3d\x13\x71\xfd\xe3\x86\x4e\xd8\x9a\x34\x2e\x03\x41\x7b\x35\x6f\x8a\xa6\x42\x07\x95\xd9\x7e\x6f\xe6\x4c\x91\x40\xc4\x20\x20\x6c\xce\xfc\x65\x26\x4c\x7b\xfa\x8a\xa5\x56\x34\x6b\x0f\x99\x90\x5c\x1b\x9f\x22\x4a\x59\x46\x3d\x15\xf5\x6c\xa6\xa4\xcc\xae\x2e\x5f\xc3\xd0\x51\xcf\x76\xb3\x7f\x30\xcc\x99\x5f\x72\x49\xb7\xe9\x64\x87\x3b\xbb\x83\x43\x42\x25\x5e\xf3\x52\xd7\x44\xc6\x3c\x14\x4d\x73\x52\x71\x26\x26\x60\x6a\x78\xd3\x43\x9b\xd3\xac\x19\x36\x54\xe6\x20\x50\xd6\xf0\x34\x16\x1c\x43\xb7\xa6\xce\x26\xb7\xbf\xd4\x59\x79\x23\xf4\x74\x96\xe6\x88\x46\xd5\x9a\xd4\xba\x9d\xf4\x8c\x41\xfb\xf7\x89\x2b\x82\x79\x88\xa2\x9b\x2a\xd0\xfd\xae\xe3\x69\xdd\xd0\x64\xf3\x25\x43\xd9\xa4\x1e\x9c\xe4\xa7\xbd\xdd\xca\x89\x3a\xea\x1a\x17\x49\x05\x6d\x40\x69\x11\xe1\xf2\x9b\x32\x62\x99\x37\x9c\xfc\x08\xfb\xa4\xe8\x63\xf6\x91\xeb\x77\x38\x52\x53\x94\xb3\xcc\xab\x7c\x18\x65\x31\xf0\x34\x50\xca\x39\x5c\x75\xa9\xb8\x7b\x69\xd9\x48\x32\x58\xe2\x5b\x97\x47\x69\x5c\x8c\x46\x7a\x58\x54\xf6\x18\xa9\x29\x75\x52\xf9\x64\xfc\xdf\xf5\x44\x4f\xf8\x58\x8d\x4e\xd0\x25\x6e\x78\x71\xc7\xf7\xa1\xd7\xaa\xc8\x04\x2a\x8b\xec\x61\x73\x19\x72\x63\x22\x61\x88\xe0\x72\x05\x67\x62\x9b\x91\x53\xaa\x67\xde\x96\xee\xcb\xb1\x44\xc4\xf8\xd9\xc0\x05\x27\x34\x70\x37\x7b\x0c\x77\x4a\x5c\xbf\x1c\x24\xb3\xa3\xcc\x8a\x67\x0c\xd2\xac\xbf\xf7\x51\xc2\xc6\x87\xf9\xb7\xc6\x08\xe5\xdf\x19\xd6\x9c\x69\xe9\x27\x29\x1f\xf0\xb7\xd2\x42\xb4\x32\x06\xcd\x8f\x9e\x89\x41\x5b\x2f\x41\xa6\x0f\xda\xac\xff\x0b\x50\xbb\x64\x8e\xec\x90\xb0\x32\xc9\x87\x78\x39\x95\x59\x96\x55\x7a\x6f\xc8\x97\xe1\xa2\xc9\xb1\xc8\x00\xd2\xd4\x88\x1c\x6e\x9c\xe0\x15\xb8\x98\xce\x69\x94\x64\x98\x6c\x37\x89\x5f\x48\xe1\x5e\x4a\x0d\xf9\x92\xeb\x02\xa1\x53\x2f\x2f\x2b\xb2\xc9\x2b\xc2\x7c\x98\xa9\xf0\x90\x6f\x79\x39\x58\xd0\x0c\xb2\x98\xbf\x67\x13\x12\xae\xb5\x2b\xd7\xc1\xd5\x64\xa2\x13\xe4\x97\x5d\xb4\xea\x0b\x53\x6e\x8b\x12\x67\xb2\x57\xf4\x2b\x6d\x00\x86\x49\x3c\xd1\x85\x92\xd0\x75\xba\x72\xbb\x0b\xb3\x6e\xea\x52\xa7\x24\x34\x4a\xbb\xc0\x12\x3b\xc4\xc9\x84\xbd\x42\x0c\xd0\xb4\xf0\x14\x4e\x09\x1c\x4e\x3c\x28\x8d\xfa\x2d\xe0\xb1\xcf\x70\xea\xc8\xee\xd8\x7c\x5a\xf2\xe9\xe4\x24\x94\xe5\x42\x18\x00\xcd\x31\x4d\xed\xc1\xf9\xda\x20\x75\xbb\xf2\xf4\x6a\x97\x9a\xc4\x53\x6d\x28\xdb\xdf\xeb\xee\xef\x3c\x17\x23\x09\x4a\xc9\xca\x33\x3e\xbe\x16\xb1\x6c\x2e\x4b\xb5\x4c\x6f\x32\xb9\xf7\x11\x9b\x94\xf4\x9f\x32\xe2\xd4\xf5\xb4\x08\x67\xd6\xd0\xc5\xbb\xa7\x7b\x1e\xba\xa2\xa7\x46\xb6\x95\xe5\xdd\x87\x6e\xee\x4c\x97\x8e\x6a\xfe\x68\xac\x69\x5d\x84\x0e\xf1\x6f\x25\x1d\x74\x96\x25\x3d\xcd\x9a\x9e\x23\x42\x67\x0e\x23\x71\xe8\xb5\x3a\xbd\x57\xb3\xc4\xe9\x17\xa6\x75\x72\x02\xe4\x6d\xfe\xee\xe7\x54\xf4\x9e\xd9\x43\x35\xac\xb2\x59\xa2\x2a\x22\xe6\x35\xe3\x97\x9a\x90\x27\x99\xd1\x25\xed\x09\x05\xfa\x9b\x5e\x2f\x47\xdf\xf7\x26\x25\x7f\x53\xb1\x04\x69\x29\xd8\xff\x42\x8b\xff\xd5\xfe\x7d\xea\x11\x4c\xeb\xf1\x4b\x95\xad\x81\xdf\x77\x88\x72\xc6\x0b\xf6\xc2\x51\x5e\xe4\xc7\x96\x09\xb0\x77\x49\x75\xde\x88\x87\x31\xa2\x50\x48\x91\x9c\x50\x44\x24\x46\x1a\x52\x2a\x41\xca\xbe\xdc\x5a\xa6\xfe\x1d\x8f\x5f\xe9\x46\x88\x45\xe8\x0a\x70\x06\xd6\x84\xb5\x3c\xf8\x26\x55\x15\x3b\xce\x91\x6d\x7f\x92\xa4\x6b\x96\xdb\x9e\x61\x56\x50\xff\x24\x05\xc1\x35\x5f\x62\x46\x13\x11\xf7\x86\x3f\x8c\xa9\x93\x05\x00\xd6\x24\x40\x49\xf2\xf9\xf6\xc2\x84\xf9\x2d\xac\xf9\x75\x31\x57\x16\x9b\xac\x86\xa3\xb0\x92\x15\xb2\x31\x34\xec\xc1\x79\xc6\x68\x36\x88\xc4\xf2\x07\x0e\xda\x7f\x95\xda\x7b\x1e\x1d\xb8\xc5\x2b\xc1\x29\x0f\xdb\xae\xd0\x4b\x85\x25\x4e\x13\x2a\xd7\xe3\x57\x46\x21\xaf\x85\x59\xa2\x32\x29\xfe\xca\x6a\x6b\xad\x8e\xf5\xa9\xf5\x88\x32\x7e\x60\x1e\x65\xbb\x5c\x64\x95\x37\x0b\xb7\xef\x4e\x75\x26\x67\xec\x6a\xfa\x1e\xb1\x86\x41\x31\x3e\x76\xcd\x55\x49\x28\x26\xec\xf2\x5e\x79\x02\xed\x59\xe8\x9c\xf6\x76\xb9\xc8\x08\x93\x98\xb2\xd0\x6b\xda\xe5\xfa\x05\xcc\xce\xe9\x71\xf3\x93\x90\xcd\xec\xda\x29\x41\x33\x76\x05\x11\x6f\xe4\x0e\x54\xdb\xaf\x01\x8f\x2b\xf6\x57\x41\x61\x5c\x3c\x8a\xac\x29\x67\x85\x00\x97\xd6\xb6\xfb\xd3\x3a\x66\x3f\x32\x0c\x41\x9e\x56\x92\x65\xfa\x11\xa7\x6c\x6d\xd6\x0e\x49\xad\x80\xf2\x4b\x4a\xab\xc9\x6f\xe7\xf2\x33\x03\x0f\x78\xa3\xa4\x57\xac\x37\xaa\xe2\x19\x64\xf3\x3b\x46\xb0\x54\xf3\x22\xf7\x62\x48\xd9\x85\xec\x34\x8e\xe7\x9c\x24\x8b\xde\xa7\xf8\xba\x9a\x67\x3c\x7f\xc7\x91\x4a\xbd\x40\x1a\xaa\x97\x5e\xa0\x95\x5a\x51\xf7\x91\xe0\x53\x1c\xf7\x07\xdd\xab\x60\x7d\x82\x2a\xf9\x8c\x14\xb4\x9e\x23\xca\xa1\xcd\xc0\xf5\x52\x4b\xc9\x29\xa7\x38\x6c\x95\xcf\x6d\x0f\xc0\x8d\x8c\xdb\x86\xb6\x2a\xd9\x61\x32\x01\xdc\xee\x1c\x58\xa2\x7f\xd2\x80\x63\x26\x90\xe0\x64\x92\xa8\x93\x4d\xc5\x90\x11\x5a\xe4\x58\x85\x9d\x3e\xa0\x01\x5c\xca\x9c\x96\x05\x36\xcb\xef\x79\x17\xf0\x7b\x62\x29\x75\xcf\xf8\xb0\xfa\x50\x31\x9f\xfa\x3e\x32\xb1\x0f\x94\x66\x57\x90\xda\x97\x44\x9c\x9e\x98\xe6\x1e\xd2\x8d\xcd\x25\xcc\x72\xe9\x1d\xa4\xae\x51\xf2\x22\x57\x13\x30\xbb\xf6\x52\xfb\x36\x5e\x52\x48\x99\x5c\xdd\x8f\x46\xab\xc5\x3c\x3d\xd4\x1d\x0d\x93\x3b\xc7\x3b\x7d\xf0\xd7\x21\x8f\x93\xb1\x04\x7f\xf5\xc9\xe9\x01\x75\xcd\x8e\x21\xfb\xcc\x05\x23\x7b\xa8\x98\xd6\xcf\x1b\x13\xdb\x4f\x1f\x75\xbe\x3b\xff\xf3\xc6\x75\x72\xe4\x25\x17\x13\xcc\x2a\xfb\xe0\x2a\xf2\x1f\x20\x1c\x88\xac\xb2\xd8\xe0\xe7\x8d\x73\xbd\xc7\x92\x8a\x0d\x23\xc3\xaf\x5e\x48\x66\x8d\xbb\xd3\x37\xc8\x1a\x94\xcc\x75\x90\xda\x8b\xe1\xc6\x94\xb6\x87\x44\xc0\xbf\x49\x84\x8d\x83\x77\xe6\x82\x99\x73\x12\x26\xee\xbc\x51\x20\x44\x49\x99\xc3\xcb\x56\x2d\xcf\x11\xab\x76\x41\x59\x18\xb2\x31\x61\x8e\xb1\xc7\x7e\x4f\x8e\x15\x79\x5b\x31\x56\xbd\xdd\xf5\xa0\xd3\x22\x58\x0d\xb6\x02\x2d\x19\x75\xe8\x3c\x0e\xc8\xa4\xcd\x2e\xd5\xcc\x96\x2f\x6f\x2d\x6c\x74\xc6\x2f\x70\xbe\x70\x8b\x98\x36\xea\xe8\xa7\x91\x1f\x0a\xeb\x61\x03\xe4\x69\x5f\xe7\xc3\xff\x48\x16\xa5\xd5\x07\x41\x19\xf8\xe5\x7c\x83\x92\xfc\x18\x29\xf4\xd9\xe1\x72\x91\x2d\x43\x3b\x67\xa7\xcd\xb6\x71\x18\x17\xca\xb2\x25\xda\x4a\x8a\x64\x6a\x4b\x4b\x79\x31\xa7\x20\xd1\xf5\x34\xe1\xf0\x68\x02\x46\x38\x10\x17\x60\x7c\xa5\xdc\xce\xe9\x0b\xf4\x66\xcf\x8c\xd3\xd8\x19\x40\x2d\xa4\xd4\x7d\xf9\x32\x2c\x4c\xa3\x96\x47\x3c\xe1\xba\xdc\x92\x29\xf5\xdf\xb2\x07\x4b\xe7\xc6\xed\xee\xcc\xb3\x94\xfe\xe4\x98\x55\x4b\xd1\x0d\xcc\x00\x86\x9f\xd9\x0c\xe3\xdf\xdd\x26\x18\xef\x7d\xe5\x4d\xb2\x89\xc4\xef\xb0\x5f\xa8\x25\xb1\x7b\x89\xa3\x72\x53\xb1\x4b\x2d\x76\x45\x8c\x80\xe0\x65\xa1\xc8\x84\x12\x94\x64\x3a\x52\x4a\x47\x4e\x6e\x27\xbf\x10\x02\x39\x7e\xe5\x78\xbc\x32\xc3\x50\x02\x40\x56\x6b\x61\xd6\x46\x49\x25\xd1\x06\xbd\x23\x09\x85\x09\xc3\x91\x03\x2b\x1c\xf8\x77\xbf\x88\x89\xaf\x34\x0c\x54\x80\x5d\x25\xb2\x3f\xcf\xb9\xf7\xcc\x46\x03\x61\x18\x83\xb4\x0b\x2d\x81\x4d\x2f\x9e\x10\x6b\x40\x5a\x78\xe6\xcb\x98\x13\x7c\x2c\xf8\x35\x41\x3c\xf0\xf4\xa6\xae\x0a\x03\xd9\x6d\x59\x0c\x28\x99\x78\xad\x60\xbe\x43\x18\x54\xbd\x51\x8c\x1b\x40\x6c\xc4\xc8\x8e\xf7\x63\xf6\xc4\xee\xfc\xe4\xce\xd8\x1d\x8a\x0b\x58\x4e\x1d\x47\xa2\x75\xd6\x58\x1c\x78\x16\x8c\x62\xa1\x38\xec\xa7\x0c\xe1\x28\x96\xef\x61\x0c\x89\xf6\x6a\x10\x30\x02\x18\x87\x1e\x84\x03\xd1\x3a\xc4\xf4\xac\x0f\x1a\xdc\x06\x1a\xc5\x13\x7e\x8c\xe1\x78\xc3\x79\x72\x37\xd2\xf0\xf0\x31\x5c\x2d\xdb\x92\x18\x86\x2b\xb8\x84\x3e\x61\xb7\x2f\x66\xe4\xd9\x99\x4b\xdd\x91\x70\xcb\x57\xfc\xb8\x40\x4e\x6a\x0a\xfe\x47\x47\xc9\xb9\xf3\xad\xe1\x6d\x7e\xb5\xf3\x66\xd6\xe2\x8c\x41\x02\xae\xe7\x85\xc0\x28\x28\x07\xf2\xc9\x0a\x06\xeb\x8d\x4d\x19\xf2\x17\x8d\x0b\x85\x5b\x66\x41\x8a\xa3\xc0\x12\xa3\x9c\x0b\xe4\x04\xe9\xf6\x51\xd2\x56\xf0\x13\xb8\x2b\xe4\x1d\xa4\x5b\x51\x3a\x7a\x68\x45\x77\x04\x30\xfd\xd0\x04\xea\xcb\x67\x75\x92\xf7\x03\xd3\x6c\xd9\xe0\xa3\xa3\x98\x7e\xf7\x5a\xab\xd3\xbc\xd9\x7d\x7a\x2f\x95\x34\xab\x06\xb5\x02\x1e\xfd\x3d\xb4\x90\x43\xe2\x06\x5b\x37\x5e\xb0\xab\xb0\xdd\xd2\x59\x11\xa6\xa6\x1f\x1d\x65\x26\x4d\x92\x51\xa1\xbc\xe0\xb0\x2a\x91\xa6\x1d\x76\x33\x39\xda\xea\xa8\x2a\x56\x6b\x91\x69\x8d\x9d\x6e\xb9\x11\x3d\x08\x24\x4c\x97\x70\xdb\x6e\x3f\x9a\x4e\xb2\xf0\xd2\xc5\x42\xb4\xa0\x57\x3c\x85\xec\xc4\x45\x92\x7f\x2f\xb9\x4e\xe7\x94\x94\x56\xd4\xa1\x9c\x2a\x32\xbb\xe8\x1c\xbf\x6d\x15\xb1\x21\x2c\x85\x5d\x95\x1f\x45\xd8\x7d\x4e\x2a\x7a\x1c\xb2\xc7\x95\x2c\xff\x3a\xd1\x1d\x09\x48\xec\xad\xc9\x7a\x18\xca\x19\xca\x1f\x29\x8b\xa9\x95\xc0\xd4\x6a\x56\x0e\x87\x02\x21\x2c\x8a\x9c\xb0\xa6\xfc\x7c\x51\x4d\x3b\xeb\xc5\xad\x94\xac\xff\xee\xa3\x5d\x3d\xcd\xe3\x7a\x52\x99\xe9\xbe\x81\xb5\xb1\xa6\x1b\x44\x79\x67\x11\xec\x0c\xff\xae\xa0\x96\x8a\x46\x04\xc2\xab\x94\x9e\x5e\x9b\x5e\x68\x32\xac\x4d\xb6\x52\xf4\x81\xc2\x21\xfa\x83\x60\x9c\x4e\x9e\x03\x75\xb2\x81\x79\x89\x68\x2f\xed\x20\x48\x76\xcd\xf4\x0e\xdc\x27\xd1\x6c\xd0\x22\x1f\x67\x02\xe3\xc6\x5b\x55\x04\x25\xd5\xb5\xa0\xc7\xcb\x76\xd4\xe8\xff\x99\x77\x43\xcd\xe1\xfc\xdf\x7f\x3d\x94\x9f\x09\xec\xa3\x80\x4e\x93\x00\xa9\x9e\x13\xd4\x87\xea\x5b\xa4\x84\x4a\x12\x3e\x64\x54\x9a\xee\x42\x26\xb4\xb1\x44\x3f\x5c\xba\xe7\xe2\x38\xd1\x3f\x37\xcd\x4a\xf3\xee\x0c\x8d\x8b\x7a\xb9\x12\x70\x0d\x4a\x99\x0b\x14\xfa\xcf\xfc\xaf\x2c\xc6\x6c\xb9\x11\xa5\xcb\x55\x45\x4e\x1a\x56\x56\x1d\x0b\xf2\x63\x4d\x85\xdf\xda\x4f\x9b\x01\xb7\xb0\xd2\xdd\x28\x42\x67\xbe\xdf\xc4\xd5\xcc\xe9\x70\x91\x9b\xe4\x8f\x4b\xf9\x3d\xba\x52\xee\x43\xfe\x57\x16\x4b\x07\xc1\x2f\x65\x62\x39\x63\xbc\x04\x48\x26\xcf\x56\xc9\xb0\x8d\x0a\x06\x25\x25\xea\xc9\x9f\x52\x23\x46\xf8\xd3\x70\x88\xfe\x9b\xe3\x37\x98\xed\x94\xa5\x35\x4c\xbc\xa7\x82\x34\x65\xe9\x00\x39\xc7\x22\x1c\xfd\x60\xa3\x09\xd3\xe8\xb1\x10\xc7\xf5\x60\xa0\x11\x67\x3f\x69\xd8\x79\x7e\xbb\x3b\x36\x9f\xac\x6f\xa0\x2f\xab\x4a\xd4\xa8\xab\x5a\x4f\x67\xb3\x6a\xd1\x43\x5a\x1f\x2a\x87\x4e\xbb\x1a\xe7\xdd\x13\xb9\x66\xe5\x2b\x8d\x4b\xf2\x9d\x53\xae\x53\x41\x1a\x9d\x8f\x0a\xb9\xe3\x91\xf7\x41\xc9\xeb\xff\x40\x7e\x88\x2a\x71\x8d\xf3\x98\xf7\x1f\xff\xe2\x33\x2f\x63\x3d\xb0\x16\x61\x97\x2a\x25\x50\x8c\x9f\x09\xcd\xe2\xb3\x83\x6b\xf1\x58\x61\x5c\x8e\x72\x5f\x7c\xdc\xef\x75\xaf\xcf\x76\xa6\x7f\x82\x3b\x3e\xed\x61\x43\xb1\x66\x68\x32\x05\x09\x3d\x28\x0a\x24\x7e\xf6\xc1\x71\x33\xec\xd9\x58\x1d\x01\x1c\x7e\x60\x16\xa8\xa1\x80\x12\xb3\xe1\xb3\xb4\x93\x33\x5b\xd7\xd6\x77\xa6\x7e\xc8\xee\x25\x0e\x6a\x42\xd4\x59\x35\x47\x8b\x5c\x01\xe3\x41\x3d\x57\x28\x6f\x4d\xb1\x2e\xea\xca\x54\xb9\xdf\x77\xbb\x29\xcd\xe3\xa0\x6e\x7c\x85\x6c\xed\xfb\xa6\xb5\x3d\x59\xb7\xbc\x09\xc9\x1e\xa6\xb6\xe9\x8b\x93\x62\x66\xc2\x50\x77\xa2\x7a\x82\xc9\xa8\x93\xe7\x03\x49\x46\x79\x35\xa8\xec\x8a\xc2\x0b\x96\xea\xed\xd1\x10\xcf\xd9\x95\xd1\x9e\x25\x35\x2f\xca\xba\x65\x69\x5e\x40\x88\xe1\xc4\xdc\x5c\xb7\x50\xab\xc9\x98\x83\xf4\x87\x51\x68\x23\x18\x95\x4f\xfa\xf5\xcc\xba\x74\xc2\x2f\x0a\x25\xa6\xb0\x9c\x19\x4d\x29\x14\x34\xbb\x29\xc7\x84\x8a\xfa\xa9\x44\x48\x7c\x0b\x07\x07\x41\xe0\xf2\x31\xa1\x9c\x48\x1a\x3c\xa3\xd3\x7c\xcb\x00\x5b\x0d\x29\x88\x68\xff\xa2\xf6\x88\x94\x2d\xf8\x1e\xf1\x92\xb4\x6e\x91\x6d\x4c\x70\x91\xee\xbb\x9d\x0a\x44\xbd\x21\x9e\xb8\x16\x4a\x58\x6d\x8c\x34\x2a\xd0\x68\x64\x05\x77\x10\x74\x15\xd6\x41\x96\x97\x29\xfa\x13\xca\x66\x1e\x12\xfe\xfc\x8e\xec\x73\x72\x2d\xd1\x38\x57\xcc\x73\xb6\x6e\xd5\x7e\xe7\xd6\x35\x7c\x33\xcd\x0e\xc1\xc9\x02\x01\x33\x76\xdb\xf3\x8c\xbd\x2c\x00\x9e\x3b\x08\x4a\x82\x25\xa3\x73\x5f\x49\x4b\xc8\xac\x60\x78\x05\x21\x53\x53\xc5\x74\x89\x62\x23\xf3\xc3\xe0\x22\xc4\x12\x2f\x01\xc9\xb7\xbb\x18\x2c\x0d\xa8\xfd\x9a\x62\x7a\x74\x77\x2d\xd4\x76\x6f\x49\xfd\xc5\xbd\xa4\xf4\x17\xeb\xb2\xd5\xc5\x62\x90\x29\x43\x8a\xa2\x32\xaf\x6b\x7f\xff\xc7\x5e\xca\xd6\xd2\x35\xa4\xf7\xd6\xbb\xed\xb1\x29\xcc\x5d\x39\x54\xf7\xa3\xf6\xd8\x05\x8e\x01\x26\xd5\xac\x6e\x23\x96\xc0\x42\xb1\x28\x36\xc1\x44\xdf\x94\x83\xd8\xff\x6d\x2a\x14\x49\xba\x9d\x33\x7e\x39\x15\x5b\x92\x68\xdb\xcf\x3f\x26\x9e\x8d\x94\x9e\xb1\xf4\xea\x11\x3f\xb4\xe1\x1e\x21\x49\xfd\x15\xdd\xcf\x3a\x31\x14\xff\xc6\xd5\x85\x3d\x0e\x6e\xd9\x38\xac\xca\x96\xe3\x37\x69\x81\x57\x55\x2c\x9c\x6d\xd8\x50\x03\xe7\xa4\x9c\x32\x49\x27\x47\xfb\x38\x6f\x8e\x62\x06\xfa\x66\xf7\xb9\x6e\x45\x93\x44\x83\x3d\x25\x9b\x14\xb3\x93\xc6\x7a\x51\x47\xbe\xee\x4b\x1a\xa0\xf4\x97\x74\xe5\xbb\xc2\xca\x07\xe4\x52\xf2\xf9\x5e\x73\xb0\x22\x78\x1b\xc3\xbc\xf2\x65\xb6\x58\xc9\x10\x2f\xc3\x91\x7b\x99\x81\x88\xec\x82\x68\x55\x74\x82\xc1\xd5\xd4\x23\x3f\xd6\xaf\xb9\x9a\x50\x9d\x07\x5d\x7b\xc0\x46\x2a\xbb\xae\x93\xeb\x13\x60\x99\x3c\x41\xec\x1c\x11\x38\x2d\x5d\xf5\x44\xa5\x6f\x1a\x7e\x03\xfa\xf3\xab\x43\xb0\x53\xff\x0d\x7f\x78\x1f\xd3\x0f\xbd\x25\x38\x9a\x9a\x34\x1f\x40\x58\x73\x22\x23\x82\x38\x8f\x77\x68\x5a\x8f\xcc\x7e\xa3\x13\x41\x0d\x19\x14\xbc\x40\x70\x65\x80\x4f\x31\x77\xdc\xd6\xcd\xe6\xd6\xcc\x43\x6b\x0d\x8d\x2b\x4c\xac\xe2\xe3\xd4\x2b\x4c\xd4\x95\x0c\xb2\xbd\x4a\x73\x6e\x35\xb9\x97\xe1\xa0\x85\xb9\x3f\x7e\xf8\xf1\xa7\xe6\x93\x11\xbc\x9d\xdd\x26\x69\x64\x43\x7c\xca\xa0\x35\xe2\x6b\x06\x61\x61\x23\xb1\x98\x1b\xdb\x7e\x9d\x29\x71\x8d\x04\xcb\x2f\xbe\xf2\xae\x55\x47\xdf\xde\xa6\x09\xf4\x88\x3d\x5e\x2a\xd4\x62\xba\xba\xad\xea\x6c\xea\x1f\x23\xd5\x31\x73\xb3\x56\x2b\xfd\xb4\x90\xdd\x8c\xdf\x17\x4a\x0e\xa8\xea\x56\xec\xfe\xed\x21\x30\x2a\x06\xd9\x62\x4f\x2f\x35\xf6\x75\x59\x53\xf0\x00\xce\xd8\x65\xfd\x5a\x3d\x3c\x19\x70\xf4\x9e\xd5\x42\xa9\x13\xf8\x9d\xc4\x31\x73\x06\xb2\x8d\xde\x44\x6e\xd5\x14\x5c\xc1\x51\x08\x7c\xc9\x10\xad\x50\x57\x4f\x59\x02\x71\x49\x07\x1e\x4f\xae\x6e\xd5\x6c\x9b\x4f\x70\xbb\x4c\xb1\x80\x30\x54\x54\x88\x95\x7a\x4c\xcf\xc1\xa8\x9c\x78\x39\x18\x64\x5b\x4d\x0a\xae\x24\xcf\x33\xa3\x4e\x9d\x6a\x3e\x1c\xc7\xb5\x88\x73\x54\xfc\xf1\x8b\x2f\x3e\xeb\xf7\xda\x22\x17\x85\x3d\x4f\x13\xba\x35\x85\x1e\xa0\x6b\x01\x29\xcb\x25\x56\xf9\x61\x70\x07\x8d\xb2\x8e\xb8\xa5\x44\x25\xf3\x92\x4a\x5c\x2d\x43\x75\x45\x85\x9f\xd1\x41\xd7\xef\x9e\x67\xdd\x31\xc8\xd7\xa8\xb5\x7d\xca\xaf\xf2\x38\x03\xc1\x2a\xcc\x25\x4a\x86\x47\x5d\xe1\xca\x6f\xab\xaf\x58\x87\x7b\xe9\x28\xfc\xcf\x53\x5e\x2e\xfa\xa3\x75\xf6\x65\x61\x04\xdb\xbd\xd4\x28\x0b\x66\xe8\x39\xf1\x71\x0f\xf9\x9e\x31\x5a\x0a\x6f\xaf\xce\x8d\xdb\xba\xd0\x4c\x8c\x6e\x7d\xf0\xbf\xf5\x8b\x0d\x65\xca\xb3\xf5\xc8\xba\x71\xc8\xb9\xbd\xe8\xab\xb4\x5f\xe9\xf7\x93\x75\x4d\x2b\x8a\x4e\x8d\x1a\xd0\x1b\x63\xe6\xda\x0e\x20\x69\xf6\x61\xf7\x5a\x2b\xbd\x7b\x01\x9f\x95\xef\xbf\xe3\xd7\x83\xc8\xfb\x4d\xba\x9b\xf1\x4f\xd8\x3d\x48\xfb\x52\x1c\xe2\x64\x75\x97\x45\x33\xcb\xf3\xbf\x4e\x2a\x96\xe5\x77\x6b\xf4\xb2\x30\xac\xe5\x3e\xad\x89\x47\xe7\x65\x35\x12\x98\xb4\x76\xd7\x1d\xc9\xde\xbc\x34\xd0\x19\xb1\x88\x2c\xca\x57\x3d\x9f\x69\x73\xde\x2f\x3e\x18\x89\x6c\x38\xc9\x37\x0d\xe4\x4b\x31\x0c\x46\x37\x93\xb9\xce\x7f\xfb\x95\x6c\x6b\x7f\x3b\x14\xd5\x8b\x32\x3d\xbf\x95\x9d\xdf\xf2\xa6\xb5\xfa\xe1\xe1\x72\xde\xf7\xaf\xd9\xcb\xcd\x1c\xe7\x21\xd6\x66\x1d\xc2\x11\x1f\x8c\xfe\x45\x01\xe5\x3c\xc8\x93\xd2\x6b\x15\x81\x7d\xcd\xa3\xd6\x69\xe4\x7f\x11\x38\xe4\x96\xb4\x43\xdd\xd7\xf8\x4e\x92\x48\xd9\x97\x8e\x4a\x4a\x96\x83\x28\x94\x59\x73\x2e\xd9\xe8\x3d\x28\xe1\xbe\x94\x39\xfc\xcc\x69\x53\x02\x9e\xb8\x30\x94\x8d\x5b\x8c\xc3\x11\xaf\x2f\x79\x7b\x40\xb2\xe7\x3c\xff\x94\x58\x4d\xca\xb3\xfd\x9b\xbc\x7a\xb5\x88\x63\xf6\x5a\xe7\xbc\xdf\xa8\xb9\x1b\xef\x14\x71\xaa\x6d\x44\x31\x07\xc0\x30\xd5\x82\x7d\x16\x87\x61\x19\x76\x59\x61\x08\x3d\x74\x81\x9e\xd0\x1b\x69\x2a\xa0\x07\x95\xbc\xb8\xbb\xe9\xe7\xfe\x7d\xbf\x8e\x72\xbf\xf6\xb6\xe6\x2f\xc1\x56\x83\x1f\x15\xf8\xd1\x99\x38\xc3\x3f\x86\xe1\x07\x1f\x4f\xfe\x5d\xc2\xdf\xb3\x0f\xf9\xc7\x08\xfc\xd8\x19\x7b\xae\x3e\xc2\x11\x87\x92\xf6\xf8\xdf\xbb\x37\x27\xb8\x64\x14\x61\xbd\x7a\x21\x6b\x44\x3e\x50\xcb\x12\x65\x7e\x97\xdd\x55\x82\x2a\x50\x03\x2a\x22\x63\xec\x32\x95\x0e\x87\x8d\x3a\x27\x88\xd7\x7d\x97\x0a\xa3\x5c\x24\xba\x1f\xf1\xfd\x13\x54\x60\x0c\x01\x46\x10\x0f\x47\x9c\x80\x5e\x8d\x02\xd3\x3e\x73\x07\xaf\x5e\x50\x41\xbd\x30\x92\x97\x43\x81\x71\x70\x81\x1c\x08\x8c\x82\x30\x58\xaa\x87\x35\x4c\x85\xfb\x95\x7e\x2c\x51\x3e\xed\x74\x0c\x3e\x79\x28\xe7\x46\x1e\xbd\xcd\x10\xd6\x3d\x7a\x0e\x0e\xd3\x90\x34\x6a\x18\xd4\xdf\x47\xa1\xd2\x94\xa9\x3a\xa8\xd6\x1a\x42\xa0\xc5\xd4\x33\xc5\x02\x26\x9e\xe1\x5a\x02\x46\x38\xc8\xc9\x4d\xe8\x39\x12\xf1\xba\x15\xac\x5f\x7e\x00\xae\x9b\x3f\xc0\x0f\x2f\x0a\xfe\xea\xbf\xfb\x1f\xff\x41\xb5\xe1\xcf\xff\xfc\x4f\xef\xf8\xef\xdf\xf3\xfc\x6f\x31\x43\x65\xe4\x55\x0a\xdf\x06\x95\x46\x45\xd6\x82\x9f\x7f\xb0\x2a\xf6\xa1\xc2\x99\x1c\xb6\xc9\x54\xc2\x9e\xda\xd4\xf5\xfe\x7d\xff\x3b\x00\x00\xff\xff\xe5\x4c\xa8\x4b\x98\xb4\x00\x00") +var _confLocaleLocale_jaJpIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\xbd\x7b\x6f\x1b\x47\xb6\x20\xfe\xbf\x01\x7f\x87\xfe\xf9\xc2\xbf\x24\xc0\x44\xc6\xcc\x60\x81\xc5\xc0\xf4\xdd\x8c\x9d\xc9\xcc\x6e\x9c\xe4\x46\x09\x06\x8b\x41\xc0\xb4\xc8\x96\xc4\x6b\x92\xcd\xb0\x9b\x56\x34\x17\x17\x10\x29\x3f\x64\x4b\x1e\x39\xb6\x65\xc5\x4f\xf9\x2d\x59\xb2\x25\x3b\x72\x26\xb6\x24\xdb\xdf\x65\x29\x52\xd2\x5f\xf9\x0a\x7b\x1e\xf5\xee\x6e\x4a\x99\x1d\x60\x17\x08\x62\xb1\xab\xea\x54\xd5\xa9\xaa\x53\xe7\x5d\x7e\xad\x96\x2f\x06\x51\x21\xf7\x51\xb8\xbd\x30\xb6\xbd\x78\xbb\xdd\x9c\xef\x2c\xcf\x6d\xdf\x3f\xdd\x6e\xce\xb6\x9b\x73\xed\xd6\x7a\x7b\x7c\xa9\x3d\x3e\xd3\x1e\xbf\xd1\x6e\xbd\x6a\x8f\x4f\x7c\x54\x8a\xdb\xad\x1f\xdb\xe3\x1b\xed\xf1\xcb\xf0\x65\xff\xbe\xfd\xfb\x86\xc3\x4a\x90\xc3\x0a\xf8\xf1\xce\xfe\x7d\x45\x3f\x1a\x1e\x08\xfd\x7a\x11\x3e\x8e\xb5\xc7\xc7\xdb\xad\x9f\xda\xe3\x0f\xdb\xe3\x37\xa9\xc2\xb9\xfd\xfb\x82\x6f\x6b\xe5\xb0\x0e\x6d\x5a\x0b\x08\xb4\xb5\xd2\x1e\x9f\x6d\x8f\x3f\xa5\xe2\xc7\x00\x2f\x28\xd7\xa0\xe9\xf7\xd4\xf3\xec\xfe\x7d\x51\x69\xa8\x9a\x2f\x55\x73\xd8\x6f\xeb\x41\x7b\x7c\x95\xff\x0f\x05\x61\xa1\xe4\x97\xf3\xb2\xbc\xff\x93\x7e\x18\xbe\x53\xeb\x77\x1e\x8d\xfb\x0c\x8e\x63\x7c\xf6\x37\xde\xe1\xa8\xe2\x97\xcb\x47\xda\xad\x7b\xed\xd6\x52\xbb\xf5\x08\x2b\x8e\x4f\xec\x8c\xdd\xef\x5e\x5c\x3b\x7c\x88\x0b\x45\x97\x61\x23\x36\xfb\xbc\x47\xb5\x27\x44\x61\xa3\x66\x97\x11\xf8\xfd\xfb\xea\xc1\x50\x29\x8a\x83\x7a\x6e\xeb\xda\xfa\xce\xd4\x0f\xfb\xf7\x8d\x04\x03\x51\x29\x0e\x72\x7f\xfe\xf0\xf7\xb2\x3e\x80\x38\x19\xd4\xa3\x52\x08\x53\x1a\xbf\x88\xb3\x6e\xbd\x6c\x8f\xcf\xd3\x94\x6a\xfe\x10\xe2\xf2\x3a\x7f\xdd\xbf\x2f\x0e\x2a\xb5\xb2\x1f\xe3\xb7\x33\x34\x54\x40\xd4\x13\x42\x14\x40\x29\xfb\xd5\xa1\x06\x36\xe0\xb5\xdb\xbf\xaf\x50\x0f\xa0\x6e\xbe\x1a\x8c\xe4\xba\x57\x9f\x6d\x3f\x9a\xde\x7c\x7d\xb3\x3b\x71\xb1\xaf\xaf\x6f\xff\xbe\x46\x14\xd4\xf3\xb5\x7a\x38\x58\x2a\x07\x79\xbf\x5a\xcc\x57\x68\x09\xc6\x1f\x51\x57\x7f\x27\x98\xbc\x0a\x33\xed\xd6\x5d\x1a\xe8\x52\xbb\xb9\xd8\x6e\x3e\xe6\x19\x07\x45\xc0\x71\xde\x8f\xdc\x65\xe8\xbe\x9c\x68\x37\xdf\xe2\x3e\xc0\x1e\xaa\x7e\xc5\x00\xda\xb9\x78\x01\x56\xbb\xe2\x97\xca\xb9\x0f\xdf\xc7\x7f\x70\x82\x51\x34\x12\xd2\xde\xf8\x8e\x56\x66\x45\xee\x8a\x7a\x90\x8f\x47\x6b\x41\xae\x73\xe6\x42\xe7\xf4\xc3\xce\xf9\x1b\x30\x1f\xbf\x16\x17\x86\x7d\xe8\x12\x86\x75\x9f\xc6\xd7\x84\x3f\xb0\xb3\x7a\x50\x0b\x01\xb1\x61\x7d\x14\x20\x2d\xb6\xc7\x6f\x11\x12\x27\xe0\xef\xfd\xfb\xc2\xfa\x90\x5f\x2d\xfd\xd5\x8f\x11\xc5\x5b\x3f\x9e\xda\x7a\x75\x65\xff\xbe\x4a\xa9\x5e\x0f\xeb\x50\x79\x0e\x36\x19\xf4\xb9\x7f\x1f\xa0\x29\x8f\x60\x10\x57\xb4\xdd\x4f\x25\x20\x61\x95\x4a\x69\xa8\x8e\x2b\xa0\x6a\x6d\xcd\xaf\x6f\xdf\x9d\xe2\xc2\xc1\xb0\x7e\xc2\x6c\x0f\xb8\x7b\x4c\x73\x5f\x69\x37\x97\x53\xc1\xc1\xe0\x0c\x50\x72\x70\x7e\x15\xd6\x91\xca\xf8\x53\xbb\x75\x69\x6b\xf9\xee\xd6\xc5\x33\xfb\xf7\xf9\xc5\x0a\x20\xbe\xe6\x57\x83\x72\x8e\xbf\x6d\x8f\x9d\x46\xec\x8d\x5f\x80\x25\x82\xf2\x42\x21\x6c\x54\xe3\x7c\x14\xc4\x71\xa9\x3a\x84\x0b\x64\xed\xed\xed\x85\xa7\x9d\xe5\xeb\xb0\x88\xb2\x5c\x7e\x18\x0d\x1b\x6a\x47\xe4\xda\xcd\x16\xad\xf6\x1c\x8d\xdb\xdd\x08\xa2\xb2\xee\xc2\xa8\x2d\xc1\xd1\xf4\xa2\xfc\x60\x10\xe0\xe2\x4e\xd2\x91\xdf\xc0\x25\x46\x80\x00\xea\xbe\x5c\xe8\x5a\xa3\x5c\x06\xc4\x7f\xd3\x08\xa2\x18\x40\x61\x67\x4b\x88\x2a\xc0\x19\x13\x04\xdc\xdb\xa5\x28\x82\xf2\xdc\xf6\xe2\x0f\x3b\x88\x6b\xdc\x0b\xd5\x02\x60\x40\x6e\x85\x55\x26\x4d\x58\xf2\x97\x28\xf0\xeb\x85\xe1\xaf\x70\x8a\xf8\x47\xae\xfb\xe0\xe6\xd6\x8b\x7b\xb4\xeb\x7b\x6d\x13\xdc\xaf\x7a\xaf\x8a\x2e\x55\x8f\x85\xb0\x88\x14\x6a\x55\x8e\x1a\xfa\x29\x55\xa3\x18\xe8\x03\x74\x24\xfe\xca\xc9\x83\xf0\x8a\x60\x6e\xd0\x80\xe2\x52\x0c\xf8\xec\x4c\xdc\xea\xdc\xb8\x8d\xb4\xf4\xee\x14\x62\x20\x51\xb1\x7b\x6e\x72\xe7\xce\x19\x1c\xe1\x37\x0d\x20\x10\xf9\xe2\x80\xa4\xc4\x43\x91\xd7\x6e\xc2\xd9\x5b\x69\x8f\x35\x8f\x8f\xf6\xff\xdb\xc7\x40\xc2\x4e\x79\x9f\x85\x51\x3c\x54\x0f\xe8\xe7\x58\x13\xfe\x81\x46\xbf\x85\x8a\x53\x9d\xb7\xa7\xb7\x1f\x35\x91\xf2\x35\xaf\xb5\xc7\x5a\x40\x7f\x07\xf2\x3c\x86\xf6\xf8\x59\x9a\xdb\xdb\xf6\xf8\x35\x5e\x0b\xb9\x56\x58\x05\xcf\x5a\xb2\x06\x8c\x75\x6b\x61\x79\xe7\xee\x6d\xa4\xeb\x51\x9c\x53\x84\x3f\x89\xaf\xec\xa3\x0c\xe0\x05\x21\x70\xc1\x13\x45\x80\x62\xa4\xf1\x00\xed\xf8\x68\xf4\x4d\xd9\xfb\xd3\x27\x9f\x7c\x7a\xec\xf7\x1e\xae\x3e\xe2\x08\x16\x68\xd5\x6b\xc4\x83\xff\x35\x3f\x14\x54\x83\x3a\x50\xf8\x42\x09\x26\xba\xdc\xbd\x7a\xb6\xf3\x74\x96\xd6\x7d\x1c\xd1\xd8\xba\xb4\xf9\xfa\xed\xd6\x95\x05\x3a\x4a\x8f\xda\xcd\xe9\x76\xf3\x4e\xbb\x39\x83\xe7\x10\xd1\x10\x45\x65\xa0\x71\xb0\x88\xfd\xfd\x80\xb2\xf1\x7b\x6a\xfb\xf9\xf1\xb0\x18\x32\x54\xfa\xa6\x8c\xc8\x17\xc3\x51\x58\x4d\x43\x8b\x79\x1e\x3c\xd9\x3e\xa8\xd7\xf3\x40\xa2\xe3\xd1\xbc\x80\x44\xd0\x77\x81\x43\xd8\xa2\xe5\xdd\x7a\xbc\x46\x4b\x7d\xad\xdd\x9a\x6c\x37\x2f\xb7\x9b\x0b\xf8\x1d\x97\xf2\x42\xbb\xf9\xa6\xdd\x04\xdc\x5f\xa6\xc9\xec\xdf\x27\x71\xc1\x4b\x2b\x76\xc9\x72\xe7\xf4\xc2\xf6\xc4\x13\xb9\xac\x78\x9d\x33\xe2\xf1\x46\x9a\xa5\x43\xf5\x9c\x3a\xfe\x89\x2f\x18\x42\xbf\xac\x25\x67\xbd\xf5\xe2\x4e\xf7\xda\x8b\x76\xeb\x9c\x49\x93\xa0\x26\x20\x18\x08\x71\xbb\x35\xe5\x60\xf7\xe7\x8d\x26\x1f\xac\xbc\x40\xa5\x75\xae\x68\x86\x4b\x7c\x45\x49\x2c\xa9\xca\xb2\x4b\x9c\x71\xf3\x15\xc1\x5d\xf6\x80\xa5\xf0\x08\x08\x2f\xd1\x84\x97\x80\xb8\x42\xb8\x59\x46\x74\x22\x19\x79\x42\x2c\x03\x17\x2d\x6d\xbe\xbd\xd5\x79\xfa\x3d\x8e\x0c\x07\xfa\x46\x1e\x82\x7a\x03\xee\x68\xdc\xb0\xe2\x08\xea\x6d\x2b\x4b\xd4\x58\xcc\x2b\x10\xba\xb2\x3b\xf7\x9c\xc9\xb4\x9b\x2f\xe9\x38\xdf\x23\x72\xb5\x8e\x5f\xc6\x9a\x9d\xe9\xf3\xed\xe6\x2a\xaf\x09\x20\x4d\x1c\x7a\x5c\xd4\xee\xc2\xe3\x9d\x6b\x17\xe1\x63\xf7\xdc\x58\xf7\xe6\x39\xfe\x28\x4f\xec\x14\x92\xd1\xd6\x79\x63\xd4\xc5\x10\x6e\x49\x64\x0b\xce\xb5\xc7\xef\x4a\x36\x87\x3f\x6a\xd4\x5d\xa6\x99\xae\xf4\xf7\xff\x91\xf0\xc0\x7c\xd3\xea\x97\x9f\x7f\x0c\xd8\xe8\xbc\x7e\xbe\x33\xf7\x56\x6c\x28\x84\x38\x1c\xc7\xb5\x7c\x2d\xac\xc7\xb9\x3f\x7e\xf1\xc5\x67\x1e\x4e\x4d\x70\x0f\xaa\x44\x41\xce\xd8\x34\x48\x63\xde\x00\x43\x78\xb7\x33\x0d\xfb\xe3\x3b\x01\x5c\x02\xda\x9a\x59\xec\x4c\xff\x44\x7d\xe1\xc6\x6a\xd4\xcb\x3d\x00\x2d\x7b\x30\x4c\x55\xd1\x9c\x92\xbc\x47\xf8\x5c\xd0\x58\x0f\x79\xf8\x4f\x3f\xa1\xdb\x99\xe7\xf9\x76\x0b\xb8\x8e\x55\xa8\xb9\xf9\x72\x6c\x67\x7c\x81\x36\xc7\x5d\x26\xac\xc4\x68\x8e\xd3\xf2\xc8\xd5\xc2\x25\x5d\xa5\x3b\x59\x22\x08\x68\xc7\xcb\xbf\xb5\x9b\x13\x06\xee\x81\x6f\xa8\x21\xc7\xa0\xce\x58\xbb\xb5\x88\xd3\x90\xa3\x97\x87\x8c\xf8\x19\x51\x85\xb9\x1a\x93\x21\x56\xb7\x6d\x05\xb0\x4b\x14\xb4\xff\x38\xe1\x5d\x91\x51\x2a\x19\xac\x87\x95\x5c\xe7\xa7\xe5\xce\xd9\xb5\xcd\xb5\x35\xe3\xa3\xc4\xc9\x0e\x4c\xed\xed\x5d\xba\xe9\xe5\xbc\x10\xab\xe7\x68\xf7\xe3\x9e\xfb\xfc\x0f\x47\xbd\xff\xf2\xdb\xdf\xfc\x06\xc6\xae\xd9\x8e\xf1\xdb\x82\x36\xe2\x3e\x4e\x6b\x07\xc8\x68\xbe\x85\xd6\x34\x6f\xb8\xbd\x57\x0e\x7c\x02\x94\xe0\x80\x77\x98\x66\xf5\xdf\x82\x6f\x7d\xe0\x37\x83\xbe\x42\x58\x39\x42\x48\xc1\xaf\x70\x54\xe8\x24\xe9\x21\x35\x97\x77\x6e\xac\x77\x9e\x5e\x54\x7d\xa8\x8a\xea\x4e\x30\x2b\xa7\xb0\x7a\xcc\x25\xe7\x0b\x61\x75\xb0\x54\xaf\x08\x6e\x19\xef\x9e\x7b\x6b\xdb\x8b\x48\x79\xe0\xb0\x74\xce\xbf\x52\xc4\x91\x3b\xc8\x57\xc3\xb8\x34\x88\x57\xb9\xe8\x77\x67\xec\xfa\xd6\xdc\xc3\xb4\xea\x30\x60\x60\xb2\xf3\xf8\x4f\xa9\x10\xa8\x15\xe5\x85\x22\xa6\x1b\x69\xed\x2d\xe8\x72\x73\xfd\x2a\x6d\x31\xbd\x86\x06\x53\x13\x0e\x0e\x96\x4b\xd5\x80\x2f\x12\xda\x10\x33\xc8\x3e\xf2\x6d\x2e\xef\x14\xee\xbc\x33\x75\xd5\xae\x0f\x87\xab\x86\x62\x82\xe0\xa6\xc6\x68\x4b\x8a\xcd\xa4\x2f\x24\xa0\xf6\x47\x8f\x7d\x82\x74\x63\xeb\xd4\x5d\x39\x87\x59\x5a\x22\x4d\x23\xe9\x2c\xbd\x16\x57\x88\xc9\xa0\xb7\x2e\x89\x83\x01\x0c\x1f\xf2\xeb\xf3\xdd\xe9\x8b\x9b\x6f\x6e\x10\x25\xc7\x9d\xed\x31\x59\x29\x45\xfe\x00\xb0\xfd\x8c\xf7\x3a\x33\xc6\xdb\x67\x17\x3b\x3f\x3d\x17\x98\xb7\x7a\x67\x0c\xa6\x35\x12\x53\xca\x6e\x8a\x03\xd7\x4c\x2a\xef\x36\xa0\x73\x36\x47\xca\x52\x89\xb8\xe6\xb0\x2b\xe2\x81\x80\xff\x17\x92\x5c\xfe\x64\x09\x24\x18\x47\xce\x10\x02\xa9\x22\xd6\x0c\x5b\x4a\x4a\x3b\x57\x7f\xd8\x7e\x04\xb2\xdf\xa5\xed\x85\xe7\x9d\xe9\x95\x74\x90\x72\x41\xf6\x02\x18\x06\x2d\x61\x03\x54\x01\x5e\x5f\xcc\xd7\xe8\xd8\x5d\xa6\xd2\xb7\xe2\xe2\x70\xc0\xb6\x5a\x04\x79\xda\x2e\x12\x92\xa2\x06\x4e\xdd\x6d\x3f\x9a\xc4\xfb\xd7\xba\xc1\x98\xef\x17\x2c\x37\xf3\x86\x9b\xeb\xe7\x35\x72\x6d\x9c\x12\x37\xc4\x68\x35\xaf\x98\x15\xe3\x8a\x11\xcc\xc4\x9f\x8e\x79\x39\xef\xd7\xb4\xa9\xc4\x94\x81\x91\x58\xc1\x25\x9d\x9c\xd9\xba\x7e\x0a\x96\xd1\x5c\x40\x75\x81\x6d\x5d\xf8\xa1\xf3\x66\x56\x6d\x2c\x63\x88\x7c\xb6\x32\x07\xa6\x0f\x13\x57\x4f\x11\x11\xa5\x88\x93\xc5\x4f\x0a\x32\x91\x59\x83\xa9\x86\x84\x63\x0b\x9c\x82\x55\xcf\x0f\xc1\xed\x9c\x93\x57\x74\x2a\xdf\x0e\xe2\x48\x7e\xa8\x14\xe7\x07\x91\x94\x15\x73\xef\x00\x5f\xf2\x8e\x47\x12\xc0\x6d\x9a\xca\x39\x94\xc1\xb9\x09\xdc\x23\x0f\x9e\x77\x67\x66\x7f\xe7\x1d\x3c\x29\x99\xc8\xdf\x22\x75\xca\xfb\x27\xa1\x35\x9e\x9b\x9c\xe4\x59\x16\xe9\x3f\x3c\xb9\x9e\x23\xee\x03\xda\x3d\xc5\x2a\xe2\xa0\x7e\x54\xb7\xaa\xe4\x69\x4f\x99\x2b\x37\x14\x0e\x34\x4a\xe5\x62\x12\xcc\x3c\x2d\xf4\x22\x71\xbe\xcd\xce\xe9\x27\x9d\x8d\x69\xea\xfa\x22\xcd\xf3\x3c\xb3\x31\x76\x9b\xd6\x25\xef\x20\x72\x90\xb4\xef\x90\x36\xf1\x72\x3d\x95\x44\x29\x95\xa5\x2e\x55\x4f\xfa\xe5\x52\x11\x65\x15\xb1\x2f\xd3\x25\x08\x79\x95\x4f\x75\x9f\xde\x97\x87\xc0\xda\x86\x8c\x37\x09\x6e\x4f\xbc\xa4\x27\xf9\xaf\x29\x49\x6e\x50\xe0\x61\x40\x8a\xa5\xc3\x15\xa8\xf8\x31\xc8\x80\x0e\xdb\x27\x8e\x28\x10\xa7\xe9\x37\x9d\x9b\x0b\xe6\xee\xa7\x22\x8d\x41\x80\x18\xbd\x7f\x04\xfe\x07\xeb\xea\x9f\x0c\xf8\x8a\x1a\x92\x9b\xa2\x3b\x3f\x49\x67\x6c\x59\xb2\x9d\x62\x23\x30\x11\xb1\xa7\x65\x1d\xe0\xdd\xcf\x47\xea\xcc\xe4\xee\x8d\x1a\x85\x42\x10\xa1\x6c\x0f\x0d\xce\xd0\xd6\xba\x05\x7c\x78\x77\xe2\xbb\x36\x1e\xd3\x15\x43\x20\x9f\xf2\xe4\x2e\xdf\x01\xee\x07\x36\x0e\x82\x9b\x66\x36\xbe\xf3\x44\x30\xf9\xdc\x07\x42\x78\xf8\x9a\xbe\xbc\xa5\xb5\x01\x6e\xe7\x2c\xc0\x27\x0e\x1f\x04\x5e\xd4\xec\x81\xb4\xdb\x60\x69\x21\x2c\x17\x1d\x76\x19\x85\x04\xc9\x48\x7c\x68\x30\x03\xf2\x9c\xea\x36\xce\x81\x8e\x46\x4a\xb0\x48\x79\xa5\x29\x44\x2c\xc7\xc1\xb7\xb1\xa5\x31\xf4\x94\xca\x90\xee\xe7\x55\xc2\xd7\x19\x54\x00\xf0\x21\x04\x4e\x7b\xe2\x6c\xf7\xc6\x5b\xe0\x0d\x46\x69\x0f\x45\xb9\xad\xf9\x66\x9a\xde\xa5\x10\x96\xe1\x4c\x86\x78\x87\x9d\x0c\x44\xd5\xce\xe9\xe7\x9d\x8b\x53\x89\xaa\x00\x2a\xac\x0f\x49\x48\x4a\x3f\x33\x9a\x67\xfd\x91\xee\x42\xa9\x91\x00\x4f\x42\xa1\xf9\x95\xd0\x37\x24\x55\x0d\x50\xc7\x6f\xc4\xa8\xa2\xd0\x2a\xba\xbc\x50\xdc\x08\x55\x5d\x16\x3d\x37\xb8\xa5\xe1\xa0\x86\x3c\x56\x25\x1a\x62\x01\x6a\x1e\xaf\xdc\x44\x33\xe0\x8e\xbb\x53\x30\xc6\xbb\x42\x25\xd0\x9c\xfc\x79\x63\x0e\x6e\x0e\xfa\xfb\x22\x1e\xf1\xd6\x33\xa6\x7f\x1e\xad\xb3\xd0\xa2\xfe\x93\x7b\xb9\x28\x79\xa4\x73\xdc\x8b\xcd\x4d\xb0\x2a\x12\xe4\xe6\xdc\xd6\x15\xbc\x80\xb7\x17\x56\xdd\x8b\x0a\x2e\x60\x38\xad\x82\x2f\x9c\x32\x58\x0c\xd8\xe5\xf7\x0d\xda\x48\x37\xb1\xd4\xac\x1a\x37\xd7\x52\x67\x06\xa8\xce\xa9\xce\x45\x18\xed\x34\xc2\x4c\xa1\x67\x89\x41\xd1\xcd\xb1\xa7\x21\x29\xee\x5a\xf2\xac\xdd\xc7\x73\xdb\xe3\xaf\x77\x1d\x2a\x2e\x67\x25\xa8\x0c\x60\x67\x78\x0d\xea\xd5\xd8\x3a\xff\xf7\xee\xe9\x49\x5c\xf7\xb7\xb7\x08\xb5\xcc\x86\x0d\xc2\x76\x04\xaa\x96\x75\xf5\xe1\x29\x78\xfb\x3d\x9d\xee\x39\xae\x1c\xec\xad\x32\x2c\x97\x52\x65\x03\xdd\x1c\x71\xd5\x86\xae\x66\xc9\x59\xe0\x14\xdd\xb7\xb8\xa5\x99\x51\x24\x76\x3d\x0a\xaa\xb1\x5c\x68\xad\xf3\x64\x16\x5f\x8b\x27\x97\xbc\xc3\x03\x47\x0e\x46\x87\x0f\x0d\x1c\x41\xc5\x17\x48\x0e\x12\xeb\xc4\x98\x8d\xb5\x14\xa3\xd9\x59\x9e\xda\x5c\x3b\x43\x0b\x78\x83\x34\x26\x73\xed\x56\x13\x31\x3d\xd6\x3c\x58\xec\x5e\x6b\xed\x5c\xbd\xbc\xb9\xfe\xb0\x73\xe6\x34\x61\xdf\x54\x68\xa6\xc9\x86\xc0\xd3\xf0\x50\x32\xf4\x47\x82\x73\x34\xd9\x09\x6d\x5f\x10\xb2\xb9\x5f\x20\x92\x42\xda\x51\x79\x9e\x53\x0e\x0b\xab\x0b\x90\x78\xdd\x6f\x8f\x5f\xc5\x3d\x40\xa8\x29\x97\x2a\xa5\x78\x6f\x27\xc1\x06\x71\xcd\x12\xab\xf5\x5e\x5c\xd9\xb9\xb3\xbe\xf5\xaa\xc9\x58\x04\xf9\xcb\x66\x23\x70\xff\xfd\xd6\xeb\x4c\x00\x06\xcf\xb3\x44\x9f\x98\xf4\xb0\x1f\xe5\x1b\x55\xb1\x92\x41\x91\x0f\x04\xa9\x1c\x2e\x13\x4e\xef\x22\xcf\x42\x8c\xc3\x0c\xf1\x24\x4d\x13\xcd\x8e\x50\xe8\x99\x92\xa7\xf7\xae\x5a\xe4\xf7\x90\xdf\xec\xde\x5c\x94\xd8\x9f\x97\x87\x18\x19\xe6\xe4\xee\xa0\xa1\xdf\x31\x2a\x5f\x90\x53\x22\x86\x07\x38\x98\xb1\x66\xf7\xca\x2b\xda\x09\x8f\x3a\x67\x2e\xc8\x99\x13\x1b\x7c\xe7\x05\x12\x00\xba\xf9\x37\x5f\x4e\xd2\x56\xb8\x49\xcc\xca\x2a\x2d\x0b\x6b\x7b\x68\x43\xa4\x6f\x02\x5a\x28\x89\x86\xbd\x2c\x01\x6c\x52\x7b\x08\x42\x95\x8b\x37\xf6\x65\xa7\x4f\xa9\x4b\x20\xbe\x31\x22\x3a\x1c\x4b\xbe\xb1\x17\x2e\x79\x3e\x89\xf3\x4a\xeb\x7f\xf5\xde\xce\xd8\xfd\xcd\xf5\xef\x51\x51\xa3\x25\x0a\xa5\x47\xa4\xd9\xe0\xa4\x62\x31\x27\x87\x40\xa0\x9c\x29\xf5\xab\xe6\xb9\x91\xd3\xda\xc3\x9c\x18\x7a\x26\x09\x32\x7a\xd0\xac\x12\x29\xdb\x77\xa1\xbb\xb4\x01\x50\xdd\x2b\x75\xf2\xc8\x5f\xde\x9c\x03\xe9\x04\xd8\x00\x39\x51\xe4\x44\x4c\x2e\x4a\x2d\xa2\x1e\x91\xd6\xfb\xb9\xb4\xd1\x9e\xfd\xae\x13\x55\x00\xe3\x30\xcc\x47\xc3\xa8\x63\xfb\x79\xe3\x2a\x6b\xa9\x61\x7b\x77\xd7\xc6\x92\xba\x0f\x94\xb4\x04\xb7\x97\xa6\xe4\xfd\x4b\x25\x2c\xfa\x68\x60\x18\x0d\xd0\xc8\x02\x3d\x9f\xda\xbf\xaf\x1a\xe6\x68\xa3\xc3\x7f\x80\x32\xa8\x81\x2a\x90\xce\x83\x73\xdd\x1b\x2f\xa8\x0d\x10\xfd\x0a\x34\xf9\x12\x18\xe0\x4f\x92\xb2\xd5\xe7\xc0\x91\x88\xcf\x16\x53\x42\x85\x1f\x32\x6d\x4b\xd5\x15\xed\xdf\xf7\x59\xa6\x40\xf6\x79\x20\xcc\x07\x89\xeb\x45\x1b\xef\xfa\xfb\xff\xf8\x05\x49\x86\xf0\x87\x47\x66\x9b\x0d\x54\x58\x5f\xbc\xd0\x39\x07\x3d\xff\x31\x8e\x6b\xd1\x97\xf5\x32\xa9\x25\xfb\x59\x2d\xf8\x99\x3f\x5a\x0e\xfd\x22\x7e\x45\xf9\x18\x49\xac\x92\x47\x84\xe6\xf0\x8b\xc0\xaf\x88\xd9\x34\xd9\xde\x4c\xf3\xf8\x00\x98\x2b\xfa\xdc\x3d\xf7\x16\x76\x09\x7f\x43\xf6\x9b\x27\x68\x0a\xb4\x09\xcd\x95\xd6\x15\x04\x64\x21\x94\x3a\x79\x6b\x7d\x80\xd2\x97\x6b\xc3\x3e\x71\xac\xa2\x1e\xe1\x6a\x49\x68\x63\x90\x1c\xd0\xb6\x01\x5a\x34\xf3\x0c\xcd\x14\x70\x56\xc6\xa7\x69\x0e\x33\x70\x40\x0f\xbc\x7f\x40\x1c\x59\x3c\xac\x63\x42\x52\x6a\xe1\xf5\x79\x20\x7f\x80\x94\x00\xb0\xbc\xd7\x69\x1b\x23\x99\x4a\x55\x11\x5b\x83\x28\x02\xd1\xe0\x81\xbc\xe3\xf5\x1a\xca\xd8\x03\x1a\x8a\x66\xab\xdf\x7d\xff\xbd\xac\xa1\xbc\x9b\x7f\xcf\xa3\xda\xe7\x18\xc4\xbb\x7d\xef\xb9\x43\x23\x9b\x00\xac\x6f\x6f\x4d\xb6\xf7\x0e\xde\x9f\x7f\x95\x28\xfd\x5a\x5e\x9a\x6b\xea\xfa\x98\xa7\x16\xe9\x00\xbe\x46\x6b\x2d\x48\x4e\x1a\xc0\x3b\x5e\xe7\xd9\x77\x44\xf0\xa7\x51\x6f\xd7\x6a\x21\x10\x61\x0f\xca\x40\x16\x0e\xa1\xe2\x7f\x6b\x43\x51\xad\x80\x4d\xe0\xfb\x20\xb3\x2d\x93\x66\x85\x61\xbc\xb1\x58\xc5\xb8\xd8\x9b\x34\x6b\x49\x12\xa1\xa0\x96\x3b\x0d\x06\xee\x66\x2f\x55\x3d\x43\xad\xaa\x27\x80\x23\xab\x8a\x96\x9b\x2f\x2f\x74\xbf\xff\x1b\xc2\x44\x03\x19\x0a\x1d\xbf\x53\xa6\x71\x60\x50\x0a\x61\xbd\x1e\x14\xe2\xdc\x51\xfe\x82\x26\xc1\xcd\x97\x63\xdb\x67\x5f\x48\x5d\xcd\x0d\x29\x04\x0a\x76\xca\xa0\x5c\x5a\x5e\x4e\xd0\xa9\x05\x4d\x70\xdd\x22\x01\x1f\xc5\xa7\x34\x35\x85\xe9\x0b\x90\x1f\x08\x82\x6a\x3e\xf6\x4f\x04\xd5\xa4\xe4\xb8\xd2\x9d\xbd\x87\x16\x1c\x61\xc5\x9b\x91\xa6\x26\x9b\x5b\xae\x85\xf9\x24\x24\x97\x94\xed\x0d\x18\x70\xc7\x09\x58\xda\xdc\xb5\x27\x10\x31\x10\xa0\x94\xf1\x68\x62\xb4\x37\x30\xbc\xbb\x08\x04\xa0\xaa\x98\xdb\xe5\xba\xdf\x03\xc4\x52\xb9\x1c\x0c\xa1\xed\x42\x0e\xd0\x19\xd5\x92\xbc\x16\x17\xe5\xb9\x99\xea\x5c\x5c\x42\x00\x29\xc0\xd4\xf2\xa9\x9d\xa2\xf7\x59\x96\x02\x20\xb9\x4d\xb2\xb4\x3f\x8c\x01\x10\xf8\x01\x20\x42\x36\xb4\x40\x34\x70\x49\x61\x58\x2f\xeb\x6a\x84\xf8\x06\x31\xc0\x13\x0f\xd8\x7c\x4c\x7a\x91\xc9\xdd\xb8\xfa\x44\xb7\x70\xce\x50\x71\x64\xf6\xcb\xf8\x9d\x63\x93\x1d\xdc\x1a\x34\xcb\x7f\x52\x77\x8a\x2f\xb2\x27\x99\x85\xba\x53\x7b\xe8\x43\x69\xbe\x82\x6f\x41\x8a\xcd\x75\xa7\xce\x12\x7f\x21\x66\xe1\xa8\xc0\x3a\x4f\xbf\x27\xfd\xd7\xac\xbd\x1a\x65\x3f\x8a\x51\xf1\xc1\xe8\xc8\x75\xce\x9d\xdf\xb9\xf6\x40\x5a\xfa\x1c\xfb\xa8\xd8\x55\xa8\x1c\xbe\x39\xd6\x79\x33\x25\x19\xc5\x55\x69\x58\x11\x8c\x57\x67\xe2\x21\xd6\x91\x58\x54\x5a\xae\x84\xc3\x82\xe6\x03\x23\xb8\xd8\x4e\x04\xa3\x39\xb2\x6d\x5e\xb2\x79\x7e\xa9\x3a\x44\xcd\x5c\xa3\x4a\x72\xfb\xc9\xa0\x0e\xbc\x90\x6a\x85\x7a\x2f\x5b\x17\xb6\x8c\xbc\x07\x14\x65\x01\x43\xb1\x03\x51\x31\xc9\x96\x0b\xa5\x4e\x93\x74\x7a\x81\x14\x63\x8b\x5a\xeb\x8d\xb7\xe1\x3c\xd4\x44\x75\xf9\xc4\x19\xf8\xff\xf6\x1a\xb2\x0a\x3d\xd7\x07\x35\x3f\x52\x7f\x08\xb5\xb6\x17\x36\x6c\xb5\xe1\x1b\x53\x79\x08\xf7\x66\x0c\x47\x19\xd7\x81\x9d\x93\x1c\x36\x5f\xda\x91\x5d\x25\x97\xbe\xc1\xf0\xfe\x4e\x9c\x19\xb1\x9e\xe2\xa8\xaa\x35\x41\xed\xc5\xfc\xfa\xf6\xd3\x1f\xd2\x96\x85\x07\x82\x12\x21\xfa\x25\x25\xc4\x8d\x15\x21\x98\xb1\xbf\x52\xca\x1e\x10\xa3\x91\x15\x50\xd3\xbc\x33\x36\xd6\x39\xbb\x26\x79\xeb\x49\x73\x9b\x65\x1b\xc5\x71\x5b\xba\x48\x21\x19\x49\x42\x16\x23\x49\x4e\x5b\x22\xcb\x11\x82\x13\x08\x02\xa6\xc6\x46\xd0\xf6\xfa\x3d\x25\xec\x64\x0f\xcc\x5c\x2b\x76\x8e\x61\x43\xb6\x58\x63\x31\x2c\xc3\x42\x6d\x1e\xa4\x25\x52\xe5\xa2\x7a\xa8\x07\x59\x4f\x69\x0b\x3b\x79\x7e\xbd\x33\x39\x23\xb4\x20\x58\x9f\x74\xf8\xc8\xd2\xc1\x66\x3e\x03\x4d\x3a\x6b\x8f\xe4\x7c\x52\x37\x24\xdc\x62\x3e\xe9\x89\x06\xea\x7e\xb5\x30\x6c\xd0\x0e\x61\xcc\x6a\xfd\x20\x58\xc8\xf1\xab\xc4\x70\xac\xe2\xa1\x87\x1d\xa2\x69\xc7\x22\x49\x26\x20\x7c\xe0\xbc\x51\xad\x39\xec\x57\x87\x02\xb4\x7e\x00\xe8\xdc\x50\x9d\xff\x40\x3b\x32\xf2\x7a\x7c\x5a\x84\xdf\x04\xaa\x06\xb9\x97\x4b\x52\x88\x11\xad\x0b\x8d\x28\x0e\x2b\x12\x88\x92\x93\x76\x6b\xfd\xef\x21\x30\x8b\x61\x35\xd7\x99\x6e\x75\xce\xdf\x31\x8f\x94\xe1\xff\x55\x0a\x52\xd4\xb2\xa4\xbd\x29\xc5\xa3\xc4\xfd\xe0\x5c\xa5\x32\x60\x7c\xdd\x16\xf6\x2f\xf3\x1f\xa8\x60\x2b\x97\xc3\x91\xa0\x8e\xc0\xd8\xe8\xfe\x94\xc9\x36\xee\x05\x1f\x29\x7d\x8e\xb8\xe9\xb7\xf4\x89\x6b\xb3\x99\x44\xd5\x26\x95\x31\xca\x6c\x7d\x74\xc3\xa2\x70\x5a\x3f\x49\x3e\x73\xd6\xbd\xea\xbd\x73\x30\x22\x9e\x71\x73\x6d\x62\xeb\xc5\xa9\x8c\x5b\x5f\xc3\xa9\xf9\x31\x5c\x35\x55\x56\x26\xd0\x20\x8b\x96\x24\x28\x65\xd1\xb7\xec\x46\xa1\xc0\xb3\xc1\x34\x01\xde\x14\x4a\xa5\xdb\x1f\xac\xb3\x72\x17\xd4\x2e\x82\xf7\x5d\xad\x7f\x8a\xba\x9f\x09\x74\x64\x88\x82\x52\xef\x4c\x5e\xbb\x36\x69\x21\xff\x90\x72\xa9\x40\x8a\xc4\x28\xd3\x9b\x84\x08\x43\xa4\xfc\x3b\x8b\x41\x39\x88\x83\x14\xe5\x1b\x1f\x05\xb8\x33\x4a\xc5\xdc\x97\xa5\x22\xce\xa8\xd6\x18\x00\xf8\xda\xf7\xd1\x5e\x7d\x2f\x75\x72\xc2\x73\x96\xec\xb0\xe9\xba\x45\x9b\x65\xeb\x9c\x7e\xb2\x73\x75\x52\xe0\x75\xac\xb9\xb9\xbe\xde\x3d\x35\x2d\x5d\x87\x0c\xcf\x63\x52\xd8\xa0\x5c\xca\xae\x0c\x2e\x97\x27\x35\xdc\x4c\x99\xc6\x9a\x7f\x0e\x06\x4c\x4b\x5b\xf7\xf2\x85\xcd\xd7\x37\x0d\x13\x33\x19\x0e\xd6\x27\xf9\xe4\x93\x1b\x92\xb5\x5d\xd0\xf5\x52\x30\x87\x33\x24\x32\x5e\xe0\xcb\x3c\xcb\x51\xb9\x1c\xf2\x32\xb0\xa6\xda\xc1\x7f\xa3\x56\x44\x5b\x46\xca\x9e\x10\xee\x09\x70\x3c\xbb\x57\x9f\xb9\x15\xb5\x31\x2b\xdd\xe7\xf4\xbe\xd4\x66\x4e\x71\x7b\x03\x15\x4a\x82\x11\x14\x23\xe9\x72\x2c\x99\xd2\x29\xa6\x0e\x4e\xdb\x44\x43\xb1\x9e\xbb\xb4\xa6\x53\x81\x0e\x55\xcd\xad\xbf\x5f\xdb\xfa\xfb\x75\x31\x10\x69\x46\x63\xdd\xb8\x72\xcc\xb2\xa6\x95\x50\xd2\xc9\x05\xe7\x2b\xd0\x76\xf1\xc8\x72\x52\x12\xbe\x5c\x68\x24\x2b\x55\x1b\x41\x0e\x86\x40\x1e\xc8\xd9\x3e\xb1\x01\x33\x48\x36\x45\xa5\x91\x30\x71\xba\x93\x24\xa7\x09\x17\x9a\x34\x18\x52\x79\xf6\x91\xa0\xf0\xe2\xf2\x11\xde\x91\xf3\x74\x6d\x34\x93\xde\x24\xd4\xdb\x25\xe4\xb0\x74\x27\xb3\x52\xa9\x51\x18\x0e\xc3\x48\x98\xc4\x78\xa0\xda\xa1\xda\x1e\xe2\x4e\xf3\x65\xf7\xfc\x6d\xb5\x9f\xd4\xb4\x8c\x4a\xca\x9a\x0a\x13\x52\xbb\x0f\xb5\x4a\xc0\x83\x8b\x29\x10\x85\xcc\x97\x2a\xe4\x6a\xaf\x1d\x32\x94\xaa\x49\x31\xce\xa6\x23\xfc\xca\xd6\x95\xf5\xce\xf8\xb4\x6d\x6b\x6f\xa1\x72\xce\x41\x90\x76\x00\xe8\x4c\x3c\x86\x83\x0c\xc4\x95\xec\x42\x8b\x26\xf6\x3d\x7b\xcc\x53\x52\x97\x4d\xf6\x0c\x0b\x4b\x49\x2d\xa1\x35\xf9\xf4\xb3\x94\x8a\x90\x5e\xc7\x49\x9d\x8b\x5e\x96\x23\x71\xdd\x86\x65\x43\x8a\x31\xcc\xe9\x0e\xcd\xc7\xe5\x54\xd5\x0c\x0f\x79\xa7\x5a\x8a\x80\x99\x05\x73\x37\x89\xd2\x99\x82\x46\x4d\x1a\x98\xce\xcb\x97\xc4\x85\xa7\x10\x09\xe4\xbb\xa4\x9d\x2b\x6b\xe0\x5b\x3f\x4e\x6d\x5d\x79\x9e\x0c\x37\xb1\x5d\x79\xa7\x1c\x8f\x21\x3a\x99\x28\xf9\x47\xc2\x9e\xe4\xd9\x0a\x57\x11\x06\x90\x5d\xc5\x08\x0b\x60\x0d\x42\xca\x75\x34\x2b\x1d\xd4\x6e\x13\x49\x49\xbf\x9d\x60\x93\x49\xdf\xb9\x53\xa6\x1b\x9c\xbc\x4f\xd2\x6f\x21\xbc\x06\xe1\xdc\x90\x33\xbd\xd3\xcd\x86\x2a\x13\x06\x33\xb7\x46\x73\x49\x39\x9f\xd3\x4d\x2d\xaa\xc9\xdb\xd9\x2f\x16\x89\x02\xf0\x57\x85\xf6\x40\x38\x58\x5a\x28\xd8\x7e\xfb\x1a\x18\x3d\x6e\xc3\xf5\x1d\xf5\x89\xaa\xe3\xba\x2b\x89\xfa\x79\xcb\x54\x89\xa6\xb8\x9c\x65\x82\xec\x61\xab\x34\xec\x6a\x6a\xbb\x34\xbb\x4f\xee\xa2\x86\xfa\x60\xd1\x73\x8c\x90\x9d\xe9\x59\xac\x8d\xec\xe6\x13\x52\x80\x1a\x92\xbc\x34\x69\x08\xe2\xc3\xbe\xc4\xda\xc6\x99\x2e\x4a\xaa\x19\xc8\xcd\xed\x60\xca\x51\x1c\x4d\x49\x34\xa4\x1d\x79\xb1\xdb\x52\x98\x33\x2b\xfa\xa4\x48\xb2\xb5\x2a\x90\xc8\xc7\x66\x62\xf7\xfd\x82\x7b\xcf\xb6\x4c\x89\x7b\xd5\xb3\x2c\x04\xa8\x5c\x14\xbe\x76\xcc\xf9\x68\xcf\x16\x94\xac\xd0\xe9\x66\xd6\xb2\x00\xca\x91\x19\x32\x8f\x5a\x72\x1c\xa5\xb8\xb2\x0e\x47\x71\x3d\xac\x0e\x1d\x51\x91\x65\xa9\x16\xee\xc3\x87\x44\x35\x4f\x2a\x03\x60\x2e\xb4\x76\x6c\x22\x6a\x5e\xa1\xc1\x59\xeb\xe2\x1d\xf6\xbd\xe1\x7a\x30\x98\x3b\x70\x30\x3a\x70\xc4\xb3\xf1\x78\x65\xae\x3b\x71\xf1\xf0\x21\xff\x88\x97\x56\x8d\xa7\x3b\xf1\x84\x1c\xef\x16\x3b\x33\xd3\x3b\x77\xa7\xb0\xb2\x3e\x10\x42\x1d\xe2\xa5\x2e\x00\x14\x1a\x4a\x44\x66\x39\x77\x2e\xfc\x88\x52\x43\x2f\x5d\xa1\x6c\x4a\x1c\x10\x37\x45\x5d\xee\xf7\x52\xb5\xb6\x6c\x42\x62\xdd\xa3\x21\xfb\x39\xc0\x24\xa0\x5c\xc2\xc6\x83\x25\xe4\xd8\x43\x46\x71\xe9\xbf\x83\xff\x3f\xa5\x36\x56\x72\x23\x93\xee\x07\x21\x49\x11\x45\x93\xeb\xd4\xdd\xcc\xee\x25\x4c\x53\x10\x59\x26\x45\x41\x37\x57\xab\xcd\x9c\x50\x75\xd1\xa4\xbb\x37\xc7\xb6\x7e\x6c\x31\xa6\xba\xb3\x0f\xe9\x32\x57\x22\x21\x14\x6e\xbf\xfd\x0e\x49\xe2\x0b\x16\xb7\x51\x0b\xc4\x73\x02\x49\x2f\x0e\xf4\xe6\x07\xde\x9d\x10\xf5\xf3\xc6\x2c\x40\x31\x8f\x3f\x80\x46\xe7\x93\x94\x15\xd0\xa7\x8f\xa5\xa0\x1e\xa7\x23\x29\x20\x19\xc7\x53\x38\xef\xd8\x07\x31\x0d\xd8\x9c\xf4\x1f\xfe\x89\x58\xc5\x84\x47\x8f\xf0\x31\x66\xef\xc6\xbd\x1e\xbd\xad\x1f\x2f\xb6\x9b\xab\xb2\xa3\xd4\x03\xd8\xa8\x0e\x94\xaa\xc5\x9c\xe9\x10\xb4\x3d\x7f\x9f\x05\x32\x2a\x52\x1b\x20\x65\x9e\xe8\x84\xab\xdb\xd9\x9b\x79\x51\x6b\x33\x04\x2a\x7d\x82\x93\x8f\x43\x54\xc9\x77\xc6\x26\x37\xd7\xd6\x9c\x50\x0d\x4f\xb8\x7b\xa2\x60\xbf\x6a\x60\x91\x63\x6b\x84\x5b\x16\xb7\x37\x2e\x7e\xbb\x09\x9d\xe7\xfd\xfb\xa8\x56\xc4\x88\xe7\x6f\x52\x95\x6b\x55\x67\x1e\x90\xd1\xe6\xc9\xa0\x1d\xef\x83\xcf\xfe\xe4\x49\xaf\x2a\x19\x45\xb2\x0b\xe3\xa0\x46\xa6\x3c\x81\x49\x17\xb9\x40\x8b\x7e\x81\xdc\x3e\x17\xa4\x20\x61\x8c\x60\x37\xaa\x2c\xc4\x40\x6b\x20\x4e\xcf\xdc\xab\x90\xb2\x34\x68\xb2\xb1\x2a\xc4\x31\xd2\x32\x70\x65\xd7\xe2\x05\x0f\x22\x9b\xcb\x4f\x5f\x22\xa0\x3e\xf2\xec\x4b\x24\x5b\x67\x1f\x7d\xcb\xb4\x4f\x92\x31\xd3\x3d\xc0\x46\x73\x3e\x60\xe1\x0a\xd1\x2c\xde\xd6\xe7\x69\x67\xb9\xd7\xee\xe6\xda\x54\x67\x0d\x3e\x2e\x90\x97\x76\x76\x9c\x16\xe9\x86\xb3\x34\xc1\x26\x95\x12\x3b\x54\xd0\x29\xf3\xa3\x3a\x0c\x7b\xd8\xbe\x06\x6e\xe4\xc1\x73\xe9\x22\x50\x75\x60\x48\x5c\x67\xa8\xac\xe8\x1c\x29\x31\x59\x5b\x51\x7b\x8c\x2d\x4a\x79\x37\xa1\x4d\x14\x33\xc8\xf6\x7f\x72\xa6\x2a\x1c\x9e\x98\x76\x6a\x0d\x46\x8f\x8d\x4a\x6c\x11\xed\xf0\x25\x4d\x64\x60\xcf\xbf\x79\xdc\x9d\x9d\x57\x17\xbb\x58\x0f\x1c\xa8\xbe\xc6\x09\xf1\xd2\x81\xdc\x19\xa9\x84\xb5\x2c\x1d\xc8\xed\x72\x15\x35\xe2\x92\x4a\x67\x3e\xb2\xba\x71\x23\x24\xb5\xe5\xdd\x67\x2f\x37\x5f\x9d\xb6\x26\x20\x7c\x79\x8d\x5b\xd5\xd5\x31\xb0\xcd\x61\xf2\x5f\x49\x0d\x87\xba\xcc\xaf\x40\xfe\x22\x0b\x0d\xc5\xa2\x6c\x90\x73\xf7\x86\x61\x25\x4d\xf5\xf2\xd0\x36\x54\xc1\x0a\x75\x9a\xe7\x3a\x0f\xe6\x11\x53\x69\x86\xd4\xad\xb9\xa7\xbc\xb6\xdd\xb1\x5b\xe8\x41\x89\x0a\xfb\xa5\xee\xf2\xa4\x30\x2e\xa0\xb4\x80\xe3\x95\x68\x07\x06\xa6\x7b\x6a\x5a\x21\x1c\x37\x07\x6e\x8b\x93\xa5\xa8\x34\x50\x2a\xb3\x76\x95\x02\x25\x50\x8b\xba\x28\x15\xa9\x54\x8c\xa5\x76\x10\x58\x32\xf4\xef\x70\x54\xf3\xab\x5e\x01\x6e\xed\x28\x77\xa0\x51\xf2\xea\x41\xd1\x43\x57\xe1\x03\x47\x0c\x09\xe3\x1a\xfb\x88\xc3\x20\xa0\xf2\x11\xc3\x86\x81\xf1\xd9\xc2\x64\xb0\x4b\x6c\x36\xd5\xa4\xb0\x2c\xb3\x66\xe7\xf4\xb8\x28\x4a\x0e\xd8\x02\xa8\x94\x06\xee\xf8\x51\xfe\x7f\x74\x55\x39\x77\x4a\x89\xd3\xf1\x2e\xa1\x25\xa2\xfd\xb3\xbd\xf8\xa4\xfb\xfd\xdf\xc4\x17\x8c\xf0\x57\xd1\xfd\xea\x8b\x1c\x41\xdf\x50\x29\x2e\x0d\x55\xc3\x7a\xe0\x39\x41\x41\x52\x51\x52\x2e\x15\xe0\x96\xc2\x5d\x41\x78\x42\xf5\xd0\x2a\x49\x9a\xa2\x40\xcf\xc5\x2a\xcf\x02\x57\xaa\x96\x62\xc0\xa6\x5f\x84\x8d\xf6\xf9\x87\x1f\x1c\x3b\xfe\x61\x5f\xa5\xe8\xd1\xfd\x4f\x96\xb5\xa4\x59\x65\xe2\x56\xf7\xe6\x1c\x45\x46\x09\xc7\x67\xb1\x16\x6e\x45\xe9\xeb\x5c\x0c\x06\xfd\x46\x59\x5a\x26\x38\xba\x80\xd1\xbc\x24\xb9\x14\x6d\x92\x90\x41\xfd\xf9\x12\x5a\x59\x4f\xfa\x65\x1d\xdd\xef\x01\x1b\xb6\x73\xfd\xca\xbb\x40\xfe\xde\xcb\xd4\xb7\xbb\x7b\xff\x9f\xa3\x72\x4f\x9e\xa8\x7f\x54\xf1\x5e\x0d\x50\x69\xd5\x88\x87\x95\xd9\x50\x08\x2c\x38\xf1\x21\xbe\x51\xd9\x0d\xeb\x36\xad\xde\x33\x91\x1b\xc2\x88\xb7\x94\xb1\xdc\x66\x7d\xb9\xe8\x5f\x0c\x97\x22\x4f\x07\xc8\x7b\x23\xa5\x72\xd9\x1b\x08\x3c\xdf\xb3\xce\x1c\x1e\x36\x6f\xa0\xdc\x08\x0e\x1c\x61\x74\x8b\x53\xa6\x81\x66\xac\xa9\xcc\x93\x20\xaa\xf5\x15\xca\x61\x15\x88\x65\xb1\x58\xe7\x48\x06\x1d\xd3\xe9\x68\x41\xd2\xea\xf3\xe1\xa0\x21\x17\x60\x6c\x34\x4c\x74\x1d\x3b\x44\xfe\x63\x87\x3e\xfa\xd3\x17\xe4\x52\x13\xd6\x3d\x54\x59\x97\x3d\x8e\xff\xf3\x30\xaa\xa4\x4f\x83\x94\x76\x66\xaa\x23\x43\x4e\x8c\xf8\xb9\xb4\x10\x13\xb4\x64\xdb\x86\x2f\x54\x7a\xa6\x84\x22\xcf\xa7\xfa\xf3\x88\xdd\x77\x02\x96\xb2\x07\x75\xa1\xd0\xcf\x28\x28\x0f\x1a\x3e\xf7\x26\x3b\xe3\x18\x32\xd1\x2a\x9f\x88\x91\xb6\xe8\x91\x43\x5f\x0a\x61\x6d\x34\x5f\x2e\x55\x4f\xe4\x14\xd3\x03\x1f\x81\x0a\x9c\x00\xc6\x23\x8f\xa5\x39\xed\xdc\x88\x74\x55\x45\x5e\x2c\x99\x0d\xc2\x5a\x89\x2c\x5c\xe2\x0b\x1c\xd9\xce\x79\x54\xaa\xd3\x4a\xa9\x30\x62\xb5\xb0\x93\xb4\xb6\xcf\xe8\x04\xf4\x14\xba\x7d\x8f\x2d\x92\xb9\x03\xf9\x01\xa0\x70\x27\x0e\x18\x72\xb2\x6a\x4a\x42\x34\x12\x95\xe9\xd6\xd6\xe9\xf9\x0c\x16\xab\x51\x1d\x21\x7f\xa6\x2f\xf9\xdf\xfd\xfb\xf8\xe7\x9f\xf9\x47\x03\xc3\x69\xea\x50\x88\xff\xb0\xc9\x2e\xd7\x4f\x7f\x52\x22\x8f\x3f\xc0\xff\xe8\xe0\x59\xb4\x58\x8a\x7e\xdf\x34\x10\x5d\x43\x8d\x12\x85\x82\xae\x10\x75\x64\x7b\x91\x54\x10\x48\x4c\xc4\xb0\x4d\x4d\x43\x75\x4a\x58\x93\xb5\xfb\x15\xf9\x33\xa2\x43\x88\xda\x17\xc2\x0a\x08\x37\x02\xe3\x2a\x0a\x4d\xc6\x9f\x36\xe7\xb3\x32\x97\x18\xd1\x80\xa6\x30\x56\x6b\xa0\xf7\x22\x5a\x7a\xa5\x6f\x81\x06\x0b\x78\x5e\xf7\x0c\xd8\xa8\xd7\x07\xd1\x9f\x82\x9c\x12\x13\x40\x5f\xd9\x59\xe5\x51\x88\x28\x53\x04\xdb\x24\xcf\x71\x3d\x40\xea\x74\x4a\x6a\x08\x85\xbd\x19\xb3\xcf\xc4\x3e\xa6\x11\x31\x6a\xff\xff\x1e\x92\xc8\xd6\x33\x59\x2b\x88\x5c\x60\xd4\x42\xd4\x71\xd2\x83\x94\xfd\x81\xa0\x1c\xd1\x35\x86\xbc\x00\xc6\x23\x97\xca\x41\x14\xc3\x62\x44\x92\x3c\x8e\x2f\x19\xf1\x7e\xab\xb8\x99\x2b\x95\x12\x26\x20\x41\x24\xcc\x49\x8f\xe4\x3a\xb0\x74\x7e\x24\x8d\xc5\x22\x70\x0f\xb6\x07\xda\xad\xea\xfe\x08\xca\x7a\x2a\xe4\x4d\x7c\x86\xc5\xa6\x04\x23\x9d\xe7\x0f\xbb\x4f\x5f\x88\x8f\x14\x6f\xea\x36\x40\xed\x0d\xc9\x10\xa2\x12\x1c\x97\x8a\xcf\xa7\x12\x4d\x90\x1b\x52\x99\xba\x4a\xfe\xc5\x6a\x88\x7d\xe9\x43\x95\xa5\x22\xeb\x89\x59\x88\x24\x83\x92\xa0\xe8\x5a\x83\x28\x86\xbb\x1f\xf1\x72\x41\x0f\xc3\xd7\x37\xb7\xc7\x4e\xeb\xcf\x15\x20\xb8\x9c\x88\xe8\x2e\x2d\xf2\x3a\x0d\xff\xa5\xae\x50\xa4\x84\x38\xb3\x0f\xe1\xea\xd7\x1f\x39\xd6\xab\x33\xfd\x80\x7c\x03\xe4\x57\xd8\xcb\x81\x61\xd1\x21\x6f\x1f\x5a\xbc\x3e\x91\xa6\x88\xbf\xb3\xea\xcb\x2c\xeb\x4b\x2e\xaa\x51\x58\x45\x56\x68\x00\x8d\x5f\xb2\x58\x1e\x53\xa3\x52\x01\xd6\xb2\x9e\x77\xe1\x68\x47\xee\xd6\x3d\xab\xba\xda\x33\x59\x5b\xc6\xee\x7f\x97\xea\x99\xe3\xd9\xad\x5d\xd6\xf0\xc2\x1a\x08\x88\x46\x63\x21\x01\xc0\x39\x5c\xdd\x7c\xf9\x94\x4e\xe9\x6e\xa3\x06\xf2\x14\x61\x54\x87\x01\x44\xd2\x21\xf4\xcd\x55\x4c\xec\x6e\x70\x80\x31\xc0\x94\x50\xb0\x07\x26\x4f\x77\x5e\x5f\xa6\xcd\x93\x98\x67\xb2\x52\xe6\xd4\x50\xf1\x96\xac\x6d\x23\x90\x69\x63\x8e\x37\x8a\x41\x33\x35\x18\xb1\x23\x0c\xa2\x98\xb2\x73\xb8\x52\xbe\x56\xf6\x0b\x81\x0a\x4f\x14\xf5\x80\x5b\xa3\xac\x41\x56\x8f\x89\x7d\x96\xe8\x9a\x16\x26\xf6\x07\x72\x07\x8b\x9e\xb9\x2a\x1a\x10\xa2\x5d\xd7\xd0\x28\x57\x35\x80\x1c\x60\xfc\x99\xd3\x55\x6a\x31\xb0\x9b\xc8\x29\xa0\xa5\x8c\xf9\x72\xa9\x78\x52\xe7\x60\x2a\x8d\x0b\xb1\x21\xed\x75\xab\xbb\xd5\x53\x3a\xef\xb5\x69\x9c\x25\x14\xd0\xd4\x52\x93\x94\x2c\xed\x67\x12\x10\xe5\xc3\x48\x34\x18\x2a\x41\x03\xa3\xf7\x4f\x42\x8f\xff\x02\x71\xf0\x03\x01\xcf\x6d\xc6\xcc\x31\x92\xdd\x07\x14\xa0\x96\x2c\xed\xc3\xd8\x5a\x71\x97\x98\xc6\x78\x87\x1a\x59\x2d\x22\x91\x0d\x0d\xf8\xa6\xd1\xb0\x61\x1a\xdf\x40\xb4\xff\x01\xf0\x0e\xbb\x17\xa1\xe8\xe8\x1b\x65\x73\x49\x01\xc7\x7b\xac\x98\x1f\x18\x75\xa1\x4d\xd9\x37\x78\x2f\x20\x95\xa0\x8a\x96\x2c\xcc\x13\xe0\x0e\x69\x73\xe3\x16\x7b\x10\xb8\x0d\x23\x8c\x57\xe9\x87\xff\xa5\x15\xf4\x61\xce\xb9\x08\xb0\x0c\xc4\x3b\x4a\xaf\x81\x47\x07\x6a\x7c\x4a\xff\xa4\xd6\xa8\x07\x20\x63\xc6\x6c\xae\xce\x7d\x4e\x3f\xca\xa3\x1e\xff\x2e\xa6\xf7\x0a\x57\xaf\x6c\xf0\x31\xfe\xed\xd5\xf7\xd2\xac\x12\x46\x31\x5e\x37\x68\x67\x38\x0e\x7f\x7b\xe2\x47\xaf\x5e\x64\x7d\xee\x26\xd9\x00\xcf\x34\x2d\x4b\x4e\x59\x6d\x0e\x1d\xfc\xcb\x6f\xbe\x42\x8e\x94\xfe\x45\x6e\xd4\xf4\xe2\x23\x67\x9f\x49\xde\xc2\x50\xe3\xd7\x5f\x45\x49\x58\xf9\x41\xff\x44\x90\xe3\x9f\x5c\xc7\x1b\x18\x65\x70\xaa\x72\xad\x1e\x9c\x2c\x85\x8d\x28\x87\x96\x18\x9d\x08\x50\x11\xb0\x6f\xe3\x1c\x9a\x1b\x13\x25\x4c\x84\x48\x61\xf5\x29\xfc\x69\xd3\x9e\xa2\x28\x39\x4a\x3f\x34\xb4\x46\x25\x2f\xa6\x1e\x21\x69\x92\x7f\xeb\xc6\x12\x2f\x79\x3f\xce\x7d\xad\x7e\x79\x7e\x8c\xc6\xac\x52\x11\x58\x74\x9c\xc5\x01\x81\xa1\x7f\xe1\x5f\x47\x14\x82\xbe\xd6\x5d\x85\xca\x14\xf4\xc5\x70\x50\x0f\x3c\x10\xe4\xaa\xa1\x27\xbe\x79\xa3\x41\xdc\xe7\x90\x4b\x4e\xc7\x46\x23\x76\x4a\xc4\x38\xcc\x1a\x1e\xf0\x94\x72\xf8\xaa\x76\x3d\x20\xa4\x70\xb5\xcf\xe9\x87\x5b\x66\x83\xe2\x3a\xa9\xb0\xc4\x5d\x20\xb7\xcd\x51\xb7\x98\xb1\x4c\x58\xa2\x3f\xff\x01\x14\xf1\x90\x04\x14\xf9\xe3\x1f\x80\x03\x02\x3d\x66\xa0\xfc\x8c\xfe\x51\x5f\x29\x1b\x41\x8e\x82\xa2\xf4\x9e\x21\x55\xe2\xa7\xf8\x7f\xf5\x4d\x86\x04\x83\x40\x04\x52\x29\x10\xe9\x7e\xf8\x00\xc7\xcf\x83\x0f\x1e\x7e\xb0\x6b\x96\xaa\x79\x19\x3e\x45\x22\x53\x1c\x7a\xe8\x8f\xe9\xc5\x24\xa9\x87\x55\xcc\x74\x49\x66\xf6\x3e\xef\x83\x32\xaa\x8e\x46\xbd\x61\xff\x24\xae\x97\x27\xd4\xa6\xff\x6a\xdb\x45\xa9\x3b\x04\x10\xca\x35\x60\x7b\xa8\xe8\x34\x28\x96\xe2\xdc\x87\xf0\x3f\x3d\x0c\x00\x97\xeb\x87\xff\xa9\x2f\x7c\x4d\xca\x1c\x78\xfa\x6e\x77\x2a\x14\xc2\x72\x58\x37\xf9\xc7\xe5\xed\x73\x3f\x24\xea\xa0\x9e\x18\x6f\xed\xc4\x9d\xcc\x15\xf4\x0e\xa3\x13\xd4\xbd\xb9\xb8\x3d\x7f\xbf\xfb\x7c\x2d\x79\x89\x70\x7d\x1a\xff\xd6\x4f\x0b\x3b\x37\xce\x38\x25\xc2\x81\x51\xea\x96\xad\x32\x11\xf4\x67\x8e\x55\xba\xe3\x24\x61\xb0\xbb\x9e\x51\x33\x0d\xa2\xac\x29\x1d\xe0\x34\x73\x63\xf9\xfe\x37\x17\xd0\x53\x24\xc3\x65\x4d\xb0\x62\x20\x6b\x8c\x9f\xee\xdc\x79\x8e\xa2\xbd\x6b\x88\x40\xb9\x93\xbd\xd5\x4c\x7d\xb6\x79\x8f\x39\xc3\xd1\x4e\x3b\x6a\x02\xbb\xd8\x39\x84\x8e\x05\xb3\x4a\x12\xc1\xaa\xf9\xb0\x17\xd9\x17\x28\x12\x61\x92\x68\xda\x58\xb9\xb2\xbd\x31\x9e\x51\x8d\x91\xf0\xf3\xc6\xa5\x76\xf3\x81\xa3\x63\x54\x4d\x45\x52\xa6\xb4\x6c\x95\x99\xd2\x36\x76\x05\x84\xaf\x1e\x44\x8d\x72\x8c\xae\xaa\x17\xbb\xb7\x6f\xa2\x31\x15\x84\x40\xec\x69\xd2\x0e\x73\x9d\xb7\xdd\x33\x94\x04\x6b\x4b\x4a\x19\x0c\x9b\x51\x3d\x9b\x1f\x35\x2a\xf5\xe0\x49\xdd\x5a\xc5\xdc\x41\xce\x27\x72\xf5\x5c\xbb\xf9\xbd\xe1\x4c\x69\x0e\x31\xcc\x17\x1b\x40\x03\x48\x30\xa4\xa8\x5c\xc9\xfb\x39\x03\xcb\xd1\x45\x39\x9d\xec\x25\x27\xc0\x53\xb2\x2f\x6b\xee\xb0\x29\x06\x86\x81\x74\x00\xad\x3a\x4a\x64\xd8\xd3\xe5\x48\x27\x44\xbe\xd7\xc0\xc3\x30\x7c\x4f\xec\x2b\xbb\x03\x96\x1d\x44\xeb\xe3\xb2\xc0\xaa\xc3\xf4\x82\x42\x56\xad\xef\xb4\x37\x8e\xc1\xff\xea\x25\xca\x0f\x67\x17\xca\x39\x1f\x6b\x04\xde\x31\x04\xfe\xae\xcc\x22\xf7\x9e\x33\x45\x10\x89\xe0\xae\x0a\x50\xd9\x64\x7c\x57\x29\x75\x04\x20\xa4\xbb\x15\xb8\x00\x10\x1e\xfe\xf6\xf8\x37\x5e\x97\xa2\xea\xaf\xbc\x4a\x03\x58\x96\x81\xc0\x7b\x67\x14\xa0\xbd\x5f\xa9\xbc\x5f\x2c\xbe\x93\x36\x5f\x75\x98\xd4\x84\x59\xf9\x3c\xec\x03\xdf\x11\xc0\x45\x27\x98\x4f\x4f\xd4\x43\xef\xe0\xd1\xff\xcf\x02\xa4\xc8\x6d\x06\xd2\xb0\xdc\x58\x9e\x2f\xe1\x26\x1e\x08\x50\x2b\xee\x15\x35\xc6\xe8\xea\x30\x96\x2c\x0a\xbd\x1a\x5c\x6f\xe5\xc0\x1b\x09\xab\xef\xd0\x54\xd0\x40\x87\x3e\x19\xce\x34\xd8\xbf\xf5\x28\xfd\x63\x95\x08\x82\x78\x9c\xfe\xe9\x3d\x36\x46\xc1\x51\x3e\xe9\x5e\x38\xa8\x47\xe2\x60\x03\x2f\x92\x5e\xb8\x50\xc4\x55\xa3\xf3\x98\xf8\x94\x5a\x2f\x2f\x76\x0e\x92\x75\xbe\x0f\x75\xcf\xa4\x6b\xaf\x07\x95\x10\xae\xc2\x52\x8c\x6b\xcb\xeb\x8c\xd8\x82\xcb\xcf\xa7\xd2\x32\x2d\x8e\xd8\xcf\xde\xb1\x10\xf7\xb7\x37\xe2\x03\xbb\x14\x33\xe7\x84\xce\xc0\xff\x9a\xde\x77\x72\xe9\xd5\x3c\xf9\xa2\x49\xcc\x34\x25\x43\xb0\xfc\xd0\xc7\x7b\x3a\x72\x53\x22\x1a\x35\x8c\x14\x3b\x78\xfd\xa0\x2e\xea\x31\x69\x91\x9f\xd8\x3e\xe3\xaa\xc1\x70\x18\x9e\x88\x72\x7f\x0e\x06\xe8\x0f\xa3\x60\xa8\x14\x73\x19\xe5\x05\x65\xcf\x62\x11\x71\xaf\xea\x0c\xf8\x51\xa9\xa0\xd3\x11\x77\xe6\xd6\xba\x37\x9f\x24\x46\x5d\xc4\x25\xaf\xe7\xff\x8a\x62\x6e\xe7\xc2\xf3\x9d\x6b\x6b\x9d\x9b\xcf\x3a\x2f\x4d\x40\xe4\xf2\x2e\x32\x66\x69\xaf\x77\x55\x2c\x7c\x6d\x1d\xc4\xe0\x8d\x27\x7c\x8b\xf5\xfc\xd9\xf9\x14\xd5\xaa\x19\x76\xd8\x6c\x9f\xf4\x2c\x20\xf2\x6e\xce\x8c\x80\x4c\xf1\x52\x97\x21\x4e\x49\x23\xb2\x70\x51\x4f\x28\x73\xf5\xed\xbe\x17\x57\x74\xc3\x89\x4c\x8e\x3a\xae\xfb\xd5\x68\xd0\xb1\x49\xa3\xf1\x67\xfd\x5e\x4a\xad\xf4\x49\xa1\x67\x9d\x96\x7c\x55\xbc\xbe\x4e\x9f\x8a\x09\x71\xee\x2b\xeb\x07\x87\x16\xda\x01\x55\x18\x20\x21\x23\xc2\x96\x64\x54\xdb\x6c\xda\x80\x29\x0d\x37\x85\x7d\x62\x70\x5b\xc4\x56\x41\x2b\x0f\xb8\x31\x11\x76\x96\x15\x4e\x70\xb6\x97\x5c\x72\x12\xd6\x30\x53\x7a\x96\x41\x2a\xa9\x56\x01\xed\x27\xe1\xd4\xcf\x42\x99\xc3\xa9\x75\x4e\x8f\xa3\xa1\x7e\x62\x9d\xe2\xc2\xb4\xee\x67\xeb\xde\x5a\x67\x19\x75\x01\xbd\xd3\xdd\x24\x16\x0a\x93\x6d\x02\x81\xc8\x1d\xae\x1d\x79\x1f\x51\x63\x23\x45\x78\xa8\x18\x69\x13\x45\xb2\x15\x2b\x27\xcc\x4a\xc2\xcd\x49\xf9\x68\x4c\x93\x4f\xbc\x8e\xa7\x3b\x7c\xa8\x76\x24\xbd\x2b\xb9\xaa\x3a\xa6\x90\x22\x36\x1f\x58\x5b\x46\x85\x21\x5a\x6d\x97\xba\xe7\xc6\x3a\xcf\x6f\x5b\xd9\x60\x9c\x01\x1a\xa3\x83\xed\x86\x76\xcb\xbf\x3f\xa5\x75\x9c\xb5\x86\x96\x4d\x15\x0c\x9e\xd5\x49\x1d\x6c\x53\xcb\x9e\x1e\xf8\x49\xf4\xb3\x70\x96\xba\x27\x8d\xea\x15\xff\x04\x70\x71\xf2\x04\x72\xdc\x62\x1a\x34\x76\xba\x4a\xd8\xa7\x95\x6d\x11\xa7\x6e\x70\xda\x32\x00\xb2\xc7\x40\x6d\x9f\x9a\xa4\x2f\x8d\xaa\x88\x8e\x98\xfa\x7a\x08\x8d\x39\x71\x0e\x36\x96\x86\x58\x3d\xac\x9c\x5b\xb3\x1a\x27\xfd\x45\x5d\x20\xbd\x9c\x9e\x15\x58\xbe\x7a\xd3\x21\x27\x01\x66\xcb\x1d\x7a\x4f\x60\x10\x76\x89\x42\x65\xf3\x9c\xdf\xcb\x4d\x2c\xad\x76\x28\x46\x68\x5e\xbe\x4b\x1b\x50\x44\x13\x27\x7a\x14\x2e\x41\x72\x22\xbb\xa6\x07\xb7\xd0\x35\xc2\x77\xaa\xbc\x5b\xbd\x34\xb4\xd2\x0d\xcb\x74\x45\x5e\xc1\x4c\xe8\x38\x86\x7a\x7e\xeb\xdc\x2b\xbe\xe8\xa4\x7b\x8d\xf0\x7c\xda\xba\xb6\x86\x8e\x78\xe4\x54\xe6\x04\x9a\x77\x1e\x5c\xc5\x58\x55\x2b\x8f\xae\x4e\xd0\x2b\xbd\x1d\x66\x8d\xa4\x6d\x26\xe4\x29\x86\x6c\x8a\x9d\xe8\x69\x84\x90\x41\xdc\x99\x72\xfa\xfa\xb2\x5e\xe6\xb4\x5f\x9f\x7d\xda\xff\x85\x2b\x8d\x35\xa7\x28\x85\x98\x95\x4e\x75\xfb\xf1\xea\xd6\x8b\x67\x32\x97\xcf\x5d\x11\xb3\xd4\x5c\xf6\x7a\x9a\x9e\x25\x6a\xb4\x85\x97\xb4\x7e\x19\x6e\xe0\x29\x3c\x8c\x48\xe9\xef\x30\x32\x98\x04\x05\xbf\x6d\x9f\x5d\xdc\x7c\x7d\xd9\x54\x22\xca\xec\xbd\x69\xa1\xc0\x32\x63\x89\xe1\xa7\xbb\xec\xf8\xe9\xf0\x0e\x12\x04\x1e\x71\x60\x26\x14\xb5\x43\xd9\xf4\x58\x96\xcd\xc0\x24\xe1\x8d\x87\x2e\x3f\xec\xb8\xda\xdb\x2b\xd5\x9d\x30\xa9\x37\xc4\x75\xc5\xf9\x6f\x75\x3f\x53\x4e\x16\x34\x33\x94\xca\xcc\xd3\x45\xa3\x5e\x15\x82\xb6\xed\x35\x8e\x67\xfb\xee\xc2\xd6\x83\x35\x37\x3a\xd2\xa9\x06\x98\x78\xbc\xb6\x75\xed\xb5\x11\x7f\xb6\x64\x64\x91\x97\x43\x72\x32\x17\xf7\x98\x96\x0e\x99\x14\x38\x93\x2e\xee\x89\x9a\x19\xfe\xee\x64\x31\x4f\xf2\xb1\xe2\x26\x11\x8d\x73\xe6\xd0\x12\x1c\xa6\x20\x59\xd4\x8b\x24\x55\x62\x83\xee\x8d\x44\x19\xb4\x41\xf8\x2d\x63\x2a\xcb\x39\x4e\xea\x86\x3c\x8e\x73\xc6\x28\xa1\xfc\xf6\xea\xc6\xf6\xe2\x53\x6d\xe5\xb1\xc9\x81\x38\x56\x98\xc2\x0f\x53\x78\x1d\xc1\xe3\x78\xf8\x10\xfd\x99\x38\x95\x82\xa6\xd9\x01\x34\x8e\x9b\x39\x65\x68\x9d\x79\x46\x9c\xc1\xa4\x32\x9b\xcb\x28\x1a\x91\x31\xfb\xdd\xff\xde\xff\xe9\x27\x2a\x54\xff\x57\xa2\xeb\x6f\xdf\x1f\x19\x19\x79\x1f\xa5\xa8\xf7\x1b\xf5\x72\x50\xc5\x8f\x45\x31\x96\x5f\x61\x7e\xf3\x23\x2a\xce\xe9\xf0\x21\xf8\xf5\x1e\xd1\x45\xc1\xcf\xf7\xda\xe5\x92\x74\x2c\x11\xc7\xc1\xfe\xc1\x38\xce\x24\xe5\x30\xb4\x98\x72\x61\x1c\xba\x91\xe5\xba\x62\x2f\x54\x8d\xf3\x60\x71\x2e\xfd\x8c\x44\x58\xe6\x35\x8c\x1b\x4e\x1a\xbb\xac\x5d\xe7\x19\xc6\x2f\x2d\xf2\x04\x20\xf6\xc7\xb0\xf8\xdf\x77\x56\xce\x18\xdf\x83\x93\x81\xf6\x61\x7d\xec\x92\x7e\xa4\x79\x78\x7a\x30\x3c\xd8\xa4\x1d\x82\x17\x7d\x22\x72\x1a\xd8\xf2\x46\x02\x3a\x39\xa0\x84\xd5\xf2\x68\x8e\x17\x0d\x7f\x8b\x35\xf2\x9c\xad\x45\x8f\x0a\xe9\xbd\x4b\x79\x16\x73\x89\x44\x8a\x4e\x05\xd7\x99\x34\x6b\xa0\x53\x9d\x8d\x19\x65\xad\x11\x2e\xd2\x48\x79\xd2\x37\xf7\xce\xe9\x0b\xce\x96\x75\x4e\x95\x75\x26\x15\x63\xe2\x8d\xc8\x0b\x78\x4f\x2c\x89\xa0\x05\xce\xed\x9d\x46\x09\x44\xcd\x34\x4a\xe0\x19\x5e\xdc\xb3\x19\x1d\x09\xa1\x22\x85\x4d\x48\xc8\x1f\x6c\x7e\x43\x16\xaf\x84\xb9\x56\xd0\x69\x5f\x86\xc5\xd0\xe9\x5c\xa4\x74\x1f\x8b\x36\x4b\x4a\xe3\x12\x8e\x89\x8a\x9e\x25\xf7\x21\x22\x2e\x2a\xfb\x85\x13\x79\x4d\x91\x9c\x08\x29\x2c\x15\x5e\x5f\x0f\x64\xf6\xdf\x84\x93\x23\xe7\xed\xb3\x78\xda\xa5\xb4\xe8\x3f\x7d\x00\xa8\xd3\x64\xc4\x42\xa2\x4a\xea\x6b\x1c\x4e\x1d\x14\xd9\xab\x64\xb3\x6f\x8a\x18\x6c\xf1\x2c\x93\x81\xee\x5a\x39\x1c\xe5\x10\x3b\x42\x1a\x87\xfb\x3d\x50\x79\x10\x4c\x84\xe8\xca\xb9\x0f\x8a\x45\xef\x18\xfd\xf4\xfe\x47\x30\x6a\x8a\xaf\x61\xde\x84\xf9\x3f\xc3\x06\x99\x54\x50\x93\x06\x20\xd0\x64\x54\x1d\xf5\xb8\x06\xe6\xbe\xe9\x33\xc5\x01\x53\xc7\x99\x32\x42\x75\x7d\x1d\xe5\x7f\x8d\x4a\x76\xa8\xd9\x31\x05\x5e\x99\xf0\x94\x7e\x49\xe8\xf1\xac\x96\x3a\xd2\xcc\x68\x39\x02\xd7\x9e\x87\xe2\xb7\x87\xc5\x04\xc0\x17\x36\x22\x72\x52\xb3\xc1\xb8\x01\x63\x9f\x04\x23\xc6\x2c\x1d\x5d\x1e\x23\xc2\xd1\x70\xa5\x4d\x58\x29\xf5\x84\x9e\x2e\x15\xe3\x29\xf5\x93\xca\xbd\xa2\x39\x31\xad\xdd\x33\x55\x79\x1c\xa1\x14\x44\xa4\x10\x8d\x6d\xf7\xdb\x5e\x0a\xbe\x9e\x03\x91\xf8\x30\x10\xbb\xbb\xaa\xaf\x58\x1a\x1c\xec\x1b\xa8\x87\x23\x11\x86\xa0\x35\xea\x05\xa4\xad\xf2\x81\x09\x79\x4f\x89\x6a\x68\x29\x81\x2d\xb1\xfd\x68\x51\x7c\x60\xd7\x2e\xc7\x1b\x8d\x4a\x80\x2e\xf9\x4e\x1a\x7c\x7c\xe4\x64\xe2\x8c\x76\x81\x6b\xae\xc8\x98\xa8\xa4\x18\x43\x30\xa2\xe1\x70\x24\x8f\x7f\x51\x9c\x5d\x24\x00\x08\x13\x13\x5c\xd9\xc4\x00\xca\xba\x58\x83\x97\x02\x64\x28\x10\x63\x65\x50\xc2\xc1\xa2\xd7\x19\x9b\x4c\x72\xc8\x52\x63\x86\x54\x51\x87\x2c\xc0\x65\xee\xb6\x63\x0a\xa2\xc3\x48\x80\x35\xf0\x12\x95\x98\x5e\x6a\x38\x00\xff\x22\xf4\x32\x26\xf1\x0b\xc4\xe3\xf7\x7f\xfa\x44\xfc\x22\x8f\x40\x91\x28\xc3\xcc\x2c\xb0\x2c\x67\xa4\x9c\x0f\xfb\x32\x9c\x10\x65\x31\xbb\x87\xd2\xdf\xce\xdb\x75\x89\xaa\xc5\xba\x3f\x18\xe7\x84\xd7\x28\x52\x63\xed\xe2\x88\x9e\x06\x12\x8a\x7c\x57\x30\x0d\x04\xe0\x98\xd6\x71\xf9\x1c\x69\x57\xe5\x67\xcb\x90\x29\x3f\xfa\x68\x07\x48\x79\xf9\x00\x84\x97\x9d\x6b\x17\x38\xf3\xe3\x4b\x03\x8f\x06\x7e\xd3\xbc\x30\xfb\x78\x6b\xe6\xc5\x5b\x6c\x62\x7f\x7a\xc6\xab\x6c\xb2\x62\xec\x0f\xc9\x20\x54\x74\x10\x15\x61\x2f\xb2\x8c\xb8\x34\x27\xb7\x91\xdd\x56\xf0\x0d\xda\xe1\x95\xc0\xa8\xd0\x07\x95\xb1\x0a\xd9\x64\xad\x91\x11\x75\x94\xf1\x0f\x64\x58\xcb\xd2\xc9\x09\x0c\xad\x35\x55\x66\x69\xf3\x59\x08\x71\x3b\x4e\xd0\xc5\x21\x1b\x48\xc6\x0e\xa9\x64\xbe\x52\x74\xee\xc6\xe3\x7e\xfd\x44\x31\x1c\xa9\x8a\xeb\xd1\x09\xae\x95\x30\x46\xea\xa8\xdf\xee\xde\x78\xb9\xfd\x66\x83\x18\x2a\x63\xed\xf9\x91\x15\xb1\xf0\x97\xf9\xb9\xbe\x64\xef\x96\x9f\x5c\x42\xa6\x01\xc8\x64\xcb\x93\xad\x90\x6d\xc5\x74\x47\x24\x32\xbc\xe5\x4e\x37\x5f\x3e\xfd\x5f\x63\x8f\xd2\xb6\x9d\x1b\x3f\x6e\xe0\x44\x28\x58\x51\x86\x5c\x66\x4f\xf1\x54\x00\xc9\xd8\xa1\x45\x99\x1a\x67\x65\xe7\xd6\xed\xd4\xa7\x77\x24\xf9\x91\x3a\x96\xa7\xdf\x93\x36\x39\x6d\xcd\x28\x4f\x50\x34\x6c\xad\x16\x4a\x8d\xb4\xcc\xc6\x2e\xc5\x77\x22\xf8\xa4\x81\x88\x4e\x38\xb9\xc0\x79\xdc\x61\x33\xd9\x27\x26\xaf\x4f\x9c\x0d\xd2\x39\x48\x72\x3f\xe7\xc5\x85\x28\xf3\x73\x89\xe0\x32\xb1\xc7\x59\xac\x65\xdd\xb4\x3d\xfb\x29\x3b\xcf\x9f\x0c\x3a\xfe\x4b\x58\x1f\xfa\xca\xc8\x83\x29\x16\x56\xe5\xc0\x34\x8b\x9c\x50\x31\xa5\xbe\x32\x82\xc4\xa6\xb7\x1f\x5d\x27\xef\xb2\x53\xc4\xf2\x9f\x32\x02\xaf\x10\x0e\x67\x2a\x90\xaf\xcc\xc9\xf6\x6e\xae\x06\x94\xcb\xb5\xed\x41\x65\xa5\x50\x2f\x41\xf1\xab\x63\x9d\xe9\xab\x76\xf2\x35\x61\xe2\xb4\x9e\xcc\xd4\x2f\x26\xd4\xc2\xbc\xf0\x18\xcb\x19\xec\x30\x08\x24\x6c\x78\xcc\xa1\xea\x9a\x9c\x56\xab\x27\xf1\xd5\xbe\x28\xac\x04\x68\x25\xda\x5e\x7c\xc6\x09\x17\xbb\x93\x37\x3a\x6f\x4e\x73\xba\xcf\x48\x67\xd2\xc4\x84\x48\x23\x94\xba\x1f\x35\x7c\x51\xce\xcc\x79\x27\xcb\x7a\xa7\x1c\x33\x3c\xfc\x11\xb6\x49\xbf\x65\x5e\x45\x3d\x0f\x44\xa2\x15\x14\x96\x9e\xdc\x53\x7c\x4f\xaf\x29\xf1\xbf\xb9\x71\x7d\xfb\xf1\x73\xd4\xf7\x82\xb8\x83\xca\xb5\xcb\xda\x92\x64\xbe\xa4\x68\x26\x0d\xa5\xdb\x96\x22\x20\x66\xdd\x14\xa8\xd8\x99\x7b\xfc\x54\x62\x48\x4c\xf6\x20\x54\xee\x32\x2a\x59\xba\x88\xac\x90\x58\x48\x20\xd0\xfb\xbd\x14\x45\xda\x09\x25\x01\x46\x46\x8a\x2c\x0a\x3b\x10\x52\x2a\xe1\x13\x42\x60\x52\xe3\xba\xd4\x66\xfe\x67\x84\x73\x19\xd9\x61\xff\xd1\x28\xae\xff\x13\xab\x6a\x8f\x7c\x5d\xaa\x4e\x7a\xe2\x2e\x55\xdc\x33\x83\xd7\x3f\x6e\xe8\x84\xad\x49\xe3\x32\x10\xb4\x57\xf3\xa6\x68\x2a\x74\x50\x99\xed\xf7\x66\xce\x14\x99\x47\x0c\x02\xc2\xe6\xcc\x5f\x66\xc2\xb4\xa7\xaf\x58\x6a\x45\xb3\xf6\x90\x42\xc9\xb5\xf1\x29\xa2\x94\x65\xd4\x53\xe1\xd2\x66\x2e\xcb\xec\xea\xf2\x19\x0d\x1d\x2e\x6d\x37\xfb\x07\xe3\xa3\xf9\x09\x98\x74\x9b\x4e\x76\x9c\xb4\x3b\x38\x24\x54\xe2\x19\x30\x75\x4d\x64\xcc\x43\xd1\x34\x27\x87\x67\x62\x02\xa6\x86\x37\x3d\x26\x3a\xcd\x9a\x61\x43\x65\x0e\x02\x65\x0d\x4f\x63\xc1\x31\x74\x6b\xea\x6c\x72\xfb\x4b\x9d\x95\x37\x42\x4f\x67\x69\x8e\x68\x54\xad\x49\xad\xdb\x49\x4f\x35\xb4\x7f\x9f\xb8\x22\x98\x87\x28\xb8\x39\x06\xdd\x72\x1d\x88\xeb\xc6\x34\x9b\x4f\x20\xca\x26\xf5\xd2\x49\x7e\x13\xdc\xad\x9c\xa8\xa3\xae\x71\x91\x8d\xd0\x06\x94\x16\x4a\x2e\xcb\x94\x11\xcb\xbc\xe1\x64\x21\xec\x93\x42\x80\x69\x4b\xae\xdf\x21\xd6\x4c\x7e\x67\x99\x57\xf9\x30\xca\xcf\xc0\xd3\xc0\x57\x4e\xfe\xaa\xbf\x8a\xbb\x97\x96\x8d\x24\x83\x25\xbe\x75\x79\x94\xc6\xc5\x68\xe4\x95\x45\x65\x8f\x91\xd3\x52\x67\xa3\x4f\x06\x03\x5e\x4f\xf4\x84\xaf\xdc\xe8\xcc\x5e\xe2\x86\x17\x77\x7c\x1f\x7a\xad\x8a\x14\xa2\xf2\x93\x3d\x6c\xfe\x86\xdc\x98\xc8\x34\x22\xb8\x5c\xc1\x99\xd8\x66\xe4\x94\xea\x99\xb7\xa5\xfb\xe4\x2c\x11\x31\x7e\x6f\x70\xc1\x89\x13\xdc\xcd\x1e\xc3\x9d\x12\xd7\x2f\x07\xc9\xec\x28\xb3\xe2\x19\x83\x34\xeb\xef\x7d\x94\xb0\xf1\x61\xfe\xad\x31\x42\xf9\x77\x86\x35\x67\x5a\xfa\x49\xca\x97\xff\xad\x7c\x12\xad\x8c\x41\xf3\x6b\x69\x62\xd0\xd6\x13\x92\xe9\x83\x36\xeb\xff\x02\xd4\x2e\x99\x23\x3b\x24\xac\x4c\xf2\x05\x5f\xce\x81\x96\x65\x95\xde\x1b\xf2\x65\xec\x68\x72\x2c\x32\x9a\x34\x35\x3c\x87\x1b\x27\x78\x05\xfe\x4c\xe7\x34\x4a\x32\x4c\xb6\x9b\xc4\x2f\xa4\x70\x2f\xa5\x86\x7c\xc9\x75\x81\xd0\x39\x9b\x97\x15\xd9\xe4\x15\x61\x3e\xcc\x54\x78\xc8\x47\xc0\x1c\x2c\x68\x06\x59\xcc\xdf\xb3\x09\x09\xd7\xda\x95\xeb\xe0\x6a\x32\x43\x0a\xf2\xcb\x2e\x5a\xf5\x85\x29\xb7\x45\x91\x53\xe0\x2b\xfa\x95\x36\x00\xc3\x24\x9e\xe8\x42\x49\xe8\x3a\xcf\xb9\xdd\x85\x59\x37\x75\xa9\x53\x32\x21\xa5\x5d\x60\x89\x1d\xe2\xa4\xd0\x5e\x21\x06\x68\x5a\x78\x0a\xa7\x44\x11\x27\x5e\xa2\x46\xfd\x16\xf0\xd8\x67\x38\xe7\x64\x77\x6c\x3e\x2d\x6b\x75\x72\x12\xca\x72\x21\x0c\x80\xe6\x98\xa6\xf6\xe0\x7c\x6d\x90\xba\x5d\x79\x7a\xb5\x4b\x4d\xe2\xa9\x36\x94\xed\xef\x75\xf7\x77\x9e\x8b\x91\x04\xa5\x64\xe5\x19\x1f\x5f\x8b\x58\x36\x97\xa5\x5a\xa6\x37\x99\xdc\xfb\x88\x4d\x4a\xfa\x4f\x19\x71\xea\x7a\x5a\x84\x33\x6b\xe8\xe2\xc1\xd4\x3d\x0f\x5d\xd1\x53\x23\x4d\xcb\xf2\xee\x43\x37\x77\xa6\x4b\x47\x35\x7f\x34\xd6\xb4\x2e\x42\x87\xf8\xb7\x92\x0e\x3a\xcb\x92\x9e\x66\x4d\xcf\x11\xa1\x33\x87\x91\x38\xf4\x5a\x9d\xde\xab\x59\xe2\xf4\x0b\xd3\x3a\x39\x01\xf2\x36\x7f\xf7\x73\xfa\xf4\x9e\xd9\x43\x35\xac\xb2\x59\xa2\x2a\xc2\xe7\x35\xe3\x97\x9a\xc9\x27\x99\x0a\x26\xed\xed\x05\xfa\x9b\x9e\x3d\x47\xdf\xf7\x26\x65\x8d\x53\xb1\x04\x69\xb9\xdb\xff\x42\x8b\xff\xd5\xfe\x7d\xea\xf5\x4c\xeb\xd5\x4c\x95\xba\x81\x1f\x86\x88\x72\xc6\xd3\xf7\xc2\x51\x5e\x24\xd6\x96\x99\xb3\x77\xc9\x91\xde\x88\x87\x31\xbc\x50\x48\x91\x9c\x89\x44\x64\x54\x1a\x52\x2a\x41\x4a\xdb\xdc\x5a\xa6\xfe\x1d\x8f\x5f\xe9\x46\x88\x9f\xd0\x15\xe0\x0c\xac\x09\x6b\x79\xf0\x31\xab\x2a\x76\x9c\x23\xdb\xfe\x24\x49\xd7\x2c\xb7\x3d\xc3\x74\xa2\xc1\x49\x0a\x82\x6b\xbe\xc4\x54\x28\x22\xee\x0d\x7f\x18\x53\x27\x0b\x00\xac\x49\x09\x25\xc9\xe7\xdb\x0b\x13\x66\x59\x58\x0b\xea\x62\xae\x2c\x36\x59\x0d\x47\x61\x25\x2b\x64\x63\x68\xd8\x83\xf3\x8c\xd1\x6c\x10\x89\xe5\x02\x8e\xe0\x7f\x95\xda\x7b\x1e\x1d\xb8\xc5\xf3\xc2\x29\x2f\xe2\xae\xd0\x13\x87\x45\xce\x2f\x2a\xd7\xe3\x57\xc6\x47\x5e\x0b\xf3\x8b\x4a\xc1\xf8\x2b\xab\xad\xb5\x3a\x56\x51\xeb\x11\xa5\xff\xc0\x04\xcc\xf6\x77\x91\x8e\xde\xfc\xb8\x7d\x77\xaa\x33\x39\x63\x57\xd3\xf7\x88\x35\x0c\x8a\xf1\xb1\x6b\xae\x4a\x42\x31\x61\x7f\xef\x95\x60\xd0\x9e\x85\x4e\x86\x6f\x7f\x17\xd9\x7b\x12\x53\x16\x7a\x4d\xfb\xbb\x7e\x3a\xb3\x73\x7a\xdc\x2c\x12\xb2\x99\x5d\x3b\x25\x68\xc6\xae\x20\xe2\x8d\xdc\x81\x6a\xfb\x35\xe0\x71\xc5\x2e\x15\x14\xc6\xc5\xa3\x48\xa1\x72\x56\x08\x70\x69\x6d\xbb\x3f\xad\x63\xda\x24\xc3\x10\xe4\x69\x25\x59\xa6\x1f\x71\xca\xd6\x66\xed\x90\xd4\x0a\x28\xbf\xa4\xb4\x9a\xfc\xe8\x2e\xbf\x4f\xf0\x80\x37\x4a\x7a\xc5\x7a\xa3\x2a\xde\x4f\x36\xcb\x31\x82\xa5\x9a\x17\x49\x1b\x43\x4a\x4b\x64\xe7\x7f\x3c\xe7\x64\x67\xf4\x3e\xc5\x67\xd9\x3c\xe3\xdd\x3c\x8e\x54\xea\x05\xd2\x50\xbd\xf4\x02\xad\xd4\x8a\xba\x8f\x04\x9f\xe2\xb8\x3f\xe8\x5e\x05\xeb\x53\xaa\x92\xcf\x88\xaf\xf5\x1c\x51\x0e\x6d\x06\xae\x97\x5a\x4a\x32\x3a\xc5\x61\xab\x44\x70\x7b\x00\x6e\xa4\xea\x36\xb4\x55\xc9\x0e\x93\x99\xe3\x76\xe7\xc0\x12\xfd\x93\x06\x1c\xd3\x82\x94\x4e\x26\x89\x3a\xd9\x54\x0c\x19\xa1\x45\x8e\x55\xd8\xe9\x03\x1a\xc0\xa5\xcc\x69\x59\x60\xb3\xfc\x9e\x77\x01\xbf\x27\x96\x52\xf7\x8c\x2f\xb2\x0f\x15\xf2\xa9\x0f\x2b\x13\xfb\x40\xf9\x79\x05\xa9\x7d\x49\xc4\xe9\x89\x69\xee\x21\xdd\xd8\x5c\xc2\x2c\x97\xde\x41\xea\x1a\x25\x2f\x72\x35\x01\xb3\x6b\x2f\xb5\x6f\xe3\x09\x86\x94\xc9\xd5\x83\x68\xb4\x5a\xc8\xd3\x0b\xdf\xd1\x30\xb9\x73\xbc\xd3\x07\x7f\x1d\xf2\x38\x33\x4b\xe9\xaf\x01\x39\x3d\xa0\xae\xd9\x31\x64\x9f\xb9\x60\xa4\x1d\x15\xd3\xfa\x79\x63\x62\xfb\xe9\xa3\xce\x77\xe7\x7f\xde\xb8\x4e\x8e\xbc\xe4\x62\x82\xe9\x68\x1f\x5c\x45\xfe\x03\x84\x03\x91\x8e\x16\x1b\xfc\xbc\x71\xae\xf7\x58\x52\xb1\x61\xa4\x06\xd6\x0b\xc9\xac\x71\x77\xfa\x06\x59\x83\x92\x89\x0f\x52\x7b\x31\xdc\x98\xd2\xf6\x90\x08\xf9\x37\x89\xb0\x71\xf0\xce\x5c\x30\x93\x55\xc2\xc4\x9d\xc7\x0d\x84\x28\x29\x13\x7a\xd9\xaa\xe5\x39\x62\xd5\x2e\x28\x0b\x43\x36\x26\xcc\x31\xf6\xd8\xef\xc9\xb1\x22\x6f\x2b\xc6\xaa\xb7\xbb\x1e\x74\x5a\x04\xab\xc1\x56\x50\xf2\x32\xe8\x3c\x2e\x91\x49\x9b\x5d\xaa\x99\x2d\x5f\xde\x5a\xd8\xe8\x8c\x5f\xe0\x44\xe3\x16\x31\x6d\xd4\xd1\x4f\x23\x3f\x14\xd6\xc3\x06\xc8\xd3\x81\x4e\xa4\xff\x91\xfc\x94\x56\x1f\x04\x65\xe0\x97\xf3\x0d\xca\xf8\x63\xe4\xde\x67\x87\xcb\x45\xb6\x0c\xed\x9c\x9d\x36\xdb\xc6\x61\xec\x97\x65\x4b\xb4\x95\x14\xc8\xd4\x96\x96\xff\x62\x4e\x41\xa2\xeb\x69\xc2\xe1\xd1\x04\x8c\x70\x20\xf6\x61\x7c\xc5\xdc\xce\xe9\x0b\xf4\xd8\xcf\x8c\xd3\xd8\x19\x40\x2d\xa4\x9c\x7f\xf9\x32\x2c\x4c\xa3\x96\x47\x3c\xe1\xba\xdc\x92\xb9\xf8\xdf\xb2\x07\x4b\xe7\xc6\xed\xee\xcc\xb3\x94\xfe\xe4\x98\x55\x4b\xd1\x0d\xcc\x00\x86\x9f\xd9\x0c\xe3\xdf\xdd\x26\x18\xef\x7d\xe5\x4d\xb2\x89\xc4\xef\x70\xe0\xd7\x92\xd8\xbd\xc4\x51\xb9\xa9\xd8\xa5\x16\xbb\x22\x46\x40\xf0\xb2\x50\x64\x42\x29\x15\x65\x1e\x53\xca\x63\x4e\x6e\x27\xbf\x10\x02\x39\x7e\xe5\x78\xbc\x32\xdd\x50\x02\x40\x56\x6b\x61\xd6\x46\x49\x25\xd1\x06\xbd\x23\x09\x85\x09\xc3\x91\x03\x2b\x1c\xf8\xf7\xa0\x80\x59\xb0\x34\x0c\x54\x80\x5d\x25\xb2\x3f\xcf\x89\xf8\xcc\x46\x03\x61\x18\x83\xb4\x0b\x2d\x81\x4d\x2f\x9c\x10\x6b\x40\x5a\x78\xe6\xcb\x98\x13\x7c\x2c\xf8\x35\x41\x3c\xf0\xf4\xa6\xae\x0a\x03\xd9\x6d\x59\x0c\x28\x99\x78\xad\x60\xfe\x44\x18\x54\xbd\x51\x88\x1b\x40\x6c\xc4\xc8\x8e\xf7\x63\xd6\xc5\xee\xfc\xe4\xce\xd8\x1d\x8a\x0b\x58\x4e\x1d\x47\xa2\x75\xd6\x58\x1c\x78\x16\x8c\x82\x5f\x18\x0e\x52\x86\x70\x14\xbf\xef\x61\x0c\x89\xf6\x6a\x10\x30\x02\x18\x87\x1e\x84\x03\xd1\x3a\xc4\xf4\x1e\x10\x1a\xdc\x06\x1a\x85\x13\x41\x8c\xe1\x78\xc3\x79\x72\x37\xd2\xf0\xf0\x15\x5d\x2d\xdb\x92\x18\x86\x2b\xb8\x84\x3e\x61\xb7\x2f\x66\x24\xdd\x99\x4b\xdd\x91\x70\xcb\x57\x82\xd8\x27\x27\x35\x05\xff\xa3\xa3\xe4\xdc\xf9\xd6\xf0\x36\xbf\xda\x79\x33\x6b\x71\xc6\x20\x01\xd7\xf3\x42\x60\x14\x94\x03\xf9\x64\x05\x83\xf5\xc6\xa6\x0c\xf9\x8b\xc6\x85\xc2\x2d\xb3\x20\x85\x51\x60\x89\x51\xce\x05\x72\x82\x74\xfb\x28\x69\x2b\xf8\xed\xdc\x15\xf2\x0e\xd2\xad\x28\x8f\x3d\xb4\xa2\x3b\x02\x98\x7e\x68\x02\xf5\xe5\x7b\x3c\xc9\xfb\x81\x69\xb6\x6c\xf0\xd1\x51\xcc\xdb\x7b\xad\xd5\x69\xde\xec\x3e\xbd\x97\x4a\x9a\x55\x83\x9a\x8f\x47\x7f\x0f\x2d\xe4\x90\xb8\xc1\xd6\x8d\x17\xec\x2a\x6c\xb7\x74\x56\x84\xa9\xe9\x47\x47\x99\x49\x93\x64\x54\x28\x2f\x38\xac\x4a\xe4\x77\x87\xdd\x4c\x8e\xb6\x3a\xaa\x8a\xd5\x5a\x64\x5a\x63\xa7\x5b\x6e\x44\x2f\x09\x09\xd3\x25\xdc\xb6\xdb\x8f\xa6\x93\x2c\xbc\x74\xb1\x10\x2d\xe8\xf9\x4f\x21\x3b\xf1\x27\xc9\xbf\x17\x5d\xa7\x73\xca\x66\x2b\xea\x50\x4e\x15\x99\xbd\x74\x8e\x1f\xc5\x8a\xd8\x10\x96\xc2\xae\xca\x42\x11\x76\x9f\x93\x8a\x1e\x87\xec\x71\x25\xcb\xbf\x4e\x74\x47\x02\x12\x7b\x6b\xb2\x1e\x86\x12\x88\x72\x21\xa5\x34\xb5\xb2\x99\x5a\xcd\xca\xe1\x50\x49\x08\x8b\x22\x99\xac\x29\x3f\x5f\x54\xd3\xce\x7a\xaa\x2b\xe5\xb9\x00\xf7\xb5\xaf\x9e\xe6\x71\x3d\xa9\xcc\x3c\xe1\xc0\xda\x58\xd3\x2d\x45\x79\x67\x11\xec\xa7\x01\x5c\x41\x2d\x15\x8d\x08\x84\x57\x29\x3d\x2f\x37\x3d\xed\x64\x58\x9b\x6c\xa5\xe8\x03\x85\x43\xf4\x07\xc1\x38\x9d\x3c\x07\xea\x64\x03\xf3\x12\xd1\x5e\xda\x41\x90\xec\x9a\xe9\x1d\xb8\x6f\xa9\xd9\xa0\x45\x72\xce\x04\xc6\x8d\x47\xae\x08\x4a\xaa\x6b\x41\x8f\x27\xf1\xa8\xd1\xff\x33\x0f\x8e\x9a\xc3\xf9\xbf\xff\xec\x28\xbf\x2f\xd8\x47\x01\x9d\x26\x01\x52\x3d\x27\xa8\x0f\xd5\xb7\x48\x09\x7d\x49\xf8\x90\xd1\xd7\x74\x17\x32\xa1\x8d\x25\xfa\xe1\xd2\x3d\x17\xc7\x89\xfe\xb9\x69\x56\x7e\x78\x67\x68\xfc\xa9\x97\x2b\x01\xd7\xa0\xfc\xb9\x40\xa1\xff\xcc\xff\xca\xcf\x98\x3a\x37\xa2\xdc\xb9\xea\x93\x93\x93\x95\x55\xc7\x82\xfc\x58\x53\xe1\x47\xfa\xd3\x66\xc0\x2d\xac\x74\x37\x8a\xd0\x99\x0f\x3f\x71\x35\x73\x3a\xfc\xc9\xcd\xf8\xc7\x5f\xf9\x21\xbb\x62\xee\x43\xfe\x57\x7e\x96\x0e\x82\x5f\xca\xd4\x72\xc6\x78\x09\x90\xcc\xba\xad\xb2\x68\x1b\x15\x0c\x4a\x4a\xd4\x93\x8b\x52\x23\x46\xb8\x68\x38\x44\xff\xcd\xf1\x1b\xcc\x76\xca\xaf\x35\xcc\xc2\xa7\x82\x34\xe5\xd7\x01\x72\x8e\x45\x38\xfa\xa5\x47\x13\xa6\xd1\xa3\x1f\xc7\xf5\xd2\x40\x23\xce\x7e\x0b\xb1\xf3\xfc\x76\x77\x6c\x3e\x59\xdf\x40\x5f\x56\x95\xa8\x51\x57\xb5\x9e\xce\x66\xd5\xa2\x17\xb8\x3e\x54\x0e\x9d\x76\x35\x4e\xbc\x27\x12\xcf\xca\xe7\x1d\x97\xe4\x03\xa9\x5c\xa7\x82\x34\x3a\x1f\xf9\xb9\xe3\x91\xf7\x41\xd1\xeb\xff\x40\x16\x44\x95\xb8\xc6\x09\xd0\xfb\x8f\x7f\xf1\x99\x97\xb1\x1e\x58\x8b\xb0\x4b\x95\x12\x28\xc6\x62\x42\xb3\x28\x76\x70\x2d\x5e\x39\x8c\xcb\x51\xee\x8b\x8f\xfb\xbd\xee\xf5\xd9\xce\xf4\x4f\x70\xc7\xa7\xbd\x88\x28\xd6\x0c\x4d\xa6\x20\xa1\x97\x0a\x02\x89\x9f\x7d\x70\xdc\x0c\x7b\x36\x56\x47\x00\x87\x1f\x98\x05\x6a\xa8\x44\x89\xd9\xf0\x3d\xdb\xc9\x99\xad\x6b\xeb\x3b\x53\x3f\x64\xf7\x12\x97\x6a\x42\xd4\x59\x35\x47\x8b\x5c\x01\xe3\x41\xbd\x73\x28\x6f\x4d\xb1\x2e\xea\xca\x54\x49\xe3\x77\xbb\x29\xcd\xe3\xa0\x6e\x7c\x85\x6c\xed\xfb\xa6\xb5\x3d\x59\xb7\xbc\x09\xc9\x1e\xa6\xb6\xe9\x8b\x93\x62\x66\xc2\x50\x77\xa2\x7a\xbb\xc9\xa8\x93\xe7\x03\x49\x46\x79\x35\xa8\xec\x8a\xc2\x0b\x96\xea\xed\xd1\x10\xcf\xa9\x96\xd1\x9e\x25\x35\x2f\xca\xba\x65\x69\x5e\x40\x88\xe1\x2c\xdd\x5c\xd7\xaf\xd5\x64\xcc\x41\xfa\x8b\x2a\xb4\x11\x8c\xca\x27\x83\x7a\x66\x5d\x3a\xe1\x17\x85\x12\x53\x58\xce\x8c\xa6\x14\x0a\x9a\xdd\x94\x63\x42\x45\xfd\x54\x22\x24\xca\xc2\xc1\x41\x10\xb8\x02\x4c\x28\x27\x32\x08\xcf\xe8\x9c\xdf\x32\xc0\x56\x43\x2a\x45\xb4\x7f\x51\x7b\x44\xca\x16\x7c\xc8\x78\x49\x5a\xb7\xc8\x36\x26\xb8\x48\xf7\xc1\x4f\x05\xa2\xde\x10\x6f\x63\x0b\x25\xac\x36\x46\x1a\x15\x68\x34\xb2\x82\x3b\x08\xba\x0a\xeb\x20\xcb\xcb\x7c\xfd\x09\x65\x33\x0f\x09\x7f\x7e\x47\xf6\x39\xb9\x96\x68\x9c\x2b\xe4\x39\x75\xb7\x6a\xbf\x73\xeb\x1a\x3e\xb6\x66\x87\xe0\x64\x81\x80\x19\xbb\xed\x79\xc6\x5e\x16\x00\xcf\x1d\x04\x25\xc1\x92\xd1\xb9\xaf\xa4\x25\x64\x56\x30\xbc\x82\x90\xa9\xa9\x62\xba\x44\xb1\x91\xf9\x45\x71\x11\x62\x89\x97\x80\xe4\xdb\x5d\x0c\x16\x07\xd4\x7e\x4d\x31\x3d\xba\xbb\x16\x6a\xbb\xb7\xa4\x2e\x71\x2f\x29\x5d\x62\x5d\xb6\xfa\xb3\x18\x64\xca\x90\xa2\xa8\xcc\xeb\xda\xdf\xff\xb1\x97\xb2\xb5\x74\x0d\xe9\xbd\xf5\x6e\x7b\x6c\x0a\x73\x57\x0e\xd5\x83\xa8\x3d\x76\x81\x63\x80\x49\x35\xab\xdb\x88\x25\xb0\x50\x2c\x3e\x9b\x60\xa2\x6f\xca\xa5\x38\xf8\x6d\x2a\x14\x49\xba\x9d\x33\x7e\x39\x15\x5b\x92\x68\xdb\xef\x46\x26\xde\x9b\x94\x9e\xb1\xf4\x5c\x12\xbf\xd0\xe1\x1e\x21\x49\xfd\x15\xdd\xcf\x3a\x31\x14\xff\xc6\xd5\x85\x3d\x0e\x6e\xd9\x38\xac\xca\x96\xe3\x37\x69\x81\x57\x55\x2c\x9c\x6d\xd8\x50\x03\xe7\xa4\x9c\x32\x49\x27\x47\xfb\x38\x8f\x95\x62\x3a\xfa\x66\xf7\xb9\x6e\x45\x93\x44\x83\x3d\x25\x9b\x14\xb3\x93\xc6\x7a\x51\x47\x3e\x0b\x4c\x1a\xa0\xf4\x27\x78\xe5\x83\xc4\xca\x07\xe4\x52\xf2\xdd\x5f\x73\xb0\x22\x78\x1b\xc3\xbc\xf2\x65\xb6\x58\xc9\x10\x2f\xc3\x91\x7b\x99\x81\x88\xec\x82\x68\x55\x74\x82\xc1\xd5\xd4\xa3\x20\xd6\xcf\xc0\x9a\x50\x9d\x97\x60\x7b\xc0\x46\x2a\xbb\xae\x33\xed\x13\x60\x99\x3c\x41\xec\x1c\x11\x38\x2d\x5d\xf5\x44\xa5\x6f\x1a\x41\x03\xfa\x0b\xaa\x43\xb0\x53\xff\x0d\x7f\x78\x1f\xd3\x0f\xbd\x25\x38\x9a\x9a\x34\x1f\x40\x58\x73\x22\x23\x82\x38\x8f\x77\x68\x5a\x8f\xcc\x7e\xa3\x13\xa5\x1a\x32\x28\x78\x81\xe0\xca\x00\x9f\x62\xee\xb8\xad\x9b\xcd\xad\x99\x87\xd6\x1a\x1a\x57\x98\x58\xc5\xc7\xa9\x57\x98\xa8\x2b\x19\x64\x7b\x95\xe6\xdc\x6a\x72\x2f\xc3\x41\x0b\x73\x7f\xfc\xf0\xe3\x4f\xcd\xf7\x23\x78\x3b\xbb\x4d\xd2\xc8\x86\x28\xca\xa0\x35\xa2\x34\x83\xb0\xb0\x91\x58\xcc\x8d\x6d\xbf\xce\x94\xb8\x46\x82\xe5\x17\xa5\xbc\x6b\xd5\xd1\xb7\xb7\x69\x02\x3d\x62\x8f\x17\xfd\x5a\x4c\x57\xb7\x55\x9d\x4d\xfd\x63\xa4\x3a\x66\x6e\xd6\x6a\xa5\xdf\x24\xb2\x9b\xf1\xc3\x44\xc9\x01\x55\xdd\x8a\xdd\xbf\x3d\x04\x46\xc5\x20\x5b\xec\xe9\xa5\xc6\xbe\x2e\x6b\x0a\x1e\xc0\x19\xbb\xac\x5f\xab\x87\x27\x4b\x1c\xbd\x67\xb5\x50\xea\x04\x7e\x60\x71\xcc\x9c\x81\x6c\xa3\x37\x91\x5b\x35\x05\x57\x70\x14\x4a\x81\x64\x88\x56\xa8\xab\xa7\x2c\x81\xb8\xa4\x03\x8f\x27\x57\xb7\x6a\xb6\xcd\xb7\xbb\x5d\xa6\x58\x40\x18\x2a\x28\xc4\x4a\x3d\xa6\xe7\x60\x54\x4e\xbc\x5c\x1a\x64\x5b\x4d\x0a\xae\x24\xcf\x33\xa3\x4e\x9d\x6a\x3e\x1c\xc7\xb5\x88\x73\x54\xd0\xd3\x42\x5e\x5b\xe4\xa2\xb0\xe7\x69\x42\xb7\xa6\xd0\x03\x74\xad\x44\xca\x72\x89\x55\x7e\x51\xdc\x41\xa3\xac\x23\x6e\x29\x51\xc9\xbc\xa4\x12\x57\xcb\x50\x5d\x51\xe1\x67\x74\xd0\xf5\x83\xe9\x59\x77\x0c\xf2\x35\x6a\x6d\x9f\xf2\x13\x3d\xce\x40\xb0\x0a\x73\x89\x92\xe1\x51\x57\xb8\xf2\xdb\xea\x2b\xd4\xe1\x5e\x3a\x0a\xff\xf3\x94\x97\x8b\x2e\xb4\xce\xbe\xfc\x18\xc1\x76\x2f\x36\xca\x82\x19\x7a\x4e\x7c\xdc\x43\xbe\x67\x8c\x96\xc2\xdb\xab\x73\xe3\xb6\xfe\x68\x26\x46\xb7\x0a\x82\x6f\x83\x42\x43\x99\xf2\x6c\x3d\xb2\x6e\x1c\x72\x6e\x2f\x2a\x95\xf6\x2b\xfd\xf0\xb2\xae\x69\x45\xd1\xa9\x51\x03\x7a\x63\xcc\x5c\xdb\x01\x24\xcd\x3e\xec\x5e\x6b\xa5\x77\x2f\xe0\xb3\xf2\xfd\x77\xfc\x94\x10\x79\xbf\x49\x77\x33\xfe\x09\xbb\x07\x69\x5f\x8a\x43\x9c\xac\xee\xb2\x68\xe6\xf7\xfc\xaf\x93\x8a\x65\x59\x6e\x8d\x5e\x7e\x0c\x6b\xb9\x4f\x6b\xe2\xb5\x7a\x59\x8d\x04\x26\xad\xdd\x75\x47\xb2\x37\x2f\x0d\x74\x46\x2c\x20\x8b\xf2\x55\xcf\xf7\xdd\x9c\x87\x8f\x0f\x46\x22\x1b\x4e\xf2\x81\x03\xf9\x6c\x0c\x83\xd1\xcd\x64\xae\xf3\xdf\x7e\x25\xdb\xda\x65\x87\xa2\x7a\x41\xa6\xe7\xb7\xb2\xf3\x5b\xde\xb4\x56\x3f\x3c\x5c\xce\xfb\xfe\x35\x7b\xb9\x99\xe3\x3c\xc4\xda\xac\x43\x38\xe2\x83\xd1\xbf\x28\xa0\x9c\x07\x79\x52\x7a\xad\x22\xb0\xaf\x79\xd4\x3a\x8d\xfc\x2f\x02\x87\xdc\x92\x76\xa8\xfb\x1a\x1f\x4d\x12\x29\xfb\xd2\x51\x49\xc9\x72\x10\x85\x32\x6b\xce\x25\x1b\xbd\x07\x25\xdc\x97\x32\x87\x9f\x39\x6d\x4a\xc0\x13\xfb\x43\xd9\xb8\xc5\x38\x1c\xf1\x14\x93\xb7\x07\x24\x7b\xce\x5b\x50\x89\xd5\xa4\x3c\xdb\xbf\xc9\xab\x27\x8c\x38\x66\xaf\x75\xce\xfb\x8d\x9a\xbb\xf1\x68\x11\xa7\xda\x46\x14\x73\x00\x0c\x53\x2d\xd8\x67\x71\x18\x96\x61\x97\xf9\x43\xe8\xa1\x0b\xf4\x84\x1e\x4c\x53\x01\x3d\xa8\xe4\xc5\xdd\x4d\x3f\xf7\xef\xfb\x75\x94\xfb\xb5\xb7\x35\x7f\x09\xb6\x1a\xfc\xa8\xc0\x8f\xce\xc4\x19\xfe\x31\x0c\x3f\xf8\x78\xf2\xef\x22\xfe\x9e\x7d\xc8\x3f\x46\xe0\xc7\xce\xd8\x73\x55\x08\x47\x1c\xbe\xb4\xc7\xff\xde\xbd\x39\xc1\x5f\x46\x11\xd6\xab\x17\xb2\x46\x14\x00\xb5\x2c\x52\xe6\x77\xd9\x5d\xa5\x54\x05\x6a\x40\x9f\xc8\x18\xbb\x4c\x5f\x87\xc3\x46\x9d\x13\xc4\xeb\xbe\x8b\xfe\x28\x7f\x12\xdd\x8f\x04\xc1\x09\xfa\x60\x0c\x01\x46\x10\x0f\x47\x9c\x80\x5e\x8d\x02\xd3\x3e\x73\x07\xaf\x5e\xd0\x87\xba\x3f\x92\x97\x43\x81\x71\xf0\x07\x39\x10\x18\x05\x61\xb0\x58\x0f\x6b\x98\x0a\xf7\x2b\xfd\xca\xa2\x7c\xe7\xe9\x18\x14\x79\x28\xe7\x46\x1e\xbd\xcd\x10\xd6\x3d\x7a\x1b\x0e\xd3\x90\x34\x6a\x18\xd4\xdf\x47\xa1\xd2\x94\xa9\xba\x54\xad\x35\x84\x40\x8b\xa9\x67\x0a\x3e\x26\x9e\xe1\x5a\x02\x46\x38\xc8\xc9\x4d\xe8\x6d\x12\xf1\xd4\x15\xac\x5f\x7e\x00\xae\x9b\x3f\xc0\x0f\x2f\x2a\xfd\x35\x78\xf7\x3f\xfe\x83\x6a\xc3\x9f\xff\xf9\x9f\xde\xf1\xdf\xbf\xe7\x05\xdf\x62\x86\xca\xc8\xab\xf8\xdf\x96\x2a\x8d\x8a\xac\x05\x3f\xff\x60\x55\xec\x43\x85\x33\x39\x6c\x93\xa9\x84\x3d\xb5\xa9\xeb\xfd\xfb\xfe\x77\x00\x00\x00\xff\xff\x23\x95\xe1\x2f\xd1\xb4\x00\x00") func confLocaleLocale_jaJpIniBytes() ([]byte, error) { return bindataRead( @@ -867,12 +867,12 @@ func confLocaleLocale_jaJpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 46232, mode: os.FileMode(493), modTime: time.Unix(1439590380, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 46289, mode: os.FileMode(493), modTime: time.Unix(1439758816, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_lvLvIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\xdd\x8e\x1c\x37\x96\x27\x7e\x6f\xc0\xef\x10\xf6\x1f\x82\x6d\x40\x4e\xc1\xdd\xf8\x2f\x16\x0d\xa5\xbc\xd5\x92\xc6\x96\x25\x95\x6a\x55\xb2\x80\x19\xc3\xc8\x66\x66\xb0\xb2\x58\x19\x5f\x1d\x8c\xa8\x72\xd5\xd5\xea\x66\x5e\x40\x2f\xd0\xde\xbe\x5b\x3d\x40\x5f\xac\xb7\xaf\xb2\xde\x6b\xcf\xef\x1c\x92\x41\x46\x44\x4a\xea\x99\xd9\xb9\x91\xb2\xf8\x79\x78\x78\x78\xbe\xc9\x50\x4d\xb3\xca\xb5\xdd\x2c\x5f\x1b\xbd\x2d\x4c\xd6\xdf\xd8\x6e\xff\x26\xdf\xbf\x29\x6d\xf6\x9d\xe9\x32\xab\xdb\x4b\x63\xed\xdd\x6c\xa7\x6c\xd6\xaa\x1d\xd5\xbe\xeb\x6c\x76\xa9\x8a\x9a\x1a\x65\xdf\xd5\x9f\x7e\xf2\xe9\x27\xe7\x75\xa9\x97\xa7\xfb\x37\xbb\xbe\xb4\x9f\x7e\x92\x2b\x7b\xbe\xae\x55\x9b\x2f\x9f\x54\x67\x75\xa3\x2a\x5d\x18\x2a\xd6\xbf\x34\x45\xdd\xea\xe5\x93\x9b\x66\xff\x16\xa3\x50\x3f\x5d\x34\xcb\x13\x55\xec\xdf\xe5\x37\xfb\x77\x6b\xf5\xe9\x27\xd6\x6c\xab\x95\xa9\x96\x27\x46\xfb\xc9\x8c\xa6\xce\xb6\xde\x18\x55\xac\x7c\xf5\x29\xfd\xb9\x7f\x53\x10\x00\x8d\xd1\x9d\x36\xbb\xdb\x5f\x55\xb5\x7f\x63\xff\x90\xfd\x6e\x91\xd9\x9a\xe6\xcb\xee\xdb\x52\x15\xc5\x03\xaa\xb7\xca\xf0\x40\xd9\xae\xae\xba\xfe\xfe\x3d\xa9\x70\x73\xd5\x7d\x47\x10\xa5\x73\xa1\xbc\x6f\x00\x03\x86\x96\xc2\x56\x6f\x69\x14\xdd\x2e\x5f\xea\xfd\x5f\xe9\x57\x4b\x6b\xe0\x8a\x2b\xbd\xb6\xa6\xd3\xcb\xe7\xfb\x37\x17\x84\xa2\x42\x35\xb4\x8c\x4b\xdd\x5a\x53\x57\xcb\xd7\xf8\xff\x82\x0a\x1a\xb5\xd5\xcb\x67\x5c\xd7\xe9\xb2\x29\x14\xf5\x38\x55\x5b\xd5\xa9\x4b\xfd\xe9\x27\x85\xaa\xb6\x3d\x5a\xbc\x06\x5a\x15\x50\xda\x13\xe2\x2b\x45\x68\x7d\x46\x50\xd4\xb4\x25\x17\x97\xfb\x37\x6d\x0e\x3c\x96\xca\x14\xcb\xc7\x5f\x37\xca\x76\x16\x23\x5b\x7b\x55\x13\xb2\x4f\x54\x5b\x17\x1a\x90\xae\xba\xeb\x46\xbb\xbf\x33\xd5\xed\xa8\x23\x0d\x61\x3e\xfd\x64\xa3\x9a\x6e\x73\xae\x96\x27\x54\xb2\x56\x3d\xed\x3b\xe1\x04\x63\xa2\x57\x53\xd3\x3a\xea\xf6\x9a\x56\xd8\xd4\x37\xf8\x69\x2e\xa8\xaa\x6e\xb7\xaa\x32\x37\xaa\xc3\x7a\x5e\xc8\x1f\xfb\x37\x1b\x5e\x55\x69\xda\xb6\x6e\x97\xa7\x4d\xbd\xed\x79\x8f\x2b\x7d\xb5\xc2\x48\xcb\x1f\x54\x5f\x11\xbd\x24\x23\xa1\xb2\x34\xdb\x16\x6b\x47\xbd\xca\xf0\x97\x1f\x0b\xb5\x67\x75\xbb\x73\x5d\x55\x97\x83\x2e\x3a\xda\xbb\x99\x61\x08\x28\x37\x44\x3d\x82\x48\x55\x84\x47\xae\xc7\x22\x89\x4c\x73\xec\x7c\xd2\x8a\xc6\x50\x79\x69\xaa\x15\x93\xe6\xf2\x08\xbf\xb3\x40\xa6\x6a\xb3\xa9\xfb\xaa\x5b\x59\xdd\x75\xa6\xda\xda\xe5\x53\xa2\x1a\x95\xd1\x5e\x77\x8a\x48\xe4\xa2\x2f\x09\x91\xa1\xf2\x49\x52\xcc\xc0\xd9\xd5\x99\xd6\x39\x83\xd7\x97\x7d\xd6\x14\xb7\xef\x88\xe2\x68\xa3\xfa\xa2\x20\xe4\xfc\xb9\xa7\x2e\xd4\xf1\x86\xb6\xf1\xf6\x5f\x7b\x10\x70\xd3\x2a\xeb\x87\xa0\xb3\x46\x0d\x96\x27\x6d\xbd\x2e\xf6\x6f\x4b\xc5\x9b\xb3\x51\xd5\x06\x90\x76\xf4\x6f\x87\x82\x9f\xac\x56\xed\xe6\xfc\x67\x40\x82\x1f\xcb\x53\xfe\x6f\xb1\x58\x4c\x76\x52\x7e\x0a\x41\x2d\x7f\xa4\x7f\xdc\x1c\xcb\x27\xf8\x97\xc6\xae\x73\xbd\x7c\x48\xff\xf0\xb8\xa6\xa2\xf5\x14\x05\x0d\xec\x7e\xd1\x19\xc6\xff\x1e\xbf\x9d\xe9\x0a\x9d\x94\x59\x3a\x6f\xfb\xdf\x0c\xad\xa3\x2d\x6b\xda\x2a\x73\x43\xbf\x55\x41\x8b\xfb\x7b\xdd\x01\x9a\x3f\xf7\x74\x3c\x56\xf9\x5a\xd8\xcc\x77\xf5\xd6\x66\xa6\xcd\x2a\x4d\x0b\xdf\x18\x4d\x07\xb7\x54\xd9\xf3\xeb\xd3\xff\xfe\xec\x6e\x76\x52\xdb\x6e\xdb\x6a\xfa\x4d\x0c\xc6\x64\xf4\x3f\x75\xfd\x7d\x96\xab\xae\xcf\xd6\xfb\x37\x37\x9a\x96\x47\x03\x09\x10\x8f\xe8\xf0\xac\x95\xd5\xd9\xa9\xdb\x0c\xa9\x03\xe9\x3f\x0a\x1d\x88\x53\x69\x03\x0a\x3f\xa7\xa1\x09\x1f\xb6\x6f\x2d\x0d\x57\xb7\xd6\x61\x24\x1c\xaf\xb9\xa3\x44\xe3\xf1\x19\x8c\xc7\xab\x6a\xab\x7a\xc7\xe8\xd6\x2b\x70\x30\x1a\xe5\x38\x5a\x0d\x2d\x8f\xf6\xb6\xa2\x51\x65\x59\xd9\x93\xe3\xe3\x17\x8f\xfe\x98\xe5\x37\xa6\x32\x99\x6a\x85\x8b\x12\xbf\x2b\x2f\x7a\x3a\x7e\x4d\x9f\xf5\xdd\xd9\x7f\x5d\x6d\x75\x45\x2c\xaf\x58\x6d\x0c\x2d\xd2\xda\x62\x55\x62\x63\x4e\x4f\x9f\x11\x4e\x6f\xff\x4e\xad\x19\xc0\xee\x7c\xf9\x50\xef\x7f\xbb\xfd\x95\xda\xfc\xb9\x00\x62\x1d\x04\x82\xab\x2c\x46\x96\xcd\xce\x88\x53\x28\x3a\x4a\xad\x72\xfc\x31\xbb\xa4\xe5\x2a\x9a\x40\xb7\xed\x8a\xf8\x50\x77\xbd\x72\xc3\xf0\xd0\x11\xc2\x05\xb5\x28\xcd\x88\xfa\x2a\x5a\xcc\x5a\x67\xdc\x63\x01\x42\xf1\xd0\xca\x56\xf0\xa6\x92\x98\x68\xe8\xc8\xed\xdf\x6d\x8d\x1e\x1d\x17\x08\x19\x46\xe4\x51\xd3\x14\x66\xc3\xbc\x24\x3b\xa6\x82\xa1\xca\xaf\xe3\xa4\xef\xb2\xeb\xba\x6f\xb3\x98\xef\x64\x68\x91\x9d\xeb\x96\xfe\xe9\xb7\xc4\xd3\xaa\x3c\x2b\xea\x3e\xff\x4c\xa8\x5d\x80\x8f\xd8\x56\x9f\x6d\x0b\x45\x38\xc0\xaa\x95\x5b\x74\xd4\xd4\xcf\xf5\xda\x58\xc3\x42\x4e\x75\x44\x01\x85\x21\x0c\x11\x4f\x8f\xd9\x8d\xc9\x3a\xb3\xb3\x6e\xb4\xce\x64\x34\xe0\x05\x09\x9d\xdc\xb4\x7a\xc7\x0d\xf6\x6f\x70\xe2\x7a\x92\x17\x20\x26\x12\x6d\xa6\x00\x57\x2d\x22\xaa\xf2\xb5\x7e\xd6\x40\x71\xaa\xc4\x41\xa0\x21\xd6\xb7\xc4\xa2\x9c\x08\x72\x20\x43\xb6\x90\x44\x24\x31\x1c\x83\xa3\x32\xab\x76\x15\x8d\x3f\x00\x40\xc7\xa4\xaf\x32\xde\x00\x3f\x12\x9f\x3e\x42\x7f\x99\xdd\xe8\x92\x40\xde\xbf\x1b\xe0\xc1\xde\xe7\x35\xb1\x9e\x6a\xf9\xa8\x2e\xf7\x6f\x2b\xeb\xff\xf6\xe0\xbd\xa2\xd9\x21\xf8\x76\x54\x9b\x9d\x9e\x7e\x9f\xed\x8a\xba\xda\xbf\x75\x70\xfd\xf8\xf2\x19\x8d\x70\xde\x75\xcd\xaa\xa9\xdb\x6e\xf9\xfd\xab\x57\x27\x19\x7e\xd9\xa8\x34\xec\x25\xfd\x56\x19\xb8\x60\x6b\x33\x12\xfa\x9b\x6c\xd7\xb7\x4a\x80\x21\xc2\x68\xda\x9a\x84\x41\x49\x93\x67\x04\x37\x66\x25\x02\x7a\x7b\x81\x13\x04\xa9\x4d\xec\x6f\x0b\x34\x2c\x84\x48\xfa\xb6\x70\xa8\x03\x02\x08\x8e\x50\x3c\x0b\x39\x00\xbb\x87\x7f\x4e\x27\x0b\x00\xc2\x34\x8b\x4f\xe0\xb3\xeb\x49\x04\xd1\x91\xb5\x84\x3a\x12\x15\x38\x24\xa4\x30\x74\x3c\x2f\x49\xbf\x06\xf4\x17\x08\xfd\x85\xfb\x33\xe2\x39\x2c\x8e\x5d\xf5\x63\x37\x6a\xa3\x76\xaa\x68\xb0\xc6\x89\xe0\x28\x09\x47\xcc\x8b\x4e\x9f\x13\xe6\xda\x84\x21\x71\xe5\x59\x5b\x97\xcb\x7f\xa2\x7f\xa2\xbf\xfd\x0a\x9f\xd3\x54\x19\x0a\x32\x95\xe7\xd4\x97\xd4\xb2\x97\xff\xf4\x30\xfb\xff\x7f\xff\x3b\x52\x7b\x9e\x74\x38\xa9\x38\xa6\x17\xbd\x25\x9a\xa6\x45\x02\xb4\xa1\x69\xdd\x66\xdd\xb9\xce\x3e\xc7\xc1\xfb\x3c\xbb\xcf\xb5\xff\x4d\xff\xa2\x48\x1d\xd1\x8b\x4d\x5d\x3e\xc8\x48\xfe\x96\xaa\x5b\x40\x8c\x9a\x82\x28\x96\x89\xfa\xd4\x23\x86\xc8\xcf\xa3\x4d\x61\x48\x1d\xda\x05\xc6\x19\xb7\x6d\x82\x3e\x22\x9a\xd3\x6a\x53\x57\x67\x24\x24\x20\x33\xb1\xcf\xc4\x52\xda\xa0\x4b\x79\xfe\xa4\x1a\xdb\x99\xa6\xc5\x51\x44\x51\x2f\x53\xac\x88\xff\x98\xb3\xeb\xa8\xa7\x0e\x98\xbe\x21\x29\x0a\x4c\xf7\x40\x20\x29\xab\x34\x11\xeb\xac\x1b\xed\x36\xe5\x94\x0b\x99\x67\xbc\xa0\xf5\xb7\xd9\xa9\x54\xdb\x68\x13\xeb\xb3\x33\x3a\xfe\x5a\x78\xee\xe3\x4a\xad\x49\x71\x7a\x21\x65\xd9\x73\x96\x8d\x71\x0b\x22\xf2\x86\xf4\xc3\x47\xc6\x72\xc3\x87\x8f\x8e\x33\x7d\xa9\xab\x0c\x6a\x44\x5b\xe7\xfd\x86\x79\x16\x5a\xde\xcd\x48\x84\x62\x97\x89\xa3\x6d\x74\x76\x46\xd8\xb2\xd9\x95\xa1\x32\xda\x26\x86\x16\x8c\x6c\x43\x8d\xc0\x56\x73\x19\x70\x25\x18\x6b\x45\xe5\xf2\xb3\x9c\xea\xe2\xec\xeb\xb8\x66\xbe\xfd\x08\x36\xec\x20\x4d\x34\xea\x4a\xb4\x50\x15\xd7\x19\x6b\x41\x4c\x34\x9b\x56\x93\x56\x96\x39\xdd\xc7\x2e\x9c\xdc\x26\x55\xd2\x69\xdc\x2b\xe2\xa1\x57\x1e\x33\x2f\xa5\x2e\x3b\xa5\xba\xec\x49\x95\x75\x75\x46\xd6\xc3\x55\x76\x42\xaa\x97\x9d\xef\xea\xc0\x7a\x81\x69\x51\x4e\xeb\xa6\xa9\x01\x9d\x65\x00\xd0\x26\x83\x92\x4c\x74\x4a\x82\x04\xec\xce\x21\x8a\x21\x25\x6c\xf1\xcc\x34\x93\xd5\x9a\x47\xa0\xfe\xf7\xfa\x46\xfa\x2c\xbc\x46\xe7\xf4\x32\x51\x35\xfe\xb9\xee\xb3\xbc\xce\x20\xbb\xce\x49\xcd\x46\x67\xbf\xce\xca\xad\xdd\x2d\x38\x6b\xcd\xf6\xbc\xa3\x96\x57\x77\x05\x63\x57\xe7\xb5\x06\xd1\x3c\x79\xb4\xfc\x46\xc0\xd8\x2a\x13\x75\xa2\xf3\x94\xa9\xbe\x23\xc6\xd9\x19\xbf\x7b\x02\x81\xd0\x9c\xe8\x94\xbb\x19\xcd\x51\x5a\xcd\x6b\xf6\x5e\x2b\x1d\x69\x21\xee\xdc\x0c\x15\x47\xfe\x90\xd0\x00\x72\xcc\xc2\xc0\x23\xe3\xc0\x29\x71\xab\x6d\x0d\x5d\x55\xb4\xb6\xb7\x1d\x8b\x0b\x18\x22\xb6\x5b\x6d\x4d\xb7\x82\x9a\x40\x1a\xeb\x53\xd2\x2b\xde\xe5\x74\xa6\x9c\x75\x40\x78\xfb\x82\xaa\xbf\xa0\x75\x90\x3e\x93\xf7\x7f\xc8\xee\x5c\x7a\xb5\xe3\xf7\x38\x92\x2b\x75\x09\x05\x83\x36\x66\xf9\x03\x31\xf0\x3e\xbb\x14\x73\x87\x94\x3b\xd5\xad\x55\x81\x03\xea\x54\x8a\xbb\x19\xa9\xc1\xf9\x4d\x9f\x15\xfa\xa2\x27\xee\x5e\xc0\xc6\x7c\x7b\x81\x05\xd4\x67\x86\x8d\xb9\x3a\x5b\xe3\xd8\xb7\xb5\x1b\xa6\xa7\xfd\xc8\xee\x10\x3d\x1c\x3f\x7e\xfd\xe4\x34\xdb\xd6\xeb\x9e\x84\xab\xaf\x5c\x60\x71\xa4\xde\x9b\x1c\xaa\xa5\xdb\xf7\x44\x51\x8b\xf0\x4e\x5a\x9b\xba\x04\xa6\x48\x3b\xb5\xb2\x0c\xdf\x79\x56\x7f\x98\xd1\x99\x44\x67\xdd\xd5\x90\xbb\x4a\x86\x08\x82\x1d\xa8\x20\x4a\x20\x35\x7c\x46\x01\x70\x53\xdf\xfe\x8a\xc9\x21\xde\x4c\x5c\x4b\x23\xd9\xec\xeb\x07\xf4\x2f\x61\x96\x88\x54\x98\xe4\xd6\x6f\xc9\x31\xf5\xc9\xf5\xa5\x08\x25\xa7\x85\x80\xac\xa8\x49\x2f\x96\x53\x9f\x2e\x27\x39\x06\xd4\x5d\x00\xb6\x8e\x72\x27\x04\x19\x90\x21\x64\x62\x7b\x26\x6d\x32\x54\x4d\x43\xba\x2a\x6f\x99\x2a\x3f\xcb\x9e\xef\xdf\x92\x4c\x6e\x49\xc5\x65\xb5\xc5\x68\xf6\x07\x64\x3f\xb0\xd4\xbe\xb9\xdc\xbf\x25\x7b\x96\x0a\x99\xae\xee\x42\x69\xdc\xbf\xdb\x29\xb2\x7d\x78\x9d\xcc\xc7\x3f\x63\xeb\x02\x7e\x02\x32\x2d\x7a\x51\xf8\x6a\xc2\x54\x3b\x3e\x05\xac\xf8\xeb\xb1\x71\xeb\x1b\xfb\x23\x61\xaf\x0c\xa1\x7b\x15\x3c\x0d\x40\x5b\xa7\x7f\xe9\x20\x21\x2b\x18\x7c\xc6\x79\x1e\xf6\xbf\x29\x5e\xb5\x26\xe5\x0a\xc2\xe4\x9a\x37\xdc\x52\x3b\x5a\x5f\xac\xe8\xe1\x98\x15\x84\xe0\x1a\x1c\xf2\x52\xbb\x66\xa7\x2a\x57\xed\x1a\xae\x09\x3b\x6a\x4d\x23\x91\x86\xca\x03\x51\xdd\xd8\xbe\xa4\x5a\xb1\x8d\xdd\x4c\x16\x16\x32\x59\x49\x8c\x05\xe7\x08\xf9\xd9\x99\x6a\x31\xe1\x49\x03\xe2\x2c\x30\xed\x84\x59\xad\x60\xef\x3a\x3e\x45\xf4\x05\x73\x86\x0e\xe6\x05\xac\x4b\x71\x68\x44\x12\xf6\x5c\x37\x10\xc7\xa5\x65\xeb\x18\x24\x8b\x16\xf6\xdb\xcc\xbb\x53\xb0\x49\x9d\xda\x2a\x68\xce\xce\xa5\xf2\xe1\xce\xa7\x8a\x3d\x28\x26\xf4\x4c\xe5\x0e\xe4\x3f\xa9\x24\x4d\x47\xf6\x29\x6d\x5e\x55\xe3\x54\xdf\x1d\x64\x3b\xe3\x04\xc3\xa9\xce\x49\x6f\xb5\xc8\x9e\x31\x37\xb8\x4b\x54\x7d\xc3\x6c\x0c\x80\x91\x69\x84\xa3\x06\xf5\x8e\xc9\x55\xc4\x55\xdd\xf6\x13\xd1\x08\x30\xc1\xe7\xde\x33\xa1\x1d\x74\x95\x54\xa5\x18\x83\x02\xf4\x95\xba\x5c\x63\x4c\xcd\x26\xb6\x73\xed\x64\xc4\xf4\x68\x3f\x48\x27\xda\xd2\xf9\x1e\x98\x2f\x59\x77\xa6\x25\x66\xe7\x19\x2f\x1a\xe8\x69\x03\xe3\x1a\x7c\x1b\x1c\x4a\xc4\x27\xae\x46\x96\xa2\xc3\xf0\xe0\x53\xba\x08\x3b\xb4\x08\x8c\x5f\xe4\x3a\xeb\x41\x56\x57\x9d\xc7\xb6\xf3\x93\x8c\x56\xe7\xd7\x2d\x46\x76\xed\xb4\x5a\x9b\xf5\x37\xd9\xfd\xf5\x83\x3b\xf6\xfe\xbd\xf5\x03\xcf\x8c\xef\x06\x56\x8f\x59\x89\xfd\xf4\x01\x69\x4c\x59\x59\xd7\xd3\xa1\xdc\x11\x17\xce\x33\x3a\x3e\x24\x02\x32\xb2\x2c\x76\xfb\x37\x77\xf1\x3f\xad\x6f\xad\xcd\x96\x9a\x8d\x31\x4f\x00\x12\x1b\xc1\xb6\x79\x15\x40\xfb\xed\xda\xbf\x6d\xbb\x99\x99\xe0\x76\xe1\x63\x07\xd3\x2f\x50\xfb\xd1\x8e\xca\xc0\x34\x5d\x97\x40\xee\x8c\x86\xc2\x94\xa6\x9b\x25\x3d\xe6\x4b\xb2\xf2\x0b\x30\x4c\xe5\xc6\x49\x08\xa3\xe7\xc5\xd3\xf2\x48\xec\x90\x81\x6d\x06\x9a\x24\x51\x9f\x43\x30\xfd\x3e\x23\x22\xa4\x51\x58\xbf\x38\x57\x76\xd5\x57\x6e\x47\x74\x2e\xf4\x77\x4a\xa7\x71\x67\x58\x48\xfd\x00\x29\xc3\x32\x22\xda\x91\x6e\xac\x31\x67\x5f\x86\x4d\xf8\x6a\x91\xfd\x00\x49\xa9\xc9\x04\xa1\xe5\xdd\xfe\xeb\xfe\x6d\x69\x0e\xef\x67\xcf\x8c\x71\x98\x25\xa6\xa2\xb0\xcd\xc2\x16\x86\xed\xa5\x0a\x6a\xc7\x8b\x01\x03\x12\x27\x2e\x89\xb6\x9a\x18\x27\x8c\x43\x5a\xfd\xc2\xe1\xd3\xad\xe8\x78\xe8\x71\xfb\xab\x36\x9d\xec\x34\x38\x3c\xc4\xd7\x30\x53\x7f\x00\xa9\xde\x1e\x62\xed\xc0\x32\x8b\xe9\xf4\xf2\xf6\x2f\x64\x83\x8e\x30\x01\xb1\xe8\x3d\xb3\x0a\x67\x5f\x54\x08\xde\x63\x50\x0e\x40\x42\xc3\xce\xa1\x7a\x06\xac\x08\x1a\x31\x36\x70\x66\xc9\x1c\x80\xc9\x4f\x12\xab\xeb\xd9\x9f\xed\x06\x0e\x00\xca\xa0\xc3\x71\xed\x80\xb4\xda\x91\x98\x3f\xd4\x5e\x9e\xb2\x77\x6c\x42\x5c\xfd\xcc\x36\xed\x08\xa9\x6c\xd0\xd3\xa1\xc8\x6f\x70\xa0\x48\x60\xed\xdf\x6d\x61\x03\x12\xc3\x2a\x09\xae\xdb\x5f\x79\x13\x15\x15\xd3\x19\xf7\x1b\x29\x5a\xc9\x62\x0c\x58\x70\x2d\xcd\xee\x88\x72\x50\x0f\x10\x87\x7e\x5d\x5d\xaf\xec\x39\x8c\xf3\x13\x87\x94\xad\x6a\x59\x07\xd2\x39\xcd\x4c\x52\x20\x63\x37\x41\xa9\x68\xf3\x76\x16\x03\x64\xff\x85\x8d\xdd\x9f\xc8\x64\x51\xf0\xfd\x5d\x6b\xbb\xfc\x67\xa8\xf2\x55\x4d\xf3\x93\x38\xab\x73\x98\x5f\xcf\xf9\x3f\x6e\x09\x4b\x91\x1a\xc2\x9f\x78\x3c\xab\xcb\x42\xa8\x71\x4d\xa2\x56\x45\xce\xb3\xc7\x91\xa6\x3a\x18\x94\x27\x63\xe5\xf7\xa5\x3e\xe4\xcc\x3e\x3d\xfd\xfe\x95\x18\x78\xa7\xdf\x83\xa1\xc3\x5f\xa0\x12\xff\xdc\xf7\x5d\xd7\xd8\x1f\xdb\x62\x29\x7e\x00\xf6\x19\x9c\xa8\xeb\xa2\x56\x39\x4a\x5f\x83\x19\x61\x7b\xb8\xe2\x95\x56\x25\x03\xfc\x94\xb5\xdd\x74\xa4\x23\x92\xc8\x5c\x49\x3f\x68\x25\x81\xea\xe3\x26\x10\x59\xb2\x28\xd1\xfe\xc7\xb6\xf2\x60\x18\x69\xf6\x9a\xff\x69\xbc\x21\x5d\xbf\xbb\xfd\xd5\x2e\xfe\x44\xcc\xb0\x68\xce\x15\x6b\x37\xa1\xad\x6f\x29\x0e\x0b\xe2\x88\x9d\xd9\x11\x1d\x14\xd0\xb5\xe0\x46\x56\xc5\x19\x69\x87\x6f\x69\xbe\x75\x4f\xab\x22\x8e\xb4\x31\xb4\xb3\xbd\x28\x54\x79\x5d\xf6\xf0\x38\x12\x31\x7c\xf9\xf5\xea\xab\xd1\x1c\xa4\x50\xfc\xfb\xe7\xb9\x3b\x9e\x84\x27\x6e\xfa\x6a\x47\xe7\xf9\x4f\x10\x05\x37\xc3\xca\x4b\x78\x28\x60\x02\x53\x21\xb1\x4f\xd4\xb3\xde\x1a\xb7\xb9\x50\x8c\x15\xb2\x06\x89\x52\xa1\x26\x5b\x53\xae\xeb\xa2\x17\x72\xde\xbf\xe1\x4e\xea\x97\xd9\x4e\x64\xb6\x0b\x79\x67\x44\x2f\x07\xfa\x0a\xa3\x0a\x7b\x41\xec\x48\x0e\xec\x98\x67\xa3\x2d\xbc\x4c\x71\x4b\xaf\x56\xc3\x1d\x86\xea\x6a\x47\xb2\xbd\x72\x4d\x8e\xf5\x0d\xf8\x02\x11\xd6\x4e\x2c\xaa\x3f\x84\xc8\x0b\xc9\xc2\x4d\xdd\xb6\x7a\xd3\x8d\x63\x30\x04\xb2\x55\xbb\x16\x4c\x5c\xb5\xec\x90\x7c\x8b\xf0\x56\xab\xa1\x81\xd7\x8b\xe8\x7c\x0f\xd6\x86\x3b\x14\x7d\x15\x9d\x0b\xd2\xee\x2f\x55\xce\x3e\x18\xc7\x14\x19\x60\x52\xac\x08\x24\xda\xed\x45\x1c\x5c\x5a\xad\xb5\x26\x93\x55\xed\x74\x35\xd1\xc3\xe1\x9a\x24\x35\x50\x99\x9b\xdb\x7f\xd5\xa5\xf3\x09\x90\xad\x34\xee\x97\x9c\xef\xc3\x7d\x49\x49\x9a\x74\x4d\xa2\x49\xd1\x61\x9a\xeb\xdf\xd1\xf1\x9c\x0c\x30\x3d\xaa\x73\x5d\x65\xa3\xb9\x1b\x2d\x3c\x1f\xf1\x1c\x6e\x4e\xfa\xde\x2e\xb8\xed\x15\x3b\xe0\xcf\x57\x3b\x7d\x1d\xf5\x3a\xe9\xd7\x85\xb1\x3b\x76\x52\x4d\x99\xcd\x64\x14\x4c\x6c\x8a\x42\x6f\xe1\x3b\xf4\xb0\x2f\xbf\x6b\xfb\x26\xe9\xc6\xc7\x8c\xed\x65\xb2\x54\xfa\xce\xc7\x58\xe5\x18\x2d\xa2\x9d\x0a\xdb\x3f\x50\xd0\x9c\xe5\x14\x6d\xb9\x08\x16\x76\xf6\x93\xfd\x43\x5d\xd0\x37\x32\x7a\xc5\x07\x11\x29\x82\x05\x54\x0a\xa7\x8c\xdf\xe5\xd1\x22\x5a\x6a\x67\xd9\x38\xd0\x3d\x08\xb0\xc9\x3c\x74\x26\x60\x1e\xff\x43\x13\xed\xdf\xc1\x58\xa6\xda\x5d\x4c\x4e\xef\x99\x24\x48\x72\x99\xe2\xc0\x0c\x22\xb6\xa7\x87\x23\x8c\xad\x1c\xb6\xf9\x7c\xe9\x5f\x48\x31\x81\xda\xf2\x26\x4f\x6d\x79\x4d\x86\x24\x74\x96\xb7\x0b\x44\x6d\x6d\x07\x23\x50\x96\xb9\x3c\x26\x9c\x47\x2e\xec\xaa\x66\x02\x94\x93\xf7\x6e\x5b\x3b\x2f\x0a\xed\xf0\xb0\xc2\x7e\x41\x96\x59\x5b\x42\xe3\x2f\xe7\xd4\xba\x16\x5e\x12\xa7\xd6\xd5\x49\x3f\x9c\x62\x8f\x00\x47\xab\xa9\x9a\x52\xa5\xd0\x78\x45\x1f\xa3\x09\x2a\x22\xa9\x09\x1f\x82\x65\xb3\x1c\x26\xd6\xa5\x6e\x49\xca\x87\x51\x8f\x0f\x0f\x74\x31\x19\xe8\x2e\x31\xf5\x4e\x62\x26\xb4\x12\x39\x81\xec\x2a\x00\xc6\x69\x81\x8e\xc3\xa6\x06\x48\xbc\x59\xac\x8d\x74\x35\x7c\x08\xec\xd5\x23\xb9\xeb\x7d\x21\x24\x7a\x69\xef\xcd\x19\x0c\x90\x8d\x78\x99\xbc\x73\x44\xbc\x18\x74\x6a\x3b\x3a\x72\xd8\x0e\x17\x84\x16\xc5\x0f\x0a\xb6\x93\x22\xd8\x0c\x95\xd2\xf2\x80\x55\x82\x94\xce\x6d\x66\x39\x8f\x41\xe0\xad\x46\x71\xbd\xfc\x06\x7a\x25\x13\x54\xc5\x51\x13\xa0\xa1\x1b\x6f\x8d\x80\x01\x8b\x81\xe3\xd4\xf3\x50\x8c\x9d\x06\x30\x43\xf2\x96\x60\x08\xf3\xa7\x93\x37\x74\x8a\xdc\xd4\x01\x8e\xdb\x5f\xeb\x64\x94\xde\x31\xda\x11\x1e\x58\xfd\x4e\x66\xc3\xda\xfe\x53\x51\x12\xef\x0d\x47\x15\x6e\xff\x52\xc3\x83\x1a\xef\x68\x9f\x5d\xd4\x64\xce\x5d\x20\xe8\xe5\xb8\x68\x0c\x64\x7c\x10\xef\x8e\xc0\xb8\xfd\xd5\xe8\x72\xa8\xc7\x1f\x03\x30\xa3\x69\x94\xc4\x84\xc5\xa0\xc2\xea\xfc\x1a\x18\xcc\x4e\xb1\x35\xbf\x6e\x55\xb5\x39\x8f\x78\xc1\x73\x52\x16\xf7\x7f\x83\x63\xf0\x46\xb5\x31\x23\x60\x75\x18\x4b\x82\xc7\xe6\x5c\x55\x5b\x0d\xb7\x28\x0d\x13\x7c\x51\x62\x58\xb4\xf5\x99\x04\x63\x21\xd9\x7b\xf1\x74\xec\xdf\x66\xdb\x56\x5a\x23\x00\x13\x06\xd8\x90\x7a\x54\x97\x1f\x35\x4e\xe4\xcc\xab\xe9\x0c\x5f\xd4\xa4\x46\xd5\x9c\x3f\x03\x9c\x01\x99\x36\x4a\x09\xa0\xd6\x23\x77\x13\xdb\xdd\xa6\xbb\x1e\xe4\x9b\xb3\xec\x08\x8f\x9d\x86\x77\xa3\x28\xea\x2b\xdd\xda\xe5\xa9\xde\x09\x72\xb1\x97\x0a\x2c\x98\x38\x0e\x04\x15\xdc\x25\x50\x5a\x6e\x08\xa1\xdb\x1b\x80\x6a\x7c\x3f\x38\x21\xd1\x0f\x48\x82\xc9\xb0\x60\x59\x06\xb1\x8b\xd0\x07\xa7\x23\x70\x68\xf7\x8b\x3b\xf6\x8b\x8c\x33\x3d\xa4\x66\x11\x37\x27\x5e\x40\x2c\xbf\x12\x9b\x92\xa1\x89\x7a\xba\xca\x30\x02\x2c\x39\xd7\x68\xe1\x32\x25\x24\xc8\x43\xdb\x23\xb8\xd3\x48\xae\xa0\xff\xe7\x02\xfe\x8e\xe9\xd9\xd4\xa6\xf0\xbe\x32\x9f\x76\x64\x34\x9b\xa9\x12\xd8\xf6\xf1\x6c\x3b\x44\x27\xf9\x10\xda\x91\x7a\xf3\xe9\x27\xb9\x2e\x34\x19\xc3\x8f\xe4\xc0\x38\x67\x46\x6f\xf2\x28\x22\x9c\x3d\x79\x04\xa0\x1b\xec\xc5\x66\x15\xe0\x95\xad\x81\xe7\xb8\x09\xa0\x4b\x9d\x44\x3a\x62\x0b\x37\xe8\x35\x90\x6c\xae\x23\x54\x44\x66\xca\x41\xc5\x19\x19\xd0\x74\xf6\xd8\xb5\x10\x87\xd3\xc4\x5b\xe0\x4d\x74\x33\x32\xd1\xc5\xac\x10\xe7\x28\x0e\x2c\x3c\x21\x1d\x7e\x6c\x14\x29\x34\x60\x4c\x65\x48\x88\x02\x03\x38\x43\xf6\x0b\x6b\x02\x27\xa6\xa8\x6c\xe6\xed\xc4\xd9\xf4\x29\x84\xc4\x38\xf8\x75\x34\x76\xc3\x13\xc2\x9a\x1c\x5e\x51\x8f\x1b\x7f\x38\xe4\xef\x7e\x5c\x1f\x5c\xda\x02\xba\x3f\x3d\xd4\xc4\x30\x0f\x24\xa8\x6d\x89\x94\x85\xc1\xbf\x8e\xfc\x0b\x77\x0e\xa7\x49\x58\x41\x27\x71\xcc\xc5\x4e\xda\xca\x8e\x8c\x75\x33\xc6\xbe\xef\x23\x1a\xc9\xe0\x36\x27\x15\xb0\x61\x77\xd1\xb7\x59\x1c\xc3\xe6\x94\x0a\xe5\xc3\xd1\xde\x79\x43\x3d\x36\xca\x0e\x7e\x0d\xef\x30\x81\x07\xdc\x54\xbd\x5e\xbe\xf2\xa3\xcd\xe4\x0d\x69\x11\xf1\x29\x7f\x19\xa2\xaa\x0c\xe0\x9b\x72\xc2\x65\xe6\x3b\x7a\x0f\x85\xef\x7f\x21\x3e\x8a\xda\x7b\x28\x24\x82\xef\x07\xeb\x03\xcb\x82\x5a\xc0\x41\x01\x04\x78\xc6\xfc\xaf\xae\xad\x73\x79\x3b\xe0\x38\xbc\xe0\x3c\xb2\xe2\xf5\x9e\x00\xe7\xb6\xdc\xf5\x38\x0d\x81\x12\xdf\x70\x6d\x8a\xdc\xa0\x19\x2c\x7f\xd2\x1c\x1d\xf8\xcc\x4f\x56\xa6\x44\xe2\xdd\x51\xbf\xbd\xfd\x75\x08\x4c\x71\xda\x19\xf4\x0e\x09\xdf\xc8\x4c\x50\x48\xaa\x7a\x84\x83\x21\x04\x36\x52\x94\xca\x84\x30\x1d\x10\x8b\x11\xb0\x07\xc8\x13\x6d\x35\x5b\xde\xb3\x14\xaa\x98\xb3\x39\xba\x0b\x3c\x2c\x9c\x04\xe7\x10\xaa\x8b\x3c\x8e\x25\x86\x00\x54\xd0\x7d\x25\x95\x2e\x34\x91\x7c\x3a\x5f\x35\x63\x6f\x3c\x71\xca\xb3\x0a\x5e\x2b\x15\x07\xb6\xc2\xb8\x8b\x09\x6c\x61\x99\xce\x62\x1d\xaf\x2c\xc8\x6a\xb5\xa0\x13\xb0\x55\x39\xab\x96\x74\x4a\x5a\x52\x9a\x1a\x89\x5d\x80\x07\xf1\x31\x70\x3c\xec\xa2\xf6\x7a\xb1\x2c\x98\x71\xc2\xa6\x9e\x1d\x59\x78\x36\xa4\x05\xba\xea\x38\x33\x50\x8f\x9b\x8a\xb5\xc8\x87\xf8\xa4\x35\x25\xfb\x88\xc7\xac\x35\xe5\xa5\xec\x6a\xae\x11\x3e\x4e\x94\x0c\xe2\xb9\x1b\xc3\x2c\x31\x57\x8e\x4b\xc2\x8c\xa7\x31\x55\x7b\x3d\x8c\x1d\x8a\x9c\x93\xdc\x67\x14\x76\xec\xba\x68\xa4\x59\xed\xa5\x87\x6b\x24\x32\x04\x41\xdf\x9c\x0f\x8b\x94\x7a\xa1\xef\xc3\x43\x09\xd4\x46\x5a\x8f\x5b\x06\xb7\x68\xa8\x5c\x25\x61\x07\xb8\xda\x97\x47\xb4\xe3\x57\x59\x5c\x4e\xfd\x38\xb9\xe4\x1c\x8a\x2b\xd9\xc8\x19\xda\x41\xed\x8b\x82\x0c\x4d\xa1\x91\x43\xb6\x39\xd7\x9b\x9d\xe4\x74\x99\x6a\x5d\xff\x92\x5d\x99\xee\xdc\x54\x9c\x8b\x52\xe9\x5f\x3a\x44\x17\xce\x6b\xa4\x08\x21\x40\x5f\x23\x1b\xa5\xd3\x5c\x9b\x4c\x28\x41\x05\x09\xf5\x7b\x48\xd3\xd3\x83\x45\xcf\xee\x55\x42\x6b\x8d\x5f\xba\x9c\x22\x47\x19\x41\xf0\xc7\xb4\x31\x52\x02\x30\x2f\x2c\xa2\x01\x79\xde\xec\x11\xc5\x81\x69\xe6\xf6\x2f\x86\x0d\x56\xab\xd8\x90\xb7\xa9\xd8\x24\x33\x2f\x4a\x48\x56\xac\xea\x46\xb3\x80\x44\x32\xde\x5b\xb0\x52\xe6\xfe\x77\x39\x67\xca\x4a\x4c\x03\x7e\x02\x12\xd1\xfb\x77\x20\x11\xe7\xa5\x70\x4c\xf8\xbe\xed\xda\xba\xda\x3e\x78\xad\x2e\x14\x92\xa9\xb7\x38\x9b\x21\xb1\xfa\xdb\xfb\xf7\x5c\x7d\x76\xd4\x90\x42\xd0\x05\x6b\x8b\xa8\x6b\x43\x2d\x7a\xa6\xb6\xfb\x2a\x3b\x6f\xf5\xd9\xf2\xf3\x3b\xf6\xf3\x07\xfb\xbf\x22\xc7\x0f\x2e\xc0\x04\x0f\xf7\xef\xa9\x07\x2c\xbf\xd0\xa1\xaa\x11\xd1\x21\x6d\x26\xe9\xc9\x01\x15\x38\xdf\x08\xfe\xae\xe6\x39\x2c\x0f\xd2\x84\xac\x56\x8c\xb2\x18\xe8\x37\x45\x6b\x6c\x51\x7e\xfa\x09\xdc\x30\x92\x3c\x38\xe7\xe3\x45\x2d\x07\x7f\x89\x4c\x4f\xe1\x4c\x19\x36\x6a\xe0\x3a\x61\xcb\x99\x46\x54\xb2\xa0\xcf\xc2\xd1\x02\x10\xf1\xc1\x8a\xd4\x68\x28\x1e\x6c\xee\x8b\x2b\x68\xff\x16\xc9\x0b\x3e\xdb\x35\x30\x02\x16\x0f\x41\xa1\x86\x3c\xa8\x10\x5a\x81\xd8\x1e\x54\x6a\x1b\x53\x9d\xa8\x95\x31\xcd\x45\xe4\x01\xc3\x4b\x14\xce\x5a\x22\x85\xfd\x90\x08\xef\x68\x4d\x9b\x4e\xbc\x4e\x22\xa1\xe0\xff\x43\xf6\x8c\xef\xe7\x15\x55\xd1\x1d\xa0\x10\x0e\xa3\x9b\x84\x2c\x53\xb2\xeb\x85\xec\xfa\x03\x64\xd7\x57\x6b\x53\x41\xfb\xf7\x63\xf9\xa2\x80\x71\xa7\x28\x43\x8a\x72\x88\x53\x4e\xa1\x0a\x1d\x6c\x7c\xf6\x24\x9f\x66\xd5\xd5\x70\xe9\x25\xb8\x20\xb3\xa3\x66\xe7\x09\xbb\x13\x76\xfb\xdf\xfa\x4b\x0e\x8f\x16\x75\x05\x5c\x48\x12\xaa\x0b\x91\x4b\xf7\xfd\xff\xf4\x44\x2b\x2c\x50\xda\x92\x59\x87\x5a\x2b\x68\x7b\x85\x32\x07\x52\x7f\xb3\xff\xeb\xfe\xad\x74\x81\xb1\xcb\xc2\x47\xe4\x0e\x71\x23\xbf\xb3\x2e\xde\xc9\x20\xdc\x22\xdc\xc4\xf9\x96\x47\x27\x4f\x16\x22\x43\x79\x74\x27\x33\x48\x20\x22\x48\xca\xfb\x40\x66\x28\x03\x80\x1f\x8c\xfd\x02\x12\xd6\xaf\x24\xdd\x00\x07\xa3\x90\x3a\x83\x98\x84\x4b\xc2\x5a\xc7\xeb\xf4\x2b\x4c\x1b\xc8\x4e\x90\xb5\x27\x51\xe2\x31\xf6\xec\x84\x2d\x02\x11\x6e\x48\xfb\x59\x76\x32\xf1\xa1\x51\x6b\x76\x61\x74\x48\xa8\xda\xd5\xd0\x72\x0c\x15\xd3\x21\xa0\x12\xb6\x1d\x88\x27\x70\x38\xb5\xd2\x49\x36\x27\xcc\x6b\x44\xbc\xba\xe1\xa0\xc9\x12\xfc\x51\x8b\x0b\xc7\xfa\x90\x27\x00\x30\x90\x0f\xaf\xc1\x1b\xf2\xb4\x80\x63\x4d\x96\x4c\x89\xac\x05\x50\x34\x6c\x93\xc4\x63\x50\xc3\xd2\x58\x8b\x9d\x03\xbb\x1a\xe3\x8f\xd3\x52\xa9\x4c\xce\xcd\x40\x08\x17\x22\x33\x1c\xc4\x3e\x4c\xed\x0c\xba\x38\x44\xed\x5a\xb8\xe0\x34\xfb\x5f\x7c\x22\x09\x53\x01\xab\x03\x1e\x5e\x3a\x57\xb1\x2e\x7f\x97\x39\xab\x04\x09\xc5\xe5\xe2\x79\xfb\xf1\xe3\xa3\x57\xdf\xbd\x7c\xf2\xf8\x5f\x1e\x1f\x3f\x39\x7d\x7a\x14\x78\xfa\x67\x43\x8e\xd8\x08\xb4\xa3\x28\x16\x9d\x61\x32\x97\x54\x99\x36\x73\x49\x6b\x72\xd1\xc1\xb7\x52\x93\x56\x83\x7c\x0b\x67\x5a\x78\xc3\xb6\x35\xfa\x46\x57\x64\x69\x9a\xcc\xed\xc0\x61\x13\x87\x8d\x72\x38\x24\xc8\x20\x17\xc7\xe9\xfe\x7f\x05\x77\x53\x14\x63\x38\x18\x38\x1c\xa2\x10\x3e\xa1\x5a\xad\x39\x97\xe7\xa6\x76\xc9\xdf\xbe\x31\x9b\x78\x84\x5d\xe2\x7f\xb8\xd3\x64\x1c\x4f\xbb\x94\x9b\x4e\x2a\x4a\xf5\x20\x5d\xcd\x23\xb9\xaf\xa0\xc2\x15\x26\x60\x97\xb6\x1c\x67\x99\x74\x72\x70\xf5\x97\x1c\x90\x91\xcb\x4a\x5c\x8c\x52\x0f\x09\x23\x27\xbe\xad\x22\xbb\xd7\x20\xc3\x92\xc4\x87\x5d\x7e\x4e\x54\xa7\x8b\x8c\xff\xfd\xba\x45\xf2\xa7\xfc\x52\xb9\xe9\x49\x70\x92\x52\x48\xa4\xd8\x91\x74\x44\x9f\x07\xec\x04\xd9\x89\x0f\xef\xc8\xdd\x87\x89\x87\xef\x5d\x03\x4e\x19\x0e\x0d\xaa\xda\x15\x4f\xc0\xf3\x4d\x54\x9a\x54\x5e\x8e\x9d\xc5\x91\x1f\x2f\x84\xa0\xa0\x23\x38\xdc\x33\x1d\x1c\x35\xa2\xdf\xb8\x32\xdc\x60\x0a\xb7\x97\x42\x49\xb0\x10\xd9\x88\x73\x3a\xc7\x62\x6b\x3a\xb3\xad\xea\x56\xb3\x85\x45\xa3\x16\x66\x43\xcc\x19\x56\x36\xfd\xbf\xd1\xa1\x60\xb6\x7b\x21\x8d\xac\xef\x4c\x2c\xaa\x23\x14\xa9\xbc\xc4\xbd\x14\x03\xe9\x28\x29\x23\xf0\x41\xc4\xc8\x82\x26\xf6\xf2\xf1\xd1\xa3\xe7\x8f\x17\x65\xee\x7b\xbb\x1c\x2b\x46\x71\x48\xae\x4a\x51\x9c\xeb\x33\xd5\x17\xde\x25\xb8\x3c\xae\x77\x45\x6f\x09\x53\x88\x1c\x8b\x37\xd0\x5f\x84\x22\x5b\xa9\xd3\x90\x5e\x72\x23\x6a\xff\x5b\xed\x72\x03\xa4\x9c\xa8\xca\x66\x5f\x72\x22\x0d\xf1\x96\xaf\x0e\xf8\xc4\x86\x3b\x3b\xd9\xbf\xcd\x35\x36\x1e\xe0\x43\x1e\xb2\x4a\xc3\x24\xee\xbb\xf3\x24\x37\x49\x71\x7e\x6b\x1b\xdf\xf5\xda\x8a\x78\x41\x38\xfe\x79\xb8\xb8\x15\x2e\xd8\xc4\xf5\x87\xcf\x03\x8b\x86\x83\x27\x62\x5d\xf4\x7a\x74\x24\x3c\x26\xa3\x43\xe1\x67\xe2\x4d\x63\x48\xde\x8e\xf7\xcc\x35\x59\x6c\x48\x4e\x10\x03\x93\x0c\xf8\xe5\x43\xfc\x95\x1d\xc9\x5f\x43\x23\x1f\x47\xe1\x44\x6c\xc9\x05\x7d\x22\x45\x92\x9b\xcd\xb7\x60\xc8\xee\x24\x0e\x5a\x6b\xc1\x1f\xfb\x84\x91\x50\xcf\xc8\xe4\xeb\x18\x1b\x60\x7c\xe1\x36\x75\x47\x28\xe5\x53\x29\xbf\x39\x67\x3f\x3a\xac\x2b\x64\x64\x73\x7e\xb2\xbb\x5b\x83\x9a\x6c\xb8\xb8\x05\x6b\x89\xf6\x08\x54\x7d\x9d\x81\x49\xe6\xcc\xe2\x9b\xeb\x55\x61\xaa\x1d\x31\x6a\xdc\xa0\xa4\x12\x3a\x0b\x3b\x12\x9c\x2b\x54\xb9\x52\x38\x86\xe0\x9e\x6d\x0a\x92\x79\xfd\x25\xe7\x35\x22\x7f\x44\xaa\x25\x01\x0e\x86\xea\xae\x27\x35\x71\x90\x9d\x18\x0c\xa8\x9a\xb9\xcf\x94\x18\x12\x2c\x9b\x44\x9e\x46\xd7\x2a\xbe\x25\xab\xa2\xd4\xbb\xc2\x65\xf4\x92\x31\x20\x6e\xf4\xe5\xe7\xab\x35\xf1\x81\xdd\xe7\x91\x71\x10\x5d\xf7\x64\x53\x02\xfe\xc1\xcf\xa0\x40\x5e\x71\x4c\xfb\x58\xc3\xa2\xc0\xcd\x31\xf9\xfb\xb5\xfb\xab\x47\x8a\x2a\xb2\x61\x24\xaa\x96\xf8\x9a\xb9\x66\x30\x1f\x46\x7e\xe8\x76\x17\x18\x1f\xeb\xde\x95\xe3\x60\xd0\xcf\x95\x70\x31\x22\xef\x3f\xf7\xc0\xe5\xb6\x37\xb9\x26\x81\x64\xd5\x60\x1a\x29\x8f\x1b\xb2\x5a\xad\x10\xdd\x53\x5e\xfa\x94\xc5\x24\x39\x9b\xcc\x05\xc9\x9e\x45\xd4\x6f\x9c\xb8\x99\xf0\x25\x09\x0c\x92\x90\xce\xd9\x1b\xd0\x23\xeb\x03\xf4\x25\x73\x1d\x87\xe4\x2e\x73\xe3\xb3\x9b\xaa\x3a\xea\x84\xe4\x2b\x17\x8b\xb8\x00\xc3\x19\x31\x77\x2c\xd9\xb1\xae\x23\xc7\xad\xba\x56\x43\xda\x43\xdc\xba\x38\x07\x0d\xb5\x22\xdd\xd7\x4a\x13\xbe\x52\x44\x7f\x1a\x5f\xaf\x7d\x05\xe2\x23\xd4\xea\x15\xd7\xcd\x5c\x55\xe4\xb3\x8b\xfc\x61\xfc\x87\x13\x56\x68\xb2\x00\xc9\x0a\xa2\x73\xea\x7f\x82\x22\xcb\xd2\x74\x88\x44\x5c\xee\xdf\xdd\x88\x73\xbc\xd5\xec\x2d\xe0\xdc\xe3\x9c\xf6\x11\x5b\x07\xff\x6d\xab\x90\x33\x89\x74\x2b\x0e\x86\xbe\xc1\x1e\x72\x05\x6d\x06\xdf\x71\x7c\xcd\x99\x5e\xad\x76\xc5\x7c\xd9\x00\x9d\x5e\xba\xd8\x69\x15\x77\xee\x5d\x2b\xa2\xf1\x52\xf1\x59\x3a\xf1\xbf\xd8\xa5\x26\x80\x2d\xe6\x00\xf4\x75\xee\xc2\xe5\x73\x26\x77\xf0\x9d\x69\x93\x33\x58\x47\xae\xc1\x50\x0a\x16\x5b\xb7\x92\x41\x14\x35\x2e\x89\x17\xc1\x03\xf9\x2f\xce\xf1\x1e\x55\xc1\x51\xc8\x29\xed\x71\xa1\x24\x42\xbf\x46\x2a\xf6\xce\x0c\xc5\x44\x71\x54\xfc\x03\xbb\x40\x76\x9c\x46\x2c\xdb\x83\x0a\x42\xe0\x55\xe6\xae\x7b\x0e\xa5\x2b\xde\x2c\xae\xe3\xfd\x9a\xd6\xad\x9a\x42\x6d\xb4\xcf\xd3\x66\x3e\x0d\x89\xc2\xb7\x4c\x5d\xdb\xba\xe1\x64\x8c\xf5\xf2\x4e\x9e\xbd\xa0\xdf\xa1\x82\x8e\x0c\x09\x70\x57\xf3\x10\x7f\xe4\xa1\x8e\xb6\x00\x29\xbc\x32\x7f\x3a\x77\x5c\x45\x52\x0d\x8c\x12\xae\xc7\x63\xdc\xfb\xc0\x2f\xaf\x32\x8d\x3b\x04\x4a\x1b\x08\x6d\xdc\x84\xa4\x0d\x2e\x9e\xe8\xe5\x91\xfb\x31\x6e\xc0\x92\xed\x15\xfd\x33\x57\xb1\x40\x7e\xbc\xa3\xf8\xa3\xa2\xc8\xe4\xe7\x7c\x4b\x19\x1f\x99\x78\xc8\x67\xf5\xf3\xe5\x30\x24\xe8\xef\xd9\x3e\xc2\x37\xf2\xd5\xfa\x9a\xbb\x3c\x94\x3f\xb3\xf5\xf5\xc1\x1e\x25\x62\x9a\x64\x5a\x92\x96\x85\x1e\xcf\xc3\x9f\x49\x0f\xec\x0f\x0f\xbb\x94\x5f\xd9\x9d\x9f\xbe\xf9\xd9\x62\xdc\xe0\xb1\xb9\x77\xe7\xa7\xdf\xfd\x4c\x8c\x99\xff\x03\x4b\x0e\x9d\x1b\x22\x6e\x53\xf7\x38\xe2\xf2\x83\x6f\xf8\x44\x74\xf2\x0b\xed\x0c\x3c\x78\x49\xb1\xec\x9d\x98\x14\x03\xd1\x8c\xaa\x37\x75\x51\x7b\x9a\xe2\xdf\x93\x7a\x98\x2f\x77\xdc\x6e\xdb\x51\x2d\x53\x9d\xdb\x0c\x6a\x83\x3f\xc7\x1b\x22\x0d\x75\x6e\xba\xe5\x63\xfa\x67\x54\xee\x43\x71\xfc\xdf\xa8\xce\x25\x3b\x0a\x6c\x9c\xf2\xe8\x22\x7c\x73\x63\x20\x48\x25\x2d\x1f\xb9\x3f\x0f\xb4\x12\x99\x23\x13\xca\xa2\xe4\x5e\x51\xab\xcb\xfa\x52\x93\x72\x61\xf9\xce\x82\xf7\x76\xe2\x9a\x11\xd7\x16\x4c\x07\x6e\xc8\xec\x11\x53\x50\x76\xa5\xc4\xd9\xea\x63\x3e\xdf\x1e\x9a\x74\xb8\xd0\x81\x09\x83\xb3\x56\x96\x9f\x67\xae\x1a\xb1\xb9\x6b\xbe\xa1\x71\xe0\x5e\xbb\x2f\x5e\xc8\x75\x48\xbb\x7c\xd1\xb8\x98\x66\xa8\x89\x6e\x4f\x10\x4a\x86\x7b\x13\x51\x93\xf3\x9a\x44\xce\xf2\x15\x52\x9b\x76\xb8\x97\xb1\x7f\xb3\xff\x5b\x3c\x38\xd9\x05\xd2\x04\x57\x72\xc7\x95\xb9\x6e\x8a\xfa\x5a\x7c\xb4\x24\x4c\x39\xbc\x96\x44\x68\x7d\xc3\xb5\xb2\x66\x33\xdc\xde\x3f\x51\x25\x5b\xa0\x73\xab\xc9\x11\xa4\x68\x57\x37\x60\x1b\x7f\x64\xef\x16\x72\x1c\xe8\xcf\x18\x6a\x8e\x4e\xbe\x70\x77\x94\xa8\xba\x8c\x03\x95\xa1\x95\x8b\xea\x84\x69\xc3\x3d\x94\x61\xe6\x3e\x41\x97\x04\x48\x20\xa9\xd9\xd8\x75\xed\xed\x81\x3c\xab\xc3\x3d\x85\xae\xe6\x6d\xe5\xff\xb0\xa8\x63\x70\x58\xb3\x3b\x7b\xac\xf5\x2c\x22\xe8\x3a\xd2\x17\xec\x99\x1e\x92\x16\xa2\x34\x90\x99\x66\x02\xbd\x6f\xcb\x57\x95\x0f\x64\xa2\xf4\x50\x6c\x37\xa6\xeb\x87\x2c\x0f\x89\x41\x27\xf9\x2f\xe2\x2d\x1f\xf2\xe4\x93\x7b\x24\xca\xdf\xaa\xb6\x31\xc4\xfc\x9c\x04\xe7\xa9\x21\x61\xc7\x8a\x2d\xe6\x5e\xb0\x50\x30\x8e\xa3\x84\xb4\x92\xd3\xfc\x68\xdc\xc4\xa6\x61\x94\x90\x7e\x31\x38\x1e\x12\x94\xa4\x61\xff\xa9\xca\x38\x6a\xe8\x18\x05\x7b\x61\x46\xb6\x28\xbb\x31\xf8\x82\xbf\x78\xdb\xec\xd8\xd7\x56\x22\x40\xbc\x25\x75\xd1\xe7\x95\x05\x67\x8e\x4d\x32\xad\xb0\xb3\x2e\x5d\xb0\x83\x92\xcf\x01\xfc\x81\x30\xea\x4c\x3c\x76\x73\x1b\xcb\x57\x71\x89\x69\x2c\xef\x37\x0f\xbe\x16\xf7\xf0\x0d\xd2\xc1\xc4\x77\xec\x7d\x74\x26\xd5\x41\xef\x12\xde\xc4\xf5\x6e\xe2\xf4\x37\xde\x22\xd2\x95\xcc\xa5\xc9\x7b\xb6\x8e\x87\x0c\x9f\xc5\xfd\x7b\xcd\x83\x61\x0e\x1f\xfb\x9c\xce\xf2\xde\x49\xb4\x91\x49\xd2\xe4\x27\xd2\x6e\x79\x50\x97\x93\x85\xd4\x22\xd2\xa8\xf9\xea\xf7\x00\x9c\xd1\x25\xc3\x70\xf8\x90\x07\xee\x9a\x9c\xbe\x5a\x58\xe3\xa1\xec\x02\x65\x67\xb1\x2a\x9e\xb0\x1f\xa6\x28\x8a\x1a\x97\x6a\x47\x1a\xd5\xe8\x80\xcd\x0d\x26\xbe\xdf\x3c\x85\x6b\x84\xf6\xb9\xe8\x6b\x02\x5a\xea\x51\x3c\xe8\x49\x0c\xed\x11\x31\x19\x84\x40\xdd\x4e\xa2\x91\x6c\xf6\x89\x26\x3e\x66\x07\xe3\xbe\x83\x1b\x98\xbd\xd7\xa3\x9e\x3e\x92\x21\xa3\x27\x40\x8b\x34\x9d\x1f\xeb\xd9\x78\x14\x76\x1f\xbb\x34\xcd\x64\x14\x4e\x03\x35\x9c\xbd\xb7\x92\xab\x61\xd1\x33\x21\x13\x72\x1a\x32\xf7\xc0\x2a\x2b\x7d\x89\x0c\x46\x18\xc8\x03\x88\x6c\x35\x8f\x57\xb1\x18\x21\xe0\x4a\xaf\x21\xfe\x22\xbc\x75\x07\x45\x25\xcb\x49\x17\xcd\x48\x1b\x65\xc8\x23\xbe\xf0\x89\x3c\x90\xa3\x72\xab\xac\x74\x2f\x39\xe1\x17\x72\x2c\x69\x7c\x79\xdb\xa8\x14\x77\x40\x5d\xd2\x4f\xb7\x84\x9a\x43\x4a\xc3\xeb\x4f\xfb\x37\x8b\xec\xa9\xca\x59\x98\xf1\x11\xe4\x05\xe5\xd6\x39\x12\x4a\x5e\x3a\x51\x5f\xe9\x66\xa3\xc5\x4a\x47\xbe\x5a\xe1\xfc\xc4\xc3\x55\xb4\x93\x17\xa7\xaf\x92\x67\x6f\x48\xb1\x79\x86\x77\x2c\x6e\x38\x6f\x9e\x58\x3c\x15\xef\x38\x7e\x38\x44\x2a\xdf\xeb\x53\x48\x71\x40\xe6\x75\x4d\xeb\x80\x87\x8a\x64\xff\xfe\x8d\x8b\x35\x4e\xf4\x0c\xf7\x20\x8d\x53\x36\x7a\xb9\x7b\x25\x86\x22\xe7\x9f\x02\x03\x0b\xe1\x14\x12\x11\x02\x4d\x41\xe9\xc0\xd5\x66\xc4\xe7\x32\xa4\x45\x8a\x27\xd1\xfa\x80\x2f\x14\x08\xbe\x58\xe5\x6e\x4e\x01\xc9\xfc\xc8\x0f\xe9\x0e\xdb\x1a\x12\x34\xdc\x28\x9d\x81\x89\x15\x56\x97\xd3\xe5\x36\xd4\x65\xa0\xec\x08\x77\x97\x88\x50\x01\x99\x3e\xda\xc7\x41\x91\x12\x11\x58\xa6\xb0\x28\x62\xb5\xc8\x8e\x3a\x00\x73\x51\xcb\xea\xdc\x4b\x17\xbd\x5c\x32\x81\x24\x51\xd6\x8f\xe5\xb2\x7f\x66\xe1\x61\xe5\x64\xff\x3f\x30\xc0\x9c\x32\xe2\x9b\xf9\x08\xac\xb4\xb4\x2e\x0e\x3b\x66\x9c\xae\x35\xb4\xd1\x7a\xaa\xe1\xb9\xb3\xcb\xe3\xf9\x33\x3b\x22\xee\xf7\x9c\xd9\xe8\x04\x09\xfe\x7e\xbc\x19\x12\xa8\xeb\x59\x3a\xbc\x8f\xcb\x5d\x0f\x40\x8d\xf7\xef\xf1\xcf\x94\x28\x33\x39\x25\x20\x70\x49\x18\x23\x81\x10\x53\xc3\x90\x9e\xcd\xb1\x1a\x7e\x77\x07\x0a\x3c\x28\x98\x63\x38\xf9\x20\xac\x83\x6c\xc5\x45\x3f\xf8\xaf\xbe\xfc\xe1\xf4\xc5\xf1\x5d\x07\xc2\x2f\x5f\x5f\x5d\x5d\x7d\x8d\xbe\x5f\xf7\x6d\xa1\x2b\x14\xe6\x1e\xa6\xfb\xba\x7c\xd0\x77\x1d\xc9\x22\xfa\xf1\x15\x99\x00\xba\x73\x1e\x6e\xa6\x3e\x31\x1a\x5c\xfe\x2c\xc4\xe9\xa0\x0a\xf8\xf3\xf4\x1f\x79\x76\x1a\xb9\x3e\xc5\xaf\xb1\xa4\xf7\xa7\x62\xc1\x01\x5a\x10\x73\x9a\x43\xf2\x50\xbc\x9a\x98\x1e\xac\x26\x7b\x17\x56\x3d\xd4\xf7\x26\x25\x29\xbc\xa4\xe1\x8e\xc0\x53\xa7\x54\xf1\x1e\xc0\x69\x76\xd3\x17\x88\xa1\x83\xd4\xf9\x58\x99\x1b\x90\x24\x42\x51\x6e\x11\xb8\x3f\xc0\x84\xf2\xed\x64\x44\xf6\xab\xe1\x31\x89\xe5\x2b\xbe\xd1\x64\xfc\x03\x5c\x9e\x22\x9c\x9e\xe4\xa6\xc3\x6e\xc7\xe4\xc5\xd7\x53\x71\x23\x15\xc7\x70\x52\x11\x9e\xa0\x49\x48\xcc\xa4\xf4\x03\x2e\x99\xa3\xd6\x31\x19\x4e\x5b\xb6\x0e\xe0\x31\x2d\x27\xc7\x40\xc4\x60\x37\x7b\x18\xe6\x52\x5b\x52\x69\x26\x87\xcf\x8b\x97\xe7\x21\xb4\x73\x48\xb8\xb8\x0e\xef\x3d\x88\xdd\xe1\xec\x34\x3b\x55\x7e\xc3\xe4\x4e\x09\x3e\x3c\x77\xab\x37\xb2\xfd\x85\xc1\x3d\x04\xb8\x17\x25\xd9\xc2\x45\x80\xb7\x84\x39\x6d\x47\x92\x50\x48\x4d\x78\x8f\x8b\x46\x24\xb8\xb4\x85\xda\xec\x56\x03\x6b\x38\x79\xe2\x25\x6c\x92\xb6\x72\x8a\x66\xec\x93\x46\xbc\xc6\x05\x38\x7a\x17\x9a\x8d\xf4\x59\x7e\xf3\x69\xa0\x65\x1e\x5c\x42\xda\x92\x59\x30\xa9\x1c\x3f\xb8\x34\xaa\x86\x45\x87\x87\xe8\x9e\x22\xcf\xb5\x60\x1f\x75\x6e\xce\xce\x16\xeb\xb6\xbe\xb2\x48\x12\xc1\xdb\x31\x9c\x18\x51\xdc\xbe\xdb\xd5\x70\x04\xeb\x0b\xb9\x71\xda\xbb\xa6\x48\xc7\x23\xf6\x7b\xc9\x5e\x41\xeb\x0a\xc5\x35\xb8\x0c\x1e\x4a\x57\x8c\xc7\xbd\x46\xaf\x77\x9c\x8a\x4f\x3e\xba\xcd\xca\x09\xb2\x7c\x8b\xc8\x68\x8d\x27\x1f\x16\xae\xb7\x3d\xaf\xaf\x56\xf8\xb5\x82\x61\x6b\x83\x9b\xd5\x4e\x86\x40\x3d\x02\xf0\x3b\x0f\x24\x77\x90\x1d\xf0\xc1\xd6\x3b\xb9\x37\x4f\x5d\xbe\xe5\x10\x76\x05\xfb\x8d\x9a\x35\x0a\x2f\x6b\x60\xf8\x0b\x3e\x9c\x43\xbb\x28\x76\x4b\xed\xbc\x6a\x4a\xfc\x2b\x34\xf1\xf8\xa4\x3d\xf8\xe3\x93\x63\xf7\x17\x3b\x8a\x25\xbd\x5a\x79\x46\xee\x82\x82\xc1\x1b\xbd\x98\xf1\x4a\xfb\x2a\x71\xf1\xf3\x6f\xaf\xa6\x4a\x9b\xc1\x99\xbd\xc8\x5b\x75\xd6\x2d\x9f\xeb\xa2\x1a\x82\xa5\x52\xd3\xb4\xda\x77\x66\x4b\xcd\xdc\xa0\x37\x3f\x57\xe7\x5e\x8c\xf4\x2d\x09\x6b\xbc\x45\xf4\x1f\xed\xd6\x50\xce\xae\x2d\xd6\x48\x86\x32\x75\xae\x55\x1e\x21\x77\x40\xd2\xe0\xa6\x96\x98\xa5\xdc\x8a\xdc\xd5\xcd\xed\xaf\xee\x85\x30\x01\x3e\x9e\x98\xe9\x4e\x6e\x40\x3f\x09\x14\x17\xad\xa1\x53\x5b\x9f\xad\xb2\x1d\x45\xe8\x7d\x03\x16\x3a\x72\x75\xc2\x8c\x7a\x86\xf7\xde\x90\xea\xce\x0a\xc8\x5d\xf7\x96\x88\xd3\xf8\xb4\xad\x49\x53\x71\x17\x5e\x38\x7a\xc2\xc1\x25\x9f\xd7\xb3\xed\x17\x93\x7d\x0a\x5e\x47\x59\x0b\xd9\x76\xad\x1d\x63\xde\x8b\x27\x64\x21\xae\xca\xdc\x25\x8d\x31\xb5\xc5\xcc\xe0\xb9\x6a\x77\x39\x59\x65\xe2\x10\xf5\x9d\xaf\x5a\x78\x83\x5e\xba\xd7\x42\x93\xed\xe4\x07\x92\x4e\x88\x65\xe1\x12\xef\x8e\x33\x38\x45\x8f\x98\x4e\x1d\xbb\xd5\x7f\xbc\x71\x0f\x73\x70\xbe\x67\xde\xfb\x90\x54\x3f\x74\x83\xc0\xe5\xd7\x5c\x44\x2f\x97\x1c\x65\xed\xde\x7a\x1c\x93\x93\xcf\xd2\xa0\x2d\x65\x2b\x89\x68\xab\x08\xe8\x18\xd3\x56\xd4\x2d\x15\x60\xee\x40\x48\xde\x0f\x4b\x29\x4f\xdc\xcc\x14\xf8\xdd\x52\x3b\x3c\xef\x02\x4f\x02\x1e\xbe\xda\x89\x3d\xe4\x1e\x2c\x94\xb7\xf1\xfc\x54\x7c\x15\xe1\x3c\xec\x77\xe7\x47\x8c\x16\xca\x0f\xe0\xc8\x99\x19\x92\xb8\x4b\x7f\x7a\xfa\x94\xf6\xc3\xe1\x13\x6d\x72\x3a\x9a\x27\xcf\x95\x0b\xa4\xba\x8b\x3c\xcf\xfc\x42\x06\xb7\x4d\x17\xd3\x2f\xe7\x91\x66\xd1\x35\xbf\x4f\x3f\xf9\x89\xec\xbd\x9f\xa3\x2b\xac\x6e\xeb\x0e\x5d\x5f\x8d\x5b\x46\x19\x2a\x89\xa3\x6a\x9a\xa3\xc2\x31\x37\x64\xa9\xdc\x3d\x98\xa6\xe2\x6e\x77\x49\xee\xab\x1b\x9a\xd4\xdc\x91\x35\xea\xdf\x8b\x60\x75\xd7\x69\x22\xca\x7b\xf5\xa2\x1c\x65\x49\x51\x8e\x1e\x32\x00\x63\x5d\x84\x10\x26\xae\xae\x85\xa8\x65\x02\xbb\x4b\xf0\x10\x35\xc1\x3f\xa0\xc0\x9a\x26\xee\xa5\xe8\xba\x01\x4f\xe5\xcc\x2d\xc5\x4f\x50\x5d\xe2\x7d\x49\x5b\x97\x1a\x7e\xd6\x1f\x6f\x94\xd9\x88\x5a\xca\xf4\x2e\x37\x7b\x6d\xb8\xca\x8b\xcb\x1f\x57\xfc\x16\x0b\xec\x6e\xbb\xe4\xc0\xed\x9a\x1d\x32\xbe\x2a\xb9\xcd\x34\x7a\xc3\x67\x08\xbf\x62\xd8\xe9\x7b\x39\xfc\x90\x95\xa0\x71\x94\xc6\x32\x5c\xd2\x9d\x7b\x00\x80\x6b\x0f\xf5\x18\xd2\x1d\xea\x88\x8c\xc8\x4a\x80\x37\x75\x92\x43\x58\x1a\xc4\x8e\x03\x30\x30\x1c\x11\xb4\x0b\x97\x9c\x31\x8b\x1f\x31\x80\xa2\xd2\x59\x11\xbf\x34\xd6\x86\xb8\xc2\x53\x79\xb2\x39\x7e\x36\x92\xce\xa5\xf1\x77\x4e\xf9\x81\x45\x9a\xd2\xbd\x10\xf9\xed\x81\xd4\x93\x17\x93\x27\x37\xff\xe1\xe4\x93\xe9\x10\x1f\x4a\x3f\xf9\xb7\x87\x1c\xe6\xaf\x14\xdd\x25\xbb\xc7\x5f\x2e\x0a\x4d\x67\x6f\x19\x85\xda\xf7\x5d\x37\xfa\xf7\x7a\xf8\x89\xd2\x52\x07\x7f\x7d\x90\x6b\x1c\xe8\x2a\x3b\x7c\xf0\xae\xfc\x47\xf8\xf8\xd5\xc4\xc5\x7f\xe8\x4a\xd1\xdc\x85\xd2\x03\x18\x08\xa6\xc1\x08\xb2\x38\xd6\x72\xd8\x48\x30\x87\x3d\xe4\x23\x5e\x33\x36\x25\x46\x59\x97\x13\x88\xa7\x3d\x3e\x90\x85\x19\x72\x30\x27\x43\xfd\x9b\x32\x31\x0f\x38\x50\x3f\x98\x92\x39\x86\x1a\x2c\xca\x3d\x3a\x9a\x22\x38\x4a\xd0\x9c\xeb\x33\xc8\xff\xd4\xe9\xed\x2e\x65\x8f\x72\x4f\x71\x13\xf0\x70\xa6\xe6\x9c\xbf\xf1\x90\x7b\xd2\x5f\x18\x8c\xed\x5b\x8f\x2e\xe7\x77\x8c\x79\x75\xac\xc1\xbb\x57\x75\x63\x78\x59\x77\xf8\xf4\x13\x27\x05\x44\x7b\xd8\xf8\x8b\x90\x76\x5c\xe1\xd9\x65\xa3\x24\x70\x81\x6b\x33\x97\x92\xee\x11\x1a\x52\x09\xd2\x29\x7c\x8a\xe5\xa4\x66\x3a\x86\x4c\x16\x8d\x31\x93\xae\xea\xab\x9c\x9b\xf8\x8f\xf0\x04\x9b\xa1\x98\x68\x60\xa3\x55\xe1\x3d\x1d\xdd\x50\x23\xde\x2e\x9f\xcf\x34\x94\x93\xee\x72\xc9\x57\x1d\x3a\xbe\xc1\xe7\x8b\x9d\x14\xe5\x1d\x38\x05\x86\x74\x78\x31\xb8\x1b\xa2\x26\xcc\xf7\x7a\x91\x34\x7d\x10\xb4\xbd\x93\x7e\xec\xa6\xee\x47\x68\x26\x33\xe0\x0f\x93\x69\xf0\x50\x59\x24\xa8\x39\x2b\x9e\x2f\x47\x43\x54\x2f\x70\xc7\x78\x20\x03\x7e\x04\x5f\x2a\x46\xb0\x4b\x21\x74\x2f\x97\xe2\x4f\x7a\x90\x0d\x7e\x96\x90\xce\x3d\xd3\x70\x24\xfe\xbc\x28\x75\x6a\xb5\x4b\xd8\xdd\x85\x24\x2c\x1c\xde\x11\x5b\x8d\xc3\x66\x5e\xb2\x5a\x51\xdf\x3d\x30\x2f\x93\x07\x97\x27\xe0\xc4\x6d\xff\x11\x78\x22\xa6\x51\xcd\xa4\x6e\x7d\x08\x5a\xf1\x3b\x09\x08\xf2\x98\xa3\x03\xf7\x28\x0d\x65\x4e\xe0\x8d\x1b\x0f\x0a\x09\x41\xb1\x4b\x81\x96\xe4\x3d\x78\xc3\xee\xe1\x45\xfa\xe1\x59\x0a\x8e\x7f\xa5\x90\xc4\x0c\x90\x03\x07\xe1\xec\x23\x12\x3b\x09\xcc\x44\x98\xf6\x49\x76\x4f\xbd\x02\x52\x25\xd9\x76\xd2\xe8\x80\xe8\x97\x4a\x3e\x6c\x76\xa2\xe9\x0c\xa7\xef\xc0\xa5\x8a\x8f\xe4\x39\xb4\x61\xd3\x40\x8e\xef\x3b\x1f\x36\xc6\xad\xa5\x21\x27\x5c\xa0\xf4\x6a\x6a\x50\xd4\xd6\x8e\x03\x48\xf5\x58\x69\x18\xcc\x9a\x91\xda\x20\xcd\xfd\x55\x08\xa8\xae\xe1\x9a\xb8\x53\x59\xfd\x2e\xe7\xf2\x9c\x8c\x63\x38\x03\x37\xde\x25\x10\xf4\x33\x43\x86\x34\x7f\xd7\x30\x12\x24\xd3\xb6\xf1\xee\x89\xec\xf8\xa0\xbc\xc8\x46\x48\x00\xc5\xb9\xe0\x70\x1c\xb3\xcd\xd5\xed\xdf\xb1\x33\x2e\xfe\x9c\xcd\x6e\xd4\x62\x0e\x26\xaf\x71\x44\x60\xcd\xde\xff\x50\x8b\x84\xa7\x8c\x49\xe8\xf6\x2f\xb1\x66\x1c\x49\xf5\x62\x60\x4f\x03\xa1\x84\xcd\xff\x43\x16\xd9\x22\xbc\xb6\x79\x7e\x14\x36\xe2\x7d\x3c\xe8\xa3\x61\x4a\x9e\x85\xff\x28\xa8\x78\x15\x1d\x20\x9a\xe3\x3f\xef\x65\x35\x1f\x0d\x55\x7a\x40\xfe\x01\xb0\xee\x0e\x52\x8b\x00\x1c\xf3\x93\xa1\x4f\x6f\x67\xf1\x18\x83\x9c\x98\x81\x4f\xe7\x1a\x4f\x0e\x4d\xf4\x69\x8c\x99\x83\x93\xa6\x65\xf8\x49\x38\x28\xe5\x32\x71\x9d\xac\x1e\x46\xad\xc8\xa4\x85\x57\x01\x5e\x1d\x6e\x13\x7f\x3b\x45\x92\x51\x4a\x89\x19\x91\xda\xbd\xff\x2b\x54\xf1\x68\xd1\xc3\x23\x22\xd1\xab\x2f\xb1\xaf\xab\xab\xc5\xff\xc0\xe8\xfe\xf9\xe0\x97\x75\xf8\x19\xed\x21\x44\x6d\xd2\x8f\xb6\x4c\x1f\xa2\x78\xdf\x73\x20\x7d\x77\x8e\x4c\x42\x6f\x10\x8d\x9f\x4e\x71\x37\x8d\xb6\xb8\x2c\x34\x3c\x42\xcc\x37\x1f\x25\x2d\xe4\x94\xd7\x53\xaa\xf8\x2d\x09\x28\x44\x75\x85\x39\xd8\xdd\xd5\xfb\x8f\xfd\xc0\x6b\x46\xbc\xbf\x69\xf9\x1a\xdd\x2f\xdd\xf2\x15\xa7\x58\x71\x2a\x6e\x58\xea\xc2\xfb\x91\x37\xf0\x81\x8a\x47\x59\xc5\xf5\x75\xa3\x5b\xb7\xd0\x47\x3e\xb4\x9a\xf4\xbf\xa6\xfd\x29\xd9\x5d\xdd\xc7\xf0\xf5\x03\x28\xe2\xac\xee\xad\x9d\x9d\x77\x85\x18\x9b\x7c\xe3\x62\xf8\xb8\x86\x7b\xb9\x0b\xd7\x9d\x73\x5c\x77\x8e\xd2\x92\x68\xe3\x87\xe2\x54\xc2\xc4\x35\xcd\xcc\x83\x62\x71\x7d\xc2\x3e\xe2\x0a\x4e\x90\x17\x86\x10\x17\x2b\xff\x18\x0b\xde\xf6\x0c\x29\xf0\x3a\x69\x13\x62\xcf\x09\x20\xe1\x62\x5d\x52\x1a\xd2\xba\xe3\x52\x3a\x2c\x44\x10\xa4\x66\xa6\x20\x8d\xef\xa9\x26\x75\x7a\x37\x03\xad\x4d\x6e\xc8\xc4\x35\xde\x15\x1e\x97\x15\xf5\xd6\x54\x99\x78\xa4\x93\x8a\xa9\x0d\x12\x4d\x81\x6b\x10\x44\xe9\x65\x5a\xac\x3b\xb3\xff\x9b\x1e\x21\x46\x62\x9f\x3d\xde\x93\xea\x47\xed\x3d\x7f\x48\xe0\x81\xcf\xb1\xb7\xf3\x1d\x10\xec\xe7\x88\x25\x98\xfe\x0c\x9d\xfa\x6f\xca\xf8\x87\xa5\xe3\x2f\xca\xcc\xb4\x96\xb7\xae\x39\xfe\x23\x2f\x6a\xcc\x37\x6b\xfb\x0a\x9f\xd2\x42\xa6\x5e\xdc\x60\x43\x4a\x79\xb5\x72\xd7\x73\x6b\xb9\xe6\x43\x64\xfa\xae\x95\xdc\x78\x9f\xd9\x07\x2a\x7c\x81\x57\x2e\x49\x76\xef\x7f\xd3\x7c\x4d\xf9\x7d\x83\x04\x59\xfc\x5a\xdc\x8a\xef\x19\xe8\xb0\x98\x4e\xf1\xe3\x24\x3d\xf1\x48\x84\x54\xd5\x60\x32\x5b\xaf\x0b\xf1\xcd\x64\x24\xf4\x73\x14\x36\xba\x14\xfd\x31\x83\xc4\x10\x9b\x30\x08\xdf\x90\xee\xaa\xa9\xa7\xc2\x03\x69\xe6\x60\x64\xff\x27\xae\x01\x18\x3a\x34\x31\x74\xe3\x0b\x67\xe7\x34\xc5\x2c\x80\xc9\x08\x31\x68\xb3\x43\x7c\x2c\x78\x78\xcc\x7f\xbb\x71\x6f\x97\xbf\x66\x45\x3f\x19\x8d\xd9\x97\x55\xf2\x56\x24\x9c\xdf\x64\x15\x7e\x49\x9d\xb2\xed\xe6\xab\x43\xe3\x04\xe0\x1e\xa5\x9d\x15\xc7\x57\x66\x54\xb7\x24\x22\x2d\x4f\x44\xab\x04\xca\x56\xdb\xeb\x6a\xb3\xe2\x07\xe7\xed\x79\x78\x75\x21\x28\x06\x5f\x2c\xa8\xf8\x9e\x5c\x97\x30\x37\x9a\xef\xf2\xdb\x2f\x24\x38\x97\x7d\xb9\x26\xca\xf5\x71\x40\x52\x33\x2a\xfd\xb5\x7c\xc1\xc7\xbf\x0d\x20\x7e\x0e\xe5\xf4\x4e\x65\xbf\x7a\xff\xd4\x23\x42\x9e\x63\xca\xd3\x38\x7b\x04\xed\x88\x88\xa3\x09\xa2\x30\xfa\x68\x81\x53\x4a\x09\xc9\x08\x2e\x13\xe9\xcb\xe4\x79\x33\xce\x6c\xe4\xd8\x8f\x7f\x26\x25\xfd\x06\x80\x3a\xf8\xa5\xa7\x43\x8b\x8f\x61\x7b\x0f\xf5\x25\x60\x4d\x89\x30\xc6\x83\xbc\xbf\x12\x49\x4f\xf9\x14\x4b\xdf\x74\xa6\xf4\xdf\x60\x51\x83\xfc\xe1\x87\xc4\x53\x1e\xd3\xb7\x88\x61\xaf\xb6\x75\x5b\xf7\x64\x2d\x69\xfe\x44\x5a\xc5\x32\x15\x5f\x16\x68\x7b\x9a\xa6\x52\xb3\x7d\xc8\x18\x22\x9d\x6e\xd5\xf3\x45\x1a\xff\xd4\x4d\xf0\xbc\xc3\x84\xed\xf0\xfe\x72\xa2\x36\xe0\xc1\x86\xc2\xf7\x84\x43\x7a\xc3\xd1\x0c\xbe\x26\x77\x21\x1f\x16\xa4\x13\xf2\x37\xd3\x1e\xe8\xef\x7a\xd6\xeb\x8e\xf6\x84\x3a\x3e\xd1\x48\xbc\x9d\x6f\xdb\xd4\x7c\x03\x74\x55\x10\xbe\xfb\x66\x05\x94\x84\xc8\x39\x27\x32\xcb\xe5\x39\xe7\x8a\x00\xf0\x29\xff\x1d\x41\xe9\x06\x38\x92\x89\xec\x00\xea\x87\x06\x38\x6b\xf5\xa4\xb3\xea\x70\xa2\x2e\xeb\x83\x7d\x3d\x92\xcf\xb5\x6a\x46\x28\x16\x4c\xed\xa0\x46\xe9\x10\xe9\xf0\x97\xc7\xc3\x00\xdc\xf1\x20\xba\x7c\xef\x19\xb4\xc5\x1d\x4d\x8e\x27\x96\x74\xb4\xa7\x1f\xdb\x91\x1f\x1c\x8c\x88\xe9\x63\x3b\xba\x38\x22\x02\x5c\x82\xa1\x8f\xe9\x5b\xaf\x2f\xf4\x86\x24\xd6\xd3\xb4\x9d\xcd\x50\xb1\xc3\x85\xc4\xa1\xc3\xba\xae\x3b\x98\x50\x0d\x74\xd3\xcd\xce\xe1\xd6\x03\x8a\x3c\x60\x18\x05\xc3\xa7\xab\x48\x8d\xdd\xf1\xd7\xb3\x8a\x91\xae\x20\xdd\x0f\x62\x58\xfa\xcd\x91\x30\x2e\xd4\xd2\xe4\x6d\xbf\xc1\x0d\x3a\x3b\x82\x00\xe7\xee\xf9\x29\xae\xea\xa2\xc9\xae\xbb\x7d\xd7\xa6\xc7\x6f\xd2\x7f\x32\xf7\x87\x06\xd8\xa8\xcd\xb9\xfe\x00\x04\x0f\xd1\xe6\xe3\x47\x98\x83\xe1\xbd\x43\xc8\xa3\x5b\x88\x68\xac\xfb\xcd\x4e\x77\xb8\x07\x70\xbe\xe2\xac\x8b\x19\x64\x4a\xeb\xb0\x27\x44\x0f\x96\xb3\xce\x91\xc2\x40\x7d\xfa\x22\xc1\x30\x09\xd1\x92\xd8\x30\xa7\xdc\x8c\xc6\x22\xcd\xe3\xbb\x87\x99\xab\x4d\xe8\xa2\xc6\x57\xaa\x56\xce\x6c\x71\x67\x1e\x1a\xde\xcc\xca\xc8\x6c\x06\x61\x04\x9b\xc6\xd2\x60\x45\x7a\x7c\x61\x58\x89\x30\xdf\x5c\x6f\x70\x86\xf0\x45\x07\xc8\x7e\x4c\xaf\xba\x5d\x6b\x3a\xdc\x95\x1b\x3a\xf0\x3b\x37\xd4\x81\x19\xf7\x33\xb0\x69\x97\x27\xd2\x0c\x99\x58\xdf\x3d\x9c\xb2\x52\xdf\x45\x38\x28\xc8\x97\x26\x30\xe1\x83\x38\x63\x7e\x1f\x3a\x35\x0a\xe7\xf3\x23\x7b\x79\xe0\xa4\xd3\x89\x1e\x00\x7a\x4f\x27\x07\x99\x5d\x52\x2b\xcf\xdf\x9c\xd5\x2c\xb9\xde\xee\x21\x1a\xf9\x1e\xe8\xb3\xe1\x7e\x49\x13\x1e\xa3\x59\xb3\x41\x1b\xdb\xdb\x8b\x0f\x7f\x97\xc5\xb5\x83\xb6\xff\xda\x45\x24\xa5\xc8\x2b\xa7\x79\xf4\x89\x8b\xa1\x12\xc6\x7e\xea\xee\x0d\x75\x73\x1f\x8c\x91\x1a\x77\x81\x30\x40\x12\xba\x70\x9e\xd0\x33\xc9\x13\x72\x13\xb0\xfe\x2e\x59\x65\xa3\xf7\xec\xd5\x65\xd4\x93\x2f\xbf\x13\xb1\xad\x6f\xdf\x5d\x72\xba\x69\x32\x00\x9b\x64\xee\x61\xa6\x68\x10\xbc\xe9\xcb\x09\x3c\xbb\xa0\x88\x24\x4b\x3f\xf0\x3c\xa3\xbc\x3d\xe2\x5e\xb7\x7c\x7f\x6e\xe1\xb0\xac\x80\x7e\x49\x01\x49\xb0\x6e\xec\x6a\xc0\xf2\x53\x7e\xaf\x04\xf7\x81\xa6\xe8\x46\x43\xc6\xf8\xed\x5f\x4c\xe9\x1f\xe9\x9a\x5e\x1d\x8a\x5f\x9f\xf1\x4e\xae\x80\x0f\x84\xb3\xf9\x4b\x5a\x9c\xe4\x38\x1a\x28\x34\x1f\x3c\x3f\xf7\x24\x93\x7c\x48\x3d\x9f\xc7\x4e\x88\x31\xef\x22\xec\x84\x15\x1e\x8e\x87\x26\x88\x98\xbc\x05\x1c\xde\x6f\xf9\xcf\x7e\x03\x38\x86\xc7\x3f\x8e\x7c\x18\x9c\xff\x57\xef\x23\xcb\xe3\xac\x0b\xbe\xdb\x11\x1f\xfb\x17\x49\x7a\xce\x81\x93\xcf\x5d\x99\xe6\x8f\x93\x6c\x1f\xbb\x18\x67\xb1\x70\xa1\x8f\x0e\x3c\x8a\x93\x58\x9c\xff\x8d\xcf\x72\x0a\x42\xf2\x05\xd3\x03\x10\x48\xdf\x03\x0f\xe7\x8c\x98\x8d\x14\x4d\x23\x9f\x52\xce\xef\x2b\x10\x53\x7c\x1d\xdc\x49\xbe\x06\x8e\x13\x3b\x3c\xee\x8b\x43\x1c\x3b\x94\x7c\xb3\xd9\x4f\x15\x83\x37\x38\x0e\x91\xac\x2d\xe1\x11\x87\x16\x27\x9d\x71\x63\x7d\x7c\x79\x48\xa5\x7c\x8a\x1f\x70\x0e\xed\x47\xfb\x21\xa5\x9c\x13\xfc\x5a\xb2\x81\xa5\x44\xde\x30\xcd\x87\xf7\x4e\x95\xaf\x99\x49\x65\x52\xc9\x52\x78\xb0\xa3\x29\x0c\x36\x69\x35\x61\x86\xa9\x73\x47\x5a\x8e\x93\x81\xa5\x74\xe6\xf3\xc4\x52\xc1\x5f\x59\x3d\x91\x0f\xac\x4a\xc9\x9a\xb3\xfc\x2a\xb9\xd9\xaa\xb2\x47\xc7\x01\x86\xae\x6b\xcd\xba\xef\xa2\x77\x6b\xc3\x33\xc9\xa1\x6e\xda\x98\x1b\xfe\x93\xc1\x2b\x7e\x1f\x6a\x4a\xe0\x71\xeb\xd3\xfe\x83\xa3\xba\xaf\xbb\xc8\x17\x48\xc7\xcd\xe4\x1e\xbb\x7b\x22\xc1\x69\x52\x28\x1b\x96\x5d\x82\x2b\xaf\xac\x5a\x3e\x3f\xcd\x8e\xf2\xec\xf4\xc8\x57\xf0\x37\x51\xd9\x8d\xc5\x1f\x50\x9d\xa1\x0b\x1b\x37\x3d\xf4\xa9\xd5\xa1\x05\x23\x98\x5b\x34\x31\x96\xdd\x83\xb7\x5d\x61\xa3\xf7\x71\x5f\x3d\x3b\x45\x36\xe4\x59\x1b\xb2\x36\xdc\x26\x21\x38\xe5\x3e\x3a\x2a\x09\x49\x47\xcf\xfd\x67\x46\xfd\x77\x8e\xe3\x51\x01\x75\xf8\x94\x59\x34\x3e\x7f\x52\x12\xd9\x31\x76\x57\xa7\x5f\xd5\x0a\x53\xe1\x26\x05\x6d\x3d\x51\x91\x09\x83\x06\x09\x3f\x46\xc7\x28\xc8\xe8\xf6\x68\x50\x3e\xc6\x2f\xea\x27\x12\x72\x74\x3a\x82\xa8\x3e\x3a\x38\xc7\x07\xf2\x7d\xe2\xd1\x82\x68\xfb\x18\x88\xa7\x37\x68\xe3\x5e\x7d\xda\x6c\x25\x07\x56\x3e\xc3\x99\x0e\x1e\x05\x3c\xa7\x3d\x86\xbc\x99\x04\xa4\x8f\x8c\x7d\xca\xeb\x21\xf0\xc9\x78\xcf\x87\x8b\x93\x78\xcf\xc7\x6e\x14\x2f\x71\x8d\xc3\x97\xb1\x87\x4f\x1b\x47\x1c\x23\x6a\x74\x19\x2e\x21\x56\x71\x96\x78\xd4\x62\xe6\x03\xc9\xae\x76\xcc\x72\x5c\x71\xf2\xd1\xdb\x3f\xea\x1b\x76\xe1\x6a\x1b\x7d\x6f\xdc\xf7\xf7\x1f\xdf\xab\x7b\xf1\x62\x6c\x91\xe4\x11\xde\x8c\x6e\x6f\x7f\x85\x73\xe6\xad\xbc\x8f\x7d\xfb\x77\x30\x07\xbe\xa1\xe4\xce\x88\x1b\xe5\xfd\x5f\xc9\x8e\x1a\x95\x92\x71\xee\x1a\x4d\xa0\x61\xb9\xd9\xd6\xfc\x4d\xbe\x8f\xf9\xec\xb7\xdf\x16\x84\x73\x36\x2b\x79\x54\x26\xf4\x96\x90\x12\x9d\x36\xf1\x2e\x4e\x1c\x68\xa1\x3b\x2d\x7a\xdc\xf7\xf6\xff\x24\x2b\x75\x5e\xb8\xf7\x03\xb1\x69\x4d\xe3\xaf\x46\xed\xf0\x3b\xdc\x58\x09\xab\xc3\xde\x3a\x9a\x64\x74\xbd\xe4\x12\x5c\x20\x1d\x1e\x21\x1f\x7f\xd2\x60\xd8\xaa\xb5\x27\xbc\xf8\x53\xa8\x07\x88\xcf\x7f\x2e\xff\x75\x02\x01\xbe\x6a\x3f\x95\x46\x43\xe5\x58\xdc\x0e\x35\x93\x0f\xea\x0f\x55\x07\x3e\x68\x3f\x6d\xe0\x53\x57\xbe\x94\xef\x4e\x9d\x10\x24\xdb\x56\xe3\x33\xfa\x43\xec\xcd\x7c\x15\xf7\x4c\x3e\x8a\x9f\x16\x8f\x06\x3b\x95\x4f\xd7\xce\x8f\xe4\xf9\xb7\x43\xdf\x49\xf4\x09\xef\x03\xe8\x0b\xdf\xa2\x4c\x9e\x4d\x86\xea\x22\x97\x08\xbb\x43\x9f\xa0\xec\xa7\x27\xcb\xcb\x82\xe1\x5c\xb9\x4b\xd3\x83\x31\x3a\x96\x07\x1e\x6e\x5c\xc8\x49\xbe\x00\x4d\x92\xb6\xab\xab\x70\x33\x67\xfa\x91\x6d\x84\xde\xa2\x55\xcc\x7c\xe8\xf9\xbd\x2f\xc1\xb9\x8e\xf1\x87\xb9\x4f\x46\x1f\xe3\x36\xa1\x95\x7f\x38\x9e\xdd\x34\xee\x85\xf6\xef\x46\xef\xb3\xbb\x87\xdc\x89\x4e\x31\x21\xfb\xa9\x60\x6c\x7a\xde\x26\x37\xec\x70\x0f\x65\x55\x70\xc0\x45\x6e\xe1\xc1\x1b\x57\xe7\x24\xb4\x8a\x6d\x9f\xb0\x87\xe4\x2b\x7a\x51\x37\xff\x39\xbc\xe1\x3d\x90\xe8\xd3\x7d\xe3\x61\xfc\x5d\x52\x47\x0e\xaf\xf6\xef\x76\x85\xbf\x22\x79\x80\x1e\x3a\x65\x77\xc3\x13\x80\x3f\x4a\x68\x50\x45\x8f\xff\x0d\xdb\x2e\xd7\xdb\xd8\x2b\x41\x3c\x15\x24\x23\x17\xdb\x88\xf9\x13\xd7\xbb\xd1\xc3\xee\xee\x4c\x03\x25\xc4\x7d\x95\x87\xd8\x22\x47\xf8\x58\x13\x09\x1f\xef\x4c\xb6\x24\x12\x3d\xd1\xc7\xd8\x0f\x80\xec\x3a\x4c\x34\x63\x3b\x6e\xe1\x09\x95\x0e\x54\x1d\x3e\x2e\xfe\xfd\xe3\x67\x2f\xc6\x0d\x0f\x70\x07\x57\x7b\x98\xb1\xc4\x5f\x9c\x9f\x61\x21\x12\x74\x74\x0b\x93\xf8\xe2\x81\x25\x49\xcb\x39\x5d\xdf\x35\x10\x52\xf4\x69\x0c\x81\xe2\xd4\x41\x36\xe9\x68\x37\x57\x0d\x4e\x68\xd2\xc3\x15\x1a\x3b\x6a\x1c\xa8\x20\x69\x3d\x43\x09\x01\x98\x2a\x6d\x8a\x87\x9a\xf9\xfd\x6b\x7e\x7e\xaf\x25\xa4\x76\xad\x89\x78\x95\x24\xe9\x04\x1d\xc3\x9a\x8b\x14\xfe\x08\x7c\xdf\x98\x4e\xdb\xa5\xc1\xbd\x15\xdf\xbc\xaa\x73\x18\x7e\xac\xc0\x24\xc8\xf6\x2d\xa7\xbc\xb0\xcf\x2c\x99\x9b\x39\x7f\xc7\xfa\x20\xba\xe8\xd8\x18\xa7\x07\x9f\xd2\xb1\xa1\x8d\x9e\x57\x6b\x1c\x6b\xc0\x71\x95\x3e\xcb\xfd\xff\xa6\xcd\x0b\x71\x1b\x7e\x06\x40\x7a\x87\x3e\xdb\x4d\xc0\xad\x78\x1b\xbf\x7b\xc8\xfe\xbe\xd9\x63\xe6\x57\x5e\x98\x33\x09\x7b\x84\xa5\x8f\x0e\xfb\x39\x3e\x14\x19\x5f\x0e\xe6\x0f\x46\x8e\x57\x14\x0d\x23\x80\x21\x32\x96\x08\xfb\xd1\xb0\x8d\x61\x9f\xb4\x47\xe3\x91\xfb\xfe\xc5\x01\xbc\xf9\xd6\x4e\x10\x2d\x9f\xd5\xfc\x0e\xad\xe3\x8e\x66\x22\x33\xfc\x97\x33\x22\x99\xf1\x9d\x2b\x4a\xb4\x16\x37\xfb\x54\x5b\x39\x00\x07\xfa\xb0\xa8\x9e\xf6\x70\xaa\x4a\x48\xe7\x59\x6c\x5a\x12\x34\x0f\xe9\x1f\x9f\x09\x31\xa4\xfa\x4c\xcc\x72\x5f\x6e\x89\xe2\xf3\xbe\xc0\xc7\xf0\xd4\x19\x7b\x6a\x43\x0f\x7e\x50\xcc\xfb\xa7\xed\xc4\xa3\xeb\xdb\x0d\xef\x92\x0d\x1e\xe9\x43\x6d\xf5\x2f\x7a\xd3\x87\x90\x19\x6b\x95\xa4\xa1\x22\x75\xcf\x74\xc9\x90\xb5\x0b\x72\xb7\xeb\x1a\xcf\x28\xf2\xeb\xf8\x5c\x18\x2d\x69\x74\x01\x28\xac\x88\x50\xde\x21\x2d\x9b\xaf\x7a\xbf\x07\x80\x48\xf5\x95\x46\x21\x6f\xca\x67\x29\xc9\x9f\x44\x6a\x30\x5b\xe7\x53\xa9\x7c\x8f\x58\x75\x8b\xcb\x56\xdf\x24\x59\x68\x43\xe5\x08\x7a\x5f\x5c\x37\xcb\x17\xcd\x22\x6e\xc6\x46\x51\x78\xca\x7d\x06\x8a\xf7\x3c\xbd\xed\x12\xd6\x36\xd0\x44\x7e\x4e\xdf\xd7\xf5\x99\x6d\x2a\x0d\x32\x27\xd7\x2e\xef\xb8\x17\xe8\xe4\xee\xb2\xf4\xa3\x5e\x1b\x35\x7f\x5f\xbf\x97\xdb\xac\xaa\x8c\x47\xb9\x67\xdb\xcd\xbd\x3b\xf1\x8b\x76\xe9\xed\xed\xa8\x2d\x1e\xc3\x43\xbb\xdf\xfb\x97\xef\x1c\xbc\xec\xda\x5a\xfe\x69\x50\x9d\x2e\x54\x48\x88\x4a\x20\xbe\x27\x4e\x30\x99\xce\xfe\x7f\x61\xc6\x3f\xc9\x12\x10\x37\x75\x63\x79\xe7\x2f\x33\x4e\x9f\x44\x35\x64\x59\x99\x8f\x1c\x35\x3c\xf2\xc3\xa8\x11\x5f\xeb\xc5\xc8\x77\x2b\xaf\x4a\x00\x95\xf2\x84\xc4\xe8\x15\xad\x59\x84\xf3\xf3\x08\x9d\xda\x2e\x23\x38\x71\xc9\xf6\xe3\x11\x9b\x6c\xc2\x14\xb1\x75\x89\x4b\xea\xab\xdf\xad\xfc\xe3\x9a\x92\x9f\x32\xba\x37\xde\x4b\xd6\x16\xa7\xc9\x97\xd9\xef\xc2\xbd\xe5\xfd\x1b\x7e\xc8\xf4\xa7\xae\xae\xf1\x81\x62\xb5\xad\x97\xf8\x26\xc1\x4e\xed\x7f\xfb\xf4\x13\x7e\x52\x17\x77\x16\xaa\x5a\x2e\x33\x23\x5e\x7b\xfb\x77\xce\x4a\xbc\x5a\xba\xdb\x0b\xdf\xd8\xe5\x37\xc8\x45\xeb\xab\xdc\xf0\xe7\x0e\xbf\x29\xa9\x40\xbe\xf0\xed\x0a\xce\xd1\x42\xbe\x73\xce\x7f\xe7\xf4\x37\x5f\x2a\x95\x3f\xaf\xe8\xcf\x0a\x11\xa7\xfd\x6f\xae\x84\xce\x38\xc6\xc0\x07\x04\xac\x1b\xe3\x9a\x0a\x68\x3e\x69\x60\x35\xf1\xd4\x9c\xdf\x28\x94\x99\xe9\xe4\xa3\x9c\x66\x25\x96\xc0\xe5\xfe\x13\xe3\x5c\xce\x9f\x41\x59\xfa\xaf\xad\x2b\x29\xcc\xd5\x35\x97\xe5\xe2\x15\x47\xd1\x15\x12\x47\x51\xe6\xc0\x71\xc5\x04\x4e\x77\x2e\xa3\x02\x24\x62\x62\x5c\x7c\xad\x95\x8c\x4a\x70\x49\x49\xab\xae\x56\x1e\x36\x0f\x98\x94\x7a\xc8\x3c\x58\x40\xfa\xff\x0d\x00\x00\xff\xff\x89\x0f\x84\xcd\x23\x92\x00\x00") +var _confLocaleLocale_lvLvIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\xdd\x6e\x1c\x47\xb2\x27\x7e\x6f\xc0\xef\x50\xf6\x81\x60\x1b\xa0\x5b\x98\x31\xfe\xff\x5d\x0c\xd4\xf2\xd2\x92\xc7\x96\x25\x51\x3c\xa2\x2c\x60\x8f\x61\xb4\xb3\xbb\x92\xcd\x62\xd7\x47\xbb\xb2\x8a\x14\x79\x70\x80\xd5\xcd\x79\x01\xbd\xc0\x68\xe7\x6e\xf5\x00\x73\xb1\xde\xb9\x6a\xbe\xd7\xc6\x2f\x22\x3f\xab\xaa\x29\xcd\x9c\xd9\x73\x23\xb1\x2b\xbf\x22\x23\x23\xe3\x2b\x23\x23\xd5\x76\xbb\xc8\xb5\x59\xcd\x5f\x16\x7a\x5d\x16\x59\x7f\x6d\xba\xdd\xeb\x7c\xf7\xba\x32\xd9\x77\x45\x97\x19\xdd\x5e\x14\xc6\x1c\x64\x1b\x65\xb2\x56\x6d\xa8\xf4\x5d\x67\xb2\x0b\x55\x36\x54\x29\xfb\xae\xf9\xf8\xa3\x8f\x3f\x3a\x6b\x2a\x3d\x3f\xd9\xbd\xde\xf4\x95\xf9\xf8\xa3\x5c\x99\xb3\x65\xa3\xda\x7c\xfe\xa8\x3e\x6d\xb6\xaa\xd6\x65\x41\x9f\xf5\xab\x6d\xd9\xb4\x7a\xfe\xe8\x7a\xbb\x7b\x83\x5e\xa8\x9d\x2e\xb7\xf3\x63\x55\xee\xde\xe5\xd7\xbb\x77\x4b\xf5\xf1\x47\xa6\x58\xd7\x8b\xa2\x9e\x1f\x17\xda\x0d\x56\x68\x6a\x6c\x9a\x55\xa1\xca\x85\x2b\x3e\xa1\x9f\xbb\xd7\x25\x01\xb0\x2d\x74\xa7\x8b\xcd\xcd\x5b\x55\xef\x5e\x9b\x3f\x64\xbf\x9f\x65\xa6\xa1\xf1\xb2\x7b\xa6\x52\x65\x79\x9f\xca\x8d\x2a\xb8\xa3\x6c\xd3\xd4\x5d\x7f\xef\xae\x14\xd8\xb1\x9a\xbe\x23\x88\xd2\xb1\xf0\xbd\xdf\x02\x06\x74\x2d\x1f\x5b\xbd\xa6\x5e\x74\x3b\x7f\xae\x77\x7f\xa6\xbf\x5a\x9a\x03\x17\x5c\xea\xa5\x29\x3a\x3d\x7f\xba\x7b\x7d\x4e\x28\x2a\xd5\x96\xa6\x71\xa1\x5b\x53\x34\xf5\xfc\x25\xfe\x3f\xa7\x0f\x5b\xb5\xd6\xf3\x27\x5c\xd6\xe9\x6a\x5b\x2a\x6a\x71\xa2\xd6\xaa\x53\x17\xfa\xe3\x8f\x4a\x55\xaf\x7b\xd4\x78\x09\xb4\x52\x9d\x55\xab\xa9\xc6\xa2\xd6\x97\x04\xdc\x85\x2e\xf2\xa6\xcb\xce\x55\x5f\xf7\xb3\xd9\xec\xe3\x8f\x7a\x5a\x94\xc5\xb6\x6d\x4e\x8b\x52\x2f\x54\x9d\x2f\x2a\xe0\xf5\x09\x81\xdb\x74\x80\x22\x93\xb2\x3e\xeb\x6b\x5a\xa8\xa2\xa5\x85\x91\x59\xe9\x9c\x90\xb7\x50\x26\x42\xef\x39\x4d\x22\xdb\xec\x5e\x63\x19\xd1\x6f\xad\xaa\xa8\xab\x8b\xdd\xeb\x36\xc7\xda\x55\xaa\x28\xe7\xdf\x7e\xb9\x55\xa6\x33\x98\x8d\x31\x97\x0d\x2d\xf0\xb1\x6a\x9b\x52\x03\x3b\x8b\xee\x6a\xab\xed\xef\x4c\x75\xd4\x63\x4b\x5d\x14\x34\x15\xb5\xed\x56\x67\x6a\x7e\x4c\x5f\x96\xaa\xcf\x31\x5c\x83\x3e\xd1\x6a\xdb\x10\xee\x9a\xf6\x8a\xb0\xba\x6d\xae\xf1\x67\x71\x4e\x45\x4d\xbb\x56\x75\x71\xad\x3a\xe0\xf0\x99\xfc\xd8\xbd\x5e\x31\x26\xab\xa2\x6d\x9b\x76\x7e\xb2\x6d\xd6\x3d\xd3\x15\x21\x69\x81\x9e\xe6\x3f\x10\x82\x88\x46\x93\x9e\x50\x58\x15\xeb\x16\xf8\x46\xb9\xca\xf0\xcb\xf5\x85\xd2\xd3\xa6\xdd\xd8\xa6\xaa\xcb\x41\x8b\x1d\xd1\xcb\x44\x37\x04\x94\xed\xa2\x19\x40\xa4\x6a\x5a\x3b\x2e\xc7\x24\x69\x6b\xe4\xa0\xb6\xa4\x16\xf5\xa1\xf2\x8a\x90\xcf\xdb\x61\x7e\x88\xbf\x33\xbf\x35\xd4\x6a\xd5\xf4\x75\xb7\x30\xba\xeb\x8a\x7a\x6d\xe6\x8f\x89\x52\x55\x46\x4b\xd3\x29\xac\x51\x5f\x11\x22\x7d\xe1\xa3\xe4\xf3\x55\xd3\x7b\x62\x98\xbf\x50\x17\xc6\xae\xbe\xb1\x45\xbe\x19\x95\x15\x83\x2e\x79\x62\x66\x71\xaa\x75\xce\x53\xeb\xab\x3e\xdb\x96\x37\xef\x68\x87\xd0\x22\xf7\x65\x49\x88\xfd\xb5\xa7\x26\x34\xe8\x35\x91\xc0\xcd\xbf\xf7\xd8\x70\xdb\x56\x19\xd7\x05\xf1\x06\xaa\x30\x3f\x6e\x9b\x65\xb9\x7b\x53\x29\x5e\xd8\x95\xaa\x57\x98\x65\x47\xff\x76\xf8\xf0\x93\xd1\xaa\x5d\x9d\xfd\x8c\x59\xe0\x8f\xf9\x53\xbd\xa1\xea\x1d\x93\xf3\x5e\x32\x00\x3d\x06\x5a\x34\x76\xb0\xf9\xe3\xdd\x6f\x37\xef\x78\x97\x34\x39\xfd\xb2\xc4\xf4\x53\x51\xd3\xd4\xca\x92\xc6\xb0\x7f\x11\xfb\xc1\xff\x6e\x99\xba\xa2\x23\x0c\xc5\xdf\x0c\xb1\x8a\xdd\x6f\x05\x4d\xa9\xad\x1a\x5a\xf1\xe2\x9a\xfe\x56\x25\xcd\xf3\xaf\x4d\x07\xb8\x7e\xed\x69\x67\x2f\xf2\xa5\x70\xc8\xef\x9a\xb5\xc9\x8a\x36\xab\x35\xe1\x60\x55\x68\xe2\x39\x95\xca\x9e\x5e\x9d\xfc\xf3\x93\x83\xec\xb8\x31\xdd\xba\xd5\xf4\x37\xb6\x5c\x46\xff\x53\xd3\xaf\xb2\x5c\x75\x7d\xb6\xdc\xbd\xbe\xd6\x34\x51\xea\x48\x80\x78\xe8\xbf\x9a\xc1\x8a\xa0\x0a\x36\x52\x5c\x03\xfb\xdf\x80\xc9\x9a\x8e\x10\x64\xfa\xd6\x50\xaf\x4d\x3b\x85\xa0\xd1\xc6\xa4\xfe\x78\x47\xc7\xfd\xd5\x8d\x51\xbd\x65\xd5\xcb\x05\x78\x30\xf5\x72\x14\x4d\x8a\x80\xa2\xd5\xae\xa9\x57\x99\x5d\xf6\xe8\xe8\xe8\xd9\xc3\x6f\xb2\xfc\xba\xa8\x8b\x4c\xb5\x22\x07\x88\x63\x57\xe7\x3d\x6d\xe6\x2d\x31\x9a\xee\xf4\xbf\x2e\xd6\xba\x26\xae\x52\x2e\x56\x05\xcd\xd5\x98\x92\xd8\x12\xad\xcf\xc9\xc9\x13\x42\xed\xcd\x5f\xa9\x36\x03\xd8\x9d\xcd\x1f\x68\x5a\xc1\xb7\x54\xe7\xd7\x12\xf8\xb5\x10\x08\xca\xb2\x18\x67\x26\x3b\x25\xbe\xa3\x68\x63\xb6\xca\x72\xf8\xec\x82\xa6\xab\x68\x00\xdd\xb6\x0b\xe2\xa4\xdd\xd5\xc2\x76\xc3\x5d\x1f\xa9\x0b\x9a\x5f\x0b\x09\x06\x31\x35\x5e\x06\x93\xad\x78\xf4\x19\x68\xc6\x41\x2c\xab\xc2\xeb\x4b\xc2\x6e\x4b\x9b\x78\xf7\x6e\x5d\xe8\xc1\xda\x40\x54\x46\xec\xb1\x4e\x51\xe9\x4a\x3d\x42\x19\x0a\xaa\x39\x60\x04\xbe\x4d\x9f\xdd\xbc\xd5\x45\xf7\x89\x6c\x00\x01\x3f\xa2\xff\x3e\x5b\x97\x8a\x40\xc6\xbc\x95\x9d\x76\x54\xd5\x0d\xf3\xb2\x30\x05\x0b\x6a\xd5\x11\x0d\x94\x05\xe1\x88\xe4\x52\xcc\xbe\x8a\xac\x2b\x36\xc6\xf6\xd6\x15\x34\xaa\x3a\x27\xc1\x99\x17\xad\xde\x70\x85\xdd\x6b\x6c\xc2\x9e\x64\x1e\xc8\x89\xc4\x73\x51\x82\x4b\x97\x11\x5d\xb9\x52\x37\x6a\x90\x35\x15\x76\x04\x75\xb1\xbc\x21\x96\x67\x65\x8a\x05\x19\xf2\x91\xa4\x3a\xa9\x12\x31\x38\x2a\x33\x6a\x03\xdc\x05\x00\x68\xbf\x90\xa4\x62\xf4\xbb\x9e\x78\x1b\x12\xf2\xab\xec\x5a\x57\x04\xf2\xee\x5d\x80\x07\xab\x9f\x37\xc4\x8e\xea\xf9\xc3\xa6\xda\xbd\xa9\x8d\xfb\xed\xc0\x7b\xa1\xb0\xaf\x3a\xbd\xa1\xd2\xec\xe4\xe4\xfb\x6c\x53\x36\xf5\xee\x8d\x85\xeb\xc7\xe7\x4f\xa8\x87\xb3\xae\xdb\x2e\xb6\x4d\xdb\xcd\xbf\x7f\xf1\xe2\x38\xc3\x5f\x26\xfa\xea\xba\x3a\xa6\xbf\x55\x06\xce\xd8\x12\x67\xdd\xbd\x59\x65\x9b\xbe\x55\x02\x0c\x91\x05\xf1\x5a\x12\x2e\x15\x0d\x9e\x11\xdc\xbc\x9b\xa9\xd2\x39\xf6\x10\x34\x0f\xe2\x71\x6b\xa0\x61\x26\xf4\xd1\xb7\x65\x44\x3c\x04\x87\xff\x3c\x09\x39\x00\xbb\x8b\x7f\x4e\x46\x13\x00\xc2\x34\x8b\x63\xe0\xb3\xeb\x89\xd6\x68\xd3\x1a\x42\x1d\xd1\x3d\xb6\x09\x29\x3d\x1d\x8f\x4b\xd2\x74\x0b\x39\xea\xc9\xfc\x48\x13\xab\x2e\xd6\x42\x27\x29\x85\xb3\x98\xb7\xd5\xbe\xb5\xbd\x6f\xd5\x46\x95\x5b\xcc\x75\x24\x90\x2a\xc2\x15\x73\xa5\x93\xa7\x84\xc1\x36\x61\x4d\x5c\x78\xda\x36\xd5\xfc\xc4\x01\x75\x1e\x7f\x76\x13\x76\xc3\xa8\x9c\xda\xeb\x83\xec\xf9\x1f\x1f\x64\xff\xdf\x57\xbf\x27\x35\xee\x21\x6d\x42\x22\xa7\x8c\xe9\x81\xc8\xbf\x86\x4e\x71\xf3\xb6\xf0\xf3\x96\x26\xcc\x6e\x49\x88\x57\x34\x21\x42\xc2\xa7\x47\x6e\x4b\x7e\x9a\xdd\x93\x9a\xe6\xbf\xe9\x57\x8a\x74\x2e\x3d\x5b\x35\xd5\xfd\x19\x04\x36\xc9\xca\x56\xc8\x3d\x40\xa7\x06\x1d\xfb\x7a\x9e\xa9\xc6\x75\xb7\x5e\xf3\x11\xbd\x70\xb1\x6a\xea\x53\x92\x23\x90\xce\xa0\x00\xe2\x9d\xad\xd7\x14\x1d\xef\x52\x5b\xd3\x15\xdb\x16\x9b\x14\x9f\x7a\x19\x62\x51\x93\xa2\x74\x7a\x15\xb5\xd4\x1e\xf7\xd7\x24\x73\x81\xfb\x1e\xb8\x23\x55\x5c\x43\xa0\x93\x46\xbe\xd2\x76\x99\x4e\xf8\xa3\x02\x3d\xac\x0a\x62\x72\xa2\xaf\xf7\x83\xa5\x6a\x4e\x4f\x89\x35\x68\xe1\xc8\x61\x9c\xa5\xbe\x66\xe5\x58\x1b\xc7\xa2\xfb\xb4\x2e\x6d\x85\x2d\x69\xc2\x87\x9d\x6b\xf1\xe0\xe1\x11\x09\x00\xda\x8d\x44\xf8\x79\xbf\x11\x8e\x66\xdb\xee\x5e\x1f\x80\x7d\x16\x96\x12\x7a\x66\xde\x96\xfb\xd0\x66\x58\xb3\x59\x41\x0c\xa8\x6e\x32\x99\x0a\x6f\xe4\xc2\xa8\x25\xa9\xb1\x82\xc7\x56\x54\xbe\x30\x9e\xdf\xf4\x7d\x40\x27\xf8\x68\x3f\xdd\x72\x04\xef\xde\xf6\x07\x80\x8b\x28\x87\xb5\x32\x69\x4f\x74\x4b\xc4\x44\xcb\x05\xf9\x17\x2b\xdd\x26\xee\x86\x8d\x08\x33\xb3\xea\x01\x29\xbe\xd6\x26\x59\x10\x89\x5e\x46\xb8\x8d\xb5\x04\xe2\x82\x7d\xa6\x7a\x30\xbb\x6b\xb1\x1b\x0e\xc8\x50\xa0\xc1\xa1\x6c\x6d\x1a\x5a\x36\x98\x0d\x66\xba\x4f\x3b\xa7\x17\x04\x6e\xdc\x47\x80\xa9\x00\xd4\xbe\x2f\xe9\xea\x80\xc6\xbf\xa5\x32\x81\xb6\x81\x16\xd5\x39\x2c\xd8\xaa\x56\x44\x11\x31\x8d\x89\x97\xfa\x25\x56\x3e\x73\x8a\xac\xd5\x2b\x45\x35\x62\xb1\x3b\xd0\x20\x2c\x06\x13\x04\x2b\x41\x1f\x59\x99\xd0\xb6\x0e\x22\x19\x03\xb5\xe2\xd1\xc3\xf9\xef\x88\x71\xdd\xfc\xbb\xa6\x0e\x06\xed\xac\x30\x21\xe0\x00\x2b\x36\x7b\x61\x36\x85\x87\x46\x36\x83\xa8\xd5\x9b\x09\xe5\x59\x6a\x4d\x1b\x37\x4e\x31\x1f\xa8\x4e\x76\x43\x87\x82\x43\xb7\x7b\x21\xd4\x79\xff\xfb\x8e\x07\xf6\x91\x55\x40\x17\xeb\x06\xea\xba\x68\x9c\x6f\x3a\x96\x70\xb0\xff\x4c\xb7\x58\x17\xdd\x02\xdb\x83\x14\x6f\xab\xce\x66\x5b\x6b\x20\x11\xce\x3e\xa3\xe2\xcf\x68\x1e\xa4\x84\xe5\xfd\x1f\xb2\x3b\x17\x4e\x57\xfa\x0a\xbc\x62\xa1\x2e\xa0\x15\x11\xed\xcf\x7f\x20\x99\xd3\x67\x17\x62\x65\x62\xc9\xbb\xa5\x2a\xc1\x39\xac\xe2\x43\x18\xa6\xbe\xaf\x89\xbe\xf4\x79\x4f\xcb\x53\x62\x0f\xbe\x39\x67\xad\xe4\xb4\x60\x1b\xba\xc9\x96\xe0\x47\x6d\x63\xbb\xe9\xb1\x3f\xef\x10\x01\x1d\x7d\xfb\xf2\xd1\x49\xb6\x6e\x96\x3d\xe9\x03\xae\x70\x86\xc9\x91\x85\x53\xe4\x50\x8b\x2d\x0d\xec\xd3\x67\x49\xd7\x21\xba\x20\x4c\xd1\x5a\x1b\x99\x86\x6b\x3c\xa9\xf2\x4c\x28\x7a\xa2\x6f\x6f\x1a\xa8\x0a\x4a\xba\xf0\xba\x08\x50\x51\x29\x32\x2e\xa7\x74\x16\x3b\xf4\xcd\x5b\x0c\x0e\x89\x5c\xc4\xa5\xd4\x93\xc9\xbe\xbc\x4f\xff\x12\x66\xc9\x04\x17\xee\xbd\x76\x4b\x72\x44\x6d\x72\x7d\x21\x72\xd4\x2a\x4e\x20\x2b\xaa\xd2\x5b\xfe\x91\x4e\x27\xd9\x12\xd4\x5c\x00\xb6\x44\x3c\x26\x48\x8f\x0c\x21\x13\xd3\xaf\x56\xda\x98\xf9\x13\x55\x6c\x49\xc1\xe6\x25\x53\xd5\x27\xd9\x53\xb0\x22\x22\x38\xbd\x62\x4d\x8b\xd9\x06\x31\x81\x1f\x58\xd1\xb8\xbe\xd8\xbd\x29\x15\xb6\x05\xd3\xd5\x01\x4d\x96\x3a\xdf\x28\xd2\x2b\x79\x9e\x2c\x60\x3e\x61\xcb\x08\xee\x19\x32\x8b\x7a\x51\x4f\x1b\xc2\x54\x3b\xdc\x05\x2c\x45\xf5\xd0\xbe\x77\x95\xdd\x96\x30\x97\x05\xa1\x7b\xe1\x1d\x3c\x40\x5b\xa7\x5f\x75\xf3\xa7\xa4\x7c\xc1\xe6\x2d\xac\xc3\x67\xf7\x9b\xec\x74\x4d\x02\x1c\x52\xee\x8a\x17\xdc\x50\xbd\xba\x48\x74\x53\x6c\xb3\x92\x10\xdc\x80\x7f\x5f\x68\x5b\xed\x44\xe5\xaa\x5d\xca\x76\x4f\x6b\x53\x4f\xa4\x4e\x73\x47\x54\x36\x34\xb1\xa9\x54\xdc\x03\x76\x24\x03\x27\x01\x59\x78\x8c\x05\xeb\x7f\xfa\xd9\x1a\x9c\x31\xe1\x49\x05\x62\x2c\xb0\x50\x83\xef\x65\x61\xed\xf2\x81\x0f\x46\x78\x58\x24\xfa\xcf\xf4\x16\x7a\x42\x65\xd8\x41\x00\x92\x45\x0d\xf3\x75\xe6\xdc\x2c\x58\xa4\x4e\xad\x55\xfe\x89\xf7\x64\xbd\xbf\xf1\x89\x62\xd9\x5c\xf8\x96\xa9\xc0\x13\x17\x10\x19\x40\x24\xed\x68\xf1\xea\x06\xbb\xfa\x20\x95\x72\xbc\x7d\x94\x13\x86\x6a\x96\x3d\x61\x6e\x70\x40\x54\x7d\xcd\x6c\x0c\x80\x11\xe3\xc5\x56\x83\x46\x9a\xf0\xdc\x7e\x24\x9d\x01\x26\xf8\xdc\x2d\x03\x9a\xa0\x44\xa5\xba\xce\x10\x14\xa0\xaf\xd2\xd5\x12\x7d\x6a\xf6\x14\x58\x8f\x5a\x46\x4c\x8f\xd6\x83\x34\xba\x35\xed\xef\xc0\x7c\xc9\x24\x2d\xa0\x54\x38\xc6\x8b\x0a\x7a\x5c\xa1\xb0\x15\xbe\xf6\x7e\x3c\xe2\x13\x97\x03\xf3\xd6\x62\x38\xb8\xf2\xce\xfd\x0a\xcd\x3c\xe3\x17\x85\x82\x15\x34\xa3\xeb\xce\x61\xdb\xba\x8a\x06\xb3\x73\xf3\x16\x07\x41\x63\x15\x71\x92\xa4\xd7\xd9\xbd\xe5\xfd\x3b\xe6\xde\xdd\xe5\x7d\xc7\x8c\x0f\x3c\xab\xc7\xa8\xc4\x7e\x7a\x8f\x34\x91\x8e\x5d\x4f\x9b\x72\x43\x5c\x38\xcf\x68\xfb\x90\x08\x80\xb2\xb0\x81\x7a\x05\xa5\x61\xab\x96\xba\x58\x77\xfd\x08\xf3\x04\x20\xb1\x11\x2c\x9b\x53\x1f\xb4\x5b\xae\xdd\x9b\xb6\x9b\x18\x09\x9e\x27\xde\x76\xec\x29\x72\xd4\x7e\xb8\xa1\x6f\xac\x37\x48\x13\x4f\xee\x8c\x86\xb2\xa8\x8a\x6e\x92\xf4\x98\x2f\xc9\xcc\xcf\xc1\x30\x95\xed\x27\x21\x8c\x9e\x27\x4f\xd3\x23\xb1\x43\x6a\x63\x11\x68\x72\xad\x0a\x36\x97\xbf\xca\x88\x08\xa9\x17\xb6\x5e\xce\x94\x59\xf4\xb5\x5d\x11\x9d\x0b\xfd\x9d\xd0\x6e\xdc\x14\x2c\xa4\x7e\x80\x94\x61\x19\x11\xad\x48\x37\x54\xe5\xb3\xcf\xfd\x22\x7c\x31\xcb\x7e\x80\xa4\xd4\x64\x35\xb1\xae\xb1\x7b\x53\x15\xfb\xd7\xb3\x67\xc6\x18\x46\x89\xa9\xc8\x2f\xb3\xb0\x85\xb0\xbc\x54\x40\xf5\x78\x32\x60\x40\xe2\x3b\x27\xd1\xd6\x10\xe3\x84\x3d\x4b\xb3\x9f\x59\x7c\xda\x19\x1d\x85\x16\xec\x14\x90\x95\x06\x87\x87\xf8\x0a\x23\xf5\x7b\x90\xea\x4c\x37\xd6\x0e\x0c\xb3\x98\x4e\xcf\x6f\xfe\x44\x8a\xfa\x00\x13\x10\x8b\xce\x21\xae\xb0\xf7\x45\x85\xe0\x35\x06\xe5\x00\x24\x54\xec\x2c\xaa\x27\xc0\x8a\xa0\x11\x2b\x08\x7b\x96\xec\x14\x78\x29\x48\x62\x75\x3d\x1f\x23\xd8\x8e\x3d\x80\xd2\x69\xd8\xae\x1d\x90\xd6\x58\x12\x73\x9b\xda\xc9\x53\xf6\xec\x8d\x88\xab\x9f\x58\xa6\x0d\x21\x95\x7d\x10\xb4\x29\xf2\x6b\x6c\x28\x12\x58\xbb\x77\x6b\x98\xab\xc4\xb0\x2a\x82\xeb\xe6\x2d\x2f\x22\x9b\x2d\x9d\x72\x0b\x29\x5a\xc9\x6c\x08\x58\x70\xdf\x4c\xad\x88\xb2\x50\x07\x88\x7d\xbb\xae\x69\x16\xe6\x0c\xfe\x84\x63\x8b\x94\xb5\x6a\x59\x07\xd2\x79\x6c\xc9\x56\x8a\x16\x0f\x16\x11\xe1\xfe\xff\x67\xfb\xfc\x27\xb2\xb4\x14\xfc\x96\x57\xda\xcc\x7f\x80\x2b\xbe\x6e\xe6\x47\xbb\x37\x24\xcf\x9a\x1c\x86\xa1\x95\xae\x5c\x17\x96\x2e\x55\xfd\x91\x14\xa0\xa3\x49\x6d\x16\x62\x8d\x4b\x12\xc5\x2a\x72\x54\x7d\x1b\xe9\xaa\xc1\xd6\x3d\x1e\xaa\xbf\xcf\xf5\x3e\x8f\xfe\xc9\xc9\xf7\x2f\xc4\xf6\x3c\xf9\x1e\x2c\x1d\x4e\x0e\x95\xf8\xc2\xbe\xef\xba\xad\xf9\xb1\x2d\xe7\xe2\xbc\x60\x47\xc7\xb1\xba\x2a\x1b\x95\xe3\xeb\x4b\xb0\x23\x2c\x10\x17\xbc\xd0\xaa\x62\x80\x1f\xb3\xbe\x9b\xf6\x74\x48\x32\x99\x0b\x0f\x53\x0b\x25\xae\x02\xa1\x25\x93\x12\xfd\x7f\x68\xc6\x07\xb3\x4a\xf3\xd1\xc1\x2f\xc3\x25\xe9\xfa\xcd\xcd\x5b\x33\xfb\x85\xd8\x61\xb9\x3d\x53\xac\xdf\xf8\xba\xae\xa6\x78\x59\xde\x38\x8b\xa9\x84\xb6\x05\x7f\xb8\x2a\x4f\x49\x3f\x7c\x43\xe3\x2d\x7b\x9a\x15\xf1\xa4\x55\x41\x6b\xdb\x8b\x4a\x95\x37\x55\x0f\x47\x29\x91\xc3\xe7\x5f\x2e\xbe\x18\x8c\x41\x2a\xc5\x7f\x7c\x9c\x83\xe1\x20\x3c\xf0\xb6\xaf\x37\xb4\xa3\x7f\x81\x30\xb8\x0e\x33\x77\xfe\x35\x52\x7f\x4d\x51\x2d\x9b\xb2\x67\x3a\x55\x15\x6a\xb2\x0e\x9b\xd4\x56\xd6\xf9\x62\x88\x6a\xa3\x36\x42\xda\xbb\xd7\xdc\x48\xbd\x9a\x6c\x54\x6b\x4b\xea\x38\x5d\xda\xd3\x56\x98\x96\x5f\x15\x62\x4d\xb2\x79\x87\xfc\x1b\x75\xe1\x24\x8b\x6b\x3a\x15\x1b\xde\x3c\x14\xd7\x1b\x92\xf3\xb5\xad\x72\xa4\xaf\xc1\x23\x88\xc4\x36\x62\x5d\xfd\xc1\x1f\x44\x91\x5c\x5c\x35\x6d\xab\x57\xdd\xf0\x48\x8a\x40\x36\x6a\xd3\x82\xa1\xc3\x9e\xee\x3a\x62\xbf\x04\x7a\xab\xa1\x8d\x37\xb3\x68\xaf\x07\xcb\xc3\x6e\x0f\x32\x98\xc3\x0e\x21\x4d\xff\x42\xe5\xec\x28\xb2\x0c\x92\x01\x86\x0b\x8b\xcc\x2f\x25\x4e\x39\x77\xd6\xb6\x58\x6a\x4d\xe6\xab\xda\xe8\x7a\xa4\x93\xc3\xb3\x4a\x2a\xa1\x2a\xae\x61\x12\x77\xc6\x9e\x95\x2c\x86\xed\x92\x9d\xbe\xbf\x2d\x29\x4c\xa3\xa6\xcf\xa6\x7d\xd3\x93\xed\x3b\xda\xa8\xa3\x0e\xc6\x9b\x76\xaa\xa9\x2c\x34\x37\xa3\x89\xe7\x03\xee\xc3\xd5\x49\xf7\xdb\xf8\x73\x07\xe8\x87\x45\x59\xea\x35\xbc\x96\x6e\xd8\xf9\x77\x6d\xbf\x4d\x46\xe2\xbd\xc2\x66\x2f\x19\x1c\x7d\xe7\x4e\xa8\x65\x2f\xcc\x22\x24\xfb\x95\x0b\x8b\x3f\x65\x00\x45\xab\x25\xf2\x81\x0f\x1a\xc8\x8c\xa1\x26\x68\x1b\xd9\xae\xe2\x4a\x88\xf4\xb9\x12\x9a\x81\xd5\xa9\x0f\xb8\xb7\x88\x0c\xda\x49\x5e\x0c\x4c\x05\x39\x34\x1a\x87\xc8\x19\x56\xee\xdf\x34\xd0\xee\x1d\x6c\x5e\x2a\xdd\xc4\x94\x70\xcb\x20\x5e\x20\xcb\x10\x7b\x46\x10\xe9\x3b\xa6\x6b\xdf\xb7\x72\xc7\xd2\xd8\x1a\xfa\x15\xe9\x17\xd0\x3e\x5e\xe7\xa9\x49\xae\xc9\x1e\x84\xea\xf1\x66\x86\x33\x6f\xd3\xc1\x96\x93\x69\xb2\x07\x29\x72\x9e\xd7\x0d\xd3\x8e\x6c\x9a\x77\xeb\xc6\x3a\x43\x68\x85\xc3\x0c\xfb\x19\x19\x58\x6d\x05\xc5\xbd\x9a\xd2\xce\xec\x29\x10\x6b\x67\x4d\xd2\x0e\x1b\xd0\x21\xc0\x10\x1f\xde\xe8\xab\x54\xdb\xa8\x53\x68\x9c\xbe\x8e\xde\x04\x15\x91\xe8\x83\x2b\xc0\xb0\x75\x0d\x4b\xe9\x42\xb7\x24\xb2\x7d\xaf\x47\xfb\x3b\x3a\x1f\x75\x74\x40\x4a\x4c\xe7\xfd\xa5\xb2\x79\xd8\xe2\x07\xc6\x69\x82\x96\x39\xa6\x76\x44\xbc\x58\xac\x54\x74\x0d\x5c\x01\x7c\xe4\x40\xc2\xd3\xb9\x34\x48\x7e\xd2\xda\x17\xa7\xb0\x23\x56\xe2\x2c\x72\x3e\x0e\x71\x46\x90\xa0\xe8\x68\xcb\x61\x39\xec\x71\xba\xe8\x6f\xd0\x93\xad\x00\xc0\x62\xa8\x94\x96\x03\x56\x09\xd2\xae\xa1\x2d\xc9\x51\x20\x02\xef\xd0\x23\x98\x5f\x43\x3d\x64\x82\xaa\xf9\xbc\x06\x68\xe8\x86\x4b\x23\x60\x40\xf1\xe7\x13\xf7\x69\x28\x86\xb6\x3f\xac\x89\xbc\x25\x18\xfc\xf8\xe9\xe0\x5b\xda\x45\x76\x68\x0f\xc7\xcd\xdb\x26\xe9\xa5\xb7\x3c\x72\x80\x07\xd6\xa2\x93\xd1\x30\xb7\xff\x54\x94\xc4\x6b\xc3\xa7\x16\x37\x7f\x6a\xe0\x07\x8d\x57\xb4\xcf\xce\x1b\xb2\xca\xce\x71\xdc\x66\xd9\x68\x0c\x64\xbc\x11\x0f\x06\x60\xdc\xbc\x2d\x74\x15\xb9\x88\xe9\x47\x00\x66\x30\x8c\x92\xf3\x68\xb1\x8b\x30\x3b\x37\x07\x06\xb3\x53\x6c\x94\x2f\x5b\x55\xaf\xce\x22\x5e\xf0\x94\x34\xbe\xdd\x5f\xe0\xdf\xbb\x56\x6d\xcc\x08\x58\xa7\xc5\x94\xe0\x78\x39\x53\xf5\x5a\xc3\xbb\x49\xdd\x78\x97\x92\xd8\x07\x1c\xd2\xa0\xac\x50\xee\xc5\x61\xb1\x7b\x93\xad\x5b\xa9\x8d\x93\x1d\xdf\xc1\xaa\x37\x5d\x53\x7d\x50\x3f\x91\x4f\xae\xa1\x3d\x7c\xde\x90\x06\xd4\x70\xf4\x11\x70\x06\x64\x9a\x28\x3e\x81\x6a\x0f\xbc\x46\x6c\x3e\x17\xdd\xd5\xfc\xb8\x5f\x96\x85\x81\xa6\x23\x06\x1a\xe1\xb1\xd3\x70\x52\x94\x65\x73\xa9\x5b\x33\x3f\xd1\x1b\x41\x2e\xd6\x52\x81\x05\x13\xc7\x81\xa0\x62\xf7\x3c\x6d\xdb\x6b\x42\xe8\xfa\x1a\xa0\x16\xae\x1d\x7c\x89\x68\x07\x24\x41\xef\x9f\xb1\x2c\x83\xc4\x6c\x2f\xa8\x7d\x14\xf0\x63\x59\xfd\x67\x77\xcc\x67\x2c\x4c\xe1\x6b\x89\xc4\x6f\x68\x4c\x9c\x81\x04\x40\x2d\x86\x22\xc3\xb6\xb7\x1f\xf0\x40\x2b\x58\x45\x65\xf9\xc9\x85\x92\xd0\x5a\xb9\x80\x93\x63\x17\x6b\x32\x72\x9f\x5b\x0e\x68\x52\x2b\xc1\xf9\xbf\x5c\x04\x57\xa1\xd9\xf4\x94\xd3\xf5\xb2\x58\xb1\xd3\xc5\x84\x43\x52\xde\x91\x66\xa0\xa6\x7c\xfc\x51\xae\x4b\x4d\x06\xee\x43\xd9\x3d\xd6\x41\xd1\x17\xc9\x5c\x1e\x3d\x04\xd0\x5b\x2c\xcc\xca\x07\xc8\xd8\x75\x82\x37\xd8\x87\xc9\xb8\x48\x2a\x3e\xc9\x88\xad\x56\xaf\x9f\x40\xcc\xd9\x86\x50\xf5\x98\x43\x7b\x55\x65\x60\x14\xd3\x46\x64\x77\x41\x7c\x76\x27\x1e\x00\x67\x76\x17\x03\xb3\x5b\x0c\x05\x71\x78\x62\xf7\xc2\xbb\xd1\xe1\x8f\x95\x22\xed\x06\x5c\xaa\xf2\xb1\x65\xe0\x06\xa7\x08\xcc\x61\xb5\xe0\xb8\x28\x6b\x93\x39\xcb\x6f\x32\x12\xad\x6c\x56\xee\x4c\x6d\xe0\x5a\x27\x84\x6d\x73\x78\x3a\x1d\x6e\xdc\x4e\xb1\xd1\x63\xc3\x72\xef\xa6\x16\xd0\xdd\x56\xa2\x2a\x05\x33\x44\x82\xda\x54\x88\x9b\x08\x3e\x73\x9c\xcf\xd8\x4d\x39\x8e\x2d\xf3\xd4\x66\x39\x8d\x19\xd5\x95\x15\x19\x2a\x6a\x8c\x7d\xd7\x46\xd4\x93\xe0\x0a\x27\x7d\x70\xcb\x2e\xa0\xaf\xb3\xf8\x28\x9d\xe3\x3a\x94\x3b\x15\x77\x0e\x19\x6a\xb1\x52\x26\xf8\x2a\x9c\x13\x04\x5e\xed\xa2\xee\xf5\xfc\x85\xeb\x6d\x22\xa4\x49\x8b\xbc\x4f\x99\x4d\x38\xfe\x63\x00\x5f\x57\x23\x96\x33\xdd\xd0\x79\x1d\x5c\xfb\x73\xf1\x3b\x34\xce\xeb\x20\x81\x04\xbd\x0f\xec\x73\xfc\x0b\x3b\x9c\x1d\xfd\x38\xb4\x19\x32\xc3\xa6\x31\xd6\x8d\x6d\x81\xe3\x23\x03\xeb\x65\x15\x4f\xf6\x08\x38\xbb\xe4\xb6\xc5\x89\x3f\xfc\x70\x15\x97\x45\x99\x17\xa8\x06\x5b\x9e\xd4\x48\x0b\x3e\xb3\x93\x45\x51\x21\x86\xf1\xb0\x5f\xdf\xbc\x0d\x87\x4d\x1c\x4d\x07\x25\xc4\x58\x8e\x82\x91\xc0\x50\xea\x66\x80\x83\x70\xac\x35\xd0\x9a\xaa\x84\x30\x2d\x10\xb3\x01\xb0\x7b\xc8\x13\x75\x35\xdb\xd2\x93\x14\xaa\x98\xb3\x59\xba\xf3\x3c\xcc\xef\x04\xeb\xe4\x69\xca\x3c\x3e\x1f\xf4\x87\x4a\x5e\x11\x96\x08\x41\x5f\x45\xc2\x04\x5d\xd1\x84\xf1\xf1\xc8\x6a\xd2\xca\x7b\xa2\x54\x7c\x58\xe5\xfb\x9d\x8d\x60\xf3\xd3\xb4\x96\xe7\x70\x66\x5e\x70\xab\x19\xed\x80\xb5\xca\x59\xcf\xc4\xa1\x2f\x69\x50\x5b\x39\x8f\x00\x0f\xe2\x6d\x60\x79\xd8\x79\xe3\x94\x64\x99\x30\xe3\x84\x4d\x36\x33\xb0\xd4\x8c\x8f\x76\xb4\xc5\x71\xc0\xa3\x1e\x56\x15\xab\x8f\x37\xf1\x71\x5b\x54\xec\xf7\x1d\xb2\xd6\x94\x97\xb2\xfb\x18\x87\xe7\x4d\xa2\x71\x48\x70\x03\x58\x62\xae\x2c\x97\x84\x39\x4e\x7d\xaa\xf6\x2a\xf4\xed\x3f\x59\xc7\xb7\x0b\x94\xec\xd8\x05\xb1\x95\x6a\x8d\x93\x1e\xb6\x92\xc8\x10\x1c\xe4\xe6\xbc\x59\xe4\xab\xd3\x00\xdc\x91\x4f\x02\x75\x21\xb5\x87\x35\xbd\xab\xd3\x17\x2e\x92\xa3\x04\xb8\xcf\xe7\x87\xb4\xe2\x97\x59\xfc\x9d\xda\xa1\x6e\x76\x06\x2d\x96\x2c\xe4\x0c\xf5\xa0\x03\x46\x07\x07\xdb\x52\x2b\x42\xd6\xea\x4c\xaf\x36\x19\x9c\xf5\x59\x51\x2f\x9b\x57\xd9\x65\xd1\x9d\x15\x24\x90\xce\xc8\x68\xd5\xaf\x3a\x9c\x18\x9c\x35\x88\x54\xa2\xe6\xc4\x05\xb6\x98\x27\x97\x26\x03\xca\x41\x01\x5b\x08\x1e\xd2\x74\xf7\x60\xd2\x93\x6b\x95\xd0\xda\xd6\x4d\x5d\x76\x91\xa5\x0c\x2f\xf8\x63\xda\x18\x28\x01\x18\x17\xe6\x51\x40\x9e\xb3\x81\x44\x71\x60\x9a\xb9\xf9\x53\xc1\xd6\xab\x51\x6c\xd5\x9b\x54\x6c\x92\xcd\x17\xc5\x76\x2b\xd6\x7b\xa3\x51\x40\x22\x19\xaf\x2d\x58\x29\x73\xff\x03\x0e\xdd\x32\x72\x4e\x01\xa7\x01\x89\xe8\xdd\x3b\x90\xc8\x4c\x46\xb5\x4c\xf8\x9e\xe9\xda\xa6\x5e\xdf\x7f\xa9\xce\x15\xe2\xd2\xd7\xd8\x9b\x3e\x46\xfd\xeb\x7b\x77\x6d\x79\x76\xb8\x25\x85\xa0\xf3\xa6\x17\x51\xd7\x8a\x23\x3d\x40\x6d\xf7\x54\x76\xd6\xea\xd3\xf9\xa7\x77\xcc\xa7\xf7\x77\x7f\x46\xa0\x21\x9c\x7a\x09\x1e\xee\xdd\x55\xf7\x59\x7e\xa1\x41\xdd\xe0\x94\x86\xb4\x99\xa4\x25\x1f\x92\xc0\x89\x46\xf0\x77\x0d\x8f\x61\xb8\x93\xad\x0f\xb8\x45\x2f\xb3\x40\xbf\x29\x5a\x63\xf3\xd2\xeb\x64\x91\x23\x86\xf5\xa1\x55\x46\x1f\x33\x3e\xcb\x25\xca\xf3\x74\x88\x0a\xb3\xd0\x88\x25\xf2\xb0\x11\x08\x90\x60\xab\xe0\x34\xa1\x7f\xd0\x56\x95\xad\x56\xf9\x55\xc6\x9a\x3f\xf7\xe0\x5a\x23\x2e\x67\xec\x2c\x46\xa9\x1d\x9b\x04\x0e\x09\xf0\x40\x1f\x9e\x2a\x8f\x68\xcf\x70\x1c\x1f\x0d\xc9\xca\xa9\x07\x92\x6a\xea\x3c\xb3\xf5\xa0\x19\x5d\x7d\xe2\x37\x38\x50\x11\x6f\xef\x48\xb3\x87\xfa\xc3\x1e\x08\x99\xd0\xee\x0d\xc2\x22\x5c\x0c\xb0\x67\x47\x2c\xa4\xbc\x8e\x2f\x41\x2e\x86\xad\xcf\x48\xcb\xb7\x53\x00\x1d\x59\x8d\xe5\xc5\x19\x11\x2e\x40\xa5\xff\xd0\x3f\x6d\xd6\x0c\x83\x65\xff\x85\xf8\xd7\x95\x89\xf7\x8a\x28\xc3\xf1\x4e\x89\x88\x1a\xb6\xa3\xa8\xc9\x8d\xb1\x71\x47\xfe\xfc\xd8\xee\x10\x5d\x74\xe2\x39\x13\xb9\x0a\xef\x23\x87\x60\x99\x54\xbd\x16\x8d\xa7\x68\xe3\xde\x8b\x64\x33\xa5\x9b\xa5\x97\xcd\xd2\xef\xd9\x2c\x7d\xbd\x2c\x6a\x18\x30\xae\x2f\xf7\xc9\x2f\x98\x55\xef\x21\xfb\xf9\xb0\x55\x78\x87\xf2\x0d\x4c\xcc\x31\x14\xb7\x59\x74\x0d\x1c\x8a\x09\x2e\xc8\x72\x6a\xd8\xff\x63\x6c\xc8\x52\x7f\xc1\x07\xb5\x65\x53\x03\x17\x12\xbf\x6b\x0f\xeb\xa5\xf9\xee\x7f\xba\xad\x26\x8c\x5b\xea\x92\x65\x8a\x52\x63\xd7\x07\xdf\x2c\x48\xfd\xf5\xee\xcf\xbb\x37\xd2\x04\xf6\x3a\x8b\x4c\x91\x96\xc4\x43\x1d\x25\xd8\x93\x57\x17\x35\xd5\x4b\xb0\xea\xe1\xf1\xa3\x99\x48\x7e\xee\xdd\x4a\x3a\x12\xe3\x38\xae\xe5\x75\x20\x4b\x9a\x01\xc0\x1f\x8c\xfd\x12\x7a\x81\x9b\x49\xba\x00\x16\x46\xd9\x29\x0c\x62\x72\x6c\xe3\xe7\x3a\x9c\xa7\x9b\x61\x5a\x41\x56\x02\x07\x4a\x7c\x5e\x3d\xc4\x9e\x19\x31\x73\x20\xc2\x76\x69\x3e\xc9\x8e\x47\x6e\x40\xaa\xcd\x5e\x18\xc2\x4a\xdd\x6c\x1a\xe8\x66\x05\x7d\xa6\x4d\x43\x5f\xd8\xe2\xb1\x57\x4d\x88\x5a\x92\x50\x58\x78\x08\x70\xf6\xd6\x85\x8d\x29\x53\x70\x5b\x33\xfe\x38\xd4\xe2\x1c\x01\x80\xed\xbd\x7f\x0e\xce\x17\x41\x13\x38\xd2\x64\x7f\x55\x88\x9f\x00\x45\xc3\xa2\x4a\x9c\x1e\x0d\xec\xa3\xa5\x58\x67\x70\x0d\x70\x80\xdb\x20\xa6\x97\xbe\xc9\xbe\x09\x84\x70\x2e\x92\xce\x42\xec\x0e\xcc\xad\x19\x1a\x1f\x96\xdb\x1a\xf6\x98\x9c\x5d\x48\x2e\xa4\x85\xa9\x80\x95\x18\x07\x2f\xed\xab\xd8\x02\x39\x60\x79\x20\xc7\x95\xe2\x35\x72\x12\xe9\xe8\xdb\xc3\x17\xdf\x3d\x7f\xf4\xed\xbf\x7c\x7b\xf4\xe8\xe4\xf1\xa1\x97\x44\x9f\x84\x68\xb5\x01\x68\x87\xd1\xa9\x78\x86\xc1\x6c\xdc\x69\x5a\xcd\x86\xcf\xc9\xad\x13\x57\x4b\x8d\x6a\x05\xa9\xec\xf7\xb4\xf0\x86\x75\x5b\xe8\x6b\x5d\x23\x22\x2f\xb3\x2b\xb0\xdf\x30\x63\x57\x02\x7c\x2a\x3f\x93\x62\xcd\xbe\xdf\xdd\xff\xf2\x1e\xb3\xe8\x84\x63\xef\x01\x66\x38\x03\x71\xd1\xe8\x6a\xc9\x51\x45\xd7\x8d\x8d\x9c\x77\x95\xd9\x30\x25\xec\x12\xff\xc3\xa5\xb6\xc2\xf2\xb4\x0b\xb9\xea\xa6\xa2\xa0\x13\xd2\x30\x1d\x92\xfb\x1a\x8a\x67\x59\x78\xec\xd2\x92\x63\x2f\x93\x25\x01\x29\xf0\x9c\x8f\x83\xe4\xb6\x1a\x7f\xc6\x57\x1f\xbe\x7d\x66\xaf\x0e\xc9\x7d\x96\x8c\xef\xa1\x6d\x15\xa9\xaf\xc4\xff\xcd\xfc\xd3\x1e\x70\xe6\x19\x62\xa6\x3e\xbd\x4f\x7a\x2b\x59\x2e\x9a\xc6\xa1\x1a\xf7\xd9\x4b\xb3\x11\x97\xe3\xa1\xbd\x88\x14\x3b\x16\x7b\x5b\x81\x63\xaa\x7d\x85\xba\xb1\x9f\x47\xa0\xb8\x2a\x2a\x8d\xbe\xaf\x86\xbe\xed\xc8\xed\xe8\x0f\xbb\xa0\xc5\x58\x3c\xf3\x9a\x1f\x6e\x45\x03\xb3\xdf\x70\x5d\xcd\x5f\x55\xf3\x5f\xbc\x0d\xcb\x66\xa6\xd5\x8a\x66\xeb\xa2\x2b\xd6\x75\xd3\x6a\xb6\x01\xa9\x57\xd2\x1c\x88\x11\xc3\x0f\x40\xff\xaf\xb4\xff\x30\xd9\xbc\x94\x4a\xc6\x35\x26\x76\xd4\x2d\xa0\x5e\x54\xb8\xc9\x53\x40\x12\x4a\xa0\x0a\xbc\x24\x31\xb2\xa0\x2b\x3e\xff\xf6\xf0\xe1\xd3\x6f\x67\x55\xee\x5a\xdb\xc8\x2e\x46\xb1\x0f\xe9\x4a\x51\x9c\xeb\x53\xd5\x97\xce\x83\x39\x3f\x6a\x36\x65\x6f\x08\x53\x38\xad\x16\xe7\xa5\xbb\x81\x46\xd6\x5c\xa7\x21\xa9\xe4\x2a\xda\xee\xb7\xc6\x46\x24\xc8\x77\xa2\x20\x93\x7d\xce\xe1\x3b\xc4\x47\xbe\xd8\xe3\xc2\x7b\x1e\x48\x85\xf5\x27\xd6\x6d\x98\x84\xa4\xc2\x7b\x7d\x77\xc3\x0e\x6c\x1d\xdf\x11\xab\xd6\x52\x77\x26\xf7\xbd\x60\xb4\xf7\xb8\x29\x93\xdc\x62\x4a\x02\x80\x31\xc5\xb5\x88\x12\x84\x00\x3c\xf5\x37\xe6\xfc\x5d\xa4\xb8\x7c\x1f\xed\x5f\x16\x65\x49\x3a\x5a\xa6\xd2\x2d\x00\xda\xcf\x96\x65\xaf\x3f\xbd\x2f\x88\xf4\xf4\xef\x3a\xe5\xf5\xe1\x41\xdf\x0c\x97\xc7\x56\x99\xad\x88\xfd\x13\x5f\xca\x61\x97\x98\xf9\x03\xfc\xca\x0e\xe5\xd7\x9e\x4a\x91\x66\xb6\x22\x60\x18\xae\x70\xbf\xe2\xee\x77\x8f\x5e\xf0\xb5\x8a\xa6\xcd\xe0\x31\x2b\x6d\x84\x3a\xf0\x79\x36\x0b\x5d\xba\x43\x23\xae\x23\xf1\xab\x8f\xe4\x93\x6d\x86\x4f\x64\x57\x13\xaf\x6d\xb4\x60\x9f\xd5\x60\xf4\xcb\x4b\xc1\xb7\x5e\x56\xc0\xcf\xcc\x92\xc4\x86\x16\x84\xf7\xb4\xfc\x9d\xe1\xef\x68\xab\x93\xd5\x58\x9e\xce\xff\x7b\xd3\x03\x6c\x74\x81\x92\x18\xcd\x64\x0d\x7a\x95\x1b\xec\x34\x67\x61\xb0\xbd\x5a\x94\x45\xbd\x21\x96\x8e\xcb\xb6\xf4\x85\x76\xd2\x86\x44\xec\x02\x45\xf6\x2b\x1c\x5f\xf0\x45\x6f\x4b\x92\x8e\xfd\x05\xc7\x62\x22\xe6\x45\x8a\x25\x68\x0f\x86\xf8\xa6\x27\x85\x32\x48\x59\x74\x06\xc4\x4e\x5c\x1c\x4b\x0c\x25\x96\x62\x22\x79\xa3\xdb\x2b\x5f\x93\xd5\x54\xf1\xe5\x3f\xf6\x71\x91\xb1\x23\x67\x06\xf3\x4f\x17\x4b\xe2\x22\x9b\x4f\x23\xe3\x27\xba\x19\xcc\xa6\x12\xfc\x9f\x9f\x40\xd5\xbc\xe4\xb3\xf7\x23\x0d\x8b\x09\x37\xf5\xe4\xf7\x4b\xfb\xab\x47\x58\x2d\x22\x78\xe4\x08\x31\x71\xac\x73\x49\x30\x8f\x06\x4e\xf7\x76\xe3\xd9\x26\x6b\xe9\x75\x13\xc2\xdb\x95\xf0\x40\xda\x1c\xbf\xf6\xc0\xe5\xba\x2f\x72\x4d\xa2\xcb\xa8\x60\xfa\x29\x87\x1b\xb2\xca\x8d\xd0\xf1\x63\x9e\xfa\x98\x41\x25\x71\xa6\xcc\x43\xc9\x5e\xc7\x11\xe7\x30\xd8\x34\xe1\x6a\x72\x0a\x4a\xe2\x3c\x67\x6f\x47\x8f\x38\x15\xd0\x97\x8c\x75\xe4\x03\xd2\x8a\x6b\x17\x91\x55\x37\x51\x23\x04\x8c\xd9\x83\x97\x73\xb0\xab\x81\x68\xc0\x94\x2d\xe3\x3b\xb4\xbc\xae\x6b\x35\xf4\x02\x08\x66\x7b\xa8\x83\xfb\xc6\xa4\x25\x1b\xa9\xc2\x37\xb7\xe8\x67\xe1\xca\xb5\x2b\xc0\x61\x10\xdf\x3a\x5d\x4f\xdf\x12\x25\xf5\x4b\x97\x88\x79\xc6\x7f\xd8\x61\xa5\x26\x0b\x97\xec\x2b\xda\xfa\xee\x4f\x50\x64\x55\x15\x1d\x8e\x5d\x2e\x76\xef\xae\xc5\xf9\xdf\x6a\xf6\x86\x70\xbc\x74\x4e\xeb\x88\xa5\x83\x7f\xba\x55\x88\xf3\x44\x88\x58\x2b\x57\x4d\x8c\x2d\xa0\xc5\xe0\xdb\xa5\x2f\x39\x3a\xad\xd5\xf6\x33\x5f\xae\x40\xa3\xe7\xf6\xa0\xb8\x8e\x1b\xf7\xb6\x16\xd1\x78\xa5\x78\x2f\x1d\xbb\xbf\xd8\x65\x28\x80\xcd\xa6\x00\x74\x65\xe9\x5d\x57\xc2\xf5\xb8\xca\x29\xec\x28\x5b\x21\x7c\x05\x83\x6e\x5a\x89\x79\x8a\x2a\x57\xc4\xc7\xe0\x61\xfd\x17\x7b\xb0\x10\x15\xc1\x11\xca\x61\xf8\xf1\x47\x09\xde\x7e\x89\xf0\xf1\x4d\x11\x3e\x13\xc5\xd1\xe7\x1f\xd8\xc5\xb3\xe1\xd0\x67\x59\x1e\x14\xb0\xa5\xfd\x08\x3f\xe3\xaf\xb3\xc1\x62\x45\x25\x35\x84\x3f\x7d\x25\xe2\xcb\xb8\x38\x29\x5d\xd1\x4a\xb5\x0b\xdb\xfa\x01\x7e\x64\xe5\xb8\x0f\xbf\xf6\x61\xe9\x87\x63\x84\x2a\x34\xce\x74\x2d\x19\x2b\x54\x94\xe1\xaa\xc9\xba\xcd\x96\x4c\x8d\x50\xf5\x19\xfd\xcc\x62\xb2\x4b\xba\x6d\x0c\x02\x4f\xa3\x7e\xf1\x61\x5f\x75\x92\x71\xb8\x68\xaf\xe7\x87\xf6\x8f\x09\x18\x7d\x1d\x01\x51\x4d\xd5\x84\xe3\xc1\x55\xa3\x29\x8f\xea\x08\xf7\x98\x3f\xe0\xff\xc6\x2b\xe6\x16\x85\x56\x73\xb4\x2a\x52\xb6\xd8\x96\x6a\xa5\xdd\x6d\x00\x7c\x61\x0d\x82\x6f\x64\x27\x63\xd8\xae\xec\x48\x69\x6f\x8c\xc7\x4e\x2d\xe7\x77\xf2\x0c\x48\x0c\x4d\x81\x24\x57\x22\x18\xf3\x65\xb4\xad\x10\x4a\x2e\xdd\xa6\xfd\xc5\x45\xa4\xe7\x40\xf8\xc1\x5d\x7e\x84\x1b\x63\xf8\x8b\xf0\x5e\x4e\x35\xb8\x8d\x82\x86\x55\xf6\xf4\x3b\x26\x14\xdb\x70\xff\x8a\x86\x0a\xeb\x82\xbe\xef\xe9\x78\x5f\x33\xd6\xad\x5e\xd0\x3f\x53\x05\x33\xdc\x0b\xb1\x5c\xf3\x90\xf4\x28\xf9\x73\xba\xa6\xb1\xa9\x1d\x48\xba\x93\x32\xe0\xc0\xcc\x61\xb6\xd2\xef\xc9\x36\xb2\xb2\xf9\x62\x79\xc5\x4d\x64\x6d\xf3\x6c\x79\xb5\xb7\x45\x85\x20\x80\xa6\xc6\x8d\x2f\xb4\x78\xea\x7f\x4e\xb5\x30\x08\x83\x3d\xa1\x7f\xa6\x0a\x66\x48\x7e\x61\x3a\xd0\xa6\x36\xd3\x35\x40\x94\x54\xe3\x19\xff\x37\x59\x83\x94\x28\x82\x40\x0e\x80\x88\xf7\xe2\x47\x79\x95\xc9\xef\x11\xa5\xc9\xa8\x1a\xce\x79\x69\xf0\x04\x7f\x67\xed\x87\x34\xab\x1a\xd3\x81\x71\xc2\x3b\xf9\x94\xfe\xce\xec\x8f\xdb\x46\x71\xf5\x65\x98\x71\x03\xec\x1a\x46\xfe\x5c\xfe\xca\xee\xfc\xf4\xbb\x9f\x0d\xb0\xef\x7d\xbf\x77\xef\xfc\xf4\xfb\x9f\x49\x05\xe2\xff\xa0\xfc\x8c\x1b\x2f\x4e\xd5\x46\x8f\x7a\xe0\x06\xbe\xf2\x96\x64\x4e\xd1\xf4\x90\xbc\xf2\x47\xc4\x07\x5e\x61\x09\x5e\x75\x83\xbd\xcc\x8e\x80\xf1\x56\xce\x6d\xc9\x60\x2b\xd7\x7d\xb5\xb0\xf3\x33\xd8\xe9\xee\xef\xd0\xd8\x4d\x7e\xa1\xba\xf9\x2f\xfe\x17\xd9\x52\x98\x6b\x91\x93\xa2\x07\xc8\x9d\xd6\xf7\x4f\xf2\x2b\x4c\xfb\x97\x30\x54\xe3\xbd\xc4\x2f\xce\x34\xd9\x93\x6c\xdd\x78\xaf\xf5\x95\xee\x66\x03\xee\x23\xd9\x22\x18\xe2\x41\x89\x85\x23\xae\x91\x91\x5e\xe3\xc0\xf7\xb5\x5b\xcd\x48\x91\x6a\xcf\xf9\xc7\xb0\x2c\xed\x4a\xea\x4c\xf6\x65\x99\xa9\xa3\x8d\x07\xc3\x62\xc1\x32\x63\x49\x04\xcc\xdf\x8e\x22\x01\xc9\xf6\xe2\x7e\xfc\x1d\xfd\x90\x6d\xd1\xf1\xd5\x77\xfc\xe7\xbf\xf2\xe5\x20\x09\xb1\x0e\x34\xc3\xfe\x9b\x67\xf8\xd7\x7f\x73\xd7\x6e\x48\x9d\x26\x0b\x86\xf8\xe6\x09\x7d\xa0\x3d\x06\xcb\x25\xc3\x87\xb4\x66\x51\x2f\x5c\x78\x36\xeb\xda\xc4\xb5\x10\x86\x93\x75\x6c\xaa\x35\x35\x2e\x1e\xf2\xb1\xd5\x2c\x3b\xb4\x66\xce\x99\xba\xc0\x7a\x65\xd6\x2f\xf5\x75\x7a\x64\xc2\xc3\xa1\x83\xc6\xad\x41\xb2\x7f\x74\x5e\x74\xf3\x6f\xe9\x9f\x00\x06\x75\x37\x3f\xe1\x44\x3c\xf6\x8b\xc8\x1f\xa1\xf8\x20\x1a\x07\xc5\xab\xa6\x6c\x9c\xe4\xe4\xbf\x47\xe5\x70\xc0\xdd\xc9\x87\x1a\x8f\x94\x06\xc2\xe2\x8d\xc3\x64\x33\x60\xf2\x52\x71\x0c\xaf\x7c\x77\x21\x30\xfc\xdf\xa0\xcc\xde\x1b\x10\xd8\x9e\xe2\x87\x8d\xac\x99\xea\x03\xc1\x21\x52\xf3\xa1\xfd\xb9\xa7\x96\xac\x8f\x0c\x28\xcb\xc3\xe5\x62\xe8\xb7\xba\x6a\x68\x55\x0a\xdc\x80\xaa\xe1\xb3\x90\xa3\x46\x5a\x07\xc5\xa5\x25\x0b\x18\xdb\x6f\xf6\x90\x45\x53\x76\xa9\xe4\xa4\xd3\x05\x5c\x7c\xbd\x6f\xe4\x70\x43\x12\x03\xfa\xc3\x1f\xc1\xc1\xe8\xf8\x47\x72\xd7\x30\xf3\xc1\xe1\xfa\x42\x8e\xd0\x0d\xf6\x1c\x7e\x67\x0f\xe4\xf7\x9e\x6a\x32\x4d\x57\xb7\xbb\x6c\x32\x67\xd9\xf0\xbe\xae\x88\xeb\x92\x1d\x8f\xa6\x99\xcd\x8e\xc3\x94\x6d\x5b\xcf\x5c\xaf\xc4\xaf\x70\x0f\xbe\x24\xc6\x78\xd4\x64\xf6\x4f\xaa\xd9\xd7\xe2\x89\x09\x06\x8f\xd7\xbb\x23\xdd\x25\x2a\x1d\xeb\x58\x51\xe1\xa4\x9e\x35\x2c\xcf\x9d\xce\x7a\xc7\xa4\xe3\x92\x79\xdb\xd3\xb6\x83\x48\x24\x18\xe9\x6f\x44\xf3\x8c\x47\x9f\x4f\x0f\xeb\x58\x6b\x3a\x13\x5a\xab\xe5\x19\x6d\x53\xe2\x0b\x56\x65\x0c\xe5\x58\x6b\x1b\x49\xa9\xed\x31\xb6\x2c\x77\xda\x79\xa2\xda\x4e\x23\x45\xf6\x26\x5f\x43\x49\xbe\x5b\x12\x35\xab\xb6\xd8\x0a\x29\xc7\x85\x6e\xb2\x0f\x69\xa6\x0f\xd1\xf9\xe7\x2e\x37\xc6\x17\x83\xe9\x91\x5e\x2e\xda\x79\xf2\xdd\x5f\x7d\xb6\x1d\x2d\x84\xd0\xb9\x3f\xfc\xce\xe4\x37\x44\x93\xad\x7a\x90\x55\x3d\xae\x99\xe8\xec\xb3\x2b\xea\xed\xcb\xaa\xfa\x32\xcf\x3f\x9b\x9a\xaf\xa7\x71\x3f\xe1\xc1\x49\xa7\xd5\xd9\x86\xc4\x1e\x75\xe4\x59\xc5\x1e\xa4\xa1\x3c\x5a\x9e\x1f\x49\xea\x2d\x35\xfc\x85\x59\x1e\x30\xc6\xc4\x1c\x2d\x99\x69\xb2\x2d\x89\x92\x52\x67\x97\x4d\xfd\x19\x4f\x05\x67\x0d\xf6\x70\x38\x9e\x86\x44\x48\x3d\xe0\xff\x92\x12\x77\x8d\x89\xff\xbb\x1d\x36\x41\x81\xdd\xa0\x59\x73\x1a\x20\x19\x60\x03\x4c\xfb\x36\x5c\x78\xd6\x16\xd0\x19\xd8\xdb\x44\xbd\x31\x73\x0b\x23\xff\x43\x19\xdc\xd4\xd8\xe3\xa5\x7f\x3f\x8b\xdb\x93\x0e\xcc\x7d\x9e\x09\x65\x1b\xda\xbb\x36\x66\xd2\x97\x44\x37\xae\x09\x3f\xe1\xae\x75\x54\xe5\xac\x69\x36\x66\xfe\x02\xf7\x28\x36\xb8\xcb\xbd\x7b\xbd\xfb\x4b\xdc\xf9\xba\xe8\xa4\x0a\x32\x0f\x0d\x0b\x97\xca\x14\xab\x90\x77\xec\x58\x55\x7c\x04\x34\x05\x64\x8e\x75\x6e\x17\xd7\xb0\xdc\xbe\xe1\xe3\x65\xc4\x49\xd3\xcf\x18\x18\x0e\x6a\x7c\x66\xd3\x15\x50\x71\x15\xc7\x37\xfa\x5a\x36\x18\xcc\x0f\xeb\xaf\xa4\x87\x91\xfb\x04\x0b\x12\x57\x05\x07\x18\x9f\x36\xd9\xfa\x66\xcf\x5d\x8d\xfd\x2d\x85\x72\xa6\x0f\xab\xfe\x61\xc1\x8a\x3e\xce\x85\xa3\x60\x86\xce\xc4\x59\x04\x5d\x47\xc2\xca\x9c\xea\x10\xf8\x1c\x85\x92\x4f\x54\x13\xe8\x5d\x5d\x4e\xb4\xb4\x27\x9a\x1d\x59\x3b\x24\xc7\x4c\x94\x0d\x05\x13\x4a\x62\xe8\x25\xc8\x26\x5c\x99\x9d\x4e\xe3\x61\x62\x88\x39\xb9\x1e\xdf\x75\x41\xd0\xbf\x91\x03\x12\x9b\xcf\x4f\xe1\xc4\x2a\xba\xd4\x52\xb9\xf0\xe6\x38\x3f\x9f\xa0\x64\xf7\x3a\x0f\x27\x7f\x09\x4a\xd2\x68\xe1\xb1\x27\x76\x50\xd1\xb2\x02\x3e\x06\x1d\x1c\x10\xf1\x39\x22\x67\x13\x93\xe3\x6e\x33\x3c\xec\x46\xe2\x92\x6e\x7d\xf3\xae\x73\x77\x53\xfc\x69\xaa\x49\x6e\x6b\x60\x65\xed\x95\xa3\x0e\xbe\x73\x8e\xfb\x0d\x84\xd1\x64\x72\x64\x3e\xb5\xb0\x9c\x2e\x88\x78\xc1\xfc\xde\xf6\xfe\x97\x12\x9f\x71\x8d\x2b\x25\x12\xbc\xe1\x0e\xc9\x8b\xd4\xb5\x7b\x40\x78\x63\x87\x32\x22\x32\xa2\x1b\x0a\x40\x65\x51\xe7\xc5\x45\x91\xf7\x7c\x64\x15\x6e\x09\xcc\xee\xdd\xdd\xde\x0f\x63\xb8\x90\xc9\xf1\x28\xb7\x0e\xa2\x0b\x19\x24\xbd\x40\xd1\xd7\xd2\xa9\xbd\xd7\x81\xeb\x09\x64\xcb\x71\xe2\xaa\x00\x5c\xa1\x2b\x86\x61\xff\x26\xf7\x8c\x33\xd9\x7d\x8d\x70\xbc\x7d\x41\xc9\xca\x4c\x62\x55\x4c\x99\x1f\xc6\x28\x8a\x2a\x43\xf7\x5b\x0c\x37\xd8\x54\x67\x12\x7c\x91\xa7\x70\x0d\xd0\x3e\x15\xb4\x99\x80\x96\x1e\xe9\xef\x3d\xca\xf7\xf5\x11\xe2\x14\x78\x7b\xd3\x8e\x82\x18\xf9\x34\x45\x1c\xdc\x43\x76\x30\x6c\x1b\xe2\x30\x38\x7c\x64\xd0\xd2\x85\x12\x49\xef\x09\xd0\x22\x26\xa7\xfb\x7a\x32\xec\x85\xe3\x37\xec\x55\xaf\xa4\x17\xbe\x4a\x56\xf0\x0d\xa0\x85\x64\x89\x88\xd2\x1c\x8e\xc8\x29\xdc\xfe\x01\xab\xac\x35\x32\x1c\x75\x38\x77\x0a\x20\xf2\x61\xd4\x70\x16\xb3\x01\x02\x2e\xf5\x12\x52\x2d\xc2\x5b\xb7\x57\x02\xb2\xf8\xb3\x87\x8a\x69\xa5\x0c\x57\x26\xce\x5d\xfc\x3f\xc4\xa3\x24\x98\xa8\x6c\x6e\x2e\xfc\x85\x7b\x5a\xd4\xbf\x64\x97\xad\xe4\x94\xad\xa9\xe8\x4f\x3b\x85\x86\x63\xba\x42\xfe\xdd\xdd\xeb\x59\xf6\x58\xe5\x2c\xcc\x78\x0b\xf2\x84\x72\x63\xcf\xe7\x2a\x9e\x3a\x51\x5f\x65\x47\xa3\xc9\x4a\x43\xbe\x63\x6d\x03\x35\x42\x56\x8a\xe3\x67\x27\x2f\x92\x44\x9e\xa4\xb1\x3c\x41\x16\xbe\x6b\xbe\x36\x8b\x34\x62\xbb\x77\x1b\x0e\x3b\x0c\x01\x8e\xb7\x1e\xd5\xa5\x38\xe8\xb3\xb6\xa1\x79\xe0\xd8\x98\x64\xff\xee\xb5\x0d\x51\x1c\xa9\x0f\x36\xaf\xa6\xd5\x21\x7a\x49\xc3\x20\xe7\x2f\x7c\x87\x0d\x18\x98\x09\xa7\x90\x90\x2c\xd0\x14\x62\x45\x91\xe5\x08\x01\x72\x19\xae\x56\xc9\xf1\xbe\x71\x71\xa2\x50\x20\x38\xc7\x82\x4d\xa2\x00\x24\x73\xda\x52\xd2\x1d\xd6\x0d\x24\xa8\x4f\x2e\x33\x01\x13\xdb\xdb\xf6\x2a\x88\x5d\x50\x1b\xb8\xbe\x21\xdc\x5d\x98\x03\x41\xa6\x0b\xb7\xe3\xa8\xa4\x0a\x81\x9b\x4c\x61\x51\xc8\xd8\x2c\x3b\xec\x00\xcc\x79\x23\xb3\xb3\x79\xfa\x7a\xb9\x6d\x0e\x49\xa2\x8c\xeb\xcb\x5e\x1a\x98\x84\x87\x95\x93\xdd\xff\x40\x07\x53\xca\x88\xab\xe6\x7c\x63\x52\xd3\xd8\x38\xca\x21\xe3\xb4\xb5\x61\x47\x37\x63\xc5\xcd\xee\x5d\xee\xcf\xed\xd9\x01\x71\xdf\xb2\x67\xa3\x1d\x24\xf8\xfb\xf1\x3a\x5c\xc2\x6c\x26\xe9\xf0\x1e\xf2\x3c\xdc\x07\x35\xde\xbb\xcb\x7f\xa6\x44\x99\xc9\x2e\x01\x81\xcb\x3d\x13\x12\x08\x31\x35\x84\x2b\x9e\x1c\x2c\xc5\x49\x3e\x6d\x26\x40\x09\xa2\xca\x83\xb0\xf6\xb2\x55\xf2\x8b\x75\xd9\xe7\x3f\x9c\x3c\x3b\x3a\xb0\x20\xbc\xfa\xf2\xf2\xf2\xf2\x4b\xb4\xfd\xb2\x6f\x4b\x5d\xe3\x63\xee\x60\xba\xa7\xab\xfb\x7d\xd7\x91\x2c\xa2\x3f\xbe\x20\xdd\x5e\x77\x36\xec\x84\xa9\x4f\xac\x01\x7b\x07\x0f\xe2\x34\xa8\x02\x6e\x3f\xfd\x23\xf7\xce\x56\xf2\x28\x70\x2e\xc9\x34\x91\x42\x2c\x38\x40\x0b\x72\xc2\xc0\x21\xb5\x50\xbc\xb6\x31\x3d\x18\x4d\xe6\x24\xce\x29\x10\x90\xbb\x4d\x49\x4a\x5f\x68\x17\xec\xf5\xd8\x2a\x55\xbc\x06\x38\x8b\xbe\xee\xcb\x4e\x12\x2d\x76\xbc\xad\x8a\x6b\x90\x24\x62\xc1\xec\x24\x70\x07\x99\x09\xe5\xeb\x51\x8f\x7c\x5c\xdd\xd4\xe5\x15\xe7\xb2\x2b\xdc\x21\x75\xef\x29\xc2\xea\x49\x76\x38\xac\x76\x4c\x5e\x9c\xa9\x06\xc9\x69\xb0\x0d\x47\x05\x3e\x0a\x25\x21\xb1\x22\xa5\x1f\x70\xc9\x1c\xa5\x96\xc9\xf0\xd5\x47\x63\x01\x1e\xd2\x72\xb2\x0d\x44\x0c\x76\x93\x9b\x61\x2a\x22\x3e\x95\x66\xb2\xf9\x9c\x78\x79\xea\xe3\xad\xf6\x09\x17\xdb\xe0\xd6\x8d\xd8\xed\xbf\xd4\x62\xc6\xca\xaf\x1f\xdc\x2a\xc1\xfb\xc7\x96\x53\x11\x28\x1d\x05\xee\x32\xe3\xd4\x5e\xa2\xa3\x6d\x08\x26\xd2\x38\x6a\x33\x90\x84\x42\x6a\xc2\x7b\x6c\x88\x50\x82\x4b\x53\xaa\xd5\x66\x11\x58\xc3\xf1\x23\x27\x61\x53\xd7\x2d\xaa\x71\xa8\x07\x82\xa8\x6c\xd4\x51\x6f\x63\x23\x23\x7d\x96\x33\xd6\x06\x5a\xe6\xce\x25\xa6\x54\x42\x7b\x47\x85\xc3\x74\xb1\x83\x62\x58\x74\x48\xcb\xfd\x18\xd7\xe3\x4a\x93\x60\x6f\x5b\x36\x57\x72\x9f\xe1\xd1\xf5\x05\xeb\x20\xc9\x6d\xc6\x78\x96\xa1\xf2\xfc\x30\xcf\x89\x4f\xe0\x67\xf6\x58\x5f\xc5\xc6\x4e\xb3\x88\xfb\x44\x60\x0f\xdc\xd9\xf0\xac\x48\x28\xbb\xaa\xaf\x32\xa9\x81\x10\xf2\x44\x55\x8d\x7d\x5e\x13\x10\x7a\x19\xf0\x40\xfe\x8f\x2a\xa5\x41\xff\x0f\x7d\xf7\xfb\x83\xfe\xe3\x96\x21\xf2\x3f\x6a\xf9\x41\x91\xff\x09\x7a\x86\x01\xfd\x61\x96\x1f\x12\xd3\x3f\x35\x61\xef\xe4\xb1\x7e\x9b\x49\x8c\x4f\xd4\x1f\x3b\x7b\xf2\x78\x62\xc1\xdb\x13\xbb\x76\x24\x4a\x1d\xb1\x88\x4d\x2b\x8d\x42\x14\xd6\x6d\x0e\x9f\x5b\x01\x71\xf8\x88\x10\xfb\x7e\xd7\x4f\x5e\x9c\x9e\xce\x96\x6d\x73\x69\x70\x83\xa0\x6f\x57\x9a\xa3\xe6\x6d\xfe\xcf\xe2\x5a\x9f\x4b\x62\xa4\xde\x56\x85\x23\x9b\xc8\xe2\x82\x03\x41\x8c\xfd\x28\xd1\x20\x73\x1f\x94\x62\x3f\x13\xe3\x51\x83\x24\x93\x27\x12\x86\x15\x25\x5d\xe2\x3b\x9f\x9c\x25\xa3\xd0\x1a\x99\x09\x67\xb6\xb5\x39\x6b\x2e\x17\xf8\x8b\xaf\x43\x18\x1f\x59\x63\x46\x5d\xa0\x1c\xd1\xd9\x1b\x07\x24\x37\x90\x85\x71\x91\xb8\x77\x72\xe7\x3a\xb1\x57\x08\x43\x4c\x2e\x54\x83\xa8\xda\x56\x21\x01\x24\xba\x3f\x67\xc1\x11\xea\x45\x81\xbd\x54\xcf\x99\x4d\x24\x5b\x7d\x15\x87\x4f\xe2\x0f\xdf\x3c\x3a\xb2\xbf\x38\x36\x48\x6e\x0c\x2b\xa7\x64\xd8\x28\x52\x1f\x80\x34\x9b\x08\x44\x72\x45\x12\xd5\xc5\x7f\x3b\x13\x4a\xea\x84\xf8\xa5\x59\xde\xaa\xd3\x6e\xfe\x54\x97\x75\x88\xae\x95\x92\x6d\xab\x5d\x63\xf6\x22\x14\xd7\x68\xcd\xa9\xe0\xed\x7b\x12\xae\x26\x61\x8d\x97\x88\xfe\xa3\xd5\x0a\xdf\xd9\x15\xcc\xda\x72\xf8\xa6\xe0\xf7\x8d\x90\x1b\x90\x14\x22\x93\x24\xc8\x55\x12\xf6\x6c\x9a\xed\xcd\x5b\x9b\x7b\x5b\x80\x8f\x07\x66\xba\x93\x44\x5d\x8f\x3c\xc5\x45\x73\xe8\xd4\xda\x5d\x65\x58\x0f\xc2\xb7\x5d\x05\x56\x88\x24\x35\x40\x31\x68\xe9\xb2\x6f\xf3\x4d\x23\x56\x8e\x0f\x6c\xca\x4b\x6b\x8d\x68\xd3\x90\x16\x6d\x13\x3a\x70\xc0\x1c\xc7\x13\xba\x4b\x1f\xeb\x7e\x36\x5a\x27\x7f\xa0\x27\x73\xc9\x2e\x8a\xd6\x0c\x31\xef\x54\x27\x70\xb7\x45\x95\xdb\x0b\x49\x4c\x6d\xb1\xa0\x7a\xaa\xda\x4d\xde\x5c\xd6\x72\xb2\xe8\x1a\x5f\xb6\xf0\x54\x3e\xb7\x6f\x89\x24\xcb\xc9\xc9\x81\x8f\x49\x9c\x22\xd3\xd4\x86\x2f\x25\x8a\x8e\x3b\x1e\x3a\x8e\xcb\xf9\xf1\xda\xe6\x8f\xe4\x2b\x8c\x79\xef\xa2\x10\xfb\xd0\x0c\xca\x20\x27\x1d\x15\x9b\x51\xae\xdd\x6a\xfb\xb0\xc2\x90\x9c\x5c\x08\x3f\x2d\x29\x5b\xf0\x44\x5b\xa5\x47\xc7\x90\xb6\xa2\x66\xa9\x72\xe5\xd2\xeb\xf3\xa5\x10\xd6\xa0\x1c\x71\x33\x53\xe0\x57\x4d\x4c\xc8\x42\x0a\x2f\xd7\x54\xb6\xe8\x18\x42\xbe\x5d\x7f\xe6\xd7\xbb\x73\x3d\x46\x13\xe5\x3c\xad\xb2\x67\xc2\xbd\xe4\xca\xed\x9e\x3e\xa5\x7d\xbf\xf9\xc4\xd2\x19\xf7\xe6\xc8\x73\x61\x85\x96\x4d\x54\xf1\xc4\x4d\x24\xb8\x14\xbb\x98\x7e\xf9\x6a\x64\x16\xa5\xb1\xf9\xf8\xa3\x9f\x9a\x76\xfd\x73\x94\x5d\xc9\x2e\xdd\xbe\xcc\x4a\x71\xcd\xe8\xfa\x42\xe2\x44\x1d\x5f\x60\xe0\x30\x4b\x5c\x61\x38\xd8\x7b\x87\xc1\x66\x2f\x91\xeb\x9c\xb6\x6b\x32\xc1\x06\x9e\x12\x97\xd6\x90\x4d\x31\xab\x25\x2b\xe7\x71\x8e\xae\xdd\xca\xad\xdb\x28\xdf\x1e\x18\xeb\xcc\x47\xad\x22\x35\x8b\x0f\x54\x4d\x60\xb7\x37\x02\x6c\x4c\x8d\xcd\xf3\xc7\x56\x10\x0e\x5c\xf9\x24\x09\x91\x94\xa6\xa9\x15\x67\x4a\xbe\xc0\xdb\x0d\xa6\xa9\x34\xce\x00\x7e\xbc\x56\xc5\x4a\x4c\x26\xa6\x77\x49\x3a\x65\x7c\x96\x29\xe4\x33\xb8\xe4\x94\xa1\xf0\x09\x99\x39\xc7\xea\x2e\xd9\x59\xe8\x8a\x92\x6c\x1d\x83\x54\xb3\x21\xe2\x16\xdd\x8e\xd3\xba\x72\xbe\x65\x41\xe3\xe0\xde\x43\x48\x42\x35\x95\xa5\x8e\x4b\xf7\xb5\x70\x6b\x81\x9c\x2d\x81\x8c\x7c\xa2\xf1\xc1\x05\xb3\xaa\x40\xb8\xb0\x07\x06\x4e\x0d\xc4\x69\xfa\xfc\x5b\x18\xc5\xf5\xe8\x41\x51\xe9\xa8\x08\x59\x2d\x8c\xf1\x8a\xce\x63\x79\xd0\x29\x7e\x90\x81\xf6\x65\xe1\x72\x2a\xf1\xd3\x05\x34\xa4\xcd\x0d\xf7\xf5\x9e\xbb\x0a\xcf\xa2\x47\x79\xfe\xce\xdb\x0a\xe3\x2e\xde\x77\x5f\xe1\xef\x3f\xe5\x9a\xce\x92\x71\x40\x36\xb9\xcb\x97\xe1\xab\x4e\x26\xce\xf0\xa5\xb7\x65\xd0\xf8\x8f\x9e\x3e\x11\xa5\xa5\x87\x4f\x7b\xde\x0a\xd9\xdf\x54\x56\x78\x6f\x1a\xb7\x0f\x38\x7f\x52\xa3\xe3\xa7\x7d\x59\x32\xa6\x12\x26\xed\xc1\x80\x57\x6c\x07\x90\xc5\xe7\x80\xfb\x0d\xd8\x62\xff\xe9\xcd\x80\xd7\x0c\xcd\xdc\xc1\x95\xbc\x11\xc4\xe3\x16\xef\xb9\xa2\xe7\x2f\xe8\x8d\xba\xfa\xbb\xae\xe9\xed\x71\xee\xbf\xf7\xbe\xde\x10\x6a\xb0\x28\x1b\xab\x97\x22\x38\xba\xbd\x37\xd5\x26\xc8\xff\xf4\x40\xc6\x26\x1d\x1b\x5c\x4c\x44\x72\x9b\xfd\xd7\xf8\xa6\x7c\xe1\xfb\x5c\xe7\x2e\x07\x4e\xec\x7b\x71\xe8\xb2\x3e\xf1\x98\x57\xc7\x1a\xbc\x7d\xaf\x26\x86\x97\x75\x87\x8f\x3f\xb2\x52\x40\xb4\x87\x95\xcb\xed\x63\x86\x05\x8e\x5d\x6e\x95\x1c\xaa\x21\x13\xc4\x85\x44\xf8\xfb\x8a\x72\x15\x0f\x1a\xda\x85\x48\xaa\x41\xc9\xb8\x0f\x19\x2c\xea\x63\xe2\x2e\xa3\x2b\xb2\x47\x18\xdf\xe0\x94\xa2\x08\x9f\x89\x06\x56\x5a\x95\xce\x0b\xd7\x85\x12\x31\x3f\xdd\x15\x96\xf0\x9d\x74\x97\x0b\xbe\x46\xdf\x71\x52\x1a\xf7\xd9\x4a\x51\x5e\x81\x13\x60\x48\xfb\xb7\x78\xa2\x27\x30\x98\xef\xf5\x22\x69\x7a\x2f\x68\x7b\x2b\xfd\xf8\x08\xa5\x1f\xa0\x99\xcc\x80\x3f\x8c\x86\x41\x3e\xed\x48\x50\xf3\x95\x69\x4e\xfe\x05\x51\x3d\x43\xf0\x5e\x20\x03\x7e\x22\x4f\x0a\x06\xb0\xcb\x47\xe8\x5e\xf6\xfe\x37\xe9\x41\xc6\xfb\x00\xfd\x5d\xdf\x89\x8a\x03\xf1\xe7\x44\xa9\x55\xab\xed\x6d\xce\x8d\xbf\x77\x83\xcd\x3b\x60\xab\xf1\x91\xae\x93\xac\x46\xd4\x77\x07\xcc\xf3\xe4\x29\xa3\x11\x38\x71\xdd\xbf\x05\x9e\x88\x69\xd4\x13\xb7\x75\xde\x07\xad\xf8\x44\x05\x04\x79\x73\xc0\x82\x7b\x98\x1e\xb3\x8f\xe0\x8d\x2b\x07\x85\x84\xa0\xd8\xa4\x40\xcb\x7d\x2d\x78\x6a\xef\x72\x84\x9b\x4f\xbb\xc8\x67\xb3\x29\x24\x31\x03\xe4\x43\x2d\xbf\xf7\x11\x25\x30\x3a\x34\x8c\x30\xed\xee\x55\x3d\x76\x0a\x48\x9d\x5c\xb0\x92\x4a\x7b\x44\xbf\x14\xf2\x66\x33\x23\x4d\x27\xec\xbe\x3d\x37\xee\x3f\x90\xe7\xd0\x82\x8d\x0f\x19\x5d\xdb\x7d\x2f\x93\xc4\x17\x86\x05\x4a\xa7\xa6\x7a\x45\x6d\x69\x39\x80\x14\x0f\x95\x86\x60\xd6\x0c\xd4\x06\xa9\xee\xee\xc9\x43\x75\xf5\x99\xcf\xac\xca\xea\x56\x39\x97\x74\xa9\x96\xe1\x04\x6e\xbc\x49\x20\xe8\x27\xba\xf4\x77\xc0\x6d\xc5\x48\x90\x8c\xeb\xc6\xab\x27\xb2\xe3\xbd\xf2\x22\x1b\x20\x81\xdf\xa1\x91\xc0\x85\x38\x9e\x20\x57\x37\x7f\xc5\xca\xd8\xd8\x88\x6c\x72\xa1\x66\x53\x30\x39\x8d\x23\x02\x6b\x32\x39\x80\x9a\x25\x3c\x65\x48\x42\x37\x7f\x8a\x35\xe3\x48\xaa\x97\x81\x3d\x05\x42\xf1\x8b\xff\x87\x2c\xb2\x45\x78\x6e\xd3\xfc\xc8\x2f\xc4\x6d\x3c\xe8\x83\x61\x4a\x1e\x5c\xfb\x20\xa8\x78\x16\x1d\x20\x9a\xe2\x3f\xb7\xb2\x9a\x0f\x86\x2a\xdd\x20\x7f\x03\x58\x07\x41\x6a\x11\x80\x43\x7e\x12\xda\xf4\x66\x12\x8f\x31\xc8\x89\x19\xf8\x78\xaa\xf2\x68\xd3\x44\xef\x50\x4e\x6c\x9c\x34\x64\xc8\x0d\xc2\x07\xa6\xf6\xf2\xa5\x95\xd5\xa1\xd7\x9a\x4c\x5a\x76\x85\xd7\xf6\x82\x66\xfc\xbc\xa5\x04\x4a\x55\x72\x9e\x49\x6a\xf7\xee\xcf\x50\xc5\xa3\x49\x87\x24\x99\x51\x56\xd3\xd8\xd7\xd5\x35\xe2\x7f\x60\x74\xff\xbc\xf7\xdd\x5d\xc4\x52\x98\x10\x3e\x51\xa4\xcf\xab\x8e\x73\x2b\xde\x96\xee\xb2\xef\xce\x70\xf1\xc7\x19\x44\xc3\xd4\xa0\x36\x0d\xc5\x1a\x99\x24\xc2\x5b\x39\x9c\x46\x47\x42\x96\x4e\x78\x3e\x95\x8a\xd3\x23\x42\x21\x6a\x6a\x8c\xc1\xee\xae\xde\x3d\x05\x0c\xaf\x19\xf1\xfe\x6d\xcb\x39\x56\x5e\x75\xf3\x17\x1c\xfe\xc7\xb7\x2f\xfd\x54\x67\xce\x8f\xbc\x82\x0f\x54\x3c\xca\x2a\x2e\x6f\xb6\xba\xb5\x13\x7d\xe8\x8e\xfd\x93\xf6\x57\xb4\x3e\x15\xbb\xab\xfb\x18\xbe\x3e\x80\x22\xce\xea\xde\x98\xc9\x71\x17\x38\xff\x95\xb7\x23\xc3\x2b\x93\x36\x33\x35\x32\x78\xe5\xc8\xe0\x15\x85\xcc\xd1\xc2\x87\xcf\xa9\x84\x89\x4b\xb6\x2e\xa1\xa8\x09\xc7\x4d\x71\x79\xc2\x3e\xe2\x02\xbe\x13\x2d\x0c\x21\xfe\xac\x5c\xb2\x51\x3c\x41\xe1\x6f\x3d\xeb\xa4\x8e\x8f\x8b\x48\x00\xf1\x59\x57\x92\xaf\xfe\x26\x6f\xfc\x95\x36\x0b\x11\x04\xa9\x99\x29\x48\xc3\x24\x46\x49\x99\xde\x4c\x40\x6b\x92\x94\x0a\x71\x89\x73\x85\xc7\xdf\xca\x66\x5d\xd4\x99\x78\xa4\x93\x82\xb1\x0d\x12\x0d\x81\x9b\xef\x44\xe9\x55\xfa\x59\x77\xc5\xee\x2f\x7a\x80\x18\x39\x97\xef\x91\x2f\xb9\x1f\xd4\x77\xfc\x21\x81\x07\x3e\xc7\xde\x4c\x37\x40\x20\x0a\x9f\xa6\x83\xe9\x4f\xd0\xa9\x7b\xaf\xd5\xbd\x7f\x14\xbf\xd6\x3a\x51\x5b\x9e\x64\xe2\xf3\x1f\x49\x12\x39\x5d\xad\xed\x6b\x3c\xb4\x8d\x28\xd2\xb8\x02\x02\xdd\xeb\x85\xcd\xdd\xd4\x48\x5e\x08\x22\xd3\x77\xad\x5c\x87\x76\x51\xa7\xa0\xc2\x67\x78\x8a\x81\x64\xf7\xee\x37\xcd\x39\xaf\x6e\xeb\xc4\xcb\xe2\x97\xe2\x56\xbc\xa5\xa3\xfd\x62\x3a\xc5\x8f\x95\xf4\xc4\x23\x71\xdc\xaf\x82\xc9\x6c\x9c\x2e\xc4\x69\xab\x70\x87\x9b\x23\x04\xa2\x8c\x59\x1f\xd2\x49\x0c\x71\xe1\x3b\xe1\xf4\x59\x5d\x3d\xf6\x54\x38\x20\x8b\x29\x18\xd9\xff\x89\x9b\xdf\x05\x6d\x9a\x18\xba\x61\x86\x92\x33\x1a\x62\x12\xc0\xa4\x87\x18\xb4\xc9\x2e\x3e\x14\x3c\xbc\x39\xb7\x5e\xd9\x27\xb6\x5e\xb2\xa2\x9f\xf4\xc6\xec\xcb\x28\x79\xc6\x00\xce\x6f\xb2\x0a\x3f\xa7\x46\xd9\x7a\xf5\xc5\xbe\x7e\xc2\x01\x66\xda\x58\xf1\xf9\xca\x84\xea\x96\x44\x4b\xc8\x4b\x46\x2a\x81\xb2\xd5\xe6\xaa\x5e\x2d\xf8\x5d\x34\x73\xe6\x13\x09\x7a\xc5\xe0\xb3\x19\x7d\xbe\x2b\x37\xe4\x8b\x6b\xcd\xc7\xca\xe6\x33\x39\x9c\xcb\x3e\x5f\x12\xe5\xba\x73\x40\x52\x33\x6a\xfd\xa5\xbc\x8d\xeb\xf2\xce\x89\x9f\x43\x59\xbd\x53\x99\x2f\x6e\x1f\x7a\x40\xc8\x53\x4c\x79\x1c\x03\x12\x41\x3b\x20\xe2\x68\x80\x28\xc4\x63\x30\xc1\x31\xa5\xf8\x40\x19\x1b\x25\xf7\x79\x92\xbe\x9b\xa3\x6e\xf9\xec\xc7\x65\xfe\x4c\x9f\xaa\x53\x7b\x5f\x51\xde\x37\xf9\x18\xb6\x5b\xa8\x2f\x01\x6b\x4c\x84\x31\x1e\x24\xa5\x68\x24\x3d\xe5\x29\xd3\x7e\xdb\x15\x55\x78\xc3\x34\x3c\xfa\x86\x04\x6a\x29\x8f\xe9\x5b\x9c\x61\x2f\xd6\x4d\xdb\xf4\x64\x2d\x69\x7e\x90\xbc\x66\x99\x8a\x07\xf0\xda\x9e\x86\xa9\xd5\x64\x1b\x32\x86\x48\xa7\x5b\xf4\x9c\x3b\xc1\x65\x6f\xf5\x9e\x77\x98\xb0\x1d\x9e\x09\x4a\xd4\x06\x64\xff\x2b\x5d\x4b\x38\xa4\x57\x7c\x9a\xc1\x99\x51\x38\x3d\x2b\x07\x6d\xff\xa5\x68\xf7\xb4\xb7\x2d\x9b\x65\x47\x6b\x42\x0d\x1f\x69\x04\x85\x4f\xd7\xdd\x36\x9c\x32\x68\x51\x12\xbe\xfb\xed\x02\x28\xf1\x27\xe7\x1c\x64\x2f\xf9\x52\xac\x2b\x02\xc0\xa7\xfc\x77\x00\xa5\xed\xe0\x50\x06\x32\x01\xd4\xf7\x75\x80\xbb\x99\xc3\xc6\xaa\xc3\x8e\xba\x68\xf6\xb6\x75\x48\x3e\xd3\x6a\x3b\x40\xb1\x60\x6a\x03\x35\x4a\xfb\x93\x0e\x97\x59\xcc\x77\xc0\x0d\xf7\xa2\xcb\xb5\x9e\x40\x5b\xdc\xb0\xc8\xf9\x61\xe3\x68\x4d\x3f\xb4\x21\x87\xc4\x44\xc4\xf4\xa1\x0d\xed\x39\x22\x0e\xb8\x04\x43\x1f\xd2\xb6\x59\x9e\xeb\x15\x49\xac\xc7\x69\x3d\x93\xa1\x60\x83\x1c\x34\xa1\xc1\xb2\x69\x3a\x98\x50\x5b\xe8\xa6\xab\x8d\xc5\xad\x03\x14\x31\xea\x30\x0a\xc2\xa3\xd0\xa4\xc6\x6e\xf8\x5d\xea\x72\xa0\x2b\x48\xf3\xbd\x18\x96\x76\x53\x24\x8c\xb4\x4c\x34\x78\xdb\xaf\x90\x34\xc5\x0c\x20\xc0\xbe\x7b\x7a\x82\xc4\x4e\xa8\xb2\xe9\x6e\xde\xb5\xe9\xf6\x1b\xb5\x1f\x8d\xfd\xbe\x0e\x56\x6a\x75\xa6\xdf\x03\xc1\x03\xd4\xf9\xf0\x1e\xa6\x60\xb8\xb5\x0b\xc9\x23\x8d\x13\x8d\x65\xbf\xda\xe8\x0e\x77\x54\xce\x16\x1c\x75\x31\x81\x4c\xa9\xed\xd7\x84\xe8\xc1\xf0\x8d\x08\x84\x30\x50\x9b\xbe\x4c\x30\x4c\x42\xb4\x22\x36\xcc\x21\x37\x83\xbe\x48\xf3\xf8\xee\x41\x66\x4b\x13\xba\x68\xc8\x04\x6b\x17\xd6\x6c\xb1\x7b\x1e\x1a\xde\xc4\xcc\xc8\x6c\x06\x61\x78\x9b\xc6\x50\x67\x65\xba\x7d\x61\x58\x89\x30\x5f\x5d\xad\xb0\x87\xf0\xf0\x20\x64\x3f\x86\x57\xdd\xa6\x2d\x3a\x5c\xd4\x0b\x0d\x38\x69\x2a\x35\x60\xc6\xfd\x04\x6c\xda\xc6\x89\x6c\x43\x94\xe0\x77\x0f\xc6\xac\xd4\x35\x11\x0e\x0a\xf2\xa5\x01\x0a\xff\x6e\xeb\x90\xdf\xfb\x46\x5b\x85\xfd\xf9\x81\xad\x1c\x70\xd2\xe8\x58\x07\x80\x6e\x69\x64\x21\x33\x73\xaa\xe5\xf8\x9b\xb5\x9a\xe5\x1e\x82\xcd\x52\xca\x06\x75\xb0\xa3\xe5\xa9\x1c\xc9\x54\xba\x64\x83\x36\xb6\xb7\x67\xef\x7f\x3e\xd4\xd6\x83\xb6\xff\xd2\x9e\x48\xca\x27\xa7\x9c\xe6\xd1\x4b\x8c\xa1\x30\xdc\xc2\xf7\xaf\x56\xbb\xb2\xa9\x77\x4d\xa5\xc4\xde\x1d\xf5\x90\xf8\x26\x1c\x27\xf4\x44\xe2\x84\xec\x00\xac\xbf\x4b\x54\xd9\xe0\xd1\x35\x75\x11\xb5\xe4\x7c\x67\x44\x6c\xcb\x9b\x77\x17\x1c\x0a\x9d\x74\xc0\x26\x99\x4d\xfa\x1b\x75\x82\x37\x6b\x38\x80\x67\xe3\x15\x91\x64\xea\x7b\x5e\x1c\x90\xc4\x94\xf6\xc1\x86\xdb\xe3\x5e\xc3\xb4\x3c\xfa\x25\x04\x24\xc1\x7a\x61\x16\x01\xcb\x8f\x39\x99\x25\xee\xaa\x8d\xd1\x8d\x8a\x8c\xf1\x9b\x3f\x15\x95\xcb\x3b\x3d\xbe\xd6\x16\xa7\x26\x75\x4e\x2e\x8f\x0f\x1c\x67\xf3\x83\xcf\x1c\x80\x3b\xe8\x28\xbc\x6b\xed\x3d\x3f\x77\xe5\x96\x43\xb8\x16\x31\x8d\x1d\x7f\xc6\xbc\x89\xb0\xe3\x67\xb8\xff\x3c\x34\x41\xc4\xe8\xad\x1b\x9f\xdc\xf3\x3f\xfb\x8d\x9b\x18\x1e\xf7\xf8\xcf\x7e\x70\xfe\x5f\xbd\xff\x23\xef\x8d\xcc\xf8\xde\x51\xbc\xed\x9f\x25\xe1\x39\x7b\x76\x3e\x37\x65\x9a\x3f\x4a\xa2\x7d\xcc\x6c\x18\xc5\xc2\x1f\xdd\xe9\xc0\xc3\x38\x88\xc5\xfa\xdf\x78\x2f\xa7\x20\x3c\x8f\x75\xef\x3d\x10\x48\xdb\x3d\x59\x55\x07\xcc\x46\x3e\x8d\x4f\x3e\xe5\x3b\xa7\xd4\x23\xa6\xf8\xd2\xbb\x93\x5c\x09\x1c\x27\x26\x3c\x5e\x83\x4d\x1c\x3b\x94\x5c\xb5\x89\x94\x6f\xe2\x40\xb4\x1c\x22\x99\x5b\xc2\x23\xf6\x4d\x4e\x1a\x23\x59\xc2\xf0\x62\xdb\xe0\xf9\x7a\x7e\xa0\xc8\xd7\x1f\xac\x87\x7c\xe5\x78\xf5\x97\x12\xa9\x2e\x5f\xe4\x59\x8e\x3c\x3c\xe1\xa1\x5c\xc9\x44\x28\x93\x4a\xa6\xc2\x9d\x1d\x8e\x61\x30\x49\xad\x11\x33\x4c\x9d\x3b\x52\x73\x18\xa8\x2e\x5f\xcf\x1a\xd3\xd1\xfa\x9b\xbe\x35\xb9\xe5\xf8\x52\xb0\xe5\xf7\x46\xe9\x1f\xff\x65\xc9\x51\x7e\xb5\xdc\xba\x56\xd9\xc3\x23\x0f\x43\xd7\xb5\xc5\xb2\xef\xa2\xa7\x58\x7e\xb4\x7f\x64\xbe\x6c\x5c\x99\x2b\xfe\xb1\x40\x62\xfa\xf7\x55\x25\xf0\xb8\xf6\x49\xff\xde\x5e\xed\x13\xa4\xfc\xee\xc1\xa8\x9a\xe4\x53\xb2\x59\xf1\xac\x26\x85\x6f\x61\xda\x15\xb8\xf2\xc2\xa8\xf9\xd3\x93\xec\x30\xcf\x4e\x0e\x5d\x81\xa9\xba\xad\xa4\x37\x3d\x79\xfa\xe2\x78\x8a\x2e\x4c\x5c\x95\xf1\xca\x35\xdb\x09\xe4\xa2\x06\x23\x98\x6b\x6c\x63\x2c\xdb\x37\x5c\xba\xd2\x44\x4f\xbe\xbc\x78\x72\x82\x68\xc8\xd3\xd6\x47\x6d\xd8\x45\xc2\xe1\x14\x6e\xe3\xad\x2c\x3a\x8f\x0f\x9f\x66\x27\xf2\x21\x3b\xe2\xc4\x32\x49\xaf\x80\xda\xbf\xb8\x1d\xf5\x8f\xef\xb8\xdb\x54\x98\x4d\x93\x3e\xfe\xec\x87\xc2\x2d\x1f\x5a\x7a\xa2\xa2\xc2\x77\xea\x25\xfc\x10\x1d\x83\x43\x46\xbb\x46\x41\xf9\x18\xbe\x18\x97\x48\xc8\xc1\xee\xf0\xa2\xfa\x70\xef\x18\xef\x89\xf7\x89\x7b\xf3\xa2\xed\x43\x20\x1e\xdf\xee\x8e\x5b\xf5\x69\xb5\x85\x6c\x58\x3e\xea\x1c\x80\x1a\x1d\x78\x8e\x5b\x84\xb8\x99\x04\xa4\x0f\x3c\xfb\x94\x84\x91\xf0\xc9\x38\xcf\x87\x3d\x27\x71\x9e\x8f\xcd\xe0\xbc\xc4\x56\x56\xdb\xed\x22\x7a\x34\xa9\xd6\x09\xc7\x88\x2a\x5d\xf8\x0b\xb2\x75\x1c\x25\x1e\xd5\xc0\x75\xb1\x50\x83\xef\x8b\xd9\xd2\x21\xcb\xb1\x9f\x9b\xd3\x53\x32\x7b\x34\x72\x09\xe9\xf9\x37\xfa\x9a\x5d\xb8\xda\x87\xef\x86\x8a\xfe\x8d\xf8\xa6\x17\x2f\xc6\x1a\x41\x1e\xfe\x19\xa4\xf6\xe6\x2d\x9c\x33\x6f\xe4\xc9\xa7\x9b\xbf\x82\x39\xf0\xed\x39\xbb\x47\x6c\x2f\x6d\x6f\x9f\xb6\x7b\xe4\x15\x75\x7f\xe1\x37\xa9\x54\x49\xc4\xb9\xad\x34\x82\x86\xe5\x66\xdb\xf0\xd3\xf1\xc4\x06\x12\xa1\x29\xd4\x66\x39\x8a\x8d\xe0\x73\xcb\x82\xe3\x9c\xd5\x42\xf2\x88\xfa\xd6\x72\xa4\x44\xbb\x4d\xbc\x8b\x23\x07\x9a\x6f\x4e\x93\x1e\xb6\xbd\xf9\x3f\xc9\x4c\xad\x17\xee\x76\x20\x38\x07\x8b\xbd\xb6\xb7\xc1\xdf\xfe\x36\x95\x9f\x1d\xd6\xd6\xd2\x24\xa3\xeb\x39\x7f\xc1\xe5\xe6\xf0\xae\xd6\xf0\xc9\xbe\xb0\x54\x4b\x47\x78\x0f\xfd\x51\x95\xd9\x47\x7c\x54\x39\x96\x92\xe1\xeb\x84\x34\x0a\x85\x43\x71\x1b\x4a\x18\xdc\x27\xe3\x45\xa5\x22\x63\x4a\x59\xd7\x93\x93\x27\x13\x04\x16\x2a\xb8\xd0\x95\xcf\xe5\x71\x64\x64\x28\x5b\xb7\xfa\xe4\x9f\x9f\x44\x67\x6f\xc5\x17\x71\x4b\x5e\x8b\x07\x7a\xf7\xdb\xcd\xdb\xe1\xe7\x41\x67\x27\xbf\x96\x45\xa7\xbf\x9a\xee\xc9\xf1\x6f\x8b\xbe\x63\xb5\x51\xe5\xb6\xe1\xb4\xe0\x7b\xd0\xe7\x18\x78\xfa\x12\x10\x54\x17\xb9\xe0\x1a\xbd\x97\x94\x3e\x6a\xde\x8f\x77\x96\x93\x05\x61\x5f\xd9\x0b\xfd\xc1\x18\x1d\xca\x03\x07\x37\x2e\xe4\x48\x7b\x7b\x12\x44\x92\xb6\x6b\x6a\x7f\x33\xc7\xb7\x7b\xe3\x28\x1b\x47\x6f\xd1\x2c\x24\x35\x9b\x4b\xd5\xc6\xf7\x18\x6e\x4d\x1d\x6e\x1b\xba\xe7\xe8\x91\xf8\xe7\x98\xa7\x99\x9c\xf8\xda\x5a\xee\x2d\x34\x76\xd3\xd8\x47\xc7\xbe\x1b\x3c\x39\x66\xdf\x26\xc3\x8b\x2a\x34\x20\xfb\xa9\x60\x6c\x3a\xde\x26\xb7\x3f\x71\x0f\x65\x51\xf2\x81\x8b\xdc\x10\x85\x37\xae\xc9\x49\x68\x95\xeb\x3e\x61\x0f\xc9\x63\xef\x51\x33\xf7\x6a\x7b\xc8\x55\x13\xbd\x30\x3f\xec\xc6\xdd\x73\xb6\xe4\xf0\x62\xf7\x6e\x53\xba\xeb\xbb\x7b\xe8\xe1\xd7\x5e\xf7\x34\x96\xae\xd7\x44\x90\xff\x8c\x1f\xd9\x13\xfe\x11\x96\x5b\xae\x5c\xb2\x37\x82\x78\x29\x48\x45\x2e\x5b\x12\xd3\x27\x6e\x77\xad\xc3\xaa\x6e\x8a\x2d\x94\x0f\xfb\xda\x2c\xb1\x43\x3e\xd9\x63\x0d\xc4\x3d\x31\x5b\x24\x4b\x11\x89\x1c\x09\xfa\x60\x46\xb1\x07\x54\xdb\x60\xa4\x11\x9b\x61\x0d\x47\xa0\xb4\x91\x9a\xf9\x43\xf9\x91\x7d\xff\xed\x93\x67\xc3\x8a\x7b\xb8\x82\x2d\xdd\xcf\x50\x6c\x85\x7d\xac\x43\x0e\x1b\xed\xc4\xe4\x5c\x71\xcf\x94\xa4\xe6\x94\x8e\x6f\x2b\x08\x09\xba\xf0\x05\x4f\x69\x6a\x2f\x7b\xb4\x34\x9b\xab\x2d\x76\x66\xd2\xc2\x7e\x2c\xcc\xa0\xb2\x7f\x31\x20\xa9\x1d\xde\x0b\x18\x03\x53\xa7\x55\xf1\x7a\x0f\x3f\xe5\xc4\x99\xd6\x5b\x42\x6a\xd7\x16\x11\x8f\x92\xe0\x1c\xaf\x5b\x98\xe2\x3c\x85\x3f\x02\xdf\x55\xa6\x5d\x76\x51\xe0\xbe\x8a\xab\x5e\x37\x39\x0c\x3e\x56\x5c\x12\x64\xbb\x9a\x63\x1e\xd8\x67\x86\xcc\x4c\x68\x41\xfb\x69\x6a\x45\xdb\xa5\xb0\xfa\xef\x09\x6d\x17\x5a\xe8\x69\x75\xc6\xb2\x04\x6c\x53\x69\x33\xdf\xfd\x6f\x5a\x3c\x7f\x5e\xc3\xa9\x29\xa4\xb5\x6f\xb3\x5e\x79\xdc\x8a\x97\xf1\xbb\x07\xec\xe7\x53\x53\xc8\x75\x33\x2f\x8b\x53\x39\xee\xf0\x53\x1f\x6c\xf2\xb3\xae\xdb\x9a\xf8\xc2\x3a\x3f\x15\x30\x9c\x51\xd4\x8d\x00\x86\x13\xb1\x44\xc8\x0f\xba\xdd\x16\xec\x8b\x76\x68\x3c\xb4\x4f\x39\xee\xc1\x9b\xab\x6d\x05\xd0\xfc\x49\xc3\x8f\x93\x58\xae\x58\x8c\x64\x85\x7b\x04\x32\x92\x15\xdf\xd9\x4f\x89\xb6\x62\x47\x1f\x6b\x29\x7b\xe0\x40\x1b\x16\xd1\xe3\x16\x56\x45\xf1\x61\x3c\xb3\x55\x4b\x02\xe6\x01\xfd\xe3\x22\x20\x42\x88\xcf\xc8\x1c\x77\xdf\x0d\x51\x7c\xde\x97\x78\xe4\x5d\x9d\xb2\x87\xd6\xb7\xe0\x4c\xb5\xce\x2f\x6d\x46\x9e\x5c\x57\x2f\xe4\xba\x0d\x9e\xe8\x7d\x75\xf5\x2b\xbd\xea\xfd\x51\x19\x6b\x93\xa4\x99\x22\x64\xaf\xe8\x92\x2e\x1b\x7b\xb8\xdd\x2e\x1b\x64\xcc\xe7\x87\xde\xf8\x63\x34\xa5\xc1\xc5\x1f\x3f\x23\x42\x79\x87\x70\x6c\x4e\x3f\x70\x0b\x00\x91\xca\x2b\x95\x7c\xbc\x94\x8b\x4e\x92\x9f\x44\x6a\x30\x57\xa7\x43\xa8\x5c\x8b\x58\x65\x8b\xbf\x2d\x7e\x97\x44\x9f\x85\xc2\x01\xf4\xee\x73\xb3\x9d\x3f\xdb\xce\xe2\x6a\x6c\x0c\xf9\xf7\xbd\x26\xa0\xb8\xe5\x3d\x26\x1b\xa8\xb6\x82\x06\xf2\x73\xfa\x10\x8b\x8b\x68\x53\xe9\xe1\x72\x72\xdd\xf2\x8e\x4d\x81\x2c\x77\x96\xa5\x1d\xb5\x5a\xa9\xe9\x1c\x12\xbd\xdc\x62\x55\x55\xdc\xcb\x5d\xd3\xae\xee\xde\x89\x13\xde\xa6\x19\x05\xa2\xba\x2e\x31\xee\x57\x2e\xf5\xb2\x85\x57\x72\xfc\xfe\x12\x54\xa6\x73\xe5\x03\xa1\x12\x88\xef\x8a\xf3\x4b\x86\x33\xff\x14\xa7\xd8\x4d\xf3\x05\xff\xe2\x9c\xbe\xcc\x38\x5d\xf0\x54\x88\xae\x2a\x3e\xb0\x57\x9f\x78\x8a\x51\x23\x3e\xd6\xf3\x81\xcf\x56\x32\x9d\x00\x95\x92\xd6\x64\x90\xd9\x6d\x12\xe1\x9c\xb2\xa3\x53\xeb\x79\x04\x27\x2e\xd7\x7e\x38\x62\x93\x45\x18\x23\xd6\xa6\x5e\xfd\xfd\xc2\xbd\xa3\x20\x71\x29\x83\xfb\xe2\xbd\x44\x6b\x71\x78\x7c\x95\xfd\xde\xdf\x57\xde\xbd\xe6\x37\x2b\x7e\xea\x9a\xa6\x24\xb2\x52\xeb\x66\x8e\x87\xea\x36\x6a\xf7\xdb\xc7\x1f\xf1\xeb\x29\xb8\xab\x50\x37\x72\x89\x19\xe7\xb4\x37\x7f\xe5\x68\xc4\xcb\xb9\xbd\xb5\xf0\x3b\x33\xff\x1d\x62\xd0\xfa\x3a\x2f\x38\x3d\xea\xef\x2a\xfa\x50\x15\x35\xce\xe0\xe4\xc3\x19\x6a\xe0\x1d\x9f\x5e\x7e\xe7\xf4\x9b\x2f\x93\xca\xcf\x4b\xfa\x59\xe3\xa4\x69\xf7\x9b\xfd\x42\x7b\x1c\x7d\xe0\x55\x39\x63\xfb\xb8\xa2\x0f\x34\x9e\x54\x30\x9a\x78\x6a\xce\x69\x7f\x65\x64\xda\xf9\x92\x99\xb5\x26\x96\xc0\xdf\x05\x00\xfb\x9d\x5f\xf4\xe4\xda\x80\x42\xc9\x47\x3c\x24\x88\x6f\xb9\x78\xc3\xf1\xe9\x12\x01\xa3\xf8\x66\xc1\xb1\x9f\x09\x9c\xee\x4c\x7a\x05\x48\xc4\xc4\xf8\x33\xd2\x91\xf2\x57\x82\x4b\xbe\xb4\xea\x72\xe1\x60\x73\x80\xc9\x57\x07\x99\x03\x8b\x91\x4e\x6a\xc2\x16\x89\x1b\x7f\x0e\xaf\x26\xb9\x07\x2a\x1e\x52\x11\x5c\x76\x34\x01\x4e\xd5\x8d\xf4\xb8\x78\x80\x06\x5e\x7f\x79\x3a\x78\xc6\x57\x3f\x39\x99\x6a\x51\x6f\x7b\x6b\xf4\xda\x67\x6e\x3e\xeb\x6c\x2d\xdb\x47\x73\x2a\xf9\x16\x38\x11\xbd\x7d\x96\x83\x96\x7c\xb1\x24\x01\xf6\x47\xfa\x91\x99\xe2\x5a\x7f\xfe\xaf\xff\xca\xb5\xe9\xcf\x7f\xfb\xb7\xec\xe9\x37\x5f\x64\xfa\x15\x72\xb0\xe1\xfa\xdb\xab\xa2\xea\x2b\x57\x8b\x7e\xfe\x31\xa9\xc8\xf7\x90\x39\x90\x97\x8f\x55\x9e\x4b\xea\x07\xfc\xfd\xf1\x47\xff\x37\x00\x00\xff\xff\xf2\x9b\x6a\x62\x1f\xa3\x00\x00") func confLocaleLocale_lvLvIniBytes() ([]byte, error) { return bindataRead( @@ -887,12 +887,12 @@ func confLocaleLocale_lvLvIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 37411, mode: os.FileMode(493), modTime: time.Unix(1438257711, 0)} + info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 41759, mode: os.FileMode(493), modTime: time.Unix(1439758818, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_nlNlIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7d\xeb\x8e\xdc\xc6\x92\xe6\x7f\x01\x7a\x07\xda\x0b\x8d\x65\x40\x5d\x1a\x9f\x83\x05\x06\x86\x4a\xde\x96\x5a\x23\x69\xac\xdb\xaa\x25\x1b\x38\x86\x51\xc3\x2a\x66\xb3\xd8\xc5\x22\x79\x78\xa9\x52\xf7\x1b\x0d\xe6\x15\xf6\x9f\x5f\x6c\xe3\x8b\x88\xbc\x91\x2c\x49\xc7\x83\x03\xc3\xea\x62\x66\xe4\x3d\x32\xee\x99\x99\x36\xcd\x2a\x33\xdd\x66\xf9\xcc\x54\x89\x31\xd5\xa1\x1e\xb2\x22\x37\xc9\xad\x29\xaf\x72\xb3\xad\xbb\xde\x24\xcf\x8b\x3e\xe9\x4c\x7b\x28\x36\x26\xc9\x09\x76\xdb\x9a\x03\x41\x17\x55\xf2\xbc\xbe\x7b\xe7\xee\x9d\x6d\xbd\x37\xcb\x17\x43\xd1\xdd\xbd\x93\xa5\xdd\x76\x5d\xa7\x6d\xb6\xbc\xb0\xbf\xee\xde\x31\x9f\x9a\xb2\x6e\xcd\xf2\x17\xd3\xee\x4c\x55\x99\x8a\x8a\x98\xb2\x59\xbe\xa0\x7f\xee\xde\xe9\x8a\xbc\x5a\x15\xd5\xf2\x65\x55\xd6\x79\x8e\xcc\xae\xde\x14\x69\xb9\xb2\x19\x97\xfc\x99\x54\xa6\x3f\x52\x05\xd4\x2c\xc1\xfd\x98\xd0\x87\xc9\x4c\xd2\xf5\x69\x93\x3c\xea\xf6\x69\x59\x3e\x4e\x37\x9b\x7a\xa8\xfa\x64\x57\x37\x8d\x29\x4d\xf5\xe8\xa1\xa4\x6b\x1b\xf5\xd0\x2f\xcf\xaf\xf6\xa6\xcc\xb8\x11\x24\x0d\xcd\xf2\x3c\xad\x6c\x52\x6b\xf2\x82\xc6\xdb\x2e\xdf\xf3\x8f\xd6\x98\xf6\xee\x9d\xa3\x59\x77\x45\x6f\x96\xbf\xca\xdf\xbb\x77\x0e\xa6\xed\x8a\xba\xc2\x68\xba\x82\xbe\x9b\x34\x37\xcb\x77\x69\x5e\x54\xe9\xdd\x3b\xbd\xd9\x37\x65\x4a\xe0\x97\xd7\xe9\xba\xac\x6b\xaa\xb5\x4c\xab\x7c\x00\xcc\x87\x34\x2d\x31\x5d\x03\xcd\x65\x95\xd2\x94\x3d\x37\xeb\x76\x28\x76\x54\x4f\x95\xa6\x7b\x9a\xa7\x7d\x5a\x94\xcb\x67\x67\xf8\x83\x7a\xbb\xee\x58\xd3\x4c\xfe\x9a\x6e\xb6\x7d\x7f\xac\x6b\xcc\x65\x6b\x56\xfd\x4d\xc3\x73\x59\x5c\x15\x9b\xb4\x47\x17\x36\x69\xd3\x6f\xb6\xe9\xf2\xe9\xf9\xbb\x0f\x4f\x5f\x9c\xa3\x91\xd6\x34\x35\xf5\xb7\x6e\x6f\x68\x34\xfa\x13\xa0\x75\x9b\xa7\x55\x71\x4b\xe5\x68\x08\x6f\xf9\xa3\x93\x4a\xf6\x45\xdb\xd6\xed\xf2\xb2\x29\x4c\x6e\xa8\xfd\xca\x1c\x57\xa8\x65\xf9\xa6\x30\xc3\xd1\x24\x6d\x58\x0d\x32\xf7\x45\xde\x62\xa8\x9a\x2f\x9f\x36\xf3\xaa\x6e\x77\x36\xe7\x40\xbf\x13\xd7\x8b\x1b\x01\xa0\x8e\xd8\xfc\x3a\xea\x46\x5a\xd1\x64\x71\xf6\x13\xb3\xa5\x25\x08\xb3\x09\xc3\xd2\x6c\x5f\x54\xab\x26\xad\x4c\xb9\x3c\xc7\x6f\xfc\x44\x7f\x75\xf5\x57\x9d\xe9\xfb\xa2\xca\xbb\xe5\xb9\x24\x14\x15\xad\x69\x59\x52\x12\x2f\xbb\xcd\x7d\x19\x25\x73\x9f\xba\xd5\x15\xe1\x94\xf4\xaa\xc3\x4f\x5a\x84\xa1\x2c\x69\x16\xfe\x3e\x98\xae\xef\x96\xef\xe8\xeb\x2c\x4d\xab\x43\x9b\x72\xa9\xa2\xeb\x28\x63\xf9\xf3\x91\x72\xb9\x73\x58\x8a\x6a\x83\x9e\x55\xd5\x50\x32\xfe\xdc\xbd\xf3\x5b\x67\xd2\x76\xb3\xfd\x1d\x8d\xe3\xc7\xf2\x6f\xb5\xa1\x7d\xb0\x58\x2c\xa2\x65\x7a\xdb\x74\x65\x9a\x13\xf6\xa4\x7d\x27\x48\xe2\x11\x44\x9b\x5a\xbe\x6b\xeb\x35\x55\x4b\xb8\xb2\xa9\x33\xb3\x7c\x4a\xff\x70\x0b\x18\x23\x61\x3a\x35\xa1\xbf\x78\x78\xf4\x57\xe6\xb4\x2f\xfa\xd2\x84\x49\xd8\x35\x0d\x6d\xe1\x03\x21\x55\x42\xbb\x88\x7a\x8a\x8d\xbe\xe3\xe9\x6e\x28\xb7\xed\x65\x43\xfc\x7d\x20\x9c\x5f\x65\x6b\xa1\x11\x6f\xf7\xb4\xe3\xf3\x2e\xe9\x41\x07\xa4\x6b\x44\x06\xba\xe4\xf5\xcd\xe5\xff\x7d\xf5\x20\x79\x47\xd4\x22\x6f\x0d\xfd\x4e\xea\xab\x84\xfe\x50\xd9\xbf\x26\xb4\x5f\x0c\xed\xa6\xe4\xbe\x4d\xa0\x02\x6b\x50\x91\x62\xb7\x4e\xd3\x16\x64\x84\x7a\x50\x5f\x11\x36\x17\x7f\xfc\x77\x69\x12\xde\x60\xe6\x7b\x9a\x1d\x6a\x57\xba\x7e\x91\xf6\xe9\x3a\xed\x4c\x12\x2f\x26\xf2\xb1\x19\x6c\xf6\x19\xbe\x40\x8f\xba\x7e\xf9\x82\xfe\x19\x4f\xa3\xee\xb3\x78\x67\xe9\xc6\xa2\xba\x78\x53\xba\xa6\x04\x96\x92\x41\xab\x7c\x2d\xc9\xcb\xaa\xaa\x2f\x9e\x24\xa6\xa2\x1d\x4f\x58\x6f\xfa\x64\xe8\xaf\xfe\x6d\x45\x1d\x32\x2d\x51\xad\x4d\x91\xec\xd2\x36\xdd\x11\x1d\x21\x5c\x93\x19\xe6\xf9\xa1\xf1\x74\x5d\xb9\xda\x63\xe1\x2e\x2f\x5f\x9d\xd1\x8f\xa1\x43\x67\xfa\x2d\x91\x0f\xea\x41\xf7\xf7\x12\x93\xad\xcd\xbd\xa0\xc2\x4d\x9a\xa1\x1b\xbc\x44\x76\xf6\x32\xed\x1f\x55\x67\xda\x76\x45\xf4\xa6\xbf\x59\x69\x51\xae\x6b\x0c\xc8\xb5\xec\xd3\x3c\xa9\x0a\xaa\x92\xb0\x27\x4f\x6e\x8b\xeb\x6a\x01\xc4\xb1\x9d\x96\x59\xfe\x50\x1b\x4c\x0d\x4d\x6e\x92\x96\xb9\xd9\x53\xe6\x68\xc2\xc1\x2d\x78\x96\xce\x9b\xa6\x14\xea\x23\xd3\x64\x33\x6c\xef\xdf\x31\x1a\x27\xdb\x82\x10\xea\x3a\xda\xe1\x80\xc7\x9a\xe7\x6d\x4d\x68\x54\xd2\x76\xa4\x89\xfa\x46\x76\x82\x0c\x20\xa0\x57\x84\x29\x69\x47\xf8\x92\x15\xad\xd9\x28\xe9\x71\x80\xb6\xad\xf3\xb2\x04\x75\xda\xd7\xca\xaa\xda\xb0\x3c\xd6\x59\x78\x55\x66\x6e\x4d\x50\x11\xe1\x39\xf1\xb2\x52\x36\x72\x3b\x10\x2f\x00\xaa\x7c\x2c\xfa\x43\x4d\x08\x5b\x65\x1e\xc5\x2d\xda\x58\x20\xdb\xee\x05\x2a\x74\x40\xc9\xbe\xa6\xe9\xed\x6b\x43\x23\xcd\x93\xad\x59\xaf\xa9\xd9\xbe\xee\xb1\x76\x79\xdc\xab\xb0\x17\x04\xc4\x05\x79\x5f\xed\x06\x70\xc7\xc4\xed\xbf\xac\x26\x56\x50\x2d\x2f\x88\xbf\x16\xee\xd3\x35\x4f\x95\x12\x7d\xbc\xea\x69\x70\x87\xb2\x36\x19\x8d\x88\x11\xe5\xf2\x45\xb2\x03\xeb\x49\x3e\xbe\x7f\x45\x08\x46\xbc\xa3\x59\x35\x75\x4b\x5b\xe2\xc3\x87\x77\x67\x0d\x21\x64\x1f\xa4\xba\x15\x43\x7a\x35\xec\xf7\x34\x94\x23\x70\x6e\x0b\x04\x6c\x6b\x22\xea\xfb\x7d\x2a\x68\x58\x0e\xcc\x1f\xfb\x85\x2c\xf8\xd0\x96\x01\x22\xa0\x39\x97\xfe\xa5\x4e\xa2\x2b\x0f\xf1\xcf\xa5\xf6\x95\xca\x74\x98\x0c\xca\xe3\x9f\x59\x61\x94\x32\x30\x57\xb4\xeb\xa8\xd3\xdd\x03\x79\xeb\x06\x4c\xcc\x61\xef\x5b\xfe\x24\xbe\x3f\xc2\x59\x2e\xaf\x30\xc2\x5b\x9d\x30\x33\x62\x0d\x7b\x9a\x12\xa6\x1d\x97\xaf\x3f\xbc\x4b\xb6\x4c\x40\x38\xf1\xaa\xad\xf7\x24\x3a\xdc\x02\x2d\xda\x20\xcd\x8e\xf2\x19\xd7\x9a\x2a\xc0\x83\xe4\xfd\xbf\x3f\x4d\xfe\xf7\x5f\xff\xf2\x97\x45\x82\xf1\xef\x52\xf4\xfb\x88\x51\x1a\x08\x59\x02\x9c\xb5\x84\x9d\xd8\x88\xa0\x95\x98\xeb\x6f\xdf\x10\x96\x7d\xfb\x88\xb3\xff\x8f\xf9\x94\x92\x20\x61\x16\x9b\x7a\xff\x38\x21\x5e\xba\xa7\xed\xb4\x00\x73\x2c\x4a\x42\x40\x46\x55\xdb\x9f\xc4\xc8\xa0\x1e\x4e\x10\x56\xa1\x67\xc9\x9d\x95\x75\x56\x9b\xba\xba\x2a\x5a\x1a\xde\xa6\x2f\x0e\xa0\xff\x92\xc3\xac\x5c\xfa\xda\x49\x4d\xab\xaa\xee\x8b\xab\x1b\x0f\x28\xed\x72\xaa\x60\x40\x07\x0e\xd7\x12\xf9\x5e\xe9\x04\xeb\xac\x5f\x72\x22\x56\x37\x45\x87\x09\x45\x25\xbb\x3b\x8b\x17\x80\x78\x00\xfd\x34\x42\x22\xdf\x5e\x5d\x25\x25\x53\x58\xd0\x49\x2c\x15\x49\x38\x3b\x88\x75\x31\x20\x21\x71\x43\x62\xdc\xa5\xe4\x26\x4f\x2f\xde\x24\xc4\xb3\x80\x3b\x84\xbc\xd9\x40\x9d\x35\x5c\xc3\x03\xa2\x69\x84\x1b\x6b\xf0\xbe\x0a\xa8\xa4\x18\x55\xd6\x3b\x92\xcb\x12\xe2\xea\x34\x7d\x54\x1f\x08\x63\x46\xa4\x8a\xf8\xec\xca\x4f\x05\x09\x4b\xb6\x05\x48\xc6\xe1\x1c\x51\x6b\xf3\x25\x46\x3d\x9b\x29\x27\x7d\xc2\xbc\x40\x90\x71\xfb\x5f\x25\x99\x8e\xa8\xf6\x8e\xfb\xc3\x7c\x98\x24\x3f\x95\x88\x57\x87\xc2\x1c\x5d\xbd\xca\x5f\x0d\x86\x00\x49\x16\xe4\xbb\xde\x13\xd5\x87\x44\xfa\x1d\x33\xeb\xdb\x82\x49\xe0\x7c\x45\xda\xcd\x73\xe9\x09\x96\x82\xe4\xeb\x88\xfc\xd9\x7e\xb9\x2a\xd7\x66\x57\x5c\x53\xd7\x1e\xd0\xaf\x5b\x08\x33\x1e\x46\x07\x44\xe5\xa9\x96\xa2\x7a\x18\x8e\xd8\x95\x47\x7f\x16\x56\x94\x53\x89\x4c\x24\x8c\x8f\xb4\xed\x40\x2d\x98\x57\x11\x6f\x35\xa2\x95\xc8\x04\xb9\x8a\xac\xa0\x4f\x43\xe3\x29\x7a\x90\x64\x11\x25\xa6\xb2\x2f\x2f\x96\x3f\x24\xbb\xb6\xb8\xce\xfb\x24\x1d\x7a\xa2\x9c\x7d\x41\x18\x14\x57\x44\x54\x78\xdb\x07\x5d\xf1\x72\x92\x45\x4a\x1a\x20\x64\x50\xc2\xda\x4e\x1b\xb5\xb0\xb3\x12\xbc\x15\x4e\x67\x36\x9c\xee\x33\x9f\x29\x12\xbc\x61\x72\xeb\xc1\xa4\x86\x50\x13\x60\x4a\xe1\x04\xbb\x55\x5e\xab\xf0\xca\x33\xdd\x32\xe3\x80\xde\xd1\xf5\x2b\x62\x33\xab\x2b\xec\xf9\x6c\x09\x3e\x88\x34\x99\x48\x5a\xd2\x61\xd7\xff\x98\x7c\x47\x10\xdf\x25\x44\x53\x48\xc8\xce\xea\xe4\xde\xc1\x0a\x1d\x7f\xc5\xe6\x5e\xa5\x07\x34\x47\x68\xbc\xfc\x78\x54\x29\x2c\x59\x17\x26\x43\x05\x34\x15\x35\x36\x2f\x4d\xcd\x50\x01\xc5\x58\xb0\x51\x59\x83\xe6\xbf\x3e\x92\x5a\x46\x82\x46\x2c\xca\xad\x69\xbd\x09\xdf\x6c\x65\x07\xa2\x84\xf7\x68\x27\x72\xa7\xb0\x64\xf5\x7a\x28\xca\x4c\xb3\x17\x18\xe4\x21\x2d\x8b\x0c\x02\xa7\xa2\x05\xba\x92\xcd\x49\x7f\x42\x3b\xb9\xa6\x4d\xdd\x82\x9f\xfe\xc8\x03\xb2\x55\xcc\xca\x13\x2a\x4e\x40\x22\xa2\x3f\xd3\xc2\x8e\xc5\x63\x3a\x08\x65\x48\x58\xbf\xe0\x9d\x3a\x15\x0a\x5c\x05\x94\xb8\x1d\x0a\x52\x9a\x7d\x1e\x55\xd6\x25\x67\x8f\xe9\x5f\x9a\xe0\xf4\x60\x84\xc8\xe6\x76\x71\x7e\x4e\x79\x83\x48\xe2\x20\x28\xcd\x55\xd5\x50\x01\xd2\x2a\x1e\x48\xb4\x4b\x30\x1d\x9c\x70\x76\x62\x2e\x72\x50\x80\xdc\xd6\x20\x28\xd3\x0d\x1b\x22\xb6\x1d\xa9\xb0\xe5\xae\xde\x7f\x93\xfc\x5a\x5c\x4b\x89\x03\x21\xf7\x90\x67\x98\xe0\x64\x90\x15\x65\x39\x44\x38\x76\x6e\x76\xf5\x2d\x36\x17\x51\xfb\x32\x21\x6e\x74\x5b\x08\x15\x87\x54\x83\x2d\xcc\x0a\xcf\x6f\xd0\xfe\x49\xf1\x18\x44\xfc\xab\x49\x95\x1e\x4b\xdc\xe0\x70\x66\xa4\xd5\x5a\xc8\x70\x8b\x74\xc7\x82\x66\x7c\xe5\x6c\x08\x98\xb6\xde\x7c\xea\x97\xbf\x92\xf6\x03\x4a\x47\x60\x42\x43\x34\x83\x18\xd3\x0d\x2f\x74\xb7\x7c\x8d\xf1\x84\x92\x1f\x76\x1c\x29\x3b\xeb\x1a\xf3\x7b\x30\x0a\xf6\xdc\x64\x06\xda\xfe\x08\x94\xaa\x21\x11\x55\x6b\x89\xf5\x4d\xca\x12\xcd\x58\x73\xf5\x83\x87\xae\x86\x8d\xdf\x55\x8f\x8b\x24\x57\x06\x20\xca\x03\xbd\x6f\xd3\x1a\x52\x94\x57\x50\x7b\x95\x8a\x2c\x5f\xa7\xe9\x0e\x2b\x36\x1c\x1d\x35\xa3\x95\x0f\xf8\xf2\xd6\x34\x60\xde\xfb\x2e\x27\x55\x00\xcb\x31\x10\x6d\x15\x5a\x28\xf0\x3f\x25\xaf\x69\x24\x94\x5c\x0d\x28\xfa\x8d\xb3\x9b\xfc\x23\x55\xfc\xcc\xa6\x12\xaa\xe2\x9b\x31\x0f\x83\xe0\x40\x22\x4e\x43\xd2\x10\xed\x90\x9b\x07\x91\x5c\x40\xb8\x4f\x9b\x82\x6d\x41\xe0\x41\xd9\x22\x79\x43\x5a\x29\x30\xba\x4f\x37\xc0\x63\xa6\xc1\x99\xf1\xe4\x93\xf7\x3e\x8b\xe0\xb0\xa2\x4c\x78\x2c\xba\x09\x92\xa7\x6d\xad\xcd\x01\x2a\x75\xce\x84\x26\xad\xa2\xb6\x1b\x2f\xf2\x4c\xba\x81\xf9\xdb\x9b\xfd\x1a\xd5\x91\x08\x51\xf5\xdb\x7a\x20\xe5\xa7\xb8\xbe\x7b\x87\x84\xa8\x9c\x36\xf5\x0c\x6d\x06\xf9\xc9\x0d\x0b\xdc\x00\x32\x9f\x07\xfa\xc9\x99\x8e\x88\x48\x1c\xd9\x6c\x66\x17\xb0\xaa\x69\xeb\x8d\x96\x65\xe1\x28\xbf\xc8\x04\x2c\x49\x75\xa6\xea\xed\xec\x3e\x63\x26\xe3\x86\xdb\x19\x3b\x32\x1a\x56\x3f\x0c\xad\x6a\x80\x8f\xd6\x8f\xef\x75\x8f\x1e\xae\x1f\x3f\x48\x9e\x28\x74\xc2\x0d\x1c\xda\x94\x74\x3b\x22\xb4\xe0\xbe\xf7\xa8\xe1\x16\xa4\x7a\x9f\x10\x62\x85\xb3\xd6\xc3\x0c\x53\xf6\x75\x2d\xac\xd7\x0a\x00\xc2\x68\xb4\xc7\x54\x9b\xe8\xb3\x47\x9d\x60\x65\x3d\x29\x4b\x7c\xab\x9b\x7a\x68\x1d\xfe\x3a\x29\xd0\x23\x30\x26\x9f\x47\x56\x16\xfb\xa2\x1f\x61\xcf\xa0\x44\x85\xfa\xd1\x55\xc0\xb8\x34\x21\x6a\x84\x91\x31\x3e\xda\x71\xe4\x26\x43\x2f\x98\x14\x09\xa2\x52\x33\x3c\x00\xf4\x67\x91\xf0\x82\x24\x19\x48\x39\x11\xc1\xa1\xb7\x36\x0c\xea\x05\x0d\x2f\x67\x12\x6d\x2b\xa3\x61\x6e\xd3\x6e\x35\x54\xba\x00\x26\x13\x1c\x7b\x62\x20\x2d\x81\x0f\xd9\x4e\x09\x77\xb3\xab\x90\x85\xa3\x4f\xee\xbb\x99\xff\x7e\x91\x9c\x93\x66\x42\x2b\x5b\xe7\xc2\x11\x43\x34\x95\x9a\x68\x03\x1c\x20\x49\x12\xd5\x24\xa2\x37\x70\xcd\x95\x58\xb9\xdc\x18\x8f\x45\x49\x43\xa8\x01\xb3\x2b\x8b\x1d\x51\xdf\x4a\xb5\x22\xe5\xb0\x29\x04\xd4\x64\x57\xd5\xcd\x42\xe7\x54\x7b\xfe\x33\xc0\x59\xa7\x96\x05\x8e\x67\x87\xfb\x85\x06\xd9\x8c\xd3\x33\xd7\x65\x15\xc1\x29\x41\xcc\xe4\x3b\x26\x13\xbd\x61\xdd\x2c\x1c\xa9\x65\x68\xa0\xfb\xa0\x0a\x19\x23\x44\x40\x2e\x80\x37\xe8\x0b\xba\xd4\xcf\xf7\xc8\x8b\x32\x09\x43\x49\xc7\xee\x53\xcf\x48\x83\x29\xbb\xef\xb5\x5b\x84\xd9\xad\x18\x98\xba\x70\xbb\xbd\xe7\x22\x51\x35\x9e\x0f\xb2\xc5\xcb\x62\xd3\x31\xda\x33\xc8\x42\xf7\xa9\xe6\xb2\x86\x5d\x8b\xe6\x5e\x25\x48\xea\x99\xb0\xc4\xc5\xb8\x35\xab\xbc\x7d\x66\x08\x75\x23\x14\x9a\x94\x09\xe0\x2d\xf8\x2d\xef\x1e\x57\x05\xed\xa7\x55\xb7\x85\x6e\x7d\x01\x5b\x46\x95\xf7\x22\xe4\xc4\xd5\xb0\x82\x0f\xb1\x13\x73\x40\x7a\x40\xe7\x2d\x44\xde\x14\xf3\x1b\x69\x29\x29\x2c\x78\x37\xa6\x5b\xfe\x47\x7a\xf7\x4e\x55\x2f\x89\xa8\x12\x03\x22\xaa\x02\xb5\x2b\xad\xd0\xac\x18\x2b\x7f\x83\x4a\x48\xb0\x1f\x49\x56\x79\x33\x27\x88\x82\x13\x71\x46\x28\xfc\x48\x16\x2b\xab\xcb\x68\x83\xbf\x9b\x13\x58\xdf\x9b\xc0\xd0\x3c\x16\x53\x2f\x2f\x5f\x7c\x10\xdd\xee\xf2\x45\xd2\x95\x86\x76\x62\xa9\xf5\xbf\xe8\xfb\xa6\xfb\xd8\x96\x6c\x6e\xb8\x3c\x63\xab\xc0\xbb\xf4\x06\xd2\x21\x52\xdf\x90\x20\x53\x53\xc3\xd8\x33\x9c\xf7\xc1\xa4\x7b\xee\x2a\x7e\x68\x1d\xe7\xc4\x37\x39\x8d\x7e\x50\xd7\x3b\x6f\x68\x62\x93\xef\xb3\x40\x3c\xf6\x2c\x46\xcc\xde\xa2\xe0\x18\xb6\x65\x43\xf3\x9e\x58\xbd\xd2\xb2\xd9\xa6\x2c\x64\x28\x14\x2f\x0f\xd0\x9c\xf1\x8c\x36\x6a\x79\x95\x56\xc3\x9e\xc6\x6d\x76\xc0\x24\x80\xde\x3f\x5b\x7d\xef\x56\x6d\xa6\xa6\x8c\x76\xd6\x97\x6b\x7b\xe0\xeb\xa2\x7a\xef\x2f\xbe\x4f\x1a\xf6\x57\x8c\xea\xed\x8a\x5b\x13\xd6\xc6\xa6\x32\xc9\x65\x62\x01\xb1\x92\x65\xc2\x11\x9c\x43\xb1\x7b\x21\x86\xd1\x46\x49\x7b\xd1\x72\xf6\xe9\xa7\xa8\x10\x11\x23\x4a\xfa\x7c\x19\xa1\x1c\x52\xc0\x52\x88\x60\x78\xca\x89\x19\x91\x08\x1a\xa6\x9f\x93\xb0\xb4\xdc\x00\xa9\x88\xb2\x1d\x2b\x05\x7b\x4b\x64\x77\xc7\x64\xfb\xaa\x1e\xfa\x1f\x9d\x2f\x83\x98\x93\x4a\xe6\xcb\xa7\x92\x92\x90\xec\xaa\xfa\x4c\x0d\x9d\x37\xde\x89\x5e\x60\x0f\x78\x36\x9a\xf6\x7e\x92\x70\x4b\x52\x5d\xa6\x1a\x57\xe6\x5d\x33\xab\x35\xa5\xac\x7a\xe8\x96\x63\x59\x96\xc6\x45\xb3\x55\x38\x53\x94\x1a\xf1\x57\xe3\x62\xe3\x8d\x37\x57\x90\xa4\x8d\x49\xb9\xc0\x27\x73\xb2\x5c\x4f\x3b\x65\x52\xd0\x6d\x9f\xb9\x12\xb2\x8a\x0c\x4d\x63\xcc\x96\x23\xba\x3f\x06\xef\x08\xa5\x77\xe6\x26\x28\xf0\x96\xc8\xea\x3a\x25\x55\x2e\xdc\xec\x73\x45\x0b\xa2\x91\x39\x8c\x72\xb6\x8f\x41\xc7\x18\xad\x12\x85\x30\x1e\xdf\x16\xc1\xcc\xbb\x15\xf5\x08\x30\xd5\x26\x82\x95\x1c\xe9\x71\x18\x2b\xe9\x06\xf4\x1b\x35\x04\xaa\x20\x77\xe5\x63\xc4\xf0\xaf\xd9\x9c\x19\x59\x66\xd5\x3a\x9d\x1b\x28\x7c\xd9\x5c\x65\x84\xba\xd0\x0f\x4f\xd6\x66\x8a\xdc\x54\xe2\xd7\xf8\x4c\x2d\x8e\xe5\xcd\xd6\x11\x0e\x2f\xa8\xc5\x69\xa6\xe6\x13\x81\xd1\xb4\xe4\xec\x87\xf5\x2a\x29\x1b\xb7\x52\xd9\x24\x0b\x78\x1e\xbb\x1e\x7a\x8d\xf4\x19\x2c\xca\x83\xc2\xbe\x3a\xc0\x44\x46\x4b\xdc\xf6\xca\x96\x8f\xc5\x35\xec\x73\xec\xd3\x81\x49\xd2\x54\x70\x05\x53\x7f\x93\xfb\x76\x58\xdf\x8b\x20\xcf\xe6\x85\x74\xbf\x48\x3e\x26\x4a\xf0\x5a\x31\x36\x40\xd2\x19\x15\x20\x29\xc2\xb3\x4e\xcf\xcf\x15\xc7\x2c\x4b\x3f\x9a\x40\x8b\x2d\xd8\x08\x4e\x23\x11\x96\x4c\x4c\xe6\xcc\xe2\x9d\xf4\x94\xf6\xf4\x1f\xff\x4d\x3d\xfd\x91\x89\x21\xe9\x9e\x50\x25\x38\xfd\xc6\x55\x2c\x26\xf5\xd4\x19\x09\xaa\xbe\xad\x4b\x1e\x1e\x44\xb3\xa8\xd6\x07\x44\x07\x69\xc9\x68\xfc\x49\xce\x42\x4f\xcb\x5c\x9c\x46\x09\xd5\x98\x85\x71\xc8\x10\x0f\x92\x5b\x9a\x4e\xe4\xb2\xdf\x0c\x5a\x33\xac\x7a\x60\x05\xc4\xb0\xac\x7a\x1f\xb8\x66\x89\x24\x77\x62\x7a\x81\x3e\x4e\xfb\xaa\x27\xe4\xc7\x72\x88\x67\xf5\xa3\x57\xfe\x04\x0b\xac\x04\xc7\x93\x97\xd1\xe0\x49\x2e\xc4\x77\x80\xa2\x6e\xca\x59\x99\x92\x79\x0f\x97\x8e\xc6\x06\x8a\x96\xb1\x8b\x72\x61\x9b\x84\x20\x0c\x97\x6a\xd0\x22\xda\xa2\x75\x31\x59\x87\x05\x83\x81\x19\x6a\x54\xc3\xeb\x1b\xa8\xc0\x22\x25\xaf\x7b\xf5\x00\x14\xd5\xae\x13\x8b\x75\x35\x6d\x5c\x49\xda\x68\x94\x17\x91\xff\x27\x1c\xa9\x8e\xd2\xb0\xfc\x1b\x6a\xe4\xff\xe8\x20\xc3\x99\x65\xe3\x38\xfb\x66\xb0\x28\xb4\xf3\xec\x52\x18\xd2\x06\x89\xcf\x60\xdb\xf5\x2a\xc3\x8b\x33\x81\x84\x71\x5a\xce\xae\xde\xef\x81\xee\xde\xee\xe9\x7a\x11\x0d\x56\x3c\xb4\xd2\x89\x78\xec\x44\x98\x53\xd6\x1f\xd7\x6d\x5a\x6d\xb6\xc1\x56\xbd\xa8\x09\x73\x25\x35\xda\xa4\x2c\xcb\xa1\xc3\x30\x12\x6c\xa1\x38\xc0\x08\x47\xb5\x00\x89\xd8\x58\xce\x62\x3e\x27\x61\x8e\x9e\xb7\xf2\x1b\x7e\x01\x57\x62\x33\x74\x7d\xbd\xb7\x05\x7f\x2d\xae\x6f\xa1\x1b\xba\x62\xe2\x45\x89\x2d\xed\xd7\x35\x89\x0f\x75\x05\xa1\x12\x7e\xbe\x12\xa2\x6e\xe0\x8c\xa6\x15\x58\xc6\x06\x12\xd6\x34\x8a\xfe\xc6\xf3\x01\x4d\x31\xb0\x7e\x5f\xd5\x65\x59\x1f\x69\x82\x96\xbf\x40\x09\x83\x75\x04\x3e\x2c\x22\x78\xcb\x4b\x26\x7c\x95\x85\x81\x09\x0b\x30\x3c\x72\x08\xb1\x0b\x26\xfa\x90\xcc\xdb\x03\x81\x5f\x8c\xdd\x6e\xc9\x77\xf7\xba\xef\x64\x07\x2a\x90\xd0\x42\x5f\xb6\x81\xa4\xd2\x56\xa2\xdc\x70\x3f\x32\x76\x9e\x8e\xea\x21\xb0\x16\x2e\x18\x5b\x1f\x13\x05\xb8\xeb\x78\x39\x54\x06\xb7\xd1\x01\xb4\x1c\x44\x1a\xaf\x68\x3b\xc3\xe5\x4e\xe2\xef\x24\x1e\xc3\x9a\xac\x84\xd6\x74\xcb\x80\x98\x74\xd6\x12\xa3\x91\x2b\xc6\x86\xae\x9c\x59\xc3\x3e\xbb\xc9\xc4\x6d\x56\x57\x5d\xe0\x77\x65\xe7\x06\x0c\x51\x6f\x23\x1b\x54\x66\x4a\xd3\xb3\x28\x2e\xd8\xe6\x35\xee\xa1\xc8\x96\xf4\x3f\x3a\xdf\x0c\x6b\xaa\x72\x65\xfb\x2d\x0b\x45\xeb\xdf\xb8\x01\x48\x8e\x1a\xda\x8f\x63\xdd\xaf\xb6\x05\x60\x4f\x24\xae\xee\x76\x87\x3a\x4a\x98\xe6\xb1\x0f\xc5\x52\x10\x2c\x09\x82\x5d\x20\x7d\x13\x5a\xb7\x05\xcd\x0b\xb1\x24\x31\x49\xb2\x7a\x8c\x51\x17\x70\x94\x23\x05\x2c\xe7\x50\xa4\xc0\x46\x0d\xaa\xf1\x5e\xbd\x4c\x96\xe0\x0a\xe1\x16\xcc\x5b\x09\x49\x88\x96\x62\x3f\x8a\xdc\x3f\x09\xc3\x29\x6b\x99\xbe\xe5\xab\x5a\xa3\x60\x86\x26\x83\x95\x2d\x5a\x38\xb6\x41\x5f\x1f\x39\xf0\x68\x0c\xe1\xec\xa2\x34\x17\x3a\x49\x98\x07\x49\x3d\xd4\x25\x4a\xe6\x3c\x04\x30\x53\xdd\x6c\x2e\x78\xe7\xa3\xfe\x00\x0d\xe0\x9d\x9a\x4d\x60\x64\xa6\xa7\xf2\x23\x55\xca\x9b\x34\x5b\x24\xbf\xc2\x16\x30\x30\x01\x02\xe3\xf9\x89\x1d\x86\x32\xfb\x62\xcf\xb0\x9e\x64\x3f\xfb\xa2\x9c\xfb\x29\x5d\x9b\xbe\x35\xbb\x5d\xe1\xbd\xce\x44\x28\xbc\x55\x46\x0c\x50\x84\xd5\x03\x69\xfc\xda\xcc\x28\x4c\xa5\x15\xa5\xd2\x08\x17\x8d\xc9\x09\x53\x08\xc2\x4e\xf8\x97\x2c\x3d\x09\x3c\x71\x73\x65\x9c\x5f\x5e\xe0\xd5\xb2\xbd\xa5\x8d\x50\x31\x73\xb1\x44\x0c\xf3\x55\xd7\x9d\xda\x45\xa5\xb9\x9f\xe1\xb3\x0f\x8d\x26\x0a\xa9\x2b\x67\x3b\xe5\x7a\xa2\x34\x2d\x5e\x64\xa8\x9a\x24\x6b\x69\x6f\x98\x2e\xac\x48\xc9\xc9\xa1\x26\xff\xf1\xff\x38\xdb\xfa\x01\x65\x39\x60\xe2\xb8\x5a\x1b\x71\x9e\x2d\xa0\x7a\x8f\x46\xe4\x3d\x23\xcf\xd5\x5c\x35\x9a\x94\x20\xa0\xe5\x81\x97\x39\x5c\xf0\x41\x64\xa2\x8c\xc6\xe2\x90\x30\xf2\x3a\xc9\x6a\x4b\xd5\x27\xf0\xd1\x61\x5b\xe8\x50\x12\x96\x11\x2a\xea\x75\x19\x08\x9b\x2f\xd8\x4f\x61\x22\x00\x4c\xbe\x03\xe0\xd0\xa7\x28\x7b\x46\x1c\x97\x5a\x3e\x2f\x83\x8f\xfa\xe6\x5d\x10\x51\x21\x3f\xb4\x60\x4b\x7c\x84\x2b\xb1\x87\xf9\x54\x6d\x91\x8a\x0a\x91\x50\x2c\xa1\x82\x3c\x0d\xe2\xa3\x0e\x9d\x65\x6c\x24\xd1\x38\xb2\xd9\x5c\xb6\x19\xb4\xde\x2e\x66\x29\x62\xd3\x12\x9a\xc0\x5f\x15\x92\x46\xec\xc6\x51\xf4\x81\xac\x8f\x3a\x5b\x85\xd6\xa9\x67\x3b\x72\x2f\x1e\x4c\xd2\xab\x07\x97\x6b\x6e\x6f\x88\x28\x71\x0b\x2e\x41\x0d\xb0\x2f\xad\x84\x4c\x5b\xbc\xb3\xdd\xb0\x74\x5f\x61\x1c\xf5\x87\x93\x30\xe3\x4d\x23\x19\xb2\x68\x61\x97\x89\xad\x1d\xc0\xd9\x2a\x01\x9d\x78\x13\x67\x01\x56\x91\x9d\x1a\x86\x5c\xb6\x4d\xeb\xec\x87\xa6\x4e\xd5\xf9\x09\x13\x33\x35\xe6\xcd\x99\xa9\x49\x64\xe6\x29\x60\xfb\xd9\xba\xfe\xa4\x82\x08\x6b\xde\xf4\xd7\x9a\xaa\x7b\x13\x8b\xe6\x7b\xd6\x3c\x42\xeb\x1e\xd1\xe6\x8d\xe9\xc6\x16\x6c\xdf\x6f\x8b\x5b\x60\xfa\xe1\x2c\x1c\xd3\x4e\x18\x3c\x86\x9a\x31\xae\x28\x52\x38\xae\xad\x11\x86\x81\x11\xab\x93\x9a\x59\x31\xb1\x1a\x87\x9f\x2c\x14\x64\x64\x01\x99\x2e\x84\x52\x95\xc5\x35\x04\xc3\x54\x7c\xdf\x51\x5d\x4c\x9f\xbd\x39\x95\xf5\x9b\x54\xcc\x83\x96\x3a\x27\x01\x53\x47\xf1\xa8\xe8\x20\xdb\x6a\xcb\x94\xad\x57\xbd\x5c\xa9\xeb\x23\x42\xb2\xba\xca\x1f\x5f\xb0\x93\x05\x4e\x73\xb3\x1d\x4a\x16\xdf\x7f\x7a\xf4\x50\x33\x93\xa7\x5b\xb3\xd9\x25\xf5\x00\xcb\x34\xa2\x95\x0a\x92\xf6\x19\x79\x31\xc9\x8f\xd2\x64\xdb\x9a\xab\xe5\xb7\xf7\xba\x6f\x1f\x27\x1c\x0b\xc6\x6b\x80\xb1\x84\xc3\x78\xf4\x30\x7d\x0c\x69\x37\x86\x77\x21\x62\x04\xca\x10\x0d\x07\x27\xee\xdd\xea\x00\x43\x79\x1e\x03\x13\x61\x30\x97\xb0\x2f\x30\x27\xbd\x8c\xcc\x87\x48\x66\xf7\x1e\xe1\xdf\xcb\x0a\xfe\x1b\xb7\x22\x6e\xa5\x35\x6e\x34\xac\xb8\x08\xd7\xfa\x1b\xb7\x75\xd0\xfe\x68\xe3\x90\xc8\xf0\xc1\x41\xb2\xdc\xcb\x7a\x32\x5b\x39\x5e\x41\xb4\xef\xfd\x3e\x47\x2e\x31\x03\x27\xfd\x3e\x17\x65\x6c\x03\x7d\x3e\x90\x80\x85\x7f\x5a\xe4\x12\xd9\x4f\x51\xcb\xad\x3e\x2d\xad\x4a\x83\x5e\x0a\x54\x87\xdd\x69\x8c\xca\x58\x7c\xc1\xfa\x8a\xf7\x79\x5c\x45\x28\x0c\x3c\x08\x50\x09\x76\x81\x7e\x80\xdb\x76\x2c\x2d\x4c\x50\x6a\xa8\xd6\x45\x45\x23\xaf\x3b\x1b\x36\x6d\xd3\xdc\x74\xb3\x18\x8b\x18\x19\x95\xfb\x20\x2c\x56\xbd\x8e\x2b\xdc\x57\x29\xc3\xaf\xfa\x1a\xf6\xa8\x77\x44\x19\x48\xe0\x2e\x11\x29\x62\xe3\xe2\x3a\xce\xea\x3c\xfd\x95\x00\x44\xf5\x8d\x4a\x39\x5d\xdc\x0f\xf8\xf0\x48\x49\xba\x15\x17\x95\xc9\xfa\x20\xd5\xa8\x66\x9a\x1b\x01\x03\x3d\xc2\x18\x35\x14\x65\x96\x68\xdb\x00\x3d\x8d\xcc\x3b\x7f\xf7\x92\x5d\xde\x0b\x61\x84\xdc\x86\x34\xf1\xb7\x1a\xa4\x98\xcb\x54\xc3\x03\xb5\x72\x94\x3c\x94\x9d\x4a\xc8\x4e\x34\xb3\xa2\x6a\x58\x79\x24\x81\x49\xbd\x82\xed\x37\xfb\x75\x5d\x22\x16\xc5\x8a\xb6\x6e\x0e\x64\xfc\x93\x81\xc7\xf9\xb2\x2a\xc6\x6d\x82\x68\x66\xb1\x34\xe0\x9a\xb2\x72\xe1\xc4\x7c\x93\xfc\x6d\x6c\xba\x70\x9c\xb5\x39\xb9\x52\xe0\xc2\xb4\xce\x62\x6b\x01\x6b\xc6\xb0\x19\x81\x6e\x0b\xd8\x87\x31\xd5\x90\x05\xb8\x52\x8e\x32\x02\x5d\x39\x52\x83\x7e\x0b\xca\xa8\x7e\xf1\x9a\x72\x9c\xe3\xb0\xec\x34\xbe\x8c\x46\xe5\x94\x6e\x1a\xd4\x2f\xf0\xca\x1a\x35\x0b\xd3\x88\xfa\x40\x95\x4a\xea\x7a\x27\xce\x36\x27\x1d\x32\xb2\x6a\xeb\xd6\x93\xe9\x77\x4d\xe8\xca\x54\x20\x75\x62\xb2\x39\x61\x0b\x1e\xcf\xd2\x26\x66\x21\x70\xdc\x67\xe6\x8a\x98\x3e\x31\xfc\xc8\x20\x00\xc3\x09\x4b\x32\x30\x96\x59\x6a\x9d\xbc\x79\xf9\xec\x43\xe2\xe9\x33\x69\xae\x43\x9e\x64\x6d\x9a\xd2\xe4\x7d\xe3\xa3\x84\x46\x7d\x74\x2e\x5f\x57\x3f\x75\x63\x3c\x12\x0d\x5f\xd2\xb0\xf7\xb0\x2b\x13\x48\x47\x71\xec\x10\x30\x22\x42\x03\xda\xc7\x44\x15\x9c\xc6\xe7\x26\x7a\xaa\xa8\xb0\xba\x0c\x1b\x01\xa9\xca\x62\x5e\x7c\xa6\x06\xbf\xc0\x1e\x3e\xe3\x7d\xf2\xb6\x72\x1b\x3b\x09\x64\xaf\x4d\x36\x67\x87\x05\x7d\x6b\x7b\xda\x7c\x66\x5f\xb7\xe9\x9a\xc8\x19\x01\xdb\xa9\x1c\x68\xcd\x77\x6e\x26\x69\x65\x0f\x45\x57\xac\x8b\x12\x74\xfa\x6f\x50\x45\x21\x8c\x6f\x0d\x94\x63\xce\x41\x46\x14\xba\x1b\xb6\x47\x4d\x3d\xea\x1a\xa2\xb8\x1b\x62\x06\xdd\xf2\xdb\x92\x5b\xe3\x7f\xcf\x5a\x93\xd9\x5f\x69\x56\x0c\xc4\xfb\x48\x40\x3b\x18\x6a\x9a\x0a\x3c\x66\x53\xc4\x4e\x2c\x5d\xbf\x8c\x0f\x3a\x70\x96\x46\x8f\x76\xa4\xf1\xf7\x9d\x46\x34\x68\xd6\xa4\x63\xcf\x0d\x0e\x4b\x84\x46\xe9\x9b\x44\x24\x63\x1b\xe5\xb3\x46\xb8\xdf\x2e\x69\x6a\x70\x48\x89\xb2\xa2\x1d\x0a\xa7\x8d\x18\x94\x78\x82\x35\x5a\x1f\x47\x75\x8a\xeb\x03\xe3\x0a\xa7\xe3\x2c\x8a\x9e\x43\x71\xdf\xb6\xe9\x4b\x42\x91\x4d\xcf\x81\x9d\xd4\xd6\x22\x27\x84\xce\x2b\xe2\x3b\x56\x55\x22\x3e\x59\x10\xe3\xeb\xcc\xf2\x15\xfe\xb2\xca\xad\x29\xf3\x55\x94\x0a\xe6\x2b\xc0\x2e\xa1\x99\x22\x21\x19\x51\x76\xd4\x40\x4a\x84\x10\xe0\xd9\x78\x3d\xf6\xea\x39\x7a\xff\xec\xfc\xe2\xf5\xb3\xc5\x3e\x73\x41\x34\xe1\x91\x94\xe8\x64\x0b\xed\xc2\x74\x28\xad\xf1\x6d\x79\x89\x26\x09\x03\x32\xb5\xbb\xd9\x03\x2e\xa4\xc8\xf4\x30\xef\x96\xcb\xd7\xfc\x9d\xd8\xef\xfb\x24\xc5\x7e\x7f\xc2\x2c\x15\x34\xf4\xe7\x8d\x52\xe3\xcd\xf0\x35\x16\xa9\xca\x40\x91\x1d\xfa\x6d\xe8\x09\xb5\x21\x9f\x18\x52\x2e\x9c\x01\x9e\xda\xd7\x7a\x00\x27\x91\x53\x10\x61\xde\x49\xbc\xbf\xd5\x80\xa0\x93\xc8\xbf\x2e\x07\x33\xc2\x7e\x99\x47\x45\x7f\xa5\x15\xbe\x39\x5e\x1f\x74\x45\x62\x89\x83\x05\x52\x88\xc5\xa6\xac\x2b\x22\x45\x19\x2b\x63\xcb\xa7\xf8\x4a\xd4\x11\x6d\x41\xac\x8f\x00\x46\x9e\x52\xa2\xf8\xde\x56\x62\x83\xb7\x01\xbb\x4d\x9a\x3d\x90\x18\x75\xab\xcd\xa7\xd6\x3b\x28\xf1\xd4\x56\xb3\xdf\xa7\xcd\x42\x97\x75\x47\x93\xc9\xbb\x31\x37\xf2\x15\x6c\x45\x8e\xe7\xee\x4c\x79\xb5\x54\x05\x34\x8f\x0c\xef\x37\x09\x97\xb0\x42\x54\x6a\xfd\xce\x3d\x13\xed\xe6\x66\x05\xcb\xf8\xf2\x67\xe2\x95\x7c\xea\x67\x43\xc8\xbf\x23\x06\xb7\x42\x9e\x4d\x66\xeb\xb9\xe8\x49\x4d\x99\xee\xd6\x1a\x17\x4a\x79\x19\x6d\xfc\x9d\x00\x21\x89\x27\xc8\x2d\xd9\x44\xbe\x47\xc8\x3c\xd1\xe9\x9f\x92\x27\x1c\x7d\x0b\xb9\x5c\x0c\xcf\xcb\x6f\x57\x6b\xda\xd2\xbb\x6f\x43\x39\x9d\xeb\xa9\x20\xa1\x7f\x03\xc9\xee\xc8\x4e\xd2\x37\x26\x17\xc6\x20\x9f\x6c\xb6\x65\xc1\x0f\x76\x5b\x04\x4e\x21\x24\x4b\xac\xb8\x6c\xc2\x95\x49\x62\x02\xc7\x68\x59\x5b\xdb\x16\xab\x6c\x21\x9d\xf9\xfb\x80\x91\xe7\x43\x81\x68\x8d\x8a\xb4\x07\x1c\x66\x60\xc5\xc3\x0e\xac\xdf\x16\x9d\xa0\xc9\xcf\x1c\xfa\x3f\xde\xfc\x51\xbc\x1c\x93\x29\x8d\x58\x95\xa0\xb9\xc0\x3a\x14\x62\x32\x87\x0d\x91\x18\x7a\xa5\xa1\x95\x1d\x29\x94\x30\x8a\xc2\xcd\x0f\x1b\xbc\xb4\xf8\x8e\xbe\x13\x09\xdd\xb1\x71\x36\x61\x25\xd3\x0a\xee\xde\x51\x7a\x72\x7e\x45\xba\xfc\x8e\x87\x88\x93\x81\xcb\x27\x35\x4c\xf0\x6a\xe9\xa7\x8a\x56\x7d\x8a\x33\x67\x16\x8a\x9a\xf8\x17\xd9\x37\x9d\x85\x32\x51\x36\x9c\x05\x54\xe0\x95\x82\x4c\x8e\x92\x49\x59\x97\xbf\x2f\x4a\xca\xa1\xe9\xe3\x30\xc4\xb2\x49\x59\x50\xc7\xc4\x10\x53\x59\x3e\x95\xbf\xa0\xea\xa5\x49\x3b\x83\xa3\x6a\xeb\xd2\x45\xe5\xb3\xb5\xb3\x4d\x8f\xcb\xf7\x34\x6b\xfa\x49\x8b\xc0\xc7\xce\x9e\xb3\xe5\x8a\xf8\x6f\x55\x58\x48\x8e\x0a\x07\xf8\xaf\x84\x8f\x79\x4a\x3a\x7c\xeb\xcb\xb1\x94\xc0\xc8\xfe\xce\xfe\x62\x63\x94\xf4\x60\x31\xe9\x91\xcd\x88\xce\xbe\xf9\xe4\x2b\x28\x1f\xc0\x62\x9f\x04\x72\x57\xb7\x20\x78\x66\x68\x7d\xf2\x9e\xa8\x05\x6c\x78\x4f\xc4\xd0\xec\x33\x32\x0e\x66\x4a\xfb\x61\xef\xd3\x24\xb8\xf4\xed\xc0\x5a\x9f\x4d\xac\x60\x3c\x53\xde\xc1\xd1\x22\x32\xe9\x48\xa7\x0d\x71\x4c\x5e\xe2\x33\x4c\x5d\xf1\x22\xa8\x81\x85\x57\x62\x9a\xbb\xa2\xad\xbc\x31\x1a\xcd\xfa\xc1\xec\x48\x73\xe3\x74\x3e\xde\xa7\xc0\x30\xad\x13\x7e\xac\x97\xf7\xb2\x04\x76\x79\x97\x41\x1b\x82\xb8\xa7\xe6\xe0\x38\x52\xdd\x07\xb9\x34\xdf\x08\x8c\x94\x4e\xc4\xcd\x87\x59\xc4\x64\x40\xb8\xc4\x53\x0e\xbe\xcb\xe4\x9b\x6a\xb3\xdc\x38\x1b\x17\x73\xc8\xa4\xb8\x94\x4e\x2a\x86\x0c\x9d\x13\xf3\x11\xfb\xef\x91\x76\x68\x65\xc6\x30\xcc\x74\x3e\x30\xaf\x99\x66\x2c\x10\x78\xac\x48\xcd\x07\xb4\x76\x0e\xb3\xe7\x80\xa5\x39\x04\x54\x21\xcc\x10\xad\x26\xd7\xf5\x20\xdc\x90\x5b\x9f\x2d\x26\x74\x22\x5b\xad\x6f\xb8\xd4\x53\xf9\x4c\xd6\x37\x09\x7d\xce\x96\xd8\x43\x22\xa9\x11\xc0\xce\x25\x5e\xbb\xcf\xa8\x04\xd6\x8b\xab\x5d\xca\xaf\xe4\xde\x6f\x3f\xfc\xde\xa1\x5e\x67\x02\x79\x78\xef\xb7\xbf\xfc\x4e\xe4\x95\xff\x80\xb8\xba\xc2\x4d\x6b\x0e\x45\x3d\xd0\x16\xd4\x1f\xc9\x3b\x42\xdb\x00\x71\x3e\xf5\x84\x6d\x9f\xfa\x38\x59\x56\x52\x24\x78\x5e\xea\x04\x72\xc4\x28\x7b\x53\x97\xb4\x31\x24\x9b\x7f\x4f\xf2\xa1\x2c\xdc\xcb\x1c\xe1\x89\x72\x19\x0b\x75\x49\xee\x65\xec\xef\x49\xe4\x73\x04\x48\xca\x6c\xbf\x7c\x96\xc1\xb3\x17\xa5\xab\x1b\xea\x82\xff\x8c\xf2\x34\x4a\x4d\xfa\xf6\x1a\x1f\xea\xde\x9a\xab\x83\xdd\x36\x0c\x79\xa1\x9f\x27\xa0\x54\x51\xe1\x06\x15\xaf\x49\xa1\x2b\xf9\xb4\x1f\x91\x25\xda\xd4\x24\xbe\xf1\xf1\x28\x40\xc3\xc2\x98\x72\x6e\xc9\x78\xa0\x55\x26\x17\x35\x56\x37\x39\xa6\x38\x32\x52\x27\xd6\x1d\xf2\xd3\xa9\x46\xad\x46\x2a\x5d\xdc\xa6\xb0\x57\xf0\x99\x16\x74\x23\x53\x35\xb4\x83\xaf\xea\xe6\x1b\xf6\x3d\xcf\x9f\x29\xb6\xc9\x0b\x39\xa8\xd6\xf1\x09\x35\x39\x24\xa5\x19\x41\x84\x3a\x0e\x18\xd1\x82\x57\xea\x31\x0b\x80\xb6\xa4\xc6\x22\x76\x7f\xcd\x3f\x82\x0c\x92\xd0\x25\x0f\x87\x3d\xe0\x5d\x08\xdb\xcc\x4c\x53\xd6\x37\x62\xe5\x0c\x4e\x8b\x04\x2e\x4a\x0b\x89\x23\x11\x1b\x7f\x6a\xfa\x09\x9f\x90\x98\x3f\x34\x4d\xa4\x96\x12\xda\xd5\x2d\x48\x07\xa9\x2a\x29\xac\x85\xf8\x08\x40\xd8\x4b\xf7\xd6\x1f\x01\x11\x6f\x9d\xcb\x56\xe7\xc7\xec\x94\xa9\xc3\x30\x6a\x51\x1d\x09\x60\xd2\x63\x8d\x92\x25\x71\xe7\x8a\x39\x5d\xc6\x22\x51\xc8\xe9\xad\x7e\xe9\x9c\x77\xff\x3c\x57\xdc\x58\xbc\x59\x04\x3d\xed\xa9\xf5\xee\xca\x2a\xcf\x1c\xf0\xe1\xc2\x1a\x66\xc0\x74\x24\x1c\x45\xec\xaa\xe5\x22\x3e\x54\x57\xfc\x10\x3e\xd0\x07\x67\x2f\x4c\x14\xd1\x21\xc7\x3b\x87\xe0\x68\x53\xa2\x07\xa1\x24\x36\x23\xec\x20\x9f\xd4\xe7\x88\x27\x44\x90\x74\xa2\x14\x49\x4c\x87\xca\x60\x2e\xde\x49\xe2\x3a\x54\x9f\x18\xeb\x72\xdc\x5b\xb1\x00\x04\x28\x3a\xf2\x6a\x4f\x05\xc1\x11\xac\x8c\x5f\x82\xb0\xa9\x15\x8e\x5b\x1c\xb7\xe6\x8d\x16\x6c\x4e\x6d\x45\x8e\x3f\x9a\x5c\x6c\x2d\x8b\xe4\xb9\xfa\x25\x6e\x71\x6e\x4d\x4e\xc7\x5d\x57\x36\x6a\x17\x36\x5d\x0e\x64\x9c\xce\x3d\x0e\x3a\xd2\xbe\x5f\x3e\x6a\x1e\x27\x67\xf0\x52\x49\x09\x6b\xf3\x43\xec\x71\x01\x4e\xc5\x2e\x9c\x6c\x3a\x3f\x72\xba\x2e\x2b\x0e\x45\x36\xe0\x94\x6a\x78\x92\xe8\xd1\x43\xaa\x54\x2a\x5e\xd0\x7f\x6a\x68\x0b\x6a\x87\x0a\x30\x64\x9f\xaf\x3c\x5c\xe2\x82\x0f\xd3\x0e\xc9\x1f\xff\xf5\xc7\x7f\x55\xd6\x94\x2c\xd0\x2d\x6f\xb4\xaa\x47\x9b\xa7\x37\xa6\x23\x82\xa1\xd6\x3a\x3d\x73\x74\xc2\x39\x39\x9d\x3d\xb1\x11\xbd\x89\xbb\x1d\x00\xe2\x1c\xdf\xca\x6d\x07\x16\xf4\x75\x2b\xb0\xac\x37\xad\x50\xcc\xa0\x99\xdf\x39\x21\x12\xf8\x6e\xd5\x7c\x6e\x63\xb2\xa3\x62\x3b\xdb\x29\xfb\x9a\x03\x87\xdf\xc0\x13\xeb\xda\x0d\x64\x4f\x72\x33\x93\xac\x36\xf2\x12\x9d\x2a\xe6\x26\x35\x28\x57\x8c\x9c\x54\xae\xb0\xf0\xb8\xaf\x29\x1f\xd8\xe9\xc2\x05\x45\xb4\x60\xc1\x61\x5f\x2b\x39\x13\xe3\x43\x11\x50\x0a\x51\x7a\x8a\x18\x21\xe6\x80\x8e\x01\xc9\x58\x75\xf6\xcd\x8c\x7d\xda\xf3\x7d\xc6\x80\x8f\xc2\xa9\x2c\xc7\x9a\x9d\x18\xe6\x5b\xb2\x9b\x2d\x63\x63\x9b\x34\x90\xf4\x13\x0c\x27\xdc\x0f\x60\x1b\x7b\x04\x71\x6b\x4c\xd1\xb9\xd0\x92\xde\xf8\x73\x16\xe0\xea\x95\xe1\xd8\x47\xc8\xb1\x72\x42\x8f\xf4\x86\x1e\xfa\x4c\x27\x14\x98\x03\x01\x25\x6c\x8b\x6a\xc0\x11\xdf\xe4\x57\x2d\x95\xc9\x3d\x00\x2e\x90\x32\x2c\x19\x96\x78\x90\xc8\x91\x05\x84\x29\x62\x66\xde\xbd\xbd\xfc\x70\xe6\x4e\x74\xc8\x16\x2c\x77\x76\x3e\x3f\xbe\x7f\xf5\x9d\xf5\xe0\xa1\x7a\x10\xd5\xe4\x35\xda\x73\xd2\x0a\x42\x61\xaa\x0c\x0c\xa7\xa8\xc4\x37\xf7\x79\x2d\xde\x4d\x13\x34\x69\xc8\x9b\x8b\x19\x49\x40\x95\x72\x2b\x0e\xd8\xb5\x62\x1e\x99\xc9\xa5\x3d\x1c\xea\x06\x08\x04\x2e\x3a\x13\xb5\x3f\x15\xcd\xd1\x7f\xee\xa0\x27\xce\x36\x72\x4d\xe2\xbb\x15\xc7\x14\xce\x4a\x30\x08\x96\x26\x0c\x85\x60\xda\xc9\x35\x78\x33\xbc\xe3\xe9\x33\xfd\x65\x41\xd3\xd3\xf4\xad\x1e\x89\xeb\xa5\xa6\x2b\x42\xd2\x07\x4c\x07\xf7\x35\x30\x01\x93\xc7\xc7\xb9\x9c\x5f\xa7\x91\xf3\x46\x6c\x7c\x83\x27\xa0\x24\x5e\xa7\x30\x12\xf0\x4f\x65\x33\xb1\xdc\x53\xcd\x43\xd1\xbb\xc0\x95\xb9\xce\xb0\x78\xf1\x82\xfb\x10\xf3\x29\x0b\x60\xbd\x92\x0c\x53\xa8\x6b\x72\x4c\x3f\x15\x58\x80\x82\xa8\x94\xf1\xb6\xe6\x1a\xfd\xc1\x4c\xd9\x2a\x27\xf7\x72\xb0\xaf\xec\xae\xb1\x08\xc9\xd6\x3b\x1c\x80\x79\x0c\x9c\x7c\xf4\x90\x7f\x8e\x50\x73\x7c\xb4\x88\xf0\x53\xb9\x72\x8f\xe8\x88\x40\xa2\xa1\x49\x65\xac\xef\xc7\xfb\xc8\xc5\x65\xa0\x9f\xc0\xe9\x03\x6f\x06\x38\xc4\x74\xfb\x74\x85\x75\x8f\x90\xa8\x8d\xbd\x1b\xef\xd3\xfb\xff\x71\xf9\xf6\xcd\x03\xed\xea\xa7\xb3\x1f\xce\xfe\xed\x5f\xff\xf5\xec\x78\x3c\x9e\x91\x74\x5f\x9e\x1d\x68\x57\x9c\x0d\x2d\x2d\x0d\xf2\x33\x1d\x06\x81\x9b\xfd\x63\x53\xdd\x3e\x7a\x48\x7f\x17\xdf\x4f\x37\x91\xdc\xad\x70\xa8\xc3\x13\xfd\x84\xab\xff\x83\xbd\xd4\xc8\x51\x15\xbe\xdc\x62\x72\x56\x25\xe4\x1f\xc0\x05\xd1\x81\x9f\xca\x87\xda\x5d\xbd\x24\x6c\x48\x3f\x85\x4e\xbe\x35\x45\x88\x4f\xec\x9c\x95\x65\x7c\x52\x5c\xbb\x49\x8c\x68\xcf\x51\x85\xd1\x54\x45\x27\x5d\x7c\x02\xeb\xdb\x22\xcf\x21\xdd\x70\x1c\xeb\x4f\x93\x7a\xd9\xe2\x55\x57\xe5\x8d\x3d\xd1\x4f\x48\x08\x04\x90\x89\x47\xae\x4e\xae\x38\x89\x23\x2c\xe3\x33\x7d\x7c\xb4\xcf\x5c\x4d\xd2\xad\x41\x92\x50\xef\x76\xe0\x58\x15\x87\x3e\x42\xf5\x46\x43\x48\xaf\x68\x17\x1e\x38\xa0\xe0\xe8\xa8\x6d\x30\x14\x89\xc3\xcd\x4d\xaa\x27\x09\x27\x08\x1f\x6d\x11\x65\xb8\x47\xcf\x54\x66\xd8\x8f\xee\x41\xcb\x81\x9e\x30\xe9\xb1\x65\xa6\x70\xa7\xf6\xe0\xbc\x28\xa3\x22\xe8\x98\xbd\x45\x6e\xb6\x60\x97\x6f\x64\x91\xcb\x02\x51\xe9\x06\x72\x94\x44\x0d\xe0\xc6\x84\x36\x1f\x2b\x56\xdc\x15\x67\x50\x49\x46\xfd\xc5\x6c\x74\x65\xba\xd9\xad\x3c\x05\x88\x83\x31\xac\xdb\xa0\x62\x01\x98\x84\x24\xb4\xc0\x51\x19\x70\x6f\x58\xbf\x80\xe5\xc4\x36\x08\xc5\x5b\xb7\xc3\x81\x4a\x4b\xe2\xb6\xbd\xc4\x6f\x71\x79\x4f\x20\xf4\x76\x1a\x01\xc9\xf4\x8e\x9a\x11\x0c\x54\x31\xdc\xd4\x25\x40\xb4\x5b\xf5\x0e\xb4\xac\xb8\xba\x5a\xac\xdb\xfa\xd8\x21\x60\x62\x68\x37\x24\x83\xd1\x46\x63\x6c\xa1\xe4\x4a\x21\x1a\x48\xab\xfd\x72\x4d\x14\xb3\x2a\x81\xf7\x15\x2e\xbc\xe2\x2c\x31\xea\x2d\xe5\x8f\xa6\xe1\xa2\x80\xd1\x4d\x06\x17\x94\xee\x28\x94\x70\x97\x20\x56\x6f\xa1\x05\xbb\x6d\x7d\x5c\xe1\xd7\x8a\xe6\xb0\x47\x44\x6e\x5d\x25\x5c\xf4\xb2\xe7\xeb\xb8\x04\x0a\xbf\x75\xf6\xd5\xed\xc8\x66\x3b\x0d\x5d\x0b\x2e\x17\xf1\x0e\x5e\x90\x59\x0b\xac\xf3\xaf\x21\x7e\x38\xc8\x95\x79\xc0\xc0\xb3\x79\x2f\x8b\xe4\xd0\xa0\x3a\x3b\x71\x34\xed\x4f\x5e\xbe\xd1\x2f\x36\xd7\x72\xc8\xeb\x13\x0d\x6a\x84\x03\x9e\x47\x2c\x47\xe2\xd8\x24\xbc\x70\xa6\xe1\xf7\xfa\xc3\x67\x89\xa1\x9d\x7f\xfb\xdb\xde\xf8\xd3\xc3\x90\x08\x7d\xd5\x83\xd4\x6d\x4c\xd3\xfb\xe4\x06\x41\x0a\x52\xf2\x17\xe2\x22\x65\xdd\x20\x10\xe2\xa0\x77\xe3\x59\x28\xea\x16\x16\x83\x26\x73\xcd\xa1\xc8\x36\x9d\x2d\x4d\x5e\xeb\xb7\xc9\xe9\xd6\xa4\x59\x30\xc7\x7e\x96\x52\x39\x05\x29\x53\x98\xf2\x59\xb8\x04\x8c\xa7\x13\xda\x32\x69\x97\x51\x4b\x8e\x8e\x3e\xa1\x1a\x36\x7c\x61\x9a\xcd\xed\xd3\x5c\x4f\x28\xa5\xb9\xf5\x4e\xdb\x1c\x66\x1e\x08\xdb\x8f\xc1\xed\x99\x51\x1b\xa6\xea\xdd\x08\x94\xcb\x67\x7e\x89\xe6\xff\xf1\xdf\xea\x01\x55\x2d\xad\xe7\x03\xda\xd7\x89\x44\x68\xeb\x61\x81\xd1\xb2\xa8\xe9\x4f\xd7\x26\xa1\xaf\xb0\x69\xcb\x6e\x8e\x24\x5d\xac\xf6\x99\x06\x46\x09\x72\x85\x74\xe0\x75\x0a\x61\x5d\x71\x06\x36\x49\x5b\xc1\xb1\x85\x59\xe6\x92\xfd\x34\x57\xd1\xea\xf1\x5d\x32\x58\x3a\x8e\x7f\x9d\x36\x19\x9a\xb7\xb5\xbc\x9e\x0b\xb2\x22\x90\x2d\x01\xb6\x89\xf8\xfe\x57\x69\xe6\x6e\xb7\x1b\x23\xc9\x24\xd6\x69\x4d\x3c\xe4\x6c\xbc\x6c\x01\xbc\x65\x3a\x60\x94\xb4\xcd\x58\xa9\x25\xf1\xb3\xf1\xac\x51\x21\x83\xe3\xcb\xbc\xbd\x35\xde\xc7\x5d\x02\x84\x13\xd7\xa5\x11\xf1\x3f\x68\x09\x4b\xd2\x6d\xdd\xbc\xfb\x25\x0a\x90\x08\x37\x78\x44\xe8\x6f\x2f\xea\x88\x11\xd9\x6d\x21\x5b\xd9\x14\xb1\x2d\xc6\xad\xd2\x12\x6e\xf0\x1b\x3d\x1e\x22\x57\x49\xc6\x86\x12\xe7\xd3\x4c\x4b\x39\x9b\x40\x5c\xe3\xf7\xe0\xc8\xa0\x2e\xc9\xdb\xf8\x66\xb5\x10\x60\x1c\x5f\x31\xb9\x84\x4d\xc2\x2b\xf8\x0a\x32\x1b\x60\xa1\x27\x78\x24\xb0\x32\xbc\x5f\x2d\xbc\xe6\x49\x62\xfb\x5d\x80\x66\x18\x6a\x15\xc6\x82\x6e\x47\xf1\x98\x53\x65\x73\xe1\x5c\x7d\xf3\xb7\x41\xf2\x95\x46\xa9\xce\x60\x53\xaf\x84\x6f\xc3\x59\x2a\xbf\xee\xde\x69\x4c\xdd\xd0\xb6\x79\x8d\x28\x84\x8a\xcf\x96\xe1\x1e\xbc\x8e\x98\x11\x4c\x94\x2f\x0d\xdc\x86\x90\xfc\xf9\x6a\x06\x76\xba\x99\x74\xdf\xf1\x91\x44\xf8\xd8\x70\x68\x45\x95\xe3\x6e\x59\x1a\x76\x64\x4b\xe2\x67\xce\xc2\x04\xde\x49\xd4\xa6\xee\x21\xfc\x0c\xfa\x8b\x59\x9c\x89\xc2\x88\x4f\x45\xca\x8a\x71\xda\xe7\x60\xed\x42\x7c\x0c\x4e\x2c\x39\x34\x21\x1d\xcc\x9e\xc6\xd3\xb3\x71\x72\x9d\x29\xc4\x60\xda\xc3\xd8\x5a\xa9\xda\xb4\x5c\x43\x6e\x57\x61\x99\x72\x20\x99\xab\x02\xf7\x12\xfc\xa4\xa0\x70\xf5\x91\x2c\xe7\xec\xf0\xbf\xb2\xa4\x8a\xe0\x17\x62\x36\x39\x42\xa3\xeb\xc1\x97\x44\x84\x9c\x33\x92\xfe\x74\x22\x90\x62\x84\xae\x7f\x2e\x90\x62\x7c\x44\xf6\x6b\x02\x29\xfe\xb4\x8d\xfe\xf4\x91\x14\x07\x32\x39\x9b\xe2\x72\xa6\x87\x54\xbe\xd2\x10\x3e\xa3\x38\xaa\x55\x9b\x10\x8b\x7b\x33\x39\x27\x1c\x9c\x43\x39\x51\xc6\x19\xc2\x05\x7e\x6a\xfb\x09\x0d\xe2\x0f\x9c\x0e\xf2\x4f\x31\x88\xc7\x54\xe0\xc4\xac\x38\xe1\x3c\x1c\xec\x3f\x6e\x84\x9c\x18\x9a\xa3\x0b\x67\xc7\x02\xfe\x34\x2e\x70\xdc\xe1\x69\x99\x30\x4c\x90\x8d\x17\x6a\x7b\xa0\x52\x85\xef\xb9\x0f\xb0\x0b\xcf\x0d\x5a\xc5\x3a\x0c\x13\x44\x94\xe0\xe9\x20\xc1\x13\x56\xcc\x2f\x45\x0b\x8e\x3b\x0d\x12\x25\x52\xc7\x2f\xe1\xd1\x4a\x8c\xb3\x2b\xe6\xc7\xe9\xa8\xda\xc5\x68\x4a\xbe\x14\x40\x38\xc5\xa6\x79\x6b\xe0\x33\xb6\x2a\x8c\x0c\x87\x8c\x4a\x6c\xb8\xb2\xf3\x93\xca\x95\x9f\x9e\x2a\xfb\xc9\xb2\x37\x7d\x86\x9d\x0b\xb4\x66\x18\x0c\xa4\x77\x12\xb8\x2c\xb4\x5f\xe4\x80\x8d\x3b\x34\x37\xce\xb0\x04\x73\x0f\xab\x0e\x47\xff\x05\x10\x2d\xee\x60\xc1\x79\xb3\xb9\xe4\xa8\x64\x3d\xa9\x7e\x1c\x3a\x69\xd3\xd5\x60\xfb\x0a\xd1\x8b\x36\x6d\x03\xe1\x23\xe5\x83\x20\x6b\xc8\xf7\x95\xcf\x12\xa3\x52\x1c\x64\x6b\xf3\x48\xf2\x90\x2c\x18\x76\x7c\xb2\xb2\x4a\x31\x43\x40\x29\x61\xf1\x03\x3c\x1b\x6a\xa8\xe8\x27\xc6\x54\xe3\x63\x94\xc4\x6e\x9c\x64\xcb\x26\x64\x15\xc2\x07\x66\x03\x89\xf2\xd9\x1f\x27\xed\xe0\xae\xa4\x37\x43\xc4\x8a\x95\x19\x2f\x70\x18\x15\x23\x75\xa1\x64\x92\xec\xfa\xdd\x4b\xc7\x25\x15\x62\x93\xc6\x99\x2f\x5f\x19\x44\x31\xb0\x83\x64\x26\x3b\xbc\x82\x94\x19\x14\xbb\x35\xfd\xb9\xf2\xdb\xf1\x8d\x61\x09\x6b\xe7\x72\xb3\x61\x22\x66\x66\x09\xb4\x5a\xd8\xda\x59\x8a\xb6\xad\x5b\x61\x78\xd4\x83\x10\xe6\x7f\xdc\x05\x98\x6b\x12\x77\xe1\xb4\x3d\xa5\x6f\xed\xa9\xd2\xa0\xdc\x0f\xa7\x9d\x7a\xe2\xee\xdb\x1a\x75\x2b\x84\xfa\x52\xb7\xb8\xd5\x7f\x49\x70\xf7\xf5\x89\xc6\x13\xb1\xcb\x57\x63\x2f\x08\xfb\x32\xe4\xa4\x8e\xc9\x83\x3e\xda\x78\x31\xd7\xa2\xbd\x61\x6e\x12\x3e\x26\xf0\x27\xb8\xb5\x64\xf2\x9e\xe9\x26\xd2\xc9\x33\xe7\xdd\xfa\x6c\x5c\xfe\x57\x90\x10\x5f\x85\x05\xf6\xd7\x98\xa9\xa7\xd4\x03\xb3\xf7\x75\x22\xd6\x4a\x4f\xad\x64\xc9\x37\x60\xa8\x78\x29\x39\x5f\xcb\xfd\x05\xda\xc6\xcb\x43\xda\x1c\xb1\x25\xa4\xf9\x35\xce\xe4\xda\x0d\xa5\x1e\xf6\x84\x00\xb7\x2e\x5b\x55\xa5\xd3\x49\xb5\xf6\x06\x68\x23\x82\x84\xa7\x22\x53\xc8\x78\x21\x83\xd3\x71\x61\xb8\x38\x5f\x87\x64\xfd\x09\x4e\x44\x54\xbb\x61\xb8\x1c\x93\x65\xe0\x12\x4c\x86\xb4\x2f\xe2\x55\x9d\x8b\x40\x9f\xf6\xcd\xca\x0b\xcf\xe5\xea\x42\x87\xdd\x5e\x42\x88\xec\xeb\x01\xcd\x18\x63\xd3\x08\x53\x2d\x22\x80\xe4\xf8\xb5\xb7\x6e\xf3\x1f\x75\xb0\x7a\xf0\x24\x1a\x4e\xc9\x3e\x61\x53\xcd\xd3\x92\xaf\x6c\x56\x69\xcd\x9f\x6c\x79\x44\x45\x4e\x91\x90\xaf\xec\x8b\x23\x31\x7f\x76\x22\x4e\x75\x27\x89\x3c\x8e\xc1\x21\xc5\x60\xa5\x02\xa5\x0c\xb8\x1a\x2b\x66\xa3\x5d\x10\xdc\xad\x1f\xec\x84\x51\xcc\x68\xb4\x21\xd4\x37\x23\xb1\xfc\xfe\xd4\x98\xaf\xb7\xa2\x25\x84\xc6\x0e\xc3\x88\xbb\xdb\x22\xb8\xb7\x7f\x72\xad\x4a\x48\x0d\x9d\xf5\x11\x74\xf6\x81\x08\x7d\x83\x68\xc9\x7c\xb7\x84\xed\x8d\xa8\xfb\xbc\x26\xbf\x9f\x78\x51\x03\xbe\xdd\x2e\x38\x59\x1e\xbf\xeb\xc0\xf2\x72\x1b\xdc\x1f\x10\xcd\x5b\x7c\x49\x65\x78\x47\x06\x2e\x84\x18\x7a\x77\x63\x46\xa7\xc7\x51\x72\x98\x3d\xdc\x4d\xa5\x08\xfe\x95\x40\x88\xcb\x1b\x5c\x1f\xc2\x4a\xef\xae\xc6\x31\x20\xa5\xd2\xfb\xba\x42\xf5\x70\x6e\x48\xd0\x02\x4e\xbb\x9a\x03\x82\x87\x8b\x9c\x9f\x87\xf8\xd4\x6b\xc4\xb1\x3c\x5f\xe0\x86\xc8\x16\x56\x9a\x5e\x92\xc4\x2e\xf5\x97\x44\x8b\x7a\x08\x1c\x75\xd0\x41\x3e\xb1\xd7\x0b\xc4\x10\x1d\xba\xb5\x67\x43\xee\xd0\x71\x3d\x43\x97\x68\x5f\xb5\x6b\xb3\x4d\xae\xe0\x56\x92\x4b\x63\xdc\x85\xb3\x8a\xf9\x6b\xb6\x41\xae\x1f\x07\xc2\xd0\x83\x20\x35\xbc\x30\x34\x4a\x1f\xdd\x99\x14\x65\x86\x6b\x12\xa6\x1f\xe4\x06\x8d\x30\xa9\x93\x3b\x34\xc2\x24\xf1\xb5\x86\x29\x4d\xda\xd2\x20\x8a\x26\x85\xd9\x2e\xcc\x90\x18\xb7\xb8\xe9\x69\xf1\xd1\xc9\xc2\xb8\x8a\x99\x3e\xe9\x35\xa8\x51\x0f\x7c\xc8\x71\x98\xcc\xf7\x40\xb3\x51\xbf\x8a\x6b\x55\x39\x7f\x54\xad\xc6\x36\x47\x35\x70\x34\x63\x98\x22\xfa\x81\x5c\xfd\xec\x53\x79\x9f\x86\x09\x5e\x1d\x34\x53\x68\xca\x2c\xf5\xfa\x98\x19\xf4\x12\x95\xdf\xa1\x98\x7d\x0d\x62\x06\x50\x6e\xad\x15\xdb\x8d\xbd\x16\x61\x0e\xae\x1d\x2a\xff\xbc\x40\x08\xb2\x21\x49\xb7\x5a\xe9\x99\xcb\x9a\x0f\x7b\x3c\x45\x52\x42\x49\xb4\x16\x59\xf2\x16\xd7\xe1\x75\x9f\x2f\xe2\x58\x1f\x5b\xeb\xb8\x04\x5e\x4f\x40\xc0\x91\x57\xbe\x23\xe6\xe7\x6b\x53\x0e\x8a\x7b\x75\x7b\x51\x5a\xec\xf9\xd2\xe5\xe8\x74\xb2\x80\x20\x7a\xca\x1f\x62\xfd\x9a\x7a\xe2\xde\x29\x00\xab\xa5\x7a\xbd\x2b\xad\x8d\xc8\x3e\x5f\xd5\x53\x36\x06\x22\x9c\x9c\x2a\xe9\x22\xed\xd5\x1d\xc3\x8e\x58\x0f\x83\x8a\x3f\xe4\xf3\x75\xc5\xfd\x9c\xaf\xe3\x0b\x5d\xc4\x25\xdc\xf9\xc6\x5e\x37\x9c\xb6\x6b\xc2\x31\x04\xeb\x22\x16\xbb\x08\xee\x92\x3e\x55\xc6\xcb\x30\x93\xb2\xc1\x19\x48\xbe\xf6\xd6\xde\x0b\xe6\x2b\x6a\x4d\x77\x53\x6d\x56\x7c\xe9\x73\xb7\xe5\xe0\xcf\x17\xb4\x71\x55\x53\xf9\x6e\x41\x89\x0f\x25\xbc\xbe\xb8\x35\x7c\xa6\xba\xfb\x2e\xb9\xff\x8a\x2f\xe8\xf8\x71\xe6\x00\x3a\x73\x2c\xbe\xb3\x03\x64\x91\xd5\x15\x95\xe1\xf8\xaa\x4d\xcc\x38\x64\xb1\x6f\xbe\xff\x7c\x27\xe2\x69\x65\x3a\x41\x2b\xee\x9b\xe2\x8a\xb7\xd2\x51\x4c\xf1\xa9\x31\x05\x7e\xdb\x68\x60\xe3\x15\x3f\x13\xf7\xfe\x7d\x56\x35\x6d\xc8\x5c\x74\xdd\xb6\x7a\xea\x3a\x31\xd0\x99\xe8\x56\x96\x53\x83\x09\x5b\x3f\x89\x28\xda\xf4\xcc\x88\x22\xa6\x23\xcf\x24\x0c\x4d\x5f\xe0\x2a\x19\xfe\x93\x48\x62\xb4\xcd\x07\xd0\x7d\xc2\x8d\xba\xad\x07\x52\x14\x8c\xbb\xc1\xe3\xb9\x4d\xe9\xe6\xe0\xd9\x9c\x7f\xb3\x1a\xf8\xbc\x84\x2d\x92\xf3\x65\xdf\x5e\xa3\x0f\x0b\x92\x24\x9e\x96\xb6\x18\xcc\xac\x1b\xb6\xb3\x7f\xa0\xe4\xb4\x0c\xa2\xf0\x5d\x25\x61\x61\x2d\x56\xaf\xfb\x94\x3a\x94\x71\xc0\x43\xd8\x50\x1f\x02\x37\x35\x9f\xb7\x5b\x95\x34\x4d\x43\xb3\xc2\xc0\x3b\x84\xfb\xb3\x73\xa7\x4d\x5e\x71\x32\xdf\x60\x3b\xd3\x84\xed\x99\x16\x73\x0d\x51\x07\xd5\x39\x74\xa2\xe0\x55\x6b\x26\x85\xd8\x29\xde\x4d\x4a\xd8\x39\xdc\x9a\xb4\x19\xcd\xe0\x0b\x4a\x9a\x9b\x3d\x06\x1d\xcf\x02\x80\xcf\xdc\x9c\xd3\xc2\xee\x5a\x33\x9a\xb8\xb0\x5c\x91\x91\xfa\xc5\x0d\xbc\xe6\x04\x4b\x6a\xaf\x4e\x16\xe0\x9b\xce\x96\x2f\xea\xba\xf1\x4b\xfb\x72\x76\x75\xc3\x62\xea\x89\x9a\xf4\x0f\x2f\x25\x98\x7c\x4c\x23\xb9\x64\xbd\xbe\x26\xfa\xd3\x49\x09\xf9\x88\xa1\xd6\x75\xdd\xe3\xca\x93\x06\x42\xd7\x66\xa7\xb3\xf6\xc4\xa6\xc2\x87\xbe\xd9\xcd\x75\x4c\xc0\xc7\x33\x47\xe0\x0d\x1f\x60\xf9\xdc\xdc\xed\x71\xfa\x90\xda\x6b\x87\x0d\xe2\xa0\x3a\x6d\xf4\xf5\x25\xce\x31\xba\xe4\xd9\xe9\x98\x14\x75\x2d\x4f\x4a\xcf\x37\xbd\x49\x37\x5b\x33\xd3\xf6\x53\xa4\x7f\xa9\xf1\x49\x61\xdf\xfa\xa4\xfc\x6c\xf3\x72\x7b\x15\xac\xe3\xeb\x61\xb3\x33\x3d\x22\xb3\xb7\x2b\x76\xb0\xfb\xba\xf4\xf2\x2b\xe6\xb0\x86\xdf\xf4\x01\x54\xcf\x07\x1a\x66\x6b\x25\xf6\x43\xec\x25\xe5\x08\x0a\xbf\x93\x9f\x12\x36\x22\x31\x4b\xe7\x4b\xd5\x24\x65\xb4\x2b\x95\xb8\x75\x77\x42\xd6\x71\x35\x9c\x4b\x38\x7a\xa7\xaa\x82\x6e\xd4\x42\xe2\xa5\xa7\xf5\x41\x35\x10\x4e\xb8\xb9\xd9\x94\xc6\x69\x09\x09\xf5\x44\xd3\x42\x70\xbe\xb8\x83\xc0\x99\x8a\x5e\x72\x18\xc0\x81\x95\x0c\xc0\xab\x5e\x09\xf3\x4a\x4f\x7c\x7a\x4a\xee\x6c\x41\xa5\x72\x5f\x59\xa4\x49\xb1\xed\xbe\xaa\x8c\xed\x9e\x14\x79\xa5\x71\x75\x9f\x2f\xa3\x9d\xea\x96\x11\x98\x98\x4b\x59\xeb\x93\xb8\x5e\xbd\x70\x43\x9e\xc1\xf3\x7a\xa0\xbf\x58\x43\x60\xc3\x17\x07\xde\x8c\x1f\x1b\x50\xd5\x57\x21\x21\xee\xbe\x61\x21\x57\x12\xac\x0c\x07\x7a\xee\x42\xb4\x5c\x26\x94\x53\x79\x7e\xcf\x26\x05\x2f\x20\xd8\x24\x3d\x9e\xa5\xb7\x0c\xa6\xe9\xae\xb7\x39\x1c\xf7\xf1\xc4\xb9\xc7\xb5\x52\x16\x63\x25\x18\x28\x38\xed\x2c\xe1\x40\x02\xc2\xe7\x81\x97\xaf\xf8\x04\x70\x54\x8c\x95\x0c\x7d\x9a\x2c\x38\x28\xcd\x17\x45\x55\xc1\xa8\x4e\xdc\x00\xf7\xee\x8b\xd7\xbf\xf9\x7e\x07\x6e\x16\x0e\x2f\xf3\x77\xf1\x31\x48\xd1\xad\xfc\xd4\x85\x57\x2c\xb0\x88\x31\x99\x49\x80\xf3\x64\x86\xa0\xa2\x76\xfa\xf3\x19\x6a\x5e\x71\x23\x86\x1f\x94\x5f\x7b\xe1\x48\x34\xf5\x3a\x49\xd1\xb5\x8d\x7e\x60\xbb\xe4\x1e\xd1\xf3\xd6\x49\xef\xee\xfd\xe1\x85\x17\xb1\xce\x9f\x1c\x9a\x9b\x1f\x77\x97\x84\xbd\x1e\x2f\xbc\x66\x8d\xe1\x47\x9e\xa7\x70\x10\x91\x19\x51\xa0\xc7\x17\x83\xc6\xb3\x13\x5c\x48\xea\xee\x3f\xb5\x5e\x88\x93\x17\xa0\x86\xe6\x9c\x2f\xdf\x13\x1a\x76\xc3\x5e\x89\x1a\x4d\xdf\x3f\xe7\x52\x54\xb9\xd4\x71\xc1\x91\xf8\xe1\xc6\x0d\x6f\x79\xf4\x5b\x97\x61\x83\xfd\xc8\xdf\x51\xdc\x02\xa7\x58\xe3\xf2\x2b\xb1\x2b\xab\x95\x87\xf7\x61\xdc\x4a\x60\xf0\x11\x94\xb2\x2f\x66\x4a\x81\xb9\xdb\x3b\xa2\xf6\x25\x61\xe4\xe6\x92\x44\x3e\x3d\x6e\x82\x6b\x3f\x25\x19\x67\xbe\x3b\x7f\xf5\xa7\x24\xce\x3c\x96\x89\xad\xab\x1b\x38\xea\x71\xb8\xfb\xa3\x1e\x4b\x01\x3e\xaf\xab\xf7\x03\x8e\xe9\x84\x42\xf8\xde\x4b\x42\x70\x56\x55\x12\xe4\xe2\x42\x44\x52\xf9\xbb\xf9\x6c\x9e\x0d\x33\x79\xe2\x08\x40\xd4\x55\xae\x2b\xe8\x62\x1f\x54\xcb\x00\x63\x32\x54\x05\x1d\x19\x3d\xe9\x27\x89\xc1\x83\x95\x92\xc0\xcf\xf5\xbd\x93\x97\xfa\x24\x65\xcd\xc1\x53\x15\x8e\xe7\x99\xe4\xe2\x8d\x6b\xaf\xef\xdb\x62\x4d\x5a\xd4\xea\xc4\xab\xb2\x89\x42\x0c\xfd\xb4\x88\x46\x35\xd4\xed\x97\x00\xbb\x41\xaa\x3e\x07\x19\xfa\x22\x74\x78\x39\xff\x04\x4c\x0e\xe3\xf2\x31\xf0\x44\x7e\xdb\x9c\x3d\x28\xe1\xaa\x4b\x49\x0a\x4b\xce\xb3\xe4\xf2\xdc\x66\xf0\x73\x7b\x6c\x16\xe1\x77\xf9\xa2\x5b\x7d\xc3\xb9\x07\xdc\xf8\xf9\x3e\x9f\xc3\x53\xca\x39\x4d\x38\xaf\x7a\x81\x65\x5f\x76\xfe\x49\x93\x0f\xaf\x2e\xcf\x4c\xb5\x69\x6f\x1a\xb6\x77\xea\x92\xc0\xbd\xa0\xcf\xda\xf1\x64\xbc\x3b\x7f\x6d\x1f\x12\x0c\x17\x58\x2b\x04\x62\xba\xb7\x6d\x7c\xd5\xc1\x53\x64\x26\x7c\x9f\xc5\xe1\x69\xd1\xd0\x2e\xa7\x7f\x5c\x75\x9e\x53\x86\xc8\x3e\x7a\x39\x4f\x97\xc0\xf3\x1d\xbd\xfe\xd8\x82\xdb\xbb\x8f\xc7\x3c\x28\xc4\x77\xaf\xd2\x9e\x68\xe6\xb3\xc1\x16\x61\x4d\xa4\xd0\xe2\xcf\x17\xfb\x3b\x7f\x00\x30\x28\x15\x03\xae\x64\xf7\xc5\x11\x0b\x90\xa1\xce\xbe\x50\xc4\x47\x2c\xcc\x4c\x89\x84\xa1\x47\x57\x1d\xe1\x42\xa9\x41\xcf\x07\xca\xd3\x58\xfa\x64\x4b\x70\xf7\x91\x58\x13\xac\x22\xaf\x76\x72\x79\xe8\x70\x13\x59\xcb\x15\xf0\xe4\xcb\xa9\x41\xfe\x01\x98\xe2\xb2\x6d\x50\x64\x00\x10\x3f\xb8\x29\x4f\x6b\x68\xf6\x88\xae\x68\xea\xf8\x45\x45\x7c\xd8\x87\x67\x6d\x41\xfb\x0e\x53\x3d\x88\x5e\x9e\x2f\xdf\xf3\xcf\x33\xfa\x19\x1d\x9a\x71\x45\x3e\xff\x5a\x6a\x04\xc6\x0d\x2b\x58\x12\x37\xcc\x8c\xaa\xad\xf9\x4d\xa6\x53\xaf\xb4\xf9\x79\x86\x95\x7e\xb3\x92\x8b\x2c\x5c\x19\x71\x12\x60\x2b\xf9\x03\x4c\xd3\xb2\x34\x8e\x71\xc1\x57\x75\xee\x6e\x80\x9d\x69\x6c\xd3\x16\x8d\x9e\xed\xb8\xe4\xdf\x7a\xb4\xc3\xf5\x1c\x6b\xa3\xc8\xc5\x13\xf1\x76\x9f\x9b\x9d\xdc\x83\x1c\x3e\x38\x31\x9d\x93\x6c\x6d\x71\xc5\xbe\x33\x3c\x8b\x2d\xf6\x61\xe3\x0f\x61\xb3\x78\x8a\xd8\x33\x0a\x9f\x18\x30\x3b\x9f\x38\x7e\x3f\xda\xe7\x84\x8f\x10\x8f\x96\x24\xc8\xb5\x31\x02\xf7\xf5\x41\x47\x16\x1e\xbf\x6d\xe4\x85\xe7\xee\xdb\xef\xc3\x32\xfe\x09\xe3\x38\x6d\xbe\x0e\x7d\x71\x30\xa8\xc2\x92\xd5\x60\x17\xd1\xe7\xec\xc4\xb8\xd7\xc2\xa2\x2b\x4b\x95\xdb\x84\x77\x94\x2a\x6d\x15\x89\x6a\x8c\xea\xa3\x77\xde\xed\x73\x9c\xa1\x24\x60\xbb\x86\x83\x01\xd1\xa3\x9e\xc4\xe2\xfa\xba\xd2\xa2\x2c\x64\xe2\xa1\xa6\x30\xe4\xde\x75\x75\xe6\xd1\x4e\xfb\xc8\xbd\x7b\x15\xbb\xe6\xa8\x4d\xf5\x97\x16\x15\xee\xd0\x73\x35\x84\xaf\xae\x3e\x9b\x79\x6c\x55\xc1\xec\x1d\xcc\x6c\x58\x88\x6f\x48\x16\x8b\x42\x74\x63\xb3\x25\x27\x72\xa6\x07\x01\xf1\xab\x92\xcd\xe8\xe7\x6a\xd9\xc7\xa3\xe2\x7c\x72\x27\x1c\x4a\xf4\x70\x52\x50\x48\x5e\x6c\x0a\xae\xe6\x9d\x29\x6d\x0f\xae\xe9\xf2\xda\x83\x33\xb3\xeb\xdb\xa7\xdd\xce\xdf\xd0\xf5\x81\x74\x46\xfb\xe1\x57\x51\xce\xd4\xb0\x9a\x8c\x27\xfd\x9f\xd8\x03\x35\x62\x93\x46\x20\xe7\x75\xb0\x80\xbb\xa2\x01\x77\xd7\xc7\x21\x96\xc4\xdb\x93\x8d\x69\x65\x1a\x53\xff\x2c\x04\xeb\x09\x1a\xd4\x1d\x4c\xbf\xa7\xed\xaf\xf9\x4b\x3b\x1d\xf5\x59\xe1\xe6\x25\xca\x18\xc6\x62\x20\x6d\x8c\xda\x3d\xe0\xfa\xe2\xd9\xab\xb7\xf2\x8a\x6c\x0c\x3c\xdd\xd7\x9a\x31\xa5\x02\xe1\xbb\xc0\xd3\x4d\x2f\x0e\x22\x1d\x07\xbb\x86\xce\x66\x27\x5f\xe0\x3e\x3b\x0e\x41\x32\xeb\x16\xc6\xc7\x7c\x55\x8a\x8c\x59\xda\x60\x9f\x09\xa0\x7e\x8d\x60\xdc\x62\x0b\xd0\x64\xb9\x5d\x8b\x95\x6f\xaf\x62\x7f\x48\x40\x3f\x24\x6a\xc1\xd1\x0f\xfa\x9c\x27\x1f\x16\x92\xf4\xd9\x43\xc1\x27\x1a\x18\xd6\x7e\x3a\x38\x9b\x60\xab\x7c\xa7\xdf\x8a\xb4\xbe\x73\x84\xc8\x85\xca\x83\x4f\xf9\x77\x12\x71\x75\xdd\x9a\xd8\x3d\x02\x4a\x0d\xf6\x89\x42\xce\x6d\xcb\x7c\xe3\x26\x44\x8c\x53\xcf\x9f\xba\x0b\xea\x12\x24\x4c\x86\x52\x16\x57\x46\x0d\x60\x3c\x96\x24\x1b\x06\x3f\x10\x3c\xf3\xdd\x45\xc7\x01\xf9\x55\xae\xf1\x00\x7c\x25\xda\x37\x54\x82\x43\xb4\x57\xd1\x66\x6a\x0a\x36\x4c\xda\x59\xf9\xf7\x5a\x6e\x53\x99\xce\xb3\x05\x54\xca\x2e\x90\xfa\x31\x21\xc7\xb9\xde\x07\xbf\xb4\x17\xc3\xcf\x4b\x1d\x60\xe3\xda\x30\xb1\xef\xd9\x66\x01\xc2\xac\x8d\x00\xac\x98\xe3\xe2\x11\x16\x1b\x52\x10\x97\x4f\xe9\x9f\xb3\x5e\x4c\x1e\x36\x23\xd8\x68\x36\x09\x42\x45\x36\xe0\x15\x81\x32\xad\x2a\x8e\x4c\x73\xd0\x71\xf8\x82\x4d\x76\xd7\xfe\xd8\x30\x07\x9b\x61\x3e\x99\xcd\xe0\x7c\x16\xe7\x69\xd5\xd3\x52\xee\x98\x73\x78\x2f\x5e\x58\x4f\xcd\x52\xf8\x85\x84\xfb\x66\x08\xb8\xe7\x94\xb0\xc7\x33\xa7\x05\x5c\xcf\x71\xdf\x1a\x24\xa3\xb6\x97\xb5\x9b\xeb\x87\x15\xc9\x04\xc2\x85\x74\xd8\xd8\x09\xf9\x24\xac\x80\x32\x75\x22\xca\xc3\x16\x09\xe4\x94\x30\x69\xf5\xc3\xf2\x6d\x10\x18\xe3\x33\x35\xe0\x34\xec\xba\xcd\xaa\x1b\x2a\xb3\x08\x41\x59\x86\x77\xd7\x10\x6b\x4f\xf4\xa5\x89\x93\xb7\xc2\x6a\xfc\xcc\x06\xec\xfa\xf7\xf8\xde\xc8\x51\xf0\x8f\x5a\x25\xf5\xc4\xb0\x3f\x46\x75\x4f\x6f\x74\x92\xc3\x85\x52\x94\xa3\x96\x44\xbf\xd1\xab\xce\x7d\x89\x87\x5d\xbb\x79\x78\x2f\xbc\x0d\x2a\xae\x12\xb7\x47\x21\xf3\xaf\xf6\xaa\x28\xed\x13\x9b\x44\x96\xff\x89\x38\x11\x56\xce\xe8\x6b\xd4\x97\x87\x62\x35\x91\xca\xbb\xff\xe5\xea\xff\x4f\xe9\x1c\x1c\x55\x5a\x89\x06\x75\x20\xc0\x5e\x2a\xfa\xba\x5a\xdc\x7d\x1a\x93\xf9\x71\x4f\xdd\xa8\x95\x4b\x0e\x10\x63\x6a\xe4\xf8\xf0\x78\x12\xfc\xb4\xf1\x11\xe4\x3e\xcd\x97\x39\xed\xa1\xa3\xde\x46\x35\x3b\x5f\x89\x9f\xb0\x51\x75\x32\x65\x49\x38\x67\xf5\x1e\xc7\x41\x57\x7f\x59\xd9\x3b\xe6\xdc\xf5\x74\x7c\xc7\x07\x2e\x0e\x2e\xec\xc3\xd4\xac\x49\xfe\x25\xd9\xd8\x5b\xe8\x08\x21\xfa\xba\xc6\xf3\x8a\x69\x5e\x53\xbf\x34\x18\x93\x2f\x7d\x44\x68\xb2\x5c\xfc\x57\x0d\x40\xbe\xe3\x12\x7f\x7f\xe8\x96\x3f\x24\x2c\x9e\xe3\xb2\x7a\xaa\xe2\x87\x3d\x25\xe0\xd1\xd1\xa1\x97\xef\x2d\x7d\x83\x4c\xf2\x47\x46\x1f\x59\x9a\xcb\xc7\x91\x3e\x48\x20\xdc\x69\x39\x22\x3b\x3f\xe0\x81\x29\x52\x36\x38\xe1\x86\x3e\xaf\x31\x5c\x7e\x1f\x9a\x9b\xe0\x1b\xb9\xb4\x35\xf7\xc0\x1f\xed\x56\x4e\xb7\x2f\x9d\x22\x79\x5b\x0f\x2d\x27\xda\x96\xb3\xf4\x86\xbf\x33\x0e\xa6\x43\x0a\x5a\xe6\xa4\x23\xc2\x2a\xa4\x32\x92\x72\xb6\x52\x57\x9a\xba\x26\x6e\x4c\x2a\x75\x5d\x73\xd8\x2c\x92\xda\xf4\xb8\xb2\x3d\xb2\xdd\x91\x54\xdb\x1f\xed\x0c\xa6\xf4\xff\x07\x00\x00\xff\xff\x6c\x79\xb4\xed\x3c\x8a\x00\x00") +var _confLocaleLocale_nlNlIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7d\xeb\x8e\x1c\x47\x72\xee\x7f\x02\x7c\x87\x94\x0c\x5a\x24\xc0\x69\x5a\xbb\x38\x38\x86\xc0\xa6\xce\x90\x43\x93\xb4\x86\xe4\x98\x43\x4a\xf0\x2e\x84\xde\xea\xae\x9c\xee\x9a\xae\xae\xaa\xad\x4b\x37\x67\x0c\x3f\x90\xe1\x57\x38\xff\xf4\x62\x27\xbe\x88\xc8\x4b\x5d\x7a\xc8\x95\xcf\x42\x10\xa7\x2b\x33\xf2\x16\x19\x19\x19\x11\x19\x19\x99\x54\xd5\x22\xb5\xcd\x6a\xfe\xd2\x16\xc6\xda\x62\x5f\x76\x69\xb6\xb6\xe6\xd6\xe6\x57\x6b\xbb\x29\x9b\xd6\x9a\x57\x59\x6b\x1a\x5b\xef\xb3\x95\x35\x6b\x82\xdd\xd4\x76\x4f\xd0\x59\x61\x5e\x95\xf7\xef\xdd\xbf\xb7\x29\x77\x76\xfe\xba\xcb\x9a\xfb\xf7\xd2\xa4\xd9\x2c\xcb\xa4\x4e\xe7\x67\xee\xd7\xfd\x7b\xf6\x73\x95\x97\xb5\x9d\xff\x6c\xeb\xad\x2d\x0a\x5b\x50\x11\x9b\x57\xf3\xd7\xf4\xcf\xfd\x7b\x4d\xb6\x2e\x16\x59\x31\x7f\x53\xe4\xe5\x7a\x8d\xcc\xa6\x5c\x65\x49\xbe\x70\x19\x97\xfc\x69\x0a\xdb\x1e\xa8\x02\x6a\x96\xe0\x7e\x30\xf4\x61\x53\x6b\x9a\x36\xa9\xcc\xd3\x66\x97\xe4\xf9\xb3\x64\xb5\x2a\xbb\xa2\x35\xdb\xb2\xaa\x6c\x6e\x8b\xa7\x4f\x24\x5d\xdb\x28\xbb\x76\x7e\x7a\xb5\xb3\x79\xca\x8d\x20\xa9\xab\xe6\xa7\x49\xe1\x92\x6a\xbb\xce\x68\xbc\xf5\xfc\x03\xff\xa8\xad\xad\xef\xdf\x3b\xd8\x65\x93\xb5\x76\xfe\x8b\xfc\xbd\x7f\x6f\x6f\xeb\x26\x2b\x0b\x8c\xa6\xc9\xe8\xbb\x4a\xd6\x76\x7e\x91\xac\xb3\x22\xb9\x7f\xaf\xb5\xbb\x2a\x4f\x08\xfc\xf2\x3a\x59\xe6\x65\x49\xb5\xe6\x49\xb1\xee\x00\xf3\x31\x49\xf2\xfb\xf7\x56\xb5\xa5\xfc\x45\x61\x0f\xf3\x17\xfc\x93\x06\x76\x98\xcd\x66\xf7\xef\x75\x84\xe3\x45\x55\x97\x57\x59\x6e\x17\x49\x91\x2e\x76\x40\xda\x27\x4a\x35\x9a\x6a\x28\xd5\x20\x55\xba\x6f\x53\x42\xcf\x22\x69\xe6\x97\xfc\x81\x09\x49\x1a\x4c\x08\x6a\x2a\x12\x9a\x94\x57\x76\x59\x77\xd9\x96\x7a\x5a\x24\xc9\x8e\x66\x62\x97\x64\xf9\xfc\xe5\x09\xfe\xa0\xe7\x4d\x73\x28\x69\xae\x7e\x49\x56\x9b\xb6\x3d\x94\x25\x66\xab\xb6\x8b\xf6\xa6\xe2\xd9\xca\xae\xb2\x55\xd2\x62\x90\xab\xa4\x6a\x57\x9b\x64\xfe\xe2\xf4\xe2\xe3\x8b\xd7\xa7\x68\xa4\xb6\x55\x49\x18\x29\xeb\x1b\xc2\x97\xfe\x04\x68\x59\xaf\x93\x22\xbb\xa5\x72\x84\xa4\xf7\xfc\xd1\x48\x25\xbb\xac\xae\xcb\x7a\x7e\x59\x65\x76\x6d\xa9\x7d\x1a\xf8\x02\xb5\xcc\xdf\x65\xb6\x3b\x58\x53\xc7\xd5\x20\x73\x97\xad\x6b\x20\x53\xf3\xe5\xd3\x65\x5e\x95\xf5\xd6\xe5\xec\xe9\xb7\xf1\xbd\xb8\x11\x00\xea\x88\xcb\x2f\x7b\xdd\x48\x0a\x9a\x0e\xce\x7e\x6e\x37\x34\xc9\x71\x36\xe1\x2f\x49\x77\x84\xd6\x2a\x29\x6c\x3e\x3f\xc5\x6f\xfc\x44\x7f\x95\xbe\x16\x8d\x6d\xdb\xac\x58\x37\xf3\x53\x49\xc8\x0a\xa2\x9a\x3c\xa7\x24\x26\x2c\x97\xfb\xa6\x97\x7c\x53\x76\x7e\x76\xe7\xff\x4e\x1f\xe6\x42\x3e\x34\xcb\x17\xe3\xbc\x4b\xfd\x02\xa2\x69\x2c\xcd\xe2\x8a\xa8\x5d\x46\xd3\xe0\x27\x4d\x5e\x97\xe7\x84\xbd\xbf\x76\xb6\x69\x9b\xf9\x05\x7d\x9d\x24\x49\xb1\xaf\x13\x6e\x2d\x6b\x1a\xca\x98\xff\x74\xa0\x5c\x1e\x14\xa6\xb0\x58\x61\x44\x45\xd1\xe5\x4c\xd9\xf7\xef\xfd\xb9\xb1\x49\xbd\xda\xfc\x8a\x4e\xe3\xc7\xfc\x4f\xa5\xa5\x15\xca\xd4\x18\x4d\xef\xfb\xaa\xc9\x93\x35\xd1\x75\xd2\x36\x42\x5c\x81\xb0\xb4\xa9\x39\x0d\x66\x49\xd5\x12\x8d\xad\xca\xd4\xce\x5f\xd0\x3f\xdc\x02\x70\x43\x6b\x90\x9a\xd0\x5f\x8c\x16\xfa\x2b\x73\xd1\x66\x2d\xa1\x23\x4a\xc2\x7a\xae\x88\xb9\xec\x89\x18\x0d\xad\x6f\xea\x29\x58\xd0\x96\xa7\xa9\xa2\xdc\xba\x95\xa5\xfa\xd7\x8e\x56\xe3\x22\x5d\x0a\xf7\x7a\xbf\x23\x5e\xb4\x6e\x4c\x0b\x0e\x25\x5d\x23\x06\xd5\x98\xb7\x37\x97\xff\x76\xfe\xd8\x5c\x10\x1f\x5b\xd7\x96\x7e\x9b\xf2\xca\xd0\x1f\x2a\xfb\x47\x43\x2b\xd9\xd2\x3a\x37\x0f\x5d\x02\x15\x58\x82\xbf\x65\xdb\x65\x92\xd4\x58\x4f\xd4\x83\xf2\x8a\x56\x41\xf6\xdb\x7f\xd3\xf2\xe3\xa5\x6f\x1f\x11\x76\xa8\x5d\xe9\xfa\x59\xd2\x26\xcb\xa4\xb1\xa6\x4f\x04\xc8\xc7\x22\x72\xd9\x27\xf8\x02\xa7\x6c\xda\xf9\x6b\xfa\x67\x88\x46\x5d\x9f\xfd\x15\xa9\x0b\x92\xea\xe2\xc5\xec\x9b\x12\x58\x4a\x06\x17\x0d\xb5\x98\x37\x45\x51\x9e\x3d\x37\xb6\x20\x5e\x44\xab\xc5\xb6\xa6\x6b\xaf\xfe\x79\x41\x1d\xb2\x35\xf1\xd3\x55\x66\xb6\x49\x9d\x6c\x89\xc3\x11\xb1\x09\x86\x19\x3f\x34\x9e\xa6\xc9\x89\xdd\xd0\xc4\x5d\x5e\x9e\x9f\xd0\x8f\xae\x41\x67\xda\x0d\x31\x36\xea\x41\xf3\xd7\x1c\xc8\xd6\xe6\x5e\x53\xe1\x2a\x49\xd1\x0d\x9e\x22\x87\xbd\x54\xfb\x47\xd5\xd9\xba\x5e\x10\x27\x6c\x6f\x16\x5a\x94\xeb\x1a\x02\x72\x2d\xbb\x64\x6d\x8a\x8c\xaa\x24\xea\x59\x9b\xdb\xec\xba\x98\x81\x70\x5c\xa7\x05\xcb\x1f\x4b\x0b\xd4\x10\x72\x4d\x92\xaf\xed\x8e\x32\x07\x08\xc7\x3e\xc6\x58\x3a\xad\xaa\x5c\xb8\x96\xa0\xc9\x65\xb8\xde\x5f\x30\x19\x9b\x4d\x46\x04\x75\xdd\xe3\x0c\x80\xc7\x9c\xaf\xeb\x92\xc8\x28\xa7\x15\x48\x88\xfa\x46\x56\x82\x0c\x20\xe2\x73\x44\x29\x49\x43\xf4\x92\x66\xb5\x5d\x29\xcb\xf2\x80\xae\xad\xd3\x3c\x07\x57\xdb\x95\xba\x89\xd6\x71\x79\xcc\xb3\xec\xa2\xa9\xbd\xb5\x51\x45\x44\xe7\xb4\xcb\xe6\xb2\x90\xeb\x8e\x76\x29\x90\xca\xa7\xac\xdd\x97\x44\xb0\x45\x1a\x48\xdc\x91\x8d\x03\x72\xed\x9e\xa1\x42\x0f\x44\x3b\x06\xa1\xb7\x2d\x2d\x8d\x74\x6d\x36\x76\xb9\xa4\x66\xdb\xb2\xc5\xdc\xad\xfb\xbd\x8a\x7b\x41\x40\x5c\x90\xd7\xd5\xb6\xc3\xbe\x6d\xfc\xfa\x4b\x4b\xda\x42\x8a\xf9\x19\xed\xfc\x99\xff\xf4\xcd\x53\xa5\xc4\x57\xaf\x5a\x1a\xdc\x3e\x2f\x69\x67\x2a\x2b\x26\x94\xcb\xd7\x66\x8b\x4d\xd1\x7c\xfa\x70\x4e\x04\x46\x7b\x4e\xb5\xa8\xca\x9a\x96\xc4\xc7\x8f\x17\x27\x15\x11\x64\x1b\xa5\xfa\x19\x43\x7a\xd1\xed\x76\x34\x94\x03\x68\x6e\x03\x02\xac\x4b\xda\x0c\x76\xbb\x44\xc8\x30\xef\x78\xe7\x6e\x67\x32\xe1\x5d\x9d\x47\x84\x80\xe6\x7c\xfa\x97\x3a\x89\xae\x3c\xc1\x3f\x97\xda\x57\x2a\xd3\x00\x19\x94\xc7\x3f\xd3\xcc\x2a\x67\xe0\xdd\xd4\xcd\xa3\xa2\xbb\x05\xf1\x96\x15\x36\x3f\x4f\xbd\xef\xf9\x93\x24\x92\x01\xcd\x72\x79\x85\x91\x3d\xd9\x8b\x59\x83\x2d\x65\x47\x28\x61\xde\x71\xf9\xf6\xe3\x85\xd9\x30\x03\xe1\xc4\xab\xba\xdc\x91\x50\x73\x0b\xb2\xa8\xa3\x34\x37\xca\x97\x5c\x6b\xa2\x00\x8f\xcd\x87\x7f\x79\x61\xfe\xd7\x1f\xff\xf0\x87\x99\xc1\xf8\xb7\x09\xfa\x7d\xc0\x28\x2d\xc4\x3f\x01\x4e\x6b\xa2\x4e\x2c\x44\xf0\x4a\xe0\xfa\xdb\x77\x44\x65\xdf\x3e\xe5\xec\xff\x63\x3f\x27\x24\xe2\xd8\xd9\xaa\xdc\x3d\x33\xb4\x07\xef\x68\x39\xcd\xb0\xa9\xd2\x56\x56\x0b\xa9\xba\xfe\x18\x2b\x83\x7a\x32\x22\x58\x85\x9e\x64\x77\x4e\x0a\x5b\xac\xca\xe2\x2a\xab\x69\x78\xab\x36\xdb\x83\xff\x4b\x0e\x8b\x00\xd2\xd7\x46\x6a\x5a\x14\x65\x9b\x5d\xdd\x04\x40\x69\x97\x53\x85\x02\x1a\xec\x70\x35\xb1\xef\x85\x22\x58\xb1\x7e\xc9\x89\x98\xdd\x04\x1d\x26\x12\x95\xec\xe6\xa4\x3f\x01\xb4\x07\xd0\x4f\x2b\x2c\xf2\xfd\xd5\x95\xc9\x99\xc3\x82\x4f\x62\xaa\x48\x32\xda\x42\xe0\xec\x03\x12\x11\x57\x24\x60\x5e\x4a\xae\x79\x71\xf6\xce\xd0\x9e\x05\xda\x21\xe2\x4d\x3b\xea\xac\xe5\x1a\x1e\x13\x4f\x23\xda\x58\x62\xef\x2b\x40\x4a\x4a\x51\x79\xb9\x25\x89\xd1\xd0\xae\x4e\xe8\xa3\xfa\xc0\x18\x53\x62\x55\xb4\xcf\x2e\x02\x2a\x48\xc8\x72\x2d\x40\x66\x8f\x71\x44\xad\x4d\x97\x18\xf4\x6c\xa2\x9c\xf4\x09\x78\x81\x00\xe4\xd7\xbf\x4a\x40\x0d\x71\xed\x2d\xf7\x87\xf7\x61\x92\x18\x55\x56\x5f\xec\x33\x92\x6b\x5d\xbd\xba\xbf\x5a\x0c\x01\x32\x36\xd8\x77\xb9\x23\xae\x0f\x59\xf9\x3b\xde\xac\x6f\x33\x66\x81\xd3\x15\x69\x37\x4f\xa5\x27\x98\x0a\x92\xfc\x7b\xec\xcf\xf5\xcb\x57\xb9\xb4\xdb\xec\x9a\xba\xf6\x98\x7e\xdd\x42\x98\x09\x30\x3a\x20\x2a\x4f\xb5\x64\xc5\x93\x78\xc4\xbe\x3c\xfa\x33\x73\x22\xa0\x8a\x64\x22\x61\x7c\xa2\x65\x07\x6e\xc1\x7b\x15\xed\xad\x56\xf4\x25\x41\x90\xaf\xc8\xa9\x20\x34\x34\x46\xd1\x63\x93\xf6\x38\x31\x95\x7d\x73\x36\xff\xde\x6c\xeb\xec\x7a\xdd\x9a\xa4\x6b\x89\x73\xb6\x19\x51\x50\xbf\x22\xe2\xc2\x9b\x36\xea\x4a\x90\x93\x1c\x51\xd2\x00\x21\xbb\x12\xd5\x36\xda\xa8\x83\x9d\x94\xfc\x9d\x50\x3b\xb1\xe0\x74\x9d\x85\x4c\x91\xfc\x2d\xb3\xdb\x00\x26\x35\xc4\x1a\x04\x73\x0a\x2f\xd8\x2d\xd6\xa5\x0a\xbd\x8c\xe9\x9a\x37\x0e\x68\x44\x4d\xbb\xa0\x6d\x66\x71\x85\x35\x9f\xce\xb1\x0f\x22\x4d\x10\x49\x53\xda\x6d\xdb\x1f\xcc\x77\x04\xf1\x9d\x21\x9e\x42\xc2\x79\x5a\x9a\x07\x7b\x27\x74\xfc\x11\x8b\x7b\x91\xec\xd1\x1c\x91\xf1\xfc\xd3\x41\xa5\x30\xb3\xcc\x6c\x8a\x0a\x08\x15\x25\x16\x2f\xa1\xa6\x2b\x40\x62\x2c\xd8\xa8\xac\x41\xf8\x2f\x0f\xa4\x30\x92\xa0\xd1\x17\xe5\x96\x34\xdf\x44\x6f\xae\xb2\x3d\x71\xc2\x07\xb4\x12\xb9\x53\x98\xb2\x72\xd9\x65\x79\xaa\xd9\x33\x0c\x72\x9f\xe4\x59\x0a\x81\x53\xc9\x02\x5d\x49\xa7\xa4\x3f\xe1\x9d\x5c\xd3\xaa\xac\xb1\x9f\xfe\xc0\x03\x72\x55\x4c\xca\x13\x2a\x4e\x40\x22\xa2\x3f\xe3\xc2\x7e\x8b\x07\x3a\x88\x64\x48\x58\x3f\xe3\x95\x3a\x16\x0a\x7c\x05\x94\xb8\xe9\x32\x52\xe7\x43\x1e\x55\xd6\x98\x93\x67\xf4\x2f\x21\x38\xd9\x5b\x61\xb2\x6b\x37\x39\x3f\x25\xbc\x40\x24\xb1\x13\x92\xe6\xaa\x4a\xa8\x00\x49\xd1\x1f\x48\x6f\x95\x00\x1d\x9c\x70\x72\x04\x17\x6b\x70\x80\xb5\xab\x41\x48\xa6\xe9\x56\xc4\x6c\x1b\x52\xae\xf3\x6d\xb9\xfb\xc6\xfc\x92\x5d\x4b\x89\x3d\x11\x77\xb7\x4e\x81\x60\xd3\xc9\x8c\xb2\x1c\x22\x3b\xf6\xda\x6e\xcb\x5b\x2c\x2e\xe2\xf6\xb9\xa1\xdd\xe8\x36\x13\x2e\x0e\xa9\x06\x4b\x98\x15\x9e\x3f\xc3\x2e\x41\x8a\x47\x27\xe2\x5f\x49\x4a\xfe\x50\xe2\xc6\x0e\x67\x07\xda\xb0\x83\x8c\x97\x48\x73\xc8\x08\xe3\x0b\x6f\xdd\x00\xda\x5a\xfb\xb9\x9d\xff\x42\xda\x0f\x38\x1d\x81\x09\x0f\xd1\x0c\xda\x98\x6e\x78\xa2\x9b\xf9\x5b\x8c\x27\x96\xfc\xb0\xe2\x48\xd9\x59\x96\xc0\xef\xde\x2a\xd8\x2b\x9b\x5a\xd8\x21\x06\xa0\x54\x0d\x89\xa8\x5a\x4b\x5f\x4f\xa5\x2c\xd1\xa8\x35\x57\x3f\x78\xe8\x6a\x72\xf9\x55\xf5\xb8\x9e\xe4\xca\x00\xc4\x79\xa0\xf7\x05\x6b\xc4\x42\xb9\xc8\xfc\x6d\x92\x6c\x31\x63\xdd\xc1\x73\x33\x9a\xf9\x68\x5f\xde\xd8\x0a\x9b\xf7\xae\x59\x93\x2a\x80\xe9\xe8\x88\xb7\x0a\x2f\x14\xf8\x1f\xcd\x5b\x1a\x09\x25\x17\x1d\x8a\x7e\xe3\x2d\x3a\x7f\x4b\x15\x3f\xb1\x11\x87\xaa\xf8\x66\xb8\x87\x89\x95\x84\xb4\x8b\xf9\x25\xad\x90\x9b\xc7\x3d\xb9\x80\x68\x9f\x16\x05\x5b\xa9\xb0\x07\xa5\x33\xf3\x8e\xb4\x52\x50\x74\x9b\xac\x40\xc7\xcc\x83\x53\x1b\xd8\x27\xaf\x7d\x16\xc1\x61\xdf\x19\xed\xb1\xe8\x26\x58\x9e\xb6\xb5\xb4\x7b\xa8\xd4\x6b\x66\x34\x49\xd1\x6b\xbb\x0a\x22\xcf\xa8\x1b\xc0\xdf\xce\xee\x96\xa8\x8e\x44\x88\xa2\xdd\x94\x1d\x29\x3f\xd9\xf5\xfd\x7b\x24\x44\xad\x69\x51\x4f\xf0\x66\xb0\x9f\xb5\x65\x81\x1b\x40\xf6\x6e\xa0\x1f\xbd\x51\x8b\x98\xc4\x81\x0d\x7a\x6e\x02\x8b\x92\x96\xde\x60\x5a\x66\x9e\xf3\x8b\x4c\xc0\x92\x54\x63\x8b\xd6\x61\xf7\x25\x6f\x32\x7e\xb8\x8d\x75\x23\xa3\x61\xb5\x5d\x57\xab\x06\xf8\x74\xf9\xec\x41\xf3\xf4\xc9\xf2\xd9\x63\xf3\x5c\xa1\x0d\x37\xb0\xaf\x13\xd2\xed\x88\xd1\x62\xf7\x7d\x40\x0d\xd7\x60\xd5\x3b\x43\x84\x15\x63\xad\x85\xf9\x26\x6f\xcb\x52\xb6\x5e\x27\x00\xc8\x46\xa3\x3d\xa6\xda\x44\x9f\x3d\x28\x82\x75\xeb\x49\x58\xe2\x5b\xb0\x01\xc5\xd1\xaf\x97\x02\x03\x01\x03\xf9\x3c\xb2\x3c\xdb\x65\xed\x80\x7a\x3a\x65\x2a\xd4\x8f\xa6\x00\xc5\x25\x86\xb8\x11\x46\xc6\xf4\xe8\xc6\xb1\xb6\x29\x7a\xc1\xac\x48\x08\x95\x9a\xe1\x01\xa0\x3f\x33\xc3\x13\x62\x52\xb0\x72\x62\x82\x5d\xeb\x6c\x18\xd4\x0b\x1a\xde\x9a\x59\xb4\xab\x8c\x86\xb9\x49\x9a\x45\x57\xe8\x04\xd8\x54\x68\xec\xb9\x85\xb4\x84\x7d\xc8\x75\x4a\x76\x37\x37\x0b\x69\x3c\x7a\xf3\xd0\x63\xfe\xd1\xcc\x9c\x92\x66\x42\x33\x5b\xae\x65\x47\x8c\xc9\x54\x6a\xa2\x05\xb0\x87\x24\x49\x5c\x93\x98\x5e\xc7\x35\x17\x62\x1d\xf3\x63\x3c\x64\x39\x0d\xa1\x04\xcc\x36\xcf\xb6\xc4\x7d\x0b\xd5\x8a\x74\x87\x4d\x20\xa0\x9a\x6d\x51\x56\x33\xc5\xa9\xf6\xfc\x27\x80\xb3\x4e\x2d\x13\xdc\xc7\x0e\xf7\x0b\x0d\xb2\x19\xa7\xe5\x5d\x97\x55\x04\xaf\x04\xf1\x26\xdf\x30\x9b\x68\x2d\xeb\x66\xf1\x48\xdd\x86\x06\xbe\x0f\xae\x90\x32\x41\x44\xec\x02\x74\x83\xbe\xa0\x4b\xed\x74\x8f\x82\x28\x63\x18\x4a\x3a\xf6\x90\x7a\x46\x1a\x4c\xde\x3c\xd2\x6e\x11\x65\xd7\x62\x60\x6a\xe2\xe5\xf6\x81\x8b\xf4\xaa\x09\xfb\x20\x5b\xbc\x1c\x35\x1d\x7a\x6b\x06\x59\xe8\x3e\xd5\x9c\x97\xb0\x6b\x11\xee\x55\x82\xa4\x9e\xc9\x96\x38\x1b\xb6\xe6\x94\xb7\x3b\x86\x50\x56\xc2\xa1\x49\x99\x00\xdd\x62\xbf\xe5\xd5\xe3\xab\xa0\xf5\xb4\x68\x36\xd0\xad\xcf\x60\xcb\x28\xd6\xad\x08\x39\xfd\x6a\x58\xc1\x87\xd8\x09\x1c\x90\x1e\xd0\x04\x0b\x51\x30\xc5\xfc\x99\xb4\x94\x04\x16\xbc\x1b\xdb\xcc\xff\x35\xb9\x7f\xaf\x28\xe7\xc4\x54\x69\x03\x22\xae\x02\xb5\x2b\x29\xd0\x2c\xb0\x46\xc0\x50\x09\x09\x16\x66\xeb\x77\x53\x82\x28\x76\x22\xce\x88\x85\x1f\xc9\x62\x65\x75\xde\x5b\xe0\x17\x53\x02\xeb\x07\x1b\x19\xa8\x87\x62\xea\xe5\xe5\xeb\x8f\xa2\xdb\x5d\xbe\x36\x4d\x6e\x69\x25\xe6\x5a\xff\xeb\xb6\xad\x9a\x4f\x75\xce\xe6\x86\xcb\x13\xb6\x0a\x5c\x24\x37\x90\x0e\x91\xfa\x8e\x04\x99\x92\x1a\xc6\x9a\xe1\xbc\x8f\x36\xd9\x71\x57\xf1\x43\xeb\x38\xa5\x7d\x93\xd3\xe8\x07\x75\xbd\x09\x86\x26\x36\x15\xbf\x8c\xc4\xe3\xb0\xc5\x88\xb9\x5c\x14\x1c\xcb\x36\x70\x68\xde\x23\xab\x57\x92\x57\x9b\x84\x85\x0c\x85\xe2\xe9\x01\x99\x33\x9d\xd1\x42\xcd\xaf\x92\xa2\xdb\xd1\xb8\xed\x16\x94\x04\xd0\x87\x27\x8b\x47\x7e\xd6\x26\x6a\x4a\x69\x65\x7d\xb9\xb6\xc7\xa1\x2e\xaa\xf7\xe1\xec\x91\xa9\xf8\x24\x65\x50\x6f\x93\xdd\xda\xb8\x36\x36\x95\x49\x2e\x33\x0b\x88\x95\x2c\x13\x0e\xe0\x3c\x89\x3d\x88\x29\x8c\x16\x4a\xd2\x8a\x96\xb3\x4b\x3e\xf7\x0a\x11\x33\xa2\xa4\xbb\xcb\x08\xe7\x90\x02\x8e\x43\x44\xc3\xd3\x9d\x98\x09\x09\xa7\x2b\xf5\x1d\xb0\x34\xdd\x00\x29\x88\xb3\x1d\x0a\x05\x7b\x4f\x6c\x77\xcb\x6c\xfb\xaa\xec\xda\x1f\xfc\x19\x08\x6d\x4e\x2a\x99\xcf\x5f\x48\x8a\x21\xd9\x55\xf5\x99\x12\x3a\x6f\x7f\x25\x06\x81\x3d\xda\xb3\xd1\x74\x38\x5f\x89\x97\x24\xd5\x65\x8b\x61\x65\xe1\x48\x67\xb1\xa4\x94\x45\x0b\xdd\x72\x28\xcb\xd2\xb8\x08\x5b\x99\x37\x45\xa9\x11\x7f\x31\x2c\x36\x5c\x78\x53\x05\x49\xda\x18\x95\x8b\xce\x72\x8e\x96\x6b\x69\xa5\x8c\x0a\xfa\xe5\x33\x55\x42\x66\x91\xa1\x69\x8c\xe9\x7c\xc0\xf7\x87\xe0\x19\x31\xba\x35\x2c\x6b\xae\xa1\xa8\x76\xa6\x0d\xa3\x10\x36\x10\xcd\x2c\x42\x9f\x9f\x96\x30\x8b\x63\x95\x20\x9a\x8e\x81\x32\x86\x0e\x93\x80\x4f\xbf\x51\x43\xa4\xcf\x71\x57\x3e\xf5\x76\xed\x6b\xb6\x49\xf6\xcc\xab\x6a\x62\x5e\x5b\x68\x6d\xe9\x54\x65\x44\x7f\x50\xf2\x8e\xd6\x66\xb3\xb5\x2d\xe4\x70\xe2\x8e\x5a\xfc\xbe\x35\x59\x47\x3c\xbc\xa8\x16\xaf\x5e\xda\xcf\x04\x46\x68\x59\xf3\x31\x6f\xd0\x2b\xd9\x42\x95\x08\xa5\xcf\x70\xb0\x49\x9a\x3d\x08\x85\xfb\x8c\x7d\x26\x80\xc2\x48\xda\xc1\xce\x45\x13\x5b\xb7\xba\xb7\x1e\xb2\x6b\x18\xd9\xf8\x60\x06\x76\x45\x5b\xe0\xa4\x99\xfa\x6b\x1e\xba\x61\x3d\x12\x69\x9c\x6d\x04\xc9\x6e\x66\x3e\x19\xe5\x5a\xb5\x58\x0c\x20\xae\x0c\x0a\x90\x28\x10\xf6\xbf\xb0\x29\x37\xc4\xfb\xb6\xf6\xc6\xed\xcb\x07\x1b\xa9\xa2\x19\x5b\xb2\x69\x24\xb2\xaf\xd2\x4e\x71\xe2\x76\x0a\xe9\x29\x2d\xcc\xdf\xfe\x9b\x7a\xfa\x03\x73\x34\x52\x20\xa1\x0f\x70\xfa\x8d\xaf\x58\xec\xe2\x89\xd7\xf4\x8b\xb6\x2e\x73\x1e\x1e\xe4\xab\x5e\xad\x8f\x89\x99\xd1\x94\xd1\xf8\xcd\x9a\x25\x97\x9a\xb7\x62\x1a\x25\xf4\x5b\x96\xa8\x21\x08\x3c\x36\xb7\x84\x4e\xe4\xf2\xe1\x17\x54\x5f\x98\xe6\xc0\xcf\x69\xd7\x71\x3a\x7a\x74\x2e\x4b\x7c\xb5\x11\xfb\x09\x94\x6a\x62\xcf\x2d\x11\x3f\xa6\x43\x8e\x55\x3f\x05\x0d\x4e\xa8\xc0\x89\x61\x8c\xbc\x94\x06\x4f\xc2\x1d\xbe\x23\x12\xf5\x28\x67\x8d\x48\xf0\x1e\x4f\x1d\x8d\x0d\x6c\x29\xe5\x73\xc6\x99\x6b\x12\xd2\x2c\xce\x53\xa3\x16\xd1\x16\xcd\x8b\x4d\x1b\x4c\x18\xac\xc4\xd0\x85\x2a\x9e\xdf\x48\x8f\x15\x51\x77\xd9\xaa\x19\x3f\x2b\xb6\x8d\x98\x9d\x8b\x71\xe3\xca\x97\x06\xa3\x3c\xeb\x1d\xe2\xc4\x23\xd5\x51\x5a\x16\x62\x63\xb5\xfa\x6f\x1d\x64\x8c\x59\xb6\x70\xf3\x01\x0b\x26\x85\x56\x9e\x9b\x0a\x4b\x2a\x1d\x6d\x16\x58\x76\xad\x0a\xe2\x72\x22\x40\x12\x35\x4d\x67\x53\xee\x76\x20\xf7\x60\xbc\xf4\xbd\xe8\x0d\x56\x8e\x59\xa5\x13\xfd\xb1\x13\x77\x4d\x58\x09\x5c\xd6\x49\xb1\xda\x44\x4b\xf5\xac\x24\xca\x95\xd4\xde\x22\x65\x81\x0c\x1d\x86\xa6\xbf\x81\xf4\x0f\x4b\x1a\xd5\x02\x22\x62\x8b\x37\xcb\xea\x9c\x04\x1c\xbd\xaa\xe5\x37\x8c\xfb\xbe\xc4\xaa\x6b\xda\x72\xe7\x0a\xfe\x92\x5d\xdf\x42\xc1\xf3\xc5\xe4\x28\xa4\x6f\x2e\xbf\x2e\x49\x06\x28\x0b\x48\x86\x38\xac\xcb\x21\xaf\x46\x27\xca\x34\x03\xf3\xbe\x95\x83\xd5\x85\xac\xc5\x51\xb3\x2d\x96\x49\x6d\x8d\xa6\x58\x98\xb0\xaf\xca\x3c\x2f\x0f\x84\xa0\xf9\xcf\xd0\xa4\x60\xe2\xc0\x41\x14\x31\xbc\xf9\x25\x33\xbe\xc2\xc1\xc0\x0e\x05\x18\x1e\x39\x24\xd1\x19\x33\x7d\x88\xd7\xf5\x9e\xc0\xcf\x86\x67\x67\xe6\xbb\x07\xcd\x77\xb2\x02\x15\x48\x78\x61\x28\x5b\x41\xdc\xa8\x0b\xd1\x50\xb8\x1f\x29\x9f\x80\x0e\xea\x21\xb0\x1a\xe7\x28\xae\x3e\x66\x0a\x38\x73\xe3\xe9\x50\x41\xda\x9d\xf1\xd3\x74\x38\x4f\x00\x76\x02\xb0\x23\x67\x0c\x67\x77\x12\x5e\xd3\xcc\x23\x66\xd2\x38\x73\x8a\x3a\xc6\x58\xe7\x19\x73\xe2\xac\xf3\x7c\xd6\x25\x67\x5f\x65\xd1\x44\x87\xa7\x7c\x42\x01\x6b\xd2\xfb\x9e\x21\x29\xb5\xb9\x6d\x59\x9e\x16\x6a\x0b\x6a\x73\x97\xa5\x73\xfa\x1f\x9d\xaf\xba\x25\x55\xe9\x3d\x18\x64\xa2\x12\x75\x4d\xe1\x01\xa8\xe7\x8a\x58\xcb\x0f\x43\x05\xae\x74\x05\x60\x14\xa4\x5d\xdd\xaf\x0e\x3d\xed\x60\x9e\xc7\x07\x21\x8e\x83\x60\x4a\xe0\x4b\x03\x11\x9a\xc8\xba\xce\x08\x2f\xb4\x25\x89\x5d\x91\x75\x5c\x8c\x3a\xc3\x69\x37\x52\xb0\xe5\xec\xb3\x04\xd4\xa8\x3e\x3b\xe1\x68\x2e\x95\x29\xb8\x82\xcf\x04\xef\xad\x44\x24\xc4\x4b\xb1\x1e\x45\x78\x1f\x79\xf9\xe4\xa5\xa0\x6f\x7e\x5e\xaa\x0b\x4c\x57\xa5\x30\x95\xf5\x26\x8e\x0d\xc9\xd7\x07\xf6\x6b\x1a\x42\x78\xe3\x26\xe1\x42\x91\x04\x3c\x48\xea\xbe\xcc\x51\x72\xcd\x43\xc0\x66\xaa\x8b\xcd\x7b\xee\x7c\xd2\x1f\xe0\x01\xbc\x52\xd3\x11\x8c\x60\x7a\x2c\x04\x52\xa5\xbc\x48\xd3\x99\xf9\x05\x0a\x7d\xc7\x0c\x08\x1b\xcf\x8f\x7c\xea\x27\xd8\x17\xa3\x84\x3b\x0e\x0e\xd8\x17\x0d\x3b\xa0\x74\x69\xdb\xda\x6e\xb7\x59\x38\x3a\x26\x46\x11\x4c\x2b\x62\x45\x22\xaa\xee\x48\x6d\xd7\x66\x06\xbe\x26\xb5\x68\x86\x56\x76\xd1\x3e\x3b\x61\x0e\x41\xd4\x89\x43\x22\xc7\x4f\xa2\xe3\xb4\xa9\x32\xfe\x70\x5d\xe0\xd5\x3c\xbd\xa1\x85\x50\xf0\xe6\xe2\x98\x18\xf0\x55\x96\x8d\x1a\x37\xa5\xb9\x9f\x70\xf0\x1e\x5b\x3e\x14\x52\x67\xce\x75\xca\xf7\x44\x79\x5a\x7f\x92\xa1\x2f\x92\xac\xa5\xbd\x61\xbe\xb0\x20\x4d\x65\x0d\x5d\xf7\xb7\xff\xcb\xd9\xee\x30\x4f\xa6\x03\x76\x8a\xab\xa5\x95\x13\xb0\x19\xf4\xe7\xc1\x88\xc2\xf1\xc6\x2b\xb5\x39\x0d\x90\x12\x79\xa5\x3c\x0e\x32\x87\xf7\x20\xe8\xd9\x19\x7b\x63\xf1\x44\xd8\x3b\x3a\x92\xd9\x96\xaa\x8f\xd0\xa3\xa7\xb6\xf8\x54\x48\xb6\x8c\x58\xdb\x2e\xf3\x48\xd8\x7c\xcd\x87\x0d\xb6\x07\x00\xe4\x7b\x00\xf6\x5f\xea\x65\x4f\x88\xe3\x52\xcb\xdd\x32\xf8\xa0\x6f\xe1\x1c\xa1\x57\x28\x0c\x2d\x5a\x12\x9f\x70\x1e\xd8\xc2\x06\xaa\x06\x45\x25\x85\x9e\x50\x2c\x9e\x88\x8c\x06\x39\x68\x8e\x4f\xbc\xd8\xd2\xa1\x4e\x64\x93\xb9\xac\xf8\xd7\xc1\xb8\xe5\x38\x62\x55\x13\x99\xe0\xd0\x29\x66\x8d\x58\x8d\x03\x17\x02\x99\x1f\x3d\x31\x15\x5e\xa7\xc7\xd3\xbd\x33\xc2\xbd\x35\xad\x1e\xc3\x72\xcd\xf5\x0d\x31\x25\x6e\xc1\x27\xa8\x15\xf5\x8d\x93\x90\x69\x89\x37\xae\x1b\x8e\xef\x2b\x8c\xe7\xfe\x38\xe9\x4b\x79\xd1\x48\x86\x4c\x5a\xdc\x65\xda\xd6\xf6\xd8\xd9\x0a\x01\x1d\x1d\x09\x4e\x02\x2c\x7a\xc6\x66\x58\x63\xd9\xc0\xac\xd8\x8f\xed\x95\xaa\xb8\x13\x25\xa6\x6a\x91\x9b\xb2\x35\x93\xc8\xcc\x28\x60\x23\xd8\xb2\xfc\xac\x82\x08\xab\xcf\xf4\xd7\xd9\x9b\x5b\xdb\x17\xcd\x77\xac\x79\xc4\x26\x3a\xe2\xcd\x2b\xdb\x0c\xcd\xd0\xa1\xdf\x8e\xb6\xb0\xe9\xc7\x58\x38\x24\x8d\x6c\xf0\x18\x6a\xca\xb4\xa2\x44\xe1\x77\x6d\x75\x2f\x8c\x2c\x51\x8d\xd4\xcc\x8a\x89\xd3\x38\x02\xb2\x50\x90\x89\x05\x6c\x3a\x13\x4e\x95\x67\xd7\x10\x0c\x13\x39\xc0\xee\xd5\xc5\xfc\x39\xd8\x44\x59\xbf\x49\xc4\xc6\xe7\xb8\xb3\x89\x36\x75\x14\xef\x15\xed\x64\x59\x6d\x98\xb3\xb1\x0d\xb5\xf1\xae\x4b\x4f\x89\xc8\xca\x62\xfd\xec\x8c\x4f\x4a\x70\xf2\x6d\x37\x5d\xce\xe2\xfb\x8f\x4f\x9f\x68\xa6\x79\xb1\xb1\xab\xad\x29\x3b\x98\x97\xe1\x72\x94\x91\xb4\xcf\xc4\x0b\x24\x3f\x4d\xcc\xa6\xb6\x57\xf3\x6f\x1f\x34\xdf\x3e\x33\xec\xd0\xc5\x73\x80\xb1\xc4\xc3\x78\xfa\x24\x79\x06\x69\xb7\x0f\xef\xfd\xbc\x08\x94\x21\x2a\xf6\x30\xdc\xf9\xd9\x01\x85\x32\x1e\x23\x3b\xdf\x00\x97\x94\x1d\x59\x16\x2e\x58\x82\x31\x94\xc8\x24\x61\xa1\x16\x25\xb0\x28\x51\x9f\x00\x30\x0b\x85\x78\x7b\x1d\x16\x3a\x64\xed\xc6\x34\xd8\x93\x79\x63\x46\xd9\x24\xaf\x6d\x92\xde\x18\x16\xc3\xb9\x06\x57\xda\x4f\xaf\xc8\x17\x48\xd6\x46\x69\x35\xe2\xec\xc7\x13\x82\x27\xb0\x77\xf6\x20\x2e\x52\xd4\x16\x8b\x91\xbe\x77\x04\x69\x53\x65\x67\x0d\x84\x98\x9b\x6f\xfc\xea\x05\x0a\x06\x6b\x97\xa4\x96\x8f\x9e\x30\x59\xf4\x66\x55\x9d\xc7\x73\x0e\xed\xa2\x0d\xac\x06\xb9\xb4\x1f\x79\x01\xfc\x95\xe8\x83\x2b\x98\x14\x22\x21\x1c\x18\xe5\xbe\xb6\xd8\x5b\x98\x46\x3f\x6e\x88\x42\xd1\x57\x9c\x75\x35\xe2\x7e\x8c\x76\xcc\xff\x26\xd5\xf5\xa6\x89\xd7\x83\x88\xab\xba\x1a\x3c\xc1\x12\x35\xaa\x00\x1b\x04\x57\x3d\x28\x3c\xbe\x08\x52\x96\xb8\x40\x92\x72\xea\x3d\xac\x22\x96\x5f\x1e\x47\xd4\x0f\x53\x46\xdb\xe1\xb8\x78\x28\xe0\x8c\x56\x41\x57\x2c\xb3\x82\x30\x55\x36\xce\x91\xdc\xa5\xf9\xa9\x62\xc9\x1b\xbe\x39\x2a\xaa\x42\xbe\x2d\x5a\x1d\x57\xcc\x0a\x12\x86\x5f\xb4\x25\xec\x60\x17\xc4\xcc\x48\x47\xc8\xe1\xa1\xe2\xfc\xf1\x1a\xce\x6a\xc2\x96\x21\x8e\x8f\x7a\x26\x2b\xe5\xd4\x89\xf9\x23\x3e\xc2\x3a\x22\x75\x90\x8b\xea\x6c\x48\x35\xaa\x4c\xaf\xad\x80\x81\x85\x62\x8c\xea\x02\x33\xb9\xcf\x38\xc7\x40\xf5\x08\x3c\xbd\x78\xc3\x47\xed\x33\xd9\xbb\xb9\x0d\x69\xe2\x4f\x25\x76\x0f\x2e\x53\x74\x8f\xd5\x30\x93\xf3\x50\xb6\x2a\xd4\x7b\x69\xd2\x49\xd7\x71\xe5\x3d\xa1\x51\xea\x95\x95\x72\xb3\x5b\x96\x39\x7c\x60\x9c\x34\xee\x71\x20\xe3\x1f\x0d\xbc\x9f\x2f\xb3\x42\x3a\xa5\xe2\xa9\x87\x59\x4c\x0d\x36\x7a\x99\xb9\x18\x31\xdf\x98\x3f\x0d\xad\x2d\x5e\x18\xa8\x8e\xce\x14\x04\x07\x9a\x67\x31\x0f\x41\x9a\xc0\xb0\x99\x80\x6e\x33\xd8\xa5\x81\x6a\x88\x2f\x5c\x29\x7b\x37\x81\x15\x1e\xa8\xc1\xb0\x64\x65\x54\x3f\x07\xe5\xbe\x9f\xe3\xa9\xec\x38\xbd\x0c\x46\xe5\xed\x04\x34\xa8\x9f\x71\x1a\x6c\xd5\x1c\x4d\x23\x6a\x23\xed\xcf\x94\xe5\x56\x0e\xf9\xbc\x40\xcb\xc4\xaa\xad\xbb\x13\xd4\xb0\x6a\xe2\x23\x54\x05\xd2\xc3\x53\xb6\x80\x6c\x20\x96\xb0\x80\x0c\x2c\x44\x0e\x03\xa9\xbd\x22\x39\x85\x64\x94\x9e\x0d\x03\xb6\x1e\x16\xbe\x60\xdf\x73\x1b\x8c\x79\xf7\xe6\xe5\x47\x13\xb6\x14\x52\xb6\xbb\xb5\x49\xeb\x24\x21\xe4\x7d\x13\xbc\x93\x06\x7d\xf4\x47\xcd\xbe\x7e\xea\xc6\x70\x24\xea\x36\xa5\x6e\xfa\x71\x57\x46\x90\x9e\xe3\xb8\x21\x60\x44\x44\x06\xb4\x8e\xb1\x51\x38\x25\xd5\x23\x7a\xac\x5b\xb1\x86\x0f\xb3\x06\x69\xf7\x62\x11\x7d\xa9\x36\xca\xc8\x0e\x3f\x71\xea\x15\x6c\xf4\xce\x67\x13\xc4\x5e\xda\x74\xca\x74\x0c\xfe\x56\xb7\xb4\xf8\xec\xae\xac\x93\x25\xb1\x33\x02\x76\xa8\xec\x68\xce\xb7\x1e\x93\x34\xb3\xfb\xac\xc9\x96\x59\x0e\xbe\xfe\x27\x68\xcf\xd0\x1f\x36\x16\xfa\x3c\xe7\x20\xc3\x35\xca\xdc\x3c\xf8\xfc\xa3\xa5\xa7\x4d\x45\x0c\x77\x45\x3c\xbd\x99\x7f\xdb\x65\x94\x9b\x1a\xf8\xb6\x7c\xfb\x8c\xc4\x4c\x52\x1e\x2c\x35\x45\x10\xcf\xd8\x5a\xb2\x15\x63\xdc\xcf\xc3\x8b\x18\x9c\xa5\x5e\xaa\x4d\x45\x2d\x36\xea\x39\xa1\x59\xa3\x8e\xbc\xb2\xb8\xcc\x11\xdb\xcd\xb1\xf3\x42\x78\x77\xde\x44\x4b\xb8\x15\x6e\x4d\x55\x62\x37\x15\x6f\x2e\x5a\x91\x38\x1c\x12\x9b\x17\x23\x54\x6f\x05\xe0\xb2\x52\x76\xbd\x67\xda\xe0\x74\xdc\xc6\xd1\x9b\x38\xfe\xdb\x35\x7d\x49\x24\xb1\x6a\xd9\x81\x94\xda\x9a\xad\x89\x80\xd7\x05\xed\x33\x4e\x9b\xa3\x7d\x34\xa3\x8d\xb1\xb1\xf3\x73\xfc\x65\xab\x80\xa6\x4c\x57\x91\x2b\x58\xa8\x00\xab\x62\x01\x99\x61\x07\x6f\x3e\x6a\x20\x21\xc6\x07\x70\xb6\x44\xc6\xf3\xbd\xd3\x13\xaa\x0f\x2f\x4f\xcf\xde\xbe\x9c\xed\x52\xef\xac\x13\x5f\x99\xe9\xdd\xbc\xa1\x55\x97\x74\xb9\xb3\x0f\xce\x2f\xd1\x24\xcd\x78\xaa\xa6\x41\x77\x01\x87\x74\xad\x16\x16\xe8\x7c\xfe\x96\xbf\x8d\xfb\x7e\x48\x82\xf6\xa3\x23\x96\xb3\xa8\xa1\xdf\x6f\x37\x1b\x12\xff\xd7\x18\xcd\x0a\x0b\x5d\xbb\x6b\x37\xf1\x89\xab\x73\x2d\xc5\x90\xd6\xb2\x13\xe0\x44\xf8\xad\x5e\x10\x32\x72\xdb\x22\xce\x3b\x46\xe7\xc4\x0d\x71\x50\x6b\x92\x3e\xb9\x83\xce\xcd\x32\xef\xec\xb7\xcf\x04\x69\x9e\xd6\x5d\xa5\x3c\x0b\x68\x50\x3c\x93\xa3\x69\x50\x88\xd9\x2a\x2f\x0b\x62\x30\x29\x6b\x85\xf3\x17\xf8\x32\x7a\xac\x3d\x09\x12\x89\x55\xab\xa4\x90\x4e\x05\x6f\xf4\x27\xaf\xde\x7c\xc4\x39\xa5\xa1\x09\x83\x71\x4a\x7c\xc5\x71\x37\x2c\x69\x37\xb3\x50\xa5\x3b\xff\x60\x18\x71\x33\x7c\x5f\xc8\xf9\x82\xf3\x28\xae\x92\xf4\xb1\x38\xd1\x3b\x4b\x45\xe2\x8e\x2f\xc5\xe1\xdb\x59\x2d\x76\x49\x35\x53\x7a\xd8\xd2\x2c\xf0\x32\x5e\x5b\xf9\x8a\xd6\x30\x3b\x9c\x37\x36\xbf\x9a\xab\x72\xbd\xee\x1d\x2a\xdc\x18\x2e\xe1\xa4\xad\xc4\x1d\x8c\xb7\xcc\xdd\xab\x9b\x05\xac\xfe\xf3\x9f\x68\x53\xe5\x6b\x49\x2b\x5a\x35\x5b\xda\x09\x17\xc8\x73\xc9\x7c\x32\x20\x3a\x60\x95\x27\xdb\xa5\x3a\xae\x52\x5e\x4a\x1c\x63\x2b\x40\x48\x62\x84\xfa\x6b\x10\x23\xdd\x05\x3e\xfd\xc4\xd0\x7f\x34\xcf\xd9\x3d\x18\x3a\x87\x18\xd5\xe7\xdf\x2e\x96\xc4\x0b\xb6\xdf\xc6\x3a\x08\xd7\x53\x40\xfb\xf8\x06\x22\xe0\x81\x4f\x71\xdf\xd9\xb5\xec\x20\xf2\xc9\x26\x69\x96\x10\x61\x93\x86\x67\x17\x7c\xc6\xc4\x42\xcd\xe6\x69\x41\x12\x73\x46\xa6\xe7\xd2\xd9\xed\x58\x1d\x8d\x19\xd4\x5f\x3b\x8c\x7c\xdd\x65\x70\x27\x29\x48\x33\xc2\x6d\x0b\x56\xaa\xdc\xc0\x5a\x22\x0e\xa1\xbc\x9f\xf8\x6e\xc2\x90\x6b\xf4\x1c\xfa\x98\xbf\xa9\x4b\xad\x78\xf5\x45\x96\xaf\x98\xd5\xb0\x5f\x13\xc9\xab\x57\xea\xfb\xd9\x94\xb8\x95\x56\x75\xf0\x43\x80\x62\x23\x2d\x5e\xd0\xb7\x11\xdf\x22\xe7\x08\x14\x57\x32\xae\xe0\xfe\x3d\x65\x44\xa7\x57\x6d\xc2\x16\x44\x12\xfb\x68\xb9\xcc\x9f\x97\x38\x5e\xd0\x53\x0c\x5c\x74\x6c\x13\x5c\xa6\x73\x50\xd4\xc4\x3f\x92\x26\xb1\x64\x6d\x59\xa0\x6c\x2f\x1b\x07\x21\x54\xe0\x5c\x41\x46\x77\xdd\xa4\xac\xcf\xdf\x65\x39\xe5\x10\xfa\xd8\x4f\x32\xaf\x12\x96\xe8\x81\x18\xda\x8d\xe6\x2f\xe4\x2f\xb6\x83\xdc\x26\x8d\x6d\x54\xe5\x53\xdb\x38\x5b\x72\xeb\xe4\x30\xff\x40\x58\xd3\x4f\x9a\x04\xbe\x17\xf7\x8a\xad\x72\xb4\x51\x17\x99\x83\x64\xb7\x75\x80\xff\x42\xf4\xb8\x4e\xf6\x84\xa3\x50\x8e\xc5\x09\x26\xf6\x0b\xf7\x8b\x0d\x6d\xd2\x83\xd9\xa8\x47\x2e\xa3\x77\x39\x2f\x24\x5f\x41\x4b\x01\x15\x87\x24\xf0\xc9\xb2\x06\xa7\xb4\x5d\x1d\x92\x77\xc4\x5d\x60\x9f\x7c\x2e\x46\xf4\x90\x91\xb2\xb7\x55\xd2\x76\xbb\x90\x26\xde\xaf\xef\x3b\x56\x27\x5d\x62\x01\xc3\xa0\x6e\x3a\xec\xce\x22\x48\x47\x3a\xeb\xad\x6f\xf0\x19\xa7\xce\x06\x93\x10\xe5\x14\xd8\x75\x29\x75\xfe\xae\x34\x9c\xdd\xcb\x5d\xd1\x2c\xd4\x0b\x2d\xfd\x02\x1f\x9e\x16\x22\x28\x3f\xa7\x34\xa5\xfa\x6b\xd8\x46\x00\xa1\x76\xa6\xa1\xa4\xad\x00\x28\xcd\xed\x26\x61\x71\x7e\x11\x81\xe2\xfc\x23\xd4\xda\x0c\xaa\x2d\x1b\xb8\xf4\x45\xf5\x22\xe1\x18\x38\xa4\xf3\x35\x6d\x73\xf3\x53\xfd\x31\xd1\x47\x0f\x23\x5d\x4c\xa6\x20\xa1\xc6\x3b\x30\x1a\xf2\x08\x46\x58\x83\xbb\x75\x3c\x9a\x31\x37\x29\x6c\xee\x1b\xcd\x8b\xe4\x2e\x88\xf9\xae\xac\x3a\x48\x7f\xb4\x5b\x52\xca\x39\x9d\x6f\x8c\xf6\x9a\xd1\xda\xb4\xb1\x7e\x75\x8c\xca\x36\x59\xce\x1f\xa4\x06\x78\x0c\x45\x81\x27\x97\x83\x3b\x70\x65\x1b\xe5\xd2\x1a\x82\x37\xae\x54\xdc\xaf\x31\xce\x22\x89\x03\x9b\x91\x78\x76\x40\x08\x63\x31\x99\x6a\x73\xa2\x59\x3a\x2c\x16\x13\x13\xf8\x43\x32\xaa\xd8\x43\x44\x95\x13\x8a\xb5\xca\x74\x82\x64\xb4\x60\x98\x5b\x18\xac\x0f\xc4\xae\x27\x61\x70\x61\xf3\x58\xdd\x23\xaa\xd0\x62\x2c\xf1\x7c\x64\x41\x67\x9c\x31\x83\x77\xbd\x32\x46\xbe\x85\xb8\xf5\xdc\x71\x0a\xb8\xd1\xeb\xe4\xb4\xeb\xde\x94\x1d\x3a\x6b\xae\xcb\x4e\x44\x31\xee\xf4\x64\x31\x99\xe9\x74\xb1\xbc\xe1\x52\x32\xd7\x24\x51\xdc\x18\xfa\x9c\x2c\xb1\x83\x38\x5c\xe2\x96\x06\x97\x78\xeb\x3f\xa7\x4a\x34\xf0\x5e\xbc\xe4\x3b\x81\xe3\x8c\x19\x4e\x06\x9b\x16\xcc\xc7\x36\xd3\x10\xa0\x52\x82\x78\xcf\x7f\x26\x21\xc4\xce\x25\x07\x26\x24\x9c\xe2\x23\xbf\x31\xf2\x3d\xa2\x12\x69\x95\xb6\x08\x57\xe0\x1c\xbf\xd5\x56\xf6\x85\x62\xbb\xb2\x69\xc1\x4a\x61\xfe\x7b\x4b\xbf\x8d\x7e\xdc\xd5\x8a\x83\x97\x66\xc6\x05\xb0\x8a\x18\xf9\x73\xf9\x65\x1e\xfc\xf9\xfb\x5f\x1b\x60\xdf\x1b\x52\x9f\x3c\xf8\xf3\x1f\x7e\x25\x41\x86\xff\x40\x8c\x19\x17\x5e\x5c\x25\x5b\x3b\xaa\x81\x0b\x78\xe0\xaa\xb6\xfb\xac\xec\x68\x67\xd4\x1f\x11\x63\xf8\x8c\x29\xf8\xdc\x0e\xd6\xb6\x5e\x7b\x1c\x2e\xed\x54\x73\x84\x1f\x86\x5a\xba\xdd\x42\xc7\xd7\x60\xe5\xbb\xdf\xa1\xb0\x1b\xfc\x22\x69\xe7\x7f\xf1\x5f\x26\x61\x23\x73\x96\x92\xb8\x86\x9e\x3b\xd9\xed\x1f\xe4\x2b\x0c\xfb\x2f\xa1\xa9\xd2\x9b\x61\x3f\xc2\xe0\xc6\x5a\x47\xe9\xed\xc1\x37\xec\xd8\xd4\xe3\x46\x72\xbd\x9d\x7b\x3c\xc8\xd1\x7e\xc4\x10\x1c\xa0\x41\xd3\x3d\x74\x6d\x19\x29\x02\xf6\x81\x3f\x86\x79\xfd\xaa\x04\x66\xb2\x2e\x65\xae\x8e\x36\x5e\x0c\xb3\x05\xcb\x8c\x25\xd9\x73\xfe\x76\x14\x49\x97\xb4\x16\xf7\xf1\x3b\xea\xa9\x4a\x8e\xa5\x71\x51\x8a\x3c\xac\xa9\x7c\x82\x25\x61\x15\x02\xcd\xb0\xb5\xe4\x3d\xfe\xf5\x69\xee\x26\x03\xc9\xce\xa4\x5f\x10\x03\x45\x8c\x0b\x5a\x63\xd0\x25\x0c\x12\xfa\x90\x59\xb1\x70\x0e\xb6\x2c\x5d\xb7\xa5\x81\x13\x8a\x69\x59\x9b\x2a\x0b\x9c\x23\xf1\xc9\x13\x3c\xe5\xc5\x66\xbf\x81\x74\x96\x44\x37\x4e\x7a\xe7\x0f\xdc\x1c\x2a\x28\xdd\x1c\xf4\xd6\x8f\x4d\xb3\x76\xfe\x32\xcd\x02\xea\x71\x9b\x6a\x7e\x49\xff\xf8\x14\xd9\x8d\x84\xe2\x79\xbb\xe2\x73\x83\x41\xf6\xaa\xcc\x49\x60\x93\x6c\xfe\x3d\xca\x87\xb5\x8b\x16\xc5\x40\x08\x92\xdc\x40\x58\xbc\x70\x98\x6c\xe4\x73\x00\x38\xee\xaf\xa4\xab\xeb\xc7\x19\xff\x19\xe4\xa9\x7b\xb7\xf4\xed\x2d\x3e\xd4\xa5\x64\xaa\x0e\x76\x95\x60\xc8\x33\xfd\x3c\x02\xa5\x96\x36\x6e\x50\xa6\x47\x36\x68\x56\xc4\x71\x57\x9e\x66\x85\x24\x4e\xc2\x3d\x5f\x2e\x46\x11\x0e\x6c\xc2\xb9\x39\x6f\x30\x5a\xaf\x39\x2b\xb1\x6d\x98\x43\x82\x0b\x97\xb2\x88\xe1\x87\xf0\xe3\xb1\x96\x9d\x5d\x55\xfa\xe9\x4f\x57\x04\x07\xa3\xf3\x15\x09\xb1\xc1\xcc\xa7\x4a\x88\xae\xe4\xcc\x99\xc5\x73\x7c\x9b\x17\xf2\x7d\x04\x4c\x86\xe9\x60\xdb\x43\x69\x9c\x26\x23\x41\x5c\x88\xeb\x92\x7a\x8f\xa2\x46\x83\x78\x30\x65\x6b\xe9\x99\xab\x95\xf8\x55\x6d\x9b\x2e\x27\xc6\x48\x32\x81\xfe\x84\x43\x72\xa1\xc7\x0c\x5e\xa4\xf4\xa2\x78\x24\xea\x46\xb9\x63\x99\x2b\xca\xec\xc9\x5d\x8e\x39\x0f\xf3\x53\x27\xc6\x3e\x68\xfa\xed\x92\x42\xdb\xd1\xb2\xe3\x40\x2d\xa5\xa1\xdf\x30\xa6\x8f\x5b\x9f\x4f\x37\xeb\x58\x6b\x7f\x24\x34\x57\xcb\x0d\x2d\x53\xe2\x0b\x2a\x42\x86\x7c\xcc\xb5\x06\x99\xb1\x20\x80\xda\x11\x44\xbf\xf2\x9e\xb4\x3b\x8d\x14\x0d\x2e\x81\x7f\x7b\xe9\x4a\xa2\xcd\xaa\xce\x2a\x21\xe5\x38\xd3\x0d\xf6\x8c\x46\x7a\x86\xca\x1f\xba\xfb\xfe\x8f\x06\xc3\x23\x51\x5d\x04\xf6\x5e\xba\xbf\x4a\xaa\x15\x2d\x84\xd0\xb9\x3e\x7c\xcb\xad\x7a\xb6\xc2\x28\xe8\x63\xb3\xeb\x1a\x9c\x5a\x9b\xef\x6e\xa8\xb6\x93\xdd\xee\x24\x4d\xbf\x9b\x1a\xaf\xa7\x71\x3f\xe0\xc1\x51\xa2\xca\x6c\x43\x62\x8f\x2a\xf2\xac\xe2\x08\xd2\x90\x1f\x4d\xcf\xa7\x86\x7d\x84\x5a\xb6\x61\x7a\x8c\x31\x31\x47\x53\xd6\x94\xa6\xa2\xad\x24\x87\x4f\x56\xf1\x1d\x0f\x05\x86\x7d\x3d\x76\x8d\x87\x21\x9e\x43\x2f\xf8\x4f\x2f\x47\xd9\x11\x33\xa2\x9b\xbb\xfb\x26\x28\xd0\x05\x0a\xa3\xd6\xee\x08\x36\xc0\xb4\xef\xc2\x85\x67\x6d\x01\x9d\x81\xbd\x4d\xc0\x8d\x99\x5b\x68\xf9\xff\x2b\x83\x9b\x6a\x7b\x3c\xf5\x5f\x66\x71\x47\x82\x15\xb9\xe4\x99\x50\x76\xc3\x21\x2c\x24\x8a\x82\x66\x44\x57\x58\x11\x81\x80\x36\xb6\x42\xbd\xf1\x22\xa0\x4d\x59\x6e\x71\xb9\x77\xc9\x3f\xa2\x8c\x75\xd6\x4a\x1e\x6e\x83\xc3\x73\x29\x6e\x13\x37\xa1\x57\x21\x1e\xd2\x73\xbe\x18\x3d\x1d\x63\x69\x96\x62\x8a\xeb\xc5\x2d\x94\xb7\x57\x76\x9f\xc0\xbf\xe0\x96\xa9\xc2\x83\xb0\x5f\xdf\xfb\x70\xf3\x5b\xfc\xfb\x7c\xb6\xba\x4b\x4d\x22\x42\x5d\x0c\x7b\x2d\xaa\xeb\x11\x4c\x5f\xc3\x03\x1d\x36\x8c\x7b\xe7\xad\xe3\x65\x1c\x95\xc4\xf6\x33\x77\xbc\xe3\xdd\xfd\xfe\x7e\xce\x7b\x43\xa3\xe1\x2c\xea\x69\x4b\xad\x37\x57\xee\xec\x8a\x5d\xc4\xbd\x23\xf4\x04\x98\x8e\x84\x2f\x0f\xfa\x6a\xb9\x48\xb8\xa1\x27\x9e\x4b\xe1\x6a\x00\xae\x5c\xdb\x9e\x0f\xb8\x44\x75\xe9\xa2\x88\x06\x46\xe3\x1f\x88\x37\x77\xdc\x41\x0e\xec\xc5\x77\x24\xe0\x73\xde\xc8\x19\x85\x78\x81\xab\x65\xd3\xdf\x90\x10\x4f\x70\xbd\x57\x3c\x3c\x5a\xe1\xde\xca\x01\x5c\x20\xa6\xa1\x1f\xec\xd8\xbc\x3a\x80\x95\xf1\xcb\xdd\x4b\x6a\x85\xaf\x2b\x0d\x5b\x0b\x67\x86\xec\xcd\x50\x8b\x75\xfc\x60\xd7\x72\xd4\x39\x33\xaf\xd4\x93\xe9\x16\xe1\x2a\x24\x28\xc6\x75\xe1\x2e\xeb\xc1\x05\x83\xb7\xb6\x31\xee\x11\xdf\x84\x56\xf3\xfc\x69\xf5\xcc\x9c\xc0\xaf\x4d\x4a\xb8\x23\x77\x5c\x39\xcc\xa0\xbb\xb3\xd3\x57\x3a\xc6\x8f\x04\xd5\x48\xb3\x7d\x46\x3b\x51\xde\x0f\x20\xf0\xf4\x09\x55\x2a\x15\xcf\xe8\x3f\x3d\xe7\x8e\x6a\x87\x61\xbd\x4b\xef\xae\x3c\x9e\xe2\x8c\x63\xe8\x74\xe6\xb7\xff\xfa\xed\xbf\x0a\xe7\xc9\x21\xd0\x35\x2f\x34\x08\xd8\xd5\xb3\xe3\x0b\xd3\xb3\xb7\xf8\x10\x69\x1c\x6a\xe0\x88\x3b\xe3\x18\x7b\xa2\x74\xbc\xeb\x77\x3b\x02\x84\x84\xb6\xf0\xcb\x81\xcd\xe7\xba\x14\xd8\x82\x3a\xae\x50\xbc\x10\xd2\xb0\x72\x62\x22\x08\xdd\x2a\xf9\xba\xf6\x68\x45\xf5\x8f\xb9\x8f\x1d\x6f\x7b\x70\xb8\xf9\x04\x16\x5c\xfa\x81\xec\x6c\x2a\x2c\xab\xee\xf9\x42\x1d\x2b\xe6\x91\x1a\x95\xcb\x06\x6e\x6d\xbe\xb0\xec\x5d\x5f\x53\x3e\x3a\x26\x8f\x27\x14\xf7\x8b\x32\xbe\x28\xb2\x90\xab\xf0\xc1\x79\x19\xa5\x70\xaf\x47\x09\x23\xa6\x1c\xf0\x31\x10\x19\x1f\x48\x85\x66\x86\x5e\xb0\xd3\x7d\xc6\x80\x0f\xb2\xff\xb8\x7d\x68\x12\x31\xbc\x1b\xc9\x6a\x76\xdb\x15\xbb\x84\x80\x48\x3f\xe3\x1c\x93\xfb\x01\x6a\x63\x1f\x42\x84\xb1\xcc\x1a\xef\x8c\xde\xda\x70\xbd\x1a\xbb\x75\x61\xf9\xb6\x14\x2c\x89\x12\x98\xc3\x76\x08\x9b\x95\xb1\x73\x28\xee\x59\xe0\xea\x90\x5c\xf4\xa0\x1a\x10\xd9\xc7\xfc\xa2\xa5\x52\x09\xff\xe5\xaf\x5e\xc5\x25\xe3\x12\x8f\x8d\xdc\x54\xc6\xc5\x26\x60\xe6\xe2\xfd\xe5\xc7\x13\x7f\x91\x5b\x96\x60\xbe\x75\xf8\xfc\xf4\xe1\xfc\x3b\xe7\xf3\x87\xea\xc1\x54\xcd\x5b\xb4\xe7\xa5\x10\x38\xcf\x17\x29\x36\x9c\xac\x10\x6f\xbe\xbb\xcf\xc6\x3c\x9a\x70\x3e\x05\xdd\x78\x36\xb1\xbf\xeb\x51\x97\xdb\xe4\xdd\x5c\xf1\x1e\x99\x4a\x14\x51\xbe\x1c\x03\x08\x5c\x75\xf2\x1e\x22\x21\x18\x12\xdf\x17\xf2\xf1\x5d\x10\xd2\x84\x6b\x12\x6f\x4f\xf1\x0b\xc3\x15\x69\x06\xc1\xd4\xc4\xce\xd3\xcc\x3b\xb9\x86\xe0\x05\xe3\xf7\xf4\x89\xfe\xb2\x9a\x1c\x78\xfa\x46\x23\x61\xb4\x52\xd3\x15\x11\xe9\x63\xe6\x83\xbb\x12\x94\x00\xe4\x71\x14\x07\xef\x56\x55\x49\x98\x01\x3e\x0b\x87\x23\x4e\x4e\x7b\x9d\xc2\xc8\x3d\x5f\x2a\x9b\x8a\xe3\x0c\xd5\xdc\x65\xad\x77\x75\x9f\xea\x0c\x8b\x17\xaf\xb9\x0f\xfd\x7d\xca\x01\x38\x4b\x16\xc3\x64\xea\x55\x38\xe4\x9f\x0a\x2c\x40\x91\x1f\xfb\x70\x59\x73\x8d\x21\x1e\x8b\x2c\x95\xa3\x6b\x39\x5a\x57\x6e\xd5\x38\x82\x04\x35\x3e\xc5\xbd\xf7\x67\xa0\xc9\xa7\x4f\xf8\xe7\x80\x34\x87\x11\x05\x70\xae\x2d\xbb\x72\x0b\x7f\xea\x48\xa2\x21\xa4\x32\xd5\xb7\xc3\x75\xe4\x3d\xb9\xd1\x4f\xd0\xf4\x9e\x17\x03\xfc\xd1\x74\xf9\x34\x99\xf3\x4e\x22\x11\x1a\x6b\xb7\xbf\x4e\x1f\xfe\xeb\xe5\xfb\x77\x8f\xb5\xab\x9f\x4f\xbe\x3f\xf9\xe7\x7f\xfa\xa7\x93\xc3\xe1\x70\x42\xe2\x7b\x7e\xb2\xa7\x55\x71\xd2\xd5\x34\x35\xc8\x4f\x75\x18\x04\x6e\x77\xcf\x6c\x71\xfb\xf4\x09\xfd\x9d\x3d\x1a\x2f\x22\x09\xa9\xb6\x2f\xe3\x40\x5e\x44\xab\xff\x83\xb5\x54\xc9\x0d\x75\x8e\x69\x37\xba\xa2\x1e\xef\x1f\xa0\x05\x39\x15\x78\xa1\xe6\x4c\x71\x83\x08\x92\xb0\x25\xed\x0f\xa7\x22\x1b\x9b\xc5\xf4\xc4\xbe\x91\x32\x8d\xcf\xb3\x6b\x8f\xc4\x1e\xef\x39\xa8\x30\x9a\xa8\xe8\xa4\x93\x4f\x60\x6d\x9d\xad\xd7\x90\x6e\xf8\xe6\xdb\x8f\xa3\x7a\xf9\x1c\xb9\x2c\xf2\x1b\x17\xc8\x8b\x88\x10\x04\x20\x88\x47\xae\x22\x57\x7c\x34\x7b\x54\xc6\xa1\x3c\x38\xa2\x87\xbd\x1a\xa5\xbb\x63\x7e\x22\xbd\xdb\x8e\xbd\xdb\x3d\xf9\x08\xd7\x1b\x0c\x21\xb9\xa2\x55\xb8\x67\x17\xe4\x83\xe7\xb6\xd1\x50\xe4\xe6\xde\xda\x26\x1a\x40\x64\x44\xf0\xbd\x25\xa2\x1b\xee\x21\x6c\x2a\x13\xdb\x8f\xae\x41\xb7\x03\x3d\x67\xd6\xe3\xca\x8c\xe1\x8e\xad\xc1\x69\x51\x46\x45\xd0\xe1\xf6\xd6\xf3\x72\x8b\x56\xf9\x4a\x26\x39\xcf\x70\x8f\xd5\x36\x7a\xde\x61\x39\x50\x5a\xbd\x1e\x2a\x56\xdc\x15\x7f\xc4\x64\x06\xfd\x05\x36\x9a\x3c\x59\x6d\x17\x81\x03\xf4\xdd\xb7\x9d\x17\x4f\xc1\x02\x30\x09\x49\x68\x81\xfd\xb8\xe1\x6d\xe4\xdc\x74\xdc\x4e\xec\xdc\xd6\x83\xcf\x48\x3c\x50\x69\x49\xbc\x26\x2f\xf1\x5b\x3c\x4e\x47\x10\x1a\x94\x52\x40\x52\x0d\x4d\x39\x80\x81\x2a\x86\xc0\xbe\x02\x44\xab\x95\x4f\xfb\x22\x9c\x56\x79\x79\x23\xde\xfb\x51\x28\xb3\xe8\xea\x5d\x8c\x82\x00\x3d\x3f\x4d\x53\x73\xc6\x9f\xe6\x27\x7b\x13\x2b\x2c\xe5\x22\xae\xf4\xdf\x49\x9f\x87\xe5\x19\x46\x10\x71\xeb\x4e\x8a\x1b\x23\x10\xf0\xa6\xee\xc9\xaa\xb1\x79\x6a\xa2\x8b\x7e\x03\xd0\xf5\x1e\x01\xf5\x3d\xdf\xcf\x7c\xf5\xc7\x3d\xdf\xe3\x92\xc1\xfd\x3d\x2a\xf9\x55\xee\xef\x3d\xf4\x0c\x9d\xdb\xc3\x28\xbf\xc6\xbf\x7d\x6a\xc0\xde\x1e\xa3\x26\x96\x49\x8c\x4f\xc0\x8f\xed\x32\x69\x3c\xb0\x60\x98\x89\xad\x30\xe2\xbb\x6d\x1b\xb6\x65\xb5\x7d\xbf\xb1\xbb\x6c\x33\x77\x76\xc4\xe1\x23\x42\xec\x97\xad\x34\x69\x76\x75\x35\x5b\xd6\xe5\xa1\x81\x33\x7d\x57\xaf\x48\x41\xc8\x13\xb9\xab\x4c\xc9\x85\x42\xc0\xd4\x4c\xd4\xb0\xa4\x81\x14\x39\x98\x72\x81\x20\xcc\x9c\x25\x7e\x1c\x73\xf9\xa3\x69\x08\x5e\x37\x88\xae\x77\x46\xe9\x7e\xfb\x14\xd1\x27\xba\x7a\x36\xd3\x82\xcd\xa6\x3c\x2c\xf0\x8b\xaf\x03\xe0\x82\x69\x59\x18\x2e\x7a\xd9\x72\x88\x68\x81\xc2\x6f\x65\x0d\xea\x92\xca\xa7\xfa\x7a\x13\x2b\x0a\x78\x19\x9c\x7f\x21\x03\x38\x60\x65\x0e\x7a\x63\x0d\xc1\x45\xd2\x00\x18\x79\xbd\x3e\x48\x7b\x4a\x52\x54\x9d\x43\x1c\xf1\x84\xe7\x6f\xde\xe9\x17\x7b\xe8\xf0\x0d\xce\xe7\x7a\x47\x0f\xce\xd9\x3c\x62\x09\xd3\xc2\x5e\x40\x33\xef\x0d\xf4\x41\x7f\x84\x2c\xf1\xad\xe2\xdf\x21\x72\x39\x7f\x06\x18\xd2\xef\xae\x78\x5d\xae\x6c\xd5\x86\xe4\x0a\x0e\xec\x52\xf2\x67\x12\x71\xf2\xb2\x82\x93\xfc\x5e\x23\xc9\x3b\x28\xea\x16\x26\x83\x90\xb9\xe4\x9b\xb5\x2e\x9d\x2d\xb3\xc1\x24\xe5\x92\x13\x58\x62\x23\x1c\x07\x2c\x25\x12\x99\x47\x50\x98\x70\x7c\x16\x03\xa9\xa8\x91\x8d\x6f\xd4\x2e\x93\x96\x84\x33\x7a\x4e\x35\xac\x38\x88\xb7\xcb\x6d\x93\xb5\x06\xdc\x48\xd6\xce\x73\xd9\xe5\xb0\x64\x83\x5b\xe8\x7d\x70\x17\xc7\xc8\xdd\xba\x0c\x9e\x63\x94\xcb\x71\xa8\x48\x20\xf9\xed\xbf\xd5\x5b\x56\x4d\x08\x2d\x07\x0d\xbb\x36\x72\xe1\x58\xef\xbe\x0f\xa6\x45\x4f\xd5\x74\x6e\x0c\x7d\xc5\x4d\x3b\x59\x08\x1c\x6b\xb1\x4b\xf5\xc2\x8d\x10\x57\xbc\x49\xbd\x4d\xa0\x49\x2a\xcd\xe0\x70\xcf\x55\x70\xa8\x61\x33\xbc\x64\xd7\xbc\xab\xde\xec\x71\x7c\x53\x4c\x1d\x5f\xe7\x1c\x37\x19\xfb\xc7\x68\x79\x0d\x73\xe1\xe4\x73\x57\x02\x32\x1d\xae\xab\x9f\x27\xa9\x8f\xb8\x3e\x24\x92\xd1\x3d\x98\x25\x09\x38\x27\xc3\x69\x8b\xe0\x9d\x44\x04\x29\x8e\x96\x19\x5b\x5c\x48\x37\xaa\x82\xdc\xa6\x90\x51\x48\x2d\x5e\xde\x7a\x17\xc4\x07\xa6\x45\x14\xb0\xdc\x8a\x6e\x1a\xb5\x84\x29\x69\x36\x1e\xef\x61\x8a\x22\x22\x42\x54\xc9\x1e\xf9\xbb\xe0\x91\x7d\x42\xf6\x4b\xc8\x55\x36\x26\x6c\x47\x71\x0b\xdd\x67\x34\xda\x81\x3c\xbc\xd0\xb7\xe2\x79\x37\xd6\x24\x97\xab\xf6\x24\xd2\xfc\x1a\x85\xb1\xd1\x29\x79\xdf\x8f\xf6\x1d\x03\x0c\x7d\xef\x47\x81\xc1\xc5\xf5\x9e\xc3\x62\x3b\xe7\x7b\x0d\x48\x21\xf7\x04\xe3\x98\xdf\x71\xe8\x61\xb9\xaa\xee\xef\x1b\xc6\xd7\x70\xe2\xab\x8d\x9b\xc1\xf5\xc2\xb1\x25\x64\xe6\xbd\x3b\xa7\x5f\x36\xe0\x30\xbb\x89\x62\xb0\x2a\x17\xea\x90\x42\xf2\xbe\xfc\xba\x7f\x4f\x8e\x60\xe0\x76\xc3\x77\x58\xb3\x02\x97\xbb\x68\x47\xd9\x59\xd8\xcf\xdf\x58\x78\x8a\x42\x2d\xe5\x70\x81\xec\x67\x69\x93\x5d\xc3\x11\x76\xe0\x56\x89\x18\x0c\x6a\xb9\x69\xe6\xb9\xe5\xf0\x6d\x92\x78\x47\x68\x87\xc8\x21\x15\xb5\xa9\x7f\x19\x7e\x46\xfd\x05\x16\x27\x3c\xf6\xfb\x41\x7e\x64\xc6\x38\xed\x2e\x58\x37\x11\x9f\xa2\x00\x1c\x9e\x4c\xca\x9d\x0f\x2e\xa3\xa1\x5e\xe4\xf1\x0f\xe8\x68\xc1\x4d\x80\x0d\xae\xbe\x21\xbf\xaa\x30\x4d\x6b\x10\x99\xaf\x02\xb1\xf2\x7e\x54\x50\x78\x77\x92\xa2\xe1\xa5\x8d\x5f\x58\x8d\xaa\xea\x6c\x4f\x9b\x0d\xce\xa1\x6e\x49\x5c\xf0\x25\x71\x7b\xca\x5b\xf0\x7f\x3c\xe2\x74\x3f\x20\xd7\xdf\xe7\x74\x3f\x0c\xdb\xf4\x35\x4e\xf7\xbf\xfb\x58\xe8\x78\x84\x05\x0f\x32\x0a\xb5\xe0\x73\xc6\x31\x17\xbe\xf2\x94\x66\xc2\xaa\xa1\x47\x2e\x44\x58\xdc\x9b\x51\xec\xaa\x28\xac\xc2\x91\x32\xfe\x94\x46\xe0\xc7\x86\xc9\xf8\xb4\xe6\xb1\x57\x90\xff\x2e\xa7\x35\x7d\x2e\x70\x04\x2b\x5e\xb6\x8c\x07\xfb\xb7\x5b\xc8\x47\xa7\x20\xbd\xc7\x53\x86\xda\xe7\xf8\xce\xd8\xb0\xc3\xe3\x32\xf1\x15\x32\xb6\xac\xa9\x61\x8c\x4a\x65\xa1\xe7\xe1\xf2\x55\x1c\x06\xc7\x59\x7d\xe2\x2b\x64\xb8\x41\x76\xfc\x02\xd9\x11\x13\xfb\x97\x6e\x92\x0d\x3b\x0d\x16\x25\x52\xc7\xcf\x71\xa4\x20\x8c\xb3\xc9\xa6\xc7\xe9\xb9\xda\xd9\x00\x25\x5f\xba\x5c\x36\xa6\xa6\x69\x53\xf5\x4b\x36\x79\x0d\xac\xda\x4c\x4a\x6c\x55\x75\xf8\x49\xe4\x19\x8a\xc0\x95\x03\xb2\xdc\xeb\x13\x71\xe7\x22\x93\x0e\xac\x59\xd2\x3b\xf1\x36\x11\xde\x2f\x72\xc0\xca\xc7\x80\x19\x66\x38\x86\xb9\x83\xc9\x11\x0c\xd0\x46\x10\x72\x75\x0c\x91\x0a\x26\x92\x7b\x25\xcb\x51\xf5\xc3\x6b\x75\x2e\x5d\x4f\x13\xce\x71\xb3\xcd\xa5\xad\x20\x7c\x24\x1c\xd7\x60\x09\xf9\xbe\x08\x59\xa2\xeb\xf5\x2f\x60\xba\x3c\x92\x3c\x24\x0b\x56\xc7\x90\xac\x5b\xa5\xd8\xc8\xa0\x94\xb0\xf8\x81\x3d\x1b\x36\x12\xd1\x4f\xac\x2d\x86\x51\x81\x68\xbb\xf1\x92\x2d\x9f\x6f\xa8\x10\xde\xf1\x36\x60\x74\x9f\xfd\x61\xd4\x0e\xe2\xf7\xbe\xeb\x7a\x5b\xb1\x6e\xc6\x33\xb8\xb5\x61\xa4\x3a\x2f\x2e\xd9\xf7\xbb\x95\x8e\x4b\x2a\xc4\x26\xbd\x83\x3c\x3f\xb7\xf0\x0a\xe0\xd3\xbb\x89\xec\xf8\x59\x0c\xde\xa0\xf8\xcc\x3d\x84\x49\xbb\x1d\x46\xb1\x36\x6c\x3a\x92\x68\xfb\x46\xce\x40\xe4\x6e\xcd\xcc\xd5\xce\x52\xb4\x6b\xdd\x09\xc3\x83\x1e\xc4\x30\xff\xe3\x2e\xc0\x96\x68\xfc\x23\x48\x2e\xe8\x9c\x33\xf6\x4b\x83\x12\xb3\x5c\x3b\xf5\xdc\xc7\x80\x1e\x74\x2b\x86\xfa\x52\xb7\xb8\xd5\x7f\x14\x57\xae\xe9\xc6\x8d\x1c\x1a\x15\xc3\x23\x3a\x3e\x68\x93\xc0\x13\x76\x1d\xf5\xd1\x5d\x11\xf2\x2d\xba\xa8\xe7\xa3\x1b\x43\x02\x7f\x64\xb7\x96\x4c\x5e\x33\xcd\x48\x3a\x79\xe9\x8f\x5e\xef\xbc\xb3\xfd\x15\x2c\x24\x54\xe1\x80\x43\x68\x6d\x3d\xc6\x0f\xc0\xec\x1a\x30\x12\x6b\xa5\xa7\x4e\xb2\xe4\x80\x8e\x2a\x5e\x4a\xce\xd7\xee\xfe\x02\xed\xee\x52\x43\xda\x1c\x6c\x4b\x48\x0b\x73\x9c\x4a\x14\x49\xe5\x1e\xee\xf6\x38\xb7\x2e\x4b\x55\xa5\xd3\x51\xb5\xee\x55\x22\x2b\x82\x44\xe0\x22\x63\xc8\xfe\x44\x46\xc1\x5e\xe2\xab\xc4\x1c\xa2\xd7\x1d\x76\x79\x11\x51\x8d\xda\xf1\x74\x8c\xa6\x81\x4b\x30\x1b\xd2\xbe\xc8\x91\xff\xd4\xed\xe4\x71\xdf\x9c\xbc\xf0\x4a\xc2\xe9\x7b\xea\x0e\x12\x42\xef\xf0\x27\xe2\x19\x43\x6a\x1a\x50\xaa\x23\x04\xb0\x9c\x30\xf7\xce\xa7\xe3\x07\x1d\xac\x06\x25\xe8\x0d\x27\x67\x87\x05\x5b\x4c\xf3\x92\xaf\x6c\x56\x79\xcd\xef\x6c\x79\xc0\x45\x8e\xb1\x90\xaf\xec\x8b\x67\x31\xbf\x17\x11\xc7\xba\x63\x7a\xc7\xe1\x51\xcc\x9d\x68\xa6\x22\xa5\x0c\xb4\xda\x57\xcc\x06\xab\x20\x7a\xef\x2d\x5a\x09\x83\x6b\x82\xbd\x05\xa1\x07\x87\x72\xef\x3b\x44\x20\x09\xf5\x16\x34\x85\x6c\x19\x2e\xda\x10\xaa\x31\x7a\x4b\x6e\x14\x25\x34\xe6\x86\xde\xfa\x08\x3e\xfb\x58\x84\xbe\x4e\xb4\x64\x0e\x95\xe8\x7a\x23\xea\x3e\xcf\xc9\xaf\x47\xde\x9f\x84\xe3\x41\x13\x05\x4a\xeb\xbf\x51\xc8\xf2\x72\x1d\x85\xc3\xeb\xe1\xad\xff\x70\x42\x1c\xf2\x11\xf1\x0d\xbb\xd6\x07\x80\x6c\x34\x54\xc1\x1a\x66\x0f\xff\x7a\x06\xee\x7b\x8a\x97\xce\xe5\x0d\xa2\x61\xb2\xd2\xbb\x2d\x11\x22\x42\xb9\xf4\xae\x2c\x50\x3d\x4e\xde\xc4\xa3\x06\xc1\x9b\xec\x1e\xf7\x45\x89\x19\xe3\xfe\xf3\xe7\x56\x2f\x99\xca\x93\x7a\x7e\x88\x6c\x61\x25\xf4\x92\x24\x76\xa9\xbf\xe4\x82\x60\x80\xc0\xb5\x78\x1d\xe4\x73\x17\x2d\xaf\x0f\xd1\xa0\x5b\x3b\x36\xe4\x76\x0d\xd7\xd3\x35\x46\xfb\xaa\x5d\x9b\x6c\x72\x81\x33\x4f\x89\x81\xea\x1f\x41\x51\xca\x5f\xb2\x0d\x72\xf9\x2c\x12\x86\x1e\x47\xa9\xf1\x23\x16\xbd\x74\x17\xfa\xd1\x1d\xb6\xc4\x99\xf1\x9c\xc4\xe9\x7b\x09\x08\x19\x27\x35\x12\x12\x32\x4e\x12\x47\x80\x38\xa5\x4a\x6a\x1a\x44\x56\x25\x30\xdb\xc5\x19\xe2\x7a\xd9\x6f\x7a\x5c\x7c\x10\x75\xa6\x5f\xc5\x44\x9f\xf4\x69\x8e\x5e\x0f\xc2\x2d\xd3\x38\x99\xdf\x26\x62\xa3\x7e\xd1\xaf\x55\xe5\xfc\x41\xb5\x7a\x9d\xb5\x57\x03\x5f\x14\x88\x53\x44\x3f\x90\xe7\x88\x42\x2a\xaf\xd3\x38\x21\xa8\x83\x76\x0c\x4d\x99\xb9\x46\x43\x9d\x20\x2f\x51\xf9\x3d\x89\xb9\x17\x0a\x27\x00\xe5\x25\x15\xb1\xdd\xb8\x28\x7f\x53\x70\x75\x57\x84\x27\xef\x62\x10\x78\x55\x17\x0b\x8d\xc7\x53\x72\x60\x00\xb8\x58\x17\x86\x92\xe0\x16\x6f\xde\x23\x44\x7b\x73\x77\x11\xbf\xf5\xb1\xb5\x8e\x4b\xe0\x45\x3f\x78\xc3\x05\xe5\xbb\xb7\xf9\x85\xda\x74\x07\xc5\x5b\x2f\xad\x28\x2d\x2e\xf6\xd0\x7c\x10\x6c\x4b\x40\xe0\xda\x17\x02\x1c\x7d\x4d\x3d\xfd\xde\x29\x00\xab\xa5\xfa\xe4\x08\xcd\x8d\xc8\x3e\x5f\xd5\x53\x36\x06\xe2\x06\x31\x55\xd2\xf4\xb4\x57\x1f\x55\xac\xb7\xf5\x30\xa8\x9c\x87\xdc\x5d\x57\xbf\x9f\xd3\x75\x7c\xa1\x8b\x78\x18\x6a\xbd\x72\x4f\xe0\x24\xf5\x92\x68\x0c\xf7\x60\x70\xf7\x31\x8b\xde\x37\x3a\x56\x26\xc8\x30\xa3\xb2\x51\x7c\x1c\x7e\x8a\xc5\x85\xb9\x0e\x15\xd5\xb6\xb9\x29\x56\x0b\x7e\x88\xa8\xd9\xf0\xf1\xec\x6b\x5a\xb8\xaa\xa9\x7c\x37\xa3\xc4\x27\x72\xa3\x3a\xbb\xb5\x7c\x9c\xd9\x7c\x67\x1e\x9e\x73\xbc\xc9\x1f\x26\xe2\xa9\xf1\x8e\xc5\x21\x28\xc1\x16\x59\x5d\x51\x19\x8e\x9f\x7f\x00\xc6\x21\x8b\x7d\xf3\xe8\xee\x4e\xf4\xd1\xca\x7c\x82\x66\x3c\x34\xc5\x15\x6f\xa4\xa3\x40\xf1\xb1\x31\x45\x4e\x05\xbd\x81\x0d\x67\xfc\x44\x7c\x4f\x1e\xb2\xaa\xe9\xfc\x39\x7b\x4f\x40\xe9\x49\x5d\x23\x06\x3a\xdb\x0b\x32\x7a\x6c\x30\x71\xeb\x47\x09\x45\x9b\x9e\x18\x51\x6f\xd3\x91\xa7\xfb\xba\xaa\xcd\x10\x19\x95\xff\x68\xf4\x8b\xde\x32\xef\xc0\xf7\x89\x36\xca\xba\xec\x48\x51\xb0\x3e\x20\xe5\x2b\x97\xd2\x4c\xc1\xb3\x39\xff\x66\xd1\xf1\x15\x79\x57\x64\xcd\x0f\x50\x05\x8d\x3e\x2e\x48\x92\x78\x92\xbb\x62\x30\xb3\xae\xd8\xce\xfe\x91\x92\x93\x3c\xba\x34\xeb\x2b\x89\x0b\x6b\xb1\x72\xd9\x26\xd4\xa1\x94\xbd\x71\xe2\x86\xda\x18\xb8\x2a\x39\x36\xcb\x22\x27\x34\x75\xd5\x02\x03\x6f\x70\x3b\x97\x0f\x77\x6a\x73\xce\xc9\xfc\xaa\xca\x44\x13\xae\x67\x5a\xcc\x37\x44\x1d\xd4\xc3\xa1\x23\x05\x71\xbd\x6e\x58\x88\x3d\x36\x9a\x51\x09\x87\xc3\x8d\x4d\xaa\x01\x06\x5f\x53\xd2\x14\xf6\x18\x74\x88\x05\x00\x9f\x78\x9c\xd3\xc4\x6e\x6b\x3b\x40\x5c\x5c\x2e\x4b\x49\xfd\xe2\x06\xde\x72\x82\x63\xb5\x57\x47\x0b\xb0\x27\xc4\xfc\x75\x59\x56\x61\x6a\xdf\x4c\xce\x6e\x5c\x4c\x4f\xa2\x46\xfd\xc3\xeb\x7d\x76\x3d\xe4\x91\x5c\xb2\x5c\x5e\x13\xff\x69\xa4\x84\x7c\xf4\xa1\x96\x65\xd9\x22\x82\x67\x05\xa1\x6b\xb5\x55\xac\x3d\x77\xa9\x38\x43\x5f\x6d\xa7\x3a\x26\xe0\x43\xcc\x11\x78\xc5\xf7\xdb\xef\xc2\xdd\x0e\xc1\x6b\xa8\xbd\xba\x5b\xc1\x49\xaf\xd1\x46\xdf\x5e\x22\xe4\x8d\x4f\x9e\x44\xc7\xa8\xa8\x6f\x79\x54\x7a\xba\xe9\x55\xb2\xda\xd8\x89\xb6\x5f\x20\xfd\x4b\x8d\x8f\x0a\x87\xd6\x47\xe5\x27\x9b\x97\x60\xcc\xb0\x8e\x2f\xbb\xd5\xd6\xb6\xb8\x36\xb0\x59\xf0\x01\x7b\xa8\x4b\x63\x39\xf3\x0e\x6b\xf9\x9d\x59\x40\xb5\x7c\x4d\x70\xb2\x56\xda\x7e\x68\x7b\x49\xd8\x83\x22\xac\xe4\x17\x44\x8d\x48\x4c\x93\xe9\x52\x25\x49\x19\xf5\x42\x25\x6e\x5d\x9d\x90\x75\x7c\x0d\xa7\x72\x57\xa2\x51\x55\x41\x17\x6a\x26\xce\xfc\xe3\xfa\xa0\x1a\xc8\x4e\xb8\xba\x59\xe5\xd6\x6b\x09\x86\x7a\xa2\x69\x31\x38\x07\x81\x24\x70\xe6\xa2\x97\xec\x06\xb0\x67\x25\x03\xf0\xaa\x57\xc2\xbc\xd2\xd2\x3e\x3d\x66\x77\xae\xa0\x72\xb9\xaf\x2c\x52\x25\x58\x76\x5f\x55\xc6\x75\x4f\x8a\x9c\xab\xd3\xe7\xdd\x65\xb4\x53\xcd\xbc\x07\x26\xe6\x52\xd6\xfa\xc4\xe9\x5c\x83\x31\xca\x93\xee\x41\x0f\x0c\x41\x17\x05\x36\x7e\x05\xef\xdd\xf0\x01\x3c\x55\x7d\x15\x12\xe2\xee\x3b\x16\x72\x25\xc1\xc9\x70\xe0\xe7\xde\x7f\xd0\x67\xc6\x77\x9e\x25\x29\x7a\x95\xcf\x25\xe9\xcd\x3c\x0d\x9a\x9f\x24\xdb\xd6\xe5\xb0\xdf\xc7\x73\x7f\x3c\xae\x95\xb2\x18\x2b\xce\x40\x51\x64\x2c\x71\x07\x12\x10\x0e\x01\x35\x3f\xe7\xa0\x4f\xbd\x62\xac\x64\xe8\x73\xd9\x51\x50\x2d\x8e\x7b\x5c\x44\xa3\x3a\x12\xd0\xfc\xe2\x8b\xd1\xcc\x43\xbf\xa3\x63\x16\xf6\x7d\x0c\xa1\xe5\x19\x24\x6b\x16\x01\x75\x71\xf8\x3d\x16\x31\x46\x98\x04\x38\x23\x33\x06\x15\xb5\x33\x5c\x1e\x52\xf3\x8a\x1f\x31\xce\x41\xf9\x05\x52\x76\x93\xd4\x53\x27\x29\xba\x74\xde\x0f\x6c\x97\xdc\xe1\x6a\x87\x3b\xa4\xf7\x61\x6c\x79\xe2\x45\xac\x0b\x97\xd5\xa6\xf0\xe3\xe3\x0c\xba\x68\xef\x71\xd4\x70\x86\x1f\x9c\x3c\xc5\x83\xe8\x99\x11\x05\x7a\xf8\xce\x45\x1f\x3b\xd1\xfb\x1a\xfe\x39\x0f\x77\x0a\x71\xf4\x3d\x8f\xd8\x9c\xf3\xe5\x67\x2f\xe2\x6e\xb8\x17\x3e\x7a\xe8\xfb\xfb\xbc\xf1\x21\x6f\x14\xcc\xf8\x9a\x48\xbc\x70\xe3\x47\x0b\xc2\xd2\x65\xd8\x68\x3d\xf2\x77\xcf\x6f\x81\x53\x9c\x71\xf9\x5c\xec\xca\x6a\xe5\xe1\x75\xd8\x6f\x25\x32\xf8\x08\x49\x21\xd9\xe6\xae\xc0\x54\x64\xc7\x5e\xfb\x92\x30\x38\xe6\x92\x44\x0e\x18\x66\xa3\x57\x2c\x24\x19\x61\xbe\x9a\xf0\x92\x85\x24\x8e\x82\x5a\x89\xf1\x49\x17\x70\xaf\xc7\xf1\xea\xef\xf5\x58\x0a\xf0\xbd\x70\x0d\x77\x3f\xe4\x13\x0a\x11\x7a\x2f\x09\x51\x68\x19\x49\x90\x38\xfc\xf0\xa4\x0a\xa1\xe6\x5d\x9e\x73\x33\x79\xee\x19\x40\xaf\xab\x5c\x57\xd4\xc5\x36\xaa\x96\x01\x86\x6c\xa8\x88\x3a\x32\x78\x66\x5e\x12\xf9\x21\xf4\xd7\xfc\x06\xba\x24\xf0\x13\xf2\x17\xf2\x7a\xbc\xa4\x2c\xd9\x79\xaa\xc0\xdd\x51\x6b\xce\xde\xf9\xf6\xda\xb6\xce\x96\xa4\x45\x85\x77\x16\x06\xcf\x27\x28\x44\xd7\x8e\x8b\xa8\x57\x43\x59\x7f\x09\xb0\xe9\xa4\xea\x53\xb0\xa1\x2f\x42\xc7\x0f\xc6\x8d\xc0\x24\x28\x0c\x47\xfe\x32\xf2\xdb\xe5\xec\xc0\x09\x17\x4d\x42\x52\x98\x39\x4d\xcd\xe5\xa9\xcb\xe0\x27\xe0\xd9\x2c\xc2\x6f\xc5\xf7\x1e\xa9\x89\x71\x0f\xb8\xe1\x93\xf2\x21\x87\x51\xca\x39\x55\x8c\x57\x7d\x8f\xa1\xcd\x9b\xf0\xcc\xe6\xc7\xf3\xcb\x13\x5b\xac\xea\x9b\x8a\xed\x9d\x3a\x25\x38\x5e\xd0\xa7\xd6\x19\x19\x17\xa7\x6f\xdd\xe3\xf6\xf1\x04\x6b\x85\x20\x4c\xff\xde\x6a\xa8\x3a\x7a\x1e\xdb\xc6\x6f\x86\x7a\x3a\xcd\x2a\x5a\xe5\xf4\x8f\xaf\x2e\xec\x94\x31\xb1\x0f\x5e\x73\xd7\x29\x08\xfb\x8e\xbe\xe6\xe3\xc0\xdd\x53\x3e\xc3\x3d\x28\xa6\xf7\xa0\xd2\x1e\x69\xe6\x4e\x67\x8b\xb8\x26\x52\x68\xf9\xd6\xff\x97\xfa\x3b\x7d\x3b\x35\x2a\xd5\x07\x5c\xc8\xea\xeb\x7b\x2c\x40\x86\x3a\xf9\x42\x91\xe0\xb1\x30\x81\x12\xb9\x23\xd1\x0b\x83\x8b\x60\xc3\x9d\x5e\x5e\x95\xe7\x9a\xf5\x19\xd1\x28\x2e\xae\x58\x13\x9c\x22\xaf\x76\x72\x79\x7c\x7f\xd5\xb3\x96\x2b\x60\x52\x55\xca\x17\xdc\x43\x36\x4a\x35\x51\xfe\x1e\x94\xe2\xb3\x9d\x53\x64\x04\x80\x0b\x33\x01\x40\x9e\x7b\xd4\xec\x01\x5f\xd1\xd4\xe1\x2b\xff\xf8\x38\xe1\x27\xfa\x43\x41\xf7\x36\x70\xd9\x89\x5e\xbe\x9e\x7f\xe0\x9f\x27\xf4\xb3\x77\xa3\xcb\x17\x71\x2f\x77\x07\x73\x66\xfc\x58\x77\x0f\x8c\x1b\x56\x30\xd3\x6f\x98\x37\xaa\xba\xe4\x77\x82\x8f\xbd\x1c\x1e\xf0\x0c\x2b\xfd\x6a\x21\xb1\x0b\x7d\x19\x39\x24\xc0\x52\x0a\xb7\xeb\xc6\x65\x69\x1c\xc3\x82\xe7\xe5\xda\x3f\x68\x32\xd1\x18\xc7\x7c\x10\x3e\x7f\xc9\xbf\xf5\xde\x91\xef\x39\xe6\x46\x89\x8b\x11\xf1\x7e\xb7\xb6\x5b\x79\xd6\x27\x7e\x04\x71\x8c\x93\x74\xe9\x68\xe5\x4c\xcf\x18\x26\xa9\x85\xc0\xa2\x1d\x2b\x24\x46\x1b\x45\x48\x8c\x36\xbb\x90\xc8\xdd\x7a\x35\xd5\x7e\xd3\xe4\x32\x2d\x97\x97\xe7\x83\x29\x89\x72\x9d\x8f\xc0\xc3\x44\xae\x38\xb1\xf0\xf8\x2d\x22\x20\xad\x49\x69\xfd\xf6\x51\x5c\x86\x51\x7a\x11\x21\x50\xd3\xa6\xeb\xd0\x57\xf0\xa3\x2a\x1c\x5b\x8d\x56\x11\x7d\x4e\x22\xc6\xbf\x60\xdd\x7b\x81\x43\x77\x9b\xf8\xc9\x0d\xe5\xad\x22\x51\x0d\x49\xdd\xb1\xe5\x0f\xd1\xa3\xcd\xbd\xc7\xad\x43\xd7\x70\x31\x20\xf0\x69\x52\x6d\x69\x8b\x6b\xcb\x42\x8b\xb2\x90\x89\xc7\x83\x63\x97\x7b\xdf\x55\x89\xde\xe4\xa2\x39\xb1\xa3\xf5\x1b\x7d\x88\xc5\x85\xfb\x85\x17\x45\xeb\xa3\xd9\x67\x05\xe2\xab\xfb\x1a\xdc\x3b\xc2\x08\x12\x22\x23\x8c\xbd\x70\x3d\x98\x7b\x52\x88\x0d\x0b\xfd\x07\x7f\xc4\xa2\xd0\x7b\x80\xc8\xb1\x13\xb9\x70\x06\x87\xf8\x45\xce\x66\xf4\x53\xb5\xec\xbf\x00\x57\xcc\x07\x43\xe9\x3d\xe6\x1b\x15\x92\x57\x84\xa3\x97\x66\x26\x4a\xbb\x5b\x95\x3a\xbd\xee\x56\xd7\xe4\xfc\xfe\xb5\xb3\x1d\xd5\x8d\xd7\x7d\x37\xf3\x7f\xc3\x87\x39\xe7\x8f\x30\x89\x72\xdf\x8b\xb5\x64\xe2\x53\xf3\xe7\xee\xb2\x97\x98\xa4\xe1\xc7\x79\x1d\xcd\xdf\x36\xab\xb0\xb9\xeb\x53\x87\x73\xda\xda\xcd\xca\xd6\x82\xc5\x24\x3c\x72\xc8\x6a\x82\xfa\x74\x47\xd8\x0f\xac\xfd\x2d\x7f\x69\x9f\x7b\x5d\x56\xb8\x69\x81\xb2\x0f\xe3\x08\x90\xd6\x45\x09\xff\x21\x00\x99\xd7\x2f\xcf\xdf\x83\xfa\x86\xc0\xe3\x65\xad\x19\x63\x26\xa0\x19\x47\xd6\xbc\x9c\x0f\xe9\x38\xf8\x64\xe8\x64\x12\xf7\x02\x77\xe7\x38\x84\xc6\xdc\xa9\x30\x3e\xa6\xab\x52\x5a\x4c\x93\x0a\xcb\x4c\x00\xf5\x6b\x00\xe3\x23\x77\x0b\x90\xfb\x1c\xb7\x58\x84\xf6\x0a\x3e\x0e\x89\xd8\x87\x38\x2d\x78\xf6\x41\x9f\xd3\xdc\xc3\x41\x92\x3a\xbb\xcf\xf8\x42\x03\xc3\xba\x4f\x0f\xe7\x12\x5c\x95\x17\xfa\xad\x34\x1b\x3a\x47\x74\x9c\xa9\x38\xf8\x82\x7f\x9b\xde\xa6\xae\x2b\x13\x8b\x47\x40\xa9\xc1\xd6\x28\xe4\xd4\xaa\x5c\xaf\x3c\x42\xc4\x36\xf5\xea\x85\x8f\x65\x6e\x90\x30\x1a\x4a\x9e\x5d\x59\xb5\x7f\xf1\x58\x4c\xda\x75\x61\x20\x1b\xbc\x0f\xdd\xbb\xaa\xca\x91\xb7\x87\x03\x08\x95\x68\xdf\x50\x09\x2e\x78\x5f\xf5\x16\x53\x95\xb1\x5d\xd2\x61\xe5\x5f\x4a\xb9\x25\x36\xc6\xb3\x03\x54\xc6\x2e\x90\xfa\x31\xe2\xc6\x6b\x7d\xdd\x6c\xee\x9e\x39\x9b\x16\x3a\xb0\x8b\x6b\xc3\xb4\x7b\x4f\x36\x0b\x10\xde\xd9\x08\xc0\x49\x39\xde\x1d\x61\xb6\x22\xfd\x70\xfe\x82\xfe\x39\x69\xc5\xe2\xe1\x32\xa2\x85\xe6\x92\x20\x53\xa4\x1d\xde\xc4\xcb\x93\xa2\x60\xc7\x34\x0f\xdd\xf7\x5e\x70\xc9\x3e\xa2\xa4\xf3\x72\x70\x19\xf6\xb3\x5d\x75\xfe\xc8\xe2\x34\x29\x5a\x9a\xca\x2d\x6f\x1c\xe1\x10\x2f\xae\xa7\x94\xdb\x74\xe2\xed\x9b\xc2\xdf\x9e\x53\xe2\x1e\x4f\x5c\x16\xf0\x3d\x47\x84\x6d\x08\x46\x75\x2b\x73\x37\xd5\x0f\x27\x91\x09\x84\xf7\xe8\x70\xae\x13\xf2\x49\x54\x01\x5d\xea\x88\x93\x87\x2b\x12\x89\x29\x71\xd2\xe2\xfb\xf9\xfb\xc8\x2f\x26\x64\xaa\xbf\x69\xdc\x75\x97\x55\x56\x54\x66\x16\x83\xb2\x08\xef\x5f\xa8\xd1\x9e\xe8\xbb\x89\x47\x1f\x0c\x51\xf7\x99\x15\x76\xeb\x5f\xfb\x4f\x0c\x0c\x7c\x7f\xd4\x28\xa9\xb7\xd9\xc3\x2d\xaa\x07\x1a\x59\x54\xee\x16\x4a\x51\x76\x5a\x12\xf5\x46\x1f\xee\x0a\x25\x9e\x34\xf5\xea\xc9\x83\x38\x66\x64\xbf\x4a\x17\x50\xf2\x8f\x2e\x64\xa9\xf6\x49\x62\x63\xfe\x05\x6e\x22\xac\x9b\xd1\xd7\xa0\x2f\x4f\xc4\x68\x22\x95\x37\xff\x10\xc7\xa4\xec\x07\xd8\xfc\x8b\xfa\x74\xc0\xbf\x5e\x2a\xfa\xba\x5a\x7c\xac\x97\x11\x7e\xfc\xc3\xad\x6a\xe4\x92\xcb\xed\x40\x8d\x5c\x6d\x1f\x22\x21\xa0\x8d\xaf\xc7\xb7\xc9\x7a\xbe\xa6\x35\x74\xd0\x38\x8f\x93\xf8\x32\x01\x61\x83\xea\x04\x65\x26\xc6\x99\x46\x23\xfc\xc3\xc2\x45\x15\xf7\x01\xc9\x39\xfe\x0c\xde\x94\x61\x29\x80\xdf\xbe\x81\xb2\xf7\x07\xb3\x72\x71\xc7\x89\x20\xda\xb2\xc4\x8b\xff\xc9\xba\xa4\x7e\xa9\x2f\x26\x87\xf9\x87\x67\xb2\x84\x7a\x2f\x3a\x10\xdf\x61\x8e\xbf\xdf\x37\xf3\xef\x0d\x4b\xe7\x78\x7a\x8d\xaa\xf8\x7e\x47\x09\xbb\xac\xe8\xba\x56\xbe\x37\xf4\x0d\x36\xc9\x1f\x29\x7d\xa4\xc9\x5a\x3e\x0e\xf4\x41\xf2\xe0\x56\xcb\x11\xdb\xf9\x1e\xcf\x25\x17\x12\x68\xf0\xfb\x1b\xfa\xbc\xc6\x70\x1f\xf0\x3d\x13\x34\xc1\xb1\x2e\xb5\x35\xff\xe6\x3c\xad\x56\x4e\x97\x9f\x92\xbc\x29\xbb\x9a\x13\x5d\xcb\x78\x98\x0a\xdf\x29\xfb\xd2\x21\x05\x2d\x73\xd2\x01\x5e\x15\x52\x19\x49\x39\x1b\xa9\x2b\x49\x7c\x13\x08\xbc\xc7\x89\xd7\xec\x35\x8b\xa4\x3a\x39\x2c\x5c\x8f\x5c\x77\x24\xd5\xf5\x47\x3b\xc3\x28\x4d\xeb\xb2\x42\x68\xb2\x5f\xc3\x43\x1d\x2e\x2e\xfb\x19\xae\xe8\x41\xe9\xc2\xbb\xd8\x35\xbc\x63\x0d\xbf\x82\x80\x8b\xc5\xf2\xde\xe4\x2c\x3c\x6c\x9d\x15\x55\xa7\xea\x16\x2e\x93\xaf\x12\x5c\x25\x17\x28\xad\xa3\xbc\x92\xeb\xca\x1c\x72\x59\x63\xcf\xd3\x84\x2e\x96\xd8\x86\x32\x0e\x81\x76\x6b\x1f\xfe\xc7\x7f\x30\x34\xfd\xfc\xcf\xff\x34\x6f\x9f\x3f\x32\xf6\xf3\x8a\x4d\xb9\xfc\xf0\x7e\xb7\x73\x50\xf4\xf9\x2f\x3d\x40\xbe\x10\xc8\xae\x7f\x6c\xf5\xfe\x20\x37\xa7\xf1\xfb\xfe\xbd\xff\x17\x00\x00\xff\xff\xd1\x28\x1b\xdf\x4f\x9a\x00\x00") func confLocaleLocale_nlNlIniBytes() ([]byte, error) { return bindataRead( @@ -907,12 +907,12 @@ func confLocaleLocale_nlNlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 35388, mode: os.FileMode(493), modTime: time.Unix(1438485627, 0)} + info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 39503, mode: os.FileMode(493), modTime: time.Unix(1439758816, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_plPlIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xcb\x8e\x1c\x37\xd6\xe6\x5e\x80\xde\x81\xd6\x40\x68\x1b\x28\xa7\x60\x37\x66\x30\x30\x94\xf2\x94\x25\xb7\xad\xb6\x2e\x35\x2e\x09\xc2\x6f\xc3\xc8\x66\x46\xb0\xb2\xa2\x32\x32\x18\x1d\x17\xa5\x23\x76\x63\xd8\xf8\x9f\x41\xe3\x4d\xbf\x83\x57\xd3\xe3\x55\x5b\xf5\x5e\x73\xbe\x73\x48\x06\x23\x32\xb2\x6c\xf7\x34\xfe\x7f\x93\x17\xde\x79\x78\x78\xee\x24\x75\x59\xae\x52\x53\x27\xcb\x4f\x4c\xbf\xb6\xb9\xa9\x0b\xad\xda\xfa\xfa\xbb\x76\xa3\xd5\x67\x59\xa3\x0a\x5d\x66\xb5\xa6\xc4\xbd\xfa\xcc\xaa\xb4\xcf\xf4\xf5\x77\xfa\xea\xed\x0f\x89\x56\x48\xa4\x3f\x75\xd1\xed\x54\x6d\xaa\xbd\xa9\x7a\x73\xfb\xd6\xed\x5b\x97\x76\x67\x96\xe7\x4d\x65\xa9\xc0\xe6\xfa\xbb\x5f\x7e\xda\x17\xfa\xf6\xad\x54\xd7\x97\x6b\xab\xab\x74\x79\xd6\xe6\x65\xd6\xdc\xbe\x65\xbe\x2d\x73\x5b\x99\xe5\xf3\x74\x5b\x75\x7b\x7d\x45\x35\x4d\x5e\x2e\xcf\xec\xce\x26\xb7\x6f\xd5\xd9\xa6\x58\x65\xc5\xf2\x2b\x9d\xdb\x4d\x7b\xa5\xea\xec\xed\x1b\x4a\xb5\x49\xa6\xf3\x95\xcf\xfc\xd2\x5c\x99\xba\xa9\x74\x72\xa5\x55\x59\xf5\x9d\x2a\x51\xb9\xa3\xc2\x26\xc9\x54\x5d\xda\xeb\xef\x4c\xd2\x17\xf6\xfa\xc7\x24\xb3\xfb\x2e\xb9\xfc\x48\x7d\xa8\xb6\x95\xdd\xaa\xfb\xf5\x4e\xe7\xf9\x83\xad\xbd\xd2\x34\xec\x22\x33\x6a\x6b\x8b\x46\xdf\xbf\x27\xe9\xae\x7f\xdb\x36\xcb\x57\x1d\x0f\xc0\xa5\xb4\x25\x8d\xa8\x92\x6e\xc3\xa8\x2a\xb3\xc9\xea\xc6\x54\x33\x59\x7b\xb3\xae\xb3\xc6\xc3\xe3\xf6\xad\xd7\xa6\xaa\x33\x5b\x2c\x5f\xd1\xf7\x15\xfd\x2f\xf5\x66\xc8\x6c\xcc\xae\xcc\x35\x4a\xf7\x7a\x9d\xdb\xe2\xf6\xad\x5c\x17\x9b\x16\x45\xfe\xfc\xf6\x4d\xdf\x6d\x01\xde\x96\x60\x5d\x68\x02\xf1\x33\xdd\xef\xb5\x7a\x79\xfd\x73\xd7\x6c\xed\xbe\xc8\xb6\xd4\x82\xd9\xe9\x2c\x5f\x7e\xfa\x3e\xbe\xd0\x78\x5d\xef\x2d\x81\xfc\x73\x4d\x4b\x6a\x31\xd0\x55\xd3\x95\x66\xf9\x8a\x16\xb5\x27\x60\x15\xa8\x47\x8b\x96\xe8\xb2\x49\x2e\xf5\xf2\xa1\x7c\xa3\x9b\xca\x94\x96\x46\x6e\xab\x8e\xa0\x5c\xda\xbe\xa3\x9f\x59\xbb\xbb\x7d\xcb\x56\x1b\x5d\x64\xbd\x6e\x30\x8d\xe7\xee\x4f\x82\xb9\xec\xb2\xaa\xb2\xd5\xf2\x29\x7f\xdd\xbe\x55\x98\xfd\x0a\xad\x2c\x9f\xd9\xbd\x51\xd5\xa8\x11\xe4\xed\xb2\x4d\x85\xc9\x52\xb6\x56\xfc\x87\x5b\x41\xd6\x85\xad\xb6\xcb\x3f\xd1\x07\xc1\xf1\xb0\x22\x8d\x40\x2a\xd9\x51\xef\x84\xa5\x1b\xc3\x99\xb4\x0c\xfd\xdb\x1f\xd2\x5e\x5f\xc5\x45\x76\xd9\xed\x5b\x3a\xdd\x65\xc5\xaa\xd4\x85\xc9\x97\x67\xf8\x54\x9c\x42\xd5\x75\x92\xd8\xb6\x68\x56\xb5\x69\x9a\xac\xd8\xd4\xcb\x97\x75\xa3\xf7\x19\xa1\x86\x16\xd4\x20\x04\x38\xcc\x02\xa4\x68\x48\xf5\xea\xc2\x98\x74\xf9\x05\x0d\xe1\xfa\x3b\xa5\xb7\x4d\xab\x73\xc1\x3a\x5a\x84\x36\xcf\x09\x0e\x7f\x6d\x09\x2f\xea\xe5\xf3\xa4\x37\x34\x2b\xda\x40\x46\xf5\xbb\x4c\x17\xdd\xed\x5b\x59\x5d\x53\xe6\xf2\xac\xb2\xeb\xdc\xec\x3a\xb4\x99\xe8\x22\xa1\x21\x9e\x16\x6d\x0e\xd4\xbb\x7d\xeb\xeb\xda\xe8\x2a\xb9\xfc\x06\xa3\xc0\x0f\x42\xcb\xba\x6f\xb7\xd9\x9e\x66\x67\x16\x8b\xc5\x0d\x0b\x06\x84\x59\x46\x68\xe2\x3a\x5c\x7e\x45\x9b\xd3\xd6\x8c\xfc\xd4\xa1\x4d\xcd\xf2\x0b\x9b\x72\x5f\x59\x41\x13\xcc\x73\xea\xcc\xfd\x5a\x3e\xe6\x6f\x01\x74\x93\x35\x39\x95\xa5\x5d\x94\xa9\xcc\xa5\x77\x57\x85\x51\x69\x4e\xbb\x30\x23\x4a\x40\x8d\x6e\xac\x6a\xab\x36\x21\x5a\xe0\xe0\x04\x08\xd0\x46\x58\xa5\x6b\xa1\x37\x9f\xd9\x4d\xad\xf6\xdd\x4e\x13\xa1\x79\xda\x9d\xff\xcf\x27\x27\xea\xcc\xd6\xcd\xa6\x32\xf4\x5b\xe5\xed\x5a\xd1\x37\x55\xf8\x23\x4d\x8d\xea\x48\xa7\xd1\x9a\xac\x35\x6d\xf7\x94\xe0\x97\x5c\x4a\x01\xe0\xf5\x8b\xae\x1c\x67\x5c\x52\x93\xcb\xcf\xe9\x63\x0e\x0c\x07\xdb\x83\x9a\x89\x76\xd6\xb4\x07\x50\x27\x6a\x82\x96\xa9\xee\xdf\xbe\x51\x2d\x35\xf5\xf6\xdf\x69\x9b\xe7\xd8\x7a\xea\xf1\xb3\x67\xcf\x1f\x7d\xa2\x7a\x42\x96\xd4\xf2\xaa\xec\x54\xdb\x5c\xfc\xf7\xd5\xc6\x14\xa6\x22\x9a\x45\x04\x09\x00\xe2\xb9\xd2\x9c\xea\x3a\x5f\xed\x00\xf4\x17\x55\x47\x73\x3d\x7f\x82\xf1\x34\x97\xcb\xeb\xff\x9d\x64\xe6\xfa\x67\x6c\xe6\xfa\xaf\x39\x20\xe6\xfa\x0d\x19\x2a\xb5\x32\xb6\x01\x40\xa6\xaa\x56\x44\x3b\x9a\x6e\xe5\xea\x8c\x9b\x0a\x35\x64\x36\xbe\xa2\x02\xd9\xdb\xd9\xeb\x9f\x8d\x5a\x63\x2a\x65\x4b\xe0\x5d\x00\x03\xfc\x98\x0f\xa0\x6e\x37\xbf\xfc\x94\xd3\x52\x63\xf5\x68\xcf\x10\xf3\x88\x00\xa6\xcb\x9c\x20\x91\x5c\x65\x43\x8e\x1f\xfc\x4b\x42\x83\xeb\x1f\xa9\x8f\xa6\x6d\x68\x57\x52\x6b\xf9\xf6\xed\x0f\x2a\x03\x83\xa0\x7d\x52\xd0\xef\x82\xda\x20\xb0\xd2\x8a\x5c\x99\x78\xdf\x66\xef\x08\x6e\xcb\x9c\xbe\xd0\x0d\x18\x42\x44\x15\x88\xbf\x44\x05\x7c\x87\xaf\x54\x43\x6c\x69\x2b\xa5\x5b\xd5\x13\x0a\x68\xf4\xd2\x0b\x3f\x33\x8a\x90\xb4\xab\x9b\x6d\x16\x53\x26\x66\x79\xd8\x4a\x2d\x11\x7a\xa0\x8b\xcc\xab\x8d\x48\x6c\x8c\xd5\x44\xd6\x36\x76\x28\x1d\xe6\x3a\x14\x57\xbb\xb6\xce\x88\xb6\x19\x9a\x79\x4a\x43\x78\xfb\xa6\xc4\x5a\x84\x61\x8d\x66\x41\xd0\xe0\xc6\x35\xc8\x02\xc6\x42\x30\x06\xf2\x5b\x22\xe6\xc5\xf2\x11\x71\x55\xe6\xa3\xfc\xd7\xf7\xf5\xc2\xaa\x7d\x79\xfd\x5d\x87\x95\x24\x76\xfb\xf2\xcb\x27\x86\x3b\xc8\x41\xda\xb9\x95\xd2\x12\x63\x34\x3d\x61\xd8\xe7\xd4\xd8\x65\xd3\x94\xab\xd2\x56\x0d\xb1\xd9\xaa\x51\x9f\xbf\x78\x71\x16\x25\xfa\x56\x9f\xb5\x3b\x53\x29\xa4\xb4\x68\x75\xdb\xfc\xf2\x53\x45\xd0\xf4\xeb\xab\x15\x78\x9c\x9f\x50\x01\x94\xc1\x7a\xb7\x15\x11\xac\xb4\x32\x35\x86\x31\x45\x06\xca\x3c\x32\x66\x8d\x2a\x5d\x3c\x64\x8c\xea\x1e\x3e\xce\x09\x24\x7b\x42\x16\x4d\x93\x66\x6a\xaa\x09\x79\x0d\x33\x37\x46\x53\x5b\x82\x09\xcd\xe2\x69\x99\x5c\x21\xa7\x30\x8e\x27\x1e\x16\x11\x91\x45\xbb\xf6\x68\xb7\xed\x08\x0a\x4c\x2f\xce\x39\x47\x9d\x3f\x05\x70\x38\xf9\xa2\xb2\x3b\x92\x53\xa2\x7f\x7e\x32\x32\xe1\x3d\x01\x2b\x6f\xd5\x9d\xe7\xe9\x9d\x13\xd5\x6f\x6c\x8a\xb9\xf5\xea\xcb\x3f\x3d\x54\xff\xf5\x8f\x1f\x7e\xb8\x50\x4f\x87\x5d\xd6\x58\x2a\x4c\xd2\x0a\xf5\xd4\xca\xe4\x15\x8f\xf0\x44\xad\x89\x67\x5d\xff\xfd\x1f\x7f\xd3\xae\x4d\xe2\x82\x3b\x4d\x5b\x58\xdd\x61\x3c\xbc\xa3\xee\x73\xc1\xff\x61\xbe\xd5\x24\x27\x98\x45\x62\x77\x0f\x16\x60\x7c\x59\x4e\xd8\xe7\x10\x36\xd5\x7b\x92\xcd\x22\x98\x29\x2f\x0d\xb8\x72\x13\xaa\x47\x4b\x80\x2a\xdd\x20\xc5\xac\x12\x5b\x5c\x64\xd5\x6e\xf9\xea\xfa\x3b\xe2\x53\x90\x13\x1a\x82\x59\x95\xf6\x0c\xb7\x2a\xc8\x5c\x99\xb4\xb9\x2a\x6c\x93\x5d\x74\x51\x71\xe9\x5d\xc0\x1c\xc0\x6b\x2a\x92\x7d\x56\xf8\xca\x12\x73\x7c\x39\xc0\x53\x98\x48\x89\x14\x4a\x8b\x7c\x71\x91\x67\x85\x11\x62\xe9\xfb\x68\x40\x34\x5d\xce\xb8\x08\x21\x72\x49\x42\xda\xab\xce\x95\x7c\xf8\xe8\xd9\x09\xcd\x71\x6f\x1a\x82\x28\xaa\x11\x3c\x09\xf8\x69\xbb\x05\xd3\xea\x76\x27\x11\x25\x00\xca\x66\x44\x22\x6a\xbb\xc6\x7e\x5c\xbf\x7d\x93\x12\xc9\x28\x2d\x01\x08\x24\x23\xb7\x5b\xc2\x28\x62\xb7\xb4\x0b\x89\x88\x10\xb3\x5e\x09\xcc\x2a\x11\x86\x42\x9f\xb5\xa6\x91\xf4\x44\xe3\x40\x71\x06\x78\x41\x1e\x9c\xab\x38\x1d\xf2\xd1\xea\x23\x4a\x74\x42\x14\x2e\xdf\x5a\x11\x60\xa4\x2d\x5b\xf1\x98\x7b\x90\xf5\x5f\x7e\x22\xd2\xaa\x1a\x5a\xe9\x1e\x58\xc7\x22\xcc\xc2\xb1\x61\x12\x03\x9d\x04\xbd\x7a\x9d\x99\x7d\x80\x2a\xb1\x63\xaa\x46\x00\x20\xe2\xe4\xf6\x62\x0a\x54\x25\x76\x9e\x13\x6e\x72\x42\x0d\x59\x75\xbe\x1d\x37\x8f\x17\x3c\xac\xa1\x91\x68\xd4\x24\x9a\x3b\xa0\xee\xec\x26\xcf\xa2\xa6\xc1\x49\xd1\x72\x77\xa2\x36\x8c\xb6\xb4\x7f\xec\x5a\x27\x24\xc7\xb9\x79\x72\x36\xc1\x20\x8c\x6d\xe1\xc5\x39\x27\x97\x89\x5c\xf1\x0c\x93\x27\xaa\x4b\xf2\xed\x78\xf2\x63\x40\x69\x45\x98\xae\xfb\x93\x18\xa4\xb4\x63\x1f\x3f\x52\x4b\xf5\x81\x22\x84\x60\xae\x29\x14\x7b\x52\x51\xb7\x0d\xd1\xe0\xa6\x23\xc5\x82\x71\x41\x06\x71\x80\xd0\x73\x9d\xfa\xc2\x47\xe5\x77\x2f\x9f\x4e\x04\x13\xb7\x23\x87\x8c\x33\xb7\x25\xaf\xff\xae\x2e\x5d\x19\xa9\x3a\x56\x00\x9c\xf8\xb6\xda\x10\x2b\x21\xa9\x58\xfe\x92\x4c\x2d\xec\xbb\x21\xc4\x5a\x6d\xb2\x66\x75\x01\xca\x90\x32\xe8\xda\x54\x83\x28\x40\x79\xe1\xd5\x41\x19\x02\x37\xa4\x03\xd2\x0e\x13\x9e\xd9\x1d\xaa\x73\xe7\x23\x75\xf7\xb5\x17\x51\xfe\x08\x12\xb0\xd2\xaf\xa9\x19\x20\xf7\xf2\x05\x78\x38\x61\x13\x30\xc6\xb0\x94\x61\xd7\xbc\x9b\x5b\x4a\x76\xc2\xc7\x09\x93\x40\x08\x52\xa5\x5d\x57\xe8\xc0\x5e\x64\xc4\x5b\x20\x5d\xf8\x9a\xbd\xba\x5b\x9f\x28\xad\x9e\x3d\xfe\x54\xed\xa1\x30\x51\xe9\x9e\xf0\x63\xdd\x66\x79\xba\xc0\xf4\x5e\xeb\x3c\x4b\x21\x53\x3a\x1c\x38\x22\x21\xf2\x18\x6a\xde\xcb\x65\xa5\xf7\x85\x91\xd1\xfb\xfa\x83\x78\x31\x88\x4c\x63\xd6\x8c\xfa\xcc\xf4\x5c\x03\x5a\x1a\x08\xac\x1f\xf3\x27\x9c\x20\xb9\x3c\xe6\xfe\x81\x07\x0e\xf5\x9d\x6e\x40\xdc\x34\x42\x3c\x92\x15\xa9\xbd\x5a\xbd\xff\x80\x3e\x09\xa8\xfa\xb5\x11\x22\xbc\x39\xb6\x34\x22\xc6\x08\x6a\x53\xb1\x96\xc9\xf1\x78\x52\xa3\xbd\x81\x06\x30\xf0\x2c\xa5\x26\x48\x1b\x6b\x67\xf1\x54\xfb\x16\x04\x6b\xea\x36\x49\x4c\x5d\x2f\x1f\xf6\x2c\xbb\xbd\xa3\x1e\x66\x86\x68\xe5\xae\xe3\x31\x9c\x28\xb0\xb4\x3d\x08\x6a\x45\x03\xa3\x22\x8c\x56\xc4\xc6\xf4\x5e\x06\x99\xd2\xc2\xf6\x86\x39\xf5\xd7\x30\x0a\x90\x3e\xd1\x8a\x50\x68\xf3\x74\x5e\xba\x82\xdc\x6f\x26\xda\xab\x2f\xee\x37\x43\xbd\xcf\x08\xd0\xab\x60\x50\x00\xa8\x1a\xf3\x2d\x89\x34\xd4\x9b\xa3\x64\x98\x94\xd9\x12\xbc\x85\xa8\x78\x3b\x84\x21\x5d\x6a\xd7\xf1\x7a\xd7\xcb\xa7\x40\xd2\x48\xf8\xc3\x36\xcb\x09\x81\x2d\xa8\xf2\x6b\xe3\x4a\xbd\xaa\x4b\x11\x79\x47\x25\xa9\x11\x92\x50\x5d\x1b\x83\xac\x6a\x38\x47\xf4\x60\x97\x29\x7f\x58\xa9\xfb\xda\x59\x3c\xbe\x71\xca\x5a\xa4\xa7\xb1\x22\xf9\x35\x51\x16\x68\x78\x49\x65\x48\x2f\x5e\x41\xd5\x75\x5a\x29\xed\x5d\x4c\xe0\xfa\x67\x55\x60\xf5\x30\x3b\x1b\x31\xec\x4b\x53\x82\xb3\xef\xea\xcd\xf2\xa9\x26\xc2\x77\x45\x30\x95\x42\x1f\xab\xd8\x7e\x22\x34\xef\x9d\x60\x46\xf9\x4d\x0d\x9c\x11\x3b\x7f\xfb\x03\xfd\xa7\xc9\xf8\xfa\x63\x2e\x06\xa1\x82\x44\xa2\x52\x56\x80\xd0\xac\xee\x35\x21\x49\x15\x19\x67\x58\xfe\xbe\xfe\x8e\x04\x13\xc7\xe4\x48\x38\x5b\x28\xa8\x52\x19\x95\xb4\x82\x84\xdb\x86\x76\xf7\x88\x60\x1a\xb1\x2c\x65\x75\x7b\xc0\x73\x31\x5c\x90\xba\xb8\xcb\x93\xe3\xa2\x8a\x1f\x41\x17\x8d\xc0\x28\x11\x8d\xc7\x34\x9a\x99\xe4\xce\xec\xd6\xe8\x81\xb4\x64\x5d\x92\x40\xfe\xf6\x0d\xd4\x96\x1d\xab\xca\x24\x96\x6d\x68\xbb\x07\x5a\x4c\x25\x2c\xe5\x60\x0f\xec\x84\x1a\x6b\x29\x64\xe6\x0b\xd1\x46\x91\x52\x1f\x07\x9b\x12\xd1\x8f\x3d\x68\x3a\x0d\x67\x4d\x34\xb2\x16\x04\xd6\x58\xbd\xb1\x41\x49\x56\x60\x11\x38\x82\xc8\x0f\x2c\x85\xd5\xa6\x68\xfc\x3a\xb0\x75\x24\xc8\x80\x44\x26\x64\x4f\xa9\xb1\x2c\x47\xc3\x8d\xd6\x05\x23\x2a\x98\xe1\xdf\x5f\x3f\xb8\x5b\xdf\xbf\xb7\x7e\x30\xd0\xe8\x1a\xc4\x83\x04\x0b\xb0\x69\x22\xee\x44\x49\xeb\x2d\xf1\xd6\x62\x4b\x79\x36\x5d\x67\xb6\x62\x4e\xbd\x57\x09\xe1\xca\x06\x5a\xc3\xd5\x3a\xcf\xae\x7f\x26\x72\x41\xd4\x77\x03\x71\xa6\x50\x77\x53\xa5\xd7\x44\x92\xed\xd6\x5e\x7f\x9f\x30\x67\xa6\xf6\x89\xc4\xc4\x0b\xb5\x08\xa6\x3f\xc7\xcb\x46\x08\x4c\x03\xac\xf7\xbf\xfc\x74\xe5\x05\x67\x47\x2a\x74\xc2\x3b\xb6\xb3\x6d\x15\xb6\xcc\xe9\xb6\xe9\xf6\xa8\xc7\xcc\x28\x6c\x19\x06\x53\x9e\xed\xb2\x01\x58\x44\xd5\x1a\xd3\x10\xf6\xf4\xeb\xae\x51\x34\x91\x37\xc4\xf3\x00\x91\x0e\xe6\xcd\xde\x03\x4f\xa3\x41\x36\x75\x74\x82\xba\x3d\x4f\x1e\x06\x1d\x50\xe2\x3f\xd2\x56\x2f\xda\xa6\x83\x96\xa5\xeb\x55\x5b\xb8\x25\x32\xa9\x20\xea\xab\x8c\x50\xe8\x84\x39\xda\x0e\xad\x12\xfc\xc3\x62\x80\x44\xc5\x33\x52\xef\x86\x35\x78\x6f\xa1\xfe\x4c\x28\x93\x0b\x0f\x01\x8a\x74\x3b\x87\x45\xb1\x90\x7f\x6c\x81\x41\x50\xcb\x18\xb1\x64\xa1\x69\xbc\x84\x72\x6f\x7f\x38\x21\xbd\x2b\xdb\x16\xd9\x15\x20\x5b\xda\x42\x96\x8c\x6d\xa9\x49\x56\x6f\x17\x0e\x62\x6e\x0a\x5f\xb8\xb2\xac\xc4\x9f\xf0\x62\x86\xe6\x0e\x81\xe4\x35\x2f\x96\x0d\x6a\x26\x39\x0d\xc9\x06\xa6\x18\x4f\x35\xb0\xc6\x5a\x8c\xb1\x80\x45\x4f\xbc\x45\xa7\xe0\x92\x4c\xc8\x77\x40\x0a\x8c\x02\x83\x69\x8e\x8e\xe5\x5d\x6f\xd0\x7c\xef\x60\x58\x3d\x5b\xaa\x2a\x12\xfa\x61\x07\x54\xdc\x8e\x93\x70\xfd\x8e\x95\xb6\xc3\x86\xfd\x32\x14\x31\xa1\x88\x67\xad\x6c\x2c\x1b\xd0\xa6\x61\x8c\xdc\xda\x74\x00\x3e\x9b\xc8\x01\x9d\x0d\xaa\xf2\x2a\xf0\x1c\x8b\x98\x0d\x77\x8b\x69\xaf\x5e\xab\x9c\x99\x5c\xef\xc7\x4c\x93\xf2\x22\x5f\xa8\xd6\x58\xbb\xaa\x2f\xa1\xd6\x3f\x82\x98\x25\x7b\x5e\x46\x3d\x35\xf2\x80\x86\x5d\x11\xb5\x54\x58\x6b\xf5\xdf\x54\x5f\xe8\x2d\xb1\x46\xe1\xd2\xa4\x77\x68\x98\xfd\x3a\x53\x2f\xff\xcd\x90\x28\x52\xc0\x7a\x4b\x4c\xcd\xa6\xd0\xf0\x9e\xf2\x17\x97\x84\x6e\x4a\x05\x5f\x12\x79\x7e\x76\x4c\x98\x05\x7b\x8b\x32\xc7\x86\xdc\x4f\x79\x15\x4f\x47\xdb\xf8\x6c\x2a\xf7\x7e\x69\x66\xcc\xd5\x61\xfa\xe7\xe7\x9f\xbf\x60\xa9\x5b\xda\xdf\xe6\x6d\x42\xf3\xa2\xd4\xdb\xb7\x3e\x6f\x9a\xb2\x7e\x59\xe5\x4b\x31\x23\xbc\xfc\xf2\x09\x5a\xef\x72\xab\x53\xa4\xc2\x40\x91\x62\x8b\xef\x2d\xa8\x1e\xd8\xef\x0b\xa3\x77\xd1\x60\x7b\xc3\xde\x83\xf6\xf6\xad\x53\x62\xca\x51\x06\xa4\xff\xaa\xeb\x45\xfd\x3d\x05\xe7\xf8\x34\x12\xb9\x0f\xe4\xfd\x41\x53\x32\x6c\x1c\xff\xcb\x9c\xd1\xcd\x2c\xfe\x42\x34\x2c\x2f\x2f\x35\x4b\x35\xa1\x28\x5b\x8f\x98\xee\xd5\x5b\x1a\x27\x6b\x49\x04\x87\x01\x81\x88\xb6\xba\xf5\x53\x3a\xbf\xd0\x05\xec\x36\xd0\x4b\x28\x83\xa8\x4c\x47\x64\x83\x56\x02\xb9\x34\x16\x00\x30\xdd\x56\xa0\x25\xe6\xfa\xfb\x49\x8f\x29\xed\xd1\x7f\x79\xaf\x27\xa3\x1e\x65\x0c\xdb\xca\x96\x66\x8b\xde\xeb\xac\x37\x71\x9f\x8d\x5a\x93\x8c\x4e\x89\x44\x22\x91\xcf\xd2\xeb\xa4\x0c\x94\x73\x6c\x30\x0c\x29\x81\xe9\xe2\x8a\xb8\xf9\xcf\xe6\x0a\xc2\xb3\x47\x64\x54\xd5\xdf\xfe\xb3\x55\x85\x64\xc5\x6b\x15\x8b\xfd\x30\x82\x01\x63\x89\xb0\x3a\x33\x14\x55\x81\x69\xeb\x37\x54\x20\x9c\xe3\xd2\xc5\x16\x68\xec\x6a\x10\x11\xa1\xce\x89\xe2\xad\x21\x94\xa4\x1f\x05\x57\x0c\xf1\xbf\xc4\x56\x95\x49\x1a\x58\xe5\x95\x4b\xe5\xf6\xfb\x8d\x26\x02\xc3\x2b\xb4\x88\x68\xc0\xa0\x82\x38\xc3\x4e\x36\xe6\x05\x51\x5d\xe6\xdf\x52\x7d\xf0\x27\xad\xd6\xc6\x90\x1a\xab\xb7\xa6\x98\x93\xcc\x79\x56\x2c\x17\xa2\xfe\x1b\x67\x4c\x20\xbd\x69\xbe\x6e\xbc\xd9\x67\xeb\x92\x7c\x74\xa4\x6a\x64\xfa\x9d\xad\xd9\xd0\x4e\x3d\x52\xd5\xef\xda\xd9\x7a\xb2\xb4\x5c\x87\xe6\x9c\x8e\x68\xcf\xa8\x82\x93\x46\x40\xfc\x3b\xb6\xd4\x5f\xae\xb6\xa6\x8b\x6a\x8e\xe8\x4d\xd9\x92\xa4\x43\xd8\x0f\x97\xc7\xd0\x0a\x60\x47\xf5\xd1\x6f\x96\xe7\x66\x03\x23\xa5\x1f\xf7\x74\xb0\x0e\x31\xb1\x40\xa9\xed\xf7\x36\x87\x68\x0a\x9c\x84\x30\x14\x96\x27\x2c\xf4\x80\x19\x47\x14\xa8\x4b\x67\xd8\x0b\xb8\x38\x28\x7e\x00\x03\x31\x54\xaa\x8e\x76\x22\xed\x97\xc7\xf5\xb2\x34\x7b\xb0\x9d\x48\xbd\x2b\x01\x06\x08\x28\x9a\x0d\xf4\x73\x0b\xeb\x55\xe2\xb9\xb6\x69\x54\xd0\x8e\xe7\x1b\x97\x06\xe1\x43\x86\x08\x43\x8a\x77\xfe\x7b\x9b\x1f\xec\x21\xde\x29\x73\xc3\x0c\xac\x07\x4c\xdc\xac\x71\x20\xe6\xed\x63\xbe\x25\xca\x4d\x72\x38\x8c\x06\x23\xc3\x10\x40\x49\x59\x60\x9d\xa8\x90\xeb\xba\x81\xfe\x27\xd3\x5b\xbe\xac\xdb\xfd\xb4\x06\xf7\x01\xe1\x9a\x2a\xed\x48\xa6\xa4\x7e\x0b\xe8\xf9\xca\x6c\xb3\xb2\x1b\x4d\x3a\x5b\xa8\xa7\xa0\x4f\xcc\x0e\x60\xfc\x1c\xe5\xf2\x1e\xf5\xf3\x75\xa8\x18\xc9\x1e\x7e\x91\x89\xc8\x42\x2f\x6f\xc4\x6e\xb2\x27\x82\x7c\x91\x6d\x45\x5a\x68\x20\x00\x6f\x6c\xc4\x1f\x3f\x62\x33\x03\xe9\xe2\x50\xa7\x5e\x9b\x8a\x98\x7a\x68\x9a\xfd\x72\x03\x8f\xfa\xb5\xa6\x48\x38\xc9\xa9\x94\x16\x4e\x01\x15\x0c\xb5\x46\x24\x70\xaa\x45\x5c\xff\x1d\x36\xf0\xc1\xc8\x29\x46\x34\xe2\xb2\xde\xd8\xf1\x12\xdb\x81\x90\x00\x79\xc1\x82\x04\xab\xb2\x4d\xbd\x01\x44\x0c\x15\xb4\x37\x1b\xda\x5d\x58\x06\xf1\x34\xbf\x18\x64\x7d\xe7\xa3\xa0\xd1\x5d\x8d\xe0\x49\x4b\x10\xe3\xd8\x89\x37\x16\x5e\xc1\x28\xd2\x16\x6f\x7f\xa0\x69\xb2\xd0\x5c\x41\xae\xef\x69\xd6\x0b\xdf\x0d\xc4\x7a\xb8\x97\xe3\x5e\xa4\x03\x78\x5e\x69\xfa\x7e\x9d\x69\xdd\xf7\x24\x5d\xc4\x94\x6c\xe8\x87\x68\xaf\x2d\x5b\x0c\x87\x7a\xf2\x26\x7f\xdf\xb5\x23\x8c\xd3\x69\x8d\x5c\xdd\xae\x4f\x9e\xdf\xef\x9c\xd9\x3f\xfe\xe6\x3b\x1c\x4d\x2f\x86\x23\xbb\x11\x5e\x58\xd5\x46\x8b\xc0\xec\x23\xea\xd5\x11\x37\xaf\x3f\x6f\xb3\x7c\xdb\xc6\xd8\xcf\xbc\x7f\xe8\xbd\x94\x08\x0b\x16\x4a\xb3\x01\xca\x5e\x9e\xe3\x01\x34\x9a\xf5\xe5\x75\xa5\x8b\xe4\x72\xba\x19\xb5\xda\x68\xf0\x47\xc2\x9c\x78\x27\xb2\x20\x8a\xf1\xc2\x66\x72\xa9\x8b\x8d\x81\x0d\x92\x5a\x5a\x7e\x05\x77\xe3\xf7\x5e\x55\xe4\x34\x28\x38\x9b\x4a\x7e\xc3\x73\x12\xaa\x24\x24\x7a\xd8\xdd\xa4\xa6\xde\x73\x9d\x7d\x64\x28\x83\x17\xf8\xca\x92\x50\x62\xe1\x8c\x13\x1b\x02\x29\x88\x91\xe3\x9d\x36\xe5\xd8\xa4\xc3\x6a\x69\xd6\x74\xcb\x33\xc7\x23\xb4\xe8\x47\x05\x0b\xe8\x30\x12\xe4\xb9\x85\x61\x73\xf9\x7c\x0d\x3b\x07\xc7\x05\x74\x58\x0d\x0d\x32\x47\x93\x27\x4c\x24\x05\x9f\x3d\xd0\x52\x18\xb6\x3c\x29\xcc\xba\x09\x40\x00\x51\x7c\xc1\x2c\x02\x82\x46\xf5\x3a\x30\xa8\x11\x63\xb8\x73\xb7\xbe\x23\xab\x07\x06\xd7\xbb\x06\x40\x55\x87\xfa\xa5\x6e\x88\xc0\x16\xa2\xb1\xf1\xd0\xd2\xe5\xab\xde\xd2\xf2\x25\x4c\xac\xbb\x63\x4d\x46\x9c\xab\x5b\xb8\x70\x05\x89\x95\xa0\xa5\xa1\xdd\x7f\x41\xfb\x1a\x34\xfa\x62\x36\x2a\xc5\x91\x9e\x9a\xd4\x1e\x22\x2b\x46\x24\x78\x31\x51\x91\xf0\x03\xeb\xe4\x34\x92\xc7\xb0\x53\x91\x40\xca\xf6\x8f\x7a\x79\xea\x0c\xad\x86\xb7\x4f\x1d\x85\xa5\x50\x4a\x4a\x5b\xa3\x81\x69\xbe\xa5\x85\x75\x76\x80\x36\x23\x32\xf3\xf8\x11\x86\x2a\xfc\x7b\x35\x1e\x65\xe0\xea\x5d\x18\xbf\xb8\x17\x5e\x1c\x58\x1f\x1c\xb1\xf3\xe5\x09\xc3\xbd\x0f\xc6\x6d\x93\x8e\xfd\xfe\xde\xcb\x44\xc2\xf3\xe0\x20\xa3\x01\xf5\xb0\xae\xf5\x62\xa5\x76\x76\xcb\x9d\x92\x50\x81\xad\xbe\xfe\x39\x85\x2f\x9c\x54\x42\x96\x86\xf6\x1d\xe5\xd3\xbe\xbb\x72\x1b\xaf\x79\xfb\xe6\x1f\x7f\x73\x7e\x11\x2c\x24\x22\x4d\x98\xd7\x3e\x86\xc5\x8a\x5a\x01\x1e\x90\x1a\x6f\x0f\xe3\x90\x72\x2b\xb0\x5b\x3e\xb1\x39\xb1\x16\x17\x43\xd3\x96\x29\x2c\x8f\x1e\x16\x5f\x89\xb5\x3a\xeb\x5b\xf4\x28\xab\x37\x2e\x12\x6c\xc4\x02\x17\x49\xf5\x56\x25\x44\x63\x89\x36\xc0\x1c\x42\x9a\xf2\x52\x95\xdb\x7d\x21\x9a\xe9\x2b\x71\xa9\x17\xd6\x07\x02\xb4\x23\x5d\x72\x52\x5c\x16\xe3\xc6\x3a\x27\x44\x8d\x3b\x95\x5c\x26\xde\x9c\xd6\x15\x2d\x73\xb1\x8f\xd5\xc4\x03\x3d\x38\x00\xf3\x8c\x98\xb4\xb2\x69\x01\x7e\xf5\x83\xb7\x62\x8b\x09\x69\x63\x83\x13\x0d\x06\xe7\xac\x68\x11\x30\x53\x50\xab\x88\xd0\x39\x08\xd8\x31\xc2\x5d\xc7\xd4\xc5\x3b\xda\x0a\xf0\x6f\x5d\xa4\xba\x4a\x61\xcf\x15\x6a\xd3\xcd\x57\x0a\x11\x0d\xde\xf5\x69\xd5\x7a\xb0\x62\x42\x66\x20\xb2\xe6\x1b\x48\x2e\xad\xad\x9d\xe9\xd8\x75\xc9\x06\xfa\x1e\xe6\x9e\xce\x91\xc2\xb0\x88\x9e\xe6\x45\xcb\x1c\x39\x06\xa4\x51\xc6\x0a\xe8\xcd\x24\x76\xb9\x01\x31\x79\x58\x65\x3b\xc4\xa5\xc1\x30\xad\x39\xe0\xa5\x63\xf7\xe9\x20\x75\xc2\xab\xd3\xb3\xe9\xa6\xb0\x93\x19\x0d\x9e\xa2\x57\x12\x40\x18\x68\x34\xe8\x88\x44\x15\x38\xd9\x06\x52\x08\x28\xb7\x05\xab\x73\x13\x5e\x4c\x26\x10\x90\xf0\xe5\x74\xf0\x50\x51\x83\xe1\xf7\x18\x36\x0a\x03\x72\x08\x36\x18\x6c\x65\x7b\x7a\x5b\x83\xcd\x23\x69\xf3\x54\x9c\x38\x83\x25\x02\xf0\x0e\xb9\x1c\xee\x76\x60\xa2\x19\xa4\xf6\x4f\xe0\x61\xe2\x00\xb0\x9b\x05\xf5\xc9\x88\xc2\x2c\x9d\x7a\xe7\xe6\x65\x11\x46\xc6\xbb\xc0\x44\x33\x74\x11\x07\x70\x82\xc2\x60\x1c\xbc\xb1\x1c\xb0\xc4\xfe\x23\x09\x95\x44\xdc\x0d\x87\xb1\x38\x6b\x11\x83\x82\x15\xa5\x5a\xf4\xa3\x2e\x18\x67\x5c\x7c\x9d\xcb\x8c\x42\xec\x98\x18\xc2\xaa\xe6\x4b\x8a\xa2\x15\x91\xcb\xd2\xa6\x58\x19\xc6\xc0\x98\x72\xce\x12\xca\x11\x75\x0c\xd1\x00\x2e\xf2\xf4\xfa\x7b\xa8\xbc\x15\xe1\x5e\xd5\x41\x36\x70\xcd\x86\x34\x67\x33\x66\x44\x50\x57\x7a\x6b\xa3\xbe\x3d\x27\x08\x65\x88\x1f\xc0\x6d\x9a\xf2\x76\x91\xc4\x47\x24\x6e\x5c\xc9\x5e\x09\xb6\x65\x2a\x10\x67\x1e\xa4\xaf\x46\xb6\x78\xd8\x97\xff\xf3\xed\xef\x77\x53\x67\x74\x3f\x39\x66\x72\x1f\x4c\x95\xde\x95\xee\xa7\x33\x26\xe9\x11\x2c\x02\x5d\x4f\x45\x43\x8a\xd0\x0d\x68\xe3\x10\x24\x70\xf3\x08\x45\x44\x5f\x20\x14\x61\xd6\x8e\xae\xa0\x6a\x08\x3c\x39\x4f\x84\x00\x41\x19\x27\xba\xe7\x24\xe6\x39\x25\xbb\x43\x3d\x46\x8c\x88\x55\x92\x14\x9e\x05\xfb\xb0\x72\xdc\x9d\x05\x88\x13\x89\x58\x12\xbd\xa1\xb2\x3d\x49\x64\x85\x86\xf1\xdb\x29\xf3\x8e\xa0\xde\x67\xce\xb9\x79\x30\xf2\xbb\x48\x00\xf1\xc7\xf7\xef\xb9\x4c\x75\xee\x75\x96\x02\x46\x7b\xf0\xdd\x3d\xc2\x7b\xb6\xea\xbe\x56\x97\x95\xb9\x58\x42\x0a\x7a\xa0\x38\x62\xce\x59\x94\x87\x31\xdf\xbf\xa7\x1f\xb0\x36\x41\xa3\xe0\xc1\x77\x62\x50\x1e\xd5\x6d\xba\x52\x8c\x6a\xa5\x04\x80\x32\xd1\xf2\xb5\x17\x03\x86\x4e\x40\x26\xb0\x84\x61\x22\xb2\x29\x08\xa0\x25\x99\xdd\xa2\x84\x8c\x2f\x2a\x23\xe2\xa6\x83\x7b\x58\xe0\x67\x58\xda\xd0\xd6\x64\x75\xdf\x09\xdb\x05\xfd\x46\x9b\x85\xc5\x5f\x2a\x61\x9d\x1e\xcc\x16\x91\xe7\xa2\xe9\x5a\xe1\xc0\x96\x69\x7e\x90\x7e\x3f\xa9\xf4\x76\x10\x7c\x93\x2c\x46\x16\x91\xf2\x22\x54\x19\x56\x99\xd0\x85\x19\xee\x6e\x26\x92\x1b\xb1\xbc\xce\x89\x39\x83\x34\x23\x4c\x41\x1b\x73\xa1\xe0\x1e\x67\x42\xe1\x4c\x3b\xc4\xf1\x01\x03\x13\xd4\x69\x8b\x75\x56\xa4\xcb\x69\x2d\xe3\x73\x02\x5c\xbf\x60\xcd\xf0\x40\x66\x1d\x28\xb6\x4d\x4b\x78\x14\x47\xdb\x46\x73\xdd\x55\x63\x61\xcd\x8a\x03\x98\x6b\xbb\xa6\x49\x01\x1a\x9c\x07\x70\x38\x1e\xd9\xfa\x40\x4d\xe7\x2c\x96\xba\xaf\x3a\x4e\x6c\xdd\xd6\xe5\x44\xd2\xaf\xf0\x55\x7b\x60\xd1\xef\x2e\xec\x92\x7d\xe7\x91\x97\xdd\x4a\x27\x0a\xa1\x1a\xe0\x50\xa0\x45\xbe\x2b\xfc\x3e\x3d\x7b\xec\x83\x12\x43\x77\xd2\xe2\x9f\x69\x81\x89\x76\x11\xa7\xc9\xb0\xfb\x20\xb7\xba\x9e\x11\xa9\x00\x93\x0c\x2d\x8a\xa1\xe6\x8b\x38\x0c\xf2\xc5\x44\xac\x92\x06\x23\x6c\x96\x09\x47\xb3\x9c\xce\xd0\x4d\x6e\x9c\x2f\xeb\x60\x1c\x7e\xcb\x28\xc2\x34\x3c\x92\x0f\x93\x1e\x11\xb2\x77\xd4\xa1\x99\x4a\x38\x28\x8d\x93\x04\xe9\x32\xf3\x60\x5a\x28\xc4\x64\x38\x0e\x46\x94\xc1\x05\x5c\x6d\xac\x8b\x5b\xea\x22\x0d\x77\xd8\x4b\x32\x01\xb7\x9b\xe2\xb4\x81\xea\x8e\xc7\x8b\xe5\x77\x26\x77\x37\x72\xe8\xcf\xc0\x9e\xf1\xb0\x9f\xb1\x54\xc3\x3e\xe6\x2b\x05\xb9\x07\x0a\xf7\xcf\x23\x41\x47\x78\x07\x14\x90\x10\x97\xc2\x08\xe8\x86\xe1\xfd\xa6\x23\x3d\xc9\xe5\x39\x4f\x29\xec\x10\xa2\x8b\xd0\xda\x54\x7b\x58\x7e\x5a\xd8\xbe\xa4\xf4\x09\x71\x6b\x4f\x53\x11\xb1\xf3\xf4\xf9\xf5\xff\xfd\x74\x20\xa4\x3c\x7e\x36\xbe\x5f\xf0\xf8\xf5\x3b\x43\x5c\xd3\x64\x08\x51\x74\x93\x9b\x6d\x92\x99\xe9\x40\x43\xc4\x95\x2f\xe0\xc3\xf4\x27\xc5\x3c\x7d\x10\x7b\x4d\x10\x39\x1c\x14\x59\x01\xe8\x35\x42\xd6\x4f\x66\x95\x05\xd6\x66\xa1\xe2\x93\x26\x2b\xe6\xbe\x57\x91\xcd\x25\xb2\x81\xcf\x7a\xb9\x06\x0b\xb9\x63\x3a\x8f\x48\x2c\x36\x4e\x99\x1e\xd9\x3a\x11\x9d\xb4\xa5\x85\x83\x1e\x72\x42\xea\x89\x4e\xb5\x9c\x12\xd8\x2b\x09\x40\x60\xe3\x89\x87\x6f\x0b\x0d\x87\x24\xd0\x00\x5e\x5a\xc9\xd7\x59\x9d\xad\xb3\x1c\x14\xf7\x55\x96\x5a\xa1\x3c\xa0\xfb\x9c\x81\xf4\x28\x02\xf7\xd0\xce\x7a\xbf\x2e\x75\xa1\x12\xa2\xe9\xf5\xf2\x0e\x49\xe7\x26\x57\xfc\xf9\x7e\x65\x52\xff\x4b\xa7\x59\x4b\x1c\xab\xc4\x79\x9d\x86\x7b\xa7\x3a\x0f\xd8\x84\xb0\x15\x53\xd5\x39\x7e\xb2\x54\xed\x52\x39\x74\xd6\x1d\xe5\xe8\x5d\xda\xc1\x80\x90\x1f\x1b\x1d\x25\x76\xd4\x09\x3b\x30\xe0\x85\xf9\x80\x7b\x30\x50\x79\x59\x9f\x97\x59\xed\xfe\xe3\xa4\x4c\x38\x25\x13\x52\x82\xf2\xe4\xb4\x20\x56\x51\x16\x9b\xac\xc9\x36\x85\xad\x68\x8c\xa4\xb4\x13\x5d\x34\xcb\x27\xf8\x66\x1d\xd8\xa5\xcc\xd6\xcc\xa5\x54\x06\x8b\x6c\xd6\xd0\x8c\x75\xca\x21\x22\xf4\x2f\xb9\x72\x26\xd2\x09\x6c\x45\xb6\xc5\x52\xaa\x2f\x3f\x3d\x7d\xf4\xf4\xd3\xc5\x2e\x0d\x21\x3e\x0c\xb2\x97\xf0\x1f\x53\x0f\x63\xcc\x49\xcd\x85\x6e\x73\x6f\x11\x43\xf8\x37\xef\xf5\xc1\x14\xe6\xcf\xdb\x90\x66\x41\x14\xea\x35\x71\xd1\xe7\xe9\xf5\x8f\x7b\x6c\x7b\x96\x31\x24\x17\xc2\xc4\xbb\x22\x0a\x76\xef\xdd\x68\x2d\x1a\x8d\xfa\x5f\x63\x2d\x3a\xd2\xe4\x81\xb5\xa8\x30\x50\x2e\xdb\x06\xa7\x5a\xf8\x40\xc8\xc8\xc9\xea\xce\x09\x0d\x27\x3c\xdc\x59\xa1\x49\x96\x5f\xb0\xf8\xf0\x4b\xd8\xee\x47\x91\x7b\x9d\xb7\x66\x82\xdd\x02\x38\xb3\x0b\xd8\xed\x7b\xe1\xd5\x3a\xf3\xc6\xcc\xc9\x7a\xb9\x42\x8b\x04\xde\x9b\x15\x09\x4a\x15\xa8\xf9\x39\xc2\xda\x5b\xa7\x23\x0d\x85\xbc\x3d\x1f\x56\x98\x7c\x1a\x79\x18\x02\x05\xbc\xe3\x83\x89\xbb\x37\x7a\xb2\x38\x19\x34\x46\x77\x92\x20\x63\x3d\x5b\x76\x17\x81\x92\xf7\x9c\xfc\x56\xf8\x1d\x6d\x45\xd2\x4f\xf2\x8b\xe5\xbf\xd9\x56\x25\xba\xa0\x95\x43\x90\xf9\x56\x0d\x67\x87\x54\x47\x59\x3a\x07\x66\x77\x0a\xf4\x2e\x65\x32\x5d\x76\x2b\xd8\x46\x48\xb4\x29\x33\x36\x77\xd0\x4e\xd8\x12\xe7\x5a\x21\xcb\xa5\xb2\xa5\x24\xb9\xb4\x7b\xb6\xd7\x50\x12\xe1\xc3\xb9\x63\x99\x90\x16\x05\x32\xfe\x14\xcd\xa1\xd0\x0d\xf3\x97\x3f\x04\x60\x76\x1f\xab\xe7\x29\x21\x33\x78\x00\x49\xcb\x62\x1e\x5e\xde\x59\xad\x69\x57\x6f\xef\x44\xd2\x33\x1f\x17\x84\xa4\xfc\x0e\xe4\xb0\x3d\x3b\x40\xb1\x46\x60\x96\xdf\x23\xee\x54\x70\x17\x74\x50\x32\xbd\xa9\x15\xc5\x61\x68\x75\x0c\x6f\x43\xea\x5a\x9f\x6e\xf9\x90\x21\x52\xd9\xf6\x2a\x80\x63\xf2\xc4\x78\xea\xc8\x0e\x0b\xb4\x34\xb1\x9a\x24\xb0\xbf\xb6\x80\xc4\xa6\xcd\x52\x43\xb3\xa5\xfd\x96\xc0\x57\x36\x44\x9b\xf8\x79\x37\x97\x59\x2d\x18\xf4\x85\xa0\xc4\x18\x7d\xa2\x98\x3f\x26\x5e\x89\xdd\x91\x60\x98\x06\xe2\x50\x4c\xcf\xd0\x11\xb4\xc0\x23\x6b\xd6\xe4\x11\x99\x0b\x89\xa2\x6c\x11\x3d\x00\xc3\xb9\x74\xf5\x0a\x34\x83\x04\x02\x87\x3c\xcc\x4f\x7e\xb5\x91\xdb\xb7\x1c\xcd\xf9\x2c\x50\x9a\xa6\x32\x66\xf9\x88\x75\x1f\x9f\xbb\xa2\xd1\xad\x1a\xbd\xa9\xa5\xd8\x1b\xec\x32\x12\x51\xf5\x26\xf3\x25\x4c\x94\x05\x03\x3f\x15\x7d\xc1\xd9\x07\xe7\xdd\x78\xff\xd5\xcb\x27\xfc\x85\x5d\x92\x23\xea\xb8\xa0\x32\x4f\xc3\x4f\xa0\xd4\x6e\x97\x35\xf5\xf2\x21\x7f\xf3\x81\x85\xdc\xe8\x9a\x4a\xbd\xe2\x78\x61\x44\xdd\xc1\x24\x49\x9b\x66\xf9\x10\x16\xbd\xce\x25\x10\xe4\xf9\x58\xdc\xe7\xfc\x1d\xca\x71\xc8\x3a\x0a\x7f\xc5\x02\x1b\xcc\x85\x43\x1d\xc2\xd1\x9d\x66\x94\x3f\xf3\xbf\xd8\x4a\x24\x63\x58\x1c\x8c\xc5\x67\xb8\xd3\x79\x8c\x81\x7d\xbb\x25\x01\x3e\x99\x16\xb9\x80\x16\x71\xce\x99\x43\x22\xa8\x9f\xad\x96\xa7\x20\x7c\x43\xea\x8e\x68\x08\xac\x6c\xaf\x06\x53\xc2\x90\x09\x0b\xd8\xf2\x91\x6e\xf4\x90\x24\x81\xb2\xe7\x84\xbf\x75\x6f\x86\x64\xc2\x2a\x84\xdb\xda\x7d\x2d\x27\x74\x65\x01\x90\xbc\x7c\x66\xf6\xea\x31\xfe\xc6\xa9\x2b\x5e\x10\xce\xe3\x35\x39\xcc\x5b\x95\xb9\x4e\x8c\x0b\xcc\xe5\x32\x0a\x3c\x81\x0f\x22\xba\xb2\x24\x29\xc2\x39\xbf\x5e\xde\x4d\xd5\xf3\x12\x62\xba\xcb\xa0\xfd\x40\xec\xd5\xe5\x3c\xc4\x9f\x34\xe4\x11\xec\x11\xd9\x29\xfd\x8f\xfb\x8e\xb3\x88\xe7\x80\x90\xb1\x0f\x9c\x88\x0e\xff\xf2\x52\xca\xb4\x42\xc0\xa6\x01\x99\xa6\x45\x88\x2b\x90\x3c\x40\x28\x7e\xea\x7e\x4c\x0b\x78\xd6\x33\x9b\xb1\x40\xac\xb4\xc3\xe9\xd3\x3c\x57\xf2\x73\xbe\xa4\xb4\x8f\x80\x2d\x04\x2b\xfa\xfe\x52\x48\x0d\xf4\x7f\xb6\x8e\x50\x86\x74\xb5\xee\xb8\xca\x43\xf9\x0b\x1b\xf0\xb1\x1a\x3b\xd2\xfa\x33\x5b\xe0\x48\x04\x6a\x3c\x0d\x7f\x47\x35\xb0\x3e\xdc\xec\x52\x7e\xa9\xbb\x5f\x7f\xf0\x4d\x8d\x76\x83\x75\xe2\xde\xdd\xaf\x3f\xfc\x86\x68\x2c\x7f\x81\xc6\x86\xca\x65\x65\x5e\x67\xb6\xc5\x26\x96\x1f\xea\x8c\xf0\x34\xc2\x93\x6f\x69\x65\xe8\x63\x9c\x2c\x6b\x27\x72\xfb\x80\x34\x93\xec\x84\xe4\x02\x8f\x53\xfc\xfb\x20\x1f\x2a\xc2\x5d\xb7\xda\xf5\x24\x97\xb1\xce\x2d\x06\x95\xc1\xdf\xe9\x82\x48\x41\x93\x66\xcd\xf2\xd3\x14\x07\xd1\x47\xe9\xce\x5b\xf4\x88\xbf\x26\x79\x2e\x0c\x4e\xc6\xc6\xc1\x70\xce\x03\x35\xd7\x06\x3b\x57\xb8\xe4\x23\xf7\xf7\x48\x29\xe1\x29\xd2\xa1\x4c\x8a\x88\x32\xe1\x11\x89\x20\xf6\x35\x11\xd5\xa6\x26\x76\xc2\x67\xc1\x50\x9a\x7e\x13\x7f\x46\x6e\xce\x78\xe0\x9a\x54\x8f\x18\x83\x14\x31\xcf\x06\xd8\xe4\x5d\x14\x1f\x1f\xeb\xd4\xeb\x9b\x32\xc4\x4b\x4d\x2b\x6f\xa0\x78\xf2\x30\x52\xe5\xb2\xe1\x52\x82\x29\xe8\xc8\xe1\x67\x9f\xb8\x90\x93\x78\x35\x09\xe4\xec\x72\x0b\xe9\x51\x44\x3d\x0e\x48\x21\x96\xfe\xfa\x3b\x12\x6b\x92\xb8\xf2\xa5\xb5\x5b\x22\xe2\x66\xcd\x3f\xa2\x0c\x92\xd3\x25\x8f\x18\x6b\x57\x92\xc6\xfb\x19\x96\x2b\x64\xa7\xa6\xcc\x6d\x37\x72\x1d\xee\xd3\x0a\x1a\x44\x21\x3e\xc2\x50\x72\xad\xeb\x2c\x99\x3d\xda\x1d\xcc\xc3\x71\xf1\x14\x86\xf7\x6a\x85\x10\x71\x38\xcc\x48\x12\x87\xc4\xb5\x36\x3d\xc9\x34\xd4\xcb\xf5\xf7\x75\xb3\x8f\x27\xc0\x9e\xb5\xe7\xee\xf8\x8a\x56\xde\xc7\x16\xf2\x9d\xb7\x22\xf4\x7f\x3a\xe7\x6f\x89\xa1\x26\x96\x7f\x70\xea\x79\xdf\xd8\x58\x76\x38\x56\xcf\x1d\x88\x3a\x94\xee\x83\xd5\xd9\xbb\x0e\xfe\x95\xce\x32\x2a\xb7\xb1\x8b\x68\x54\x0d\x49\x03\xf5\x05\x9f\x9c\x66\xd1\xb9\x96\x78\x02\xb9\x3b\xc2\xa9\x74\x07\x85\x65\xec\x83\xb0\x3d\x55\xab\xa8\xa3\xac\xe0\x98\xab\x83\xf0\xa7\x38\x7e\x6c\x23\x87\xe1\x60\xba\x6d\x59\x9a\x76\xde\xa1\x69\xc4\x7f\xe8\x9f\xef\x17\xe0\xa0\x25\x44\x7b\xd4\xa2\x27\xc9\x1d\x06\xe3\xb8\x1c\x09\xf3\xf2\x81\x1f\xa3\xb1\x59\xd5\x90\xce\x8a\xba\x57\xbc\x60\x6c\x1f\x8f\xb0\x36\x72\x47\x4f\xa6\x75\x50\xcc\x81\xc1\x0e\x76\x90\x76\xdc\x17\x6b\x7a\x9a\x56\x61\x5f\xd9\xa6\x5d\xcc\x9a\xaf\x08\x48\xb2\xb2\x73\xab\xc2\xa7\x37\x29\x73\x79\xbf\x7c\xf0\xfe\x39\x62\xf0\x11\xb5\xe1\xec\x4f\x27\xa4\x65\x48\xec\xf9\xe1\xf4\xa1\x7e\x90\x24\xd3\x91\x6e\x3e\x7b\xa2\x69\x71\xff\x5e\xf9\x00\x8d\x7e\x12\x6c\x64\x0e\x5a\x6c\x63\x16\x2b\x20\x0e\x9f\xe6\xbf\xd6\xcb\xb0\xa0\x7c\x64\x9c\xe8\x80\x8b\x78\xa2\x6f\x0e\x12\xef\x27\xf1\x54\xe8\xf9\xf8\xf6\x0b\xa4\x8f\x89\xd5\xec\xce\xb8\xd9\x59\x78\x08\x43\x31\x0c\x1d\xe0\x48\x54\x74\xa7\xb7\x24\xf3\x4c\x76\xc2\xf5\x8f\x73\x8d\x89\xf9\x32\x75\xbe\x51\xf1\x1f\xcd\x6f\xdf\xd2\x6f\x28\xcb\xd1\xfb\x91\x37\x26\x22\xc0\xb1\x85\xed\x98\x65\x2d\x14\x87\x81\x7f\xa0\xd9\xb6\x1a\x1c\x62\xc0\xa2\xfd\x40\xbf\xbd\x5f\xfe\x68\xcd\x00\xe5\xaf\xc6\x4e\x23\x59\xe3\x49\x43\xf1\x88\x85\xed\xcd\xb7\xf5\x6a\x52\xef\xd0\x28\x1a\xb7\xc4\x71\x7d\x19\xc7\x6c\xad\xe4\x40\xcf\xe8\x74\x1e\xe3\x56\x14\x99\x37\x8a\xd6\x12\x47\xc0\x34\x58\xdb\xcd\x81\x1d\x8b\x37\xcd\x01\xc0\xd8\x0b\x3f\x73\x10\x74\xdc\xed\x80\xed\xc9\x06\xf7\xbc\x4f\xe9\x0a\xa7\x57\x93\x4b\x22\xae\x5b\xea\x13\x6c\x8b\x8f\xc3\xab\xb3\xe7\xe7\x2f\x94\x79\x6d\xc0\xdd\xab\x6c\x43\xec\x89\x78\xfe\xab\x4b\x12\xdc\x5e\x9b\x4a\xd5\x76\x67\x48\xc1\x24\x09\xcf\x26\x49\x5b\x41\x60\x70\x87\xf1\x48\x6b\x64\x61\x82\x38\x43\x9a\x13\x31\xb8\x24\x22\x8e\xe3\xda\x4e\x70\x01\x01\x42\x9a\xe8\xd7\x0a\xc7\xdf\x59\x8c\xa8\x4b\x93\x90\xa8\xb3\x50\x4f\x48\x9f\x29\x08\x04\x34\x2e\x6a\x13\x4a\xec\xcd\xea\x78\x98\xc9\x67\xd0\x88\x9d\x07\xeb\x80\xa1\x3b\x91\xc7\x12\x33\x2d\x89\x87\xe0\xa2\xa1\x9a\xaf\x80\x28\x41\x2b\x86\xc8\x32\xd0\x50\xc2\x3b\xca\x3f\xf1\x91\x00\x26\xed\xfc\x81\x54\x3e\xad\xed\x4e\x96\xe2\x22\x14\xf6\x13\x73\x9b\x66\xcb\xae\x56\x39\xce\x42\x54\x18\x6e\xa1\xce\x1f\x58\x21\xf6\xd6\x71\x03\x93\x28\x0c\x67\xda\x36\x33\x03\x66\x69\xd1\xb9\x3a\x0c\x61\x43\x9e\xb9\x8e\x22\x73\x8d\x38\xb8\x34\x7c\xb6\x86\xb6\x25\x9f\x1d\xd1\xc1\x00\x85\x13\x35\x5b\x17\x2a\x41\x2b\xc8\x1e\xb9\x85\x3a\xb3\x8c\xc0\x7b\xe1\x88\x7c\x14\xe0\x8a\x44\xb8\xaa\x91\x43\x3d\x21\xc8\x43\x35\xec\x8d\xe1\x1e\x39\xd4\xe7\x60\x80\x91\x05\xba\x66\x61\xa9\x9d\x29\x34\xf1\x08\xce\x94\x74\xa4\xd2\x55\x18\x45\x86\x48\xe1\xc3\x8d\xca\x2d\xfb\x0d\x2a\x82\x9a\x62\x93\x64\x81\xe3\x2a\xdd\xcd\x5b\x34\xda\x28\x6e\x27\x80\x86\x99\x5d\xa7\xe0\x80\x92\x53\xc0\xf7\x71\xdc\xe6\x01\x36\xc0\xfd\x7b\xfc\x13\x42\x5b\x74\x58\x49\x42\x0a\x48\xf8\xab\x7b\x02\xd0\x06\x9b\x12\x4e\xb2\x3e\xc5\xcd\x4e\xd7\xdf\x0f\xa1\x10\xc1\x2d\x82\x78\xcb\x86\xa6\x85\x80\x48\x11\xac\xfd\x39\xe1\x5e\x97\x5d\xc3\x4e\xdc\x77\xff\x7c\xfe\xfc\xd9\x89\xeb\xfc\xdb\xf7\xf7\xfb\xfd\xfb\x28\xfa\x7e\x5b\xe5\xa6\x40\x62\xea\x46\x73\x82\x6b\x19\x1e\x64\x4d\x79\xff\x1e\x7d\xbf\x47\xbb\x12\x54\x95\xd6\xd1\x09\xed\x10\x43\x1c\xee\xf6\x85\xce\xcd\xf5\xdf\x09\xf2\xfb\x9b\x77\xd1\xe0\x66\x6e\x1d\xdc\xf9\x7e\x90\x01\xaa\xc9\xe5\x74\x6b\x95\x72\xba\x85\x6f\xe1\x98\x39\xde\x12\x33\x04\xe0\xc0\x60\x4d\xed\x75\x40\xb8\x58\xa4\x35\xa4\x77\xe2\x2a\x8c\x2d\x7d\x45\xe9\x4c\x82\x82\xd3\x0f\xdc\x31\x95\x0b\xb4\x34\x89\x21\xe0\xcf\xd2\xa9\x6c\x30\xea\xc8\x0d\x3f\x1e\xfb\xc7\x07\xcd\xb1\xd9\xca\x16\x79\xe7\xef\x0e\x08\x6d\x0a\xf8\x91\xef\xa0\x3d\x42\x1e\x3e\xf5\x27\x07\xfd\x10\xa8\x37\xc9\x18\x5c\x2e\x30\xe8\x25\x72\x70\x39\xa0\x48\x37\xf4\x72\x42\x62\x62\x17\x0f\x56\x6e\x8b\x81\x8c\xea\x20\x78\x80\xb3\x23\xa4\x67\xbe\x1f\x57\x0d\xdc\x6e\x71\xb8\xb5\x3c\x5b\x38\xdc\x5a\x31\x8c\x0e\xeb\xfd\xd6\x6d\x76\x10\x68\x37\x95\x28\xfd\x00\x44\x00\xbd\xb1\xeb\x0a\x07\xfe\xb1\xda\x79\x86\x28\x71\x12\x12\x9d\x9f\xdf\xcc\xe3\x16\x8f\x31\x20\xd6\x21\x75\x01\xe4\xea\x5c\x27\xdb\xd5\xb0\xe1\xc1\x1e\xb1\x0f\x31\x82\x8d\xbb\xe6\xa2\x9f\x44\x48\x9c\xa3\x4e\x06\x8b\xbc\x7e\x00\xc4\xf6\x61\xe8\xb1\x54\x14\xcf\x54\xfa\x10\x5f\xeb\x0b\x71\x11\x4f\xf2\x26\x97\xea\x4c\x72\xa1\x47\xe1\x86\x30\xb9\xcf\x8b\x7d\xa4\xd9\xc5\xc5\x62\x5d\xd9\x7d\x8d\x98\x85\xb6\x4a\x0c\xcb\x70\x72\x77\xc5\x95\xba\xfe\x3b\xd1\x96\x94\xcf\x08\x72\xc9\x92\xf8\x38\xd1\xd9\x0a\x7e\x97\xc4\xa5\x89\x31\x6e\x29\x5f\x2e\x8d\x56\x56\x4f\xee\x4e\x78\xec\xa9\x06\x31\xea\x66\xe1\xee\x08\x0b\xf7\x17\xf8\xe8\x38\xb9\x83\x84\x5a\xa8\x2f\xed\x7e\x85\x5f\x2b\xac\x4c\x4d\x02\x1e\xbc\xef\x38\x08\xd0\xc0\x9a\x89\xeb\x4c\xd0\x82\x2f\x8d\x32\x02\x77\xef\x49\xbc\x9b\x06\x2d\x90\x63\x50\x72\x0e\xdf\x8e\xdc\xb6\x2a\x2a\x09\xac\xbe\xfe\x7e\xc8\xcc\xe2\x4c\x47\xe0\xdf\xfe\x7b\xc8\xf7\x70\x23\x48\x7f\xf2\xf8\x99\xfb\xc7\x66\x57\x0e\x2f\x05\xad\x27\xd6\xd7\xe4\xdc\xab\x9c\x95\x63\x8b\xee\xe2\xd0\xb2\xeb\x73\xc4\x40\xce\xbf\x25\xd0\xce\xdd\x15\x31\x94\x48\x2b\x7d\x41\x84\xab\xdf\x02\xf2\x3e\x91\x78\xb2\xaf\x25\x37\xef\x91\xf8\x26\x97\x17\x0d\x65\x08\x38\x58\x80\x73\xfa\xca\xf2\x62\xb0\x2f\x2f\xd8\x54\x04\xb9\x03\x4e\x03\x9f\xa8\x2f\x8d\x4e\x23\x28\x0e\x40\x91\x15\x06\xc1\xde\xe3\x70\x19\xf1\x2a\x56\xc1\xf6\xd3\xa9\x08\x1e\xad\xfc\xcd\x6b\x01\x89\x78\x0f\xfa\x42\x8d\xde\x8c\x22\x22\xf4\xa6\x8d\x33\x99\x81\x3c\x14\x3f\xf4\x50\x61\xe2\xba\x1c\xac\xff\x1d\x1a\x18\x2e\x1a\x6a\x07\xe7\x02\x34\x9e\x34\xe9\x75\x2d\x91\xcc\x3e\x3a\x60\xb2\x20\xce\x76\x27\x63\x39\x98\x90\x67\x2d\x7b\x92\x1e\x56\xbb\x74\x10\x33\x84\xc7\x8a\x40\x14\x45\x1e\x8e\xf6\xf8\x53\x5d\x6d\x49\x38\x2a\xc4\xcc\xe8\x9b\xdc\x57\x30\xad\x3c\xc3\x6d\x17\xfd\x68\x35\xf9\xde\x9a\x33\xbb\x49\xb1\x03\x0f\x87\x10\x9b\xa7\xa5\x36\x84\xf6\xb7\x3f\xc0\x92\xe0\xc3\xa1\x7c\x1d\xb0\x4d\x84\xd5\x5f\xff\x2f\xed\x6e\x6e\x73\xf7\xe9\x4d\x51\x67\x1c\x6a\xb4\x3f\x86\x47\x51\x05\xb7\x10\x0f\x49\xfb\x26\xe6\xd3\xef\xe1\x1e\x62\xa9\xa3\xdd\xeb\x4d\x50\xd0\xb5\x6f\x4b\xb4\x5d\x92\x12\xf8\x7e\x04\x51\x33\xcc\x96\x64\xf1\xaa\x83\x4d\x17\xc6\xa5\x78\x60\x58\xa8\xfa\x52\x0e\x17\xc0\xbd\xee\xae\x48\x89\x30\x0c\x17\x89\xc8\x7e\xf8\x4a\x80\x50\x8f\xb7\x05\x8b\xb5\x7e\x63\x7c\xca\x18\x7e\xb8\xa1\x3c\x0a\xae\x9c\x5b\xd0\x9d\xcc\x70\xfb\x48\x8c\x1d\x62\xe6\x60\xf4\x64\xc3\x08\xd1\xf3\xe1\xb8\xd4\xed\x5b\x5f\x93\x6e\xf5\x4d\x74\xe6\x6f\x74\x01\x48\xa4\x77\xc5\x45\xfc\xad\x77\xa0\x10\x85\x0f\x99\x88\x6d\x3b\x71\xc4\x04\x51\x22\xa2\xbe\xcd\x9e\x6f\x3f\xeb\xc3\x95\x0d\x12\xda\x88\x36\x25\xb4\x71\x74\x69\x97\x0b\x6a\x8c\x9b\x94\xe3\xf5\xb8\xa5\x26\xba\x14\x6a\x74\x9d\xd5\xf8\x50\x25\x07\x83\x8b\xe7\x0e\x07\x83\xbc\xb3\x2e\x32\x58\xbc\x71\xc1\x08\xc2\xc5\xd3\x81\xed\x3b\xa7\x68\x69\x6c\x09\x6b\x78\x9b\xb2\x97\x2c\x2b\x5e\xe3\xfa\x3e\xe8\x73\x30\x3e\xd2\xaa\x55\x24\x99\xa9\xad\xc5\x99\x6e\x39\xfa\x48\x1a\xb5\x1c\x1c\x84\xe3\x0c\xa7\x47\x9c\x6e\x5b\x2f\xfd\xe9\xa3\x3d\x5a\x92\xac\xd1\xd9\x94\xf1\x5d\x27\x83\xc3\x11\xad\xc6\x8e\xc6\x8e\x8f\x26\x42\x48\x12\xd8\x45\xa1\x16\xc7\xce\x30\xba\x9c\xb9\x92\x1e\xe8\x83\x19\x48\x42\x22\x70\x3b\x95\xc3\x9c\x6e\x90\x56\x3b\x09\xa1\x64\x8a\x19\x0e\x48\xee\x55\xda\xd5\xdb\x96\xd0\x2d\xb9\x5c\x44\x5d\x85\xfd\xd5\xc3\x08\xa4\xaf\x78\xe5\xdc\x35\x19\x45\x98\xc4\xc7\xae\x06\x5c\x7a\x59\x5d\x07\x8b\x3b\xe4\x57\x5a\xcd\x3e\xb3\xbb\x60\x1c\x74\x91\x7d\x30\x13\xba\x6b\xfb\x26\x2d\xdd\x10\x40\x11\x23\xd2\xbf\x26\x7e\x62\xbe\xc5\x83\xf0\x89\x7f\xce\x34\x7f\xd3\x69\x91\x50\x68\x7a\x6c\x24\x64\xcc\x9f\x1f\xf9\xff\xb5\x78\xd3\x84\xe7\x0d\xde\x23\x1a\x71\xa4\xd6\x91\x33\x21\x51\x55\xd2\xcd\x4a\x46\x31\x98\x3d\x0a\x1d\x07\x71\xb2\x1d\xfb\xfa\x47\x77\x5c\x7e\xb4\x85\x7f\x58\xa8\x87\x47\x8c\xe3\x47\x67\x3c\x77\x24\x21\x5e\xcd\xdf\x67\x67\x1c\x99\x8c\x9f\x8f\x88\xcb\x54\xba\x1f\x47\xf1\xc1\x6c\x60\x6f\x2c\xef\x22\xfb\xa2\x7b\x7c\x07\xed\x67\x08\xf1\x93\x80\x3d\x5c\xc5\x45\x80\xbb\x21\xc6\x8f\x8d\x64\x3e\xc0\x0f\x61\x8f\x47\xec\x90\xbf\x16\xe9\x37\x1d\x25\xa8\xd0\x41\xb8\xdf\x3c\x4e\x44\x35\x84\x5d\x8f\xcf\x4e\xde\x30\xb9\x63\x1e\x90\x79\x93\xdd\x69\x9a\xaa\xbd\x37\x76\x35\x97\xba\x11\x3b\xdb\xda\x78\xfb\x1c\x62\x6f\x6c\x15\xa0\x25\x3e\xbb\x81\x1a\x0f\x40\x6b\x0b\xe2\x85\x62\x5a\x8b\xef\x56\x96\xe0\x60\x21\xed\xc2\xeb\x93\x70\x8e\xd0\x4c\x73\x3c\x25\xac\x25\x34\xaf\xeb\x21\xaa\x86\x22\x55\xf6\x1a\xb1\x02\x67\x2e\x6c\xef\x20\xc7\xd7\x6e\xfd\x29\xb6\x2c\xaa\x3d\x17\xf4\xe8\xf3\x9c\x55\xf5\x21\x33\x1e\xb3\x1d\x32\x68\xb9\x13\xa3\xf3\xe5\x4b\xd2\x01\xa3\xb6\xc4\x64\xe4\xe3\x5f\x7d\x2a\x89\x19\x94\xf8\x1c\x87\x62\x21\x97\xf9\x64\xc7\x0b\x65\x57\x6b\x1e\x95\xda\x13\x6f\x71\xc6\xbb\xc3\x13\x5f\xf0\x5d\xf7\xe0\x98\x75\x26\xf7\xdb\xb0\xe7\x43\x98\x22\x1f\xac\xb8\x5b\x7f\x74\xd0\x3c\x6e\x5e\xf2\x6c\x96\x23\x7d\xf9\x34\x2a\xf8\xec\x02\xa7\x3d\xc3\x51\x4f\x9f\x38\x19\xac\x24\x42\x2e\x72\x11\xdc\x6c\x6e\x70\x01\xce\x90\xa8\xbb\xa6\x9d\x29\x15\x22\x31\x23\xee\x32\xbd\xbb\x71\xef\xd5\x23\xcd\xa1\x9f\x2e\x36\xca\x07\x45\xc6\xf7\x91\x2d\x7c\x0f\x2c\x2e\xcf\x0c\x84\xaf\x8b\x6b\xe7\x4a\xfd\x96\x81\xc8\x34\x04\xec\x99\xbf\x17\x89\xad\xe1\x3e\xa0\x78\x74\x59\x5e\x18\x8d\xdc\x40\xe7\x46\xf3\x72\xea\x7e\xd3\x73\xc5\x7e\x1b\x5c\xfc\x00\xc0\xbe\xd7\xee\x4e\x8f\x03\xa0\x9c\xc8\x85\x23\x29\xdf\xde\x29\xa3\x2d\x30\xd6\xa9\xdd\x3e\x1e\xb1\x0f\xf0\x1a\x75\xef\x5d\x6c\x31\x08\x67\x59\xae\x64\xf1\x7e\xa9\x0f\xa4\x8d\x78\x03\x19\x67\x2b\x43\x48\x3c\x4e\x3d\x0d\x0b\xe5\xa9\x45\x74\x5a\x74\x04\xdb\x58\xf5\x96\x36\x7c\x0d\x80\x77\xea\xd8\x1c\x4a\x8f\xce\xa2\x87\xe9\x7a\xc1\xf1\xe1\x20\x38\x4e\x24\xba\xdf\xcc\xc9\xa5\xb0\x8f\x68\x67\x81\x52\x38\x50\x04\xc9\x61\xc1\x53\xb9\x0c\xc3\x91\x0f\xf1\x90\x84\x8d\x3a\x1d\x41\xd4\xe8\xc0\x04\xe4\x1c\xcd\x4d\x45\x0f\x17\x32\xd0\xfe\x60\x8a\x16\xa2\x0f\x49\xc0\xec\x0b\x3b\xef\xff\xfe\x73\x44\x45\x18\x42\x3b\xbb\x21\xb8\xb7\xec\x2a\x85\x2e\x17\x2d\x1f\xee\x0e\x63\xcb\xfd\xfc\x86\x88\x87\x17\xdc\x63\xa3\xd1\x1d\x89\xef\x5f\x8c\x48\xc8\x14\xb5\x46\x93\x24\x50\x9a\x39\x8c\x72\xb4\x28\xa0\xc4\x47\x33\x73\x3a\x4a\x71\xe2\x2b\xb2\x3d\xcc\x27\x44\xe7\x9f\x1a\x94\xd0\xa5\xdf\x33\xa6\x11\xf5\x19\xdf\xd1\x79\x30\x30\x77\x99\xea\x6f\x1e\x58\xd8\x4a\xbc\x2d\x7f\xf3\xa8\x4e\x46\x14\x29\xd0\x9b\x19\x3a\xf3\x1b\xc6\x7c\xec\x32\x81\x03\x54\x0f\x9b\x28\xba\xf7\x5f\x36\xd2\xd8\x57\x3c\xa9\xe6\x9c\x36\x12\x78\x2e\x6c\x78\x68\xaf\x20\x26\x0e\xdd\x1e\x16\x14\x2e\xf1\xe5\xe8\x3e\x09\x77\x5e\xa8\x24\x9d\xdb\x05\xee\xa6\x6c\xbc\x3d\x19\xdd\xca\x80\xc3\x0b\x78\x04\x80\xef\x9d\x10\xa5\x52\x6c\x00\xbc\x1c\xdf\xcc\xbd\x04\x02\x47\x6d\x1d\xf9\x66\x71\x07\x42\x2c\x0a\x4d\x0e\xf4\xdf\x70\xe1\x42\xdb\x5c\x22\xda\xcd\xe9\x26\x2f\xc7\x77\x58\x68\x77\xe0\x64\x83\x13\x5a\xfe\xd6\x54\xbc\x38\xe1\x22\x20\xce\x46\x9a\x7e\x4d\x04\x98\x80\x85\xc0\xa0\x9d\x2d\xd0\xdd\xf2\xa9\x7c\x8b\x91\x08\x67\x4e\xcd\xeb\xe5\x2b\x2a\x05\xe9\x40\x42\xde\xb4\x3b\xbc\xcc\x36\x63\x3f\x4f\x36\xbb\x12\x78\x48\x80\x3b\x0f\x76\xd9\x38\x9f\x3d\x8f\x5e\x4b\x13\x27\xe4\xa8\x3a\x8f\x84\x0d\xbc\x6d\x8d\x26\xe0\x90\xe5\x91\xf8\x51\xb6\xb3\xbd\xad\xe0\x81\x5a\x7e\xa2\x7b\xed\xdd\x5b\x7c\xb9\x8b\xbf\x6e\x08\xc7\x4c\x53\x1c\x33\x3d\xb8\xba\x63\xc8\x19\xf9\xc4\x87\x64\x77\xc2\x31\x5c\x7a\x80\x8b\xbf\x86\xdc\x11\x8a\x8f\x5a\x8b\x6e\xb9\x18\x57\x29\x87\x9b\x2e\xe2\x64\xbd\x9d\x74\xcc\x36\xfd\x49\xab\xc3\xb1\xc9\xd1\x10\xd9\xb4\x0f\x7b\xce\x38\x75\xfe\x30\xe0\xe1\x28\xa7\x53\x0e\xc7\x29\xe2\x44\xd8\xca\xae\xbf\x8f\x53\x10\x8c\x5f\x28\x31\xed\xd6\xa3\xa2\xa2\x2b\x4c\x47\xa9\x19\xdb\xa8\xf5\xfc\x60\x1c\x12\xdf\x18\xa7\xf4\x08\x9e\xf9\x5e\xcd\xb4\xe3\xb6\xf9\x34\x55\xca\x7b\xbd\x72\x3a\xa5\x5e\x8b\x68\x1b\x84\xa0\x19\x8c\x8c\x8d\x3d\xfe\x1e\x8a\xf9\x82\x72\x2d\x6f\x74\x09\xef\x7c\xb1\xaa\xa5\x7d\x29\x6f\x28\xc4\x05\x12\x92\xab\x8b\x95\x3b\x48\x69\xf9\x2c\x88\x08\x10\x7c\x10\xc2\xa9\xe9\x46\xe4\x7f\xf5\x1c\x77\xf2\xdd\x5c\x3b\x0a\x19\xf1\x86\xbc\xa3\x2d\xcd\x6a\xe3\xe1\x80\xd8\x08\x2e\x8e\x83\x93\xf4\x0a\x17\xa3\x1e\x34\xd9\xda\x0d\x77\x1f\x77\x27\x21\x01\xc3\xc1\xb4\xdf\xd0\xcc\xfc\xb8\x47\x0d\x0d\xc3\x1d\x0e\xb1\x8d\x44\x85\x83\x7e\xd8\x02\x89\xb8\xf4\xec\xb5\x39\x1c\x28\x67\xec\xf5\xf4\x49\x8d\x9b\x5b\x09\xe3\x3c\x3b\x04\x99\xfd\xb5\xc6\x47\x63\xc4\x05\xe4\x9b\xc4\xdd\xb6\x2c\x63\xbb\xfe\x71\xc7\x0f\x38\xf5\xc7\xc7\x14\xd7\x9a\x81\xd9\x48\x60\xd1\xee\xf0\x3b\x40\x66\x53\x69\x5c\xcb\x9d\x52\xb3\x50\xc3\xb5\x07\x45\xb2\xe2\x2b\xb0\xeb\x4b\x0e\x2f\x15\xac\xd6\x69\xeb\x0e\x5f\x9b\xe1\xda\x37\x1c\xd0\x83\xfd\x5d\xfd\x61\x41\xa5\xef\x49\x20\x7f\xd6\x1b\x3e\x6b\x5d\xff\x41\xbd\x0b\x5b\xbf\xfe\x28\xd4\xb3\xbd\x76\x74\xd8\xbf\x49\x12\x96\xf1\xbd\x9b\x47\x31\xc0\xdc\x8d\xc6\x5d\x4f\x7a\x48\x8d\xe3\x39\xbb\x1b\xc3\xeb\x76\x9b\xe0\x1e\xc2\x63\x33\x8d\xdc\xcc\x60\xaa\x2c\xd4\x71\xa0\xb1\x64\x30\xd1\x51\xf6\x62\x64\xc3\x50\xef\xe2\xe4\x96\x49\xd5\x9e\xb8\xae\x92\x3b\x3e\x94\xb0\x58\x85\x43\x4d\x24\x13\x28\xb1\xd1\xa5\xc7\xa6\x16\x77\x1b\xe6\x77\x3a\xb1\x95\xfc\x61\x34\x88\x4b\x52\xc0\x25\x58\xb9\xe2\x61\xb2\xe3\x3e\x0a\x57\x5e\x4c\x98\xaf\x3c\x3c\xd1\x96\x4d\xc6\xb7\xd0\xe1\xcb\xbf\x36\x31\xa2\x21\x6d\x05\xa7\xed\x6a\x43\x0c\xbe\x25\x5d\xc7\x2c\x1f\x4a\x0a\xad\x96\x4b\xa9\xe7\xca\x93\x12\x43\xb2\xd7\xaa\xe5\x83\x1a\xc3\xdd\x1e\xe0\xa9\xb0\x52\x89\x2b\x22\x19\x11\xcd\xc6\x36\x3a\xf7\x15\x61\xfa\x4d\xd8\x37\xf0\x90\x36\x35\x84\xcc\x46\x1e\x33\xe3\xdb\xd1\x38\xb2\xcf\x9d\xff\x8c\x9b\x70\x95\xed\xba\xd1\x34\xb0\x74\xf9\x94\xff\xab\xe7\xee\x7f\x5c\xb4\xb4\xec\xdd\x5f\xe5\x04\xbc\xb6\x5c\x61\xfe\xd8\xb6\x9c\xa8\x9e\x70\xa2\x7a\x81\xc4\x99\xf6\xfd\xe0\x5c\x2d\xd7\xcb\xa9\x4b\x3d\x5a\xed\xa2\x32\x93\x2a\x7f\xa2\x94\xc3\xe2\x1e\x86\x97\x46\x97\x47\x21\x48\x58\x55\x8f\x04\x1c\x2e\x3d\x05\xc0\xe7\x94\xa8\x6e\x80\x42\x5c\x29\x4b\x49\x89\x8c\x2b\x3c\xa6\x84\xa3\x85\xf9\x4e\x34\x96\x4e\xe3\xf5\xbc\x79\x58\xce\x77\x36\x1e\xd6\x97\x2e\xf1\xa0\x92\x5d\x5f\x99\x84\x58\xc8\xe3\x5c\xa2\x3d\x61\xd4\xd8\xb2\x07\x19\xf7\x5d\xd3\x32\xc9\xf1\xe7\x50\x69\x6d\x6d\x03\x1d\xbf\x84\x4c\x98\x6c\x3d\xe4\x7c\xaa\x3a\x47\xaa\x7a\x59\xf3\xd9\x8b\x91\x60\x48\x85\xa7\x80\x93\xc2\x37\x40\x6e\x87\x63\x90\x2b\x9c\x67\x4b\x9a\x96\xb6\xae\xeb\xee\xe9\x39\x8e\x54\x9e\x87\xe4\xc3\xfe\x0e\x2a\x0e\xd8\x3a\xad\x3b\xdb\x6f\xa2\x93\x4b\x33\xd3\xf1\x43\xa4\xdf\xdc\xf3\x41\xd5\xa1\xeb\x83\xda\xb3\x7b\x86\x2f\xb2\x82\x21\x7f\xdd\x26\x5b\xd3\x20\x1a\xfc\x72\xc5\x01\x02\x43\x53\x67\xbe\x90\xfa\x84\x0b\xa9\xcf\xa9\x90\x7a\x81\x42\xb3\x8d\x12\xbf\xda\x99\x46\x73\xd0\x47\x68\xc4\xaf\x79\xcb\x6f\x8e\x48\x0c\xa3\x7c\x49\x08\xe4\x67\x0f\x47\x72\x14\xe9\x37\xd5\xca\x29\x04\x6e\x73\x42\xaa\x0a\xcd\x3d\x47\x01\x75\xce\x05\xfc\x3e\x45\x9c\xe7\xdc\x78\xa0\xb2\x08\x13\x25\x71\x9c\xdd\xfa\x2e\xb8\x64\x88\xee\x31\x93\xfe\xf9\xc6\x0f\xaa\xc2\xb4\xf4\x21\xc2\x05\x6c\xea\xaf\xb9\x94\x20\x07\x1f\x16\x34\xa9\x28\x24\xcf\xd7\x3c\x6f\x71\x59\x0f\x5f\x97\xc6\x31\x07\xfb\x5a\xee\x35\xe7\x13\x19\x33\xd3\x0e\xb5\x4b\x8d\xbd\xf8\x7b\xab\xfb\x51\x4b\xed\x21\x86\x29\x54\x33\xb3\xd5\xdc\x68\x87\x7d\xe9\x66\x47\x12\x0a\x0a\x3a\xbd\x55\xc2\x8c\xdd\x2d\x1e\xf1\xcb\x82\xbd\xbf\xc4\xc3\xbf\xb2\x61\x76\x93\x4b\xcd\xa4\xfe\xaf\xbe\xf3\xe0\x8a\x05\x41\xdc\xa7\x78\xe1\x31\x95\x10\x38\x0e\xf8\x0a\x79\x50\xb6\x97\x7c\x3f\xb5\x4f\x9a\x79\x73\x42\x32\xdc\x09\x33\xb8\x80\x2d\xdf\xbf\xee\x33\xdc\x19\x29\x09\x7c\x71\xed\xb2\x6c\x2d\x11\x50\xd7\xff\xc7\x45\x3d\x8d\xcf\x6b\x4b\x41\x3e\xda\xbc\x7c\xc2\x4f\x26\x99\x51\x6d\x56\x91\x44\xaf\x78\xc2\xda\xd2\xa9\xaf\x2d\xb7\xc6\x3b\xa8\xce\xdf\x33\xe7\xae\xe7\x1b\x09\xc2\x37\xde\x33\x37\xcc\x24\x00\xd9\x05\x3a\x8c\xa0\x9b\xd5\xab\x01\x9c\xe1\xb6\x08\xff\x64\x0b\x84\xef\xb8\x24\x03\x37\x94\xda\xe9\x1b\x0e\x97\x84\xa9\xc3\xc3\xcb\xaf\xed\x70\xf4\x5d\xa8\xec\x4f\x90\xc4\x2d\x48\x88\x9b\x0b\x81\x1c\xe2\x3f\x3f\x0b\xb6\x92\xc5\xaf\x5e\xd4\xe7\x75\x0e\x29\x3e\xef\x1c\xb4\x63\x10\xfc\x07\xdd\xa5\x1a\x77\xf6\x1f\x73\xa3\xaa\x5c\x0a\xb9\xe0\x63\x00\xbf\xb2\x4d\x63\xb7\xaf\xab\x16\xef\x3b\x4e\x98\x06\x61\x70\xe2\x8c\x29\x3d\xbc\xa2\xca\x3b\xef\x57\xbb\x3e\xbc\x38\x64\xde\xf7\x26\x39\xf1\xa8\x24\xe5\xd0\xcb\x27\xe9\x7c\xea\xdd\x8c\xaf\x18\xc5\x7d\xa2\x92\x8b\xd0\xd8\xda\x5d\x34\xea\x1f\xea\x44\xfa\xcc\x9b\xa4\xd8\xbc\x6e\x0b\x8f\xe6\x82\xcb\x8a\x74\x2a\x5e\xf4\xb0\x95\xaf\xb4\xaf\x80\x53\xc6\xc3\x29\x92\x21\xca\x6d\x4c\x34\x5c\xd9\x68\x56\x92\xe2\xa3\x49\xfd\x7f\xb9\x21\x31\xf5\xb7\x21\x5a\xc4\xd0\x48\xce\xb1\x08\x9b\x68\xd8\x21\x34\x75\xa6\x6b\x2e\x50\x1c\xb9\xe7\x5f\x8a\x4c\x82\x46\x25\x31\x7a\x61\x54\x12\xc2\xeb\x8a\x3e\x61\xcd\xa1\x63\xc5\xf2\x13\xfa\x56\x8f\x9e\x85\x0e\x9b\xa6\xca\xd6\x6d\x13\xdd\x81\x79\x8a\xf7\xe9\xda\x46\xf9\x84\xc3\xa2\xa3\x62\x99\x7f\x5b\x75\x5a\xaa\x6e\xc7\xed\x15\x12\xd8\x31\x53\x52\x1e\x61\x70\xc5\x8c\xbb\xd8\x8e\xcb\xc8\x81\xe2\xe5\x9f\xe8\xab\x82\x81\xdb\x3f\x36\x1b\x1a\xd9\x81\x0e\xae\x6a\xbd\x7c\x5a\xab\xd3\x54\x9d\x9f\xfa\x0c\x7e\x23\x91\x2d\x38\x13\x50\xbb\x17\x15\x87\x52\x87\xaf\x2d\x0e\x79\xc3\x23\x95\x71\x8e\xbb\x20\xb3\xc9\xeb\x70\x1f\x26\xe9\xfc\x17\xce\x24\xab\x5e\x3c\x39\x0f\xcb\x00\x1f\x8b\x7b\x6c\x30\x5a\x56\x79\x55\x30\x53\x67\xa7\x4f\x27\x6d\x62\xa0\xe1\x6d\xa1\xd0\x7a\xf4\xd8\xdb\xc1\x5b\x7e\x0e\x43\xb3\x12\x96\x07\xa2\x6f\x44\xa3\xb7\x01\x59\x22\xde\x39\xba\x54\x73\x06\xf3\x62\xbe\x73\x70\xed\x72\xb8\x34\x4c\x7b\x1e\x6f\xc6\x18\x3f\x17\x6a\x32\x69\x25\x32\x19\x8d\x83\x4c\xc6\x16\x90\xb8\xd5\xa3\x97\x82\xce\x6c\x8b\xd1\x81\x46\x82\xd2\x50\x66\x80\x92\xe7\x40\xbc\x0d\xc7\x4e\xbc\xa3\x4d\x4a\x69\x1f\x74\x39\x0f\x99\x91\xa9\xee\xa6\x18\x0e\x6f\xfb\xf7\xf6\x80\x19\x4f\xc0\x60\x15\x70\x45\x27\xef\xdb\x9e\x0e\x4f\x9a\x46\x05\x5e\x03\x5b\x24\x16\x52\xcf\x16\x38\xfa\x2e\xaa\x2b\x33\x21\x2b\x2e\x75\xf4\xec\xe5\x8b\xd1\x73\x97\xbe\x9e\x7f\x0f\xcb\xb6\xa2\xde\x6f\x86\x27\x24\x61\x3b\x28\x70\xc8\x4d\x32\x87\x66\x7f\xdf\xd3\xb6\x51\xa5\x61\x1c\xfe\x91\xda\xd8\xa3\x22\x2c\xae\xb2\xfc\x2e\xd6\xf1\x77\xf4\x86\x45\x80\x8f\x22\x59\xc9\x7d\x1d\x33\xb5\x5c\x18\xba\xc4\xb1\x8b\x4d\x2b\xd4\xa5\x89\xfe\x7a\x45\x0f\x80\x61\x84\x75\x52\x65\x65\x33\x73\x3c\x21\xcc\x00\x6f\xb3\x3b\xa4\x9b\x3e\x16\xcd\x3e\x42\x1c\x22\xc1\xeb\x44\xa2\x2b\xc8\x91\x5b\x3e\xaa\x66\xbf\xed\x86\x55\x59\xcf\xa2\xd6\xe8\x31\xe9\xa1\xe8\xc0\xde\x86\xb4\x88\xa3\x0c\x89\x31\x67\x1c\x52\x0f\xdf\xb4\x1e\xf2\x66\x1e\x98\x3e\xcc\xf4\xf1\x16\xef\xca\x1b\x9b\xb8\x7f\xf5\x4e\x29\xcf\x70\xd7\x77\xde\x8b\x6b\x4c\x1f\xa7\x1e\xe7\xcc\xb5\xe3\xde\x86\x8c\x9a\xf1\xf4\x78\x0e\x40\x8e\x30\x47\xcb\xe1\x5e\x79\x1b\xdd\xb1\xea\x2e\x88\xba\x9a\x3c\xf4\xe6\xef\x64\x9d\xee\x8c\x40\xcd\xfd\xbe\x18\x13\x70\x3f\x2c\x9c\xa1\x18\x3d\xc8\x4a\xdc\xb0\xb1\x05\x1f\xa6\x10\x91\x5a\x9e\xc3\x1a\xbf\x7d\x1b\x06\x3a\xf7\xa2\xaa\x1b\xe6\x9a\xea\xe9\xe1\x2d\xd4\x6e\x17\xaa\xc5\x2f\xe7\x9e\xcd\xbe\x98\xeb\x0a\xfa\x3b\xa1\xd9\xa2\x31\xb9\x47\x9a\x13\x87\xbb\x8e\x07\xb2\x23\x07\xa0\x70\xb4\x60\x95\xb3\xd1\xff\x95\xbe\xfe\xd9\x9d\x25\xde\xda\x94\x9f\xee\x19\x5e\xea\x8a\x70\x72\xf2\x1e\x55\xd4\x02\x6b\xfb\x6c\x04\x83\x36\x9b\xb6\xb3\x8f\x68\xb9\x56\xfc\x91\xbe\x59\x22\x3b\x7f\x9e\x2d\xd4\x6d\x74\xbd\x1d\xee\x34\x7b\x8c\x1f\x7b\x39\xd8\x04\x67\xd6\xb0\xc6\x72\x28\x89\x35\x74\xa2\x71\xcb\x27\x78\xd2\x8d\xcd\x01\xed\x70\xb2\x6b\x58\xe2\x6d\x56\x42\x6a\x70\xaf\x5d\xc0\x6b\x91\xc1\x09\x22\x8f\x5b\xc8\xa9\x23\xda\xc7\x0d\xee\xc9\xfd\xae\x15\x39\x22\x5a\xa8\x23\xfc\xa2\xb4\x49\xdf\x74\xd3\x92\x5e\x44\x3d\xf5\x7a\xe3\x38\xdb\x23\x27\xed\x18\x3b\x20\xe6\xe7\x9f\x3e\x79\x3e\x2d\x39\xb3\xe7\x5d\xce\x21\x89\x88\x1f\x81\x9e\x23\x08\xe2\x14\x9b\x9b\x84\x73\xa6\x8d\xca\x1d\x9b\x82\x20\xe1\x5c\x2b\x9c\x33\x29\x47\x0b\x56\x36\x1c\x6e\xcf\xdf\xb3\x65\x66\x16\x3a\x58\x58\x4b\x9b\x56\xf4\xa3\xe7\x67\x3b\xa7\x23\xc0\xee\x14\xd8\x89\x30\x10\xaa\xc9\x8b\xcd\x52\x11\x4a\x5c\xa0\x3d\x12\x03\x32\xcf\xf7\xeb\x68\x43\xfb\x92\x84\x0f\xaf\xb3\xd4\x1f\x20\xc4\xab\xda\xe3\x72\x3e\x7f\xb6\xc9\x54\xea\x0c\xc8\x91\xd0\x7e\xc8\x46\xa2\x28\x6d\x24\x8e\x1d\x88\xa8\xa9\xdb\xeb\xd8\x82\x52\x7e\xd8\xe9\x87\x85\x37\x49\x80\x9e\x58\xd5\x06\x10\x46\x5e\x2e\x7d\x30\xaf\x3c\xbb\x30\x91\x01\xcf\x6d\xe9\xf1\xdc\xf0\x24\x7c\x1d\x1f\xc9\xe4\x77\xd4\xa6\x93\x99\x6f\x69\x66\xa8\x65\xc6\xb6\x56\x0f\xa9\x38\x28\x1a\xb7\xc4\xc7\xa4\xcb\x17\x75\xbc\x82\xd5\x03\x44\xc6\x4e\xcb\xf9\x6d\xe4\xdf\xf4\x18\xb6\xd2\x67\x2e\x45\x8f\x24\x86\xd9\x45\x3a\x10\x12\x50\x72\x60\x9a\x51\x7e\x08\x02\x59\x24\x95\xc5\x05\xbd\xf2\x1a\x76\xc2\x8f\x61\xfb\xac\x78\xc3\xfa\xb4\x9a\xf0\x35\x6d\xe1\x6f\xd0\x15\xa5\x59\x1a\xef\x2e\xaa\x31\x8a\x1a\x61\xf2\x35\x64\x0e\x97\x2c\xf1\x1b\xfe\x69\x91\x4d\x0a\x98\x6f\x4d\xd2\x06\xe7\x0c\xaf\x81\x7b\x22\x22\xd3\x71\x33\xd6\x9b\xce\xe8\xbb\x1b\x32\xa2\xd3\x1a\x61\xb4\x04\xb7\x46\x5a\xe2\xdb\x8f\x11\xd0\x96\xc4\x8d\xc5\x5d\x1e\xf4\x18\x42\x69\x7c\xc8\x8a\xfc\x5d\xe5\xf2\x92\xcb\x61\x74\x4d\x3b\xd4\x18\x24\xa1\x38\x65\xf5\xc1\x28\x06\x69\xc8\x8c\xc6\xee\x93\x6c\x49\x09\x8b\xb8\x08\x2b\x11\x83\xa3\x7a\x36\xba\xe7\x57\xbd\xe9\x88\x5c\x4a\x20\x15\x7c\x33\xbe\xb6\xb3\x75\xd6\xd2\xc9\xc5\x34\xe3\x6b\xc1\xef\xba\x6b\xb3\xe4\x4c\xa0\x54\xdc\x77\x65\x72\x49\xa4\x89\x4f\x09\xc7\xe5\xef\xd5\x55\x72\xef\x6e\x7c\xdf\x96\x9c\x13\x77\xf9\xb8\x9e\x0b\x4d\x7e\xfd\x47\x7f\x19\x97\x1b\x0e\xdb\x6a\x96\x7f\xe9\x37\xa4\x26\xd6\x19\x28\xa8\x58\x6d\x46\x6d\x8b\x41\x87\x9b\xff\x2f\xdc\xfe\xd0\xd0\x5f\x64\x7c\x70\xc4\xb9\xa6\x6a\x8e\x9e\x69\xac\xd0\xe3\xdf\xdd\x5a\xb8\xca\x84\xe7\x2b\xb7\x94\xfc\xf2\x13\x1e\xc2\x1c\x83\x8a\x4f\x74\x03\x44\x72\xac\x7f\x0c\x8d\x3b\x0f\x3c\xf0\xf8\x78\x78\xa3\x37\x4b\x2b\x67\x13\x65\x58\x94\xf0\xbb\x81\x17\xc3\xce\xee\x70\x4a\x77\xf5\xe1\xca\xdf\xe5\xe7\xae\x01\x2c\x39\xca\xa7\x90\x43\x02\xf0\xc3\x7c\x38\x9c\xe8\x64\x6c\x68\xac\xc5\x1b\x99\x7a\x63\x97\x82\xc2\x7c\xaf\x26\xe2\xc8\xf9\xa8\x27\x87\x90\xe3\x9f\xfb\xf9\x41\xbd\xfc\x80\xa8\xeb\xb6\x2d\x52\x12\x32\xf0\xf0\xd6\x07\x3b\x4a\xe1\xc7\x62\x7d\xc2\x25\x25\xc8\x25\xad\x3e\x25\xa5\x14\x90\x1f\x12\x52\xf8\xff\x9e\xfe\x37\x5d\x9c\x42\x3b\x92\x9b\x31\x75\x86\xcb\x65\x39\xad\xa3\x94\xca\x6e\xe5\x15\x71\x43\x34\x2d\xe5\x5b\xd0\xa4\x77\x4e\xe5\x6e\xe5\x6e\x34\xfe\xc9\x89\x97\xb6\xad\x38\xc9\x3f\xd4\xcb\x4e\xda\x8e\x93\x40\x75\xf0\x7f\x6f\xcc\x96\x13\x9a\x6e\x63\x7d\x22\x8d\x81\xd4\x75\x69\x0c\xe3\x78\x93\x74\x9c\xde\x19\x2d\x0d\xe6\x5a\x7a\xa8\xf4\x7e\xe5\x07\x24\xa3\x91\x34\x3f\x1c\xfe\x06\x74\xff\x5f\x00\x00\x00\xff\xff\x82\xa5\x59\x58\x90\x8c\x00\x00") +var _confLocaleLocale_plPlIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\x5b\x8f\x1c\x37\x96\xe6\xbb\x00\xfd\x07\x5a\x03\xc1\x36\x50\x4e\xa1\xbb\xb1\x17\x18\x4a\x79\x65\xc9\x6d\xab\xad\xdb\xa8\x24\x08\x63\xc3\x48\x33\x23\x58\x59\x51\x19\x19\x8c\x8e\x8b\x52\x91\x83\x79\x58\xc3\xc6\xfc\x06\xad\x5f\xe6\x3f\xf4\xd3\xf6\xfa\xa9\xad\xfa\x5f\x7b\xbe\x73\x48\x06\xe3\x92\x25\xb9\xb7\x31\xfb\x52\x95\xc1\x3b\x0f\x0f\xcf\x8d\x87\x87\xba\x2c\x57\xa9\xa9\x93\xe5\xe7\xe6\xb0\xb6\xb9\xa9\x0b\xad\xda\xfa\xf2\x87\x76\xa3\xd5\x97\x59\xa3\x0a\x5d\x66\xb5\xa6\xc4\xbd\xfa\xd2\xaa\xf4\x90\xe9\xcb\x1f\xf4\xc5\xdb\x9f\x12\xad\x90\x48\x1f\x75\xd1\xed\x54\x6d\xaa\xbd\xa9\x0e\xe6\xfa\xb5\xeb\xd7\xce\xed\xce\x2c\x4f\x9b\xca\x52\x81\xcd\xe5\x0f\xbf\xfe\x65\x5f\xe8\xeb\xd7\x52\x5d\x9f\xaf\xad\xae\xd2\xe5\xd3\x36\x2f\xb3\xe6\xfa\x35\xf3\xba\xcc\x6d\x65\x96\x4f\xd2\x6d\xd5\xed\xf5\x05\xd5\x34\x79\xb9\x7c\x6a\x77\x36\xb9\x7e\xad\xce\x36\xc5\x2a\x2b\x96\xdf\xe8\xdc\x6e\xda\x0b\x55\x67\x6f\xdf\x50\xaa\x4d\x32\x9d\xaf\x7c\xe6\x33\x73\x61\xea\xa6\xd2\xc9\x85\x56\x65\x75\xe8\x54\x89\xca\x1d\x15\x36\x49\xa6\xea\xd2\x5e\xfe\x60\x92\x43\x61\x2f\x7f\x4e\x32\xbb\xef\x92\xf3\x4f\xd5\xef\xd5\xb6\xb2\x5b\x75\xbb\xde\xe9\x3c\xbf\xb3\xb5\x17\x9a\x86\x5d\x64\x46\x6d\x6d\xd1\xe8\xdb\xb7\x24\xdd\xf5\x6f\xdb\x66\xf9\xb2\xe3\x01\xb8\x94\xb6\xa4\x11\x55\xd2\x6d\x18\x55\x65\x36\x59\xdd\x98\x6a\x26\x6b\x6f\xd6\x75\xd6\x78\x78\x5c\xbf\xf6\xca\x54\x75\x66\x8b\xe5\x4b\xfa\x7f\x41\xdf\xa5\xde\xf4\x99\x8d\xd9\x95\xb9\x46\xe9\x83\x5e\xe7\xb6\xb8\x7e\x2d\xd7\xc5\xa6\x45\x91\x3f\xbd\x7d\x73\xe8\xb6\xd7\xaf\x25\x95\xa1\x02\xab\xc2\xec\x97\xf7\xf8\xa7\xa2\x9f\x8b\xc5\xe2\xfa\xb5\x96\xd6\x60\x55\x56\xf6\x2c\xcb\xcd\x4a\x17\xe9\x6a\x07\xe0\xbe\xa0\x54\xe5\x52\x15\xa5\x2a\xa4\xca\x5c\x4c\x4a\x20\x5c\xe9\x7a\x79\xca\x1f\x2a\x2b\x94\xae\xb1\x80\x68\xa9\xd0\xb4\x88\x8f\xf5\x61\xaf\xd5\x8b\xcb\x5f\xba\x66\x6b\xf7\x45\xb6\xa5\x31\x9a\x9d\xce\xf2\xe5\x17\x9f\xe0\x1f\x86\x5f\xd7\x7b\x4b\x8b\xfa\x95\x26\xa4\xb1\x00\xc5\xaa\xe9\x4a\xb3\x7c\x49\x68\x73\xa0\xe5\x28\x50\x8f\x3a\x4c\x74\xd9\x24\xe7\x7a\x79\x4f\xfe\xa3\x9b\xca\x94\x96\x60\x63\xab\x8e\xd6\xb1\xb4\x87\x8e\x7e\x66\xed\xee\xfa\x35\x5b\x6d\x74\x91\x1d\x74\x03\x40\x3d\x71\x1f\x09\xa0\xb5\xcb\xaa\xca\x56\xcb\x47\xfc\xef\xfa\x35\x9a\xfa\x0a\xad\x2c\x1f\xdb\xbd\x51\xd5\xa0\x11\xe4\xed\xb2\x4d\x05\x70\x52\xb6\x56\xfc\xc1\xad\x20\xeb\xcc\x56\xdb\xe5\x1f\xe9\x0f\xad\xd4\xb4\x22\x8d\x40\x2a\xd9\x41\xef\xb4\x0f\x36\x86\x33\x69\xa1\x0f\x6f\x7f\x4a\x0f\xfa\x22\x2e\xb2\xcb\xae\x5f\xd3\xe9\x8e\xa0\x5a\xea\xc2\xe4\xcb\xa7\xf8\xab\x38\x85\xaa\xeb\x24\xb1\x6d\xd1\xac\x6a\xd3\x34\x59\xb1\xa9\x69\x6d\x1a\xbd\xcf\x08\xf9\xb4\x20\x1f\x2d\xcb\x34\xeb\xfa\xb5\xce\xb6\x61\x61\x97\xff\x42\x1f\xea\xa9\x7c\xb8\xac\x50\x89\xf3\x4e\xdd\x17\x20\x4c\x53\xa9\x57\x67\xc6\xa4\xcb\xaf\x69\xe8\x97\x3f\x28\xbd\x6d\x5a\x9d\xcb\x7e\xa0\xc5\x6b\xf3\x9c\xe0\xf7\xe7\x96\x30\xb6\x5e\x3e\x49\x0e\x86\xa0\x41\x5b\xdb\xa8\xc3\x2e\xd3\x45\x77\xfd\x5a\x56\xd7\x94\xb9\xa4\xfe\xd6\xb9\xd9\x75\x68\x33\xd1\x45\x42\x53\xbb\x5b\xb4\x39\x36\xc5\xf5\x6b\xdf\xd6\x46\x57\xc9\xf9\x77\x18\x3d\x7e\xd0\x86\xa9\x0f\xed\x36\xdb\x13\x54\x0c\x63\xe6\xd1\x85\x06\xa2\x2d\x23\xf4\x72\x1d\x2e\xbf\x21\xb2\x61\x6b\xde\x96\xd4\xa1\x4d\xcd\xf2\x6b\x9b\x72\x5f\x59\x41\x80\xc9\x73\xea\xcc\xfd\x5a\x3e\xe0\xff\xb2\x40\x4d\xd6\x10\x88\xbe\xa6\xfd\x9d\xa9\xcc\xa5\x77\x17\x85\x51\x69\x4e\xf4\x21\x23\x1a\x45\x8d\x6e\xac\x6a\xab\x36\x21\x2a\xe5\xe0\x0b\x08\xd0\x16\x5d\xa5\x6b\xa1\x84\x5f\xda\x4d\xad\xf6\xdd\x4e\x13\x09\x7c\xd4\x9d\xfe\xf3\xc3\x13\xf5\xd4\xd6\xcd\xa6\x32\xf4\x5b\xe5\xed\x5a\xd1\x7f\xaa\xf0\x07\x9a\x1a\xd5\x91\x4e\xa3\xb5\x5c\x6b\x22\x44\x29\xc1\x2f\x39\x97\x02\xd8\x0f\xcf\xbb\x72\x98\x71\x4e\x4d\x2e\xbf\xa2\x3f\x73\x60\x98\x6c\x2b\x6a\x26\xda\x91\xe3\x1e\x40\x37\xa9\x09\x5a\xa6\xfa\xf0\xf6\x8d\x6a\xa9\xa9\xb7\xff\x4e\x04\x28\xc7\x96\x55\x0f\x1e\x3f\x7e\x72\xff\x73\x75\x20\x24\x4b\x2d\xaf\xca\x4e\xb5\xcd\xd9\x7f\x5f\x6d\x4c\x61\x2a\xa2\xa6\x44\x2a\x01\x20\x9e\x2b\xcd\xa9\xae\x73\xa2\x1d\x04\xf4\xe7\x55\x47\x73\x3d\x7d\x88\xf1\x34\xe7\xcb\xcb\xff\x95\x64\xe6\xf2\x17\x10\x81\xfa\xcf\x39\x20\xe6\xfa\x0d\x19\x2a\xb5\x32\xb6\x1e\x40\xa6\xaa\x56\x44\xd5\x9a\x6e\xe5\xea\x0c\x9b\x0a\x35\x64\x36\xbe\xa2\x02\x41\xde\xd9\xcb\x5f\x8c\x5a\x63\x2a\x65\x4b\xe0\x5d\x00\x03\xfc\x98\x27\x50\xb7\x9b\x5f\xff\x92\xd3\x52\x63\xf5\x68\xaf\x11\x5b\x8b\x00\xa6\xcb\x9c\x20\x91\x5c\x64\x7d\x8e\x1f\xfc\x0b\x42\x83\xcb\x9f\xa9\x8f\xa6\x6d\x68\x37\x53\x6b\xf9\xf6\xed\x4f\x2a\x03\xeb\xa2\x7d\x52\xd0\xef\x82\xda\x20\xb0\xd2\x8a\x5c\x98\x78\xbf\x67\x1f\x08\x6e\xcb\x9c\xbe\xd6\x0d\x58\x55\x44\x4d\x88\xf3\x45\x05\x7c\x87\x2f\x55\x43\x0c\x73\x2b\xa5\x5b\x75\x20\x14\xd0\xe8\xe5\x20\x9c\xd6\x28\x42\xd2\xae\x6e\xb6\x59\x4c\xd1\x98\x19\x63\x2b\xb5\xc4\x82\x80\x2e\x32\xaf\x36\x22\xcd\x31\x56\x13\x39\xdc\xd8\xbe\x74\x98\x6b\x5f\x5c\xed\xda\x3a\x23\x9a\x68\x68\xe6\x29\x0d\xe1\xed\x9b\x12\x6b\x11\x86\x35\x98\x05\x41\x83\x1b\xd7\x20\x0b\x18\x0b\xc1\x18\xc8\x6f\x89\x09\x14\xcb\xfb\xc4\xef\x99\xc3\xf3\xa7\xef\xeb\xb9\x55\xfb\xf2\xf2\x87\x0e\x2b\x49\x82\xc0\x8b\x67\x0f\x0d\x77\x90\x83\x25\x70\x2b\xa5\x25\x96\x6d\x0e\x84\x61\x5f\x51\x63\xe7\x4d\x53\xae\x4a\x5b\x35\x24\x00\x54\x8d\xfa\xea\xf9\xf3\xa7\x51\xa2\x6f\xf5\x71\xbb\x03\x3f\xa3\x94\x16\xad\x6e\x9b\x5f\xff\x52\x11\x34\xfd\xfa\x6a\x05\xee\xeb\x27\x54\x00\x65\xb0\xde\x6d\x45\x04\x2b\xad\x4c\x8d\x61\x8c\x91\x81\x32\x8f\x8c\x59\xa3\x4a\x17\x0f\x19\xa3\xba\x85\x3f\xa7\x04\x92\x3d\x21\x8b\xa6\x49\x33\x35\xd5\x84\xbc\x86\x99\x22\xa3\xa9\x2d\xc1\xbc\x66\xf1\xb4\x4c\x2e\x90\x53\x18\xc7\x4b\xa7\x45\x44\x98\xd2\xae\x3d\xda\x6d\x3b\x82\x02\xd3\x8b\x53\xce\x51\xa7\x8f\x00\x1c\x4e\x3e\xab\xec\x8e\x24\xa8\xe8\xcb\x4f\x46\x26\xbc\x27\x60\xe5\xad\xba\xf1\x24\xbd\x71\xa2\x0e\x1b\x9b\x62\x6e\x07\xf5\xec\x8f\xf7\xd4\x7f\xf9\xc3\xef\x7f\xbf\x50\x8f\xfa\x5d\xd6\x58\x2a\x0c\x61\xa1\x26\xe8\xf2\xe4\x15\x8f\xf0\x44\xad\x89\xd7\x5d\xfe\xf5\x6f\xff\xa1\x5d\x9b\xc4\x3d\x77\x9a\xb6\xb0\xba\xc1\x78\x78\x43\xdd\xe6\x82\xff\xc3\xbc\xd6\x24\xc1\x98\x45\x62\x77\x77\x16\x60\x98\xc4\xa5\x2a\x8f\xb0\xa9\xde\x93\xd4\x18\xc1\x4c\x79\x29\xc2\x95\x1b\x51\x3d\x5a\x02\x54\xe9\x7a\xf9\x6a\x95\xd8\xe2\x2c\xab\x76\xcb\x97\x97\x3f\x10\x9f\x82\x7c\xd1\x10\xcc\xaa\xf4\xc0\x70\xab\x82\x34\x98\x49\x9b\xab\xc2\x36\xd9\x59\x17\x15\x97\xde\x05\xcc\x01\xbc\xa6\x22\xa9\x6c\x85\x7f\x59\x62\x8e\x2f\x07\x78\x0a\x13\x29\x91\x8f\x69\x91\xcf\xce\xf2\xac\x30\x42\x2c\x7d\x1f\x0d\x88\xa6\xcb\x19\x16\x21\x44\x2e\x49\x7c\x7c\xd9\xb9\x92\xf7\xee\x3f\x3e\xa1\x39\xee\x4d\x43\x10\x45\x35\x82\x27\x01\x3f\x6d\xb7\x60\x5a\xdd\xee\x24\xa2\x04\x40\xd9\x8c\x48\x44\x6d\xd7\xd8\x8f\xeb\xb7\x6f\x52\x22\x19\xa5\x25\x00\x81\x64\xe4\x76\x4b\x18\x45\xec\x96\x76\x21\x11\x11\x62\xd6\x2b\x81\x59\x25\x42\x54\xe8\xb3\xd6\x34\x92\x03\xd1\x38\x50\x9c\x1e\x5e\x90\x54\xe7\x2a\x8e\x87\x7c\xb4\xfa\x80\x12\x9d\x10\x85\xcb\xb7\x56\x04\x1f\x69\xcb\x56\x3c\xe6\x03\xc8\xfa\xaf\x7f\x21\xd2\xaa\x1a\x5a\xe9\x03\xb0\x8e\x45\x9f\x85\x63\xc3\x24\x3e\x3a\xd9\x7e\xf5\x2a\x23\x19\xd7\x43\x95\xd8\x31\x55\x23\x00\x10\x71\x72\x7b\x31\x05\xaa\x12\x3b\xcf\x09\x37\x39\xa1\x86\x14\x3d\xdf\x8e\x9b\xc7\x73\x1e\x56\xdf\x48\x34\x6a\x52\x1a\x1c\x50\x77\x76\x93\x67\x51\xd3\xe0\xa4\x68\xb9\x3b\x51\x1b\x46\x5b\xda\x3f\x76\xad\x13\x92\xff\xdc\x3c\x39\x9b\x60\x10\xc6\xb6\xf0\x62\xa0\x13\xcd\x44\xae\x78\x8c\xc9\x13\xd5\x25\xb9\x78\x38\xf9\x21\xa0\xb4\x22\x4c\xd7\x87\x93\x18\xa4\xb4\x63\x1f\xdc\x57\x4b\xf5\x3b\x45\x08\xc1\x5c\x53\x28\xf6\xa8\xa2\x6e\x1b\xa2\xc1\x4d\x47\x2a\x0f\xe3\x82\x0c\x62\x82\xd0\x73\x9d\xfa\xc2\x47\xe5\x7e\x2f\xd7\x8e\x04\x13\xb7\x23\xfb\x8c\xa7\x6e\x4b\x5e\xfe\x55\x9d\xbb\x32\x52\x75\xa8\x38\x38\xf1\x6d\xb5\x21\x56\x42\xd2\xb4\x7c\x92\x2c\x2e\xec\xbb\x21\xc4\x5a\x6d\xb2\x66\x75\x06\xca\x90\x32\xe8\xda\x54\x83\x28\x40\xad\xe2\xd5\x41\x19\x02\x37\xa4\x03\xd2\x5b\x13\x9e\xd9\x0d\xaa\x73\xe3\x53\x75\xf3\x95\x17\x51\xfe\x00\x12\xb0\xd2\xaf\xa8\x19\x20\xf7\xf2\x39\x78\x38\x61\x13\x30\xc6\xb0\x94\x61\xd7\xbc\x9b\x5b\x4a\x76\xc2\xc7\x09\x93\x40\x08\x52\xa5\x5d\x57\xe8\x80\xa4\x6d\xe2\x2d\x90\x2e\x7c\xcd\x83\xba\x59\x9f\x28\xad\x1e\x3f\xf8\x42\xed\xa1\xca\x51\xe9\x03\xe1\xc7\xba\xcd\xf2\x74\x81\xe9\xbd\xd2\x79\x96\x42\xa6\x74\x38\x70\x44\x42\xe4\x31\xd4\xbc\x97\xcb\x4a\xef\x0b\x23\xa3\xf7\xf5\x7b\xf1\xa2\x17\x99\x86\xac\x19\xf5\x99\xe9\xb9\x06\xb4\x34\x10\x58\x3f\xe6\x4f\x38\x41\x72\x79\xcc\xfd\x03\x0f\xec\xeb\x3b\xdd\x80\xb8\x69\x84\x78\x24\x2b\x52\x7b\xb5\xfa\xe4\x0e\xfd\x25\xa0\xea\x57\x46\x88\xf0\xe6\xd8\xd2\x88\x18\x23\xa8\x4d\xc5\x5a\x26\xc7\xc3\x49\x0d\xf6\x06\x1a\xc0\xc0\xb3\x94\x9a\x20\x2d\xae\x9d\xc5\x53\xed\x5b\x10\xac\xa9\xdb\x24\x31\x75\xbd\xbc\x77\x60\xd9\xed\x03\x75\x2f\x33\x44\x2b\x77\x1d\x8f\xe1\x44\x81\xa5\xed\x41\x50\x2b\x1a\x18\x15\x61\xb4\x22\x36\xa6\xf7\x32\xc8\x94\x16\xf6\x60\x98\x53\x7f\x0b\x73\x05\xe9\x13\xad\x08\x85\x36\x4f\xe7\xa5\x2b\xc8\xfd\x66\xa4\xf5\xfa\xe2\x7e\x33\xd4\xfb\x8c\x00\xbd\x0a\xa6\x0e\x80\xaa\x31\xaf\x49\xa4\xa1\xde\x1c\x25\xc3\xa4\xcc\x96\xe0\x2d\x44\xc5\x5b\x48\x0c\xe9\x52\xbb\x8e\xd7\xbb\x5e\x3e\x02\x92\x46\xc2\x1f\xb6\x59\x4e\x08\x6c\x41\x95\x5f\x19\x57\xea\x65\x5d\x8a\xc8\x3b\x28\x49\x8d\x90\x84\xea\xda\xe8\x65\x55\xc3\x39\xa2\x3f\xbb\x4c\xf9\x60\xa5\xee\x5b\x67\x8b\xf9\xce\x29\x6b\x91\x9e\xc6\xaa\xfa\xb7\x44\x59\xa0\xe1\xf5\xd6\x87\x95\xd3\x66\x69\xef\x62\x02\x97\xbf\xa8\x02\xab\x87\xd9\xd9\x88\x61\x9f\x9b\x12\x9c\x7d\x57\x6f\x96\x8f\x34\x11\xbe\x0b\x82\xa9\x14\xfa\x4c\xc5\x96\x1d\xa1\x79\x1f\x04\x03\xcf\x7b\x35\xf0\x94\xd8\xf9\xdb\x9f\xe8\x9b\x26\xe3\xeb\x0f\xb9\x98\x58\x44\x48\xfd\xe0\x15\x20\x34\xab\x0f\x9a\x90\xa4\x8a\xcc\x46\x2c\x7f\x5f\xfe\x40\x82\x89\x63\x72\x24\x9c\x2d\xa0\x61\xd7\x19\x95\xb4\x82\x84\xdb\x86\x76\xf7\x80\x60\x1a\xb1\x79\x65\x75\x3b\xe1\xb9\x18\x2e\x48\x5d\xdc\xe5\xc9\x71\x51\xc5\x8f\xa0\x8b\x46\x60\x94\x88\xc6\x43\x1a\xcd\x4c\x72\x67\x76\x6b\xf4\x40\x5a\xb2\x2e\x49\x20\x7f\xfb\x06\x6a\xcb\x8e\x55\x65\x12\xcb\x36\xb4\xdd\x03\x2d\xa6\x12\x96\x72\xb0\x07\x76\x42\x8d\xb5\x14\x32\xf3\x85\x68\xa3\x48\xa9\xcf\x82\xb5\x8b\xe8\xc7\x1e\x34\x9d\x86\xb3\x26\x1a\x59\x0b\x02\x6b\xac\xde\xd0\xd4\x25\x2b\xb0\x08\x1c\x41\xe4\x07\x96\xc2\x6a\x53\x34\x7e\x1d\xd8\xaa\x12\x64\x40\x22\x13\xb2\xa7\xd4\x50\x96\xa3\xe1\x46\xeb\x82\x11\x15\xcc\xf0\x6f\xaf\xef\xdc\xac\x6f\xdf\x5a\xdf\xe9\x69\x74\x0d\xe2\x41\x82\x05\xd8\x34\x11\x77\xa2\xa4\xf5\x96\x78\x6b\xb1\xa5\x3c\x9b\xae\x33\x5b\x31\xa7\xde\xab\x84\x70\x65\x03\xad\xe1\x62\x9d\x67\x97\xbf\x10\xb9\x20\xea\xbb\x81\x38\x53\xa8\x9b\xa9\xd2\x6b\x22\xc9\x76\x6b\x2f\x7f\x4c\x98\x33\x53\xfb\x44\x62\xe2\x85\x5a\x04\xa3\xa4\xe3\x65\x03\x04\xa6\x01\xd6\xfb\x5f\xff\x72\xe1\x05\x67\x47\x2a\x74\xc2\x3b\x96\x0d\x35\x7e\xcb\xdc\xdd\x36\xdd\x1e\xf5\x98\x19\x85\x2d\xc3\x60\xca\xb3\x5d\xd6\x03\x8b\xa8\x5a\x63\x1a\xc2\x9e\xc3\xba\x6b\x14\x4d\xe4\x0d\xf1\x3c\x40\xa4\x83\xe1\xf5\xe0\x81\xa7\xd1\x20\x9b\x3a\x3a\x41\xdd\x03\x4f\x1e\x06\x1d\x50\xe2\x3f\xd0\x56\x2f\xda\xa6\x83\x96\xa5\xeb\x55\x5b\xb8\x25\x32\xa9\x20\xea\xcb\x8c\x50\xe8\x84\x39\xda\x0e\xad\x12\xfc\xc3\x62\x80\x44\xc5\x33\x52\x1f\x85\x35\xf8\x78\xa1\xfe\x44\x28\x93\x0b\x0f\x01\x8a\x74\x3b\x87\x45\xb1\x90\x7f\x6c\x81\x41\x50\xcb\x18\xb1\x64\xa1\x69\xbc\x84\x72\x6f\x7f\x3a\x21\xbd\x2b\xdb\x16\xd9\x05\x20\x5b\xda\x42\x96\x8c\xad\xbc\x49\x56\x6f\x17\x0e\x62\x6e\x0a\x5f\xbb\xb2\xac\xc4\x9f\xf0\x62\x86\xe6\xa6\x40\xf2\x9a\x17\xcb\x06\x35\x93\x9c\x86\x64\x03\x53\x0c\xa7\x1a\x58\x63\x2d\x66\x62\xc0\xe2\x40\xbc\x45\xa7\xe0\x92\x4c\xc8\x77\x40\x0a\x8c\x02\x83\x69\x8e\x8e\xe5\x23\x6f\x08\xfd\x78\x32\xac\x03\x5b\xaa\x2a\x12\xfa\x61\x3f\x54\xdc\x8e\x93\x70\xfd\x8e\x95\xb6\xc3\x86\x7d\x16\x8a\x98\x50\xc4\xb3\x56\x36\x96\xf5\x68\xd3\x30\x46\x6e\x6d\xda\x03\x9f\x8d\xf7\x80\xce\x06\x55\x79\x15\x78\x8e\x45\xcc\x86\xbb\xc5\xb8\x57\xaf\x55\xce\x4c\xee\xe0\xc7\x4c\x93\xf2\x22\x5f\xa8\xd6\x58\xbb\xaa\xcf\xa1\xd6\xdf\x87\x98\x25\x7b\x5e\x46\x3d\x36\xf2\x80\x86\x5d\x10\xb5\x54\x58\x6b\xf5\x5f\xd5\xa1\xd0\x5b\x62\x8d\xc2\xa5\x49\xef\xd0\x30\xfb\x75\xa6\x5e\xfe\x8b\x21\x51\xa4\x80\xd5\x97\x98\x9a\x4d\xa1\xe1\x3d\xe2\x7f\x5c\x12\xba\x29\x15\x84\xe1\xfb\xf1\x31\x61\x16\xec\x2d\xca\x1c\x1a\x80\xbf\xe0\x55\xbc\x3b\xd8\xc6\x4f\xc7\x72\xef\x33\x33\x63\xe6\x0e\xd3\x3f\x3d\xfd\xea\x39\x4b\xdd\xd2\xfe\x36\x6f\x13\x9a\x17\xa5\x5e\xbf\xf6\x55\xd3\x94\xf5\x8b\x2a\x5f\x8a\x19\xe1\xc5\xb3\x87\x68\xbd\xcb\xad\x4e\x91\x0a\x03\x45\x8a\x2d\xbe\xb7\xa0\x7a\x60\xbf\xcf\x8d\xde\x45\x83\x3d\x18\x3e\xd7\x68\xaf\x5f\xbb\x4b\x4c\x39\xca\x80\xf4\x5f\x75\x07\x51\x7f\xef\x82\x73\x7c\x11\x89\xdc\x13\x79\xbf\xd7\x94\x0c\x1b\xd5\xbf\x9f\x33\xba\x99\xc5\xf7\x44\xc3\xf2\xf2\x5c\xb3\x54\x13\x8a\xb2\xf5\x88\xe9\x5e\xbd\xa5\x71\xb2\x96\x44\x70\xe8\x11\x88\x68\xab\x5b\x3f\xa5\xf3\x33\x5d\xc0\x6e\x03\xbd\x84\x32\x88\xca\x74\x44\x36\x68\x25\x90\x4b\x63\x01\x00\xd3\x6d\x05\x5a\x62\x2e\x7f\x1c\xf5\x98\xd2\x1e\xfd\x87\xf7\x7a\x32\xe8\x51\xc6\xb0\xad\x6c\x69\xb6\xe8\xbd\xce\x0e\x26\xee\xb3\x51\x6b\x92\xd1\x29\x91\x48\x24\xf2\x59\x7a\x1d\x95\x81\x72\x8e\x0d\x86\x21\x25\x30\x5d\x5c\x10\x37\xff\xc5\x5c\x40\x78\xf6\x88\x8c\xaa\xfa\xf5\xdf\x5b\x55\x48\x56\xbc\x56\xb1\xd8\x0f\x23\x18\x30\x96\x08\xab\x33\x43\x51\x15\x98\xb6\xde\xa3\x02\xe1\x1c\x97\x2e\xb6\x40\x63\x57\x83\x88\x08\x75\x4e\x14\x6f\x0d\xa1\x24\xfd\x34\x1c\xe1\x10\xff\x4b\x6c\x55\x99\xa4\x81\x55\x5e\xb9\x54\x6e\xff\xb0\xd1\x44\x60\x78\x85\x16\x11\x0d\xe8\x55\x10\x67\xd8\xc9\x86\xbc\x20\xaa\xcb\xfc\x5b\xaa\xf7\xe7\x50\xab\xb5\x31\xa4\xc6\xea\xad\x29\xe6\x24\x73\x9e\x15\xcb\x85\xa8\xff\xc6\x19\x13\x48\x6f\x9a\xaf\x1b\x6f\xf6\xd9\xba\x24\x1f\x1d\xa9\x1a\x99\x7e\x67\x6b\x36\xb4\x53\x8f\x54\xf5\xbb\x76\xb6\x9e\x2c\x2d\xd7\xa1\x39\xa7\x03\xda\x33\xa8\xe0\xa4\x11\x10\x7f\x90\xe8\x2c\xcf\xcd\x06\x46\x46\xdf\xef\xb8\x33\x87\x58\x00\x70\x6a\x0f\x7b\x9b\x43\xb4\x04\x4e\x65\x8b\x08\xbc\x61\xa1\xfa\x95\x3d\xa2\x00\x9d\x3b\xc3\x5c\xc0\xa5\x5e\x71\xc3\x34\x88\x21\x52\x75\xb4\x13\x69\xaf\x3c\xae\x17\xa5\xd9\x83\x6d\x44\xea\x59\x89\x69\x40\xc0\xd0\x6c\x60\x9f\x5b\x18\xaf\xd2\xce\xb5\x4d\xa3\x82\x76\x3b\xdf\xb8\x34\x88\xd3\x69\x88\x20\xa4\x38\xe7\xbf\xb5\xf9\xde\x9e\xe1\x0f\x55\xae\x98\x81\xf5\x80\x89\x9b\x35\xfe\x4c\x16\xe8\x6f\x5e\x13\xe5\x25\x39\x1a\x4a\xff\xc0\xb0\x03\x50\x52\x16\x58\x1f\x2a\xe4\xba\x6e\xa0\xbf\xc9\xf4\x96\x2f\xea\x76\x3f\xae\xc1\x7d\x40\x38\xa6\x4a\x3b\x92\x09\xa9\xdf\x02\x7a\xba\x32\xdb\xac\xec\x06\x93\xce\x16\xea\x11\xe8\x0b\x93\x73\x18\x2f\x07\xb9\xbc\xc7\xfc\x7c\x6b\x22\xb5\x5b\xd3\x45\xb2\x83\x5f\x64\x22\x92\xd0\xab\x1b\xb1\x7b\xec\x89\xa0\x9e\x65\x5b\xe1\xf6\x0d\x04\xd8\x8d\x8d\xf8\xdb\xa7\x6c\x26\x20\x5d\x1a\xea\xd0\x2b\x53\x11\x53\x0e\x4d\xf3\xb9\x5a\xcf\x63\xde\xd5\x14\x09\x17\x39\x95\xd2\x42\xe9\xa1\x42\xa1\xd6\x80\x84\x8d\xb5\x80\xcb\xbf\xc2\x86\xdd\x1b\x29\xc5\x08\x46\x5c\xd2\x1b\x2b\x5e\x60\x3b\x10\x12\x20\x2f\x58\x80\x60\x15\xb6\xa9\x37\x60\x88\xa1\x81\x98\x40\x43\xbb\x0b\xcb\x20\x27\xcc\xcf\x7b\x59\xdd\x9d\x31\xd0\xe8\x2e\x06\xf0\xa4\x25\x88\x71\xec\xc4\x1b\xfb\x2e\x60\xd4\x68\x8b\xb7\x3f\xd1\x34\x59\xe8\xad\x20\x97\x1f\x68\xd6\x0b\xdf\x0d\xc4\x72\x1c\x2b\xc7\xbd\x48\x07\x38\x39\xa5\xe9\xfb\x75\xa6\x75\xdf\x93\x74\x10\x53\xa2\xbe\x1f\xa2\x9d\xb6\x6c\x31\x1c\xea\xc9\x9b\xec\x7d\xd7\x8e\xb0\x8d\xa7\x35\x38\xe2\x76\x7d\xf2\xfc\x7e\xe3\xcc\xfe\xf6\x1f\xbe\xc3\xc1\xf4\x62\x38\xf2\x31\xc0\x73\xab\xda\x68\x11\x98\xfc\x47\xbd\x02\xd1\xd9\xa2\x2d\xfa\xef\x36\xcb\xb7\x6d\x8c\xfd\xcc\xbb\xfb\xde\x4b\xf1\xdd\x60\xa1\x32\xeb\xa1\xec\xe5\x31\x1e\x40\xa3\x59\xdf\x5d\x57\xba\x48\xce\xc7\x9b\x51\xab\x8d\x06\x7f\x23\xcc\x89\x77\x22\x0b\x92\x18\x2f\x6c\x1e\xe7\xba\xd8\x18\xd8\x10\xa9\xa5\xe5\x37\x38\x2e\xfc\xd1\xab\x7a\x9c\x06\x05\x65\x53\xc9\x6f\x9c\x7c\x84\x2a\x09\x89\x0e\x76\x37\xaa\xa9\xf7\x5c\x67\x1f\x19\xba\x70\x8a\x7b\x61\x49\xa8\xb0\x38\x4c\x13\x1b\x00\x29\x78\xd1\xc1\x39\x6d\xca\xa1\x49\x86\xd5\xca\xac\xe9\x96\x4f\x5b\xd2\x66\x49\xc2\xd1\xa2\xdf\x14\x2c\x60\x43\xc9\xcf\x73\x0b\xc3\xe4\xf2\xc9\x1a\x76\x0a\x3e\xd7\xef\xb0\x1a\x1a\x64\x8e\x26\x4f\x98\x48\x0a\x3a\x9f\x20\x4b\x61\xd8\xe2\xa4\x30\xeb\x16\x00\x01\x44\xe9\x05\xb3\x08\x08\x0a\xd5\x2b\x98\xfb\xa6\x8c\xe1\xc6\xcd\xfa\x86\xac\x1e\x18\xd4\xc1\x35\x00\xaa\xda\xd7\x2f\x75\x43\x04\xb6\x10\x8d\x8b\x87\x96\x2e\x5f\x1e\x2c\x2d\x5f\xc2\xc4\xba\x3b\xd6\x64\xc4\xb9\xba\x85\x73\x37\x10\x07\x07\x5a\x1a\xef\x14\x21\xfe\x10\x33\xc7\xe6\x8e\xf4\xd4\xa4\xb6\x10\x59\x31\x22\x81\x8b\x89\x89\x84\x17\x58\x17\xc7\x3e\x42\x86\x0f\x05\x09\xa4\x6c\xbf\xa8\x97\x77\x9d\xa1\xd4\xf0\xf6\xa9\x23\x77\x14\x4a\x49\x69\x6b\x34\x30\xad\xb7\xb4\xb0\x4e\x8f\x6f\x33\x22\x33\x0f\xee\x63\xa8\x25\xaf\xcd\x6a\x38\x4a\x55\xba\x15\xeb\xc2\xf8\xe5\x78\xe0\xf9\xc4\x7a\xe0\x88\x9d\x2f\x4f\x18\xee\xcf\x50\xdc\x36\xe9\xf8\xdc\xde\x9f\x12\x91\xf0\xdb\x1f\x70\xd1\x80\x0e\xb0\x8e\x1d\xc4\xca\xec\xec\x8e\x3b\x25\x47\xfd\x5b\x7d\xf9\x4b\x8a\xb3\x6c\x52\xe9\x58\x9a\xd9\x77\x94\x4f\xfb\xee\xc2\x6d\xbc\xe6\xed\x9b\xbf\xfd\x87\x3b\xd7\xc0\x42\xc2\x53\x84\x79\xed\x03\x58\x9c\xa8\x15\xe0\x01\xa9\xe1\x76\xea\xe1\x94\x5b\x81\xdd\xf2\xa1\xcd\x89\xb5\x38\xdf\x99\xb6\x4c\x61\x39\xf4\xb0\xf8\x46\xac\xcd\xd9\xa1\xbd\x70\xde\x49\xe3\x22\xc1\xc6\x2b\x70\x91\x54\x6f\x15\x82\x9f\x97\x48\xf3\xcc\x21\xa4\x29\x2f\x15\xb9\xdd\x17\xbc\x98\xbe\x91\x23\xf1\xc2\xfa\x83\xfc\x76\xa0\x0b\x8e\x8a\xcb\x62\x5c\x59\xe7\x84\xa8\x71\xa7\x92\xf3\xc4\x9b\xc3\xba\xa2\x65\x2e\xf6\x99\x1a\x9d\x20\xf7\x07\x78\x79\x46\x4c\x5a\xd9\xb4\x00\xbf\xfa\xc9\x5b\xa1\xc5\x04\xb4\xb1\xe1\x10\x0c\x06\xe3\xac\x68\xe1\xf0\x52\x50\xab\xf0\xb0\x99\x38\xdc\x18\xe1\xae\x43\xea\xe2\x0f\xca\x0a\xf0\x6f\x5d\xa4\xba\x4a\x61\x8f\x15\x6a\xd3\xcd\x57\x0a\x1e\x09\xfe\xe8\xd2\xaa\x75\x6f\x85\x84\xcc\x40\x64\xcd\x37\x90\x9c\x5b\x5b\x3b\xd3\xaf\xeb\x92\x0d\xec\x07\x98\x6b\x3a\x47\x0a\xc3\x22\x7a\x9a\x17\x2d\x73\x64\xd8\x97\x46\x19\x2b\xa0\xf7\x92\xd8\xe5\x06\xc4\xe4\x61\x95\xed\xe0\xf1\x06\xc3\xb2\x66\x87\x95\x8e\x8f\x3f\x7b\xa9\x13\xa7\x32\x07\x36\xbd\x14\x76\x34\xa3\xfe\xa4\xe7\xa5\xb8\x26\x06\x1a\x0d\x3a\x22\x5e\x01\x4e\xb6\x81\x14\x02\xca\x6d\xc1\xea\xdc\x84\x17\xa3\x09\x04\x24\x7c\x31\x1e\x3c\x54\xcc\x60\xb8\x3d\x86\x8d\xc2\x80\x1c\x82\xf5\x06\x57\xd9\x9e\xde\x56\x60\xf3\x48\xda\xbc\x2b\x87\x30\xbd\x25\x01\xf0\x0e\xb9\xec\xe6\x36\x31\xb1\xf4\x52\xfb\xe7\x38\x21\x62\x07\xae\xab\x05\xf5\xd1\x88\xc2\x2c\x9d\x7a\xe6\xe6\x65\xe1\x06\xc6\xbb\xc0\x44\x33\x74\x1e\x03\x38\xc4\x84\xc1\x37\x9c\xa6\xb2\xc3\x11\x9f\xff\x88\x13\x26\xfc\x66\xd8\x0d\xc5\x59\x7b\x18\x14\xac\xe8\xd4\xa2\xdf\x74\xc1\xb8\xe2\xfc\xea\x5c\x66\xe4\x5a\xc7\xc4\x10\x56\x31\x5f\x52\x14\xa5\x88\x5c\x92\x1a\x8f\x95\x61\x0c\x8c\x29\xe7\x2c\xa1\x1c\x50\xc7\x70\x9a\xef\x7c\x5a\x2f\x7f\x84\xca\x5a\x11\xee\x55\x1d\x64\x03\xd7\x6c\x48\x73\x36\x5f\x46\x04\x75\xa1\xb7\x36\xea\xdb\x73\x82\x50\x86\xf8\x01\x8e\x3d\x53\xde\x2e\x92\x78\x9f\xc4\x8d\x0b\xd9\x2b\xc1\x36\x4c\x05\xe2\xcc\x49\xfa\x6a\x60\x4b\x87\x7d\xf8\xff\xbf\xfd\xfc\x66\xea\x8c\xe6\x27\xc7\x4c\xe6\xbd\xa9\xd1\x1f\x85\xfb\xe9\x0c\x49\x7a\x04\x8b\x40\xd7\x53\xd1\x90\x22\x74\x03\xda\x38\x04\x09\xdc\x3c\x42\x11\xd1\x17\x08\x45\x98\xb5\xa3\x2b\xa8\x1a\x02\x4f\xce\x13\x21\x40\x50\xc6\x89\xee\x39\x89\x79\xce\x28\xd7\xa1\x1e\x23\x46\xc4\x2a\x49\x0a\xcf\x82\x7d\x57\x39\xee\xce\x02\xc4\x89\x78\x1c\x89\xde\x50\xd9\x03\x49\x64\x85\x86\xf1\x7a\x21\xdd\x38\x82\x7a\x9b\x39\xe7\xe6\xce\xe0\xdc\x44\x5c\x93\x3f\xbb\x7d\xcb\x65\xaa\x53\xaf\xb3\x14\x30\xba\x83\xef\xee\xe1\x9e\xb3\x55\xb7\xb5\x3a\xaf\xcc\xd9\x12\x52\xd0\x1d\xc5\x1e\x6f\xce\x22\xdc\x8f\xf9\xf6\x2d\x7d\x87\xb5\x09\x1a\x05\x0f\xbe\x13\x83\xf0\xa0\x6e\xd3\x95\x62\x14\x2b\xc5\x81\x93\x89\x96\xaf\xbd\xe8\x31\x74\x04\x32\x27\x26\x09\xb4\x23\xb3\x84\xc8\x9a\x8a\x12\x15\x1f\x6c\x16\x0d\xf6\xb6\x42\x01\x85\x02\x8b\xbe\x12\x73\xd2\x71\xa5\x7d\xd6\x9c\x43\x3b\x03\x6b\xdc\x31\x8d\x22\x15\xaf\x32\x3a\x25\x34\x80\x48\xce\x2d\xf8\xda\x03\xd3\xa9\x24\xbb\x4e\x97\xcf\x2b\x23\x52\xae\x5b\xee\x80\x57\x8f\xcd\x9e\xd7\x13\x9d\x7d\x78\xb3\xfe\xb0\x1f\x1e\x95\x34\xa9\x72\xe5\x20\xcd\x74\x1f\x84\x4d\x8b\xd9\x47\x5b\x96\x85\x70\xc2\x42\xeb\xb4\x71\x9e\xc5\x13\xd1\xb7\xad\xc8\x01\x96\x39\x4f\x90\xc1\x3f\xaf\xf4\xb6\x17\xbf\xe1\x59\xcb\x83\x6a\xc0\x47\x04\xf1\xce\xb3\x9a\x07\x45\xff\xd0\x1c\x5c\xad\xd1\xb6\xfa\x6f\xa4\xfb\x74\x75\x8c\xe2\x22\x9b\x46\x08\xde\xe3\x26\x21\x39\x8b\x09\xbb\x19\xcf\x76\x78\x1e\xbb\xa3\xd3\x19\x54\x1f\xe0\x37\xda\x98\x73\x8d\xf7\x98\x1e\x0a\x67\xda\xa1\xbb\x77\x53\x18\x21\x7c\x5b\xac\xb3\x22\x5d\x8e\x6b\x19\x9f\x13\x96\xe5\x6b\xd6\x67\x27\x92\x76\xcf\x67\x6c\x5a\xe2\x1c\x73\xb0\xd9\x35\xd7\x5d\x35\x16\x36\xb4\xd8\xdd\xba\xb6\x6b\x9a\x14\xa0\xc1\x79\x00\x87\xe3\xec\xad\x77\x0f\x75\x47\xd4\x52\xf7\x65\xc7\x89\xad\x23\x38\x9c\x48\x5a\x21\xfe\xd5\x1e\x58\xf4\xbb\x0b\x7b\x7b\xdf\xf9\x2d\xc7\x87\x59\x27\x0a\x0e\x22\xe0\xab\xa0\xa0\xbe\x2b\xfc\xbe\xfb\xf4\x81\x77\x85\x0c\xdd\x49\x8b\x7f\x22\x84\x20\x8a\x4b\xfc\x31\x03\xcd\x80\xb4\xed\x7a\x86\x7f\x04\x0c\x49\xb4\x28\x86\x9a\x2f\x62\xe7\xcb\xe7\x23\x61\x50\x1a\x8c\x36\x83\x4c\x38\x9a\xe5\x78\x86\x6e\x72\xc3\x7c\x59\x07\xd2\x20\x1f\x87\xf9\xf7\xd3\xf0\x84\xb7\x9f\xf4\x80\xfc\x7e\xa0\xa6\xc6\x35\xe1\xfb\x34\x4e\x12\xff\xcb\xcc\x83\x69\xa1\xe0\x09\xe2\xf8\x2e\xd1\x33\xe7\xe6\xb5\xb1\xce\x5b\xaa\x8b\xf4\xf2\x7e\xef\xc9\x04\xdc\xee\x8b\xd3\x7a\x5e\x31\x1c\x2f\x96\xdf\x19\xfa\xdd\xc8\xa1\xf5\x03\x7b\x86\xc3\x7e\xcc\xb2\x18\x9f\x6c\x5f\x28\x48\x6b\x30\x13\xfc\x32\x10\xcf\x84\xe3\x41\x6d\x0a\xde\x30\x8c\x80\x6e\x18\xfe\xb4\x76\xa0\xdd\xb9\x3c\x77\x3e\x0b\xeb\x89\x68\x50\xb4\x36\xd5\x1e\xf6\xaa\x16\x16\x3b\x29\x7d\x42\x32\x86\xe7\x04\xf0\x13\x7a\xf4\xe4\xf2\xff\x7c\xd1\x93\x7f\x1e\x3f\x9b\xfc\xcf\x78\xfc\xfa\x83\xde\x9b\x6a\x34\x84\xc8\xa7\xca\xcd\x36\xc9\xcc\x78\xa0\xc1\xcf\xcb\x17\xf0\x97\x0a\x46\xc5\x3c\x7d\x10\x2b\x53\x10\x94\x1c\x14\x59\x6d\x39\x68\x38\xca\x9f\xcc\xaa\x38\xac\x83\xc3\x30\x41\xfa\xb7\x18\x29\x5f\x46\x96\xa2\xc8\xf2\x3e\x7b\xb6\xd6\xdb\xe5\x1d\xab\xbc\x4f\xc2\xbc\x71\x26\x80\x81\x85\x16\x3e\x51\x5b\x5a\x38\x68\x4f\x27\xa4\x54\xe9\x54\xcb\xdd\x84\xbd\x12\xb7\x07\x36\xf9\x78\xf8\xb6\xd0\xcb\x48\x6e\x0e\xe0\xa5\x95\x7c\x95\xd5\xd9\x3a\xcb\x41\xa1\x5f\x66\xa9\x15\xca\x03\xb6\xc1\x19\x48\x0f\x7e\xbf\xa0\xcf\xfd\x2d\x05\x90\xe9\xdb\x75\xa9\x0b\x95\x10\x95\xae\x97\x37\x5a\x9c\xcb\xa6\x0a\xae\x3c\x37\xee\x3c\xad\x32\xd2\x0d\xd0\x13\x95\xb8\xc3\x46\x8e\xad\x18\xd3\x4e\xf1\x93\xe5\x7e\x97\xca\xce\xb9\xee\x92\xc9\xc1\xa5\x4d\x3a\x47\x7e\x6c\x16\x15\xef\x54\x27\x8e\xc1\xc4\x18\xc6\x0e\xce\xc2\x00\xe4\x25\x7c\x52\x66\xb5\xfb\xc6\x2d\xa1\x70\x43\x28\xa4\x04\xf5\xce\xe9\x69\xac\x44\x2d\x36\x59\x93\x6d\x0a\xbe\x04\x44\x7c\x99\x68\xa0\x59\x3e\xc4\x7f\xd6\xd2\x5d\xca\x6c\xcd\x5c\x4a\x65\xb0\x19\x67\xcd\x0a\x7c\x9b\x9d\x50\xe8\x2b\xb9\x70\x46\x5c\x3b\x5c\x43\x91\xbe\xb1\x6c\xea\xd9\x17\x77\xef\x3f\xfa\x62\xb1\x4b\x83\x13\x11\x83\xec\x05\x4e\xa8\xa9\x87\x21\x96\xa4\xe6\x4c\xb7\xb9\xb7\xd9\xc1\xc1\x9c\xf7\x75\x6f\xac\xf3\x37\x81\x48\xf7\x21\x6a\xf4\x8a\x38\xe6\x93\xf4\xf2\xe7\x3d\xb6\x38\x4b\x41\x92\x0b\x71\xe7\x23\x11\x56\xbb\x8f\xaf\xb4\x67\x0d\x46\xfd\x8f\xb1\x67\x1d\x69\x72\x62\xcf\x2a\x0c\xd4\xdf\xb6\xc1\xbd\x19\xbe\x72\x32\x38\xc6\x75\x37\x98\xfa\x3b\x24\xee\x16\xd3\x28\xeb\x18\x22\xef\xb3\x3c\xc7\xe1\xa5\x1e\xe2\x33\x10\x59\xad\xf3\xd6\xdc\xb8\x23\x90\x0a\xc8\xec\x1b\xe5\xc5\x79\xea\xad\xab\xa3\xe5\x71\x85\x16\x09\x8e\x93\x56\x24\x33\x55\x20\xd4\xa7\xf0\x93\x6f\x9d\xd2\x76\xa4\x50\x24\x0e\x25\x34\x1c\x1e\x59\xef\x53\x7f\xeb\xcb\x07\xcf\xd9\x43\xdf\x56\x0a\x56\xa4\x5c\x89\x6b\xb6\x82\x03\xe4\xa2\x6f\xd2\x9f\x59\x70\x99\xb1\x77\x64\x70\x66\xf0\x87\x3b\xcc\x0a\xbc\x61\x97\x45\xe6\xa0\x15\xbb\xdb\x0e\x19\xdb\x12\x64\x7f\xd2\x62\xf0\xae\x95\xdf\x0a\xbf\xa3\xcd\x4c\x3a\x58\x7e\x86\x7b\x56\x18\x3e\xad\x3d\x1c\xe1\xb7\x31\xc0\x3b\xca\xf2\x32\x2d\xa8\x63\xca\x44\xbd\xec\x56\xb0\xff\x90\x20\x54\x66\x6c\xd2\xa1\xbd\xb4\x25\x3e\xb7\x42\x96\x4b\x65\x6b\x50\x72\x6e\xf7\x6c\x93\xa2\x24\xc2\xa8\x53\xc7\x60\x21\x8b\x0a\x1c\xfd\x4d\x9f\xa9\x62\x01\x13\x9f\xbf\xa8\x60\x76\x9f\xa9\x27\x29\x6d\x07\x70\x0c\xd2\x08\xc4\x04\xbe\xbc\xb1\x5a\x13\x5d\xd8\xde\x88\x34\x04\xbe\x6c\x09\x6d\xe0\x03\x48\x6d\x7b\x3e\xa4\xc5\xb2\x83\xb5\xfe\x08\xdf\x58\xc1\x7e\x50\x4d\xc9\xf4\xe6\x64\x14\x87\x31\xd9\xb1\xc7\x0d\xa9\xa4\x87\x74\xcb\x57\x34\x91\xca\xf6\x65\x01\x1c\x13\x38\xc6\x74\x47\xb8\x58\x5c\xa6\x89\xd5\x24\xaf\xfd\xb9\x05\x24\x36\x6d\x96\x1a\x9a\x2d\xed\xd8\x04\xe7\x81\xbd\x47\x8c\x9f\x77\x43\x28\x23\x48\xf9\xb5\x60\xd9\x10\x23\x23\xbf\x44\x26\x7f\x89\xdd\x91\x18\x99\x06\xf2\x52\x8c\xef\x07\x12\xb4\xc0\x51\x6b\xb6\x56\xc0\x7b\x18\xf2\x47\xd9\xc2\xc3\x01\x9a\x88\x74\xf5\x12\x54\x87\xc4\x07\x87\x3c\xcc\x7d\xde\xd9\xc8\xf5\x6b\x8e\x6a\x7d\x19\x68\x55\x53\x19\xb3\xbc\xcf\xfa\x9d\xcf\xe5\x0b\x9a\x8d\xde\xd4\x52\xec\x0d\x58\x30\x09\xb4\x7a\x93\xf9\x12\x26\xca\xc2\x21\x06\x15\x7d\xce\xd9\x93\x3b\x79\xb9\x5e\x9b\xbc\x5e\x3e\xe4\x7f\xd8\x25\x39\x3c\xa3\x0b\x2a\xf3\x28\xfc\x04\x4a\xed\x76\x59\x53\x2f\xef\xf1\x7f\xbe\x54\x91\x1b\x5d\x53\xa9\x97\xec\xd3\x0c\xcf\x40\x98\x5d\x69\xd3\x2c\xef\xc1\x6a\xd9\xb9\x04\x82\x3c\x5f\xdd\xfb\x8a\xff\x87\x72\xec\x56\x8f\xc2\xdf\xb0\x78\x07\x93\x68\x5f\x87\x70\x74\xa7\x19\xe5\x9f\xfa\x5f\x6c\x09\x93\x31\x2c\x26\x63\xf1\x19\xee\x06\x21\x63\xe0\xa1\xdd\x92\xb8\x9f\x8c\x8b\x9c\x41\xe7\x38\xe5\xcc\x3e\x11\xf4\xd3\x56\xcb\xbb\x20\x9d\x7d\xea\x8e\x28\x0e\x2c\x89\x2f\x7b\x73\x49\x9f\x09\x2b\xdf\xf2\xbe\x6e\x74\x9f\x24\xce\xbc\xa7\x84\xbf\xf5\xc1\xf4\xc9\x84\x55\x70\x09\xb6\xfb\x5a\xee\x37\xcb\x02\x20\x99\x15\xce\x07\xf8\x8c\x53\x17\xa3\x05\x89\x72\x0a\x70\x66\x4a\xa5\xd6\x14\x67\x0f\x72\x13\x5a\x90\x6a\xe5\x6a\xdf\xc3\x87\xca\xa7\x6d\x84\xf5\xed\x97\x77\xdc\x47\x5f\x84\xfa\x99\x2f\x25\x7d\xf5\x05\xa5\xbb\xdd\x6c\x59\x92\x71\x8b\xa8\xe8\x13\xfa\x54\x31\x6a\x0d\x9a\xb5\x35\xdc\x0a\xa3\x76\x91\x70\xac\x38\x71\x23\xdc\x3d\x36\xcb\xbb\xee\xc7\xcc\x18\x43\x19\x19\xa2\x9e\x2b\x09\x6d\xdc\x17\xa3\x29\x4f\xca\x08\x7d\xf0\x37\xa6\x27\x2b\xe6\x17\x85\x56\x73\xb2\x2a\x92\xb7\x2a\x73\x9d\x18\xe7\xee\xcd\x65\xd8\x86\xc1\xd7\x5b\x07\x7d\xb8\xa6\x5c\x4f\xc3\xd6\x18\x8e\x8d\x5e\x2f\x6f\xa6\x0a\x40\xec\xab\x02\x48\x3e\x47\x20\x16\xf2\x68\x3f\xc1\xa3\x58\x9a\x1d\xb6\x17\x67\x91\x24\x02\xe6\xc4\xbe\x1b\xc4\x48\xf8\x17\xc1\x3d\x9f\xab\x70\x15\x06\x8d\x8b\x1c\x69\x77\x8a\x28\xae\xe2\xf1\x15\xed\x0b\x6c\x32\x4a\x3f\xd2\xf0\xb1\x6a\x5e\x00\x9a\xcd\x58\xe0\x4e\x80\xa3\x8b\x77\x49\xe2\x91\x9f\xf3\x25\x6b\x77\xf5\x9d\xb8\x2f\x31\x6b\x3f\xcc\x14\xb2\x2b\x7d\xcf\xd6\x91\x95\x4d\x57\xeb\x8e\xab\xc8\xda\xa6\x38\x2b\x39\x56\x63\x67\x0a\x98\x6c\x71\xf5\x07\x35\x1e\x85\xcf\xb9\x1a\x35\xbc\x23\x4f\xe9\xcf\x5c\xc6\x02\xf1\x00\xea\x06\xb8\x69\xea\xf9\x12\x40\x4a\x2a\xf1\x84\xff\xcd\x96\xa8\x70\x3d\xa6\x91\x93\x8d\xe5\x33\xfe\xc8\x3b\x25\xdf\x13\x4c\x93\x5e\x89\x35\xf8\x0a\x0f\xf1\x5b\x55\xef\x53\x6d\x47\x3a\x2d\xc8\x26\xac\x74\x8f\xe8\xb7\x72\x1f\x57\xf5\xe2\xcb\x4b\x37\xd3\x0a\xd8\x35\x0c\xfc\xa5\xfc\x52\x37\xbf\xfd\xdd\x77\x35\xa0\x1f\x6c\x9d\xb7\x6e\x7e\xfb\xfb\xef\x48\x9a\xe1\x7f\x90\x66\xa6\x95\x57\x67\x7a\x6b\x26\x2d\x70\x85\x50\xb8\xac\xcc\xab\xcc\xb6\xe0\xad\xf2\x23\xa2\x03\xaf\xb1\x04\xaf\x9b\xd1\x5e\x66\x8d\x7b\xba\x95\x53\x97\x33\xda\xca\x45\xbb\x5b\xb9\xf9\xd5\xd8\xe9\xfe\x77\x5f\xd9\x4f\x7e\xa5\x9b\xe5\xf7\xe1\x4b\xe9\x06\x73\xcd\x52\x92\xd9\x30\x72\x2f\xc0\xfd\x93\x7c\xf5\xd3\xfe\xbe\xef\xca\xf6\xd6\xd2\x73\x53\x41\x00\x26\x21\x28\x98\x6d\x3b\xd3\x2c\x46\xd4\x47\x6e\xde\xf3\x88\x47\x39\x6e\x1c\x71\x09\x8e\x24\xe1\xd2\x43\xe9\xca\x30\x50\xa4\xd8\x33\xfe\x18\xe7\x0d\x9b\x92\x32\xb3\x6d\x39\x62\xea\x71\xe3\xde\x38\x5b\xa0\xcc\x50\x12\x06\xf3\xdb\x41\x24\x43\x72\xad\xf8\x8f\xbf\xa3\x1d\x92\xfd\x1b\x16\xc9\xf1\x2f\xa4\xb2\xb7\xed\x92\xbd\x70\x7b\x9c\x61\x73\xc9\x13\xfc\x0d\x69\xfe\x9a\x05\x49\xca\xa4\x61\x10\xdd\x44\x30\x0e\xda\x63\xd0\x2c\x14\x12\x86\x25\xb3\x62\xe5\xbd\x76\x59\x96\x86\x37\x92\xcd\x0a\xd5\xb0\x4a\x65\x0b\x84\x17\xe1\xd3\xa2\x85\xba\xeb\xd4\x90\x73\xfd\x0a\xeb\xa5\x9c\xfd\xe7\xb3\xe1\x11\x01\x77\x87\x06\xac\x5f\x83\xc1\xfe\x31\x69\xd6\x2c\xbf\x48\xb3\x1e\xf4\xb8\x02\xb6\x3c\xa5\x3f\x21\x45\xf8\x8f\x60\x7c\xcf\x1a\x47\xd9\x09\x69\xbc\x9e\x73\xf2\xef\x49\x3e\x0c\x5d\x37\xd3\xb1\xc4\x23\xb9\x3d\x62\xf1\xc6\x61\xb4\x19\x11\x79\x29\x38\x1d\xaf\xa4\x3b\x4f\x8d\xfb\xfc\x6f\x94\xe7\x5c\xc8\x65\x6c\xec\x48\xee\xbc\x3f\xe6\xda\x60\xc7\x06\x2e\x79\xdf\x7d\x1e\x29\x25\xeb\x23\x1d\xca\xf2\x70\xbe\xa8\xe4\x95\xd9\x59\x5a\x15\x92\x2e\x09\xf6\x7c\x99\x1a\x55\x38\x02\x0b\xe7\xe6\xcc\x60\x5c\xbb\xea\x3e\xb3\x26\x45\x9a\x5d\x23\xeb\x24\x3e\x02\x9f\x1d\xeb\xd9\x9b\x4e\x65\x9c\xe1\x0c\x44\x60\x30\x39\x05\x91\x38\x20\x4c\x7c\x4a\x4d\x78\x25\x87\xc3\x2c\x9c\xe3\x5b\xdd\x93\xef\x23\xc5\x64\x9a\xbe\x2c\x9c\xd3\xbc\xfa\x22\xd1\x66\x88\xea\x92\x8e\x8f\xaa\xca\x45\x1a\x61\xcc\x76\xb5\x17\xbe\x55\xa2\x57\x95\xa9\xdb\xbc\x81\x95\x5a\xb9\x9f\x54\xb2\x2d\x52\x39\x14\x08\xf2\x63\x90\xbb\x23\xd9\x25\xca\x9d\xca\x58\x51\xe6\xac\x9c\x35\xce\x4f\xbd\xcc\x7a\xb3\x1e\xf6\x4b\xea\x6b\x4b\xdb\x4e\x02\xca\x28\xfa\xad\xf0\x7b\xd2\xfb\x72\xbe\x5b\x4f\x5a\x87\x33\xa1\xb5\x5a\x9f\xd3\x36\x25\xba\xe0\x44\xc6\x3e\x1f\x6b\xed\x9c\xf3\x0c\x10\xa0\xf2\x08\x31\x6c\x7c\x20\xda\xce\x03\x45\xf6\x26\xdf\x48\x18\xa4\x3b\x14\xad\x93\x2a\x2b\x05\x95\xe3\x4c\x3f\xd9\xfb\x34\xd3\xfb\x68\xfc\x23\x1f\xd5\xe0\xe3\xd1\xf4\x48\x2e\x17\xe9\x7c\x90\x1e\xee\xc0\xba\x86\x56\x82\xe8\xdc\x1e\xbe\x25\x8a\x40\x03\xd6\xe4\x8a\x9e\x04\x6f\xfb\x0f\x3b\x6a\xed\x93\xdd\xee\x93\x34\xfd\x70\x6e\xbe\x01\xc7\xc3\x84\x47\x07\x7e\x4e\x66\x1b\x23\x7b\xd4\x50\x20\x15\x47\x80\x86\xfc\x68\x79\x5e\x10\xd7\x5b\x1b\x58\xfd\x54\xda\x43\x8c\x91\x39\x5a\xb2\xda\xaa\x92\x58\x49\x6e\xd4\xde\x16\x1f\xf2\x54\x60\xd3\x77\xa7\xa3\xf1\x34\xc4\xab\xe7\x1e\xff\x1b\xe4\x0c\x6e\xb4\x5c\x3d\x36\x77\x09\x56\xf6\x92\xb2\x67\xfd\x48\x46\xd0\x00\xd1\xbe\x0a\x16\x81\xb4\xf5\xe0\xec\xc9\xdb\x4c\xb9\x29\x71\xeb\x7b\xfe\x87\x12\xb8\xb9\xbe\xa7\x4b\xff\x6e\x12\x37\x1b\x58\xc9\x27\x2e\x04\xaf\x6b\xda\xb9\xec\xd6\x17\xd2\xa3\x5b\xb7\x08\xa2\x80\xfb\xb6\x97\x3f\x94\x95\x4e\xe2\xca\xe7\xd6\x6e\xeb\xe5\x4b\xb3\xe6\x1f\x51\xc6\x26\x6b\x24\xef\x74\x5b\x75\x65\xd3\x21\x84\x4b\x94\xbd\xd6\x75\x96\xcc\x06\x83\x0a\x8e\x25\xf1\x58\x52\x2c\x72\xb5\xc2\xe5\x50\xb8\xda\x99\x33\xf6\xea\x5f\x9b\x43\x99\x99\xe4\x60\x2e\x7f\xac\x9b\x7d\x3c\x2c\xf6\xc9\x7b\xe2\x2e\xae\x6b\xe5\xbd\xf3\x42\xbe\xf3\x73\x0a\xfd\xdf\x9d\xf3\xd4\x8a\x61\x21\x3e\x43\xb0\x7f\xcd\x7b\xd5\x0d\x2d\x72\xc7\xea\xb9\x50\x08\x53\xab\x7b\xf0\x57\xf1\x4e\x47\xff\x48\x37\x3b\x2a\xb7\xb1\x8b\x68\x54\x0d\x31\xa9\xfa\x8c\x63\x26\xb1\x8d\xbb\x16\x4f\x64\x89\x67\xe7\x8e\x5a\x26\x85\x65\xec\xbd\x55\x7c\x7c\xdc\x41\x1d\x65\x45\xc1\x01\xa6\xc6\x17\x27\xe2\x9b\x23\x1b\x09\x83\x01\xa7\x8f\x96\x6d\xd4\xce\xaf\x6c\x7c\xd7\x37\xf4\xcf\x11\xc9\xf8\xba\x03\xfc\xc4\x6b\x39\xbf\x90\xa8\x67\x43\x8f\x7e\xb9\x26\xe2\x5d\xc6\x07\x63\xb3\xaa\x31\x17\xec\x7c\x71\xc1\x0b\xc6\x9e\x35\x3d\x72\xc5\x8e\xac\xa3\x69\x4d\x8a\x39\x30\xd8\xfe\x2c\xb2\x1d\xf6\xc5\x27\x30\x9a\x56\x61\x5f\xd9\xa6\x5d\xcc\x1e\x21\x13\x90\x64\x65\xe7\x56\x85\xe3\xb6\x50\xe6\xf2\x76\x79\xe7\x93\x53\xdc\xbe\x85\xbf\xb7\x3b\x03\x3e\x51\x17\xee\xd6\xe9\x74\xfa\x10\x2f\xb2\x22\xed\xf6\x59\x3a\x1b\xcb\x60\x71\xfb\x56\x79\x07\x8d\x7e\x1e\xce\xa9\x1d\xb4\xd8\xf7\x48\x4e\xe2\x11\x76\x26\x7f\x57\x2f\xfd\x82\x72\xb0\x28\xda\xdd\xee\xae\x04\xfd\xe7\xeb\xa1\x87\xd1\x4d\x0c\xf4\x7c\x7c\xfb\x05\xa2\xc6\x24\x68\x76\x67\x5c\xed\x66\x38\x85\xa1\x68\x1b\x13\x1c\x89\x8a\x42\x38\x5b\x8d\x77\xc2\xe5\xcf\x73\x8d\x89\x0b\x41\xea\xbc\x2a\xc5\xf3\x6c\x7e\xfb\x96\x7e\x43\x59\xbe\xb7\x1b\xf9\x71\x45\x64\x35\x3e\xe5\x3e\x76\xba\x1d\x8a\xc3\x29\xa7\xa7\xc4\xb6\xea\x5d\xe9\x80\x45\xfb\x9e\x2a\x7b\x8f\xde\xa3\x35\x03\x94\xbf\x19\xba\x9b\xc9\x1a\x8f\x1a\x8a\x47\x2c\xec\x6c\xbe\xad\x97\xa3\x7a\x53\xc7\x84\xb8\x25\xbe\x11\x94\xf1\x6d\x8f\x95\x5c\xe5\x1f\xc4\xe5\x60\xdc\x8a\xee\xf4\x0c\xee\x79\x88\x33\xce\xf8\x9a\xa6\x9b\x03\xbb\x24\x5e\x35\x07\x00\x63\x2f\x5c\xca\x41\xd0\xf1\xac\x09\x33\x93\x0d\xee\x39\x9a\x82\x60\xbf\x6b\x93\x73\x22\xae\x24\xcc\x33\xdb\xe2\x43\x3b\xf5\xf4\xc9\xe9\x73\x65\x5e\xc1\xa0\xd0\x54\xd9\x86\xd8\x13\xf1\xf2\x97\xe7\xa4\x47\xe3\xd0\xae\xb6\x3b\x43\xa2\x41\xb1\x51\x36\x49\xda\x0a\x82\x80\x0b\xc3\xb1\x77\x42\x02\x71\x86\x34\x87\xfc\x40\x44\x1c\x81\x9a\x9c\xda\x05\x02\x84\x34\x39\xb5\x52\x08\x7c\xc5\xe2\x41\x5d\x9a\x84\x44\xa2\x85\x7a\x48\xb2\x61\xc1\x81\x2c\x95\x57\x7d\xaf\x3c\xe4\x0a\x33\xf9\x12\xe7\x4c\xce\xf7\x6d\xc2\xa6\x9d\x4c\x63\x89\x99\x96\xc4\x43\x10\xfc\xb4\xe6\xe0\x6f\x25\x68\x45\x7f\x27\x05\x34\x94\xf0\x8e\xf2\x4f\xbc\x0f\xb1\x49\x3b\x1f\x8a\x86\xe3\x34\xb9\x98\x32\x08\x81\xc8\x1e\xa6\xdc\xa6\xd9\xb2\x93\xa6\x5c\x64\x27\x2a\x0c\xd7\xac\xce\x5f\x55\x27\xf6\xd6\x71\x03\x23\xff\x6d\xe7\x5e\x62\x66\x06\xcc\xba\xae\x73\x37\x32\x84\x0d\x79\xe6\x3a\x8a\x0e\x41\xc5\x29\x4d\xc3\xdb\xd3\xd0\xb6\xe4\x5b\xe3\x3a\xf8\x7c\xe0\x2e\xfd\xd6\x39\x59\xd3\x0a\xb2\x53\xdd\x42\x3d\xb5\x8c\xc0\x7b\xe1\x88\x7c\x09\xf8\x82\x44\xb3\xaa\x91\xeb\xfc\xc1\x3d\x5c\x35\xec\x11\xc5\x3d\xf2\x25\x81\xc9\x00\x23\x2f\x90\x9a\x45\xa0\x76\xa6\xd0\xc8\xa9\x6f\xa6\xa4\x23\x95\xae\xc2\xc0\xa7\x5c\x0a\x4f\x37\x2a\xb7\xec\x37\xa8\x88\x5f\x8a\x5d\x05\x0a\x5c\x54\xef\xae\xde\xa2\xd1\x46\x71\x3b\x01\x34\xcc\xec\x3a\x05\x27\x30\x89\xff\x73\x1b\x17\xed\xef\x60\x03\xdc\xbe\xc5\x3f\x21\xb4\x45\x61\x0a\xc4\x19\x99\xf4\xb6\xfa\x40\x00\xda\x60\x53\xc2\x51\xed\x90\x22\xda\xec\xe5\x8f\xbd\x13\x75\x70\x4d\xc2\x4d\xad\x86\xa6\x85\xab\x54\x4e\x31\x72\x11\x82\x0e\xba\xec\x1a\x76\xff\xfc\xe8\x4f\xa7\x4f\x1e\x9f\xb8\xce\x5f\x7f\xb2\xdf\xef\x3f\x41\xd1\x4f\xda\x2a\x37\x05\x12\x53\x37\x9a\x13\x04\x64\xbb\x93\x35\xe5\xed\x5b\xf4\xff\x63\xda\x95\xa0\xaa\xb4\x8e\x4e\x18\x87\x18\xe2\x70\xf7\x40\xfa\x9c\xb9\xfc\x2b\x41\x7e\x7f\xf5\x2e\xea\x1d\x54\x5b\x07\x77\x8e\x0c\xd8\x43\x35\x39\x1f\x6f\xad\x52\xee\xb5\x73\xfc\xbd\x99\x8b\xed\x31\x43\x00\x0e\xf4\x5e\x0e\x07\x1d\x10\x2e\x16\x69\x0d\x69\x75\x08\x82\xb7\xa5\x7f\x51\x3a\x93\xa0\xe0\x78\x07\xee\x98\x4a\x50\x5f\x4d\x62\x08\xf8\xb3\x74\x2a\x1b\xac\x81\x3a\x34\xc1\x88\xcf\x26\xcd\xf1\x61\xb0\x2d\xf2\xce\x47\x0d\x0b\x6d\x0a\xf8\x91\xef\xa0\x3d\x40\x1e\x8e\xf7\x21\x21\x3e\x70\xc5\x67\x94\xd1\xbb\x3d\xe1\x98\x3c\x91\x90\x45\x01\x45\xba\xbe\x97\x13\x12\x13\xbb\x78\xb0\x12\x27\x12\x32\xaa\x83\xe0\x04\x67\x07\x48\xcf\x7c\x3f\xae\x1a\xb8\xdd\x62\xba\xb5\x3c\x5b\x98\x6e\xad\x18\x46\xd3\x7a\xef\xbb\xcd\x26\x57\x74\xc6\x12\xa5\x1f\x80\x08\xa0\x57\x76\x2d\xe7\x10\x90\x1d\x32\xdc\x2f\x25\x21\xd1\xf9\xe6\x9a\x79\xdc\xe2\x31\x06\xc4\x9a\x52\x17\x40\xae\xce\x75\xb2\x5d\xf5\x1b\x1e\xec\x11\xfb\x10\x23\xd8\xb8\x00\x77\x87\x91\x6f\xf5\x29\xea\x10\x8b\x66\x47\x6c\x42\x6c\x7f\x81\x35\x96\x8a\xe2\x99\x4a\x1f\xe2\xef\xf8\x5c\xdc\x34\x47\x79\xa3\x70\x9a\xa3\x5c\xe8\x51\x88\x29\x2c\x91\x7c\x07\x20\x2c\x73\xdb\x0d\xae\xb9\xed\xd3\x0a\xe4\xa5\xc8\x86\x2a\x24\xa6\xda\x97\x5e\xde\x4d\x53\xd2\xf2\xf1\xa9\xbe\x36\x31\x88\xd9\x51\xa3\x6f\x14\xee\x2e\x30\x22\xc3\x9e\x21\x7e\xd4\x7c\xa1\x42\x6a\x52\x89\x81\xf4\x19\x5b\x9a\x66\x86\x18\xc8\xfd\x3d\xf9\x1f\x15\x1a\xfa\x9a\xdf\x0f\xcd\x1f\xf7\x35\x8f\x6b\xf6\x0e\xe7\x51\xcd\xf7\x72\x38\x1f\x80\x67\xec\x4d\xde\xcf\xf2\x7d\x1c\xca\xe7\x26\x1c\x4c\x2b\xce\x5a\x32\x0b\xf1\x99\xf2\x53\x13\x4b\x1a\x4f\xac\xb7\xb1\xc4\x06\x15\x71\x9a\x36\x35\x9b\xa5\x9a\xa1\x33\xd8\x55\x66\x96\x2b\x07\xe2\xe1\x11\x01\xf6\xdd\x06\x97\x34\x3b\x3b\x5b\xac\x2b\xbb\xaf\xe1\xd4\xde\x56\x89\x61\x05\x43\x42\x2a\x5e\xa8\xcb\xbf\x12\xe3\x4b\x39\x74\x0d\x97\x84\xf5\x98\xb0\xa2\x82\xb3\x5e\xe2\xd2\xc4\xff\x62\x29\xff\x5c\x1a\x91\x1d\x3d\x0a\xe9\xf7\xc0\xb3\x34\x5a\xe5\x66\xe1\x42\x57\x87\xb0\x7a\xfe\xd2\x97\x84\xc6\xa4\x16\xea\x73\xbb\x5f\xe1\x17\x3b\xe8\xd7\xa4\x7d\xc0\x3d\x1b\xf7\xdb\x1b\x38\xb0\x20\xca\x26\x5a\xf0\xa5\x51\x46\x96\xc2\xbb\x9a\xde\x4c\x83\x89\x82\xaf\x56\xe4\x7c\x2b\x39\xf2\xeb\x55\x51\x49\x90\xdc\xcb\x1f\xfb\xcc\x2c\xce\x74\xd2\xc7\xdb\x7f\x0f\xf9\x1e\x6e\x44\x06\x3e\x7f\xf0\xd8\x7d\xb1\xa7\x0d\xdf\x9a\x84\x20\x42\x72\x59\x93\x73\xaf\x12\xc2\x85\x9d\x78\x16\x53\x67\x1e\x9f\x23\x3e\x51\xfc\x5b\xee\x8f\xb9\x10\x86\x7d\x89\xb4\xd2\x67\xc4\x55\x0f\x5b\x40\xde\x27\x92\xc0\xe8\x6b\x49\xa8\x7a\xd2\x2d\x24\xa6\x6e\x5f\x86\x80\x83\x05\x38\xa5\x7f\x59\x5e\xf4\x2e\x45\x62\x5a\x85\x50\x0c\x3f\x31\x9f\xa8\x61\x48\x8d\xa0\xd8\x03\x45\x56\x18\xd2\xc4\x1e\x31\x4f\x6c\x2a\xf6\x81\xfd\x78\x2a\x82\x47\x2b\x1f\x10\x3c\x20\x11\x33\x08\x5f\xa8\xd1\x9b\x81\xcb\xbc\xde\xb4\x71\x26\x4b\x37\xf7\xc4\x51\xb9\xaf\x30\xf2\x77\xed\x1d\xbe\x3a\x34\xd0\xc7\xbf\x6d\x7b\x7f\x32\xa8\xe3\x69\x72\xa0\x8d\xc0\x17\x74\xbd\xfb\xf8\x68\x41\xdc\xb1\x98\x8c\x65\x32\x21\x2f\xf7\x80\x4e\xad\x76\x69\x2f\x03\x8b\x00\x28\xd2\x7a\x74\xa1\x6e\xc0\x80\x1e\xe9\x6a\x4b\x92\x7b\x21\xe7\x75\xbe\xc9\x7d\x05\xbb\xdf\x63\x04\x61\x3c\x0c\x56\x93\xc3\xa9\x3e\xb5\x9b\x14\x3b\x70\x3a\x84\xd8\xbf\x45\x6a\x43\xa3\x7c\xfb\x13\xcc\x5c\xfe\xba\x8d\xaf\x03\x99\x0e\xb7\xc5\x2f\xff\xa7\x76\x01\xc5\x5d\x98\xf7\x31\xea\x0c\xef\xa2\xec\x8f\xe1\x51\x54\xc1\x2d\xc4\xbd\xf3\x04\xf2\xf6\x61\x0f\x8f\x40\x16\x89\xdb\xbd\xde\x04\xeb\x91\xf6\x6d\x89\x29\x86\x44\x58\x0e\xdb\x27\x3a\xb0\xd9\x92\xa2\x58\x75\x38\xca\x84\xe5\x33\x1e\x18\x16\xaa\x3e\x97\x2b\x49\xf0\xc9\x76\x91\x3b\x23\x0c\x43\x7c\x4b\xd9\x0f\xdf\x08\x10\xea\xe1\xb6\x60\x9d\xcb\x6f\x8c\x2f\x18\xc3\xa7\x1b\xca\xa3\xe0\xca\x31\x1b\x17\x70\xc0\xed\x23\xb1\xc4\x89\x0d\x8e\xd1\x93\xad\x76\x24\x6c\xf4\x51\x40\xae\x5f\xfb\x96\x14\xff\xef\xa2\x50\x34\x83\xb8\x94\x91\x51\x20\x2e\xe2\x83\xb1\x83\x42\x14\xde\xa7\x3e\x36\x3c\xc6\x2e\xf5\x44\x89\x88\xfa\x36\x7b\x0e\xca\x7d\x08\x91\x04\xe5\xc6\x1e\xda\x94\x1b\x7b\x83\x58\xd2\xee\xae\x5e\xdc\xa4\x44\x7d\x43\xf0\xd4\x28\x56\xf1\x20\xca\xf2\x30\xd6\x0f\xdf\x71\x96\x13\x1c\xc4\xbb\xf0\xfe\x99\x91\x35\xed\x8d\xf3\x60\x77\x6e\x26\xbd\x4c\xea\xfc\x60\xe5\x78\x65\xf9\xb0\x4d\xd9\x31\x32\x2b\x5e\x21\xaa\x3c\x8c\x0d\xb0\x8c\xd3\xaa\x91\xe8\xf3\xb3\xda\x5a\x84\x1a\x93\x88\x3c\xf5\xf2\x1b\x89\x87\x03\x5f\x49\x04\x45\x70\x86\x97\x7a\xe9\x83\x6a\xec\xd1\x92\x64\x0d\x42\x2e\x0c\x43\x70\xf6\x3e\xa6\x68\x35\xf6\x2d\xed\x38\xe2\x0e\x24\x78\x81\x5d\xe4\x9f\x7f\x2c\x34\x8f\xcb\x99\x2b\xe9\x81\xde\xdb\x28\xc5\x8f\x1e\x41\x93\x1d\xe6\x74\xbd\x2a\xd5\xc9\xcd\x40\xa6\x98\x21\xee\x0f\x09\x2e\x5d\xbd\x6d\x09\xdd\x92\xf3\x45\xd4\x55\xd8\x5f\x07\x58\x28\xf5\x05\xaf\x9c\x8b\xde\x58\x84\x49\x7c\xe6\x6a\xc0\x8b\x33\xab\xeb\x20\x8c\x40\xb9\xa2\xd5\x3c\x64\x76\x17\x2c\xd7\xee\xea\x17\x6c\xd8\x2e\x9a\xfc\xa8\xa5\x2b\xbc\xee\x63\x44\xfa\xc7\x38\xdd\xcf\xb7\x38\xf1\xb9\xff\xfb\x4e\x83\xae\x0a\x82\x10\x0a\x8d\xa3\x21\x84\x8c\xf9\xb0\x08\xff\xaf\xc7\x31\x34\xe1\xf9\xd3\x98\x01\x8d\x38\x52\xeb\x48\xa8\x83\xa8\xea\x42\xbd\x2c\x19\xc5\x20\x2f\x16\x3a\xbe\xe5\xc7\x87\x2c\x97\x3f\xbb\x28\x6e\x83\x2d\xfc\xd3\x42\xdd\x3b\x72\x72\x73\x74\xc6\x73\x37\xed\xe3\xd5\xfc\x6d\x46\xf0\xc1\x79\xc6\x93\x01\x71\x19\xab\x9e\xc3\x6b\x5e\xb0\x69\xd9\x2b\xcb\xbb\xab\x5f\xd1\xb3\x34\xbd\x6a\xde\xdf\x01\x93\x1b\x5d\x88\x10\x4d\x80\xbb\xe2\x12\x18\x5b\x70\xfd\x0d\x30\xf3\xc1\x51\x23\xf9\xbb\xae\x82\x8d\x47\x09\x2a\x34\xb9\x0f\x36\x8f\x13\x51\x0d\x61\xd7\xc3\x90\x40\x57\x4c\xee\xd8\xf1\xdc\xbc\x3d\x19\xea\xe6\xde\x5b\x62\x9b\x73\xdd\x84\xdb\x29\xce\x78\x8c\xeb\x16\xa4\xb6\x78\x68\x89\x5e\xd3\x53\xe3\x1e\x68\x6d\x41\xbc\x50\xd4\x9b\xf8\xa9\x20\x71\x14\x11\xd2\x2e\xbc\x3e\x09\xe1\x71\xcc\x38\xc7\x53\xc2\xba\xc4\xdb\x53\x4d\x77\x80\xa8\x1a\x8a\xc8\x15\x2f\xd2\x58\x90\x37\xa8\x2c\x39\xbe\x76\xeb\x83\xb3\x64\x51\xed\xb9\x5b\x71\x3e\xcf\x99\xfc\xef\x31\xe3\x31\xdb\x3e\x83\x96\x3b\x31\x3a\x5f\xbe\xd8\x56\x5d\xd4\x96\xe8\x78\xfe\x82\xa4\x4f\x25\x31\xe3\x15\xfc\x0e\x5b\x91\xcb\x7c\xb2\xe3\x85\xb2\xab\x35\x8f\x4a\xed\x89\xb7\x38\xcb\xf2\x34\x90\x09\x5c\x20\x0f\xe0\x98\x75\x26\x61\x57\xf9\x58\x4e\x98\x22\xc7\x0b\xb8\x59\x7f\x3a\x69\x1e\x01\x81\x3d\x9b\xe5\xab\xa0\x1c\x64\x09\x7c\x76\x01\x57\xb4\x10\xc1\xc8\x27\x8e\x06\x2b\x89\x90\x8b\xdc\x15\x5f\xb6\x85\xb9\x1b\xb0\x90\xa8\xbb\xa6\x9d\x29\x15\x6e\x38\x45\xdc\x65\xfc\xa4\xc0\xde\xab\x47\x9a\xef\x06\xba\xeb\x30\xfe\x26\x5d\x1c\x26\x7b\xe1\x7b\x60\x71\x79\x66\x20\x1c\xc5\xbc\x9d\x2b\xf5\x3e\x03\x91\x69\x08\xd8\x33\x1f\xae\x97\x8f\x6a\xfc\x8d\xd3\x41\x0c\xf7\x30\x1a\x09\x8c\xee\x46\xf3\x62\x7c\x36\xac\xe7\x8a\xbd\x1f\x5c\xfc\x00\xc0\xbe\xd7\x2e\xd4\xe4\x04\x28\x27\x12\x07\x33\xe5\x47\x25\x64\xb4\x05\xc6\x3a\x3e\x54\x8a\x47\xec\xef\xf4\x0c\xba\xf7\xe7\xbf\x31\x08\x67\x59\xae\x64\xf1\x7e\xa9\x27\xd2\x46\xbc\x81\x8c\x33\xe4\xe2\xce\x34\x6c\x4f\xfd\x42\x79\x6a\x11\x05\x41\x1a\xc0\x36\x56\xbd\xa5\x0d\x5f\x03\xe0\x1d\x9f\xba\xf7\xa5\x07\x21\xd6\xc2\x74\xbd\xe0\x78\xaf\x17\x1c\x47\x12\xdd\x7b\x73\x72\x29\xec\xaf\x3c\xb3\x40\x29\x1c\x28\x82\x64\xbf\xe0\xa9\xc4\x78\x74\xe4\x43\x8e\xef\xc2\x46\x1d\x8f\x20\x6a\xb4\x67\x02\x12\x1e\xe2\xaa\xa2\xd3\x85\x0c\xb4\x3f\x9c\x93\x08\xd1\x87\x24\x60\xf6\x85\x9d\x77\xce\xf8\x53\x44\x45\x18\x42\x3b\xbb\x21\xb8\xb7\x7c\x8e\x0f\x5d\x2e\x5a\x3e\x84\xb4\xe6\x63\xa5\xf9\x0d\x11\x0f\x2f\x9c\xdd\x0e\x46\x77\xe4\x02\xf8\x62\x40\x42\xc6\xa8\x35\x98\x24\x81\xd2\xcc\x61\x94\xa3\x45\x01\x25\x3e\x9d\x99\xd3\x51\x8a\x13\xbf\xdc\xe4\x61\x3e\x22\x3a\x7f\xd7\xa0\x84\x2e\xfd\x96\x31\x0d\xa8\xcf\xf0\xe9\x88\xc9\xc0\xdc\x1b\x1f\xef\x3d\xb0\xb0\x95\x78\x5b\xbe\xf7\xa8\x4e\x06\x14\x29\xd0\x9b\x19\x3a\xf3\x1e\x63\x3e\x16\x23\x6f\x82\xea\x61\x13\x45\xcf\xd1\xc9\x46\x1a\x3a\x32\x8c\xaa\xb9\x13\x45\xb9\xad\x2c\x6c\xb8\x6f\xaf\x20\x26\xce\x86\xe4\xc2\x5d\x19\x7c\x36\x08\x93\xe8\x02\x4a\x94\xa4\x73\xbb\xbb\x9a\x29\x9f\x2c\x9c\x0c\x82\x0d\xe2\x76\x3b\xde\xa6\xe3\x70\x8a\xa2\x54\x8a\x0d\x80\x97\xe3\xbb\xb9\xa7\x33\xe1\x45\x50\x47\x8e\x03\x08\xed\x17\x8b\x42\xa3\x38\x75\x57\xc4\x11\x6c\x9b\x73\x5c\x4e\x71\xba\xc9\x8b\x61\x68\x46\xed\x22\x12\x6c\x10\xc2\xc3\x3f\xe6\x81\x07\x14\x9d\x7b\xce\xd3\x81\xa6\x5f\x13\x01\x26\x60\xe1\xc8\x61\x67\x0b\x74\xb7\x7c\x24\xff\xc5\x48\x84\x50\x4a\xe6\xd5\xf2\x25\x95\x82\x74\x20\x77\x2a\xb4\x8b\xc9\xc5\x36\x63\x3f\x4f\x36\xbb\x12\x78\x48\x80\x3b\x0d\x76\xd9\x38\x9f\x8f\xc5\xbd\x96\x26\x27\xe4\x83\xea\x3c\x12\x36\xf0\xb6\x35\x9a\x80\xb7\x00\x8f\xc4\x8f\xb2\x9d\xed\x6d\x85\xe3\xd1\xe5\xe7\xfa\xa0\xfd\xd9\x2b\xc7\x2c\xf5\x51\x74\x11\x3d\x29\x45\xf4\xa4\x49\x44\xca\x3e\x67\xe0\xb0\xd1\x27\xbb\xc0\x3d\x21\x96\x1f\xe2\x51\xf7\xb9\x03\x14\x1f\xb4\x16\x05\x6f\x1c\x56\x29\xfb\x00\x8e\x71\xb2\xde\x8e\x3a\xe6\x03\xa7\x51\xab\x7d\x34\xa0\xc1\x10\xf9\xdc\x09\xf6\x9c\x61\xea\x7c\xb4\x98\xe9\x28\xc7\x53\x0e\x77\xf0\xe3\x44\xd8\xca\x2e\x7f\x8c\x53\x70\xff\xba\x50\x62\xda\xad\x07\x45\x45\x57\x18\x8f\x52\x33\xb6\xc1\xdf\x74\x32\x0e\xb9\x3a\x10\xa7\x1c\xe0\xd9\xf5\xa3\x9a\x69\xc7\x6d\xf3\x71\xaa\x94\xf7\x7a\xe5\x78\x4a\x07\x2d\xa2\x6d\x10\x82\x66\x30\x32\x36\xf6\xf8\xf0\x8a\xf3\x05\xe5\xb5\x98\xe8\x6d\x98\xf9\x62\x55\x4b\xfb\x52\x9e\xf6\x8b\x0b\xc0\xeb\xba\x58\xb9\x48\x3b\x96\x03\x08\x88\x00\xc1\x77\xdf\x9d\x9a\x6e\x44\xfe\x57\x4f\x10\x2a\xfe\xea\xda\x91\x3f\x93\x37\xe4\x1d\x6d\x69\x56\x1b\x0f\x11\x44\x06\x70\x71\x1c\x9c\xa4\x57\x9c\x7f\xeb\x5e\x93\xad\xdd\x70\xf7\x71\x77\xe2\xaf\xd2\x47\x2e\x79\x8f\x66\xe6\xc7\x3d\x68\xa8\x1f\x6e\x1f\xe5\x64\x20\x2a\x4c\xfa\x61\x0b\x24\xae\x22\x67\xaf\xcc\x74\xa0\x9c\xb1\xd7\xe3\x97\x1e\xaf\x6e\x25\x8c\xf3\xe9\x14\x64\xf6\x5d\x8d\x0f\xc6\x88\x77\xb1\x36\x89\x7b\x04\x48\xc6\x76\xf9\xf3\x8e\x5f\x3c\x3e\x1c\x1f\x53\x5c\x6b\x06\x66\x03\x81\x45\xbb\x98\x6e\x00\x99\x4d\xa5\x71\x2d\xa1\x92\x67\xa1\x86\x68\x7e\x45\xb2\xe2\x97\x99\xea\x73\x3e\x34\x16\xac\xd6\x69\xeb\x62\x8a\x99\x40\xfb\x38\x82\x0b\xec\xef\xea\xc3\x05\x95\xbe\x25\x77\xb7\xb3\x83\xe1\xd3\xd7\xfa\x43\xf5\x11\x6c\xfd\xfa\xd3\x50\xcf\x1e\xb4\xa3\xc3\xfe\xa9\xcc\xb0\x8c\x1f\x5f\x3d\x8a\x1e\xe6\x6e\x34\xee\xd5\x8c\x29\x35\x8e\xe7\xec\x1e\xb2\xaa\xdb\x6d\x82\xf0\xf8\xc7\x66\x1a\xf9\x40\x80\xa9\xb2\x50\xc7\x87\xb1\x92\xc1\x44\x07\x3e\xf9\x31\xf3\x55\x1f\x21\xdc\x87\x49\xd5\xfe\x1c\x77\x14\x38\x74\xa5\x12\x16\xcb\x41\x2e\x70\x17\x42\x6c\x74\xe9\xb1\xa9\xc5\xdd\x86\xf9\xdd\x1d\xd9\x4a\x3e\x1c\x0c\x82\x6f\x80\xf1\x71\x6d\xc5\xc3\x64\xaf\x92\xe8\xc0\x76\x31\x62\xbe\xf2\x1e\x62\x5b\x36\x19\x07\x57\xc7\x3f\xff\x08\xe2\x80\x86\xb4\x15\x0e\x6d\x57\x1b\x62\xf0\x2d\xe9\x3a\x66\x79\x4f\x52\x68\xb5\x5c\x4a\x3d\x57\x9e\x94\x18\x92\xbd\x56\x2d\xdf\xcd\xef\x43\x56\x82\xa7\xc2\x4a\x25\x47\x11\xc9\x80\x68\x36\xb6\xd1\xb9\xaf\x08\xd3\x6f\xc2\x67\x03\xf7\x68\x53\x43\xc8\x6c\xe4\xf5\x6f\x0e\xfa\xcd\x6e\xa7\x2e\x40\x50\xdc\x84\xab\x6c\xd7\x8d\xa6\x81\xa5\xcb\x47\xfc\xad\x9e\xb8\xef\xb8\x68\x69\xd9\xf5\x64\x95\x13\xf0\xda\x72\x85\xf9\x63\xdb\x72\xa2\x7a\xc8\x89\xea\x39\x12\x67\xda\xf7\x83\x73\xb5\x5c\x2f\x77\x5d\xea\xd1\x6a\xb8\xe9\x37\xac\xf2\x47\x4a\x99\x16\xf7\x30\x3c\x37\xba\x3c\x0a\x41\xc2\xaa\x7a\x20\xe0\x70\xe9\x31\x00\xbe\xa2\x44\x75\x05\x14\xe2\x4a\x59\x4a\x4a\x64\x5c\xe1\x41\x9a\x9b\xa3\x85\xd9\x85\x83\xa5\xd3\x78\x3d\xaf\x1e\x96\x3b\x3b\x1b\x0e\xeb\x99\x4b\x9c\x54\xb2\xeb\x0b\x93\x10\x0b\x79\x90\x8b\x2b\x32\x8c\x1a\x5b\x3e\x41\xc6\x33\x4c\xb4\x4c\x12\x1f\x2b\x54\x5a\x5b\xdb\x40\xc7\x2f\x21\x13\x26\x5b\x0f\x39\x9f\xaa\x4e\x91\xaa\x5e\x20\x75\x24\x18\x52\xe1\x31\xe0\xa4\xf0\x15\x90\xdb\x21\x98\xce\x0a\x21\x4c\x92\xa6\xa5\xad\xeb\xba\x7b\x74\x8a\x10\x3c\xa7\x21\x79\xda\xdf\xa4\x62\x8f\xad\xe3\xba\xb3\xfd\x26\x3a\x39\x37\x33\x1d\xdf\x43\xfa\xd5\x3d\x4f\xaa\xf6\x5d\x4f\x6a\xcf\xee\x19\x8e\xcf\x0c\x43\xfe\xba\x4d\xb6\xa6\xc1\x55\x85\xf3\x15\x3b\x08\xf4\x4d\x3d\xf5\x85\xd4\xe7\x5c\x48\x7d\x45\x85\xd4\x73\x14\x9a\x6d\x94\xf8\xd5\xce\x34\x9a\x9d\x3e\x42\x23\x7e\xcd\x5b\x7e\x0a\x53\x1c\x6c\xe5\x9f\xf8\xe7\x7e\x79\x6f\x20\x47\x91\x7e\x53\xad\x9c\x42\xe0\x36\x27\xa4\xaa\xd0\xdc\x13\x14\x50\xa7\x5c\xc0\xef\x53\x38\x21\xcf\x8d\x07\x2a\x8b\x30\x51\x12\xc7\xf9\x58\xdf\x39\x97\xf4\xae\x67\x66\xd4\x3f\x87\x90\xa4\x2a\x4c\x4b\xef\xc1\x5d\xc0\xa6\xfe\xf5\x06\x71\x72\xf0\x3e\x6b\xa3\x8a\x42\xf2\x7c\xcd\xd3\x16\x31\x68\x39\x0a\x38\xfb\x1c\xec\x6b\x79\x6e\x8b\xaf\x0b\xcd\x4c\x3b\xd4\x2e\x35\xf6\xe2\x6f\xad\xee\x47\x2d\xb5\x7b\x07\xbb\x50\xcd\xcc\x56\x73\xa3\xed\xf7\xa5\x9b\x1d\x49\x28\x28\xe8\xf4\x56\xf1\x81\x77\x61\x1e\xe3\x87\xf2\x0f\x3e\xca\xa3\x7f\xfc\xd1\xec\x46\xb1\xba\xa5\xfe\x3b\x9f\x1f\x74\xc5\x82\x20\xee\x53\xbc\xf0\x98\x8a\x7f\x26\x7b\x23\x86\xbc\xf8\xc2\xb6\x24\xcd\x3c\x85\x28\x19\xee\x72\x21\x8e\x80\x2d\x3f\x0b\xe6\x33\xdc\x9d\x42\x71\x7c\x71\xed\xb2\x6c\x2d\x1e\x50\x97\xff\xdb\x79\x3d\x0d\x83\x7c\x49\x41\x8e\x66\xb5\x7c\xc8\x2f\xf9\x9a\x41\x6d\x56\x91\x44\xaf\x78\xc8\xda\xd2\x5d\x5f\x5b\x1e\x33\x73\x50\x9d\x0f\x9f\xee\xa2\xce\x0f\x04\xe1\x2b\xc3\xa7\xf7\x33\x09\x40\x76\x8e\x0e\x03\xe8\x66\xf5\xaa\x07\x67\x08\x27\xe8\x5f\x12\x85\xf0\x1d\x97\x64\xe0\x86\x52\x3b\x7d\xc5\xcd\xa7\x30\x75\x9c\xf0\xf2\x23\xb0\xec\x1a\x1a\x2a\xfb\xeb\x4d\x71\x0b\xe2\x7f\xe9\xfc\x73\x7b\xe7\xe4\x2f\x83\xad\x64\xf1\xce\xf8\xf3\x5e\xe7\x90\xe2\xf3\x87\x83\x76\x08\x82\xff\xa4\x27\x42\xe2\xce\xfe\x73\x1e\x0a\x91\xb7\x0e\x16\x7c\x47\xe5\x1d\xdb\x34\x3e\xf6\x75\xd5\xe2\x7d\xc7\x09\x63\x27\x0c\x4e\x9c\x31\xa5\x8b\x43\x1b\x4d\x84\x77\xde\x3b\xbb\x9e\x46\x96\x9c\x3f\x7b\x93\x9c\x78\x54\x92\x32\x3d\xe5\x93\x74\x0e\x74\x66\x86\x2f\x67\xe0\x99\x0c\xc9\x85\xdf\x76\xed\xde\xcf\x30\xce\x9b\x0b\xe9\x93\xb0\x5c\x62\x5c\x73\x5b\x78\x30\x17\x44\xb3\xd5\xa9\x9c\xa2\x87\xad\x7c\xa1\x7d\x05\x5c\x70\xef\xaf\x38\xf5\x5e\x6e\x43\xa2\xe1\xca\x46\xb3\x92\x14\xef\xea\xec\xbf\x25\xf0\x7f\xea\x83\xfc\x5b\xf8\xd0\x48\xce\x31\x0f\x9b\x68\xd8\xc1\x6f\x7a\xa6\x6b\x2e\x50\x1c\x79\x7e\x4e\x8a\x8c\x3c\x9a\x25\x91\x1f\xb2\xff\xca\x22\x54\x8d\x24\x84\x47\xff\x7d\xc2\x9a\x5d\xc7\x8a\xe5\xe7\xf4\x5f\xdd\x7f\x1c\x3a\x6c\x9a\x2a\x5b\xb7\x4d\xf4\xb4\xc3\x5d\x3c\x9b\xde\x36\xca\x27\x4c\x8b\x0e\x8a\x65\x3b\xb7\x64\xe3\x52\x75\x3b\x6c\xaf\x10\xc7\x8e\x99\x92\xf2\x36\xa0\x2b\x66\x5c\xbc\x76\x2e\x23\x81\x6d\x96\x7f\xa4\x7f\x15\x0c\xdc\x87\x76\x9b\xed\x75\xd4\xdd\x0e\x74\x70\x55\xeb\xe5\xa3\x5a\xdd\x4d\xd5\xe9\x5d\x9f\xc1\x4f\xf7\xb3\x05\x67\x04\x6a\xf7\xd0\x7f\x5f\x8a\x61\x77\xca\xaa\xd8\x24\x2f\x80\x71\x90\xe3\xde\x7d\x68\xf2\x3a\x3c\xf3\x40\x3a\xff\x99\x33\xc9\xaa\xe7\x0f\x4f\xc3\x32\xe0\x8c\xc5\xbd\x81\x1f\x2d\xab\x3c\x76\x9f\xa9\xa7\x77\x1f\x8d\xda\xc4\x40\xc3\x93\xb7\xa1\xf5\xe8\x0d\xf2\xc9\x13\xf3\x0e\x43\xb3\x12\x96\x07\xa2\x6f\x44\xa3\xb7\x01\x59\x22\xde\x39\x78\x2b\x62\x06\xf3\x62\xbe\x33\x79\x4d\x28\x44\x95\xd6\x9e\xc7\x9b\x21\xc6\xcf\xb9\x9a\x8c\x5a\x89\x4c\x46\x43\x27\x93\xa1\x05\x24\x6e\xf5\xe8\x5b\x17\x33\xdb\x62\x70\xdb\x96\xa0\xd4\x97\xe9\xa1\xe4\x39\x10\x6f\xc3\xe1\x21\xde\xd1\x26\xa5\xb4\x77\xba\x9c\x87\xcc\xc0\x54\x77\x95\x0f\x87\xb7\xfd\x7b\x7b\xc0\xcc\x49\x40\x6f\x15\x70\x45\x75\x59\xc6\xb8\xe3\x1f\xcf\xc9\x06\x05\x5e\x01\x5b\xc4\x17\x52\xcf\x16\xc0\x75\x21\xf1\x38\xc4\xa5\xa1\x69\x99\x11\x59\x71\xa9\xf6\xec\x8c\x54\x0b\x83\x70\x2e\x44\xb3\x68\x83\x2a\x97\xd2\xd7\xf3\xcf\x34\xdb\x56\xd4\xfb\x0d\x3c\xaa\x05\x6d\x61\x3b\x28\x70\x03\x53\x32\xfb\x66\xfd\x43\xea\x73\x2f\x1f\xb5\x62\x96\xcd\xe4\xa6\xc5\xc6\x0e\x2a\xf5\xe3\xe0\x62\x7a\x37\x38\x51\x11\x16\x57\x59\x7e\xae\xf9\xf8\xf3\xee\xfd\x22\xe0\x8c\x22\x59\x49\x88\xc6\x99\x5a\xce\x0d\x5d\xfc\xd8\xc5\xa6\x15\xea\xd2\x44\xdf\x5d\xd1\x03\xa0\x1f\xa1\x04\xb9\x98\xb9\x3b\x13\x66\x80\x68\x43\x0e\xe9\x18\x44\xf1\x4d\xd6\xd4\xdd\x70\xc2\xa3\xb9\xa2\x2b\xc8\x7d\x70\xbe\x47\x69\x5f\x77\xfd\xaa\xac\x67\x51\x2b\x7a\x23\x3f\x2e\xda\xb3\xb7\x3e\x2d\xe2\x28\x7d\x62\xcc\x19\xfb\xd4\xf1\x30\xe3\xbc\xba\xce\xa3\x45\x3b\x3d\x7d\x38\x97\xe9\xfd\x2d\x3e\x6a\xf8\x56\x18\x9e\x15\xb9\x81\x08\x50\x1b\x42\xd7\x1b\x1f\xc7\x35\x86\x70\x1e\xe7\xcc\xb5\x53\xff\x39\xcf\x1a\xf3\x87\xa8\x19\x4f\x8f\xe7\x00\xe4\x08\x73\xb4\x1c\xee\xf1\xf1\xc1\xd3\x21\x2e\xaa\xf0\xc5\xe8\xfd\x71\xff\xd4\xc8\x78\x67\x04\x6a\xee\xf7\xc5\x90\x80\xfb\x61\xe1\x0e\x85\x94\x75\x87\x14\xc4\x0d\x1b\x5b\xf0\x65\x0a\x11\xa9\xe5\x95\xe6\xf8\xf9\xec\x68\xa0\x12\xc0\xca\x07\xb4\x62\xcf\x74\x3f\xcc\x35\xd5\xd3\xe1\x51\x99\xa2\xdb\x85\x6a\xfe\xc5\x66\x04\x47\x19\x1e\x3c\x8e\x26\xe3\x9f\x3a\x62\x8b\xc6\xe8\x79\x24\x4e\xec\x9f\xf0\xe9\xc9\x8e\xdc\xce\xc3\xd5\x82\x55\xce\x46\xff\x97\xfa\xf2\x17\x77\xd1\x7d\x6b\x53\x7e\x51\xb6\x7f\x40\x3a\xc2\xc9\xd1\x33\xc9\x51\x0b\xac\xed\xb3\x11\x0c\xda\x6c\xda\xce\xbe\xed\xec\x5a\xf1\xf7\x4d\x67\x89\xec\xfc\x65\xcb\x50\xf7\xcf\xad\x69\xa9\x4f\x53\x6c\x08\xe1\xfe\x19\x1f\xea\x21\x7f\xf4\xcb\x2b\x97\xe5\x58\x39\x27\xf2\xb6\x7c\x88\x47\xc6\xd9\x12\xd0\xf6\x37\x0e\xfb\xd5\xdd\x66\x25\x04\x06\xf7\x7e\x23\x0e\x2c\x32\x9c\x7f\xc8\x73\x8d\x72\x1b\x8e\xb6\x70\x83\x97\x5f\x7e\x68\x45\x84\x88\xd6\xe8\x08\xab\x28\x6d\x72\x68\xba\x71\x49\x2f\x9d\xde\xf5\x2a\xe3\x30\xdb\xe3\x25\x6d\x16\xdb\xe3\xe4\x57\x5f\x3c\x7c\x32\x2e\x39\xb3\xdd\x5d\xce\x94\x3a\xb8\x8c\xa3\xb4\x40\xce\xc3\xe6\x26\xe1\xce\xd1\x06\xe5\x8e\x4d\x41\xf0\x6f\xae\x15\xce\x19\x95\x23\xd5\xad\x6c\xd8\xd3\x9e\xff\xcf\x96\x09\xc1\xce\x1f\xe0\x07\x3b\x84\x07\xe3\x6a\x69\xd3\x8a\x7e\x1c\x0a\x73\x31\x1d\x01\x36\xa6\xc0\x4e\xe4\x80\x50\x0d\x2e\x55\xbe\x22\xf4\xb7\x40\x76\xc4\xfd\x63\x9e\xe5\xd7\xd1\x5e\xf6\x25\x09\x1f\x5e\x65\xa9\xbf\xd8\xba\x4f\xc6\xe5\x7c\xfe\x6c\x93\xa9\xd4\xe9\x91\x23\xa1\xad\x90\x0d\xa4\x50\xda\x43\xec\x36\x10\x11\x52\xb7\xcd\xb1\xfb\xa4\x7c\xbf\xc9\xa7\x85\x37\x49\x80\x9e\x18\xd4\x7a\x10\x46\x07\x5c\x7a\x32\xaf\x3c\x3b\x33\x91\xed\xce\xed\xe6\xe1\xdc\xce\xf1\xa2\x77\x7c\x55\x98\x83\x99\x8f\x27\x33\xdf\xd2\xcc\x50\xcb\x8c\xcd\xac\x1e\x52\xb1\x3f\x34\xde\x3d\x8b\xa9\x96\x2f\xea\xd8\x04\x6b\x06\x70\x8a\x1d\x97\xf3\xdb\xc8\xbf\x52\xd9\x6f\xa5\x2f\x5d\x8a\x1e\x08\x0b\xb3\x8b\x34\x91\x0f\x50\xb2\xe7\x97\x51\x7e\xf0\xff\x58\x24\x95\xc5\xe3\x2d\x7c\xed\x49\xe1\xa3\xcf\x8a\x37\xac\x4f\xab\x09\x5f\xd3\x16\x47\x0d\xba\xa2\x34\x4b\xe3\xdd\x45\x35\x06\x0e\x23\x4c\xbe\xfa\xcc\x3e\x76\xa7\x85\xb4\x91\x16\xd9\xa8\x80\x79\x6d\x92\x36\x9c\xcb\xf0\x1a\xb8\x47\x0f\x33\x1d\x37\x63\xbd\xd5\x8c\xfe\x77\x7d\x46\x74\x51\x23\x8c\x96\xe0\xd6\x48\x4b\xfc\x32\x0e\x7c\xd9\x92\xb8\xb1\xb8\xcb\x49\x8f\xc1\x8b\xc6\x7b\xab\xc8\xe7\x2a\x97\xb7\x49\xa7\x8e\x35\x6d\x5f\xa3\x17\x82\xe2\x94\xd5\xef\x06\xee\x47\x7d\x66\x34\x76\x9f\x64\x4b\x4a\x58\xc4\x45\x58\x7f\xe8\xcf\xa8\x67\x1d\x7b\xde\x79\x90\x0e\xa7\xa5\x04\x02\xc1\x77\xc3\x67\x1e\x5a\x67\x28\x1d\x05\x4c\x1a\x3e\x74\x75\xd3\x85\x6e\x95\xeb\x80\x52\x71\xdf\x95\xc9\x39\x91\x26\xbe\xbd\x1e\x97\xbf\x55\x57\xc9\xad\x9b\x71\x44\x4e\x89\x5f\xe0\xf2\x25\x5a\xa7\xba\xf9\xed\x1f\x7c\x40\x58\x37\x1c\x89\x3c\xfa\xfd\x61\x43\x1a\x62\x9d\x81\x82\x8a\xc1\x66\xd0\xb6\xd8\x72\xb8\xf9\x7f\xe2\xf6\xfb\x86\xbe\x97\xf1\xf5\x41\x4c\xbf\xaf\xd9\x71\xa6\xb1\x42\x8f\x7f\x73\x6b\x21\xc4\x0e\xcf\x57\xa2\xe7\xfc\xfa\x17\x12\x0e\x46\xa0\xe2\x48\x03\x00\x91\x84\x9b\x18\x42\xe3\xc6\x1d\x0f\x3c\x0e\x5b\xd0\xe8\xcd\xd2\xca\xb5\x44\x19\x16\x25\xfc\x66\xe0\xc5\xb0\x73\x31\x1f\x7f\xbf\xf2\x91\xdb\x5d\xd0\xf7\x92\x1d\x7c\x0a\xb9\x1f\x80\x23\x98\xdf\xf7\x97\x39\x19\x1b\x1a\x6b\x73\xc2\x05\xbd\xb1\x4b\x41\x61\x7e\x45\x01\x2e\xe4\x7c\xcb\x93\xbd\xc7\xf1\xe5\x7e\xfe\xae\x5e\xfe\x8e\xa8\xeb\xb6\x2d\x52\x12\x32\x10\x80\xf1\x77\x3b\x4a\xd9\x65\x45\xdb\xf8\x84\x73\x4a\x90\x47\x3d\x7c\x4a\x4a\x29\x20\x3f\x24\xa4\xf0\xf7\x9e\xbe\x9b\x2e\x4e\xa1\x1d\xc9\xcd\x98\x3a\xc3\x63\x24\x9c\xd6\x51\x4a\x65\xb7\xfc\x51\x1b\xa2\x69\x29\xc7\x16\x95\xde\x5d\xf0\x47\xea\x56\x22\x8e\xf2\x4f\x4e\x3c\xb7\x6d\xc5\x49\x32\x06\x4e\xc3\x23\x5e\x48\x02\xd5\xc1\xf7\xde\x98\x2d\x27\x34\xdd\xc6\xfa\x44\x1a\x03\x69\xea\xd2\x18\xc6\xf1\x26\xe9\x38\x1d\x91\x0e\x6b\x89\x7c\x2a\x3d\x54\x7a\xbf\xf2\x03\x92\xd1\x48\x9a\x1f\x0e\xff\x67\xe8\xa6\x95\x2d\x11\x10\xee\xbb\xfe\xc9\x14\x1f\xf3\xfe\x3e\x65\x29\x28\x7d\xb5\xe2\xf8\xbf\x88\xb9\x89\x57\x27\x60\xc4\x96\x57\x37\x17\xfd\xe3\xdf\x59\x51\xb6\x4e\xd1\x73\x6f\x5b\x7c\xd8\xb8\x52\xae\x0d\x7b\x26\xf7\x2d\x38\xba\xb5\x0b\xf2\x4f\x6b\xbb\x5a\x13\x9b\xf8\x23\x7d\xa8\x3a\x3b\x98\x8f\xfe\xf5\x5f\xb9\x34\xfd\xfc\xb7\x7f\x53\x8f\x3e\xff\x58\x99\xd7\x88\x1a\x55\xab\x9d\x7e\x9d\xed\xf0\xa8\x8f\x94\xa2\xcf\x3f\x0e\x0a\xf2\x25\x4d\xf6\xb3\x64\xeb\xfc\x33\xb9\xd9\x8e\xdf\xd7\xaf\xfd\xdf\x00\x00\x00\xff\xff\x23\xa4\xc8\x8f\xa2\x9c\x00\x00") func confLocaleLocale_plPlIniBytes() ([]byte, error) { return bindataRead( @@ -927,12 +927,12 @@ func confLocaleLocale_plPlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 35984, mode: os.FileMode(493), modTime: time.Unix(1438257711, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 40098, mode: os.FileMode(493), modTime: time.Unix(1439758816, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_ptBrIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xdb\x8e\x1c\x47\x96\xd8\xb3\x09\xf0\x1f\x52\x32\x68\x49\x40\xb3\x08\x69\x60\xc3\x10\x98\x94\x9b\xdd\x2d\x91\x03\xf6\x65\xd8\x4d\x2e\x60\x41\xa8\x8d\xca\x8c\xaa\x4a\x31\x2b\xa3\x26\x23\xb3\x9a\xcd\xb7\x85\xff\xc2\x4f\x4b\xec\xc3\x40\x03\xe8\x69\xe0\x17\x3d\x6e\xfd\x98\xcf\x2d\x6e\x99\x59\x2d\x7a\x67\xbd\x00\xc1\xee\x8e\x38\x71\x3b\x71\xee\x71\x22\x52\x6d\xb7\xf3\x52\xdb\x22\x7f\xb3\xc9\xac\x6e\x77\xd5\xfe\x2f\x26\x2b\x75\xf6\x43\xd5\x65\xaa\xef\xcc\xe3\xb5\xb1\x5b\x5d\xaa\xd2\x64\x3a\x53\x9b\x6a\xb5\xff\xb8\xd3\x75\x06\x2d\xda\xaa\x83\xb2\x4d\xf6\x83\x79\xf8\xe0\xe1\x83\xb5\xd9\xe8\xfc\x6a\xff\x71\x55\x35\x2a\x7b\xd9\x54\x45\xa5\xea\x87\x0f\x4a\x65\xd7\x0b\xa3\xda\x32\xbf\x52\x55\x03\xed\xa0\xe7\xc2\x34\x5d\x6b\x6a\xfd\xf0\x81\x7e\xbf\xad\x4d\xab\xf3\x33\xfa\xa9\x5a\xe8\x45\xd7\xdb\xfc\xf8\xe7\xbe\x54\x0f\x1f\xd8\x6a\xd5\xcc\xab\x26\x3f\x03\x70\xac\xb3\x06\xfb\x9c\x27\xc5\xa5\xca\xae\xa9\xf8\xdb\xec\x9b\x7f\xfd\x6b\xa6\x3b\xb5\x55\xd9\x53\xbb\x51\x75\xfd\x4c\x59\x6a\xd1\x66\xfd\x46\xd1\xa0\xea\xe9\x13\xae\x91\xbe\x4d\xdf\xe5\xd7\xaa\x6a\xe5\xcf\x7e\x9b\x9f\x40\x87\x96\x47\x6b\xf5\xaa\xb2\x9d\x6e\xf3\xd7\xf4\x0b\x95\xdd\xea\x85\xad\x3a\x9d\x5f\xc3\x7f\x0f\x1f\xec\x74\x6b\x2b\xd3\xe4\x6f\xe1\xe7\xfe\x5f\x00\x09\x5b\xb5\xf2\x28\x78\xf8\xa0\xd3\x9b\x6d\xad\x00\xfa\xdc\x94\xba\x86\xea\x5a\x35\xab\x1e\x41\x5e\x96\x95\xd9\x28\x44\x5a\x0f\x18\x6f\x14\x20\xee\x8d\xed\xf7\x1f\xdb\x0a\xa0\xf4\x46\x55\x75\x7e\xf6\x18\x7f\x60\x97\xd6\xde\x1a\x40\xdf\xb5\x6e\xd6\x0a\x67\x35\xef\xee\xb6\x1a\x26\x55\x56\x2b\x9a\x45\xa1\xb6\x5d\xb1\x56\x30\x75\xfa\x89\xbd\xb6\x7a\x6b\x60\x9e\xa6\xbd\x03\x38\xfa\x75\xff\x37\xea\xdb\xb4\x2b\xd5\x54\x1f\x54\x87\xd3\xbe\x94\x3f\xf6\x7f\xa1\xc9\x6f\xaa\xb6\x35\x6d\x7e\x06\x9b\x5d\xaf\xe1\xef\x46\xdf\xce\xb1\xa3\xfc\xc2\xec\x4c\x96\xf6\x83\x75\x40\x09\x2d\xae\x0e\xaa\x55\x76\x8e\x7f\x48\x47\x58\xb9\x34\xed\x3b\x6e\xf8\x3d\xfc\x86\x9b\x3e\xee\x00\x26\xc3\x8d\x87\x13\x51\x0d\x20\x89\xaa\x7f\xd0\xad\x6e\x68\x0b\x23\x98\xff\xa3\xed\xc3\x07\xaa\xdc\x54\xcd\x7c\xab\x80\xa4\x3c\x65\x99\xec\x18\x4b\x69\xb3\x4a\x03\xdb\xa5\x8a\xc2\xf4\x4d\x37\xb7\xba\xeb\xaa\x66\x65\xf3\x13\xd3\x2c\xab\x55\xdf\x4a\x37\x19\x50\xcf\x09\xd2\x05\x10\xc0\x01\x10\x44\x27\x4c\xd6\xce\x97\x5a\x97\xf9\xf7\xf0\x1f\x2e\xe6\xc2\x74\xfb\x5f\x61\x5e\x50\xbd\xed\xeb\x1a\xf0\xf4\xe7\x5e\xdb\xce\xe6\xd7\xa6\x06\xc2\xef\x7c\xff\x3a\xbb\x82\xfa\x87\x0f\x2a\x6b\x01\x20\xbf\x6a\xcd\xa2\x86\x0d\xa6\x6e\x0b\xd5\x14\x30\xfb\x13\xfa\x81\xd4\xf5\xf0\xc1\x8f\x56\xab\xb6\x58\xff\x84\xf3\xc1\x5f\xf2\x2b\x6d\xff\xdc\x57\x56\xb5\xb3\xd9\xec\x9e\x7d\x45\x32\x8a\x48\x88\x46\xf3\x83\xc1\x48\x40\x80\xf9\xc9\xfe\x6f\x40\x32\xc4\xaa\x3f\x56\x8d\xed\x80\x0f\x60\x1c\xf9\x2d\x7f\x49\x3f\xdd\x16\x74\x55\x57\x03\x57\x22\x33\xd1\x22\xaa\xa8\x36\xdb\xaa\x56\x65\x57\x6d\xb5\xd1\x15\xfc\x72\xf6\x5e\x17\xbd\x34\x43\x34\x00\x4d\xce\xcb\x05\x4b\x94\x1f\xcc\xca\x66\x84\x9b\x36\x3b\xbf\xbb\xfe\xd3\xab\xa3\xec\xca\xd8\x6e\xd5\x6a\xf8\x3d\x33\x7d\x06\x3f\x00\xfe\x0f\xb0\x34\x68\xc2\x83\x8e\xb6\x48\x67\xcf\x01\x43\x24\x92\x4e\x61\x5b\x2d\xc3\x22\x0f\xdc\x54\x5b\x83\xbb\x3e\xac\x07\x81\xd5\xe5\x2f\xe0\xbf\x11\x62\x86\xdc\x04\x3d\x11\xf7\x5d\x80\xec\x9a\xea\x09\xea\x51\x20\x41\x1f\x57\xa6\xcd\x96\x6a\x67\xda\xa3\x0c\xfa\xcc\x4c\xb6\xd1\xb0\x7f\x95\xdd\x98\xec\xe5\xc5\xc5\xe5\xe9\x73\x10\x30\x1b\x28\x06\x31\xf3\x33\x90\x1c\x75\x52\x00\xa2\x0a\x90\x20\xb0\x8a\xbe\x5b\xfe\xf7\xf9\x4a\x37\xba\x05\x01\x56\x54\x8c\x43\x42\x09\xac\xdd\xda\x7a\xbe\xc1\x2d\x02\x41\x61\xb2\xeb\xeb\x57\x38\xd1\x6e\x0d\x94\x01\xd4\x8c\xac\x68\xff\x5c\x23\x5a\x65\x2a\x97\xd0\x31\x55\xe0\x8c\x55\x0b\x28\xdf\xd1\xaf\x0b\x37\x79\x94\xd5\x16\x4b\x02\x7a\x75\xdb\xce\x41\x1c\x75\x77\x73\xe9\x8b\x06\x98\xee\x49\x0f\x7b\x92\x6e\xb2\x86\x76\x1f\x26\x0a\xc2\xbf\x03\x9e\x04\xd1\xbf\x68\x11\x74\x86\x44\xe5\x56\x37\xbd\x8d\xc0\xc9\xaa\xa2\x49\x21\x51\x00\x6b\x82\xd6\x49\x50\x7f\xbc\x05\xce\x01\xc1\xb4\x33\xa1\xd2\xad\xf8\xc4\xd4\x06\x88\x08\xd0\xdb\x10\xb4\xca\x6c\xaf\x32\x13\x8b\x8d\x4c\xc1\xec\x3f\x63\x16\x99\xc7\xd8\x43\xe8\xd7\xaa\xfa\x80\x63\xa4\x4c\xe3\x41\xdd\x30\x37\x06\x57\x6b\x90\x64\x03\x1c\xfe\xb5\x31\x1d\x23\x14\x75\x22\x50\x14\x8e\x67\x55\xbd\x83\xc2\x06\x50\x01\x33\xaa\x5a\xcd\xe0\xc8\xa5\x3d\xa8\x12\xa4\x3b\x62\x0d\x44\x54\x20\x40\x57\x17\xf6\xb2\x97\x3a\x40\xf7\x4e\x67\x40\x2d\x99\x2a\x34\x28\xae\x4c\x19\xbf\x3b\xad\xcc\x3f\x9e\x17\x28\x63\xed\xfa\x77\x48\x2d\x41\xab\x80\x62\x3c\x35\x9b\xfd\xaf\x0d\x0e\xc7\x05\x6e\xb0\x97\x16\xe8\x52\x2d\x41\x47\x66\x6f\x5e\xbf\xb2\x4c\x84\x45\x6d\x50\xdc\x6e\xb2\x5d\x05\xaa\xf4\xfa\x05\x2c\x60\xdd\x75\xdb\xf9\xd6\xb4\x1d\x52\x3d\x00\xbf\xb8\xb9\xb9\x8a\x4a\x5d\x77\x17\xfb\xdf\x36\xba\x25\x04\x6f\x09\x0e\x3a\xc1\x5d\x52\x99\xa2\xbd\xe4\x7d\xa9\xda\xfd\x47\x3f\xd3\x19\xef\x6d\xdf\xd6\x39\xcc\x60\x6a\xdb\xa1\x6a\x62\xba\x34\x61\x62\xa9\x78\xb6\x38\xaf\x27\xf8\x9f\x05\x64\x74\x6a\xb3\xd8\xff\x82\x2c\x48\x0a\x94\x48\xd2\x6c\x51\xd1\x1d\xa4\xc9\xcb\x6d\x81\xd5\x95\x15\xa5\x7b\x48\x02\x01\x23\x45\x76\x91\xd3\xcc\x76\x03\xf8\xf0\xa2\x26\xbb\x3e\x47\x24\x51\xe1\xb2\x35\x9b\xfc\x54\xff\xa7\xe8\xcf\xb0\xdf\xba\x29\x41\x22\x48\x5f\x34\x2c\xef\x3c\xa8\x52\xac\x81\xa5\x6a\xd0\xc0\x45\xb5\xf4\x18\x7c\xfd\xfd\x49\xf6\x5f\xff\xf0\xcd\x37\xb3\xec\x32\x03\xbd\xba\x51\x9d\x10\x0b\xd0\x11\x98\x36\xd2\x09\x48\xd3\xec\x73\x64\xa6\xcf\xb3\xa7\x54\xf2\x3f\xf4\x7b\x05\x06\x88\x9e\x81\x60\x7a\x36\x43\xb5\x5a\xd5\x40\x78\x4c\x99\x8f\x79\x60\x64\x89\x8d\x86\x91\xd1\x90\x10\x80\x54\x46\x0e\x60\x9c\x51\x34\x2f\x10\x49\xed\x26\x7f\xa1\x16\x15\x08\x14\x20\xc2\x13\x2e\x91\x49\x93\xc6\x27\xbb\xc9\x70\xcf\xf3\xc6\x74\xd5\xf2\x2e\x6a\x70\x81\x05\x7e\x95\xd0\xe0\xc4\xb4\xad\x46\xb2\x45\x33\x14\xc6\x20\x6b\xb4\xd0\x87\x15\x03\x6d\x0b\x68\x7a\xd8\xfe\xcb\x1e\x46\xb2\x7e\xa3\x60\x4b\xcd\x72\x59\x83\x5d\xc0\x92\xf5\x18\x28\x0c\x86\x24\x01\x7b\xc9\x15\x29\x04\x50\xf6\x16\xec\xbf\x53\x6d\x91\x18\x51\xd4\x9c\x9c\x5e\x80\x90\x47\x01\x0f\xe4\xb6\xc1\x86\x30\xe2\xb6\x35\x25\x6b\xbb\xa3\xac\x0b\xe2\xa2\xe8\x5b\x0b\xbf\x88\x68\x28\x2b\xbb\x35\x4d\x85\xeb\xfc\x40\x02\xb4\x36\x85\xaa\x37\x88\x41\xd4\x74\xa0\xce\x41\x2f\xcf\x5b\x31\x2b\xc9\x16\x93\x71\x61\x8a\x64\x72\xb7\x1e\x75\x53\xd0\xe9\x5c\x89\xff\x93\x56\x38\x51\x27\x56\x8e\x98\xcb\x91\x2f\xad\xa1\x29\x20\x74\x6c\x26\x01\xf3\x5a\x0b\x72\xa0\x45\x33\x8b\xac\x64\x3b\x13\x55\x0e\xc6\xa6\x18\xdb\xf3\x5d\xa5\x6f\xc1\xe8\x40\x55\xae\x69\x92\xd0\x95\xdf\x3b\x1a\x42\x01\x4f\x82\x58\xae\xbd\x44\x46\x74\xb1\x2d\x6c\xa7\xfb\x93\x75\x5c\xcb\xbc\xdc\x94\x6d\xe8\x1e\x91\x87\x0a\x07\xf8\x1d\x46\x05\x84\x83\x39\x02\xff\x5c\xb7\x47\x38\x24\xd0\x12\xb4\xb6\x7e\x79\x0c\xaf\xc9\x67\x40\xae\xb0\xa8\x88\xc5\xaa\x9f\x39\xc3\x51\xcc\x3d\x36\x53\xde\x9a\x62\xff\x57\xd1\x6e\xb0\x97\x95\xc7\x86\xf7\x1b\x70\x2d\x29\xd2\xd4\x0a\xfc\x95\x23\xd0\x47\x38\x92\x42\x85\x8f\x8d\xc9\x26\x32\x41\xa6\x7f\xf9\xf2\x34\xff\xfa\x2b\xda\x1d\x60\x5b\x58\x10\x4f\x11\x18\x08\x84\xa2\xc8\xf9\x61\xd7\x7e\x8e\x07\xc8\x5e\x4c\x56\x6c\x37\x34\x77\xa9\x59\xa4\x55\x75\xa4\x79\x9c\xc1\x9c\x1a\x40\xc2\xc6\xa1\xdc\x71\x71\x9b\x09\x04\xb7\x4b\x9d\x12\x31\x1a\xe7\x2b\xd0\x3a\xce\x72\x6c\x45\x07\xc1\x56\x74\x73\xf0\x4c\xe6\x4b\x14\x27\x60\x32\xab\x1a\xa4\x08\x28\xb3\x8e\x8d\x06\x34\x91\xc0\xc2\x07\x76\xfa\x02\xa0\xbe\xf8\x36\x7b\xb4\x73\x06\xce\x1f\x50\x46\xcc\xd5\x0e\x1a\x22\xcd\xe7\xd7\xa0\xe4\x77\xec\x5b\xf1\xee\xd8\x9e\x15\x8d\x18\x24\x47\xa8\x77\xd8\x2a\x83\xff\xf7\x7f\x01\x93\x00\xc4\xd5\x6d\x53\x1b\x55\x22\x9e\x5c\xdb\x45\xd5\x20\x12\xa0\x7a\x49\x5e\x29\x32\xf4\x23\x20\x9e\x8b\xfd\xff\xba\x8c\xe1\x56\x66\xd1\x57\x75\x39\xc3\x05\xee\x80\x90\x4b\x34\x64\x85\x52\x92\x7d\xf8\x97\x29\x7b\x8b\x66\x08\x6b\x84\x9d\x2d\x50\x90\x75\x8a\xd7\xe6\xfa\x0a\x96\xc9\xf1\xb4\x42\xdf\xff\x02\x76\xf6\x6e\xff\x11\x80\xa5\xa9\xb7\x16\x10\x2f\x40\x40\xc5\x3a\x31\x18\x14\xeb\x55\x9e\x10\x0d\x0f\x5d\x44\xd4\xa7\xba\x1e\xfd\xe2\x47\x36\x7b\xfc\x0c\xfe\x07\x34\xab\x9d\x66\xc9\xbd\x1a\x6d\x0f\xda\x33\x28\x7e\xb2\x22\x59\x68\xba\x86\x84\x79\x46\x28\x39\xc8\x2c\x8c\x95\xc1\xe2\x1c\x11\xd9\xbe\x40\x46\xc8\x9f\xeb\xcd\xe3\x5d\x05\x84\xf1\x59\x76\x06\x35\x1b\x40\x29\x76\xa7\x89\xb9\x51\x7e\xed\x88\x4d\x81\x61\x4d\xbd\xd6\xbd\x18\x3d\x47\x20\x6d\x77\x15\x10\xc5\x63\xe0\x73\xe4\x2c\xd4\x59\x45\x5f\xe1\x9e\x90\x0d\xf0\x23\xc6\x25\xc0\xd1\xe9\xd9\xa0\x34\x75\x89\xa6\xcb\x80\x3d\x50\x4e\x0c\x3d\x6e\x07\x2b\x7c\x60\x6f\x2b\xc0\xff\xdc\xc7\x33\xe6\x34\xb9\xf7\x5d\x7e\xd3\x82\x74\x27\xf5\x87\x7f\x12\x65\x84\x50\xc7\x89\x0f\x75\x6c\xee\x88\x02\x6c\x7e\xae\x7b\x9b\x58\xa2\x16\xd9\xb0\x06\x92\x37\x2d\xe9\x1e\x81\x4b\x40\xa0\x23\x0f\x80\x0d\xa0\x37\x30\x7f\xa1\x33\xb0\x0f\x41\x20\x0e\xbd\x63\xa8\x66\x77\x5e\x86\x13\xa7\x9e\xdc\xce\x1f\x25\xe8\xf2\x93\xf8\x93\xf9\x60\x2e\x00\x01\xf2\x0a\x7d\xd0\xa2\xd5\x60\x95\xcc\xd1\x57\x17\x4f\x3a\x3f\x21\xb9\x48\x5e\xbb\x38\xce\xde\x22\x58\xeb\x2d\x9a\x0f\x1b\xbb\xca\xff\x08\xbb\xdd\x01\x93\x79\xf9\xf9\x5d\x86\xc1\x1a\xcd\x52\xf3\x33\x1f\xc9\xf9\xc4\xb6\x7f\x84\x91\x35\xee\xaf\x6b\x9e\x2a\x45\xb4\x59\xc0\xc4\xda\x76\xa8\x11\x8b\x1e\xec\x2c\x94\xcb\x3b\x52\xcc\xac\x10\x2d\x51\x20\xa9\x24\x2b\xe6\x07\x70\xec\x2c\xf3\x4e\x1d\xa9\x0b\x34\xc7\x78\xc8\xce\x88\x37\x97\x92\x31\xec\x2c\x46\x7f\x46\x3a\x1c\x67\x8e\xe2\x31\x0c\x2f\x5c\x14\x5b\x43\x5e\x39\xa3\xcc\x62\x93\x6d\x69\xaa\x78\x46\x8a\xd4\xee\x46\x6f\x16\xd8\xa1\xce\x5f\xc1\x6f\xa8\xc3\xa0\xf1\x79\xb5\x79\xf8\x00\x6c\xbf\x15\xc8\x01\x2f\xaa\xcf\x2c\x70\x05\xf8\x92\xca\x89\x6a\x04\xd0\x23\x00\x60\x15\xf0\x97\x10\xe2\x3b\x1f\xe7\x02\x81\x72\x9b\x5f\x89\xae\x43\x6b\x21\x20\x5b\x22\x60\x01\xdf\x33\xaf\x25\xd8\xf8\x20\x63\x0e\xfa\xeb\x1c\xd6\xdf\x6c\x08\xdd\x99\x16\xa3\x52\x0f\x16\x8f\xcb\xd4\x0d\x18\xec\xa5\x58\x0a\x4f\x17\xcf\x1e\xd9\xa7\x4f\x16\xcf\x22\x01\x7e\x84\x52\x18\xcc\x41\x32\x54\x40\xee\x17\xaa\x7a\x4f\x53\xd3\x12\xe5\x6b\x50\xef\xb7\xfb\xbf\xbd\xaf\x36\xf0\xdb\xa3\x32\x5b\xc3\xdc\x9c\x0f\x63\xd0\xd0\x45\xed\x62\x61\xb5\x0e\xd3\x33\x1f\x41\x74\xea\x8b\x36\x19\x77\x16\xc1\xb4\xf0\x3b\xb8\xe8\xc8\x74\x77\xa6\x6f\x3d\x99\x8b\xb9\x88\x0a\xc8\x93\x39\x2d\xb9\xae\x36\x55\x37\x26\x37\x27\x9a\x50\xcc\xd1\x52\x51\xbf\xa1\x69\xee\x51\x42\x96\x1a\xe3\x03\x27\xb0\xe9\x61\xc7\xb3\x25\x5a\x45\xfb\xbf\x62\x84\x2b\x22\x46\x20\x9f\x55\x0f\x12\x46\x67\x7f\xc8\x80\xfc\xc0\x76\x40\x83\x0c\xd8\x7c\xde\x37\x82\x59\x5d\x32\xc5\x5d\x56\xa4\xc8\x78\x78\xb4\xe3\xfa\x8a\x86\x4d\x7c\x0c\x9e\x43\xc3\x43\xf3\xc6\xc0\xec\xbe\xf4\xbb\xf0\xd5\x0c\x08\x48\xfa\x20\x28\xa0\x0b\xbd\x00\x0c\x25\x0b\x48\xf7\x14\xe4\xa5\x33\x95\x5a\x4d\x2b\x26\x57\x04\xe9\xe0\x08\x9c\x34\xda\x46\xb0\x8d\x16\x86\xd8\x4e\x2d\x60\x37\xc9\x35\x46\x2c\xca\xdc\x4f\x18\x0a\xfd\x76\xde\x45\xdf\x51\xd8\x9d\x14\x73\xce\x4d\x23\x2b\x81\x63\xbb\x9d\x06\x2a\xef\xf4\xe1\x15\x83\x46\x14\x50\x58\xf3\xfe\x9f\xc1\x5f\x6f\xd6\x9e\xda\x91\x42\x70\x3e\x38\xad\xee\xc0\xac\xbe\x6c\xf5\x57\x93\xf3\x6a\x75\xa9\x97\x20\x1d\xbc\xf2\xb3\x2e\x42\x6b\x63\x26\x7c\x2d\x60\x4c\x4d\xc2\xa9\x4e\x9f\x52\x60\x2e\x90\x11\x0e\x50\x70\x98\x6e\x8c\x72\x10\xdb\x60\x5b\xf6\x88\x7a\xb7\x32\xd6\xa7\x0e\xb1\x61\x50\x1f\x37\x19\xa3\xd8\x4d\x06\x79\x4c\x26\xec\x5b\x75\xc6\xcc\xed\x1a\xfd\xfe\x4b\x62\x29\x34\x67\x29\x94\x25\xa0\x51\x00\x08\x5d\x4f\xa8\x04\x92\xc5\x01\xfe\x1b\x6b\x5a\x70\x92\x14\xc6\x14\xef\xb4\xcd\xaf\x51\x62\x35\x26\xbf\xe0\x90\xae\x29\xd1\xf7\x3b\xae\x41\x56\x4a\xa4\x13\x3d\x59\x80\x7d\x03\x3d\x5d\xc4\x16\x6b\xef\x2d\x56\xd4\x4b\x17\x71\x88\xa8\x4d\xc2\x37\x67\xc2\xd3\xa3\x8d\x7f\xf8\xe0\x6a\x60\xe5\xbe\xd6\x49\xcc\x3c\xf3\x4b\xbf\xbe\x7e\x71\x43\x56\xf6\x85\xc4\x95\x8a\x35\x98\x48\x18\x06\x79\xf8\xe0\x45\xd7\x6d\xed\x1b\x89\x54\x60\x94\xe1\x1a\x3b\xbe\x43\xe3\xd2\x95\x72\x8c\x6f\x05\x1d\xdd\x68\xb5\x89\xe6\x0a\x96\x19\xe0\x7c\x0b\x6a\xff\x18\x54\x69\xb2\x3e\xf4\x05\xda\x10\xec\x26\x13\xfe\x2c\xb2\xae\x27\xc2\xd8\xc1\x7b\xd2\x14\xa2\xff\xc7\x51\x24\x6e\xa7\x3e\x54\x66\xf6\x8f\x20\xcc\xea\xed\x5a\x91\x91\xe2\x61\x31\x54\x40\x27\x3b\x71\x3c\x52\xd5\x4b\xd5\xf4\x9b\xfd\x2f\x6d\x55\xa0\x13\xdb\x67\xeb\xfd\xaf\x4b\xdd\x64\x5f\x3e\xfe\x8a\x9c\xa6\x7e\x51\xa3\x69\x81\x82\x62\xfe\xd5\xa0\xe7\x12\xf8\xef\xdf\xb9\x77\x5b\x7d\xd0\x49\x9f\x14\x09\x7b\x64\xb1\x8e\x4c\xce\x51\x3d\x99\x5f\xe0\xbc\xea\xda\x10\x25\x5a\xb4\x73\xc3\x1c\xa8\xa1\x7a\x7f\xb8\x21\x48\xa7\xcd\xfe\x23\x68\x13\x33\x6e\xc8\x62\x26\x41\x36\x70\xdb\x01\xc1\xea\x98\x10\xda\x61\xf0\x4a\x5a\x85\x46\x1c\xbb\x12\xd3\x97\xa0\x9a\x77\xa0\x7e\x1b\x81\x3c\x6b\xc9\x61\x07\xab\xb6\x59\x83\x40\x2d\xcd\xb7\xfe\x48\x07\x34\x17\x79\x12\x05\x31\x24\x97\x39\x39\x0e\xc5\x18\x64\x28\x75\x3f\x8b\x38\x38\xf8\x09\x1c\xbc\x09\x32\xa4\x8d\x59\x98\xbc\x1d\x50\x9e\x18\xde\x20\x6f\x3f\x1c\x44\xcd\x17\x20\x85\xe7\x9d\x7a\xa7\x9b\x11\x4b\x66\x3f\x83\x7a\x43\x6d\x8e\xde\xac\x88\x1d\xf0\x69\xa6\x9b\x0d\x9c\x9b\x51\x53\xb0\x55\x0e\xb4\x1c\x46\x76\x47\x4d\x3b\x60\xb6\x83\x6d\x99\xf1\xc6\x8d\x78\x4f\xa9\x01\xac\xb5\x9c\x12\x1c\xbe\x51\x6f\xb9\x8d\x05\x62\x7f\xa7\xef\xa2\x56\xa9\x9c\xd8\xee\x7f\x5b\x60\xf8\x32\x69\x54\xd5\xb5\x5e\x61\xcc\xd1\xcd\x12\x36\xaf\x49\x27\x87\x24\x88\xb1\xca\x88\x65\x2a\x6c\x54\xe1\x5e\xf8\x9d\xf0\xbb\x1a\xc8\x20\xf6\x57\x78\x3f\xa5\x8e\x6d\x04\xf4\x95\xe0\x0f\x6c\x11\xf9\x9c\x34\x87\x60\xea\x16\xba\xed\xd8\xd0\x42\x13\x0f\xc5\x77\xd5\xa0\x30\x46\xd5\x22\x13\x1d\xec\x9d\xb8\xb3\x2e\x80\x35\x1a\x05\x88\x19\x7d\xd4\x64\x98\xc4\x9e\xd3\x51\xcf\x60\x3b\x81\x62\xd1\x1d\xaf\x23\xf6\x97\xcd\x54\xdf\x5e\x8f\x1e\xea\xd9\xe9\xa6\xe0\x21\x92\x90\x87\xd5\x24\xbe\xb8\x20\x96\x38\x44\xbf\x07\xd9\x9a\x7a\xd2\xa5\x38\xd0\x54\x85\x8b\xac\xc1\x08\x46\x17\x8b\x17\x17\x03\x2b\x92\x76\x78\x28\x80\xb1\x47\x76\xb9\xf7\xbf\xd5\x1d\x4a\x12\x34\xde\x81\x9d\x1b\xbf\xd3\x1c\x32\x0c\x0b\x06\xa7\xe3\x14\x85\x10\x92\x0f\x59\x4c\xa6\x27\x9f\x20\x86\x21\x7e\x74\xeb\x17\x12\x8c\x5d\x1b\x31\xe4\xac\x5e\xf5\x15\x7a\xc9\x8c\x8e\x82\x9c\x77\x32\x9d\x9d\x0e\xfb\x96\x9c\x7e\x70\x7c\xd1\x55\x21\xa8\x3b\xdf\x1f\x1d\xcd\x05\x35\x12\xfa\x48\x7a\x38\xca\x36\x14\x71\xb3\xfd\x86\x86\x42\x24\x7b\xbb\x43\x1d\x30\xdf\x3d\x77\x60\x78\x2b\xc4\x3d\xd1\xa9\x74\x51\x87\xe3\x61\x04\x71\xa9\xc0\x3d\xed\x39\x30\x00\x7c\xd7\x01\x13\x21\xe6\xf9\x00\x1a\x0d\x27\x8e\x2c\x80\x5f\x0d\x5c\x84\xee\xa1\x60\x0c\x76\x6e\x44\xaf\xce\x1e\xee\xe4\x3c\x42\xbf\x2f\x6a\xd0\x9e\xc8\x33\xa0\x51\x1b\xbb\xd4\xed\xfe\xd7\xc7\xb5\xf2\xf1\xba\x99\x1b\x11\x6d\x6c\x3c\x76\x1e\x0e\xb8\x54\x1f\xd0\x7e\xea\xc6\xc2\xc9\x8d\xc5\xf1\x78\xc5\xa3\xd0\x80\xa3\x21\x90\x98\x06\x0b\xc3\x38\xc7\xf0\x18\xcb\xaf\x50\x7d\xca\x1a\x69\xdc\x4f\x59\x60\x8c\x54\x3e\x02\xc0\xb1\x07\xbb\xc0\x83\xa3\xd6\xb2\x8a\x4f\x75\x40\x95\xaf\xfa\xc6\x86\xd8\x6c\x32\x30\xb0\xc0\xfe\xaf\x8f\x6b\xf4\xaf\xa1\x60\x6b\x2a\xa0\x95\xad\x5a\x29\xd4\xae\x3b\x2f\x2f\x40\x60\x2b\x72\x4c\xe9\xb0\x70\x9d\xb0\x60\xab\x36\x1c\x42\x03\x66\xad\x9a\x21\x13\x82\x99\x88\x73\xc5\x50\xc4\x5a\x35\x2b\x8d\xb1\x41\xe8\x8b\xed\x48\x14\x2a\x68\x30\x73\x19\xfa\xee\xab\x96\x7f\xc7\x13\x0f\xdf\xa4\xe8\x2d\xe8\x80\x41\xcb\xa8\x1d\xfa\x95\xc5\xf0\xcc\xff\x67\x03\x36\x87\x69\x30\xb6\x59\xb4\xb0\xd2\x9e\xa2\x4b\x9b\xe8\x04\xbe\xd2\xa3\xc0\x09\x39\x92\x55\x77\x47\xde\x63\x45\xbb\x76\x25\x0a\x02\x7d\xf3\xba\x36\xb7\xba\x05\xcb\x18\xf9\x16\xec\x3a\x1c\x07\x8d\x37\x90\x76\xf9\xb9\x6a\x31\xd8\xed\xc0\x30\xb8\x46\x60\x4d\x49\xe7\xf5\x28\x9e\x67\xa4\x13\xd0\xce\x6f\x77\xd0\xc2\xe9\x94\x48\x3b\x7f\xf1\xc8\x7e\x31\x30\xd1\x9d\x4e\x0a\x1d\x6c\x55\x07\x18\x68\xd8\x87\xa2\x29\x95\x64\xa3\xe3\xae\x83\xcb\x00\xde\x2d\x0a\x35\x68\x87\x91\xda\xad\x2a\xe9\x40\x83\x7a\x26\x07\xc2\x8c\x86\x9d\x49\xde\x02\xa7\x4f\xc0\x56\x01\xd5\x2e\x81\xc9\xf3\x2b\xdd\x2e\xa7\x32\x58\x44\x02\xd9\xfc\x04\xa5\x84\x65\x63\x9b\x03\x42\x39\x39\xdb\x96\x33\x7a\x2a\x3e\x25\xe6\xe3\x41\x10\x77\x79\x38\x2a\xb4\xc4\x4d\x36\x1f\x86\xbd\x4a\x5d\xeb\x0e\x1d\x2a\x0e\x06\x88\xeb\x0e\xd8\xce\xdf\x54\x25\xce\x73\x8b\x86\x67\x31\x4f\xa7\xe8\x76\xc9\xf8\xb9\xf3\xb1\xc0\x35\xba\x7b\xb1\x95\x20\x06\x3a\x62\x8a\xfa\xc1\x33\x58\x4b\xa1\x7c\xc2\xb3\x3b\x69\x51\x35\x25\x3c\x34\xc9\xf1\x56\xab\x6b\x45\xa7\x8d\xc8\x60\xff\xcc\xd2\xe5\x28\xd3\x01\xdc\x00\xf6\x05\x16\xd4\xc7\xad\x5e\x64\x4b\x8d\x31\x02\x05\x2c\xbd\xdb\xff\x62\xa3\xe8\xd3\x12\x53\x4e\x42\x98\xff\x84\xa3\x1f\x66\x98\x9e\x84\xa7\x4e\x74\xb8\xf4\x0a\x8f\x9f\x82\xcb\xd1\x6f\x4b\x0c\xeb\x39\x24\x1c\x77\x7c\x68\x83\x1b\xee\xf6\x2c\x05\xf1\x21\xda\x4b\x62\x9c\x2d\x63\x0d\x6d\x1e\x25\x6d\x4b\x8e\x6a\x00\x1c\xca\xfc\x99\x67\x3e\x9f\xde\x34\x0a\xb8\xb2\x2b\x88\xe4\x3d\x00\x65\xdc\x4f\x90\x37\x8d\x27\xad\x9c\x14\x22\xcc\x21\x2e\xab\xa6\x57\xed\x77\x59\x38\x32\xc6\x5d\xf1\x07\x74\xe0\x6c\xbc\xb3\xd1\x16\x40\x11\xec\x81\xed\x43\x18\x40\xfa\xa0\xe3\x16\xee\x6c\x32\x3f\x47\xb3\x2e\x4d\x65\x4a\x38\xd1\x3c\x66\x91\x72\x42\xd5\x84\x96\xe9\x26\xce\x3f\x97\x96\x9a\x29\xa7\x0c\x67\x80\xd9\xa2\xb7\x60\x56\x82\x40\xfc\x41\x64\x1a\xe2\xc9\x18\x2b\xd1\x58\x1e\xf8\x8c\x42\xe1\xca\x05\x5e\x32\x07\x29\xbb\xe7\x44\x9e\xdf\xdf\x62\x10\xaf\xd7\x32\x61\x6c\x81\x6e\x2d\x98\x5d\x32\x3f\x92\x0e\xf3\x6a\x83\xc9\x6a\x97\x3e\x33\xc4\x05\xf1\x62\xdf\x86\x60\x36\x33\xf4\xf5\x07\x6b\x0c\xe7\x38\x17\x14\x73\x71\x02\x17\x16\x6e\xf1\x50\x9e\xc9\x86\xcf\x4a\xf7\xbf\xee\x74\x7d\x14\x09\xaf\x35\x63\x66\xff\x11\xb4\xcb\x6c\xb0\x22\x4f\x8e\xa2\xa6\x07\x6b\x92\x61\x12\xf2\x54\x03\xf2\xf4\x54\xe7\x85\x93\x84\x26\x42\x30\xd5\xd4\xe5\xf0\x28\x9c\x30\xc9\xb9\x6b\xbe\x86\x42\xe1\xd7\x83\x40\x4a\x30\xd8\x8f\xc5\x3a\xa5\x99\x4c\x1c\x11\xcd\x46\x33\xf1\xab\x73\x4d\x19\x5e\x28\x3f\x5d\x48\xf6\x56\x02\x7f\xa5\xc4\x6a\xdd\xb1\x27\x02\xf9\xa0\x0d\xcc\x90\x96\x4c\x1e\x90\x0d\x8e\x8f\x8d\xb3\x19\x24\xe9\x4e\x60\x42\xde\x9d\x4e\xa0\x5d\x80\x85\x9d\xa9\x69\x29\xc9\xb1\x6d\x30\x3d\xa0\x83\x2d\x2c\x7a\x24\x21\x23\xc1\x88\x07\x9a\x9a\x6c\x60\x90\xfa\x4e\x02\x42\x21\xfa\xb4\x60\xbb\xa8\xf6\x2e\xbf\x72\x1d\xf9\x22\x89\xe6\x9e\x4a\x24\x0b\xd6\x6a\xc2\x70\x4e\x09\x78\x20\x52\x05\x78\x8c\x59\x12\xeb\x70\xf1\x71\x59\x91\x24\x68\x25\x72\x3d\x15\x44\xc2\x16\x43\xe8\x51\xdd\x3c\x09\x8d\x63\x88\xf8\xef\x08\x87\x27\x31\xe0\x34\x1c\x7e\xe2\xc2\xe1\x2e\xe9\xb5\xc4\x9d\x46\xcf\x65\x2a\x2a\x7e\xe4\xc2\xe2\x8d\x18\x86\x68\x4a\xfa\xd3\xe6\x64\x3a\xb3\x78\x31\x9e\xb1\x60\x4f\xc7\x88\x11\xf5\x47\x8c\x25\x18\x19\xc9\x7d\x4f\x48\x5e\xcb\x07\x52\x8a\xf5\x3d\x8e\x89\x6e\x48\x40\x2d\xd5\xb2\x75\x40\x74\x45\xf6\xa9\x08\x99\xba\xb2\x7c\xac\x58\xf8\x2e\x7c\x54\x97\xcc\xb7\x8d\x73\x7d\x48\x9c\x63\xc2\x0a\xb2\x25\xe8\xd6\xca\xb2\x8a\xe0\x76\xc1\x47\x74\x71\x6e\x0c\xba\xec\xff\xa2\xc4\xd7\x17\xb1\xfc\x14\x4f\x0f\x9a\xd5\xb3\xe8\x80\x44\x61\x46\xf2\x77\x4f\x9f\x48\x8d\x24\xbb\x20\x2d\x23\x52\xc1\x52\x53\xb2\x97\x2a\x5b\xb7\x7a\x99\x7f\xfe\xc8\x7e\xfe\x6c\x45\x12\x25\xcc\xf9\xe9\x13\xf5\x8c\x3c\x77\x53\xf7\xb2\xea\x04\x7e\xeb\xb2\x43\x71\x45\x68\x75\xe3\xc2\xa4\xdd\x2c\x90\xf0\x04\xde\x18\xa9\x18\xaa\x68\xe2\x20\xa4\xe0\x14\xcb\xe5\x28\x95\xf4\x9b\xde\xff\x56\x1a\xbf\x07\x7e\xd7\xf9\x54\xcf\x75\x97\xee\x33\x9d\xba\x31\x63\xb1\x37\x1a\xb1\x15\x58\x18\xc7\x81\x1e\xd0\x4a\x26\xe7\x99\xe2\x25\xfb\xff\x8d\x8e\x31\x1e\xb1\x7f\x10\x11\xa0\x29\x2e\x3c\xf7\xc6\xf2\x85\x04\xe4\x95\x37\x9a\xf1\xf8\x81\x92\x8d\x02\x31\xb1\x75\x18\x91\x52\x62\x27\x66\xc7\x9e\x16\xfc\xd1\xe2\x3d\x34\xc4\x6d\x2d\xb7\x8d\x89\x85\x0d\xb1\xba\x5a\x09\xa7\xde\x47\x2e\x7d\xb3\x00\xeb\x1c\xdd\xf2\x1d\x48\x9e\x9e\xec\x03\x2e\x8b\x04\x38\xfb\x90\x3c\x23\x77\xda\x27\xe0\xa5\x8a\xb9\x45\x51\x8b\x79\x67\x30\x92\x15\x96\x79\x83\x7f\x93\xe0\x3d\x66\xee\xbd\x62\x97\xda\x25\x5b\xca\xe1\xac\x6f\xe6\xe4\x19\xb5\x03\xb7\x8b\x9a\x33\x2a\xa4\xab\x15\x99\x4f\x96\x5c\x3b\x6f\x42\x49\xca\x8c\x77\x18\xe4\x54\x8d\xf2\x53\x48\x25\x1e\x5f\xbd\xa4\xc3\xf6\x19\x2b\x3f\xea\x97\xbb\xbd\xa2\xb3\x53\xc0\x5d\xd3\x49\x46\x54\x46\xb5\x69\x8a\x8b\x9c\xcf\x99\xa1\xd5\xc5\x1d\x25\x69\xa0\x32\x75\xbf\xbe\x78\x6d\x93\x75\x8c\x6e\x6d\x39\xdb\x9c\x07\x47\x86\xe5\x91\x79\xbd\xb1\x90\xfa\x2c\x3b\x49\x02\x60\x44\x11\x5b\x77\xbc\xd3\x4c\x75\x22\x81\x0c\x39\x0e\xcd\xe2\x74\x21\x40\x1c\xae\x93\xdd\xe0\xe0\xf5\x06\x6e\xe1\xf9\x9f\xb1\x87\x9e\x96\x7a\x42\xb9\x39\x30\x1e\x01\x8f\xa6\x7f\xc1\x46\x04\x4c\x1f\x28\x51\x56\xa0\xbc\x8d\x67\xf1\xb8\x5f\x05\x4f\xc9\xe5\x45\x12\xb5\xc9\xe8\xee\x94\xd3\xf9\x49\xd1\x31\xa7\x40\xc8\x01\xe7\x71\xec\x95\xf0\x6c\x70\xb5\x7e\x0b\xc9\x63\x54\x0d\xae\x98\x96\x8d\x0e\x8d\x13\x9e\x94\x5c\x73\x75\x79\x7a\xf6\x7a\xff\x4f\x41\x6e\x22\x8d\x01\xe1\x90\x6b\xf3\x59\x48\x3f\x1a\x4c\x2c\x24\x21\xe1\x14\xc5\x6d\x49\x61\x24\x3b\xca\xd7\x47\xa9\xfc\x03\xc0\x20\x09\x84\x1d\x69\xc7\x04\xb7\x13\x4b\x98\xf4\x2c\xc8\xc9\x45\xe7\x1f\x1c\x5c\x8e\x08\x9e\x9a\xc6\x44\x01\x70\x4f\xc0\x13\x39\xc6\x71\x2a\x33\x82\x59\x3e\x3e\x8c\xd3\x3b\x16\xe0\xe0\x72\x58\x7e\x8b\x39\x76\x0d\x06\x5a\x36\x20\x98\xda\xea\x03\x5e\xb7\xa9\x6c\x84\xd9\xfd\x6f\x0d\x1e\xab\x78\xa4\xc2\xd6\x62\x1a\x1c\x19\xcc\x77\xf9\x5b\xf9\x15\x45\xa9\x54\x60\xb9\x1b\x9f\x4e\x4b\x87\x69\x47\x4f\xed\x56\x35\x59\x01\x62\xdb\xe6\x9f\x83\xcd\xae\xeb\x8c\xfe\x7f\xdc\xea\xd2\xfd\x06\xaa\xa0\x07\x1d\x05\xe6\xd8\x0e\x48\x12\x06\x87\x26\xcf\x28\xb2\xf0\x8e\x83\x59\x74\xd1\x63\xb8\x7e\xaa\xa6\x7c\x58\xb9\x07\x22\x45\xa3\x79\xf9\x18\x04\x28\x54\xf2\x06\xc4\xe2\x6d\x39\xaf\xd0\x2f\x89\xb3\x15\xd2\x15\x2c\xaa\x65\x2f\xf1\x13\xc2\x37\xed\xf8\x29\x5d\x50\xf2\x17\x13\xa0\x18\xaf\xdf\xf8\xab\x37\xbe\xc4\x4d\xe0\x1a\x08\x02\x75\x18\x75\xef\x3c\x9e\xd9\xaa\xea\xaa\x55\x63\x5a\x74\xa7\x2b\x50\x4b\x56\xe7\xaf\xf0\x27\xb0\x9e\x2f\xb9\xb7\x07\x98\x6e\xed\x1b\x80\xbd\xda\x01\xb2\x54\x09\xf4\x22\x37\xa4\xaa\x0f\x74\x86\xa7\x87\x11\x77\x4c\x80\xc9\x5e\x9d\xbd\x3c\x3e\x3f\x9b\x6d\x4a\x9f\x8b\x43\x98\xe6\x24\x9c\x14\xd1\xa5\x5e\xaa\xbe\x76\x31\xb6\xfc\x35\xc6\xd5\x24\x7c\xe3\xae\xf6\x80\x5b\x02\x18\xdd\x29\xbc\xec\xc1\xbf\xb0\x59\xc7\xb9\x41\xd9\x97\x68\x3a\x7e\xf5\xbb\xe1\xa6\x64\x9e\xff\xb1\x21\xa7\x78\xe8\x19\x5f\xcc\x41\x97\xb5\xef\xd6\x71\x2e\xcb\x71\x7a\xc0\x2a\xd7\x94\xe2\x1b\x23\x3a\xb9\xae\x14\x03\x1c\xe6\x12\xf1\x62\x36\x87\x79\x65\x51\x83\x26\x4d\x99\x45\x50\xeb\x99\xc5\x0d\x45\xbb\x48\x73\x18\x6e\xa3\x40\xcc\x30\xcf\x1d\x44\x58\x59\xb6\xa8\x20\x92\xb3\xaa\x13\xac\x0a\x90\xee\xa0\x80\x72\x8c\xd3\x9b\x0f\x54\xe4\xd3\xee\xcc\x51\x1c\x5d\x8d\xd3\x08\x60\x55\xc9\x05\x06\xe6\x51\x40\x2d\x31\xae\x70\x97\x53\x02\x11\x4f\x83\xbf\x53\x2f\xf3\x81\x3a\x94\xd4\xd9\xa5\x5c\xfb\x1a\xf2\x2a\x9a\x1b\x78\xcc\x06\xc3\x82\xaa\x22\x15\xb0\xbd\x9b\x63\x80\x06\xa4\x3e\xaa\x61\x28\x01\x86\x79\x07\x2a\x72\x8e\x55\x52\xea\x52\x8c\xf7\x1f\x81\x0f\xb0\x5f\x1f\xe8\xa6\xec\x19\xea\xa6\xd2\x25\x43\xa7\x1a\x13\x3b\x44\x64\xba\x8b\x3c\x03\xa3\x5e\xbc\x07\x77\xb1\xe0\xbb\x0c\x05\x28\xe5\x08\x80\x6d\xce\x81\xeb\xfc\xf3\xf9\x02\x44\xc5\xbb\xcf\x23\x5b\x9d\xae\x28\xa2\x61\xfe\x19\xda\x7d\xb7\x74\xe6\x7a\xaa\xc1\x49\xa3\x7c\xad\xcb\x05\xf2\x0d\xdd\x18\xe4\xac\x4d\xff\x77\x8f\x59\x8f\x78\xa7\x10\x8c\x4e\x2d\xce\x5e\x85\xb1\x3b\x2a\xfe\xde\xff\x49\x17\xe8\x50\x66\x12\x9d\x8b\x4c\x73\xb6\x72\x22\xdb\x40\xce\x00\xba\x30\xa6\xac\xf3\x1f\xd0\x11\x79\xbd\xff\xb8\xad\x4a\xbf\xee\x6e\x5d\x59\x91\x1b\x35\x3b\xb1\x43\xe2\x4e\x32\xfd\x48\x30\x02\x4e\x30\x47\x57\x24\x8d\x8b\x2f\x25\x1b\xd9\xa0\x49\x4d\x17\x04\xb4\xcb\xe8\xc5\xf8\x2a\x26\x1e\x20\x81\xf1\x88\x57\xf0\xf7\x88\x04\x98\x00\x31\x0f\x7a\xb2\x8f\x87\x0f\x22\x19\x06\x36\x62\xab\x75\xbe\xff\xa7\x76\x47\x42\x58\x8e\x10\x00\x72\xde\xa9\x95\x25\x18\x9b\xfd\x97\xec\x46\x61\xee\x31\xd7\x6a\x29\xc6\x73\x07\x00\xe1\xaa\xf1\x05\x3c\x62\x55\xe0\xad\x0e\x2d\xc1\x0e\x4b\x36\x55\x0d\xb8\x01\x9c\x59\x0a\xc8\x73\x62\xe6\x06\xe4\x13\xde\x0a\xa4\x9f\xa8\x37\x6a\xad\x2c\x40\xbc\x52\x28\xd3\x29\x41\x06\x8a\x29\x4c\xda\xaa\x5b\xc0\x58\x2f\x7f\x01\xda\xe9\xa6\xde\x0b\xf8\x89\x0b\xc7\xf8\x32\x55\x50\xea\x3b\xc2\xbe\x45\x13\xc3\xc3\x93\x21\x42\x8c\xf0\x0a\xfe\x8b\xec\x12\x0a\x57\xf1\xf8\xb3\xd1\x7c\x5c\xc5\xf0\xbe\x60\x56\x0c\x21\x96\xe8\xaf\x3c\xc7\xb8\x62\x1b\x0a\x51\x78\x9a\x36\x27\x99\x19\x4a\x37\x68\xf8\xaf\x74\x7e\x0e\xea\x0d\x99\x22\xd4\x60\x18\x2e\x3f\x55\x9d\x0a\x45\x9c\x25\x7b\x4e\x7e\x18\x98\x4b\x78\xc3\xd0\x55\x01\x3d\xb9\x2a\xb4\xce\xe9\x5c\x93\xf6\x01\x6b\xd8\x60\xdf\xfa\x4b\x8a\xa1\x66\x4e\x5b\xc3\xfe\xa8\x96\xed\x19\xd7\xcf\xb7\x35\xd8\xcb\x83\x84\x5e\x07\x4e\xd7\x25\xa5\x05\xd8\xb0\x98\x24\xb0\xc8\x1f\x95\x19\x34\x6c\x3b\xe3\xab\x80\x43\x40\x7f\x4b\xdd\x52\x17\x6b\x32\x22\xa4\x12\x76\x05\x53\x3b\x79\x32\x67\xc3\x79\xc4\xb5\xa0\xda\x50\x16\x62\xc0\xcf\xb1\xa8\x9b\x48\x66\xc5\x2a\x50\xe5\xa8\xad\xa7\x37\x26\xb7\x61\x35\x68\x18\xb0\x3d\x34\x46\xe8\xdb\x6a\xd1\xef\x7f\x1d\xcf\xcd\x2b\xb5\xa9\x8a\x19\x66\x57\x0b\xdd\xfb\xab\x6d\xdb\xc0\x00\x53\x2d\x78\x48\x4c\x05\xc3\x84\xc8\x68\x64\x8b\x76\x18\x4a\xfa\xc9\x76\x2c\x3f\xca\xf9\xe2\x8e\x9a\xa1\xd8\x48\xbc\xcc\xc9\x46\xc8\x3b\x80\x18\xbc\x86\x81\x8d\xce\xd1\xe9\x05\x3c\x61\xea\x64\xda\x08\x37\x90\x3a\xcf\x1f\xfd\xf8\xf5\x4f\x96\x23\x13\xb4\x91\x34\x82\x8f\xa1\x3c\x79\xf4\xe3\x37\x3f\x81\x6c\xa6\x1f\x28\x9b\x7d\x0f\xdb\x56\xef\x2a\xd3\x5b\x7f\x3f\x1d\xaf\x8c\x80\x2c\x6a\x23\xb2\x7a\xdf\x81\x74\xe0\x48\x9a\xbb\x60\xe2\x6b\x79\x97\xbb\x24\x55\x6c\x44\x99\x0c\x54\x98\xda\xe0\x8d\xc5\xf6\x5e\x18\xf4\x72\x80\xe4\x74\x10\x3e\x09\x00\x91\xac\x6c\x1d\x80\x85\xc0\x10\x2f\x7b\x08\xae\xcb\xaa\xcb\xcf\xca\x8a\x42\x32\x49\x8d\x9c\x88\x79\xff\x33\xa9\x4c\xb2\xf2\x7c\xfc\xfc\xc0\x9c\xa9\x27\x3c\x4d\xa2\xbe\xec\xa7\x01\x8b\xf3\x25\xe7\xd3\x09\x5f\x60\x32\x62\x57\xb5\x8a\x9d\xb1\x70\x56\x13\xd6\x4a\x67\xf7\x35\x05\xc0\x2b\xd4\x95\x1b\x3c\x24\x05\xea\x98\x65\x7f\xea\x29\xfd\x10\xef\x66\xc5\x2e\xda\xf4\x14\x42\x38\xc6\x8f\x4d\x21\x58\x3e\xa4\x4f\x23\xea\x9f\xd1\x41\xf9\xc1\xab\xe0\xae\x66\xc6\x17\x0b\x6d\x7e\xb9\x1d\x55\x45\xa9\xfc\x80\x2c\x97\xb6\x2f\xba\xda\x43\xad\x8d\x79\x67\xf3\x17\xf8\x3f\xd2\xc9\xad\x5e\x44\x95\xe0\x74\x24\xf5\x74\xef\x34\xaa\x2f\xf5\xb6\x36\x77\xc9\x21\x2a\x5e\x59\xa6\xd2\x08\x6c\xa1\x6c\x55\x1c\xbe\xfb\xfe\x7c\xff\x11\xea\x55\x3c\xf7\x12\x4f\x22\xda\xf9\x07\x14\x49\xff\x13\x58\x91\xee\xaf\x03\x9f\xac\xe2\xa9\xfb\x13\xc6\xec\x72\x29\x8f\x3c\xf8\x3a\x39\xa7\x39\x7c\xdf\x5e\x67\xee\x38\x6a\x88\x11\x39\x06\x41\x4b\xe1\xa0\x3f\x1d\x9d\x1a\x1e\x6a\x97\x1e\x1f\x0e\x6c\x96\x7f\xf7\x23\xc4\x91\x29\x35\x8b\x66\xe6\x4c\xd4\xfc\x46\x7e\x01\x16\xb8\x0a\x29\x1d\x13\x90\x12\xaa\x0b\xe0\x63\xcf\x90\x5d\x22\x4a\x1a\xea\xa3\x64\x30\x2a\x46\xfe\x4a\xb3\x49\x30\x41\x30\xca\x86\x41\x2b\xbf\xea\xf8\x28\x67\x78\xe7\xcc\x4f\x86\x9e\x66\xa0\x8c\x2e\x4c\x87\xb1\xec\x06\x82\x2d\x77\xc9\x46\x60\x69\x1a\x4e\xc9\xe3\x4b\x1a\x63\xbf\xd5\x08\x67\xe2\x0e\xcc\x12\xaa\x4d\x0e\xe7\xc9\xc5\x4a\x9d\x9f\x01\xa8\x7b\x95\x84\xa3\xc7\x51\x7e\x17\xf5\x30\x1c\x5b\xbc\x1b\x9c\xd5\xce\xd4\x5d\x9a\x50\x2f\xd7\x82\x40\x76\xea\x0f\x6a\x6a\x8f\xe8\x76\x2a\x88\x80\xfc\xe9\xf6\xd9\x63\x77\xac\xa6\xdb\x32\x8e\x62\x4a\x1a\x9b\xc3\x01\x3b\x4e\x7e\x13\xc0\xba\xc2\x00\x36\x10\xf7\xec\xe9\x93\xed\xb3\xb4\x1f\xb4\xe4\x0a\xea\x4b\xee\x95\x1c\xee\x71\xb8\x85\x6e\xd5\xe2\xa7\xd1\x3d\xf4\xc6\x58\x1a\xe4\x30\xe7\x05\xa9\x87\xe7\x6a\xe1\x22\xf3\x80\x1d\x5a\xb5\x89\x0e\x49\xed\xe0\x30\x67\x8c\x25\x0e\x7d\x91\xe1\xc6\xf1\x2f\x0f\xb2\x51\xef\xc0\x90\x72\x14\xff\xbd\xfa\x00\x5c\x75\x33\xf0\xd1\xc6\xfd\x71\xec\x16\xf3\xc1\x30\xee\x33\xcd\xb0\x0e\xb8\x1a\x1d\x36\x45\x32\x37\x0e\x23\x4e\x87\x0f\x3d\x30\x1e\x59\x04\x21\x8d\xc6\xaf\x3f\x4b\x01\x04\xd3\xda\x9c\xd4\xa6\xec\xeb\x83\x0d\xa3\xb4\x08\xda\xc3\x22\xb4\x1a\x1c\x92\xc5\x73\xa5\xc4\x41\x7d\xa8\xa3\x61\x1f\x2e\xcd\x30\xee\x81\xf2\x18\x2b\xca\x54\x9b\xf3\x6d\xa1\x38\x3d\x91\xe9\x44\x12\x11\x47\xb9\xb4\x74\x2f\x23\x89\xd7\xa4\x47\x79\x74\x6b\x25\x9a\xc4\x6c\xb0\x7e\x50\x54\xa8\x9a\x22\x9c\xfd\x03\x97\x0c\x75\x1b\x33\x6f\xac\xe0\x50\x4c\x09\xb0\x95\xb8\x8f\x0e\x2f\x0e\x59\x50\xc8\x18\x25\xe2\x5b\xd4\x7a\xe3\x4f\x89\x4b\x4a\x3b\x24\xab\xb0\x20\xdb\x27\xd3\x3b\x72\xba\x80\x89\xf0\x2c\xab\x20\x58\x3e\x9e\x00\xc3\x80\x00\x43\x4d\x04\x1e\xae\xd5\x97\x18\x5d\xe5\x3b\x1d\x1a\xdd\x47\x64\x3a\x1b\x1e\x6e\x01\xec\x5c\x5d\x5e\xdf\xc8\x19\x2a\xc6\x88\x11\x00\xd9\x83\x5e\x4d\x08\x82\x08\xf8\x87\xd8\x7a\x96\x5d\xab\x6a\xa1\xc0\x40\x01\x47\x07\x93\xd8\xe8\x50\xf0\xde\xf0\x41\x46\x9e\x3a\x6c\x81\xc3\x88\x9c\xf1\x8d\x6c\x80\x04\x8f\xf2\x00\x05\x49\x76\xe0\x88\x8e\x8d\x6c\xcc\x80\xc7\x33\xe0\x2d\x6e\x3f\x00\x84\xfb\x40\x68\xa0\x91\x55\xe8\xc2\x91\x24\xf9\x79\x07\xe4\x2e\x2d\xdd\x5c\x75\xa7\x63\x7c\x4f\x47\x62\x2d\x74\x86\xd0\xc6\xa7\xf2\x49\xea\x06\xe5\x8d\x0f\xa7\x4b\x96\xa8\xcb\x0b\x00\xd9\x86\x65\x3e\xeb\x81\x8c\x38\x3a\x95\x38\xe2\x87\x52\xf8\x20\x92\xcc\xc8\xf7\xf8\x56\x92\x8b\xb2\xa9\x2d\xdf\xb6\x42\xce\xc9\x24\xa8\x12\x37\xf0\xef\x8e\xf0\xe3\x12\x21\x6f\x46\xa3\x0c\xc1\x31\xa7\xa6\x96\x58\x15\x2f\x52\x92\x75\x30\xa3\x53\xd2\x09\x58\x91\xb4\xd2\x24\x4a\xaf\x19\xc0\x09\xa3\x53\xbf\x81\xc1\x09\x23\xc2\x10\x87\x18\x3c\x62\x34\x31\xa0\xef\xa3\xd5\xa7\x78\x89\xe8\x19\x52\xec\xd3\x27\xf4\xab\x0b\x9b\xe2\xb5\x03\xd9\x51\x94\x9b\x25\x28\xcd\x7a\xcd\x46\x58\x38\x19\x77\xdc\x51\x35\xfc\x9e\x97\x4d\x92\x4a\xdc\xa3\x1a\x81\x77\x5a\x3a\x28\x8d\xde\xa1\x90\xdb\xcf\x4c\x72\x2b\x83\x61\x2c\xa6\x6c\xbe\x45\xd6\x66\x5f\xfe\xf1\xfa\xf2\xe2\x48\xa6\xf9\xfe\xf1\xed\xed\xed\x63\x6c\xfd\xb8\x6f\x6b\xf0\xf8\xa0\xb0\x94\x79\x1f\xe1\xc3\x15\xcf\x74\x57\x3c\x7d\x02\x3f\xbf\x9a\x65\x14\x38\xe0\xe4\x74\xf7\xd0\x80\x93\x5a\xd8\x52\x32\x21\x80\x1a\xee\x65\x35\x2f\x73\x7e\xc0\x10\xd9\x90\xcf\xb6\x7c\xa3\x27\x3c\x49\xe2\xaf\xf4\xc4\xda\x05\x89\x22\x8d\x20\x47\xe7\xe8\xc1\x32\xd6\xe0\x07\x77\x40\xf9\xf8\x23\xae\x20\x24\xf3\x56\xfe\x09\x31\xef\xb1\x3e\xc6\x9a\x12\xb1\xaa\x02\x31\x0b\xb9\x7c\x37\xea\x90\xa2\x6d\xa6\xa9\xc1\x85\x03\x7f\x11\x33\x68\xa4\x63\x41\x36\xd6\x0b\x6e\x13\xf2\xa2\x0b\x8f\x72\xc7\x71\x54\xee\x43\xe0\x81\xe6\x02\xe5\xf8\x01\x44\x22\x93\x7d\x4a\x73\x5c\x62\xae\xf0\x84\xba\x43\x5a\x4e\x58\xe0\x82\x6e\xe6\xf2\x8e\xc0\x7a\x99\x0f\xc8\x0e\xf1\x8a\x28\x91\x2c\xc2\x6e\x5e\xf1\x24\xec\x86\xa8\xf9\x87\xc4\x77\x12\xf0\x64\xc8\x17\x11\xcf\x85\x8c\xc5\xb1\x6d\xea\x07\x71\x0e\xeb\xf4\x10\x9c\x9f\x80\xc6\x06\x4a\x34\x4c\x04\xa6\x8b\xa5\x2b\x85\xd7\xba\x29\x75\xc1\x0e\xb4\x61\x4a\x3a\x03\x39\x81\x18\xb2\xe0\x56\xbc\x9b\x07\x86\x0f\xea\x35\x49\x10\xb9\x46\x30\xca\x22\xa1\x37\xb9\x3a\xed\x4e\x31\x1c\xcb\xf3\xf5\xd7\x69\x77\x84\xc7\xe0\xf3\x68\x39\x49\x1f\xd4\x8d\x9e\x0f\x1a\xd4\xa3\xab\xd5\x70\x46\x24\x7a\x7d\x78\x0d\x7a\xb9\x9c\x81\x9d\x71\x6b\x31\x47\xa3\x6f\x0b\x4d\x31\xcd\xef\x0d\xe3\x80\xaa\x61\x66\x28\x51\xb7\xaa\x92\x02\x0e\x0e\xe6\xfc\x43\xca\x60\xcf\xd4\xe0\xf1\x07\x7a\x81\x2b\x3b\x85\x5a\x56\x20\x21\x51\x90\x6e\xc9\x50\x33\xbb\x36\xb7\x73\xfc\x6d\x0e\x0c\xd4\xd9\xfc\xdc\xd0\x2b\x1f\x74\x29\xae\xdb\xff\x6a\x31\xb3\x9d\xa8\x16\xbb\x71\x6d\x10\x92\xb1\xec\x0e\x54\x31\x6f\xca\x2b\x48\xe7\x1f\x86\xf3\x55\x92\x9e\x0e\x16\x41\xcb\x8a\xf5\x61\x80\xd0\x71\xbd\xe6\x00\x49\x0c\xe0\x50\x05\xd8\x7d\xfe\xf2\x42\xfe\xa2\x38\x30\xa5\xe0\x22\xd2\x8e\x79\x02\x7c\xdb\x8f\x62\xcc\xb3\x03\xb1\x66\x57\xcd\xd1\x7a\xfa\x9d\x4d\xf2\x08\x2c\x40\x95\xad\x5a\x76\xf9\x6b\x65\x8b\x9e\xde\x12\x73\xe5\xa0\x63\x5d\xe3\xab\x76\xff\xcb\xe3\xc9\xc6\x80\x2c\xdc\x8b\x33\x4c\x41\xdc\xe9\x3a\x54\x50\xc4\x49\x4b\xc4\xc9\x15\xaa\xb5\x56\x65\x1e\x30\x91\x60\x10\x03\xc2\x4c\xa6\x8f\xac\xbb\x2c\x80\x59\xff\xfe\xf9\x8d\x68\x54\x22\xa5\x79\xfc\x6a\x1d\xa8\x0c\x79\x7f\x88\x41\x3a\xb5\x4a\x53\x9d\xa0\x20\xae\x25\x65\x70\xca\x97\x0a\xd2\x56\xfe\x84\xcf\xe5\xce\x52\xdb\x70\x28\x71\x84\x76\x2a\xa8\x42\xbe\x14\x8f\x19\x1d\x5c\xbf\x91\xa4\x6f\x7a\x44\x66\xb0\x43\x12\x19\xbc\xd9\xff\xda\xf5\x35\x59\xdd\x6f\x87\x6b\x72\x4a\xe4\x16\xcc\x86\xf9\xa6\x8c\x2c\x0c\xa2\xae\x98\xcb\xcf\x55\xfb\x0e\x9f\x31\xe1\x08\xa6\xeb\xe0\xb6\xad\xe8\xb2\x33\xdd\x47\x68\x93\x7d\xa4\xb7\x79\xde\xba\xc7\x77\xda\xf1\xa0\x71\xa4\x9c\x7b\x50\x74\xb1\x63\x13\x8c\xaa\xd0\x08\xd5\x21\xbd\xee\x81\x57\x13\x56\x14\x70\x9b\xcd\xa6\xe8\x66\x9c\x63\xe5\x1e\x52\x01\x6b\xf4\x97\x5d\xa5\x26\x1b\x09\xfe\xdf\x62\x1e\x1c\xcc\x17\xcd\x3c\xbe\x44\x1c\xd3\x02\xbd\x85\x82\x29\x8e\x6c\xaf\x2b\x76\x4d\xe4\x85\x1e\xce\x3c\x41\x4a\x0a\xaf\x31\xc5\x13\xc4\x6d\xb2\xeb\xfc\x4a\xb6\x6b\xbc\x17\xf4\x0c\x0a\xf3\xc5\x35\xbf\x7a\x32\x66\x0f\x32\x64\x1d\x83\x70\x68\x75\xdc\x91\xa3\xc2\xb9\xaa\xf1\x54\xff\x4e\xae\xb5\xfc\x91\x5e\x3c\x83\xdf\xaa\xde\x2f\x08\x77\x99\x34\xba\x3b\xcc\x86\xb6\x7c\x75\x02\x1c\xb4\x9f\xa2\xeb\x90\xc9\x81\xc6\xe8\x6d\xcc\x00\x36\x48\x27\x01\x4d\xd0\xc0\x7e\xc4\xee\x1e\x5a\xec\x3c\x76\xcf\x7e\x13\x67\x94\x70\x3e\x89\x5c\x48\xe2\xbc\x4f\xff\x38\x99\xbb\x82\x3c\x74\x1b\xc5\x96\xe3\x80\x18\xbf\xc1\x34\xca\xe2\x75\xf7\x68\xd8\x58\xe3\x24\x5e\x39\x57\xc4\x3b\x55\x7c\x94\x38\x58\x0e\x1d\x36\xb2\xca\x2e\xbd\x6a\xa7\x83\x44\x6d\xb6\x74\x41\x03\x33\xa1\x2c\x5d\x87\xc3\x57\x0b\xf1\x8d\x27\x0c\x4e\x02\xf7\x60\xb2\x20\x48\x4d\xa0\x62\x30\x50\xf9\x4e\x28\x28\x62\xba\x75\x87\x87\x7b\x78\xd7\x46\xbc\x63\x9b\xb3\x37\xec\x8b\x93\x4b\x3c\xed\xe0\x25\x96\x70\x12\x8a\x5d\xc6\x0f\x9e\x9c\xc9\x95\x6e\xc4\xdb\x38\xc5\x24\x5c\xf7\x74\x5b\xe7\xe0\xa9\xe6\x9e\x06\x81\x25\xd0\x18\xc4\x3c\x08\xa4\x1f\xb4\xac\x88\x56\x88\xd2\x37\x72\x38\xc2\xba\xcd\xdd\x2e\xe4\xf7\x4a\x90\xc4\xc8\x1b\xf3\x03\xb9\x1e\x4f\xd9\xe1\xc7\x67\xc3\xc8\x9e\x74\x0d\xbf\x13\x58\xf2\xc2\xad\xf5\x81\xfa\x3f\x51\x74\x80\xb2\x6f\xf0\xe2\x22\xd7\x8a\xf7\x16\x5d\x69\xe4\xdb\xd9\xdf\xfd\x6e\xaa\x48\x4a\x43\xff\xb1\xb9\x22\xc9\xd8\xb3\xbf\x3f\xac\x7f\xf0\xce\x8d\x87\x48\x2f\xdf\xf8\xe2\x43\xb7\x70\x0e\xc6\xcc\x83\x85\x7b\x78\xa2\x12\xf4\x86\x45\x26\x14\x97\x70\xd7\x3d\xc1\x72\x69\x97\xc6\xca\x87\x3c\xff\x77\x07\xcb\xe5\x82\xae\x8f\x99\x6f\xc8\xa9\x19\xde\x78\x9c\xb0\xf5\xdd\xe3\x6c\xce\x7e\x1f\xbf\x33\x35\xb8\x33\x79\xe8\x9a\xc7\xa1\xd8\xf3\x40\x0a\x0d\xdd\x80\x61\x7e\x24\xa9\xb8\xdf\x69\x73\x7f\xc6\xe4\x78\xd9\x7f\x77\xea\xe4\x81\xe0\xe7\xfd\x39\x94\xc3\x59\xa3\x28\x9b\x48\xa4\xfc\x9d\xb5\x7a\x01\x38\x71\x7f\xf5\xdf\x98\x5d\x39\x15\x3c\x0c\x4e\x90\x0f\x23\x82\x23\x26\x64\x45\x8c\x1f\xce\x62\x88\xfb\x3d\x02\xbb\xc9\x87\x5c\x03\x2a\x11\x8f\x76\x4c\x87\x0f\x1f\x88\xc2\x60\x1b\xa2\xc8\xc3\xc5\xc0\xb4\xc2\xc9\x57\x50\x21\x38\xbd\x2d\xe7\x44\x46\x50\x58\xd0\xa1\x61\x3d\x5d\x11\xb5\xc7\xe6\xa3\x51\xe2\x0c\x53\x57\x26\x91\xde\x73\x52\x65\xa1\x18\xef\x78\x68\x55\xe7\x97\x45\x5f\x93\x31\xee\x2a\x38\xfc\xe4\x12\x8d\x42\x39\x58\x2e\x50\xcc\xaf\x9e\xbb\x32\xd1\xae\x84\x75\x90\x6c\xa0\xec\xf9\x12\xbd\x7b\xc6\x68\x74\x17\xcf\x5d\x2f\x01\x25\x4c\x57\xb4\xc4\x3e\x43\x27\x44\x22\xcf\x62\xe9\x7f\x3b\x1a\x04\x5f\x9e\x0a\xea\x1b\x33\xaa\xe9\x86\x30\xaa\xef\x19\x5e\xbb\xcd\xf1\xb5\x2f\xd5\x3e\xb6\xda\x95\xf2\x8c\x39\x0e\xe8\xca\xd0\xdc\x92\xac\xf9\xfc\xd8\xdf\x6c\x79\x05\xbc\xd1\xb7\x6a\x02\x28\x4a\xec\xf3\x8a\xcc\x27\x6f\x63\x3c\x89\x13\xc0\xda\xf1\xeb\xbf\x40\xca\x6a\xe6\x7a\x24\x23\x7c\x3c\xee\x19\xc5\xce\xd4\x14\xd4\x78\x60\x97\x81\x5c\xa8\xad\xfa\x40\xf9\xa1\x9a\x86\xa5\xcc\xed\x64\xec\xa3\x6c\x41\x1a\x7e\x83\xf7\xe3\xf1\x40\x05\x03\x3a\x8c\x59\xe0\x2f\xeb\x67\xc5\xaf\xf2\x0d\x66\x35\x7a\x45\x66\x0c\x3b\x85\x94\xc1\xdc\xc2\xb8\x4f\xf0\xa1\xf3\x8c\x22\xf6\xf7\xcc\xd3\x05\x71\xda\xc7\x14\x30\x32\xfc\x2a\x6b\x74\xa0\x10\x4d\xdb\x65\xb5\xc5\xc3\xfb\x33\xbc\x72\x68\x2a\x61\x78\xed\x90\x02\xe7\x7a\xe2\x1a\x3b\x32\x6a\x90\x8d\x2c\xdf\xa8\x67\xd4\x74\xa6\xc3\x64\xfe\x81\xb4\x38\x20\x2a\x42\x0c\xd4\x81\x1f\x3c\x44\x0d\x8d\x24\x59\x71\x28\x5f\x78\x9a\xce\x28\x65\x4e\xb6\x43\x4b\xf1\xff\xc9\x20\xe0\x06\xee\x52\x01\xda\xab\x89\xce\x4a\xfb\xc5\x40\x13\x99\x7d\x22\x4a\x82\x7c\x3d\xf7\xa7\x45\x69\x8b\xa8\xe3\x29\x35\x71\x18\xd8\xed\xab\x4e\xc9\xca\xa9\x85\x43\xe6\x84\x47\x89\x1e\xb1\x29\x6b\xcc\x32\x7a\x1e\xdb\x3d\x4d\x90\x6c\xdc\x6c\x6a\x36\x51\x06\x88\x98\xb0\xa8\x9a\xf8\x3e\x8e\xe8\xa9\xd4\x6e\x88\xc4\xc7\x90\x9a\xce\x82\x15\x4d\xf7\xeb\x74\x74\x6d\x83\x2e\x80\x09\x0d\x88\x28\xf2\x34\xf1\xad\x08\xc6\xf8\x3d\xdb\x7b\x84\x8e\x1b\x63\x20\x79\xc6\xb3\xe9\x3e\x69\x36\xfc\xb1\x8e\x78\x36\xe7\xc9\x6c\x6a\x9a\xcd\x50\xc8\x7c\xc2\xb4\xe4\x55\xd9\x4f\x9f\x56\x19\xcc\x9c\xe3\x49\xe6\x99\x98\xda\x51\x3c\x33\x1d\x64\xcc\xa4\x78\xf9\xe4\xa9\x1f\x7e\xca\x61\x4c\xdb\x9e\x75\xa2\x2f\x30\x04\xf6\x49\x52\x54\x46\x6d\xe5\x1c\x88\x72\x28\xbc\x36\x0e\xdd\x36\xe0\xcf\x4a\xec\xc9\xe5\x59\x8c\x12\xa6\xe3\xe7\x05\x3b\x7a\x6f\xb8\x8c\x44\x6d\x9c\xd6\x9d\x3c\xc9\x82\x51\xac\xc7\x26\x7d\x05\xe4\x47\xda\xb1\x9f\x7e\xef\xc3\x2c\x78\xc6\x6c\xfd\x73\x43\x36\xfd\x72\xc8\xf8\xe1\x85\x7b\x9f\xc5\xe8\xbb\x35\x3f\x32\x42\x6e\xd0\x71\xf4\xe4\x08\xb5\xe5\x1b\xdc\x03\x23\x1f\x73\x9e\x39\x21\xe3\x1a\x97\xb5\xa1\xb3\x91\x34\xe4\x80\xaf\xca\x35\x38\x66\x7e\xce\x3f\x5d\xf0\x12\x23\x62\xf9\xb1\x4f\xf0\x8b\x33\xfb\x28\xbc\xea\x57\x4e\xb1\x60\x0c\xd3\x30\xc5\xba\x88\x71\x0c\x41\xd6\xbc\x73\x0a\x75\x10\xbc\x51\x1f\x77\x38\x3f\x0a\x40\xf7\x30\x5b\xfa\x81\xda\x57\x26\x85\xf3\x96\x25\x4c\x8e\x3c\xc7\xf3\x2d\xd8\xf3\xf1\xc7\x1b\xe8\x85\x1e\xf7\x52\x14\xde\x11\x2e\xf1\x8e\x70\xfc\x12\x4b\x28\x4c\xa3\x3e\x71\x8d\xdc\x3e\x75\x2f\x55\x25\x75\x03\x25\x1e\x75\xc7\xe9\xea\xc4\x4f\x71\xb9\xc6\x87\x41\xeb\xb4\x93\x89\x31\x99\xd5\x93\x22\xfa\x3c\xca\x68\x6e\xf4\x62\xf7\x78\x35\xe9\x0d\xcd\xb8\xc6\xfa\xb7\x53\xd2\x69\xf1\xeb\xb6\x71\x19\xc5\xdd\x06\xe3\x01\x9a\xaa\x95\x5c\xa8\xac\xcd\xaa\x6a\xe2\xca\xd8\xc7\x88\xcb\x43\x52\x78\x5c\xca\xc9\xe3\x71\x09\x28\x5d\xbd\x54\x7c\xb2\x95\x4c\x8e\x43\x52\x53\xa0\xd1\xc5\x3d\x79\x4c\x28\xc2\x21\x90\x2d\xa9\xb3\x09\x5a\x4c\xc3\x4c\x97\xde\xe1\x9c\x06\xe6\x87\x8b\xe5\x99\xe2\x69\x90\xb6\x6f\xfc\xc7\x2a\x62\x88\x02\x4c\xef\x66\x2e\xd7\x5a\x0d\x5d\xb4\x79\x55\x6d\xb6\xe8\x41\xe3\xbb\x86\x5a\x5e\x90\x52\x85\xd9\xd6\xf2\xc1\x94\x7b\xda\x46\xf7\x1d\x91\xc4\x5d\x17\xd1\x9d\x58\x63\xe5\x2c\xd0\x25\x67\x9a\x61\x4a\x52\xe8\x5f\x14\x7c\xd5\xd0\xb1\xa5\x0a\x9e\xaf\xf5\xc7\x77\x3e\x56\x29\x04\x05\xb0\x08\x6a\x3f\xad\x9b\x78\xba\x93\xdd\x0c\xe6\x3a\x4a\x9f\x1a\x0d\x42\xd1\x4e\x4c\xd3\xaf\x76\x3a\x99\x25\x3b\xab\x21\x47\x63\xa8\xbd\x7e\xaf\xaf\x01\x66\xef\xed\xeb\xd3\x31\x8c\x8f\xb8\xaf\x0a\x79\x8d\x9a\x33\xba\x40\xd3\x6a\xbe\x45\x5d\x63\x5a\x41\x73\xdf\x44\xe3\xe6\x7e\x82\x67\x9b\x6c\xc2\xdc\xe6\x07\x93\x93\xae\x39\x37\x62\x3a\xac\x13\xc6\x00\x41\x70\xd7\x14\x73\x7a\x46\xdc\xae\x29\x21\xf6\xb5\xd6\x72\x46\x92\x85\x6f\xda\x7c\x31\x83\xea\x27\x7c\xd9\xa1\xfa\xa0\xe9\xde\xbb\xfd\x22\xfb\x12\x3f\xba\x21\xcf\x9c\x47\x4f\x04\xf0\x1b\x89\xfa\x67\xb5\xf1\x72\xd8\x06\x13\x14\x1c\x57\xfb\xd5\xfd\x93\x98\x20\x9d\x81\x18\x96\x5d\x68\xb5\x58\x66\x87\x77\x21\xea\x3d\x3a\xdb\x4e\xd6\xe9\x29\xc8\x9f\xaa\x27\x62\x65\x82\x06\xbe\xc4\xbc\x25\x6b\xd9\x99\x97\xb3\xfc\xf0\xb9\x19\xf7\x46\x44\x08\xb9\x15\xe1\x45\x1b\x7a\x51\x57\xc2\x82\x87\xd0\x10\x4f\x34\xe4\xbe\x1c\x9e\x9f\xce\xa6\x23\x36\x03\x2c\x8d\x68\x35\xd1\xa8\xfc\xcd\x90\x7e\xdb\x81\xb5\x93\xfb\x2f\x83\xbc\xaa\x56\x14\x81\x89\x04\x53\xdf\xe2\x89\xf4\x7c\x65\x5a\xb0\x1f\xc1\xf4\xc9\x7f\x70\xbf\x59\xca\x4e\xae\xec\x14\x38\x9d\x9d\xdc\xcd\x7b\xba\x18\xf3\x86\x2d\x59\xb0\x54\x71\xa2\xfe\x65\x98\xd0\x8a\x7c\x4c\xd7\x06\x03\xd9\x05\x1d\x71\xdc\x90\xeb\x99\xb4\xc4\xaa\x32\xb1\x0d\xa4\x95\x59\x74\x68\x98\x95\xb9\x87\xbd\x5c\x74\x55\x0a\xba\x35\x74\xa7\x73\x5e\x03\x62\xfb\xed\x1c\x97\x6e\xf3\x8b\x7f\xfd\x4d\x32\x54\x2c\xc6\x84\xf0\xe6\xc6\x15\x1e\xf3\x55\x6d\xca\xa0\x83\xd9\xa5\xad\x69\x5e\x21\x6b\xdb\xcd\x61\xa2\xfd\x12\xb6\x27\x6d\xfb\xaa\x5a\xe8\xf6\x77\x1a\x3b\xb4\xae\xb5\xda\x46\x48\x25\x44\xa2\x56\x7b\x01\xe5\x31\x3c\xc1\x1d\xc4\x0c\x66\x55\x00\xc0\x04\x86\xe2\x76\x55\x59\xeb\xa8\x8d\x92\x36\x60\x45\xdb\xc3\x6d\xe8\xb9\xbc\x71\x2b\xf0\x4c\xde\x58\x73\xa8\x95\x1c\x10\x96\xe3\x76\x8c\x9b\x89\x39\x9a\xc5\xcf\xba\x00\xe5\x75\x09\x3f\x3b\x4e\xca\x1b\xe2\x60\x61\x4c\x87\xee\xd2\x16\xad\xcd\xe2\x5d\x4a\x8b\x57\x15\x1e\x67\x3f\x77\x20\x03\x63\x13\xa0\xef\x43\x1e\x37\x1e\x63\x6f\x83\x17\x57\x61\xb4\xb6\x2f\xc0\x9b\x05\x45\x93\x0c\x79\x86\x15\xe8\xe5\xf2\x2e\x5f\x03\xec\xbd\x8d\xfd\xd0\x13\x0d\x65\xf0\x94\x40\x0b\x55\xac\xf5\xa7\x0e\x7f\x82\xc0\xf7\x37\x3f\x34\x01\x6a\x3a\x35\x03\x7e\x00\x0d\xcf\x22\x16\x7d\xf1\x4e\x77\x98\x12\xbf\x9e\x53\x52\x44\xe8\x4c\x5e\x91\xa3\xe6\xe4\xff\x3d\x27\xd8\xec\x05\xc0\x66\x37\x08\x9b\xa8\xc5\x02\x76\x02\x63\x0e\x9d\x8a\xf7\x02\x4b\x9c\xe1\x7f\x22\x7d\x25\x53\x31\x60\x2c\xb5\x73\xf1\x36\x84\x67\xd1\x76\xf3\x7d\xe0\x17\x90\x94\xe7\x5b\x16\xab\xce\x79\x1a\xef\x2c\x7a\x45\xac\x9e\x8b\xbb\xa2\xd6\xe1\xea\xd3\x6b\x5d\x54\x45\x4d\xdf\xd8\xa2\xb9\xc4\x8d\xe8\x5d\x17\x68\x44\x22\xf6\x54\x5b\x72\x57\x32\xf7\xc6\xcb\x5b\xfd\x61\xdc\x84\x05\xa1\x6b\x73\xa5\x60\x07\x33\x91\x82\x07\x41\xb7\x0a\x59\xee\x5e\x58\x37\x13\x06\x75\x33\xe0\x26\x23\x60\x19\x9d\xe5\x93\xfb\x5e\xa1\x24\xc4\x23\xa4\xb8\xbb\x9c\x58\x2d\x2f\xb2\xa4\x5f\x96\xd4\x99\x7b\x94\x45\x5e\x44\x37\xd1\x97\x75\xb8\xf1\xfd\x5f\xc9\x10\x18\x67\xb7\xbb\x02\x67\x74\x96\x9c\x8d\x57\xfa\xde\xc8\x4b\xcf\x07\x11\x5c\xae\x8a\x3e\xda\xe1\x8a\xe4\xfa\x9d\xdc\xbb\x73\xa5\xc9\xad\x30\xe9\x96\xcc\x70\xce\xd4\xa2\x2c\xad\x89\x0b\xf3\x0c\x49\x77\xc7\xf9\xcc\x32\x69\x4c\x7e\x53\xfa\x8d\xa1\xa4\x3d\xc9\x7f\x84\xf1\x48\x3d\xf4\x94\xa0\x3c\x23\xe8\xbf\x1a\x73\xef\x7b\x82\x61\x45\x1e\xc9\x92\x94\x91\x20\xb8\xb2\xf3\x80\xd2\xe8\xcd\x0f\x79\x43\x8d\x70\x9c\x00\x13\x9a\x23\x40\x7a\x5a\x56\xce\xbd\x45\x7b\xa9\xa9\x4d\xa0\xb3\x69\xfa\xcc\x11\x27\x0c\x1e\xee\x81\x8f\x4a\x88\x20\x56\x78\x3b\x19\x78\x9c\x6e\x73\x4d\x61\x27\x0a\xf5\x5e\x79\xec\x24\x0b\xbc\xef\x84\x32\x01\xfc\x9d\x27\x74\xf1\x38\x3d\x7a\x73\x58\xfd\x1b\xde\xd0\xad\x1e\xd7\x49\x6c\x29\x1e\xf7\xff\xeb\x43\xba\xfc\xf8\xe7\x8c\xae\x3f\x7c\x12\xb3\x4e\x65\xd1\x24\xcc\x48\x7f\x0f\x32\x48\xa8\x6c\x10\xab\xf7\xdf\xd6\x25\x26\xfc\x64\x51\x31\x7e\x12\x26\x3d\xe2\xe3\x92\x68\x3e\x5c\x30\x3a\x45\xe4\x62\x7a\x51\x40\x5b\xf7\xa6\x80\xbc\x24\xcb\x75\x98\x47\x6c\x49\xbb\x61\x98\xc6\x95\x4e\x7d\x7c\x16\x99\x59\x58\xfa\x53\x91\x38\x90\x13\xdc\x03\x5e\xe4\x0e\x91\x50\x12\x79\x87\x04\x8b\x34\x08\xcb\xe4\x82\xe8\x0e\x33\x17\xf0\x8b\x99\xa5\x7f\x57\xb3\xf4\x35\x53\x99\x42\xd1\x42\xa2\x2c\xdb\x03\xb3\x25\xb0\x24\x7a\x32\x09\x36\x4a\x84\xe5\xe2\xe8\xbb\xb2\x5c\x10\xbe\x91\xe9\x4a\x16\x94\x17\xd7\xe4\xcf\xe1\x67\x76\x7a\xe1\xc7\xed\xe8\x22\x75\x17\xbd\x88\xca\x57\xab\xbb\xf1\x83\xba\xe3\x36\x29\xbc\xff\xca\x5c\x13\x21\x31\x00\xdb\x7e\xd0\xbf\x35\x0b\xd8\xc8\x49\x58\x7e\xdd\xd0\x01\xfa\xc7\x0d\x09\x8a\x6f\x6a\xe7\xdf\xc3\x0f\xfe\xa2\xa0\x7b\x5a\xc0\x01\x6c\x50\x7c\xce\xad\xca\xcf\xc1\x6d\x2a\xb3\xeb\x63\x57\x41\x1f\xbd\xa4\x60\x91\xcb\x78\x1e\x69\x08\xfe\x58\x66\x00\x1f\x7e\x46\x33\xd4\x44\x9f\x21\x8d\xab\xe4\x55\xd5\xae\xb6\xf1\x17\x28\xdb\x6a\xdb\x99\x55\xab\x96\x20\xd0\x6e\x5e\x5d\xfb\x6d\xc2\x33\x20\xf9\x96\x64\xa2\xb9\xfc\x67\x3d\xaf\x8e\xcf\x07\x3d\xe3\x67\x3a\xfc\xe7\x9d\xa2\x31\xdc\x47\x2d\x69\x4d\x9b\xfd\xc7\x8e\x0e\xee\x85\x92\xab\xad\xcd\x4f\xf9\x4e\xad\x74\x16\x54\x70\x36\xce\x62\x99\x26\xd1\x54\x7f\x0d\xdf\x49\x27\x25\x29\x6a\x2c\x66\x8a\xf4\xd5\xb9\xc1\x40\xc9\x37\x47\xee\x7f\x19\x35\xee\xf3\xc0\xc9\xe3\x3d\x93\x4f\xaf\x9b\xb3\x5a\xba\x07\x70\xce\x6c\xcb\x1f\x9b\x0e\xd7\xca\x3f\xa1\x4d\x38\x66\x4a\xd7\xc6\xe7\x8c\x3e\x24\x77\x84\xd1\x45\xfd\xb3\x1a\xbc\xe4\xc5\x18\x72\x21\x83\xc9\x03\x08\xff\xd5\xd7\x92\x1f\xc6\xa0\x06\xf7\x7e\xb4\x38\x82\xd9\x61\x36\x9f\x24\x7e\x1e\x86\x3a\xf0\x15\x5c\x81\x18\xc9\x20\x29\x4f\x3e\x6b\x9a\x7e\xcf\xd4\xb5\x74\x1f\x27\x33\x3d\xc7\x06\x56\xf4\xa9\x50\x47\xc1\x06\xed\x33\x52\x4b\x06\x54\x5e\xbc\x3c\xff\xe1\xe2\x37\xe1\x9b\xc4\xc9\xf7\xbd\x23\xb8\x30\xfc\x01\x18\x54\x90\xad\xa1\xef\x95\x45\x4f\x12\x4d\x7f\x89\xd9\xed\x07\x1e\x8a\x14\x73\x7e\x4b\x65\xba\x29\x59\x53\x92\x2a\x9f\x51\x5a\x3a\x33\xa0\xf4\x00\x6b\xfd\xf4\xe6\x6c\xa9\x86\xd1\x0b\x14\x1f\xe9\x55\x8d\x6b\x2a\x8b\x16\x85\xc7\x0a\x42\x82\x23\x4c\x1d\xa7\xac\xfa\x9a\x80\x55\xd8\x96\xc5\x61\x4a\x1b\x7e\x77\x3c\x34\x89\xb4\x63\x28\x8c\x14\x51\x28\x8c\x14\x6b\x28\x1c\x7c\xff\x3c\x54\x4c\x7c\x73\x7c\x5c\xe9\x12\x44\xbe\x54\x7c\xbf\x88\xd0\xf7\xf9\x96\x3f\xe1\x6e\x3f\xff\x2a\x6e\x93\x7e\xb1\x3c\x2d\x9f\xee\x47\x3e\xfa\x19\x75\xe3\x84\xf4\xfd\x1c\x09\x02\x3b\xda\x11\xf9\x00\x5f\xf2\x1a\x6f\xf8\x50\xed\xc9\xf0\x33\x7c\xee\xbd\xe3\x21\xaf\x38\x49\x1f\x73\x4a\xf8\x80\xb1\x9b\x1f\xde\x37\x49\xbe\xc4\x0b\x8a\xb3\x33\x8d\xbf\x78\xf2\xdc\xc8\x67\x06\xa5\x6d\x3c\xd1\xfb\xbe\xa7\x7b\xc6\xcf\x36\xcb\x3d\x56\xc6\xcf\x5b\x1d\x38\x33\xfe\x80\xf2\xe1\xcf\x26\x0b\xb0\x7b\x71\x9c\xa2\x1f\xa3\x37\xca\x39\xd6\x51\x86\xb7\xbf\x9d\x44\xe2\xdb\x5f\x78\xe9\x62\x5e\xd3\x01\x85\x7c\x04\xef\xc4\x50\x48\x6f\x17\xce\x6a\x67\x83\xaf\x8d\x45\x6d\xa2\xaf\x9d\x69\x79\xd8\x69\xa2\xbd\xbb\xdc\x78\x60\x9f\x75\x7a\xf1\x4a\x1a\x75\xca\xbe\x9b\x7c\xc2\x0e\x74\x3d\x1d\xa8\x85\x4d\xe5\x9b\x59\xe4\xf4\x83\x0c\x1c\x3c\x77\xc7\x77\xb5\xc2\x9e\xbe\xab\xb6\x68\x47\xc8\x07\x52\xf2\x2b\x7c\xcb\x15\x91\x2f\xd7\x1d\xc9\x8e\x88\xb6\xe1\xb0\xc2\x18\xef\x84\xc0\x4f\x19\xb4\x29\x84\x23\x43\xe0\x13\x93\x90\xe0\x8b\xb3\x57\x97\x43\xe0\x31\xa3\x4b\xc5\x58\x2c\xc4\xdf\xfc\x1e\x49\x01\x3e\x94\x3b\xc8\x6b\x74\x3e\x37\x00\xbe\x67\x25\x4c\x6e\x87\x51\xc3\xd1\xb9\x04\x18\xac\x8f\x6d\x47\x89\x48\xf0\x93\xbf\xb0\x39\x0d\x38\xfd\x70\xe1\x14\x24\xfc\x81\x8f\xae\x34\xfa\xfd\xe4\xb8\x56\x73\x96\xca\x81\x69\xe2\x4b\xee\xd6\xc6\x6a\xcc\x35\x00\x67\x19\x4c\x01\x7a\x3e\xce\xec\x74\xc9\xaf\xfb\x0c\x81\x1d\xd0\x61\x9c\xba\xd6\x61\xd6\x40\xe8\x95\x4e\x8d\x8a\x13\x2a\x1b\xb2\x33\x72\x1c\x43\x47\xcc\x2c\x91\xd0\x41\x8b\x55\xe1\x31\xc6\x61\xb7\x1b\xbd\x61\x7d\x16\xe1\x8f\x43\x5f\x83\x65\xd6\xd5\x52\x0f\x9a\xbc\xad\x4a\x35\xb5\xd8\x35\x7e\x1e\x2f\xb9\x7d\x2a\xdf\xc8\x4b\x57\x76\xb0\xc7\xd1\x3a\xb7\x15\x45\x69\x0f\xef\xcd\xcb\x8d\x7b\x8b\x2c\x81\x17\xa5\x91\xc7\xdf\xe8\x27\xd0\xc6\x8e\xc4\xbc\xfb\x42\x4c\xf4\xed\xf4\xe8\x03\x0b\xc1\x86\x38\x48\xc6\xb1\xc1\x80\x80\x91\x19\x64\xb8\xd2\xa7\xa5\xcc\x8a\x16\x34\xc3\x8d\x9c\xf5\x9f\xc0\x1f\xa1\x2a\x62\x61\x57\x64\x81\x4e\xcb\x1e\x3f\xf8\x0d\x90\xe8\xc4\x60\xc2\x88\x87\x4f\x5e\xa7\x7a\xab\x3f\x84\x2a\xff\xb4\x55\x14\x86\x0d\xb5\xf4\x81\xe8\xe1\xd9\x4e\x14\x02\x8d\xfb\xa1\x17\xe2\x91\xc0\x39\x7d\x03\x8f\x38\x62\xc3\xce\x01\x8e\x6f\xb2\xf8\x25\x00\x1a\x51\x00\xd1\xb7\x2c\x80\xd6\xf6\xbf\x16\x95\x99\x9e\x4b\xa0\x86\x78\x08\x9f\xf5\xe3\xb2\x6a\xf8\xcf\x39\xbe\x4e\x10\x27\x02\x5d\x0c\x12\x81\x5c\xab\xc8\x58\x8a\x8b\xe6\x5f\xe7\xa9\xbd\xe9\x2a\xc7\x4b\x71\x35\x66\x9b\x5f\x6e\x67\x31\x24\xf9\x1e\xde\xc9\xda\x55\x9c\x63\x6b\x65\x52\x51\x32\xe1\xf8\x49\xfc\x1f\x51\xb7\x9a\xe6\xa7\xf4\x15\xd7\xf4\xe1\x1c\x8a\xdc\xa6\xf7\x00\xb3\x47\xf2\x88\x19\xdf\x9e\xe4\x56\x98\x03\xa7\xcb\xd1\x63\xf3\x4f\x6c\x5b\x3c\x79\x14\xbf\x7d\x26\xf7\xe2\x05\x00\xdf\x4d\xc3\xca\x3f\xb8\x87\xd1\x64\x26\x14\x1a\xca\xbf\xe0\xf4\x1c\xfa\x52\x2b\x3e\x2b\x91\xf4\xcc\xd1\x23\xee\xdc\xfe\x67\xdf\xff\x17\x3c\x2f\x3c\xc3\x93\x4e\x38\x9d\x87\xde\xb7\x5f\xe0\xb7\x9e\x33\xdf\xeb\xa7\x75\xe7\x5f\x85\x19\xa3\x27\x7e\x03\x06\x33\x08\xe9\x4e\x3b\xa2\x27\x7a\xf0\x20\xc1\x9d\x43\x1d\x5d\x91\xef\xd4\x2a\xff\x1e\x36\x08\xaf\x4e\x18\xce\x22\x6c\xf8\x56\xe7\xfd\x18\x1c\x74\x3b\xc6\xa1\xc1\x5c\x18\x3d\xff\x66\xee\x9e\x65\xa4\x17\x1d\xa9\xd4\x8b\x0c\x0b\xb2\x35\xfb\x26\x3c\xc7\x08\xe4\xd0\x19\x83\x9f\x49\x55\x2b\x93\xab\x0e\xfc\x55\x7c\x3f\x12\x9f\x53\xc5\xd4\x78\xba\xd9\xd8\x55\xa4\x0a\x15\x67\xc7\x53\x31\xff\xfa\xb5\xcd\xbf\xa6\x24\x28\x3c\xb0\xc7\x8f\xbb\x7d\xbd\x81\x02\xfe\x48\x30\xff\xbd\x86\xbf\xf1\x21\x5f\xfe\xab\x84\xbf\xca\x4a\xfe\xb8\xa5\xb6\x18\xed\x93\xa6\x20\x9e\xa0\xf1\xfe\xaf\x96\xff\xbe\x83\xbf\x54\xc3\xfd\x58\x7c\xeb\xbe\xa4\xc7\xe7\x64\x38\x06\xa2\xa1\xf8\x51\x3a\xf9\x34\x31\x15\xaf\x4d\xdf\x52\x21\x7f\x94\xf9\x11\x9d\x5c\xdd\x51\x09\x0c\xcf\x05\xb7\x5a\xbf\x93\x0e\x71\x0e\xd2\x1f\xf8\xe5\x6b\xee\x4e\x23\xa2\xb0\xec\x4e\x2b\xee\x4c\x35\xd2\x7d\xab\x6e\xe7\x6e\x46\x6e\x3a\x5c\xea\xe6\x23\x93\x41\xf4\xfe\xdf\x00\x00\x00\xff\xff\x8d\xf9\xa7\xdf\xd0\x8e\x00\x00") +var _confLocaleLocale_ptBrIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\x5b\x6f\x1c\x47\x96\x27\xfe\xfc\x17\xa0\xef\x90\xed\x81\xfe\xb6\x01\xa9\x84\xee\xc6\x5e\xd0\x50\xc9\x4b\x53\xb4\xe5\x86\x44\xb2\x45\xd9\x03\xac\x61\x54\x47\x55\x06\x8b\x69\x65\x65\x56\x67\x64\x52\xa2\x06\xf3\x30\xd8\x6f\xb1\x4f\x63\xf4\xc3\xc0\x0d\xf8\x69\xb0\x2f\x7e\x1c\x7e\xb1\x3d\xbf\x73\x4e\xdc\x32\xb3\x68\xf5\xf4\xec\x18\x86\x48\x66\x9c\xb8\x9d\x88\x38\xf7\x38\x61\xf6\xfb\x55\x69\xdd\x66\xf9\xf5\xae\x70\xb6\xbb\xae\x6e\xff\xa5\x2d\x4a\x5b\x7c\x59\xf5\x85\x19\xfa\xf6\xd1\x55\xeb\xf6\xb6\x34\x65\x5b\xd8\xc2\xec\xaa\xed\xed\x0f\xd7\xb6\x2e\xa8\x46\x57\xf5\xf4\x6d\x57\x7c\xd9\xde\xbf\x77\xff\xde\x55\xbb\xb3\xcb\xf3\xdb\x1f\xb6\x55\x63\x8a\xaf\x9a\x6a\x53\x99\xfa\xfe\xbd\xd2\xb8\xab\x75\x6b\xba\x72\x79\x6e\xaa\x86\xea\x51\xcb\x9b\xb6\xe9\xbb\xb6\xb6\xf7\xef\xd9\x77\xfb\xba\xed\xec\xf2\x84\x7f\x9a\x8e\x5a\xb1\xf5\x7e\x79\xf4\xfd\x50\x9a\xfb\xf7\x5c\xb5\x6d\x56\x55\xb3\x3c\x21\x70\x94\xb9\x16\x6d\xae\xb2\xcf\xa5\x29\x2e\xf8\xf3\xef\x8a\xdf\xfc\xdb\x5f\x0a\xdb\x9b\xbd\x29\x9e\xb8\x9d\xa9\xeb\xa7\xc6\x71\x8d\xae\x18\x76\x86\x3b\x35\x4f\x1e\x4b\x89\xb6\xdd\x0e\xfd\xf2\xc2\x54\x9d\xfe\x39\xec\x97\xc7\xd4\xa0\x93\xde\x3a\xbb\xad\x5c\x6f\xbb\xe5\x2b\xfe\x85\xbf\xbd\xb5\x6b\x57\xf5\x76\x79\x41\xff\xdc\xbf\x77\x6d\x3b\x57\xb5\xcd\xf2\x1b\xfa\x79\xfb\x67\x42\xc2\xde\x6c\x03\x0a\xee\xdf\xeb\xed\x6e\x5f\x1b\x82\x7e\xd9\x96\xb6\xa6\xe2\xda\x34\xdb\x01\x20\x5f\x95\x55\xbb\x23\x88\x4d\x67\xa9\x7c\xd5\xd8\xb7\xcb\xe3\x8e\x06\xba\x58\x2c\xee\xdf\x1b\x68\x11\x56\xfb\xae\xbd\xac\x6a\xbb\x32\x4d\xb9\xda\x01\x43\xe7\xb6\xa3\x0f\x05\x2d\xc2\xe0\x86\xdb\x1f\xba\x0a\xab\x41\x73\xba\xac\xb6\x43\x67\x6e\xff\xe5\xf6\xff\x58\x27\xd3\xb0\x25\x21\x67\x65\xdc\xf2\x9b\x76\x73\xfb\x97\xe2\xf6\x47\x2c\x0e\x1a\x6d\x0c\x2d\xd0\xd7\x5a\x9b\x70\xbf\x33\x55\xbd\x3c\x79\x84\x1f\x18\xba\x73\x6f\x5b\x5a\xa6\x0b\xdb\x5c\x19\xcc\x7e\xd5\xdf\xec\x2d\x4d\xbe\xac\xb6\x3c\xdb\x8d\xd9\xf7\x9b\x2b\x43\x28\xe2\x9f\x68\xb5\xb3\xfb\x96\xf0\xd1\x76\x37\x04\xc7\xbf\xde\xfe\x2b\xb7\xdd\x76\x5b\xd3\x54\xef\x4d\x0f\xf4\x9c\xe9\x1f\x34\x48\x20\x69\x57\x75\x5d\xdb\x2d\x4f\x68\x53\xd5\x57\xf4\x37\xcd\x7e\x85\x86\x96\xa7\xed\x75\x5b\xe4\xed\xa0\x8c\x76\x5c\x07\x2c\x52\xb1\x29\x5e\xe2\x0f\x6d\x08\x85\x97\x6d\xf7\x46\x2a\x7e\x41\xbf\x61\x73\x4d\x1b\xa0\xc1\x48\xe5\xf1\x40\x4c\x43\x8b\xc1\xc5\x5f\xda\xce\x36\xbc\x55\x12\x18\xc6\xa8\x29\x77\x84\xcd\xbd\xa1\xad\x1b\x76\x70\x5b\x1c\xe1\x2b\x6f\x8a\xb2\xa5\x6d\x61\x36\x9b\x76\x68\xfa\x95\xb3\x7d\x5f\x35\x5b\xb7\x3c\xce\x17\xa6\xa0\x5d\x7a\x8c\xfd\x47\x2b\x74\x00\xe4\xfe\xbd\x9b\x76\x08\xeb\x4e\xab\x30\x14\x7b\x5e\x72\x2d\x08\xf5\x2e\x06\xe3\xa6\x0b\xcf\x33\x75\xab\x4b\x6b\xcb\xe5\x17\xf4\x0f\x30\x71\xda\xf6\xb7\x3f\xd1\xa4\xa8\x78\x3f\xd4\x35\x21\xf9\x4f\x83\x75\x3d\x35\xd1\xd6\x74\x3a\xfb\x30\x38\x5b\x9c\x53\xf9\xfd\x7b\x95\x73\x04\xb0\x3c\xef\xda\x75\x4d\xbb\x83\x9b\xdd\x98\x66\x43\x53\x3f\xe6\x1f\x38\x02\xf7\xef\x7d\xeb\xac\xe9\x36\x57\xdf\x61\x32\xf8\x85\xf6\xa6\xfb\xd3\x50\x39\xdd\xbf\x07\x37\x05\xf6\x60\xb2\xff\xb8\xb7\xd0\x19\xf5\x44\xa7\x64\x79\x7c\xfb\xaf\xb4\xdf\x98\x9e\x7c\x5b\x35\xae\xa7\xc3\x4a\xfd\xe8\x6f\xcb\xaf\xf8\xa7\x5f\xbf\xbe\xea\x09\x53\x27\x38\xf1\x3c\x89\x2a\x29\x2d\xf6\xa6\x33\xc5\x79\x57\xed\x6c\x45\xbf\x9c\xbc\xb3\x9b\x41\xab\x01\x0d\xb4\xa1\x57\xe5\x5a\xc8\xde\x97\xed\xd6\x15\x8c\x9b\xae\x78\x79\x73\xf1\x87\x17\x0f\x8b\xf3\xd6\xf5\xdb\xce\xd2\xef\x45\x3b\x14\xf4\x83\xe0\x7f\x4b\x53\xa3\x2a\xd2\xe9\x64\x7d\x6d\xf1\x39\x61\x88\xe9\xe6\x33\xda\x13\x4e\x60\x71\x80\x5e\x57\xfb\x16\x5b\x66\x5c\x4e\x54\xb5\x5f\x3e\xa7\x7f\x26\x88\x19\x1f\x45\x6a\x89\x8f\xee\x29\x11\xd8\xb9\x96\xa8\x1c\x54\x93\xda\x38\x6f\xbb\xe2\xd2\x5c\xb7\xdd\x43\xa2\x12\xb6\x68\x8b\x9d\xa5\xf5\xab\xdc\xae\x2d\xbe\x3a\x3d\x3d\x7b\xf6\x39\x6d\x9c\x1d\x7d\xa6\xed\xf3\x3d\xed\x57\x6e\x64\x43\x88\xda\x10\x99\xa3\x59\x0c\xfd\xe5\x7f\x5f\x6d\x6d\x63\x3b\xa2\xb2\x9b\x4a\x70\xc8\x28\xa1\xb9\x3b\x57\x13\x25\x2a\x99\x9a\xb5\xc5\xc5\xc5\x0b\x0c\xb4\xbf\xa2\x9d\x41\x47\x01\xe7\xd8\xfd\xa9\x06\x5a\x75\x28\x67\xd4\x30\x17\x60\xc4\xa6\x23\x94\x5f\xf3\xaf\x6b\x3f\x78\x30\x14\x87\x2f\x11\xbd\xb6\xeb\x56\x44\x33\xfb\x9b\x95\xb6\xc5\x1d\xcc\xb7\x64\xc7\x2d\x69\x33\x45\xc3\xab\x4f\x03\x25\x0e\xd5\xd3\x81\x26\xfe\xb4\xee\x00\xba\xc0\xa6\xf2\xb3\x9b\x5f\x46\x22\x03\xa6\xe2\x41\x61\x53\xd0\xb9\x26\xd6\x98\xa1\xfe\x68\x4f\x27\x87\xa8\xda\x75\x1b\x0b\xfd\x8c\x8f\xdb\xba\xa5\x4d\x44\xe8\x6d\x18\xda\x14\x6e\x30\x45\x9b\xd2\x9c\xc2\xd0\xe8\x7f\x25\x47\x64\x95\x62\x0f\xd0\xaf\x4c\xf5\x1e\x7d\xe4\x87\x26\x80\xfa\x6e\x5e\xb7\x98\x6d\x8b\x2d\x1b\xe1\xf0\xd7\xae\xed\x05\xa1\x60\xdc\xb4\xa3\xd0\x9f\x33\xf5\x35\x7d\x6c\x08\x15\x34\xa2\xaa\xb3\x02\x8e\x53\x3a\x10\xbf\xc3\xbe\xe3\xa3\x01\x44\xc5\x0d\xe8\xcb\xe2\x5a\x06\x9e\x53\xda\x6b\x5b\xd0\x6e\x29\xcc\xc6\x12\x77\x2d\x4c\x1b\x56\xa7\xd3\xf1\xa7\xe3\x22\x1e\x65\x7d\xfb\x1e\xa9\x25\xb1\x3e\xe2\xde\xcf\xda\xdd\xed\x4f\x0d\xba\x93\x0f\xbe\xb3\xaf\x1c\xed\x4b\x73\x49\x8c\xbc\xf8\xfa\xd5\x0b\x27\x9b\x70\x53\xb7\xa0\xd5\xbb\xe2\xba\x22\x7e\x7f\xf1\x9c\x26\x70\xd5\xf7\xfb\xd5\xbe\xed\x7a\xec\x7a\x02\x7e\xfe\xfa\xf5\x79\xf2\xd5\x37\x77\x7a\xfb\xf3\xce\x76\x8c\xe0\x3d\xc3\x51\x23\x58\x25\x53\x18\x5e\x4b\x59\x97\xaa\xbb\xfd\x21\x8c\x74\x21\x6b\x3b\x74\xf5\x92\x46\x30\xb7\xec\x54\x34\x33\x5c\x1e\x30\x1f\xa9\x74\xb4\x18\xd7\x63\xfc\xe3\x08\x19\xbd\xd9\xad\x6f\x7f\xc4\x11\x64\xee\xcb\x5b\xb2\xdd\x83\x4b\x1e\xdc\x93\x67\xfb\x0d\x8a\x2b\xa7\x1c\xfb\x10\x05\xa2\x83\x94\x08\x6f\x9e\xad\xbb\x1d\xe1\x23\x90\x9a\xe2\xe2\x25\x90\xc4\x1f\x2f\xbb\x76\xb7\x7c\x66\xff\xbf\xe4\xcf\xb8\xde\xb6\x29\x89\x22\x68\x5b\xdc\xad\xac\x3c\xf1\x61\x94\xd0\x54\x2d\xb1\xef\x4d\x75\x19\x30\xf8\xea\x8b\xe3\xe2\xbf\xfc\xf6\x37\xbf\x59\x14\x67\x05\x31\xe5\x9d\xe9\x75\xb3\xd0\x3e\x22\xf9\x4b\x1b\x21\x6a\x5a\x7c\x84\xc3\xf4\x51\xf1\x84\xbf\xfc\x0f\xfb\xce\x90\x94\x64\x17\x44\x98\x9e\x2e\xc0\x93\x89\xfb\x75\xba\x33\x1f\x49\xc7\x38\x12\x3b\x4b\x3d\x43\x0a\x51\x80\x9c\x46\x8e\x60\xbc\xe4\xb6\x62\x36\xd9\xed\x96\xcf\xcd\xba\x22\x82\x42\x9b\xf0\x58\xbe\xe8\xa0\x59\x5c\x60\xe1\xae\x95\x96\x57\x4d\xdb\x57\x97\x37\x49\x85\x53\x7c\x08\xb3\xa4\x0a\xc7\x6d\xd7\x59\x6c\x5b\xc8\xca\x16\x8c\x99\xb0\xbe\xb1\x87\x19\x03\x2f\x0b\x89\x09\xb4\xfc\x67\x03\xf5\xe4\xc2\x42\xd1\x92\xb6\x97\x97\x35\x09\x15\x42\x59\x8f\x68\x87\x51\x97\x4c\x60\xcf\xa4\x20\x87\xa0\x9d\xbd\x27\x21\xf5\x99\x75\xd8\x8c\x20\x35\xc7\xcf\x4e\x89\xc8\x83\xc0\xd3\x76\xdb\xa1\x22\xf5\x48\x42\x44\x29\xdc\xee\x61\xd1\x47\x72\xb1\x19\x3a\x47\xbf\x28\x69\x28\x2b\xb7\x6f\x9b\x0a\xf3\x7c\xcf\x04\xb4\x6e\x37\xa6\xde\x01\x83\xe0\x74\xc4\xce\x89\x2f\xaf\x3a\x95\x7d\x59\x90\xd3\x7e\x69\x88\xac\x17\x74\x01\x75\x73\xd0\xf9\x58\xf9\xfc\x67\xb5\x30\x50\x4f\x56\x1e\xca\x29\xc7\xb9\x74\x2d\x0f\x01\xd0\xa9\x8c\x45\x87\xd7\x39\xa2\x03\x90\x92\x45\x94\x77\x0b\x65\xe5\x24\xa9\xaa\x46\xb0\xba\xae\x48\x92\x7e\xc5\xac\xdc\xf2\x20\xa9\xa9\xb0\x76\xdc\x85\xa1\x33\x49\x64\xb9\x0e\x14\x19\xe8\x12\x81\xdd\xcd\xb7\xa7\xf3\xb8\xd0\x71\xf9\x21\xbb\xd8\x3c\x90\x07\x86\x43\xe7\x9d\x7a\x25\x84\x93\x38\x42\xff\xfb\x66\x1f\xa2\x4b\xda\x4b\x54\xdb\x85\xe9\x09\xbc\x65\xc5\x06\xa7\xc2\x81\x11\xab\xea\xb1\xf0\x52\xa7\xca\x7c\x22\xa6\x88\x34\x2f\xdc\x8d\xd6\xb2\x0a\xd8\x08\xca\x0d\xe6\x92\x23\xcd\x6c\x49\xa9\x7a\x48\xfc\x08\x3d\x19\x30\x7c\x54\x66\x99\x28\xd1\x23\x3e\xf9\xea\xd9\xf2\xd7\x9f\xf2\xea\xd0\xb1\xa5\x09\xc9\x10\xe9\x00\x11\x51\x54\x3a\x3f\x6e\x3a\x8c\xf1\xc0\xb6\x57\x79\x17\xf5\xc6\xb2\x32\x57\x4b\xb8\xaa\x4d\x38\x8f\x97\xb6\x73\x01\x48\x8f\x71\xfc\xee\x4f\x71\x57\x28\x84\xd4\xcb\x35\x1a\x15\x1a\x57\x5b\xe2\x3a\x5e\x72\xec\x94\x07\xd1\x52\xf4\x2b\x52\x6b\x56\x97\x20\x27\x24\x32\x9b\x9a\xa8\x08\x31\xb3\x5e\x84\x06\x88\x48\xa4\x1e\xd0\x71\xfa\x98\xa0\x3e\xfe\x5d\xf1\xe0\xda\x0b\x38\xbf\x05\x8d\x58\x99\x6b\xaa\x88\x3d\x0f\x79\x1c\xeb\x0e\x05\x50\x56\xc7\x0d\xc2\x68\x54\x20\x79\x08\xbe\x23\x52\x19\xfd\x7b\xfb\x2f\x24\x12\x10\xb9\x7a\xdb\xd4\xad\x29\x81\x27\x5f\x77\x5d\x35\x40\x02\x15\x5f\xb2\xea\x8c\x03\xfd\x80\x36\xcf\xe9\xed\xff\x3a\x4b\xe1\xb6\xed\x7a\xa8\xea\x72\x81\x09\x5e\xd3\x46\x2e\x21\xc8\xea\x4e\xc9\xd6\xe1\xcf\x73\xf2\x16\x8f\x90\xe6\x48\x2b\xbb\x01\x21\xeb\x8d\xcc\xcd\xb7\x15\x25\x93\xa3\x79\x86\x7e\xfb\x23\xc9\xd9\xd7\xb7\x3f\x10\xb0\x56\x0d\xd2\x02\xf0\x42\x1b\x68\x73\x95\x09\x0c\x46\xf8\xaa\x0c\x88\xbb\xa7\x26\x92\xdd\x67\xfa\x01\xca\xfb\x03\x57\x3c\x7a\x4a\xff\x12\x9a\xcd\xb5\x15\xca\xbd\x9d\x2c\x0f\xe4\x19\x90\x9f\x4c\x01\xfa\x73\x9b\xcf\x21\x3b\x3c\x13\x94\x1c\x3c\x2c\x82\x95\xd1\xe4\xfc\x26\x72\xc3\x06\x07\x61\xf9\xb9\xdd\x3d\xba\xae\x68\x63\xfc\xaa\x38\xa1\x92\x5d\xcb\xba\x18\xf3\x1d\xc7\xf4\xeb\x9a\x8f\x29\x1d\xd8\xb6\xbe\x22\x1d\x4e\x84\x9e\x87\x44\x6d\xaf\x2b\xda\x14\x8f\xe8\x9c\xe3\x64\x81\x67\x6d\x86\x0a\x6b\xc2\x32\xc0\xb7\x30\x9e\x90\xa2\x33\x88\x40\xd9\xd6\x25\x44\x97\xd1\xf1\x00\x9d\x18\xab\xeb\x1e\x56\xcf\x81\x7b\x5b\x11\xfe\x57\xc1\xe8\xb2\xe2\xc1\xbd\xeb\x97\xaf\x3b\xa2\xee\xcc\xfe\xf0\x27\xef\x8c\x68\x8f\x39\x0e\xf6\x98\xdd\x0d\xef\x00\xb7\x7c\x69\x07\x97\x49\xa2\x0e\xc7\xb0\xa6\x2d\xdf\x76\xcc\x7b\x14\x2e\x03\xa1\x86\x02\x00\x2a\x50\x6b\x24\xfe\x52\x63\x24\x1f\x12\x41\x1c\xab\xd6\x54\x2c\xb6\x00\xed\x4e\x2d\x02\xac\x76\x7e\xab\x96\xa1\xef\x54\x9f\x5c\x8e\xc6\x42\x10\x44\xaf\xa0\x83\x46\x1b\xca\x4a\xd5\x70\xb1\xa5\x14\xac\xf2\xab\xd6\x1d\x24\x82\x2b\xbb\x87\xf8\xb0\x73\xdb\xe5\xef\x69\xb5\x7b\x3a\x64\x81\x7e\x7e\x56\xc0\xa2\x64\x85\x6a\xfe\x2a\x98\x9b\x3e\xb0\xee\xef\xa9\x67\x8b\xf5\xf5\xd5\x73\xa6\x28\x36\x1d\x52\x6e\xc0\x11\x37\x03\xc9\x59\xa0\xcb\xd7\xcc\x98\x85\x21\x3a\xde\x81\xcc\x92\x9c\x8a\x1f\x74\x62\x17\x45\x50\xea\x98\x5d\x40\x1c\x93\x2e\xfb\x56\xb5\xb9\x7c\x1b\xd3\xca\xc2\x44\x35\xe1\xe1\x18\x39\xc8\x63\xec\x5e\x4f\x51\x2a\x0d\x05\xe6\x0c\x9a\x25\x22\xdb\x65\x5b\xa5\x23\x32\xcc\x76\x77\x76\xb7\x46\x83\x76\xf9\x82\x7e\x03\x0f\xa3\xca\x2f\xab\xdd\xfd\x7b\x24\xfb\x6d\x89\x0e\x04\x52\x7d\xe2\xe8\x54\x90\x2e\x69\x3c\xa9\x06\x80\x9d\x00\xd0\x51\x21\x7d\x09\x10\x9f\x05\x63\x1c\x11\x94\xb7\xcb\x73\xe5\x75\x90\x16\x22\xb2\xd5\x4c\x17\xf1\xbd\x08\x5c\x42\x84\x0f\x16\xe6\xa8\xbd\xde\x63\xfd\xeb\x1d\xa3\xbb\xb0\x2a\x54\xda\xd1\xe4\x31\x4d\xdb\x90\xc0\x5e\xaa\xa4\xf0\x64\xfd\xf4\x81\x7b\xf2\x78\xfd\x34\x21\xe0\x0f\x41\x85\x49\x1c\x64\x41\x85\xe8\xfe\xc6\x54\xef\x78\x68\x56\x4d\x91\x0d\xf8\x7e\x77\xfb\xaf\xef\xaa\x1d\xfd\xf6\xa0\x2c\xae\x68\x6c\x5e\x87\x69\x21\xe8\x82\xbb\x38\x9a\xad\xc7\xf4\x22\x98\x39\x3d\xfb\xe2\x45\xc6\xca\x02\xcc\xea\x79\x27\x15\x1d\x87\x8e\x4d\x41\x7e\x9b\xab\xb8\x08\x06\x14\xb6\x39\x4f\xb9\xae\x76\x55\x3f\xdd\x6e\x9e\x34\x81\xcc\xf1\x54\xc1\xdf\x20\x9a\x07\x94\xb0\xa4\x26\xf8\xc0\x00\x76\x03\xad\x78\x71\x09\xa9\xe8\xf6\x2f\x30\x8f\x25\x9b\x91\xb6\xcf\x76\x20\x0a\x63\x8b\xdf\x16\xb4\xfd\x48\x76\x80\x40\x46\xc7\x7c\x35\x34\x8a\x59\x5b\xca\x8e\x3b\xab\x98\x91\x49\xf7\x90\xe3\x86\x8a\xbb\xcd\x74\x0c\x19\x43\x23\x5d\xcb\xc2\xd0\xe8\x3e\x09\xab\xf0\xe9\x82\x36\x90\xb6\xc1\x50\xb4\x2f\xec\x9a\x30\x94\x4d\x20\x5f\x53\xa2\x97\x5e\x54\xea\x2c\xcf\x98\x55\x11\xec\x83\x87\xa4\xa4\xf1\x32\x92\x6c\xb4\x6e\xf9\xd8\x99\x35\xad\x26\xab\xc6\xc0\xa2\x8e\xfd\x58\xa0\xa0\xb7\xcb\x2a\x86\x86\xe2\xea\xe4\x98\xf3\x6a\x1a\x4b\x09\x62\x80\xee\x2d\xed\xf2\xde\x1e\x9e\x31\x71\x44\x05\xa5\x39\xdf\xfe\x33\xe9\xeb\xcd\x55\xd8\xed\xd8\x21\x18\x0f\x86\xd5\x1f\x18\xd5\x27\x9d\xfd\x74\x76\x5c\x9d\x2d\xed\x25\x51\x87\xc0\xfc\x9c\x37\xef\xba\xf4\x10\xbe\x52\x30\xd9\x4d\x7a\x52\x3d\x3f\x65\xc3\x5c\xdc\x46\xe8\x60\x23\x66\xba\x29\xca\x89\x6c\x93\x6c\x39\x00\xf5\x7e\x66\xc2\x4f\x3d\x62\x63\xa7\xc1\x6e\x32\x45\xb1\x1f\x0c\xce\x98\x0e\x38\xd4\xea\xdb\x76\xe5\xae\xa0\xf7\x9f\xf1\x91\x82\x38\xcb\xa6\x2c\x05\x4d\x0c\x40\x50\x3d\xa9\x90\xb6\x2c\x3a\xf8\xaf\xc2\x69\x49\x49\x32\xb0\x29\xde\x58\xb7\xbc\x00\xc5\x6a\xda\xe5\xa9\xd8\x83\xdb\x12\xba\xdf\x51\x4d\xb4\x52\x2d\x9d\xd0\x64\x09\xf6\x6b\x6a\xe9\x34\x95\x58\x87\x20\xb1\x82\x2f\x9d\xa6\x26\xa2\x2e\x33\xdf\x9c\xe8\x99\x9e\x2c\xfc\xfd\x7b\xe7\x23\x29\xf7\x95\xcd\x0c\xee\x45\x98\xfa\xc5\xc5\xf3\xd7\x2c\x65\x9f\xaa\x5d\x69\x73\x45\x22\x12\xcc\x20\xf7\xef\x3d\xef\xfb\xbd\xfb\x5a\x2d\x15\xb0\x32\x5c\xa0\xe1\x1b\x08\x97\xfe\xab\xd8\xf8\xb6\xd4\xd0\x6b\x6b\x76\xc9\x58\x49\x32\x23\x9c\xef\x89\xed\x1f\x11\x2b\xcd\xe6\x07\x5d\xa0\x8b\x96\x72\x16\xe1\x4f\x12\xe9\x7a\xc6\x06\x1e\xb5\x27\xcb\xf6\xfd\x3f\x4e\x2c\x71\xd7\xe6\x7d\xd5\x2e\xfe\x48\xc4\xac\xde\x5f\x19\x16\x52\x02\x2c\x4c\x05\xec\x7e\x4a\xed\x91\xa6\xbe\x34\xcd\xb0\xbb\xfd\xb1\xab\x36\x50\x62\x87\xe2\xea\xf6\xa7\x4b\xdb\x14\x9f\x3c\xfa\x94\x95\xa6\x61\x5d\x43\xb4\x00\xa1\x58\x7d\x3a\x6a\xb9\xa4\xf3\xf7\x1f\xdc\xba\xab\xde\xdb\xac\x4d\xb6\x84\x3d\x70\x28\x63\x91\x73\x52\xce\xe2\x17\x29\xaf\xb6\x6e\x79\x27\x3a\xc8\xb9\x71\x0c\x5c\xd1\xbc\x3b\x5c\x91\xa8\xd3\xee\xf6\x07\xe2\x26\xed\xb4\xa2\x90\x99\x0c\xd9\x74\xda\x0e\x10\x56\x7f\x08\xa9\x1e\x8c\x57\x5a\x2b\x56\x12\xdb\x95\x8a\xbe\x0c\xd5\xbc\x21\xf6\xdb\x28\xe4\x49\xc7\x0a\x3b\x49\xb5\xcd\x15\x11\xd4\xb2\xfd\x5d\xf0\x07\x11\xe7\x62\x4d\x62\xc3\x07\x52\xbe\x79\x3a\x4e\x9f\x61\x64\x28\xed\xb0\x48\x4e\x70\xd4\x13\xc4\x78\x13\x69\x48\x97\x1e\x61\xd6\x76\x88\x79\xc2\xbc\xc1\xda\x7e\xf4\x62\xad\xd6\x44\x85\x57\xbd\x79\x63\x9b\xc9\x91\x2c\xbe\x27\xf6\x06\x6e\x0e\x6d\x56\xc9\x0e\xe9\x34\xf3\xd5\x46\xca\xcd\xa4\x2a\xc9\x2a\x07\x6a\x8e\x2d\xbb\x93\xaa\x3d\x1d\xb6\x83\x75\xe5\xe0\x4d\x2b\xc9\x9a\x72\x05\x9a\x6b\x39\x47\x38\x42\xa5\xc1\x49\x9d\xaa\xae\xed\x16\xe6\x43\xdf\x21\xad\x43\x93\xf7\x83\xdd\x04\xb3\x63\xb2\xfb\x2b\x54\xaa\xdc\x22\x41\x6a\x58\xa0\xb8\xa2\xa9\xea\x21\x4b\xa3\x65\xc2\xee\xa1\xf6\xd0\x1f\xa8\x91\xa8\x8f\x3c\x86\x28\xb5\x6e\x6c\xd7\x8b\xcc\x04\x69\x0d\x94\xb8\x6a\x40\x57\xc1\x25\x74\xa0\xa3\x65\x50\xcd\xd4\xdb\xa2\x26\xbd\xd0\xbe\x84\xba\x99\x75\x93\x89\x66\x36\x69\x99\xc4\x20\xe2\x11\xb6\x57\x9f\x69\xa2\xfa\xb6\x73\x6d\x07\x96\x78\xa8\x65\xcf\x66\xa2\xb2\xc7\xf4\x9a\x66\x93\xa9\xd5\xde\x91\x8b\xcd\x6e\xdf\x11\x99\xcc\x95\xe2\x52\x75\x61\x2e\xc2\x24\x6b\x92\x67\xa1\x2d\xc9\xe4\x52\x60\xc3\x84\x0b\xf6\x7d\x98\x11\x45\x7b\xbe\xfd\xb9\xee\x41\x14\x20\x87\xd3\xc9\x6c\xc2\x4a\x8b\xf5\x2f\x4e\x98\xf4\x87\x67\xa0\x27\xe0\x18\x2c\xfc\xb4\x03\x8b\xf7\x29\x0c\x1f\x2d\x3f\x7f\x47\xa4\xf3\x8d\xbd\x49\xb5\x14\x95\xc9\x9c\xdd\x0e\x15\x14\x5e\x41\xc7\x86\xf5\x70\x96\x82\x3d\x3b\xfa\x1d\xeb\xef\xa4\xc3\x42\xeb\x60\xa8\x9b\xd0\x1e\x7b\xd9\x22\x47\x88\x6d\x64\x2d\x3c\x2c\x76\x6c\x3c\x73\xc3\x8e\xbb\x02\x92\x83\x08\x61\x0e\x48\xe2\xbe\xfe\x1e\x96\xaa\x68\xc2\x84\x7e\xe8\x0d\x08\x47\x63\x63\xe0\xa5\x21\x4d\x73\x10\x1d\x9f\x08\x7b\x4f\x87\x08\x98\x17\x47\x34\x64\x20\x31\x12\x90\x8a\x4c\xa7\x08\x9a\x9e\x62\x8c\x56\x6e\xb2\x5f\xbd\x68\xdb\xab\x6b\xc1\xbe\xdb\xd4\xc4\x08\x71\x66\x88\x39\x36\xee\xd2\x76\xb7\x3f\x3d\xaa\x4d\x30\xbd\x2d\x7c\x8f\x10\x97\xe1\x7e\x1e\x77\x78\x69\xde\x43\x14\xea\xa7\x74\xc6\xf7\x25\xa6\x75\x23\xbd\x70\x87\x93\x2e\xb0\x99\x46\x13\x83\xc9\x62\xec\x91\x0a\x33\x34\x1f\x32\x47\xee\xf7\x43\x26\x98\x22\x55\xac\xf9\xe8\x7b\xb4\x0a\xd2\x39\x18\x90\x33\xe2\xa0\x21\xae\xbc\x1d\x1a\x17\xcd\xac\x59\xc7\x74\x04\x6e\xff\xf2\xa8\x86\xaa\x4c\x1f\xf6\x6d\x45\x7b\x65\x6f\xb6\x06\x8c\xf2\x3a\xd0\x0b\xa2\xbd\x86\x75\x4c\xf6\xfb\x5d\x65\x47\xb0\x33\x3b\xb1\x86\xd1\x61\xad\x9a\xf1\x21\x24\x89\x0f\x63\x85\x55\xe1\xca\x34\x5b\x0b\x33\x1f\xb5\x25\x22\x21\x88\x0a\x64\x5f\xf9\x06\x35\x7c\xdb\xc9\xef\x70\x5e\x84\x2a\x9b\xc1\x11\x39\x1f\xd5\x4c\xea\x35\x73\xee\xfb\xef\x5b\x12\x1f\xda\x06\x66\xca\x4d\x47\x33\x1d\xd8\x50\xb4\x4b\x9c\xe9\x95\x9d\xd8\x40\x58\x27\xac\xfa\x1b\x56\x04\x2b\x5e\xb5\xf3\xdb\x9f\xd7\x70\x55\x41\xcd\xae\xeb\xf6\xad\xed\x48\xc8\xc5\xb9\x25\x11\x8d\xe3\x43\x68\x04\x44\xed\x96\x2f\x4d\x07\xbb\xb5\x07\x83\x9d\x8c\xc1\x9a\x92\x5d\xef\x20\xcf\x0b\xe6\x09\x10\xd9\xbb\x6b\xaa\xe1\x79\x4a\xc2\x68\x3f\x7e\xe0\x3e\x1e\x49\xdb\x9e\x27\xc5\x06\xf6\xa6\x27\x0c\x34\xa2\x0e\xf1\x90\x4a\x16\xb7\xb1\xea\x24\xfd\x93\xa2\x5a\x71\x4c\x0b\x1b\x5d\xf7\xa6\x64\xdf\x04\xb7\xcc\xba\x40\x3b\xe9\x76\xa1\x21\x08\x12\x0e\x41\x4b\xe5\x43\x26\xce\x35\x5c\x62\x6c\x3d\x56\x0a\xe4\x96\xc7\xa0\x12\x4e\xe4\x66\xb1\xed\x2c\x59\x6f\x76\x12\x41\x54\x89\xc3\x57\x3c\x7d\x44\xee\x96\xd1\xeb\xe7\xf8\x34\xb9\xe5\xd8\x82\x55\x5a\x52\xe8\xa1\x1b\x89\x5e\xaf\x5a\x38\x61\x7b\xf9\x75\x55\x62\x9c\x7b\xc8\x90\x9b\x55\x3e\x44\xbf\x4a\x6d\x18\xbb\x58\xf8\x11\xf3\x91\xc9\x6e\x2a\x6b\x03\x53\xdc\x0e\xdc\xa9\x8e\xad\xf2\x8c\x67\xef\x34\x31\x35\xc7\x2e\x34\x99\xa7\xaa\xb3\xb5\x61\xc7\x21\x0e\xd8\x3f\x0b\x75\x79\x58\xd8\x08\xde\x12\xf6\x15\x96\xd8\xc7\x5b\xbb\x2e\x2e\x2d\xd4\x7d\x43\x47\xfa\xfa\xf6\x47\x97\x18\x92\x2e\x11\x3d\x12\x2d\xf6\xc7\x62\xc8\x68\xc7\xe1\x50\x70\x20\xb1\x9f\xe8\x05\x3c\x49\x51\x7b\x18\xf6\x25\x2c\x74\x1e\x09\x47\xbd\xf8\x5f\xb0\xe0\x7e\xcd\x72\x90\x60\x6d\x3d\xe3\x83\x23\x71\x30\x2c\xf3\x18\xad\x5b\x8a\x81\x82\xe0\x40\xf3\x17\xe1\xf0\x85\x30\xa7\x89\xed\x54\xb4\x3a\x6c\xef\x11\xa8\xe0\x7e\x66\x7b\x73\x7f\x5a\xcb\x53\x21\xc6\x1c\x70\x59\x35\x83\xe9\x3e\x2b\xa2\xf7\x17\xab\x12\x7c\x6d\xa4\x37\xbc\x71\xc9\x12\xd0\x27\x5a\x03\x37\x44\x8d\x5e\xdb\x60\xcf\x89\x34\x36\x1b\x6a\x63\x85\x97\xe6\x34\x25\x3a\x27\x8f\x84\xa4\x1c\x73\x31\xa3\x65\xbe\x8a\x57\xb5\xb5\xa6\x95\x9d\x53\x46\x77\x5e\xb1\x1e\xdc\xc6\x40\xdd\xf8\x52\x69\x1a\xf0\xd4\xb6\x4e\x0d\xab\xd2\xf1\x09\x5b\xb5\x8d\xb7\xa1\x14\x1e\x52\x57\xcf\x93\xbc\xb0\xbe\x9b\x91\xe9\xdd\xea\x80\x51\x03\x1a\x2a\x89\x5d\x3a\x3e\xa6\x0e\xab\x6a\x87\xe0\xb8\xb3\x10\xe4\xe1\xed\x71\xa9\x9a\xc2\x30\xbb\x05\xd4\xf6\xd1\x1c\xa3\x4b\xe6\x94\xcd\x27\x9e\xe0\xd2\xc4\x1d\xfc\xeb\xb2\x6d\xc4\xed\x79\xfb\xd3\xb5\xad\x1f\x26\xc4\xeb\x4a\x30\x73\xfb\x03\x71\x97\xc5\x68\x46\x61\x3b\x2a\x9b\x1e\xcd\x49\xbb\xc9\xb6\xa7\x19\x6d\xcf\xb0\xeb\x02\x71\x7a\x39\x94\xa6\x81\x37\x88\x29\x27\x13\xaa\xb6\x2e\xc7\x7e\x6d\xc6\xa5\x44\xb1\x85\x12\xb6\x6b\x5f\x8c\xac\x22\x51\x64\x3f\x52\xf9\x94\xc7\x32\xe3\xef\x59\x4c\xc6\x12\xe6\xe7\xab\x0a\xbc\xee\xfd\x7c\x2a\xc5\x37\x6a\xc5\x2b\xd5\xf0\xea\x7d\x98\x00\x0a\x16\x18\x1a\x21\x4f\x9a\xd5\x19\x17\xb5\x18\x97\x86\x26\x68\xf8\x9d\xc2\xc4\x08\x3c\x9b\x41\x7b\x6b\x89\x68\x46\xf3\x74\x52\x0c\xd5\x24\x7c\x50\x03\x7b\x9a\xf4\x84\x46\x26\xa4\x11\xde\x49\xcb\x52\x30\xd1\x7d\x4f\x03\xe9\x23\x14\x54\x92\x5e\x4c\x77\xb3\x3c\xf7\x0d\x85\x4f\x6a\x9a\x7d\xa6\x66\x29\x9a\x6b\x1b\xbb\xf3\x6c\x20\x00\x31\x33\x80\x4f\xb2\xe4\xc3\x23\x9f\x8f\xca\x8a\x69\x41\xa7\x66\xe8\x39\x8b\x10\x6a\x8c\xa1\x27\x65\xab\xcc\xce\x0d\x7b\xef\xdf\x60\xdb\xce\x0c\xba\xb9\x6d\xfb\xd8\xdb\xb6\x7d\x98\x6d\x89\x95\x86\xee\x32\x67\xe2\x7e\xe8\x6d\xdc\x8d\x8a\x86\x10\x26\x83\xeb\x38\x1b\xce\x22\x9d\x4c\x38\x5a\xb4\xa6\x53\xc4\x28\x03\xe4\xa3\xa5\x18\x99\x50\xfe\xb0\x91\x02\x9f\x8f\x5b\x29\xe5\xf8\xe8\x13\x8a\x48\x44\x2d\x6b\x0d\x22\x1f\xf0\xbe\x62\x09\x55\xc9\x4c\x5d\x39\xf1\x11\x6e\x42\x13\xc1\x44\xcb\x02\xdc\xce\x2b\x3f\x4c\xd0\x11\x7d\x82\x63\x49\xdc\xb5\x72\xc2\x24\xa4\x5e\xd4\x12\xbd\xd1\x1a\x16\x14\x3a\xf7\x0b\xe9\x58\x09\xf3\x13\xb8\x02\x9a\xed\xd3\xc4\xdb\x61\x10\x03\xfd\xd9\x93\xc7\x5a\xa2\x91\x2b\xd8\xcb\x40\x2a\xc9\x6a\x46\xd7\xd2\x14\x57\x9d\xbd\x5c\x7e\xf4\xc0\x7d\xf4\x74\x6b\x3b\xd3\x25\x63\x7e\xf2\xd8\x3c\x65\xdd\xbd\xad\x07\x9d\x75\x06\xbf\xf7\xa1\x9e\x98\x11\xe4\x6e\x4c\x4c\xeb\x2d\xe2\x16\xce\xf1\x76\x1c\xcd\x8f\x8a\xf3\xc4\x62\xf1\xf5\x2e\xa8\x63\x2a\x8b\x72\x9b\xb4\x58\x56\x03\x55\xd8\xb4\x75\xfb\x73\x29\x36\x13\x75\x47\xec\xe8\xb8\xb6\x8b\xd8\x20\x73\xe6\xd0\x20\x1f\xd7\x71\xb3\x5c\x9b\x25\xf7\x71\x0f\x60\xe5\xd4\x96\x6f\x27\x58\x5d\x8e\x65\xc1\xf1\x5d\x9d\xb6\xcc\x7e\x79\x30\x61\x83\x24\xd4\x10\x74\x6c\xdc\x2b\x8b\xa6\xd9\x86\xcc\x08\xe4\xaf\x02\x35\x10\x25\x3a\xa1\x05\x24\x18\x1d\xc5\x4d\x0c\xe1\x9e\x75\x7e\x9e\xe4\xed\xff\x86\x3e\x0f\x27\xff\x7b\xa5\x5b\x96\x2d\xd3\xab\x20\xe3\x9f\xaa\x4b\xc0\x04\x59\x1f\x0e\x10\x0e\x77\xe2\x41\xf7\xe0\x57\x12\xc6\xcf\xba\x94\x49\x8d\x8e\xff\x8d\xd8\x9e\x84\xf3\xfa\xb3\x22\xe2\x6f\x72\x52\x32\x41\xb8\x38\x0a\x5b\x3d\xb8\x41\xef\x38\x22\x52\xd7\x49\xdd\xf4\x2c\x88\xa4\x59\x57\x5b\x25\x44\x77\x9d\x86\xa1\x59\x93\xfa\x01\xbb\xc3\x35\x11\xd6\x81\x05\x20\xf9\x96\xac\x88\x28\xc9\x32\x22\xef\x99\x54\xf0\xd2\xa4\xc4\xc0\x70\x8d\x55\xdf\xc2\xea\x16\xa7\xf9\x1a\x7f\x33\x5f\x39\x12\xe2\x74\x2e\x36\x03\x1f\x18\xaa\x8e\xe4\x50\xcd\x93\x6b\xae\x47\x7a\x25\x57\x17\x54\x68\x53\x5b\x96\x0f\x1d\xeb\xae\x41\x46\xd4\xf0\x9e\xa0\x11\xa9\x07\x90\x63\x69\x58\xdc\x3a\x3a\xff\x8a\x03\x03\x16\xc2\xdb\xb9\x5d\x69\xf6\x9c\xfd\xbc\x84\xbb\xa6\xd7\xe8\xad\x82\x4b\xf3\x70\x1c\xf5\x25\xb6\x63\xb1\x52\x1a\xca\x42\x56\x75\xe8\x61\x7e\xe9\xdc\x66\xcb\x04\xdd\xa4\x6e\x72\x58\xbd\x74\x0e\x7a\x24\x3d\xcb\x7c\xb3\x2d\x5f\x1c\x67\x16\x3e\xde\x11\x7b\xef\x8a\x6a\xe6\x1a\x51\x4b\x8d\xba\x6e\x8b\x34\xb4\x89\x10\x87\x79\x8a\x9e\x1f\xd5\xfa\x78\xae\x64\xfc\x27\x62\x82\xc8\xbf\x86\x8d\xf2\xfa\x40\x7f\x0c\x3c\x19\xfe\xa9\xc8\x48\x34\x7c\xda\x89\x3a\x03\x13\x84\x58\x87\xd0\x04\x13\x55\x41\x1f\xc3\xc9\xbb\x4d\x7b\xf7\x1e\x59\xaf\x08\x26\x2e\x59\x85\x50\x67\xec\x51\xaa\x76\xc9\x68\x30\xdb\xb0\x84\xac\x12\x9b\x06\x33\xe6\x69\x43\x63\xf3\xbc\x81\x03\x81\xce\xcf\x9e\x9d\xbc\xba\xfd\xa7\xc8\x16\xb0\xc7\x68\xe3\xb0\xee\xf6\xab\x18\x2a\x35\x1a\x58\x0c\x98\xc2\x10\x55\x2f\xcb\x61\x34\x92\x2b\x94\x27\x77\x16\x46\x80\x91\x12\xe8\x71\xe4\x15\x53\xdc\xce\x4c\x61\x56\x75\x62\x2d\x1e\xd6\x0d\xd2\xe0\xc5\xe4\xf9\xac\x6d\xda\xc4\x58\x1f\x36\xf0\x4c\x3c\x74\x1a\x76\x0d\x30\x27\xae\xce\x34\x14\x65\x4d\x1a\xbc\xb8\x10\xf6\x88\x07\x6c\x60\x49\xda\x11\x61\xea\xaa\xf7\xb8\xbf\x54\xb9\x04\xb3\xb7\x3f\x37\x70\x01\x05\xa4\xd2\xd2\x22\x64\x8f\x35\x82\x9b\xe5\x37\xfa\x2b\x88\xae\x16\xe0\xbb\xef\x9f\x3d\xbb\xe2\x78\xc9\x8c\xd8\x4f\xdc\xde\x34\xc5\x86\x68\xbc\x5b\x7e\x34\x54\xf0\x6a\x16\x88\xbd\xf9\xe8\x29\x44\xc7\x6b\xda\x85\xd4\x1f\x81\x3c\x65\x6b\xc9\x1b\x31\xd0\xf1\x25\x96\xf1\x94\xb9\x98\xc3\x75\xf5\x8e\x8b\x7e\x9a\x0c\x25\xd8\x55\x48\x44\x60\x0d\x47\x65\xf8\x4e\xc2\x1e\xc3\x2c\x24\x98\x22\x1f\xee\xba\xba\x1c\xd4\x26\xc4\x28\xe6\x45\x7e\xc6\x97\xbc\xc2\xbd\x09\xfa\x8c\x2b\x4c\xe1\xfa\x52\xf8\xe2\x07\x70\x41\x7b\x00\x0c\x8e\x9b\xf7\x5a\xdc\x62\x5b\xf5\xd5\xb6\x69\x3b\x98\x08\x2a\xe2\x59\xce\x2e\x5f\xe0\x27\x9d\xb6\xf0\xe5\xce\x16\x68\xb8\x75\xa8\x40\x12\x78\x4f\xc8\x32\x25\x6d\x11\xbd\x65\x56\xbd\x67\x17\xa3\x1d\x7b\x11\x10\x9f\x53\xbc\x38\xf9\xea\xe8\xe5\xc9\x62\x57\x86\x50\x21\xc6\xb4\xc4\x08\xe5\x88\x2e\xed\xa5\x19\x6a\x6f\x37\x5c\xbe\x82\xad\x50\x4d\x52\xfe\xda\x12\x29\x5a\x84\xd1\x6b\x83\xbb\x28\xf2\x8b\x08\xaa\x12\xba\x54\x7c\x02\x61\xf8\xd3\x5f\x34\xa1\x65\xe3\xfc\xcf\x35\xa3\xa5\x5d\x2f\xe4\xde\x10\xd4\xf0\xa1\xbf\x4a\x43\x6d\x8e\x72\xff\xaf\x5e\xc1\x4a\x2f\xb4\xd8\xec\x2a\x56\x0a\x90\x1d\x8c\x6c\xa6\xaa\x97\xed\xf2\xb3\x81\x43\x51\xac\xeb\xc1\xd2\xc9\xb0\x82\xc7\x70\x32\x7c\xbb\xbc\x64\xdc\xe1\x78\xcd\x14\x62\x81\x98\x7b\x22\x51\x65\xd9\x81\x01\x64\x7e\xb3\x63\x14\x1d\x80\x94\x7d\xce\x66\x9c\x88\xfd\x5d\x88\xe4\x0f\xc1\xfb\x17\x8f\xbf\xfc\xea\x35\x24\xe9\x61\x17\xaf\xa3\xa4\x57\x2a\x24\x7c\x7a\x11\xbb\xf1\x0e\x15\xfe\x9e\x5f\xf6\xe0\x4f\x21\xd2\xb0\x7d\x98\x5a\xa1\xd3\xc8\x09\xea\x2b\xbb\xb3\x21\xe7\x9e\x96\x8b\x89\x81\x9e\x58\xcf\x4b\x12\x3a\x41\x5a\x61\x7d\xb9\x1c\x71\x55\x8d\x16\xbe\xd4\x6b\x72\xe3\xf3\x0f\xa9\x05\x12\x35\x75\x4b\x1c\x8f\x39\xc9\xfe\x66\x05\x43\x16\x31\x0f\x70\x73\xfa\x42\x87\xf0\x0d\x71\xda\x15\x8a\xf4\xab\x8f\xaa\xbe\xfd\x81\xce\x16\xda\x0d\x0e\x01\x0e\x18\xe2\x66\x2a\x5b\x0a\x74\xce\x78\xd1\x20\x56\xc2\xdf\x5d\x1a\xa9\x3e\xaa\x63\xf9\xbb\x14\x9f\x15\xa0\xc3\x1c\x16\x41\x1a\x8c\x18\xf8\x97\x1f\xad\xd6\x44\x7e\xde\x7c\x94\x68\x34\x7c\x75\x14\xea\xcb\xaf\x20\x3e\xbe\x65\x37\xf3\x33\x4b\xaa\x2c\x87\xa8\x9d\xad\x71\x16\xf9\x26\xa7\x04\xaa\x86\xbf\x07\x04\x7a\xe2\xae\x27\xc9\xae\x56\x55\xe2\x0a\x36\x4e\xfe\xfc\x45\xf8\x93\x2f\x1c\x82\x0e\xf3\xd9\x51\x3a\xe9\x85\xf3\x8c\x5e\x12\xed\x22\x74\xc1\xf6\x6e\x97\x5f\x42\x5d\x7b\x75\xfb\xc3\xbe\x2a\xc3\xbc\xfb\xab\xca\x29\x2d\xaa\x45\xd5\x1f\x1f\x98\x2c\xb8\x91\x89\x2d\xe1\x04\x61\xc9\x4a\xbd\xbc\x1d\x2e\x5b\xc8\x06\x92\x39\xdf\x89\xb0\x3e\x88\x19\x76\x68\xc4\x5a\x60\x83\x49\x8f\xe7\xf4\xf7\x64\x0b\xc8\x06\x44\xe8\xf7\x6c\x1b\xf7\xef\x25\x74\x91\x44\xcd\xce\xda\xe5\xed\x3f\x75\xd7\x4c\xd8\xd5\xd5\x82\xeb\xaa\xbd\xd9\x3a\x86\x71\xc5\xff\x5f\xbc\x36\x08\xb7\x96\x52\xab\x9f\xe1\x9f\x21\x10\x29\x9a\xde\x39\xac\xcd\xda\xc2\x68\xd4\x43\xa0\xec\xf1\x65\x57\xd5\x84\x1b\xc2\x99\x63\xc7\x85\xc4\xa2\xee\x88\xe6\xe1\x16\x25\xff\x04\x2f\xaa\xad\x71\x04\xf1\x82\xcd\x6a\x1c\x13\x44\x9f\xd9\x9c\xdc\x19\xdc\xaf\x1d\xf4\x2f\x42\x3b\x5f\x4e\x7c\x4e\x3f\x31\x71\xd8\xe1\xb9\x80\xa3\xfd\x01\xfb\x0d\x24\x95\x00\xcf\xf2\x0c\x1f\x84\x17\xf4\x4f\x22\xde\xb0\x59\x4f\xfa\x5f\x4c\xc6\xe3\x0b\xc6\x57\x24\x8b\xcd\x18\xe2\x12\x6a\xcf\xe7\xb0\xbf\x76\xf1\x23\x08\x72\xdb\x2d\x99\x0e\xc7\xaf\x3b\xe8\x0f\x5b\xbb\x7c\x49\x2c\x13\x87\x22\x96\xc0\x5c\xb9\x7c\x66\x7a\x13\x3f\x49\x60\xf0\x4b\x56\xe7\x48\xea\xc2\xa5\x4a\x5f\x44\xfb\xc9\x17\x41\xc8\x67\xff\x2f\xaf\x03\x4a\x44\xee\xdf\x87\x7b\x99\xb1\x64\x31\x5d\x9a\xa4\xb0\x81\x2c\x40\xe5\xc4\xc3\x49\x1b\x57\x90\x0c\x62\x43\x4b\xd4\xad\xb4\x91\x17\xd5\x6e\x8f\x19\x27\xe5\x61\x9d\x89\xd4\xeb\x6f\xe3\x1e\x22\x08\x7a\xd9\x61\x37\xcc\x74\x11\xa1\x66\x7a\x21\x09\xbc\x49\x20\x64\x47\x15\x34\xa8\x8e\x77\x4c\xd6\x58\xeb\x10\xc4\x38\x86\xbd\xb4\x9b\x2b\xb9\x7a\x99\x00\x13\x2f\xc3\xe5\x6b\x04\x70\xc1\xc2\xec\xf8\x96\xfc\xcc\xd8\x02\xdc\xcc\xd0\xa0\xf0\xfb\x62\xe6\xee\xa6\xef\xaa\xf5\x70\xfb\x53\x19\x11\x29\x24\x61\x79\xc1\x91\xf0\x69\x6d\xc5\x3e\x9b\x87\xe7\xd0\x2f\xe5\xab\x7d\x4d\x4a\xd1\x28\xc2\xdc\x83\xf3\xfd\xdd\xac\x1f\xbf\xa4\x79\x6f\x8c\xc2\xde\xac\x97\x0f\x4a\x45\x5c\xac\x06\x9c\xf9\xb2\x09\xa2\xe8\x40\x21\x10\x59\x1a\x3d\x19\x0f\x32\x2d\x25\x49\x07\x6c\x0c\x16\x6d\x4f\x5d\xfd\x28\x0b\xa7\x42\xa2\x29\x27\x75\x47\x6b\x75\xb0\x78\xd2\xbc\xec\xa5\xa4\xe9\x49\xdd\xb0\x32\x47\x7e\x51\xe6\x40\xb6\x15\x81\x24\xad\x63\x9b\xca\x2a\x7a\xbe\x90\x57\x09\x22\xd5\x5c\xc1\x02\x57\x0f\x94\x42\x86\x7b\x9f\xfb\x48\x2a\xe7\x6a\x38\xcd\x01\x40\x7c\xfa\xa6\x1d\x92\xc1\x3a\x68\x01\x90\x09\x66\xeb\xc9\x72\x97\xab\xf5\x0d\x57\x03\x83\xc9\xcc\x1a\xb3\x95\x40\x65\x09\x59\xb8\xa3\x84\x4a\x2f\x61\x65\x21\xdc\x21\xae\x78\xb6\x92\xe3\xb0\xcd\xae\xb4\x8d\x99\x45\x06\xca\x17\x48\x99\xe0\x7a\xa1\x4e\x1c\x21\x3f\x0b\x85\x0d\xec\xa1\x0c\x93\xb7\x79\x38\xb1\x92\x89\x3f\x47\xa0\xd5\x6e\x26\x97\x9c\xa2\x43\x71\xbe\x3a\x98\x4a\xa8\xcd\xb6\xb4\xbf\xaa\x3a\x71\xbb\x1e\x44\x17\xa6\x46\xee\x7c\xc3\xf7\xbf\xee\xee\x2e\x54\xe0\xfe\x66\x6a\xe0\xf8\xf1\x52\x2d\x1f\x7c\xfb\xeb\xef\x9c\x98\x23\xf9\x18\xf2\x7a\x05\x0b\xef\xe3\x07\xdf\xfe\xe6\x3b\x92\x89\xf8\x07\x64\xa2\x69\x0b\xab\x4b\xf3\xc6\x2e\xb5\xb2\xb4\x86\x26\xb8\x46\x80\xde\x77\xf6\xba\x6a\x07\x17\xb2\x7b\xe0\x2e\x1b\x49\x0c\x29\xf9\x79\xd7\x13\x0f\x17\xaf\x80\xbf\xf9\x36\x22\x17\x6c\x5e\x98\xa3\x16\xa5\x96\x29\xb5\x88\x8d\x0e\xbb\x95\xe2\xc2\x81\x9a\x08\x26\x24\x2c\x24\xb6\x20\x00\xd0\x61\xfa\xe5\x1f\x03\xb2\x80\x84\xaa\x24\x91\x10\x53\xf2\xf2\xe1\xdf\xc9\x5f\x11\x1f\x7f\x8c\x7d\xb5\xc1\x24\xac\xf4\x20\x9a\xa9\xa1\xa0\x0c\x2c\xdb\x67\x34\x4e\xf2\x17\x7c\x81\x41\x77\xa3\x22\x1d\x94\x82\x1c\xcb\xa0\x70\x01\xf4\x32\x87\xee\x2c\xa3\x46\xc0\x5e\x59\xb3\xee\xaa\x49\x61\xde\x96\x02\x71\xcc\xa4\xb4\x3a\x26\xd8\x7e\xf7\x1c\x4f\xca\x05\xd7\x40\x93\x62\x1a\x66\xf7\xbf\x12\x4f\x32\x28\x6d\x86\x3a\x94\x8d\xf3\xd7\xb7\x43\x62\x27\x52\xab\x7c\xb5\x13\x31\x46\xbf\xf2\x4d\x96\x25\x07\x16\xc7\xcd\x23\xf1\x70\xf8\x37\x7c\xf3\x17\x44\x48\x18\x27\x85\x87\x48\x72\x7a\x1f\x04\xea\x17\x2e\x2e\xec\x44\x46\x4b\xab\x54\xcd\xca\x07\x29\xb3\xdc\xce\xca\x0b\x02\xad\x2a\x78\xf2\x3a\xbe\x27\xcf\x56\x2d\x5c\xb6\x33\x8b\x62\xe6\x9a\x4f\xe6\x3e\xf9\x82\xef\xf3\xd5\x2d\xed\xf6\x70\xc7\x83\x91\x9e\x1d\x36\x5b\x56\xfd\xf2\xa4\xac\xd2\xc5\xc0\x25\xb7\x31\x57\x15\xbe\xd7\x67\xa1\xde\x13\x46\x2e\x40\x9b\xb6\x6e\x91\x71\xa0\xbb\x13\x06\x96\x3f\x3a\x37\x76\x22\xae\x09\x40\xdc\x7b\x7c\xbc\xa2\x2f\x68\x2c\x0b\x09\xf8\xdc\x34\xa4\x44\xc3\x60\x82\x4d\x36\x2b\xcc\xa2\xea\x83\xd3\xfc\xc0\x98\xb9\x25\x84\x90\x70\x5b\xee\xc3\x80\xd5\x20\xa9\x41\x69\x99\xa4\x80\xcb\x04\x7d\xd5\x19\x31\x50\xc6\x00\x8d\x38\x57\x0e\xd8\xab\xd9\xe7\x5d\x41\xf1\x83\x18\x00\x06\xb6\x28\xfe\x30\xf0\xf5\x01\xef\xb2\xf2\x66\xcb\xf9\x21\x44\x17\x45\xe8\x9b\xbd\xae\x12\x99\x37\xf1\x11\x49\x46\x16\xa6\x5e\xb4\x6f\xe8\xd0\xb2\x47\x9e\xd5\x07\xec\x23\xea\x57\xc3\x03\xdc\x01\x48\x99\x73\x00\x2f\x11\x0a\xd7\xb1\xce\xe5\x15\x7d\x17\x93\xbc\xe8\x35\x67\x6a\x47\x94\x6a\x17\x9b\x5f\xf8\xf6\x89\x00\x76\xd6\x0d\x35\x91\xda\x53\x58\x71\x6d\xc3\x59\x9a\xfc\x05\xc5\xa8\x82\x45\x15\x41\xa5\xef\xa4\x68\x2a\x17\x66\xda\xdb\x21\xe1\x70\x0c\x51\x0a\x55\x2d\x5b\x8e\x27\x4d\xbb\x26\x7d\x7b\xa0\xb3\xcb\x02\x30\x07\x65\x9a\xf7\xd3\x11\x44\x4a\x3a\x6e\x38\x50\xeb\x7c\x3a\xb4\x7a\xeb\x2b\x6b\x20\x11\x93\xdc\x63\x65\x62\xea\xb3\xd9\x06\xdf\x11\x3b\x02\xc2\xc6\x59\xe4\xad\xa7\x42\xf9\x0c\x62\xe4\x50\xbf\xbe\xfd\xa9\x1f\xea\xbc\x64\x6a\x67\x4d\x0b\xfd\x64\xcf\x31\xd1\xe2\x93\x56\x72\x41\xd4\x9f\x8e\xa6\x46\x7a\x45\x50\x27\x92\x82\x70\x41\x58\x9b\x59\x49\x62\x06\x98\x2f\x38\x3f\x43\xb0\x40\x21\x69\x03\x4c\x99\x9d\x5c\x14\x66\xb7\x9e\xa6\x6e\x30\xf5\xb6\x95\x80\x87\x8f\x0d\xfd\xf7\x68\xb7\x7b\x54\x96\x1f\xcf\xcd\x3e\x89\xda\x12\x59\x3a\xb8\x4a\x43\xcc\xcc\xc8\xf3\x92\x35\xe2\xc9\x4b\xd8\xaf\x53\x2c\x02\x24\x59\x2b\xc6\x9a\x25\x6d\x67\x1d\xa2\x57\x5b\x76\x49\xea\xd6\x7c\x08\x8f\x7d\xc5\xfb\x5d\x1c\x40\x1a\x80\xcc\x71\xc7\xfe\xa2\xd9\xe0\x26\x6b\x39\x0e\xc3\x4a\xca\x94\x98\xe9\x3a\x1b\x4f\xd3\xe4\x3a\xeb\x64\xa0\x07\xd0\xe1\x83\xca\x0e\xe3\x62\x9e\x0c\x4e\x11\x32\x4f\x01\xd9\x8e\x24\x7d\x76\x62\xce\x82\xe3\x50\xa3\xee\x13\xdf\x13\xd8\xf6\x0c\x45\x34\x1c\x77\x0d\x61\xd5\xd3\xc4\x70\x37\xcd\xbb\xea\xfe\x34\x4f\x1a\xe7\x46\xe6\xb1\xc0\xea\x58\xa0\x87\xe3\xb9\xdf\x95\x17\xcb\x97\x2c\x24\x51\x0a\x21\x74\x3f\x29\x4a\xae\x26\x13\xd6\xfc\x35\x64\x3d\x50\x01\xea\xaa\x6d\xdf\xb8\xe5\x73\xfc\x0b\xbe\xf9\xd6\xae\x93\xc2\x6d\xd5\x67\xe5\x9c\x47\x27\x29\x5f\x1b\x57\x6d\x0e\x67\xf8\xfa\xfc\xf6\x07\x2a\x37\xe9\xa0\x4a\x50\xea\x6e\xf5\x1e\xda\xe8\xff\xa4\x63\xcb\x89\xb6\x48\x6e\xde\xa6\x63\x0a\xf1\x93\xc5\xd9\xa5\xa6\xcc\x0b\x65\x1a\x85\x76\x38\xab\x98\x2d\x7c\xb0\xdd\x78\xaa\x1a\xe2\x05\xfb\xde\x41\x67\x5a\x12\x13\x79\xa8\x5e\x1e\x1c\x39\xb2\x34\xfe\x87\x07\x48\x4e\x0c\xa0\x8b\x64\x64\xde\xb0\xbc\x7c\xad\xbf\xd0\x4e\x3f\x8f\x01\xeb\x33\x90\xea\xa7\x8f\xe0\x53\x1f\x91\x38\x47\xf8\x4a\xc4\x90\x5c\x75\xe1\xcf\x10\x24\xf2\x58\x79\xdc\x64\x4a\x62\xfd\x61\x9b\xaf\x7a\x09\x53\x1b\x27\xc7\x08\x83\xe1\x04\x74\x7c\x5f\x05\xc1\xfe\x4e\x1c\x42\xfb\x96\x71\xca\x19\xb1\x1a\x89\x83\x11\x31\x73\xea\xc1\x6a\xf3\x98\x96\xb8\xb9\xf2\xd0\x63\x76\xb6\xe4\x9e\x91\x11\xa8\xcf\xf1\x28\x41\x26\xc9\xed\x15\x6e\x61\xdc\xb7\xfa\x24\x30\xaa\xeb\xb6\xee\xf3\x9b\xbf\x9a\xbf\x80\xf8\xbb\x7d\x6f\xe6\xd6\x88\xd3\xe8\xd0\xd9\x5e\x3e\xd9\x3f\x7d\xe4\x43\x06\x6d\x57\xa6\x21\x0c\x7a\x49\xc7\xe3\x40\xdc\x1d\x61\x11\xaa\x06\x19\x13\x4a\xa8\x5d\x4f\x1e\xef\x9f\xe6\xed\xc0\xfe\xba\xe1\xb6\xf4\x02\xfc\xe1\x16\xc7\x4b\xe8\x67\xad\xde\x15\x4e\x98\x45\x5a\x36\x77\x72\xf8\xe4\x45\xf1\x0e\x31\x83\x31\xe3\xd2\xe8\x38\x90\x00\x96\x84\x80\xba\x51\xa0\xda\x14\x4b\xa2\xda\xb0\x2c\x25\xce\xef\x00\xb2\x23\xad\x7c\x15\x76\xfc\x17\xe6\x3d\x9d\xaa\xd7\x23\xcf\xca\xb4\x3d\x09\xdc\xc0\x6d\x17\x78\x80\xe7\x0f\xac\x07\xae\x26\x81\x74\x09\x31\x4d\x63\x08\xe6\x63\x07\x02\x30\x22\x9b\x22\xf5\x85\xc9\x3a\xc4\x89\x11\x82\x79\x6e\x9e\x1c\xf3\x35\xd1\x83\x15\x13\x7e\xc9\x6b\xb8\x89\xb5\x46\x01\x80\xe9\x58\x85\xc1\x1d\x6a\x68\xdc\x86\xbf\x44\x95\xb6\xc0\xb7\xb4\x2a\xbe\x87\xb3\x92\xb4\x06\xe9\xe5\x2b\xd9\x27\x7a\xcd\x6a\x72\xe9\x8f\x2f\x90\x67\x9e\xdb\x3c\x4c\x91\xaf\xd7\x27\x83\x58\x8c\xe6\x4f\x1c\x08\x3c\x27\xc1\xd9\xdf\xcb\x97\x31\xd3\x92\xc3\x9b\x72\x2e\x90\x29\x05\x76\xea\x01\xb6\x31\x7f\x2b\xf1\xee\x77\xf0\x17\x4b\xba\x27\xbb\x0b\x11\xb0\xa5\x30\x77\x58\xe8\x36\x2c\x9f\x17\x24\xe8\xc1\x55\x42\x87\x08\x06\x8f\x0d\xc3\x4a\x6c\x12\x69\x40\x0c\x18\x4b\x12\xf0\x98\xff\xab\x44\x68\x85\x5c\x3e\xb7\x50\x40\x70\xe8\x72\xe5\xe3\xfc\xec\xe2\xb5\xea\xc7\x50\x2d\x00\x80\xe3\xc1\xe9\xdd\x22\x21\xa2\xf3\xc3\xc7\x7a\x51\x5c\x98\x6a\x6d\x48\x82\x61\x03\xa0\x06\x3c\xde\xe9\xf4\x2b\xd8\xbf\x46\x4b\xe0\x31\xa2\xf1\x8b\x13\xe6\x9e\xe1\x51\x33\xe5\x31\x65\xa7\x13\xd1\x8b\xc1\x13\x51\x73\x88\x6f\xdd\x63\xf9\x09\x20\x26\x2e\x80\x26\xca\xea\xaf\x0f\x4c\x60\xca\x2f\x2b\xa0\x49\x7f\x38\xc5\x8e\x0f\x8d\x93\x84\x02\xea\x21\xe5\x00\xa2\x2e\x8d\x38\xce\x02\xd3\x59\x08\x1d\x0f\x97\x55\x6e\x1f\xf3\x4c\xb4\x0d\xdf\x42\x44\xb7\x48\x66\x08\x49\x7a\x58\xa4\x41\x95\x25\xa7\xdc\xdb\xed\x6b\xef\x6f\x37\x7b\x49\x0b\xc1\xf2\x9b\xba\x42\xd3\x0a\x21\x41\xa2\x64\xc1\x8b\xb7\x02\x38\xa2\x12\x7d\xce\x0d\x2d\x93\x2a\x9e\xe7\x5b\xd6\xc3\x4c\x82\x2c\x67\x60\x95\xd2\x6a\x95\xe4\xf2\xc0\x08\x4e\x0f\x3a\xb7\x1b\x0f\x38\x63\x44\x0f\xc4\xa1\x03\x9e\x1c\x34\x95\x93\xef\xda\xab\x4f\x90\xed\xe0\x29\x76\xec\x93\xc7\xfc\xab\x0f\xa0\x40\x44\x80\xae\x28\xe8\x66\x49\x4c\xb3\xbe\x12\x21\x2c\x46\xfd\xfa\xd3\x51\x35\x92\x1d\xd9\x65\x01\xf3\x3e\xfb\x5f\x3c\x3b\x1d\x47\x49\x26\x09\xf3\x34\x4d\x93\x6c\xb9\x2d\xd4\x99\x4e\x76\xb6\xa4\xbb\xe8\x8a\x4f\x7e\x7f\x71\x76\xfa\x50\x87\xf9\xee\xd1\xdb\xb7\x6f\x1f\xa1\xf6\xa3\xa1\xab\xa1\xb2\x97\xb6\xd4\x71\x3f\x44\x86\xbd\xa7\xb6\xdf\x3c\x79\x4c\x3f\x3f\x5d\x14\x6c\x7f\xce\x94\x80\x40\xb5\x82\xb2\x6f\xd4\x94\x77\xf8\xa8\x05\x9a\xf3\x25\x1c\xdb\xe3\x73\xb6\x97\xd4\x03\x31\x77\x62\xc8\x3d\x90\x72\x17\x6c\x8a\x3c\x96\x24\x09\xc3\x8d\x92\xb1\x25\xed\x0e\x0e\x14\xfc\x48\x0b\x18\xc9\xb2\x94\x7f\x10\x3d\x45\xb1\x3e\xc5\x9a\x51\xb2\x6a\xe2\x66\xd6\xed\xf2\xd9\xa4\x41\xf6\x91\xb7\x4d\x7d\xb3\x3c\xda\x5b\xdc\xd2\x6b\xb5\x61\x45\x36\xca\x15\xb7\xd9\xf6\xe2\xcc\x2c\x9a\x8c\x65\xf2\x3d\x04\xc3\xc4\x3d\x17\x77\x4e\xe8\x40\x29\x32\xcb\xa7\x3c\xc6\x4b\xdc\x84\x9c\x61\x77\xd8\xcb\xd9\x11\x38\xe5\x14\x42\xb2\x22\x34\x5f\x39\x07\x2c\x87\x04\x46\x94\x51\x16\x3d\x6e\x81\xf1\x64\xc7\x0d\xa8\xf9\xfb\x4c\x29\x52\xf0\xac\xcb\xe7\xc9\x99\x8b\xfe\x8f\xa9\x6c\x1a\x3a\xf1\x7a\xe9\x7c\x17\xe2\x4f\x81\xb0\x01\x8a\x86\x6b\x8e\x9c\x01\x67\x6b\x90\x7f\x8a\x5d\x2d\x6e\xc4\x0d\xf3\xad\x33\xa2\x13\xc0\x90\x23\xb5\xe2\xcd\x2a\x1e\xf8\xc8\x5e\x33\xeb\xed\x05\xc0\x38\x42\xbe\xc4\x9d\xf4\xde\xfa\x78\x26\x7f\xe4\x25\x4f\xcf\xbc\x3a\x22\x7d\x48\x30\xaa\x86\xd1\x8e\xca\x26\x79\x4e\x47\xe5\x50\xb5\x1a\x31\x34\x64\x5a\x5f\x69\x89\x76\xdf\x64\x57\x16\x69\x7c\xcf\xf8\xeb\x68\xa2\x11\x54\xdc\xbe\xfe\x46\x43\x50\x3e\xda\x55\xda\x9a\x90\x22\xb9\x74\xcb\x6c\x44\x37\x09\x89\x12\x7a\x65\x80\x27\x5e\x21\x6d\x79\x93\x58\x0e\x5d\x7b\xd9\xbf\xa5\xdd\x9b\x09\xb1\xb9\x45\x6b\x66\xf4\x73\xe4\x7f\x3a\xc4\x43\xb7\x07\xb0\x24\xd9\x38\xfe\xaa\x5b\x04\x69\xeb\xf9\x55\x82\x03\xad\xcf\x5d\x26\xe0\x14\x48\xb3\xca\xd7\x9d\x57\x05\x26\x6d\xff\xf2\x95\x81\x39\xec\xcd\xdb\x80\x42\x17\xe5\x78\x3f\xcc\x54\x9d\x98\x85\x0e\x0e\x31\xda\x89\x58\x94\x74\xce\xdb\x17\x7c\x9a\xdf\x19\xdd\xfc\x90\x81\xfc\xce\x11\x79\x8c\x1d\xcf\x8f\xe3\xb0\xbd\xbc\xac\x2e\x2f\x17\x24\x84\xbf\x75\xb8\xbd\x30\x74\x1b\xcb\x61\x3a\x5f\xb4\x42\x20\xb8\x18\x06\x72\xda\x6f\x7b\x53\xe9\x07\x89\x77\x59\xca\x0f\xfd\x06\xf3\xe6\x28\x85\x23\xe7\xd1\x2e\x9e\x51\xa9\x1c\x8b\x78\x47\x90\x13\x64\x70\x35\x77\xd5\xbe\x5d\xe1\x37\xbe\x6a\xe1\x96\x2f\x5b\xce\xd5\xc9\x58\xed\x6f\x7f\x72\xb8\xd4\xce\x24\x1d\xcd\xf8\x3a\x80\x94\x45\xf0\xa1\xc6\xb8\x30\x15\xa4\x47\x6f\x3c\x89\x91\xc7\x3c\x6d\x0f\x0b\x50\xb6\x87\xd2\x5a\x44\x08\x9b\x96\x5b\xd9\x1b\x29\x80\x47\x15\x91\x9e\xcf\xbf\x3a\xd5\xbf\x38\xb4\x89\x6f\xdf\x02\x69\x47\x32\x00\xc9\xd9\xc3\x61\x53\x8b\x03\xe1\x53\xbe\x58\x02\xd0\xf8\x77\xd1\x57\x13\xb0\x08\x55\x76\xe6\xb2\x5f\xbe\x32\x6e\x33\x70\x46\x70\xff\x9d\x04\x50\x5f\xf9\xbc\xbb\xfd\xf1\xd1\x6c\x65\x42\x16\xd6\xe2\x04\x27\x99\x23\x67\x7c\x01\x1b\x86\xad\xfa\x9d\xfc\x47\x03\x1b\xf0\x32\x62\x22\xc3\x20\x62\x9c\x84\x94\x3d\x70\x3e\x4f\x40\xc9\xdb\xff\xda\xbf\xd4\x10\x7a\xe5\xad\xb4\x4a\x73\xcf\x93\x3c\xa5\x59\x84\x05\xa4\x37\xdb\xfc\x1a\x11\x7d\x48\x4b\x59\x52\x7a\x26\xf9\x04\xf2\x5a\x21\x10\xd6\x5f\x9b\xe5\xba\x31\xce\xee\x21\x94\xb8\x0d\x3c\x0e\x28\x62\x12\xc2\xe5\x3b\xbd\xef\xcd\xa9\x60\x47\x2b\xb4\xca\x08\x2f\x86\xf3\xcd\x78\x4e\x5e\xc2\x7a\x4b\x32\xf5\x6a\x57\x26\xf4\x97\x77\x57\xca\x02\x5f\x9a\xee\x0d\x92\x91\x8a\xbf\xd2\x37\xf0\xb6\xab\x38\x65\x19\xa7\x22\xe8\xb2\x75\xe4\x0c\xbb\xdf\xf8\x14\xba\xdd\xb4\xd3\x34\xbc\xe8\x44\xed\xf3\xc8\xe9\x90\x38\xd4\x63\x25\xc8\x8a\x9c\xa3\x13\x59\x09\xb6\xec\x76\x5b\x2c\xe6\xf6\xcd\xf4\xf6\x91\x4f\x87\x4a\xaa\xda\x8f\xd7\x95\x99\xad\xa4\xf8\xff\x06\x17\xe0\x68\xbc\xe2\x84\x67\x87\x5f\xb2\x17\x38\xa3\x29\xee\x36\x8a\x32\x6b\x44\x6f\xd7\x3c\xbb\x72\x27\x83\xbd\xc4\x21\xa7\x72\x3a\x40\x2c\x93\xbb\x5a\x9e\xeb\x72\x4d\xd7\x82\x93\x99\xca\xb9\x50\xa7\xc1\xf4\x78\xb0\x96\xe7\x0f\x88\x38\x58\xa7\x0d\xf9\x5d\xb8\x32\x35\x82\xdf\x6f\x34\xa3\xc5\xef\x3d\xdf\xaa\x86\x30\xa1\xc0\xc0\x7c\xcc\x37\xd5\x95\xac\x09\x6d\xb7\xfd\x2e\x49\x6a\x94\x45\x81\x4d\x9e\xc7\x88\x60\xa3\x8b\x16\x24\x26\x35\xb4\x1e\xa9\x2d\x04\xdc\x42\xfa\x1e\xc4\xa8\x20\x77\x2d\xe4\xa6\x85\xe6\x22\x91\x0b\x9f\x21\xc5\xb8\x4f\x24\x36\xb6\xa9\xa8\xa2\x23\xd6\x62\xc9\xa4\x3c\xb9\xbe\xeb\x53\x68\x88\x26\x23\xb7\x77\xd5\x09\x85\x74\x2a\x12\x1d\x3b\x9a\x0e\xc7\xcf\x8a\x3c\x5b\x06\xb9\x97\x63\x63\x6d\xbb\xe7\xdc\x0c\xec\x22\xe2\x4c\x38\x78\x7b\x00\x99\x9a\x61\xb9\xa7\xd3\x83\x0b\x77\x44\x35\x69\x17\x93\xf6\x26\x99\x9d\x48\x4a\xe5\x84\x3b\x88\x57\x45\x9a\x0d\x35\x1d\xb9\xa5\x98\x8a\xc2\xe7\x2c\x7f\x47\x37\xca\xa7\x1a\x83\x7b\xd1\x64\x9a\xb6\xf4\x44\x13\xb3\x01\x6f\x53\x0f\x61\xcc\xf4\xe4\x97\xce\xc3\x73\xc9\x1d\x15\xe2\x91\x80\x24\x88\xeb\x02\x22\x3c\xe9\x5e\xe1\x9d\xbe\xd3\x28\x2e\x95\x18\x34\xb1\x90\x64\x1d\xe5\xb8\x08\xb7\x48\x3a\xf2\x2d\x3e\x13\x6b\x18\x92\x7f\xb3\xb2\xe5\x2b\x7e\xa6\xb0\x2a\x57\x04\xa9\xe4\x0f\x6c\x3a\xe3\x4b\x2a\xf0\x4d\xab\xd4\x21\xa6\x8d\x24\x9b\x91\xe4\x58\xfb\xec\x17\x6f\x54\xe4\x7b\xe8\x3f\xf7\x4a\x45\xd6\xf7\xe2\x6f\x77\x66\x1d\x4c\xb7\x11\x20\xf2\xbc\x1b\xe1\xf3\xa1\x04\x1c\x07\x1d\x4a\x51\xfd\x3b\x3c\x50\xf5\x08\xd1\x24\xb3\x1d\x97\x9d\xae\x3b\x3c\x49\x5a\x2f\x77\x24\x8d\xcf\xfc\xdf\xec\x49\xd2\xdc\x5c\xc1\xa1\xb4\x13\x89\xd5\x4c\xd6\xe6\x00\x2a\xa2\x5c\x3a\xc9\x16\x3d\x4a\x97\x74\x28\xc3\xc3\x21\xc7\xcc\x88\x0a\x8d\x75\xe4\xf1\xcd\x41\x66\x71\xbf\x50\xe7\xee\xbb\x84\xd3\x69\xff\xcd\x97\x0a\x0f\x78\x06\xee\xbe\x5d\x38\x1e\x35\x48\xd9\xcc\x15\xc3\x5f\x98\x6b\x20\x80\x33\xa9\xab\xfe\x9d\xf7\x0e\xe7\x2c\xeb\xd1\x42\x10\x6c\xec\x7f\x6f\xd7\xba\xad\xf8\xe0\x47\x47\x25\x9f\xfe\x80\xc0\x7e\xf6\x39\x96\x88\x4a\xe0\xd1\x4d\xf7\xe1\xfd\x7b\xca\x30\x44\x86\xd8\x2c\x63\x4e\xa0\xbc\xc0\xd3\x57\x62\x21\x18\x9e\x5e\x1d\x4c\xa0\xf0\x81\x23\x44\xe6\x0b\x92\xfa\xa8\x3e\xe9\x25\xbd\x7b\xe9\xbf\xa9\x1b\xe4\x25\xb3\xb2\xf8\x19\xc9\x1d\xac\xa9\x97\x67\x9b\xa1\x66\x61\xdc\x17\x88\xf6\xe8\xef\xce\xc4\xef\x24\xb9\x70\x94\x5b\x95\x7c\x53\xee\xea\xc3\x97\x88\xd9\x4b\xfe\x3c\x9f\x8c\x78\x92\x86\xc7\xe7\x95\x20\x26\xcc\xd9\x59\x54\x3e\xe3\x00\x24\x71\xcb\xa8\xa4\xff\xbb\x49\x27\xc8\x1f\x1d\xd9\x37\xee\x1a\x73\x72\x30\xb0\xef\x05\x32\x6e\x2d\x91\xb3\xdb\x74\x8f\x9c\xf5\x5f\x65\xc4\x62\x24\xf7\xdf\x20\x6e\xe9\x7d\xf2\xe5\x51\x48\x69\xf1\x82\xce\xc6\xd0\x99\x19\xa0\xe4\xfe\x5b\x60\x64\xe1\x5a\xb3\xe5\xd0\x4d\xb9\xef\x33\x79\xc3\x87\xb6\xb2\x59\xf8\x16\x59\x08\x9f\xf6\x7b\xc2\x86\x65\x33\x07\x35\xed\xd8\xdf\xcd\xdd\x98\xbd\x79\xcf\xd7\x28\x2d\x77\xcb\xa1\x4c\x59\xdf\x0f\x39\x88\x86\x51\x7b\xc9\xde\x46\x58\x3b\x05\xb3\x74\xbe\x5c\x18\x95\xe4\xd6\x1f\x8d\x6a\x92\x0b\x76\x0a\x3b\x87\x94\xd1\xd8\x62\xbf\x8f\x39\x54\x8d\xdd\x59\x77\x8c\xd3\x5b\x53\xba\x47\x6c\x4d\x6d\xe5\x6d\x95\xc4\xdb\x96\x0c\xdb\x5f\xd4\x4a\xbb\x0f\x0e\xee\x72\x2c\x2a\xc1\xf6\x7c\x88\x81\x4b\x39\x9f\x1a\x37\x11\x6a\x70\x8c\x9c\x24\xd3\x13\xd4\xf4\x6d\x8f\x6b\xee\x23\x6a\x71\x80\x54\x44\x07\x81\x07\x3f\x18\x61\x10\x2b\xe9\xfd\xbb\x31\x7d\x91\x61\x7a\xa1\x54\x4e\xb2\x1b\x4b\x8a\x7f\x95\x40\x20\x15\xfc\x75\x7b\xc8\xab\x19\xcf\xca\xdb\x85\x81\x8c\xc5\x3e\x25\x25\x91\xbe\xbe\x0c\xae\xd4\xbc\x46\xd2\xf0\x1c\x9b\x38\x0c\xec\xd7\xd5\xe6\xdb\xca\xb3\x85\x43\xe2\x44\x40\x89\x9d\x1c\x53\xe1\x98\x65\xf2\xc8\x95\xcf\x4a\x98\x2d\xdc\x62\x6e\x34\x49\x1c\xa8\x8a\xb0\x60\x4d\x92\xa9\x42\xf9\x54\x2e\x37\x24\xe4\x63\xbc\x9b\x4e\xa2\x14\xcd\x89\x75\x6c\x92\xd0\x80\x33\xbf\xe8\x1e\x50\x52\x14\xf6\xc4\xef\x94\x30\xa6\xaf\xd2\xdc\x41\x74\x7c\x1f\x23\xca\x33\x1d\x4d\xff\x41\xa3\x91\x77\x41\xd3\xd1\xbc\xcc\x46\x53\xf3\x68\xc6\x44\xe6\x03\x86\xa5\x6f\xc3\x7c\xf8\xb0\xca\x28\xe6\x1c\xcd\x1e\x9e\x99\xa1\x3d\x4c\x47\x66\x23\x8d\x99\x25\x2f\x1f\x3c\xf4\xc3\x59\x1c\xa7\x7b\x3b\x1c\x9d\xe4\x1d\xc5\x78\x7c\xb2\xf8\xad\x49\x5d\x75\x92\x72\x80\x51\xe0\xc6\xb1\xd9\x86\xf4\x59\xb5\x3d\xf9\x20\xa4\xc9\x1d\xe0\xf4\x91\x80\x9e\x5f\x0d\x2a\x13\x52\x9b\xde\x54\xce\xb2\xb1\xc2\x8a\xf5\xa8\xcd\x13\x80\x7e\xcb\x2b\xf6\xdd\x2f\xbd\x01\x8b\x00\x0c\x17\x32\x0d\xbb\xfc\xf1\xd0\x69\xce\xc5\x3b\x33\x62\x0e\xfd\x95\xe4\x17\x65\x35\xe8\x28\xc9\x36\xca\x75\x25\x10\x75\x24\xe4\xe3\x1a\xaf\x44\x2b\x5d\x60\x5a\x3b\x76\x1c\xe6\x26\x07\xe4\x86\x6f\xd0\xe7\xf2\xa5\xfc\xf4\xc6\x4b\x58\xc4\x96\x47\xe1\x36\x4c\x7a\x0d\x86\xcd\xab\x61\xe6\x6c\x0b\x86\x99\x46\x76\xac\xb7\x18\xa7\x10\x2c\xcd\x7b\xa5\x30\x89\x2b\x4d\xda\xb8\xc1\xf8\xd8\x00\x3d\xd0\x68\xf9\x07\xb8\xaf\x0e\x0a\xe3\xd6\x29\xcc\xf6\xbc\x82\xf3\x97\xd6\x7c\xfa\x04\x23\x27\xe7\xf5\x49\xa2\x91\x1c\xac\x44\x72\xb0\x34\x09\x6b\xfc\x98\x5b\x7d\xd2\x12\xef\x43\xd2\x54\x49\x59\xd9\x88\x89\x27\xcd\xc9\x0d\x6c\x3e\x4f\xe9\x77\x8b\xeb\x1c\x75\xde\xc8\x4c\x9f\x72\xd4\xb3\x4f\xfc\xc8\xe9\x64\x6c\xc9\xdd\xa1\xfc\x7b\x9a\xbb\x28\x2d\x71\x21\x6d\x6a\x3e\x2c\x79\xa3\x26\xfd\xc6\x76\xb7\x51\x7f\x84\xa6\x6a\xab\xa9\x86\xf8\x7e\x48\x5a\x98\xea\x18\xe9\xf7\x18\x3f\x9b\x7e\x95\xfb\xb2\xe9\x17\x62\xba\xf6\xd2\x88\xdb\x37\x1b\x9c\x98\xa4\xe6\x40\x93\x94\x36\x9a\x47\x38\xc1\x21\x6d\x5b\x66\x67\x33\x7b\x31\x37\x33\x9d\x05\x85\x73\x1e\x58\x9e\x1f\xd2\xc7\x86\xe6\x41\xba\xa1\x09\x4f\x4e\xa6\x10\x08\x62\x6f\x56\x9a\xf0\xa9\xe5\x7c\x14\x12\xd1\x5e\x9c\xe1\x75\x02\xab\xb1\xdb\x66\xd3\xee\x6b\x7d\xf6\xf4\x8e\xba\x49\x26\x20\x6c\x71\xdf\x44\x92\x2d\x0a\xd7\x78\xd9\x51\x1e\x42\x92\xc7\xf1\x7a\xb1\x7d\x65\xf0\x55\xc3\x3e\x7d\x13\x35\x5f\x17\x9c\x6b\xc1\x56\xa9\x1b\x8a\x60\x01\xea\x3e\xac\x99\x74\xb8\xb3\xcd\x8c\xc6\x3a\x89\x2d\x9c\x74\xc2\xd6\x4e\xdc\x3c\xaf\xae\x6d\x36\x4a\x51\x56\x63\x00\xd3\x98\x7b\xfd\x52\x5b\x23\xcc\xde\xd9\xd6\x87\x63\x18\x4f\xb1\x6d\x37\xfa\xa6\x94\x84\x3b\x12\xa7\xb5\x92\x5f\xac\x46\xcc\x4d\x73\xd7\x40\xd3\xea\x61\x80\x27\x3e\xba\x7d\x44\x7b\xcc\xb8\x69\x09\x1c\x9a\x37\xeb\xc4\x3e\x88\x10\xdc\x34\x9b\x15\x3f\x06\xe6\xae\xd8\x9f\xfe\xca\x5a\xf5\x91\x14\xf1\x65\xda\x8f\x17\x54\xfc\x58\xee\xef\x57\xef\x2d\x3b\x8a\xdd\xc7\xc5\x27\x78\x3a\x53\x1f\x2b\x4b\x72\x03\xca\x4b\x07\xf6\x7b\xb3\x0b\x74\xd8\x45\x11\x94\x14\x57\xf7\xe9\xdd\x83\x98\xd9\x3a\x23\x32\xac\xab\xd0\x59\x95\xcc\x0e\xaf\x42\xd2\x7a\x12\xf8\x91\xcd\x33\xec\xa0\x10\x72\x92\x91\x95\x99\x3d\xf0\x09\x82\xfa\x9c\x13\x65\x5e\x03\x5d\xda\x34\x87\xca\x28\xa3\xea\x26\x26\xb3\xe5\x77\x71\xd4\x2c\x78\x08\x0d\xe9\x40\x63\x60\xd8\xe1\xf1\xd9\x62\xde\x62\x33\xc2\xd2\x64\xaf\x66\x1c\x55\x5e\xfe\x1c\xf6\x3d\x49\x3b\xcb\xf0\xbe\xe7\x8b\x6a\xcb\x16\x98\x84\x30\x0d\x1d\x3c\xd2\xab\x6d\xdb\x91\xfc\x48\xa2\xcf\xf2\x4b\xff\x9b\xe3\xd0\xfd\xca\xcd\x81\xb3\xef\xe4\x66\x35\x70\xae\x87\xaf\x45\x92\x25\x49\x15\x03\x0d\x29\x61\x63\x2d\xd6\x31\x7d\x1d\x18\xb2\x37\xec\xe2\x78\xcd\xaa\x67\x56\x13\x45\x65\x26\x1b\x68\xad\x76\xdd\x43\x30\x2b\x97\x01\xf6\x6c\xdd\x57\x39\xe8\xbe\xe5\xd4\x47\xab\x9a\x10\x3b\xec\x57\x98\xba\x5b\x9e\xfe\xdb\xcf\x1a\xbe\x85\xab\x63\xd8\x7f\xc5\x39\xdc\x7c\x55\x97\x1f\xd0\xd1\xe8\xf2\xda\x3c\xae\x78\xa5\xc1\x8f\x61\xa6\x3e\xee\x7a\xe6\x75\x5f\x54\x6b\xdb\xfd\x42\x65\x8f\xd6\x2b\x6b\xf6\x09\x52\x19\x91\xe0\x6a\xcf\xe9\x7b\x0a\xcf\x70\x07\x31\x83\x90\x23\x02\x98\xc1\x50\x5a\xaf\x2a\x6b\x9b\xd4\x31\x5a\x87\xa4\x68\x77\xb8\x0e\x07\xc1\x4c\x6b\x91\x66\xf2\xb5\x6b\x0f\xd5\x52\x07\x61\x39\xad\x27\xb8\x99\x19\x63\xbb\xfe\xde\x6e\x88\x79\x9d\xd1\xcf\x5e\x22\x56\xc7\x38\x58\xb7\x6d\x0f\x75\x69\x0f\x69\x73\xf3\x26\xdf\x8b\xe7\x15\xdc\xd9\x9f\x7b\x90\x91\xb0\x49\xd0\x77\x21\x4f\x2a\x4f\xb1\xb7\x43\xca\x27\xea\xad\x1b\x36\xa4\xcd\x12\xa3\xc9\xba\x3c\x41\x01\xb4\x5c\x59\xe5\x0b\x82\xbd\xb3\x72\xe8\x7a\xa6\xa2\x76\x9e\x6f\xd0\x8d\xd9\x5c\xd9\x0f\xed\xfe\x18\xc0\x77\x57\x3f\x34\x00\xae\x3a\x37\x02\xc9\x7d\x0e\x5f\xc4\x7a\xd8\xbc\xb1\x3d\xee\x8b\x5c\xad\x38\x28\x22\x36\xa6\x09\xe4\xb9\x3a\xeb\x7f\x9f\x33\x6c\xf1\x9c\x60\x8b\xd7\x80\xcd\xd8\xe2\x86\x56\x02\x36\x87\xde\xa4\x6b\x81\x2f\x5e\xf0\x3f\xd6\xb6\xb2\xa1\xb4\x24\x2c\x75\x2b\xd5\x36\xf4\xcc\x42\x76\x0b\x6d\x9c\x71\x3e\x56\x7f\x6e\x85\xac\x7a\xe5\x69\xba\xb2\xd0\x8a\x84\x3d\x6f\x6e\x36\xb5\x8d\x79\x02\x5e\xd9\x4d\xb5\xa9\xf9\xa5\x6c\x1e\x4b\x5a\x89\x73\xa3\x52\x25\x26\xb1\xcf\xac\x63\x75\xa5\xf0\x79\x52\xbf\xb1\xef\xa7\x55\x84\x10\xfa\x3a\xe7\x86\x56\xb0\x50\x2a\x78\x10\x74\x6f\x70\xe4\xee\x84\xf5\x23\x11\x50\x3f\x02\xa9\x32\x01\xd6\xde\x85\x3e\x9d\xe8\xc3\xa7\x7a\x5b\x04\x90\xaa\xee\xca\xad\x03\xcd\x55\x4a\x5b\xd2\xd6\x89\x6a\xec\xd3\x95\xea\xbb\x66\x6d\xf2\x3e\xae\x54\xbe\xfb\xad\x4b\x85\xf1\x72\xbb\xff\xe0\x85\xce\x52\x42\x55\xcb\xd0\x5a\x72\xe9\x3e\x5a\x70\xa5\x28\x79\x7a\xd3\x7f\xd2\x3c\x21\x9a\x20\xc4\x7f\xcd\xee\x86\x6b\xb3\x2c\x86\x4b\xa4\x16\x47\x69\xcd\xe4\x95\x13\x48\x4e\x87\x26\x3e\xcb\xac\x32\xeb\x4d\xf9\x4b\xc1\x59\x7d\xa6\xff\x80\x09\x48\x3d\xf4\x8a\x80\xbe\x20\x10\xde\x7e\xbd\xf3\x29\x81\x38\xa3\x80\x64\x0d\xca\xc8\x10\x5c\xb9\x55\x44\x69\x92\x0d\x53\x93\xa7\x33\x8e\x33\x60\x46\x73\x02\xc8\xaf\xca\x8c\xa2\xed\xe6\x16\x81\x7d\xd3\xfc\x58\xb1\x44\xd3\x1e\x6e\x41\x5c\x25\xbc\x21\xb6\x48\xb8\x45\x67\x9c\xef\x30\xce\x61\x27\x31\xf5\x9e\x07\xec\x64\x13\xbc\xcb\x43\x99\x01\xfe\xc2\xeb\x39\x70\xa7\x27\xcf\x0d\x99\x7f\xc7\xf3\x39\xd5\xa3\x3a\xb3\x2d\xa5\xfd\xfe\x3f\x7d\x43\x47\xde\xfd\x58\xf0\xdd\xa0\x0f\x3a\xac\x73\x51\x34\xd9\x61\xe4\xbf\x47\x11\x24\xfc\x6d\x64\xab\x97\xe0\x3c\xc2\x12\x1f\xc2\x0f\x26\x15\xd3\x64\xa9\xb9\x8b\x4f\xbe\x24\xe3\x91\x0f\x13\x2f\xa2\x7c\xe6\x24\x79\xd6\xf9\x34\x79\xfa\x88\x8c\x94\x21\xc8\xde\x31\x77\x83\x99\xc6\x7f\x9d\xa6\x73\x13\xab\x9c\x1e\xe9\x0f\x45\xe2\x88\x4e\x48\x0b\x48\x3c\x10\x2d\xa1\x4c\xf2\x0e\x11\x16\xad\x10\xa7\x29\x1f\x92\x64\x4b\xf2\x41\x1e\xcb\x28\xc3\x93\x1a\x65\x28\x99\x8b\x14\x4a\x26\x92\x84\xa0\x1f\x18\x2d\x83\x65\xd6\x93\x59\xb0\x49\x94\xb8\x7c\xa6\xb3\xdb\x2f\x9f\xd3\x3f\xfe\x03\xae\x17\x21\x39\x34\x8e\x9d\x7c\x59\x73\x5c\x5c\xb3\xfc\x9c\x7e\x16\xcf\x4e\x43\xbf\x3d\x67\x7c\xea\x93\xc7\x50\x24\x07\x54\x3f\x7d\x4b\x67\x5a\x27\x87\x0f\x6f\xc5\x37\x09\x12\x23\xb0\x1b\x46\xed\xbb\x76\x4d\x0b\x39\x0b\x2b\xcf\x1a\x78\xc0\xf0\xaa\x01\x43\x49\x06\xa4\xe5\x17\xf4\xa3\x13\x01\x53\xb3\xe5\x79\x80\x1d\xc8\xe7\xca\x99\xe5\x4b\x52\x9b\xca\xe2\xe2\xc8\x17\xb8\x5d\xbf\x97\xe4\xa5\xfe\x3a\xc0\x84\x43\x5c\xbc\x7c\x7d\x9e\x82\x07\xcc\x4e\x4a\x22\x8a\xb3\x22\x7d\x50\xa5\xaf\x5d\xf2\xf2\x0a\xb1\xbf\x7d\xdf\x6e\x3b\x73\x49\x04\xed\xf5\x8b\x8b\xb0\x4c\xf0\x01\x41\x21\xdc\xd8\x9c\x73\x5d\xe8\xcd\xbc\xe2\xfc\xe8\xe5\xa8\x65\x3c\xb6\x19\x1e\x69\x4e\xfa\x78\xe5\x1f\x63\xc6\x9c\x76\xb7\x3f\xf4\xec\xb8\xd7\x9d\x5c\xed\xdd\xf2\x99\x5c\x38\xd7\xc6\x22\x0b\x2e\xa6\x51\x2c\xf3\x5b\x34\xe7\x5f\xe3\x27\xd2\x98\x49\x2a\x1b\x4b\x0f\x45\x9e\x8f\x7d\xd4\x51\xf6\x72\xe8\xdd\x8f\xa2\xa4\x6d\x1e\xf0\x3c\xde\x31\xf8\x3c\xe9\x8c\xb0\xa5\x3b\x00\x57\x72\x6c\xd9\xb3\x98\x44\xd4\x7f\x40\x9d\xe8\x66\xca\xe7\x26\x7e\xc6\x60\x92\x7b\x08\xeb\xa2\xfd\xde\x8c\x72\x5c\x0b\x86\xbc\xc9\x60\xd6\x01\x01\xba\xed\x8d\x08\xa1\x82\xd9\xef\xf3\x3b\x76\xf1\x35\xaa\x0c\xe6\x1a\xd1\x7c\x1a\xf8\x79\x18\x2a\xdc\xc7\x9a\x85\x98\xd0\x20\xfd\xde\x5e\x5e\x92\x42\x62\x91\xc2\x87\xd4\x52\xa4\xa2\x3f\x93\x2f\xb1\xa6\x7f\x62\xbc\x1d\xc4\x36\xb0\x85\xac\x1e\x76\x70\x0b\xf9\x8c\xd9\x52\x4b\x2c\x2f\x9d\x5e\x37\xe8\xb3\x70\xe1\x81\x26\x68\x59\x2a\x2f\xff\xb9\xcd\xe0\x62\xf7\x07\x60\xc0\x20\xbb\x96\x5f\x1d\x4f\xb2\xec\xbe\x32\xd5\xfb\x29\x4b\xf4\xeb\x01\xa7\xc8\x66\x25\xe9\x41\xe7\xab\xb2\x34\xa5\xa1\xf2\x05\x87\xa5\xcb\x01\xd4\x16\x68\xae\x1f\x5e\x5d\x24\xd5\xd8\xfb\x06\xe4\x23\xbf\xc7\x74\xc1\xdf\x92\x49\xc1\xad\xa0\x5b\x70\x82\xa9\xa3\xfc\xa8\xbe\x62\x60\x13\x97\x65\x7d\x78\xa7\x7d\xee\xbd\x3f\xcf\xc4\x8c\x1e\xab\x24\xdc\x31\x7e\x4c\x18\x51\xfc\x98\x30\xd6\xf8\x31\x1b\x64\x5a\xe0\x5c\x9d\xac\xe1\xc5\xc5\x8b\xb9\x42\x1f\x20\xf2\x89\x91\xcb\x77\x8c\xbe\x8f\x90\xd0\x65\x4b\x42\xc7\x47\x9f\xa6\x75\x52\x64\x8f\xbf\xcf\xb7\xe3\xfe\x84\x67\xaf\x7e\x9b\x34\xe3\x89\xf4\xdd\x27\x92\x08\x76\xb2\x22\xfa\x8c\x7e\xf6\x0c\x0f\x69\x47\x08\x2d\xb0\x4a\xb7\xd2\xc7\xf4\xfd\x43\x47\xe3\xb3\xe2\x29\x7d\x7a\x52\x3c\xad\x8f\xe3\xc3\x7d\x13\x7d\x24\x5e\xb4\x6f\x62\x9c\x7d\xdb\x84\x8b\x27\x9f\xcb\xab\xe5\xa5\xd5\xba\xe9\x40\x25\xc5\x99\x4f\x79\xc6\x31\xfb\x61\x98\x27\xf2\x5e\x93\x5e\xf2\x16\xfc\x7c\x63\xe3\xc9\xf4\x8f\x97\x23\xcf\xcd\x69\xf6\xa4\x1c\x1b\xfa\xba\xce\x26\xab\xeb\x1f\x1b\x63\xeb\xc7\xe4\x79\x32\xb1\x75\x94\xf1\xd9\x2f\x4f\x91\xe4\x6a\x24\x2e\x5d\xac\x6a\x76\x50\xe8\x53\xf6\xc7\x2d\x9b\xf4\xae\xa3\xaf\x76\x31\x7a\x33\x3c\xa9\x93\xbc\x59\x6e\x35\x57\xf1\x4c\x7d\x7f\xf3\xf7\xc0\x3a\xdb\xfc\x56\xa2\x56\x22\x54\x0d\xd4\x8d\x6d\xb6\x90\x2c\x0c\x49\xad\x57\xcc\x2b\xe8\xbc\x27\x87\x4c\x6e\x2c\xb2\xbe\x4f\xe4\x6f\x94\x10\x5e\xee\x30\xc6\xe5\x7c\x53\xed\x21\x42\xe8\xb3\xa8\xcb\x73\x3c\x70\x02\xbc\xeb\x35\x60\x16\x21\x92\x15\x38\xcc\x2b\xa6\x8b\xa0\xf0\x73\xb2\x6c\x0e\xe1\x77\x20\x1d\x91\x36\xdb\x7d\xcf\x4f\x5e\x9c\x8d\x81\xa7\x67\x5c\x0b\xa6\x14\x41\x0b\xe6\x09\x80\xf8\xe3\x0e\x1e\x33\x76\xcd\x8d\x80\xef\x98\x89\xec\xb4\xc3\xa8\x11\xc3\x5c\x06\x4c\x82\xc7\xbe\xe7\x18\x24\xfa\xc9\xa9\x20\x0e\x00\xce\xa7\xf6\x9f\x83\xa4\x3f\x90\x65\xa8\xb1\xef\x66\xfb\x75\x56\x02\x54\x0e\x0c\x13\xaf\xb7\x39\x97\x72\x30\x5f\x81\xf4\x64\x92\x02\x38\x19\x7a\x7b\x6d\x4b\x49\xef\x37\x06\xf6\x40\x87\x71\xea\x6b\xc7\x51\xd3\x1e\xaf\x6c\x2e\x4f\x1c\xf3\xb7\xf1\x49\xc6\x61\x13\xe8\xe4\x1c\xab\x11\x74\x54\x63\xbb\x09\x18\x13\x8b\xdb\x6b\xbb\x13\x56\x96\xe0\x4f\xac\x5e\xa3\x69\xd6\xd5\xa5\x1d\x55\xf9\xa6\x2a\xcd\xdc\x64\xaf\xf0\xbe\x7d\x76\x2b\x5b\x1f\xb9\xcf\x67\x76\xb0\xc5\xc9\x3c\xf7\x15\x1b\x68\x0f\xaf\x8d\x4f\x49\x39\x82\x57\x7e\xb1\x0c\x72\x3c\xe6\x09\xd0\xc6\x4d\x28\xbc\x7f\x17\x96\xcf\x98\x50\xb6\xe4\x59\xc5\x28\x3e\x1c\xdc\xc6\xa9\xac\x00\xc0\x44\x02\x6a\xa5\x30\x44\xa4\x2c\x36\x1d\x31\x85\xd7\xea\xe6\x3f\xa6\x3f\x62\x51\x72\x84\xfd\x27\x47\xfb\xb4\x1c\x48\x06\x06\x24\xf4\x17\xc4\x8a\x04\xf8\x2c\x8b\xeb\x37\xf6\x7d\x2c\x0a\x29\x60\x13\x0b\x6c\x2c\xb5\xec\xd0\x1f\xb9\x66\x12\xeb\x67\xda\x0e\xbf\x0a\x87\x0d\x2e\x91\x1b\xf0\x6e\xa4\x32\x9d\x07\x9c\xc9\x8b\xe7\xa7\x40\x68\x04\x01\xe2\x17\x2c\x69\xaf\xdd\xfe\xb4\xa9\xda\xf9\xb1\xc4\xdd\x90\x76\x11\x02\x7e\x7c\x40\x8d\xfc\xb9\x42\xd6\x8e\x34\x06\xe8\x74\x14\x03\xe4\x6b\x25\x72\x52\xfa\x69\xf5\xeb\x65\x2e\x6a\xfa\xc2\xe9\x54\x7c\x49\xbb\x5f\x9e\xed\x17\x29\x24\xab\x1d\x41\xbf\xba\xae\x24\xbc\xd6\xe9\xa0\x92\x38\xc2\xe9\x33\x78\xdf\x82\xad\xb6\x88\xb7\x4a\xdf\x39\xc9\x13\x4a\xb1\xd1\x36\xbf\x02\x58\x3c\xd0\xd4\xc0\x72\x71\x52\x6a\x21\xfc\xcd\x96\x93\x07\xe6\x1e\xbb\x6e\xf3\xf8\x41\x9a\xd1\x55\xf3\x45\x28\x80\x4f\xf7\xfa\x5b\x9f\x6e\x58\x47\x22\xb9\x6b\x3f\x96\xc8\x1c\x44\x71\x20\x37\x64\xde\xb2\x18\x8e\xa4\x71\xf7\x77\xa1\xfd\x8f\x65\x5c\x31\x01\xee\xc7\x12\xc9\xc3\x6f\xda\xad\x3b\x3c\x07\x11\x5a\xfd\xb0\xe6\x42\xb6\xa4\x29\x7a\xd2\xdc\x48\x08\x1e\xe4\x5c\x0f\x40\x4f\x92\x08\x24\xc3\x9d\x47\x1d\xa7\x8e\xe8\xcd\x76\xf9\x05\x2d\x10\x6e\x4d\xb4\x12\x40\xd8\xc8\x85\xce\xbb\x31\x38\x6a\x76\x8a\x43\xcd\xfc\xf9\x9b\x95\x7f\x64\x80\xdf\x27\x90\xd4\x9f\x9e\x64\x38\xa2\xad\xc5\x6f\xe2\xe3\x02\xb4\x1d\xfa\xb6\xad\x69\x33\x98\x6d\xbb\x34\x3d\xa9\xaa\x78\x0d\x01\x8f\x83\x20\x2a\x5e\xb3\xde\x32\x2b\x34\x12\x18\xcf\x9f\xe5\xd7\x5f\xbb\xe5\xaf\x39\xfe\xa9\xd1\x14\x9c\xbf\xde\xd1\x07\x12\xb7\x61\xba\xe1\xbf\xaf\xe8\x6f\x3c\x75\x23\x7f\x95\xf4\x57\x59\xe9\x1f\x6f\xb9\x2e\x0c\x7d\x5a\x95\xc8\x13\x55\xbe\xfd\x8b\x93\xbf\x6f\xe8\x2f\xd3\x48\x3b\x0e\x0f\xc0\x95\x9c\x7d\x56\xbb\x73\x9a\xf2\x93\xba\x92\xac\xb4\xd2\xab\x7c\xbe\x6a\x87\x8e\x3f\xf2\x93\x93\xfc\xa9\x34\x37\xfc\x05\xef\xdb\xf1\x87\xb7\xd6\xbe\xd1\x06\x31\x06\x6d\x8f\x54\xf2\x2b\x69\xce\x02\x51\xf8\x76\x63\x8d\x34\x66\x1a\x6d\xbe\x33\x6f\x57\x7e\x44\x7e\x38\xf2\xd5\x8f\x47\x07\xc3\xe8\x2d\xbb\x76\x8f\xd4\x7e\xdf\xc5\x77\x83\xfc\xf3\x0c\x47\x1d\x0d\x0f\x01\xc9\xc8\x2d\x83\x2c\xe1\xe1\xc2\x37\xfd\x94\x4b\xbf\x35\xbf\xb3\xc9\x4b\xef\x53\xce\xf3\xed\x06\x84\x61\xf9\xb4\x9d\x55\xb3\x1f\x54\x49\x1c\xbf\xe5\x22\xe9\x96\xd2\x3c\x44\xe8\xaf\x27\x9a\xb4\xd0\x57\x2b\x68\xf5\x57\x6b\x62\x2e\x67\x08\x2a\x17\xf9\x35\xc6\xa8\x7c\xf2\x0f\xff\x00\x20\x57\xbd\xb7\xff\xf8\x8f\xc5\xcb\xcf\x3f\x85\x19\x03\x91\xb3\x6d\x51\x57\xc8\x24\x45\xeb\xf5\x03\x62\x18\x01\xb9\x33\xef\xbe\xc8\x80\xf9\x02\x2c\x07\x9a\xb2\x23\x21\x04\x9a\xfe\xdf\x00\x00\x00\xff\xff\x15\x4f\x66\xc7\x49\xa0\x00\x00") func confLocaleLocale_ptBrIniBytes() ([]byte, error) { return bindataRead( @@ -947,12 +947,12 @@ func confLocaleLocale_ptBrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 36560, mode: os.FileMode(493), modTime: time.Unix(1438257711, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 41033, mode: os.FileMode(493), modTime: time.Unix(1439758816, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_ruRuIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xdc\x7d\x5b\x8f\x1b\xd7\x99\xe0\x7b\x03\xfd\x1f\x8e\xbd\xd0\xda\x06\x24\x0a\x8e\xb1\x8b\x85\x57\x2d\xaf\x7c\x89\xed\x85\x6c\x6b\xd5\x32\xe6\xc1\x30\x98\x6a\xb2\xba\xbb\x46\x24\x8b\xa9\x2a\x76\xbb\xf3\x24\xb5\xe2\xd8\x59\x79\xa4\x44\xe3\x6c\xb2\x1e\x4b\x8a\xec\x9d\xc9\x02\x41\xb0\x54\x4b\x94\xa8\x56\x37\x05\xf8\x17\x90\x7f\x61\x7e\xc9\x7e\xb7\x73\xab\x3a\x45\x52\x71\x66\x1f\xf6\xc1\x56\xb3\xce\xfd\x9c\xef\x7c\xf7\xef\x3b\x51\xbf\xdf\x6c\xc7\x79\x6b\x6d\xfa\xfd\xf4\xe1\x74\x32\xbd\x3f\x3d\x9e\x0e\x67\x37\xd5\xec\xea\xf4\xe9\xec\xda\xf4\x11\x7c\x18\x2a\x28\x79\xca\xdf\xa0\xc2\xec\xea\x6c\x7f\x7a\x30\x1d\x41\xc5\x63\xf8\xfd\x60\x3a\x51\xef\x26\xc5\xa9\xd9\x15\xf8\xf4\x0c\x3e\x3c\x9e\x8e\xa1\xc2\x04\x7e\x8f\x67\x37\x4f\x2a\xec\x0f\xbe\x8f\xa1\xf1\x90\x9a\x60\xef\xf8\x8f\x9a\xdd\x9c\x3e\x9e\x5d\x9f\x1e\x4e\x47\xea\xdd\x74\x75\x65\x75\x65\x3b\xed\xc6\x6b\xd3\x7f\x9c\x3e\x85\x9a\x07\x5c\x73\x75\xa5\x1d\xe5\xdb\x1b\x69\x94\xb5\xd7\xa6\x77\xa9\x87\x11\xcc\xe5\x2b\x35\x3d\x82\xa1\x8e\xed\x50\xf0\xf7\x83\xe9\x70\x75\x25\xfe\xac\xdf\x49\x33\xe8\xe6\x0e\xcc\xfc\x31\x96\x41\xbf\x71\xa7\x8f\xad\x27\xd8\x68\xf6\xeb\xd9\x57\xab\x2b\x79\xb2\xd5\x6b\x26\xbd\xb5\xe9\x2d\xf8\xfa\x04\x3a\x19\xc3\xb7\xb4\x95\x44\x9d\xa6\x2d\x9a\x7d\x0e\x85\x0f\xd5\xec\x8b\xe9\x88\x56\xf7\x98\x76\x60\xf6\x2b\xf8\xff\x68\xb6\x3f\xfb\xea\x75\xf5\x93\x53\xd3\x27\x6a\xf6\x25\xcc\xeb\x81\x3a\x93\x77\xa3\x4e\xe7\x2c\x14\x1e\xc0\xca\x1e\xd1\xd4\x46\x6a\x76\x8d\x9a\xef\x4f\x8f\xe1\xaf\x1b\x0a\xa6\x24\xbb\x31\xfb\xea\xcc\x69\x6e\x21\xb3\x49\x07\x05\x8e\x79\x9d\x47\x95\x8f\x03\x98\xf8\x1f\x61\xe8\x07\xd4\x64\x1f\xa6\x31\x9c\xfd\x0a\x37\x76\x75\x25\x8b\xb7\x92\xbc\x88\xb3\xb5\xe9\xef\xe1\xe3\x15\xaf\xd2\x18\xfe\x9b\xc0\x1e\x0e\x71\x9a\xf0\x0d\xaa\xef\xc6\x1b\x79\x52\xc4\xb8\xe2\xd1\xf4\xfe\x29\x3a\x0e\x58\xf8\xea\xca\x4e\x9c\xe5\x49\x4a\x5b\x01\xcb\x84\xef\xd4\x7b\x3f\xda\x82\xba\xf7\x78\x48\xda\xe8\x5f\xe1\xf6\x16\x71\xb7\xdf\x89\xb0\x9b\xff\x0d\x9f\xef\xc3\x51\xc1\x29\xac\xae\x74\xa2\xde\xd6\x80\x5a\xfc\x1f\x3e\x53\x3c\xce\x41\x1e\x67\xbd\x08\x8f\xf4\x0f\xd3\x23\x3c\x74\x84\x0e\x38\x3b\x3c\x16\x9e\x1b\x9d\x25\x0c\x16\x77\xa3\xa4\xb3\x36\xfd\xcb\xf4\x69\x83\x6a\xcd\xbe\x80\xb2\x21\x4e\x22\xcf\x77\x53\x39\x7a\x5a\xd2\x53\x3c\xbc\x2c\x6e\x16\x7b\xfd\x98\x8f\xf4\x80\x21\x60\x75\xa5\x15\xf5\x8b\xd6\x76\xb4\xf6\x16\xff\x8b\x33\xc8\xe2\x7e\x0a\x8b\x4e\xb3\x3d\xde\xc5\x12\x78\x4e\x9f\xac\xae\xa4\xd9\x56\xd4\x4b\x7e\x11\x15\xb4\x05\x77\xe0\xf3\x03\x5e\x2f\x9e\x94\xde\xea\x6e\x92\x65\x29\x6d\x34\x02\xc2\x21\x54\x80\x75\xaf\xae\xf4\xe2\xdd\x26\x0e\xb1\x36\xbd\x4d\x13\xb9\x8e\xc0\x10\xb8\x06\x38\x0e\xd6\xed\x26\x5b\x19\xed\xdd\x6d\xd9\x00\xd8\x93\x6f\xa1\xf8\x81\x7b\xac\x58\x71\x33\xcd\x2e\xbb\x9d\x4e\x9f\xd1\xe2\x47\xd3\xc3\xd9\xbe\xc2\xa9\x05\x87\xd1\xad\x61\x49\xde\x10\x75\x8b\x8a\x7a\x70\x62\x5c\xfb\x7b\x1a\x01\x6f\xdd\x53\xba\xd8\x63\x80\xdc\x50\x3b\x28\x84\xb5\x44\xed\x6e\xd2\x6b\xf6\xa3\x5e\xdc\x29\x5d\xca\x21\x60\x8a\x23\xba\x8c\x16\x5c\x79\x76\x70\x9a\x51\xab\x95\x0e\x7a\x45\x33\x8f\x8b\x22\xe9\x6d\xe5\x38\xc9\xa1\x54\x83\x4b\x08\xfb\x3a\xc6\x1e\x0e\x71\x83\x01\xf5\x1c\x33\x0c\xcc\xa9\x8d\x47\x0c\x0b\xce\x9b\x9b\x71\x0c\x30\xf2\x4f\x38\x75\x6c\xa4\x08\x31\x1d\xc0\xb8\x57\x09\xc6\x60\xca\xfd\x41\xa7\x03\x67\xf5\xf3\x41\x9c\x17\xf9\xda\x05\xf8\xa5\x2e\xca\xaf\xd5\x95\x24\xcf\xe1\x2f\xc6\x05\xb4\xd3\xd0\xee\x3a\x76\xde\x8a\x7a\x2d\x5c\xe3\x1d\xe8\xe6\x88\x36\x66\x88\x9f\x3f\xc9\xe3\x28\x6b\x6d\x7f\x8a\x93\xc3\x3f\x18\x10\x11\xc3\x1d\x36\x1a\x8d\xa5\xc0\x0e\xef\x06\x37\xab\x5e\x88\xaf\x64\x46\x50\x4e\x6b\xbd\x4f\x87\x72\x84\x63\xb7\xd2\x36\x7c\xfe\x86\x11\x04\x4c\x24\xe9\xe5\x05\xa0\x10\x98\x89\xfc\x05\x47\x49\x8b\x1e\xca\x16\x1c\xd2\xa5\x4d\x8a\x4e\x5c\x2e\x81\x4b\x06\xbb\x75\x1d\x51\x14\xe1\x2f\xdc\x7c\x46\xf3\x30\x5f\x04\xf3\x03\x41\xee\x8c\xb2\x00\x7b\x5d\xe5\xde\x70\x17\x01\x91\x34\xdb\x1b\x42\x38\xbe\xa6\x56\xef\xa6\x5b\xb9\xa2\xd3\x01\xf4\x02\xc7\x87\x18\x12\x10\x8f\xfa\x60\x6f\xfd\xbf\x9d\x3f\xa9\x2e\xa4\x79\xb1\x95\xc5\xf0\x37\x02\xf0\x53\x18\x0d\xfe\x84\x6e\x5e\x83\xfd\x82\x9e\x64\x8a\x01\x80\x00\xfa\x83\x28\x05\x27\x47\xf4\x03\x11\x24\x37\x21\x14\xf0\x1d\xf4\xf6\xac\xae\xd6\x36\x0c\xba\x36\xfd\x67\x06\x84\x85\x9b\x5e\x83\x6d\x60\x28\x0f\x8b\xd5\x4e\x08\xc9\x0c\x0e\xc0\xfb\x41\xeb\x56\x04\x15\x06\xef\xc1\xb6\x3c\x61\xaa\xb0\x4f\xd3\xa6\xe3\xc0\xe3\x05\xec\xaa\xde\xef\xf5\xd2\xb7\xdf\x04\x12\xa3\x60\xe1\x70\xc0\x06\x89\xe3\xaf\x27\x6a\x50\x6c\xfe\xa7\xe6\x56\xdc\x8b\x33\xa0\x51\xad\x04\xb6\x2d\xcf\x3b\xcd\x2e\x01\x04\x02\x19\x10\x9c\xe9\x91\x5a\x5f\x3f\x8f\x0b\x29\x10\x26\xe1\xc8\xf6\x89\xd6\xfd\xbc\x83\xe7\xa5\xa7\x27\xdf\x61\x14\x35\xfb\x25\x12\x01\x24\xf4\xe1\x65\x39\x67\x14\x67\x59\x13\x70\x7f\xb1\xd7\x94\xee\xbc\x41\xb0\x33\xee\x01\x11\x47\xa0\x07\xbc\x92\x23\x26\xda\x8f\x10\x34\xa0\x36\x14\x53\x4b\x02\x2d\xf8\xf3\xfa\xf4\xa8\x81\x40\xad\xd7\x28\x20\x01\x74\x7c\xf6\x6b\x46\x48\xcf\xe8\x58\x86\x78\x15\x11\x46\x60\xb2\x08\x74\x80\x58\x80\x87\xf1\x09\x0d\x5d\xb3\xa7\x3c\x18\x21\xa3\x9b\xb6\x96\xd9\x88\xef\x09\x93\x6b\x42\x0d\x53\x7f\x08\xfd\x5e\xc5\x29\x1d\xd3\x4a\x0e\x04\xf7\x41\x19\xc2\xc9\x97\x88\x49\x98\x3c\xe1\xe0\x37\x91\x82\xce\x6e\xc0\xdc\xe8\xf3\x24\x80\x2c\xc7\x2f\x30\x2e\xa8\xec\x15\xd5\x3e\x46\x8e\xaa\x06\x8d\x9b\x56\x66\xb2\xb7\x90\xe9\x00\x6e\x82\x36\x97\x91\xb4\xdc\xde\x10\xc1\x19\x23\x4b\xa6\xe8\x1e\x3e\xc4\x51\x99\x71\xf9\x5c\x68\x39\xa2\x49\x38\xe8\x03\x35\xfb\x07\x6c\x81\xd3\x67\x68\x23\x02\xa3\xbb\x40\x44\x36\x00\x0e\x64\xfe\xa5\xd1\x55\xec\xae\xd6\xd2\x79\x45\x0c\xe6\x53\x3e\x13\x07\x00\x1e\xf2\xfd\x84\xb9\x3e\x23\x38\x42\x80\xd8\xc7\xab\x7f\x68\xb7\xea\x46\xcd\x56\x29\xa9\xe7\xe0\x28\x00\x66\x04\x0b\xc4\x2b\x29\xf0\x15\x3d\xbc\x90\x13\x46\xdf\xfa\x93\xdd\x55\xba\x7b\x37\x19\x22\x91\x27\xfd\xf8\xe2\xf9\x53\x48\xc5\x70\x34\x3c\x60\x83\x13\x0f\x99\xd5\xb1\x9c\x15\x83\x15\x2d\x16\x6e\xdd\x7b\x30\xdc\x76\x51\xf4\x9b\xfd\x34\x2b\x68\xbb\x00\x44\xf6\xd5\x7b\x97\x2e\x5d\x70\x0a\xcc\xb8\xb7\x79\x46\xb3\x2b\x0c\x4f\x57\x10\x11\x9c\xe4\xd5\xd2\xd2\x2c\xd5\xf7\xc0\x18\x41\x91\xce\x94\x26\xcc\x2c\x3a\x62\x6f\xdc\xc7\x06\x43\xf8\x20\xeb\xac\xc1\x22\xe6\xdc\x01\xa8\x61\xe6\xf1\x17\x1a\x6e\xbf\x72\xb5\x14\x71\x02\xe5\x9d\x59\x6e\x33\x70\xcd\xa7\xf1\x7f\xeb\x74\x38\xd8\xd6\xdf\x51\x84\x3b\x02\xe1\x43\xc1\xf4\x2c\x48\x3c\xb1\xac\xdf\x88\x10\x41\xda\x47\xa6\xcc\x62\x82\x3f\x12\x71\xf8\x52\x20\x55\xc3\x3f\xc9\x09\x25\xb6\x80\xf8\xc9\x7a\x9a\x62\x65\x1b\xb8\x06\x0b\xe6\x82\x8c\x40\xde\x85\xf3\x63\x5a\xf2\x3d\x62\xb8\xe9\x53\xb5\xfe\x01\x1e\x2c\x15\x6c\x66\x69\x17\x31\xcf\x63\xe7\xb7\x45\xb6\x9a\x99\x55\xbc\xcf\xce\x46\x9c\x54\x17\x7f\xfa\x96\xfa\x0f\xaf\xfd\xe4\x27\xc0\xf4\xd2\x41\x04\xf1\x23\xad\xc5\x69\xa8\xc9\x27\xe0\x6e\xbc\x03\x47\x78\xfa\xea\x45\xc6\x7c\x2f\xaa\x33\x54\xfd\xbf\xc4\x9f\x45\xc0\xa7\xc7\x8d\x56\xda\x3d\xdb\x40\x56\x2f\xe9\xc0\x15\xe5\xab\xfc\x97\xca\x7a\x87\x72\x74\xce\x4c\x0d\x3f\x38\xb6\x5c\xba\xf4\x12\x24\x93\xb5\x8d\xb4\x94\xd2\x6c\xa5\xbd\xcd\x24\xeb\xe2\x9d\x03\xf0\x01\xc4\xf9\x05\x56\x23\x02\x80\xd4\x8e\x65\x4a\x68\xff\x08\xa1\x5b\x80\xbd\x24\xd5\x08\x56\xe5\x99\x34\x7b\x69\x91\x6c\x12\x87\x85\x84\x0b\xf7\xe6\x4b\xa7\x47\x5a\x0b\xf3\xcf\x84\x36\x51\x60\x7d\x48\xb7\xee\xa9\xbd\x0e\xb0\x1f\x20\xfd\x34\xf1\x9f\xa4\x15\x6b\x80\xb9\x27\xec\x0f\x5d\x4f\xe4\x8a\xe0\x3e\x5e\xc3\x69\x04\xa1\xcd\x81\x26\x00\xd9\xcd\xcd\x4e\xd2\x8b\x85\x2c\xdb\x95\x9a\xdb\x3b\x81\x63\x7b\x4a\x44\xf7\x98\x57\x47\x64\x1b\xd9\x2a\xb7\x29\x20\x8b\x3e\x4a\x7e\xc8\x77\xfa\x9b\xf5\xd6\xdb\x1f\x32\x7d\x7d\x44\x64\x49\x4b\x06\x63\x22\x57\xb8\x8d\xbe\x70\x7e\xe4\x0e\x32\x02\x0c\x73\xc0\x64\x44\xd3\xfd\xeb\x8a\x81\x0a\xd0\xc8\x15\x92\xee\x0f\x3c\xa2\x71\x85\xe8\xe0\x43\x3a\x53\x23\x4a\x2a\xba\xfc\x24\x04\x01\x8e\x87\x51\x10\xd3\x26\x79\xb4\xd1\x89\x9b\x7c\xda\x99\x91\xa6\xca\xd3\x27\xa9\xf3\x48\x18\xf3\x09\xd0\x50\xa1\x23\x22\x1d\x87\xce\x7b\x76\x23\xdc\xbd\xde\xa3\xdf\x13\xe6\xbf\x42\x32\xb6\x03\x50\x01\xfa\x83\xbb\xf1\xd7\x8c\x7f\x52\x11\x28\x61\xb5\x43\xbc\xa4\xb5\x42\x8e\x7b\x7f\x69\x37\xbd\xbd\x2b\xc9\x36\xb3\xeb\x0d\xe1\xa5\x41\x9c\x15\x9d\x43\x73\x27\x89\x77\x43\x10\xad\xf9\x6a\x2b\xd4\x63\x6f\x07\x86\x58\x6b\xb1\xee\x86\xe5\xe1\x59\x8e\xa1\xc5\xd2\x14\x95\x9e\x2b\x0b\xf3\xe1\xb1\xf5\xa6\x7e\xe7\xaf\xd7\x1d\xc8\xc5\xf9\x82\x81\x83\xfb\x8d\x37\x07\xb7\xe3\x01\x81\x92\x33\x9f\x21\x6b\x28\xcc\x42\xfc\x79\xcd\xae\x9f\xe4\xfb\x7b\x55\x9f\xa8\x74\xc6\x6b\x91\xee\xe8\x42\x8f\x99\x0e\xd2\xf6\x38\xf3\xc5\x0e\x41\x7e\x83\x46\xc8\x0a\x68\xfa\x13\xdc\xab\x03\xbe\xe5\xc0\x18\x5d\xab\x4c\xa3\xa1\xe5\x5c\x11\x40\x45\xd8\xb9\x85\x9c\xd3\x31\x73\xb9\xcc\xcc\x20\x2f\x65\x4f\x9b\xe7\x53\xaf\xf4\x99\x2b\x23\xd3\x36\x21\xa0\xc2\x32\x70\x03\x40\x5a\xf8\x02\xf1\xcd\xc9\x3a\x98\xc6\xdd\x53\xef\xbf\xad\xd6\xd4\xab\xba\xca\x35\xbe\x6c\x3e\x5b\x85\x64\x43\x23\x67\xbc\x00\xe3\x05\xd3\x90\xfd\xe2\xd3\x82\x0a\x5f\x10\xc9\x3a\x24\xa6\x90\x77\xa5\x9e\xb8\xc2\x04\x66\xbf\xc5\xb5\x33\x1d\x35\x6b\x5f\x30\xa8\xee\x78\x39\x8d\x91\x56\x41\x04\x25\x36\x21\x35\x5e\xb1\x4b\x62\x1e\x5a\x44\xe1\xb4\xe2\x2e\xeb\x54\x51\x22\x5f\x37\xb7\x52\x54\x45\xf8\xa2\x34\xf7\xc6\xb2\x48\x11\xe7\x45\x73\x2b\x29\x9a\x9b\x48\x2d\xdb\xb8\x43\x0e\xdb\x3e\x61\x10\x78\x26\x77\x68\x44\x4c\x2c\x36\x7e\x09\x9a\xbc\xc4\x82\xdf\x11\xf5\x0b\x18\xf8\x75\x75\x62\x47\x4b\x6f\xaf\x21\xb9\x6b\x46\x3b\xd0\x29\x62\x42\xa4\x2d\x28\x91\x20\x37\x65\xb5\x76\x02\x98\x44\x4f\xe9\x6e\x5c\x21\xcc\x8f\x47\x8e\x28\x49\x44\x31\x01\xa6\x47\x84\xc0\x51\x20\xa5\xa5\x28\x16\xef\x11\xde\x44\x46\x25\x5a\x35\x26\x92\x3b\x74\x70\x24\x20\xa1\x31\x51\xc1\x2b\xfa\x83\x9d\xc1\x0d\xe6\x72\x4e\xe4\x30\xc6\x50\x66\xe3\x96\x6e\xa5\x1b\x83\xa4\xd3\x6e\xe0\x76\xee\x44\x9d\xa4\x8d\x4a\x04\xb9\x5f\x4b\x0b\xff\x7a\x95\x9a\xd7\x90\xb9\x01\x26\xe2\x0d\xd3\x5d\x3b\x92\xd7\x6d\x21\xfe\x22\x6a\x22\x35\xd4\x1c\xb6\x15\x5f\x17\x89\x1a\xdc\xbb\x91\x77\xf0\x3c\xba\x51\x81\xda\x9f\xef\x88\x9f\xba\x46\x62\xea\x93\xfa\xab\x4a\xf3\x86\xdb\x7d\x40\xc4\x48\xeb\x47\x6a\xb0\xe7\x08\xa8\x95\xc6\xe5\x9e\x02\x06\xa6\x91\xab\x53\x67\xe1\xff\x00\x1b\xd1\x4e\xcc\x8c\xd5\xd6\x3c\x78\xf3\x84\xbf\xb1\x91\x41\x61\xad\xbf\x24\xed\xe3\x35\x4b\xeb\xfc\x2d\xf4\x10\xa0\x16\x98\x71\x36\xc7\xb4\x98\x9a\x3d\x2d\x89\x12\x16\x19\x3e\x1f\x42\xd0\x53\xe1\x7b\x97\x0f\x5a\xad\x38\xcf\x59\x98\xbb\x8f\x30\xe2\x80\xb1\x25\x8b\x2f\xa8\xe9\xb7\xcc\xd5\x20\xc3\x0c\xb4\x84\xf9\x40\x64\x7c\xae\xd3\xff\xa8\xed\x90\x28\x0a\x49\x89\x8a\xd4\xde\x57\x99\xc8\xe0\xde\xf3\x0d\x25\xd8\x1b\x19\x7e\x80\x74\x36\x57\x49\xb3\x75\x93\x64\x93\x4f\xd0\x56\xf1\xe9\xea\xca\x80\x35\x0a\x69\xa7\x8d\xac\xf5\x5c\xac\xf5\x95\xe6\xdc\xdf\x39\x85\x38\xc6\xea\x9b\x4c\x73\x0f\x89\xe5\xbb\x09\x00\x57\xd3\x98\x3f\xf0\x9c\x8b\xf8\x33\x12\x2e\x79\x62\x25\x36\x9a\x4f\x74\x9f\x60\xf1\xaa\xc8\x74\xac\x99\x25\xac\x5c\xd6\xf0\x12\x47\xbf\x47\xb7\x04\x76\xf5\x5b\x64\x22\x6b\x74\x09\x88\x50\x3b\x80\x76\x52\x64\xbc\x76\x62\xdd\xe4\x1e\xad\xee\x88\x76\x6c\x7f\xae\x32\x82\x06\x4a\xb3\x2d\x1e\x67\x9e\x4a\x7a\xaf\xc9\xaa\x76\x33\x23\x14\xb7\x8c\xca\x9d\x95\xaf\x62\xe1\xf9\x54\xf4\xac\x61\x15\x2b\xe9\x86\x3f\x89\x06\x05\x6a\x69\x5b\x59\x1c\x15\x71\x13\x75\xe3\xa2\x83\xe6\xd9\x5b\x82\xcd\x88\x9c\xe1\xd7\xe3\xd2\x1c\x01\x66\x3b\xee\xa3\xf8\xd3\xcd\xe9\x26\x10\xff\x4d\x4b\xaf\x70\x76\x6f\xa8\xe9\x6f\x5c\x7e\x43\x6b\xfd\x10\xb2\x5e\x30\x66\xa6\x65\xfa\x75\xae\xce\xd0\x20\x02\xe6\x23\x60\x90\x7b\x9e\xa1\x09\x36\x01\x61\xb4\x64\xa2\x9a\xdd\x78\xa1\xcc\x3e\xa3\x08\x07\x22\x6a\xbf\x20\xa1\x95\x30\x28\xdb\xd1\x40\x3e\x50\x24\x45\x3c\x16\x3e\xf6\x58\x38\x88\xaf\x6a\x04\x31\x16\xfa\x5c\x19\x67\x08\xf7\xe9\x6e\x95\xb8\x9c\x54\xbe\x55\x4c\xb0\xd2\xbc\xeb\x3f\xd1\xdc\x3a\x6e\xdd\xb0\x22\x62\xe0\x86\x11\xa1\xfe\x86\x79\xaf\x47\x46\x2b\x46\x54\xe8\x79\x45\x4a\xd6\x5c\x58\xfd\x43\x75\x65\x13\xe2\xd6\xbb\x71\x77\x03\x87\x8e\x45\xee\x20\x72\x6d\x70\x2a\xe9\x98\x10\x8e\x37\x01\xd8\x81\x3c\x58\xfe\x03\x2b\xdf\x27\x9e\x74\x5c\xe2\x3a\xb0\x6a\xbc\x4c\xd5\x37\x8c\x45\x10\x48\x0f\x08\x09\xb7\x49\xe6\x24\x4d\x5a\x19\xfa\x82\xf6\x40\x17\x0a\x1b\x86\x47\x62\x51\x8a\xe4\xe9\x3c\xee\x15\x06\x32\xd8\x7c\x34\x61\x76\x82\x00\x8e\x98\x52\x6b\x21\x08\xee\x2f\xa9\xc7\x69\xee\x13\xb1\xfb\x7a\x38\x87\x3f\xaa\x33\x1b\x67\x4f\xe4\x67\x4e\x6f\x9c\x0d\x73\x22\x27\x3d\xfe\x08\x40\x78\xdf\x68\x60\xcb\x92\xfd\x13\x20\xa7\x44\x75\x0f\x49\xab\x84\xab\xb3\xb2\xf6\x89\xb6\x62\xee\x99\xc5\x5a\x87\x96\x72\xc7\x5f\x9a\x39\x87\x61\xa2\x61\xac\xc4\x9a\x29\x24\x5b\x31\x73\x8f\x2c\x7d\x23\x54\x33\x51\xb3\xea\x99\x25\xf4\x49\x51\x8b\xf0\xe8\x5e\x3a\xc8\x2c\x42\xfa\x0d\xe9\x5e\xc7\xc4\x4e\x5e\xb1\x86\x02\x67\x84\x12\x5a\xa2\xf3\xea\x24\xdd\xc4\x9e\xda\x2d\x16\x45\x90\x92\x7d\xc9\xbc\xa4\x6c\x01\xd3\x40\x57\x45\x23\x2c\x48\xf9\x80\xf9\x52\xea\x99\x18\x9b\x9f\x5c\xeb\x87\x74\x5a\x7a\x03\x5e\x53\x7c\x77\x89\x87\xba\x1e\x3e\x4c\x54\x8b\x46\x79\x73\xd0\x13\x78\x8b\xdb\x72\x6f\x7f\x4f\x1b\x86\x72\x06\x69\x2c\xf4\x82\x4f\x02\x5f\x03\x34\xfc\x7b\x3e\xf0\xab\x0e\x8a\x3d\x16\x2c\x5f\x05\xbb\x63\x8d\xb7\x97\x3e\x02\xf5\xb2\x81\xc1\x57\x60\x69\xbf\xe3\x3d\x53\x2c\x1c\x39\xfc\xe5\x98\x6d\xf1\xac\x47\xad\x6e\x54\x2d\x96\xc1\x4e\x98\xd6\xe3\xee\x30\x26\x25\xee\x83\x06\x72\x49\x4e\xe5\x8a\x89\xc3\xc4\x23\xdc\x5a\x3e\x1e\x12\x60\x0f\xa9\xfa\x33\x2d\xd2\x8e\xf1\xea\x37\x04\x0a\xf4\x96\xde\xf6\xdb\x19\x7b\x86\x66\x82\x48\xdd\x29\xc6\xbd\x51\x59\x5f\x27\x54\xcc\x3b\x78\xbd\x75\xfe\x0c\xb5\x7a\x95\x04\x92\x9c\xa8\x19\xda\xb4\x8d\x2a\xf9\x79\xce\x81\x59\x62\xa6\x0d\x86\xaf\x1c\xd3\xe6\xe2\xbe\x73\xfd\x5a\x06\x12\xc9\x1b\xde\x52\xdc\x02\xdc\x89\x22\xb8\x11\x50\xef\x06\x12\x7a\x7f\x1b\x02\xcb\x0f\x20\x3a\x98\xda\x7d\x51\x5c\x0c\x5d\x6c\x7c\x93\xb7\xde\xc5\xdb\xf7\x74\xcd\x52\x3d\xcd\x4b\xb3\xe9\xb6\x42\x71\x35\x62\x23\x93\xdf\x5c\xc4\x3a\x16\x6b\xf6\xa1\x85\xad\xa0\x3c\x51\x65\xca\x8f\x1a\xe5\xe9\x3a\x86\x88\x25\x60\xc6\xd9\x05\xa3\xc6\x3b\xd0\x47\xe9\xd0\x32\xd3\x7b\x91\xa6\xcd\x7c\x9b\x2c\x21\x5f\xe3\x54\x19\x86\x9d\x6d\x31\xe6\xc0\x11\xdd\xeb\x91\xfa\x8f\xd8\x27\x2a\x29\x0f\x48\xab\x02\x37\x83\xd9\xec\x6e\xda\x8e\xd0\xbc\xbd\x17\x13\xeb\x0f\x1c\x60\x8f\xdc\x2d\x46\x88\x03\xa1\x90\x34\xc0\x7f\x20\x8e\x65\xa4\x09\x31\x35\x04\xba\xda\x85\x76\x1f\x83\xa8\xf6\x21\x69\x14\x6a\x2d\x58\x17\x81\x8b\xfc\xd0\x51\x3a\x84\xa5\xbf\xd5\x95\x77\x18\xb8\x7e\xe3\x81\x77\xc3\x43\xec\x17\xc2\xfa\x88\x8b\x31\xdb\xaa\x6f\x89\x16\x7a\xac\xf1\xae\xa3\x3e\x1f\xa1\x21\x51\x34\xae\xab\x2b\xeb\xeb\xef\x5d\x62\x05\x0b\xcf\x09\x7e\x2b\xc3\x8e\xc0\x26\xbc\x57\x14\xfd\xfc\x63\x31\xf5\x90\xad\x05\x07\xdf\xeb\xa4\x51\x5b\x7f\x15\x31\x09\xed\xcb\xa8\x01\xfc\x02\xa9\x24\x36\xbd\x14\x47\x5d\x5e\xee\xed\xb2\x95\xd3\xd5\x3e\xc0\x6a\xce\x01\xf7\xec\x6e\x4c\x48\x8b\x86\x8c\xf6\x39\x94\x12\xdf\x31\x7a\x93\x05\xc6\x85\xb9\x2a\x20\xab\x95\x8c\xc9\xe3\xe6\x67\x4b\xda\x8d\x7f\x06\x44\xb5\xd3\xdf\x8e\x48\x5c\x92\xb6\x3f\xfc\xb9\xde\xde\x58\xbe\x20\x1e\xf4\x89\x3a\xe1\x08\xef\x00\xc9\xa9\x4f\x85\xdd\x30\x58\x1d\x47\x79\xf9\x54\xf3\x15\xbc\x30\xc7\xa4\x34\x31\x88\xbf\xf1\xc3\x53\x6f\x2e\x6d\xc0\x92\xff\xef\xe6\xe3\x5d\x22\x52\xf4\x11\x86\x31\x90\x83\xe0\xbd\x4f\xae\x1f\x40\x48\x68\xaa\x79\xf2\x0b\x67\xb3\x83\x13\x14\x33\x00\xdb\x2b\x4f\xe4\xb8\xd9\xa4\x16\xb0\x2d\x4b\x4b\x23\x96\x4b\xeb\x9f\x86\x46\x27\x0f\x00\x46\x5d\x3d\xa1\x3b\xff\x44\x71\x8f\xc8\xa9\xe5\xd5\xdb\x8f\x73\xeb\x46\x9f\x35\xeb\xe7\x17\x1a\xe5\x88\x68\x18\xf5\x05\x74\xf7\x28\xd8\xf3\xcf\x34\x01\x33\x73\x0f\xe3\x51\x6b\xaa\x23\x3e\x6a\x11\x2d\xa3\x19\xa3\x6d\x75\x41\xb7\xa1\xd3\x2e\x59\x9d\x27\x02\x46\x83\xde\x65\x60\xf5\x7b\xd2\x23\x69\xb1\xd8\xd0\x23\x22\x37\xdf\xad\x09\x5a\x09\xe0\x96\xa3\x6e\xc8\x78\xc1\x01\xd7\xda\x4a\xb3\x2c\x6e\x15\x6b\x6f\x9d\xbb\x70\xe9\xad\xf7\xce\x19\x5a\x8b\xe8\xef\x19\x5d\x43\x52\x0b\x36\x1c\xbc\xed\xe8\xb4\x3c\xdb\xde\x78\x9e\x44\x55\xc5\xeb\xfe\x20\x00\x79\xfb\x0d\xd7\x1f\xb0\xb9\x11\xc7\xbd\x66\x11\x5d\x8e\x7b\x8b\x14\xbd\x8a\x85\x1c\x6d\xcd\x3e\x26\x8b\xcd\x44\x5c\xac\x9a\x35\x9d\x85\x11\x78\x6d\x57\x20\x80\x55\x7b\xaa\xe0\xc6\xa0\x7f\x87\x95\x76\xea\x3a\x2f\x00\xdb\x2e\xd1\xbb\x87\x79\x17\xf7\xca\xf0\x4b\x3d\xc2\xa6\xb6\xcb\x44\x69\x3e\xcf\xa5\x3b\x2d\x7b\x26\x09\x84\x92\x63\xd1\x76\xf3\x72\xbc\xe7\x0e\x20\xc7\x44\x52\x31\xba\x27\x10\x6f\x40\xde\x61\x06\xb7\x2c\xd1\x71\xd2\xe9\xc4\x5b\x68\xd0\xd7\xbb\x62\x3a\x7e\x40\x32\xcf\x33\x58\xe9\x75\xff\x62\x8f\xd9\xff\x20\xa4\x6b\x1c\x09\xfa\x15\xbb\x84\x01\x2f\x03\xce\xf6\x0e\x2c\x02\x33\xcd\x51\x79\x24\xb9\x46\xcd\xfc\x04\x0f\xa0\x57\xc0\xa5\x8c\x71\x08\x47\xd9\xdc\x33\x8c\x46\x55\xff\x71\x0d\xf5\x89\x9a\xf6\xbb\x1c\x96\x58\xa1\xb4\x2c\x43\x72\x86\x3f\x26\x73\xe0\x63\x86\x6d\xa3\xc6\x25\x29\xef\xd7\x24\x61\x55\x66\x03\x48\x03\x35\xd4\x34\x9d\xef\x97\x1e\xd8\x8e\x42\x12\xfb\x90\x4a\x60\x06\xe8\xf9\x2b\x7a\x7c\xae\x16\x1a\xd2\x32\xc2\xcb\x0e\xe8\x6a\x8b\x65\xc7\x0f\x44\x36\x39\x96\xe3\x24\x84\x14\x7f\x96\xe4\xc4\x48\x0e\xdd\x56\xf3\x54\xec\x57\x49\x17\x3f\x32\x92\x25\x63\xb9\x4e\x94\x17\xa8\x85\xe4\xdd\x61\x7f\xf7\x21\xe3\x66\xab\xba\xae\x31\xb2\x85\x94\xf6\x44\x88\x47\x24\xa5\xa0\xe7\x1d\xea\x18\x9c\x6b\xcc\x3a\x0b\x7f\x17\x47\x40\x7d\x14\x29\xb0\xab\x34\xf6\x73\xe2\xd2\x58\x7f\xa2\x44\xe8\x3c\xf6\xba\x80\xc1\x7f\x45\x78\x54\x6f\xb9\x5c\xd3\xb0\x0e\x0c\xe8\xfe\x91\x23\x60\x91\xe9\x54\x60\xbc\x62\x7c\x12\x19\x04\x98\xcc\x53\xfa\x3a\xbf\x4e\xf6\x85\x41\x8f\x54\x6e\x3b\x71\x06\x7c\xb6\x19\x8f\x3c\x3d\x2b\x7c\xd9\x52\xdd\x92\x74\x3b\x91\xa9\x99\x1b\x4d\xea\xdd\x11\x33\x38\xa2\xa9\xc0\xb5\x3f\x24\x03\x28\x3b\x34\x8c\x8d\x59\xe4\xb8\x56\xc5\x78\x4d\x9b\x3c\x7d\xdd\x91\x36\x81\xd4\x18\xfe\x51\xe4\xd6\xc3\xca\x2c\xeb\x87\x06\xd6\x0e\x98\x62\x63\x6b\xb9\x63\x49\xaf\x42\xd5\x0c\xd5\x3c\x26\x8b\xe9\x2f\x99\xdf\x66\x3a\xc1\xa6\x0c\x40\xac\x05\x60\x40\x84\x3f\xe3\x36\x3e\xb4\xbe\x85\x47\x65\xe7\xe7\x91\x76\xd7\x10\xe1\x40\x66\x3f\xb4\x50\x88\xfb\x76\xa8\x34\x3b\x2d\x3c\x8f\x01\x9e\xa0\x32\xfe\x09\xe9\x62\x8f\xc5\xd2\xf7\x54\x26\x40\x5a\x0f\xa3\xa9\x30\xe6\x23\x39\x47\x83\x1c\xf9\x76\x1a\xa5\x39\x2a\xcd\x90\x1c\xf1\xb2\x50\xcf\x43\xce\xe4\x62\x22\x1f\x6a\xe5\x89\xb5\xaa\x1c\xd4\xd0\x51\x9a\x93\xf6\x3a\x1e\xa2\x49\x46\xeb\x61\x48\x8a\xd1\x4a\x98\x23\x6d\xf4\x39\x34\x6a\xa7\xaf\x58\xef\xad\x7d\xa2\xbc\x89\x0b\x6d\x2f\x6f\xba\x20\x12\xcd\x3c\x05\x0c\x11\xa5\x7d\xaf\xde\xfe\xea\xc5\x3e\x0a\xef\x36\xdc\xf8\x93\xe1\x75\x2c\xd8\x63\x6d\x56\xd1\xa5\x68\xf6\x3c\x50\xce\xb9\xb1\x8b\x9c\x5d\x9b\xf8\x76\xb1\x8c\xe5\xde\xc5\x43\x16\xbd\x71\x64\x96\xc4\x45\xab\x2f\x4c\xdd\x29\x76\x9e\xa1\x93\x47\x3c\x78\xad\x96\x7e\xf3\x3a\x5c\x17\xc5\x23\xcd\x18\x06\x9d\x6d\x58\xf6\xd0\x17\x5d\x7b\x4a\xcc\x5d\x21\xd9\x7b\xb8\x8b\x23\x06\x53\xea\xb3\x7a\xae\xc0\x58\x45\xa4\x37\xdf\xc8\xa2\x5e\x6b\xdb\xa5\x13\xff\x22\x97\x55\x82\x1f\x0e\x48\x73\x74\xa8\xcd\xd1\x21\xda\x40\xfa\x02\xdc\x3f\x34\x15\x6d\x47\xbd\xad\x18\x0d\xed\x30\x40\x49\xb3\xe0\xa8\xa1\xc5\xa9\x07\x69\x17\x2b\xe8\xb6\x32\x6e\x82\x1e\x77\xa6\x97\xd6\x20\x2f\xd2\xee\xf3\x75\x76\x50\x75\x31\x1b\xa2\x7f\xf9\xdf\xa7\x20\x72\xa1\x53\xd5\x5d\xc2\xaf\x88\xef\x47\x7c\xcf\x09\x74\x86\x7c\xc1\x0e\x9d\xe0\x83\x24\xae\xb7\x8d\x91\x06\x3a\x29\xf6\x5c\xb5\xb3\xb1\xf6\xa0\x51\xa2\xd3\x49\x77\x63\x34\xc3\xb1\xda\x97\x55\x63\xac\x43\xc0\x48\x29\x58\x4f\xc6\x6c\xe1\x63\xd1\x32\x08\x07\xa1\xdb\x92\xbd\xd8\x69\x8b\x35\x70\x9f\x51\x2d\xd3\x20\x2e\x0d\x15\x52\xd9\x8e\xc3\x5b\xd6\xf1\x66\x2f\x9d\xc8\x5f\x62\xb8\xa0\x18\x2c\xc1\x12\xae\x1b\x12\xe2\x20\xdb\x71\x3f\x2a\x80\x37\xe9\xb1\x7e\x92\xd6\xb1\x78\x8c\x1f\xfe\x7c\x22\xff\xe1\xa9\xe3\xd8\xe3\xd0\x25\xc3\xbd\x52\xe0\x07\x07\xa3\x00\xa4\xf4\xb3\x74\x33\xe9\xe8\x20\x0d\xc2\xf7\xf3\xa2\x08\x84\x78\xe6\x6b\x9e\x2a\xc7\x44\x9d\xa1\x4b\x89\x76\x19\x12\xce\xd6\xb1\x92\x1f\xf8\x56\xbd\x9b\x08\x10\x51\xbf\xdf\x49\x5a\x64\xbf\xc9\x05\x2a\xca\xde\xbe\x6c\x72\x0d\x85\xf1\xc0\xb8\xed\xb8\x13\x17\xb1\x61\x83\x1c\x1d\xb0\x6b\x66\x18\x24\xed\xb5\x8f\xdf\x7f\x1b\x17\xdf\x1f\x6c\xc0\x80\x4d\xb3\xee\x3b\x56\x16\x70\x82\x94\x9c\x8d\xe0\x8a\xe2\x37\x65\x25\x94\xa9\x75\xa6\x5f\x42\x58\xa9\x72\x5e\xc4\x4a\x3f\x25\xa7\xa4\x63\x51\x82\xb8\x5e\xd1\x3e\xfa\xd2\x30\x62\xec\x3f\xb0\xef\xc4\x74\x7d\x1e\x74\x0a\x15\xf2\x68\xd4\xd1\xe2\x71\x22\x56\x11\x87\x36\x4f\x90\x5b\x41\xcc\xb4\x4f\x05\x8f\x18\x6e\x4a\x23\xf8\x6c\x84\xf4\x3d\xf1\xcc\x4f\xd2\xbf\x17\x61\x48\x36\x4f\x04\x69\x8c\x59\x62\x26\xfe\x7f\x01\x00\xdf\x99\x13\xc3\xd7\x49\x5b\xe2\x73\xf9\xad\xe0\xb6\x09\xef\xc1\xd4\xf1\x1d\x87\xd3\xec\xb7\xd1\x10\x6e\x8f\x90\xc2\x3d\x27\x8e\x0a\xdc\x3f\x42\xbf\xbe\xf5\xc1\xb8\x25\xc6\x38\xb7\xb6\x48\xad\x8a\x2e\xce\x33\xf2\x5d\x3c\x66\x56\x4e\x8f\xa1\x59\x28\xc1\x8e\xcb\x86\x07\x52\xc0\x9b\x51\x15\x1f\xa3\x01\xa2\xd4\x83\x80\xd8\x73\x76\x23\xd4\x89\x39\x6f\xa3\x93\x25\x40\xd4\x04\x8b\x76\xe5\x0d\xe3\x9d\xfd\x4c\x96\xe1\xf9\xc5\x6b\x97\x5a\xe3\x74\x28\xec\x8c\x07\x43\x6c\x9a\x77\x21\x7f\x81\x4d\x03\x9d\x3d\x92\x1e\xc6\x80\x7d\x2d\x5c\xfd\xa8\x36\x1c\x2d\x66\x2e\xbd\x44\x6d\xca\x6e\xd6\xd5\xe0\x5d\x6d\x36\x33\xd4\x27\xdc\x95\x13\x2c\xe1\xf4\x88\x2b\xfa\x07\xf4\x2e\x54\x84\x2d\xb5\xa3\xac\x18\x0d\x7c\xfb\xb9\x00\x17\xae\x91\xe5\xfc\xc7\x64\xc7\x82\x1d\x79\x57\xc8\x26\x1e\x69\x9a\xe6\xe2\xa3\xa1\x57\xa0\xbd\x75\x02\x2e\x1a\xce\x9c\x05\x48\x75\xab\x0a\x4c\x97\xc8\x29\xce\xd8\x69\x8f\x5b\x38\xe8\xa3\xe2\x1c\x84\x59\x59\x30\x51\x8e\x66\xd2\xa5\x80\xd6\xdf\x9b\x59\x3f\x62\x29\x85\xed\xce\xe2\x41\x5d\x67\x84\x19\x13\xf8\x31\x69\x7c\xe4\x68\x87\xd1\x7e\x51\xda\x5e\xc7\xa9\xef\xde\xc2\x23\x32\xba\x10\xed\xda\x89\xf5\x3c\x1d\xef\xd8\xe1\xcd\xb9\x76\xc9\xa5\xa3\x51\xda\x32\x7b\xad\xcb\x0e\x78\x8e\x70\xf2\x40\x1c\x81\xed\xb6\x55\x6e\x36\xf1\x69\xee\xdd\x27\x92\x29\x57\xd5\xb5\x93\x39\xa6\x9a\x92\x01\x29\xed\xb8\x8a\x84\x8a\x5b\x9d\x53\x13\xe1\xc4\xd6\x74\x23\x65\x83\x06\x29\x47\x13\x54\xdf\xeb\x5c\x8d\x4f\x69\x1d\x76\xd3\x5c\x45\x29\x09\xda\x82\x60\xca\x9b\xa1\x68\xe4\x67\x2c\x97\x0a\x63\x6c\xc4\x67\xe6\x06\x25\x12\x9d\x50\xc5\xb1\xd5\xf1\x9b\x29\x0a\x04\x89\xfe\x2f\x77\x88\x2a\xee\xfd\x62\xbf\x03\x89\xf8\xd5\xad\x83\x41\xbf\x4e\x80\x0a\xf1\xf7\x4b\x74\xcb\xda\x48\x71\x8f\x66\xca\x30\x31\xcc\xbb\x54\x7f\x2e\xa3\xf0\xb2\xc4\x3c\x4c\xc1\xfd\x98\x0d\x24\xc3\x13\x11\x3a\x98\xf7\xc1\xd3\xec\x67\x70\xbb\x31\x3c\xf7\x8e\x3f\x51\x53\xa2\x5d\x3e\x42\x8e\xbe\x5a\xec\x9e\x94\xdb\x32\x4b\x65\x9a\xba\x8c\x15\xba\x17\xb7\x09\xbb\x49\x29\xb9\x31\xba\xd6\x67\x0f\xbd\x3d\x8f\x33\x09\xf4\x5b\xd3\x67\xb5\x35\x3b\xec\xea\xd6\xd7\x9c\xd6\x4d\xcf\x21\x08\x7d\x4b\x4a\x4e\x40\x73\xd4\xff\x93\xc5\x01\x5d\x8e\x5f\x90\xe7\x85\xc2\xa4\xf8\xaf\xf1\x08\x72\x6d\xd0\x4b\xfb\x04\x69\x9d\x1d\xee\x03\x56\x02\xe8\xf0\xfd\x84\x7c\x27\x01\xd7\x59\xc8\xe3\x90\x7e\x45\x5c\x56\xbd\x0b\x08\xc9\x0b\x76\x6f\x1d\x0c\xfb\xd7\x1c\x72\x85\xa7\x7a\x68\x0e\x5a\xf3\x54\xe6\x72\x1b\x39\x23\x78\xbd\x7d\x3b\x32\x5e\x70\x9e\x26\xa9\x11\x2b\x20\x29\x15\x59\x78\xe1\xfb\xcd\x9c\x10\xcd\x86\x85\xd0\x43\xe5\xb8\xc9\x3d\xa1\x01\x6a\x18\xe8\x65\x99\x1f\xe5\x68\x66\xc5\x13\x5d\x58\x6a\xf6\x86\x29\x19\xc1\xf8\xb3\xe8\xb0\x0c\x11\x14\x2b\x86\xb0\x2e\x67\xf2\x22\x4b\x7b\x5b\x67\xc5\x69\xee\x58\xab\x44\x24\x1d\xc8\x1b\x67\x4e\x4b\x05\x05\xec\x83\xb6\x29\x40\xb1\xa7\x40\x64\x4e\xe2\x4b\x56\xf6\x3e\x13\x65\xdf\x81\x55\x71\x69\xa7\x6d\xbc\x0f\x67\x22\xb5\x9d\xc5\x9b\x6b\x2f\x9e\xc8\x5f\x3c\xeb\x84\x02\xb1\x7b\xa2\xab\x11\xc5\x0d\x39\x73\x3a\x3a\xeb\x68\x80\xdc\xb0\x1d\xe1\xb4\x38\x16\x48\xbb\x82\xf8\xbd\x8b\x83\x17\x4b\x1c\x7c\x4f\x24\x63\x40\x9d\x2c\x03\xe3\xe3\x90\x0d\x8b\x94\x82\xe7\xef\x02\xcb\xea\x0a\x1a\x84\x3c\x76\xdd\x71\x47\xc0\x32\x72\x4f\xd6\x9e\xb5\x36\xf8\xe0\x88\xb5\x02\x02\x64\xf6\x26\xfc\x96\x84\x85\x32\x24\x7b\x68\x50\x6b\x63\x61\x1e\x2f\x18\xe4\x4a\x33\x0d\xa0\xd6\xb4\xe7\x2e\xe0\xa9\x96\x14\x48\xe9\xcf\x26\xac\xbb\x25\x95\xfd\x13\x31\x6c\x87\x89\xcc\xd3\x19\x65\x4d\x01\x6e\xcd\xea\x4a\x7e\xc7\x6a\x58\xeb\x1e\xa6\x3d\x3e\x75\x6d\x7b\x0b\xb5\x50\x1f\x22\xb1\xdc\xd4\x97\x0f\x8e\x24\x72\xc6\xa8\x00\x8e\x44\x19\x26\x17\xe3\x26\x7f\x08\x29\x02\xc4\x9f\xb8\xfe\x7e\x06\xc6\x23\xf1\xd7\x8e\x86\x90\x63\x15\x0e\x64\x9b\xaf\x8e\xf4\xa3\x2e\xa6\x3b\x07\x31\xd7\xf5\x36\x92\x5e\x9b\x85\x19\x99\x1b\x9f\x26\x17\x58\x48\xb9\x47\xf8\xd6\x04\xa1\xb0\x13\x43\xbd\x63\x34\x13\x18\xbb\xda\xa1\x8b\x1d\x23\xea\xb3\x59\xa4\x64\x86\x0d\x9e\xce\x77\xa4\x5f\x26\x7e\x96\xf7\xfc\xae\x04\xb0\x4c\xe8\x93\xb6\xc8\x11\x43\xfc\xb5\xc3\x87\x0f\x75\xe6\x02\xf1\x34\x97\x31\x6a\xfd\xcc\xa9\x7c\x75\x85\xfe\xc9\xe5\xf4\xee\x39\x88\xc2\xdd\x3f\x04\x8e\x7d\x3d\x2f\xcd\x38\x4a\x60\x5d\x00\x78\x67\x26\x52\x53\x54\x12\xae\xbc\x80\xce\x84\x9c\xac\xe3\xdc\x85\xf7\x1b\xcc\x49\xd3\x24\x64\x0e\x77\x69\x9c\xa1\x63\x13\x41\x09\xe6\x21\x53\x56\x33\x09\x9f\x49\x93\x58\x0f\x1d\x7a\xa9\xe5\x96\x72\x60\xff\x12\x14\x80\x40\x83\xa7\xe3\x21\x9b\x23\xe2\x81\x0f\x99\x8d\x73\x76\x5a\x76\xf9\x1f\x99\xeb\x9e\x95\x32\x1f\x79\xed\xca\xad\x18\xc2\x62\x8e\xe6\x72\xa8\xab\x8b\xae\xdd\x03\x73\x17\xef\x6d\xe8\x0b\x41\x83\x14\xf6\xc3\x76\x3b\x13\x50\x75\x48\x9c\xa8\x44\x1e\x3a\x72\x95\xf6\x04\xc5\x1f\x76\x14\x26\x52\xb5\xb0\xe7\x4d\x01\xc3\x58\x4a\xd6\x3e\x2d\x57\x94\x42\x25\x65\x4c\xab\x5c\xb7\xa8\xd5\xdc\x0a\x0f\xb9\xba\x85\xae\xd4\x53\x99\xd8\xfc\x4d\xaa\x51\x0f\xb9\x09\x2d\x60\x1f\x6f\x6b\xd5\x27\x07\x21\x0b\xa7\xb7\xcf\xfc\x36\x29\xd9\x26\x65\xf1\x9e\x77\x72\xac\x42\x09\x0f\xe8\xea\xcb\x02\x8c\xa3\xb5\xaf\xf0\xac\x75\xb0\x96\x66\xda\xb5\xfa\x2f\xec\x76\x50\xd6\xe9\x11\xc5\x3f\x60\xaf\x0a\xd3\xad\xe1\x4e\x31\x96\x6c\x5e\x28\x28\xee\x1d\xa9\x8f\xe0\x4c\x1e\xe2\x1e\x8d\x95\x65\x55\xa6\xbf\xc3\x10\x8f\x6f\x81\x23\xf9\x1f\xd3\xdf\x01\x5a\xfa\x9d\xc3\xa5\x8c\x4c\x64\x9d\xb6\x83\xbd\x60\xc3\x1e\xcb\x0b\x0e\x04\x3f\x96\x53\x89\x90\x76\xd0\x6f\xa7\x23\x3c\xbf\xf7\xab\x05\x32\x34\x95\xda\x59\x42\x34\x9c\x8f\xa7\x9d\x4c\x16\xee\x5c\x86\xa2\xb2\xa1\x8b\x77\x95\x64\x5e\x86\xee\xc5\x9a\x3a\xd2\xd1\xa3\x01\xe4\xd3\xd5\x15\xb1\xf2\xdf\xf2\x0d\xe8\x8e\xe7\xd0\x22\x7f\x4f\xeb\x62\xa4\x15\x60\xff\x44\xb1\xad\x5f\x4e\x75\x22\x00\xeb\xc3\x53\xd3\x0d\x32\x88\x3a\xb0\x90\x15\x62\x68\x13\xe3\x4d\x98\x88\xd9\x56\x74\x4a\xee\xd9\xe3\xd6\xb2\xf9\x58\xdf\x2c\x73\xf4\x00\xd1\x3b\x49\x9e\x6c\x24\x1d\xe2\x48\x6e\xd1\xcd\x1e\x6b\xcb\x36\xde\x57\x2a\xc6\x52\x3f\xc9\x47\xd5\x73\x64\xa4\xfe\x7d\x17\x1d\x07\xff\x33\x8c\xdb\x8f\x7a\xaa\x05\xbc\x52\xbe\xf6\x62\x27\xda\x88\x3b\x8a\xfe\x7f\x2a\x8b\xdb\xfa\xaf\xa8\x9d\x0c\x1c\x6e\x93\xad\x3d\x30\x2d\x68\x79\x96\xac\x2f\x97\xc5\xbc\x7a\x47\x20\x6d\xdf\x8a\xa1\x35\x29\xd1\xa8\x11\x67\xcf\x70\x1b\x39\xa0\x36\xc1\x8b\x48\xd5\xaa\xab\xaa\x36\xa1\x84\x07\xa8\x57\x0c\x1d\xe8\x0d\xe6\x50\xd8\xa6\x79\x53\xb3\xff\x23\x76\xaa\xe2\x50\x2b\x91\x30\xe1\x13\xa1\x15\x6f\x67\x51\x50\x22\x80\x60\xe8\xbe\x63\xad\x5a\x7c\x77\xa8\x0c\xb3\xe0\x39\x19\xf0\xcc\x37\x27\x89\xcf\x75\x09\x2b\x94\x3b\xa8\xb5\x88\x8d\xad\xa4\x48\xb6\x7a\x69\x16\x03\xcb\x9a\xb4\x80\x23\x88\x31\x9f\xd9\x98\x6c\xcb\xc7\xb4\x90\x9b\xa6\x64\x71\x77\x74\xc2\xa6\x29\xce\x3d\xe9\x25\x05\x1c\x50\xd4\xee\xc6\x65\x9e\x24\x7c\x3c\x14\x4a\x26\xfd\xe1\x56\xa9\x8b\xef\x9c\x7b\xfb\x83\x77\x1a\xdd\xb6\x89\xa7\xe3\xf3\x5e\xa6\x33\xc4\x11\x9b\xd1\xa0\xa3\xed\xb5\x9c\x6b\x70\xdf\xd8\xa6\x11\x01\x1c\x11\x0f\xf3\x85\x16\x92\x74\xd2\xbd\x66\x82\x9e\x46\x3b\xc8\x4c\xff\x81\xbd\x22\xd8\x49\x00\x57\xe9\xc6\x06\x96\x53\xd1\xbc\xcc\x90\xfa\xca\x7c\xa3\x63\x8d\xab\x20\xdb\x1c\x7f\xb4\xd1\xd1\x49\x91\xa8\xb4\xb0\x50\x13\x65\x69\xec\x9c\x0b\x2c\x90\xbd\x18\xd5\xd4\x03\x0c\x6a\xfe\x6e\x56\x4e\xb5\x36\x0d\xa5\x39\xa0\xf4\x85\x5b\xcc\xf6\xb8\x19\xd3\x10\xfb\x98\xc4\x83\x14\xa3\xe9\xd4\xaa\x24\x08\xaa\x01\x12\x07\x87\xd7\x22\x91\x8d\xce\x20\x2e\x61\x11\xef\xe4\x00\xb8\x0c\x1e\xd1\x73\x60\xd0\xd2\x81\xae\x64\x99\xae\xc5\xd3\xd2\xa6\xd1\xea\xa4\x3d\xa0\x42\xed\x76\x26\x62\x83\x66\xb7\x3c\x86\xd0\xa8\x5d\x6c\x43\xed\x4f\x85\x46\xb4\xce\xa2\x88\x71\x2f\xf7\x89\x17\x44\x4e\xa1\xc4\x9e\xa6\x5d\xfc\x98\xea\xfc\x0e\x8c\xd7\x4a\xc5\x7a\x20\x61\xfc\x48\x26\x28\xf9\x5b\x43\xa0\xf8\x32\x1c\x3e\x21\x4c\xfe\x5b\xe1\xdf\x0e\x1e\x6d\xe6\x71\x67\xd3\x4d\x51\xe1\xf1\x81\x9c\x2f\xe8\xd0\x38\xce\x94\xf6\x73\x68\xdc\x83\x84\xdd\x12\x2d\xe7\x2d\xc7\x65\x54\xf8\xd5\x92\x53\x1a\xb1\x1e\xfd\xbd\x66\x27\xe9\x5d\xae\xd9\x77\xa8\x01\xc8\xeb\x32\x70\x91\x4d\xac\x5a\x7b\x3a\x9c\x7e\x06\xa6\x4a\xb9\x77\x90\xd7\x33\x76\x2e\x68\x97\xe0\xa5\xaa\x30\xeb\xa5\x8e\x58\xee\x67\x60\x30\x51\x2e\x41\xb5\x8f\xb8\xec\x05\x52\x59\x4d\xc7\x6f\x28\xd1\x17\x98\x24\x24\xe5\x04\x21\xd7\x50\x0d\xc3\x5e\x28\x6b\x2f\x36\x37\x00\xcf\x5f\x7e\xd1\x51\xcb\xd8\x81\xa6\x63\x54\xb6\xbc\x80\x82\xed\xae\xf6\xad\x1e\x31\x0c\xd2\xb6\x0b\x17\xca\x8a\x09\x61\xba\xa5\xe2\x3d\xff\xeb\x00\x63\xe1\x33\xf2\xb0\xb4\x66\xb1\x31\x69\x30\x4a\x7e\x18\x0f\x70\x0f\xb8\xf2\xad\x6a\xe9\x88\x61\x26\x40\xab\x09\xc5\x68\x22\x77\x9b\x81\x74\xe2\xd2\x3a\xbc\x70\x3f\x1f\xe0\x51\x6e\x0d\x12\xca\x45\xc9\x33\xa1\x53\x40\x45\x15\xec\xf4\xa1\x88\x33\x3a\x19\x91\x39\x8e\x62\x3b\xc9\xe5\x6a\x7f\x53\xde\xf6\xb9\xd4\xc3\x09\xe0\x26\xa2\xda\x4a\xbb\x20\xd0\xb7\xe7\x48\xd7\x75\xf8\x8a\x76\xcb\x75\xd3\x94\x10\x33\x6d\xf6\x22\xf7\x96\xfe\x00\x83\x48\xd0\x9d\xc8\xe1\x69\xfc\x60\xb1\xf2\x7d\x66\x75\xf2\x8f\x1d\x78\x75\xa5\x42\x1f\x41\x1a\xce\x62\x32\x03\x33\x2e\xa4\xed\x14\xaf\x27\xd8\x82\x66\x11\x6d\xe5\xb6\xfa\x58\x71\xda\x1d\xf9\xa5\x6b\xc6\x6e\x15\xf4\x9d\xe2\x50\x7c\xf3\x41\x27\x40\xbd\x43\xd6\xc7\x6b\xae\x1e\x1b\x55\x68\x80\xba\xfd\xfa\xdd\xa4\x13\xe7\x05\x1c\x69\x2e\x8c\x3e\xfa\x6d\xe3\x15\xed\x76\x93\x22\xe7\x04\xa5\x47\x1c\x55\x86\xdf\x33\x10\x10\xa2\x5c\xbb\x23\xa1\x17\xda\x63\xfc\x4c\x3e\x05\x59\xb4\x0b\xc4\x18\x46\x65\xe7\x38\xe2\x7b\xa5\x08\xa0\x85\x73\xa8\xfe\x41\xbc\x36\x05\xe1\x53\x21\x65\x2b\xa2\xc6\x77\x3d\x85\xe9\x48\xbb\x93\x85\x7a\x04\x64\xd0\x8d\x18\x4d\xdd\xb5\xbe\xa0\x53\xed\x0d\xe8\xd8\xf0\xc9\xb0\x2e\xeb\x69\xd4\xad\x4b\x97\x57\xb2\xc0\xea\x93\xe6\xb8\x3a\x80\x49\x5b\x77\x93\x94\x5e\xb7\x45\x29\x30\xb6\x05\x48\xd4\x31\xca\xe3\x37\x4e\x46\x63\x29\xea\x02\x41\xe3\x74\xcc\xd0\xd7\x84\xf2\x61\x1a\xa1\x4d\xd7\x69\x53\x10\xe6\xd7\x6c\x9f\xb5\x9f\x25\xb3\x04\x66\x94\x02\xb6\x16\x55\x0e\xb6\x0c\xae\x93\xce\x45\x78\xc0\x0e\x06\x1a\x12\xb0\xc8\x4b\x21\xfc\x78\xca\xa1\x1c\xa4\xed\xb5\x75\x9a\x04\x1b\x5e\xcd\x23\x0b\xb8\xe5\x7a\xcd\x7e\x27\x6a\xc5\xa5\x5c\x19\x06\x56\x29\x73\xae\x34\x49\xfb\x14\x2b\xb1\xb1\x76\xa2\xad\x3c\x3f\xa3\xaf\x4c\x15\xc0\x28\xc0\x09\xeb\x3a\x68\xa4\xaf\xd6\x81\x33\xc7\x44\x01\x32\xc9\x6f\x2b\x33\x73\xcb\x81\x73\x43\xf2\x49\x26\x62\x41\x7c\x36\x5b\x88\x31\xc9\x1c\x95\xef\x8c\xee\xc3\xdc\x08\x73\x21\xca\x35\x80\x2f\x02\x0e\x3f\x36\x71\x77\x36\x6e\x6c\x52\xae\xea\xf0\x69\xa1\xa2\x06\xe6\x43\x31\x39\x8b\xd9\x53\xd5\x1e\x50\x65\x6a\xdc\x84\x47\xc7\xd0\x4c\x8c\x3b\x0f\x4c\x42\xbc\x6e\x83\xad\x19\xff\xb6\x9b\x1b\x7b\xdc\xb8\x5e\x4f\x19\x6c\xde\x8d\x7b\x68\x55\xc4\x24\x5a\xd4\x5c\x58\x0a\xa2\x90\x78\xfd\x38\x80\xdc\x3b\x7d\x1a\x6c\x8d\xff\x52\x27\x3e\x79\xf5\xd3\x5c\x6d\xec\x59\xc3\xc7\xe9\x13\x9f\xfc\xe4\x53\xa0\xb2\xf4\x0f\x92\x57\xd3\xb8\x9f\xc5\x3b\x49\x3a\x10\x97\xb8\x11\x29\x2e\x1f\x12\xae\x96\x1b\x5e\x4a\x68\x6e\x80\xf4\xb3\xc2\xd0\x5b\x41\xe7\x73\x1b\x30\xd0\x14\x6e\x90\x66\x00\x3a\xb8\x56\x2b\xed\xe0\xcd\xfe\x17\xa6\xb5\xf3\xea\xa1\xbe\x06\xe1\x99\x6b\x4c\x10\x71\x79\x35\xe8\x62\xc8\xd1\x63\x3d\x27\x1e\xc7\x6a\xf1\x09\x0e\x4a\x0d\xe3\x76\x52\x30\xfa\x7d\x38\x95\x30\x6f\x9f\x3f\xf3\x6a\x07\x7d\x03\x4b\x75\xaa\xc1\xb7\x46\x6c\xaf\x5b\x1f\x75\x4b\x5e\x6a\x15\xa5\xd2\xa2\x26\xce\x1b\x05\x6e\x3b\x10\xde\xaf\x00\xeb\x7c\x9d\x25\x49\x36\x21\xb0\x0d\x55\x6e\xf0\xd5\x52\x7c\xb9\xeb\x5e\x29\xf7\x05\xe3\x09\x82\xba\xa4\xf0\x44\x8c\x0a\xf4\x5b\x2b\xc2\xb2\x6d\x7b\x58\xd6\x63\xf9\xba\xce\x17\xc8\x61\x7b\x5e\x36\x73\x5d\xd8\xe0\xcc\xa7\x44\x90\x9f\x69\xf1\xcc\x14\x3a\xc9\x78\x52\x36\x30\x60\x2f\x34\xf4\xf1\x54\x52\xb5\x69\xbe\xcb\x34\xda\x4e\xd3\xcb\xb9\x21\x2e\x95\xbc\x6e\x13\x5f\xb5\xea\x28\x05\x4d\x0f\x5b\x49\xc1\x9d\x60\x66\x61\xcc\x98\x57\x9a\x73\x3b\xee\x77\xd2\x3d\xb1\x3d\x7f\xa3\xed\xb0\x3a\x78\x94\xad\xe8\xe8\x28\x7a\x60\x19\x49\xd3\x76\x23\xca\x93\x96\x93\x17\xde\xf1\xca\xd0\x19\x06\x4b\x99\x9f\xdd\x81\xd1\x31\x27\x6b\xfe\x82\x90\xef\x1d\xaa\x7a\xd5\xea\x1b\x27\x2c\x3d\x98\xda\xec\x3f\x79\xa7\x92\xda\x8c\x98\x46\xe3\x4f\x69\xaa\x8b\xa7\x94\x33\xb5\x05\xee\x65\xfe\x51\xb1\xd3\x10\x32\x91\x8b\x35\x8e\x01\x3f\xc7\xba\x8e\x3c\x87\xc7\x6a\x48\xd8\xdf\xc0\xd5\xb1\xa4\xe5\x7e\x1e\xdf\x47\x1a\x83\x9d\xc9\xd9\x11\x63\x24\xc1\x2a\x3a\xdd\x74\xbd\x8e\xae\xe1\x2c\xb9\x00\xce\x35\xdf\xe4\xb4\x58\xa5\xb8\x13\x93\xc9\x30\xf8\x22\x89\x56\xd7\x55\x7a\x32\x06\x2e\xbf\xbb\x3a\x8e\x5d\xbb\x10\xf1\x84\x6b\xdc\x4a\x6f\x18\xbb\x7d\x4d\x80\xe8\x03\x0a\x05\xc3\x0e\xca\x09\x4d\xec\x2a\xa6\x73\x62\xe2\xdd\x2d\xa1\xc7\x1d\x28\xb4\x0f\x63\x6d\x72\x56\x68\xa1\x7c\xf2\xbd\x6f\x43\x9a\x56\xc3\xf7\x8c\x04\x2f\xa3\x07\xb4\xc1\xa8\x62\x61\x6f\xe6\x31\x07\xdf\x78\x31\xaa\xe4\x79\xe6\x5c\xf6\x90\xf3\x38\x9f\x6f\xad\xb6\xa8\xd2\x5e\x0e\xe4\x1b\x52\x34\xcc\xbc\x1c\xab\x21\x93\x4a\xf8\x9c\xfe\xf5\xca\xd7\xca\xa6\x0c\xe7\x59\x0f\x31\x95\xc6\xf1\xd4\xcd\x96\x2d\xd6\xeb\x9a\xf8\x30\x37\x44\x71\x48\xd1\xde\xac\x33\xe7\x58\x79\xce\x5c\xa4\xc3\xa3\x42\x40\x4a\xc9\x88\x81\x2c\xac\x9d\xe9\x9f\x3d\x25\xb6\xb8\x67\x74\x11\x46\x94\xd0\x53\x5c\xfc\x1c\x8b\xd8\x49\x3a\x8b\xa9\xe4\xf1\x30\x3e\x0f\x25\xd5\x4a\xd0\xb3\xf4\x98\x14\xd3\xa4\xa0\x86\x9e\x2c\x02\x3b\x9a\x93\x4b\xb0\x71\xe6\x74\xff\x2c\x4f\xee\x7b\xe2\xf4\x28\xc5\x8a\x71\x6e\x73\xa3\xd3\x7f\xf4\x0c\x43\x37\x61\x84\x9a\x25\xf2\x60\xf0\xc2\x1b\x49\x2a\x1e\xcd\x7e\x1b\x8e\x95\xc4\x39\xd7\xe3\xe2\x79\x7e\xab\x75\x18\x76\x09\x97\xd5\xea\xd9\x8a\x25\xe9\x76\xed\x1e\x38\x8d\xba\xd1\x65\x90\x4a\x0c\xea\x42\x0d\xbd\x98\xc4\xad\xc3\xab\x45\x3f\x5f\xa0\x0b\x5e\x75\x40\x36\x4c\xb7\x5d\xe3\x95\x93\xbc\xac\x6a\x63\x3a\x72\x23\xc6\x7d\x4f\x31\x67\xb4\xf2\xfa\x7c\x73\x61\x5d\x8e\xd4\xaa\x99\xd0\x74\x80\x6e\x37\x96\x19\x41\x0e\x37\xec\xd4\x28\x58\x89\x70\xb5\xd5\x50\x0f\xe7\xf4\xf4\x3c\x6e\x42\x7e\xb7\xee\x02\xb3\xb8\x9b\x52\x7e\xcc\x50\xc7\xf7\xdc\x56\xd6\x38\x6d\x17\xeb\xf6\x44\xb1\xc8\x09\x85\x37\x36\x39\x05\x5c\x6d\x3e\x99\xea\x7d\x00\x04\x22\xee\x48\x14\x9c\x19\x22\x13\x27\x95\xa9\x85\xd7\xc3\xc4\xd8\xb1\xd0\x69\x54\xb9\xe2\xf1\xe1\x25\x0e\x71\x76\x85\xdf\x74\x98\x72\x16\x57\xcd\x04\x8e\x2a\xfb\xde\x28\x6d\xfc\x6e\xbc\x81\x8c\x5d\xf5\xf4\xfe\x8e\x0b\xca\x5c\x24\x63\x6d\x29\xcc\x95\xc0\x23\x67\x2a\xb9\x89\xc9\x1e\x14\x79\xc4\x32\x08\x8e\x39\x90\xcf\x3c\x25\x66\x91\xd4\x35\x32\xd0\x08\x88\x05\xb2\xb3\x8b\x41\x5f\x67\x24\x64\x83\xe8\xb1\xe8\x2a\x8e\x99\xb8\x4e\x24\x78\x51\x6e\xe2\xd4\xfa\xb8\x11\x5b\x70\x9d\x14\xf7\x4f\x98\x57\x91\x6c\x9f\x77\x17\x75\x4a\x8c\xed\xb0\xe4\x32\xe7\x77\x77\x54\x49\x20\x85\xcb\xe2\x2c\xad\x9c\x02\xea\xc2\x47\xeb\x97\x4c\xe6\x2e\xeb\x3f\xa3\xc5\x8e\xa9\x71\xed\xd7\xee\x3d\x1f\x5f\x3c\x4f\x14\x8a\x45\x72\x3a\xdd\xfb\x0c\x60\xa8\xb3\x51\xae\x4d\xe1\x40\x3b\x22\xe2\xc5\x9f\xaf\x83\xfe\x63\x40\x1b\x2b\x1e\xbb\xfa\xfc\xc4\x11\xb0\xc2\xe6\xf3\x29\x23\xaf\xff\x1e\x1d\x73\x94\xc5\xaa\x8f\x31\x81\x20\x8f\x83\x24\x8e\x05\x49\x81\xf6\x86\x93\x0a\x64\x7a\xd5\x8a\x7a\x0a\x65\x4c\x85\x7a\xb6\x5c\xa5\x9b\x2a\x1f\xf4\xf1\xc9\x0b\xa8\xce\x70\x92\xf4\x54\xb1\x1d\xab\x4e\x92\x17\x0a\x04\xaa\x74\x57\x15\xa9\xea\xc7\x19\xda\xd0\x14\x47\x44\x28\x10\x6f\x59\xac\xc9\x03\x53\x22\x19\x96\xa7\xf5\xfe\x26\xf5\x85\x5f\x55\x82\x5d\x73\x46\xbd\x93\x2a\xa7\x67\x0f\x94\xf8\x22\xaa\xdd\xa4\xd3\x81\xc1\x54\x9f\xb3\xe5\xc5\xed\x86\x3a\x1f\x47\x3b\xd0\xab\xa9\x02\x93\xc0\xa9\xe3\xcb\x36\x6a\x27\x42\x53\x15\x35\x92\x6c\x93\x0a\x55\xd6\x34\x4e\x68\x42\xbd\x60\x1a\x25\xdc\xaf\x97\xa2\x40\x75\xe3\x21\xa9\xf5\xff\x9f\x0b\xe2\x70\x02\x74\x4c\x3e\x9b\x0a\xb6\x15\xea\x27\x9d\x55\x05\x91\xf7\xfc\xab\x2a\xc8\x8f\x06\xd6\x48\x4f\xce\xbc\x16\xcd\x39\xd8\x40\x58\xb3\x6f\x17\x42\xfa\x19\xcc\x6b\x76\x16\xe1\xfd\xcc\x69\xfa\x53\xde\xf6\x2b\xdd\x22\xbe\x85\x94\xb6\x8e\x5e\x12\xe1\x77\x2c\x8e\x9d\x47\x2c\x84\x4b\x50\x9a\x52\xc8\x7d\x13\xcf\xc3\x6f\x0d\xfc\xcf\x6c\xc4\x9d\x1d\x84\x37\xd0\x79\x11\xe3\xa4\xce\xc7\x30\xb3\xe9\x44\x99\xf7\xb8\x6f\x05\xa1\x91\xf1\xb8\x9d\x9a\xbc\xe9\x8c\x57\xad\xa6\xe0\xe5\xff\xba\xfe\xd1\x87\x27\x65\x99\x9f\x9d\xda\xdd\xdd\x3d\x85\x10\x7b\x6a\x90\x75\xe2\x1e\x7e\x6c\xcb\xba\x4f\xe2\xdb\x1b\x67\xc9\x53\xaf\x31\x7d\x08\xbc\x0b\xfc\x7a\x45\xd2\x3d\x38\x2c\xc0\xd4\x7d\x6f\xa0\xba\x05\xf8\xd1\xb9\xeb\xc7\x5a\x4f\x8c\xcb\xf9\xb1\x77\xbd\x7c\xd5\xfb\x9c\x30\xcc\x3e\x19\x53\x93\x31\xcc\xe5\x18\x10\x80\x3d\x3b\xb2\x9f\xac\x45\xf2\x4c\xb8\xa2\x6b\x1e\xb7\x32\x98\xf2\x3a\xfd\xe3\x7c\x8f\x77\x62\xe3\x2c\x74\x5b\x23\xca\x43\xed\xa5\xef\x9c\xbf\x15\x2b\x04\x36\xcb\x69\xa0\x64\xce\x43\xad\x5e\x10\xf5\x4d\x69\x24\x32\xea\xa4\xbd\xce\x9e\x8e\xd8\xe5\xa4\x98\x72\xb2\x58\xaa\x01\xd8\x43\xf7\x23\xef\x82\x10\x9a\x71\x83\xa6\xe9\x51\xa1\x52\xb9\x36\x3b\xbe\x1d\x17\x18\x68\xa3\xb2\x78\x2b\xca\xda\x88\x74\x10\x69\xd1\x6c\xd4\xee\x76\xd2\xda\x56\x45\x96\x6c\x6d\x11\x4a\x35\xe8\x4c\xa3\x2c\xe0\xca\xa0\x2b\x2c\x8a\x72\x58\x78\xa7\x53\xbe\xa8\xde\xcd\x5e\x82\x4f\x92\xcd\x6b\x54\x51\x8a\x61\x00\xee\x54\x15\x40\x01\x26\x40\x5a\x05\x31\x4b\x99\xc1\xae\xca\x8c\x76\xb4\x4a\xe0\xf1\x5f\xad\x9a\xca\xe2\x16\xc3\x12\x6d\x19\xc5\xbd\xdf\x16\x9e\xf7\xc0\x72\xce\x43\x57\x4d\x51\x62\x6a\x7c\xd7\x88\x67\x3e\x7e\x0e\xdc\x04\x3c\x80\xbc\x13\xb5\x2e\x37\x1d\x64\x59\xe1\x7e\xc7\x92\x8f\xdb\xbe\xef\x78\x03\x11\x9f\xe7\xbe\xbf\x8e\xbd\x70\x00\xc0\x81\xce\x08\x10\x96\x74\xdd\xbd\xe4\xb1\xd9\x61\xf3\x12\x3b\x12\x97\xca\x02\x6f\x5f\x95\x6a\xa0\x4e\x89\x5e\x70\xfc\x86\xd0\x1d\x1c\x05\x79\x4b\x26\x9b\x9b\x8d\x8d\x2c\xdd\xcd\xd1\x8b\x7d\x90\xb5\x4c\x84\xbb\xb1\xb1\xf9\xd6\x35\x93\x06\x0a\x7f\x0e\xa5\x83\x3e\xb0\x0b\x3d\x52\x38\x3b\xe1\x11\xe4\x4d\x8a\xa5\x6c\x80\x02\x1e\x9c\xfe\x95\x8f\x00\x54\x51\xf9\x91\x83\xaf\x1d\x44\xfc\x36\x54\xb2\xee\x31\xc6\xb1\xf4\x98\x5e\xea\xa0\x1e\xf2\xed\x74\xb7\x89\x7f\x35\xf3\x22\x2a\x72\xe3\xca\x6c\x09\x84\x18\xdc\x59\xcb\x82\x87\x3a\xbb\x46\xfd\xea\x0e\xb0\x19\x1f\xa6\x76\xc5\xc3\xe8\xa0\x92\x36\x4d\x78\x42\xeb\x1b\x75\x60\x1d\x33\xf1\x74\xe5\x6f\x6c\x58\xba\x8e\xd3\x89\xe3\xc2\x39\x76\x6b\x7a\x52\x96\xad\xa5\x8f\x03\x0e\xf2\xcd\xf7\x3f\x94\x5f\x64\xf9\x74\x53\x0f\x94\x8d\x9f\x7a\x6a\x9c\x4e\x91\x4c\xaf\x8d\x1a\x13\xac\x2e\x66\xcb\x3a\xfd\x5d\x79\xcc\x94\x2a\xdb\xaa\xed\x2c\xda\x84\xb3\xfb\xd3\x54\xa7\x83\x3a\x60\x03\xab\x2e\x07\x5e\xcb\xf4\xa4\x4d\x30\x81\x6e\x60\xaf\x39\xe4\x75\xc6\x6f\x20\x3a\xd1\x96\xb6\xd2\x42\xab\x85\xae\x18\x6d\xc7\x51\x7b\xcd\x6e\xa8\xb3\xcf\x25\x4b\x2c\xa6\x04\x14\xb3\xd7\xd8\x98\x7d\xb5\x66\x92\xc4\x54\x33\x59\x7e\xec\x52\xa6\x4b\x57\x41\x27\x71\xb5\xe0\xaf\x23\x55\xe8\x41\x4e\x5d\xb9\x88\xb6\x7c\x0f\x53\x42\x02\x6e\x77\x42\xc7\x39\x59\x89\xbb\x10\x6c\x5a\xeb\xde\x57\xeb\x73\x40\xfd\x9f\x34\xfe\x44\xd6\x81\x5d\x1c\xcf\x0d\x15\x68\x54\x20\xc2\x79\xc8\xc5\xe3\x62\xc3\xdb\xa0\x39\x80\x5d\xe0\x42\x9b\xdd\x76\x30\xd8\xa7\x82\xe2\x3e\x88\xb2\xcb\xed\x74\xb7\xc7\x76\x3a\xdd\xd5\x6e\x46\x9a\x78\x4e\xa3\x4e\x1e\xc1\x1e\x0c\xf1\x4b\x48\x02\x40\x74\xe0\x57\x3c\xf6\xc9\xc9\x38\x61\xe0\xbf\x3a\x4f\xcf\xe2\x7c\x5b\x86\xfa\x52\xef\x27\xa9\xfc\x4e\xd1\x82\xc5\xdf\xdc\xf6\x80\x9c\x11\x25\x31\xb1\xf1\xdf\x18\xb9\x32\x94\x07\x5e\xcb\xb0\xee\x85\xdf\x18\xa9\x34\x3c\xed\xd0\x75\x70\x7a\x92\xe3\xff\xbb\xf8\x5f\xaf\xfc\x4f\xe0\x05\xfa\x69\x02\xfc\x42\x3a\x00\x51\x65\x3b\x2a\x58\x20\x91\xaa\x28\xfb\x00\xc6\x04\xf1\x26\x6d\x0f\x5a\x28\x37\x9d\x42\x17\xcf\x3d\x77\x86\x98\xb4\x23\xdf\x66\x4b\x92\x24\xce\x10\x36\xd1\xd1\x7e\x97\xef\x26\x3e\x2b\x22\xf7\x1c\xcd\x4b\xfe\xd3\x21\x92\xac\x22\x70\xf5\x49\x40\x33\x97\xbf\xf6\xda\x06\xc7\xd4\x77\xa6\x19\x75\x68\x0d\x3a\x9d\x8f\x41\x57\xe6\x9a\x8e\x39\xef\xa9\x46\xc8\x47\xe6\x7a\x69\x25\x77\x4d\xfe\xb7\xd5\x95\x4f\xd2\x6c\xeb\x53\x27\xe1\xa3\x0b\x18\x8b\x93\x3d\xba\x0d\x97\x71\x08\x0f\xf6\xf2\xa4\xe4\x0e\xae\x6c\x98\x57\xc9\x21\x5c\xb2\x57\x71\x00\x69\xf0\x39\xc1\xa0\xbd\xc1\x51\xae\x78\x36\xd0\x1a\x1d\x4b\x7d\x66\x4f\x72\x38\x15\xc7\x2b\x4a\xeb\x55\xf2\xb5\x0a\x3d\xe1\x71\x43\x9c\x9e\x99\x45\x6c\x57\x39\x4a\x10\x0c\xfa\x71\xda\x47\x84\xf3\x4f\x94\x95\x9b\x5c\x93\x77\xf0\x3d\xd9\x3c\xed\xc6\x64\xc2\xe3\x54\x36\x98\xac\x0e\x0d\x79\xce\xe3\x26\x0f\x2a\x97\x15\xf3\x48\x1a\xb7\x1c\x93\xb7\x98\x52\x17\x89\x9e\x2e\xe7\xc4\x3a\xda\x67\x5d\xf2\x17\x71\x8d\xa5\x32\x25\x39\xae\x67\x38\x5a\x65\x1b\x98\x58\x92\x30\xe7\x4e\xe3\x1a\x9f\x5e\x8d\xb7\xb8\x93\xff\x72\x51\x12\x66\xaa\xba\xa8\x1b\x97\x64\x38\x36\x8f\x4a\x32\x4e\xf7\x0e\xb2\x85\x63\x2a\x09\x1f\x4d\x40\xbd\x0b\x87\xc7\x8e\xf8\xa5\xc9\x9c\x93\xa5\xf4\x40\x89\xf1\xcd\x71\x18\xe3\xf8\x2d\x3d\x67\x83\xcb\x10\x73\x01\xb2\x22\xe4\x85\xa5\x2a\x02\xcc\x16\x6d\x00\x56\x7b\x43\xaa\xa3\x6b\x56\x92\xe7\xd6\xd4\x4f\x56\xa1\xa9\xe4\x7f\x77\x5d\xf3\xd9\xa2\x3c\x73\x42\x62\x25\xd6\x6c\x5a\xcd\xaa\x78\xad\x6e\xf6\x6f\xd4\xf9\x85\xe3\x79\x68\xe4\x32\x59\x88\x13\xd4\x12\xd9\xa9\x9e\xdf\x55\x7c\xee\x50\x0b\x1c\xc4\xff\x06\x0e\x06\x4e\xde\xa1\xbb\xa2\xb8\xb0\xb9\x41\x9d\x7a\x26\x1b\xd1\xbd\x8a\xd9\x7c\xc9\x7c\x44\x7f\x5b\x33\x3b\x5c\x38\x2f\x66\x30\x98\xf8\x6a\x09\x2b\xbb\xf4\x63\x8c\xec\x26\x6b\xdb\xd4\x3c\xe0\x56\x79\x20\xba\x46\xad\xff\x6f\x95\x61\x68\xb1\x91\xfd\x49\xcd\xfa\x03\xf2\xbf\x7e\xe0\xb0\xd6\x9e\x36\xae\xdd\x4b\xfd\x50\xcd\x82\xa4\x4f\x44\xcd\x16\x18\x8f\xeb\x08\x4a\x59\x7f\x50\x13\xc7\x87\x3b\x88\x56\xf6\x25\x7b\x71\xc3\xfa\x42\xee\x0e\xf7\xe9\x32\xb3\x95\xe0\x40\xec\xf1\xe5\xd4\x98\x36\x01\x52\x68\xcc\x4a\x74\x5f\x43\xd5\x1a\xdf\xe6\xc6\xea\xcd\x37\xc2\x49\x07\x48\x6c\xea\x02\xf6\x6a\x12\xc0\x85\xba\x70\x63\xf7\x82\xcb\xba\xb9\x20\x6c\xcf\x5f\x30\x3d\xbd\x6f\x20\x1f\x9f\x7a\xf9\xed\x29\x51\x24\x9b\x44\xc7\x55\xbf\xab\x90\xb9\xc9\x2a\x57\xf4\x83\x40\xcf\xab\x2f\xaa\x3e\xaf\xed\x44\x30\xa3\x70\xf4\xd8\x6a\x0f\xdd\xe0\x69\x13\x90\x49\x2b\x43\xc9\xdf\xd5\xce\x10\x4f\xe7\x48\x9b\xc4\x4c\x39\x77\xf0\x1f\x75\x5e\xeb\xa9\x0e\xe3\x10\xbe\x84\x39\xf3\x16\xbd\x0a\xef\xe5\xb3\x7b\x52\xae\x62\x88\xfb\x3d\x1d\x4f\xcc\x00\xcf\x7c\x12\x5b\x10\xc8\xfc\xef\x34\xcc\x92\x1d\xf2\x07\x2e\xd7\x79\x52\xa9\x53\xdf\x7b\x29\xcd\x9e\x6d\x59\x17\x59\xa9\xcb\xb5\x85\xb4\xc4\x78\xd9\x0a\x00\xfc\xad\x18\x23\xba\xee\xb9\x4e\xbb\xba\x94\x2d\x17\x15\xe7\x43\x5d\x0c\xe2\xc2\x4e\xac\x75\x3b\x26\x0d\xac\x2d\x17\x76\xd2\x28\x96\xc9\x7f\xc3\x24\xdc\x34\xf9\x3a\x58\x3f\x37\x3f\xf7\xbc\xfb\x6a\x4e\x88\x29\xf5\xac\xdb\x5f\x98\x7b\x70\x22\x7f\xbd\x32\x1d\x7a\xb2\xab\xc2\xd9\x4e\x47\xde\x33\xaf\x94\xd7\x14\x59\xda\x06\x66\xfb\x64\x77\xfc\xff\x3e\x35\x69\x3e\x79\x9d\x5c\x41\x76\x01\x55\x04\xe2\x47\xce\xdf\x51\x76\x92\x2c\x07\x6b\x6e\x7a\x02\xb1\xca\x50\x2e\x1e\x97\x7d\xf4\x5a\x78\x51\x5f\x43\x3f\x5c\x61\x58\x17\xf1\x1f\x7e\x30\x6e\xce\x7b\xbf\xf4\x62\x7f\x30\xfc\x63\x3a\xaa\xf3\x71\xd0\x5c\x65\xce\x6a\x83\xfa\x15\xba\x11\xc6\xa1\x26\xcb\x2f\x51\x12\x60\xd8\x18\x81\xb1\x49\x9e\x2d\x19\xf0\x16\x4e\xba\x92\x21\x92\x72\xbb\xb0\xaf\xa8\x09\xde\x71\x9d\x67\x89\x87\xe3\x49\xf3\xd3\x9b\xc1\x75\xce\x7d\x41\xa5\xda\xfa\x6f\x79\xaa\x07\xd6\x9f\x45\xe2\x66\xd1\x70\x72\xba\x0f\x1c\x23\xc9\x03\x23\xab\x42\xab\x78\xdf\xcc\x3e\x0f\x64\xcc\x34\xfa\x51\xe9\xce\x4b\xdc\x45\x07\xe0\xf8\xb6\xb2\xe2\x82\x52\x49\x48\xb2\x62\xb3\x5d\x26\x68\x49\x16\x69\xde\x13\x30\xef\xd0\x32\x53\x1f\x8e\x68\xe2\x3e\xe6\xb2\xce\x5c\x85\x50\x5f\x5e\x15\x56\x6e\xf9\xde\x4b\x14\xce\x4d\x9b\x79\x83\x1f\xe2\xac\x4d\x8a\x81\xb9\x82\x3c\x02\x53\x93\x49\x1a\x13\xc0\x78\xca\x63\xa7\x7f\xd3\xc1\x72\x1e\x85\x4e\x37\x41\xae\xd5\xec\xa9\x91\xa0\xff\x64\xfd\x4b\xbc\x77\x1a\xb4\x20\x26\x16\x43\x77\xa3\xfe\x2a\x86\x9e\x9b\xea\x84\x13\x24\x6d\x57\x1d\x0c\x91\xe1\xb2\xb3\xb8\x36\x77\x16\x68\xa6\x21\xe9\x52\x93\xa4\x72\x86\x20\xd2\x74\x5a\xcc\xbd\xf4\xf2\x9c\x39\x96\xd9\x2e\x59\xde\xb2\x53\x74\x7b\xf2\x20\xb8\xf6\x9a\xfa\x5c\xd7\xd2\xb9\x11\x94\x73\x8c\x96\x3f\x71\x17\xec\xfa\x18\x39\xce\x8b\xc6\xd7\xc8\xcb\xe5\x52\xc9\x05\x5e\x0b\xb6\x8d\xd0\x52\x9d\xe7\x7c\x9d\x6c\xec\x95\x35\x2f\xe1\x56\xdf\xf0\x08\x59\xe5\x66\x86\x77\x53\x2b\x68\xb5\x07\xa4\xf1\xd8\x2a\x2d\x94\x9e\xab\xd4\xd7\xeb\x4f\x96\x78\x9a\x3b\xf4\xba\xe7\xb8\xb5\xd4\x7b\xf7\xf5\xf4\x2f\x4c\x45\x4a\x9a\x8b\x12\x25\xfc\xb7\x5c\xb0\xa3\x9b\x5f\x62\xc1\x53\xdf\xab\x4b\x9c\x3d\x03\xe4\x22\xa0\x48\x5a\x40\xf4\xe5\xb5\xf7\xd2\x52\x2f\x19\x6d\xd2\x56\x16\xf5\x8a\xdc\x4c\x9c\x1e\x24\xb3\x68\x8e\xc9\xe0\xeb\x4a\xf0\x19\xf9\x2a\x21\xb0\x50\xf8\xf4\x49\x9e\x52\x91\x9e\x54\x51\xaf\xad\x00\x63\x28\xd7\x61\x30\x47\x07\x21\x34\xce\xe3\x38\x2f\xa1\xe6\xdd\xea\x0c\x1d\xc8\x5b\xa8\x48\x5c\x1e\xb5\x18\x9c\x65\x7a\x0d\xa4\x66\x0b\x5b\x88\x97\x1f\x44\xbc\x83\xc4\x7b\xdc\x67\xb4\xed\x34\x7a\x69\x8f\xb4\xf0\x68\x49\xe1\xaa\xb7\x74\x3a\xff\xfb\xd3\xd2\x23\xa2\xf4\xb4\xc3\x3e\xa9\xde\xf7\x97\x0c\x8a\x0d\x27\x7b\xac\x3c\x4f\x31\xb2\xde\xa3\x8e\x51\x8b\x15\xfa\x04\x18\x9f\xae\xae\x98\x57\xb2\x29\x1f\xeb\xf4\x58\xfb\x62\x06\x5f\xbd\x46\x6f\xce\xbc\xc6\x81\x53\xd4\xfc\x51\x2f\xf9\x85\x4e\xad\x5e\x23\x3e\x2f\x97\x67\x7f\x00\xb0\xd3\x2b\x12\xad\x0d\xfb\x4d\x38\x41\x03\x3f\xe1\x1e\xe4\x3b\xb4\x63\x39\xc8\x4a\xfa\x01\xc8\x23\x9d\x51\x3a\xa8\xd3\xc7\x67\x11\x7b\x09\xb9\xe3\x7e\x2b\x38\x46\x8f\x78\x3c\x7d\x80\x09\x4e\xe3\x9d\x6a\x70\x1c\xfb\x17\x84\xa2\xe0\xc8\x71\xdf\xd9\x61\xb2\x92\x03\x50\xa0\xec\x7a\xaf\x6c\x4f\x27\x07\x00\x53\xd3\xba\xf3\xb1\xf2\xda\xe6\x60\x1d\x7b\x1d\xee\x01\x88\x75\xc9\x68\x8f\x71\x7b\xd2\x29\x62\x79\x7a\xbc\xcd\xae\x5a\x44\x2d\xc2\x3a\x76\x5d\xc3\xe0\xe4\x9a\x49\x6f\x33\xa5\xe8\xf7\xfb\xa4\xab\x1b\x39\x6e\x5d\xc0\x5a\xf2\x1b\x36\x36\xed\x18\x79\x47\xd3\xcb\xc4\x6d\xcc\x43\x5a\xef\x49\x0f\x50\xeb\xd4\x0a\x9a\x78\xbc\x1a\xa5\x74\xf5\x18\xa3\xe7\x64\x7e\x74\xab\xd6\x5d\x92\xd2\xa4\x1e\xba\xa9\xfd\x8e\x6b\x7c\xdd\x51\xf6\x70\xda\x95\xfd\x10\xc6\x9c\xe1\x6f\x5a\x49\x0c\x50\x6a\x55\xca\x5e\xef\xf7\x68\x5c\x30\x28\x6d\xaa\xbb\x29\x15\xa3\x80\xdf\x56\x5b\xe4\x47\x9c\x40\x6a\x66\x1e\x4a\x71\xf6\x82\x72\x0f\x4e\x9d\xf0\xac\x45\x19\x0b\x17\xef\xd3\x92\x47\xea\xa4\x26\xa9\x9c\x0e\xdb\xc3\xcb\xeb\x1d\x8b\x90\xf8\x85\x2b\xa3\x1c\x88\x87\xc0\xd0\xab\x8a\xf7\xf5\xfe\x29\x89\x9e\x2b\xf7\x83\x3a\xbf\xcf\xbd\x2f\x26\x0c\xb4\x34\x43\x89\x5d\x54\x35\x1d\x39\xe4\xb5\xa6\x21\xb9\x05\x56\xb5\x64\x98\xc2\xdd\x83\xdd\xf2\x53\x23\x61\xff\x97\x46\xf0\xd2\x3b\x06\xae\xa0\x41\x65\x0e\x46\xb0\x7d\xe4\xbb\x89\x9b\x32\x63\xea\x65\x39\x0f\x37\xc9\x06\x3d\x71\x2b\x60\x03\x89\x5b\xab\xd5\x89\xa3\x5e\x53\x32\x4c\xa6\x9c\x47\xa7\xc4\xb8\x1f\xd7\xa5\xe8\x1c\xa9\x8f\xce\x7d\x5c\x6c\xcf\xef\xce\x55\xa2\xcf\xe9\x07\x6a\x96\x12\xa9\x55\xb3\xfc\xba\x5c\x2f\x3b\x39\x99\x71\x85\x93\x16\xbf\xe7\xc8\x2a\x90\xf3\xca\x72\xe4\x25\x23\x3c\xba\xa1\xfb\xc2\xb8\x35\x4f\x09\x2d\xa9\x7d\x7e\x64\xb9\x81\x9d\xc7\x21\x7e\xf4\x88\xa5\xa5\x57\x19\xfe\xca\x84\xc8\xea\x8c\x49\x18\x92\x9d\x38\x0f\xa8\xc0\xb5\xee\x16\xb1\x0d\x5c\xcc\x31\xe9\x37\x6a\xd8\xce\x11\xa6\x6b\x98\x3f\x42\x65\xb1\xa6\x5b\xe6\xbb\x6a\x12\xc1\xd5\x58\x4b\xe6\x1c\xf4\x56\x52\x34\xb7\x5a\xcc\x0a\x86\xa2\x89\xa0\x9f\xfb\x34\x02\x3d\x6b\x70\x44\x1d\x13\x4d\xac\x27\x0d\x9c\x34\x36\x3c\x84\x1b\x1e\x23\xfd\x62\x57\x95\x7e\xc3\xba\x70\x67\x80\x8a\x41\xc8\x91\x04\x44\x6e\x75\xe7\x90\xc5\xf9\x5e\xaf\x85\xd6\x50\xcc\x5f\xcd\x21\xc4\xfa\xc6\x0b\x7d\xf6\x3c\xdb\xd4\x0f\x7f\x6e\x40\xc5\xd3\x9c\x33\x23\xf9\x45\x4c\xc9\x85\xf1\x05\x9f\x97\x8d\xca\xee\x8a\xd6\x5d\xbd\xce\x77\x9a\x29\xbe\xc1\x1f\x22\x51\x93\xec\xc2\xb9\x9c\x29\x50\x0f\x0e\xe0\x95\xf9\x33\x2b\xf9\xdc\x06\x8c\x5f\xcf\xfc\x99\x4b\x60\x0e\x03\x8a\x17\xb0\xcf\xe6\x7e\x9b\xb1\x3a\x38\xac\xe3\x6e\x9b\xaf\x5d\x8c\x49\xea\x23\xf3\x39\x17\xb0\xd7\x70\xba\xe9\x49\x26\xea\x65\xcc\x13\x16\xb7\xd5\x2e\x70\x9f\x3a\xb8\x82\x99\x4c\x85\xf9\xad\xd0\x16\xcf\xc6\xce\x76\xdd\x6a\xdd\x61\xcd\x92\xcf\xc1\xb0\xee\x38\x2f\x79\x93\xd8\x8e\x76\x62\x85\x6f\x86\x42\x1d\x9c\x26\xc8\x0d\x4a\x5a\xa2\x49\x79\xaf\x51\xe2\x23\xd1\xe2\x9e\xc1\x40\x45\xd2\x25\x55\x36\xbd\x0a\xa6\xdf\x19\x23\x81\x95\x34\x0b\xfa\x0d\x01\x2b\xc9\xf0\x1b\xa1\x6c\x69\x1f\x95\x39\xc0\xd6\x20\x43\xdf\xd3\xe6\x56\x9a\xa5\x83\x22\xe9\xc5\xe5\x27\x1f\xde\xd5\x05\x79\xa8\x19\x08\x89\x20\x71\x35\x07\x9c\x70\xc5\xb6\x1c\xd5\x38\x53\x4c\x4d\x16\xfc\x21\x4e\x9e\x75\xf1\xb6\xdb\x22\x2d\xa2\x8e\xee\x14\xad\xfd\x2d\x76\x8c\xb9\x25\x66\xb2\x89\xd7\x92\xef\x89\x8d\x66\x9a\xb8\x5d\x49\x27\xe9\x46\x11\xc1\xe4\xdb\x6b\x1f\xd0\x6f\xf5\x91\xfc\x76\xab\x92\xcf\x18\x66\x36\x81\x63\x19\xf4\x9b\xb8\xc1\xf9\xda\x05\xfe\xa8\xce\xd3\x47\x75\x09\x3f\x06\xfa\xd7\x93\x94\x56\x32\xca\x39\xf9\x5a\xdb\x6c\x33\x8b\x4b\x4d\x7e\x0a\x5f\xaa\xd5\xf5\x3e\x6f\xc7\x51\xff\xf9\x77\xf9\x90\xc3\x34\xdc\x0e\xa9\xa3\xf2\xde\xbc\x07\x1f\xd5\x9c\x0d\x72\x1b\x25\xed\x4e\xec\x35\x78\x1f\x3e\xd4\x56\xa6\x97\xf6\x30\xed\xd5\x35\xc6\x22\xfe\xe9\x39\x40\x4a\x19\x55\x83\x7d\x88\xcb\x9b\x3f\xcb\x8b\xf2\xb1\xd2\x28\xdd\xf8\xfb\xb8\x05\x84\x9d\x2a\x7f\xc4\x3f\xdc\x4a\x1b\x69\x5a\xe4\x45\x06\x35\x41\xf6\x69\x5d\x96\x3d\x7d\x53\x7f\x55\xeb\xf8\x55\x7d\x8c\x5f\x4b\x82\x12\x54\x2e\xef\x1b\x57\x9e\xb3\x71\x5d\x4c\xd4\x07\x23\x65\x83\x56\x31\x00\x74\x21\xc3\x7d\xb0\x8e\xc9\xff\xd6\xcd\xe7\xea\x78\x95\x86\x16\x8e\xcb\x6d\x83\xe3\xb6\xa2\xd6\x76\x1c\x18\xf8\x2d\xfc\x3e\x7f\xe4\x4a\x53\x3b\x74\xa5\x75\xf0\x36\xd1\xf3\x57\xe8\x21\xb1\x31\x68\x5d\x8e\x0b\x8c\xbe\xdf\x6e\x92\xff\xb2\xed\xea\x82\xae\xa4\xde\xa4\x4a\xea\x3d\xa8\xa4\x2e\x51\x10\x59\xa8\x53\x20\xb9\xdd\xb8\x88\xc8\xeb\xdd\x74\xf2\xee\x5b\xb0\xf7\xf8\xb1\x1d\x05\x1b\xa5\xc5\x36\x86\x07\xb3\xbc\x2c\x17\x15\x59\x5e\xd3\xc1\x47\x58\x41\xad\x53\x05\x7d\x67\xa1\x42\xb0\x33\x14\xf6\x99\xf2\xb7\xf6\x80\x91\x5d\xfb\x10\x7e\x2b\x98\xc1\x45\xfe\xed\x56\xa5\x2c\xfa\x50\x95\x30\xf5\x7a\xd2\x6b\xc5\xea\x3c\x7c\xc2\xda\x78\xc1\xab\x08\x4f\xd7\xbd\x84\xbf\xb0\xda\x85\x08\xae\x4d\xb0\x5e\x1f\x4b\xe6\x54\xd4\x63\x73\x3d\x3d\x6c\xa5\x9a\x8c\x98\xaf\xc9\x9c\x72\xfd\xe2\xb8\x44\xef\x4a\x02\x78\x00\xb5\xb8\xb3\xf6\x31\x7c\x51\x1f\xd0\x17\xe8\x09\xbe\xe8\xaa\xf4\xfc\x94\xf6\xc5\xa8\x4d\x2e\x37\x2d\x3f\x92\xc7\x6d\xad\xef\x91\xfe\xa4\xb9\xe4\xb6\x1b\x32\xe4\xb0\xc2\xa6\x1e\xaa\xb1\xe8\x39\x9f\xb0\xd1\x46\xd7\x13\x3e\xb0\x46\xd9\xc4\x75\x24\x57\x93\x9f\xa4\x69\xa2\x4b\x17\x7a\xd4\xcb\x84\x48\x94\x91\xf0\x8f\x3f\xf8\xf2\x6d\x30\xcd\xa8\x1d\x9f\xb2\x68\x62\xf2\xda\x52\x9e\x4c\xaf\xeb\x4e\xba\x95\x88\x80\x78\x4e\x78\x38\x06\xd4\xf3\x58\xa0\x3e\x8c\x10\xa8\xe4\xf4\x6a\xde\xa0\xf3\x9e\x5d\x9c\x97\x50\xbe\x22\xe7\x56\xe5\x09\xbb\x37\xf6\xf4\xab\x79\x8d\xe6\x8c\xa1\xbb\x48\xf2\xa6\x73\xe6\x4b\xe4\xc0\x0e\x4b\x48\x43\xb7\x3f\x86\x8d\xef\xad\xd1\x66\xee\x5a\x9f\x33\xbd\x88\x39\x15\x74\x44\xc4\xe0\xd2\x26\x07\x67\xd5\x45\xb7\xbb\x66\x54\x3d\x82\xab\x9c\xa5\xb1\x31\x38\x38\x1c\x44\x15\x3e\xd4\x45\x0f\x11\x2e\xb3\xf3\x0b\xb2\xbc\xb3\xe1\x70\x4e\x32\x76\xdd\xcf\xff\xa7\x4f\x34\xbb\x8b\xd3\x0f\x35\x93\xfd\x44\x36\x4c\x51\x11\xb0\xf0\xb9\x36\x93\x6c\x27\x7d\x8c\xd9\x8e\x0a\x85\x8c\x49\xa1\xd2\x5e\xac\x5c\xcd\x38\xc7\x7d\x13\xcf\x5f\xa4\x8a\xfc\x51\xa0\x5c\xf1\x39\x90\xc9\xc4\xd3\xa3\xab\xcd\x24\xcb\x0b\x12\x01\xf0\x59\xd2\x06\xa5\x52\x70\x71\x72\xf8\x35\x0e\xc7\x8e\xcf\xe9\xe5\xa8\xb1\x87\x6a\xe9\x4b\xd8\x13\x9c\x8a\xe6\x39\x82\x8b\x1a\x9f\x10\xab\x3f\x9d\x8b\xc6\xfa\x52\x22\x14\xdc\x60\x5e\x76\xf9\xd2\xfc\xf8\xd3\x3c\x97\x2c\xae\x41\x39\x5f\x59\xd3\xcf\xfa\xf7\x9b\x48\x5b\xb8\x0c\x53\xb9\xe6\xc1\x5c\xae\x47\xba\x8a\x49\x08\x38\x9d\x68\xe3\x23\x6e\x01\xdb\x20\x04\xed\x7a\x2b\xf4\x11\xaf\xbf\x48\x6e\x83\x59\x20\xcf\xb5\xdb\xea\xc3\x78\x57\xf9\xb5\xd7\x89\x34\x98\x7a\xee\x72\xf9\x93\x97\xc2\x90\x3f\xf1\xdb\x92\x6d\xf7\x1d\x49\x91\x71\xb8\x7c\x5e\xd0\x80\xb3\x06\x2f\x52\xb3\x86\x12\x39\xd5\x6b\xbc\xec\xe7\x36\x0c\xc4\x4e\x72\xc1\x76\x8a\x21\x29\xff\xcc\xb7\x5c\x7f\xc4\x2c\x07\x1c\x99\x71\xc5\x7e\xdc\xa0\x98\xa0\xde\xda\x9b\x18\xa6\xf3\xf6\x87\x66\x4a\x45\x91\x25\x1b\x83\xc2\x79\xfd\xf4\x63\xf9\x43\x99\xb2\x6a\x65\xaa\xf8\x53\xbc\x40\x6a\x51\xd5\x7c\xc0\xdd\xae\x0f\x16\xf6\x4a\x8f\xc6\xbd\x73\x0a\xff\xa9\x56\xe3\xfc\x8d\xf8\xf2\x2c\xa1\x60\x8e\xfb\x44\x4c\x35\x66\xa7\x73\x5d\xaf\x8b\x14\xaa\x99\x47\x6b\x1f\xe4\xea\x5c\x5b\xad\x9f\xd3\x05\x79\xb7\xe8\xeb\x4c\xe5\x73\x0e\x4b\xad\x7f\x70\xe9\x82\xdb\x86\xf7\x18\x33\x61\xc0\xa5\xaa\x94\xd2\x66\xe3\xc7\x53\xe4\xa2\xe0\xec\xb8\x3c\x5d\x5a\x74\xf2\x32\x84\x11\xed\xc6\xa0\xaf\x5f\xce\xfc\x1c\xf1\x97\xce\xaf\x9b\x43\x44\x9f\x84\x38\xdb\x49\x5a\xb2\xdb\x17\xce\x7d\xa0\xd6\xf9\x83\xb0\x23\xde\x30\xf0\x23\x05\x0a\xb1\x85\xd6\xd1\xac\xfa\xd8\x6a\x9d\x77\x2a\x91\x1d\xc2\xd0\x0f\x1c\x5a\x2c\x3e\xca\x72\x73\x92\xbe\xa4\xa7\xa1\x6c\x91\xf4\xc4\x1f\x8f\x3c\x9f\x75\x0b\x24\xc9\x5b\x74\x3f\xca\x9c\x0a\x92\x35\xf6\x71\xa0\xce\x7f\xc9\x16\x3d\xed\xf7\x5b\xcb\xaa\xb8\xd7\x77\xee\x63\xa2\x61\x00\xa8\x98\x21\x02\x1e\x1e\xee\x10\x21\x6e\xe1\x39\x57\x5e\x9f\xbe\x4c\x5e\x87\xad\x18\x69\x6f\xf8\x4d\x9b\x8c\x8a\x6a\x5f\x48\x59\x38\x36\x77\xe0\x79\x6c\x04\x93\xf7\xff\x0d\x1c\x7f\x38\x93\x31\xea\xfe\xb4\xca\x4d\x9b\x9b\x91\x5a\x1e\xd3\x31\x3f\xa0\x18\x1b\x3d\x66\x59\xb9\x26\xad\xa3\x7e\xdf\x7f\x94\x29\xf0\xe2\x8e\x57\x79\x87\xaf\x06\xbf\x14\x34\x5e\xa6\x85\x49\x45\x31\xaf\x62\x00\x3d\x4b\x49\xba\xb9\x09\x22\x78\x8c\xb9\x49\x63\x9b\xec\x92\xc8\xa4\x1b\x7b\x49\xa1\xaa\xb6\x3b\x4e\xf5\xd2\x44\xad\x20\xe9\xcc\xb6\xe4\x6d\xf3\x12\x0a\x99\x3e\xa2\x4d\x3a\xd6\x3c\x19\x3d\x2d\x35\xfb\x12\x19\x14\xba\x17\x8f\x5d\xae\x5a\xfa\xce\x06\xa4\x2f\xca\x3c\x83\xd4\x9c\x34\x6d\x5e\x43\x5e\xc5\x1f\xf5\x84\xab\x4a\x74\x77\x53\x88\x83\xc9\xd2\xb4\xe0\x07\x0c\x1c\xf6\xe5\x22\x7c\x04\xba\x8e\x96\x2b\x0d\x06\x68\x24\x6f\x35\x39\xff\xb6\x69\xb2\x4e\x5f\xd5\x4f\xe1\x6b\xa0\x0d\x6c\x4b\xb9\x01\xc8\x6a\x75\xb5\xf3\x56\x96\xf4\xcb\x89\x42\xe4\x45\x12\x0e\x89\x75\x67\x0e\x70\x92\xcb\x8d\xa0\xcd\xba\xc8\x5f\x88\xe7\xb0\xde\x13\x0a\x29\xa5\x3d\xb5\x8d\x85\x60\xcc\x96\x7f\xf6\x58\x31\x96\x7f\xb7\x03\x8f\x49\xb1\x9f\x4b\x54\xde\x16\x78\x7c\x8e\xfd\xcc\x07\x5c\x23\x31\xb9\x15\xf3\xbc\x53\x39\xd4\xf5\xf5\xf3\xa1\x2a\xda\x69\xf7\xe5\x99\x97\x16\x91\x43\x12\x7e\xf8\x33\x1c\x6e\xb1\x95\xc5\xf9\x0f\x4f\x5f\x71\x5b\xf3\xdb\x15\x77\xb5\x4b\xbc\x5f\x60\xba\xdc\x04\x36\xfd\xc5\xfc\xe7\x9d\xa4\x88\x5f\x7b\x51\x61\x4a\x94\x57\x3c\x0c\x91\x50\xa0\x3b\xed\xad\xa6\x80\x6f\xd1\xcf\x01\x5b\x58\x9d\x93\x63\xfa\xe7\xbf\x20\x0b\xc7\xf7\xf3\x41\x92\xc5\x4a\x58\x8b\xb7\x9c\x87\x65\xab\x97\xce\x90\x50\xf7\xca\x39\x4e\x4e\x01\x3a\xa9\xa7\x8a\xe9\x1e\xb8\xbd\x58\x7e\x81\x7f\x29\xd2\xde\xda\x3a\x14\xa8\x8b\xd2\xb1\x7a\x93\x3e\x3a\x73\xa6\xc9\x35\x31\x1d\x36\x6a\x73\x39\xce\xfc\x6b\x7e\x27\xaf\x14\x4f\x2e\xbe\xc3\xe4\xd0\xf0\xb9\xc8\x6c\x47\xb5\xa8\xda\x0c\x41\x9b\x81\x7e\x3b\x98\x1e\x59\x47\xec\xb2\xee\xa8\xde\x69\x47\xda\xea\x07\xd8\x49\x65\xa9\x9f\x34\xff\x86\x28\x61\xe5\x21\x13\xe7\x0d\x74\x8d\x42\x39\xff\x0c\x66\x29\x68\x76\xc8\x14\x7a\x8e\xbe\xc0\x19\xb4\x63\x75\x1e\xbf\x38\x1b\x91\xc7\x85\x7d\xcf\xda\x69\x73\x11\x4b\xe0\x3e\x73\x49\xa8\xad\x4e\x12\x55\xe7\xb7\x34\x9c\x17\x9e\xf3\x20\xec\x7a\x70\xb3\x1a\x58\x33\x36\x03\x16\x51\x7e\x79\xfe\x4b\x40\x3a\xaf\x9a\x47\x28\x38\x21\x0c\x29\x06\x01\xb9\x33\x12\xd6\xd9\x0a\x68\x96\xae\x43\xe4\xa1\x33\x5e\x7e\x39\xe9\x23\x2b\x89\x24\x8c\x8f\x91\xd6\x66\x5e\x83\xa1\x23\x00\xf6\xd1\x7b\x98\x98\xd9\x62\x07\x08\x1c\x52\x1b\x08\xa9\x73\xde\x70\xf6\xdb\xd4\x0b\x4a\x7e\x3d\x7d\x87\xe0\x5e\xa7\xa1\xfb\xf3\xde\x3b\xe7\x3f\x2a\xb7\x09\xa1\x30\x29\x62\xb4\x77\xcf\x92\xfe\x72\x85\xe5\xf0\x1c\xbb\x41\x2c\xc2\xcd\xe4\x02\x51\x6a\xb3\x70\xdd\x7c\x2b\xe6\x6c\xe9\x21\x5d\x94\x61\xa9\x41\xd4\x8e\xfa\x88\x62\x58\xd9\x7f\x8e\x7f\x95\xea\x18\xd8\xe2\x4a\xef\xcb\xcf\xea\xd0\x3d\xa9\x01\x58\xad\x17\xb7\x3c\x9c\x96\xc7\xec\x9c\x6a\x70\x27\xfd\xac\xc1\x9d\xba\x72\x3f\x4b\x77\x12\xcc\x42\xa0\xab\x5f\x90\x0f\xa6\xa6\xae\xa1\xfb\xd5\x15\xa4\x63\x3b\x45\xb8\x91\x49\xec\x27\x1e\xd1\x4e\x3a\x43\xc5\xa5\x65\x3c\x83\x28\x80\x4b\xd6\xde\xa1\x2f\x20\xf3\x14\xd0\xb1\x57\x77\xab\x65\xb6\x87\xb5\xfa\xef\xbe\x65\x36\x48\xf4\xff\xa5\x45\x75\x92\x4d\x36\x06\x7a\x66\xdd\x47\x84\x2d\x8f\x39\x43\x09\xbd\x9f\xed\xdd\xf1\xed\xa2\xe8\xe7\x92\xa1\xeb\x3b\x87\xe8\xbd\x77\xe9\xd2\x85\xf5\xf2\x2a\x17\x8e\x50\xbb\xf2\x7e\x42\xa6\x9e\x79\xb8\x8b\x9d\xbc\x58\xcb\x52\x65\x3f\x75\x07\x42\x2a\xd7\x2e\xf0\x6f\x2d\x2d\x56\x48\xdc\x56\xa6\xf1\x78\xf5\x8a\xbe\x2b\x65\x1e\x9b\xb5\x90\xaf\xf1\x18\x51\xaf\x69\x85\x65\x74\xab\x96\x9e\x48\xa3\x60\x44\x76\x15\x6d\xb4\xb2\xb4\xa7\xd1\x23\xa5\xc6\x51\xf8\xc5\x96\x7b\x68\x43\x7f\xcc\xe1\x1e\xb4\x07\x1d\x1a\x70\x38\xbb\x5a\xce\x4e\x60\xda\x92\x53\xe9\xad\xca\xdb\xeb\xe6\x01\x66\x5b\xb5\xfe\xf1\x86\x50\xed\xf8\xb3\xb8\x35\x30\x86\xea\x77\xf8\x97\x36\xfe\xd8\x2e\x53\x96\x47\x35\x03\xfe\x6b\xed\xc4\x66\xe4\x25\xfd\x9a\x3b\x62\x62\xdd\xac\x26\xe3\x82\x59\x3a\x9c\x59\xc1\x0e\xb6\xe2\xc7\xa8\x5c\x85\x6d\x78\x8e\x1e\xa8\x06\x79\x79\xe3\xee\xab\x7d\x62\xf9\x67\xb3\x93\x30\x6a\xb6\xbe\xb0\xc3\x20\x23\x81\xca\x44\xdd\x83\xc7\xdc\xba\x1f\x9b\xaf\x86\x2d\x48\x4e\xdb\x9a\xd5\xeb\xe2\xb4\xbf\xf6\x51\xbf\xe1\x56\x27\x91\xd6\x71\x1e\xf2\x9d\x76\xc3\x5c\x0f\x5b\x54\xea\x1c\xa1\x48\xec\x47\x0f\x6f\xc2\xb1\x9f\xfa\x8f\x0e\xce\xdc\x27\x7a\xc3\x3a\x74\x3f\x05\x91\x3a\x21\xaf\x84\x70\xea\x31\xee\x05\x1d\xff\x31\xf5\x5e\xea\xd6\x3d\x9d\x67\xad\xd3\x27\xdc\xa7\x45\x50\x05\x6e\x2b\xe0\x53\x24\x58\xf8\x9a\x7e\x77\x44\xe6\x45\xea\xd7\xb5\x9f\xc9\x8b\x25\xf4\xcb\xeb\x96\xd5\xb3\xdc\x73\xfe\xef\x4c\xe7\x3f\xe3\x29\xa1\x47\x84\xf4\x20\x3f\xa1\x13\x20\x06\xcf\xd3\x8f\x49\x1f\x4d\x8b\xd3\xbf\xa0\x1f\x1b\x48\x20\xc9\x0e\x71\x33\x38\xd5\xa1\xbf\xf6\x17\xcf\xea\x6d\xa2\x64\x89\x45\xb4\x65\xf6\x28\xda\x5a\xb0\x49\x5e\x4f\xd5\x4d\x4a\xbb\x98\x12\xae\xf9\x93\xa6\x79\x4b\xa9\x26\x77\xd9\xd5\x99\x8e\x0f\x37\x72\xf7\x43\x8a\x25\xf8\x3c\xf0\xa8\x12\xc0\x47\x91\xa6\x1d\x80\x8e\x68\x0b\x58\x20\x93\xfc\x7d\x75\x85\x9e\xc3\xc3\xa0\x5b\xfc\x43\xc1\x1f\x08\xad\xbb\x6b\x7e\xb4\xed\xab\xf9\xda\xab\x2a\x8f\x01\x7f\xb6\x01\x40\xe0\x77\x17\x7e\xb3\xa9\x86\x64\xfa\x21\x7f\xdd\x86\xaf\xdc\x84\x7f\xb7\xb1\x16\xb9\x36\xc3\x84\xe9\xcb\x2e\x7e\x39\x9e\x4a\x22\x62\xb8\xde\xdc\x1b\xe0\xd4\x57\x15\xfc\xbf\xd8\xe6\x0f\x7b\x58\x0d\x1f\x14\x78\x48\xbf\x79\x64\x7a\xc8\x85\xe6\x75\x48\xef\xbe\x72\x59\x37\xe9\x01\xda\xc8\xe5\x31\x18\x99\x10\x95\x6c\xa7\x83\x8c\xdb\xd0\x94\xa6\x9c\xd3\x0c\x4d\xe1\x7b\x5c\xfd\x21\xcd\xe4\x09\x26\x3a\x5b\x5d\xd9\x8d\xe3\xcb\xf4\x99\xfe\xe0\xae\x71\x42\xf4\x8d\xff\xa2\x8f\x7b\x71\xc4\xbd\xd2\x1f\xf4\x29\x8b\x76\x9b\x7a\x8a\xee\xfc\xb8\x44\x4f\xd0\xce\x0e\x8f\xe3\xff\x06\x00\x00\xff\xff\x04\x0d\x09\x3a\x4e\xc6\x00\x00") +var _confLocaleLocale_ruRuIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\x6b\x8f\x1b\xd7\x95\xe0\xf7\x06\xfa\x3f\x5c\x6b\x20\xd8\x06\x24\x0a\x8e\xb1\x0f\x18\xa2\xbc\xb2\xe4\xd8\xde\x95\x6c\x8d\x5a\xc6\x60\x10\x18\x74\x35\x59\xdd\x5d\x23\x92\xc5\x54\x15\xd5\xee\x0c\x06\xd0\x23\x8e\x9d\x95\x47\x4a\x14\x67\x93\xf5\x58\x72\x64\x4f\x26\x0b\x04\xc1\x52\x2d\x51\xa6\x5a\xdd\x2d\xc0\xbf\x80\xfc\x0b\xf3\x4b\xf6\xbc\xee\xab\xea\x16\x49\xd9\x99\xfd\x20\x35\xab\xea\xbe\xef\xb9\xe7\x7d\xce\x8d\x06\x83\x56\x27\xce\xdb\xcd\xe9\x37\xd3\x47\xd3\xc3\xe9\x83\xe9\xc1\x74\x34\xbb\xad\x66\xd7\xa6\x4f\x67\x37\xa6\x8f\xe1\xc5\x48\xc1\x97\xa7\xfc\x0e\x0a\xcc\xae\xcd\xae\x4f\x77\xa7\x63\x28\x78\x00\xcf\x0f\xa7\x87\xea\xad\xa4\x38\x3e\xbb\x0a\xaf\x9e\xc1\x8b\x6f\xa7\x13\x28\x70\x08\xcf\x93\xd9\xed\x63\x0a\xdb\x83\xf7\x13\xa8\x3c\xa2\x2a\xd8\x3a\xfe\x51\xb3\xdb\xd3\x6f\x67\x37\xa7\x7b\xd3\xb1\x7a\x2b\x5d\x5d\x59\x5d\xd9\x4a\x7b\x71\x73\xfa\x9b\xe9\x53\x28\xb9\xcb\x25\x57\x57\x3a\x51\xbe\xb5\x9e\x46\x59\xa7\x39\xfd\x8a\x5a\x18\xc3\x58\x3e\x53\xd3\x7d\xe8\xea\xc0\x76\x05\xbf\x1f\x4e\x47\xab\x2b\xf1\x47\x83\x6e\x9a\x41\x33\xf7\x60\xe4\xdf\xe2\x37\x68\x37\xee\x0e\xb0\xf6\x21\x56\x9a\xfd\x72\xf6\xd9\xea\x4a\x9e\x6c\xf6\x5b\x49\xbf\x39\xbd\x03\x6f\x9f\x40\x23\x13\x78\x97\xb6\x93\xa8\xdb\xb2\x9f\x66\x1f\xc3\xc7\x47\x6a\xf6\xc9\x74\x4c\xb3\xfb\x96\x56\x60\xf6\x0b\xf8\x7f\x3c\xbb\x3e\xfb\xec\x35\xf5\xa3\xe3\xd3\x27\x6a\xf6\x29\x8c\xeb\xa1\x3a\x99\xf7\xa2\x6e\xf7\x14\x7c\xdc\x85\x99\x3d\xa6\xa1\x8d\xd5\xec\x06\x55\xbf\x3e\x3d\x80\x5f\xb7\x14\x0c\x49\x56\x63\xf6\xd9\xc9\x13\x5c\x43\x46\x93\x0e\x0b\xec\xf3\x26\xf7\x2a\x2f\x87\x30\xf0\x3f\x40\xd7\x0f\xa9\xca\x75\x18\xc6\x68\xf6\x0b\x5c\xd8\xd5\x95\x2c\xde\x4c\xf2\x22\xce\x9a\xd3\xdf\xc1\xcb\xab\x5e\xa1\x09\xfc\x3b\x84\x35\x1c\xe1\x30\xe1\x1d\x14\xdf\x8e\xd7\xf3\xa4\x88\x71\xc6\xe3\xe9\x83\xe3\xb4\x1d\x30\xf1\xd5\x95\x2b\x71\x96\x27\x29\x2d\x05\x4c\x13\xde\x53\xeb\x83\x68\x13\xca\xde\xe7\x2e\x69\xa1\x7f\x81\xcb\x5b\xc4\xbd\x41\x37\xc2\x66\xfe\x0f\xbc\x7e\x00\x5b\x05\xbb\xb0\xba\xd2\x8d\xfa\x9b\x43\xaa\xf1\x7f\x79\x4f\x57\x57\xda\x59\x0c\xe5\x5a\xfd\x78\xbb\x79\x86\x7e\x2a\xf8\xd9\x68\x34\x56\x57\x86\x79\x9c\xb5\x06\x59\xba\x91\x74\xe3\x56\xd4\xef\xb4\x7a\xb8\x61\xef\xc3\x5b\x25\x6f\x15\xbc\x55\xf8\x96\x57\x21\xee\xc0\x7e\xb4\xa2\xbc\xb9\x46\x0f\x2a\xe9\xab\x28\x47\x80\xc1\x96\xfa\x11\x02\xcd\xef\xa7\xfb\x08\x56\x08\x7f\x00\x1d\xb8\xf1\x3c\x7b\x82\x16\x98\x4e\xdc\x8b\x92\x6e\x73\xfa\x97\xe9\xd3\x06\x95\x9a\x7d\x02\xdf\x46\x38\xcd\x3c\xdf\x4e\x05\xb8\x68\xd1\x9e\x22\x78\x64\x71\xab\xd8\x19\xc4\x0c\x34\xbb\x0c\x63\x30\xa5\x68\x50\xb4\xb7\xa2\xe6\x19\xfe\x8b\x23\xc8\xe2\x41\x0a\xcb\x9a\x66\x3b\xbc\x4f\xa5\x03\x30\x7d\xb2\xba\x92\x66\x9b\x51\x3f\xf9\x59\x54\xd0\x22\xdf\x83\xd7\x0f\x79\x45\x11\x16\xf4\x66\xf6\x92\x2c\x4b\x69\x2b\x11\xd4\xf6\xa0\x00\xac\xec\xea\x0a\x2c\x59\x0b\xbb\x68\x4e\xef\xd2\x40\x6e\x22\xb8\x05\x0e\x1a\xf6\x83\x65\x7b\xc9\x66\x46\xbb\x73\x57\x16\x00\xd6\xe4\x4b\xf8\xfc\xd0\x05\x1c\x2c\xb8\x91\x66\x97\xdd\x46\xa7\xcf\x68\xf2\xe3\xe9\xde\xec\xba\xc2\xa1\x05\xbb\xd1\xb5\x61\x4a\x5e\x17\x75\x93\x8a\xfa\x00\x13\x5c\xfa\x1b\xea\x01\xcf\xf5\x53\x42\x1d\x13\x38\x1b\xa1\x7a\xf0\x11\xe6\x12\x75\x7a\xb0\xe3\x83\xa8\x1f\x77\x4b\xc7\x7e\x04\xb8\x68\x9f\x8e\xbb\x3d\x10\x3c\x3a\xd8\xcd\xa8\xdd\x4e\x87\xfd\xa2\x95\xc7\x45\x91\xf4\x37\x73\x1c\xe4\x48\x8a\xc1\x31\x87\x75\x9d\x60\x0b\x7b\xb8\xc0\x80\xdc\x0e\x18\x06\xe6\x94\x5e\x5d\xd9\x49\x87\x06\x58\x9b\x7f\x0f\x0f\xea\x02\x3f\xc8\x27\x53\x99\xbe\xad\xc9\x13\x82\x06\x2c\x54\xde\xda\x88\x63\x80\xad\x7f\xc1\x29\x63\x67\x8a\x50\xe6\x2e\x8c\xf7\x1a\xc1\x26\x4c\x75\x30\xec\x76\x61\x8f\x7f\x3a\x8c\xf3\x22\x6f\x5e\x80\x27\x75\x51\x9e\x56\x57\x92\x3c\x87\x5f\x8c\xa5\x68\x87\xa0\xde\x4d\x6c\xbc\x1d\xf5\xdb\xb8\x36\xf7\xa0\x99\x7d\x5a\xd0\x11\xbe\xfe\x49\x1e\x47\x59\x7b\xeb\x03\x9c\x14\xfe\x60\x00\x46\xdc\xbb\x47\x47\x6f\x09\x70\xc5\x33\xc5\xd5\xaa\x07\xe9\x33\x19\x11\x7c\xa7\x35\x7a\x40\x9b\xb9\x8f\x7d\xb7\xd3\x0e\xbc\xfe\x82\x51\x17\x0c\x24\xe9\xe7\x05\x20\x37\x18\x89\xfc\x02\x10\xa0\x49\x8f\x64\x09\xf6\x08\x9d\x24\x05\x2c\x6b\xe9\x0b\x1c\x4e\x58\xad\x9b\x88\x3c\x09\xb3\xe2\xa6\x31\x01\x82\xf1\xe2\xf1\xd8\x15\xb2\xc3\xc8\x14\xf0\xea\x35\x6e\x0d\x57\x11\x50\x5c\xab\xb3\x2e\x24\xed\x73\xaa\xf5\x56\xba\x99\x2b\xda\x55\x40\x7c\xb0\xed\x88\xbb\x01\x25\xaa\xf3\x3b\x6b\x7f\x7b\xee\x98\xba\x90\xe6\xc5\x66\x16\xc3\x6f\x04\xfc\xa7\xd0\x1b\xfc\x84\x66\x5e\x85\xf5\x82\x96\x64\x88\x01\x40\x02\xca\x88\xc8\x0e\x07\x47\x94\x0d\x51\x37\x57\x21\xd4\xf1\x35\xb4\xf6\xac\xae\xd4\x16\x74\xda\x9c\xfe\x91\x01\x61\xe1\xa2\xd7\x60\x29\xe8\xca\xc3\x7e\xb5\x03\x42\x02\x88\x1d\xf0\x7a\xd0\xbc\x15\x41\x85\xc1\x97\xb0\x2c\x4f\x98\x5e\x5d\xa7\x61\xd3\x76\xe0\xf6\x02\xde\x57\xef\xf4\xfb\xe9\xd9\x37\x80\xf8\x29\x98\x38\x6c\xb0\x21\x2f\xf8\xf4\x44\x0d\x8b\x8d\xff\xda\xda\x8c\xfb\x71\x06\xd4\xb3\x9d\xc0\xb2\xe5\x79\x17\x90\x3a\x02\x04\x02\x19\x90\xc2\xe9\xbe\x5a\x5b\x3b\x87\x13\x29\x10\x26\x61\xcb\xae\x13\x15\xfe\x69\x17\xf7\x4b\x0f\x4f\xde\x43\x2f\x6a\xf6\x73\x24\x4f\xc8\x82\x84\xa7\xe5\xec\x51\x9c\x65\x2d\xa0\x4a\xc5\x4e\x4b\x9a\xf3\x3a\xc1\xc6\xb8\x05\x44\x38\x81\x16\xf0\x48\x8e\x99\x9d\x78\x8c\xa0\x01\xa5\xe1\x33\xd5\x24\xd0\x82\x9f\x37\xa7\xfb\x0d\x04\x6a\x3d\x47\x01\x09\xe0\x30\x66\xbf\x64\x44\xf6\x8c\xb6\x65\x84\x47\x11\x61\x04\x06\x8b\x40\x07\x08\x09\xb8\x2b\x9f\x40\xd1\x31\x7b\xca\x9d\x11\x12\xbb\x6d\x4b\x99\x85\xf8\x86\x28\x80\x66\x21\x60\xe8\x8f\xa0\xdd\x6b\x38\xa4\x03\x9a\xc9\xae\xe0\x4c\xf8\x86\x70\xf2\x29\x62\x12\x26\x6b\xd8\xf9\x6d\xa4\xed\xb3\x5b\x30\x36\x7a\x7d\x18\x40\xb2\x93\x17\x18\x17\x54\xd6\x8a\x4a\x1f\x20\xaf\x57\x83\xfe\x4d\x2d\x33\xd8\x3b\xc8\x0e\x01\x9f\x43\x8b\xcb\xc8\x5d\x4e\x6f\x88\x50\x4d\x90\x59\x54\x74\x0e\x1f\x61\xaf\xcc\x52\x7d\x2c\x5c\x06\xa2\x49\xd8\xe8\x5d\x35\xfb\x67\xac\x81\xc3\x67\x68\x23\xc2\xa4\x9b\x40\x44\x36\x04\xde\x68\xfe\xa1\xd1\x45\xec\xaa\xd6\xf2\x07\x8a\x58\xdf\xa7\xbc\x27\x0e\x00\x3c\xe2\xf3\x09\x63\x7d\x46\x70\x84\x00\x71\x1d\x8f\xfe\x9e\x5d\xaa\x5b\x35\x4b\xa5\xa4\x9c\x83\xa3\x00\x98\x11\x2c\x10\xaf\xa4\xc0\x8f\xf4\xf1\x40\x1e\x32\xfa\xd6\xaf\xec\xaa\xd2\xd9\xbb\xcd\x10\x89\xdc\xf2\xfb\x17\xcf\x1d\x47\xea\x87\xbd\xe1\x06\x1b\x9c\xb8\xc7\x4c\x98\xe5\xf9\x18\xac\x68\xb2\x70\xea\xde\x86\xee\xb6\x8a\x62\xd0\x1a\xa4\x59\x41\xcb\x05\x20\x72\x5d\xbd\x7d\xe9\xd2\x05\xe7\x83\xe9\xf7\x2e\x8f\x68\x76\x95\xe1\xe9\x2a\x22\x82\x63\x3c\x5b\x9a\x9a\xe5\x16\x3c\x30\x46\x50\xa4\x3d\xa5\x01\xb3\xf0\x80\xd8\x1b\xd7\xb1\xc1\x10\x3e\xcc\xba\x4d\x98\xc4\x9c\x33\x00\x25\xcc\x38\xfe\x42\xdd\x5d\xaf\x1c\x2d\x45\x1c\x44\x79\x65\x96\x5b\x0c\x9c\xf3\x09\xfc\x6f\x8d\x36\x07\xeb\xfa\x2b\x8a\x70\x47\x20\xbc\x27\x98\x9e\x45\x9c\x27\x96\x65\x1c\x13\x22\x48\x07\xc8\xcc\x59\x4c\xf0\x07\x22\x0e\x9f\x0a\xa4\x6a\xf8\x27\x09\xa6\xc4\x4e\x10\x1f\x5a\x4f\x53\xac\xd4\x05\xc7\x60\xc1\x58\x90\x11\xc8\x7b\xb0\x7f\x4c\x4b\xbe\x41\x0c\x37\x7d\xaa\xd6\xce\xe3\xc6\xd2\x87\x8d\x2c\xed\x21\xe6\xf9\xd6\x79\xb6\xc8\x56\x33\xc1\x8a\xd7\xd9\x59\x88\x63\xea\xe2\x8f\xcf\xa8\xff\xf4\xea\x8f\x7e\x04\xcc\x32\x6d\x44\x10\x3f\xd2\x5c\x9c\x8a\x9a\x7c\x02\xee\xc6\x33\xb0\x8f\xbb\xaf\x8e\x30\xe6\x3b\xa2\x4e\x52\xf1\xff\x16\x7f\x14\x81\x04\x11\x37\xda\x69\xef\x54\x03\x59\x44\x60\xa5\x32\x39\xca\x7f\xa9\xcc\x77\x24\x5b\xe7\x8c\xd4\xf0\x91\x13\xcb\xdd\x4b\x2b\x41\x32\x59\x5b\x49\xcb\x4f\xad\x76\xda\xdf\x48\xb2\x1e\x9e\x39\x00\x1f\x40\x9c\x9f\x60\x31\x22\x00\x48\xed\x58\xda\x85\xfa\x8f\x11\xba\x05\xd8\x4b\xf2\x96\x60\x55\x1e\x49\xab\x9f\x16\xc9\x06\x71\x58\x48\xb8\x70\x6d\x3e\x75\x5a\xa4\xb9\x30\xdf\x4d\x68\x13\x45\xe9\x47\x74\xea\x9e\xda\xe3\x00\xeb\x01\x72\x59\x0b\xff\x24\xed\x58\x03\xcc\x7d\x61\x7f\xe8\x78\x22\x57\x04\xe7\xf1\x06\x0e\x23\x08\x6d\x0e\x34\x01\xc8\x6e\x6c\x74\x93\x7e\x2c\x64\xd9\xce\xd4\x9c\xde\x43\xd8\xb6\xa7\x44\x74\x0f\x78\x76\x44\xb6\x91\xad\x72\xab\x02\xb2\x18\xa0\x4c\x8a\x7c\xa7\xbf\x58\x67\xce\xbe\xcb\xf4\xf5\x31\x91\x25\x2d\x51\x4c\x88\x5c\xe1\x32\xfa\x6a\x83\x7d\xb7\x93\x31\x60\x98\x5d\x26\x23\x9a\xee\xdf\x54\x0c\x54\x80\x46\xae\x92\xde\x61\xd7\x23\x1a\x57\x89\x0e\x3e\xa2\x3d\x35\x42\xae\xa2\xc3\x4f\xc2\x13\xe0\x78\xe8\x05\x31\x6d\x92\x47\xeb\x20\x67\xf2\x6e\x67\x46\x0a\x2b\x0f\x9f\xe4\xe1\x7d\x61\xcc\x0f\x81\x86\x0a\x1d\x11\xb9\x3d\xb4\xdf\xb3\x5b\xe1\xe6\xf5\x1a\xfd\x8e\x30\xff\x55\x92\xfe\x1d\x80\x0a\xd0\x1f\x5c\x8d\xef\xd3\xff\x31\x45\xa0\x84\xc5\xf6\xf0\x90\xd6\x0a\x47\xee\xf9\xa5\xd5\xf4\xd6\xae\x24\x13\xcd\x6e\x36\x84\x97\x06\x31\x58\xb4\x21\xad\x2b\x09\x08\xf2\x01\x88\xd6\x7c\xb5\x55\x37\x60\x6b\xbb\x86\x58\x6b\x71\xf0\x96\xe5\xe1\x59\x8e\xa1\xc9\xd2\x10\x95\x1e\x2b\xab\x19\xc2\x7d\xeb\x45\xfd\xda\x9f\xaf\xdb\x91\x8b\xf3\x05\x03\x07\xd7\x1b\x4f\x0e\x2e\xc7\x43\x02\x25\x67\x3c\x23\xd6\x9d\x98\x89\xf8\xe3\x9a\xdd\x3c\xc6\xe7\xf7\x9a\xde\x51\x69\x8c\xe7\x22\xcd\xd1\x81\x9e\x30\x1d\xa4\xe5\x71\xc6\x8b\x0d\x82\xfc\x06\x95\x90\x15\xd0\xf4\x27\xb8\x56\xbb\x7c\xca\x81\x31\xba\x51\x19\x46\x43\xcb\xc7\x22\x7b\x8a\xb0\x73\x07\x39\xa7\x03\xe6\x72\x99\x99\x41\x5e\xca\xee\x36\x8f\xa7\x5e\x1d\x35\x57\xb6\xa6\x65\x42\x40\x85\x69\xe0\x02\x80\xb4\xf0\x09\xe2\x9b\x63\x75\x30\x8d\xab\xa7\xde\x39\xab\x9a\xea\x15\x5d\xe4\x06\x1f\x36\x9f\xad\x42\xb2\xa1\x91\x33\x1e\x80\xc9\x82\x61\xc8\x7a\xf1\x6e\x41\x81\x4f\x88\x64\xed\x11\x53\xc8\xab\x52\x4f\x5c\x61\x00\xb3\x5f\xe3\xdc\x99\x8e\x9a\xb9\x2f\xe8\x54\x37\xbc\x9c\xa6\x49\xab\x2e\x82\x12\x9b\x90\x1a\xef\xb3\x4b\x62\x1e\x59\x44\xe1\xd4\xe2\x26\xeb\x54\x58\x22\x5f\xb7\x36\x53\x54\x61\xf8\xa2\x34\xb7\xc6\xb2\x48\x11\xe7\x45\x6b\x33\x29\x5a\x1b\x48\x2d\x3b\xb8\x42\x0e\xdb\x7e\xc8\x20\xf0\x4c\xce\xd0\x98\x98\x58\xac\xfc\x22\x54\x79\x91\x05\xbf\x7d\x6a\x17\x30\xf0\x6b\xea\xe8\x15\x2d\xbd\xbd\x8a\xe4\xae\x15\x5d\x81\x46\x11\x13\x22\x6d\x41\x89\x04\xb9\x29\xab\x4f\x14\xc0\x24\x7a\x4a\x67\xe3\x2a\x61\x7e\xdc\x72\x44\x49\x22\x8a\x09\x30\x3d\x26\x04\x8e\x02\x29\x4d\x45\xb1\x78\x8f\xf0\x26\x32\x2a\xd1\xaa\x09\x91\xdc\x91\x83\x23\x01\x09\x4d\x88\x0a\x5e\xd5\x2f\xec\x08\x6e\x31\x97\x73\x34\x87\x3e\x46\x32\x1a\xf7\xeb\x66\xba\x3e\x4c\xba\x9d\x06\x2e\xe7\x95\xa8\x9b\x74\x50\x89\x20\xe7\x6b\x69\xe1\x5f\xcf\x52\xf3\x1a\x32\x36\xc0\x44\xbc\x60\xba\x69\x47\xf2\xba\x2b\xc4\x5f\x44\x4d\xa4\x86\x9a\xc3\xb6\xe2\xeb\x22\x51\x83\x5b\x37\xf2\x0e\xee\x47\x2f\x2a\x50\xfb\xf3\x35\xf1\x53\x37\x48\x4c\x7d\x52\x7f\x54\x69\xdc\x70\xba\x77\x89\x18\x69\xfd\x48\x0d\xf6\x1c\x03\xb5\xd2\xb8\xdc\x53\xc0\xc0\x30\x72\x75\xfc\x14\xfc\x0f\xb0\x11\x5d\x89\x99\xb1\xda\x9c\x07\x6f\x9e\xf0\x37\x31\x32\x28\xcc\xf5\xe7\xa4\xb5\xbc\x61\x69\x9d\xbf\x84\x1e\x02\xd4\x02\x33\x8e\xe6\x80\x26\x53\xb3\xa6\x25\x51\xc2\x22\xc3\xe7\x43\x08\x7a\x28\x7c\xee\xf2\x61\xbb\x1d\xe7\x39\x0b\x73\x0f\x10\x46\x1c\x30\xb6\x64\xf1\x05\x35\xfd\x92\xb9\x1a\x64\x98\x81\x96\x30\x1f\x88\x8c\xcf\x4d\xfa\x8f\xea\x8e\x88\xa2\x90\x94\xa8\x48\x21\x7f\x8d\x89\x0c\xae\x3d\x9f\x50\x82\xbd\xb1\xe1\x07\x48\x67\x73\x8d\x34\x5b\xb7\x49\x36\xf9\x09\x5a\x51\x3e\x58\x5d\x19\xb2\x46\x21\xed\x76\x90\xb5\x9e\x8b\xb5\x3e\xd3\x9c\xfb\x9b\xc7\x11\xc7\x58\x7d\x93\xa9\xee\x21\xb1\x7c\x3b\x01\xe0\x6a\x19\xc3\x0c\xee\x73\x11\x7f\x44\xc2\x25\x0f\xac\xc4\x46\xf3\x8e\x5e\x27\x58\xbc\x26\x32\x1d\x6b\x74\x09\x2b\x97\x35\xc3\xc4\xd1\xef\xd0\x29\x81\x55\xfd\x12\x99\xc8\x1a\x5d\x02\x22\xd4\x2e\xa0\x9d\x14\x19\xaf\x2b\xb1\xae\x72\x9f\x66\xb7\x4f\x2b\x76\x7d\xae\x32\x82\x3a\x4a\xb3\x4d\xee\x67\x9e\x2a\x7b\xa7\xc5\x2a\x7a\x33\x22\x14\xb7\x8c\xaa\x9e\x95\xaf\x62\x7b\xfa\x40\xf4\xac\x61\x15\xeb\x84\x8a\x46\xc3\x02\xb5\xb4\xd6\x48\xd2\x12\xdd\x35\x8f\xde\x12\x6c\x46\xe4\x0c\xbf\x1e\x97\xe6\x08\x30\x5b\xf1\x00\xc5\x9f\x5e\x4e\x27\x81\xf8\x6f\x9a\x7a\x85\xb3\x7b\x5d\x4d\x7f\xe5\xf2\x1b\x5a\xeb\x87\x90\xf5\x82\x31\x80\x2d\xd3\xae\x73\x74\x46\x06\x11\x30\x1f\x01\x9d\xdc\xf7\x4c\x60\xb0\x08\x08\xa3\x25\xe3\xd9\xec\xd6\x0b\x65\xf6\x99\xcd\x42\xbd\x41\x41\x42\x2b\x61\x50\xb6\xf0\x81\x7c\xa0\x48\x8a\xf8\x56\xf8\xd8\x03\xe1\x20\x3e\xab\x11\xc4\x58\xe8\x73\x65\x9c\x11\x9c\xa7\xaf\xaa\xc4\xe5\x98\xf2\xed\x75\x82\x95\xe6\x1d\xff\x43\xcd\xad\xe3\xd2\x8d\x2a\x22\x06\x2e\x18\x11\xea\x2f\x98\xf7\x7a\x6c\xb4\x62\x44\x85\x9e\x57\xa4\x64\xcd\x85\xd5\x3f\x54\x67\x76\x48\xdc\x7a\x2f\xee\xad\x63\xd7\xb1\xc8\x1d\x44\xae\x0d\x4e\x25\x1d\x13\xc2\xf1\x06\x00\x3b\x90\x07\xcb\x7f\x60\xe1\x07\xc4\x93\x4e\x4a\x5c\x07\x16\x8d\x97\x29\xfa\xba\xb1\x55\x02\xe9\x01\x21\xe1\x2e\xc9\x9c\xa4\x49\x2b\x43\x5f\xd0\x52\xe9\x42\x61\xc3\xf0\x48\x2c\x4a\x91\x3c\x9d\xc7\xfd\xc2\x40\x06\x9b\x9d\x0e\x99\x9d\x20\x80\x23\xa6\xd4\x5a\x08\x82\xeb\x4b\xea\x71\x1a\xfb\xa1\x58\xa4\x3d\x9c\xc3\x2f\xd5\xc9\xf5\x53\x47\xf3\x93\x27\xd6\x4f\x85\x39\x91\x63\x1e\x7f\x04\x20\x7c\xdd\x68\x60\xcb\x92\xfd\x13\x20\xa7\x44\x75\xf7\x48\xab\x84\xb3\xb3\xb2\xf6\xd1\x8e\x62\xee\x99\xc5\x5a\x87\x96\x72\xc3\x9f\x9a\x31\x87\x61\xa2\x61\xec\xd7\x9a\x29\x24\x2b\x36\x73\x8f\x2c\x7d\x23\x54\x33\x51\xb3\xea\x99\x25\xf4\x49\x51\x9b\xf0\x28\x59\xb6\x0c\x42\xfa\x15\xe9\x5e\x27\xc4\x4e\x5e\xb5\x86\x02\xa7\x87\x12\x5a\xa2\xfd\xea\x26\xbd\xc4\xee\xda\x1d\x16\x45\x90\x92\x7d\xca\xbc\xa4\x2c\x01\xd3\x40\x57\x45\x23\x2c\x48\x79\x83\xf9\x50\xea\x91\x18\x5b\xa1\x1c\xeb\x47\xb4\x5b\x7a\x01\x5e\x55\x7c\x76\x89\x87\xba\x19\xde\x4c\x54\x8b\x46\x79\x6b\xd8\x17\x78\x8b\x3b\x72\x6e\x7f\x47\x0b\x86\x72\x06\x69\x2c\xf4\x84\x8f\x01\x5f\x03\x34\xfc\x1b\xde\xf0\x6b\x0e\x8a\x3d\x10\x2c\x5f\x05\xbb\x03\x8d\xb7\x97\xde\x02\xf5\x92\x81\xc1\x97\x61\x6a\xbf\xe5\x35\x53\x2c\x1c\x39\xfc\xe5\x84\xbd\x04\x58\x8f\x5a\x5d\xa8\x5a\x2c\x83\x8d\x30\xad\xc7\xd5\x61\x4c\x4a\xdc\x07\x75\xe4\x92\x9c\xca\x11\x13\x57\x8e\xc7\xb8\xb4\xbc\x3d\x24\xc0\xee\x51\xf1\x67\x5a\xa4\x9d\xe0\xd1\x6f\x08\x14\xe8\x25\xbd\xeb\xd7\x33\xf6\x0c\xcd\x04\x91\xba\x53\x8c\x7b\xe3\xb2\xbe\x4e\xa8\x98\xb7\xf1\x7a\xe9\xfc\x11\x6a\xf5\x2a\x09\x24\x39\x51\x33\xb4\x85\x1b\x55\xf2\xf3\xec\x03\xb3\xc4\x4c\x1b\x0c\x5f\x39\xa1\xc5\xc5\x75\xe7\xf2\xb5\x0c\x24\x92\x37\x3c\xa5\xb8\x04\xb8\x12\x45\x70\x21\xa0\xdc\x2d\x24\xf4\xfe\x32\x04\xa6\x1f\x40\x74\x30\xb4\x07\xa2\xb8\x18\xb9\xd8\xf8\x36\x2f\xbd\x8b\xb7\xef\xeb\x92\xa5\x72\x9a\x97\x66\xd3\x6d\x85\xe2\x6a\xc4\x46\x26\xbf\xb9\x88\x75\x22\xd6\xec\x3d\x0b\x5b\x41\x79\xa2\xca\x94\xef\x37\xca\xc3\x75\x0c\x11\x4b\xc0\x8c\xb3\x0a\x46\x8d\xb7\xab\xb7\xd2\xa1\x65\xa6\xf5\x22\x4d\x5b\xf9\x16\x59\x42\x3e\xc7\xa1\x32\x0c\x3b\xcb\x62\xcc\x81\x63\x3a\xd7\x63\xf5\x9f\xb1\x4d\x54\x52\xee\x92\x56\x05\x4e\x06\xb3\xd9\xbd\xb4\x13\xa1\x79\x7b\x27\x26\xd6\x1f\x38\xc0\x3e\xb9\x69\x8c\x11\x07\xc2\x47\xd2\x00\xff\x9e\x38\x96\xb1\x26\xc4\x54\x11\xe8\x6a\x0f\xea\xa1\xbf\xcb\xbb\xa4\x51\xa8\xb5\x60\x5d\x04\x2e\xf2\x5d\x47\xe9\x10\x96\xfe\x56\x57\xde\x64\xe0\xfa\x95\x07\xde\x0d\x0f\xb1\x5f\x08\xeb\x23\x2e\xc6\x6c\xab\xbe\x23\x5a\xe8\x89\xc6\xbb\x8e\xfa\x7c\x8c\x86\x44\xd1\xb8\xae\xae\xac\xad\xbd\x7d\x89\x15\x2c\x3c\x26\x78\x56\x86\x1d\x81\x45\x78\xbb\x28\x06\xf9\xfb\x62\xea\x21\x5b\x0b\x76\xbe\xd3\x4d\xa3\x8e\x7e\x2b\x62\x12\xda\x97\x51\x03\xf8\x09\x52\x49\xac\x7a\x29\x8e\x7a\x3c\xdd\xbb\x65\x2b\xa7\xab\x7d\x80\xd9\x9c\x06\xee\xd9\x5d\x98\x90\x16\x0d\x19\xed\xd3\x28\x25\xbe\x69\xf4\x26\x0b\x8c\x0b\x73\x55\x40\x56\x2b\x19\x93\xa7\xce\x87\x4b\xda\x8d\x3f\x04\xa2\xda\x1d\x6c\x45\x24\x2e\x49\xdd\xef\xfe\x5c\x6f\x6f\x2c\x1f\x10\x0f\xfa\x44\x9d\xb0\x8f\x67\x80\xe4\xd4\xa7\xc2\x6e\x18\xac\x8e\xbd\xbc\x74\xbc\xf5\x32\x1e\x98\x03\x52\x9a\x18\xc4\xdf\xf8\xee\xa9\x37\x96\x0e\x60\xc9\xff\x7f\xe3\xf1\x0e\x11\x29\xfa\x08\xc3\x18\xc8\x41\xf0\xbe\x4e\xae\x1f\x40\x48\x68\xa8\x79\xf2\x33\x67\xb1\x83\x03\x14\x33\x00\xdb\x2b\x8f\xe6\xb8\xd8\xa4\x16\xb0\x35\x4b\x53\x23\x96\x4b\xeb\x9f\x46\x46\x27\x0f\x00\x46\x4d\x3d\xa1\x33\xff\x44\x71\x8b\xc8\xa9\xe5\xd5\xd3\x8f\x63\xeb\x45\x1f\xb5\xea\xc7\x17\xea\x65\x9f\x68\x18\xb5\x05\x74\x77\x3f\xd8\xf2\x87\x9a\x80\x99\xb1\x87\xf1\xa8\x35\xd5\x11\x1f\xb5\x88\x96\xd1\x88\xd1\xb6\xba\xa0\xd9\xd0\x6e\x97\xac\xce\x87\x02\x46\xc3\xfe\x65\x60\xf5\xfb\xd2\x22\x69\xb1\xd8\xd0\x23\x22\x37\x9f\xad\x43\xb4\x12\xc0\x29\x47\xdd\x90\xf1\x9e\x03\xae\xb5\x9d\x66\x59\xdc\x2e\x9a\x67\x4e\x5f\xb8\x74\xe6\xed\xd3\x86\xd6\x22\xfa\x7b\x46\xc7\x90\xd4\x82\x0d\x07\x6f\x3b\x3a\x2d\xcf\xb6\x37\x99\x27\x51\x55\xf1\xba\xdf\x09\x40\xde\xf5\x86\xeb\x47\xd8\x5a\x8f\xe3\x7e\xab\x88\x2e\xc7\xfd\x45\x8a\x5e\xc5\x42\x8e\xb6\x66\x1f\x90\xc5\xe6\x50\x5c\xac\x5a\x35\x8d\x85\x11\x78\x6d\x53\x20\x80\x55\x5b\xaa\xe0\xc6\xa0\x7f\x87\x95\x76\xea\x1a\x2f\x00\xdb\x2e\xd1\xba\x87\x79\x17\xb7\xca\xf0\x4b\x2d\xc2\xa2\x76\xca\x44\x69\x3e\xcf\xa5\x1b\x2d\x7b\x26\x09\x84\xa2\x72\xb6\xdb\x8d\x37\xd1\xee\xae\x07\x6f\xb6\xe9\x21\x89\x26\xcf\x60\x40\x37\xfd\xf3\x37\x61\x37\x81\x90\x4a\x70\x2c\x58\x52\xcc\x07\x06\x0a\x0c\xd4\x59\x50\x5d\x04\x0d\x9a\xf1\xf1\x28\x67\x8d\x36\xf8\x09\xae\x53\xbf\x80\xb3\x43\x8e\xad\x8e\x4e\xb8\x6f\xf8\x81\xaa\x9a\xe2\x06\xaa\xfd\x34\x89\x76\x19\x21\x31\x16\x69\x91\x83\xc4\x01\xbf\x4f\x66\x94\x27\x0c\x82\x46\xdb\x4a\xc2\xd8\x2f\x49\x10\xaa\x8c\x06\xce\x36\x2a\x92\x69\x38\xdf\x2c\xdd\xb1\xed\x85\x04\xeb\x11\x7d\x81\x11\xa0\xeb\xb0\xa8\xdb\xb9\x58\xa8\x4b\xcb\xaf\x2e\xdb\xa1\xab\xd4\x95\x15\xdf\x15\x11\xe2\x40\xbb\x19\x23\xde\x88\x3f\x4a\x72\xe2\xf7\x46\x6e\xad\x79\x9a\xf0\x6b\xa4\x32\x1f\x1b\x01\x90\x91\x51\x37\xca\x0b\x54\x16\xf2\xea\xb0\xc3\xfc\x88\x51\xa8\xd5\x30\xd7\xd8\xc2\x42\xba\x75\xa2\x97\x63\x12\x26\xd0\x41\x0e\x55\x01\xce\x69\x63\xd5\x82\xbf\x8a\x63\x20\x12\x8a\xf4\xcc\x55\x52\xf8\x31\x31\x53\xac\xe6\x50\x22\x1b\x1e\x78\x4d\x40\xe7\xbf\x20\x74\xa7\x97\x3c\x07\x2e\xe0\x72\xbc\x13\x56\x55\x01\x79\xde\x77\xe4\x20\xb2\x70\x0a\x8c\x57\x6c\x44\x22\x2a\x00\x2f\x78\x5c\x53\xf4\xd7\xc8\x0c\x30\xec\x93\x66\xec\x4a\x9c\x01\x3b\x6c\xfa\x23\x87\xcc\x0a\xfb\xb4\x54\xb3\x24\x84\x1e\xca\xd0\xcc\x89\x26\x2d\xec\x98\xf9\x10\x51\x28\xe0\xdc\x1f\x91\x9d\x92\xfd\x0e\x26\xc6\x7a\x71\x50\xab\x09\xbc\xa1\x2d\x93\xbe\x8a\x47\x5b\x2a\x6a\xec\xf3\x28\x19\xeb\x6e\x65\x94\xf5\x5d\x03\x07\x06\xbc\xab\x31\x89\xdc\xb3\x14\x52\xa1\x06\x85\x4a\x1e\x90\x61\xf3\xe7\xcc\x16\x33\x3a\x67\x8b\x03\xf0\x44\x05\x60\x40\x84\x3f\xe3\x15\x3e\xb2\x2e\x80\xfb\x65\xdf\xe6\xb1\xf6\xaa\x10\x1e\x5e\x46\x3f\xb2\x50\x88\xeb\xb6\xa7\x34\xd7\x2b\xac\x89\x01\x9e\xa0\xce\xfc\x09\xa9\x4c\x0f\xc4\x20\xf7\x54\x06\x40\xca\x09\xa3\x50\x30\x56\x1e\xd9\x47\x83\x1c\xf9\x74\x1a\xdd\x36\xea\xb6\x90\x6a\xf0\xb4\x50\x1d\x43\xbe\xe2\x62\xc9\x1e\x69\x1d\x87\x35\x7e\xec\xd6\x90\x3b\x1a\x93\x76\x0e\x1e\xa1\xe5\x44\xab\x4b\x48\xd8\xd0\xba\x92\x7d\x6d\x9b\xd9\x33\xda\xa1\xcf\x58\x3d\xad\x5d\x97\xbc\x81\x0b\x09\x2e\x2f\xba\x20\x12\xcd\xe3\x04\xec\x05\xa5\x75\xaf\x9e\xfe\xea\xc1\xde\x0f\xaf\x36\x9c\xf8\x63\xe1\x79\x2c\x58\x63\x6d\xfd\xd0\x5f\xd1\x3a\xb9\xab\x9c\x7d\x63\x4f\x36\x3b\x37\x71\xc1\x62\x51\xc8\x3d\x8b\x7b\x2c\x21\x63\xcf\x2c\x30\x8b\xf2\x5d\x78\xaf\xe3\xec\xe3\x42\x3b\x8f\x78\xf0\x46\x2d\xfd\xe6\x79\xb8\x9e\x84\xfb\x9a\x7f\x0b\xfa\xc4\xb0\x88\xa0\x0f\xba\x76\x68\x98\x3b\x43\x32\xcb\x70\x13\xfb\x0c\xa6\xd4\x66\x75\x5f\x81\xff\x89\x48\xbd\xbd\x9e\x45\xfd\xf6\x96\x4b\x27\xfe\x4d\x0e\xab\xc4\x36\xec\x92\x82\x67\x4f\x5b\x8d\x43\xb4\x81\xc4\x7a\x5c\x3f\xb4\xe8\x6c\x45\xfd\xcd\x18\xed\xe1\xd0\x41\x49\x01\xe0\x68\x8b\xc5\xf7\x06\x69\x17\xeb\xd1\x36\x33\xae\x82\x8e\x71\xa6\x95\xf6\x30\x2f\xd2\xde\xf3\x35\xb6\x5b\xf5\x04\x1b\xa1\x1b\xf8\x3f\xa4\x20\x19\xa1\xef\xd3\x57\x84\x5f\x11\xdf\x8f\xf9\x9c\x13\xe8\x8c\xf8\x80\xed\x39\x31\x02\x49\x5c\x6f\xc2\x22\x45\x71\x52\xec\xb8\xda\x61\x63\x94\x41\xdb\x41\xb7\x9b\x6e\xc7\x68\x2d\x63\xed\x2c\x6b\xb0\x58\xd4\xc7\x50\x2b\x98\x4f\x86\x08\x10\xa7\xf4\x40\x38\x12\x62\x0d\x74\x5d\x32\xeb\x3a\x75\xb1\x04\xae\x33\x6a\x4f\x1a\xc4\xa5\xa1\xde\x28\xbb\xc2\x8d\xcc\xe5\xcd\x5e\x3c\x9a\xbf\xc8\x70\x41\x41\x5c\x82\x25\x5c\x6f\x21\xc4\x41\xb6\xe1\x41\x54\x00\x6f\xd2\x67\x35\x22\xcd\x63\x71\x1f\xdf\xfd\xf9\x68\xfe\xdd\x53\xc7\xff\xc6\xa1\x4b\x86\x7b\xa5\xf8\x0c\x0e\x10\x01\x48\xd1\x41\x25\x1c\x4b\x41\xf8\x7e\x9e\xb3\xbf\x10\xcf\xbc\xe9\x69\x5c\x4c\xd8\x1a\x7a\x7e\x68\xcf\x1e\xe1\x6c\x1d\x63\xf6\xae\x6f\x7c\xbb\x8d\x00\x11\x0d\x06\xdd\xa4\x4d\x66\x96\x5c\xa0\xa2\xec\x94\xcb\x96\xd1\x50\x94\x0e\xf4\xdb\x89\xbb\x71\x11\x1b\x36\xc8\x51\xd5\xba\xd6\x80\x61\xd2\x69\xbe\xff\xce\x59\x9c\xfc\x60\xb8\x0e\x1d\x9a\x60\x1a\x76\xc2\x43\x3c\x40\xaa\x12\x1d\x83\xe4\x2c\x84\x84\x88\xb1\x7b\x93\x15\x24\xa6\xd6\xe7\x7d\x09\x99\xa2\xca\x79\x11\x2b\xfd\x94\x7c\x87\x0e\x44\x57\xe1\x3a\x2f\xfb\xe8\x4b\xc3\x88\x31\xd3\xc0\xba\x13\xd3\xf5\x71\xd0\x77\x53\xc8\xa3\xd1\x1a\x8b\x63\x88\x18\x2f\x1c\xda\x7c\x88\xdc\x0a\x62\xa6\xeb\xf4\xe1\x31\xc3\x4d\xa9\x07\x9f\x8d\x90\xb6\x0f\x3d\x2b\x91\xb4\xef\x85\x28\x92\x69\x12\x41\x1a\x43\x8b\x98\x89\xff\x57\x00\xe0\x7b\x73\x82\x00\xbb\x69\x5b\x5c\x23\xbf\x14\xdc\x76\xc8\x6b\x30\x75\x5c\xbc\x61\x37\x07\x1d\xb4\x57\xdb\x2d\xa4\x78\xd1\x43\x47\x53\xed\x6f\xa1\x5f\xde\xba\x4a\xdc\x11\x9b\x99\x5b\x5a\x84\x4b\x45\x07\xe7\x19\xb9\x18\x1e\x30\x2b\xa7\xfb\xd0\x2c\x94\x60\xc7\x65\xa3\xff\x28\x9e\xcd\x68\x74\x0f\xd0\x4e\x50\x6a\x41\x40\xec\x39\x9b\x11\xea\xc4\x9c\xb7\x51\x9d\x12\x20\x6a\x82\x45\xab\xf2\xba\x71\xa2\x7e\x26\xd3\xf0\xdc\xd7\xb5\xe7\xab\xf1\x0d\x14\x76\xc6\x83\x21\xb6\xa0\xbb\x90\xbf\xc0\xf4\x80\x3e\x19\x49\x1f\x43\xb5\x3e\x17\xae\x7e\x5c\x1b\x35\x16\x33\x97\x5e\xa2\x36\x65\x6f\xe8\x6a\xf4\xaf\xb6\x6e\x19\xea\x13\x6e\xca\x89\x69\x70\x5a\xc4\x19\xfd\x33\x3a\x01\x2a\xc2\x96\xda\x9f\x55\x74\xfb\xbe\x99\x5b\x80\x0b\xe7\xc8\x72\xfe\xb7\x64\x6e\x82\x15\x79\x4b\xc8\x26\x6e\x69\x9a\xe6\xe2\x4a\xa1\x67\xa0\x9d\x6a\x02\x9e\x14\xce\x98\x05\x48\x75\xad\x0a\x4c\x97\xc8\x29\x8e\xd8\xa9\x8f\x4b\x38\x1c\xa0\x7e\x1b\x84\x59\x99\x30\x51\x8e\x56\xd2\xa3\x88\xd8\xdf\x99\x51\x3f\x66\x29\x85\xcd\xc3\xe2\xe8\x5c\x67\x2b\x99\x10\xf8\x31\x69\x7c\xec\x28\x71\xd1\xcc\x50\x5a\x5e\xc7\xf7\xee\xfe\xc2\x2d\x32\xba\x10\xed\x81\x89\xe5\x3c\x55\xec\xc4\xe1\xcd\xb9\x74\xc9\xf3\xa2\x51\x5a\x32\x7b\xac\xcb\x7e\x72\x8e\x70\xf2\x50\xfc\x75\xed\xb2\x55\x4e\x36\xf1\x69\xee\xd9\x27\x92\x29\x47\xd5\x35\x67\x39\x16\x95\x92\x9d\x27\xed\xba\x8a\x84\x8a\xf7\x9b\x53\x12\xe1\xc4\x96\x74\x03\x61\x83\x76\x23\x47\x13\x54\xdf\xea\x5c\x8d\x4f\x69\x1e\x76\xd1\x5c\x7d\x26\x09\xda\x82\x60\xca\x8b\xa1\xa8\xe7\x67\x2c\x97\x0a\x63\x6c\xc4\x67\xe6\x06\x25\x94\x9d\x50\xc5\x81\x55\xc5\x9b\x21\x0a\x04\x89\x9a\x2e\x77\x88\x2a\xae\xfd\x62\xf7\x00\x09\xe8\xd5\xb5\x83\x31\xbd\x4e\x1c\x09\xf1\xf7\x4b\x34\xcb\x4a\x43\xf1\x62\x66\xca\x70\x68\x98\x77\x29\xfe\x5c\xb6\xdb\x65\x89\x79\x98\x82\xfb\xa1\x15\x48\x86\x0f\x45\xe8\x60\xde\x07\x77\x73\x90\xc1\xe9\xc6\x28\xda\x7b\xfe\x40\xcd\x17\xed\x99\x11\xf2\xc7\xd5\x62\xf7\x61\xb9\x2e\xb3\x54\xa6\xaa\xcb\x58\xa1\x17\x70\x87\xb0\x9b\x7c\x25\x6f\x43\xd7\x48\xec\xa1\xb7\xe7\xf1\xf9\x80\x76\x6b\xda\xac\xd6\x66\xbf\x5a\x5d\xfb\x86\x53\xbb\xe5\xf9\xed\xa0\x0b\x48\xc9\x57\x67\x8e\x96\xfe\x70\x71\xdc\x95\xe3\xbe\xe3\x39\x8b\x30\x29\xfe\x3e\x8e\x3b\xae\xa9\x78\x69\xd7\x1d\xad\xb3\xc3\x75\xc0\x42\x00\x1d\xbe\x3b\x8f\x6f\xcb\x77\x7d\x7a\x3c\x0e\xe9\x17\xc4\x65\xd5\x7b\x6a\x90\xbc\x60\xd7\xd6\xc1\xb0\xdf\x67\x93\x2b\x3c\xd5\x23\xb3\xd1\x9a\xa7\x32\x87\xdb\xc8\x19\xc1\xe3\xed\x9b\x7b\xf1\x80\xf3\x30\x49\x8d\x58\x01\x49\x29\xc8\xc2\x0b\x9f\x6f\xe6\x84\x68\x34\x2c\x84\xee\x29\xc7\x9b\xed\x09\x75\x50\xc3\x40\x2f\xcb\xfc\x28\x47\x33\x2b\x0e\xe3\xc2\x52\xb3\xd3\x4a\xc9\x56\xc5\xaf\x45\x87\x65\x88\x60\x83\x07\x2d\xac\xcb\xc9\xbc\xc8\xd2\xfe\xe6\x29\xf1\x6d\x3b\xd0\x2a\x11\xc9\x27\xf2\xfa\xc9\x13\x52\x40\x01\xfb\xa0\x6d\x0a\xf0\xd9\x53\x20\x32\x27\xf1\x29\x2b\x7b\x9f\x89\xb2\x6f\xd7\xaa\xb8\xb4\x6f\x35\x9e\x87\x93\x91\xda\xca\xe2\x8d\xe6\x91\xa3\xf9\x91\x53\x4e\xc4\x0e\x7b\x11\xba\x1a\x51\x5c\x90\x93\x27\xa2\x53\x8e\x06\xc8\x8d\xae\x11\x4e\x8b\x43\x76\xb4\xc7\x86\xdf\xba\xf8\x61\xb1\xc4\xc1\xe7\x44\x02\xfb\xeb\x64\x19\xe8\x1f\xbb\x6c\x58\xa4\x14\xdc\x7f\x17\x58\x8c\x00\xeb\x18\x87\x2e\x90\x40\xa8\xe0\xa5\x22\x17\xe2\x7e\xa1\xb6\xa2\x5c\x61\x01\x85\x05\x1a\xb6\x12\x71\xe9\xe5\x4a\xdb\x49\xb1\xa5\x72\xf8\xa2\xf0\x33\xd5\x8d\xba\x59\x1c\x75\x76\x14\xe9\x72\xa8\x05\x5d\xdb\xb0\xf7\x8e\xb3\x02\x7e\x93\x9e\x99\x77\xb2\xa1\x09\xfb\xac\x8c\x10\xd8\x36\x07\xf0\xdd\x78\x9b\xa6\x85\xdd\x93\x5e\xc1\x0c\x18\x4a\xc6\x1d\x25\xe5\x50\xf2\xda\x79\xc1\x20\x74\x5a\x9d\x00\x3a\x4f\xfb\xee\xa2\x3d\xd5\xd2\x09\x19\x1a\xd8\x7c\xf6\x55\xc9\x4c\xf0\x44\x6c\xde\x61\xc2\xf6\x74\x46\xa9\x5e\x80\x43\xb4\xfa\x99\xdf\xb2\xea\xd7\x7a\x8e\x69\x67\x50\x5d\x9a\xa6\x57\x20\x3b\x47\x27\xf4\xd2\x56\x92\xd3\xf4\xe0\x0f\x8e\x01\xb3\xad\xe0\x80\xd4\x7f\x51\x9d\x68\x27\x77\x31\x85\x56\x3c\x84\xd8\x00\xee\xca\x97\x61\xf6\x25\x08\xc7\xa8\x29\xf6\x45\x61\x27\x87\xf7\x36\xbf\x08\x29\x2b\xc4\x35\xb9\x1e\x87\x04\xfa\x23\x11\xdd\xf6\x86\xd0\x6d\x95\x22\x64\xe6\xaf\xf6\xf4\x83\x90\x87\x3b\x06\x31\x29\xf6\xd7\x93\x7e\x87\x05\x2e\x19\x1b\xef\x3e\x7f\xb0\x78\xfd\x3e\xd1\x04\x13\xcf\xc2\xfe\x10\xf5\x3e\xd6\x4c\x04\xed\x6c\x47\x2e\x06\x8f\xa8\xcd\x56\x91\x92\x45\x37\xb8\x3b\x5f\x93\x0e\x9c\x78\x6e\x5e\xf3\xaf\x24\x16\xe6\x90\x5e\x69\xab\x21\x31\xed\x9f\x3b\xb2\xc2\x48\x27\x41\x10\xa7\x75\xe9\xa3\xd6\x65\x9d\xbe\xaf\xae\xd0\x9f\x5c\x76\xef\xbe\x83\xcc\xdc\xf5\x43\xe0\xb8\xae\xc7\xa5\x99\x5b\x89\xd1\x0b\x00\xfb\xcc\x04\x7d\x8a\xda\xc4\x95\x69\xd0\x2f\x91\xf3\x7e\x9c\xbe\xf0\x4e\x83\xb9\x7d\x1a\x84\x8c\xe1\x2b\xea\x67\xe4\xd8\x6d\x50\xca\x7a\xc4\xd4\xdf\x0c\xc2\x67\x24\x25\x6c\x44\x47\x71\x6a\xd9\xaa\x9c\x23\x60\x09\x2a\x45\xa0\xc1\xc3\xf1\x30\xd3\x3e\xf1\xe9\x7b\xcc\x6a\x3a\x2b\x2d\xab\xfc\x1b\x96\x0c\x66\xa5\xf4\x4e\x5e\xbd\x72\x2d\x86\xb0\x98\x03\xc3\x1c\x0e\xc0\x25\x29\xee\x86\xb9\x93\xf7\x16\xf4\x85\xa0\xd1\x0c\xdb\x61\xdb\xa2\x89\xcd\xda\x23\x6e\x59\x82\x18\x1d\xd9\x4f\x3b\x95\xe2\x83\xed\x85\x09\x69\x2d\xec\x79\x43\xc0\x88\x98\x92\x45\x52\xcb\x3e\xa5\xa8\x4b\xe9\xd3\x1a\x00\x2c\x2a\x36\xa7\xc2\x43\xc6\xee\x47\x57\x32\xab\x0c\x6c\xfe\x22\xd5\xa8\xb0\xdc\xdc\x18\xb0\x8e\x77\xb5\x7a\x96\xe3\x99\x85\x1b\xbd\xce\x32\x01\x29\x02\x0f\xcb\x2a\x08\x5e\xc9\x89\x0a\xe5\x4e\xa0\xa3\x2f\x13\x30\x3e\xdb\xbe\x52\xb6\xd6\x57\x5b\xaa\x69\x2f\xed\xbf\xb0\x6b\x44\x59\xef\x48\x5c\xc9\x2e\x3b\x68\x98\x66\x0d\x07\x8d\x61\x69\xf3\xa2\x4a\x71\xed\x48\xc5\x05\x7b\xf2\x08\xd7\x68\xa2\x2c\x3b\x35\xfd\x2d\x46\x8b\x7c\x09\x5c\xd3\xff\x9a\xfe\x16\xd0\xd2\x6f\x1d\x4e\x6a\x6c\x82\xf4\xb4\xad\xee\x05\x1b\x41\x59\x9e\x70\x20\x8e\xb2\x9c\x95\x84\x34\x98\x7e\x3d\x1d\x2c\xfa\x8d\x5f\x2c\x90\x24\xaa\x54\xcf\x12\xa2\xd1\x7c\x3c\xed\x24\xc5\x70\xc7\x32\x12\xb5\x12\x1d\xbc\x6b\x24\x97\x33\x74\x2f\xd6\x26\x92\x1d\x01\x8d\x34\x1f\xac\xae\x88\x27\xc2\x1d\xdf\xc8\xef\x38\x21\x2d\x72\x1d\xb5\xde\x4a\x5a\x49\xf7\x2f\x14\x26\xfb\xe9\x54\xe7\x14\xb0\xee\x40\x35\xcd\x20\x13\xab\x63\x14\x59\x69\x87\x76\x3b\x5e\x84\x43\x31\x2d\x8b\xde\xcb\xdd\x7b\x5c\x5a\x36\x71\xeb\x93\x65\xb6\x1e\x20\xfa\x4a\x92\x27\xeb\x49\x97\x38\x98\x3b\x74\xb2\x27\xda\xfa\x8e\xe7\x95\x3e\xe3\x57\x3d\x6c\xe2\x5a\x6c\x76\x2b\x64\x5e\x4e\xe6\x83\xa8\xaf\xda\xc0\xbb\xe4\xcd\x23\xc3\x04\xbe\x76\x14\x86\xa9\x1d\x39\x75\x21\x4b\xae\x00\x86\x84\xfe\xa0\xc4\x29\x32\xfd\x5c\x16\xdb\xee\x3d\x01\xa1\xeb\x56\x06\xae\x49\xb7\x46\x95\x38\xc3\x86\x5b\xc9\x81\xa1\x43\x3c\x61\x54\xac\x32\xdc\x40\x15\x4a\x8a\x80\x4a\xcd\xd0\x4e\xdd\x62\xd6\x83\x0d\xaa\xb7\xb5\xec\x31\x66\xc7\x2b\x0e\xc7\x12\xf1\x16\x5e\x11\xbe\xf0\x96\x0c\xa5\x34\xda\x69\x06\xdb\x7b\xd6\xa4\xc6\x87\x82\xbe\x61\x0e\x3f\x27\x7f\x9f\x79\xe7\x24\xfa\xb9\x29\xa1\x87\x72\xb8\xb4\x0a\xb3\xb1\x99\x14\xc9\x66\x9f\xf2\xf5\x01\x6f\x0e\xa4\x3e\xc6\x9c\x67\x13\x32\x6c\x1f\xd0\x44\x6e\x9b\x2f\x8b\x9b\x23\xfc\x62\xaa\xe2\xd8\x93\x7e\x52\xb4\x90\xb1\xef\xc5\x65\x66\x23\xbc\x3d\x14\x6e\x26\xed\xe1\x52\xa9\x8b\x6f\x9e\x3e\x7b\xfe\xcd\x46\xaf\x63\x62\xee\x78\xbf\x97\x69\x0c\x0f\xff\x46\x34\xec\x6a\x63\x31\x67\x4a\xbc\x6e\x0c\xe3\x78\xb2\xf7\x89\x39\xf9\x44\x4b\x68\x3a\xa1\x5f\x2b\x41\x37\xa7\x2b\xc8\x25\xff\x9e\x5d\x32\xd8\x43\x01\x67\xe9\xc6\x0f\x96\xd3\xd5\xbc\xc4\x42\xd9\xcb\xf3\x2d\x9e\x35\xee\x84\x2c\x98\xfc\x60\x8b\xa7\x93\xe0\x51\x69\xa9\xa1\x26\x12\xd3\x18\x59\x17\x98\x3f\xfb\x31\xea\xc8\x87\x18\xf8\xfc\xf5\xac\x9c\x8e\x6d\x1a\x4a\x85\x40\xa9\x11\x37\x99\x9f\x71\xb3\xaa\x21\x5a\x31\x49\x0d\x29\x8e\xd3\x29\x55\x87\x14\xb6\x93\x6e\x17\x84\x35\x15\xf9\xb8\x01\x91\x82\x5a\xef\x0e\xe3\x23\xa7\x78\xd7\x0c\x62\xd0\x8d\x32\xac\xe8\xe8\x56\xb2\x73\xd7\x62\x54\xa9\xd3\x68\x77\xd3\x3e\xd0\x8b\x4e\x27\x13\x06\x5f\x33\x46\x1e\xeb\x66\x94\x38\x35\x15\x1d\x99\xac\x0d\x23\xa6\xc1\xdb\x34\x46\x27\xde\x7a\xe7\x12\xa5\x3f\x4a\x33\x85\x16\xbc\xae\xe2\xbc\x31\x0a\x83\xcb\x1b\xb6\x49\xed\xf0\x45\x65\x16\x45\x9e\x7b\x39\x54\xbc\x60\x74\x0a\x49\xf6\x4c\x01\xe2\x68\x55\xe7\x18\x61\xdc\x6a\x2a\xe6\x0d\x49\x07\x80\x34\x82\x92\xc8\x35\x04\xd2\x2f\x03\x80\x10\x52\xe5\xdf\x0a\x7f\x3b\xb8\xb6\x95\xc7\xdd\x0d\x37\xd5\x85\xc7\x04\x72\xde\xa1\x3d\xe3\xd9\x53\xda\xa2\x91\xf1\x5f\x12\x5e\x4b\xd4\xb0\x77\x1c\xd7\x53\x61\x56\x4b\x5e\x73\xc4\x77\x0c\x76\x5a\xdd\xa4\x7f\xb9\x66\x2b\xa1\x04\x20\xb8\xcb\xc0\x42\xb6\xb0\x68\xed\x86\x73\x1a\x1b\x18\x2a\xe5\xf0\x41\x46\xcf\x18\xe2\xa0\x5e\x82\x07\xaf\xc2\xa9\x97\x1a\x62\x25\x01\x83\x89\x89\x96\x09\xea\xa5\xc4\xa7\x30\x90\x12\x6b\x3a\x79\x5d\x89\x72\xc1\x24\x33\x29\x27\x1a\xb9\x81\x7a\x22\x76\x93\x69\x1e\x69\xad\x03\x2d\xb8\x7c\xc4\xd1\x1b\xd9\x8e\xa6\x13\xd4\x06\xbd\x80\x52\xed\xb6\xf6\xd1\x1e\x33\x58\xd3\xb2\x0b\x0b\xca\x5a\x0c\xe1\xb8\xa5\xe0\x7d\xff\xed\x10\x63\xea\x33\x72\x01\xb5\x76\xbb\x09\xa9\x3b\x4a\x8e\x22\x0f\x71\x0d\xb8\xf0\x9d\xea\xd7\x31\xc3\x4c\x80\x9e\x13\x1a\xd2\x84\xf0\x2e\x03\xe9\xa1\x4b\x0f\xf1\x0c\xff\x74\x88\x5b\xb9\x39\x4c\x28\xa7\x25\x8f\x84\x76\x01\x35\x69\xb0\xd2\x7b\x22\xcb\xe8\xa4\x46\x66\x3b\x0a\x38\xa8\x82\x2d\xbe\x28\x2f\xfb\x5c\x0a\xe3\x04\x82\x13\xe1\x6d\xa7\x3d\x90\xe6\x3b\x73\x44\xeb\x1a\xc2\xc7\xab\xe5\xfa\x91\x4a\xa8\x9a\xb6\xcb\x91\xff\xcd\x60\x88\xc1\x28\xa8\x23\x73\xf8\x1e\x3f\xe8\xac\x7c\x9e\x59\xdf\xfd\x43\x3b\x5e\x5d\xa9\xd0\x50\x10\x85\xb3\x98\xec\xd4\x8c\x5e\x69\x39\xc5\x2d\x0b\xb3\x03\x17\xd1\x66\x6e\x8b\x4f\x14\xa7\xef\x91\x27\x5d\x32\x76\x8b\xa0\x73\x17\x87\xf4\x9b\x17\x3a\x91\xea\x3d\x32\x8f\xde\x70\x15\xed\xa8\x6f\x5b\x8f\xbb\x7e\xf9\x5e\xd2\x8d\xf3\x02\xb6\x34\x17\x2e\x1f\x1d\xcb\xf1\x88\xf6\x7a\x49\x91\x73\xa2\xd3\x7d\x8e\x4e\xc3\xf7\x19\x48\x07\x51\xae\xfd\xa5\xd0\x4d\xee\x5b\x7c\x4d\x4e\x0f\x59\xb4\x0d\x04\x1b\x7a\x65\xef\x3d\x62\x7a\xe5\x13\x40\x0b\xe7\x62\xfd\xbd\xb8\x95\x0a\x0d\xa1\x8f\x94\xf5\x88\x2a\x7f\xe5\x69\x74\xc7\xda\xdf\x2d\xd4\x22\x20\x83\x5e\xc4\x68\xea\x2b\xeb\xac\x3a\xd5\xee\x8a\x8e\x93\x01\x59\xfe\x65\x3e\x8d\xba\x79\xe9\xef\x95\x6c\xb2\x7a\xa7\x39\x3e\x0f\x60\xd2\x96\xdd\x20\x8d\xd7\x5d\xd1\x08\x4c\xec\x07\x24\xfc\x18\x2d\xf2\x2b\x27\xa3\xb2\x7c\xea\x01\xa9\xe3\x84\xd3\xd0\xd6\x21\xe5\xd5\x34\x12\x9b\x2e\xd3\xa1\x60\xce\xcf\xd9\x80\x6c\x5f\x4b\x86\x0a\xcc\x4c\x05\xac\x2f\xea\x1b\xec\x37\x38\x4e\x3a\xa7\xe1\x2e\x7b\x40\x68\x48\xc0\x4f\x5e\x0a\xe3\x6f\xa7\x1c\x12\x42\x7a\x61\x5b\xa6\x21\xb0\x71\x8e\xfe\x78\x5f\xfa\xc8\x1e\xc3\xdb\xe6\xbb\xa9\xa2\xcf\xde\xd7\x36\x00\x44\xd6\x92\xda\x67\xf0\x41\x75\xab\x6d\x18\x30\x6b\x9e\xd7\xbf\xca\x7d\xd8\x22\xd0\x4f\xb8\x14\xf7\x65\x0b\x72\x77\xbd\x60\xd9\x74\x10\xf7\x9d\xa2\xef\xc1\xa3\x6d\x35\x2f\x35\x9b\xe6\x18\x15\xed\xb4\x8b\x2f\xea\x8a\x03\x2f\x85\xe9\xb9\xe3\xe6\x69\xf9\x11\x18\xa3\x29\xc3\x43\x8c\x42\x25\x51\x7b\xad\x8b\xc1\x94\x2b\x65\x18\x55\xea\xa4\xe2\xef\xe0\x4b\xb7\xbe\x6c\x8a\xbb\xb7\xfb\x16\xd5\x94\xcb\xb5\x06\xdd\xa8\x1d\x97\xb2\xa4\x18\xec\x42\x39\x93\xbd\x6e\xa5\x75\xe9\xdc\xdf\x76\x5a\xda\x22\x5a\x6f\x1e\xed\x28\xcf\xb9\xed\x33\xdb\x08\xae\xa0\x29\x83\x9e\x21\xd5\x32\x70\x8e\x31\x89\x84\x4c\xe3\xcb\xca\xd8\xdd\xef\xc0\xb1\x23\x4b\x44\x7e\x09\x42\xcc\x6c\x26\x19\x63\x07\xdc\x2f\xe3\x41\xdd\x86\xdd\x5a\x8d\xe4\x6a\x4b\x38\x3d\xc1\xa6\xf0\x2f\x80\x85\x2a\x90\x49\x45\xb3\x85\x12\x52\x64\x83\x11\x0f\x03\x45\x37\x13\x28\x5a\xd3\x45\x05\x9c\xa4\x9a\x23\x0f\x84\x3e\x35\x30\x37\x8f\xc9\x9f\xcd\xee\xd8\xf6\x90\x57\x96\x82\xab\xe4\x92\x6e\x1e\xb8\xb8\x9d\x74\x18\x18\xbb\xb8\x96\x07\x6b\x33\x84\x74\x5a\xeb\x3b\x5c\xb9\x5e\xd1\x1d\xac\xde\x8b\xfb\x68\x3a\xc7\x84\x6e\x54\x5d\xd8\x52\xe2\xb2\x10\x85\x73\x32\x83\x72\xd5\x1c\x63\x99\xd7\xe0\xbf\xd0\x87\x06\xa6\xea\xcf\x0b\xb4\x5a\xc1\x9f\x60\x09\x84\x7c\x28\xf1\x1e\xfd\x09\x96\xc8\x62\x90\xdb\x0b\xf6\xf8\x69\x5e\xa4\x87\xee\x8e\xe2\xe7\x4e\xb8\x57\xa0\x85\xba\xc2\x39\xfc\xad\xb2\x65\xaa\xf5\xd2\xbc\x40\xcc\x8d\xd6\xb8\xf3\xf0\x5b\xc9\xc3\xbc\x5e\x74\x79\xee\xa6\x5a\x01\xcf\x24\x6d\x49\x93\x7f\xa9\xa3\x3f\x79\xe5\x83\x5c\xad\xef\x58\x1b\xe8\x89\xa3\x3f\xf9\xd1\x07\xc0\xcf\xd2\x1f\x64\x64\xab\x95\x5b\x1b\xd1\xe5\xb8\xd2\x02\x55\x30\x85\x07\x59\x7c\x25\x49\x87\xe2\x4a\x3b\x26\x63\xc2\x23\x62\xa1\x84\xf0\x96\x6e\x52\x30\x98\xe8\xa3\xc2\xb0\xc1\xc2\x65\xcd\xad\xc0\x58\x86\xd4\x96\x88\xbc\x7d\xd4\xd2\x91\x2f\x8c\xa9\x6d\x27\xc3\x5e\x4b\xd6\x26\x47\xcc\xa3\x7f\xdb\xca\x7a\xe1\x5a\x51\xd1\xfc\xd0\x3c\xa9\xa8\xc0\x75\x4a\x3a\xc0\xf1\xe3\xac\x35\xfb\xff\x37\xfc\x64\x97\xec\x43\xdb\x55\x6a\x2c\xaa\x97\xb6\xe2\x2c\x46\x4d\x5c\x3f\x35\xf6\xdd\x9d\xb8\x68\x94\xb0\x21\x67\x94\xa7\x11\x97\xbe\xc8\x38\xdc\x12\x74\x33\x84\xbc\x37\xa5\xb3\x98\x16\x85\x8b\x5d\xa4\x87\xf2\x37\xbf\x29\x2e\x13\x6c\x4b\xd0\xbc\x86\xab\x33\xe5\xcf\xbc\xca\xb4\x4a\x4c\x0d\x9f\x7f\x89\x78\x48\xd2\x8a\x7e\xf8\x1e\xed\x0c\x52\xba\xfe\xe3\x02\xfd\x31\x6f\x29\x33\x5a\x93\x22\xdf\x2d\xcc\x90\x9a\xf8\x3d\xfc\xdf\xbc\xd3\x29\x7b\x40\x4e\x02\xd1\x1a\x10\x35\x5e\xae\x01\xe7\x53\xc1\x0b\x85\x2f\xfc\x92\x49\xbf\xa5\x03\xe0\x49\x76\x2a\x52\x85\x11\x05\xaa\x20\xd5\x44\xda\xc7\x5b\x44\xc8\xf5\xa7\xa1\x4e\x8b\x0d\x7e\x2b\xba\x82\xfb\xa5\x44\x67\xfe\xba\xef\x76\x40\xdd\x61\x03\xa9\xde\x03\xef\xec\xc5\x9d\xa4\x68\xbe\x09\xff\xd9\x61\x40\x73\xcd\x35\xf8\xcf\xbc\x61\x12\x58\xb8\xe9\x08\x02\xb4\x8e\x4b\xb5\xd3\x2e\xf2\x9e\xff\xc6\xd2\xe0\xbc\x72\x68\x4e\x40\xea\xcc\x25\x0e\x91\xb5\xf6\x4a\x58\x58\xa3\xb3\xc4\x3a\x6f\xed\xc6\xae\x8d\xcc\x44\x65\x4a\x15\x69\x4a\x24\x20\x3c\x9a\x4a\x42\x13\x5f\x83\xe0\x95\x0e\xba\xd7\x97\xca\x54\xd3\x4c\x18\xe5\x73\xdd\xfc\xa8\x59\x72\xf4\xae\xd8\x3c\x16\x55\x71\xee\x09\x72\xeb\xcd\x6e\xc3\x2c\x9e\xd2\x45\x3e\x23\x09\xbf\x11\x37\x24\xe1\x47\xae\x95\x32\xa9\xb8\x11\x0a\x42\x8d\x31\x24\x2f\x68\xea\x08\x0f\xc4\x58\xe8\xbe\xb4\x8a\x58\x76\x0f\x1b\x95\xcd\x2c\xbe\x29\xee\x05\x8e\x43\xe8\x76\x09\xe5\x0d\x22\x80\x66\xf6\xcb\xcc\xf1\xa4\xe3\xb3\x3a\xc3\xcf\x35\xc5\x78\x0d\x74\xd9\x62\x3b\x55\x5a\xfe\xe4\x3b\x6b\x80\x4e\xa8\x48\x61\x55\x25\x77\x7a\xd0\x79\x92\xda\x0d\xdd\x2a\x60\xc9\x2c\xce\x87\x5d\x40\xc7\xc0\xea\xc8\x4f\x28\x39\xec\x77\xd8\x92\x6f\x58\x6c\x12\x54\xd0\xeb\xc4\x61\xfd\x9d\xaf\x2e\xcf\xc9\xe4\xc0\xf9\xe8\x71\x9b\x9a\x24\x94\xbf\x77\x34\x5b\x8f\xf1\x9a\x6e\xbf\x69\xab\x33\x84\xc3\x8e\x44\x1c\xc6\x08\xbf\x15\xfe\xae\xf4\xde\x0c\x77\xab\x11\xba\x3f\x13\xd8\xb9\xf5\x2d\x40\x0e\x80\x8d\x84\x85\xb6\xdf\x11\x13\xc8\x5d\x39\xb1\xc2\x0c\x54\x4a\x36\xdf\x6f\xdc\xe3\xfe\xc3\x8b\xc2\x18\x81\xd2\x94\x78\xef\x69\xef\xce\xc2\x7f\x59\x42\x09\xdc\xfd\x8f\x7a\xb2\x67\x61\xa6\x67\xb1\xf1\x97\x74\x9a\xf7\x97\x4b\xd3\x03\xd1\x85\x05\x18\xef\xbd\x49\x1c\x2a\x0d\x21\x66\xed\x01\x8a\x3f\x2b\x2b\xa7\xf8\x19\x09\xa2\x14\x3d\xa6\x7a\x43\x00\x90\xf5\x58\xbd\xb8\x03\xad\x1d\xef\xf5\x8e\x77\x3a\x2f\x86\xe6\x6b\x20\xde\x4c\xb8\xe4\x7d\x24\xbc\x67\xd9\xff\xc8\x69\xc8\x20\xd4\x9a\x45\xc3\xef\xce\xf6\xbc\x0f\xb4\x76\x3d\x46\xb3\x80\xea\xd8\x15\x23\x60\x76\xb6\x2c\x4f\xd5\x00\x08\x58\x37\x56\xdb\x69\xff\x45\x9a\x0a\x1a\x68\xc5\x79\xcb\x9d\x06\x47\x1e\x9c\xa1\x3f\xde\x17\xc1\x61\xe7\xe9\xcf\xfc\xb1\xf1\x12\xc8\x01\x55\xe9\x86\x1d\x49\x69\x35\x90\x54\xcc\x5b\x0b\x83\x04\xed\x72\x9e\x95\x57\xc1\x72\x2d\x81\x1c\xc4\xc8\x4c\xf1\x6c\xcf\x64\x54\xc8\xe2\x5e\x0a\xc4\x2e\x29\x70\x6f\x79\x9f\x71\xb5\xf0\xa2\x2a\xfa\xda\xa5\xcd\x11\x78\x56\x67\x53\x84\x6f\xb5\x1d\x01\x43\x54\x30\x6f\x84\xa1\x1a\xaf\x87\xfb\xae\x6e\xbd\x99\x27\xd3\x88\xca\x4c\x17\x5c\x69\xa4\x3f\x36\x18\xbe\x49\x2b\xf6\x4c\xdb\x51\xcc\x47\x27\xb3\x66\xca\x2e\x3e\xd8\x0a\x61\xd7\x83\xa9\xe4\x5d\xd6\xca\x4f\x53\x69\x2b\x4d\x2f\xe7\x46\xc3\x53\x49\xd2\x7c\xe8\x3b\x37\x38\x66\x79\xd3\xc2\x66\x52\x70\x23\x78\x4d\x08\xa6\xbf\x2e\x8d\x79\x3d\xca\x93\xb6\x73\xc1\x93\xe3\x7f\xad\x53\x7e\x97\xae\x62\x71\x2a\x77\x10\x72\xb2\xd6\xcf\x48\xe2\xbd\x47\x45\xaf\x59\xab\xfd\x21\xab\xe1\x4d\x69\x8e\x94\xba\x57\xc9\x35\x4c\xda\x57\x13\x39\x65\x8a\x4b\x4c\x84\x33\xb4\x05\x81\x24\xfe\x72\x73\x78\x00\x6a\x63\x17\xdb\xed\x03\x11\x4d\x75\x0d\x79\xa1\x4d\xd5\xe4\x0f\x7f\x85\xa0\xa6\x92\xaf\xc8\xf3\x44\x39\x51\x1f\x1c\x36\xca\x2e\xd7\x63\x09\x4b\xd7\xf7\xbf\xd4\x1b\xc4\x1b\xce\x94\x0b\x20\xc1\xf9\x06\xe7\xa9\x2d\x45\x98\x9b\xd4\xe2\xc1\xcb\x0b\xb5\x6d\xbc\xd2\x92\x71\x13\xf3\x9b\xab\x53\x7d\xeb\x60\x01\x1e\x70\x4d\x00\xd9\x2d\xe3\xa1\x5b\x93\xb1\xe5\x21\x25\x7d\xc0\x06\xca\x19\x06\xed\x2c\xa6\x73\x92\x54\xb9\x4b\x42\xb7\xb4\x51\x12\x0f\x8c\xaa\xcf\xd9\x7a\x8c\x8a\xfe\x6f\x7c\x4f\xac\x69\x35\x51\x87\x31\x85\x49\xef\x15\xa0\xe1\x64\xae\x1c\xb7\x38\xe1\x30\x7b\x2f\x69\x0c\xc5\x98\xd8\x33\x17\x0c\x13\xe5\xfd\xe5\x9b\x1c\x82\x06\x91\x52\x7d\xd9\x90\x2f\xc8\x62\x37\xf3\x2e\x3d\x08\x39\x26\x85\xf7\xe9\xdf\xaf\x7e\xae\xec\x1d\x3e\x3c\xea\x11\xe6\xb6\x3b\x98\xba\xd7\xd7\x88\x0f\x68\x4d\x26\x08\x37\x19\xc9\x88\xd2\x2f\xb1\x37\x2a\x27\xaf\xe2\x54\xa2\x3a\x11\x42\x08\x48\xe9\x76\x10\xc0\xd6\xcd\x93\x83\x53\xc7\xc5\xa3\xed\x19\x1d\x84\x31\x65\xd8\x97\x60\x1e\xc7\xaf\xec\x18\xed\xc5\x54\x12\xeb\x19\xff\xff\x92\x8d\x32\x18\x43\x76\x40\x5e\x20\xe4\x0d\x02\x2d\x59\x04\xb6\x3f\x27\xb9\x77\xe3\xe4\x89\xc1\x29\x1e\xdc\x37\xa4\xee\xa2\x9c\x87\x26\x8c\xc5\x4d\x17\xf5\x83\x47\x18\x3a\x09\x63\x34\xd1\x92\x1f\xb0\x97\xc8\x84\xcc\x4b\xe3\xd9\xaf\xc3\x59\x51\x70\xcc\xf5\xb8\x78\x5e\x84\x5a\x1d\x86\x5d\x22\x38\xad\xba\xb7\xe2\x8f\x75\xb7\x76\x0d\x9c\x4a\x28\x2b\xb4\x2c\xea\x42\x77\x18\x71\x2c\xb5\xa1\x6d\x16\xfd\x7c\x82\xc1\x36\xd5\x0e\xd9\xbd\xb3\xe3\xba\x80\x39\xd9\x84\xab\x9e\x5a\xfb\x6e\x0a\x27\x3f\x26\xc4\xe9\xad\x3c\x3f\xdf\xe9\xae\xee\xd2\x82\xaa\xb3\x9d\x69\x00\x9d\xdd\x2d\x43\x81\x82\x78\x38\x7c\x49\xb0\x12\xe1\x6a\xeb\x0e\x32\x9a\xd3\x92\xdd\xda\x5f\x93\xeb\x65\x39\xb4\xc5\x33\x99\x7a\xcd\xba\x13\x64\xfe\xad\xa6\xe1\xfb\x6e\x2d\xeb\xe2\x69\x27\xeb\xb6\x44\x59\x87\x12\x4a\x64\xd2\xe2\x9c\xcc\xb5\x09\x1e\xab\xe7\x01\x10\x88\x04\x01\x50\x1a\x96\x10\x99\x38\xa6\x4c\x29\x3c\x1e\x26\x9b\x06\x6b\xfa\x8d\x4f\x84\xf8\x4d\x7b\x99\xfc\x9c\x55\xe1\x4b\xd6\xa6\x7c\xad\x82\x66\xe4\xc6\x95\x75\x6f\x94\x16\x7e\x3b\x5e\x47\xe6\xac\xba\x7b\x7f\xc7\x1f\xca\x9c\x20\x63\x6d\xf9\x98\x2b\x81\x47\x4e\x1d\x78\x1b\xb3\xaf\x29\x8a\x7d\x63\x10\x9c\x70\xca\x0e\x73\xeb\xb0\x45\x52\x37\xc8\x1b\x4a\x40\x2c\x70\x5d\x92\xb8\xc5\xea\x14\xe1\xec\x56\x78\x20\x46\xbf\x03\x26\xae\x87\x92\xa6\x44\x4e\xe2\xd4\x46\xb3\x10\x5b\x70\x93\x3c\x60\x9e\x30\xaf\x22\xe9\xf7\xbf\x5a\xd4\x28\x31\xa7\xa3\x52\x70\x8c\xdf\xdc\x7e\x25\xa3\x2b\x4e\x8b\xaf\x4d\xe0\x9c\xac\x17\xde\x5b\xbb\x64\x52\xe9\x5a\x2f\x74\xad\x1d\x99\x9a\x20\x5e\xed\x24\xff\xfe\xc5\x73\x44\xa1\xd8\x2e\x41\xbb\xfb\x80\x01\x0c\x8d\x9f\xca\x75\xce\xd9\xd5\x21\x47\x78\xf0\xe7\x3b\x73\xfc\x21\xe0\xd6\x20\xb1\x79\x7a\xff\x24\xe4\xa7\xc2\xaa\xf3\x2e\x23\xbf\xfe\x36\x6d\x33\x6a\x46\x06\x98\xfd\x03\x24\x93\xf5\x1d\xba\xef\x0f\x04\xa3\xb8\xbb\x71\x8c\xc4\x1e\xf4\x63\x42\x81\x4e\xa1\xc1\x9a\xc4\xb8\x7c\x38\xc0\x3b\xe8\xa0\x38\xc3\x09\xa9\x15\x63\xd5\x4d\x48\x38\xee\xa6\xdb\x28\x25\x0d\xe2\x0c\x05\x2b\xc5\xb1\xcf\x2a\x1d\xc4\x2c\x9a\xe4\x81\x21\x91\xaa\x8d\x87\xf5\xce\x06\xb5\x85\x6f\x59\xf2\xe6\x14\xd7\xc7\x30\x6e\x08\xe5\x56\xad\x98\xd6\xbe\x61\x03\x4e\x5f\x0d\xf2\xab\x3a\x17\x47\x57\xa0\x55\x53\x04\x06\x81\x43\xc7\xab\x26\x15\xc8\xef\x43\x91\xfd\x24\xfd\x3b\xcb\x85\xd8\x4f\x68\x40\xfd\x60\x5e\x53\x5c\xaf\x17\xa3\x40\x71\x13\x94\xa4\x1d\x69\x3e\x16\xc4\xe1\x84\xe2\x9b\x04\x93\x15\x6c\x2b\xd4\x4f\x1a\xab\x0a\x22\x6f\xfb\x47\x55\x90\x1f\x75\xac\x91\x9e\xec\x79\x2d\x9a\x73\xb0\x81\xb0\x66\x5f\x2e\x84\xf4\x93\x98\x68\xf8\x14\xc2\xfb\xc9\x13\xf4\x53\xae\x01\x2f\x9d\x22\x3e\x85\x94\x47\x9a\x7c\xdb\xf8\x62\xb9\x03\xe7\x56\x39\xe1\x12\x94\xa6\x14\x72\xde\x24\x7e\xe7\x4b\x03\xff\x33\x9b\x5b\xc3\x76\xc2\x0b\xe8\x5c\x51\x77\x4c\x67\x5e\x9b\xd9\xfc\xfe\xcc\x7b\x3c\xb0\x82\xd0\xd8\xc4\xd6\x4d\xcd\x45\x46\x8c\x57\xad\x42\xf3\xa5\xff\xbe\xf6\xde\xbb\xc7\x64\x9a\x1f\x1d\xdf\xde\xde\x3e\x8e\x10\x7b\x7c\x98\x75\xe3\x3e\xbe\xec\xc8\xbc\x8f\xe1\x65\x78\xa7\x28\xde\xa5\x31\x7d\x04\xbc\x0b\x3c\xbd\x2c\x89\xdd\x1c\x16\x60\xea\x5e\x00\x56\x5d\x02\x7c\xe9\x9c\xf5\x03\xed\x70\x81\xd3\xf9\xa1\x67\xbd\x7c\xd4\x07\x9c\xc1\xd7\xde\xe1\x58\x93\xc2\xd7\xe5\x18\x10\x80\x3d\xa7\x4d\x3f\x2d\xa3\x64\x94\x73\x45\xd7\x3c\x6e\x67\x30\xe4\x35\xfa\xe3\xbc\x8f\xaf\xc4\xc6\xe5\xfe\xae\x46\x94\x7b\x3a\x1e\xd7\xd9\x7f\x2b\x56\x08\x6c\x96\xf3\xb2\xca\x98\x47\x94\x71\x46\xf4\xee\xaf\x57\x7a\x22\xef\xa8\xb4\xdf\xdd\xd1\xb9\x79\x38\x4b\xbd\xec\x2c\x7e\xd5\x00\xec\xa1\xfb\xb1\x77\x40\x08\xcd\xb8\xe9\x91\xe8\x96\xcf\xd2\x77\xed\xbf\x77\x36\x2e\x30\xa4\x5e\x65\xf1\x66\x94\x75\x10\xe9\x20\xd2\xa2\xd1\xa8\xed\xad\xa4\xbd\xa5\x8a\x2c\xd9\xdc\x24\x94\x6a\xd0\x99\x46\x59\xc0\x95\x41\x53\xf8\x29\xca\x61\xe2\xdd\x6e\xf9\xa0\x7a\x27\x7b\x09\x3e\x49\x16\xaf\x51\x45\x29\x86\x01\xb8\x57\x55\xe2\x04\x98\x00\xa9\x15\xc4\x2c\x65\x06\xbb\x2a\x33\xda\xde\x2a\x29\x86\xbe\xb7\x7a\x89\x0d\xd1\x2d\x59\x32\xca\x70\x75\x57\x78\xde\x5d\xcb\x39\x8f\x5c\x35\x45\x89\xa9\xf1\xfd\x90\x9f\xf9\xf8\x39\x70\x12\x70\x03\xf2\x6e\xd4\xbe\xdc\x72\x90\x65\x85\xfb\x9d\xc8\x05\x39\xf6\xa2\xf6\x5b\x88\xf8\x7c\x8b\x19\xb6\xc2\xa1\xbe\xbb\x3a\xf7\x57\x58\xd2\x75\xd7\x92\xfb\xe6\xb0\xa7\x4b\x1c\x8e\x57\xfa\x16\xb8\x8c\xb6\x54\x02\x75\x4a\x74\x15\xfb\x17\x84\xee\x60\x2b\xbc\xcd\x1a\x74\xd3\x1d\x89\x19\xff\x42\xc7\x4f\xeb\xdc\xcc\x2c\x3d\xcb\x71\x9b\x9a\xdb\x2d\x9d\xc5\xb1\xf5\x9b\xa7\x3b\x1d\x75\x96\x1e\xd5\xff\x88\x77\x5c\x75\x46\xda\x72\xbb\xf9\x7b\x60\x23\xd0\xba\x88\x2a\x67\x8e\xbb\x8d\xfa\x3b\x8a\x4b\x60\xec\xaa\x27\x9b\xb9\xc6\x80\xc0\xa0\x0d\xad\x3d\xc3\x7f\x9d\x42\x7e\xb4\xf2\x59\xd3\x7c\x7d\xb4\xb2\x5b\xd3\x86\x2c\x3b\x35\x97\x0a\x59\xf6\x96\xa7\x1c\x7d\x6c\x67\xb9\x4c\x00\x72\x68\xc2\x46\xfb\x2d\x0a\xed\xe0\x8a\x07\xca\x57\xb5\xe0\x1d\x77\x62\x56\x0d\xee\xea\xbc\x39\x18\x35\xce\xc9\x72\x50\xf8\x0e\xf9\xf3\x34\xe1\x73\x07\xa2\xd7\xc3\x59\xd8\xc5\x3a\xf1\x4e\xb2\xb1\xd1\x58\xcf\xd2\xed\x1c\x43\x97\x87\x59\xdb\xa4\x5e\x33\xbe\x95\xbe\x57\xa5\x68\xc8\xf8\xca\xf3\x91\x34\x80\x76\xbf\x3e\x99\x71\x9d\xb8\x7d\x0a\x21\xc4\xaf\xec\x78\x08\x22\x23\xfd\x95\x97\x80\x03\xa3\xf2\x25\x79\x9f\x3b\x7c\xc3\x59\x28\x64\x43\x27\x4c\x34\xe1\x01\xdd\xf4\x48\x2d\xe4\x5b\xe9\x76\x0b\x7f\x51\xa0\x76\x6e\xe2\x57\x2d\x3f\x23\x8e\xd6\xac\x14\x44\x1c\x34\xbb\x41\xed\xea\x06\xb0\x1a\xef\x9f\x8e\xbf\xc2\xb4\x15\x25\xe5\xaf\x88\x30\x36\x6e\x66\xd7\x46\xe3\x21\x32\x92\xdf\x58\xb1\x44\x3d\xa6\x87\x4e\xdc\xde\xc4\x2d\xe9\x29\x05\x6c\x29\xbd\x1d\x80\x77\xde\x78\xe7\x5d\x79\x22\x8f\x57\x37\x27\x5e\xd9\xe9\x55\x0f\x8d\xd3\xf1\x93\xcb\x6d\xa3\xc6\xf5\x56\x7f\x66\x8f\x6a\xfa\xed\xea\x65\x08\x6f\x52\x61\x5b\xb4\x93\x45\x1b\xb0\x77\x7f\x9a\xea\x3c\xc5\xbb\xec\x58\xab\xbf\x83\x68\x60\x5a\xd2\x3e\x3e\x81\x66\x60\xad\x39\x17\xd3\x8c\xef\xd0\x77\xd2\x00\xd9\x42\x0b\x7d\x01\x74\xc1\x08\xed\x71\x4d\xbb\xa0\xce\x3a\x97\x3c\x70\x31\xa5\xbc\xb8\xaa\x4d\x8c\xbb\xaf\x56\xa4\x93\x56\xc5\x0c\x16\xa1\xd9\x0c\x97\x8e\x82\xbe\x04\xc4\x82\x3f\x33\xe2\x04\xfc\xb6\x70\x11\x6d\xfa\x61\x85\x44\xb3\xdc\xe6\x84\xed\xe4\x2c\x9a\xee\x44\xb0\x6a\x6d\xe8\x57\xad\xaf\x39\xb5\x7f\xcc\xc4\x91\xd8\xa8\x65\x89\x36\x36\x4c\x4b\xa3\x02\x11\xce\x45\xa0\x9e\xd0\x15\x5e\x06\xcd\xb0\x22\x82\x6e\xf5\x3a\xc1\x74\x10\x15\x8a\x7c\x3e\xca\x2e\x77\xd2\xed\x3e\x7b\xae\xe8\xa6\xb6\x33\x32\x1c\xf1\x35\x5c\x14\x06\xea\xc1\x10\xdf\xa4\x2b\x00\x44\x1b\x7e\xd5\xe3\xf6\x9d\x54\x88\x06\xfe\xab\xe3\xf4\xfc\x56\xef\x4a\x57\x9f\xea\xf5\x24\x0d\xf5\x71\x9a\xb0\x04\x19\xdb\x16\x90\x91\xa7\xec\x9a\x36\x31\x19\xa6\x2b\x18\x91\xb3\x6b\x15\xd6\xbd\x9c\x0b\x46\x89\x12\x1e\x76\xe8\x38\x38\x2d\xc9\xf6\xff\x5d\xfc\xef\x57\xff\x37\x90\x88\x41\x9a\x00\xda\x4f\x87\x80\xfa\xb7\xa2\x42\x13\x07\x2a\xca\x5e\x63\x05\x48\xe3\x69\x67\xd8\x46\x9c\x7f\x9c\x88\xa4\x3b\x42\xcc\x03\x92\x6f\xb1\xf1\x52\x32\x3a\x8a\x54\xe3\x18\x6b\xca\x67\x13\xaf\xa5\x94\x73\x8e\x16\x4d\xff\xea\x49\xc9\xa2\x18\x38\xfa\xa4\x4f\x30\x87\xbf\xf6\xd8\x06\xfb\xd4\x67\xa6\x25\x84\x5e\xe7\x99\x35\xe8\xca\x1c\xd3\x09\xdf\x9b\xa1\x11\xf2\xbe\x39\x5e\xda\x26\x53\x93\x98\x7c\x75\xe5\x27\x69\xb6\xf9\x81\x73\x61\x80\x0b\x18\x8b\x2f\x0b\x70\x2b\x2e\x13\x05\x1c\x6c\xe5\x49\x29\x06\x58\xd9\xdc\x1e\xa5\x28\x60\x49\xab\xcc\x99\x8d\x82\xd7\xd1\x07\xcd\x63\x8e\x2e\xd0\xf3\x2c\xaa\x51\x09\xd6\xdf\x0c\x41\xc1\x88\xe2\x57\x41\xf9\xa6\x4b\x31\x36\xa1\x2b\x20\x6f\x49\x40\xac\xf8\xaf\x56\x05\x20\x90\x63\xd9\x13\x02\xd7\x0e\x6f\x75\xa2\xb0\xd5\x2b\x09\x5a\x21\xd2\x5e\x4c\x16\x67\xce\xb1\x8a\x59\xd4\xd1\xee\xec\x5c\x8e\xf9\xb0\x72\x58\xf1\x82\x03\x13\x8e\x61\xee\xbd\xa1\x9c\xba\xa2\x56\xce\x39\xe3\x2b\x5f\xa1\xc6\xda\xc9\x89\x2e\xb1\x54\x0a\x5f\x27\xe4\x08\x7b\xab\x2c\x03\x13\x4b\xd2\x3d\xb8\xc3\xb8\xc1\xbb\x57\x13\x49\xec\x5c\xcc\xb0\xe8\x12\x1f\x2a\xba\xa8\x19\x97\x64\x38\x26\xba\xca\x2d\x11\xee\x19\x64\x83\xdc\x54\x6e\x22\x30\x99\xde\x5c\x38\x3c\x70\xb4\x05\x9a\xcc\x39\xb7\x5c\xec\x2a\xb1\x15\x3b\x81\x42\x9c\xb4\x43\x8f\xd9\xe0\xb2\x2d\xf6\xe8\x21\xe4\x85\x5f\x89\xf9\x8d\xd6\x01\xab\xbd\x2e\xc5\x31\x24\x27\xc9\x73\xeb\x40\x47\x46\xcc\xa9\xdc\x1f\xe6\x86\x6d\xb3\xc8\x34\x73\x72\x35\x49\x82\x91\x69\x35\xdd\xff\x8d\xba\xd1\xbf\x5e\x17\x33\x8c\xfb\xa1\x91\xcb\xe1\x42\x9c\xa0\x96\x48\x9b\xfc\xfc\x61\xc4\x73\xbb\x5a\x10\x3c\xfc\x57\xf0\x69\x71\x12\xe2\x7e\x25\x7a\x36\x7b\x69\x85\x53\xce\xa4\xc9\xbd\x5f\xf1\xf2\x58\x32\x51\xee\x5f\xd7\x2b\x04\x0e\x9c\x97\x28\x26\x98\x91\x79\x09\xa7\x10\x69\xc7\xf8\x84\x98\x74\xe2\x53\x73\x01\xf8\xc1\x52\x14\xe3\x3f\x2e\xf5\xed\x62\x9f\x90\x27\x35\xf3\x0f\xa8\xab\xf4\x05\xf9\xb5\xe6\xdf\x49\xed\x5a\xea\x8b\x4e\x17\x64\x23\x26\x6a\xb6\xc0\xd7\xa1\x8e\xa0\x94\xd5\x5d\x35\xc9\x5b\x70\x05\xd1\x29\x64\xc9\x56\xdc\x5c\x2e\x21\xef\x9c\x07\x74\x98\xd9\xa8\xb5\x2b\xee\x23\xe5\x3b\x1b\x6c\x66\xde\x50\x9f\x95\x94\x2e\x0d\x55\x6b\x2b\x9e\x9b\xa0\x65\xbe\xcd\x58\x1a\x40\x62\x53\x97\xa5\xa5\x26\x33\x79\xa8\x09\x37\x61\x4b\x70\x5a\xb7\x17\xe4\x6a\xf1\x27\x3c\xfd\xa3\x0b\xf9\x78\x55\xe8\xaf\x8f\x8b\xdd\xc3\xdc\xc0\x53\xf5\x66\x0e\x59\x47\xad\x2e\x50\x5f\x28\xfb\xbc\xea\xcd\x63\xca\xbb\x54\xe1\x89\x97\xb6\x0a\x85\xa3\x6f\xad\xb2\xdb\xcd\x98\x65\xb2\xf0\xd0\xcc\x50\xf2\x77\x95\x89\xc4\xd3\x39\xd2\x26\x31\x53\xce\x19\xfc\x8d\xbe\x70\x69\xaa\xc3\xf7\x85\x2f\x61\xce\x1c\xbd\xa7\x4a\x89\xd6\x9f\x94\x8b\x18\xe2\x7e\x5f\x27\x91\x62\x80\x67\x3e\x89\x0d\x5e\xe4\xad\xe2\x54\xe4\xd4\x2d\xcd\x4a\x99\x27\x95\x32\xf5\xad\x97\xf2\xbf\xdb\x9a\x75\xe9\x74\xf4\x77\x6d\xd0\x2f\x31\x5e\xb6\x00\x00\x7f\x3b\xc6\x6c\x1f\xf7\xdd\xc0\x3e\xfd\x95\xd5\x63\x15\x97\x7e\xfd\x19\xc4\x85\x2b\xb1\xd6\xed\x98\xfb\x49\xec\x77\x61\x27\x8d\x1d\x84\xdc\x8d\xcc\x4d\x10\x26\x91\x24\xab\x93\xe7\xdf\x5d\xe6\xde\xba\x1a\x62\x4a\x3d\x67\x8c\x4f\xcc\x39\x38\x9a\xbf\x56\x19\x0e\x5d\xf9\x5c\xe1\x6c\xa7\x72\x2b\xfd\x13\x5e\x29\xba\x70\x03\x59\xda\x06\x06\x8d\x70\x18\xf6\xff\x9c\x9a\xfb\x27\x78\x9e\x5c\x40\x56\x01\x55\x04\x12\x3f\xcc\xef\x51\x76\x92\xd4\x76\x4d\x37\x27\x9d\x18\x11\x29\x49\xac\xcb\x3e\x7a\x35\x0c\x2c\x08\x02\x70\xc3\xd4\x47\x75\x69\xde\xc2\x17\x8e\x3b\xa2\x39\x47\x3a\x4c\x6c\x72\x87\x49\x20\xdb\xc2\xcc\xdc\x31\x13\xd4\xd5\x6b\xae\x32\x67\xb5\x41\xfd\x0c\xdd\xb4\x52\xa1\x2a\xcb\x4f\x51\xb2\x1e\xda\xd8\xf0\x89\xb9\xd5\x49\x52\xb3\x2f\x1c\x74\xe5\xea\x02\x4a\x3a\xca\x11\x18\x26\x69\x83\x1b\x92\x42\x3c\x1c\x0f\x9a\x02\x94\xc2\xf3\x9c\x7b\x03\x67\xb5\xf6\x5f\x73\x57\x77\xad\xfb\x95\xe4\x54\x42\x3b\xdf\x09\x8a\xe4\x40\x79\x60\x6c\x55\x68\x15\x67\xb1\xd9\xc7\x81\xab\x1c\x8c\x7e\x54\x9a\xf3\x32\x4a\xd3\x06\x38\xee\xd4\xac\xb8\xa0\xfc\x81\x72\x8b\x8e\x59\x2e\x93\xac\x42\x26\x69\x2e\xba\xd3\x37\xd2\x08\x53\x1f\xce\x64\xc1\x6d\xcc\x65\x9d\xb9\x08\xa1\xbe\xbc\x2a\xac\xdc\xf1\x9d\xed\x28\x87\x17\x2d\x26\x79\xef\xcc\xc9\x84\x88\x49\x6c\x3d\x02\x53\x73\xc5\x11\x66\xfd\xf4\x94\xc7\x4e\xfb\xa6\x81\xe5\x1c\x60\x9d\x66\x82\x5c\xab\x59\x53\x23\x41\xff\xc9\xba\x43\x79\x17\x08\x6a\x41\x4c\x0c\xdc\xee\x42\x7d\x2f\x86\x9e\xab\xea\x2c\x83\x24\x6d\x57\xfd\x61\x91\xe1\xb2\xa3\xb8\x31\x77\x14\x68\x19\x22\xe9\x52\x93\xa4\x72\x1a\x59\xd2\x74\x5a\xcc\xbd\xf4\xf4\x9c\x31\x96\xd9\x2e\x99\xde\xb2\x43\x74\x5b\xf2\x20\xb8\xf6\x98\xfa\x5c\xd7\xd2\x09\xf1\x94\xb3\x8d\x96\x3f\x71\x27\xec\xba\xc4\x39\xbe\xb6\xc6\x35\xce\x4b\xe0\x59\xb9\xa4\xaa\x16\x6c\x1b\xa1\xa9\x1a\x59\xc3\xbb\x26\xac\x32\xe7\x25\x82\xd5\x1a\x1e\x21\xab\x9c\xcc\xf0\x6a\x6a\x05\xad\x76\xd8\x35\x0e\x86\xa5\x89\x62\x77\xe6\x78\xfd\xc9\x12\x4f\x73\x86\x5e\xf3\xfc\x0c\xdd\x05\xfc\x1e\xf4\x2f\x4c\x45\x4a\x9a\x8b\x12\x25\xfc\x8f\x9c\xb0\xa3\x9b\x5f\x62\xc2\x53\xdf\x09\x51\x7c\x93\x03\xe4\x22\xa0\x48\x5a\x40\xf4\x99\x9c\x95\xa7\x7a\xc9\x68\x93\x36\xb3\xa8\x5f\xe4\x66\xe0\x14\xd6\x6b\xd1\x1c\x93\xc1\xd7\x94\xe0\x33\x72\xad\x43\x60\xa1\xb4\x59\xc7\x78\x48\x45\x7a\x8c\x42\x13\x01\x63\x28\xd7\xbf\x95\xe2\xed\xd0\x97\x04\xfb\x79\xd1\x31\xcb\x26\x14\x72\xa7\x21\x6f\xa1\x22\x71\x79\xd4\x62\x70\x96\xb5\x00\x07\xae\x1c\xa8\x09\xb1\x58\xb6\x13\x71\x66\x93\x60\x07\x9f\xd1\xb6\xc3\xe8\xa7\x7d\x36\xb7\xf7\x75\x02\xa4\x3b\xfa\x9e\xb9\x07\x2e\x0c\x11\x6b\x4d\x2a\x09\x52\xbd\x5f\x5f\x32\x19\x52\xf8\x16\x82\xca\xbd\x89\x63\xeb\xec\xec\x18\xb5\x58\xa1\x4f\x80\xf1\xc1\xea\x0a\x5e\xa0\xbd\x9e\x46\x72\x1d\xd8\xf4\x40\xbb\x0e\xdf\x28\xa7\x75\x46\x6a\x8f\xce\xc7\x79\x8d\xbf\xb1\xa8\xf9\x31\xbc\x52\xdf\xf9\x55\x23\x3e\x2f\x77\x01\xdc\x10\x60\xa7\x5f\x24\x5a\x1b\xf6\xab\x70\xf2\x3e\xd2\x06\x6c\x06\xf9\x0e\x1d\x07\x01\xb2\x12\x5b\xad\xf1\x4a\x3f\xb9\xea\x28\xa8\xd3\xc7\x6b\xf5\xfb\x09\x79\x8f\x7f\x29\x38\x46\xf7\x78\x30\x7d\x88\x37\x6f\xc4\x57\xaa\xd9\x17\xd8\x1d\x26\x94\x66\x81\xe2\x4c\x9c\x15\x26\x2b\x39\x00\x05\xca\xae\xf7\xcb\xf6\x74\x72\x00\x30\x25\xad\xf7\x29\x2b\xaf\xed\xe5\x20\x13\xaf\xc1\x1d\x00\xb1\x1e\x19\xed\x31\x31\x84\x34\x8a\x58\x9e\x2e\xff\xb6\xb3\x16\x51\x8b\xb0\x8e\x9d\xd7\x28\x38\xb8\x16\x46\x18\x52\xd6\xb3\x07\xa4\xab\x1b\x3b\x5e\x88\xc0\x5a\xf2\xe5\xaa\x36\xd7\x34\x39\xf3\x2b\xbc\x20\xa3\x83\x17\x64\xd4\x07\x7e\x00\xd4\x3a\xa5\x82\x26\x1e\xaf\x44\xe9\x1e\x35\x8c\x7c\x77\xae\x24\x70\x8b\xd6\x1d\x92\xd2\xa0\x1e\xb9\xf9\xdc\x0f\x6a\x42\x33\x50\xf6\x70\xea\x95\xfd\x10\x26\x9c\xd6\x7d\x5a\x49\x08\x57\xaa\x55\xba\x56\xcd\x6f\xd1\xb8\x60\xd0\x7d\x1e\xee\xa2\x54\x8c\x02\x7e\x5d\x6d\x91\x1f\x73\xd6\xe0\x99\xb9\xc1\xd3\x59\x0b\x4a\x38\x3f\x75\xa2\x09\x17\xa5\xa9\x5f\xbc\x4e\x4b\x6e\xa9\x93\x70\xb4\xb2\x3b\x6c\x0f\x2f\xcf\x77\x22\x42\xe2\x27\xae\x8c\xb2\x2b\x1e\x02\x23\xaf\x28\x9e\xd7\x07\xc7\x25\x60\xb3\xdc\x0e\xea\xfc\x3e\xf6\xde\x98\xe4\x0a\xa5\x11\x4a\x46\x00\x55\xd3\x90\x43\x5e\x6b\x2a\x92\x17\x6b\x55\x4b\x86\x77\x8b\x79\xb0\x5b\xbe\x03\x33\xec\xff\xd2\x08\x1e\x7a\xc7\xc0\x15\x34\xa8\xcc\xc1\x08\xb6\x8d\x7c\x3b\x71\x53\x25\x4e\xbd\xeb\xb7\xc2\x55\xb2\x61\x5f\xdc\x0a\xd8\x40\xe2\x96\xc2\xa8\xf4\x7e\x4b\xae\x15\x48\x39\xc7\x6a\x89\x71\x3f\xa8\xbb\x97\x61\xac\xde\x3b\xfd\x7e\xb1\x35\xbf\x39\x57\x89\x3e\xa7\x1d\x28\x59\xca\x9e\x5d\xbd\x7e\xc6\xe5\x7a\xd9\xc9\xc9\xf4\x2b\x9c\xb4\xb8\xe9\x47\x56\x81\x9c\x57\xa6\x23\x57\xec\xe2\xd6\x8d\x8c\x93\xad\x67\x9e\x12\x5a\x52\x7b\x2f\xe6\x72\x1d\x3b\xb7\x16\xfe\xe0\x1e\x4b\x53\xaf\x32\xfc\x95\x01\x91\xd5\x19\x93\xef\x25\x57\xe2\x3c\xa0\x02\xd7\xba\x5b\xc4\x36\x70\x30\x27\xa4\xdf\xa8\x61\x3b\xc7\x98\xa6\x6f\x7e\x0f\x95\xc9\x9a\x66\x99\xef\xaa\xc9\xfe\x5d\x63\x2d\x99\xb3\xd1\x9b\x49\xd1\xda\x6c\x33\x2b\x18\x0a\x7e\x83\x76\x1e\x50\x0f\x74\xdf\xde\x3e\x35\x4c\x34\xb1\x9e\x34\xf0\x4d\x21\xe1\x2e\xdc\x68\x2e\x69\x17\x9b\xaa\xb4\x1b\xd6\x85\x3b\x1d\x54\x0c\x42\x8e\x24\x20\x72\xab\x3b\x86\x2c\xce\x77\xfa\x6d\xb4\x86\xe2\xc5\x4a\xec\x23\xab\x4f\xbc\xd0\x67\xcf\xb3\x4d\x7d\xf7\xe7\x06\x14\x3c\xc1\xb9\x12\x93\x9f\xc5\xe4\x00\x8a\x57\xcb\xbe\x64\x54\x76\x57\xb5\xee\xea\x35\x3e\xd3\x4c\xf1\x0d\xfe\x10\x89\x9a\x64\x17\xbe\x64\x88\xe2\x4a\x61\x03\x5e\x9e\x3f\xb2\x92\x8b\x78\xc0\xf8\xf5\xcc\x1f\xb9\xc4\x91\x31\xa0\x78\x69\x70\xd8\xdc\x6f\xaf\x52\x0a\x76\xeb\x78\x87\xe7\xcd\x8b\x31\x49\x7d\x64\x3e\xe7\x0f\xec\xe4\x9e\x6e\x78\x92\x89\x7a\x09\x73\x48\xc7\x1d\xb5\xbd\x85\x59\x2f\x38\x16\x88\x99\x4c\x4a\x7a\x8c\xb6\x78\x36\x76\x76\xea\x66\xeb\x76\x6b\xa6\x7c\x9a\x5c\x56\x6d\x3f\x2f\x7a\x83\xa0\x4c\x46\xe4\x5d\x9a\xd1\x30\x0b\xcc\x31\xe1\xf8\x97\x36\x4a\x7c\x24\x25\x61\x86\x8e\x8a\xa4\x47\xaa\x6c\xba\xae\x5a\x5f\x80\x4d\x02\x2b\x69\x16\xf4\xe5\x76\x56\x92\xc1\x43\x76\x4d\x2c\xed\xe3\x32\x07\xd8\x1e\x66\xe8\x7b\xda\xda\x4c\xb3\x74\x58\x24\xfd\xb8\x7c\x17\xe1\x5b\xfa\x43\x1e\xaa\x06\x42\x22\x48\x5c\xad\x21\x27\xda\xb4\x35\xc7\x35\xce\x14\x53\x73\x3d\xdb\x08\x07\xcf\xba\x78\xdb\x6c\x91\x16\x51\x57\x37\x8a\xd6\xfe\x36\x3b\xc6\xdc\x11\x33\xd9\xa1\x57\x93\xcf\x89\x0d\xbe\x3b\x74\x9b\x92\x46\xd2\xf5\x22\x82\xc1\x77\x9a\xe7\xe9\x59\xbd\x27\xcf\x6e\x51\xf2\x19\xc3\xec\x87\xb0\x2d\xc3\x41\x0b\x17\x38\x6f\x5e\xe0\x97\xea\x1c\xbd\x54\x97\xf0\x65\xa0\x7d\x3d\x48\xa9\x25\xbd\x9c\x96\xb7\xb5\xd5\x30\x17\x96\x5f\xe5\xc7\xf0\xa6\x5a\x5c\xaf\xf3\x56\x1c\x0d\x9e\x7f\x95\xf7\x38\xaa\xc8\x6d\x90\x1a\x2a\xaf\xcd\xdb\xf0\x52\xcd\x59\x20\xb7\x52\xd2\xe9\xc6\x5e\x85\x77\x3a\xe8\x04\x5f\x53\x98\xdc\xdc\x31\xdd\xf1\x0d\xc6\x22\xfe\xee\x39\x40\x4a\xd7\x68\x04\xdb\x10\x97\x37\x7f\x94\x17\xe5\x65\xa5\x52\xba\xfe\x0f\x71\x1b\x08\x3b\x15\x7e\x8f\x1f\xdc\x42\xeb\x69\x5a\xe4\x45\x06\x25\x41\xf6\x69\x5f\x96\x35\x7d\x43\xbf\x55\x6b\xf8\x56\xbd\x8f\x6f\x4b\x82\x12\x14\x2e\xaf\x1b\x17\x9e\xb3\x70\x3d\xcc\xf9\x0e\x3d\x65\xc3\x76\x31\x04\x74\x21\xdd\x9d\x5f\xc3\x4c\xf1\x6b\xe6\x75\xb5\xbf\x4a\x45\x0b\xc7\xe5\xba\xc1\x7e\xdb\x51\x7b\x2b\x0e\x74\x7c\x06\xdf\xcf\xef\xb9\x52\xd5\x76\x5d\xa9\x1d\x3c\x4d\x74\x2f\x33\x7a\x48\xac\x0f\xdb\x97\xe3\x02\x93\x45\x6c\xb5\xc8\x7f\xd9\x36\x75\x41\x17\x52\x6f\x50\x21\xf5\x36\x14\x52\x97\x28\xe6\x31\xd4\x28\x90\xdc\x5e\x5c\x44\xe4\xf5\x6e\x1a\x79\xeb\x0c\xac\x3d\xbe\xec\x44\xc1\x4a\x69\xb1\x85\xd1\xec\x2c\x2f\xcb\x41\x45\x96\xd7\x34\xf0\x1e\x16\x50\x6b\x54\x40\x9f\x59\x4c\xb1\x13\x6a\x0c\x85\x7d\xa6\xfc\xed\x1d\x60\x64\x9b\xef\x62\x82\x7f\x18\xc1\x45\x7e\x76\x8b\xd2\x55\x6b\x50\x94\x30\xf5\x5a\xd2\x6f\x63\x52\xd7\x9c\x4a\xe3\x01\xaf\x22\x3c\x5d\xf6\x12\x3e\x61\xb1\x0b\xd1\x30\x0f\x97\x1b\xe0\x97\x39\x05\x75\xdf\x5c\x4e\x77\x5b\x29\x26\x3d\xe6\x4d\x19\x13\x5d\xc1\x46\x9a\x1e\x0e\x36\x97\x5b\xbf\x00\xd4\xe2\x2e\xa6\x6d\xca\xd4\x79\x7a\x03\x2d\xf5\x31\xd7\x12\x17\xa5\x7b\x91\xb5\x2f\x46\x6d\x52\xf1\x69\xf9\xf6\x76\xae\x6b\x7d\x8f\xf4\x2b\xcd\x25\x77\xdc\x08\x37\x87\x15\x36\xe5\x28\x1b\x21\xde\x33\x1b\x36\xda\xe8\x72\xc2\x07\xd6\x28\x9b\xb8\x8c\xe4\xb8\xf2\x13\xab\x1e\xea\xaf\x0b\x3d\xea\x65\x40\x24\xca\x48\xf8\xc7\xef\x7d\xf9\x36\x78\x05\x85\xed\x9f\x6e\x4f\xc0\x8b\x4d\x4a\xf7\x23\x78\x4d\x77\xd3\xcd\x44\x04\xc4\xd3\xc2\xc3\x31\xa0\x9e\xc3\x0f\xea\xdd\x08\x81\x4a\x76\xaf\xe6\x72\x74\x8e\x7d\xd0\xb7\xa2\xcf\xb9\x45\xac\x22\xe7\x56\xe5\x09\xbb\x36\x76\xf7\xab\xd9\x02\xe7\xf4\xa1\x9b\x48\xf2\x96\xb3\xe7\x4b\x5c\x7c\x14\x96\x90\x46\x6e\x7b\x0c\x1b\xdf\x58\xa3\xcd\xdc\xb9\x3e\x67\x36\x1c\xb3\x2b\xe8\x88\x88\xb1\xd0\x2d\x8e\x25\xac\x4b\xc6\xe0\x9a\x51\x75\x0f\xae\x72\x96\xfa\xc6\x58\xf6\x70\xcc\x5f\x78\x53\x17\xdd\x90\xbf\xcc\xca\x2f\xb8\xda\x8b\x0d\x87\x73\x6e\xe0\xd2\xed\xe4\x45\x02\xdc\x6f\xba\xdd\x17\x8d\xf7\x5d\xf7\x7a\xee\xfd\xf2\x95\x57\x63\xc3\xd8\x8f\xf9\x02\x49\x6d\x5f\x31\xb9\x5b\xe4\xf6\x0c\x59\x7e\x14\xa5\x28\x69\x85\xe4\x6b\xa9\xd3\xf9\x95\x75\xe0\x72\x75\xa2\x49\x99\xe3\xf9\xa1\xf1\xb6\x48\xe4\x75\x29\xb3\x13\xf1\x98\x0d\x7f\x72\x98\xeb\x08\x3d\xba\xc9\x7e\x22\x0b\xa6\xe8\x13\xc5\x87\x89\x99\x64\x2b\x19\x50\x66\xb6\x42\x51\x0a\x61\x85\x29\xd5\x5c\xcd\x38\xa7\x29\x20\x9e\xbf\x48\x15\xf9\xa3\xe0\x05\x2b\x1d\x1d\xf8\xe6\x97\xce\xd5\x46\x92\xe5\x05\x89\x00\xf0\x3e\x6f\x50\xe6\x0f\x17\x27\x87\xaf\x60\x74\xec\xf8\x9c\x12\x9a\x2a\x7b\xa8\x96\xde\x84\x3d\xc1\xe9\xd3\x3c\x47\x70\x51\xe3\x13\x62\xf5\x87\x73\xd1\x5e\x88\xe3\x13\x0a\xae\x30\xef\x4a\xb1\xd2\xf8\xf8\xd5\x3c\x97\x2c\x2e\x41\x77\x7d\xb0\xa6\x9f\xf5\xef\xb7\x91\xb6\xf0\x37\xbc\xc2\x23\x0f\xde\xe1\xb1\xaf\x8b\x98\x24\xde\xd3\x43\x6d\x7c\xc4\x25\x60\x1b\x84\xa0\x5d\x6f\x86\x3e\xe2\xf5\x27\xc9\x75\x30\xa9\x26\x06\x9b\x62\x40\xa5\x5f\x7a\x8d\x48\x83\x29\xe7\x4e\x97\x5f\x79\x69\xc7\xf9\x55\xdc\x47\x66\x88\x92\xf0\x58\x0d\x38\x91\x26\xfe\x3e\x2f\x68\xc0\x99\x83\x17\x58\x5c\x43\x89\x9c\xe2\x35\x5e\xf6\x73\x2b\x06\x42\x7d\xf9\xc3\x56\x8a\x21\x29\x7f\xe4\x53\xae\x5f\x62\x52\x0e\x8e\xcc\xb8\x6a\x5f\xae\x53\x4c\x50\xbf\xf9\x06\x86\xe9\x9c\x7d\xd7\x0c\xa9\x28\xb2\x64\x7d\x58\x50\xc8\x6b\x46\x63\x7b\x5f\x7e\x28\xf3\xad\x5a\x98\x0a\xfe\x18\x0f\x90\x5a\x54\x34\x1f\x72\xb3\x6b\xc3\x85\xad\xd2\x6d\xe6\x6f\x1e\xc7\x3f\xd5\x62\x9c\x43\xbc\x39\xfd\x57\x46\xc1\x1c\xf7\x89\x98\x6a\xc2\x4e\xe7\xba\x5c\x0f\x29\x54\x2b\x8f\x9a\xe7\x73\x75\xba\xa3\xd6\x4e\xeb\x0f\x79\xaf\x18\xe8\x5b\xac\xe6\x6c\x96\x5a\x3b\x7f\xe9\x82\x5b\x87\xd7\x18\x13\xb7\xc0\xa1\xaa\x7c\xa5\xc5\xc6\x97\xc7\xc9\x45\xc1\x59\x71\x06\xaf\x56\xd1\xcd\xcb\x10\x46\xb4\x1b\x83\xbe\x7e\x3e\xf3\xef\x0f\xbb\x74\x6e\xcd\x6c\x22\xfa\x24\xc4\xd9\x95\xa4\x2d\xab\x7d\xe1\xf4\x79\xb5\xc6\x2f\x84\x1d\xf1\xba\x81\x07\x4c\x4e\xbb\x99\x50\x72\x69\xa7\xc3\xf9\xc1\xf7\x44\x76\x08\x43\x3f\x74\x68\xb1\xf8\x28\xcb\xc9\x49\x06\x92\x4d\x89\x72\x30\xd3\xdd\xf3\xdc\xf3\x7c\xd6\x2d\x90\xd3\x71\xd1\xf9\x28\x73\x2a\x48\xd6\xd8\xc7\x81\x1a\xff\x39\x5b\xf4\xb4\xdf\x6f\x2d\xab\xe2\x1e\xdf\x79\x39\xc4\x6a\x00\xa0\x62\x86\x08\x78\x78\xb8\x5d\x84\xb8\x85\xe7\x9c\x79\x7d\xb6\x3d\x54\xa3\x86\x6e\x58\xbb\xe5\x57\x6d\x31\x2a\xaa\xbd\x16\x73\x61\xdf\xdc\x80\xe7\xb1\x11\xbc\xd8\xed\xaf\xe0\xf8\xc3\x37\xd8\xa0\xee\x4f\xab\xdc\xb4\xb9\x19\xa9\xe5\x01\x6d\xf3\x43\x8a\xb1\xd1\x7d\x96\x95\x6b\x52\x3b\x1a\x0c\xfc\x9b\x78\x03\xd7\xac\x7a\x85\xaf\xf0\xd1\xe0\xeb\x61\x27\xcb\xd4\x30\x99\x53\xe6\x15\x0c\xa0\x67\xf9\x92\x6e\x6c\x80\x08\x1e\x63\xc6\xef\xd8\xe6\x57\x25\x32\xe9\xc6\x5e\x52\xa8\xaa\x6d\x8e\x33\x13\xb5\x50\x2b\x48\x3a\xb3\x4d\xbe\xe8\xa9\x8c\x42\xa6\x8f\x69\x91\x0e\x34\x4f\x46\xf7\x09\xcf\x3e\x45\x06\x85\xce\xc5\xb7\x2e\x57\x2d\x6d\x67\x43\xd2\x17\x65\x9e\x41\x6a\x4e\x56\x41\xaf\x22\xcf\xe2\x0f\x7a\xc0\x55\x25\xba\xbb\x28\xc4\xc1\x64\x69\x5a\xf0\xc5\x75\x0e\xfb\x72\x11\x5e\x02\x5d\x47\xcb\x95\x06\x03\x34\x92\xb7\x5b\x7c\xef\x92\xa9\xb2\x46\x6f\xd5\x8f\xe1\x6d\xa0\x0e\x2c\x4b\xb9\x02\xc8\x6a\x75\xa5\x39\x15\x72\x29\xaf\x8d\xdc\x56\xc9\x21\xb1\xee\xc8\x31\x2b\xbe\x9c\x08\x5a\xac\x8b\xfc\x86\x78\x0e\xeb\x3d\xa1\x90\x52\xda\x5d\x5b\x5f\x08\xc6\x6c\xf9\x67\x8f\x15\x63\xf9\x77\x1b\xf0\x98\x14\xfb\xba\x44\xe5\xed\x07\x8f\xcf\xb1\xaf\x79\x83\x6b\x24\x26\xb7\x60\x9e\x77\x2b\x9b\xba\xb6\x76\x2e\x54\x44\x3b\xed\xbe\x34\xf3\xb2\x78\x72\x48\xc2\x77\x7f\xc6\x4b\x0d\x36\xb3\x38\xff\xee\xe9\xcb\x6e\x6d\xbe\xb3\xf0\x2b\xed\x12\xef\x7f\x30\x4d\x62\x8e\x89\x23\xf9\x4f\xbb\x49\x11\xbf\x7a\x44\x61\x06\x9f\x97\x3d\x0c\x91\x50\xa0\x3b\xad\xad\xa6\x80\x67\xe8\x71\xc8\x16\x56\x67\xe7\x98\xfe\x49\x90\xaa\xc4\xb4\xc0\xf6\xd1\x0d\x08\x4a\x58\x8b\x33\xfc\xda\xaf\x6a\x0e\x9d\x21\xa1\xee\x91\x73\x9c\x9c\x02\x74\x52\x0f\x15\xd3\x3d\x70\x7d\xb1\xfc\x02\xff\x52\xa4\xfd\xe6\x1a\x7c\x50\x17\xa5\x61\xf5\x06\xbd\x74\xc6\xcc\xd7\x33\xe8\xeb\x1a\x38\xce\xfc\x73\xbe\x1c\xbd\x14\x4f\x2e\xbe\xc3\xe4\xd0\xf0\xb1\xc8\x6c\xfb\xb5\xa8\xda\x74\x41\x8b\x81\x7e\x3b\x78\xe9\x80\x8e\xd8\x65\xdd\x51\xbd\xd3\x8e\xd4\x15\xf6\x82\x55\x96\x11\x50\x67\xbc\xba\xef\x0b\xa2\x84\x95\x3b\x31\x19\xca\x46\x7c\x43\x18\xa3\x50\x4e\x97\x84\x59\x0a\x5a\x5d\x32\x85\x9e\xa6\x37\xb0\x07\x9d\x58\x9d\xc3\x37\xce\x42\xe4\x31\x1e\xe4\x3c\xdf\x4e\xb3\x8e\x5b\xe7\x22\x7e\x81\xf3\xcc\x5f\x42\x75\x75\x4e\xb3\x3a\xbf\xa5\xd1\xbc\xf0\x9c\x87\x61\xd7\x83\xdb\xd5\xc0\x9a\x89\xe9\xf0\xa7\xc3\x78\x08\xc3\x8b\xfb\x9b\x00\xe0\x7f\x8b\x0f\xea\x1c\x3d\x58\x80\xe2\x5c\x45\xa4\x04\x04\x44\xce\x08\x57\x67\x26\xa0\x11\xb9\xce\x8f\x7b\x4e\xdb\xf9\xe5\x64\x80\x6c\x23\x92\x2b\xde\x32\x9a\x87\xb9\xf1\x93\x96\x1b\x58\x45\x4d\x5d\x77\xb5\x83\x88\xb7\xe1\x0e\x59\x0d\x84\xcf\x3d\x63\x28\xe0\xcb\xe2\xdc\x3a\xf5\x42\x91\x5f\x4e\x9f\x17\x38\xc3\x69\xe8\xac\xbc\xfd\xe6\xb9\xf7\xca\x75\x42\xe8\x4a\x3e\x31\x8a\xbb\x6f\xc9\x7c\xb9\xc0\x72\x38\x8d\x5d\x1e\x16\xe1\x61\x72\x77\x28\xd5\x59\x38\x6f\x3e\x01\x73\x96\x74\x8f\x0e\xc5\xa8\x54\x21\xea\x44\x03\x44\x27\xac\xd8\x3f\xcd\x4f\xa5\x32\xe6\xb6\x61\x2e\xf4\x8e\x3c\x56\xbb\xee\x4b\x09\xc0\x60\xfd\xb8\xed\xe1\xaf\x3c\x66\x47\x54\x83\x27\xe9\xb1\x06\x4f\xea\xc2\x83\x2c\xbd\x92\x60\xc6\x01\x5d\xfc\x82\xbc\x30\x25\x75\x09\xdd\xae\x2e\x20\x0d\xdb\x21\xc2\xe9\x4b\x62\x3f\xc9\x88\x76\xc8\x19\x29\xfe\x5a\xc6\x29\x78\xdc\xf9\x4b\xf3\x4d\x7a\x03\xf2\x4d\x01\x0d\x7b\x65\x37\xdb\x66\x79\x58\x83\xff\xd6\x19\xb3\x40\xa2\xeb\x2f\x4d\xaa\x9b\x6c\xb0\xe1\xcf\x33\xe1\x3e\x26\xcc\x78\xc0\xd9\x48\x50\x27\x79\xcd\x3b\xcf\x5b\x45\x31\xc8\x25\x79\xdc\xd7\x0e\x81\xa3\xfb\x7a\xcb\xb3\x5c\xd8\x43\xed\xcc\x07\x09\x99\x75\xe6\xe1\x29\x76\xe8\x62\x8d\x4a\x95\xd5\xd4\x0d\x08\x59\x6c\x5e\xe0\x67\x2d\x19\x56\xc8\xd9\x66\xa6\x71\x76\xf5\x88\xbe\x25\xdf\x3c\x96\x6a\x21\x0f\xe3\x31\x9d\x5e\xd5\x0a\x7b\xe8\x16\x2d\x5d\x95\x4d\x81\x87\xec\x16\xda\x68\x67\x69\x5f\xa3\x47\x4a\x83\xa3\xf0\x8d\xfd\xee\xa1\x0d\xfd\x32\x87\x73\xd0\x19\x76\xa9\xc3\x11\x09\x67\x5e\x26\x02\x53\x97\x1c\x48\xef\x98\x7b\x6c\x7d\x1f\xe0\x11\x26\xfc\xd0\x45\xeb\x6f\x02\x0b\x95\x8e\x3f\x8a\xdb\x43\x63\x94\x7e\x93\x9f\xb4\xa1\xc7\x36\x99\xb2\xec\xa9\x99\xed\x5f\x6a\x87\x35\x23\x1b\x21\x0f\xca\x81\xd4\xb6\x5a\x4d\x76\x05\x33\x75\xd8\xb3\x82\x9d\x69\xc5\x67\x51\xb9\xca\xd9\xf0\x18\x3d\x50\x0d\xf2\xed\xc6\xb5\x57\xfb\xbf\xf2\x63\xab\x9b\x30\x6a\xb6\x7e\xaf\xa3\x20\xd3\x80\x8a\x43\xdd\x82\xc7\xc8\xba\x2f\x5b\xaf\x84\xad\x45\x4e\xdd\x9a\xd9\xeb\xcf\xe9\xa0\xf9\xde\xa0\xe1\x16\x27\xf1\xd5\x71\x14\xf2\x1d\x74\xc3\x1c\x0e\x5b\x4f\xea\x9c\x9e\x48\xc4\x47\x6f\x6e\xc2\xb1\x1f\xf8\x97\xcf\x3b\x8e\xdf\x75\xfa\x72\x3f\xdd\x90\x3a\x2a\xf7\xd3\x71\x9a\x31\x6e\x05\x9d\xfc\x31\x2b\x64\xea\x96\x3d\x91\x67\xed\x13\x47\xdd\x6b\xc3\xe4\x7e\x31\x29\xa0\xef\x14\x7b\x55\xdf\x78\x27\xe3\xe2\xeb\xd1\x3e\x94\x2b\xc9\xe8\xc9\x6b\x96\x55\xb1\xdc\x72\xfe\x37\xee\x9d\x64\xfe\x05\x6b\xce\x15\x72\x78\x0d\xca\x73\xb4\x63\x32\x9b\xd3\xe4\xf4\x13\xb4\xe3\xdc\xe3\xce\x79\x38\x71\x31\x38\x0b\xa7\x3f\xf7\x23\xa7\xf4\x32\x51\x1e\xcf\x22\xda\x34\x6b\x14\x6d\x2e\x58\x24\xaf\xa5\xea\x22\xc9\x5d\x50\x3f\x6a\x99\xfb\x72\x6b\xf2\x94\x5d\x9b\xe9\x58\x70\x23\x63\x3f\xa2\xb8\x81\x8f\x03\x17\xe7\x02\x7c\x14\x69\xda\x05\xe8\x88\x36\x81\x05\x32\xf7\x12\xac\xae\xd0\x95\xe7\x18\x60\x8b\x3f\x14\xfc\x40\x68\xdd\x6e\xfa\x91\xb5\xaf\xe4\xcd\x57\x54\x1e\x03\xfe\xe4\x3b\x9c\x5e\xe9\xc1\x33\x9b\x65\x48\x7e\x1f\xf1\xdb\x2d\x78\xcb\x55\xf8\xb9\x83\xa5\xc8\x8d\x19\x06\x4c\x6f\xb6\xf1\xcd\xc1\x54\x72\x64\xc3\xf1\xe6\xd6\x00\xa7\xbe\xa2\xe0\xff\x62\x8b\x5f\xec\x60\x31\xbc\xeb\xe2\x11\x3d\x73\xcf\x74\x15\x1a\x8d\x6b\x0f\x0d\x48\xf2\xad\x97\xf4\x01\x6d\xe4\x72\x9d\x9a\x0c\x88\xbe\x6c\xa5\xc3\x8c\xeb\xd0\x90\xa6\x9c\xbf\x0c\xcd\xde\x3b\x5c\xfc\x11\x8d\xe4\x09\x26\x35\x5b\x5d\xd9\x8e\xe3\xcb\xf4\x9a\x7e\x70\xd3\x38\x20\x7a\xc7\xbf\xe8\x25\xde\xa2\x44\xef\xe8\x07\xbd\xca\xa2\xed\x96\x1e\xa2\x3b\x3e\xfe\xa2\x07\x68\x47\x47\xdb\xd1\xc9\xd2\x01\x5e\x12\x83\xf1\x17\xf1\x46\x34\xec\xa2\xf7\x14\xdf\x50\x7c\x16\x3e\x49\xe6\x6a\xba\xde\x10\x2f\xf7\xc2\x8b\xdf\x11\x74\x86\x03\xcc\xad\xd5\xa0\xc4\x3f\x74\x15\x54\xd2\x1f\x0c\x45\x57\xf0\xf7\x9c\xf9\xfa\xc5\x42\x4a\xd9\xec\xd7\x9c\x3a\x06\x6f\x00\x95\x3b\x9c\x01\x18\x5a\xeb\x40\x3a\x49\x03\x91\x27\x3f\x8b\x5f\xfa\xc7\x7f\xa4\xd2\xf0\xf3\x9f\xfe\x49\x9d\x7f\xe3\x65\x15\x7f\x84\x59\xff\x73\xd5\x8b\x3e\x4a\x7a\xc3\x9e\x2e\x05\x8f\x3f\xf6\x0a\x52\xbe\x2c\x0a\x88\x21\x6b\xe4\x45\xce\xcf\x88\xbf\x57\x57\xfe\x5f\x00\x00\x00\xff\xff\x53\x95\x97\x6d\xfa\xd5\x00\x00") func confLocaleLocale_ruRuIniBytes() ([]byte, error) { return bindataRead( @@ -967,12 +967,12 @@ func confLocaleLocale_ruRuIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 50766, mode: os.FileMode(493), modTime: time.Unix(1438257711, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 54778, mode: os.FileMode(493), modTime: time.Unix(1439758816, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_zhCnIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\x5b\x53\x1b\x49\xb6\x28\xfc\x4e\x04\xff\xa1\xa2\x77\x38\xfa\xa9\xed\xe8\x99\xf8\xbe\x73\x1e\x2c\xc7\xe9\xe9\x9e\xdd\x33\x27\xa6\x7b\xfa\x8c\x7b\x62\x3f\x74\x74\xa8\x85\x54\x80\xb6\x25\x95\x46\x25\xd9\xcd\xec\xd8\x11\x60\x1b\x10\xe6\x6e\x63\x63\x1b\x30\x86\x06\x83\x2f\x20\x7c\xc3\x80\x0c\xfc\x98\x51\x95\xa4\xa7\xfe\x0b\x67\xdd\x32\x2b\xab\x54\xc2\xdd\xfb\xcc\x39\x2f\x36\xaa\x5c\x79\x5b\xb9\x72\xdd\x72\xe5\xca\x54\xb1\x98\xcc\xd8\x6e\x3a\xe1\xad\x1e\x35\x8e\x66\xac\x2f\x1d\xab\x55\xdb\x69\x6d\x0f\x37\x1f\xde\x6c\x8d\x3f\xf3\x6e\x3d\xb5\xbe\xcc\x96\x2d\x7f\x79\xda\xbb\xb5\xd6\xdb\xd3\xdb\x33\xe8\xe4\xed\x44\xfb\xc9\xbd\xf6\xda\xdb\xde\x9e\x4c\xca\x1d\xec\x73\x52\xa5\x4c\xc2\x9f\xd9\xf2\xaa\xfb\xed\x95\x75\x7f\xe5\xb4\xb7\xc7\xfe\xb1\x98\x73\x4a\x36\x7c\x5d\x6f\xbe\x59\x87\x4a\x76\xae\x98\xf0\x0e\x76\xa1\xb9\xde\x1e\x37\x3b\x50\x48\x66\x0b\x89\xe6\x83\xba\x77\x7c\x17\x7e\x3b\xe9\x6c\x2a\x97\xd4\x9f\x37\x4e\x1a\x47\x1b\xde\xc1\x9c\x37\xfb\x8e\x41\x7e\x7e\xff\xb0\xf9\xe2\x85\xf5\x1b\xcb\xdf\xd9\xb4\x2e\xba\xf9\x54\x2e\x77\xc9\x1b\x7d\xdd\x1a\x59\x60\xa8\x8b\x17\xf8\x9b\x34\xed\x54\xca\x89\xf6\xf0\xb0\x37\x7e\x24\x1f\x2a\xc5\x84\xff\x7a\xdb\x1b\x9b\xea\xed\x29\xd9\x03\x59\xb7\x6c\x97\xf4\x87\x6b\x76\x9f\x9b\x2d\xdb\x09\x6f\xf7\xbe\x7f\xef\xb0\x79\x3c\xdf\x7c\xfe\xa0\xb7\xe7\xaa\x5d\x72\xb3\x4e\x21\xe1\x1d\xdf\xf1\x26\xa6\x9b\x13\x55\x7f\xf9\x45\x6f\x4f\x31\x35\x00\x53\x5f\x7b\x0b\xb3\xec\xed\x29\xdb\xf9\x62\x2e\x05\x35\xfd\xed\x35\x9a\x73\x2e\x55\x18\xa8\x20\x04\xe3\xaf\x3d\x3c\xd1\x5e\x3b\xec\xed\x49\x97\x6c\x80\x4a\x16\xec\x6b\x09\xaf\xba\xe4\xd5\x8f\xfc\x7b\x7b\x80\xdb\xf3\xe7\xcf\xf7\xf6\x54\x5c\xbb\x94\x2c\x96\x9c\xfe\x6c\xce\x4e\xa6\x0a\x99\x64\x1e\x91\xd6\x5c\xd8\xf6\xab\xef\x1a\xa7\x6b\xfe\x48\xcd\x9b\xbd\xe5\x2f\xbd\xf1\x36\x1e\xf2\x54\xec\x0c\x60\x28\x99\x72\x13\xde\xbb\x57\x8c\x1b\x06\xc6\x85\xc1\xc6\x0a\xa9\xbc\xaa\xef\xcd\x4d\xc3\x3a\xe4\x53\xd9\x5c\xa2\x7d\x7d\xb7\xb9\xfb\x12\xc7\xef\xba\xd7\x1c\x58\x2c\xaf\x36\xd6\x7c\x3c\x82\xd8\x48\x96\x87\x8a\x50\x63\x6d\xb7\xb5\xbb\xa1\xbe\xa6\x53\xc5\x72\x7a\x30\x95\x68\x3f\x9b\x6a\xd5\x46\xe8\x13\x82\x16\x1d\x40\x94\x53\x1a\x4a\x34\xea\x77\xbc\xa3\x3b\xbd\x3d\x4e\x69\x20\x55\xc8\xfe\x3d\x55\x46\x4c\x35\xeb\x37\x9b\xf5\xf1\xde\x9e\x7c\xb6\x54\x72\x4a\x89\xf6\xdd\x65\xef\xc6\x6c\x6f\x0f\x4c\x3b\x89\x55\x43\x73\x57\x0d\x60\x61\x3e\x3b\x50\x42\x2c\xb6\x4e\x47\x9a\x5b\x75\x6f\xe3\x5e\xfb\xc6\xb6\x59\xde\xef\x94\xae\x84\x2a\xfb\x6f\x4e\x9a\x0b\xab\x26\x08\x8c\x23\x04\xa1\x87\x92\x2a\xc0\x72\x50\x71\x73\x77\xad\x39\x37\xe6\x57\xe7\x8d\xe2\x54\x26\x0f\xb8\x2c\xa6\x0a\x76\x4e\xca\x15\xf5\xa6\xd2\x69\xa7\x52\x28\x27\x5d\xbb\x5c\xce\x16\x06\x00\xdb\x07\x73\x80\xd1\xd6\xee\x49\xf3\x78\x17\x16\x22\xfe\xf3\x90\x53\xd1\x8b\x99\x68\x1c\x3c\x6b\x1c\x1d\xf1\x1a\x4a\x91\xae\xc6\xeb\xa3\xaa\xd1\x1c\xdc\x64\xbf\x6d\xc3\x26\x5a\x1e\x86\x29\xf8\x6f\xea\xde\xad\x6d\x58\xae\x4a\x2e\x07\xc8\xfb\x5b\xc5\x76\xcb\xd0\xd9\x5c\xd5\x3b\xdc\x6f\xd5\xde\xf9\x2f\xaf\xf7\xf6\x64\x5d\x17\x3e\x03\x19\x6c\x7a\xd3\x77\x79\xf4\xd8\x54\x3a\x55\x48\xc3\x74\xbc\xd9\x7b\xfe\x7e\x15\x3f\x7c\xe7\xda\xa9\x52\x7a\xf0\x7b\x1c\x35\xfe\x91\xf0\xe7\x96\x61\x47\x12\xf5\xc5\x2c\x29\xd2\x50\x42\x91\x14\xf5\x21\x5d\x40\xd3\x4e\x06\xa6\x55\xff\x49\xe8\xe1\xbb\x6c\xc1\x2d\xc3\xa6\x83\x96\xe5\x2f\xd8\x42\x13\xad\x9f\x46\xf5\xfe\xc8\x96\x73\xc4\x28\xfc\x17\x6b\xad\xd3\xb9\xd6\xda\x14\x97\x37\xb7\x27\xbd\xa3\x59\xec\xfd\x6f\x15\xd8\x78\xc9\x4c\x1f\xf3\x9f\x2f\x9d\x01\xd7\xf2\x46\x47\x5a\xbb\x07\xde\xdc\x4c\xf3\x79\xcd\xbf\xbb\xe7\x4f\xef\xc2\xb0\x1a\x07\x47\xd6\x57\x43\x97\xff\xd7\x9f\xfe\x31\x3c\xf2\x8d\xe3\x96\x07\x4a\x36\xfc\xb0\xfc\xea\x3d\x0b\xfe\x87\x36\x7e\xfb\x8f\x61\x40\x09\x34\xc4\x7d\xea\x8a\x0a\xc5\x58\x82\x64\xae\x0b\x9a\x2f\xeb\xde\xa3\x49\xe4\x65\x6e\x39\x61\xf4\x53\xf7\x97\x8f\x04\x09\x01\xac\x60\x43\x6f\x9e\x48\x89\xda\x35\xd0\x09\xed\x3e\x5d\x0c\x1b\xb0\xb9\xb5\x47\x05\xc8\xfe\xa0\x4d\xef\xc9\x75\xff\xd1\xb2\x7f\x7d\xbb\x71\x7c\x0a\x95\x79\x52\x3f\xbf\x87\x5d\xf6\x4e\xbe\xfc\xf1\xeb\xaf\xff\xfc\xc5\xef\x2c\xef\xfd\x5d\xff\xce\x4c\xa3\xbe\x09\xdb\xdf\xaa\x94\xfb\xff\x7b\x72\xc0\x2e\xd8\x25\x60\x92\xe9\xac\xe5\xed\x2c\x36\x5f\x3c\x69\x2f\x8d\xd1\xac\x5d\x37\x07\x5c\x03\x96\xe6\xf2\x65\x40\xc9\xf6\x9a\xf7\x7e\x16\xc7\x5a\x1e\x0c\x06\xe2\xdf\x1b\x6f\xd4\xf7\x5b\xef\x6a\xde\xc9\x4d\xa8\xf0\xb7\x1c\xa2\x5d\x86\x24\x08\xb4\x82\x49\xc1\x0e\x33\xe0\xa9\x0f\xbb\x54\x4a\x02\xb7\x2b\x0f\x25\xa5\x32\xb5\xcf\x55\xad\xd8\x6e\x1a\x07\xd3\xad\x1b\xc7\xb0\x70\xcd\xa7\x47\xd4\x44\x6f\x8f\x9a\x01\xaf\x91\x77\xb4\x00\xf3\x05\x99\x03\x8c\x55\x2d\x13\x8a\x22\x42\xa1\x14\x0a\xfe\xd4\x67\x8d\xc5\xd3\xe7\x50\xda\x9c\xbc\xee\x4f\x1e\xb7\x47\xdf\x35\xaf\x3f\xd7\x9b\x9a\xab\xb4\x17\x9f\x35\x1f\xcd\xc0\x66\x6f\xd4\x5f\xfc\xfc\x7e\x84\x09\x9d\xc7\xcc\x74\xee\x3f\x3e\x6c\x2e\xed\x92\xec\xd1\x45\xaa\x75\x7f\x62\xd8\x5f\x9e\x20\x99\xd7\x3a\x5d\x06\x62\xe5\x2a\xed\x1b\xc7\xde\xde\x58\x6b\xfd\xb9\xb7\x73\xdf\x5f\x00\x01\x35\xd3\xaa\x6d\x72\x23\x34\xbf\x52\x05\xc4\x0c\xd2\x0d\x93\x7a\xf3\x75\xbd\x59\x5f\x55\xa4\xa3\x0a\x55\x1f\x58\x95\x69\xe7\x14\xb6\x4b\xdd\x1b\x7d\x07\x5d\x7a\xb5\xc3\xc8\xe8\xbc\xdb\x53\xdc\x9a\x45\x7b\x03\x57\xe6\xce\x74\xe3\x78\xd9\x5f\xb9\xd1\x7e\x30\xc7\x34\xef\x00\x83\x07\x31\xb5\xba\x4a\xec\x9e\x7f\x1a\xdd\x30\x6a\xbd\xe3\x97\xde\x9d\x69\xeb\xf2\xe5\x3f\xc0\x06\x9b\x6c\x3f\x1c\xf3\x96\xf7\xbc\x95\x61\x6a\x61\xb0\x5c\x2e\x26\x8b\x4e\xa9\x9c\xf8\xc3\xb7\xdf\x7e\x63\xc1\xbe\xf3\x66\x7f\x02\x99\x6a\x94\x68\xc4\xd3\xb2\x34\x97\xe6\xbd\xb9\x17\x88\xf2\x00\x14\x97\xa8\x52\xca\x09\x84\xf5\xd7\xbf\xfc\x49\x7f\xeb\x36\x18\xec\xed\x02\xfe\x73\x39\x34\x26\x98\x73\xe3\x60\xb8\x71\xb4\xc4\x32\xab\x71\xb0\x03\x3d\xb5\xef\x9c\xf8\x33\x9b\x42\x47\x4e\x11\xe5\x4d\x40\x48\xb3\x35\x90\xb4\x8a\x84\x48\xde\x49\x09\xb4\x00\xf4\xc8\x8a\x8b\x66\xdd\x79\x98\x13\xed\xfa\xcb\x5f\xc1\x6c\xd5\x8e\xa7\xcf\xfd\x25\x27\xaf\x2a\xad\x6c\x82\xee\x63\x7c\x57\xb3\x30\x8b\x79\xc0\xb0\x7d\xdb\x23\x6f\xbd\x93\x67\xd6\x5f\xfe\xf5\x73\xeb\xff\xfb\xed\x6f\x40\x4b\x79\x3c\xee\x8d\xe3\xee\x84\xb1\xc1\x1e\xf6\xef\xd7\x70\x4a\x07\xcf\x90\x53\x1f\xd5\x70\x3e\x34\x37\xae\x0f\x5c\x4c\xf6\xfe\x47\x5f\x03\x91\x7f\x64\x5d\xa4\x39\xfc\x0f\xfb\xc7\x14\xe8\x17\xf6\xf9\xb4\x93\xbf\x44\x4b\xff\xf8\x3d\x6c\x6d\xc2\x01\x96\x03\x31\x11\xb9\x79\xb3\xf3\xed\xe1\x11\x25\xe0\xa5\x24\x90\xf3\x46\x69\x20\xf3\x59\x03\x4a\xa6\x9d\x42\x7f\xb6\x94\x07\xc1\x52\x43\x6a\x24\x7d\x88\x41\x59\x1d\xe0\xe6\x92\x05\xa7\x9c\xed\x1f\x12\x28\x9e\x7f\x7b\xf8\x61\x73\x75\xd3\x9f\x9d\x6b\x8f\xdd\x46\xc1\x52\x02\x75\x29\x89\xff\x65\xd3\xb6\xe2\xc1\x84\x76\xef\xc1\x36\x2c\xa8\x37\xba\xef\xed\xde\x08\x2f\x84\xd3\xdf\x9f\xcb\x16\x6c\x66\x5d\xdc\x76\xf3\x49\xbd\x79\x74\xaa\x58\x98\x09\x00\x54\x58\x04\x1d\xce\x5b\xde\x06\xe5\xa0\x79\xfc\x8a\x61\x1a\x07\x93\x8d\xc3\xd5\xe6\x93\x11\xa8\xdb\xa8\xcf\x58\x9f\x7f\xf1\xb5\xd5\x9a\x79\x87\xb2\x8f\x38\x11\xac\x0c\x6c\x66\x58\x00\xd4\x64\xdf\xde\xf4\x8f\xe6\x78\x13\x03\x2c\x30\x1d\xc0\xbe\x1e\x23\xd7\xe2\x0d\x95\x75\x53\x7d\xa0\x8c\x31\x96\x4a\xa2\xdb\x3c\x19\xf1\x77\xd6\x45\x6c\x8f\x3f\x43\xaa\x11\xed\x31\x0e\x5c\x46\x1b\xa9\x04\xdb\x98\x2b\x79\xb7\x56\x81\x35\xc2\xe0\xbc\xd9\x67\xb0\xed\x59\x76\x7b\xf3\xf7\x85\x58\xde\x81\xec\x7f\xcc\x6a\x2d\x33\x16\x14\x93\xa0\xa7\x89\x76\x9c\xbc\x9a\x45\x45\x92\x11\x46\x0a\x60\x6b\xf7\xb4\xbd\xb8\x0b\x0c\x01\xd4\xef\x78\x70\x85\x3e\xea\x2f\x50\x1c\x61\x07\xd3\xe0\xfc\x09\xe4\xd5\xde\xc6\xaa\xb4\x44\xf2\x1b\xc7\x37\xf7\xc4\xab\x3e\x00\x84\x41\x45\x00\x68\x2e\x4f\x7a\xd5\x3d\xae\x0b\x44\x2b\xf4\x42\xc0\x34\x50\x56\xa7\x44\xc9\x11\x93\x82\x94\xb2\x60\x86\x34\x2b\x50\x62\x40\x3a\xc0\xa6\x60\xe6\x07\xc3\xc0\xbe\x96\x1e\xa3\x94\xff\xe3\x17\x89\x4f\x2d\x3d\x30\x64\xb8\x68\x81\xd0\xfa\x9c\x2c\xea\x76\x0c\xfe\xc7\x9d\x32\xc9\x45\xfa\xd1\x52\x85\x40\x58\x31\x56\x10\x86\x86\xac\xb4\x40\xd9\x31\x41\x23\x4a\x19\xe6\x5d\x62\x40\x84\x74\x65\xae\xce\x6a\xb6\xae\xab\xb6\xa3\x28\x46\xc9\x01\x07\xb5\xbe\xe7\x93\xde\xf4\x6b\xd6\x81\xd0\x7a\x70\xcb\xc9\x81\x6c\x39\xd9\x8f\x5b\x16\x94\x8a\xc5\xc7\xfe\xeb\xbb\xad\xda\x98\x57\x7d\x6e\x7d\x0c\x05\x1f\x5b\xde\xfc\x71\xa3\xbe\x01\xb6\xcf\xb9\xab\x4a\x6a\xff\x16\x77\x63\x32\x75\x15\xea\x20\xd9\x25\x40\x95\x40\x12\x27\xfe\x01\x68\x83\xed\x8e\xb2\x67\xa2\x8a\x08\x5e\xa8\xf9\x53\x23\x4a\x41\x12\x25\x03\x76\xc9\x39\x17\xb8\xde\x64\xeb\xf8\x98\x0d\x1e\xff\xd1\x4d\x5c\xa2\x89\x2a\x42\x0c\x4f\xf1\xca\x58\x03\x4e\x5f\x25\x9b\xcb\x58\x6c\xf8\x10\xa6\xb3\x85\xab\xa9\x5c\x36\x83\xea\x9a\xac\x71\x54\xcf\xc2\xba\x3b\x3f\x01\x7a\x64\xc8\xaa\x46\x57\xe9\x1b\x5f\x4d\x0b\x4b\x9c\x6a\x3e\x05\x96\x48\x8c\x4c\x6d\xaf\x3c\x12\xd3\x8c\x7e\x62\x55\xd7\xfa\xe4\x12\xcc\x0e\x50\x95\xba\x6a\x33\x73\x1b\x50\xd8\x65\xb9\xd4\x1e\x9d\xc6\xfe\x4e\x57\x40\x86\x7b\x1b\x2f\x5b\x6f\x36\x23\x23\x0d\x91\x70\x88\x9e\xb4\xbe\xde\x39\x49\x5e\x62\xb7\x92\x4e\xdb\xae\x8b\x2b\xe2\x6d\xc2\xee\x1e\x61\xf5\xc3\x3b\xa9\xb6\x9f\xdf\xf7\x46\xdf\xc0\x77\x10\x53\xfe\xe4\x53\x61\xf6\x28\xd1\x01\xe5\xcd\xcd\x15\xad\x0e\xfa\x37\x27\x40\xb5\x81\x8f\xac\x64\x23\x9b\xda\xd9\x00\xba\xb0\x7e\xf7\xd7\x2f\x49\x8d\x01\xa5\x1b\x8d\x6f\xd0\xb8\x2b\xac\x0f\x39\xb9\x8c\x56\xd7\x81\x98\x61\x57\x46\x2d\x3d\x05\xa3\xc8\xd5\xbd\x96\x05\x84\x26\xb5\xd9\x8e\x78\x2a\xdb\x3f\x96\x61\xab\x8e\xfb\xd3\xeb\xa6\x11\xaf\x94\x97\xfc\x10\xad\x20\x4c\x8d\xac\x27\x65\x29\xa4\x9d\x1c\xd0\xa0\x83\x2c\xef\xaa\x2d\x10\xde\xec\xf5\xc6\xc1\x8c\x37\x3d\x0b\x4a\x8a\x01\x0a\x2d\x80\x0d\xa6\x1a\xd0\xd6\xd9\x50\x92\x6d\x45\x55\xa0\x4c\x46\x98\xa6\xb8\x0f\xbe\x17\x1b\x45\xdc\x08\xaa\x3d\x00\x48\x55\xca\x68\xd3\x04\xb6\x75\x52\x6c\x36\xe1\x39\xbc\x64\x86\xb0\x1b\xb4\x8b\x28\x19\xf3\xee\x00\x99\xce\xf5\x59\xe6\x5f\x3f\xbf\x5f\xe5\x7d\xa9\x1c\x0d\x23\xda\x1d\xf1\xcb\xab\xd6\xe7\xbd\xdd\x87\x54\x35\x2c\x0e\xd8\xb6\x07\xbd\x39\x81\xba\x1d\x68\xc4\x6f\xdf\xa1\x4c\x32\xa4\x00\xb4\x87\x2a\xe5\xe8\xeb\xf6\xe2\x0e\xec\x32\xd8\xa2\xad\x91\x05\xa4\x73\x72\x43\x68\x02\x8c\x91\x4c\x38\x20\xe4\x39\x9d\x2d\x9b\x22\x3c\xb6\x17\xc4\x4a\xde\xce\xf7\x61\x13\x60\x77\xef\xee\x35\x8e\x67\x95\x2b\x06\xac\xed\x01\xd8\x76\x81\x02\x71\x7a\x1f\x00\x14\xf5\x60\xa9\xdd\xa5\x14\xd0\xa1\xbd\x2d\xb0\x75\xaf\xc1\xa6\xbd\xef\xbf\x5a\xe3\x85\x80\xc2\xf6\xd3\x17\x8d\x83\x5b\x3c\x44\x1a\x84\x30\x56\x16\x99\xa4\x69\xb8\x36\xd8\xdc\x82\x31\xd0\x98\xbc\xbd\x11\xb1\xe7\x69\x2e\xac\x7a\xf0\x0a\xe0\x74\x48\xb5\x69\x8d\xbf\xb6\x2e\xf6\x5d\x3a\xe7\x5e\xbc\xd0\x77\x89\x99\x9c\xff\xd3\xb0\x0f\xca\xc9\x75\x64\x88\xfe\xc2\x3e\xd4\x41\xe5\xe7\x70\x1f\xb4\x07\xeb\x5c\xc6\xf2\xf6\x66\xfd\xc5\x7d\x6f\x6c\xd4\xdb\x9d\xf2\xab\x73\xdc\x36\x0f\x8b\xb5\x6b\xb6\xaa\x44\x7c\x0a\x63\x27\xec\x80\xf4\xe3\x56\xd5\x26\x4b\xa5\x89\xf6\xc9\xb8\x57\xe4\xe7\x9f\x0e\x83\xf9\xce\x70\x01\x11\xd2\xcc\x72\xd9\x7c\xb6\x1c\x4b\x11\xd7\xb7\xd9\xac\xe7\x39\x71\x13\x3c\xdd\xd6\xe9\x38\x98\x1a\xed\xf5\xf9\xe6\xe1\x08\x4f\xaf\xb9\x33\xe1\x9d\x8c\x5a\xbf\xb5\xbc\xea\x58\xfb\x36\xa8\xfd\x33\xde\xd8\x74\xab\xc6\xa4\x3b\x98\x72\x93\x95\x82\x60\xd6\xce\x30\x89\x00\x67\x54\x5c\x49\x78\x28\xa2\xe8\xed\x24\xcf\x07\x54\x02\xc6\x75\x0c\x42\xad\xc6\xf1\x98\xbf\xfc\x0c\xb0\xcd\x68\xe2\xb9\xc3\xb0\x50\xb7\x55\xb6\x2c\x00\x00\x9a\xb1\x31\x63\xdc\x38\x2b\xe0\x46\xcb\xc3\xad\x27\x23\xed\xf1\x69\x58\x47\x6e\x9e\xe7\x00\x8a\xb0\x37\x5e\x07\x31\x84\x1e\x37\x58\xa5\xa9\x89\xf6\xed\x5d\xa1\x4c\x40\x95\x8c\x9b\xa1\x80\x07\x7a\x1b\x37\xcd\x36\x4c\x72\x50\x1a\x3f\x89\x45\x97\x76\x6e\x99\xc4\x62\xeb\xe4\x8e\x37\xba\x19\xd5\xb5\x69\x2e\xe2\x39\xac\xee\x35\xea\xf5\x06\x2c\x2b\x69\x0b\xbc\xf3\xb1\x6f\x1c\x42\xb9\x73\x04\x3f\xbf\xaf\xf2\x20\x7e\x7e\x3f\x21\xeb\xc4\x8b\x4c\xd4\x0f\x45\x20\x1c\xd4\x98\xb8\x09\xbd\x4d\xb8\x50\x6d\x22\x25\x6c\xc8\x9f\x12\x21\x03\x4d\xec\x2c\x02\x70\xe3\x9e\x8e\xfb\xcb\xab\x80\x4b\xf8\x1b\x64\x96\x7f\xb7\xaa\xf1\x14\xf4\xa0\x0d\xb4\x30\xc6\x8c\x4e\x35\x64\xd9\x71\x92\xee\x20\x9a\x7b\x32\xf0\xbb\xa7\xde\xd1\x13\x36\xd7\xbd\xbd\x79\xf4\x00\xff\xff\xb0\xec\xd3\x4a\xe0\x80\xfa\x9d\x42\x1f\xcf\x90\xed\x8a\xe6\xc3\xbb\xa4\xb7\xa7\xe0\x88\x9b\x49\x7d\x00\x50\x34\x14\x64\x02\xa7\xbb\xfe\xc2\x21\x35\x01\x5c\x23\x0f\x2d\xfc\x15\x64\xfa\xd7\x11\xf7\xe4\x5f\x80\xbb\xd3\x37\x66\xed\xca\xe2\xff\xbd\xe1\xb5\xe4\x95\xeb\xed\xf9\x26\xea\xbb\xfc\x8b\x1d\xe3\xba\x04\x13\xf7\x5b\x52\x06\xc9\xd6\xad\xc1\x0e\xd9\x54\x8d\xfe\x01\xcc\x59\xf7\xaf\x60\xa4\xb2\xd1\x09\x36\xaa\x15\xb4\x3d\x94\x73\x52\x19\x2c\xf4\x67\x40\x4e\x8f\xa8\x82\x6f\xed\x54\x9e\xc6\xe7\x2d\xad\xb7\xef\xaf\xaa\xa6\x3e\x03\xe9\x43\x9f\xa1\xe7\x56\x6d\x44\x7f\x46\xf5\xe1\xf7\xf1\xaa\x60\xa0\x99\xdb\xe4\x1f\xed\x70\x90\xa4\x72\xc5\xc1\x14\x09\x66\x81\x60\xf5\x18\x20\x5a\x93\x2f\xc1\xa0\xf1\x76\x16\xfd\xda\xf4\x3f\xc0\x9a\xbb\x7f\xea\x4f\x4e\x34\xde\xa3\x7f\x0c\x3f\x82\x2a\xbe\xfd\x0c\x0c\x27\x20\xd0\x4f\x92\x40\x9c\xd1\xd6\x32\xb0\x35\x7e\x55\x8b\xf0\x25\xdc\x22\x74\xd1\xbc\x7e\x28\x7c\xf1\xef\x6a\x06\x4c\x39\xba\x4d\x50\xbd\xd8\x38\x45\x0d\x2a\x0a\xe5\x2f\x03\x87\x99\x65\x28\x0b\x2d\x61\x72\x61\x89\x31\xfb\x63\x3c\xfc\xc6\x56\x2c\x3c\xef\x77\x8d\x44\x6d\x5c\x03\x1f\x83\xcd\x11\xd9\xf0\x54\x03\x9d\x10\x67\xc0\x23\x25\x30\x5c\xe1\x0a\xc8\xad\x82\xc0\x02\xaf\x00\x1b\xb7\xbd\xf0\xa0\x55\xab\x81\xae\xa7\xbd\xe2\x20\x15\xd2\x4e\xa9\x64\xa7\xcb\x81\x7f\x1c\x60\xbd\xa9\x43\x50\x2f\xa9\x1d\xbd\xd7\x02\x05\x96\xc9\x13\x74\x23\x93\x5a\xc3\xb5\x02\xff\x7d\xb2\xcf\xb6\xc1\xa6\x49\x5d\xb1\x0b\xc1\x5e\x09\xe4\xde\xf4\x63\xf8\x28\x4c\x00\x14\xeb\x68\x0d\x73\x27\xc5\x55\x02\x11\xde\x51\xc7\x74\x9e\xc5\xd5\x29\xc3\x36\xe8\xa8\x64\x6e\x89\xb8\x4a\xbc\x50\x54\x01\x66\x96\x09\x6d\x67\x0d\xcf\x9a\x2f\x1b\x18\xb9\x9c\x3d\x80\x6e\x1d\xd5\x59\xb8\x87\xa9\x51\x6f\xee\x39\xa8\xfd\x60\x25\x19\xd4\xa0\x71\xa6\x91\x1e\x2c\x8f\xa9\x17\xab\x05\x10\xe5\x9d\x07\x08\x9a\x2f\x40\x62\x15\xc3\x50\xa1\x9e\x4d\x35\x42\x4b\x12\x13\xb3\x40\x46\x67\xb5\x04\x64\x84\x06\x4c\xd7\xa6\xd0\xc9\x4f\x7e\xc6\xd6\xf0\x68\x30\x4c\x30\x89\xe7\x9e\x9c\xd5\xac\x96\x28\xb1\x8d\x0a\x55\x45\x5b\xd1\xb6\x94\xfd\x23\xe8\x8d\x09\x40\x3a\x33\x6c\x6d\x66\x03\x56\xd0\x20\x5a\xde\x26\x9e\x9f\x4b\x81\x61\x8a\x44\x42\x73\x40\xf0\xe6\x56\xbd\xfd\x60\x43\xc1\x1e\xe1\xde\x9c\x9b\xc1\x4d\x74\x3c\x6d\x6a\xa8\x38\x26\x72\x5e\x70\x91\xa8\x6e\xda\x86\x02\x25\xe5\x74\x09\xad\x38\x6a\x0d\x34\x2f\x34\xe4\x69\x20\x22\x6a\xd4\x24\x5d\xe0\x59\x57\xec\xa1\x04\x98\x4e\xfe\xad\x97\xfe\xce\x04\xe9\x12\x68\x4c\xb1\x8d\xcc\xbb\xce\x9c\xb8\x15\x30\x7b\x32\x04\xc9\x3e\x42\x55\xf9\xaa\x5d\x02\x89\xa4\x5b\x24\x2f\xea\x2f\x6a\x64\x0a\x15\x1f\x36\xe0\x46\xc6\xc1\xf0\x6b\x5f\xff\x09\x57\x5c\xb1\x0c\x0d\x86\x73\x86\x36\xc8\xbb\x03\xf8\x46\xd3\x72\x74\x9f\xc1\xfc\xe1\x2d\x9a\x18\x5a\x2a\xda\xc8\x9f\xa9\xa2\xef\x82\xfa\x0e\x19\xa0\xc0\x58\xcb\x40\xff\x88\x73\x3e\x2d\x33\x15\xc8\x46\x7d\xba\x79\x73\x1f\xfb\x5f\x9d\x6b\x1c\x2d\x31\x19\x22\x11\x4d\x6e\x32\x05\xb1\xee\xa0\x7c\xc9\xd5\xd6\xf1\x0b\x40\x32\x12\x7d\xf5\x31\xa0\xda\xdb\xbd\x81\xb8\x23\x27\x8f\x3f\xb1\x85\xe7\x30\xfc\x9d\x1a\x37\x96\x80\x87\x80\x2a\x24\x9e\x98\x45\x46\xe0\x2f\x6e\xe9\x11\x30\xbb\xc0\x11\xd0\x2a\x46\xba\x6f\x3e\xa9\x7b\xef\x87\x75\xf7\x0c\xac\x59\x4f\x64\x9e\xe8\x09\x27\x80\xff\x4b\x93\xe4\xc6\x43\x74\x16\x8c\x80\xfd\xf5\xb5\x4d\x5e\x16\x96\xe5\x8d\x93\x15\x98\x2a\x50\x7d\xfb\xc6\x36\x68\xd8\x42\xf5\xc4\xa5\x44\x77\x1d\xad\x72\xd3\x50\xd1\x84\x09\x2b\xe2\xc0\x33\x53\x64\x2b\xf5\x95\x52\x05\x30\xb8\x83\xfd\xd7\x5c\xda\x45\xff\x70\x75\xcc\x5f\xa8\xe9\x9d\x27\x12\xe0\x3b\x1c\x11\x9a\xb5\x83\xa9\xc2\x80\x8d\x7e\x1e\x68\x05\x2c\xda\x3d\x6b\xa0\xc4\x3f\xd0\x1d\x0c\x02\xf1\x16\xab\x57\xb2\x46\x1b\x6f\xc8\x6e\x96\x5a\xe9\x8a\x5b\x76\xf2\x46\x65\x3e\x8a\x54\xee\x8b\x1d\xae\xaa\x2a\xfd\xbb\x03\xf2\x1a\x0f\xba\x6f\x3d\x86\x7d\x00\xea\x9f\x71\x2c\x98\x05\x9d\x4f\x98\x5e\x75\xb1\xb5\xb6\x2d\x16\x4f\xb6\x0c\x9b\x73\xf4\x05\x2e\xb2\x1c\x54\xf6\x3b\xb9\x9c\x73\xcd\x06\x4b\x1e\x74\x6b\xb0\xa5\x60\xb9\x10\xcf\x29\x64\x5e\x64\x33\x5f\x3f\x6c\xbd\x7d\xa4\xe0\xd0\xb7\xc2\x70\x30\x1a\x9c\x36\x2a\x88\xe7\x89\x8b\xa3\x5a\x5b\xba\x0a\x95\x34\x53\xb4\x3e\x3e\xe7\x7e\x6c\x01\x5d\xa0\xb0\x38\x5d\x69\xde\x7d\x00\x33\x26\x74\x05\xb5\x8a\xa9\x32\x30\xca\x02\x1b\x01\x34\x12\xa3\x01\xc4\x31\x1d\x2a\x72\x4b\x61\x4f\x3a\x9d\x8f\xf2\xa9\x2c\xa0\x3d\xfe\xec\x56\x33\x5d\x41\x9c\xf2\xa4\x30\x53\x71\x45\xd5\x33\xd8\x87\xf2\x20\x84\x03\x19\xc8\x49\x40\xa7\x22\xb9\x6c\x9a\x8c\x5e\x55\x95\xc9\x8f\x5d\x54\xb4\x49\x54\x81\xf2\x94\x64\xec\x9c\x8d\x11\x0a\xc6\xb6\x05\x16\x97\x55\x93\xb4\xfe\xf8\x05\xce\xa4\x58\xe9\x83\x96\xf5\x01\x34\xaf\x90\x9e\x84\xc4\x18\x90\x5b\xd6\xb4\x62\x45\x1e\xef\x8d\x35\xde\x3f\x24\xdb\x08\x6b\xa1\x43\xf6\x70\x1f\x59\xff\xc2\x36\x90\x84\x3f\xb3\x89\x16\x1e\x75\x8c\xf8\x23\xc9\xc5\xde\x7f\xef\xf6\x14\x1f\x06\xf0\x92\xe0\x81\x35\x4b\xbd\xf1\x67\x30\xdd\xc6\xe1\x84\xd2\x8d\x55\x98\x05\xe3\x56\x85\x59\xe4\x1c\x46\x05\x9e\xba\xc1\x36\xc0\xc1\x4c\xe1\x01\x6c\x31\x83\x6e\x1d\x35\x15\x7f\xe9\x0d\x48\x13\x35\x95\x70\xa1\xe9\x78\x43\x19\x6d\x2c\x1d\x57\x43\x1e\x75\x6b\x95\x36\xa5\x6c\x90\xce\x38\x09\x3e\xd9\x53\x26\x4b\x04\x8c\x71\xa6\x61\x35\xa0\x58\x6c\x6b\xbb\x30\x51\xb0\x72\x9b\xf5\xad\x66\x7d\x87\x39\x8d\x37\xb7\xf8\xf3\xfb\xd5\xd6\xe9\x03\xc6\x2b\x9f\x78\xa1\x85\x4c\x98\x03\x35\x10\x39\x19\xb3\xdf\xe5\x09\xd8\x0a\xe1\x23\x2e\x74\xc9\x65\x0b\x15\x18\x9f\xd1\x64\xe4\x68\x5f\x7d\x44\x25\x81\x44\x5d\x64\xd7\xcf\xd5\xd0\x6d\xae\x17\x41\x36\x7b\x1c\xac\x3e\xf7\x24\xeb\x1d\x99\x1a\xc5\xad\xf8\x2b\x9b\x7c\x80\x81\x3e\xe3\x2f\x85\xfb\xc8\xf1\x4a\xc0\x70\x1c\xc7\x15\xef\x1b\xf7\xcb\x2e\x4e\x16\xfd\x0a\x4a\xd6\x4b\x20\x78\x51\xb8\x4c\x79\xe8\x2b\x45\xb4\xbe\x40\xcf\x91\x11\xd1\x3e\x4e\x66\xf3\x18\x4b\x83\xbc\xee\xfd\x63\x7d\x28\xad\x35\x78\xef\xfd\x63\x6f\xe9\xa4\x39\x31\x4e\x2b\x5b\x70\x22\x93\x32\x5c\xe4\xcb\xcf\xb8\x0d\xb0\xa4\x23\x08\xc1\x15\x24\x6d\x20\x32\x77\x56\x9b\xcc\x61\x47\xa8\xcc\x1c\x7e\x07\x95\x69\x02\xea\xc2\x38\x9c\x9c\xa1\xc8\xb1\x13\x5b\x15\x21\x26\x83\x30\x03\xc6\x62\xd4\x80\x0f\xf4\x5b\xb3\xae\xe1\x96\x1e\xe9\x18\x80\x1e\xbd\xc0\xb2\xec\x50\x23\xc6\x29\xcd\xec\xe1\xee\xa3\x03\x28\xf1\x45\x1b\x9d\xb3\xf7\x4b\xf8\x25\x69\xf5\x6e\xc4\x36\x97\x40\x1b\x29\x93\x58\x9a\x10\x04\x1b\x03\x06\xf7\x69\x1c\xd4\xd1\x35\x14\xe6\x41\x9a\xe3\x98\x07\x8c\xc1\x01\x62\xe0\x9e\x2b\x96\x80\x3a\x30\x6c\x85\x5a\xd1\xbf\xc5\x5d\x07\x0b\x03\x7a\xaa\x2a\x63\xee\x29\x45\xcc\x43\xf1\xd8\x26\x43\x74\xcb\x5f\x59\x6f\xe5\x39\x87\xc7\x8d\x70\x26\x8c\x76\xfd\xa9\xef\xc9\x90\x1b\x13\xfd\x7c\xe2\xba\xf4\x4e\x46\xb5\xd3\xac\xb9\xf0\xd6\xdb\x99\xd3\x0e\x4c\x76\x1f\xa1\x58\x8f\xb8\x2e\xa3\x2e\xca\x58\x57\x26\x33\x67\xd3\x7b\x09\x94\xdd\xdc\x9e\x94\xf3\x30\x35\x2e\x4d\xb1\x1d\xb3\x92\xd9\x9a\x14\x2b\x0b\x78\x96\x4c\xc3\x96\x49\x2d\x5f\x7f\x84\xba\x82\x92\x74\xe8\x60\xc0\x55\x45\xca\x39\x98\xa4\xbd\x69\x70\x37\xe0\xea\xe4\x6c\xeb\xd0\xaf\xb5\xf7\x10\x70\x01\xd4\x07\x6c\xb0\xfd\x60\xaa\xb9\xb0\x1a\x51\xae\xe5\xcc\x4c\xa9\x78\xac\xa6\xba\x3a\x56\xe3\xa2\x5b\x2e\x39\x85\x81\x4b\xec\x67\xe4\xf0\x42\x60\xbc\x17\x2f\xc8\x77\x0b\xf5\xf3\xd5\xcd\xe6\xf2\x24\xf3\x59\xeb\x62\xca\x1a\x2c\xd9\xfd\x89\x8f\xce\xb9\x1f\x5d\x82\x31\x34\x30\x7e\x6e\x15\x50\x61\x8c\xee\xe2\x85\xd4\x25\x8a\x2d\x0a\x03\x1f\x1c\xb4\xb6\x46\x08\x0c\xcf\x48\xd7\xef\x13\x98\x57\xab\xfb\x13\x27\xcd\x9d\x05\x7f\xad\xaa\xf1\x8f\x74\x15\x60\x2a\xac\x18\x30\x82\x0d\xab\x98\x05\xae\x78\xaa\xc2\x56\xb1\x9e\x2d\xd6\x20\x49\x44\x35\xe4\xb4\x6f\xe9\xc0\x9b\x9b\x62\xe9\x8a\x48\xeb\x68\xc6\x30\xe9\x54\xfd\x44\xd8\x21\x86\x9f\xe9\xf8\xa7\x50\x56\x25\xe8\x15\x3f\xd4\x6b\x1d\xa1\x21\x63\x26\xa2\x95\x45\x09\x49\xb6\x1a\x4d\xde\xd8\x68\xa8\x5e\x12\x2e\x48\xbd\x24\x03\x93\x67\x72\x70\xcb\x7f\xb1\xc6\xf3\x81\xb1\x12\x1b\xd7\x1a\xa6\xff\x6a\x0d\xb5\x0c\x58\xd9\xd3\x79\xa5\x67\xd2\x98\xca\xc8\x96\x89\xe6\x80\x61\xcb\xb8\x61\xdf\xfc\x37\xcb\xdb\x78\x0a\x13\xd0\xe8\x83\x5d\x61\x92\xb6\xa8\x64\x6c\x8f\x32\x51\x2a\xf5\x8c\xf4\x29\x39\xf5\xf9\x65\xc4\x6c\x6a\x76\x1f\xa0\x66\xaa\x62\x52\x73\x6b\xeb\x27\x32\x4c\xf4\xa1\x51\xa5\xd0\x97\x2d\x80\x4d\x6f\x7c\x57\x1f\xf5\x0a\x98\x1d\x9a\x80\x71\xbb\x38\x45\x55\x92\x65\x87\x5c\x3b\x34\x61\x56\x8b\x98\x81\x36\xea\x1b\xcd\x89\x29\x15\x8f\x25\xa7\x67\x02\x4c\x7b\x41\xc5\x68\x32\x18\x95\xb8\x9a\x75\x9b\x42\x02\x14\x1c\x30\xd5\x90\xdc\xa8\x9e\xae\x04\xba\x03\x77\xc5\x71\x4b\x9f\x7d\xf3\x47\xda\x1b\xba\x1f\xd1\xa8\x96\x76\x41\x7c\xa1\x43\x61\x67\x9d\x0e\x3d\xd1\x19\xcf\x0d\x60\x9c\x46\xed\xd0\xb4\x40\xd9\x0c\x44\xa6\x77\xf7\x4d\x5c\x1c\x14\xb7\x5b\x60\x57\x32\x36\xa1\x88\x5c\xcf\xd2\x9c\x61\x07\x0a\xb8\x3a\x21\xdb\x56\xe4\x6e\x62\x4b\x10\x63\x88\x4c\x09\x5e\x60\xfe\xb4\x01\xca\xdd\x3e\x59\x5a\x14\xe6\xb3\x0b\xbc\x86\x86\xbe\xbc\xe7\xdf\x3b\xd4\xd1\x0d\x40\xae\x32\xb6\xd9\x67\xa0\x15\xfa\xf7\x4f\x9a\x1b\x20\xa5\x86\x61\x0f\x98\xbb\x87\x07\xca\xfb\x47\x0d\xd4\x2c\xd2\x34\xd1\xb9\xa8\x5c\x49\x0f\x13\xb9\x1f\xab\xce\x07\x33\xba\x73\xad\x71\xb2\x32\xca\x66\x87\x08\x77\xe9\x26\x38\x4a\x25\xbe\xcb\x6a\x86\x6c\x13\x01\x51\xa7\x58\xdc\x21\x0f\x01\xa6\xb4\x77\xd0\x38\x1c\xf5\x0f\x46\xf1\xa3\xe9\x3f\x20\x7d\x9c\x05\x57\xe3\x60\xc1\x52\x7c\x1b\x6d\xb3\xd9\x9a\x3f\xb2\x0e\x18\xd4\x4c\x9b\x35\x18\x89\xba\x88\x8c\x48\xdc\xa7\x21\x43\x28\x0c\xa2\xa2\xc2\xa8\xd0\x1c\x5e\x07\xa0\x66\x21\x0c\x4a\xda\x87\x4c\x60\x78\x8b\x6b\x7e\x50\xc5\x27\x0b\x12\xed\x65\xb0\x1e\xd9\x5f\xa6\xfd\x15\x86\x7b\x36\x72\xba\x11\xb8\x6d\x45\x8c\x35\xde\xaf\x7a\x1b\x5b\x11\x0f\x23\x10\x46\xab\xfa\x02\x76\x42\xeb\xe4\x46\x73\x75\xe7\x1f\xc3\x23\xb0\x7e\xb8\xde\xef\x5e\x7a\xd5\x7a\x04\x91\xcd\xc9\x17\x48\x48\x8b\xc0\x61\xa7\x02\xe9\xa7\x2c\xe5\xab\x59\x37\xdb\x97\xcd\x91\xdd\x3e\x5b\x03\x31\x06\x13\x94\xaf\xf8\xd1\x88\xd0\xe3\x01\xa0\xdf\xfd\xa2\x5b\x4c\x15\xac\x34\x30\x6b\x37\xf1\x51\x25\x6b\x81\x25\x6f\x61\xa0\xc0\x47\x97\x9a\x50\x7f\x79\x02\xda\x86\x8e\x00\xe6\x12\x59\xe2\x57\xc4\x6d\x15\x8a\xcd\xa6\xef\x14\x55\xc7\xdf\x29\xa4\x8e\x3e\x76\xf4\x6d\x56\x64\x9d\x5c\x94\xe6\x60\xbc\x84\x36\x61\xcf\x04\x36\x3b\xdb\x3a\x55\xe8\xc4\xd8\x7b\xf9\xce\xd1\xf7\xc6\xf7\x60\x7e\xef\xd8\x3e\xb1\xce\x0f\x64\xcb\xd9\x81\x82\x53\xb2\x2d\x36\x2b\x40\x2a\x65\xd3\xc0\xe6\xec\x84\xf2\x05\x1d\x40\xcf\xfa\x6b\x47\x0b\x26\x94\x6a\x21\x5b\xc8\x96\x01\x0b\xa9\x0c\x2e\x38\x07\x79\xfc\xe5\xf7\x9f\x7d\xf1\xd5\xef\xcf\xe7\x33\xd2\x8d\x57\x5d\xf1\xb6\x26\xbd\xa9\x7b\x3a\x88\x82\xe3\x17\x8c\x00\x79\x55\x92\xb1\xfb\x53\x95\x9c\xf2\x1f\x25\xda\xf5\xfb\x44\xf8\xe8\x35\x52\x31\xf6\x60\x0a\x94\xed\xd2\x55\x90\x6a\x1c\x39\x01\xfa\x80\xbf\xb3\xe9\xcd\x6f\xfb\xcb\xb0\xfb\xab\xac\x45\xfe\xfc\x7e\xa2\x8b\x8b\xc5\x24\xb6\xff\xaa\x97\x25\x4c\xb0\x67\x3a\x5a\x0a\x36\x1a\x78\x95\x32\xcc\x85\xb4\x35\xd3\x17\x8a\x33\x1a\x60\x46\x8c\x47\x7a\x7c\x15\x40\xc5\x68\x9b\x45\x9a\x5c\x96\x5f\x48\xd7\x7b\x63\x18\xaf\x14\xa2\x56\xb0\xfb\xec\x9c\x45\xff\x7e\xd2\x97\xab\xd8\xf2\x67\x29\x95\xc9\x56\x40\x93\x63\x64\x69\xe2\x55\xcd\xb3\x3b\x92\x7a\xd6\x71\x2b\x5c\x74\x3e\x9d\x73\x0a\xc0\x37\x32\x99\x12\x19\x51\x46\xb4\x6a\x00\xa3\xbc\xd7\xe8\xd1\xc8\x71\xb4\x13\xd2\x31\xb9\x8b\x39\xda\x90\x03\xa3\x51\xd2\x29\xaf\x1f\x86\x7e\x1a\x27\x52\x1c\x14\x25\xb2\x1c\xb7\x09\x20\x2c\x76\xf7\x50\x40\xaa\x6b\xe7\xfa\x25\x6a\x8c\xcb\x25\x36\x85\xf8\x8f\xe6\x25\xc2\x4c\x8b\x43\xc9\x5c\xb6\x70\x25\xc1\x92\x8a\x7d\x0d\xf0\x1d\xc8\xfb\x0a\x08\x95\x24\x02\x24\xb4\x14\xf3\x26\x9e\x61\x34\x10\x5e\x84\x80\x82\x2c\x2a\xa9\x54\xc4\x72\x05\xab\x21\x3a\x14\xef\x3a\x98\xc6\x63\xb2\x91\x3b\xac\x4d\x2b\x4f\xab\xc4\x12\xa2\x0e\xcd\x8e\xd0\xc4\x47\xc9\x3e\xd8\x8c\x57\x3e\x32\x74\x6a\x3e\xa8\x66\x7d\x9b\xb4\x74\xa5\xc1\x93\x52\x74\x8d\x4f\xce\xc8\xdd\xc1\xee\xc2\xde\x1e\xf9\x26\xbf\x2a\x18\x7b\x55\x12\x10\xe5\x63\xa4\x4f\x81\xc3\xb1\x74\x45\xd0\x47\x34\x28\x0c\xc4\x7f\x78\x1d\x31\x27\x0c\xe4\x6f\x15\x44\xc3\x40\x25\x8b\xe7\xf1\xa7\xcf\xdb\xc3\xab\xea\xa2\x12\xcf\xb4\x3c\x98\x75\x65\x8b\xf2\xd2\x93\x40\x8c\x6c\x61\x75\xcf\x05\x70\x99\x07\x3d\x0c\xb7\xc6\x0c\x07\xf0\x91\x2f\x9a\xb6\x36\x9f\x3b\x86\x6e\xc0\x14\x2b\x78\xde\x8b\x8e\x61\xee\xc1\xac\x25\x47\xd1\xac\xcd\x73\x24\x65\x50\xb1\xb7\x47\x38\x83\xe2\x09\xe5\x92\x6d\x27\x98\x84\xfc\xc7\xf3\xaa\x98\x2e\x15\x95\x53\x78\x57\x45\x3c\xce\x33\xfe\xe3\xf1\xe6\xce\x89\x02\xb0\x55\x89\x72\xf1\x12\x30\xc3\xa8\x4f\xb1\x77\x4d\x68\x53\x29\x48\xf5\x31\x9f\xcd\xd9\x6e\x19\x90\xe6\x26\xda\xe3\x53\x60\x94\x36\xd7\xe7\x91\x8a\xf2\xf9\x6c\x19\x60\x67\xe7\x50\x89\x9d\x19\xf3\x66\x5f\x21\x7f\xce\xd9\x29\x17\xc3\x0a\x28\xc8\x10\x54\x67\xef\xe0\x06\x2c\x19\x3a\xf5\x4a\xa9\x6b\x09\x6f\x66\x15\x98\xa5\xe2\xae\xf4\x19\x16\x82\x6e\xab\x08\x37\x95\x86\xa8\x88\xe2\x5c\xb1\x9a\x50\x52\x67\x65\xa0\xd6\x7c\x8a\x76\x01\x4b\x79\xb5\x0b\xf4\xf8\xce\xeb\x71\x82\x51\x42\xf1\x17\x3c\xe0\x00\x20\x74\x85\x26\x3c\x1b\x05\xd2\x8f\xaa\x3c\x1a\xed\x13\x27\xc1\x47\x64\x7b\x78\xfc\x7c\xbc\x4c\x8a\x81\xfa\x9c\x07\x76\x82\x3e\x2e\x6f\x63\x9c\xe8\x59\x7d\xcf\x50\x0c\x0b\x35\xef\x2f\xc2\x76\x5e\x0d\x8a\x38\x9a\x0f\xb5\xba\x45\x54\x18\xa2\x03\x04\x2a\xb4\x95\x8f\xcd\x28\x56\x4b\x78\x3e\xb8\x84\xa6\x6e\xf5\x04\x05\xe7\x43\x2b\x1a\x2a\x29\xa0\x20\x85\x42\x74\xa6\x89\x00\xec\x04\x4a\xc3\x72\x96\x92\xaa\x11\xd2\x01\x01\xb6\x71\xb0\x13\x03\xab\xe9\xc4\x24\x93\x70\x87\x01\x88\xee\x34\x1e\x96\xfb\x0d\xc0\x99\x1d\x70\xd7\xf1\x35\x9c\x22\x68\xd1\x46\x05\x30\x9c\xe7\x6a\x72\xd3\xa0\x4b\x17\x8e\x8b\xd1\x54\x41\x95\x77\xaf\x38\x9c\xae\x6b\x15\x90\x44\x78\x5d\x0f\x46\x3f\x35\x0e\x0c\x88\x4f\xca\x62\xc6\xad\xe1\xc4\xaf\xdb\x0d\x1a\x4d\x63\xdd\xe4\xf2\xb3\x58\x38\x66\x45\x5d\x17\x58\xd6\x50\x6e\xca\x75\x2c\x0a\x17\x27\x8b\xb9\x54\xda\x96\xa8\x51\x61\x03\x24\xde\xe9\xc6\x58\xa8\xa3\xb3\xda\x23\x14\x97\x53\x7d\x89\x73\x19\x8a\xdf\x50\x28\x0e\x9a\x40\x94\x9a\x10\x0a\xa3\x1a\x02\x36\x2d\x46\x39\x0a\xe1\x31\x9b\xd9\x59\x82\x75\x8d\x85\x00\xb5\x04\x45\x22\xfa\x45\x81\xb5\x33\x60\x64\x4c\x02\x1e\x43\x7b\xf1\xed\x6a\xc0\xb8\xb6\x3b\x57\x5d\x6a\x45\x16\x1e\x0f\x3b\x62\x5b\x07\xb8\x81\x2c\xc0\xc5\x0e\x5c\x55\x8d\x56\xe2\x88\x27\x52\x8c\xe2\x5b\x45\x80\xf3\x18\x8f\x2c\x3c\x5b\x8c\xbc\x30\x2d\x84\x60\x5d\xb9\x56\x0a\x6a\xc0\x90\x53\x91\x51\x37\xeb\x0f\xd8\x7e\x8b\xad\xc3\xcb\x9f\x49\xf6\x0d\x51\x95\xe6\xc2\x4b\x34\x88\x95\x84\x8a\xad\x92\xb7\x0b\xe8\x20\xc5\x9b\x01\xd4\xcb\xec\x1c\x5e\x6c\x8d\xed\xc2\xc5\xe0\x34\x7f\xe6\x36\x5d\x12\xec\x2c\x3a\x8f\x77\x6e\xf1\xd6\x1e\x5d\x95\xe4\x5e\x63\xe1\x90\x84\x05\x6e\xf1\xe9\x19\x70\x25\x1b\x74\xfc\x32\xbb\xfb\x13\xe2\x6f\x22\x06\x1a\xdf\x3b\xc8\x2c\x03\xd8\xdb\x3b\x0b\x38\xef\xb8\x65\x64\xcd\xe8\x61\xa3\x90\xa6\x87\xad\xda\xcd\xd6\x6e\xfc\x38\xa8\x65\x13\x7a\x6f\x3e\x02\x8d\x9b\x8a\xd0\x8e\x28\x0f\xdc\x93\x17\xce\x7d\xf7\x9b\xef\x41\x9d\xa2\xff\x48\x9b\xc2\x28\xbe\x73\xdf\x7d\xfa\xbd\x1b\x99\xb6\x6e\x20\xd9\x9f\xba\x62\x53\x2b\x54\xa9\x6b\x85\x62\xc9\xbe\x9a\x75\x2a\x2e\x1d\xc3\x1c\x0c\xd3\x95\x6f\xcd\x31\x7e\x44\x57\xf7\x64\xe4\x33\x6f\x7c\xb6\xc1\xe3\x37\x7d\x46\x15\x77\xec\xf8\x42\x25\x9f\x14\x04\xb8\xc8\x16\xfc\x95\xb5\x08\x06\xa4\x14\x2d\x89\x72\xe2\x07\x1c\x35\x60\x21\x9b\x01\x75\x12\x07\xaf\x74\xcb\x7f\xe1\x5f\x06\x42\xb8\x99\x1f\x82\x9e\x1c\xed\xf9\x44\x27\x16\x39\x52\x30\xde\x64\xfc\x36\x79\xa2\x86\x1b\x87\x55\xb0\xbc\xfd\x57\x6b\x60\x09\xc1\x1c\x39\x3e\xc9\x64\x5c\x72\x35\x36\x3c\x7e\x2e\x92\x31\x86\x40\xe8\xe2\x6e\x68\x26\x25\x9b\x30\xc5\x40\x12\xdd\x4a\xf8\x8a\x42\x84\x9b\x33\x21\x3b\x1b\x15\xbe\xac\x88\x28\x5a\xca\xd8\xff\x75\x98\xe3\xf1\xff\x10\x19\xd5\xaf\x6e\xc6\x1c\x77\xd0\x58\xd1\xa1\xab\xf8\xac\xfa\x91\x6a\x24\x05\x74\x11\x23\x08\xa2\x0c\xa8\x8b\x7d\x2c\x2a\x74\x4a\x7f\x57\x71\xe7\xa0\xef\x83\x75\x84\xd2\x74\x74\xba\xf5\xe6\x50\xdd\xd2\x32\xa1\xb2\x85\xa4\x8a\xc4\xe4\x3b\x4a\x87\xfb\x1c\xfb\x80\x96\x4f\xed\xb0\x55\x5b\x41\x95\x65\x65\xd3\x0c\x71\x0e\x87\xfd\x4f\xb1\x0f\xb4\x09\xfb\x7e\x66\x33\x7c\x4a\x20\x81\xe2\x6a\x61\x70\xea\xba\x77\x3b\x93\x2d\x27\x9a\xef\xef\xb5\x4e\x02\x99\x81\x57\x55\x12\x7c\x21\x45\x7f\x63\x71\x26\xb7\xe8\x0c\x01\x1c\x01\x48\x3b\x39\x47\x49\xe8\xf6\xfa\x72\x6b\xe2\x55\x07\x00\x7a\xcc\x58\xba\x46\x24\x21\x03\x04\x04\xe8\x86\xc4\x34\xba\xed\xc2\x02\x83\xe1\xe3\x26\xc0\x25\xa1\x00\x85\x48\x99\x44\x05\xcb\xa1\x63\xdc\x38\xa8\x36\x25\x5b\x60\x77\xdd\x59\x30\xea\x5e\x99\x04\xe0\x08\x7e\xe8\x94\x5d\x02\xcb\x0c\x81\x87\x2a\xdd\xd2\x01\x7b\x3b\xd9\x05\x09\x8b\xca\xf1\x71\xec\xca\x23\x0f\x5e\x7c\x3f\xfa\xe8\x43\x2c\xa1\x90\x63\x95\xc3\x2d\x72\x39\x62\x48\xc5\x14\x90\x12\x9f\xb8\xe2\x09\xeb\xa1\x5f\x5b\x10\xfb\x64\xf6\xbe\x37\x75\xaf\x0b\xa4\x4c\x84\xc0\x1b\x07\x1b\x88\x7c\x32\xc3\xda\x8b\x6f\xf4\x61\x37\x37\x80\x04\x3a\x3b\xdf\x7a\xfb\x4e\xbc\xcb\x46\x1a\x00\x3e\x0b\xa5\xe6\x81\xa3\x95\x6c\xb7\x92\x43\xf3\x05\xd4\xc3\x89\x13\xbc\xab\x57\xbf\x03\xf4\x4b\x27\x03\xda\x2e\x23\x13\x40\xce\x04\x03\x15\xc6\x28\x37\x35\x37\x83\x83\x1b\x10\x21\xd5\xcd\xe0\xe2\x51\x10\xb0\x81\x51\xac\xb8\x31\xe5\x68\x88\x57\x60\x03\x92\x14\x65\x63\xbc\xfa\xcc\xdf\x59\x57\xe6\x4e\x64\x3c\x09\xc5\x1a\xa3\x5d\x24\xe2\xda\x06\x55\xd6\xad\xf4\x0d\xda\x29\xba\xf8\x44\x02\x4d\x4f\x15\x8f\x26\x96\xde\x78\x9b\xc7\xde\xf2\x9e\xc4\x86\xb1\x9f\x9a\x08\x46\x02\x98\x83\x3e\x4c\x85\x3a\x1e\x5d\x7a\x9f\xb6\xd7\xef\x87\x0a\xd8\xd1\x20\x2e\x06\xf3\xbb\x9e\xb7\x31\x63\x74\xd7\xd1\x3d\x66\x72\xd7\x85\x66\x69\x63\xd0\x04\x59\x53\xa1\x02\x7d\x1d\x4f\x9a\x43\xd6\x97\x07\x9e\x6c\xb6\xaa\x5d\x70\x2a\x8a\x79\x8a\x4f\x2d\xd0\x63\xf6\xf1\x10\x34\xfc\x49\x3e\xff\x49\x26\x43\xbe\x3a\xef\x78\x5d\x5f\x2f\x8e\x22\x40\x6f\x06\x8d\x02\x76\xf1\x89\xe6\x1f\xec\x0a\xa3\xa6\xc1\x2c\xe2\x11\x87\x00\xc6\x3a\x49\xd8\x01\xac\xcd\xad\xc7\x30\x5d\xff\x01\xdb\xaf\x88\x3e\x58\x33\x76\xc8\x60\x64\x4f\xfd\x45\xb0\x7e\x73\x63\x78\x14\xa6\x95\x78\xd8\xe4\xc7\xcb\xea\x30\xc3\x9c\x44\x38\x27\x86\x51\x12\xe2\x4d\x67\x0e\x33\x76\xfe\xc4\x56\xc8\x4b\x4d\xe7\xa6\x2c\x25\xf0\xa8\xe8\x6e\x35\x8a\x8e\x08\x8f\x8b\xef\xab\x0b\x93\xd3\xc0\xff\x67\x7c\x2e\xae\xa3\x8e\x89\xc5\x30\x3a\x9d\xb6\x44\xdc\xeb\x91\x24\x28\xe7\xf9\x3e\xbe\x9b\x08\xe7\x72\xd0\xc5\xc6\x3d\x41\x47\x8b\x74\xba\x21\xc8\x51\x82\x0a\x6e\xd0\x71\xae\xe8\xc0\x83\x7f\xb3\xfb\xac\xf6\xed\xa7\xde\xce\x9c\x01\x31\x90\x2d\x87\x80\x30\x45\x43\x07\x50\x5f\xca\xcd\xa6\x8d\xc4\x2d\xf1\x83\xca\x20\x0f\x2e\x25\xff\x4e\xb6\xfc\xf4\xcb\xf6\x83\xa7\x72\xaa\x83\xd1\x67\x1a\x2a\x26\x2f\x90\x2e\x93\xf0\x20\xdd\x91\x1c\xb4\xc5\xa3\x48\xe2\x71\xd0\xc3\xd7\x71\x1e\x14\x8e\x3d\xeb\x56\xc5\x3c\xf8\xe0\x7a\xff\x94\x38\x34\x7d\xe4\x13\x17\x87\xa6\xc7\x52\x2e\xa5\x0a\x6e\x3f\x9e\x7f\x50\xd0\xad\xd4\xe0\x28\xc0\x95\x1b\x31\x80\x91\xd3\x62\xba\x73\x4f\x88\xa1\xfa\xad\xf1\xd7\x78\x6d\x8c\x1d\xd5\xe1\x3b\xdd\xc1\x79\x6f\xf5\x9e\x11\x38\xac\x3b\xa0\x6c\x3f\x14\x5b\x8f\x61\xca\x2e\x9f\x67\xe0\xb9\x93\xe1\x54\xd5\x27\x70\x66\x1c\x04\xc7\x4a\x18\x3e\xf1\x80\x14\x4c\xdd\x45\x9f\x2b\x74\x00\x98\x7b\x52\xfa\xe1\x53\x4f\x3a\xc2\x6c\x0f\x8f\xc1\xdc\xe4\x92\xf5\xc1\x84\x3f\xbc\xd2\x1a\x86\x0e\x67\x5a\x6b\x53\xf1\xa8\xa4\xac\x0a\xb0\xf5\x12\x17\x8b\x97\x3e\xb1\xb4\xa2\xc9\x08\x02\xeb\x5b\xc2\x24\xe5\x72\x33\x45\x3e\xef\x8d\xe9\x0c\x21\xde\xc6\x4b\x6f\xa6\xae\x57\x80\x0f\xc1\x2f\x5e\x28\x5e\xea\xd2\x1a\x5d\x31\x5e\xc6\xa3\x76\x85\x1b\x7d\x0f\x17\x85\x42\xf5\x01\x4c\x81\xe9\x06\x74\x51\x7f\x6a\x24\x72\xbc\x8e\x2d\x77\x27\xfd\xe0\x3c\xda\x20\xfe\x8e\xa8\xb8\x4e\x0c\x88\x2e\x0f\x50\xc1\x91\xa9\x86\xca\x83\x7d\x9a\xd4\x74\x27\x61\x4e\x06\xf5\xc5\x35\xc8\xc7\xf7\xea\x50\x4a\x63\x47\x45\x8a\x77\x0e\x25\x7c\xc8\x1c\x3a\x5c\xee\xe8\x05\xe3\x58\x02\x56\x86\x97\xa9\x28\xa2\x45\xe2\xe4\x62\xf8\x59\xb4\x42\xa0\x51\xd2\x48\xcc\x90\x33\x5d\x3d\x3c\xbc\x92\x9d\x77\xe8\x26\x7b\x4c\x23\xe6\x2d\x0e\x5d\x5d\xc7\x0f\x61\xb4\xee\xd2\x23\x5e\xbf\x70\x9b\x74\x19\x24\x4b\x11\xfe\x49\xbe\x03\x1c\x73\x21\x04\x44\x87\xe8\x46\x2a\xbe\xdf\x5b\x7a\xcc\x77\xd1\xf1\xb4\x49\x2e\x79\x1c\x75\x19\x36\x4e\xfc\x9a\xdd\x87\xac\x5a\x82\xe6\xe2\xd9\x39\xf1\x72\xde\x56\x41\x39\x9f\x20\x22\xed\xee\x9e\x00\x3f\xc3\xc0\x1e\x8a\x21\x69\x1c\xdc\xc2\xd8\x1a\x90\xad\x53\xe3\x18\xc2\x79\x34\x89\x69\x58\x16\xf7\x51\x81\xa6\x2f\x7c\x9f\x8f\x02\xeb\xac\x6f\xfe\x7c\xf9\x5b\x4b\x87\x25\xf3\x81\xc0\xd9\x27\x51\xff\xc6\xe3\x75\xf1\x9c\xd6\x5f\xfb\x89\x7d\x06\x9c\x4a\x84\x92\xaf\x69\xa9\x1a\x23\x8e\x24\x7b\x95\x16\x46\x88\xbd\x85\x97\x92\x34\xef\x45\xeb\xe8\x39\x7a\xe1\x4f\x96\x70\xa1\x54\xe6\x0f\x8e\x2f\xc2\x63\x76\xbe\x92\x02\xa4\x4a\xd9\x1a\x90\xff\x32\x1a\xe8\xe4\x25\xb6\x3f\x32\xc3\x84\x1b\xd1\x46\x97\x5e\x97\x9f\x71\xd0\x2f\x6f\x68\x1d\x5f\xe2\x3f\x7e\xd7\x38\x99\x54\xc1\xb3\xe8\xaf\x66\x65\x25\x30\x6f\x6f\xbc\xc6\xd8\x39\x66\x7f\xab\x73\xc0\x78\xb8\x41\x6e\x87\x4f\x10\x9a\x4f\x8f\x9a\x0f\x8e\x11\x37\xcb\x2f\x30\xde\x65\x36\x1e\x15\x1c\xec\x20\x33\x10\x9b\xb5\x03\x46\xf9\x5d\x64\xd8\xd4\x66\x27\x73\x11\x68\x11\xab\x0c\xdb\x21\x56\x65\x83\x50\xb3\x6a\x63\x18\xa4\x14\x55\x65\xe2\x28\x54\x24\x15\x5d\xf5\x01\x9c\x01\xd1\xb4\x4e\xc7\xad\x8b\x78\x37\xf7\x12\x92\xd1\xc5\x0b\xf4\xa7\x25\xf7\xb3\x41\x56\xef\xae\xb7\xef\x8f\x32\xfd\xa9\x0c\x7d\x72\x6f\xda\x9b\x9b\x37\x69\x51\x5d\x40\xd4\x62\x50\x27\x90\x00\x61\x84\xca\x2d\x65\xcf\xe0\xd8\x7a\xd0\x30\x40\xfb\x06\x2b\xe0\x7f\x5e\xfe\xf3\xd7\x1c\x7c\x48\xfd\xfe\xf8\xc9\xb5\x6b\xd7\x3e\x41\xd5\xfe\x93\x4a\x29\x67\x17\xf0\x63\x46\xc6\xc4\x57\x3d\x25\xc4\x11\xc6\xf4\x4f\xa2\x70\xcb\x40\x54\x91\xef\xc5\x52\x6a\xa7\xf0\xc5\x58\x93\x87\xe2\x72\x9a\xf9\xd5\xd8\xe6\x30\xf5\x28\x1b\xec\x08\x15\x63\xd8\xb1\xe2\xf6\x55\x3b\x88\xc6\x91\x2c\x1b\x14\x74\x37\xe5\x2f\x2f\xb5\xb6\x9e\x00\x7e\x0d\x06\x82\x62\x9e\x90\x4f\x77\x32\x23\x8d\xd0\x69\xaa\x53\xc8\x0d\x51\xae\x1b\x1a\xb0\x20\x12\x4b\xd4\x5a\x72\xfd\x30\x05\xf3\x55\xfe\x84\x5c\x9e\xa3\x70\xf0\x8e\x52\x7d\xcb\xfa\xf8\x8e\xc9\x85\x84\x2f\x2d\xee\xcb\x85\x31\xbe\x4a\x41\xe3\x06\x9e\x69\x0c\x3d\xd2\x63\x26\xd3\x8d\x72\x3b\xe2\x2a\xa3\xbb\x43\xb3\x57\xda\x1d\xf1\xec\x55\x40\xbb\x75\xd1\x55\x3e\x8b\xba\xa3\xba\xe0\x5d\x14\xdf\x05\x7b\xce\x51\x7c\x66\xf1\xa6\x1d\x1e\x37\xb0\xfb\x9c\x30\x8f\x99\x21\x28\xbb\xa7\xc9\xf0\x99\x4e\x64\x29\x25\xc0\x23\x84\x12\x37\x97\x4a\x5f\x49\x06\x5b\x13\x95\x16\x0e\x18\x67\xcd\x87\x63\x6a\x43\x4e\xb7\xcb\x58\x85\xbd\x8c\x4b\x63\x30\xa5\x30\x9e\xb9\x41\x0e\xaa\x53\xe1\x74\x91\xc2\x48\x12\xb5\x48\x29\x6a\xe2\x98\x22\xb2\xbd\x3e\xdf\x1e\x09\x2b\x86\xc5\x9c\x33\x64\x06\x4c\x73\x76\x2a\x1d\xec\x6b\xce\x2b\x00\x56\x91\xe4\xf1\xb0\x14\xa2\x10\xb4\x8b\x92\x90\xf2\x68\xa0\x2e\xc3\x82\x97\xe2\x24\xcd\xda\x11\x0d\x33\xe4\x90\x88\x19\x6c\x24\xe6\xb7\x63\x3f\x86\xe3\x93\xcd\x8e\x62\xe3\x93\xcd\x6a\x1f\x08\x52\xee\x6c\xcb\x08\x52\x0e\x61\xab\x33\xf8\xd8\xac\xdb\x25\xfa\x38\x6e\xae\x51\xbb\x3b\x1e\xe9\x31\x15\xa2\x36\xb8\x51\x31\xb0\xc1\x95\xb5\x20\x69\xc6\x94\x0d\x1e\x51\x9f\x3b\x2c\xf1\x33\xfb\xd5\x77\x35\x3a\x06\x1c\xb2\xca\x33\xd9\xfe\xfe\xf3\x7d\x25\xe7\x9a\x8b\xb1\xcd\x95\x52\x1a\xd6\xfc\xed\x6c\x6b\xab\xaa\x32\x74\x12\x00\x7a\x1c\x31\x6c\xb2\xba\xdf\xba\x75\xbd\x79\xfd\x50\x3e\x73\xb8\x80\x5c\x20\x51\x41\x02\x54\x02\x3c\x23\x15\xcd\x31\x45\xfe\x39\xb4\x10\x40\x39\x24\x06\x2f\xb0\xee\xa0\x73\x2d\x89\x7f\x51\x4c\x36\x2c\x14\x2b\x1c\xa4\x6a\x34\xeb\xab\xad\xdd\x35\x05\x88\xc5\x82\xd0\xd1\x97\x98\x5d\x51\xc5\x2d\x5a\xe2\x9e\xe6\xcc\x91\xa0\x88\x02\x5b\x5a\x38\x34\x42\x41\xa7\xbc\xa9\x51\x7f\xf2\x85\xae\x80\xa7\x42\x2f\xd6\xfc\xd9\xdb\xde\xe8\x66\x10\xe8\xe8\xdd\x9e\x8a\x40\x30\xf6\x34\x84\xc2\x17\xec\xf2\xc6\xd1\x54\xeb\x74\x89\x72\xa5\xd1\x37\x0a\x1c\xe1\x6b\x66\x7c\x53\x40\x62\x46\x74\x80\xca\xf9\x2e\x81\x2a\xaa\x98\x23\x7f\xe8\x6f\x39\xc9\x40\x8a\x9d\xa8\x06\x10\x99\x52\xaa\xbf\x9c\x68\x4d\x4f\x34\xb7\x4f\x83\xaf\xc5\x92\xad\xaa\xb5\xd7\x25\x75\x57\x50\x0a\x38\x43\xe4\x37\xb7\x5f\x53\x38\xb8\xfa\x1c\xf2\xc1\xab\x8f\x29\xf4\xa1\x61\x76\x3c\xbc\x4d\x6b\x8c\xb1\x71\x38\x89\xb7\x52\xdf\xbd\x32\x51\x7e\x2e\x13\xe0\x2d\x12\xe8\x82\x37\x52\xce\xb9\x96\x8a\x28\xd2\x43\x21\xf2\xe2\x7c\x25\xfe\xd1\x9c\x22\x30\x55\x5c\x4e\x0d\x48\xe2\xd3\xd0\x61\x45\x50\x4c\x2a\x89\x79\xed\x35\x5c\x57\x65\x56\xe4\xb8\x12\xbc\xd0\x1b\x04\x4b\x99\x5c\x82\xbc\x99\x7c\x34\x10\x59\x19\x9d\x09\x92\x90\x2f\x9c\x4f\xc1\x28\x05\xe5\x1a\x68\x94\xc9\xbc\xe2\x4c\x61\x09\xf2\x55\xaa\x74\x25\x03\xf6\x28\x09\x11\xc6\xae\xba\x0a\xa1\x9a\xb9\x56\x22\x67\x10\x7d\x8d\xe2\x9f\x4e\x49\xd1\xad\x7e\xb7\x8a\xfa\xf8\xfa\x4d\xd8\x86\x9d\x03\x30\x03\x2b\x50\xd1\xa1\x8b\xe7\xd1\x6e\x50\xdd\xa2\xd4\x6a\x3b\x3f\xa1\xd7\xe2\xd6\xe3\xd6\xf1\xb1\xe4\xea\x8d\x52\x8d\xa8\x4c\xa7\x0f\x74\x00\xa1\x26\x23\x95\xaf\x3a\xa6\x92\x0a\xa0\x54\x1a\xaf\x37\x7f\x0b\xcc\xa4\x20\x11\x40\xfd\xa8\xb5\xbb\x8b\x51\x95\xcb\x2f\x70\x1b\x31\x4a\x6f\xdd\xc5\x3b\xf2\x0b\xab\x8d\xa3\xad\xe6\x4c\xcd\x5b\xbf\x61\xa4\x6d\xd0\x7d\xe0\xf5\x53\x77\x50\x56\x21\x3a\x02\xca\xc9\xc6\xfb\x80\x8f\xbb\xa2\xbb\x81\xac\x1a\xb5\x1f\x64\x09\x98\x88\xe5\xda\x67\x94\xdc\x92\xa9\x1c\x06\xdb\x0e\xc9\xb5\x6a\x93\x52\x4c\xe1\xc3\x24\xc3\xa9\x07\x64\x68\x60\xe6\x06\x69\xed\x7a\x7b\xbe\x03\x5b\xf8\x7b\x23\x2f\x86\xca\xaa\x66\xe4\xc4\x30\x4b\x23\x21\xdb\x0c\x86\x87\xc5\x94\x47\x09\xc3\x38\x77\x87\x9b\xab\x3b\xe8\xff\xa9\xdd\xf1\x6f\xce\x72\xbc\x36\xda\x5d\x73\xd3\x94\x5c\x45\x2e\xc2\xf3\x2d\x2d\x69\x4e\xdf\xa8\x97\xe4\x5d\xc6\xb5\x5b\xf6\x63\xb0\x35\x0b\x7c\xce\x4c\x7e\xc4\xb7\x45\xd9\x45\x1f\xe4\xc0\x56\xb7\x86\x29\x1a\x91\xb5\x40\x4a\x2c\x0d\xac\x40\x9c\x94\x78\x0b\xa7\x68\x3b\x45\xe4\x2f\x86\x9d\x4f\x29\x18\x30\xbb\xaf\xeb\xe4\x6d\x8a\x8f\xb9\x3e\x4c\x49\x03\xef\xe1\xe9\x38\x9d\x91\x72\x2a\x10\x57\x21\x87\xf2\x73\xe0\x2d\xde\x6b\x94\x4b\x0c\xdd\x09\x98\xa7\x7a\x5a\xb5\xc7\x05\xe1\xfb\xe4\x07\xcf\x62\x22\x27\xb1\xd5\x50\x0a\x6f\xd5\x34\x62\x8a\x6f\x8b\xf0\x40\xe5\x3c\x25\x3e\x47\x88\x7c\x67\x41\x43\xdf\x3b\xe0\x35\xfd\x47\x6e\xb2\xd4\xe4\x56\x94\xbf\xb2\x29\x77\x0f\x17\x0e\xa1\x4b\x6f\x14\x88\xe9\x0e\x4f\x27\xc8\x84\x82\x1d\x04\xf1\xaf\xc3\xde\xec\x66\xab\xb6\xc2\x5d\x71\x34\x81\x74\x0e\x72\x7f\xe4\x21\x47\x13\xa8\x70\x6a\xaa\x8f\x91\x88\x59\xd7\xd5\x5a\x86\x0e\x2b\xc7\x61\x70\x55\xbc\x6b\xf4\x8e\x03\x79\xc5\x33\xba\x33\xd1\x3c\xda\x22\xa3\x27\xfe\xc2\xbc\x41\xae\xff\xe5\x3b\xf3\x46\x1b\x1f\x88\xe6\x0e\x72\x99\x53\x9d\x5f\x7b\x28\x10\x5c\x14\x97\x3e\x47\xb7\xc3\xaa\x77\x7c\x56\x7e\x5d\xdc\xe5\xde\xf8\x07\xbc\xf3\x5d\xc6\x2a\xae\x76\x20\x35\x73\x44\xbf\xc0\x39\x2f\x35\x4c\x02\xfd\xe7\xfa\xe6\x85\xe8\xcf\xf2\xcd\x87\x67\x1a\xdc\x17\x33\xa6\xfa\x21\x5b\x2f\x61\xa6\xca\xe8\xb4\x04\xe3\x6e\x03\x75\x83\xfd\xf0\xb5\x20\x3d\x2b\x7d\x56\xf5\x6b\xae\x05\x75\x71\xdd\xc6\xde\x0f\xea\x36\x46\x64\x29\x92\x30\x96\x97\x2c\x74\x49\x28\x0e\x5a\xdd\x14\x12\xf8\xff\xe2\x4d\xa1\x38\xc7\x27\x5e\x02\xa0\x20\x78\x36\x66\xf0\x92\xa5\xe1\xc0\x62\xc2\xe0\x5c\xe8\xd5\xbd\x20\x55\xca\xc1\x24\x02\x2a\x6c\x09\xc1\x10\x53\xd5\xd8\x92\x6d\x2a\x3c\x99\x85\x73\x5a\x65\xed\x10\xee\x1c\x2e\xd4\x77\x5c\xe8\xf2\x34\x5f\xf2\x31\x60\x4a\xd9\xab\x78\x68\xcd\xdf\x3b\x5a\xe0\xd2\x70\x13\xdc\x59\x00\xc4\xfe\x7e\x23\xa6\x47\x15\x88\x1f\xda\x7f\xb0\x0b\xac\x37\xda\x34\x2c\x74\xda\xc6\x2b\x2e\x0f\xe7\x5a\x8b\xb3\xad\xa3\xe7\x8d\xfa\x71\x50\xca\x1e\xc0\x84\x99\x53\x28\x28\x04\x7d\x01\xcb\x28\x1d\x8d\x4e\x3a\x2a\x65\x22\xe9\xb4\xd7\x89\x94\x31\xcc\xfa\x42\x22\x8f\x62\x27\xb0\x02\xaa\xc3\x41\x3a\x62\xda\xdb\xc4\x82\x23\xcd\x60\xba\x4b\xbe\x0a\xc8\xf5\x29\xff\x0b\x0a\xca\xf3\x98\x5e\x45\x72\xab\x28\x91\xc6\x05\xe6\xe0\xc2\x25\xa8\xd5\xc8\x1d\x4e\x18\x5a\x1d\x3d\x74\x24\x01\x62\xca\x35\xc2\x0d\xa9\x83\xba\x1b\x1d\xa8\x48\x20\x3c\xde\x9e\xc7\x5b\x0b\xc8\x29\x5f\x3e\x0a\xf2\xea\x18\x77\x27\xa9\x59\x52\x70\x55\xbf\xde\xd8\x03\x18\x71\xb8\x5f\x13\xe0\x17\x74\xfc\x8f\xe1\x11\xb9\x2e\x71\x5b\x6e\x32\x7c\x68\x04\x9c\x7d\x57\x46\x20\xa9\x51\x42\x23\x30\x01\x7e\xcd\x08\x30\xa1\x1d\x7b\x2f\x61\x28\x9c\x5f\x7b\x74\x1f\xd4\x1a\x53\xf9\xc1\xe8\x2f\x6a\x24\x6e\x64\xea\xde\x48\x20\x9f\x43\x17\x48\x18\x28\x38\x73\x26\x10\x25\x66\xb8\x90\x88\xdf\xed\x90\xfc\x41\x7a\x2c\x9e\x40\xed\xf0\xec\x6d\x6d\xb1\x56\x60\x3a\x18\xe8\x42\xd1\x02\xd4\x54\x92\xf4\x9d\x69\xed\x45\xce\x57\xc3\xfc\x81\x87\xa6\xf5\x36\x9e\x99\x6c\x22\x2e\x8b\x97\xa3\x71\x13\x54\x37\x54\x59\x91\x33\xee\x8d\x86\x68\x1b\x7d\x3b\xa4\x02\xa9\x3d\xcf\xab\x11\xd3\xb3\xd1\x9e\x32\xef\x18\x45\x21\x6e\xdd\x09\x6b\xb8\x6d\xe2\xaf\xa5\x92\x30\xd5\x0b\x69\x4a\xa1\xb3\x19\xb8\x39\x48\xbc\x95\x78\xe3\x18\x99\x33\x1d\xc4\xe2\x21\x54\x24\x6b\x55\xc7\xfd\xe4\x8e\x81\x6a\xf7\x16\xb9\x92\x43\x93\x0b\x24\xb5\xb1\xe3\x3b\x95\x46\x45\x8b\x7c\x35\x1a\xc6\x10\xde\x5f\x9a\x06\x98\x89\x18\x56\xbf\xa2\x9b\xc8\x94\xf0\x88\x82\xec\xa4\x08\xe7\xc0\x8c\xb3\xb3\xcf\xa0\x15\x23\x01\x87\xc9\x12\xfe\x79\x23\x33\xfd\x38\xcc\x82\x42\x97\x59\xbb\x70\x8c\x0f\xf4\x8f\x1a\xfa\xee\x43\xb3\x5b\xde\x14\xbf\x0c\x21\x34\xc2\x4e\x4e\xc2\x4f\xb3\x68\x66\x42\xe9\xc7\xc8\x3f\xad\xce\x44\x8d\x51\x86\xec\x1f\xee\x42\x99\x40\x91\x5d\x61\x3c\xc8\x63\xee\x8c\x30\xb4\x9c\x7a\x51\xdc\x03\x0b\xbe\xce\xd6\x0a\x60\xbe\xa1\x59\x8c\x7e\x07\x95\x4f\xce\xdb\x5b\x69\xd5\xe4\xf4\xd6\xe4\x76\xea\xce\xaf\x4e\x02\xa8\xb3\x9c\x05\xf7\x51\x55\x36\x58\x42\xf8\xf7\xdd\x9f\xfd\xc2\xe3\x65\xf5\xbe\x91\xba\x13\x66\xbe\x12\xa5\x14\x53\x55\x16\x93\x6a\x4c\x15\xe1\x9d\x29\xbc\x34\xa0\x14\x7d\x23\x47\x9b\x02\xe1\x1c\xef\xa1\xe4\xee\xaa\x48\x85\x57\x48\xbe\xe3\xd9\xb9\xe6\xc6\x91\xbe\xa4\xe6\x14\xb2\x74\x82\xaf\x9e\x33\x81\x39\xa8\x09\xa0\x2b\xc7\x0c\x76\x8f\x46\xb9\x1b\x53\x27\xb7\x26\xe0\x18\xf5\x2a\x6e\x89\x7c\x9e\xda\x45\xaa\xe1\x9c\xa2\x5d\x0a\x25\xfc\xd2\x99\x0f\x43\xad\x0d\xc1\x72\xe5\xc9\x95\x5a\x51\xe3\x86\xb1\xb5\xb6\xc6\x9a\xb7\xf6\xfd\xe1\x91\xd8\x9e\x93\xd9\x42\xbf\x23\x79\x0d\xf5\x03\x3e\x34\x0c\x50\x53\x30\xb9\x4c\x46\xd2\x38\xeb\x3c\xf9\x53\xc6\xd7\x83\x67\x3a\x06\x24\xf4\x15\x34\x37\xce\xc0\x12\xfa\xaa\x28\x21\xee\x2b\xdf\xc8\x8c\x96\xb5\xde\x3e\x0a\x7d\xc2\x87\xa0\xd6\x40\x5a\x1d\x85\xbf\xae\xac\xf1\x06\xe4\x03\xa3\x50\x19\x66\x79\xa2\x10\xb7\x8e\x76\x28\xbe\xba\x63\x3a\xe1\xb4\x1c\xe1\x32\xd6\xe1\x62\x07\xca\x57\x82\x3b\x6a\x18\xae\xd4\x8e\x32\x7e\x06\xe3\x68\x2e\x5a\x60\xe8\xef\x1d\xbd\xa8\x20\xbb\x68\x01\xfb\xa8\x3a\xc0\xa9\x91\x46\x1d\xf6\xeb\x5a\xc7\x0a\xd1\xe6\xed\x68\x47\x62\xd0\xe2\x6a\xb4\x1f\xdc\x54\x1e\xa3\x18\xca\x14\x07\xae\x88\x3b\x79\xb6\x2a\x06\x8c\x9f\x0f\xa0\x70\xdc\xd1\xd7\xf1\x20\xa5\x0a\x5a\xe5\x5b\xe4\xcc\x0e\xca\x31\x8e\xb5\x90\x94\xa4\x26\x0e\x5d\x03\x07\x79\x8c\x1a\xde\xf2\x33\xce\x64\x62\xae\xdd\xd9\x35\x03\xd1\xc9\x21\x3e\xe1\x16\xe4\x0c\x9a\x85\xbd\x91\x9a\x46\x37\x28\x42\x38\x5b\xa0\x53\xdd\x54\x60\x3d\xaa\x33\x17\xdd\x2c\x9f\x03\xeb\x3c\x13\xbf\xa0\x85\xce\xa1\xe9\x36\x60\x5a\x1f\x1e\x14\xf9\xec\xf0\x8e\x69\xf6\xaa\x1d\x1e\x8e\xec\xb3\x9d\xfb\xfe\xda\x4f\x1f\xaa\x18\x19\x85\x59\xf5\x8c\x21\xe0\x63\x24\x03\x69\xf5\x92\x83\x0a\x35\x13\xcf\xe9\xa3\x1b\xde\xf2\x09\xc6\x14\x2d\xec\x77\xab\x13\xdf\xab\x51\x31\xb6\xd7\x92\xed\x0e\x15\xd2\x49\x7a\x42\xc3\x1d\xa4\x33\x4f\xbe\x2b\x22\x79\x99\x3e\x3e\x0f\x9f\x2f\xf0\x05\xda\xec\xdf\x6d\x3a\x1a\x44\xe7\x96\xbc\xf0\x53\x6d\xed\x3c\xf1\xe6\x6f\x01\xb7\x93\x97\x4b\xd4\x4b\x59\x72\x54\x77\xb8\x2a\x79\x0d\xc5\x4a\x9f\x38\xbb\xef\xc8\x1c\x98\x11\x9a\xe3\xf9\xd0\x1c\x8c\x53\xf7\xf0\x44\x4c\xa4\x50\xd2\x69\x02\xd4\x9c\xa2\xca\x2e\x5f\x9d\xa0\x8e\xa5\x99\x3e\x17\x53\xde\xa4\x6e\xc3\x37\xbb\x8d\x5d\x87\x8e\x2e\xbb\x4c\x2a\x24\x65\xf8\x5d\xa7\x4a\xb1\x9c\xcd\xab\x07\x9d\xf8\x25\x16\x7f\x71\xbf\xbd\xf8\x26\xb4\x4b\x2b\x25\x3c\x69\x4c\x0e\x38\x25\xa7\x02\xb6\x82\x2d\x87\x8b\xb0\x1e\xf2\x81\x24\x54\x7b\x7c\x36\xae\x16\x58\x03\xa0\xf3\x24\x2b\x7c\x1b\x9a\xed\x86\xb1\x51\xa0\x58\xf6\xce\x46\x6a\x95\x9d\x72\x2a\xa7\xea\xa0\xef\x32\xcd\x2e\x6e\xbe\x15\x84\x6b\x3d\x86\xe8\xe3\x48\x27\xbc\x58\x13\x54\x95\x4a\x4e\x5f\x39\x05\x43\xca\x24\x18\x82\x93\x56\x47\x7a\x29\x3a\x94\x5e\x23\x99\x03\x9c\x56\x8a\x49\xc4\x01\x29\xeb\xed\xdb\x55\xbe\xde\x8d\xe7\x90\x77\xf7\x62\x5a\x57\x43\x92\x3a\xd2\x07\x0d\xaa\x6b\x1d\xbc\xb4\x14\x82\x6f\x8f\xdf\xf2\x17\x62\xfa\x50\x28\x1b\xb4\x53\xc5\x10\xc2\xac\x3f\xc0\x17\xeb\x0c\xb4\x51\x8d\x28\x02\x8c\x4a\xb1\x58\x30\x2b\x65\x33\x60\x85\x19\x15\x9a\x4f\x8f\xda\x8b\xaf\xce\xaa\x40\x31\x04\x72\x96\xa5\x1f\x29\x32\x07\xda\xad\xa6\x1c\xf6\x64\x30\x38\x91\x31\xf1\xa1\x8a\x4e\xdf\xbf\xdb\x69\x60\xe1\x0c\x53\x3b\x6c\xbd\x5c\xeb\xa4\xb7\x3e\xc7\x29\xe3\x2b\x5d\x45\x54\xb3\xd2\x57\x14\xfe\x28\x6e\xce\xba\x8c\x9f\xac\x58\xd4\x31\x74\x14\x77\x26\xa9\x49\xed\x18\x8a\xc3\x34\x23\xd0\x5d\xa9\x92\x2e\x57\x60\xc7\x4a\x9f\x5f\x5d\xc6\x84\x25\x74\x41\xe7\xe6\x19\x6b\xd6\x51\x3b\xbe\xf3\xce\xd6\x42\x8d\xa4\x53\xe9\x41\x3b\x66\x0c\x9f\xe3\xf7\x5f\x30\x88\x8e\xfa\x5d\x46\xd1\xd9\x5e\x68\x43\x51\xc2\x56\x74\x52\xf7\x55\xd2\x57\xec\x32\x86\x70\x0f\x26\xe9\x98\x3b\xbe\x41\x6f\xe2\x9e\xff\x68\xce\xbb\x53\xf5\x0e\xa6\x5a\x6b\xdb\x9d\x2d\x82\xe4\xc9\xdb\xe5\x14\xc5\x2c\xc4\x0f\xe9\xcb\xcf\x2d\x6f\xf4\x86\xa8\xc6\x1d\xf5\x1d\xb0\x30\x4a\x49\x51\xbc\x65\xd7\xa2\x0a\x13\xb0\x07\xb2\xec\xcc\x16\x59\x2f\xef\x6c\x0a\xed\x04\x96\x84\xe9\xa1\x34\xa5\x10\x9e\x84\xbd\x4b\xfd\xf3\xe6\x22\x09\x18\x41\x2c\x65\xc2\x83\x4a\xc4\x5f\x5b\xef\x56\x9a\x4f\xea\x9c\x12\x0f\xeb\x75\xf2\x58\xe6\x7b\x0a\x1e\x41\x48\xcd\x62\x40\x7f\xb8\x1e\xcb\x26\x01\xbc\x98\xc2\x5d\x88\xf0\x0f\xaf\x7b\x23\xcb\xdd\xe0\xd5\x68\x18\xdc\x18\x88\x51\x2b\x82\x7d\x66\x58\xc1\x48\x84\x5b\x89\x1d\xc8\xc1\xc6\x92\x94\x4e\x9e\xd9\x35\x2c\xc3\x90\xcd\x78\xbe\xf3\x09\x27\x39\x08\x54\xe9\x8e\x19\x2a\xf2\x7e\x08\x7f\x55\x6a\x18\xe5\x9a\x56\xc1\x7b\x52\x14\xbd\x48\xca\x9f\x59\xc9\x91\xe0\x1d\x1c\x32\x7f\x96\x8b\xed\x6a\x00\x32\x65\x2e\x0b\x45\x5e\x48\xe3\xa4\x8c\x72\xf0\x0d\x5b\xa6\x60\x10\xa8\x42\x4a\x04\x94\xe0\xd4\x3f\xa1\x0a\x39\x67\x40\xbd\x47\x27\xe6\x2c\x5f\x1a\x0d\xe6\xd3\x25\xc3\xb1\x7e\x35\xb4\x4b\x7a\xe3\x60\x9c\xc1\x79\x08\x8d\xd7\xac\xa5\xc0\xb2\x6e\x32\x40\x5b\xf0\x1e\x29\xbd\x14\x15\x46\x21\x42\x12\x16\x03\x28\x3e\x9a\x0c\xbb\x16\xf5\x1c\xf1\x30\x91\x5e\xb6\xa3\xf8\xc1\x20\xc1\x1a\x3f\x72\x4a\x98\x35\xae\xee\x68\xb7\x4e\xfc\xe4\xd5\xc9\x5d\xcc\x0c\x62\x8f\xa7\xf4\x18\x15\x54\x67\xbe\xf9\xff\xb7\x49\xf5\xcd\x51\xa8\xd4\xfa\xe6\x20\x7e\x79\x5e\x7d\xe0\xcd\xc0\x8f\xba\x67\xd7\xe7\xd4\xe1\xe7\x29\xb2\x3f\xb4\xe7\x0c\x8f\x8b\xda\x73\x04\xd9\x71\xda\x29\xdf\xf9\x88\x5f\x7c\x61\x77\xd5\x57\xe5\x26\x96\x97\x1b\x78\x9f\xd3\x3e\xa2\xdd\x14\xee\xd3\x74\xe5\x34\xef\x4e\xd1\x7b\xd0\x0c\xdb\x71\x83\x9b\x3f\x77\x49\x93\x17\x3d\x78\x22\x37\x17\x17\x50\x2a\x28\x5b\x65\x9c\xa7\xf1\x70\x01\x26\x80\x72\x25\x03\x94\xf1\x39\x94\xc4\x48\x86\x8f\xfb\x51\x76\x65\x68\xf8\x9d\xce\x26\xfd\x32\x38\xd5\xa0\x3b\xb4\xc6\x05\x0e\x63\xf3\x0b\x40\xe7\xe3\x40\x5c\xc0\xf9\xcd\xb8\x61\x09\x7f\xe5\x02\x4e\xcd\x4d\x1c\x8c\x1f\xf7\x54\x05\x71\x11\x1c\x8a\x33\x19\xe3\xe7\xf8\x6b\x1a\x77\xb8\x61\x2a\x65\xf3\x9e\xf3\xcc\x87\xc6\x13\x09\x7d\xe5\x8f\xf4\x3e\x2e\x3f\x8d\xab\xf3\x20\x53\x01\x3d\x13\xcc\x05\xfc\xf8\xaf\x2a\xe8\xa3\x78\xa4\x42\xe2\x77\xf0\xbf\xf5\xc5\xd7\xba\xef\x72\xb9\x94\xed\xab\x94\x63\x73\xae\xbf\x7c\x44\x69\xfd\xa2\x90\x1c\xd5\x41\xb1\x32\xdd\x40\xdc\x0a\xb7\xe5\x6d\xdd\xf1\xf7\x66\xbb\x41\x99\x6f\x48\x85\x40\x38\xe9\x46\xe2\x32\x25\x73\xb2\xfe\x95\x7e\xa9\xb2\x3c\x32\xbb\xa4\x9b\x4a\x7c\xe5\x5a\x9f\x65\xac\xcb\x9f\xa9\x02\x7a\x09\x98\xfc\x16\xf4\x70\x70\x1c\xa6\x11\x24\xfa\xb4\x70\x18\x7f\x08\x41\x38\x34\x20\xc2\x88\x94\x0c\xed\xe5\x9c\x2b\x6f\xbc\x5a\xdf\xfe\xe9\xb2\xc5\x09\x97\xf5\x2a\xe0\xe9\x81\x3c\xb6\x4b\x78\xf8\xe6\xb3\xaf\x2c\x79\xcb\x36\xb4\xb8\xd2\x18\xfc\x70\xf4\xab\x81\x09\xb9\x61\xc3\xe3\x57\x8f\xd3\x82\xfe\xab\x72\x25\x08\x9d\x66\x8b\xf8\xbc\x3d\xde\xba\x65\xe7\xa9\x6e\x13\xc5\xa0\x5c\xe6\x37\x76\x89\x7e\x6c\x95\x17\xc1\x94\x2c\x26\x98\x44\x69\xc5\x10\x78\x60\xb5\x76\xb4\xda\x21\xe8\xcc\x7a\x22\x20\x42\x4f\x78\x88\x98\x10\x0a\x37\x63\x1c\x22\xc3\x09\xc3\x24\x79\x23\x71\xfc\xb4\x39\xe8\xd0\x91\x53\x67\x0d\x75\xe8\x10\xaa\xc3\x6f\x85\x77\x8f\x0d\x08\xf2\x87\xb2\x17\x5b\x59\xdb\xe2\xd3\xd6\x4f\x13\xb3\x23\x40\x43\x75\x79\x22\xdd\x28\xbd\x1a\x3c\xd4\x2d\x31\x78\x46\x61\xf4\x8d\x6e\x29\x52\x5c\x40\xde\x64\x67\x5e\x20\x65\xa1\x87\x9a\xc3\x4f\x34\xab\xda\xea\x61\x4a\x30\xf4\xc9\x60\x1e\x90\x6b\xf9\xad\x77\x78\x13\xca\x5f\xdc\xf4\x4e\x17\x35\x74\xf4\xa1\x74\x91\xd6\x46\x29\xf5\x24\x8e\x86\x70\x4f\x24\x68\x4a\x0e\x3d\x50\x19\xf7\x98\xbb\x42\x25\xba\xc7\xd3\x49\xce\x24\xa7\xa1\xdb\x2b\x0f\xfc\xe1\x11\x76\xa9\x74\xd6\x81\x51\x47\x2b\xf0\xc0\xbb\x55\x70\xd3\xa5\x6c\x51\xee\xbd\xb4\x6e\x3e\x04\x4c\x2b\x6e\xa0\x07\x0b\x4b\xe1\x0a\x8d\xc8\x5b\xdd\xd3\xde\xdc\x3c\xc6\xcf\xce\x8d\x29\x02\x54\x38\xec\xd3\x2b\xaf\xfc\xf8\x91\x95\x07\x08\xe3\x8e\x0d\x4a\xd7\x70\x77\x50\x1e\xc3\xb7\x83\x42\x16\x01\xaa\x72\x84\x70\xa0\x5c\xd6\xe4\x91\x3f\xb3\x19\x59\x13\x7c\xf1\xd7\xcd\xf1\xb2\x5c\xbe\xfc\x27\x2b\xba\xfc\x41\xb1\x3a\x94\xff\xf9\x7d\xb5\x51\x1f\x05\xa5\xce\xfa\x08\x53\xbc\x0c\x80\xcd\xf8\x91\xa5\x2e\x0d\x4c\x98\x35\x19\xd1\xfa\x1d\x61\x4a\x91\x19\x2d\x8f\x69\x55\x5e\x43\x8e\x6b\x54\x71\xc6\xd0\x46\x8a\xe0\x52\x3f\xa1\x1a\x4a\xe1\x9f\xd0\xef\xa7\x62\x00\xbb\x3c\x81\x1e\xa5\xf1\x80\x8d\x22\x85\x9b\x6f\xb9\x06\x23\xc0\xb8\xf8\xd0\x83\xe0\x20\x8f\xca\x78\x86\xc5\x01\xf2\xfc\xd6\x28\xbd\x79\x69\x8c\x28\xee\x95\xef\xf7\x47\x5e\x75\x5f\x8e\x1a\x28\xb8\x5f\xc3\x9b\x2f\xb3\xc7\xbd\xc9\x2e\x60\xea\xc1\x0f\x32\xe0\xd5\xdb\x20\x9c\xe4\xe5\xfd\x1d\x7a\x05\x59\x5e\xf2\x10\x16\xc1\xf7\x9c\x30\xd2\x3b\x99\x23\x17\x34\x9b\x02\xf2\xe6\x32\x85\x9f\xc9\xeb\x56\x9c\x94\x50\xc6\x1e\x7a\x8b\xd2\xa8\x6d\xbe\x41\xd9\xad\xb6\xba\x88\x27\xeb\x15\x1c\x9f\x44\xd6\xec\x6f\x15\xbb\x02\xed\xda\x85\x01\xdc\xcb\x78\x56\xbe\xc8\x6f\x05\x06\x6b\xc4\xf7\x90\xc8\x2a\x05\x56\x24\x37\xd6\x5a\xfb\xa3\xa0\x2e\x05\x8b\x73\x25\x5b\x44\xf1\x2a\x6f\x83\x25\xbc\xd3\xe3\xe6\xdd\x4d\x92\xb2\x2a\x17\xad\x81\xe2\x80\x21\x0b\x92\xc3\x63\x12\x10\xad\xbb\xf1\x43\xfa\x44\x71\x51\x18\x45\x40\x40\xcb\x4e\x82\xdf\xac\xb7\xfe\xf0\xfb\x3f\xfd\xd9\xd2\xcf\xbb\x84\xc0\x99\xc7\xf3\xcd\xc2\xe1\xd1\xc8\x6e\x15\x18\xda\xee\x3c\xae\xd8\x4d\x2f\x60\xc2\x7a\x54\x53\x72\xc0\xa2\xb8\x3b\x71\x27\x99\xa3\x79\x04\x13\x99\x29\xc3\x9d\x39\x51\x26\x32\x69\x8a\x5d\x41\x91\x46\x84\x0c\x33\xa9\x22\xee\x20\x01\x19\xbe\x0e\x50\x20\xe8\x22\x50\x3a\xb7\x31\x83\x71\x56\xe3\xce\xbe\x0a\x52\xce\x8c\x8b\x1f\x06\x6c\x1c\xbc\x32\xb8\x01\x07\x06\xc8\xb0\x2e\xf3\xcf\xe8\xc0\x14\x14\x18\x9d\x57\xb3\x19\xd2\x0d\x19\x8e\xaf\xee\x4a\xd2\x4e\x02\x55\x20\x9a\xbf\x28\x88\xe8\x5c\x81\xa6\xb3\xa2\x9f\x7d\x4e\x7f\x5b\x91\x55\x94\xbd\x89\x7b\x87\x81\x05\xad\xac\xf4\x58\x5c\x49\x43\x0f\xa4\x35\x4a\xb4\xff\x27\x82\x14\x35\x8b\x5c\xb6\x9f\x7d\xc9\x7a\x1a\x98\x1d\x78\xfe\x38\x02\x3e\x88\xef\xa1\xf2\x6d\x49\x61\xab\xf4\x30\x6a\x74\x06\x41\x6b\x32\x8d\xd8\xc6\x8a\x59\x72\x0d\x2a\xac\xf0\xd3\x3c\x11\x94\x28\x18\xe1\xd0\x02\x14\xa1\x22\xb5\x4f\xd4\x83\x67\x6a\xaf\xe8\x27\x88\x22\x2c\x0b\xe5\xb6\x5a\x0a\x92\xd7\x91\x4e\xb1\x9c\x24\x97\x48\x73\x91\x5d\x3a\x0a\xe0\x7c\xba\x04\x9c\xf9\x73\xf8\xc7\xe2\x83\xd3\xa0\x44\x6c\xd2\xba\xa1\x57\xab\x22\x17\x68\x2e\x53\xc9\xe9\xe2\xdd\x09\x7f\xe6\xb6\x51\x53\xa2\x06\xd0\x21\x66\xf8\xe8\x02\x00\x33\xaf\x5e\x57\x20\xfb\x47\x3b\x5d\xd1\xc7\x08\x61\x17\x5b\xd0\x90\xc3\xbe\x21\x52\x97\x1a\x07\x3b\xad\xd3\xa5\xe6\xf6\x64\x00\x20\x97\x44\xf0\xa3\x4e\x46\xa4\x26\x01\xe8\x2c\x93\x38\xd8\x9a\x3c\xab\x6f\xf2\xaa\x85\x46\xa8\xe3\x2b\x54\xd4\x02\xff\x04\x5a\xc1\x07\xee\x62\x42\x2e\x14\x38\x6b\x30\x5c\x24\xea\x8b\x59\x94\xfc\x34\xa1\x62\x59\xd4\xe7\x50\x1a\x25\xf5\xd1\x29\x26\x82\x57\x88\x15\x1c\x29\xe4\x3a\xfe\xd9\x18\x44\x4c\x4e\x9b\xef\x50\xd2\x39\x85\xef\x63\x33\xb0\x1f\x49\xb6\x92\xf0\x1d\xa1\x73\x2e\x67\x73\xe3\xbb\x73\x12\x55\xc3\xb1\x40\x47\x63\x26\xe8\x05\xb7\x94\xbe\x70\x2e\x9c\x44\x8f\xae\x3d\x51\xac\x0d\x3d\xeb\x8c\x2f\xff\xe8\x0a\x2a\x55\xde\x6f\xbf\x57\x3d\xf0\x90\x38\xe1\xdf\x0f\x7a\x50\xec\xb9\x08\xf5\xc4\x3e\x0d\xee\xcc\xfd\x17\xdd\xdf\x0f\x3c\xca\x20\x6b\xe0\x0f\x1c\x2e\xf1\x6b\x1b\xd1\x99\x35\x18\x3b\x7b\x1a\x2f\x74\x8f\x1a\x11\x22\x97\xe3\x55\x5a\x97\x78\x8c\xd1\xad\xec\x72\x6a\x20\x40\x17\x07\x3c\x7c\x10\x69\x67\x63\x49\xf2\xa9\xfd\x26\xa9\xd3\x36\x73\xa2\x87\xdf\xf0\x0d\x41\xca\x5b\xa0\xb2\x1d\x70\x9e\x35\x5a\xf9\xb2\xe3\xe0\x7b\xd6\xa9\x01\x27\x81\xf7\xe3\x26\xc0\xd2\xa1\x7c\xea\x18\xc3\xcb\x17\xe6\x90\xa8\xae\x25\xf8\x4d\xac\xde\x9e\x4f\xdd\xc4\xa7\x56\x73\xeb\x36\x3e\x2b\xfa\x69\x1e\xfe\xe6\x77\xd7\xe9\xe7\x20\xfe\xa4\x34\xfb\xf4\x33\x83\x3f\x37\x9e\xd2\xdf\xd7\xf0\xef\xf9\x6d\xae\x05\x1c\xe6\x53\xb0\xd0\xab\xf4\x6b\x08\x4b\x0e\xdf\xe0\xdf\xae\x0d\x5c\x2a\x43\xd9\xf7\xa4\x87\x7c\xb6\x00\xdb\x8e\xbe\x04\xfd\x0c\x3a\x95\x12\x7f\xd2\x7d\x65\x52\x43\xfc\x85\xbb\xbb\x66\xdb\x57\xf8\x37\x77\x09\x3d\x82\x95\x4a\x39\x34\xb9\x57\xcc\xf6\xc5\x00\xdc\x73\x29\x75\x2d\xa9\x7a\x87\xae\xf9\x83\xea\x9c\x7b\x26\x6c\x65\x4a\x4e\x11\xb3\x24\x7d\x1f\xbc\x48\xa0\xb2\x56\xfb\x93\xf7\xfc\xa5\xd7\xea\x61\x83\x3d\x89\x63\xaf\xde\x53\x8f\xbb\xe3\x9b\x6b\xc1\xab\xae\xd9\x42\xb1\xa2\xb2\x04\x5c\xdf\x56\xaf\x5f\xd3\xbb\x6c\xb5\x4d\xc9\x68\xab\xf2\xde\x49\xc2\x6e\x7c\xaa\xbc\x0f\xf9\x3a\x27\xaf\x38\xbe\xd3\xdc\xaa\x81\x0d\xf0\x1f\xff\x81\xa5\xf8\x64\xf4\x7f\xfe\xa7\xf5\xd5\xef\x40\xf7\x07\x15\x8f\xde\xc9\x1f\xe3\x67\xa3\xd9\xc3\x61\xc0\xe7\x53\x3f\xfe\x6b\xa4\x0a\x7a\x05\x29\x8c\x8e\x9c\xcc\x12\x3f\x2e\x9d\xff\xef\x00\x00\x00\xff\xff\x9b\x23\x98\xac\x12\x93\x00\x00") +var _confLocaleLocale_zhCnIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\x59\x73\x1b\x47\xb6\x20\xfc\xce\x08\xfe\x87\x0a\xdd\x50\xf8\xc9\x52\xb8\x3b\xbe\x6f\xe6\x41\x50\x8c\xdb\xee\x76\xf7\x44\xdb\xed\x69\xb9\xe3\x3e\x38\x1c\x30\x08\x14\x49\x5c\x01\x28\x34\x0a\x90\xcc\xbe\x71\x23\x48\x49\x24\x41\x71\x97\x28\x51\x12\x49\x51\xa4\x49\x91\x5a\xb8\x68\xa3\x48\x82\xcb\x8f\x31\xaa\x00\x3c\xf9\x2f\xcc\xd9\x32\x2b\xab\x50\xa0\xec\x9e\x9e\x79\x91\x88\xca\x93\xdb\xc9\x93\x67\xcb\x93\x27\x53\xc5\x62\x32\x63\xbb\xe9\x84\xb7\x7c\x58\x3f\x9c\xb2\xbe\x70\xac\xe6\xce\x56\x73\x73\xb0\xf1\xe8\x56\x73\xf4\xb9\x77\xfb\x99\xf5\x45\xb6\x6c\xf9\x8b\x93\xde\xed\x95\xee\xae\xee\xae\x7e\x27\x6f\x27\x5a\x4f\xef\xb7\x56\xde\x75\x77\x65\x52\x6e\x7f\x8f\x93\x2a\x65\x12\xfe\xd4\x86\x57\xdd\x6b\x2d\xad\xfa\x4b\xa7\xdd\x5d\xf6\x0f\xc5\x9c\x53\xb2\xe1\xeb\x6a\xe3\xed\x2a\x54\xb2\x73\xc5\x84\xb7\xbf\x0d\xcd\x75\x77\xb9\xd9\xbe\x42\x32\x5b\x48\x34\x1e\xd6\xbc\xe3\x7b\xf0\xdb\x49\x67\x53\xb9\xa4\xfe\xbc\x76\x52\x3f\x5c\xf3\xf6\x67\xbc\xe9\xf7\x0c\xf2\xf3\xd1\xa3\xc6\xcb\x97\xd6\x6f\x2c\x7f\x6b\xdd\xba\xe4\xe6\x53\xb9\xdc\x65\x6f\xf8\x4d\x73\x68\x8e\xa1\x2e\x5d\xe4\x6f\xd2\xb4\x53\x29\x27\x5a\x83\x83\xde\xe8\xa1\x7c\xa8\x14\x13\xfe\x9b\x4d\x6f\x64\xa2\xbb\xab\x64\xf7\x65\xdd\xb2\x5d\xd2\x1f\xae\xdb\x3d\x6e\xb6\x6c\x27\xbc\xed\x07\xfe\xfd\x83\xc6\xf1\x6c\xe3\xc5\xc3\xee\xae\x6b\x76\xc9\xcd\x3a\x85\x84\x77\x7c\xd7\x1b\x9b\x6c\x8c\x55\xfd\xc5\x97\xdd\x5d\xc5\x54\x1f\x4c\x7d\xe5\x1d\xcc\xb2\xbb\xab\x6c\xe7\x8b\xb9\x14\xd4\xf4\x37\x57\x68\xce\xb9\x54\xa1\xaf\x82\x10\x8c\xbf\xd6\xe0\x58\x6b\xe5\xa0\xbb\x2b\x5d\xb2\x01\x2a\x59\xb0\xaf\x27\xbc\xea\x82\x57\x3b\xf4\xef\xef\x02\x6e\x2f\x5c\xb8\xd0\xdd\x55\x71\xed\x52\xb2\x58\x72\x7a\xb3\x39\x3b\x99\x2a\x64\x92\x79\x44\x5a\x63\x6e\xd3\xaf\xbe\xaf\x9f\xae\xf8\x43\x3b\xde\xf4\x6d\x7f\xe1\xad\xb7\xf6\x88\xa7\x62\x67\x00\x43\xc9\x94\x9b\xf0\xde\xbf\x66\xdc\x30\x30\x2e\x0c\x36\x56\x48\xe5\x55\x7d\x6f\x66\x12\xd6\x21\x9f\xca\xe6\x12\xad\x1b\xdb\x8d\xed\x57\x38\x7e\xd7\xbd\xee\xc0\x62\x79\x3b\x23\x8d\x27\x43\x88\x8d\x64\x79\xa0\x08\x35\x56\xb6\x9b\xdb\x6b\xea\x6b\x3a\x55\x2c\xa7\xfb\x53\x89\xd6\xf3\x89\xe6\xce\x10\x7d\x42\xd0\xa2\x03\x88\x72\x4a\x03\x89\x7a\xed\xae\x77\x78\xb7\xbb\xcb\x29\xf5\xa5\x0a\xd9\x7f\xa4\xca\x88\xa9\x46\xed\x56\xa3\x36\xda\xdd\x95\xcf\x96\x4a\x4e\x29\xd1\xba\xb7\xe8\xdd\x9c\xee\xee\x82\x69\x27\xb1\x6a\x68\xee\xaa\x01\x2c\xcc\x67\xfb\x4a\x88\xc5\xe6\xe9\x50\x63\xa3\xe6\xad\xdd\x6f\xdd\xdc\x34\xcb\x7b\x9d\xd2\xd5\x50\x65\xff\xed\x49\x63\x6e\xd9\x04\x81\x71\x84\x20\xf4\x50\x52\x05\x58\x0e\x2a\x6e\x6c\xaf\x34\x66\x46\xfc\xea\xac\x51\x9c\xca\xe4\x01\x97\xc5\x54\xc1\xce\x49\xb9\xa2\xde\x54\x3a\xed\x54\x0a\xe5\xa4\x6b\x97\xcb\xd9\x42\x1f\x60\x7b\x7f\x06\x30\xda\xdc\x3e\x69\x1c\x6f\xc3\x42\xc4\x7f\x1e\x70\x2a\x7a\x31\x13\xf5\xfd\xe7\xf5\xc3\x43\x5e\x43\x29\xd2\xd5\x78\x7d\x54\x35\x9a\x83\x9b\xec\xb5\x6d\xd8\x44\x8b\x83\x30\x05\xff\x6d\xcd\xbb\xbd\x09\xcb\x55\xc9\xe5\x00\x79\x7f\xaf\xd8\x6e\x19\x3a\x9b\xa9\x7a\x07\x7b\xcd\x9d\xf7\xfe\xab\x1b\xdd\x5d\x59\xd7\x85\xcf\x40\x06\xeb\xde\xe4\x3d\x1e\x3d\x36\x95\x4e\x15\xd2\x30\x1d\x6f\xfa\xbe\xbf\x57\xc5\x0f\xdf\xba\x76\xaa\x94\xee\xff\x0e\x47\x8d\x7f\x24\xfc\x99\x45\xd8\x91\x44\x7d\x31\x4b\x8a\x34\x94\x50\x24\x45\x7d\x48\x17\xd0\xb4\x93\x81\x69\xd5\x7e\x14\x7a\xf8\x36\x5b\x70\xcb\xb0\xe9\xa0\x65\xf9\x0b\xb6\xd0\x58\xf3\xc7\x61\xbd\x3f\xb2\xe5\x1c\x31\x0a\xff\xe5\x4a\xf3\x74\xa6\xb9\x32\xc1\xe5\x8d\xcd\x71\xef\x70\x1a\x7b\xff\x7b\x05\x36\x5e\x32\xd3\xc3\xfc\xe7\x0b\xa7\xcf\xb5\xbc\xe1\xa1\xe6\xf6\xbe\x37\x33\xd5\x78\xb1\xe3\xdf\xdb\xf5\x27\xb7\x61\x58\xf5\xfd\x43\xeb\xcb\x81\x2b\xff\xeb\xcf\x3f\x0d\x0e\x7d\xed\xb8\xe5\xbe\x92\x0d\x3f\x2c\xbf\x7a\xdf\x82\xff\xa1\x8d\xdf\xfe\x34\x08\x28\x81\x86\xb8\x4f\x5d\x51\xa1\x18\x4b\x90\xcc\x75\x41\xe3\x55\xcd\x7b\x3c\x8e\xbc\xcc\x2d\x27\x8c\x7e\x6a\xfe\xe2\xa1\x20\x21\x80\x15\x6c\xe8\xcd\x13\x29\x51\xbb\x06\x3a\xa1\xdd\xa7\x8b\x61\x03\x36\x36\x76\xa9\x00\xd9\x1f\xb4\xe9\x3d\xbd\xe1\x3f\x5e\xf4\x6f\x6c\xd6\x8f\x4f\xa1\x32\x4f\xea\xe7\x23\xd8\x65\xef\xe5\xcb\x9f\xbe\xfa\xea\x2f\x9f\xff\xce\xf2\x8e\xee\xf9\x77\xa7\xea\xb5\x75\xd8\xfe\x56\xa5\xdc\xfb\xdf\x93\x7d\x76\xc1\x2e\x01\x93\x4c\x67\x2d\x6f\x6b\xbe\xf1\xf2\x69\x6b\x61\x84\x66\xed\xba\x39\xe0\x1a\xb0\x34\x57\xae\x00\x4a\x36\x57\xbc\xa3\x69\x1c\x6b\xb9\x3f\x18\x88\x7f\x7f\xb4\x5e\xdb\x6b\xbe\xdf\xf1\x4e\x6e\x41\x85\xbf\xe7\x10\xed\x32\x24\x41\xa0\x15\x4c\x0a\x76\x98\x01\x4f\x7d\xd8\xa5\x52\x12\xb8\x5d\x79\x20\x29\x95\xa9\x7d\xae\x6a\xc5\x76\x53\xdf\x9f\x6c\xde\x3c\x86\x85\x6b\x3c\x3b\xa4\x26\xba\xbb\xd4\x0c\x78\x8d\xbc\xc3\x39\x98\x2f\xc8\x1c\x60\xac\x6a\x99\x50\x14\x11\x0a\xa5\x50\xf0\xa7\x3e\x6b\x2c\x9e\xbe\x80\xd2\xc6\xf8\x0d\x7f\xfc\xb8\x35\xfc\xbe\x71\xe3\x85\xde\xd4\x5c\xa5\x35\xff\xbc\xf1\x78\x0a\x36\x7b\xbd\xf6\xf2\xe7\xa3\x21\x26\x74\x1e\x33\xd3\xb9\xff\xe4\xa0\xb1\xb0\x4d\xb2\x47\x17\xa9\xd6\xfd\xb1\x41\x7f\x71\x8c\x64\x5e\xf3\x74\x11\x88\x95\xab\xb4\x6e\x1e\x7b\xbb\x23\xcd\xd5\x17\xde\xd6\x03\x7f\x0e\x04\xd4\x54\x73\x67\x9d\x1b\xa1\xf9\x95\x2a\x20\x66\x90\x6e\x98\xd4\x1b\x6f\x6a\x8d\xda\xb2\x22\x1d\x55\xa8\xfa\xc0\xaa\x4c\x3b\xa7\xb0\x5d\x6a\xde\xf0\x7b\xe8\xd2\xdb\x39\x88\x8c\xce\xbb\x33\xc1\xad\x59\xb4\x37\x70\x65\xee\x4e\xd6\x8f\x17\xfd\xa5\x9b\xad\x87\x33\x4c\xf3\x0e\x30\x78\x10\x53\xcb\xcb\xc4\xee\xf9\xa7\xd1\x0d\xa3\xd6\x3b\x7e\xe5\xdd\x9d\xb4\xae\x5c\xf9\x23\x6c\xb0\xf1\xd6\xa3\x11\x6f\x71\xd7\x5b\x1a\xa4\x16\xfa\xcb\xe5\x62\xb2\xe8\x94\xca\x89\x3f\x7e\xf3\xcd\xd7\x16\xec\x3b\x6f\xfa\x47\x90\xa9\x46\x89\x46\x3c\x2d\x4b\x63\x61\xd6\x9b\x79\x89\x28\x0f\x40\x71\x89\x2a\xa5\x9c\x40\x58\x7f\xfb\xeb\x9f\xf5\xb7\x4e\x83\xc1\xde\x2e\xe2\x3f\x57\x42\x63\x82\x39\xd7\xf7\x07\xeb\x87\x0b\x2c\xb3\xea\xfb\x5b\xd0\x53\xeb\xee\x89\x3f\xb5\x2e\x74\xe4\x14\x51\xde\x04\x84\x34\xbd\x03\x92\x56\x91\x10\xc9\x3b\x29\x81\x16\x80\x1e\x59\x71\xd1\xac\x3b\x0f\x73\xa2\x5d\x7f\xe5\x4b\x98\xad\xda\xf1\xf4\xb9\xb7\xe4\xe4\x55\xa5\xa5\x75\xd0\x7d\x8c\xef\x6a\x16\x66\x31\x0f\x18\xb6\x6f\x6b\xe8\x9d\x77\xf2\xdc\xfa\xeb\x1f\x3e\xb3\xfe\xbf\xdf\xfe\x06\xb4\x94\x27\xa3\xde\x28\xee\x4e\x18\x1b\xec\x61\xff\xc1\x0e\x4e\x69\xff\x39\x72\xea\xc3\x1d\x9c\x0f\xcd\x8d\xeb\x03\x17\x93\xbd\x7f\xee\x2b\x20\xf2\x73\xd6\x25\x9a\xc3\xff\xb0\x7f\x48\x81\x7e\x61\x5f\x48\x3b\xf9\xcb\xb4\xf4\x4f\x8e\x60\x6b\x13\x0e\xb0\x1c\x88\x89\xc8\xcd\x9b\x9e\x6d\x0d\x0e\x29\x01\x2f\x25\x81\x9c\x37\x4a\x03\x99\xcf\x1a\x50\x32\xed\x14\x7a\xb3\xa5\x3c\x08\x96\x1d\xa4\x46\xd2\x87\x18\x94\xd5\x01\x6e\x2e\x59\x70\xca\xd9\xde\x01\x81\xe2\xf9\xb7\x06\x1f\x35\x96\xd7\xfd\xe9\x99\xd6\xc8\x1d\x14\x2c\x25\x50\x97\x92\xf8\x5f\x36\x6d\x2b\x1e\x4c\x68\xf7\x1e\x6e\xc2\x82\x7a\xc3\x7b\xde\xf6\xcd\xf0\x42\x38\xbd\xbd\xb9\x6c\xc1\x66\xd6\xc5\x6d\x37\x9e\xd6\x1a\x87\xa7\x8a\x85\x99\x00\x40\x85\x45\xd0\xe1\xbc\xc5\x4d\x50\x0e\x1a\xc7\xaf\x19\xa6\xbe\x3f\x5e\x3f\x58\x6e\x3c\x1d\x82\xba\xf5\xda\x94\xf5\xd9\xe7\x5f\x59\xcd\xa9\xf7\x28\xfb\x88\x13\xc1\xca\xc0\x66\x86\x05\x40\x4d\xf6\xdd\x2d\xff\x70\x86\x37\x31\xc0\x02\xd3\x01\xec\xeb\x31\x72\x2d\xde\x50\x59\x37\xd5\x03\xca\x18\x63\xa9\x24\xba\xcd\xd3\x21\x7f\x6b\x55\xc4\xf6\xe8\x73\xa4\x1a\xd1\x1e\xe3\xc0\x65\xb4\x91\x4a\xb0\x8d\xb9\x92\x77\x7b\x19\x58\x23\x0c\xce\x9b\x7e\x0e\xdb\x9e\x65\xb7\x37\xfb\x40\x88\xe5\x3d\xc8\xfe\x27\xac\xd6\x32\x63\x41\x31\x09\x7a\x9a\x68\xc7\xc9\x6b\x59\x54\x24\x19\x61\xa4\x00\x36\xb7\x4f\x5b\xf3\xdb\xc0\x10\x40\xfd\x8e\x07\x57\xe8\xa3\xfe\x02\xc5\x11\x76\x30\x0d\xce\x1f\x43\x5e\xed\xad\x2d\x4b\x4b\x24\xbf\x71\x7c\x33\x4f\xbd\xea\x43\x40\x18\x54\x04\x80\xc6\xe2\xb8\x57\xdd\xe5\xba\x40\xb4\x42\x2f\x04\x4c\x03\x65\x75\x4a\x94\x1c\x31\x29\x48\x29\x0b\x66\x48\xb3\x02\x25\x06\xa4\x03\x6c\x0a\x66\x7e\x30\x0c\xec\x6b\xe1\x09\x4a\xf9\x3f\x7d\x9e\xf8\xc4\xd2\x03\x43\x86\x8b\x16\x08\xad\xcf\xc9\xbc\x6e\xc7\xe0\x7f\xdc\x29\x93\x5c\xa4\x1f\x2d\x55\x08\x84\x15\x63\x05\x61\x68\xc8\x4a\x0b\x94\x1d\x13\x34\xa2\x94\x61\xde\x25\x06\x44\x48\x57\xe6\xea\xac\x66\xeb\xba\x6a\x3b\x8a\x62\x94\xec\x73\x50\xeb\x7b\x31\xee\x4d\xbe\x61\x1d\x08\xad\x07\xb7\x9c\xec\xcb\x96\x93\xbd\xb8\x65\x41\xa9\x98\x7f\xe2\xbf\xb9\xd7\xdc\x19\xf1\xaa\x2f\xac\x8f\xa0\xe0\x23\xcb\x9b\x3d\xae\xd7\xd6\xc0\xf6\x39\x7f\x4d\x49\xed\xdf\xe2\x6e\x4c\xa6\xae\x41\x1d\x24\xbb\x04\xa8\x12\x48\xe2\xc4\x3f\x00\x6d\xb0\xdd\x51\xf6\x8c\x55\x11\xc1\x73\x3b\xfe\xc4\x90\x52\x90\x44\xc9\x80\x5d\x72\xde\x05\xae\x37\xde\x3c\x3e\x66\x83\xc7\x7f\x7c\x0b\x97\x68\xac\x8a\x10\x83\x13\xbc\x32\x56\x9f\xd3\x53\xc9\xe6\x32\x16\x1b\x3e\x84\xe9\x6c\xe1\x5a\x2a\x97\xcd\xa0\xba\x26\x6b\x1c\xd5\xb3\xb0\xee\xd6\x8f\x80\x1e\x19\xb2\xaa\xd1\x51\xfa\xc6\x57\xd3\xc2\x12\xa7\x9a\x4f\x81\x25\x12\x23\x53\x5b\x4b\x8f\xc5\x34\xa3\x9f\x58\xd5\xb5\x3e\xbe\x0c\xb3\x03\x54\xa5\xae\xd9\xcc\xdc\xfa\x14\x76\x59\x2e\xb5\x86\x27\xb1\xbf\xd3\x25\x90\xe1\xde\xda\xab\xe6\xdb\xf5\xc8\x48\x43\x24\x1c\xa2\x27\xad\xaf\xb7\x4f\x92\x97\xd8\xad\xa4\xd3\xb6\xeb\xe2\x8a\x78\xeb\xb0\xbb\x87\x58\xfd\xf0\x4e\xaa\xad\x17\x0f\xbc\xe1\xb7\xf0\x1d\xc4\x94\x3f\xfe\x4c\x98\x3d\x4a\x74\x40\x79\x63\x7d\x49\xab\x83\xfe\xad\x31\x50\x6d\xe0\x23\x2b\xd9\xc8\xa6\xb6\xd6\x80\x2e\xac\xdf\xfd\xed\x0b\x52\x63\x40\xe9\x46\xe3\x1b\x34\xee\x0a\xeb\x43\x4e\x2e\xa3\xd5\x75\x20\x66\xd8\x95\x51\x4b\x4f\xc1\x28\x72\x75\xaf\x67\x01\xa1\x49\x6d\xb6\x23\x9e\xca\xf6\x0f\x65\xd8\xaa\xa3\xfe\xe4\xaa\x69\xc4\x2b\xe5\x25\x3f\x40\x2b\x08\x53\x23\xeb\x49\x59\x0a\x69\x27\x07\x34\xe8\x20\xcb\xbb\x66\x0b\x84\x37\x7d\xa3\xbe\x3f\xe5\x4d\x4e\x83\x92\x62\x80\x42\x0b\x60\x83\xa9\x06\xb4\x75\x36\x90\x64\x5b\x51\x15\x28\x93\x11\xa6\x29\xee\x83\xef\xc4\x46\x11\x37\x82\x6a\x0f\x00\x52\x95\x32\xda\x34\x81\x6d\x9d\x14\x9b\x4d\x78\x0e\x2f\x99\x21\xec\xfa\xed\x22\x4a\xc6\xbc\xdb\x47\xa6\x73\x6d\x9a\xf9\xd7\xcf\x47\xcb\xbc\x2f\x95\xa3\x61\x48\xbb\x23\x7e\x79\xd5\xda\xac\xb7\xfd\x88\xaa\x86\xc5\x01\xdb\xf6\xa0\x37\x27\x50\xb7\x03\x8d\xf8\xdd\x7b\x94\x49\x86\x14\x80\xf6\x50\xa5\x1c\x7e\xd3\x9a\xdf\x82\x5d\x06\x5b\xb4\x39\x34\x87\x74\x4e\x6e\x08\x4d\x80\x31\x92\x09\x07\x84\x3c\xa7\xbd\x65\x53\x84\xc7\xf6\x82\x58\xc9\xdb\xf9\x1e\x6c\x02\xec\xee\xed\xdd\xfa\xf1\xb4\x72\xc5\x80\xb5\xdd\x07\xdb\x2e\x50\x20\x4e\x1f\x00\x80\xa2\x1e\x2c\xb5\x3b\x94\x02\x3a\xb4\xb7\x05\xb6\xee\x75\xd8\xb4\x0f\xfc\xd7\x2b\xbc\x10\x50\xd8\x7a\xf6\xb2\xbe\x7f\x9b\x87\x48\x83\x10\xc6\xca\x22\x93\x34\x0d\xd7\x06\x9b\x5b\x30\x06\x1a\x93\xb7\x3b\x24\xf6\x3c\xcd\x85\x55\x0f\x5e\x01\x9c\x0e\xa9\x36\xcd\xd1\x37\xd6\xa5\x9e\xcb\xe7\xdd\x4b\x17\x7b\x2e\x33\x93\xf3\x7f\x1c\xf4\x41\x39\xb9\x81\x0c\xd1\x9f\xdb\x83\x3a\xa8\xfc\x1c\xec\x81\xf6\x60\x9d\xcf\x58\xde\xee\xb4\x3f\xbf\xe7\x8d\x0c\x7b\xdb\x13\x7e\x75\x86\xdb\xe6\x61\xb1\x76\xcd\x56\x95\x88\x4f\x61\xec\x84\x1d\x90\x7e\xdc\xaa\xda\x64\xa9\x34\xd1\x3e\x19\xf7\x8a\xfc\xfc\xd3\x41\x30\xdf\x19\x2e\x20\x42\x9a\x59\x2e\x9b\xcf\x96\x63\x29\xe2\xc6\x26\x9b\xf5\x3c\x27\x6e\x82\xa7\xdb\x3c\x1d\x05\x53\xa3\xb5\x3a\xdb\x38\x18\xe2\xe9\x35\xb6\xc6\xbc\x93\x61\xeb\xb7\x96\x57\x1d\x69\xdd\x01\xb5\x7f\xca\x1b\x99\x6c\xee\x30\xe9\xf6\xa7\xdc\x64\xa5\x20\x98\xb5\x33\x4c\x22\xc0\x19\x15\x57\x12\x1e\x8a\x28\x7a\x37\xce\xf3\x01\x95\x80\x71\x1d\x83\x50\xab\x7e\x3c\xe2\x2f\x3e\x07\x6c\x33\x9a\x78\xee\x30\x2c\xd4\x6d\x95\x2d\x0b\x00\x80\x66\x6c\xcc\x18\x37\xce\x0a\xb8\xd1\xe2\x60\xf3\xe9\x50\x6b\x74\x12\xd6\x91\x9b\xe7\x39\x80\x22\xec\x8d\xd6\x40\x0c\xa1\xc7\x0d\x56\x69\x62\xac\x75\x67\x5b\x28\x13\x50\x25\xe3\x66\x28\xe0\x81\xde\xda\x2d\xb3\x0d\x93\x1c\x94\xc6\x4f\x62\xd1\xa5\x9d\x5b\x26\xb1\xd8\x3c\xb9\xeb\x0d\xaf\x47\x75\x6d\x9a\x8b\x78\x0e\xab\xbb\xf5\x5a\xad\x0e\xcb\x4a\xda\x02\xef\x7c\xec\x1b\x87\x50\x6e\x1f\xc1\xcf\x47\x55\x1e\xc4\xcf\x47\x63\xb2\x4e\xbc\xc8\x44\xfd\x50\x04\xc2\x41\x8d\x89\x9b\xd0\xdb\x84\x0b\xd5\x26\x52\xc2\x86\xfc\x29\x11\x32\xd0\xc4\xce\x22\x00\x37\xee\xe9\xa8\xbf\xb8\x0c\xb8\x84\xbf\x41\x66\xf9\xf7\xaa\x1a\x4f\x41\x0f\xda\x40\x0b\x63\xcc\xe8\x54\x43\x96\x1d\x27\xe9\xf6\xa3\xb9\x27\x03\xbf\x77\xea\x1d\x3e\x65\x73\xdd\xdb\x9d\x45\x0f\xf0\xff\x0f\xcb\x3e\xa9\x04\x0e\xa8\xdf\x29\xf4\xf1\x0c\xd8\xae\x68\x3e\xbc\x4b\xba\xbb\x0a\x8e\xb8\x99\xd4\x07\x00\x45\x43\x41\x26\x70\xba\xed\xcf\x1d\x50\x13\xc0\x35\xf2\xd0\xc2\xdf\x40\xa6\x7f\x15\x71\x4f\xfe\x15\xb8\x3b\x7d\x63\xd6\xae\x2c\xfe\xdf\x1b\x5e\x4b\x5e\xb9\xee\xae\xaf\xa3\xbe\xcb\xbf\xda\x31\xae\x4b\x30\x71\xbf\x21\x65\x90\x6c\xdd\x1d\xd8\x21\xeb\xaa\xd1\x3f\x82\x39\xeb\xfe\x0d\x8c\x54\x36\x3a\xc1\x46\xb5\x82\xb6\x07\x72\x4e\x2a\x83\x85\xfe\x14\xc8\xe9\x21\x55\xf0\x8d\x9d\xca\xd3\xf8\xbc\x85\xd5\xd6\x83\x65\xd5\xd4\xa7\x20\x7d\xe8\x33\xf4\xdc\xdc\x19\xd2\x9f\x51\x7d\xf8\x7d\xbc\x2a\x18\x68\xe6\x36\xf9\x47\xdb\x1c\x24\xa9\x5c\xb1\x3f\x45\x82\x59\x20\x58\x3d\x06\x88\xe6\xf8\x2b\x30\x68\xbc\xad\x79\x7f\x67\xf2\x27\xb0\xe6\x1e\x9c\xfa\xe3\x63\xf5\x23\xf4\x8f\xe1\x47\x50\xc5\x37\x9f\x83\xe1\x04\x04\xfa\x71\x12\x88\x33\xda\x5a\x06\xb6\xc6\xaf\x6a\x11\xbe\x84\x5b\x84\x2e\x1a\x37\x0e\x84\x2f\xfe\x43\xcd\x80\x29\x47\xb7\x09\xaa\x17\x1b\xa7\xa8\x41\x45\xa1\xfc\x45\xe0\x30\xd3\x0c\x65\xa1\x25\x4c\x2e\x2c\x31\x66\x7f\x88\x87\x5f\xdb\x88\x85\xe7\xfd\xae\x91\xa8\x8d\x6b\xe0\x63\xb0\x39\x22\x1b\x9e\x6a\xa0\x13\xe2\x0c\x78\xa4\x04\x86\x2b\x5c\x05\xb9\x55\x10\x58\xe0\x15\x60\xe3\xb6\xe6\x1e\x36\x77\x76\x40\xd7\xd3\x5e\x71\x90\x0a\x69\xa7\x54\xb2\xd3\xe5\xc0\x3f\x0e\xb0\xde\xc4\x01\xa8\x97\xd4\x8e\xde\x6b\x81\x02\xcb\xe4\x09\xba\x91\x49\xad\xe1\x5a\x81\xff\x3e\xd9\x63\xdb\x60\xd3\xa4\xae\xda\x85\x60\xaf\x04\x72\x6f\xf2\x09\x7c\x14\x26\x00\x8a\x75\xb4\x86\xb9\x93\xe2\x2a\x81\x08\x6f\xab\x63\x3a\xcf\xe2\xea\x94\x61\x1b\xb4\x55\x32\xb7\x44\x5c\x25\x5e\x28\xaa\x00\x33\xcb\x84\xb6\xb3\x86\x67\xcd\x97\x0d\x8c\x5c\xce\xee\x43\xb7\x8e\xea\x2c\xdc\xc3\xc4\xb0\x37\xf3\x02\xd4\x7e\xb0\x92\x0c\x6a\xd0\x38\xd3\x48\x0f\x96\xc7\xd4\x8b\xd5\x02\x88\xf2\xce\x03\x04\xcd\x17\x20\xb1\x8a\x61\xa8\x50\xcf\xa6\x1a\xa1\x25\x89\x89\x59\x20\xa3\xb3\x5a\x02\x32\x42\x03\xa6\x63\x53\xe8\xe4\x27\x3f\x63\x73\x70\x38\x18\x26\x98\xc4\x33\x4f\xcf\x6a\x56\x4b\x94\xd8\x46\x85\xaa\xa2\xad\x68\x5b\xca\xfe\x01\xf4\xc6\x04\x20\x9d\x19\xb6\x36\xb3\x01\x2b\x68\x10\x2d\x6e\x12\xcf\xcf\xa5\xc0\x30\x45\x22\xa1\x39\x20\x78\x63\xa3\xd6\x7a\xb8\xa6\x60\x0f\x71\x6f\xce\x4c\xe1\x26\x3a\x9e\x34\x35\x54\x1c\x13\x39\x2f\xb8\x48\x54\x37\x6d\x43\x81\x92\x72\xba\x80\x56\x1c\xb5\x06\x9a\x17\x1a\xf2\x34\x10\x11\x35\x6a\x92\x2e\xf0\xac\xab\xf6\x40\x02\x4c\x27\xff\xf6\x2b\x7f\x6b\x8c\x74\x09\x34\xa6\xd8\x46\xe6\x5d\x67\x4e\xdc\x0a\x98\x3d\x19\x82\x64\x1f\xa1\xaa\x7c\xcd\x2e\x81\x44\xd2\x2d\x92\x17\xf5\x17\x35\x32\x81\x8a\x0f\x1b\x70\x43\xa3\x60\xf8\xb5\x6e\xfc\x88\x2b\xae\x58\x86\x06\xc3\x39\x43\x1b\xe4\xdd\x01\x7c\xa3\x69\x39\xbc\xc7\x60\xfe\xe0\x06\x4d\x0c\x2d\x15\x6d\xe4\x4f\x55\xd1\x77\x41\x7d\x87\x0c\x50\x60\xac\x65\xa0\x7f\xc4\x39\x9f\x96\x99\x0a\x64\xbd\x36\xd9\xb8\xb5\x87\xfd\x2f\xcf\xd4\x0f\x17\x98\x0c\x91\x88\xc6\xd7\x99\x82\x58\x77\x50\xbe\xe4\x6a\xf3\xf8\x25\x20\x19\x89\xbe\xfa\x04\x50\xed\x6d\xdf\x44\xdc\x91\x93\xc7\x1f\xdb\xc0\x73\x18\xfe\x4e\x8d\x1b\x4b\xc0\x43\x40\x15\x12\x4f\xcc\x22\x23\xf0\xe7\x37\xf4\x08\x98\x5d\xe0\x08\x68\x15\x23\xdd\x37\x9e\xd6\xbc\xa3\x41\xdd\x3d\x03\x6b\xd6\x13\x99\x27\x7a\xc2\x09\xe0\xff\xd2\x24\xb9\xf1\x10\x9d\x05\x23\x60\x7f\xfd\xce\x3a\x2f\x0b\xcb\xf2\xfa\xc9\x12\x4c\x15\xa8\xbe\x75\x73\x13\x34\x6c\xa1\x7a\xe2\x52\xa2\xbb\x0e\x57\xb9\x69\xa8\x68\xc2\x84\x15\x71\xe0\x99\x29\xb2\x95\x7a\x4a\xa9\x02\x18\xdc\xc1\xfe\x6b\x2c\x6c\xa3\x7f\xb8\x3a\xe2\xcf\xed\xe8\x9d\x27\x12\xe0\x5b\x1c\x11\x9a\xb5\xfd\xa9\x42\x9f\x8d\x7e\x1e\x68\x05\x2c\xda\x5d\xab\xaf\xc4\x3f\xd0\x1d\x0c\x02\xf1\x36\xab\x57\xb2\x46\x6b\x6f\xc9\x6e\x96\x5a\xe9\x8a\x5b\x76\xf2\x46\x65\x3e\x8a\x54\xee\x8b\x2d\xae\xaa\x2a\xfd\x87\x03\xf2\x1a\x0f\xba\x6f\x3f\x81\x7d\x00\xea\x9f\x71\x2c\x98\x05\x9d\x4f\x98\x5e\x75\xbe\xb9\xb2\x29\x16\x4f\xb6\x0c\x9b\x73\xf8\x25\x2e\xb2\x1c\x54\xf6\x3a\xb9\x9c\x73\xdd\x06\x4b\x1e\x74\x6b\xb0\xa5\x60\xb9\x10\xcf\x29\x64\x5e\x64\x33\xdf\x38\x68\xbe\x7b\xac\xe0\xd0\xb7\xc2\x70\x30\x1a\x9c\x36\x2a\x88\x17\x88\x8b\xa3\x5a\x5b\xba\x06\x95\x34\x53\xb4\x3e\x3a\xef\x7e\x64\x01\x5d\xa0\xb0\x38\x5d\x6a\xdc\x7b\x08\x33\x26\x74\x05\xb5\x8a\xa9\x32\x30\xca\x02\x1b\x01\x34\x12\xa3\x01\xc4\x31\x1d\x2a\x72\x4b\x61\x4f\x3a\x9d\x8f\xf2\xa9\x2c\xa0\x3d\xfe\xec\x56\x33\x5d\x41\x9c\xf2\xa4\x30\x53\x71\x45\xd5\x33\xd8\x87\xf2\x20\x84\x03\x19\xc8\x49\x40\xa7\x22\xb9\x6c\x9a\x8c\x5e\x55\x95\xc9\x8f\x5d\x54\xb4\x49\x54\x81\xf2\x94\x64\xec\x9c\x8d\x11\x0a\xc6\xb6\x05\x16\x97\x55\x93\xb4\xfe\xf4\x39\xce\xa4\x58\xe9\x81\x96\xf5\x01\x34\xaf\x90\x9e\x84\xc4\x18\x90\x5b\xd6\xb4\x62\x45\x1e\xef\x8e\xd4\x8f\x1e\x91\x6d\x84\xb5\xd0\x21\x7b\xb0\x87\xac\x7f\x6e\x13\x48\xc2\x9f\x5a\x47\x0b\x8f\x3a\x46\xfc\x91\xe4\x62\xef\xbf\x77\x67\x82\x0f\x03\x78\x49\xf0\xc0\x9a\xa5\xde\xe8\x73\x98\x6e\xfd\x60\x4c\xe9\xc6\x2a\xcc\x82\x71\xab\xc2\x2c\x72\x0e\xa3\x02\x4f\xdd\x60\x1b\xe0\x60\x26\xf0\x00\xb6\x98\x41\xb7\x8e\x9a\x8a\xbf\xf0\x16\xa4\x89\x9a\x4a\xb8\xd0\x74\xbc\xa1\x8c\x36\x96\x8e\xab\x21\x8f\xba\xbd\x4c\x9b\x52\x36\x48\x7b\x9c\x04\x9f\xec\x29\x93\x25\x02\xc6\x38\xd3\xb0\x1a\x50\x2c\xb6\x95\x6d\x98\x28\x58\xb9\x8d\xda\x46\xa3\xb6\xc5\x9c\xc6\x9b\x99\xff\xf9\x68\xb9\x79\xfa\x90\xf1\xca\x27\x5e\x68\x21\x13\xe6\x40\x0d\x44\x4e\xc6\xec\x77\x71\x0c\xb6\x42\xf8\x88\x0b\x5d\x72\xd9\x42\x05\xc6\x67\x34\x19\x39\xda\x57\x1f\x51\x49\x20\x51\x17\xd9\xf5\x33\x3b\xe8\x36\xd7\x8b\x20\x9b\x3d\x0e\x56\x9f\x7b\x92\xf5\x8e\x4c\x8d\xe2\x56\xfc\xa5\x75\x3e\xc0\x40\x9f\xf1\x17\xc2\x7d\xe4\x78\x25\x60\x38\x8e\xe3\x8a\xf7\x8d\xfb\x65\x17\x27\x8b\x7e\x05\x25\xeb\x25\x10\xbc\x28\x5c\xa6\x3c\xf4\x95\x22\x5a\x5f\xa0\xe7\xc8\x88\x68\x1f\x27\xb3\x79\x8c\xa5\x41\x5e\x77\xf4\x44\x1f\x4a\x6b\x0d\xde\x3b\x7a\xe2\x2d\x9c\x34\xc6\x46\x69\x65\x0b\x4e\x64\x52\x86\x8b\x7c\xf1\x39\xb7\x01\x96\x74\x04\x21\xb8\x82\xa4\x0d\x44\xe6\xce\x6a\x93\x39\xec\x08\x95\x99\xc3\x6f\xa3\x32\x4d\x40\x1d\x18\x87\x93\x33\x14\x39\x76\x62\xab\x22\xc4\x64\x10\x66\xc0\x58\x8c\x1a\xf0\x81\x7e\x6b\xd6\x35\xdc\xd2\x43\x6d\x03\xd0\xa3\x17\x58\x96\x1d\x6a\xc4\x38\xa5\xa9\x5d\xdc\x7d\x74\x00\x25\xbe\x68\xa3\x73\xf6\x7e\x09\xbf\x24\xad\xde\x8d\xd8\xe6\x12\x68\x23\x65\x12\x4b\x13\x82\x60\x63\xc0\xe0\x3e\xf5\xfd\x1a\xba\x86\xc2\x3c\x48\x73\x1c\xf3\x80\x31\x38\x40\x0c\xdc\x73\xc5\x12\x50\x07\x86\xad\x50\x2b\xfa\xb7\xb8\xeb\x60\x61\x40\x4f\x55\x65\xcc\x3d\xa5\x88\x79\x28\x1e\xdb\x64\x88\x6e\xf9\x2b\xeb\xad\x3c\xe7\xf0\xb8\x11\xce\x84\xd1\xae\x3f\xf5\x3d\x19\x72\x63\xa2\x9f\x4f\x5c\x97\xde\xc9\xb0\x76\x9a\x35\xe6\xde\x79\x5b\x33\xda\x81\xc9\xee\x23\x14\xeb\x11\xd7\x65\xd4\x45\x19\xeb\xca\x64\xe6\x6c\x7a\x2f\x81\xb2\x1b\x9b\xe3\x72\x1e\xa6\xc6\xa5\x29\xb6\x6d\x56\x32\x5b\x93\x62\x65\x01\xcf\x92\x69\xd8\x32\xa9\xe5\xab\x8f\x51\x57\x50\x92\x0e\x1d\x0c\xb8\xaa\x48\x39\xfb\xe3\xb4\x37\x0d\xee\x06\x5c\x9d\x9c\x6d\x6d\xfa\xb5\xf6\x1e\x02\x2e\x80\xfa\x80\x0d\xb6\x1e\x4e\x34\xe6\x96\x23\xca\xb5\x9c\x99\x29\x15\x8f\xd5\x54\x57\xc7\x6a\x5c\x72\xcb\x25\xa7\xd0\x77\x99\xfd\x8c\x1c\x5e\x08\x8c\xf7\xd2\x45\xf9\x6e\xa1\x7e\xbe\xbc\xde\x58\x1c\x67\x3e\x6b\x5d\x4a\x59\xfd\x25\xbb\x37\x71\xee\xbc\x7b\xee\x32\x8c\xa1\x8e\xf1\x73\xcb\x80\x0a\x63\x74\x97\x2e\xa6\x2e\x53\x6c\x51\x18\x78\x7f\xbf\xb9\x31\x44\x60\x78\x46\xba\xfa\x80\xc0\xbc\x9d\x9a\x3f\x76\xd2\xd8\x9a\xf3\x57\xaa\x1a\xff\x48\x57\x01\xa6\xc2\x8a\x01\x23\xd8\xb0\x8a\x59\xe0\x8a\xa7\x2a\x6c\x15\xeb\xd9\x62\x0d\x92\x44\x54\x43\x4e\xfb\x16\xf6\xbd\x99\x09\x96\xae\x88\xb4\xb6\x66\x0c\x93\x4e\xd5\x4f\x84\x1d\x62\xf8\x99\x8e\x7f\x0a\x65\x55\x82\x5e\xf1\x03\xbd\xd6\x11\x1a\x32\x66\x22\x5a\x59\x94\x90\x64\xab\xd1\xe4\x8d\x8d\x86\xea\x25\xe1\x82\xd4\x4b\x32\x30\x79\x26\xfb\xb7\xfd\x97\x2b\x3c\x1f\x18\x2b\xb1\x71\xad\x61\xfa\xaf\x57\x50\xcb\x80\x95\x3d\x9d\x55\x7a\x26\x8d\xa9\x8c\x6c\x99\x68\x0e\x18\xb6\x8c\x1b\xf6\xcd\x7f\xb3\xbc\xb5\x67\x30\x01\x8d\x3e\xd8\x15\x26\x69\x8b\x4a\xc6\xf6\x28\x13\xa5\x52\xcf\x48\x9f\x92\x53\x9f\x5f\x46\xcc\xa6\x66\xf7\x01\x6a\xa6\x2a\x26\x35\x37\x37\x7e\x24\xc3\x44\x1f\x1a\x55\x0a\x3d\xd9\x02\xd8\xf4\xc6\x77\xf5\x51\xaf\x80\xd9\xa1\x09\x18\xb7\x8b\x53\x54\x25\x59\x76\xc8\xb5\x43\x13\x66\xb5\x88\x19\x68\xbd\xb6\xd6\x18\x9b\x50\xf1\x58\x72\x7a\x26\xc0\xb4\x17\x54\x8c\x26\x83\x51\x89\xab\x59\xb7\x29\x24\x40\xc1\x01\x53\x0d\xc9\x8d\xea\xe9\x4a\xa0\x3b\x70\x57\x1c\xb7\xf4\xe9\xd7\x7f\xa2\xbd\xa1\xfb\x11\x8d\x6a\x61\x1b\xc4\x17\x3a\x14\xb6\x56\xe9\xd0\x13\x9d\xf1\xdc\x00\xc6\x69\xec\x1c\x98\x16\x28\x9b\x81\xc8\xf4\xee\xbd\x8d\x8b\x83\xe2\x76\x0b\xec\x4a\xc6\x26\x14\x91\xeb\x59\x9a\x33\x6c\x43\x01\x57\x27\x64\xdb\x8a\xdc\x4d\x6c\x09\x62\x0c\x91\x29\xc1\x0b\xcc\x9f\xd6\x40\xb9\xdb\x23\x4b\x8b\xc2\x7c\xb6\x81\xd7\xd0\xd0\x17\x77\xfd\xfb\x07\x3a\xba\x01\xc8\x55\xc6\x36\xfd\x1c\xb4\x42\xff\xc1\x49\x63\x0d\xa4\xd4\x20\xec\x01\x73\xf7\xf0\x40\x79\xff\xa8\x81\x9a\x45\x9a\x26\xda\x17\x95\x2b\xe9\x61\x22\xf7\x63\xd5\x79\x7f\x4a\x77\xae\x35\x4e\x56\x46\xd9\xec\x10\xe1\x2e\xdd\x04\x47\xa9\xc4\x77\x59\xcd\x90\x6d\x22\x20\xea\x14\x8b\x3b\xe4\x21\xc0\x94\x76\xf7\xeb\x07\xc3\xfe\xfe\x30\x7e\x34\xfd\x07\xa4\x8f\xb3\xe0\xaa\xef\xcf\x59\x8a\x6f\xa3\x6d\x36\xbd\xe3\x0f\xad\x02\x06\x35\xd3\x66\x0d\x46\xa2\x2e\x22\x23\x12\xf7\x69\xc8\x10\x0a\x83\xa8\xa8\x30\x2a\x34\x87\xd7\x06\xa8\x59\x08\x83\x92\xf6\x21\x13\x18\xdc\xe0\x9a\x1f\x54\xf1\xc9\x82\x44\x7b\x19\xac\x47\xf6\x97\x69\x7f\x85\xe1\x9e\x8d\x9c\x6e\x04\x6e\x5b\x11\x63\xf5\xa3\x65\x6f\x6d\x23\xe2\x61\x04\xc2\x68\x56\x5f\xc2\x4e\x68\x9e\xdc\x6c\x2c\x6f\xfd\x34\x38\x04\xeb\x87\xeb\xfd\xfe\x95\x57\xad\x45\x10\xd9\x18\x7f\x89\x84\x34\x0f\x1c\x76\x22\x90\x7e\xca\x52\xbe\x96\x75\xb3\x3d\xd9\x1c\xd9\xed\xd3\x3b\x20\xc6\x60\x82\xf2\x15\x3f\x1a\x11\x7a\x3c\x00\xf4\xbb\x5f\x72\x8b\xa9\x82\x95\x06\x66\xed\x26\xce\x55\xb2\x16\x58\xf2\x16\x06\x0a\x9c\xbb\xdc\x80\xfa\x8b\x63\xd0\x36\x74\x04\x30\x97\xc9\x12\xbf\x2a\x6e\xab\x50\x6c\x36\x7d\xa7\xa8\x3a\xfe\x4e\x21\x75\xf4\xb1\xad\x6f\xb3\x22\xeb\xe4\xa2\x34\x07\xe3\x25\xb4\x09\x7b\x26\xb0\xe9\xe9\xe6\xa9\x42\x27\xc6\xde\xcb\x77\x8e\xbe\x37\xbe\x07\xf3\x7b\xcf\xf6\x89\x75\xa1\x2f\x5b\xce\xf6\x15\x9c\x92\x6d\xb1\x59\x01\x52\x29\x9b\x06\x36\x67\x27\x94\x2f\x68\x1f\x7a\xd6\x5f\xdb\x5a\x30\xa1\x54\x0b\xd9\x42\xb6\x0c\x58\x48\x65\x70\xc1\x39\xc8\xe3\xaf\xbf\xff\xf4\xf3\x2f\x7f\x7f\x21\x9f\x91\x6e\xbc\xea\x92\xb7\x31\xee\x4d\xdc\xd7\x41\x14\x1c\xbf\x60\x04\xc8\xab\x92\x8c\xdd\x9b\xaa\xe4\x94\xff\x28\xd1\xaa\x3d\x20\xc2\x47\xaf\x91\x8a\xb1\x07\x53\xa0\x6c\x97\xae\x81\x54\xe3\xc8\x09\xd0\x07\xfc\xad\x75\x6f\x76\xd3\x5f\x84\xdd\x5f\x65\x2d\xf2\xe7\xa3\xb1\x0e\x2e\x16\x93\xd8\xfe\x59\x2f\x4b\x98\x60\xcf\x74\xb4\x14\x6c\x34\xf0\x2a\x65\x98\x0b\x69\x6b\xa6\x2f\x14\x67\xd4\xc7\x8c\x18\x8f\xf4\xf8\x2a\x80\x8a\xd1\x36\x8b\xda\x48\x15\xb6\xad\x3e\xd1\x09\xd3\x2c\x12\xab\xd5\x93\xab\xd8\xe7\x2e\x33\x7a\x34\xb9\xaa\x06\xd9\x01\x49\x7d\xe9\x48\x15\x2e\xba\x90\xce\x39\x05\xe0\x14\x99\x4c\x89\xcc\x26\x23\x3e\xb5\x03\x4c\xc0\x4d\xd8\x96\x51\x81\x9f\x46\x98\xeb\xc5\x2f\xfe\xf4\x0d\x9d\x3a\xe2\x89\x5d\x24\xfe\x30\x08\xb5\x56\xad\x2b\x6f\x38\x7a\x48\x72\x1c\x3d\x85\xfb\x82\xdc\xcf\x5c\x9b\x2b\xa1\xe4\x54\x5e\x44\x0c\x25\x35\x4e\xb8\x38\xc8\x4a\x74\x03\xdc\x76\xb0\x00\xb1\xbb\x91\x02\x5c\x5d\x3b\xd7\x2b\x51\x68\x5c\x2e\xb1\x2e\xc4\xcf\x34\x6f\x12\xe6\x5c\x1c\x48\xe6\xb2\x85\xab\x09\x96\x7c\xec\xbb\x80\xef\xb0\x5d\xae\x82\x90\x4a\x22\x40\x42\x4b\x45\x6f\xec\x39\x46\x17\xe1\xc5\x0a\x28\xc8\xa2\xd2\x4b\x45\x2c\xa7\xb0\x1a\x22\x52\xf1\xc2\xfd\x49\x3c\x76\x1b\xba\xcb\xda\xb9\xf2\xdc\x4a\x6c\x22\xea\xe4\xec\x58\x4d\x9c\x4b\xf6\xc0\xe6\xbe\x7a\xce\xd0\xd1\xf9\xe0\x9b\xf5\x77\xd2\xfa\x95\x45\x40\x4a\xd6\x75\x3e\x89\x23\xf7\x09\xbb\x1f\xbb\xbb\xe4\x9b\xfc\xaa\x60\x2c\x57\x49\x40\x94\xcf\x92\x3e\x05\x0e\xcc\xd2\x55\x41\x1f\xd1\xb4\x30\x24\xff\xd1\x0d\xc4\x9c\x30\xa4\xbf\x57\x10\x0d\x7d\x95\x2c\x9e\xef\x9f\xbe\x68\x0d\x2e\xab\x8b\x4f\x3c\xd3\x72\x7f\xd6\x95\x2d\xcf\x84\x45\x02\x36\xc2\x12\xd4\xbd\x19\xc0\x65\x1e\xf4\x3a\xdc\x6a\x53\x1c\x10\x48\xbe\x6d\x62\x15\x7c\x8e\x19\xba\x51\x53\xac\xe0\xf9\x31\x3a\x9a\xb9\x07\xb3\x96\x1c\x6d\xb3\x75\xc0\x91\x99\x41\xc5\xee\x2e\xe1\x34\x8a\xc7\x94\x4b\xb6\x9d\x60\x12\xf2\x9f\xcc\xaa\x62\xba\xa4\x54\x4e\xe1\xdd\x17\xf1\x60\x4f\xf9\x4f\x46\x1b\x5b\x27\x0a\xc0\x56\x25\xca\x65\x4c\xc0\x0c\xa3\x3e\xc5\xde\x5d\xc9\xa5\x7a\xec\x9c\x82\x54\x1f\xf3\xd9\x9c\xed\x96\x01\x69\x6e\xa2\x35\x3a\x01\x46\x6e\x63\x75\x16\xa9\x28\x9f\xcf\x96\x01\x76\x7a\x06\x95\xe2\xa9\x11\x6f\xfa\x35\xf2\xfb\x9c\x9d\x72\x31\x4c\x81\x82\x16\x41\x15\xf7\xf6\x6f\xc2\x92\xa1\x93\xb0\x94\xba\x9e\xf0\xa6\x96\x81\xf9\x2a\x6e\x4d\x9f\x61\x21\xe8\xf6\x8b\x70\x67\x69\x88\x8a\x28\x6e\x16\xab\x09\x25\xb5\x57\x06\x6a\xcd\xa7\x68\x17\xb0\xd6\xa0\x76\x81\x1e\xdf\x05\x3d\x4e\x30\x72\x28\x9e\x83\x07\x1c\x00\x84\xae\xe4\x84\x67\xa3\x40\x7a\xd1\x34\x40\x27\xc0\xd8\x49\xf0\x11\xd9\x28\x1e\x67\x1f\x2f\x92\xa2\xa1\x3e\xe7\x81\x11\xa1\xcf\xcc\x5b\x1b\x25\x7a\x56\xdf\x33\x14\x13\x43\xcd\xfb\xf3\xb0\x9d\x97\x83\x22\x8e\x0e\x44\x2d\x71\x1e\x15\x90\xe8\x00\x81\x0a\x6d\xe5\xb3\x33\x8a\xd5\x12\x5e\x08\x2e\xb5\xa9\x5b\x42\x41\xc1\x85\xd0\x8a\x86\x4a\x0a\x28\x98\xa1\x10\x9d\x73\x22\x50\xdb\x81\xd2\xb0\x9c\xa5\xa4\x6a\x84\x74\x4a\x80\xad\xef\x6f\xc5\xc0\x6a\x3a\x31\xc9\x24\xdc\x61\x00\xa2\x3b\x8d\x87\xe5\x7e\x03\x70\x66\x07\xdc\x75\x7c\x0d\xa7\x08\x5a\xb9\x51\x01\x0c\xf1\x99\x1d\xb9\xb9\xd0\xa1\x0b\xc7\xc5\xe8\xac\xa0\xca\xfb\xd7\x1c\x9e\xd7\xb1\x0a\xc8\x34\xbc\xfe\x07\xa3\x9f\x18\x05\x06\xc4\x27\x6f\x31\xe3\xd6\x70\xe2\x27\xee\x04\x8d\xa6\xb6\x6e\x72\xf1\x79\x2c\x1c\xb3\xa2\x8e\x0b\x2c\x6b\x28\x37\xef\xda\x16\x85\x8b\x93\xc5\x5c\x2a\x6d\x4b\x14\xaa\xb0\x01\x52\x17\xe8\x06\x5a\xa8\xa3\xb3\xda\x23\x14\x97\x53\x3d\x89\xf3\x19\x8a\x07\x51\x28\x0e\x9a\x40\x94\x9a\x10\x0a\xa3\x1a\x02\x36\x2d\x46\x4d\x0a\xe1\x31\x9b\xd9\x5a\x80\x75\x8d\x85\x00\x35\x07\x45\x22\xfa\x59\x81\xb5\x33\x60\x64\x4c\x02\x1e\x43\x7b\xf1\xed\x6a\xc0\xb8\xb6\xdb\x57\x5d\x6a\x45\x16\x1e\x0f\x4f\x62\x5b\x07\xb8\xbe\x2c\xc0\xc5\x0e\x5c\x55\x8d\x56\xe2\x08\x2a\x52\xb4\xe2\x5b\x45\x80\x0b\x18\xdf\x2c\x3c\x5b\x8c\xc6\x30\x2d\x84\x60\x5d\xb9\xa6\x0a\x6a\xc0\x80\x53\x91\x51\x37\x6a\x0f\xd9\x1e\x8c\xad\xc3\xcb\x9f\x49\xf6\x0c\x50\x95\xc6\xdc\x2b\x34\xb0\x95\x84\x8a\xad\x92\xb7\x0b\xe8\x70\xc5\x9b\x06\xd4\xcb\xf4\x0c\x5e\x94\x8d\xed\xc2\xc5\x60\x37\x7f\xea\x0e\x5d\x3a\x6c\x2f\xba\x80\x77\x78\xf1\x16\x20\x5d\xbd\xe4\x5e\x63\xe1\x90\x84\x05\x6e\xfe\xd9\x19\x70\x25\x1b\x6c\x86\x32\x1f\x1f\x24\xc4\x7f\x45\x0c\x34\xbe\x77\x90\x59\x06\xb0\xb7\x7b\x16\x70\xde\x71\xcb\xc8\x9a\xd1\x63\x47\x21\x52\x8f\x9a\x3b\xb7\x9a\xdb\xf1\xe3\xa0\x96\x4d\xe8\xdd\xd9\x08\x34\x6e\x2a\x42\x3b\xa2\x3c\x70\x77\x5e\x3c\xff\xed\x6f\xbe\x03\x75\x8a\xfe\x23\x6d\x0a\xa3\x02\xcf\x7f\xfb\xc9\x77\x6e\x64\xda\xba\x81\x64\x6f\xea\xaa\x4d\xad\x50\xa5\x8e\x15\x8a\x25\xfb\x5a\xd6\xa9\xb8\x74\xac\xb3\x3f\x48\x57\xc8\x35\xc7\xf8\x01\x5d\xe7\xe3\x91\xcf\xbc\xf1\xd9\xa6\x8f\xdf\xf4\x19\x55\xdc\xb6\xe3\x0b\x95\x7c\x52\x10\xe0\x22\x5b\xf0\x97\x56\x22\x18\x90\x52\xb4\x4c\xca\x89\xef\x71\xd4\x80\x85\x6c\x06\xd4\x49\x1c\xbc\xd2\x2d\xff\x8d\x7f\x19\x08\xe1\x66\xbe\x0f\x7a\x72\xb4\x27\x15\x9d\x62\xe4\x98\xc1\xf8\x95\xd1\x3b\xe4\xd9\x1a\xac\x1f\x54\xc1\x92\xf7\x5f\xaf\x80\x65\x05\x73\xe4\x78\x27\x93\x71\xc9\x55\xdb\xf0\xf8\xb9\x48\xc6\x18\x02\xa1\x8b\xc0\xa1\x99\x94\x6c\xc2\x14\x03\x49\xb4\x2c\xe1\x2b\x0a\x11\x6e\xce\x84\x6c\x6f\x54\xf8\xb2\x22\xa2\x68\x29\x63\xff\xd7\x61\x8e\xc7\xff\x7d\x64\x54\xbf\xba\x19\x73\xdc\x41\x63\x45\x87\xae\xf6\xb3\xea\x47\xaa\x91\x14\xd0\xc5\x8e\x20\x28\x33\xa0\x2e\xf6\xd9\xa8\x50\x2c\xfd\x5d\xc5\xb1\x83\xbe\x0f\xd6\x11\x4a\xd3\xe1\xc9\xe6\xdb\x03\x75\xeb\xcb\x84\xca\x16\x92\x2a\xb2\x93\xef\x3c\x1d\xec\x71\x2c\x05\x5a\x3e\x3b\x07\xcd\x9d\x25\x54\x59\x96\xd6\xcd\x90\xe9\xf0\x35\x82\x09\xb6\x16\x1b\xb0\xef\xa7\xd6\xc3\xa7\x0e\x12\x78\xae\x16\x06\xa7\xae\x7b\xb7\x33\xd9\x72\xa2\x71\x74\xbf\x79\x12\xc8\x0c\xbc\xfa\x92\xe0\x0b\x2e\xfa\x1b\x8b\x33\xb9\x95\x67\x08\xe0\x08\x40\xda\xc9\x39\x4a\x42\xb7\x56\x17\x9b\x63\xaf\xdb\x00\xd0\x03\xc7\xd2\x35\x22\x09\x19\x20\x20\x40\x37\x24\xa6\xd1\x0d\x18\x16\x18\x0c\x1f\x37\x01\x2e\x09\x05\x3c\x44\xca\x24\xca\x58\x0e\x31\xe3\xc6\x41\xb5\x29\x79\x03\xbb\xff\xce\x82\x51\xf7\xd4\x24\xa0\x47\xf0\x43\xa7\xf6\x12\xa8\x66\x08\x3c\x54\xe9\x16\xf6\xd9\x7b\xca\x2e\x4d\x58\x54\x8e\xb7\x63\xd7\x20\x79\x04\xe3\xfb\xd1\x47\x29\x62\x09\x85\x1c\xb5\x1c\xbe\x91\xcb\x11\x43\x2a\xa6\x80\x94\xf8\x04\x17\x4f\x6c\x0f\xfc\x9d\x39\xb1\x4f\xa6\x1f\x78\x13\xf7\x3b\x40\xca\x44\x08\xbc\xbe\xbf\x86\xc8\x27\x33\xac\x35\xff\x56\x1f\x9e\x73\x03\x48\xa0\xd3\xb3\xcd\x77\xef\xc5\x5b\x6d\xa4\x15\xe0\xb3\x55\x6a\x1e\x38\x5a\xc9\x76\x2b\x39\x34\x5f\x40\x3d\x1c\x3b\xc1\xbb\x7f\xb5\xbb\x40\xbf\x74\xd2\xa0\xed\x32\x32\x01\xe4\x8c\x31\x50\x61\x8c\x72\x53\x73\x33\x38\xb8\x01\x11\x52\xdd\x0c\x2e\x1e\x05\x01\x1b\x18\xc5\x8a\x1b\x53\x8e\x86\x78\x05\x36\x20\x49\x51\x36\xc6\xab\xcf\xfd\xad\x55\x65\xee\x44\xc6\x93\x50\xac\x31\xda\x45\x22\xae\x6d\x50\x65\xdd\x4a\x4f\xbf\x9d\xa2\x8b\x54\x24\xd0\xf4\x54\xf1\xa8\x63\xe1\xad\xb7\x7e\xec\x2d\xee\x4a\xac\x19\xfb\xbd\x89\x60\xc4\xa3\x13\xf4\x61\x2a\xd4\xf1\xe8\xd2\xfb\xb4\xb5\xfa\x20\x54\xc0\x8e\x06\x71\x31\x98\xdf\xf5\xbc\x8d\x19\xa3\xfb\x8f\xee\x45\x93\xfb\x2f\x34\x4b\x1b\x83\x30\xc8\x9a\x0a\x15\xe8\xeb\x7d\xd2\x1c\xb2\xbe\x3c\xf0\x64\xb3\x55\xed\xd2\x53\x51\xd1\x13\x7c\x0a\x82\x7e\xae\x8f\x06\xa0\xe1\x8f\xf3\xf9\x8f\x33\x19\xf2\xfd\x79\xc7\xab\xfa\xba\x72\x14\x01\x7a\x33\x68\x14\xb0\xcb\x50\x34\xff\x60\x57\x18\x35\x0d\x66\x11\x8f\x38\x04\x30\xd6\x49\xc2\x18\x60\x6d\x6e\x3f\x81\xe9\xfa\x0f\xd9\x7e\x45\xf4\xc1\x9a\xb1\x43\x06\x23\x85\x6a\x2f\x83\xf5\x9b\x19\xc1\xa3\x35\xad\xc4\xc3\x26\x3f\x5e\x54\x87\x23\xe6\x24\xc2\x39\x36\x8c\x92\x10\x6f\x3a\x73\x98\xb1\xf3\x27\xb6\x42\x5e\x6f\x3a\x87\x65\x29\x81\x47\x4f\xf7\xaa\x51\x74\x44\x78\x5c\x7c\x5f\x1d\x98\x9c\x06\xfe\x3f\xe3\x73\x71\x1d\xb5\x4d\x2c\x86\xd1\xe9\x34\x28\xe2\xae\x8f\x24\x55\xb9\xc0\xf7\xfb\xdd\x44\x38\x37\x84\x2e\x36\xee\x1d\x3a\x5a\xa4\xd3\x8d\x43\x8e\x3a\x54\x70\xfd\x8e\x73\x55\x07\x32\xfc\xbb\xdd\x63\xb5\xee\x3c\xf3\xb6\x66\x0c\x88\xbe\x6c\x39\x04\x84\x29\x1f\xda\x80\x7a\x52\x6e\x36\x6d\x24\x82\x89\x1f\x54\x06\x79\x70\x29\xf9\x0f\xb2\xe5\x27\x5f\xb5\x1e\x3e\x93\x53\x22\x8c\x66\xd3\x50\x31\x79\x86\x74\x99\x84\x1b\xe9\x8e\xe4\xe0\x2e\x1e\x45\x12\xdf\x83\x1e\xbe\xb6\xf3\xa5\x70\x2c\x5b\xa7\x2a\xe6\x41\x0a\xd7\xfb\x97\xc4\xb5\x69\xbf\x7c\x5c\x5c\x9b\x1e\x4b\xb9\x94\x2a\xb8\xbd\xe8\xc6\xa7\x20\x5e\xa9\xc1\x51\x85\x4b\x37\x63\x00\x23\xa7\xcf\x74\x87\x9f\x10\x43\xf5\x9b\xa3\x6f\xf0\x1a\x1a\x3b\xaa\xc3\x77\xc4\x83\xf3\xe3\xea\x7d\x23\x10\x59\x77\x40\xd9\x83\x28\x56\x1f\xc3\x9e\x5d\x3e\x1f\xc1\x73\x2c\xc3\xa9\xaa\x4f\xf4\xcc\xb8\x0a\x8e\xbd\x30\x7c\xe2\x01\x29\x98\xba\x0b\xd0\x8a\x72\xb0\x46\x00\xcc\x3d\x29\xfd\xf0\x29\x2a\x1d\x89\xb6\x06\x47\x60\x6e\x72\x69\x7b\x7f\xcc\x1f\x5c\x6a\x0e\x42\x87\x53\xcd\x95\x89\x78\x54\x52\x96\x06\xd8\x7a\x89\x4b\xc5\xcb\x1f\x5b\x5a\xd1\x64\x04\x81\xf5\x2d\x61\x97\x72\x59\x9a\x22\xa9\x77\x47\x74\xc6\x11\x6f\xed\x95\x37\x55\xd3\x2b\xc0\x87\xea\x97\x2e\x16\x2f\x77\x68\x8d\xae\x2c\x2f\xe2\xd1\xbd\xc2\x8d\xbe\xd7\x8b\x42\xa1\xfa\x10\xa6\xc0\x74\x03\xba\xa8\x3f\x31\x14\x39\xae\xc7\x96\x3b\x93\x7e\x70\xbe\x6d\x10\x7f\x5b\x94\x5d\x3b\x06\x44\x97\x07\xa8\xe0\x08\x56\x43\xe5\xc1\x3e\x4d\x6a\xba\x93\xb0\x29\x83\xfa\xe2\x1a\xe4\x70\x00\x75\xc8\xa5\xb1\xa3\x22\xcf\xdb\x87\x12\x3e\xb4\x0e\x1d\x56\xb7\xf5\x82\x71\x31\x01\x2b\xc3\xcb\x59\x14\x21\x23\x71\x77\x31\xfc\x2c\x5a\x21\xd0\x28\x69\x24\x66\x08\x9b\xae\x1e\x1e\x5e\xc9\xce\x3b\x74\x33\x3e\xa6\x11\xf3\x56\x88\xae\xae\xe3\x91\x30\xfa\x77\xe1\x31\xaf\x5f\xb8\x4d\xba\x5c\x92\xa5\x1b\x03\x49\xbe\x53\x1c\x73\xc1\x04\x44\x87\xe8\x46\xea\xbe\x80\xb7\xf0\x84\xef\xb6\xe3\x69\x93\x5c\x1a\x39\xec\x30\x6c\x9c\xf8\x75\xbb\x07\x59\xb5\x04\xe1\xc5\xb3\x73\xe2\xe5\xbc\xad\x82\x72\x3e\x91\x44\xda\xdd\x3e\x01\x7e\x86\x81\x42\x14\x93\x52\xdf\xbf\x8d\xb1\x3a\x20\x5b\x27\x46\x31\x24\xf4\x70\x1c\xd3\xba\xcc\xef\xa1\x02\x4d\x5f\xf8\x7e\x20\x05\xea\x59\x5f\xff\xe5\xca\x37\x96\x0e\x73\xe6\x03\x81\xb3\x4f\xa2\xfe\x9d\xc7\xeb\xe2\xb9\xaf\xbf\xf2\x23\xfb\x0c\x38\x35\x09\x25\x73\xd3\x52\x35\x46\x1c\x49\x36\x2c\x2d\x8c\x10\x7b\x73\xaf\x24\x09\xdf\xcb\xe6\xe1\x0b\xf4\xc2\x9f\x2c\xe0\x42\xa9\x4c\x22\x1c\xaf\x84\xc7\xf6\x7c\xc5\x05\x48\x95\xb2\x3f\x20\xff\x65\x34\xd0\xc9\x4b\x6c\x7f\x64\x86\x09\x37\xa2\x8d\x2e\xbd\x2e\x3e\xe7\x20\x62\xde\xd0\x3a\x5e\xc5\x7f\xf2\xbe\x7e\x32\xae\x82\x71\xd1\x5f\xcd\xca\x4a\x60\xde\xde\x7c\x83\xb1\x78\xcc\xfe\x96\x67\x80\xf1\x70\x83\xdc\x0e\x9f\x20\x34\x9e\x1d\x36\x1e\x1e\x23\x6e\x16\x5f\x62\xfc\xcc\x74\x3c\x2a\x38\x78\x42\x66\x20\x36\x6b\x1b\x8c\xf2\xbb\xc8\xb0\xa9\xcd\x76\xe6\x22\xd0\x22\x56\x19\xb6\x4d\xac\xca\x06\xa1\x66\xd5\xc6\x30\x48\x29\xaa\xca\xc4\x51\xa8\x48\x2a\xba\x3a\x04\x38\x03\xa2\x69\x9e\x8e\x5a\x97\xf0\xae\xef\x65\x24\xa3\x4b\x17\xe9\x4f\x4b\xee\x7b\x83\xac\xde\x5e\x6d\x3d\x18\x66\xfa\x53\x19\xff\xe4\x1e\xb6\x37\x33\x6b\xd2\xa2\xba\xd0\xa8\xc5\xa0\x4e\x48\x01\xc2\x08\x95\x5b\xca\xc6\xc1\xb1\xfa\xa0\x61\x80\xf6\x0d\x56\xc0\xff\xbc\xf2\x97\xaf\x38\x98\x91\xfa\xfd\xe1\xe3\xeb\xd7\xaf\x7f\x8c\xaa\xfd\xc7\x95\x52\xce\x2e\xe0\xc7\x8c\x8c\x89\xaf\x8e\x4a\xc8\x24\x8c\xe9\x5f\x44\xe1\x96\x81\xa8\x22\xdf\xb3\xa5\x54\x51\xe1\x8b\xb6\x26\x0f\xc5\xe5\x34\xf3\xb5\xb1\xcd\x61\xea\x51\x36\xd8\x11\x2a\x66\xb1\x6d\xc5\xed\x6b\x76\x10\xdd\x23\x59\x3b\x28\x88\x6f\xc2\x5f\x5c\x68\x6e\x3c\x05\xfc\x1a\x0c\x04\xc5\x3c\x21\x9f\xee\x78\x46\x1a\xa1\xd3\x54\xa7\x90\x1b\xa0\xdc\x39\x34\x60\x41\x24\x96\xa8\xb5\xe4\xfa\x61\x0a\xe6\xd4\x00\x09\xb9\x8c\x47\xe1\xe5\x6d\xa5\xfa\xd6\xf6\xf1\x5d\x93\x0b\x09\x5f\x9a\xdf\x93\x0b\x68\x7c\x35\x83\xc6\x0d\x3c\xd3\x18\x7a\xa4\xc7\x4c\xa6\x13\xe5\xb6\xc5\x69\x46\x77\x87\x66\xaf\xb4\x3b\xe2\xd9\xab\x80\x76\xea\xa2\xa3\x7c\x16\x75\x47\x75\xc1\xbb\x28\xbe\x0b\xf6\x9c\xa3\xf8\xcc\xe2\xcd\x3d\x3c\x6e\x60\xf7\x39\x61\x1e\x33\x4d\x50\xb6\x50\x93\xe1\x33\x9d\xc8\x52\x4a\xc0\x48\x08\x25\x6e\x2e\x95\xbe\x9a\x0c\xb6\x26\x2a\x2d\x1c\x80\xce\x9a\x0f\xc7\xe8\x86\x9c\x6e\x57\xb0\x0a\x7b\x19\x17\x46\x60\x4a\x61\x3c\x73\x83\x1c\xa4\xa7\xc2\xf3\x22\x85\x91\xa4\x6c\x91\x52\xd4\xc4\x31\xe5\x64\x6b\x75\xb6\x35\x14\x56\x0c\x8b\x39\x67\xc0\x0c\xc0\xe6\x6c\x57\x3a\x78\xd8\x9c\x57\x00\xac\x22\xd3\xe3\x61\x29\x44\x21\x68\x17\x25\x21\xe5\xe5\x40\x5d\x86\x05\x2f\xc5\x5d\x9a\xb5\x23\x1a\x66\xc8\x21\x11\x33\xd8\x48\x0c\x71\xdb\x7e\x0c\xc7\x3b\x9b\x1d\xc5\xc6\x3b\x9b\xd5\x3e\x10\xf4\xdc\xde\x96\x11\xf4\x1c\xc2\x56\x7b\x30\xb3\x59\xb7\x43\x34\x73\xdc\x5c\xa3\x76\x77\x3c\xd2\x63\x2a\x44\x6d\x70\xa3\x62\x60\x83\x2b\x6b\x41\xd2\x96\x29\x1b\x3c\xa2\x3e\xb7\x59\xe2\x67\xf6\xab\xef\x7e\xb4\x0d\x38\x64\x95\x67\xb2\xbd\xbd\x17\x7a\x4a\xce\x75\x17\x63\xa5\x2b\xa5\x34\xac\xf9\xbb\xe9\xe6\x46\x55\x65\xfc\x24\x00\xf4\x38\x62\x18\x66\x75\xaf\x79\xfb\x46\xe3\xc6\x81\x7c\xe6\x70\x01\xb9\x90\xa2\x82\x04\xa8\x04\x78\x46\x2a\x9a\xb3\x8a\xfc\x73\x68\x21\x80\x72\x48\x0c\x5e\x60\xdd\x7e\xe7\x7a\x12\xff\xa2\x18\x6f\x58\x28\x56\x38\x48\xd5\x68\xd4\x96\x9b\xdb\x2b\x0a\x10\x8b\x05\xa1\xc3\xaf\x30\x5b\xa3\x8a\x83\xb4\xc4\x3d\xcd\x99\x28\x41\x11\x05\xb6\x34\x77\x60\x84\x96\x4e\x78\x13\xc3\xfe\xf8\x4b\x5d\x01\x4f\x85\x5e\xae\xf8\xd3\x77\xbc\xe1\xf5\x20\x70\xd2\xbb\x33\x11\x81\x60\xec\x69\x08\x85\x2f\xd8\xe5\xf5\xc3\x89\xe6\xe9\x02\xe5\x5e\xa3\x6f\x14\x38\xc2\xd7\xd6\xf8\xe6\x81\xc4\x8c\xe8\x00\x95\x0b\x1d\x02\x55\x54\x31\x47\xfe\xd0\xdf\x72\x92\x81\x14\x3b\x56\x0d\x20\x32\xa5\x54\x6f\x39\xd1\x9c\x1c\x6b\x6c\x9e\x06\x5f\x8b\x25\x5b\x55\x6b\xad\x4a\x2a\xb0\xa0\x14\x70\x86\xc8\x6f\x6c\xbe\xa1\xf0\x72\xf5\x39\xe4\x83\x57\x1f\x53\xe8\x43\xc3\x6c\x7b\x78\x3b\xd7\x18\x63\xfd\x60\x1c\x6f\xb9\xbe\x7f\x6d\xa2\xfc\x7c\x26\xc0\x5b\x24\xd0\x05\x6f\xb8\x9c\x77\x2d\x15\x51\xa4\x87\x42\xe4\xc5\xf9\x4f\xfc\xc3\x19\x45\x60\xaa\xb8\x9c\xea\x93\x44\xaa\xa1\xc3\x8a\xa0\x98\x54\x12\xf3\x1a\x6d\xb8\xae\xca\xd4\xc8\x71\x25\x78\x41\x38\x08\x96\x32\xb9\x04\x79\x33\xf9\x68\x20\xb2\x32\x3a\xb3\x24\x21\x5f\x38\x9f\x82\x51\x0a\xca\x75\xd0\x28\x93\x79\xc5\x99\xc2\x12\xe4\xcb\x54\xe9\x6a\x06\xec\x51\x12\x22\x8c\x5d\x75\xb5\x42\x35\x73\xbd\x44\xce\x20\xfa\x1a\xc5\x3f\x9d\x92\xa2\x5b\xfd\x5e\x15\xf5\xf1\xd5\x5b\xb0\x0d\xdb\x07\x60\x06\x56\xa0\xa2\x43\x17\xd9\xa3\xdd\xa0\xba\x45\xa9\xda\xb6\x7e\x44\xaf\xc5\xed\x27\xcd\xe3\x63\xc9\xfd\x1b\xa5\x1a\x51\x99\x4e\x1f\xea\x00\x42\x4d\x46\x2a\xff\x75\x4c\x25\x15\xbf\xab\x34\x5e\x6f\xf6\x36\x98\x49\x41\x62\x81\xda\x61\x73\x7b\x1b\xa3\x34\x17\x5f\xe2\x36\x62\x94\xde\xbe\x87\x77\xee\xe7\x96\xeb\x87\x1b\x8d\xa9\x1d\x6f\xf5\xa6\x91\x06\x42\xf7\x81\xd7\x59\xdd\x7e\x59\x85\xe8\x08\x28\xc7\x1b\xef\x03\x3e\xee\x8a\xee\x06\xb2\x6a\xd4\x7e\x90\x25\x60\x22\x96\x6b\xa4\x51\x72\x4b\xa6\x72\x18\xbc\x3b\x20\xd7\xb4\x4d\x4a\x31\x85\x0f\x93\x0c\xa7\x32\x90\xa1\x81\x99\x1b\xa4\xc9\xeb\xee\xfa\x16\x6c\xe1\xef\x8c\x3c\x1b\x2a\x4b\x9b\x91\x63\xc3\x2c\x8d\x84\x80\x33\x18\x1e\x16\x53\x5e\x26\x0c\xe3\xdc\x1e\x6c\x2c\x6f\xa1\xff\x67\xe7\xae\x7f\x6b\x9a\xe3\xbf\xd1\xee\x9a\x99\xa4\x64\x2d\x72\xb1\x9e\x6f\x7d\x49\x73\xfa\x86\xbe\x24\x03\x33\xae\xf1\xb2\x1f\x83\xad\x59\xe0\x73\x66\x32\x25\xbe\x7d\xca\x2e\xfa\x20\xa7\xb6\xba\x85\x4c\xd1\x88\xac\x05\x52\xa2\x6a\x60\x05\xe2\xa4\xc4\x5b\x3d\x45\xdb\x29\x22\x7f\x31\xec\x7c\x4a\xe9\x80\xd9\x82\x5d\x27\x6f\x53\x7c\xcc\x8d\x41\x4a\x42\x78\x1f\x4f\xc7\xe9\x8c\x94\x53\x8b\xb8\x0a\x39\x94\xef\x03\x6f\x05\x5f\xa7\xdc\x64\xe8\x4e\xc0\xbc\xd7\x93\xaa\x3d\x2e\x08\xdf\x4f\xdf\x7f\x1e\x13\x39\x89\xad\x86\x52\x82\xab\xa6\x11\x53\x7c\xfb\x84\x07\x2a\xe7\x29\xf1\x39\x47\xe4\x3b\x0b\x1a\xfa\xde\x06\xaf\xe9\x3f\x72\x33\x66\x47\x6e\x59\xf9\x4b\xeb\x72\x97\x71\xee\x00\xba\xf4\x86\x81\x98\xee\xf2\x74\x82\xcc\x2a\xd8\x41\x10\xff\x3a\xe8\x4d\xaf\x37\x77\x96\xb8\x2b\x8e\x26\x90\xce\x41\xee\x0f\x3d\xe2\x68\x02\x15\x9e\x4d\xf5\x31\x12\x31\xeb\xba\x5a\xcb\xd0\x61\xea\x38\x0c\xae\x8a\x77\x97\xde\x73\x20\xaf\x78\x46\xb7\xc6\x1a\x87\x1b\x64\xf4\xc4\x5f\xc0\x37\xc8\xf5\x9f\xbe\x83\x6f\xb4\xf1\x81\xe8\xf0\x20\x37\x3a\xd5\xf9\xb5\x87\x02\xc1\xc5\x73\xe9\x73\x78\x33\xac\x7a\xc7\x67\xf9\xd7\xc5\x1d\xee\xa1\x7f\xc0\x3b\xdf\x61\xac\xe2\x6a\x07\x52\x33\x47\xf4\x0b\x9c\xf3\x52\xc3\x24\xd0\x7f\xad\x6f\x5e\x88\xfe\x2c\xdf\x7c\x78\xa6\xc1\xfd\x33\x63\xaa\x1f\xb2\xf5\x12\x66\xea\x8d\x76\x4b\x30\xee\x76\x51\x27\xd8\x0f\x5f\x33\xd2\xb3\xd2\x67\x55\xbf\xe6\x9a\x51\x07\xd7\x6d\xec\x7d\xa3\x4e\x63\x44\x96\x22\x09\x68\x79\xc9\x42\x97\x8e\xe2\xa0\xd5\x5d\x01\x81\xff\x27\x6f\x1e\xc5\x39\x3e\xf1\x12\x00\x05\xc1\xb3\x31\x83\x97\x36\x0d\x07\x16\x13\x06\xe7\x56\xaf\xee\x06\xa9\x57\xf6\xc7\x11\x50\x61\x4b\x08\x86\x98\xaa\xc6\x96\x6c\x53\xe1\xc9\x2c\x9c\xd3\x2a\x0b\x88\x70\xe7\x70\xa1\xbe\xaa\x41\x97\xb1\xf9\xd2\x90\x01\x53\xca\x5e\xc3\x43\x6b\xfe\xde\xd6\x02\x97\x86\x9b\xe0\xce\x02\x20\xf6\xf7\x1b\x31\x3d\xaa\x40\xfc\xd0\xfe\xc3\x6d\x60\xbd\xd1\xa6\x61\xa1\xd3\x36\x5e\x99\x79\x34\xd3\x9c\x9f\x6e\x1e\xbe\xa8\xd7\x8e\x83\x52\xf6\x00\x26\xcc\x1c\x45\x41\x21\xe8\x0b\x58\x46\xe9\x6d\x74\x12\x53\x29\x13\x49\xa7\xbd\x4e\xa4\x8c\x61\x16\x19\x12\x79\x14\x3b\x81\x15\x50\x1d\x0e\xd2\x1b\xd3\xde\x26\x16\x1c\x69\x06\xd3\x67\xf2\xd5\x42\xae\x4f\xf9\x64\x50\x50\x5e\xc0\x74\x2d\x92\xab\x45\x89\x34\x2e\x30\x07\x17\x2e\x41\xad\x46\xee\x84\xc2\xd0\x6a\xe8\xa1\x23\x09\x10\x53\xae\x11\x6e\x48\x1d\xd4\xdd\xe8\x40\x45\x02\xe1\xf1\x36\x3e\xde\x5a\x40\x4e\xf9\xea\x71\x90\xa7\xc7\xb8\x8b\x49\xcd\x92\x82\xab\xfa\xf5\x46\x1e\xc2\x88\xc3\xfd\x9a\x00\xbf\xa0\xe3\x9f\x06\x87\xe4\xba\xc4\x1d\xb9\xc9\xf0\xa1\x11\x70\x36\x5f\x19\x81\xa4\x5a\x09\x8d\xc0\x04\xf8\x35\x23\xc0\x04\x79\xec\xbd\x84\xa1\x70\xbe\xee\xe1\x3d\x50\x6b\x4c\xe5\x07\xa3\xbf\xa8\x91\xb8\x91\xa9\x7b\x23\x81\x7c\x0e\x5d\x20\x61\xa0\xe0\xcc\x99\x40\x94\x98\xe1\x42\x22\x7e\xb7\x4d\xf2\x07\xe9\xb6\x78\x02\x3b\x07\x67\x6f\x6b\x8b\xb5\x02\xd3\xc1\x40\x17\x8a\xe6\xa0\xa6\x92\xa4\xef\x4d\x6b\x2f\x72\xbe\x1a\xe6\x0f\x3c\x34\xad\xb7\xf1\xcc\x64\x13\x71\x59\xbc\x1c\x8d\x9b\xa0\xba\xf1\xca\x8a\x9c\x71\x0f\x35\x44\xdb\xe8\xdb\x21\x15\x48\xed\x79\x5e\x8d\x98\x9e\x8d\xf6\x94\x79\xc7\x28\x0a\x71\xeb\x76\x58\xc3\x6d\x13\x7f\xcd\x95\x84\xa9\x5e\x48\x53\x0a\x9d\xcd\xc0\xcd\x41\xe2\x2d\xc7\x9b\xc7\xc8\x9c\xe9\x20\x16\x0f\xa1\x22\x59\xb0\xda\xee\x3b\xb7\x0d\x54\xbb\xb7\xc8\x95\x1c\x9a\x5c\x20\xa9\x8d\x1d\xdf\xae\x34\x2a\x5a\xe4\xab\xd6\x30\x86\xf0\xfe\xd2\x34\xc0\x4c\xc4\xb0\xfa\x15\xdd\x44\xa6\x84\x47\x14\x64\x27\x45\x38\x07\x66\xb0\x9d\x7e\x0e\xad\x18\x09\x3d\x4c\x96\xf0\xaf\x1b\x99\xe9\xc7\x61\x16\x14\xba\x1c\xdb\x81\x63\x7c\xa0\x7f\xd4\xd0\xb7\x1f\x99\xdd\xf2\xa6\xf8\x65\x08\xa1\x11\xb6\x73\x12\x7e\xea\x45\x33\x13\x4a\x67\x46\xfe\x69\x75\x26\x6a\x8c\x32\x64\xff\x70\x17\xca\x04\x8a\xec\x0a\xe3\x81\x1f\x73\x67\x84\xa1\xe5\xd4\x8b\xe2\x1e\x58\xf0\xb5\xb7\x56\x00\xf3\x0d\xcd\x62\xf4\x3b\xa8\xfc\x74\xde\xee\x52\x73\x47\x4e\x6f\x4d\x6e\xa7\xee\x10\xeb\xa4\x82\x3a\x6b\x5a\x70\xbf\x55\x65\x97\x25\x84\x7f\xd7\xf9\x19\x31\x3c\x5e\x56\xef\x25\xa9\x3b\x61\xe6\xab\x53\x4a\x31\x55\x65\x31\xa9\xcb\x54\x11\xde\x99\xc2\x4b\x03\x4a\xd1\x37\x72\xbe\x29\x10\xce\x19\x1f\x4a\x16\xaf\x8a\x54\x78\x85\xe4\x4f\x9e\x9e\x69\xac\x1d\xea\x4b\x6a\x4e\x21\x4b\x27\xf8\xea\x79\x14\x98\x83\x9a\x00\xba\x72\xcc\x60\xf7\x68\x94\xbb\x31\x75\x72\x6b\x02\x8e\x51\xaf\xe2\x96\xc8\xe7\xa9\x5d\xa4\x1a\xce\x29\xda\xa5\x50\x02\x31\x9d\x49\x31\xd4\xda\x00\x2c\x57\x9e\x5c\xa9\x15\x35\x6e\x18\x5b\x73\x63\xa4\x71\x7b\xcf\x1f\x1c\x8a\xed\x39\x99\x2d\xf4\x3a\x92\x27\x51\x3f\x08\x44\xc3\x00\x35\x05\x93\xd5\x64\x24\x2d\xb4\xce\xbb\x3f\x61\x7c\xdd\x7f\xae\x63\x40\x42\x5f\x41\x73\xe3\x8c\x2e\xa1\xaf\x8a\x12\xe2\xbe\xf2\x8d\xcc\x68\x59\xf3\xdd\xe3\xd0\x27\x7c\x58\x6a\x05\xa4\xd5\x61\xf8\xeb\xd2\x0a\x6f\x40\x3e\x30\x0a\x95\x61\xd6\x28\x0a\x71\x6b\x6b\x87\xe2\xab\xdb\xa6\x13\x4e\xf3\x11\x2e\x63\x1d\x2e\x76\xa0\x7c\xe1\xb8\xad\x86\xe1\x4a\x6d\x2b\xe3\x67\x35\x0e\x67\xa2\x05\x86\xfe\xde\xd6\x8b\x0a\xb2\x8b\x16\xb0\x8f\xaa\x0d\x9c\x1a\xa9\xd7\x60\xbf\xae\xb4\xad\x10\x6d\xde\xb6\x76\x24\x06\x2d\xae\x46\xeb\xe1\x2d\xe5\x31\x8a\xa1\x4c\x71\xe0\x8a\xb8\x93\x67\xb0\x62\xc0\xf8\x39\x02\x0a\xc7\x1d\x7e\x13\x0f\x52\xaa\xa0\x55\xbe\x41\xce\xec\xa0\x1c\xe3\x58\x0b\x49\x49\x92\xe2\xd0\xb5\x72\x90\xc7\xa8\xe1\x2d\x3e\xe7\xcc\x28\xe6\xda\x9d\x5d\x33\x10\x9d\x1c\xe2\x13\x6e\x41\xce\xa0\x59\xd8\x1b\xa9\x6e\x74\x83\x22\x84\xb3\x05\x3a\xd5\x4d\x05\xd6\xa3\x3a\x73\xd1\xcd\xf2\x39\xb0\xce\x5b\xf1\x0b\x5a\x68\x1f\x9a\x6e\x03\xa6\xf5\xe1\x41\x91\xcf\x0e\xef\x98\x66\xaf\xd9\xe1\xe1\xc8\x3e\xdb\x7a\xe0\xaf\xfc\xf8\xa1\x8a\x91\x51\x98\x55\xcf\x18\x02\x3e\x6e\xd2\x97\x56\x2f\x43\xa8\x50\x33\xf1\x9c\x3e\xbe\xe9\x2d\x9e\x60\x4c\xd1\xdc\x5e\xa7\x3a\xf1\xbd\x1a\x15\x63\x7b\x2d\xd9\xee\x40\x21\x9d\xa4\x27\x39\xdc\x7e\x3a\xf3\xe4\xbb\x22\x92\xe7\xe9\xa3\x0b\xf0\xf9\x22\x5f\xa0\xcd\xfe\xc3\xa6\xa3\x41\x74\x6e\xc9\x8b\x41\xd5\xe6\xd6\x53\x6f\xf6\x36\x70\x3b\x79\x09\x45\xbd\xbc\x25\x47\x75\x07\xcb\x92\x27\x51\xac\xf4\xb1\xb3\xfb\x8e\xcc\x81\x19\xa1\x39\x9e\x0f\xcd\xc1\x38\x75\x0f\x4f\xc4\x44\x0a\x25\xb1\x26\x40\xcd\x29\xaa\xec\xf2\xd5\x09\xef\x58\x9a\xe9\x73\x31\xe5\x4d\xea\x34\x7c\xb3\xdb\xd8\x75\x68\xeb\xb2\xc3\xa4\x42\x52\x86\xdf\x89\xaa\x14\xcb\xd9\xbc\x7a\x20\x8a\x5f\x76\xf1\xe7\xf7\x5a\xf3\x6f\x43\xbb\xb4\x52\xc2\x93\xc6\x64\x9f\x53\x72\x2a\x60\x2b\xd8\x72\xb8\x08\xeb\x21\x1f\x48\x42\xb5\x46\xa7\xe3\x6a\x81\x35\x00\x3a\x4f\xb2\xc2\xb7\xa1\xd9\x6e\x18\x19\x06\x8a\x65\xef\x6c\xa4\x56\xd9\x29\xa7\x72\xaa\x0e\xfa\x2e\xd3\xec\xe2\xe6\x5b\x41\xb8\xd6\x23\x88\x3e\x8e\x74\xc2\x8b\x35\x41\x55\xa9\xe4\xf4\x94\x53\x30\xa4\x4c\x82\x21\x38\x09\x76\xa4\x97\xa2\x43\xe9\x3a\x92\x39\xc0\x69\xa5\x98\x44\x1c\x90\xb2\xde\xba\x53\xe5\xeb\xdd\x78\x0e\x79\x6f\x37\xa6\x75\x35\x24\xa9\x23\x7d\xd0\xa0\x3a\xd6\xc1\x4b\x4b\x21\xf8\xd6\xe8\x6d\x7f\x2e\xa6\x0f\x85\xb2\x7e\x3b\x55\x0c\x21\xcc\xfa\x23\x7c\xb1\xce\x40\x1b\xd5\x88\x22\xc0\xa8\x14\x8b\x05\xb3\x52\x36\x03\x56\x98\x51\xa1\xf1\xec\xb0\x35\xff\xfa\xac\x0a\x14\x43\x20\x67\x59\xfa\xd1\x23\x73\xa0\x9d\x6a\xca\x61\x4f\x06\x83\x13\x19\x13\x1f\xaa\xe8\xf4\xfc\x87\x9d\x06\x16\xce\x30\x3b\x07\xcd\x57\x2b\xed\xf4\xd6\xe3\x38\x65\x7c\xf5\xab\x88\x6a\x56\xfa\xaa\xc2\x1f\xc5\xcd\x59\x57\xf0\x93\x15\x8b\x3a\x86\x8e\xe2\xce\x24\x35\xa9\x1d\x43\x71\x98\xc4\x04\xba\x2b\x55\xd2\xe5\x0a\xec\x58\xe9\xf3\xcb\x2b\x98\xfa\x84\x2e\xe8\xdc\x3a\x63\xcd\xda\x6a\xc7\x77\xde\xde\x5a\xa8\x91\x74\x2a\xdd\x6f\xc7\x8c\xe1\x33\xfc\xfe\x0b\x06\xd1\x56\xbf\xc3\x28\xda\xdb\x0b\x6d\x28\x4a\x00\x8b\x4e\xea\x9e\x4a\xfa\xaa\x5d\xc6\x10\xee\xfe\x24\x1d\x73\xc7\x37\xe8\x8d\xdd\xf7\x1f\xcf\x78\x77\xab\xde\xfe\x44\x73\x65\xb3\xbd\x45\x90\x3c\x79\xbb\x9c\xa2\x98\x85\xf8\x21\x7d\xf1\x99\xe5\x0d\xdf\x14\xd5\xb8\xad\xbe\x03\x16\x46\x29\x29\x8a\xb7\xec\x5a\x54\x61\x02\xf6\x40\x96\x9d\xd9\x22\xeb\xe5\xed\x4d\xa1\x9d\xc0\x92\x30\x3d\x90\xa6\x94\xc4\xe3\xb0\x77\xa9\x7f\xde\x5c\x24\x01\x23\x88\xa5\xcc\x7a\x50\x89\xf8\x6b\xf3\xfd\x52\xe3\x69\x8d\x53\xec\x61\xbd\x76\x1e\xcb\x7c\x4f\xc1\x23\x08\xa9\x59\x0c\xe8\x0f\xd6\x62\xd9\x24\x80\x17\x53\xb8\x0b\x11\xfe\xd1\x0d\x6f\x68\xb1\x13\xbc\x1a\x0d\x83\x1b\x03\x31\x6a\x45\xb0\xcf\x0c\x2b\x18\x89\x70\x2b\xb1\x03\x39\xd8\x58\x92\xdc\xc9\xb3\xbd\x86\x65\x18\xb2\x19\x2f\xb4\x3f\x09\x25\x07\x81\x2a\x7d\x32\x43\x45\xde\x23\xe1\xaf\x4a\x0d\xa3\xdc\xd5\x2a\x78\x4f\x8a\xa2\x17\x49\xf9\x33\x2b\x39\x12\xbc\x83\x43\xe6\xcf\x72\xb1\x5d\x0d\x40\xa6\xcc\x65\xa1\xc8\x0b\x69\x9c\x94\x51\x0e\xbe\x61\xcb\x14\x0c\x02\x55\x48\x89\x80\x12\x9c\xfa\x27\x54\x21\xe7\xf4\xa9\xf7\xed\xc4\x9c\xe5\x4b\xa3\xc1\x7c\x3a\x64\x4c\xd6\xaf\x90\x76\x48\x97\x1c\x8c\x33\x38\x0f\xa1\xf1\x9a\xb5\x14\x58\xd6\x4d\x06\x68\x0b\xde\x37\xa5\x97\xa7\xc2\x28\x44\x48\xc2\x62\x00\xc5\x47\x93\x61\xd7\xa2\x9e\x23\x1e\x26\xd2\x4b\x79\x14\x3f\x18\x24\x6c\xe3\x47\x53\x09\xb3\xc6\xd5\x1d\xed\xd6\x89\x9f\xbc\x3a\xb9\x8b\x99\x41\xec\xf1\x94\x1e\xa3\x82\x6a\xcf\x5f\xff\xff\x36\x49\xbf\x39\x0a\x95\xaa\xdf\x1c\xc4\x2f\xcf\xd3\x0f\xbc\x19\xf8\x51\xe7\x6c\xfd\x9c\x8a\xfc\x02\x45\xf6\x87\xf6\x9c\xe1\x71\x51\x7b\x8e\x20\xdb\x4e\x3b\xe5\x3b\x1f\xf1\x8b\x2f\xec\x9e\xfa\xaa\xdc\xc4\xf2\x12\x04\xef\x73\xda\x47\xb4\x9b\xc2\x7d\x9a\xae\x9c\xc6\xbd\x09\x7a\x5f\x9a\x61\xdb\x6e\x70\xf3\xe7\x0e\x69\xf7\xa2\x07\x4f\xe4\xe6\xe2\x02\x4a\x05\x65\xab\x0c\xf6\x34\x1e\x2e\xc0\x04\x50\xae\x64\x80\x32\x3e\x87\x92\x18\xc9\xf0\x71\x3f\xca\xae\x0c\x0d\xbf\xdd\xd9\xa4\x5f\x1a\xa7\x1a\x74\x87\xd6\xb8\xc0\x61\x6c\x7e\x01\x68\x7f\x6c\x88\x0b\x38\x5f\x1a\x37\x2c\xe1\xaf\x5c\xc0\xa9\xbe\x89\x83\xf1\x63\xa1\xaa\x20\x2e\x82\x43\x71\x26\x63\xfc\x1c\x7f\x4d\xe3\x0e\x37\x4c\xa5\x6c\xde\x73\xde\xfa\xd0\x78\x22\xa1\xaf\xfc\x91\xde\xdb\xe5\xa7\x76\x75\x5e\x65\x2a\xa0\x67\x87\xb9\x80\x1f\x13\x56\x05\x3d\x14\x8f\x54\x48\xfc\x0e\xfe\xb7\x3e\xff\x4a\xf7\x5d\x2e\x97\xb2\x3d\x95\x72\x6c\x0e\xf7\x57\x8f\x29\x4d\x60\x14\x92\xa3\x3a\x28\x56\xa6\x13\x88\x5b\xe1\xb6\xbc\x8d\xbb\xfe\xee\x74\x27\x28\xf3\x4d\xaa\x10\x08\x27\xdd\x48\x5c\xa1\x64\x4e\xd6\x1f\xe8\x97\x2a\xcb\x23\xb3\x4b\xba\xa9\xc4\x97\xae\xf5\x69\xc6\xba\xf2\xa9\x2a\xa0\x97\x85\xc9\x6f\x41\x0f\x11\xc7\x61\x1a\x41\xa2\x4f\x15\x87\xf1\x87\x10\x84\x43\x03\x22\x8c\x48\xc9\xf8\x5e\xce\xb9\xf2\x66\xac\xf5\xcd\x9f\xaf\x58\x9c\xc0\x59\xaf\x02\x9e\x1e\xc8\xe3\xbd\x84\x87\xaf\x3f\xfd\xd2\x92\xdc\x74\xa1\xc5\x95\xc6\xe0\x87\xa3\x5f\x21\x4c\xc8\x0d\x1b\x1e\xbf\x7a\xec\x16\xf4\x5f\x95\x2b\x41\xe8\x34\x5b\xc4\xe7\xf2\xf1\xd6\x2d\x3b\x4f\x75\x9b\x28\x06\xe5\x32\xbf\xb1\x4b\xf4\xe3\xad\xbc\x08\xa6\x64\x31\xc1\x24\x4a\x2b\x86\xc0\x03\xab\xb5\xad\xd5\x36\x41\x67\xd6\x13\x01\x11\x7a\x12\x44\xc4\x84\x50\xb8\x19\xe3\x10\x19\x4e\x18\x26\xc9\x1b\x89\xe3\xa7\xcd\x41\x87\x8e\x9c\xda\x6b\xa8\x43\x87\x50\x1d\x7e\x7b\xbc\x73\x6c\x40\x90\x8f\x94\xbd\xd8\xca\xda\x16\x9f\xb6\x4e\x35\xc8\x8e\x00\x0d\xd5\xe1\xc9\x75\xa3\xf4\x5a\xf0\xf0\xb7\xc4\xe0\x19\x85\xd1\x37\xbf\xa5\x48\x71\x01\x79\xe3\x9d\x79\x81\x94\x85\x1e\x7e\x0e\x3f\xf9\xac\x6a\xab\x87\x2e\xc1\xd0\x27\x83\xb9\x4f\xae\xe5\x37\xdf\xe3\x4d\x28\x7f\x7e\xdd\x3b\x9d\xd7\xd0\xd1\x87\xd7\x45\x5a\x1b\xa5\xd4\x93\x38\x1a\xc2\x3d\x91\xa0\x29\x39\xf4\xe0\x65\xdc\xe3\xf0\x0a\x95\xe8\x1e\x4f\x27\x39\x93\x9c\x86\x6e\x2d\x3d\xf4\x07\x87\xd8\xa5\xd2\x5e\x07\x46\x1d\xad\xc0\x03\xef\x54\xc1\x4d\x97\xb2\x45\xb9\xf7\xd2\xbc\xf5\x08\x30\xad\xb8\x81\x1e\x2c\x2c\x85\x2b\x34\x22\x6f\x7f\x4f\x7a\x33\xb3\x18\x3f\x3b\x33\xa2\x08\x50\xe1\xb0\x47\xaf\xbc\xf2\xe3\x47\x56\x1e\x20\x8c\x3b\x36\x28\x5d\xc3\xdd\x41\x79\x0c\xdf\x0e\x0a\x59\x04\xa8\xca\x11\xc2\x81\x72\x59\x93\xc7\xfe\xd4\x7a\x64\x4d\xf0\x05\x61\x37\xc7\xcb\x72\xe5\xca\x9f\xad\xe8\xf2\x07\xc5\xea\x50\xfe\xe7\xa3\x6a\xbd\x36\x0c\x4a\x9d\x75\x0e\x53\xbc\xf4\x81\xcd\x78\xce\x52\x97\x06\xc6\xcc\x9a\x8c\x68\xfd\x2e\x31\xa5\xc8\x8c\x96\xc7\xb4\x2a\xaf\x2b\xc7\x35\xaa\x38\x63\x68\x23\x45\x70\xa9\x9f\x64\x0d\x3d\x09\x90\xd0\xef\xb1\x62\x00\xbb\x3c\xa9\x1e\xa5\xf1\x80\x8d\x22\x85\x9b\x6f\xc3\x06\x23\xc0\xb8\xf8\xd0\x03\xe3\x20\x8f\xca\x78\x86\xc5\x01\xf2\xfc\x76\x29\xbd\xa1\x69\x8c\x28\xee\xd5\xf0\xa3\x43\xaf\xba\x27\x47\x0d\x14\xdc\xaf\xe1\xcd\x97\xde\xe3\xde\x78\x17\x30\xf5\x80\x08\x19\xf0\xea\xad\x11\x4e\xf2\x72\x74\x97\x5e\x55\x96\x97\x41\x84\x45\xf0\x3d\x27\x8c\xf4\x4e\xe6\xc8\x05\xcd\xa6\x80\xbc\xe1\x4c\xe1\x67\xf2\x5a\x16\x27\x25\x94\xb1\x87\xde\xb6\x34\x6a\x9b\x6f\x5a\x76\xaa\xad\x2e\xe2\xc9\x7a\x05\xc7\x27\x91\x35\xfb\x7b\xc5\xae\x40\xbb\x76\xa1\x0f\xf7\x32\x9e\x95\xcf\xf3\xdb\x83\xc1\x1a\xf1\x3d\x24\xb2\x4a\x81\x15\xc9\x8d\xb5\xe6\xde\x30\xa8\x4b\xc1\xe2\x5c\xcd\x16\x51\xbc\xca\x5b\x63\x09\xef\xf4\xb8\x71\x6f\x9d\xa4\xac\xca\x6d\x6b\xa0\x38\x60\xc8\x82\xe4\xf0\x98\x04\x44\xeb\x6e\xfc\x30\x3f\x51\x5c\x14\x46\x11\x10\xd0\xb2\x93\xe0\x37\xf0\xad\x3f\xfe\xfe\xcf\x7f\xb1\xf4\x73\x31\x21\x70\xe6\xf1\x7c\xb3\x70\x70\x38\xb2\x5b\x05\x86\xb6\x3b\x8f\x2b\x76\xd3\x0b\x98\xb0\x1e\xd5\x94\x1c\xb0\x28\xee\x4e\xdc\x49\xe6\x68\x1e\xc1\x44\x66\xca\x70\x67\x4e\x94\x89\x4c\x9a\x62\x57\x50\xa4\x11\x21\xc3\x4c\xaa\x88\x3b\x48\x40\x06\x6f\x00\x14\x08\xba\x08\x94\xce\x95\xcc\x60\x9c\x25\xb9\xbd\xaf\x82\x94\x33\xe3\xe2\x87\x06\xeb\xfb\xaf\x0d\x6e\xc0\x81\x01\x32\xac\x2b\xfc\x33\x3a\x30\x05\x05\x46\xe7\xb5\x6c\x86\x74\x43\x86\xe3\xab\xbb\x92\xb4\x93\x40\x15\x88\xe6\x2f\x0a\x22\x3a\x57\xa0\xe9\xac\xe8\x67\x9f\xd1\xdf\x56\x64\x15\x65\x6f\xe2\xde\x61\x60\x41\x2b\x2b\x3d\x16\x57\xd2\xd0\x7d\x69\x8d\x12\xed\xff\x89\x20\x45\xcd\x22\x97\xed\x65\x5f\xb2\x9e\x06\x66\x07\x9e\x3d\x8e\x80\xf7\xe3\xfb\xaa\x7c\x5b\x52\xd8\x2a\xa5\x3d\x8e\xce\x20\x68\x4d\xa6\x11\xdb\x58\x31\x4b\xae\x41\x85\x15\x7e\xea\x27\x82\x12\x05\x23\x1c\x5a\x80\x22\x54\xa4\xf6\x89\x7a\x40\x4d\xed\x15\xfd\xa4\x51\x84\x65\xa1\xdc\x56\x4b\x41\xf2\x3a\xd2\x29\x96\x93\xe4\x12\x69\x2e\xb2\x4b\x47\x01\x5c\x48\x97\x80\x33\x7f\x06\xff\x58\x7c\x70\x1a\x94\x88\x4d\x5a\x33\xf4\x6a\x55\xe4\x02\xcd\x65\x2a\x39\x5d\xbc\x3d\xe6\x4f\xdd\x31\x6a\x4a\xd4\x00\x3a\xc4\x0c\x1f\x5d\x00\x60\xe6\xd5\xeb\x08\x64\xff\x60\xa7\x2b\xfa\x18\x21\xec\x62\x0b\x1a\x72\xd8\x37\x44\xea\x52\x7d\x7f\xab\x79\xba\xd0\xd8\x1c\x0f\x00\xe4\x92\x08\x7e\xd4\xc9\x88\xd4\x24\x00\x9d\x65\x12\x07\x1b\xe3\x67\xf5\x4d\x5e\xb5\xd0\x08\x75\x7c\x85\x8a\x5a\xe0\x9f\x40\x2b\xf8\x60\x5e\x4c\xc8\x85\x02\x67\x0d\x86\x8b\x44\x7d\x31\x8b\x92\x9f\x24\x54\x2c\x8b\xfa\x1c\x4a\xa3\xa4\x3e\x3a\xc5\x44\xf0\xaa\xb1\x82\x23\x85\x5c\xc7\x3f\x1b\x83\x88\xc9\x69\xf3\x2d\x4a\x3a\xa7\xf0\x5d\x6c\x46\xf7\x43\xc9\x56\x12\xbe\x23\x74\xde\xe5\x6c\x6e\x7c\x77\x4e\xa2\x6a\x38\x16\xe8\x70\xc4\x04\xbd\xe8\x96\xd2\x17\xcf\x87\x93\xe8\xd1\xb5\x27\x8a\xb5\xa1\x67\xa2\xf1\x25\x21\x5d\x41\xa5\xca\xfb\xed\x77\xaa\x07\x1e\x12\x27\xfc\xfb\x5e\x0f\x8a\x3d\x17\xa1\x9e\xd8\xa7\xc1\x9d\xb9\xff\xa6\xfb\xfb\x9e\x47\x19\x64\x0d\xfc\x9e\xc3\x25\x7e\x6d\x23\x3a\xb3\x06\x63\x67\x57\xe3\x85\xee\x51\x23\x42\xe4\x72\xbc\x4a\xeb\x12\x8f\x31\xba\x95\x5d\x4e\xf5\x05\xe8\xe2\x80\x87\x0f\x22\xed\x6c\x2c\x49\x3e\xb5\xdf\x24\x75\xda\x66\x4e\xf4\xf0\x1b\xbe\x21\x48\x79\x0b\x54\xb6\x03\xce\xb3\x46\x2b\x5f\x76\x1c\x7c\x1f\x3b\xd5\xe7\x24\xf0\x7e\xdc\x18\x58\x3a\x94\x4f\x1d\x63\x78\xf9\xc2\x1c\x12\xd5\xf5\x04\xbf\xb1\xd5\xdd\xf5\x89\x9b\xf8\xc4\x6a\x6c\xdc\xc1\x67\x4a\x3f\xc9\xc3\xdf\xfc\x8e\x3b\xfd\xec\xc7\x9f\x94\xb6\x9f\x7e\x66\xf0\xe7\xda\x33\xfa\xfb\x3a\xfe\x3d\xbb\xc9\xb5\x80\xc3\x7c\x02\x16\x7a\x95\x7e\x0d\x60\xc9\xc1\x5b\xfc\xdb\xb5\x81\x4b\x65\x28\xfb\x9e\xf4\x90\xcf\x16\x60\xdb\xd1\x97\xa0\x9f\x7e\xa7\x52\xe2\x4f\xba\xaf\x4c\x6a\x80\xbf\x70\x77\xd7\x6d\xfb\x2a\xff\xe6\x2e\xa1\x47\xb0\x52\x29\x87\x26\xf7\x8a\xd9\xbe\x18\x80\x7b\x2e\xa5\xae\x27\x55\xef\xd0\x35\x7f\x50\x9d\x73\xcf\x84\xad\x4c\xc9\x29\x62\x96\xa4\xef\x82\x17\x0e\x54\xd6\x6a\x7f\xfc\xbe\xbf\xf0\x46\x3d\x94\xb0\x2b\x71\xec\xd5\xfb\xea\xb1\x78\x7c\xc3\x2d\x78\x25\x36\x5b\x28\x56\x54\x96\x80\x1b\x9b\xea\x35\x6d\x7a\xe7\x6d\x67\x5d\x32\xda\xaa\xbc\x77\x92\xb0\x1b\x9f\x3e\xef\x41\xbe\xce\xc9\x2b\x8e\xef\x36\x36\x76\xc0\x06\xf8\xcf\xff\xc4\x52\x7c\x82\xfa\xbf\xfe\xcb\xfa\xf2\x77\xa0\xfb\x83\x8a\x47\xef\xee\x8f\xf0\x33\xd4\xec\xe1\x30\xe0\xf3\xa9\x1f\xfe\x10\xa9\x82\x5e\x41\x0a\xa3\x23\x27\xb3\xc4\x8f\x4b\xe7\xff\x3b\x00\x00\xff\xff\x6c\x3c\xf2\x18\x62\x93\x00\x00") func confLocaleLocale_zhCnIniBytes() ([]byte, error) { return bindataRead( @@ -987,12 +987,12 @@ func confLocaleLocale_zhCnIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 37650, mode: os.FileMode(493), modTime: time.Unix(1439590218, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 37730, mode: os.FileMode(493), modTime: time.Unix(1439758816, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_zhHkIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\xbd\x5b\x73\x13\x49\xf6\x20\xfe\x4e\x04\xdf\xa1\xfe\xfd\x0f\x62\x76\x1f\x1a\xa2\x67\x62\x37\xf6\x01\xb1\xdb\x33\x3d\x3b\x33\x1b\xd3\x3d\xbd\x43\x4f\xfc\x1e\x26\x3a\xf4\x93\xa5\xb2\xad\x1f\xb2\x4a\xa3\x92\x70\x7b\x9e\x64\xc0\xb6\xe4\x0b\x32\x60\x1b\x8c\x0d\xc6\x06\x8c\x31\xf8\xc6\xd5\xf8\xfa\x61\x46\x55\x25\x3d\xf5\x57\xd8\x73\xcb\xac\xac\x52\x09\xba\x27\x66\xf7\x05\xac\xcc\x93\x99\x27\x4f\x9e\x3c\xb7\x3c\x99\x95\x29\x95\xd2\x39\xdb\xcd\xa6\xbc\x95\x03\x7f\xe1\xc8\xfa\x9d\x63\xb5\x37\x1f\xb6\x37\x6a\xc1\xfd\x1b\xed\x89\x4d\x6f\xf2\xb9\xf5\xbb\x7c\xc5\xf2\x97\x67\xbc\xa9\xc5\xb3\x67\xce\x9e\x19\x74\x86\xec\x54\x67\x7d\xa1\xf3\x68\xf4\xec\x99\x5c\xc6\x1d\xec\x73\x32\xe5\x5c\xca\xbf\xf9\xcc\xab\xbf\xeb\x3c\x58\x0b\x1a\xf5\xb3\x67\xec\x1f\x4a\x05\xa7\x6c\x43\xe9\x5a\xf0\x66\x0d\x1a\xd9\x85\x52\xca\xfb\xf0\x02\xba\x3b\x7b\xc6\xcd\x0f\x14\xd3\xf9\x62\x2a\x58\x3c\xec\x4c\xdf\x80\xdf\x4e\x36\x9f\x29\xa4\x75\xf1\x93\x93\xd6\xc1\x13\x6f\xff\x75\x7b\x71\x85\x41\x7e\x3c\xba\x1f\xbc\x7c\x69\xfd\xd2\xf2\xb7\x9e\x5a\x17\xdd\xa1\x4c\xa1\x70\xa9\x73\x77\xb9\x3d\xba\xc3\x50\x17\x2f\x70\x99\x74\xed\x54\x2b\xa9\x4e\xad\xe6\x4d\x1c\x48\x41\xb5\x94\x6a\x6f\x1c\x7a\xe3\x93\x67\xcf\x94\xed\x81\xbc\x5b\xb1\xcb\xba\x60\xd8\xee\x73\xf3\x15\x3b\xe5\x6d\xdf\xf3\x17\x3e\x04\xef\x5e\x05\x2f\x60\x9a\x57\xed\xb2\x9b\x77\x00\x97\xf9\x77\x5e\x63\x06\xa6\xe4\x2f\xbf\x3c\x7b\xa6\x94\x19\x80\xa9\x3f\x1a\x85\x59\x9e\x3d\x53\xb1\x87\x4a\x85\x0c\xb4\xf4\x37\x56\x69\xce\x85\x4c\x71\xa0\x8a\x10\x4c\xbf\xce\xe8\x7e\xe7\xd1\x18\x52\xac\xea\xda\xe5\x62\x06\xa8\x16\xcc\x6d\xf8\xf5\x77\xde\xec\x0c\x10\x68\x28\x93\x2f\xa4\x3a\xd7\xdf\x06\xdb\x7b\xd8\xb1\xeb\x0e\x3b\x40\x45\x6f\x67\x3c\x58\x3b\x42\x34\xd3\x95\x91\x12\xb4\x58\x3b\x68\x6f\xce\xa8\xd2\x6c\xa6\x54\xc9\x0e\x66\x52\x9d\xe7\x77\xdb\x5b\x0d\x2a\x42\xd0\x92\x03\x33\x70\xca\x23\x29\xaf\xd6\xf0\x0e\x5e\x9c\x3d\xe3\x94\x07\x32\xc5\xfc\xdf\x33\x15\x9a\xc2\xdb\x1b\xc1\x87\xb9\xb3\x67\x86\xf2\xe5\xb2\x53\x4e\x75\x9a\xab\xde\xf5\xe6\xd9\x33\x45\x7b\x38\x8d\x4d\x53\x5e\xe3\xad\x77\x08\x4b\xbf\x0b\x0b\xae\x3a\xc0\xca\xa1\xfc\x40\x19\xa7\xd7\x19\x7d\x1f\x3c\x3b\xf4\x9e\x2c\x74\xae\x6f\x98\xf5\xfd\x4e\xf9\x4a\x8a\x9b\xf9\x6f\x4e\x82\xb9\x15\xb3\x12\x30\x88\x74\xac\x91\xc8\x14\x81\x42\x54\x1d\x6c\xaf\x06\xb3\xe3\x7e\xfd\x96\x51\x9d\xc9\x0d\xe5\x8b\xe9\x52\xa6\x68\x17\xa4\x5e\x31\x54\x26\x9b\x75\xaa\xc5\x4a\xda\xb5\x2b\x95\x7c\x71\xc0\x4d\xc1\xca\x03\x2d\xdb\x1b\x5b\xc1\xf1\x36\x2c\x73\x72\x31\x21\xe3\xa6\xfb\x6d\x1b\x18\x74\xb9\x06\xb8\xf8\x6f\x0e\xbd\xa9\x79\xa0\x78\xb5\x50\x80\xf9\xff\xad\x6a\xbb\x15\x68\x35\x5b\x6f\x1d\xbf\x6d\xbf\x98\xf2\xf7\xae\x9d\x3d\x93\x77\x5d\x28\x4e\x79\xf3\xcd\xce\xea\x34\xa3\x81\x5d\x65\x33\xc5\x2c\xe0\xe5\x35\x17\xfc\x77\x75\x2c\xf8\xab\x6b\x67\xca\xd9\xc1\xef\x71\x78\xfc\x23\xe5\xcf\x2e\x7b\xbb\x53\xe7\xcf\x9f\x4f\x5c\x15\x64\x03\x61\x01\x19\x23\xe5\xbd\x7f\xea\x2d\x00\x9e\x59\x27\x07\x6b\xbd\x31\xe5\x1d\x35\x65\x55\xff\x9a\x2f\xba\x15\xe0\x69\xe8\x5c\xfe\x02\x0e\x6d\xb4\x1f\x3f\xd0\xec\x97\xaf\x14\x68\x1f\xfa\x2f\x57\xbd\x95\xf7\xed\xd5\x69\xae\xc7\x5e\x0e\x9a\x88\xc0\xdf\xaa\xc0\xd7\xe9\x5c\x1f\x6f\xef\xdf\x39\x03\xae\xe5\x8d\x8d\xb6\x37\xf6\xbc\x93\xe9\xe0\xc5\x8e\x3f\xbf\xef\xdf\xb9\x0f\x98\x05\xd7\x0e\xac\xaf\x47\x2e\xff\xef\x3f\xfe\xa3\x36\xfa\xad\xe3\x56\x06\xca\x36\xfc\xb0\xfc\xfa\x82\x05\xff\x43\x1f\xbf\xfa\xf1\x68\xba\x75\x3c\xee\xdf\xdb\x51\x05\x56\x6b\xbf\xd6\xae\xbf\xf4\x9a\x9b\xfe\x72\x83\x77\x4e\xeb\x60\xba\x53\x7b\x05\x22\x20\x58\x3c\x02\x64\x70\xcb\x34\x66\xfc\xb9\x1d\x7f\x7a\xf4\x1f\x35\x20\x2a\xe0\xc1\x28\xeb\x71\xd5\x22\x61\x0d\xf2\xba\xae\xe8\xac\x3e\xf4\x1e\x4e\xa1\xa4\x71\x2b\x61\x69\x6b\xff\xd0\x7f\xbe\x22\x64\x0c\x91\x17\x7a\xea\x1d\x14\xab\x51\x5b\x07\x06\xa1\x2d\xa8\xab\x61\x17\x06\x1b\x7b\x54\x81\xc2\x09\xfa\xf4\xd6\xaf\xf9\x0f\x97\xfd\x6b\x1b\xad\xe3\x53\x68\xcc\x34\x81\xa9\x03\x5b\x48\xc9\x1f\xbe\xf9\xe6\x4f\x5f\xfd\xda\xf2\x8e\xe6\xfd\x3b\x37\x5b\x87\x4f\xbd\xe6\xa4\x55\xad\xf4\xff\xb7\xf4\x80\x5d\xb4\xcb\x20\xc2\xb2\x79\xcb\xdb\xba\x1b\xbc\x5c\xef\x2c\x8d\xd3\xac\x5d\xb7\x90\x1e\xc2\xc5\xbd\x7c\x19\x28\xba\xb1\x0a\x0b\x8c\xb8\x56\x06\x43\x44\xfc\x85\x89\xd6\xe1\xbb\xf6\xfb\x1d\xef\xe4\x16\x34\xf8\x5b\x01\x57\x4d\x50\x52\xe4\x0e\x27\x05\x9b\xcd\x80\xa7\x31\xec\x72\x39\x0d\xb2\xa8\x32\x92\x96\xc6\xd4\x3f\x37\xb5\x12\x87\x69\xed\xcf\xb4\xaf\x1f\xc3\xba\x07\xcf\x0f\xa8\x8b\xb3\x67\xd4\x0c\x64\x8d\x26\x1a\x30\x5f\xd4\x08\xcb\x2f\xd5\x32\xa1\xa2\x60\x12\x72\xa5\xd0\x4f\x15\x2b\x94\xa1\x57\x20\xa1\xde\xd3\xb0\x5b\xbc\xda\x54\x67\xe5\xb4\x75\xb0\xdd\xae\x4d\x7b\xcd\xba\x37\xda\xf0\x9e\x3c\x43\x61\x23\x3d\xe0\x56\x61\x9c\x79\xa7\xf8\x8f\x3e\x04\x4b\xdb\xa4\x19\x74\x95\xea\xdd\x6f\xd4\x80\xe3\x48\x23\x75\x46\x1f\x21\xaf\x53\x93\xce\xf5\x63\x6f\x77\xa2\xbd\xf6\xc2\xdb\xba\xe7\xcf\x9d\x80\x1e\x6b\x3f\x7f\xc5\x9d\xd0\xfc\xca\x55\x50\x02\xc8\x37\xbc\x53\x82\xd7\x87\xc1\xdb\x3d\xc5\x3a\xaa\x52\x8d\x81\x4d\x99\x77\x4e\xc7\x3a\x8f\xea\xde\xd8\x7b\x64\xf2\xdd\x99\x18\x76\xde\xed\x69\xee\xcd\xa2\xad\x85\x2b\x73\x67\xa6\x75\xbc\xec\xbf\x9c\xec\x2c\xce\x32\xcf\x3b\x20\xe5\x8b\x30\xe8\x0a\xc9\x7c\xfe\x69\x0c\xc3\xa4\xf5\x8e\xf7\x80\x3e\xd6\xe5\xcb\xbf\xb7\xda\x4f\x26\xda\x8f\x8f\xbd\xe5\x5d\xef\x41\x8d\x7a\x18\xac\x54\x4a\xe9\x92\x53\xae\xa4\x7e\xff\xdd\x77\xdf\x5a\xb0\x6d\xbd\xe6\x63\xd0\x78\x46\x8d\x26\x0d\x2d\x4b\xb0\xf4\xb8\x3d\x7a\x8c\xe4\x0f\x41\x71\x89\xaa\xe5\x82\x40\x58\x7f\xf9\xf3\x1f\x75\x59\x2f\x64\x70\xb4\x0b\xf8\xcf\xe5\x08\x4e\x30\x67\xd8\xf9\xad\x83\x25\x56\x5c\xad\xfd\x2d\x18\xa9\x53\x7b\x1c\xbc\x9d\x15\x3e\x72\x4a\xa8\x74\x34\x23\x79\xcd\x1d\xd0\x83\x8a\x85\x48\xe9\x49\x4d\x67\xe9\xd0\xdb\x9a\x85\x7e\x80\x2b\xd9\xb8\x00\x28\x6f\xfb\x3e\x6c\x81\x21\x98\x19\xed\xfd\xcb\x5f\xc3\x9c\xd5\xbe\xa7\xe2\xfe\xb2\x33\x94\xe2\x46\xad\x93\x71\xb0\x4f\x8c\x72\x35\x17\xb3\x9a\xd1\x86\x4d\xdc\x19\x7d\xeb\x9d\x6c\x5a\x7f\xfe\x9f\xbf\xb1\xfe\xcb\xaf\x7e\x09\x96\xc4\xc6\xa2\x37\x81\x7b\x14\x30\x84\x9d\x0c\xb2\x0d\x26\x06\x9c\x0a\xe2\x38\x78\x33\x87\xb3\xa2\x19\x72\x7b\x10\x85\x22\x01\x3e\x43\x56\xff\xcc\xba\x48\x33\xf9\x1f\xf6\x0f\x19\xb0\x01\xec\xf3\x59\x67\xe8\x12\x31\xc0\xa3\x23\xd8\xe0\x44\x09\xac\x07\x96\x62\x99\xbf\x78\xd4\xa9\x8d\x2a\x5d\x2f\x35\x5a\x60\x99\xb5\xa1\xfa\x67\x2b\x25\x9d\x75\x8a\xfd\xf9\xf2\x10\xe8\xa2\x15\x18\x9e\x6d\x16\x06\x65\xcb\x80\xbb\x4b\x17\x9d\x4a\xbe\x7f\x44\xa0\x78\xfe\x9d\xda\xfd\x60\xe5\xa9\xdf\x9c\xed\x8c\xdf\x46\x05\x55\x06\x93\x26\x8d\xff\xe5\xb3\xb6\x2c\x41\xeb\xe8\x00\x29\xbf\xb8\x81\xac\x3c\xf6\xae\x75\xb8\xa0\x17\x82\x96\xcb\xe9\xef\x2f\xe4\x8b\x36\x0b\x30\x6f\xfe\x0e\xf6\xbd\xb4\x16\xbc\xbf\xaf\x04\x99\x09\x00\xbc\x58\x02\x3b\xcb\x5b\x86\xf1\x37\x82\xe3\x57\x0c\xd3\xda\x9f\x6a\x7d\x58\x09\xd6\x47\x51\x62\x9c\x3c\xb4\x7e\xf3\xd5\x37\x56\x30\xf3\x0a\x75\x28\xc9\x23\x58\x19\xde\xd2\x68\x6d\xbe\x9e\xf0\x0f\x66\x61\x1f\x03\x20\xc8\x1d\x20\xbd\x46\x90\x9b\xf0\x9e\xca\xbb\x99\xbe\x82\x9d\x66\x12\x95\xc5\xc6\x59\x1f\xf5\xb7\xd6\x78\xd7\xc2\xaa\x03\xcb\x28\xf3\x2e\x09\x5c\x50\xed\xd5\xc8\x9b\x5c\x01\xe9\x08\x98\xb1\x7a\x63\x03\xc0\xbb\xb3\x2a\x9c\xf2\xfe\xd0\x9b\x7c\xc4\x76\x27\xcb\x16\x54\xb4\x60\xaf\x89\xf9\x9a\xbe\x9a\xb7\x87\x85\x5a\x6c\xbd\xb6\x37\x36\xd1\x94\x58\x9c\xf5\x48\xda\x24\x80\x2b\xda\xb1\x3a\x7d\xff\x8a\xdb\xe1\x26\x26\xe4\x40\x91\x02\x42\xde\x93\x47\xd2\x13\x59\x00\x88\xdf\xec\xba\xd7\x98\x40\x82\x35\x37\x51\x9e\x2f\x4f\x79\xf5\x5d\x6e\x0b\x1c\x2b\xcc\x42\xc0\x84\x28\x1b\x57\x62\x29\x89\xcd\x4f\x26\x5a\x38\x43\x9a\x55\x6b\x7f\x1d\x14\x04\xec\x08\x96\x7f\x80\x06\x8e\xb5\xf4\x08\xed\x84\x3f\x7c\x95\xfa\xc2\xd2\x88\xa1\xcc\x85\x3d\x36\x35\x8f\xeb\x73\x72\x57\xf7\x63\x88\x40\x1e\x94\xf9\x2d\x36\x8e\x56\x2c\x04\xc2\x06\xb2\x82\x30\x2c\x65\x65\x13\xaa\xed\xa2\x3b\x51\x46\x31\x6f\x11\x03\x22\x62\x33\x73\x73\x36\xb7\x75\x5b\xb5\x17\xc5\xb4\x4a\x0f\x80\x04\x4f\x05\x2f\xa6\xbc\x99\xd7\x6c\x45\xa1\x79\xef\x56\xd2\x03\xf9\x4a\xba\x1f\xf7\x2b\xf4\x7a\x63\xd5\x7f\x3d\xdf\xde\xba\xe7\xd5\x9f\x5a\xbf\x80\x8a\x5f\x58\xde\xad\xe3\xd6\xe1\x13\x70\x4e\xce\x5d\x55\x8a\xfb\x57\xb8\x15\xd3\x99\xab\xd0\x06\xd9\x2e\x05\xaa\x10\xf8\x9b\x85\x07\x92\x4d\xdb\x46\xcb\x2f\x91\xc6\x64\x1e\x19\x56\x16\x98\x1a\xb8\x4b\xce\xb9\x20\xf5\xa6\xda\x47\x62\x5a\xf9\xcf\xa6\x70\x95\x1a\x75\x84\xa8\x4d\xf3\xe2\x58\x03\x4e\x5f\x35\x5f\xc8\x59\xdc\x1b\x11\x3b\x5f\xbc\x9a\x29\xe4\x73\x68\xf3\xc9\x32\xc7\xad\x2d\x6c\xbb\xf5\x18\x28\x24\x58\xab\x16\x3d\x75\x70\x72\x33\xad\x32\x71\xb6\x43\x19\x70\x4a\x12\x34\x6b\xe7\xc1\x43\x71\x9f\xe8\x27\x36\x75\xad\xcf\x2f\xc1\xec\x80\x5a\x99\xab\x36\x0b\xb7\x01\x45\x60\xd6\x4e\x9d\xb1\x19\x1c\xef\xf4\x01\x68\x72\xef\xc9\x9e\x3f\x7f\x37\x86\x69\x84\x8b\x23\x2c\xa5\xed\xfe\xee\x49\xf2\x2a\xbb\xd5\x6c\xd6\x76\x5d\x5c\x14\xef\x29\x6c\xf0\x51\x70\x3e\xbc\xda\x2d\xef\xa4\xde\x79\x71\xaf\x5d\xaf\x43\x39\x28\x2b\xff\xce\x84\x08\x7b\xd4\xeb\x40\xf2\xe0\xe9\x03\x6d\x14\xfa\x37\x1a\xde\xe9\x0b\xb4\x87\x0f\x61\x80\x23\x94\x54\x5b\x4f\x80\x35\xac\x5f\xff\xe5\x77\xd0\x21\x59\xee\xe8\x20\x83\xd9\x5e\x65\xab\xc8\x29\xe4\xb4\xd9\x0f\xfc\x0c\x1b\x33\xee\xf4\x29\x18\xc5\xb1\xee\x70\x1e\x08\x9a\xd6\xae\x35\xd2\xa9\x62\xff\x50\x49\x79\xf5\x09\xbf\xb9\x64\x3a\xda\xca\x84\x19\x1a\xa1\x15\x84\xa9\x91\x3b\xa5\x3c\x8e\xac\x53\x00\x36\x74\x50\xea\x5d\xb5\x05\xc2\x6b\x5e\x6f\xd7\x27\xbc\x99\x39\x30\x55\x0c\x50\xe8\x01\x9c\x32\xd5\x81\x76\xd7\x46\xd2\xec\x36\xaa\x0a\xe5\x3d\xc2\x34\xc5\xc5\xff\x5e\x7c\x1d\x71\xf5\x55\x7f\x00\x90\xa9\x56\xd0\x37\xca\x96\x6d\x70\x23\xd3\xe8\x15\x8a\x13\x27\x62\x87\x97\xcc\x50\x76\x83\x76\x09\x35\xe3\x90\x0b\xbe\x23\x08\xc1\x77\x77\x58\x84\xfd\x78\xb4\xc2\x5b\x53\x05\x03\x46\x75\xc8\xe0\xa7\x37\x7d\x37\x0a\xb6\x05\x35\x8d\x6a\x04\xd4\xc4\x60\x3b\x94\x00\xa9\xdd\x19\xb4\x8b\xdf\xbe\xc7\x5d\x66\x28\x02\xe8\x0f\x0c\xcb\xce\xdd\xe5\xce\x42\x03\x76\x19\x6c\xd1\xf6\xe8\x0e\xf2\x39\x85\x0a\x34\x03\x26\x28\x27\x44\x08\xc5\x4e\x77\xcf\xa6\x0a\x4f\x1c\x05\xa9\x32\x64\x0f\xf5\x61\x17\x76\xaa\xbd\x71\xaf\x75\xdc\x54\xe1\x12\x70\xbc\x07\x60\xdb\x85\x31\x83\xd3\x7b\x00\xa0\xb8\x07\x6b\xed\x1e\xb5\x40\x0e\x1d\x11\x81\xad\x3b\x9c\xea\x5c\xbb\xe1\xbf\xba\xcd\x0b\x01\x95\x9d\x75\x90\x4a\x93\x8c\x22\x21\x21\xb2\x95\xb5\x26\x59\x1a\xae\x0d\x4e\xb8\x50\x0c\x2d\xa6\xdd\x51\x71\xf0\x69\x2e\x6c\x7a\xc8\x0a\xac\xbd\x60\xd3\xa6\x3d\xf1\xda\xba\xd8\x77\xe9\x9c\x7b\xf1\x42\xdf\x25\x16\x72\xfe\xe6\x9a\x0f\xc6\x09\xf9\x09\xfe\x1c\x58\x1e\xef\xc8\x9a\x5c\x07\xeb\xc1\x3a\x97\xb3\xbc\xdd\xa6\xbf\x78\xcd\x1b\x7b\xe6\x6d\x4f\xfb\xf5\x59\xee\x9b\xd1\x62\x1b\x9b\x7d\x2b\xd1\xa0\x22\xdb\x89\x3a\xa0\x00\xb9\x57\xb5\xc9\x32\x59\xe2\xfd\x11\xa7\x5a\xd6\xec\xe7\x9f\xd6\xfc\x37\x87\x0c\x17\x32\x21\xcd\xac\x90\x1f\xca\x57\x92\x38\x02\xa0\x39\x3c\xc0\x73\xe2\x2e\xc4\xd2\x1a\xbd\x09\x0e\x47\xe7\xd1\x61\xf0\x61\x94\xa7\x17\x6c\x35\xbc\x93\x31\xeb\x57\x96\x57\x1f\xef\xcc\xde\x03\x7f\xdb\x1b\x9f\x69\x3f\x5f\x27\xfe\x1b\xcc\xb8\xe9\x6a\x51\x28\x6b\xe7\x98\x45\x40\x32\x2a\xa9\x84\x43\x81\x19\xc0\xc4\xd5\x14\xfc\x4f\x21\x09\xff\xb3\x85\xce\xf8\xf2\x26\x12\x98\x28\xc3\xd3\x05\x4c\xd0\x9c\x55\x4e\x2c\x00\x00\x65\x91\x1e\x06\xaa\xd8\x3b\x08\xa0\xe5\x5a\x7b\x7d\xb4\x33\x31\x83\x4b\x47\x03\x88\xea\x59\xd8\xf6\xef\x4c\x82\xe6\xc1\x40\x18\x2c\xcc\x74\xa3\x53\x9f\x17\x66\x04\xea\x08\xaa\x0c\x05\x62\xaf\xbd\x38\x6f\xf6\x61\x72\x80\x32\xf5\x49\x19\xba\xb4\x59\x2b\xa4\x0c\xdb\x47\xfb\xde\xd8\xd3\xb8\x79\x4d\x73\x91\x80\x5e\x7d\xb7\x75\x78\xd8\x3a\x9e\x67\x1b\x81\x37\x3b\x8e\x8d\x28\x54\xba\x31\xf8\xf1\xa8\xce\x48\xfc\x78\xd4\x90\xa5\xe1\x75\x25\x86\x87\x2a\xd0\x07\x0a\x27\xee\x42\xef\x0c\xae\x54\xfb\x46\xe9\x17\x0a\xc5\xc4\x56\x5e\xf3\xb7\x48\xfd\xf7\xaf\x70\xcd\x97\x57\x80\x96\xf0\x37\xa9\xa9\xba\xa6\x53\x38\x82\x0e\x2c\x44\x29\x66\x0c\xaa\x21\x2b\x8e\x93\x76\x07\xd1\xcf\x13\xc4\xe7\xdf\x7b\x07\xeb\xec\xa7\x7b\xbb\xb7\x30\x30\xfb\x5f\x61\xd9\x67\x94\x8e\x01\x8b\x3b\x83\xb1\xa1\x11\xdb\x15\x7b\x87\x37\xc6\xd9\x33\x45\x47\x22\x54\xaa\x00\x40\xd1\x37\x90\x09\x9c\x6e\xfb\x73\x1f\xa8\x0b\x10\x14\x43\xd0\xc3\x5f\x40\x8d\x7f\x13\x0b\x4e\xfe\x19\x04\x3a\x95\xb1\x34\x57\x8e\xfa\x6f\x8d\x98\x25\xaf\xdc\xd9\x33\xdf\xc6\x23\x97\x7f\xb6\x13\x02\x97\xe0\xdb\x7e\x47\x26\x20\x3a\xb9\x50\xd8\xb9\xb5\xab\x3a\xfd\x3d\xf8\xb1\xee\x5f\xc0\x3b\x65\x6f\x13\x9c\x53\x2b\xec\x7b\xa4\xe0\x64\x72\x58\xe9\xdf\xdc\x80\xa5\x55\x15\xdf\xd9\x99\x21\xc6\x6f\xf9\x5e\xe7\xfe\xa4\xea\xea\x4b\x50\x38\x54\x8c\xd2\x02\xb6\xa0\x2a\x46\x8b\xe1\xb7\xc9\x06\x60\x68\x8f\xdb\x14\x1d\xed\x8a\x8c\x64\x0a\xa5\xc1\x0c\xe9\x62\x81\x10\xa3\xf8\xda\x41\x7b\x6a\x0f\x7c\x18\x6f\xeb\xae\xbf\x33\xf3\x0f\x70\xe0\xee\x9d\xfa\x53\x8d\xd6\x11\xc6\xd5\xb0\xb0\xbe\xe0\x3f\x7f\x01\xbe\x12\x30\xe8\xe7\x69\x60\xce\x78\x6f\x39\xd8\x1a\x3f\xab\x47\x28\x89\xf6\x88\x3b\xf9\xf0\xa1\x88\xc2\xbf\xab\x19\x30\xe7\xe8\x3e\xc1\xda\x62\x7f\x14\x8d\xa6\x38\x94\xbf\x0c\x32\xa6\xc9\x50\x16\x3a\xbf\x14\xbb\x12\xff\xf5\x87\x64\xf8\x27\xcf\x12\xe1\x79\xbf\x6b\x22\x6a\x7f\x1a\x24\x19\x6c\x8e\xd8\x86\xa7\x16\x18\x7d\xf8\x08\x3c\x72\x02\xc3\x15\xaf\x80\xaa\x2a\x0a\x2c\xc8\x0a\x70\x6b\x3b\xd3\x3b\xed\x4d\xb4\xbc\x75\x4c\x1c\x14\x41\xd6\x29\x97\xed\x6c\x25\x8c\x8e\x03\xac\x37\xfd\x01\x2c\x4a\xea\x47\xef\x35\xc3\x66\x25\xf6\x04\x73\xc8\xe4\xd6\x68\xab\x30\x7a\x9f\xee\xb3\x6d\xf0\x64\x32\x57\xec\x62\xb8\x57\xb4\xaa\x6b\x1d\xcf\x41\xa1\x08\x01\xb0\xa5\xe3\x2d\xcc\x9d\x94\xd4\x08\xb4\x76\x57\x1b\x89\xa0\xf5\x6c\x53\x81\x6d\xd0\x3d\x90\xb1\x25\x92\x1a\xf1\x42\x51\x03\x98\x59\x2e\xb2\x9d\x0d\xf8\x53\x05\xef\x02\xaf\x5e\xb1\x47\x8c\x16\xc6\x1e\x4e\x80\xcf\x17\x0a\xf6\x00\xc6\x7f\x14\x72\x51\x8c\xa6\xc7\xbc\xd9\x17\xb0\xe0\xde\x6c\x1d\xdc\x29\x83\x81\x34\x99\xf5\x3a\x85\x2b\x6a\x5a\xcf\xbc\x48\xda\xc4\xe7\x39\x81\x7d\x0c\x90\xd8\xc4\x70\x67\x68\x70\xd3\xd8\xd0\xca\xc7\x5c\x0c\xe0\xbc\x8f\xf5\x04\x9c\x87\x6e\x4e\xcf\xae\xf0\x48\x81\x02\x18\xed\xda\x58\x88\x26\xf8\xce\xb3\xeb\x1f\xeb\x56\x2b\xa1\x64\xfc\x98\x11\xe3\xbd\x68\x8f\xcb\xfe\x01\xac\xcb\x14\xd0\x9d\x65\xbc\xf6\xc7\x91\xae\xe0\x36\x2d\x6f\x90\x9a\x28\x64\xc0\x83\x45\xbe\xa2\x39\x20\x78\xf0\xec\xb0\xb3\xf8\x84\x61\x31\x4e\x0b\xdb\xf9\x84\x02\x7a\xc7\x33\xa6\x1d\x8b\x38\x51\x94\x83\xab\xc4\xc0\xd3\x9e\xd6\xf8\x4c\xa7\xf6\x0a\x7d\x3d\xea\x0d\xec\x33\xf4\xf8\x09\x11\xd1\x4e\x6a\x92\xc2\x3a\x29\x70\xb0\xfc\xc9\x3d\x7f\xab\x41\xe6\x07\xba\x5c\xec\x4c\xf3\x46\x35\x27\x6e\x85\xbc\x45\xee\x22\x79\x51\x68\x50\x5f\xb5\xcb\xa0\xc4\x74\x8f\x1c\x71\xfd\x29\x9d\xd0\xc1\x05\xbb\x79\xa3\x13\xe0\x1e\x76\xae\x3d\xc6\x15\x57\x52\x46\x83\xe1\x9c\xa1\x8f\x89\x4d\x9c\xd8\xda\x01\x3a\xa0\x63\xef\x18\xcc\xaf\x3d\xa3\x89\xa1\x3f\xa3\x9d\xd5\x9b\x75\x0c\x72\xd0\xd8\x11\x37\x15\x36\x4c\x05\xb6\x00\xd2\x9c\x8f\xd7\x4c\x33\xb3\x75\x38\x13\xdc\x78\x87\xe3\xaf\xcc\xb6\x0e\x96\x98\x0d\x29\x70\x3c\xca\x1c\xc4\xe6\x86\x8a\x3b\xd7\xdb\xc7\x0d\x20\x32\x32\x7d\x7d\x13\x48\xed\x6d\x5f\x87\x79\x48\x34\x88\x8f\x7c\xb8\x9c\x3a\x37\x96\x80\x51\x40\x43\x13\x0f\xda\x62\x18\xb4\xeb\x93\x1a\x03\x96\x30\x88\x01\xad\x62\x6c\xf8\xce\xd2\x5a\x67\x61\x4a\x0f\xcf\xc0\x5a\x5a\xc5\xe6\x89\x51\x73\x02\xf8\xbf\x34\x49\xee\x3c\xc2\x67\x21\x06\x14\x66\x05\x0c\x78\x59\x58\xfd\xb7\x4e\x1e\xc0\x54\xd1\xb0\xbc\xbe\x01\x76\xb8\xec\x10\x12\x54\x62\xee\x8e\xd5\xb9\x6b\x68\x68\xc2\x44\xcd\x75\x10\xb3\x19\xf2\xa8\xfa\xca\x99\x22\xb8\xe5\xe1\xfe\x0b\x96\xb6\x31\x8a\x5c\x1f\xf7\xe7\x76\xf4\xce\x23\xd3\x0a\xd1\x41\xcf\x77\x30\x53\x1c\xb0\x31\x1a\x04\x5d\x80\xf7\xbe\x6b\x0d\x94\xf9\x07\x46\x8c\x2d\x70\xb5\xd8\x1c\x13\x8f\xe5\xd1\x16\xb9\xd6\xd2\x2a\x5b\x75\x2b\xce\x90\xd1\x18\x94\x63\xeb\xe0\x40\x45\x38\xb6\xb8\xa9\x6a\xf4\x1f\x0e\xe8\x77\x07\xa4\xff\xe4\x23\xd8\x04\x60\x2e\x1a\x27\x90\x79\x3c\xcb\x64\x89\x57\xbf\xdb\x5e\xdd\x10\xa7\x28\x5f\x81\x9d\x39\xf6\x12\x57\x58\xce\x44\xfb\x9d\x42\xc1\x19\xb6\xc1\xd9\x47\x5b\x7c\xe3\x10\xd6\x0a\x89\x9c\x41\xc9\x85\x6e\x75\x7b\xfb\x3e\x78\x28\x0a\x0e\xc3\x2f\x0c\x07\xd8\xe0\xb4\xd1\xa0\x3c\x4f\x22\x1c\xcd\xe0\xf2\x55\x0c\x9a\x29\x89\x68\xfd\xe2\x9c\xfb\x0b\x0b\x98\x02\x95\xc5\xe9\x83\x60\x7e\x11\x66\x4c\xac\x14\xb6\x2a\x65\x2a\x20\x25\x8b\xec\x34\x10\x26\x46\x07\x48\x60\x3a\xbc\xe4\x9e\xa2\xc1\x76\x3a\x8a\xe5\x03\x60\x20\x3b\x78\x6f\xfd\x79\x3c\x7b\x20\x82\xb5\x4e\x57\xfd\xd1\x1d\xe3\x80\x90\x09\xa7\x83\x2d\x2c\x51\x5c\x31\x0d\x0d\xd9\xa1\x82\x0c\xd1\x7c\x04\x8a\x23\xd0\xf1\x49\x21\x9f\x25\xbf\x58\x35\x65\xde\xe3\x28\x16\xed\x10\x55\xa1\x82\x29\x39\xbb\x60\x63\xa2\x81\xb1\x67\x41\xbe\xe5\xd5\x24\xad\x3f\x7c\x85\x33\x29\x55\xfb\xa0\xe7\xb4\x9e\x04\xad\x90\x9e\x04\x97\x72\xf0\xd6\x74\x74\x45\x7f\xef\x4e\xf8\xcb\xd7\xf1\x18\x8c\x5a\xa1\xf4\xdb\x5f\x47\xb9\x0f\x03\x2c\x1c\xf9\x37\x9f\xa2\x47\x48\x03\x23\xfd\x48\x6d\xf1\x01\x81\x77\x7b\x9a\xcf\x0b\x78\x49\xf0\x6c\x9c\x55\xde\xc4\x26\x4c\x37\x38\x79\xae\x6c\x69\x9d\x2d\x41\xb4\x55\xd9\x12\x05\x87\x49\x81\xc7\x73\xb0\x07\x10\x99\x19\x30\xd3\xab\xa5\x1c\x46\x7e\xd4\x54\xfc\xa5\x37\xa0\x4a\xd4\x54\xa2\x95\x66\x6c\x8e\x14\x74\xb8\x74\xdc\x0c\x05\xd4\x24\xbb\x83\xb2\x41\xba\xb3\x2a\xf8\x08\x50\xb9\x38\x31\x30\xa6\x99\x86\xd5\x80\xe2\xe1\xad\x1d\xc0\x44\xc1\x2b\x0e\x3e\x1c\x05\x07\xd3\x2c\x66\xbc\xbb\x37\x31\x28\x52\x5b\x64\xba\xf2\xd1\x18\x7a\xd4\xac\xf0\xeb\x13\x28\xc6\x58\xf6\x2e\x37\x60\x2b\x44\xcf\xc2\x30\x6a\x97\x2f\x56\x01\x3f\xa3\xcb\x58\x16\x81\x2a\x44\x0b\x81\xf4\x5c\x6c\xd7\xcf\xaf\xc0\xc6\xd4\x8b\xa0\x36\x7b\x12\xac\x3e\x05\x24\x6f\x1f\x25\x1a\xa5\x9f\xb4\x4e\xc6\xf9\x98\x03\xc3\xca\xbf\x13\xe9\x23\x27\x30\xa1\xc0\x71\x1c\x57\x02\x74\x3c\x2e\x47\x41\x59\xef\x2b\x28\x59\x2f\x81\xe0\x45\xe1\x3a\x15\xc7\xaf\x96\xd0\x5b\x03\x23\x47\x30\xa2\x7d\x9c\xce\x0f\x61\x4a\x0c\xc8\x3a\xef\xda\x6b\x7d\x7a\x1d\x5a\xfc\x47\x6f\xbd\xe5\x85\xa0\x31\x41\x2b\x5b\x74\x62\x93\x32\x02\xe9\xaf\x6e\x63\x50\x84\x42\x03\x31\x82\x60\x88\x96\x4c\x81\xd8\xdc\xd9\x66\x32\xd1\x8e\x71\x99\x89\x7e\x17\x97\x69\x06\xea\x21\x38\x9c\x82\x61\xc5\x71\x9c\x5b\x55\x21\x25\xc3\x7c\x04\x4e\xac\x89\x3b\xfc\x86\x71\x6b\xb4\x35\x22\xd7\xa3\x5d\x08\x68\xec\x05\x96\x75\x87\xc2\x18\xa7\xd4\x3c\xc1\xdd\x47\xc7\x54\x12\xae\x36\x06\xe7\x00\x99\xc8\x4b\xf2\x02\xdc\xc8\x21\xac\x72\xae\x25\x45\x47\x20\x24\x0b\x27\x01\x8e\x1d\x09\x43\x12\xe1\x01\xda\xfa\x68\xe7\xda\xb6\x21\x8f\xc6\x59\xfa\xb4\x0e\x6e\x9a\xe7\x91\x7c\xde\x08\x9a\xde\x88\xe6\x95\xca\xc0\x29\xe5\x91\x14\xf7\xa2\x7f\x4b\x74\xaf\xbd\x7d\xd2\xda\x3f\x50\x75\x2c\x49\xa5\x8a\xe5\x29\x1e\xf4\xe4\x88\x87\xb9\x94\x0d\x58\x61\xe1\x04\xec\x11\xda\x84\x34\x61\x8c\xda\x74\x24\x02\x8a\x21\x42\x89\x7a\x7a\x27\x63\x61\xf0\xcd\xec\x1f\x4f\xef\x30\x0c\x05\x72\x22\x16\xf4\x84\xb5\x31\x63\x9b\x89\x31\x50\x16\xd9\x66\xd8\xb3\x33\x7a\x33\xd8\x98\x92\xb3\x34\x85\x95\xe6\x63\x9e\x9f\x41\x72\x99\x37\x71\x85\xac\xb5\x2c\xe8\xc7\x34\x1d\xf6\x4c\x96\xfa\xda\x43\xb4\x20\x94\xfe\xc3\x30\x05\xae\x2f\xf2\xd3\xfe\x14\x6a\x6f\x53\xe6\x35\x6a\x1c\xb2\xeb\x32\xb9\x75\x0c\x12\x28\x01\x3c\x89\xc2\x71\x71\x3a\x98\x5b\x89\xd9\xdb\x72\xde\xa6\xac\x3e\xb6\x5c\x5d\x9d\xea\x71\xd1\xad\x94\x9d\xe2\xc0\x25\x8e\x56\x72\xee\x20\x48\xe4\xff\x7e\xf1\x82\x54\x58\x68\xb3\xaf\x3c\x0d\x96\xa7\x58\xfc\x5a\x17\x33\xd6\x60\xd9\xee\x4f\x7d\x76\xce\xfd\xec\x92\x05\x58\x80\xac\x80\x61\x81\x18\x06\x7e\x17\x2f\x64\xf8\xac\x7e\x7a\xc2\x9b\xc1\x30\x4d\xac\x19\x42\x92\xb9\xbc\xdf\x5e\x9f\xe2\x14\x30\xd5\x24\x58\xb8\xd5\x59\x7a\xec\xdf\xbc\xdd\x7e\xf6\x58\x2f\x08\xb2\x5c\x48\xba\x08\x55\xd1\x6d\x66\x0f\x38\x12\xf1\xc2\x62\x3a\xd2\x29\x56\x54\x0d\x46\xba\x3f\xe8\x65\x88\x2d\xaf\xd1\xa7\xb9\xba\x7c\x98\xc1\x3b\x81\x10\x30\xf6\x01\x5a\x82\x84\x0f\x59\x82\xe4\x08\x92\xeb\x0e\x62\xd8\x7f\xb9\xca\xb2\x81\x8c\x55\x90\xb8\xda\x18\x64\x11\x0b\x4e\x61\xfb\xf4\x96\x32\x09\x43\xee\x11\x5b\x88\xc5\x01\xaf\xbb\xb2\x8b\xc8\x90\x91\x13\x99\x9f\xc6\x2f\xa6\x49\xf5\x71\x86\xe1\x26\x26\xc3\x00\xf1\xd1\x1d\x08\x0f\x74\xaa\xc5\xbe\x7c\x11\x3c\x69\xa3\x5c\x15\x6a\x4a\x9a\x03\x9a\x80\x11\x81\x2f\x53\xcd\x50\x93\x74\xc5\xa1\x18\x0c\xbb\xbd\x64\x8f\xb0\xb4\x6a\x1d\x3e\x09\x1a\xd3\x2a\x63\x4a\x4e\xb6\x04\x98\x98\x8d\x57\x4d\x81\x51\x8d\xab\xe5\xa4\x29\x9d\xc1\xb2\x40\x07\x09\x24\x06\xb5\xd3\x8d\x40\x69\xf3\x50\x9c\x59\xf4\xe5\xb7\x7f\x20\x6e\xd3\xe3\x88\x29\xb3\xb4\x8d\x67\xab\xe0\xc6\x6f\xad\xd1\x81\x24\xaa\x46\xee\x80\xd2\xa1\x66\x4c\xbf\x8f\x9d\x2f\x94\x2b\xf3\x6f\x92\x32\x95\xb8\x5f\x62\x56\xee\x42\x31\xab\x9e\xa5\x39\xc3\x2e\x12\x70\x73\x22\xb6\xad\xd8\xd6\xa4\x96\x10\xc6\xd0\x55\x12\xa0\xe4\x15\xe5\x0c\xa3\xfa\xae\xa4\xe0\x6c\x37\xbc\x31\x42\x7d\x79\xd7\x5f\xf8\xa0\x93\x0f\x40\xb1\x0b\x6e\x98\x27\x71\xbd\xb3\x0a\x1c\x08\x2a\xa1\x06\x1c\x6d\xee\x05\x46\xd4\xab\x3f\x82\x45\x56\x88\x9a\x55\xa1\x1a\xed\x5a\x54\xde\x42\x1a\x4d\x94\x2f\x64\x16\x00\x1b\xeb\xc1\xb5\xa9\x27\xf6\x33\xd9\xfb\x22\x69\x65\x18\x7d\xcc\xc9\x8e\x2b\xeb\x77\xd9\x26\x02\xa2\x4e\x98\x78\x40\x5e\x8d\xe5\xeb\xfe\xee\x7e\xeb\xc3\x98\xbf\x3f\x86\x85\xa6\xd7\x4e\x86\x30\xeb\x86\xd6\xfe\x9c\xa5\x44\x23\x3a\x45\xcd\x1d\x7f\x14\xac\xbb\xe7\x5a\x2c\xb2\xe9\x20\x49\x11\x31\x8c\x24\xce\x19\xf1\x40\xa2\x20\x2a\x6f\x8b\x2a\x4d\xf4\xba\x00\x89\x09\x81\x2c\x02\x4a\xb6\xb7\x4c\xa0\xf6\x8c\x5b\x7e\xd2\xb6\x26\xd7\x0d\x1d\x55\x70\xdb\x38\x4a\xa5\xa3\x04\x46\x1c\x35\x76\x0c\x11\xc6\x57\xd5\xf9\x8a\xce\x28\x34\xe0\x38\x43\x15\x76\x42\xfb\xe8\x7a\xb0\xb2\xf5\x8f\xda\x28\xac\x1f\xae\xf7\xfb\x3d\xaf\x7e\x18\x23\x64\x30\xb3\x01\xf0\x60\x45\xb6\x0e\xa6\x43\xfd\xa2\x5c\xd4\xab\x79\x37\xdf\x97\x2f\x90\xc3\xdc\xdc\x41\xb5\x70\xb0\x2e\xa5\x58\xa8\x4d\xef\xe5\x97\x82\x00\xb8\x0b\xf7\x76\xa0\xf3\x52\xa6\x68\x65\x41\xfa\xba\xa9\xcf\xc0\x8a\xb5\x0b\x16\xfd\xfb\x39\xb8\xd3\xea\xaf\x4c\x2e\x5f\x05\xad\x13\x3c\x1b\xe5\x1c\x28\x18\x1c\x1a\x5d\x22\xb7\xf8\x8a\x04\x90\x22\xc9\xd5\x54\x4e\x59\x70\x5c\x4e\x29\x70\x54\xd8\x8d\x8f\xd1\x90\x0d\x64\xb1\x60\x69\x0e\xb0\x48\x61\xb4\x9a\x93\x81\x38\xf3\xa3\xd9\x6c\x9f\xee\x4a\x39\xa6\xb4\x4b\x39\x27\xb5\x1b\xe5\x3a\x75\xf0\xc5\x14\xfb\x0b\xd6\xf9\x81\x7c\x25\x3f\x50\x74\xca\xb6\xc5\x66\x3e\xa8\x9e\x7c\x16\xa4\x9f\x2d\xf1\x32\xcc\x3d\x6e\xee\xe8\xd2\xae\x1e\x4c\x28\xd5\x43\xbe\x98\xaf\x00\x21\x32\x39\x14\x4d\x9c\x97\xf1\xe7\xdf\x7e\xf9\xd5\xd7\xbf\x3d\x3f\x94\x93\x61\xbc\xfa\x03\xef\xd9\x94\x37\xbd\xa0\xf3\x1e\x38\xe5\xc0\x48\x6f\x57\x35\x39\xbb\x3f\x53\x2d\xa8\x60\x4e\xaa\x73\x78\x8f\xf6\x03\x86\x70\x54\x86\x3c\x98\xe6\x15\xbb\x7c\x15\x94\x1d\x27\x3b\x78\xb3\xd3\xfe\xd6\x53\xef\xd6\x86\xbf\x0c\x42\xa1\xce\xf6\xdb\x8f\x47\x8d\x1e\x21\x0f\x93\x07\xff\xd9\xa8\x47\x94\x8f\x3f\x1a\xf8\x28\xda\xe8\x70\x55\x2b\x30\x17\xb2\x93\xcc\xc0\x24\xce\x68\x80\xe5\x33\x1e\xc9\x71\x22\xbf\x4a\xae\x36\xab\x7e\x36\x07\xf7\x15\xaa\x76\x8c\x85\x99\x58\x9a\x7f\x55\xf7\xb4\x06\x72\x85\x40\xa5\x9a\x70\xd5\xf9\x6c\xc1\x29\x82\x38\xc9\xe5\xca\x28\x8d\xcd\x34\xd3\x10\x46\x85\x92\x31\xc2\x50\xe0\x04\x25\x64\x65\x8a\xdd\x72\x8e\x20\x67\x34\xa3\x81\xf0\xfc\x95\xce\x6e\xe6\x58\x1c\xa6\x6d\x1a\x47\x4b\x9c\xd0\x24\xba\x1e\xb7\x0c\x50\x2e\x71\x27\x51\x32\xa9\x6b\x17\xfa\x25\xe9\x4b\x36\x12\x1d\x76\xb0\x7c\xd2\xb2\x46\x84\x6d\x69\x24\x5d\xc8\x17\xaf\xc8\x24\x38\x08\x00\xe5\xc0\xe7\x57\x40\xe9\xa4\x11\x20\xa5\xb5\x9c\xd7\xd8\xf4\xea\x13\xc1\xee\x29\xb5\xcc\xc3\x7a\x73\x15\xeb\x1d\x6c\x86\x74\x91\x25\x81\x09\xe0\x79\xd7\xe8\x1d\x36\x67\x55\xfc\x73\x85\x53\x01\xd1\x76\xe5\xf0\x64\xea\xb3\x74\x1f\xec\xca\x2b\x9f\x99\x16\xf0\xfe\x36\xd8\xcc\xed\xcd\x97\xfe\xbd\x9b\x64\xc3\x8a\xb9\x34\xcc\x87\x5f\x14\x81\xe0\x08\xde\xd9\x33\x5c\xa6\x7e\x55\x31\x63\xaa\x2c\x20\x2a\xec\x47\x45\x61\x0c\x10\x6f\x7f\x10\x61\x88\x0d\x45\x86\xf8\xf7\x49\xd4\x88\x0c\xf9\x5b\x15\x09\x30\x50\xcd\xe3\x91\xfa\xe9\x8b\x4e\x6d\x45\x5d\x01\xe2\x39\x56\x06\xf3\xae\x44\x8f\x89\x02\xa2\x2a\xa3\xbb\x58\x5d\x54\x01\x2a\x0e\x81\x85\x06\xbb\xe3\xe4\x21\x67\xde\x61\x6c\x98\x76\xb7\x1c\x1d\x46\xae\xb0\x94\xaa\x78\x64\x8b\x81\x5a\x91\x03\x46\x2b\x39\x4d\xa6\x05\x95\x14\xc8\xb0\xe1\xd9\x33\x22\x1c\x94\x58\xa8\x94\x6d\x3b\xc5\xcc\xe3\x6f\x7c\x50\xd5\x69\x40\x25\x5d\xc9\xe0\x95\x13\x82\x43\x53\x77\x63\x31\xd8\x7b\xa2\x00\x6c\x55\xa3\xa2\xae\x04\xcc\x30\xaa\x28\xf1\xa6\x09\xed\x2b\x05\x89\x5b\xa1\x60\xbb\x15\x20\x17\xb8\xeb\x13\xd3\xe0\x0b\x06\x6b\xb7\x90\x73\x86\x86\xf2\x15\x80\x6a\xce\x82\x61\xeb\x6f\xbd\xf7\x9a\xaf\x50\x38\x17\xec\x8c\x8b\x39\x01\x94\x14\x08\xe6\x74\xeb\xb8\x0e\x8b\x85\x11\xb6\x72\x66\x38\xe5\xdd\x5c\x01\x49\xa9\x44\x2b\x15\xc3\x12\xd0\x2d\x15\x2e\x54\x1d\x51\x15\xa5\xa6\x62\x33\xf6\xb2\x12\x1a\x03\x87\x0e\x65\x88\xf3\x59\xf3\x2b\xce\xd7\xf8\x9d\xd7\x78\x82\xdb\x41\xc9\x13\x8c\x70\x08\x10\x5e\x9d\x09\xde\xac\x45\x67\xa3\x40\xfa\xd1\xbc\x47\x5f\xb9\x71\x12\x16\xa2\xcc\xc3\xb3\xe3\xe3\x65\x32\x16\x54\xf1\x10\xc8\x12\x0c\x38\x79\xd7\x16\x89\x93\x55\x79\x8e\x12\x50\xb8\xfb\xbb\x4f\x41\x94\x87\x55\x9c\x7d\x07\x96\x5e\xbb\x3e\x89\x62\x25\x86\x20\xf0\x9f\xad\x02\x5e\x46\xb5\x5a\x3c\xac\x57\x4a\x86\x96\xd1\xac\x48\xd3\x5a\xaa\x9b\x50\xb2\xa0\xf1\xea\x74\xa9\x90\xc9\xda\x92\x04\x28\xfc\x41\xa2\x9f\x2e\x12\x09\xb4\x53\xa2\x13\xde\xbe\x14\x86\x10\x6a\x53\x9d\x05\xf0\x4d\xef\x50\xe0\x5d\x00\x60\x47\x81\x46\x0d\x21\x30\x49\x85\xb2\xc9\x34\x04\xac\x18\xa6\xa4\x31\x4a\x3c\x4e\xb0\xf3\x1c\x34\x6f\x22\x04\x28\x24\x94\x81\x14\xa1\xba\xb1\xca\x80\xb1\x19\x08\xb8\x66\xd0\x90\x3f\x93\xfb\x05\x35\x02\xe6\x01\x6c\x26\xf0\xbd\x41\x74\x60\x00\x39\x11\x8e\xb5\x15\xe9\xa9\xde\x00\xe7\x31\xa3\x53\xf6\x0f\x9b\xe2\x31\xf2\x47\x60\x79\x64\xcc\xb3\xc1\x54\x30\x41\x20\x78\xbb\xce\x56\x76\x62\x1b\x16\x3f\xb9\x74\xdf\x08\x35\x09\xe6\xf6\xd0\x6d\x51\xd2\x22\xb1\xc9\x10\xb8\xf4\x79\xa7\x88\xe9\xd5\x34\x4a\x73\xd6\x6b\x4e\xc6\x86\xc0\x85\xa4\x5e\xb1\xc7\x30\xf6\x70\xe1\xdc\x5f\x7f\xf9\x3d\x08\x6d\xfa\x8f\x84\x35\xb8\xee\xe7\xfe\xfa\xc5\xf7\x2e\x0f\xa9\xdb\x97\xca\xf6\xd5\xbc\x53\x75\xd1\x97\x07\xb9\x47\xb7\x30\x35\x47\xfd\x80\xe1\xa9\xa9\x58\x31\x2f\xa7\x5c\xec\x31\xd8\x2b\x06\x90\x75\x0a\x8e\xe2\xbf\xce\x6a\xb3\xdd\x78\xd5\x05\x80\x2e\x04\x73\x57\x8c\x13\x18\x80\x78\x54\x96\xc4\x64\x53\x14\xae\xd1\xb5\x61\x78\x3b\x97\x07\xe6\x7a\xbf\xd1\x3e\xda\x89\xd5\x44\x8e\x4a\x62\x75\x92\xcf\x24\xe1\xcf\x24\x3c\xa8\x35\x1e\x47\x88\xff\xf2\x31\x18\x31\x7d\xd5\x39\xa0\xd0\x87\xe2\xfd\x72\xbe\x6d\xf0\x16\xde\x77\x59\xda\x67\xf7\xaf\xbd\x31\x09\x3e\x19\x58\x61\x7c\x4c\xcf\xbe\x0d\xb9\x34\xc9\xe3\xe8\x98\x8e\x28\x80\xd0\xd3\xfc\xff\xe8\x2c\x53\x5f\x60\x64\x6b\x3b\x76\xaf\xf1\x3c\xdf\xab\x71\x53\xd1\x3b\x59\xba\xda\xc8\xf4\x75\x74\xd0\x82\x72\x7c\xf9\x10\x4f\xc1\x0d\x3a\xce\x15\x1d\x01\xfc\x37\xbb\xcf\xea\x34\x9e\x78\x5b\xb3\x06\x04\xd8\xf0\x11\x20\xba\x6a\x15\x07\xca\xd9\xa5\x82\x33\x62\x86\x13\xf9\xd2\x87\x8e\x1c\x2a\xc0\xbe\x8c\x9b\xcf\x1a\x97\x36\x93\xb1\xcf\x61\x9c\xbb\x9c\xfe\x3b\xca\x10\x6f\x66\xaf\x73\x7f\x53\x9c\x44\x3c\x45\xd2\x50\x09\xd7\x74\x75\x9d\x84\xf9\xf5\x40\x2c\xae\x7b\xd0\x52\xe2\xea\x68\x16\x74\xb9\x97\xd1\x33\xa4\x5e\x4d\x4c\x87\x89\xdb\xfd\x4b\xce\x93\xd0\x9b\x66\x27\x2c\xe1\x3c\x49\xe3\x52\x01\xf3\xc2\xed\x47\xbf\x89\x4e\xce\xa5\x05\x47\x23\x5e\x4e\x26\x00\xc6\x82\x4f\x78\x61\x84\x09\x43\xed\xdb\x13\xaf\x31\x5d\x94\xed\xda\xe8\x0d\x8e\x30\x7c\x54\x5f\x30\x4e\xff\xf5\x00\x74\xd3\x97\x12\x64\x30\xd7\xc0\x65\x3f\x08\x5d\x56\xc3\x12\xd3\x0e\xbd\x98\x5b\x64\x99\x83\x4f\x85\xe7\x75\xa1\x09\x6d\x70\x96\xb1\xf3\xb5\x3f\xd2\x05\x60\x6e\x5b\x35\x0e\xc5\x71\x28\x22\xd2\xa9\x8d\xc3\xdc\xe4\xea\xe6\x7e\xc3\xaf\x3d\xc0\xab\x87\x27\xd3\x60\xfa\x25\x93\x92\x2e\x50\xc1\xf6\x4c\x5d\x2c\x5d\xfa\xdc\xd2\xe1\x48\x26\x10\xa8\x09\x39\xee\x94\x7b\x0c\x94\xbe\x00\x44\x54\x57\x02\xbd\x27\x7b\xde\xcd\x43\xbd\x02\x1c\x53\xbb\x78\xa1\x74\xa9\x47\x6f\x74\x9b\x60\x19\x23\x77\x8a\x36\x3a\xe5\x1e\x83\x5d\x8d\x09\x98\x02\xf3\x0d\x38\x8d\xfe\xf4\x68\x2c\x5a\x87\x3d\xf7\x66\x7d\x23\xbc\x15\x32\x7f\xd7\xe9\x56\x37\x05\x24\xfc\x02\x50\x61\x04\x46\x43\x0d\x65\xae\x80\x6d\xa1\xf8\x4e\xf2\xb1\x0d\xee\x4b\xea\x90\xa3\x81\xca\x99\xd5\xd4\x51\xe9\x1e\xdd\xa8\x44\x63\x56\xd1\x58\x55\x7c\x14\x0c\x72\x87\x32\x0f\x93\x28\x25\xdc\x4d\x8c\x97\x20\xf8\xe2\x0d\x42\x79\x4c\x98\x98\xc7\x45\xba\x79\x14\xbd\xb2\x3d\xe4\xd0\xa5\x95\x84\x4e\xcc\x54\x2c\xdd\x5c\x67\xc7\xe1\xa9\xfb\xd2\x43\x5e\xbf\x68\x9f\x94\xd1\x95\xa7\x34\x9d\x34\xa7\xfb\x27\x64\x75\x81\x82\x91\xe4\x17\x95\xa4\xe3\x2d\x3d\xe2\x6b\x27\xe8\x9c\x12\xe6\xc0\x4c\x3d\xd0\xc6\x89\x0f\xdb\x7d\x28\xd3\xe5\xa8\x2b\x59\xee\x93\xd0\xe7\x6d\x15\xd6\x73\xe4\x01\x79\x97\xee\x66\x62\x7a\x3e\x85\xa4\xc1\xf6\xc0\x50\xfd\xdc\x0a\x9e\xa2\x6c\xdf\x6f\x1d\x4c\xa1\xef\xb0\x78\x0d\xa3\xce\x54\x42\x79\xbc\x7c\x10\x66\x7d\xfb\xa7\xcb\xdf\x59\x3a\xbd\x80\x7d\x89\x04\xc7\xd5\x38\x84\xf9\x37\xc6\xd7\xc5\xf8\x8e\xbf\x39\xc7\xe7\x2f\x7c\x6b\x70\xe9\x8d\xf7\xe4\x3e\xc7\x43\xa3\x5b\x59\xe9\x2d\xb9\xed\xae\xb5\x16\x52\x0f\x0c\x2d\x7e\xc3\xe2\x65\x1b\x03\x5c\xb3\xad\x93\x25\x5c\x28\x75\xcf\x8f\x8f\x2b\x30\xad\x95\x26\x87\xac\x4a\x17\xb3\x50\xfe\x32\x19\xc8\x5d\x4b\x1c\x8f\x8c\x18\x91\x46\xb4\xd1\x65\xd4\xe5\x4d\x3e\xbc\xe7\x0d\xad\xc3\xd5\xfe\xc6\xe3\xd6\xc9\x94\x3a\x04\xc7\xdb\xb3\x7c\xf6\x13\x66\xee\x5f\x7f\x8d\xa7\x5d\x2c\xfe\x56\x66\xd1\x86\xa2\x0e\xa5\x1f\x72\x3e\x82\xe7\x07\xc1\xe2\x31\xd2\x06\xe4\xe3\xcc\x6b\x90\x16\xc9\xa8\x91\x72\x93\x19\x88\xc5\xd7\x05\xa3\x0e\xa2\x04\x6d\xea\xb3\x5b\xb8\x08\xb4\x3a\xf6\x27\xd8\x2e\xb5\x2a\x1b\x84\xba\x55\x1b\xc3\x60\xa5\x68\x6c\x3d\x99\x43\x45\x53\x51\xbe\x1e\xd2\xac\x76\xbf\x33\x7a\xd3\xba\x88\x39\xf9\x97\x90\x8d\x2e\x5e\xa0\x3f\x2d\xbe\x8a\x81\xba\x7a\xe3\x5a\x67\x61\x8f\xf9\x8f\xb9\x42\xdf\x98\xf0\x66\x6f\x19\xbc\xa8\x13\x8f\xb5\x1a\xd4\x77\xc5\x40\x19\xa1\x5f\x47\x17\xe5\x38\x47\x06\x2c\x0c\xef\xa8\xf9\xe3\x51\xfd\x7f\x5d\xfe\xd3\x37\xf4\x10\x02\xa3\xf0\xc3\xe7\xc3\xc3\xc3\x9f\x63\xec\xee\xf3\x6a\xb9\x60\x17\xb1\x30\x27\x38\x71\x8a\xb7\x9c\x49\x02\x4e\x3f\x95\xc3\xe9\x18\x12\x39\xfc\xbc\x41\x92\x12\x67\xbe\xf3\xad\xed\x48\xea\xbb\x29\x2d\x71\xe1\xcc\xa7\x13\x38\x30\x68\x5a\x4c\x36\x38\x31\xea\x90\xb1\x6b\x6d\xed\xab\xb6\x0e\xe3\xbf\x98\x12\x45\x81\xa7\x75\xd3\xfe\xf2\x52\xfb\xd9\x3e\x50\xd2\x10\x15\x78\x3a\x45\x64\xa6\xac\xeb\x58\x27\x14\x6c\x71\x8a\x85\x11\xba\xc3\x4a\x08\x0b\xc9\xb0\x46\xad\x1a\xb7\x8f\xf2\x2a\xdf\xcf\x49\x49\xae\x2b\x25\x70\x74\xd5\xea\xa7\x05\xe6\xdf\x99\xf2\x46\x24\xd0\xe2\x35\xc9\xef\xe4\xe4\x27\xc2\x1b\xa4\xa3\x81\x7a\x6c\xc4\x5c\xae\x17\x8f\x76\x1d\xaf\xc6\xf7\x81\x16\xa4\xb4\x0f\x92\x05\xa9\x80\xf6\x1a\xa2\xa7\x26\x16\xc3\x46\x0d\xc1\xfb\x25\x79\x88\xb2\x9d\xe5\xa5\x2b\xe4\x31\x31\x16\x3d\x60\x3e\xb5\x25\xca\xb7\x37\xee\xf1\xb3\x3a\xa6\x68\x17\xa7\x9a\x7a\x52\x21\xe0\x08\x49\xdc\x42\x26\x7b\x25\x1d\x6e\x42\xfd\x8e\x83\xd8\x38\x7c\xbc\x1d\x39\x2b\xbf\x8c\x4d\x48\x38\x77\x96\xc6\x61\x4a\x51\x3a\x73\x87\x7c\x1a\xa7\xce\xe1\x62\x95\xb1\xf7\x11\x62\xb5\x68\x73\xe3\x43\x30\x9d\x47\x87\x9d\xd1\x3b\x74\xbe\x96\xef\xef\x3f\xdf\x57\x76\x86\x5d\x3c\x90\xae\x96\xb3\x60\x25\xd4\x9a\xed\xf5\x63\x0e\x2d\x09\x40\x29\x53\x46\x89\x16\xd4\xdf\x05\x3b\xb5\xce\xe1\x43\x29\xe6\x78\x8e\xa4\xdb\xa8\x28\x0e\xd5\xc0\x7a\x65\xe2\xf7\x76\x29\x8e\x89\x76\x18\xa8\x60\xda\x5c\x02\xeb\x0e\x3a\xc3\x69\xfc\x2b\xed\x56\x32\x15\x37\x25\x62\x9d\x04\x7a\xf0\x76\xaf\xbd\x51\x57\x80\x58\x2d\x8a\x61\x6c\x0f\x1f\xad\x50\x87\x4d\x96\xb8\xd0\xfc\x20\x07\xa8\x7b\x60\x89\xb9\x0f\xc6\xf9\xdd\xb4\x37\x3d\xe6\x4f\xbd\xd4\x0d\x00\xde\x7f\xb9\xea\x37\x6f\x7b\x63\x4f\xc3\xd3\x29\xef\xf6\x74\x0c\x82\xcf\x3c\x35\x84\xa2\x17\x50\x58\x3f\xce\x22\x65\x14\xd9\xe3\xa4\x3c\x4e\xa0\x90\xa0\x9e\x8e\x20\x9e\xef\x11\x49\x54\xd5\x1c\x94\xa5\xbf\x53\x5c\x87\xb6\x93\x3c\x93\xa4\x80\x72\xe5\x4c\x7f\x25\xd5\x9e\x69\x04\x1b\xa7\x61\x69\xa9\x6c\xab\x96\x9d\x47\xb3\xdc\x38\xde\x12\x88\x87\xab\x10\x3c\x7f\x4e\x87\xf9\xaa\x38\x12\x30\x50\x85\x99\x41\x3b\x93\xc3\x77\x07\x30\x03\xd9\x40\xb6\xf5\x61\x0a\x33\x79\xdf\xbf\x32\x69\x7f\x2e\x17\x12\x30\x16\x92\xc4\xfc\x5c\xbc\xd6\x22\x51\x5f\x8d\x0a\xf1\x19\x5f\x0b\xf3\x0f\x66\x15\xa7\xa9\xea\x4a\x66\x40\x5e\x45\x89\x44\x56\xc2\x6a\xd2\x00\x66\xaa\x70\xb4\xad\x7a\xb3\x82\xcf\xbf\xea\x0b\x66\x40\x1b\xef\x96\x91\xbb\x84\xea\x49\x82\x18\xb1\xf5\x51\x37\xeb\x79\x09\x36\x16\x29\xc8\xa2\x60\x94\x8a\x18\x06\xed\x9d\x1e\xca\xa9\xe3\xb3\xc8\x1e\xfe\x3a\x53\xbe\x92\x03\xdb\x9f\x6d\x2c\x22\xad\xca\x46\x51\xdd\x0c\x97\xc9\xf1\xa6\xd2\x38\xf1\x29\x1a\x65\x0f\xa7\x30\x4d\x1e\x6c\x9f\x47\xb3\xb0\x19\xbb\x11\x30\x03\x9c\xa8\x6a\x28\x53\x3f\x3e\x0c\x2a\x3c\xba\xb1\xbe\xf5\x18\x3d\xc4\xc9\x47\xed\xa3\x86\x3c\xa5\x14\x67\x1c\xde\x56\xe0\x48\xeb\xb3\x9d\x9e\x9c\x64\x34\x52\x87\x5c\xca\xba\xf0\x6e\x4d\x82\x49\x1a\xde\x9c\x38\x3c\x68\x6f\xed\x92\x16\x11\x0e\xf2\x27\xe7\xf1\x46\xc1\xdc\x4a\x30\xb7\x16\xdc\xde\xf5\xd6\xae\x1b\xf7\x5c\xf4\x00\x98\xaf\xeb\x0e\xa6\x7a\x30\x32\xde\x73\xe7\x7d\x80\x57\x0a\x80\x49\x63\xbb\x81\xcc\x47\xbd\x93\x88\xba\xc2\xbe\x92\x27\x1b\x67\xb4\x74\xa6\x80\xa7\xa1\x23\x92\x84\x6e\x7a\xd5\xf2\xcc\xc0\xd2\x3e\x1e\x59\x72\x7c\x97\x9e\x1c\xd0\x78\xa9\x64\x69\x70\x37\xbe\x37\xae\x1c\xa9\x3b\xea\xc6\x75\x23\xb3\x36\x76\xc8\xce\x60\x9d\xeb\xc7\x72\x49\xb5\x36\x15\xec\xae\x06\x2b\x5b\xe8\x62\xef\xdc\xf1\x6f\x34\xf9\x84\x9d\x1f\xf8\xa1\x7b\x6b\x72\x61\x80\x53\xd7\x94\x2e\x57\x37\x0f\xe4\x2a\xb4\x91\xa1\xcc\xae\x22\x3b\x0c\x20\xe4\xcc\x7b\xa5\x9c\x58\xcb\xe7\x42\xe1\x13\x63\x2a\xc1\x9a\x4e\x89\x58\xfd\xd2\x73\x5f\xb0\xfd\x45\xdd\x62\x16\x54\xc9\x76\x4a\xb8\x55\x0c\x57\x8a\xae\xaa\xe0\x8b\x49\xae\x33\x64\x53\x00\xfb\x5a\x0d\x43\x06\x87\x0b\xe0\xed\x73\x2a\x3d\xdf\xb2\x72\x15\x71\xe8\x2a\x13\x26\x3c\x0f\xd3\xcd\x6c\xf4\xd8\xf0\xf5\xb0\x19\xd5\x1f\x57\xc4\x52\xef\xa7\x12\x4e\xb4\xb0\xd7\xe8\xd3\x6b\xd2\x35\x52\x8a\x15\x30\x23\x2a\x47\x69\xc9\xd7\xa9\xa4\x9c\xb5\x0c\x95\x77\xc1\x6b\xb6\x8f\xe6\x1e\x61\xa8\x89\xcf\x97\x4f\xc6\x25\x35\x73\xee\x03\x0c\xe9\x8d\x6d\x74\x5e\x08\x79\xc2\x4b\x66\x38\x40\x78\x22\x59\xf3\x9a\x4f\xdb\xcf\xf7\x78\x28\x0c\x67\xc1\x0c\x79\x70\xb0\xe2\x46\xef\xb7\x0e\x6b\x9d\x83\x23\x75\xd2\x4d\xed\xf1\x9c\x28\xef\xba\x3a\xde\xaa\x4f\xfc\x11\x0d\x6e\xda\xa8\xf1\x43\x4b\x28\xeb\x38\xf8\xb4\xd5\x08\xde\xdc\x27\x6b\x33\xf9\x6e\x81\xc1\xae\xff\xf4\xf5\x02\xa3\x8f\x4f\x1c\xb4\xeb\xd0\x22\xb7\xf9\xb9\x01\xda\x30\xa7\x5e\xc6\x1c\xdb\x88\xda\x3c\xc9\xef\x10\xea\xea\x1e\x29\xf6\x9f\x08\x80\xf6\xc0\x55\xa2\x99\xc0\x6a\x26\x46\x3f\x21\xfe\x29\x2d\x4c\x06\xfd\xd7\x86\x3f\x85\xe9\x3f\x16\xfe\x8c\xce\x34\xcc\xf0\x33\xa6\xfa\x29\x23\x3b\x65\x5e\x29\xea\x36\xc1\x93\xf2\xb7\x7a\xc1\x7e\x3a\x91\x4b\xcf\x0a\x3d\xa8\x9f\x9d\xc8\xd5\x23\x3a\x96\x98\xd1\xd5\x0b\x47\x14\x29\x62\x27\xf0\x92\x45\xd2\xba\x92\xa0\x55\x6e\x97\xc0\xff\x93\xb9\x5d\x49\xb1\x25\x4c\xcb\xa0\x8b\xf0\x12\xb7\xba\x7f\xc3\x70\x71\x98\x31\xe4\x7d\xb9\xfa\x6e\x78\xa5\x6c\x7f\x0a\x01\x15\xb5\xe4\x48\x86\x84\xaa\xa6\x96\x4a\x76\x66\x99\xcc\x6a\x39\xab\x2e\x38\x89\x74\x8e\x56\xea\xf4\x23\xe0\x99\x6b\x07\x9c\x82\x65\xc0\x94\xf3\x57\xf1\xcc\x98\xcb\xbb\x7a\xe0\xda\x68\x17\x3c\x58\x08\xc4\x21\x55\x1d\x53\x0f\x2b\x24\xd4\xe7\x2f\x6e\x83\xe8\x8d\x77\x0d\x0b\x9d\xb5\x31\xfb\xe8\xfe\x5e\xfb\x6e\xb3\x7d\xf0\xa2\x75\x78\x1c\xd6\x72\x90\x25\x65\xde\xbd\x0c\x2b\xc1\x52\xb8\x8a\x2f\xab\xe1\xb5\x3d\xfd\x84\x8b\xd4\x89\xa6\xd3\xee\x3e\xd9\x60\x78\x3b\x8e\x54\x1e\x3e\x1c\x45\x0d\xd0\x04\x0e\xdf\x77\xa2\xbd\x4d\x22\x38\xd6\x0d\x3e\x1e\xc2\xc9\x9b\xdc\x9e\xee\xc9\xa1\xa2\x3c\x8f\x37\xd1\xe4\x1a\x9a\x52\x69\x5c\x61\x22\x17\xad\x41\x7b\x46\xb2\x6e\x53\xed\xed\x1a\x86\xf9\x48\x03\x24\xd4\x6b\x7b\xd9\xd0\x3a\xc8\x35\x14\xb3\x96\x34\x85\xdb\xd3\x92\x4f\x03\x92\x72\xef\x65\x78\xff\xd0\xc8\x76\xa5\x6e\xc9\xae\x55\xe3\x7a\x3b\x2f\xf0\xe2\x5c\x64\x5c\x13\xe0\x27\x0c\xfc\x0f\x70\xbd\x39\xc7\xe7\xb6\x64\x98\x7c\x0a\x03\x7e\xcb\x48\x30\x90\x5b\x64\x11\x0c\x4c\x80\x9f\x83\x01\xbe\x15\xc0\x61\x23\x40\x85\x1f\x2c\xa3\xf7\xdd\x4c\xe3\x07\x33\x91\xa8\x93\x24\xcc\x54\x3e\x4f\xa8\x9f\x23\x89\x3d\x0c\x14\x1e\xeb\x11\x88\x52\x33\x5c\x49\xcc\xef\x76\x69\xfe\xf0\x1a\xb1\x4c\x60\xe6\xe3\xdb\xda\x62\xab\xc0\x3c\x02\x21\xf1\x09\x42\x69\x46\x69\xd2\xf7\xa6\x87\x17\x3b\xc2\x8a\xca\x07\x46\x4d\xdb\x6d\x3c\x33\xd9\x44\x5c\xd7\xe3\x20\x31\x61\x82\x2a\xa7\x98\x0c\x39\x33\xd3\x37\xc2\xdb\x18\x5a\x21\x13\x48\xed\x79\x5e\x8d\x84\x91\x8d\xfe\x54\x12\x2e\x93\x28\x22\xad\xbb\x61\x8d\x93\xb0\xe4\x44\x62\x52\xa6\x7a\x21\x4d\x2d\xf4\x71\x01\x6e\x22\x89\x39\xa3\x68\xf1\x5f\xe7\xb3\x2e\x8c\xf3\xc7\x6f\xf7\xc6\x33\xca\xbb\x10\xd5\x27\x2e\x14\xc3\x8b\x4c\x2e\xd4\xd4\xc6\x8e\xef\x32\x1a\x35\x2f\x72\x32\x3b\xe0\x10\xdd\x5f\x9a\x07\x58\x88\x98\x9e\xbe\xf0\x4d\x6c\x4a\x60\x0d\xf3\x55\xf6\x98\xe4\xc0\xf7\x7b\x9a\x9b\xd0\x8b\x71\x3f\xc9\x14\x09\xff\x3a\xcc\xcc\x20\x0e\x8b\xa0\x48\xfa\x71\x0f\x89\xf1\x89\xf1\xd1\x42\xdf\xbe\x6f\x0e\xcb\x9b\xe2\x27\x11\x84\x31\xec\x96\x24\xfc\xdc\xad\x16\x26\x74\x4d\x9b\x02\x83\xea\xd8\xc9\xc0\x32\xea\xff\xf0\x42\x8b\x0b\x14\xdb\x15\xc6\x33\xc9\xe6\xce\x88\x42\xcb\xc1\x02\x1d\x2d\xb3\xe2\xeb\xee\xad\x08\xee\x1b\x3a\xc4\x18\x6e\x50\xf7\xee\xbd\x7b\x77\xdb\xcf\xd7\xa5\x5f\x43\xda\x71\x6b\xe3\xb1\x04\x75\x1b\xdc\x48\x15\x56\x0f\xed\x10\xc1\xbf\xef\xfd\xd0\x39\x9e\xe0\xb9\x72\xad\x54\x25\xf0\x99\xcf\x6f\x2b\xc3\x54\xd5\x25\xdc\xca\x56\x55\x98\xd1\x86\x09\x44\xca\xd0\x37\xee\xb2\x2b\x10\x7e\x31\x2f\xf2\x54\x9e\xaa\x52\x27\xd8\xfc\x02\x9f\xdf\x9c\x0d\x9e\x1c\xa8\xba\x21\xa7\x88\x43\x86\x4f\xc4\xc2\x1c\xd4\x04\x30\x82\x63\xe6\x12\xc5\x93\x88\x8c\xa9\x53\x4c\x13\x68\x0c\x76\x95\xf4\x44\x01\x4f\x1d\x1f\xd5\x70\x4e\xc9\x2e\x47\xee\x46\xeb\x17\x22\x22\xbd\x8d\xc0\x72\x0d\x51\x1c\xb5\xaa\xf0\xc6\xe7\x6b\xd7\x17\x82\xa9\x9a\x3f\x36\x95\x38\x72\x3a\x5f\xec\x77\xf8\xfd\x87\xf0\x51\x64\x42\x03\xcc\x14\xbc\x70\x97\xc3\x0b\x77\xf8\x54\x92\x3e\xad\x0f\x4b\x31\x56\xa1\x8e\xd9\x23\xa5\x68\xb9\xd1\xb5\xb4\x68\xa9\x70\x42\x52\x29\x67\xca\xc6\xeb\xda\x6f\x26\x23\x45\xfe\xcb\x55\x7c\x4f\xe2\xda\x41\xb4\x74\xed\x01\x6f\x40\x8e\xd4\x77\x0d\x40\xb9\x46\x5d\xfd\x3c\x9f\x6f\xbf\x58\xe8\x9a\x4e\xf4\x22\x55\xb4\x8e\x5f\x61\x4c\x44\x94\xb3\xb5\xbb\x5a\x18\xe1\xd3\xae\x3a\x7e\x57\xf4\x60\x36\x5e\x61\xd8\xef\x5d\xa3\xa8\x7c\xc0\x78\x05\x47\xa7\xba\xc0\xa9\x93\xd6\xe1\xa1\x37\xb5\xd8\x45\x14\xda\xbc\x5d\xfd\xf0\x95\xf2\xc4\x16\x9d\xc5\x1b\x2a\x62\x94\xc0\x99\x12\xb4\x65\x75\xa7\x9e\x02\x4f\x00\xe3\xc7\x18\x53\x60\xb3\x02\x21\x93\x41\xca\xd5\xa2\xbc\x7e\x69\xd6\x67\xc1\xde\x2d\xa6\xe5\x1a\x9a\x43\x19\xfa\xa0\x8f\xd1\xc2\x5b\xde\xe4\xbb\x67\xe6\xda\x7d\xbc\x65\xa8\x3a\x39\x8b\x22\xda\x83\x1c\xfe\xb1\xb2\x37\xae\x06\xea\x0e\x45\x09\xe7\x8b\x74\x9c\x96\x09\xbd\x47\x57\xd9\x0d\xaa\x5b\x3e\x80\xd3\x37\x83\x7e\x42\x0f\xdd\xa8\xe9\x3e\x60\x5a\x9f\x46\x8a\x62\x76\x98\x01\x9c\xbf\x6a\x47\xd1\x11\xf5\xb2\x75\xcf\xdf\x9c\xfb\x54\xc3\x18\x16\x66\xd3\x8f\xa0\x80\xaf\xbb\x0e\x64\xd5\xbb\x98\x2a\x9b\x87\x2d\x02\xef\xe1\x75\x6f\xf9\x04\xd3\x36\xe6\xde\xf5\x6a\x93\x38\x2a\xea\x17\xa3\x2d\x9e\x3f\xd0\xd8\x7c\xa7\x37\x86\x41\xd9\x76\x47\x8a\xd9\x34\x3d\x4e\xea\x0e\x52\x3a\x9d\x3c\xa9\xc7\xd7\x56\x7f\x71\x1e\x8a\x2f\x70\xaa\x73\xfe\xef\x36\xdd\x0e\xc5\x40\x97\xbc\x9d\x5c\x6f\x6f\xad\x7b\xb7\x60\x57\xdc\x97\x37\x61\xd5\x4b\xe4\x7c\xe2\xdb\xfa\xb0\x22\xcf\x41\x88\xc7\xde\xf8\xf8\xd8\xf1\xf9\x90\x50\x34\xf1\x49\xa4\xa2\xd1\x8f\x71\xf4\x19\x9d\x48\x8c\x40\xd6\x5f\x08\xd0\xea\xd4\x6f\x92\xd4\xa8\x73\xf8\x57\x07\x91\x02\xfe\xf4\x08\xdf\xf1\x27\x2d\xa7\x66\xdc\x6b\x06\xe6\xc8\x61\x06\x94\xa2\xfd\xcf\x40\x25\xae\xf1\xf8\xdd\xec\x6a\xa9\x92\x47\x71\x41\xcf\x63\xf3\x5e\xf7\x17\xaf\x75\x16\xee\x44\xf6\x6d\xb5\x8c\x07\x8f\xe9\x01\xa7\xec\x54\xc1\x7b\xb0\xe5\xac\x11\x56\x45\x0a\x48\x67\x75\x26\x9a\x49\xad\xc0\x3f\x00\x2b\x28\x5d\xa5\xec\x75\xf1\x24\xc6\x9e\x01\x0f\xcb\x5d\xd1\x68\xab\x8a\x53\xc9\x14\x54\x1b\x8c\x66\x66\x39\xe8\xcd\xa1\x34\x5c\xf1\x71\x24\x1c\xa7\x97\x6c\xdd\x33\x9b\x4a\x23\xa7\xaf\x92\x01\x94\x72\x29\x35\xca\x5c\xf7\x28\x25\x87\xee\x42\xa5\x0b\x40\xd6\x6a\x29\x8d\x34\x20\xf3\xbd\x33\xf1\x80\xd3\xf1\xf1\x58\x72\x7e\x3f\xa1\x77\x85\x92\xb4\xe1\x31\x18\xa9\x9e\x6d\xfa\xcb\x76\x14\xbe\x33\x31\x85\x8f\xf9\x77\xc1\x2b\x92\x0d\xda\x99\x52\x84\x60\xd6\xef\xa1\xc4\xfa\x08\xd9\xa8\x45\x9c\x00\x91\x46\x09\x54\x30\x1b\xe5\x73\xe0\x97\x19\x0d\x82\xe7\x07\x9d\x85\xdb\x1f\x6b\x40\x8f\x13\xc9\xa1\x96\x7e\x07\xda\x44\xb4\x57\x4b\x39\xf8\xc9\x61\x46\x18\x53\xe2\x53\x0d\x9d\xbe\xff\xb0\xb3\x20\xd4\x19\x66\x77\xa6\xbd\xb7\xda\xcd\x6f\x7d\x8e\x53\xc1\x87\xd0\x4b\x68\x78\x65\xaf\x08\xfd\x38\x59\xc9\xba\x8c\x45\x56\x22\xe9\x18\x3a\x4e\x3b\x93\xd5\xa4\x75\x02\xc7\xe1\x9d\x30\x18\xae\x5c\xcd\x56\xaa\xb0\x69\x65\xcc\xaf\x2f\xe3\xed\xb2\xe0\xed\x2c\xbe\x6f\xdd\x7b\xcd\xba\x5a\x27\x0f\xde\xdd\x5b\xa4\x93\x6c\x26\x3b\x68\x27\xe0\xf0\x1b\x2c\xff\x09\x48\x74\xb5\xef\x81\x45\x77\x7f\x91\x0d\x45\xaf\xdd\x60\xd8\xba\xaf\x9a\xbd\x62\x57\x30\x6f\x76\x30\x4d\x87\xdd\xc9\x1d\x7a\x8d\x05\xff\x21\x38\x67\x75\x6f\x7f\xba\xbd\xba\xd1\xdd\x23\xe8\xa2\x21\xbb\x92\xa1\x14\x86\xe4\x1e\x48\x19\x81\x26\xea\x2c\x8d\x7b\x63\xd7\xc5\x68\xee\xea\xc7\x01\xdf\xa3\x9c\x16\x93\x5c\x76\x2f\x1a\x37\x86\x98\x40\x9f\xcf\xec\x99\x2d\xf6\xee\xae\xd0\x83\x60\x1d\x99\x1d\xc9\xe2\x67\x06\xf6\xa7\x30\x39\x21\x82\x07\x89\x03\x52\x90\x31\x42\xd3\x5b\x05\xd0\x98\xe4\x6d\xfb\xfd\x83\xce\xd2\x1a\x3f\x5a\x60\xb6\xef\x96\xbd\x2c\x0f\x55\xbb\xc8\x58\x86\xb4\x0e\xf6\x8f\x13\xe5\x28\xb4\x2b\x65\x70\x9b\x46\x06\xb9\xff\xc2\x1b\x5d\xee\xd5\x50\xe1\xc9\xed\x12\x50\x34\x5a\xc7\xd6\x4b\x44\x5c\x37\x8e\x22\xe8\xc4\xa9\xe4\xe4\x50\x79\x93\x40\x3e\x89\x64\xb8\x99\x11\x07\xf4\x7c\xf7\xeb\xda\x72\xaa\xa8\x9e\x99\x62\xa8\xd8\x3b\xaf\x5c\xaa\x6c\x3a\x7a\xe3\x4b\xa5\x60\x49\x15\x7a\xbf\x66\x04\x9b\x8b\xc5\x62\xe2\xc4\x5e\x44\x99\x8b\xe5\xc6\x8c\x42\x40\xe6\xce\x75\x91\xd4\x0d\xe9\x9c\x2c\x5b\x4e\xe3\x61\x37\x17\xbc\x0b\x55\x49\x17\x3e\x53\x7c\xc5\x33\xd2\xa0\xe0\x0c\xa8\xaf\x05\x88\x6f\xcc\x0f\x3f\x87\xf3\xe9\xf1\xb2\x94\xfe\xac\x4b\x8f\x67\xa5\x42\x3c\xc3\xc3\x15\x3e\x8f\x37\x5a\x29\xb0\xbc\x9b\x0e\xc9\x16\x7e\x30\x86\x1e\xf1\x8e\x92\x10\x21\x89\x8a\x21\x14\x9f\x73\x46\xe3\x94\x7a\x8e\x78\x32\x49\xdf\x1d\xa0\x2c\xb0\xf0\x7e\x3d\x7f\x85\x86\x28\x6b\xdc\xc9\xd0\x31\xa2\xe4\xc9\xab\x63\xc0\x84\x19\x24\x9e\x75\x69\x1c\x15\x54\xf7\x23\x7f\xff\x6f\x5f\x32\x34\xb1\x50\xef\x19\x9a\x48\xfc\xf4\xc7\x0c\x41\xac\x83\x08\xeb\xfd\xa4\x21\x3f\xd9\x76\x9e\x32\xb1\x23\x7b\xce\x08\xdf\xa8\x3d\x47\x90\x5d\x47\xa7\x52\xce\xf9\x02\x12\x58\xc3\xcd\x41\xa5\x2a\xe6\x2c\xcf\x65\xf2\x3e\xa7\x7d\x44\xbb\x29\x3a\xa6\x19\x17\x0a\xe6\xa7\xe9\x7b\x5f\x0c\x2b\x59\xfa\xea\xc5\x51\x55\xdc\xe3\x95\x84\xf8\x29\x16\xc5\xcc\xb8\x82\xee\xfb\xda\xea\xa5\x3f\xc2\x87\x2b\xf0\x96\xaf\x2b\xd7\x7c\x8d\xe2\xc8\x4d\x55\x41\x1f\xf7\xa3\xec\xca\x08\xfa\xdd\x91\x2b\xfd\x15\x37\x6a\x81\x37\x26\xcd\x84\x7b\x63\xf3\x0b\x40\xf7\x23\xce\x5c\x41\x49\x8c\x5c\xa1\x92\x18\xb9\x82\x9f\x44\x23\x09\xc6\x1f\xc1\x51\x15\x89\xe9\x20\x22\x99\x0c\xfc\x39\x8b\x96\xef\xce\x47\x3a\xa6\x5a\x8e\x15\x50\x6d\x14\x9f\x58\x02\x23\x17\xd2\xa7\x8b\xf8\xab\x45\xfa\xb5\x29\xaa\xa0\xef\x38\x71\x05\x7f\x9d\x49\x55\xf4\x51\x4e\x53\x31\xf5\x6b\xf8\xdf\xfa\xea\x1b\x3d\x76\xa5\x52\xce\xf7\x55\x2b\x89\x6f\xdd\xed\xbd\xf4\x6b\xcf\xba\x21\x99\x13\x30\xf1\x66\xb6\x17\x88\x5b\xe5\xbe\xbc\x67\x77\xfc\xdd\x66\x2f\x28\x7e\xeb\x5b\xbd\x6c\x85\xef\x4b\x45\x00\xf9\xda\xa3\x7c\xf1\x0e\x5f\x43\x3f\x3d\x51\x55\x43\x28\xf1\xd2\x6e\x26\xf5\xb5\x6b\x7d\x99\xb3\x2e\x7f\xa9\x2a\xe8\x4b\x4d\x14\x09\xa1\x0f\x3b\x25\x91\x1b\x41\xe2\x9f\x7e\x8a\x12\x11\x21\x88\x90\x06\x44\x94\x9a\xf2\x3c\x5e\xa5\xe0\xca\x07\x91\xac\xef\xfe\x78\xd9\xe2\x77\xad\xf4\x52\xe0\x79\x84\x7c\x0c\x89\x88\xf1\xed\x97\x5f\xcb\x37\x2e\xa3\x2b\x2c\x9d\xc1\x0f\x47\x7f\xd5\x21\x25\xd7\x22\x08\x7f\xfd\xfd\x20\x7c\xa9\x4f\x3e\x3a\x24\xcc\x9a\x2f\xb9\xf2\xcd\x4b\x0e\xc7\xea\x3e\x51\x17\xca\xfd\x45\x63\xab\xe8\xef\xe1\xf0\x4a\x98\xea\xc5\x04\x93\x8c\xaf\x04\x2e\x0f\xfd\xf7\xae\x5e\xbb\xb4\x9d\xd9\x4e\xb4\x44\xe4\xf1\x54\xd1\x15\xc2\xe6\x66\xd6\x44\x0c\x9d\x28\x4c\x9a\x77\x13\xdf\x35\x35\x91\x8e\x1c\x62\x75\xb7\x50\xc7\x18\x91\x36\xfc\x45\xb7\xde\xd9\x06\xe1\x1b\x32\x1c\x17\x57\xde\xba\x8a\x92\xf3\x72\x2e\x4a\xa0\x5c\x43\xf5\xf8\x90\x9d\x51\x7b\x35\xfc\x9c\x9a\xe4\xf3\x19\x95\xf1\x2f\xa9\x49\x95\x88\x02\xf5\xe5\x3c\x16\x08\x52\x17\xf9\x90\x56\xf4\x13\x5a\xaa\xb5\xfa\x70\x88\x53\x65\x87\x9b\xde\x56\xed\x2c\x34\xda\xef\xf1\xfa\x8a\x7f\xf7\xa9\x77\x7a\x57\x43\xc7\x3f\x67\x27\x2a\xdb\xa8\xe5\x4f\x76\xb1\x59\x19\x1d\x89\xb4\x4d\xd9\xa1\x0f\x88\x24\x7d\x72\x4f\x91\x12\x03\xee\xd9\x34\xbf\x1c\xa0\xa1\x3b\x0f\x96\xfd\x31\xc9\x16\xee\x6e\x03\x58\xc7\x1b\x30\xe2\xbd\x1a\xb8\xd9\x72\xbe\x24\x57\x18\xda\x63\xaf\x81\xd2\x4a\x1a\x68\x64\xf1\x43\xac\xc2\x23\x3c\xe3\xe6\x8c\x37\x7b\x0b\xb3\x70\x67\xc7\x15\x03\x2a\x1a\xf6\xe9\x95\xd7\x5f\x92\x8c\xae\x7c\xcf\x2f\x4d\x86\xf5\x09\xc2\x3b\xac\x4c\xfe\x82\x64\x58\x9f\xfc\x69\xca\xb0\x3e\xf1\x6b\x90\xdd\xd5\xea\xa4\x1f\x5f\x9b\xb9\x3e\x06\xc6\x9d\xf5\x59\x89\xbf\xcb\xe9\x7e\x66\xa9\x17\x8c\x23\xf3\x8e\x7e\x51\x52\x7d\x4b\x32\x5a\x9f\xd0\xab\x7c\xb3\x2a\xa9\x53\x25\x1c\x23\x7b\x29\x46\x4e\xfd\x95\x9b\xc8\x53\x89\xf2\x65\x5d\xf3\x51\x44\xf5\xad\xba\x38\xb3\x2b\x79\x2a\xac\x6e\x7c\x74\x27\xc4\x03\xf3\xed\x23\x1f\x6f\x03\xed\x54\x71\x8a\x92\x78\x2f\x1f\x85\xa1\x2f\x95\x18\x78\x25\x7d\x91\xed\xe8\x3d\x7d\x9c\x94\xbe\xac\x46\x97\x06\x34\xbc\xf9\x09\xbd\xa4\x8f\xe7\x09\x98\x7a\x76\x95\x22\x01\xea\xa5\x54\xbc\xe0\xbe\x12\xbc\x7f\x8e\xe1\x2a\xf5\x9e\xaa\xc8\x0a\xbe\xbb\x82\x89\xe3\xe9\x02\x45\xb7\xd9\x31\x90\x63\x19\xca\x6c\x93\x07\xc6\xf9\x35\x0a\xc1\x3d\xf2\x05\x11\xa3\xb5\xf9\xe5\x90\x5e\xad\xd5\x35\x2a\x59\xb5\xf0\x64\x26\xb6\x72\x95\x8c\x7b\x25\x7c\xe7\x88\xcf\x4f\xf8\x85\xa3\x70\x91\xf8\x72\x09\x79\xab\xf8\x41\x65\xb9\x5b\xf2\x6e\x0c\xac\xa7\x70\x75\xae\xe4\x4b\xa8\x68\xe5\x7d\xf6\x94\x77\x7a\x1c\xcc\x3f\x25\x7d\xab\x9e\x20\x32\x68\x1c\x8a\x66\xa1\x72\x14\x29\x01\xd1\xa6\x1c\x69\x38\xf5\xdd\xe9\x28\x8c\xe2\x20\x60\x69\x27\xc5\x5f\x17\xb4\x7e\xff\xdb\x3f\xfe\xc9\xd2\xaf\xec\x46\xc0\xd9\x74\xe2\x8b\x61\xb5\xb1\xd8\xbe\x15\x18\xda\xf8\xf2\xe9\xc8\xa4\xed\xdf\xfd\x41\x47\xec\x4a\x0e\x6f\x94\x9c\x27\x39\x25\x73\x34\x8f\x77\x62\x33\x65\xb8\x8f\x4e\x94\xb9\x4c\xba\xe2\xa0\x52\xac\x13\xe1\xc3\x5c\xa6\x84\x5b\x48\x40\x46\x31\x5e\x0e\x2a\x2f\x06\xa5\x97\x9a\xc1\x62\x4b\xad\xc7\x2a\xaa\x6e\x6a\x8f\xfd\x9b\x4f\xf9\xe3\x0c\xad\xfd\x57\x86\x50\xe0\xa4\x03\x41\xeb\x32\xff\x8c\x23\xa6\xa0\xc0\x07\xbd\x9a\xc7\xc4\x72\x05\xc7\x37\x2f\xe5\xb9\x16\x02\x55\x20\x5a\xcc\x28\x88\xf8\x5c\x81\xa9\xf3\x62\xa9\xfd\x86\xfe\xb6\x62\xab\x28\x9b\x13\x37\x0f\x03\xeb\x4f\x66\xa2\xf9\x63\x71\x23\x0d\x3d\x90\xd5\x24\x49\x88\x18\x45\xa9\xa3\xa6\x53\xc8\xf7\x73\x78\x5a\xcf\x07\x1f\x85\xba\x75\x1c\x03\xc7\xef\xb2\xba\x72\x17\x8e\xc5\x2c\x7d\xd8\x26\x3e\x95\xb0\x37\x99\x4f\x62\x67\xa5\x3c\x45\x1b\x15\x79\xf8\xa9\xe4\x18\x6d\x14\x8c\x48\x6c\x01\x8a\xb1\x93\xda\x30\xea\x01\x7a\xb5\x69\xf4\x93\xd0\x31\xe1\x85\xaa\x5c\xad\xc9\xdd\xa7\xed\xcd\xe9\xd8\xa0\x58\x4f\x9a\x8c\x6b\x95\x2e\xd3\xa9\x06\xe7\xb3\x65\x90\xd1\xbf\x81\x7f\x2c\x96\x2e\x61\x8d\x3c\x32\x79\x68\x98\xda\xaa\xca\x05\xe6\xcb\x55\x0b\xba\x7a\xbb\xe1\xdf\xbc\x6d\xb4\x94\xd4\x04\xfd\xc5\x6b\xe5\xc8\x29\x00\xf3\x6d\x94\x9e\x40\xf6\x0f\x76\xb6\x1a\x9e\x4c\x44\x42\x6f\x61\x47\x0e\x9f\x20\x51\x6d\x6b\x7f\xab\x53\x7b\x15\x6c\x4c\x85\x00\x72\x01\x05\x0b\x55\x4e\x9c\x9e\x04\x90\xb3\x42\x8a\xe1\xd9\xd4\xc7\xc6\x26\x5f\x35\x82\xa1\x4e\xe2\x50\xa9\x11\xfc\x13\x78\x05\xbf\x36\x90\x90\xd7\xa1\xc0\xd9\xa8\xa1\x2a\x65\xd1\x98\x55\xe9\x2f\xf4\x37\xc8\x55\x31\xdf\xb3\x15\xcc\x55\xa1\x53\x4a\x85\x5f\x91\x52\x70\x64\xa3\xeb\x24\x6b\x03\x89\xae\xd4\x2d\xcc\x96\xc9\xa2\x8a\xfe\x3e\xe9\x05\xbe\xd6\xc1\x38\x23\x11\xbd\x7f\x74\x8e\x1e\xbb\x51\xaf\x2d\x49\xea\x0e\x27\x1c\x1d\x8c\x9b\xa0\x17\xdc\x72\xf6\xc2\xb9\xc8\x0b\x39\x7c\x9f\x8a\x9e\x4d\xa5\xcf\x72\xd5\x77\x8d\x06\xf8\x74\x0e\x02\xff\xea\x7b\x35\x02\xa3\xc4\x1f\x5e\xff\xf7\x10\x29\x8a\x68\x44\x46\xe2\x58\x07\x0f\xe6\xfe\xff\x7a\xbc\x7f\x67\x2c\xf1\xe4\x49\x3a\xe1\x9c\x8c\x9f\xdb\x89\x7e\x21\x81\xa9\xa3\x5e\xe3\x90\x0b\xb3\x48\x10\xb9\xe4\xac\x9e\xe7\x48\xa6\x18\xdd\xb9\xad\x64\x06\x42\x72\x71\x56\xc5\x27\x89\xf6\x71\x2a\x39\x43\x78\x7f\x32\xfd\xcb\xb4\x7e\xb9\x8b\x2f\xec\xff\x92\xef\x20\xd2\xfd\x73\x75\x6b\x1d\x13\xdd\x76\xe6\x68\xe5\x2b\x8e\x83\xdf\x23\xcb\x0c\x38\x29\xbc\x78\xd7\x00\x6b\x8f\x9e\xd1\xc3\x44\x61\xbe\x89\x87\x4c\x35\x9c\xe2\x37\xca\xcf\x9e\xf9\xc2\xc5\x0f\xc9\x3e\xbb\x8d\xdf\x78\xf9\x62\x08\xfe\xe6\x4f\xe5\xd1\xcf\x41\xfc\x49\xcf\x2c\xd2\xcf\x1c\xfe\x7c\xf2\x9c\xfe\x1e\xc6\xbf\x6f\x6d\x70\x2b\x90\x30\x5f\x80\xd3\x5e\xa7\x5f\x23\x58\xf3\xe1\x0d\x7d\x5c\xd4\x06\x29\x95\xa3\x37\x88\x64\x84\xa1\x7c\x11\xb6\x1d\xbf\x4a\xa4\xc7\x19\x74\xaa\x65\x2e\xd2\x63\xe5\x32\x23\x5c\xc2\xc3\x0d\xdb\xf6\x15\xfe\xcd\x43\xc2\x88\xe0\xb8\x62\x81\x8c\x3a\x62\x67\xa4\x0b\x1e\xb9\x9c\x19\x4e\xab\xd1\x61\x68\x2e\x50\x83\xf3\xc8\x48\xad\xff\x13\x00\x00\xff\xff\x88\x0d\xca\x6b\x74\x83\x00\x00") +var _confLocaleLocale_zhHkIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\x6b\x73\x53\x49\xb2\xe0\x77\x22\xf8\x0f\x67\xb9\xd1\x31\xbb\x1f\xda\x44\xcf\xc4\x3e\x3e\x20\x76\x7b\xa6\xe7\xf6\xcc\xc6\x74\x4f\xef\xd0\x13\xf7\xc3\x44\x87\x5a\x96\x8e\x6d\x5d\x24\x1d\x8d\x8e\x04\xed\xb9\x71\x23\x64\xc0\xb6\xfc\xc2\x06\x6c\x83\x1f\x60\x6c\xc0\xd8\x06\x1b\x9b\xa7\xf1\x8b\x1f\x33\x3a\x47\xd2\xa7\xfe\x0b\x9b\xaf\xaa\x53\xe7\x21\xd3\x7d\x63\x76\xbf\x80\x75\x2a\xab\x2a\x2b\x2b\x2b\x2b\x33\x2b\x2b\x2b\x53\x2e\xa7\x73\xb6\x9b\x4d\x79\x2b\x07\xfe\xfc\x91\xf5\xa5\x63\xb5\xb7\x1e\xb4\x37\xea\xad\xc5\x1b\xed\xd1\x2d\x6f\x7c\xd3\xfa\x32\x5f\xb5\xfc\xe5\x29\x6f\x62\xe1\xec\x99\xb3\x67\x06\x9c\xa2\x9d\xea\xac\xcf\x77\x1e\x0e\x9d\x3d\x93\xcb\xb8\x03\xbd\x4e\xa6\x92\x4b\xf9\x37\x9f\x7a\x8d\xb7\x9d\xfb\x6b\xad\xb1\xc6\xd9\x33\xf6\x0f\xe5\x82\x53\xb1\xe1\xeb\x5a\xeb\xf5\x1a\x54\xb2\x0b\xe5\x94\xf7\xfe\x19\x34\x77\xf6\x8c\x9b\xef\x2f\xa5\xf3\xa5\x54\x6b\xe1\xb0\x33\x79\x03\x7e\x3b\xd9\x7c\xa6\x90\xd6\x9f\x1f\x9f\x34\x0f\x1e\x7b\xfb\xaf\xda\x0b\x2b\x0c\xf2\xe3\xd1\x62\xeb\xf9\x73\xeb\x97\x96\xbf\xfd\xc4\xba\xe0\x16\x33\x85\xc2\xc5\xce\xdd\xe5\xf6\xd0\x0b\x86\xba\x70\x9e\xbf\x49\xd3\x4e\xad\x9a\xea\xd4\xeb\xde\xe8\x81\x7c\xa8\x95\x53\xed\x8d\x43\x6f\x64\xfc\xec\x99\x8a\xdd\x9f\x77\xab\x76\x45\x7f\xb8\x6a\xf7\xba\xf9\xaa\x9d\xf2\x76\xee\xf9\xf3\xef\x5b\x6f\x5f\xb6\x9e\xc1\x30\xaf\xd8\x15\x37\xef\x00\x2e\x73\x6f\xbd\xb1\x29\x18\x92\xbf\xfc\xfc\xec\x99\x72\xa6\x1f\x86\xfe\x70\x08\x46\x79\xf6\x4c\xd5\x2e\x96\x0b\x19\xa8\xe9\x6f\xac\xd2\x98\x0b\x99\x52\x7f\x0d\x21\x98\x7e\x9d\xa1\xfd\xce\xc3\xe1\xb3\x67\xb2\x15\x1b\xa0\xd2\x25\xfb\x6a\xca\x1b\x7b\xe3\x1d\x02\x95\x77\x81\xb6\x3d\x3d\x3d\x67\xcf\xd4\x5c\xbb\x92\x2e\x57\x9c\xbe\x7c\xc1\x4e\x67\x4a\xb9\x74\x11\x89\xd6\x9a\xdd\xf0\x1b\x6f\x9b\x1f\x56\x7d\x18\xe0\xf4\xb8\xbf\xf4\xda\x7b\xbc\xc8\x43\xb1\x73\x40\xa1\x74\xc6\x4d\x79\xef\x5e\x32\x6d\x18\x18\x27\x06\x1b\x2b\x65\x8a\xaa\xbe\x37\x33\x05\xf3\x50\xcc\xe4\x0b\xa9\xce\xf5\x37\xad\x9d\x3d\xc4\xdf\x75\xaf\x3a\x30\x59\xde\x8b\x91\xd6\xda\x11\x52\x23\x5d\x1d\x2c\x43\x8d\xb5\x83\xf6\xd6\x94\xfa\x9a\xcd\x94\xab\xd9\x81\x4c\xaa\xb3\x79\xb7\xbd\x3d\x46\x9f\x10\xb4\xec\x00\xa1\x9c\xca\x60\xca\xab\x8f\x79\x07\xcf\xce\x9e\x71\x2a\xfd\x99\x52\xfe\x6f\x99\x2a\x51\xea\xcd\x8d\xd6\xfb\xd9\xb3\x67\x8a\xf9\x4a\xc5\xa9\xa4\x3a\xd3\xab\xde\xf5\xe9\xb3\x67\x60\xd8\x69\xac\x1a\x1a\xbb\x6a\x00\x0b\x8b\xf9\xfe\x0a\x52\xb1\x33\xf4\xae\xf5\xf4\xd0\x7b\x3c\xdf\xb9\xbe\x61\x96\xf7\x39\x95\xcb\x29\xae\xe6\xbf\x3e\x69\xcd\xae\x98\x85\x80\x41\xa8\x61\x8d\x44\xa6\x04\x13\x41\xc5\xad\x9d\xd5\xd6\xcc\x88\xdf\xb8\x65\x14\x67\x72\x45\xa0\x62\x39\x53\xb2\x0b\x52\xae\xf8\x36\x93\xcd\x3a\xb5\x52\x35\xed\xda\xd5\x6a\xbe\xd4\x0f\x74\xde\x7f\x05\xb4\x6c\x6f\x6c\xb7\x8e\x77\x60\x0a\x92\x3f\x0f\x3a\x35\x3d\x8d\x40\x9d\x89\xe6\xc1\x01\xcf\x9e\x14\xe9\x6a\x3c\x33\xaa\x1a\x8d\xc1\x4d\xf7\xd9\x36\x2c\x9f\xe5\x3a\x0c\xc1\x7f\x7d\xe8\x4d\xcc\xc1\x44\xd5\x0a\x05\x20\xdb\x5f\x6b\xb6\x5b\x85\xce\x66\x1a\xcd\xe3\x37\xed\x67\x13\xfe\xde\xb5\xb3\x67\xf2\xae\x0b\x9f\x53\xde\xdc\x74\x67\x75\x92\xb1\xc7\xa6\xb2\x99\x52\x16\x86\xe3\x4d\xcf\xfb\x6f\x1b\xf8\xe1\x2f\xae\x9d\xa9\x64\x07\xbe\x43\xac\xf1\x8f\x94\x3f\xb3\xec\xed\x4e\x10\xdf\x25\x4c\x26\x72\x4f\x4a\x31\x13\xf5\x01\x3c\xf6\xc4\x9b\x07\x3c\xb3\x4e\x0e\x58\x64\x63\xc2\x3b\x9a\x16\x66\xf8\x4b\xbe\xe4\x56\x61\xc5\x41\xe3\xf2\x17\xac\x9f\xb1\xf6\xa3\xfb\x7a\x71\xe4\xab\x05\x92\x12\xfe\xf3\x55\x6f\xe5\x5d\x7b\x75\x92\xcb\xb1\x95\x83\x69\x44\xe0\xaf\x35\x58\x75\xe9\x5c\x2f\x0b\x9f\x2f\x9d\x7e\xd7\xf2\x86\x87\xda\x1b\x7b\xde\xc9\x64\xeb\xd9\x0b\x7f\x6e\xdf\xbf\xb3\x08\x98\xb5\xae\x1d\x58\x5f\x0d\x5e\xfa\x3f\x7f\xf8\x7b\x7d\xe8\x1b\xc7\xad\xf6\x57\x6c\xf8\x61\xf9\x8d\x79\x0b\xfe\x87\x36\x7e\xf5\xe3\xd1\x64\xf3\x78\xc4\xbf\xf7\x42\x7d\xb0\x9a\xfb\xf5\x76\xe3\xb9\x37\xbd\xe5\x2f\x8f\xf1\xba\x6e\x1e\x4c\x76\xea\x2f\x41\x40\xb5\x16\x8e\x00\x19\x5c\xd0\x63\x53\xfe\xec\x0b\x7f\x72\xe8\xef\x75\x20\x2a\xe0\xc1\x28\xeb\x7e\xd5\x24\x61\x09\x2e\x11\x5d\xd0\x59\x7d\xe0\x3d\x98\x40\x39\xe8\x56\x83\xaf\xcd\xfd\x43\x7f\x73\x45\xc8\x18\x20\x2f\xf4\xd4\x0b\x2f\x52\xa2\x56\x1c\x74\x42\x2b\x57\x17\xc3\xe2\x6d\x6d\xec\x51\x01\x8a\x4e\x68\xd3\x5b\xbf\xe6\x3f\x58\xf6\xaf\x6d\x34\x8f\x3f\x40\x65\xa6\x09\x0c\x1d\xd8\x42\xbe\xfc\xfe\xeb\xaf\xff\xf8\xc5\xaf\x2d\xef\x68\xce\xbf\x73\xb3\x79\xf8\x04\x44\x87\x55\xab\xf6\xfd\x8f\x74\xbf\x5d\xb2\x2b\x20\x60\xb3\x79\xcb\xdb\xbe\xdb\x7a\xbe\xde\x59\x1a\xa1\x51\xbb\x6e\x01\x24\x0e\x4c\xee\xa5\x4b\x40\xd1\x8d\x55\x98\x60\xc4\xb5\x3a\x10\x20\xe2\xcf\x8f\x36\x0f\xdf\xb6\xdf\xbd\xf0\x4e\x6e\x41\x85\xbf\x16\x70\xd6\x04\x25\x45\xee\x60\x50\xb0\x46\x0d\x78\xea\xc3\xae\x54\xd2\x20\x29\xab\x83\x69\xa9\x4c\xed\x73\x55\x2b\xb1\x9b\xe6\xfe\x54\xfb\xfa\x31\xcc\x7b\x6b\xf3\x80\x9a\x38\x7b\x46\x8d\x40\xe6\x68\x74\x0c\xc6\x8b\xfb\xd5\xf2\x73\x35\x4d\xb8\x8d\x31\x09\xb9\x50\xe8\xa7\x3e\x2b\x94\xa1\x55\x20\xa1\x16\x05\xb0\x5a\x60\xb9\x76\x56\x3e\x34\x0f\x76\xda\xf5\x49\x6f\xba\xe1\x0d\x8d\x79\x8f\x9f\xa2\x8c\x92\x16\x70\xa9\x30\xce\xbc\x52\xfc\x87\xef\x5b\x4b\x3b\xb4\x6f\xe9\x22\xd5\xba\x3f\x56\x07\x8e\xa3\xfd\xb2\x33\xf4\x10\x79\x9d\xaa\x74\xae\x1f\x7b\xbb\xa3\xed\xb5\x67\xde\xf6\x3d\x7f\xf6\x04\x76\xd9\xf6\xe6\x4b\x6e\x84\xc6\x57\xa9\xc1\x16\x85\x7c\xc3\x2b\xa5\xf5\xea\xb0\xf5\x66\x4f\xb1\x8e\x2a\x54\x7d\x60\x55\xe6\x9d\x0f\xc3\x9d\x87\x0d\x6f\xf8\x1d\x32\xf9\xee\x54\x04\x3b\xef\xf6\x24\xb7\x66\xd1\xd2\xc2\x99\xb9\x33\xd5\x3c\x5e\xf6\x9f\x8f\x77\x16\x66\x98\xe7\x1d\xd8\x1c\x4a\xd0\xe9\x0a\x6d\x15\xfc\xd3\xe8\x86\x49\xeb\x1d\xef\x01\x7d\xac\x4b\x97\x7e\x67\xb5\x1f\x8f\xb6\x1f\x1d\x7b\xcb\xbb\xde\xfd\x3a\xb5\x30\x50\xad\x96\xd3\x65\xa7\x52\x4d\xfd\xee\xdb\x6f\xbf\xb1\x60\xd9\x7a\xd3\x8f\x60\x3f\x36\x4a\x34\x69\x68\x5a\x5a\x4b\x8f\xda\x43\xc7\x48\xfe\x00\x14\xa7\xa8\x56\x29\x08\x84\xf5\xe7\x3f\xfd\x41\x7f\xeb\x86\x0c\xf6\x76\x1e\xff\xb9\x14\xc2\x09\xc6\x0c\x2b\xbf\x79\xb0\xc4\xfb\x5d\x73\x7f\x1b\x7a\xea\xd4\x1f\xb5\xde\xcc\x08\x1f\x39\x65\xdc\xab\x34\x23\x79\xd3\x2f\x60\x97\x56\x2c\x44\x7b\xa5\x94\x74\x96\x0e\xbd\xed\x19\x68\x07\xb8\x92\x55\x1f\x80\xf2\x76\x70\x17\x2e\xc2\xc8\x68\xed\x5f\xfa\x0a\xc6\xac\xd6\x3d\x7d\xee\xab\x38\xc5\x14\x57\x6a\x9e\x8c\x80\xf6\x64\x7c\x57\x63\x31\x8b\x19\x6d\x58\xc4\x9d\xa1\x37\xde\xc9\x96\xf5\xa7\x7f\xfe\x8d\xf5\x5f\x7f\xf5\x4b\xd0\x73\x36\x16\xbc\x51\x5c\xa3\x80\x21\xac\x64\x90\x6d\x30\x30\xe0\x54\x10\xc7\xad\xd7\xb3\x38\x2a\x1a\x21\xd7\x07\x51\x28\x12\xe0\x1c\xb2\xfa\x39\xeb\x02\x8d\xe4\x7f\xd9\x3f\x64\x40\x43\xb1\x7b\xb2\x4e\xf1\x22\x31\xc0\xc3\x23\x58\xe0\x44\x09\x2c\x07\x96\x62\x99\xbf\x70\xd4\xa9\x0f\x29\x15\x41\x4a\xb4\xc0\x32\x4b\x03\xad\x81\x75\xa8\x74\xd6\x29\xf5\xe5\x2b\x45\xd8\x8b\x56\xa0\x7b\xd6\xa8\x18\x94\x15\x0a\x6e\x2e\x5d\x72\xaa\xf9\xbe\x41\x81\xe2\xf1\x77\xea\x8b\xad\x95\x27\xfe\xf4\x4c\x67\xe4\x36\x6e\x50\x15\x50\xb8\xd2\xf8\x5f\x3e\x6b\xcb\x14\x34\x8f\x0e\x90\xf2\x0b\x1b\xc8\xca\xc3\x6f\x9b\x87\xf3\x7a\x22\x68\xba\x9c\xbe\xbe\x42\xbe\x64\xb3\x00\xf3\xe6\xee\x60\xdb\x4b\x6b\xad\x77\x8b\x4a\x90\x99\x00\xc0\x8b\x65\xd0\x02\xbd\x65\xe8\x7f\xa3\x75\xfc\x92\x61\x9a\xfb\x13\xcd\xf7\x2b\xad\xf5\x21\x94\x18\x27\x0f\xac\xdf\x7c\xf1\xb5\xd5\x9a\x7a\x89\x7b\x28\xc9\x23\x98\x19\x5e\xd2\xa8\x0b\xbf\x1a\xf5\x0f\x66\x60\x1d\x03\x20\xc8\x1d\x20\xbd\x46\x90\xab\xf0\x9a\xca\xbb\x99\x5e\xd0\xe5\x98\x44\x15\x51\x8d\xd6\x87\xfc\xed\x35\xd9\xfb\x47\xb7\x80\x65\x94\xf2\x99\x04\x2e\xa8\x76\xab\xe4\x8d\xaf\x80\x74\x04\xcc\x78\x7b\x63\x05\xc0\xbb\xb3\x2a\x9c\xf2\xee\xd0\x1b\x7f\xc8\x5a\x31\xcb\x16\xdc\x68\x41\xcd\x13\xe5\x3a\x7d\x25\x8f\x7a\x28\x51\x8b\xf5\xc7\xf6\xc6\x16\xaa\x12\x0b\x33\x1e\x49\x9b\x04\x70\x45\x3b\xde\x4e\xb5\xde\xb9\x28\xaa\x27\x6c\xa4\x80\x90\xf7\xf8\xa1\xb4\x44\x1a\x00\xe2\x37\xb3\xee\x8d\x8d\x22\xc1\xa6\xb7\x50\x9e\x2f\x4f\x78\x8d\x5d\xae\x0b\x1c\x2b\xcc\x42\xc0\x84\x28\xeb\x64\xa2\x29\x89\x45\x42\x9a\x5d\x30\x42\x1a\x55\x73\x7f\x1d\x36\x08\x58\x11\x2c\xff\x00\x0d\xec\x6b\xe9\x21\xea\x09\xbf\xff\x22\xf5\x99\xa5\x11\x43\x99\x0b\x6b\x6c\x62\x0e\xe7\xe7\xe4\xae\x6e\xc7\x10\x81\xdc\x29\xf3\x5b\xa4\x1f\xbd\xb1\x10\x08\xeb\xd5\x0a\xc2\x50\xb0\x95\x2a\xa9\x96\x8b\x6e\x44\xe9\xd2\xbc\x44\x0c\x88\x90\xaa\xcd\xd5\x59\x4b\xd7\x75\xd5\x5a\x14\xd5\x2a\xdd\xef\xa0\xea\xf8\x6c\xc2\x9b\x7a\xc5\x5a\x14\x1a\x1f\x6e\x35\xdd\x9f\xaf\xa6\xfb\x70\xbd\x42\xab\x37\x56\xfd\x57\x73\xed\xed\x7b\x5e\xe3\x89\xf5\x0b\x28\xf8\x85\xe5\xdd\x3a\x6e\x1e\x3e\x06\xd3\xe9\x93\x2b\x6a\xe3\xfe\x15\x2e\xc5\x74\xe6\x0a\xd4\x41\xb6\x4b\xc1\x56\x08\xfc\xcd\xc2\x03\xc9\xa6\x75\xa3\xe5\xe7\x48\x63\x52\x8f\x0c\x2d\x0b\x54\x0d\x5c\x25\x9f\xb8\x20\xf5\x26\xda\x47\xa2\x5a\xf9\x4f\x27\x70\x96\xc6\x1a\x08\x51\x9f\xe4\xc9\xb1\xfa\x9d\xde\x5a\xbe\x90\xb3\xb8\x35\x22\x76\xbe\x74\x25\x53\xc8\xe7\x50\xe7\x93\x69\x8e\x6a\x5b\x58\x77\xfb\x11\x50\x48\xb0\x56\x35\xba\xee\xc1\xc9\xd5\xf4\x96\x89\xa3\x2d\x66\xc0\x96\x49\xd8\x59\x3b\xf7\x1f\x88\x71\x47\x3f\xb1\xaa\x6b\x7d\x7a\x11\x46\x07\xd4\xca\x5c\xb1\x59\xb8\xf5\x2b\x02\xf3\xee\xd4\x19\x9e\xc2\xfe\x3e\xdc\x87\x9d\xdc\x7b\xbc\xe7\xcf\xdd\x8d\x60\x1a\xe2\xe2\x10\x4b\x69\xbd\x3f\x3e\x48\x9e\x65\xb7\x96\xcd\xda\xae\x8b\x93\xe2\x3d\x81\x05\x3e\x04\x36\x8b\x57\xbf\xe5\x9d\x34\x3a\xcf\xee\xb5\x1b\x0d\xf8\x0e\x9b\x95\x7f\x67\x54\x84\x3d\xee\xeb\x40\xf2\xd6\x93\xfb\x5a\x29\xf4\x6f\x8c\x79\x1f\x9e\xa1\x3e\x7c\x08\x1d\x1c\xa1\xa4\xda\x7e\x0c\xac\x61\xfd\xfa\xcf\x5f\x42\x83\xa4\xb9\xa3\xf9\x0e\x6a\x7b\x8d\xb5\x22\xa7\x90\xd3\x6a\x3f\xf0\x33\x2c\xcc\xa8\xad\xa8\x60\x14\xc7\xba\x57\xf3\x40\xd0\xb4\x36\xfc\x91\x4e\x55\xfb\x87\x6a\xca\x6b\x8c\xfa\xd3\x4b\xa6\x1b\x40\xa9\x30\xc5\x41\x9a\x41\x18\x1a\x59\x61\xca\xe2\xc8\x3a\x05\x60\x43\x07\xa5\xde\x15\x5b\x20\xbc\xe9\xeb\xed\xc6\xa8\x37\x35\x0b\xaa\x8a\x01\x0a\x2d\x80\x2d\xa7\x1a\xd0\x56\xde\x60\x9a\xad\x4d\x55\xa0\x8c\x4e\x18\xa6\x38\x20\xbe\x13\x5b\x47\x1c\x11\xaa\x3d\x00\xc8\xd4\xaa\x68\x1b\x05\xd6\x79\x5a\x6c\x3f\x11\x3b\x3c\x65\xc6\x66\x37\x60\x97\x71\x67\x2c\xba\xfd\x64\x7c\xbf\xbd\xc3\x22\xec\xc7\xa3\x15\x5e\x9a\xca\x55\x31\xa4\x1d\x1a\x3f\xbd\xea\xdb\x21\xd0\x2d\xa8\x6a\x78\x47\x60\xef\x00\x68\xcf\x29\xd0\xf0\x50\x2f\x7e\xf3\x0e\x57\x99\xb1\x11\x40\x7b\xa0\x58\x76\xee\x2e\x77\xe6\xc7\x60\x95\xc1\x12\x6d\x0f\xbd\x40\x3e\x27\x47\x86\x66\xc0\x84\xcd\x09\x11\x42\xb1\x13\x6f\xd9\xdc\xc2\x13\x7b\x41\xaa\x14\xed\x62\x2f\x36\x61\xa7\xda\x1b\xf7\x9a\xc7\xd3\xca\x99\x03\xf6\x7a\x3f\x2c\xbb\xc0\xd5\xf0\xe1\x1e\x00\x28\xee\xc1\x52\xbb\x4b\x29\x90\x43\xfb\x6b\x60\xe9\x5e\x4d\x75\xae\xdd\xf0\x5f\xde\xe6\x89\x80\xc2\xce\x3a\x48\xa5\x71\x46\x91\x90\x10\xd9\xca\xbb\x26\x69\x1a\xae\x0d\xb6\xbb\x50\x0c\x35\xa6\xdd\x21\xf1\x0b\xd0\x58\x58\xf5\x90\x19\x58\x7b\xc6\xaa\x4d\x7b\xf4\x95\x75\xa1\xf7\xe2\x27\xee\x85\xf3\xbd\x17\x59\xc8\xf9\x5b\x6b\x3e\x28\x27\x64\x27\xf8\xb3\xa0\x79\xbc\x25\x6d\x72\x1d\xb4\x07\xeb\x93\x9c\xe5\xed\x4e\xfb\x0b\xd7\xbc\xe1\xa7\xde\xce\xa4\xdf\x98\xe1\xb6\x19\x2d\xd6\xb1\xd9\xb6\x92\x1d\x54\x64\x3b\x51\x07\x36\x40\x6e\x55\x2d\xb2\x4c\x96\x78\x9f\x9c\x04\x8a\xfd\xfc\x0f\x75\xff\xf5\x21\xc3\x05\x4c\x48\x23\x2b\xe4\x8b\xf9\x6a\x12\x47\x00\x34\xbb\x07\x78\x4c\xdc\x84\x68\x5a\x43\x37\xc1\xe0\xe8\x3c\x3c\x6c\xbd\x1f\xe2\xe1\xb5\xb6\xc7\xbc\x93\x61\xeb\x57\x96\xd7\x18\xe9\xcc\xdc\x03\x7b\xdb\x1b\x99\x6a\x6f\xae\x13\xff\x0d\x64\xdc\x74\xad\x24\x94\xb5\x73\xcc\x22\x20\x19\x95\x54\xc2\xae\x40\x0d\x60\xe2\x6a\x0a\xfe\xe7\x80\x84\xff\xc5\x42\x63\x7c\x79\x0b\x09\x4c\x94\xe1\xe1\x02\x26\xa8\xce\x2a\x23\x16\x00\x80\xb2\x48\x0f\x03\x55\x6c\x1d\x04\xd0\x72\xbd\xbd\x3e\xd4\x19\x9d\xc2\xa9\xa3\x0e\x64\xeb\x99\xdf\xf1\xef\x8c\xc3\xce\x83\x6e\x3a\x98\x98\xc9\xb1\x4e\x63\x4e\x98\x11\xa8\x23\xa8\x32\x14\x88\xbd\xf6\xc2\x9c\xd9\x86\xc9\x01\x4a\xd5\xa7\xcd\xd0\xa5\xc5\x5a\xa5\xcd\xb0\x7d\xb4\xef\x0d\x3f\x89\xaa\xd7\x34\x16\x71\x37\x36\x76\x9b\x87\x87\xcd\xe3\x39\xd6\x11\x78\xb1\x63\xdf\x88\x42\x35\x8e\xc1\x8f\x47\x0d\x46\xe2\xc7\xa3\x31\x99\x1a\x9e\x57\x62\x78\x28\x82\xfd\x40\xe1\xc4\x4d\xe8\x95\xc1\x85\x6a\xdd\xa8\xfd\x85\x5c\x31\x91\x99\xd7\xfc\x2d\x52\xff\xdd\x4b\x9c\xf3\xe5\x15\xa0\x25\xfc\x4d\xdb\x54\x43\xd3\x29\xe8\x41\x3b\x16\xc2\x14\x33\x3a\xd5\x90\x55\xc7\x49\xbb\x03\x68\xe7\x09\xe2\x73\xef\xbc\x83\x75\xb6\xd3\xbd\xdd\x5b\xe8\x36\xfe\x6f\x30\xed\x53\x6a\x8f\x01\x8d\x3b\x83\xbe\xa1\x41\xdb\x15\x7d\x87\x17\xc6\xd9\x33\x25\x47\x3c\x54\xea\x03\x80\xa2\x6d\x20\x03\xf8\xb0\xe3\xcf\xbe\xa7\x26\x40\x50\x14\xa1\x85\x3f\xc3\x36\xfe\x75\xc4\xa7\xf9\x27\x10\xe8\xf4\x8d\xa5\xb9\x32\xd4\x7f\x6b\xb8\x3a\x79\xe6\xce\x9e\xf9\x26\xea\xf0\xfc\x93\x9d\xe0\xef\x04\xdb\xf6\x5b\x52\x01\xd1\xc8\x85\x8f\x9d\x5b\xbb\xaa\xd1\xdf\x81\x1d\xeb\xfe\x19\xac\x53\xb6\x36\xc1\x38\xb5\x82\xb6\x07\x0b\x4e\x26\x87\x85\xfe\xcd\x0d\x98\x5a\x55\xf0\xad\x9d\x29\x32\x7e\xcb\xf7\x3a\x8b\xe3\xaa\xa9\xcf\x61\xc3\xa1\xcf\x28\x2d\x60\x09\xaa\xcf\xa8\x31\xfc\x36\x59\x01\x0c\xf4\x71\x9b\x9c\xaa\x31\xcf\x48\xa6\x50\x1e\xc8\xd0\x5e\x2c\x10\xa2\x14\x5f\x3b\x68\x4f\xec\x81\x0d\xe3\x6d\xdf\xf5\x5f\x4c\xfd\x1d\x0c\xb8\x7b\x1f\xfc\x89\xb1\xe6\x11\xfa\xd5\xf0\x63\x63\xde\xdf\x7c\x06\xb6\x12\x30\xe8\xa7\x69\x60\xce\x68\x6b\x39\x58\x1a\x3f\xab\x45\xf8\x12\x6e\x11\x57\xf2\xe1\x03\x11\x85\x7f\x53\x23\x60\xce\xd1\x6d\x82\xb6\xc5\xf6\x28\x2a\x4d\x51\x28\x7f\x19\x64\xcc\x34\x43\x59\x68\xfc\x92\xef\x4a\xec\xd7\x1f\x92\xe1\x1f\x3f\x4d\x84\xe7\xf5\xae\x89\xa8\xed\x69\x90\x64\xb0\x38\x22\x0b\x9e\x6a\xa0\xf7\xe1\x14\x78\xe4\x04\x86\x2b\x5d\x86\xad\xaa\x24\xb0\x20\x2b\xc0\xac\xed\x4c\xbe\x68\x6f\xa1\xe6\xad\x5d\xe9\xb0\x11\x64\x9d\x4a\xc5\xce\x56\x03\xa7\x3a\xc0\x7a\x93\xef\x41\xa3\xa4\x76\xf4\x5a\x33\x74\x56\x62\x4f\x50\x87\x4c\x6e\x0d\xd7\x0a\x9c\xfe\xe9\x5e\xdb\x06\x4b\x26\x73\xd9\x2e\x05\x6b\x45\x6f\x75\xcd\xe3\x59\xf8\x28\x42\x00\x74\xe9\x68\x0d\x73\x25\x25\x55\x82\x5d\x3b\x56\x47\x3c\x68\x5d\xeb\x54\x61\x19\xc4\x3b\x32\x96\x44\x52\x25\x9e\x28\xaa\x00\x23\xcb\x85\x96\xb3\x01\xff\x41\xc1\xe7\x0b\x05\xbb\x1f\xfd\x39\xaa\xb3\x70\x0f\x93\xc3\xde\xcc\x33\x98\x40\x6f\xa6\x01\xe6\x91\xc1\x10\x9a\x6c\x9a\xee\xc1\x0c\x99\xda\x30\x13\x5d\xab\xec\x8c\x23\xe8\xbb\x00\x89\x55\x0c\xf3\x84\x3a\x37\x95\x07\xbd\x99\x98\xc4\x05\x4e\x3a\xad\x25\xe0\x24\x34\x5b\xba\x36\x85\x47\x04\xe4\x90\x68\xd7\x87\x03\x34\xc1\x16\x9e\x59\x3f\xad\x59\xbd\xa9\x24\xe3\xc7\x8c\x15\x6d\x45\x5b\x50\xf6\x0f\xa0\x2d\xa6\x80\xee\x2c\xb3\xb5\x7d\x8d\x74\x05\x33\x68\x79\x83\xc4\x7e\x21\x03\x16\x29\xf2\x09\x8d\x01\xc1\x5b\x4f\x0f\x3b\x0b\x8f\x19\x16\xfd\xae\xb0\x3c\x4f\xc8\x41\x77\x3c\x65\xea\xa5\x88\x13\x79\x2d\xb8\x48\x14\x36\x6d\x39\x8d\x4c\x75\xea\x2f\xd1\x76\xa3\xd6\x40\xdf\x42\x0b\x9e\x10\x91\xdd\x46\x0d\xd2\x05\xb1\x75\xd9\x1e\x4c\x81\xc1\xe4\x8f\xef\xf9\xdb\x63\xa4\x4e\xa0\x09\xc5\xc6\x31\x2f\x3c\x73\xe0\x56\x20\xef\xc9\xfc\x23\xab\x08\x15\xe4\x2b\x76\x05\x36\x25\xdd\x22\x7b\x50\x7f\x4a\x23\x74\x10\xc1\x66\xdb\xd0\x28\x98\x7b\x9d\x6b\x8f\x70\xc6\x95\xd4\xd0\x60\x38\x66\x68\x63\x74\x0b\x07\xb6\x76\x80\x06\xe5\xf0\x5b\x06\xf3\xeb\x4f\x69\x60\x68\x9f\x68\xe3\xf3\x66\x03\x9d\x16\xd4\x77\xc8\xec\x04\xd9\x5a\x85\x25\x80\x34\xe7\x53\x36\x53\x6d\x6c\x1e\x4e\xb5\x6e\xbc\xc5\xfe\x57\x66\x9a\x07\x4b\xcc\x86\xe4\x08\x1e\x62\x0e\x62\xf5\x41\xf9\x91\x1b\xed\xe3\x31\x20\x32\x32\x7d\x63\x0b\x48\xed\xed\x5c\x87\x71\x88\x77\x87\x8f\x70\xf8\x3b\x35\x6e\x4c\x01\xa3\x80\x8a\x23\x9e\xb7\x45\x30\x68\x37\xc6\x35\x06\x2c\x31\x10\x03\x9a\xc5\x48\xf7\x9d\xa5\xb5\xce\xfc\x84\xee\x9e\x81\xb5\xf4\x89\x8c\x13\xbd\xe0\x04\xf0\xff\x68\x90\xdc\x78\x88\xcf\x02\x0c\xc8\x6d\x0a\x18\xf0\xb4\xf0\x76\xde\x3c\xb9\x0f\x43\x45\x45\xf1\xfa\x06\xe8\xd5\xb2\x42\x48\x50\x89\xfa\x3a\xdc\xe0\xa6\xa1\xa2\x09\x13\x56\xbf\x41\x6c\x66\xc8\x42\xea\xad\x64\x4a\x60\x66\x07\xeb\xaf\xb5\xb4\x83\x5e\xe1\xc6\x88\x3f\xfb\x42\xaf\x3c\x52\x95\x10\x1d\xb4\x64\x07\x32\xa5\x7e\x1b\xbd\x3b\xd0\x04\x58\xe3\xbb\x56\x7f\x85\x7f\xa0\x07\xd8\x02\xd3\x89\xd5\x2b\xb1\x40\x1e\x6e\x93\xa9\x2c\xb5\xb2\x35\xb7\xea\x14\x8d\xca\x7c\x8a\xa9\x3c\x16\xdb\x5c\x55\x55\xfa\x57\x07\xf6\x6b\x07\xa4\xf9\xf8\x43\x58\x04\xa0\xfe\x19\x27\x8a\x79\x3c\x9b\x64\x89\xd7\xb8\xdb\x5e\xdd\x10\x23\x27\x5f\x85\x95\x39\xfc\x1c\x67\x58\xce\x38\xfb\xc0\xfc\x77\xae\xda\x60\xbc\xa3\x6e\xbd\x71\x08\x73\x85\x44\xce\xa0\xe4\x42\x33\xb9\xbd\xb3\x08\x16\x87\x82\x43\x77\x0a\xc3\x01\x36\x38\x6c\x54\x10\x7b\x48\x84\xa3\x5a\x5b\xb9\x82\x4e\x30\x25\x11\xad\x5f\x7c\xe2\xfe\xc2\x02\xa6\xc0\xcd\xe2\xc3\xfd\xd6\xdc\x02\x8c\x98\x58\x29\xa8\x55\xce\x54\x41\x4a\x96\xd8\x08\x20\x4c\x8c\x06\x90\xc0\x74\x18\xc9\x2d\x85\x9d\xe7\x74\xb4\xca\x07\xba\x40\xf6\xe4\x63\x5f\x2d\x71\x99\x70\xda\x79\xc2\x12\xc5\x15\x55\xcf\x90\x1d\xca\x69\x10\x8e\x7e\x20\xbf\x00\x1d\x87\x14\xf2\x59\xb2\x73\x55\x55\xe6\x3d\xf6\x4a\xd1\x0a\x51\x05\xca\x39\x92\xb3\x0b\x36\x86\x35\x18\x6b\x16\xe4\x5b\x5e\x0d\xd2\xfa\xfd\x17\x38\x92\x72\xad\x17\x5a\x0e\xce\xae\x69\x86\xf4\x20\x24\x30\x81\x9c\xb1\xa6\xe1\x2a\xfb\xf1\xee\xa8\xbf\x7c\x1d\x8f\xb5\xa8\x16\x4a\xbf\xfd\x75\x94\xfb\xd0\xc1\xfc\x91\x7f\xf3\x09\x5a\x78\xd4\x31\xd2\x8f\xb6\x2d\x76\xf8\x7b\xb7\x27\xd9\xff\xcf\x53\x82\x67\xdd\xbc\xe5\x8d\x6e\xc1\x70\x5b\x27\x9b\x4a\x37\xd6\xb1\x19\x44\x5b\x15\x9b\x51\x70\x98\x14\x78\xdc\x06\x6b\x00\x91\x99\x02\xb5\xbb\x56\xce\xa1\x27\x47\x0d\xc5\x5f\x7a\x0d\x5b\x89\x1a\x4a\xb8\xd0\xf4\xb5\xd1\x06\x1d\x4c\x1d\x57\x43\x01\x35\xce\xe6\x9d\x2c\x90\x78\x70\x05\x1f\xe9\x29\x93\x25\x02\xc6\x34\xd3\xb0\x1a\x50\x2c\xb6\xb5\x03\x18\x28\x58\xb9\xad\xf7\x47\xad\x83\x49\x16\x33\xde\xdd\x9b\xe8\xe4\xa8\x2f\x30\x5d\xf9\xa8\x0b\x2d\x64\xde\xf0\x1b\xa3\x28\xc6\x58\xf6\x2e\x8f\xc1\x52\x08\x9f\x6d\xa1\x17\x2e\x5f\xaa\x01\x7e\x46\x93\x91\xa8\x00\xf5\x11\x35\x04\xda\xe7\x22\xab\x7e\x6e\x05\x16\xa6\x9e\x04\xb5\xd8\x93\x60\xf5\xa9\x1e\x59\xef\x28\xd1\x28\xd8\xa5\x79\x32\xc2\xc7\x16\xe8\x26\xfe\x52\xa4\x8f\x9c\xa8\x04\x02\xc7\x71\x5c\x71\xb8\x71\xbf\xec\xd5\xe4\x7d\x5f\x41\xc9\x7c\x09\x04\x4f\x0a\x97\x29\xbf\x7c\xad\x8c\xd6\x17\x28\x39\x82\x11\xad\xe3\x74\xbe\x88\x01\x38\x20\xeb\xbc\x6b\xaf\xf4\x69\x74\xa0\xc1\x1f\xbd\xf1\x96\xe7\x5b\x63\xa3\x34\xb3\x25\x27\x32\x28\xc3\x31\xfe\xf2\x36\x3a\x39\xc8\xd4\x8f\x10\x04\x5d\xae\xa4\x0a\x44\xc6\xce\x3a\x93\x89\x76\x84\xcb\x4c\xf4\x63\x5c\xa6\x19\xa8\x8b\xe0\x70\x0a\x86\x16\xc7\x7e\x6b\x55\x84\x94\x0c\xe2\x0b\x38\xbe\x26\x6a\xc0\x1b\xca\xad\x51\xd7\xf0\x44\x0f\xc5\x10\xd0\xd8\x0b\x2c\xef\x1d\x0a\x63\x1c\xd2\xf4\x09\xae\x3e\x3a\x76\x12\xf7\xb3\xd1\x39\x3b\xbc\x44\x5e\x92\x56\xef\x86\x0e\x55\x95\xb1\x2c\x91\x3a\x02\x21\xc1\x38\x09\x70\x6c\x18\x18\x92\x08\x0f\xc4\xd6\x87\x3a\xd7\x76\x0c\x79\x34\xc2\xd2\xa7\x79\x70\xd3\x3c\x5f\xe4\xf3\x43\xd8\xe9\x0d\xef\x5c\xb9\x02\x9c\x52\x19\x4c\x71\x2b\xfa\xb7\x78\xeb\xda\x3b\x27\xcd\xfd\x03\x55\xc6\x92\x54\x8a\x58\x9e\xe2\xc1\x4d\x8e\x78\x98\xbf\xb2\x02\x2b\x2c\x9c\x80\x3d\x42\x9b\x90\x26\x8c\x51\x9a\x0e\x79\x34\xd1\xe5\x27\x5e\x4c\xef\x64\x38\x70\xa6\x99\xed\xe3\x69\x1c\xba\x95\x40\x4e\x44\x9c\x98\x30\x37\xa6\xaf\x32\xd1\xa7\xc9\x22\xdb\x74\x63\x76\x86\x6e\xb6\x36\x26\xe4\x6c\x4c\x61\xa5\xf9\x98\xc7\x67\x90\x5c\xc6\x4d\x5c\x21\x73\x2d\x13\x7a\xda\x4e\x87\x2d\x93\xa6\xbe\xf6\x00\x35\x08\xb5\xff\xa1\xdb\x01\xe7\x17\xf9\x69\x7f\x02\x77\x6f\x53\xe6\x8d\xd5\xd9\x05\x17\x53\xb9\xb5\x4f\x11\x28\x01\x3c\x89\xc2\x71\x61\xb2\x35\xbb\x12\xd1\xb7\xe5\xfc\x4c\x69\x7d\xac\xb9\xba\x3a\x74\xe3\x82\x5b\xad\x38\xa5\xfe\x8b\xec\x7d\xe4\x48\x45\x90\xc8\xff\xf3\xc2\x79\x29\xb0\x50\x67\x5f\x79\xd2\x5a\x9e\x60\xf1\x6b\x5d\xc8\x58\x03\x15\xbb\x2f\x75\xee\x13\xf7\xdc\x45\x0b\xb0\x00\x59\x01\xdd\x02\x31\x0c\xfc\x2e\x9c\xcf\xf0\xd9\xfb\xe4\xa8\x37\x85\x6e\x97\x48\x35\x84\x24\x75\x79\xbf\xbd\x3e\xc1\x21\x5d\xaa\x4a\x6b\xfe\x56\x67\xe9\x91\x7f\xf3\x76\xfb\xe9\x23\x3d\x21\xc8\x72\x01\xe9\xc2\xfa\x03\x53\xdc\x30\x9e\x61\x5f\xf6\x86\xf7\xc4\xa1\x15\x36\x9e\x03\x70\xda\xad\x08\x5c\xce\x01\x97\xf6\xbd\x99\x49\xde\x81\x11\xb3\x58\x1b\x86\xcd\xa7\xea\xa7\xc2\x4e\x33\xfc\x4c\xa7\x42\xa5\xaa\x2a\x41\x67\xf9\x7b\x3d\xf3\x11\x8e\x32\x86\x21\x9a\x9b\xc1\x56\x7c\x2a\xc2\x4b\x90\x46\x6e\x2c\x40\x54\x41\x89\x10\xa4\x82\x92\x05\xca\x23\xd9\x1f\xf7\x9f\xaf\xf2\x78\x48\x4b\x06\x51\xaf\xb5\x50\x96\xed\x60\x8d\xb6\x3f\xdc\x52\xba\x28\xe1\x54\x45\xd1\x4d\x1c\x08\x42\x5d\xf0\x5e\xde\xb0\xfe\xbb\xe5\x3d\xde\x84\x01\x68\xda\xc1\x1a\x31\x19\x5d\xd4\x36\x96\x5c\xcc\xa2\x4a\x85\x23\x9d\x4b\x0e\x83\x7e\x1a\x6b\x9b\xda\xdf\xe9\xbc\xcd\x55\x4c\xde\x06\x3e\x41\xcb\x25\x38\x4b\xaa\x95\x7a\xf3\x25\x30\xfa\x8d\xef\xea\xa3\x9e\x01\xb3\x43\x13\x30\xb4\x37\xc9\x50\x33\x54\x25\x5d\x75\xc8\xfd\xc3\x16\x3a\xa9\x4e\x2c\x58\x9b\x87\x8f\x5b\x63\x93\x2a\x58\x4b\x0e\xd5\x04\x98\xd6\x05\xcf\xb6\x02\xa3\x12\x57\x8b\x74\x73\x23\x01\x25\x08\x6d\x39\x60\x37\xaa\xa7\x2b\x81\x7e\xc1\x5d\x71\x50\xd3\xe7\xdf\xfc\x9e\x16\x86\xee\x47\xb4\xae\xa5\x1d\x3c\xd6\xbd\x76\x00\x8a\x08\x9d\x85\xe2\x2e\xce\x0d\x50\x24\xd6\x94\x69\xa2\xb2\x9d\x88\x22\x70\xee\x75\x52\x90\x14\xb7\x4b\x4c\xce\x4d\x28\x26\xd7\xa3\x34\x47\x18\x23\x01\x57\x27\x62\xdb\x8a\xdd\x4d\x6a\x09\x61\x8c\x6d\x55\x7c\xa3\x3c\xa3\x1c\xdc\xd4\xd8\x95\xe8\x9f\x9d\x31\x6f\x98\x50\x5f\xde\xf5\xe7\xdf\xeb\xb8\x07\x60\x57\xc1\x0d\x43\x34\xae\x77\x56\x81\x03\x61\xf7\xaa\xc3\x1a\x30\x57\x0f\x23\xea\x35\x1e\xc2\x24\x2b\x44\xcd\xa2\x60\xc7\x8f\x4d\x2a\x2f\x3a\x8d\x26\x8a\x42\xd2\x60\x80\x8d\x75\xe7\x5a\x2b\x15\x55\x9f\x4c\x13\xd9\x14\xa4\x1b\x7d\xc2\xca\x36\x36\xab\x22\xb2\x4c\x04\x44\x1d\x6e\x71\x87\x3c\x1b\xcb\xd7\xfd\xdd\xfd\xe6\xfb\x61\x7f\x7f\x18\x3f\x9a\x0e\x06\xd2\xd9\x79\x1b\x6b\xee\xcf\x5a\x4a\x8a\xa3\xfd\x36\xfd\xc2\x1f\x02\x45\x74\x53\x4b\x70\xd6\x72\x24\x1e\x23\x82\x91\xb8\x58\x43\xc6\x52\x18\x44\x85\x8c\x51\xa1\x89\x5e\x0c\x50\x8b\x10\x06\x25\x33\x41\x06\x50\x7f\xca\x35\x3f\x6a\x06\x90\x95\x89\x36\x35\x58\x98\xec\x50\xd3\x0e\x0d\xc3\x85\x1b\x39\x01\x09\x5c\xbb\xea\x68\x47\x07\x33\x1a\x70\x1c\x1c\x0b\x2b\xa1\x7d\x74\xbd\xb5\xb2\xfd\xf7\xfa\x10\xcc\x1f\xce\xf7\xbb\x3d\xaf\x71\x18\x21\x64\x6b\x6a\x03\xe0\x41\xe1\x6d\x1e\x4c\x06\x5b\xa1\xb2\xa6\xaf\xe4\xdd\x7c\x6f\xbe\x40\xb6\xfd\xf4\x0b\xdc\xc1\x0e\xd6\xe5\x2b\x7e\x34\xc2\xf7\xc4\x2f\x73\xed\x00\x5a\x2e\x67\x4a\x56\x16\x84\xb5\x9b\x3a\x57\xcb\x5b\x60\xed\x5b\x18\x3f\x70\xee\x62\xeb\xe9\x10\x87\x5a\x41\x47\x00\x73\x91\xac\xf5\xcb\xe2\xd7\x0a\x85\x7e\xd3\x77\x0a\xb6\xe3\xef\x14\x69\x47\x1f\x63\x7d\x9b\x15\x59\x6f\x17\xc5\x9a\xf0\x85\x09\x09\x9c\xe2\x1c\x73\xc4\x01\x26\xd3\xd3\xed\x0f\xbb\xf2\x1d\xe3\xfa\xe5\x3b\x47\xf6\x1b\xdf\xf5\x10\x9f\x4d\xb0\x19\x63\xf5\xf4\xe7\xab\xf9\xfe\x92\x53\xb1\x2d\xb6\x3e\x60\x63\xca\x67\x41\xd2\xd9\xe2\xc6\xc3\x10\xe7\xe9\x17\xfa\x6b\xac\x05\x13\x4a\xb5\x90\x2f\xe5\xab\x40\x88\x4c\x0e\xc5\x10\x87\x7f\xfc\xe9\xb7\x9f\x7f\xf1\xd5\x6f\x7b\x8a\x39\xe9\xc6\x6b\xdc\xf7\x9e\x4e\x78\x93\xf3\x3a\xbc\x82\x23\x1b\x8c\xe0\x7b\x55\x92\xb3\xfb\x32\xb5\x82\xf2\x31\xa5\x3a\x87\xf7\x88\xf7\xd1\xb3\xa4\xe2\xf7\xc1\x62\xa8\xda\x95\x2b\xb0\xb1\x71\x4c\x05\xa8\x04\xfe\xf6\x13\xef\xd6\x86\xbf\x0c\x02\xa0\xc1\x6a\xe5\x8f\x47\x63\x5d\x3c\x31\x26\xbf\xfd\x47\x9d\x31\x61\x9e\x3d\xd5\x1f\x53\xb2\xd1\x0e\xac\x55\x61\x2c\xa4\xbe\x99\xfe\x52\x1c\x51\x3f\xcb\x62\x3c\xf9\xe3\x6b\x06\x2a\x86\xdb\x2c\x8a\x71\x2b\xda\xe1\xea\xe0\x27\xcc\xb6\xc8\xaf\x56\x6f\xa1\x66\x9f\xbb\xc8\xe4\xd1\x1c\xab\x1a\x24\xaa\xcb\x95\x06\x15\xc3\xc2\x45\x3d\xd9\x82\x53\x02\x61\x91\xcb\x55\x50\xd6\x9a\xf1\xab\x5d\x60\x02\x81\xc2\x66\x8e\x0a\x09\x35\xc2\x60\xcf\x7f\xf9\xfb\x6f\xe9\x70\x12\x0f\xf6\x28\x38\x91\x63\x25\xbd\x85\x0d\x23\x14\x5b\xb5\xae\x3c\xe6\xe8\x48\x29\x70\x5c\x15\x2e\x0d\x72\x51\x73\x6d\xae\x84\xca\xc5\xe6\x4b\x1d\x94\xcd\x8a\x1f\x46\x9b\x1a\x27\x62\x1c\x87\x25\x7a\x02\x2e\x41\x98\x89\xc4\x95\x49\x31\xb0\xae\x5d\xe8\x93\x58\x35\x59\x98\xa4\x52\xb2\x6c\xd3\x72\x4a\x04\x75\x79\x30\x5d\xc8\x97\x2e\x0b\x89\xd8\xd7\x01\xdf\x61\xdd\x5c\x86\x0d\x2b\x8d\x00\x29\xbd\x43\x7a\x63\x5b\x5e\x63\xb4\xb5\xfb\x81\x6a\xe6\x81\x7f\xb8\x88\xf7\x2c\xac\x86\x14\x95\x29\x86\x01\xe0\x31\xdd\xd0\x1d\xd6\xda\x95\x9b\x77\x85\x23\x18\x51\x45\x67\x2f\x6c\xea\x5c\xba\x17\x56\xf9\xe5\x73\xa6\xa2\xbf\xbf\x03\xa6\x41\x7b\xeb\xb9\x7f\xef\x26\xa9\xea\xa2\x6a\x5d\xe5\x33\x3b\x72\xb4\xb0\xa3\xf2\xec\x19\xfe\xa6\x7e\xd5\x30\xd0\xab\x22\x20\xca\xbb\x49\x9f\x02\x57\x27\xde\x75\x21\xc2\x10\x5b\x8b\x4c\xf2\x17\x49\x74\x89\x4c\xfa\x6b\x0d\x09\xd0\x5f\xcb\x63\x24\xc0\x87\x67\x9d\xfa\x8a\xba\x57\xc5\x63\xac\x0e\xe4\x5d\x71\x92\x13\x05\x64\x9b\x0d\x4b\x05\x75\x2d\x07\xa8\x58\x04\xed\x0e\x56\xdb\xc9\x03\x0e\x18\x44\x17\x38\x49\x0b\x39\xf1\x0c\x5d\xd8\x29\xd7\xf0\xa4\x19\xfd\xd1\x22\x57\x8c\x5a\x72\x08\xce\x36\x02\x47\x6e\x06\x15\xcf\x9e\x11\x61\xa3\xc4\x4c\xb5\x62\xdb\x29\x66\x1e\x7f\xe3\xbd\x2a\xa6\x3b\x50\xd5\x0c\x5e\xb0\x21\x38\x54\x93\x37\x16\x5a\x7b\x8f\x15\x80\xad\x4a\x94\x73\x99\x80\x19\x46\x7d\x4a\xbc\x20\x53\xc8\xf4\xda\x05\x05\x89\x4b\xa1\x60\xbb\x55\x20\x97\x9b\xea\x8c\x4e\x82\xc9\xdb\x5a\xbb\x85\x9c\x53\x2c\xe6\xab\x00\x35\x3d\x03\x4a\xb1\xbf\xfd\xce\x9b\x7e\x89\xc2\xbe\x60\x67\x5c\x0c\x65\xa0\x58\x46\x50\xc5\x9b\xc7\x0d\x98\x2c\x74\x24\x56\x32\x57\x53\xde\xcd\x15\x90\xbc\x4a\x54\xd3\x67\x98\x02\xba\x5c\xc3\x1f\x55\x43\x54\x44\x11\xb5\x58\x8d\x8d\xc9\x84\xca\xc0\xa1\xc5\x0c\x71\x3e\x6b\x0d\x8a\xf3\x35\x7e\x3d\x1a\x4f\x30\x72\x28\xe6\x83\x11\x0e\x00\x82\x1b\x3f\xad\xd7\x6b\xe1\xd1\x28\x90\x3e\x34\x0d\xd0\x25\x30\x76\x12\x7c\x44\x19\x8a\x47\xde\xc7\xcb\xa4\x68\xa8\xcf\x45\x90\x42\xe8\x57\xf3\xae\x2d\x10\x27\xab\xef\x39\x8a\x9b\xe1\xe6\xef\x3e\x81\xad\x21\x28\xe2\xa0\x41\xd0\x12\xdb\x8d\x71\x14\x2b\x11\x04\x81\xff\x6c\xe5\xd7\x33\x8a\xd5\xe4\xf5\x04\xb7\xe5\x78\x1a\xcd\x82\x9e\xc8\x5c\x1a\x25\x25\xdc\x95\xa1\x10\x0f\xe2\x65\x37\x8d\x03\x65\x61\x3a\x2b\x69\xd5\x08\xe9\x94\x14\x33\xb3\x8f\x2b\x33\x0e\xae\x59\xc5\xe4\x94\x70\x9f\x01\x88\xee\x37\x19\x96\xbb\x36\xc0\xc3\xbd\x27\x57\x72\xca\xa0\x9b\x1b\x58\xcc\x4f\x78\x73\x2b\x72\xb9\xa1\x4b\x2f\x8e\x8b\xa1\x5b\xba\x0a\x76\x40\xb1\x7b\x5d\xab\xc0\xb6\x86\xb7\x0b\x01\xa3\xc9\x51\x10\x40\x7c\x40\x97\x80\xba\x86\x13\x8f\x72\x37\x68\x34\xb8\x75\x93\xcb\x5b\x89\x70\x2c\x8a\xba\x4e\xb3\xcc\xa4\x5c\xef\x8b\xcd\x0b\x17\xa7\xcb\x85\x4c\xd6\x96\x10\x55\x11\x03\xa4\x31\xd0\x35\xb7\x50\x47\xa7\xb5\x47\x24\xae\x66\x7a\x53\xe8\x32\xab\x4f\x10\x89\xef\xd0\x41\x93\x6a\x02\x49\x6a\x40\x68\x8a\x6a\x08\x58\xba\x18\x52\x29\xec\x47\xcd\xb7\x5e\x6c\xc2\xbc\x26\x42\x80\xa6\x83\x9b\x21\x79\x64\x6f\xac\x32\x60\x04\x27\x01\x4f\x60\xbf\xe4\x76\x35\x60\x52\xdb\xf1\x59\x97\x5a\x91\x89\xc7\x63\x96\xc4\xd6\x01\xae\x3f\x0f\x70\x89\x88\xab\xaa\xd1\x4a\xac\x71\x91\xae\x95\xdc\x2a\x02\xf4\x60\xf0\xb3\xc8\x6c\x36\x1d\x23\xbc\x10\x82\x75\xe5\x16\x2c\x28\x00\x83\x4e\x4d\xb0\x6e\xbd\x59\x67\xab\x30\xb1\x0e\x4f\x7f\x2e\xdd\x3b\x48\x55\x5a\xb3\x7b\x68\x66\xab\x1d\x2a\xb1\x4a\xd1\x2e\xa1\x0b\x16\x6f\x22\x50\x2f\xd3\x33\x78\x0f\x37\xb1\x0b\x17\xc3\xe2\xfc\x9b\xb7\xe9\x5a\x63\xbc\xa8\x07\xaf\x08\xe3\x45\x41\xba\xdf\xc9\xbd\x26\xc2\x21\x0b\x0b\xdc\xdd\xcd\x53\xe0\x2a\x36\x98\x0d\x55\x3e\x68\x48\x89\x17\x8b\xc4\x68\x72\xef\xb0\x73\x19\xc0\x18\xac\xd7\x1d\xb8\xe8\xb8\x55\x14\xd0\xe8\xb7\xa3\x60\xaa\xc5\xf6\xe6\x5c\xfb\xd9\x7c\xf7\x96\x4d\xe8\xdd\x5b\x11\x68\x5c\x54\x44\x76\x24\x79\xe0\xf7\x3c\xff\xc9\x5f\x7e\xf9\x1d\x68\x52\xf4\x1f\x69\x50\xfe\xfc\xd1\x27\x7f\xf9\xec\x3b\x37\x32\x6a\x5d\x3f\xdd\x97\xb9\x6c\x53\x23\x54\x07\xe1\xad\xa4\x0a\xe5\x8a\x7d\x25\xef\xd4\x5c\xf4\xff\x81\xf6\x42\x17\xd4\xb5\xc0\xf8\x01\x7d\xe9\x13\x91\xcf\xbc\xee\xf9\xc6\x97\x12\xab\xe1\x35\x9f\x53\x76\x7f\x6c\xc1\x97\x6a\xc5\xb4\x8c\xdf\x45\xa9\xe0\xaf\xdd\x8f\x10\x40\x4a\xd1\x36\xa9\xa6\xbe\x47\xac\x81\x08\xf9\x1c\x28\x92\x88\xfc\x39\xa1\xc7\x3f\xf1\x2f\x83\x1e\xdc\xcc\xf7\x41\x4f\x4e\xe0\x4e\xdd\x5d\x44\x71\xaa\xce\xa6\x94\x5f\x35\x24\xa5\xf8\xf2\x6e\x04\x5b\x2e\x12\x8c\x42\x20\xc0\xd9\x11\xbc\x2b\x36\xd1\x45\x80\x28\x7e\x95\xa9\x13\x85\x88\x34\x67\x40\xc6\x1b\x15\x21\xac\x38\x26\x5a\xca\xb4\xfe\x79\x74\x62\xfc\xbf\x8f\x60\xf5\xf3\x9b\x31\xf0\x0e\x1a\x2b\x3b\x94\x26\x80\xb5\x3d\xd2\x86\xa4\x80\xae\x78\x04\xb1\x9a\x01\x2f\xb1\x9b\x46\x85\x67\xe9\xef\x2a\xa2\x1d\x94\x7b\x30\x82\x70\xeb\x1c\x9e\x6a\xbf\xd4\x57\xc0\x4c\xa8\x7c\x29\xad\x02\x3e\xd9\x19\x31\x3d\xce\x21\x16\x68\xe0\xec\x4e\xb5\x37\xf7\x40\x99\x07\x16\x35\x23\xa9\xc3\x17\x0a\x26\xd9\x3a\x6c\xc1\x22\xbf\xf9\x24\x7c\xd6\x20\x21\xe8\x6a\x62\x70\xe8\xba\x77\x3b\x97\x07\x79\xfe\x6e\xa3\x7d\xf4\x22\xc0\x28\x73\xc5\x4e\xf1\x55\x17\xfd\x8d\xf7\x2e\xb9\x85\x6b\xec\xb6\x11\x80\xac\x53\x70\xd4\x76\xdc\x59\x9d\x6e\x8f\xbd\x8c\x01\xa0\xd3\x8d\xb7\xd2\xc8\xb6\xc7\x00\x01\x03\xba\xa1\x3d\x19\x4d\x8a\xf0\xee\xc0\xf0\x49\x03\xe0\x92\x50\x1c\x44\xa4\x4c\x82\x8f\xe5\x6c\x33\x09\x0f\xaa\x8d\xb1\x06\xe2\xf1\x3b\x0d\x46\xe6\x4c\x05\xf9\x08\x7d\xe8\x30\x5f\x82\xd7\x8c\xdd\x0d\xf5\xb7\xa5\x7d\x76\x98\xb6\x37\xc6\xfd\xa1\x17\x30\xa9\x1c\x83\xc7\xde\x40\x72\x02\x26\xf7\xa3\x4f\x4f\xc4\xec\x09\x7c\xb3\xff\x89\x63\x3a\x0a\x05\x12\x3e\xe5\x0c\x30\x12\x1f\xeb\xba\x18\x34\xee\xbf\x98\x95\x7b\xd6\x3b\xe3\xde\xe4\x7c\x17\x48\x19\x06\x81\x7b\xc3\x9b\xa8\xec\x90\xc5\xd5\x99\xbf\x13\xdc\xef\xa6\x06\x80\x97\xf0\xca\xd8\x9b\x77\xe2\x9e\x36\xd2\x14\xf0\x21\x2b\x35\x0f\xd2\xab\x62\xbb\xb5\x02\xda\x2b\x20\xba\xc6\x4e\xf0\x1a\xe0\x9b\x19\xe0\x5e\x3a\x5a\xd0\x86\x18\xe9\xfc\x72\xc4\x18\x68\x2b\x46\xb9\xa9\xa4\x19\xd2\xda\x80\x08\x6b\x69\x81\xc4\x8e\x82\xe0\x39\x39\x6c\x21\x6e\x42\x39\xda\xdc\x35\x58\x7e\xb4\x61\xb2\xdd\xdd\xd8\xf2\xb7\xd7\x94\x7d\x13\xc1\x27\xa5\x04\x63\xb4\x8b\x54\x52\xdb\xa0\xb5\xba\xb5\xde\x01\x3b\x43\x17\xaa\x68\xf3\xd2\x43\xc5\xb3\x8d\xa5\xd7\xde\x13\xf4\x05\x49\x68\xdb\xf1\x43\x83\xdd\xcd\x0e\x4c\xc5\x39\x99\x56\x7a\x89\x46\xeb\xb2\x43\x41\x5c\x09\xe6\x77\x3d\x68\x63\xb8\xe8\xe9\xa3\x2b\xd2\xe4\xe9\x0b\x0d\xd1\xc6\xb0\x0c\xb2\x5e\x42\x05\xfa\x8e\x9f\x34\x87\x52\xaf\x08\xe2\xd8\x6c\x55\x7b\xef\x54\x9c\xf4\x24\x9f\x79\xa0\x4b\xeb\x17\x83\xd0\xf0\xa7\xc5\xe2\xa7\xb9\x1c\xb9\xf9\xbc\xe3\x35\x7d\x67\x39\x4a\x00\xbd\x0e\x34\x09\xd8\x3b\x28\x1a\x7e\x70\x80\x65\xd4\x34\xe4\x44\x32\xe1\x10\xc0\x98\x24\x09\x6c\x80\x89\x19\x7f\x08\xc3\xf5\x17\xd8\x5a\x45\xf2\xc1\x84\xb1\xe3\x05\x14\x5f\x8c\x21\xd4\x93\x37\x33\x82\x07\x69\x5a\x59\x5f\xbc\x81\x41\xb3\x72\x14\x62\x0e\x22\x9c\xb0\xc3\x28\x09\x89\xa5\x53\xd1\x4c\x1c\x3f\xf6\xc8\x3e\x6e\xd2\x0e\x78\x83\xc0\x83\xa6\xb9\x46\x94\x1c\x11\xf1\x96\xdc\x57\x17\xf9\xa6\x81\x3f\x2a\xe2\xf8\x94\x26\x49\xbe\x25\xf5\x12\x1b\x55\xe4\xf0\x89\x62\x31\x75\x1e\x16\x76\xcb\x47\xd2\xb3\xf4\xf0\x3d\x7f\x37\x15\xce\x11\xa1\x8b\x8d\x9b\x87\x8e\xde\xca\xe9\xce\x21\x07\x21\x2a\xb8\x01\xc7\xb9\xac\x23\x18\xfe\xc5\xee\xb5\x3a\x63\x8f\xbd\xed\x19\x03\xa2\x3f\x5f\x0d\x01\x51\xea\x87\x28\x50\x6f\xc6\xcd\x67\x8d\x94\x32\xc9\x48\xe5\x50\xfa\x56\xd2\x7f\x23\x83\x7d\x6a\xaf\xb3\xb8\x25\x07\x42\x18\xdc\xa6\xa1\x12\x72\x15\xe9\x32\x89\x3e\xd2\x1d\xb1\xaa\xdf\x85\x44\x12\xee\x83\x6e\xbc\xd8\x51\x52\x38\xb4\xad\x5b\x15\xf3\xc0\x84\xeb\xfd\x43\xc2\xdc\xb4\xff\x3d\x29\xcc\x4d\xe3\x52\xad\x64\x4a\x6e\x1f\xba\xeb\x29\xa0\x57\x6a\xf0\xc9\xe3\xf3\xf1\x04\xc0\xc8\x41\x33\xde\x4b\x67\xc2\x50\xfd\xf6\xe8\x2b\xbc\x95\xc6\x7e\xe8\xf0\x45\xf1\xe0\xa8\xb8\x31\x6f\x04\x25\xeb\x0e\x28\x0f\x11\xc5\xed\x63\x08\xb4\xcb\xe7\x20\x78\x64\x65\x78\x4e\xf5\xe1\x9d\x19\x42\xc1\x61\x16\x86\xcb\x3b\x60\x05\x53\x67\x41\x8f\xbc\x78\x51\x23\x00\xe6\x82\x54\xfd\xd0\x99\x2d\x9d\x7e\x76\xea\x23\x30\x36\xc9\x10\xb3\x3f\xe6\xd7\xef\x63\x86\x93\x93\xc9\xf6\xea\x64\x32\x29\x29\x4f\x03\x2c\xbd\xd4\x85\xf2\xc5\x4f\x2d\xad\x60\x32\x81\xc0\xc4\x96\x28\x4c\xb9\x2e\x4d\x51\xd5\x40\x44\x95\x79\xc4\x7b\xbc\xe7\xdd\x3c\xd4\x33\xc0\xe7\xe7\x17\xce\x97\x2f\x76\x69\x8d\x2e\x2d\x2f\xe3\x29\xbd\xa2\x8d\xbe\xd9\x8b\x3b\xc2\xd8\x28\x0c\x81\xf9\x06\x74\x50\x7f\x72\x28\x72\x32\x8f\x2d\x77\x67\x7d\xe3\x28\x3b\x60\xfe\x58\xd0\x5d\x9c\x02\xa2\xc3\x03\x54\x70\xda\xaa\xa1\x8a\x60\x85\xa6\x35\xdf\xc9\xb5\x4f\x83\xfb\x92\x1a\xe4\x93\x7f\x75\x98\xa5\xa9\xa3\xa2\xd0\xe3\xa8\x84\xcf\xa7\xc3\xe7\xd2\xd1\x5e\x30\x04\x26\x10\x65\x78\x57\x4b\x82\x61\x88\xf1\x12\xe4\x59\xb4\x42\xa0\x49\x12\x26\x66\x14\x9b\xae\x1e\x46\xaf\x62\x17\x1d\xba\x1b\x9f\xd0\x88\x79\x43\x44\x57\xd7\x71\x47\x18\x0c\xbc\xf4\x80\xe7\x2f\xdc\x26\x5d\x34\xc9\xd3\xed\x81\x34\xdf\x2a\x4e\xb8\x6c\x02\x5b\x87\xc4\xe4\xab\xbb\x03\xde\xd2\x43\xbe\xdd\x8e\x87\x49\x84\x39\x30\x53\x17\xb4\x71\xe0\x57\xed\x5e\x14\xd5\x12\x81\x97\x2c\xce\x49\x96\xf3\xb2\x0a\xca\xf9\xe4\x11\x79\x97\x52\xc0\x60\x4c\x10\x85\x9f\x34\xf7\x51\xfd\xc5\x8d\x75\x72\x14\xbe\x37\x0f\x26\xd0\xd7\xbf\x70\x0d\x55\x67\xfa\x42\x27\x72\x1c\x9f\x67\x7d\xf3\xc7\x4b\xdf\x5a\x3a\xea\x99\x7d\xff\x09\x07\x4d\x86\xbd\xf6\x2f\x8c\x2f\xba\x3b\x46\xfd\xad\x59\x0e\x0b\xe3\xe4\x24\x94\x10\x4e\xef\xaa\x09\xdb\x91\x24\xd5\xd2\x9b\x11\x52\x6f\x76\x4f\x12\xf9\x3d\x6f\xe3\x01\xf7\x4c\xf3\x64\x09\x27\x4a\xa5\x13\xe1\xd0\x24\x3c\xa1\xa7\xc1\x21\xab\x52\xfe\x07\x94\xbf\x4c\x06\x3a\x5e\x49\xec\x8f\xcc\x2f\x91\x46\xb4\xd0\xa5\xd7\xe5\x2d\x8e\x29\xe6\x05\xad\x43\x53\xfc\x8d\x47\xcd\x93\x09\x15\x9b\xbb\x4d\x51\x66\xa8\xa9\x04\x66\xed\xf5\x57\x18\x84\xc7\xe2\x6f\x65\x06\xad\x3f\x6a\x50\xda\xa1\xc3\x82\xd6\xe6\x41\x6b\xe1\x18\x69\x03\xf2\x71\xea\x15\x48\x8b\x64\xd4\x68\x73\x93\x11\x88\xad\x1a\x83\x51\xde\x15\x41\x9b\xda\x8c\x0b\x17\x81\x56\xd1\xc8\x04\x1b\xdb\x56\x65\x81\x50\xb3\x6a\x61\x18\xac\x14\x55\x65\x92\x38\x54\x76\x2a\xba\x46\x84\x34\xab\x2f\x76\x86\x6e\x5a\x17\xf0\xea\xef\x45\x64\xa3\x0b\xe7\xe9\x4f\x8b\x2d\x2d\xdc\xab\x37\xae\x75\xe6\xf7\x98\xff\x98\x2b\xf4\xc5\x6c\x6f\xe6\x96\xc1\x8b\xfa\x7e\xa3\xde\x06\x75\x4a\x0a\xd8\x8c\x50\xb3\xa5\x7c\x1c\x1c\xba\x0f\x1a\x06\xa8\xde\x60\x02\xfc\xef\x4b\x7f\xfc\x9a\xf2\xad\x31\x0a\x3f\x7c\x7a\xf5\xea\xd5\x4f\x51\xaf\xff\xb4\x56\x29\xd8\x25\xfc\x98\x13\x9c\xf8\x26\xa9\x84\x4a\x02\x4e\x3f\x95\xc3\x29\x3a\x12\x39\xbc\xc7\x20\x49\x99\x2f\xd8\x72\x72\xa8\xd0\x0d\x5b\x53\x5a\xe2\xc4\x99\x19\xda\xd8\xb4\x30\x35\x26\x1b\xcc\x05\x15\x88\x18\x9b\x5b\xfb\x8a\xad\x43\x76\x9e\x4d\xc8\x46\x81\x91\x79\x93\xfe\xf2\x52\xfb\xe9\x3e\x50\xd2\x10\x15\xa8\x5a\x13\x99\xe9\x72\x67\xa4\x11\x3a\x1c\x75\x4a\x85\x41\x4a\x95\x43\x08\x0b\xc9\xb0\x44\xcd\x1a\xd7\x0f\xf3\x2a\xa7\x01\x48\xc9\x15\x3c\x8a\x2b\x8f\x95\xea\x0c\x66\x73\x6f\x4d\x79\x23\x12\x68\xe1\x9a\x5c\x3b\xe3\x3b\x19\x84\x37\x48\x47\x03\xf5\x48\x8f\xb9\x5c\x37\x1e\x8d\x05\x5f\x46\xd7\x81\x16\xa4\xb4\x0e\x92\x05\xa9\x80\x76\xeb\xa2\xeb\x4e\x2c\x8a\x8d\xea\x82\xd7\x4b\x72\x17\xec\x08\xc7\x8d\x32\x8f\xf7\xf5\xf0\xf4\x80\xbd\xe1\x44\xf9\xf6\xc6\x3d\xce\x2d\x6a\x8a\x76\x39\x90\xa0\x96\x54\x08\x48\x88\x24\x6e\x21\x93\xbd\x9c\x0e\x16\xa1\x4e\x17\x27\x3a\x0e\x47\xdd\x86\xdc\x6a\x97\xb0\x0a\xfb\x11\x97\x46\x60\x48\x61\x3a\x73\x83\x1c\x79\xa7\x62\xee\x22\x85\x91\x34\x6c\x91\x52\xd4\xb9\x31\x4d\x65\xe7\xe1\x61\x67\xe8\x4e\x88\x52\xe5\x82\x33\x68\xc6\x58\x73\x66\x2b\x1d\x0e\x6c\x8e\x2b\x00\x56\x01\xe8\xc9\xb0\x14\x71\x10\xb4\x8b\x29\x67\x28\x07\x07\x6a\x2d\x7c\x47\x93\xdc\xce\x66\xed\x88\x2e\x19\xf2\x3b\x24\x20\x1b\x09\x0c\x8e\xad\xc7\x70\x04\xb3\xd9\x51\x24\x82\x39\xcc\x37\x3f\x21\x92\x39\xde\x96\x11\xc9\x1c\xa2\x56\x3c\x42\xd9\xac\xdb\x25\x44\x39\x69\xac\x51\xf3\x3a\x99\xe8\x09\x15\xa2\xa6\xb6\x51\x31\x30\xb5\x95\x5d\x20\x29\xca\x94\x37\x31\xa2\x28\xc7\x6c\xee\x53\xfb\xd5\x7a\x73\x0c\xe1\x90\xfd\x9d\xcb\xf7\xf5\xf5\xf4\x56\x9c\xab\x2e\x06\x40\xd7\x2a\x59\xd0\x54\xeb\xd3\xed\xf5\x63\x0e\x47\x10\x00\xf4\x2a\x62\x6c\x65\xe3\x6d\xeb\x45\xbd\x73\xf8\x40\x3e\x73\x0c\x80\xdc\x44\x51\x27\xff\x54\x02\x32\x23\x13\x4d\x51\x45\x3e\x38\xb4\x05\x40\x0d\x24\x01\x2f\xb0\xee\x80\x73\x35\x8d\x7f\x51\xe0\xb6\x9b\x12\xd5\x82\x94\x8a\xd6\x9b\xbd\xf6\x46\x43\x01\x62\xb1\x10\x74\x78\x0f\xf3\x33\xaa\xe0\x46\x4b\x1c\xd0\xec\xd2\x04\x95\x13\xc4\xd2\xec\x7b\x23\x5e\x74\xd2\x9b\x1c\xf6\x27\x9e\xeb\x0a\x78\xca\xf3\x7c\xd5\x9f\xbe\xed\x0d\x3f\x09\xa2\x21\xbd\xdb\x93\x11\x08\x8e\xb1\xd5\x10\x8a\x5e\xb0\xca\x75\x1e\x52\xf9\x46\xd1\x20\x7c\x5f\x8d\xef\x16\x48\x20\x88\x8e\x3a\xe9\xe9\x12\x7d\xa2\x8a\x39\x90\x87\xfe\x96\xb3\x0a\xe4\x58\xc9\x57\xac\x80\x72\x95\x4c\x5f\x35\xd5\x9e\x1a\x6b\x6d\x7c\x08\xbe\x96\x2b\xb6\xaa\xd9\x79\x38\xc3\x95\xa3\x35\x81\x78\x38\x0b\xad\xcd\x4d\x0a\x1e\x57\x9f\x43\xee\x76\xf5\x31\x83\x3e\x33\x4c\xb1\x87\x97\x73\x0d\x64\x9b\xef\x27\xf0\x92\xeb\xbb\x97\x26\xed\x3f\xc9\x05\x04\x8c\x84\xb1\xe0\xd5\x55\xcc\xe0\x20\x91\x42\x1a\x15\xe2\x33\xce\x80\xe2\x1f\xcc\x28\x4e\x53\xc5\xd5\x4c\xbf\x24\x00\x0d\x9d\x4b\x04\xc5\xa4\x85\x98\xb7\x68\xc3\x75\x55\x7a\x46\x8e\x1a\x69\xcc\x9b\x41\x50\x98\x46\x85\x64\x05\x2e\x2f\x39\x02\x88\xcc\x8f\x4a\x22\xc7\x53\x20\xf2\x4f\xc1\x28\x35\xe5\x2a\x68\x90\xe9\xa2\x92\x4f\xe1\x7d\xe4\xab\x4c\xe5\x72\x0e\xec\x4f\xd6\xf3\x89\xb4\xea\x74\x4f\x35\x73\xb5\x42\xce\x1f\xfa\x1a\x25\x3e\x9d\x7d\xa2\x03\x7d\xae\x81\xfa\xf7\xc3\x19\x58\x8c\x71\x04\xcc\x68\x09\x54\x77\xe8\x12\x7b\xb4\x1b\x54\xba\x28\x39\xdb\xf6\x23\xf4\x52\x8c\x3f\x6c\x1f\x8d\x49\xd6\xe0\x28\xe3\xf0\xb2\xea\xd4\x17\x74\x3c\x60\x57\x4e\x32\x2a\xa9\xd0\x5c\xa5\xe1\x7a\xb7\xc6\xc1\x2c\x0a\x92\x0a\x1c\x1e\xb4\xb7\x77\x49\x93\x11\x0e\xf2\xc7\xe7\xf0\xb2\xfd\xec\x4a\x6b\x76\xad\x75\x7b\xd7\x5b\xbb\x6e\xa4\x80\xd0\x1d\xe0\x55\x56\x77\x20\xd5\x85\x91\x31\xa5\x1b\xaf\x03\x3c\xd3\x02\x26\x8d\xac\x06\x32\x61\xf4\x4a\x22\xea\x0a\xfb\xca\x15\xd2\x28\xa3\xa5\x33\x05\x8c\xc8\x1d\x94\xfb\xd9\xe6\x96\x62\xee\x3f\x12\x0a\x42\xd9\xf5\x34\x5e\xea\x1e\x31\x98\xbc\xdf\x19\xd9\x35\x54\x3a\x36\x23\xb3\x86\x59\x1a\x09\xea\x66\xb0\xce\xf5\x63\xc9\xc7\x54\x9f\x68\xed\xae\xb6\x56\xb6\xd1\xcd\xf3\xe2\x8e\x7f\x63\x9a\x23\xba\x39\x97\x2d\xa5\x68\x91\xbb\xf4\x7c\xab\x4b\xe9\x93\xea\x52\xbe\x64\xfd\x32\x2e\xef\xf2\xc6\xc2\x46\x2b\x08\x39\x33\x85\x12\xdf\x39\x65\x37\x7c\x90\x84\x5b\xdd\x3d\xa6\xc8\x42\x56\x01\x29\xb3\x35\x2c\x7f\x51\xf9\xf0\x9e\x4e\xd9\x76\xca\xb8\x54\x0c\x73\x9e\xb2\x38\x60\x72\x60\xd7\x29\xda\x14\xeb\x72\xad\x8e\x6e\xab\xc3\x79\x74\xae\xd3\x11\x28\x27\x14\x71\x15\x71\x28\xcb\x07\xde\x05\xbe\x4a\x49\xc8\xd0\x6b\x80\x89\xb2\xa7\x54\x7b\x5c\x10\xb9\x95\x3e\x91\x10\x05\x89\xad\x86\x93\x93\x4b\xd3\x48\x29\x56\x02\x19\x51\x39\x33\x49\xce\x34\x22\xdf\x79\x97\xa1\xef\x31\x78\xcd\xf6\xe1\xbb\x2e\xe8\xee\xe4\x18\xe7\x93\x11\xb9\xb5\x38\xfb\x1e\xba\xf4\x86\x37\x3a\xcf\x84\x3c\x41\x3e\x15\xec\x20\x88\x62\xad\x7b\xd3\x4f\xda\x9b\x7b\xdc\x15\xba\x54\x61\x84\xdc\x39\x6c\xfa\x43\x8b\xcd\xc3\x7a\xe7\xe0\x48\x45\x5b\x53\x7d\x8c\x2d\xcc\xbb\xae\x56\x31\x74\xd4\x39\x85\x17\x53\xd5\xb1\x3a\xe7\x14\x46\x59\xc7\x0e\xd0\xed\xb1\xd6\xeb\x45\xb2\x78\x92\xaf\xdd\x1b\xec\xfa\x1f\xbe\x79\x6f\xb4\xf1\x91\x60\xef\x20\x99\x3a\xd5\xf9\xb9\xbe\xff\xe0\xba\xb9\xf4\x39\xbc\x11\xd6\xbb\x93\x1f\x04\xd0\xc5\x5d\x6e\x9f\x7f\xc4\x09\xdf\x05\x57\xf1\xa8\x03\xab\x99\x18\xfd\x04\x1f\xbc\xd4\x30\x19\xf4\x1f\xeb\x82\x17\xa6\x3f\xcd\x05\x1f\x1e\x69\x70\xa3\xcc\x18\xea\xc7\x0c\xbd\x94\x99\x6d\x23\x6e\x06\x26\xdd\x17\xea\x06\xfb\xf1\x8b\x43\x7a\x54\x74\x40\xf6\x73\x2f\x0e\x75\xf1\xd0\x26\xde\x20\xea\x86\x23\x8a\x14\xd1\x13\x78\xca\x42\xd7\x88\x92\xa0\x55\xe8\xbf\xc0\xff\x07\xef\x12\x25\xf9\x37\x31\x94\x9f\x72\xbe\x89\xef\x74\xf1\x86\x61\x66\x33\x63\x48\x2a\xf5\xc6\x6e\x90\x6d\x65\x7f\x02\x01\x15\xb5\xe4\xb4\x8f\x84\xaa\xa6\x96\xba\x07\xcc\x32\x99\xb7\xe5\xac\xca\xfd\x21\xd2\x39\x5c\xa8\x6f\x5e\x00\xcf\x5c\x3b\xe0\x6b\x40\x06\x4c\x25\x7f\x05\x0f\xa6\xf9\x7b\xac\x05\x2e\x0d\x37\xc1\x9d\x05\x40\xec\xd6\x37\x42\x76\x54\x81\xb8\x9b\xfd\x85\x1d\x10\xbd\xd1\xa6\x61\xa2\xb3\x36\xde\x80\x59\xdc\x6b\xdf\x9d\x6e\x1f\x3c\x6b\x1e\x1e\x07\xa5\xec\xe8\x4b\x99\x69\x89\x82\x42\xd0\x14\xae\x60\x12\x71\xcc\x68\xa3\xb3\x95\x4a\x99\xec\x74\xda\xe5\x44\x3a\x18\x26\x8e\xa1\x2d\x8f\x82\x23\xb0\x02\xaa\xc0\x41\x2a\x63\x5a\xdb\x24\x82\x23\xcd\x60\x9e\x4c\xbe\x2c\xc8\xf5\x29\x85\x0c\x6e\x94\x3d\x98\xa4\x45\x32\xb4\xa8\x2d\x8d\x0b\x4c\xe4\xc2\x25\xa8\xcf\xc8\x2d\xcf\x54\x7b\xa7\x8e\xae\x66\xda\x01\x12\xca\xb5\xbe\x6c\xec\x3a\xc8\x35\x74\x6e\x22\xa1\xed\xb7\x27\xe5\x0e\x06\x48\xca\xbd\xe7\x41\x6a\x1e\xe3\x76\x25\x35\x4b\x7a\xad\xea\xd7\x7b\xf1\x0c\x73\xca\x84\xfa\x35\x01\x7e\x42\xc7\x7f\xaf\x0f\xc9\xbd\x90\xdb\x72\x2b\xe1\x63\x18\x70\xda\x5e\xc1\x40\x12\xac\x84\x30\x30\x01\x7e\x0e\x06\x98\x16\x8f\x5d\x97\x80\x0a\xe7\xe6\xa6\x54\xe6\xa6\xf2\x83\xc1\x5d\xd4\x48\x12\x66\xea\x0e\x48\xb0\x3f\x87\x2e\x83\x30\x50\x70\xb4\x4c\x20\x6a\x9b\xe1\x42\x62\x7e\x37\xb6\xf3\x07\x19\xb6\x64\x00\x53\xa7\x2f\x6b\x8b\xb5\x02\xd3\xbb\x40\xe2\x13\x84\xd2\x94\xda\x49\xdf\x99\x16\x5e\xe4\x18\x35\x2c\x1f\x18\x35\xad\xb7\xf1\xc8\x64\x11\x71\x59\x97\xc3\xec\x84\x01\xaa\x3b\xac\xa4\xc8\x99\x37\x4b\x43\xbc\x8d\x8e\x1d\x52\x81\xd4\x9a\xe7\xd9\x48\xe8\xd9\x68\x4f\x05\x7f\x32\x89\x42\xd2\x3a\x0e\x6b\xf8\x6c\x92\x2f\xae\xd2\x66\xaa\x27\xd2\xdc\x85\x4e\x17\xe0\x26\x92\x78\x6f\x11\x35\xfe\xeb\x7c\xde\x8a\x67\x4d\xd1\xc4\x57\xd1\x1b\xcc\x31\x44\xb5\x6f\x8b\xfc\xc8\xa1\xc1\x05\x3b\xb5\xb1\xe2\x63\x4a\xa3\xe6\x45\xbe\x3c\x0d\x38\x84\xd7\x97\xe6\x01\x16\x22\xa6\xa5\x2f\x7c\x13\x19\x12\x68\xc3\x9c\xe5\x2d\x22\x39\x30\x55\xed\xf4\x16\xb4\x62\xa4\xee\x30\x45\xc2\x3f\x0e\x33\xd3\x89\xc3\x22\x28\x74\xdd\xb5\x8b\xc4\xf8\x48\xff\xa8\xa1\xef\x2c\x9a\xdd\xf2\xa2\xf8\x49\x04\x61\x0c\xe3\x92\x84\x5f\x76\xd1\xc2\x84\x32\x98\x91\x73\x5a\x1d\x7d\x1a\x58\x86\xed\x1f\x9e\x68\x31\x81\x22\xab\xc2\x78\x11\xc8\x5c\x19\x61\x68\x39\xdc\xa2\xf0\x06\xde\xf8\xe2\xad\x95\xc0\x7c\x43\x83\x18\xdd\x0d\x2a\x25\x9d\x77\xef\x6e\x7b\x73\x5d\xda\x35\xa4\x1d\xd7\x36\xf2\x08\xaa\x44\x69\xc6\x75\x55\x95\x53\x96\x08\xfe\x5d\xf7\x17\xc7\xf0\x14\x59\x3d\xb0\xa4\x2e\x7d\x99\x0f\x54\x29\xc5\x54\x95\x25\x24\x2c\x53\x45\x78\x0b\x0a\x2f\x00\x28\x45\xdf\x48\xf3\xa6\x40\x38\x39\x7c\x28\x2b\xbc\x2a\x52\x51\x14\x9c\x6c\xde\x9f\x9e\x69\x3d\x3e\x50\x65\x45\xa7\x84\x5d\x06\xaf\xa1\xc0\x18\xd4\x00\xd0\x83\x63\x46\xae\x47\x43\xd6\x8d\xa1\x93\x4f\x13\x68\x0c\x7a\x95\xb4\x44\x0e\x4f\xed\x1f\xd5\x70\x4e\xd9\xae\x84\xd2\x86\xe9\xe4\x89\xa1\xd6\x06\x61\xba\x8a\xe4\x47\xad\x29\xbc\xf1\xa5\x96\xf5\xf9\xd6\x44\xdd\x1f\x9e\x48\xec\x39\x9d\x2f\xf5\x39\x9c\x1a\x31\x78\xff\x87\xd0\x00\x35\x05\x73\xd1\xe4\x30\x17\x0d\x66\x05\xd6\x11\x23\xc1\x57\xf4\x55\xa8\x50\x8f\xd0\x57\xd4\xdc\x28\x63\x4b\xf8\xab\x70\x42\xd2\x57\xbe\x5d\x19\x2d\x6b\xbf\x1e\x0f\x7d\xf2\x9f\xaf\x62\xaa\xc5\x6b\x07\xe1\xaf\x6b\xf7\x79\x01\xf2\x69\x51\xac\x03\x0a\x63\x8b\xb5\x43\xe1\xd3\xb1\xe1\x84\x13\x77\x84\xcb\xf8\xc1\x81\x44\x44\xf9\xfe\x70\xac\x86\xe1\x3e\x8d\x95\xf1\x13\x1a\x07\x33\xd1\x02\x43\x7f\x8f\xf5\xa2\x62\xe9\xa2\x05\xec\x9d\x8a\x81\x53\x23\xcd\xc3\x43\x6f\x62\x21\x46\x14\x5a\xbc\xb1\x76\x38\xdb\x5a\x62\x8d\xce\xc2\x0d\xe5\x31\x4a\xe0\x4c\x71\xda\xf2\x76\xa7\x5e\xbd\x4a\x00\xe3\x77\x07\x30\xde\x16\x08\x99\x0c\x52\xa9\x95\xe4\xa1\x07\xb3\x1c\x63\x55\x4b\x69\x49\x7b\xe2\xd0\x2d\x71\xd8\x8f\x51\xc3\x5b\xde\xe2\x5c\x27\xe6\xdc\x9d\x5e\x33\xd8\x3a\x39\x92\x27\xdc\x82\x1c\x40\xf3\x66\x6f\x24\xaf\xd1\x0d\xca\x26\x9c\x2f\xd1\x91\x6e\x26\xb0\x1e\xd5\x81\x8b\x6e\x96\x0f\x81\x75\x26\x8a\x9f\xd0\x42\x1c\x35\xdd\x06\x0c\xeb\xe3\x48\x91\xcf\x0e\x6f\x8d\xe6\xaf\xd8\x61\x74\x64\x7b\xd9\xbe\xe7\x6f\xcd\x7e\xac\x62\x04\x0b\xb3\xea\x29\x28\xe0\x43\x26\xfd\x59\xf5\x04\x84\x8a\x28\x63\x8d\xc0\x7b\x70\xdd\x5b\x3e\xc1\xd0\xa1\xd9\xb7\xdd\xea\x24\xf6\x8a\xfb\x8b\x51\x17\xcf\x1f\xa8\x6f\x4e\x77\x15\xc1\xa0\x62\xbb\x83\xa5\x6c\x9a\xde\xe1\x70\x07\xe8\xf0\x53\xb2\xc7\x73\x46\xa7\x5f\xf4\xc0\xe7\xf3\x7c\x3d\x36\xff\x37\x9b\xce\x08\xd1\xd1\x25\xcf\x04\x35\xda\xdb\xeb\xde\x2d\x58\x15\x8b\xf2\xfc\x89\x7a\x74\x8b\xcf\xce\x9a\xef\x57\x24\x53\xa2\x58\xec\x63\xa7\xf7\x1d\x1d\x0f\x09\x45\x13\x9f\x44\x2a\x1a\xed\x18\xc7\xef\xe1\x81\x44\x08\x64\xfd\x99\x00\xad\x4e\xe3\x26\x49\x8d\x06\xbb\x7f\xb5\x13\xa9\xc5\x6f\x80\x72\xfa\x3b\xda\xe5\xd4\x88\xbb\x8d\xc0\xec\x39\x38\x4d\x54\xb4\xff\x19\xa8\x44\x77\x3c\x7e\x22\xaa\x56\xae\xe6\x51\x5c\x70\x76\x03\x5a\xeb\xfe\xc2\xb5\xce\xfc\x9d\xd0\xba\xad\x55\xf0\xe0\x31\xdd\xef\x54\x9c\x1a\x58\x0f\xb6\x9c\x35\xc2\xac\xc8\x07\xda\xb3\x3a\xa3\xd3\x49\xb5\xc0\x3e\x00\x2d\x28\x5d\xa3\x1b\xcf\x62\x49\x0c\x3f\x05\x1e\x96\xdc\x44\xe1\x5a\x55\xa7\x9a\x29\xa8\x3a\xe8\xcd\xcc\xb2\xd3\x9b\x5d\x69\x38\xe3\x23\x48\x38\x0e\x71\xc2\x9b\x34\x41\x55\xa9\xe4\xf4\x56\x33\x80\x52\x2e\xa5\x7a\x99\x8d\xf7\x52\x76\x28\x1f\x47\xba\x00\x64\xad\x95\xd3\x48\x03\x52\xdf\x3b\xa3\xf7\xf9\x0a\x37\x1e\x4b\xce\xed\x27\xb4\xae\x50\x92\x3a\xdc\x07\x23\xd5\xb5\x0e\xde\x52\x0a\xc1\x77\x46\x27\xf0\xdd\xba\x18\xbc\x22\xd9\x80\x9d\x29\x87\x08\x66\xfd\x0e\xbe\x58\xa7\x90\x8d\x6a\x44\x09\x10\xaa\x94\x40\x05\xb3\x52\x3e\x07\x76\x99\x51\xa1\xb5\x79\xd0\x99\xbf\x7d\x5a\x05\x0a\x29\x90\x43\x2d\xfd\xe4\x91\x89\x68\xb7\x9a\x72\xf0\x93\xc3\xa8\x44\xa6\xc4\xc7\x2a\x3a\xbd\xff\x6a\x67\x41\xa8\x33\xcc\xee\x54\x7b\x6f\x35\xce\x6f\xbd\x8e\x53\xc5\x37\xbf\xca\xa8\x78\x65\x2f\x0b\xfd\x38\x60\xce\xba\x84\x9f\xac\x44\xd2\x31\x74\x94\x76\x26\xab\x49\xed\x04\x8e\xc3\x2c\x25\xd0\x5d\xa5\x96\xad\xd6\x60\xd1\x4a\x9f\x5f\x5d\xc2\xdc\x26\x78\x27\xe7\xe9\xc4\x29\x73\x16\xab\x9d\xdc\x79\xbc\xb5\x50\x23\xd9\x4c\x76\xc0\x4e\xc0\xe1\x37\xf8\xfd\x27\x20\x11\xab\xdf\x05\x8b\x78\x7b\xa1\x05\x45\x89\x60\xd1\x6d\xdd\x5b\xcb\x5e\xb6\xab\x18\xbb\x3d\x90\xa6\xc3\xee\xe4\x06\xbd\xb1\x79\xff\x01\x18\x67\x0d\x6f\x7f\xb2\xbd\xba\x11\x6f\x11\xf6\xa2\xa2\x5d\xcd\x50\x08\x43\x72\x0b\xb4\x19\xc1\x4e\xd4\x59\x1a\xf1\x86\xaf\x8b\xd2\x1c\x6b\xc7\x01\xdb\xa3\x92\x16\x95\x5c\x56\x2f\x2a\x37\x86\x98\x40\x9b\xcf\x6c\x99\x35\xf6\x78\x53\x68\x41\xf0\x1e\x99\x1d\xcc\xe2\x8b\x7a\xfb\x13\x18\x9c\x10\xc2\x83\xc4\x01\x6d\x90\x11\x42\x53\x36\x3d\xa8\x4c\xf2\xb6\xfd\xee\x7e\x67\x69\x8d\xd3\xea\x99\xf5\xe3\xb2\x97\xe5\xa1\xaa\x17\xea\xcb\x90\xd6\xad\xfd\xe3\x44\x39\x0a\xf5\xca\x19\x5c\xa6\xa1\x4e\x16\x9f\x79\x43\xcb\xdd\x2a\x2a\x3c\xb9\x5e\x02\x8a\x46\xed\xc8\x7c\x89\x88\x8b\xe3\x28\x82\x4e\x8c\x4a\x0e\x50\x96\x1c\x78\xf2\x68\xb0\x61\x66\x86\x0c\xd0\x9e\xf8\x43\x52\x72\xaa\xa8\x32\x30\x33\x54\xe4\x49\x13\xfe\xaa\x74\x3a\x4a\x7f\xad\xc2\x00\xa5\x28\x7a\xe9\x94\x3f\x8b\xc6\xc4\x61\x40\x88\x32\x7f\x96\x1b\xef\x0a\x01\x19\x3b\x97\x85\x42\x37\xa4\x71\xd2\x6c\x39\x8c\x87\xcd\x5c\xb0\x2e\x54\x21\x25\x09\x4a\x71\x5a\xa0\x50\x85\x82\xd3\xaf\x1e\xc6\x13\xdb\x98\x2f\x98\x06\xe3\xe9\x92\x74\x59\xbf\x60\xda\x25\xe3\x72\x80\x67\x70\xb8\xc2\xe7\xf1\x46\x2d\x05\x96\x77\xd3\x01\xd9\x82\xb7\x51\xe9\xbd\xaa\x30\x09\x11\x92\xa8\x18\x40\xf1\x39\x67\xd8\x4f\xa9\xc7\x88\x27\x93\xf4\xc4\x1e\x45\x22\x06\xf9\xdc\xf8\xc1\x55\xa2\xac\x71\xdd\x47\xfb\x88\x92\x07\xaf\x8e\x01\x13\x46\x90\x78\xd6\xa5\x71\x54\x50\xf1\xfc\xf7\xff\x7f\x93\xfc\x9b\x58\xa8\x54\xff\x26\x12\x3f\x3d\xcf\x3f\x88\x75\x10\x61\xdd\xb3\xfd\x73\x36\xf3\x1e\xba\x0d\x10\x5a\x73\x86\xfb\x46\xad\x39\x82\x8c\x1d\x9d\xca\x77\x8e\x17\x10\xc7\x1a\x2e\x0e\xfa\xaa\x7c\xce\xf2\x92\x04\xaf\x73\x5a\x47\xb4\x9a\xc2\x7d\x9a\x7e\xa1\xd6\xdc\x24\x3d\x6d\xcd\xb0\xb1\xdb\xde\xfc\xb9\x4b\x56\xbe\xe8\x29\x16\xf9\xcc\xb8\x80\x72\x44\xd9\x2a\x09\x3e\xe1\xc3\x05\x98\x19\xca\x95\xd4\x50\xc6\xe7\x50\x76\x23\x41\x1f\xd7\xa3\xac\xca\x10\xfa\x71\xcf\x95\x7e\xe7\x9c\x6a\xd0\x8d\x5b\xe3\xd2\x87\xb1\xf8\x05\x20\xfe\x5e\x11\x17\x50\x20\x2d\x17\xa8\x40\x5a\x2e\xe0\x6c\xe1\x24\xc1\xf8\xbd\x57\x55\x90\x18\x0e\x22\x92\xc9\xc0\x9f\x23\xb9\x39\x7f\x5b\xa8\x61\x2a\x65\x5f\x01\x95\x86\xf1\x89\x04\xd1\xf2\x47\x7a\xa5\x97\x1f\xe8\xd5\x89\x98\xa9\x80\x9e\x2c\xe6\x02\x7e\x88\x58\x15\xf4\x52\x4c\x53\x29\xf5\x6b\xf8\xdf\xfa\xe2\x6b\xdd\x77\xb5\x5a\xc9\xf7\xd6\xaa\x89\x69\xe0\xf7\x9e\xfb\xf5\xa7\x71\x48\xe6\x04\x0c\xbc\x99\xe9\x06\xe2\xd6\xb8\x2d\xef\xe9\x1d\x7f\x77\xba\x1b\x14\x3f\x6b\xa5\x92\x3e\x63\xea\xe5\x10\x20\xe7\xe4\x90\xc7\xdd\xf1\xe1\xaf\x0f\x27\xaa\xa8\x88\x12\x2f\xed\x66\x52\x5f\xb9\xd6\xe7\x39\xeb\xd2\xe7\xaa\x80\x1e\x25\x26\x4f\x08\xbd\x61\x9c\x44\x6e\x04\x89\xbe\x72\x1c\x26\x22\x42\x10\x21\x0d\x88\x30\x35\x25\x73\x7c\xb5\xe0\xca\xdb\xbf\xd6\xb7\x7f\xb8\x64\x71\xca\x67\x3d\x15\x78\x1e\x21\xef\xfe\x12\x31\xbe\xf9\xfc\x2b\x4b\xcc\xbb\xd0\x0c\x4b\x63\xf0\xc3\xd1\x0f\x18\xa6\xe4\x6a\x0e\xe1\xaf\x9f\xca\xc5\x24\xf6\x92\x5c\x41\x98\x35\x5f\x06\x0c\xe8\xae\x2e\xbb\x63\x75\x9b\xb8\x17\xca\xed\x7f\x63\xa9\xe8\xa7\x5f\x79\x26\xcc\xed\xc5\x04\x93\x88\xaf\x04\x2e\x0f\xec\xf7\x58\xab\xb1\xdd\xce\xac\x27\xbb\x44\xe8\x5d\x11\xd9\x2b\x84\xcd\xcd\xa8\x89\x08\x3a\x61\x98\x34\xaf\x26\x0e\xc7\x36\x91\x0e\x1d\x62\xc5\x6b\xa8\x63\x8c\x50\x1d\x7e\xbc\xbc\x7b\xb4\x41\x90\xb3\x94\xfd\xe2\xca\x5a\x57\x5e\x72\x95\x8b\x90\x5d\x08\x1a\xaa\xcb\x9b\xed\x46\xe9\x95\xe0\xe5\x70\x89\xe7\x33\x0a\xa3\x8f\x86\x4b\x91\x88\x02\xf5\x48\x3c\x0b\x04\x29\x0b\xbd\x19\x1d\x7e\x2d\x5a\xd5\x56\x6f\x64\x3a\x35\x36\xb8\xfb\xe5\x26\x7f\xfb\x1d\x5e\xa1\xf2\xef\x3e\xf1\x3e\xdc\xd5\xd0\xd1\x97\xdb\x65\xcb\x36\x4a\xf9\x75\x6a\x56\x2b\xc3\x3d\xd1\x6e\x53\x71\xe8\xad\xcc\xa4\xd7\xe5\x15\x29\xd1\xe1\x9e\x4d\x73\xb6\x39\x0d\xdd\xb9\xbf\xec\x0f\x4b\xb4\x70\xbc\x0e\x60\x1d\xad\xc0\x88\x77\xab\xe0\x66\x2b\xf9\xb2\x5c\xa3\x69\x0f\xbf\x02\x4a\x2b\x69\xa0\x91\x85\xa9\x70\x85\x47\x78\xc4\xd3\x53\xde\xcc\x2d\x8c\xc2\x9d\x19\x51\x0c\xa8\x68\xd8\xab\x67\x5e\x9d\x0c\x44\x66\x1e\x20\x8c\x2b\x3b\x58\x1e\xee\x0e\xca\x13\x84\x77\x50\xc8\x5c\xa3\x2a\x47\x18\x07\xca\x09\xc3\xe0\x58\x22\x3c\x2d\xf8\xfe\xb0\x5b\xe0\x99\xb9\x74\xe9\x0f\x56\x94\x03\x82\x62\x75\xd2\x8f\x79\x10\xae\x0f\x83\x72\x67\x9d\xc3\xb4\x30\xfd\x60\x76\x9e\xb3\xd4\x35\x84\xd0\xb8\x99\xd6\xfa\x55\x63\x4a\x9d\x19\x2d\x4f\x68\x55\x9e\x67\x4e\x6a\x54\x09\xc7\xd0\x5a\x8a\x90\x53\x3f\xe8\x1a\x7a\x45\x20\x25\xaf\xb9\x1a\xef\x05\xa8\x67\xd9\xa3\xcc\xae\xe4\xa9\xb0\xba\xf1\xbe\x6c\x80\x07\xc6\xdb\x87\xde\x29\x87\xdd\xa9\xea\x94\x24\xf0\x5e\xde\x3f\xa5\x47\x39\x0d\xbc\x92\x1e\x1f\x3f\x7a\xe7\x81\xed\xc4\x8f\x88\xd3\xa5\x01\x0d\x6f\xbe\x16\x9f\xf4\x4e\xbc\x80\xa9\x17\x49\xc8\x13\xa0\x1e\x11\xa1\x3c\x1c\xad\x77\x9b\xe8\xae\x52\x4f\x8d\x88\xac\xe0\xfb\x53\x18\x38\x9e\x2e\x90\x77\x9b\x0d\x03\x39\x96\xa1\xc8\x36\x79\x7b\x8b\x33\x18\x0a\xee\xa1\xc7\x32\x8d\xda\xe6\x23\x99\xdd\x6a\xab\xab\x7c\x32\x6b\xc1\xc9\x4c\x64\xe6\xfe\x5a\xb3\x6b\xd0\xae\x5d\xea\xc7\x45\x8d\xc7\xf0\x77\xf9\x31\xc3\x60\x8e\xf8\x7e\x13\x19\xab\x20\x93\xe4\x26\x5c\xfb\xed\x30\x28\x4f\xc1\xe4\x5c\xce\x97\x71\x9f\x95\x97\xcb\x52\xde\x87\xe3\xd6\xdc\x13\xda\x6e\x55\x16\x5c\x83\xc4\x81\x64\x16\x22\x87\x71\x12\x10\xad\xc9\xd1\x06\xc7\x7c\x17\x85\x51\x0c\x04\x1c\xed\xa4\xf8\x1d\x7d\xeb\x77\xbf\xfd\xc3\x1f\x2d\xfd\xfe\x4c\x08\x9c\x35\x27\xbe\x9b\x58\x1f\x8e\x2c\x5b\x81\xa1\x75\xcf\x78\x25\xae\x7e\x01\xa3\x15\x1e\x34\x25\x67\x37\x4a\xcc\x93\x98\x92\x31\x9a\xa7\x3b\x91\x91\x32\xdc\xa9\x03\x65\x26\x93\xa6\xd8\xa7\x14\x69\x44\xd8\x30\x97\x29\xe3\x0a\x12\x90\x21\x74\x97\xc3\x8e\x17\x81\xd2\x59\x95\x19\x8c\xf3\x29\xc7\xfb\x2a\xa9\x66\xea\x8f\xfc\x9b\x4f\xf8\xd9\xc2\xe6\xfe\x4b\x43\x26\x70\xcc\x81\xa0\x75\x89\x7f\x46\x11\x53\x50\x60\x82\x5e\xc9\x63\x5c\xb9\x82\xe3\xcb\xbf\x92\xe1\x93\x40\x15\x88\x96\x32\x0a\x22\x3a\x56\xe0\xe9\xbc\x28\x6a\xbf\xa1\xbf\xad\xc8\x2c\xca\xda\xc4\xb5\xc3\xc0\x42\x56\xd6\x7e\x2c\xae\xa4\xa1\xfb\xb3\x9a\x24\x09\x0e\xa3\x30\x75\xd4\x70\x0a\xf9\x3e\xf6\x4e\xeb\xf1\x60\x1e\xe1\x5b\xc7\x11\xf0\x01\x7c\xb9\x55\xae\x63\xb2\x94\xa5\x4c\xc9\xd1\xa1\x04\xad\xc9\x78\x12\x1b\x2b\xe7\xc9\xd9\xa8\xc8\xc3\x8f\x08\x45\x68\xa3\x60\x44\x60\x0b\x50\x84\x9d\xd4\x82\x51\x4f\xb3\xa9\x45\xa3\x1f\x4b\x8a\xc8\x2e\xdc\xc9\xd5\x9c\xdc\x7d\xd2\xde\x9a\x8c\x74\x8a\xe5\xb4\x91\x71\xa9\xda\xca\x74\xa4\x41\x4f\xb6\x02\x22\xfa\x37\xf0\x8f\xc5\x87\xb3\x41\x89\xbc\x69\x70\x68\x68\xda\xaa\xc8\x05\xe6\xcb\xd5\x0a\xba\x78\x67\xcc\xbf\x79\xdb\xa8\x29\x91\x09\xe8\x69\x0b\x1d\xc1\x28\x00\x33\x11\x5f\x57\x20\xfb\x07\x3b\x5b\x0b\x0e\x26\x42\x9e\xb7\xa0\x21\x87\x0f\x90\xa8\xb4\xb9\xbf\xdd\xa9\xbf\x6c\x6d\x4c\x04\x00\x72\xff\x04\x3f\xea\xa4\x46\x6a\x10\x40\xce\x2a\xed\x0b\x4f\x27\x4e\xeb\x9b\x4c\xd5\x10\x86\x3a\x86\x43\x45\x46\xf0\x4f\xe0\x15\x7c\x87\x2f\x21\xac\x43\x81\xb3\x4e\x43\x45\x4a\xa1\x31\x8b\xd2\x9f\xa5\x54\xbc\x8c\xfa\x1c\x4a\xc7\xa4\x3e\x3a\xe5\x54\xf0\x5e\xb2\x82\x23\x15\x5d\xc7\x58\x1b\x48\x24\xa4\xc7\xf9\x0b\x6e\x79\x4e\xe9\xbb\xa4\x24\xf0\xcd\x83\x11\x46\x22\x7c\xfd\xe8\x13\x97\x13\xc2\xf1\xe5\x3c\x89\xdc\xe1\x78\xa3\x83\x11\x13\xf4\xbc\x5b\xc9\x9e\xff\x24\x94\x40\x8f\xaf\x53\xd1\x2b\x1d\xf4\x00\x75\x63\xd7\xa8\xa0\xb2\xed\xfd\xea\x3b\xd5\x03\xa3\xc4\x39\x03\xbf\x0f\x90\x22\x87\x46\xa8\x27\x76\x75\x70\x67\xee\x3f\xe9\xfe\xbe\x67\x2c\x83\xc4\x83\xdf\x73\x48\xc6\xcf\x6d\x44\x27\xe9\x60\xea\xa8\x84\x30\x72\x67\x1b\x09\x22\xf7\xec\x55\x86\x98\x64\x8a\xd1\xb5\xef\x6a\xa6\x3f\x20\x17\x07\x55\x7c\x94\x68\xa7\x53\x49\x92\xb2\xfd\x32\xad\x93\x3d\x73\xce\x88\x5f\xf2\x15\x44\x4a\x81\xa0\x12\x27\x70\xb2\x36\x9a\xf9\xaa\xe3\xe0\xcb\xdb\x99\x7e\x27\x85\xf7\xee\xc6\x40\xd9\xa3\xcc\xeb\x18\x27\xcc\x17\xf1\x90\xa9\xae\xa6\xf8\xf5\xae\xb3\x67\x3e\x73\x53\x9f\x59\xad\xa7\xb7\xf1\xf5\xd3\xcf\x8a\xf0\x37\x3f\x0a\x4f\x3f\x07\xf0\x27\x65\xfa\xa7\x9f\x39\xfc\xf9\x78\x93\xfe\xbe\x8a\x7f\xdf\xda\xe0\x5a\x20\x61\x3e\x03\x9b\xbd\x41\xbf\x06\xb1\xe4\xfd\x6b\xfc\xdb\xb5\x41\x4a\xe5\x28\x81\x9f\xf4\x50\xcc\x97\x60\xd9\x71\x4a\x3f\xdd\xcf\x80\x53\xab\xf0\x27\xdd\x57\x2e\x33\xc8\x5f\xb8\xbb\xab\xb6\x7d\x99\x7f\x73\x97\xd0\x23\xd8\xad\x94\x74\x93\x7b\xc5\xac\x61\x0c\xc0\x3d\x57\x32\x57\xd3\xaa\x77\xe8\x9a\x3f\xa8\xce\xb9\x67\xa2\x56\xae\xe2\x94\x31\xe1\xd2\x77\xc1\xa3\x08\x2a\xd7\xb5\x3f\x31\xef\x2f\xbd\x52\x6f\x2b\xec\x4a\xac\x7c\x63\x5e\x3d\x43\x8f\x2f\xcc\x05\x8f\xcf\xe6\x4b\xe5\x9a\x4a\x43\x70\x6d\x83\xdf\xe9\x66\x18\xbc\xbe\xcb\x19\x70\x55\xf2\x3c\x49\xf3\x8d\x8f\xaa\xf7\xa2\x5c\xe7\x2e\x1e\x3f\x85\xe1\x83\x49\xf0\x6f\xff\x86\xa5\xf8\xb8\xf5\xbf\xff\xbb\xf5\xd5\xaf\xc1\x14\x00\x5d\xaf\x33\x74\x13\xf9\x8a\x1e\xb8\x66\x9f\x87\x01\x5f\xcc\xfc\xf0\xcf\x91\x2a\xe8\x2c\xa4\x50\x3d\xf2\x3d\x4b\x8c\xba\x74\xfe\x7f\x03\x00\x00\xff\xff\xea\x95\x2c\xd6\xf1\x93\x00\x00") func confLocaleLocale_zhHkIniBytes() ([]byte, error) { return bindataRead( @@ -1007,7 +1007,7 @@ func confLocaleLocale_zhHkIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 33652, mode: os.FileMode(493), modTime: time.Unix(1438485627, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 37873, mode: os.FileMode(493), modTime: time.Unix(1439895206, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/cron/cron.go b/modules/cron/cron.go index dbf0174b86..3491afac99 100644 --- a/modules/cron/cron.go +++ b/modules/cron/cron.go @@ -91,34 +91,33 @@ type FuncJob func() func (f FuncJob) Run() { f() } // AddFunc adds a func to the Cron to be run on the given schedule. -func (c *Cron) AddFunc(desc, spec string, cmd func()) error { +func (c *Cron) AddFunc(desc, spec string, cmd func()) (*Entry, error) { return c.AddJob(desc, spec, FuncJob(cmd)) } // AddFunc adds a Job to the Cron to be run on the given schedule. -func (c *Cron) AddJob(desc, spec string, cmd Job) error { +func (c *Cron) AddJob(desc, spec string, cmd Job) (*Entry, error) { schedule, err := Parse(spec) if err != nil { - return err + return nil, err } - c.Schedule(desc, spec, schedule, cmd) - return nil + return c.Schedule(desc, spec, schedule, cmd), nil } // Schedule adds a Job to the Cron to be run on the given schedule. -func (c *Cron) Schedule(desc, spec string, schedule Schedule, cmd Job) { +func (c *Cron) Schedule(desc, spec string, schedule Schedule, cmd Job) *Entry { entry := &Entry{ Description: desc, Spec: spec, Schedule: schedule, Job: cmd, } - if !c.running { + if c.running { + c.add <- entry + } else { c.entries = append(c.entries, entry) - return } - - c.add <- entry + return entry } // Entries returns a snapshot of the cron entries. diff --git a/modules/cron/manager.go b/modules/cron/manager.go deleted file mode 100644 index da485d23ab..0000000000 --- a/modules/cron/manager.go +++ /dev/null @@ -1,27 +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 cron - -import ( - "fmt" - - "github.com/gogits/gogs/models" - "github.com/gogits/gogs/modules/setting" -) - -var c = New() - -func NewCronContext() { - c.AddFunc("Update mirrors", "@every 1h", models.MirrorUpdate) - if setting.Git.Fsck.Enable { - c.AddFunc("Repository health check", fmt.Sprintf("@every %dh", setting.Git.Fsck.Interval), models.GitFsck) - } - c.AddFunc("Check repository statistics", "@every 24h", models.CheckRepoStats) - c.Start() -} - -func ListEntries() []*Entry { - return c.Entries() -} diff --git a/modules/middleware/auth.go b/modules/middleware/auth.go index db643ccf28..f607460037 100644 --- a/modules/middleware/auth.go +++ b/modules/middleware/auth.go @@ -80,7 +80,7 @@ func Toggle(options *ToggleOptions) macaron.Handler { return } - if !options.SignOutRequire && !options.DisableCsrf && ctx.Req.Method == "POST" { + if !options.SignOutRequire && !options.DisableCsrf && ctx.Req.Method == "POST" && !auth.IsAPIPath(ctx.Req.URL.Path) { csrf.Validate(ctx.Context, ctx.csrf) if ctx.Written() { return diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 79e47c8901..bb78201500 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -127,11 +127,26 @@ var ( Git struct { MaxGitDiffLines int GcArgs []string `delim:" "` - Fsck struct { - Enable bool - Interval int - Args []string `delim:" "` - } `ini:"git.fsck"` + } + + // Cron tasks. + Cron struct { + UpdateMirror struct { + Enabled bool + RunAtStart bool + Schedule string + } `ini:"cron.update_mirrors"` + RepoHealthCheck struct { + Enabled bool + RunAtStart bool + Schedule string + Args []string `delim:" "` + } `ini:"cron.repo_health_check"` + CheckRepoStats struct { + Enabled bool + RunAtStart bool + Schedule string + } `ini:"cron.check_repo_stats"` } // I18n settings. @@ -359,6 +374,8 @@ func NewConfigContext() { if err = Cfg.Section("git").MapTo(&Git); err != nil { log.Fatal(4, "Fail to map Git settings: %v", err) + } else if Cfg.Section("cron").MapTo(&Cron); err != nil { + log.Fatal(4, "Fail to map Cron settings: %v", err) } Langs = Cfg.Section("i18n").Key("LANGS").Strings(",") diff --git a/public/css/bootstrap.css.map b/public/css/bootstrap.css.map deleted file mode 100755 index 6bc5a2dc75..0000000000 --- a/public/css/bootstrap.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["less/normalize.less","less/print.less","less/scaffolding.less","less/mixins.less","less/variables.less","less/thumbnails.less","less/carousel.less","less/type.less","less/code.less","less/grid.less","less/tables.less","less/forms.less","less/buttons.less","less/button-groups.less","less/component-animations.less","less/glyphicons.less","less/dropdowns.less","less/input-groups.less","less/navs.less","less/navbar.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/pager.less","less/labels.less","less/badges.less","less/jumbotron.less","less/alerts.less","less/progress-bars.less","less/media.less","less/list-group.less","less/panels.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/popovers.less","less/responsive-utilities.less"],"names":[],"mappings":";AAQA;EACE,uBAAA;EACA,0BAAA;EACA,8BAAA;;AAOF;EACE,SAAA;;AAUF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,cAAA;;AAQF;AACA;AACA;AACA;EACE,qBAAA;EACA,wBAAA;;AAQF,KAAK,IAAI;EACP,aAAA;EACA,SAAA;;AAQF;AACA;EACE,aAAA;;AAUF;EACE,uBAAA;;AAOF,CAAC;AACD,CAAC;EACC,UAAA;;AAUF,IAAI;EACF,yBAAA;;AAOF;AACA;EACE,iBAAA;;AAOF;EACE,kBAAA;;AAQF;EACE,cAAA;EACA,gBAAA;;AAOF;EACE,gBAAA;EACA,WAAA;;AAOF;EACE,cAAA;;AAOF;AACA;EACE,cAAA;EACA,cAAA;EACA,kBAAA;EACA,wBAAA;;AAGF;EACE,WAAA;;AAGF;EACE,eAAA;;AAUF;EACE,SAAA;;AAOF,GAAG,IAAI;EACL,gBAAA;;AAUF;EACE,gBAAA;;AAOF;EACE,4BAAA;EACA,uBAAA;EACA,SAAA;;AAOF;EACE,cAAA;;AAOF;AACA;AACA;AACA;EACE,iCAAA;EACA,cAAA;;AAkBF;AACA;AACA;AACA;AACA;EACE,cAAA;EACA,aAAA;EACA,SAAA;;AAOF;EACE,iBAAA;;AAUF;AACA;EACE,oBAAA;;AAWF;AACA,IAAK,MAAK;AACV,KAAK;AACL,KAAK;EACH,0BAAA;EACA,eAAA;;AAOF,MAAM;AACN,IAAK,MAAK;EACR,eAAA;;AAOF,MAAM;AACN,KAAK;EACH,SAAA;EACA,UAAA;;AAQF;EACE,mBAAA;;AAWF,KAAK;AACL,KAAK;EACH,sBAAA;EACA,UAAA;;AASF,KAAK,eAAe;AACpB,KAAK,eAAe;EAClB,YAAA;;AASF,KAAK;EACH,6BAAA;EACA,4BAAA;EACA,+BAAA;EACA,uBAAA;;AASF,KAAK,eAAe;AACpB,KAAK,eAAe;EAClB,wBAAA;;AAOF;EACE,yBAAA;EACA,aAAA;EACA,8BAAA;;AAQF;EACE,SAAA;EACA,UAAA;;AAOF;EACE,cAAA;;AAQF;EACE,iBAAA;;AAUF;EACE,yBAAA;EACA,iBAAA;;AAGF;AACA;EACE,UAAA;;AChUF;EA9FE;IACE,4BAAA;IACA,sBAAA;IACA,kCAAA;IACA,2BAAA;;EAGF;EACA,CAAC;IACC,0BAAA;;EAGF,CAAC,MAAM;IACL,SAAS,KAAK,WAAW,GAAzB;;EAGF,IAAI,OAAO;IACT,SAAS,KAAK,YAAY,GAA1B;;EAIF,CAAC,qBAAqB;EACtB,CAAC,WAAW;IACV,SAAS,EAAT;;EAGF;EACA;IACE,sBAAA;IACA,wBAAA;;EAGF;IACE,2BAAA;;EAGF;EACA;IACE,wBAAA;;EAGF;IACE,0BAAA;;EAGF;EACA;EACA;IACE,UAAA;IACA,SAAA;;EAGF;EACA;IACE,uBAAA;;EAKF;IACE,2BAAA;;EAIF;IACE,aAAA;;EAEF,MACE;EADF,MAEE;IACE,iCAAA;;EAGJ,IAEE;EADF,OAAQ,OACN;IACE,iCAAA;;EAGJ;IACE,sBAAA;;EAGF;IACE,oCAAA;;EAEF,eACE;EADF,eAEE;IACE,iCAAA;;;ACtFN;ECyOE,8BAAA;EACG,2BAAA;EACK,sBAAA;;ADxOV,CAAC;AACD,CAAC;ECqOC,8BAAA;EACG,2BAAA;EACK,sBAAA;;ADhOV;EACE,gBAAA;EACA,6CAAA;;AAGF;EACE,aEcwB,8CFdxB;EACA,eAAA;EACA,uBAAA;EACA,cAAA;EACA,yBAAA;;AAIF;AACA;AACA;AACA;EACE,oBAAA;EACA,kBAAA;EACA,oBAAA;;AAMF;EACE,cAAA;EACA,qBAAA;;AAEA,CAAC;AACD,CAAC;EACC,cAAA;EACA,0BAAA;;AAGF,CAAC;ECzBD,oBAAA;EAEA,0CAAA;EACA,oBAAA;;ADiCF;EACE,SAAA;;AAMF;EACE,sBAAA;;AAIF;AG1EA,UAUE;AAVF,UAWE,EAAE;ACPJ,eAKE,QAME;AAXJ,eAKE,QAOE,IAAI;EHyWN,cAAA;EACA,eAAA;EACA,YAAA;;AD5SF;EACE,kBAAA;;AAMF;EACE,YAAA;EACA,uBAAA;EACA,yBAAA;EACA,yBAAA;EACA,kBAAA;EC8BA,wCAAA;EACQ,gCAAA;EA+PR,qBAAA;EACA,eAAA;EACA,YAAA;;ADxRF;EACE,kBAAA;;AAMF;EACE,gBAAA;EACA,mBAAA;EACA,SAAA;EACA,6BAAA;;AAQF;EACE,kBAAA;EACA,UAAA;EACA,WAAA;EACA,YAAA;EACA,UAAA;EACA,gBAAA;EACA,MAAM,gBAAN;EACA,SAAA;;AK5HF;AAAI;AAAI;AAAI;AAAI;AAAI;AACpB;AAAK;AAAK;AAAK;AAAK;AAAK;EACvB,oBAAA;EACA,gBAAA;EACA,gBAAA;EACA,cAAA;;AALF,EAOE;AAPE,EAOF;AAPM,EAON;AAPU,EAOV;AAPc,EAOd;AAPkB,EAOlB;AANF,GAME;AANG,GAMH;AANQ,GAMR;AANa,GAMb;AANkB,GAMlB;AANuB,GAMvB;AAPF,EAQE;AARE,EAQF;AARM,EAQN;AARU,EAQV;AARc,EAQd;AARkB,EAQlB;AAPF,GAOE;AAPG,GAOH;AAPQ,GAOR;AAPa,GAOb;AAPkB,GAOlB;AAPuB,GAOvB;EACE,mBAAA;EACA,cAAA;EACA,cAAA;;AAIJ;AAAI;AACJ;AAAI;AACJ;AAAI;EACF,gBAAA;EACA,mBAAA;;AAJF,EAME;AANE,GAMF;AALF,EAKE;AALE,GAKF;AAJF,EAIE;AAJE,GAIF;AANF,EAOE;AAPE,GAOF;AANF,EAME;AANE,GAMF;AALF,EAKE;AALE,GAKF;EACE,cAAA;;AAGJ;AAAI;AACJ;AAAI;AACJ;AAAI;EACF,gBAAA;EACA,mBAAA;;AAJF,EAME;AANE,GAMF;AALF,EAKE;AALE,GAKF;AAJF,EAIE;AAJE,GAIF;AANF,EAOE;AAPE,GAOF;AANF,EAME;AANE,GAMF;AALF,EAKE;AALE,GAKF;EACE,cAAA;;AAIJ;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AAMV;EACE,gBAAA;;AAGF;EACE,mBAAA;EACA,eAAA;EACA,gBAAA;EACA,gBAAA;;AAKF,QAHqC;EAGrC;IAFI,eAAA;;;AASJ;AACA;EAAU,cAAA;;AAGV;EAAU,kBAAA;;AAGV;EAAuB,gBAAA;;AACvB;EAAuB,iBAAA;;AACvB;EAAuB,kBAAA;;AACvB;EAAuB,mBAAA;;AAGvB;EACE,cAAA;;AAEF;EJofE,cAAA;;AACA,CAAC,aAAC;EACA,cAAA;;AInfJ;EJifE,cAAA;;AACA,CAAC,aAAC;EACA,cAAA;;AIhfJ;EJ8eE,cAAA;;AACA,CAAC,UAAC;EACA,cAAA;;AI7eJ;EJ2eE,cAAA;;AACA,CAAC,aAAC;EACA,cAAA;;AI1eJ;EJweE,cAAA;;AACA,CAAC,YAAC;EACA,cAAA;;AIneJ;EAGE,WAAA;EJqdA,yBAAA;;AACA,CAAC,WAAC;EACA,yBAAA;;AIpdJ;EJkdE,yBAAA;;AACA,CAAC,WAAC;EACA,yBAAA;;AIjdJ;EJ+cE,yBAAA;;AACA,CAAC,QAAC;EACA,yBAAA;;AI9cJ;EJ4cE,yBAAA;;AACA,CAAC,WAAC;EACA,yBAAA;;AI3cJ;EJycE,yBAAA;;AACA,CAAC,UAAC;EACA,yBAAA;;AIncJ;EACE,mBAAA;EACA,mBAAA;EACA,gCAAA;;AAQF;AACA;EACE,aAAA;EACA,mBAAA;;AAHF,EAIE;AAHF,EAGE;AAJF,EAKE;AAJF,EAIE;EACE,gBAAA;;AAOJ;EACE,eAAA;EACA,gBAAA;;AAIF;EALE,eAAA;EACA,gBAAA;EAMA,iBAAA;;AAFF,YAIE;EACE,qBAAA;EACA,iBAAA;EACA,kBAAA;;AAKJ;EACE,aAAA;EACA,mBAAA;;AAEF;AACA;EACE,uBAAA;;AAEF;EACE,iBAAA;;AAEF;EACE,cAAA;;AAwBF,QAhB2C;EACzC,cACE;IACE,WAAA;IACA,YAAA;IACA,WAAA;IACA,iBAAA;IJ1IJ,gBAAA;IACA,uBAAA;IACA,mBAAA;;EImIA,cAQE;IACE,kBAAA;;;AAUN,IAAI;AAEJ,IAAI;EACF,YAAA;EACA,iCAAA;;AAEF;EACE,cAAA;EACA,yBAAA;;AAIF;EACE,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,8BAAA;;AAKE,UAHF,EAGG;AAAD,UAFF,GAEG;AAAD,UADF,GACG;EACC,gBAAA;;AAVN,UAgBE;AAhBF,UAiBE;AAjBF,UAkBE;EACE,cAAA;EACA,cAAA;EACA,uBAAA;EACA,cAAA;;AAEA,UARF,OAQG;AAAD,UAPF,MAOG;AAAD,UANF,OAMG;EACC,SAAS,aAAT;;AAQN;AACA,UAAU;EACR,mBAAA;EACA,eAAA;EACA,+BAAA;EACA,cAAA;EACA,iBAAA;;AAME,mBAHF,OAGG;AAAD,UAXM,WAQR,OAGG;AAAD,mBAFF,MAEG;AAAD,UAXM,WASR,MAEG;AAAD,mBADF,OACG;AAAD,UAXM,WAUR,OACG;EAAU,SAAS,EAAT;;AACX,mBAJF,OAIG;AAAD,UAZM,WAQR,OAIG;AAAD,mBAHF,MAGG;AAAD,UAZM,WASR,MAGG;AAAD,mBAFF,OAEG;AAAD,UAZM,WAUR,OAEG;EACC,SAAS,aAAT;;AAMN,UAAU;AACV,UAAU;EACR,SAAS,EAAT;;AAIF;EACE,mBAAA;EACA,kBAAA;EACA,uBAAA;;AC7RF;AACA;AACA;AACA;EACE,sCJkCiD,wBIlCjD;;AAIF;EACE,gBAAA;EACA,cAAA;EACA,cAAA;EACA,yBAAA;EACA,mBAAA;EACA,kBAAA;;AAIF;EACE,gBAAA;EACA,cAAA;EACA,cAAA;EACA,yBAAA;EACA,kBAAA;EACA,8CAAA;;AAIF;EACE,cAAA;EACA,cAAA;EACA,gBAAA;EACA,eAAA;EACA,uBAAA;EACA,qBAAA;EACA,qBAAA;EACA,cAAA;EACA,yBAAA;EACA,yBAAA;EACA,kBAAA;;AAXF,GAcE;EACE,UAAA;EACA,kBAAA;EACA,cAAA;EACA,qBAAA;EACA,6BAAA;EACA,gBAAA;;AAKJ;EACE,iBAAA;EACA,kBAAA;;ACpDF;ENqnBE,kBAAA;EACA,iBAAA;EACA,kBAAA;EACA,mBAAA;;AMlnBA,QAHmC;EAGnC;IAFE,YAAA;;;AAKF,QAHmC;EAGnC;IAFE,YAAA;;;AAKJ,QAHqC;EAGrC;IAFI,aAAA;;;AAUJ;ENimBE,kBAAA;EACA,iBAAA;EACA,kBAAA;EACA,mBAAA;;AM3lBF;ENimBE,kBAAA;EACA,mBAAA;;AAqIE;EACE,kBAAA;EAEA,eAAA;EAEA,kBAAA;EACA,mBAAA;;AAgBF;EACE,WAAA;;AAOJ,KAAK,EAAQ,CAAC;EACZ,WAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,UAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,UAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,UAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,kBAAA;;AASF,KAAK,EAAQ,MAAM;EACjB,WAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,UAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,UAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,UAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,SAAA;;AANF,KAAK,EAAQ,MAAM;EACjB,UAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,SAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,SAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,SAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,iBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,QAAA;;AASF,KAAK,EAAQ,QAAQ;EACnB,iBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,gBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,gBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,gBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,wBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,eAAA;;AMvvBJ,QALmC;ENouB/B;IACE,WAAA;;EAOJ,KAAK,EAAQ,CAAC;IACZ,WAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,kBAAA;;EASF,KAAK,EAAQ,MAAM;IACjB,WAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EANF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,iBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,QAAA;;EASF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,wBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,eAAA;;;AM9uBJ,QALmC;EN2tB/B;IACE,WAAA;;EAOJ,KAAK,EAAQ,CAAC;IACZ,WAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,kBAAA;;EASF,KAAK,EAAQ,MAAM;IACjB,WAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EANF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,iBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,QAAA;;EASF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,wBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,eAAA;;;AMvuBJ,QAHmC;ENktB/B;IACE,WAAA;;EAOJ,KAAK,EAAQ,CAAC;IACZ,WAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,kBAAA;;EASF,KAAK,EAAQ,MAAM;IACjB,WAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EANF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,iBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,QAAA;;EASF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,wBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,eAAA;;;AOtzBJ;EACE,eAAA;EACA,6BAAA;;AAEF;EACE,gBAAA;;AAMF;EACE,WAAA;EACA,mBAAA;;AAFF,MAIE,QAGE,KACE;AARN,MAKE,QAEE,KACE;AARN,MAME,QACE,KACE;AARN,MAIE,QAGE,KAEE;AATN,MAKE,QAEE,KAEE;AATN,MAME,QACE,KAEE;EACE,YAAA;EACA,uBAAA;EACA,mBAAA;EACA,6BAAA;;AAbR,MAkBE,QAAQ,KAAK;EACX,sBAAA;EACA,gCAAA;;AApBJ,MAuBE,UAAU,QAGR,KAAI,YACF;AA3BN,MAwBE,WAAW,QAET,KAAI,YACF;AA3BN,MAyBE,QAAO,YACL,KAAI,YACF;AA3BN,MAuBE,UAAU,QAGR,KAAI,YAEF;AA5BN,MAwBE,WAAW,QAET,KAAI,YAEF;AA5BN,MAyBE,QAAO,YACL,KAAI,YAEF;EACE,aAAA;;AA7BR,MAkCE,QAAQ;EACN,6BAAA;;AAnCJ,MAuCE;EACE,yBAAA;;AAOJ,gBACE,QAGE,KACE;AALN,gBAEE,QAEE,KACE;AALN,gBAGE,QACE,KACE;AALN,gBACE,QAGE,KAEE;AANN,gBAEE,QAEE,KAEE;AANN,gBAGE,QACE,KAEE;EACE,YAAA;;AAWR;EACE,yBAAA;;AADF,eAEE,QAGE,KACE;AANN,eAGE,QAEE,KACE;AANN,eAIE,QACE,KACE;AANN,eAEE,QAGE,KAEE;AAPN,eAGE,QAEE,KAEE;AAPN,eAIE,QACE,KAEE;EACE,yBAAA;;AARR,eAYE,QAAQ,KACN;AAbJ,eAYE,QAAQ,KAEN;EACE,wBAAA;;AAUN,cACE,QAAQ,KAAI,UAAU,KACpB;AAFJ,cACE,QAAQ,KAAI,UAAU,KAEpB;EACE,yBAAA;;AAUN,YACE,QAAQ,KAAI,MACV;AAFJ,YACE,QAAQ,KAAI,MAEV;EACE,yBAAA;;AAUN,KAAM,IAAG;EACP,gBAAA;EACA,WAAA;EACA,qBAAA;;AAKE,KAFF,GAEG;AAAD,KADF,GACG;EACC,gBAAA;EACA,WAAA;EACA,mBAAA;;AP0SJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,MAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,MAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,MAAS;AACX,MANK,QAAQ,KAMZ,CAAC,MAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,MAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,MAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,MAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,MAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,MAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,CAAC,MAAQ,MAAO;EACf,yBAAA;;AAlBJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,OAAS;AACX,MANK,QAAQ,KAMZ,CAAC,OAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,OAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,OAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,OAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,CAAC,OAAQ,MAAO;EACf,yBAAA;;AAlBJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,IAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,IAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,IAAS;AACX,MANK,QAAQ,KAMZ,CAAC,IAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,IAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,IAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,IAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,IAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,IAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,CAAC,IAAQ,MAAO;EACf,yBAAA;;AAlBJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,OAAS;AACX,MANK,QAAQ,KAMZ,CAAC,OAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,OAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,OAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,OAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,CAAC,OAAQ,MAAO;EACf,yBAAA;;AAlBJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,MAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,MAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,MAAS;AACX,MANK,QAAQ,KAMZ,CAAC,MAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,MAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,MAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,MAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,MAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,MAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,CAAC,MAAQ,MAAO;EACf,yBAAA;;AOpON,QA/DmC;EACjC;IACE,WAAA;IACA,mBAAA;IACA,kBAAA;IACA,kBAAA;IACA,4CAAA;IACA,yBAAA;IACA,iCAAA;;EAPF,iBAUE;IACE,gBAAA;;EAXJ,iBAUE,SAIE,QAGE,KACE;EAlBR,iBAUE,SAKE,QAEE,KACE;EAlBR,iBAUE,SAME,QACE,KACE;EAlBR,iBAUE,SAIE,QAGE,KAEE;EAnBR,iBAUE,SAKE,QAEE,KAEE;EAnBR,iBAUE,SAME,QACE,KAEE;IACE,mBAAA;;EApBV,iBA2BE;IACE,SAAA;;EA5BJ,iBA2BE,kBAIE,QAGE,KACE,KAAI;EAnCZ,iBA2BE,kBAKE,QAEE,KACE,KAAI;EAnCZ,iBA2BE,kBAME,QACE,KACE,KAAI;EAnCZ,iBA2BE,kBAIE,QAGE,KAEE,KAAI;EApCZ,iBA2BE,kBAKE,QAEE,KAEE,KAAI;EApCZ,iBA2BE,kBAME,QACE,KAEE,KAAI;IACF,cAAA;;EArCV,iBA2BE,kBAIE,QAGE,KAKE,KAAI;EAvCZ,iBA2BE,kBAKE,QAEE,KAKE,KAAI;EAvCZ,iBA2BE,kBAME,QACE,KAKE,KAAI;EAvCZ,iBA2BE,kBAIE,QAGE,KAME,KAAI;EAxCZ,iBA2BE,kBAKE,QAEE,KAME,KAAI;EAxCZ,iBA2BE,kBAME,QACE,KAME,KAAI;IACF,eAAA;;EAzCV,iBA2BE,kBAsBE,QAEE,KAAI,WACF;EApDR,iBA2BE,kBAuBE,QACE,KAAI,WACF;EApDR,iBA2BE,kBAsBE,QAEE,KAAI,WAEF;EArDR,iBA2BE,kBAuBE,QACE,KAAI,WAEF;IACE,gBAAA;;;ACxNZ;EACE,UAAA;EACA,SAAA;EACA,SAAA;EAIA,YAAA;;AAGF;EACE,cAAA;EACA,WAAA;EACA,UAAA;EACA,mBAAA;EACA,eAAA;EACA,oBAAA;EACA,cAAA;EACA,SAAA;EACA,gCAAA;;AAGF;EACE,qBAAA;EACA,kBAAA;EACA,iBAAA;;AAWF,KAAK;ERsMH,8BAAA;EACG,2BAAA;EACK,sBAAA;;AQnMV,KAAK;AACL,KAAK;EACH,eAAA;EACA,kBAAA;;EACA,mBAAA;;AAIF,KAAK;EACH,cAAA;;AAIF,KAAK;EACH,cAAA;EACA,WAAA;;AAIF,MAAM;AACN,MAAM;EACJ,YAAA;;AAIF,KAAK,aAAa;AAClB,KAAK,cAAc;AACnB,KAAK,iBAAiB;ER7CpB,oBAAA;EAEA,0CAAA;EACA,oBAAA;;AQ+CF;EACE,cAAA;EACA,gBAAA;EACA,eAAA;EACA,uBAAA;EACA,cAAA;;AA0BF;EACE,cAAA;EACA,WAAA;EACA,YAAA;EACA,iBAAA;EACA,eAAA;EACA,uBAAA;EACA,cAAA;EACA,yBAAA;EACA,sBAAA;EACA,yBAAA;EACA,kBAAA;ERHA,wDAAA;EACQ,gDAAA;EAKR,8EAAA;EACQ,sEAAA;;AAmwBR,aAAC;EACC,qBAAA;EACA,UAAA;EA5wBF,sFAAA;EACQ,8EAAA;;AAlER,aAAC;EAA+B,cAAA;EACA,UAAA;;AAChC,aAAC;EAA+B,cAAA;;AAChC,aAAC;EAA+B,cAAA;;AQgFhC,aAAC;AACD,aAAC;AACD,QAAQ,UAAW;EACjB,mBAAA;EACA,yBAAA;EACA,UAAA;;AAIF,QAAQ;EACN,YAAA;;AAYJ,KAAK;EACH,wBAAA;;AASF,KAAK;EACH,iBAAA;;AASF;EACE,mBAAA;;AAQF;AACA;EACE,cAAA;EACA,gBAAA;EACA,gBAAA;EACA,mBAAA;EACA,kBAAA;;AANF,MAOE;AANF,SAME;EACE,eAAA;EACA,mBAAA;EACA,eAAA;;AAGJ,MAAO,MAAK;AACZ,aAAc,MAAK;AACnB,SAAU,MAAK;AACf,gBAAiB,MAAK;EACpB,WAAA;EACA,kBAAA;;AAEF,MAAO;AACP,SAAU;EACR,gBAAA;;AAIF;AACA;EACE,qBAAA;EACA,kBAAA;EACA,gBAAA;EACA,sBAAA;EACA,mBAAA;EACA,eAAA;;AAEF,aAAc;AACd,gBAAiB;EACf,aAAA;EACA,iBAAA;;AAYA,KANG,cAMF;AAAD,KALG,iBAKF;AAAD,MAAC;AAAD,aAAC;AAAD,SAAC;AAAD,gBAAC;AACD,QAAQ,UAAW,MAPhB;AAOH,QAAQ,UAAW,MANhB;AAMH,QAAQ,UAAW;AAAnB,QAAQ,UAAW;AAAnB,QAAQ,UAAW;AAAnB,QAAQ,UAAW;EACjB,mBAAA;;AAUJ;ERqpBE,YAAA;EACA,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AAEA,MAAM;EACJ,YAAA;EACA,iBAAA;;AAGF,QAAQ;AACR,MAAM,UAAU;EACd,YAAA;;AQ9pBJ;ERipBE,YAAA;EACA,kBAAA;EACA,eAAA;EACA,iBAAA;EACA,kBAAA;;AAEA,MAAM;EACJ,YAAA;EACA,iBAAA;;AAGF,QAAQ;AACR,MAAM,UAAU;EACd,YAAA;;AQrpBJ;EAEE,kBAAA;;AAFF,aAKE;EACE,qBAAA;;AANJ,aAUE;EACE,kBAAA;EACA,SAAA;EACA,QAAA;EACA,cAAA;EACA,WAAA;EACA,YAAA;EACA,iBAAA;EACA,kBAAA;;AAKJ,YRsjBE;AQtjBF,YRujBE;AQvjBF,YRwjBE;AQxjBF,YRyjBE;AQzjBF,YR0jBE;AQ1jBF,YR2jBE;EACE,cAAA;;AQ5jBJ,YR+jBE;EACE,qBAAA;EAvuBF,wDAAA;EACQ,gDAAA;;AAwuBN,YAHF,cAGG;EACC,qBAAA;EA1uBJ,yEAAA;EACQ,iEAAA;;AQsKV,YRykBE;EACE,cAAA;EACA,qBAAA;EACA,yBAAA;;AQ5kBJ,YR+kBE;EACE,cAAA;;AQ7kBJ,YRmjBE;AQnjBF,YRojBE;AQpjBF,YRqjBE;AQrjBF,YRsjBE;AQtjBF,YRujBE;AQvjBF,YRwjBE;EACE,cAAA;;AQzjBJ,YR4jBE;EACE,qBAAA;EAvuBF,wDAAA;EACQ,gDAAA;;AAwuBN,YAHF,cAGG;EACC,qBAAA;EA1uBJ,yEAAA;EACQ,iEAAA;;AQyKV,YRskBE;EACE,cAAA;EACA,qBAAA;EACA,yBAAA;;AQzkBJ,YR4kBE;EACE,cAAA;;AQ1kBJ,URgjBE;AQhjBF,URijBE;AQjjBF,URkjBE;AQljBF,URmjBE;AQnjBF,URojBE;AQpjBF,URqjBE;EACE,cAAA;;AQtjBJ,URyjBE;EACE,qBAAA;EAvuBF,wDAAA;EACQ,gDAAA;;AAwuBN,UAHF,cAGG;EACC,qBAAA;EA1uBJ,yEAAA;EACQ,iEAAA;;AQ4KV,URmkBE;EACE,cAAA;EACA,qBAAA;EACA,yBAAA;;AQtkBJ,URykBE;EACE,cAAA;;AQhkBJ;EACE,gBAAA;;AASF;EACE,cAAA;EACA,eAAA;EACA,mBAAA;EACA,cAAA;;AAoEF,QAjDqC;EAiDrC,YA/CI;IACE,qBAAA;IACA,gBAAA;IACA,sBAAA;;EA4CN,YAxCI;IACE,qBAAA;IACA,WAAA;IACA,sBAAA;;EAqCN,YAlCI,aAAa;IACX,WAAA;;EAiCN,YA9BI;IACE,gBAAA;IACA,sBAAA;;EA4BN,YAtBI;EAsBJ,YArBI;IACE,qBAAA;IACA,aAAA;IACA,gBAAA;IACA,eAAA;IACA,sBAAA;;EAgBN,YAdI,OAAO,MAAK;EAchB,YAbI,UAAU,MAAK;IACb,WAAA;IACA,cAAA;;EAWN,YAJI,cAAc;IACZ,MAAA;;;AAWN,gBAGE;AAHF,gBAIE;AAJF,gBAKE;AALF,gBAME;AANF,gBAOE;EACE,aAAA;EACA,gBAAA;EACA,gBAAA;;AAVJ,gBAcE;AAdF,gBAeE;EACE,gBAAA;;AAhBJ,gBAoBE;ERyOA,kBAAA;EACA,mBAAA;;AQ9PF,gBAwBE;EACE,gBAAA;;AAUF,QANmC;EAMnC,gBALE;IACE,iBAAA;;;AA/BN,gBAuCE,cAAc;EACZ,MAAA;EACA,WAAA;;AC3aJ;EACE,qBAAA;EACA,gBAAA;EACA,mBAAA;EACA,kBAAA;EACA,sBAAA;EACA,eAAA;EACA,sBAAA;EACA,6BAAA;EACA,mBAAA;ET0gBA,iBAAA;EACA,eAAA;EACA,uBAAA;EACA,kBAAA;EAnSA,yBAAA;EACG,sBAAA;EACC,qBAAA;EACI,iBAAA;;AStON,IAAC;AAAD,IAFD,OAEE;AAAD,IADD,OACE;ETQH,oBAAA;EAEA,0CAAA;EACA,oBAAA;;ASNA,IAAC;AACD,IAAC;EACC,cAAA;EACA,qBAAA;;AAGF,IAAC;AACD,IAAC;EACC,UAAA;EACA,sBAAA;ETmFF,wDAAA;EACQ,gDAAA;;AShFR,IAAC;AACD,IAAC;AACD,QAAQ,UAAW;EACjB,mBAAA;EACA,oBAAA;ET+OF,aAAA;EAGA,yBAAA;EAvKA,wBAAA;EACQ,gBAAA;;ASlEV;ET2bE,cAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,YAAC;AACD,YAAC;AACD,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,cAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,sBAAA;;AAKA,YAHD;AAGC,YAFD;AAEC,QADM,UAAW;AAEjB,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;AACD,YAND,SAME;AAAD,YALD,UAKE;AAAD,QAJM,UAAW,aAIhB;AACD,YAPD,SAOE;AAAD,YAND,UAME;AAAD,QALM,UAAW,aAKhB;EACC,yBAAA;EACI,qBAAA;;AStdV,YT0dE;EACE,cAAA;EACA,yBAAA;;ASzdJ;ETwbE,cAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,YAAC;AACD,YAAC;AACD,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,cAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,sBAAA;;AAKA,YAHD;AAGC,YAFD;AAEC,QADM,UAAW;AAEjB,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;AACD,YAND,SAME;AAAD,YALD,UAKE;AAAD,QAJM,UAAW,aAIhB;AACD,YAPD,SAOE;AAAD,YAND,UAME;AAAD,QALM,UAAW,aAKhB;EACC,yBAAA;EACI,qBAAA;;ASndV,YTudE;EACE,cAAA;EACA,yBAAA;;ASrdJ;ETobE,cAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,YAAC;AACD,YAAC;AACD,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,cAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,sBAAA;;AAKA,YAHD;AAGC,YAFD;AAEC,QADM,UAAW;AAEjB,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;AACD,YAND,SAME;AAAD,YALD,UAKE;AAAD,QAJM,UAAW,aAIhB;AACD,YAPD,SAOE;AAAD,YAND,UAME;AAAD,QALM,UAAW,aAKhB;EACC,yBAAA;EACI,qBAAA;;AS/cV,YTmdE;EACE,cAAA;EACA,yBAAA;;ASjdJ;ETgbE,cAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,SAAC;AACD,SAAC;AACD,SAAC;AACD,SAAC;AACD,KAAM,iBAAgB;EACpB,cAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,SAAC;AACD,SAAC;AACD,KAAM,iBAAgB;EACpB,sBAAA;;AAKA,SAHD;AAGC,SAFD;AAEC,QADM,UAAW;AAEjB,SAJD,SAIE;AAAD,SAHD,UAGE;AAAD,QAFM,UAAW,UAEhB;AACD,SALD,SAKE;AAAD,SAJD,UAIE;AAAD,QAHM,UAAW,UAGhB;AACD,SAND,SAME;AAAD,SALD,UAKE;AAAD,QAJM,UAAW,UAIhB;AACD,SAPD,SAOE;AAAD,SAND,UAME;AAAD,QALM,UAAW,UAKhB;EACC,yBAAA;EACI,qBAAA;;AS3cV,ST+cE;EACE,cAAA;EACA,yBAAA;;AS7cJ;ET4aE,cAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,YAAC;AACD,YAAC;AACD,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,cAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,sBAAA;;AAKA,YAHD;AAGC,YAFD;AAEC,QADM,UAAW;AAEjB,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;AACD,YAND,SAME;AAAD,YALD,UAKE;AAAD,QAJM,UAAW,aAIhB;AACD,YAPD,SAOE;AAAD,YAND,UAME;AAAD,QALM,UAAW,aAKhB;EACC,yBAAA;EACI,qBAAA;;ASvcV,YT2cE;EACE,cAAA;EACA,yBAAA;;ASzcJ;ETwaE,cAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,WAAC;AACD,WAAC;AACD,WAAC;AACD,WAAC;AACD,KAAM,iBAAgB;EACpB,cAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,WAAC;AACD,WAAC;AACD,KAAM,iBAAgB;EACpB,sBAAA;;AAKA,WAHD;AAGC,WAFD;AAEC,QADM,UAAW;AAEjB,WAJD,SAIE;AAAD,WAHD,UAGE;AAAD,QAFM,UAAW,YAEhB;AACD,WALD,SAKE;AAAD,WAJD,UAIE;AAAD,QAHM,UAAW,YAGhB;AACD,WAND,SAME;AAAD,WALD,UAKE;AAAD,QAJM,UAAW,YAIhB;AACD,WAPD,SAOE;AAAD,WAND,UAME;AAAD,QALM,UAAW,YAKhB;EACC,yBAAA;EACI,qBAAA;;ASncV,WTucE;EACE,cAAA;EACA,yBAAA;;AShcJ;EACE,cAAA;EACA,mBAAA;EACA,eAAA;EACA,gBAAA;;AAEA;AACA,SAAC;AACD,SAAC;AACD,QAAQ,UAAW;EACjB,6BAAA;ET2BF,wBAAA;EACQ,gBAAA;;ASzBR;AACA,SAAC;AACD,SAAC;AACD,SAAC;EACC,yBAAA;;AAEF,SAAC;AACD,SAAC;EACC,cAAA;EACA,0BAAA;EACA,6BAAA;;AAIA,SAFD,UAEE;AAAD,QADM,UAAW,UAChB;AACD,SAHD,UAGE;AAAD,QAFM,UAAW,UAEhB;EACC,cAAA;EACA,qBAAA;;AASN;ACvBA,aAAc;EVubZ,kBAAA;EACA,eAAA;EACA,iBAAA;EACA,kBAAA;;AS/ZF;AC5BA,aAAc;EVwbZ,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AS3ZF;ACjCA,aAAc;EVybZ,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;ASnZF;EACE,cAAA;EACA,WAAA;EACA,eAAA;EACA,gBAAA;;AAIF,UAAW;EACT,eAAA;;AAOA,KAHG,eAGF;AAAD,KAFG,cAEF;AAAD,KADG,eACF;EACC,WAAA;;AEnJJ;EACE,UAAA;EXqHA,wCAAA;EACQ,gCAAA;;AWpHR,KAAC;EACC,UAAA;;AAIJ;EACE,aAAA;;AACA,SAAC;EACC,cAAA;;AAGJ;EACE,kBAAA;EACA,SAAA;EACA,gBAAA;EXqGA,qCAAA;EACQ,6BAAA;;AYtHV;EACE,aAAa,sBAAb;EACA,qDAAA;EACA,2TAAA;;AAOF;EACE,kBAAA;EACA,QAAA;EACA,qBAAA;EACA,aAAa,sBAAb;EACA,kBAAA;EACA,mBAAA;EACA,cAAA;EACA,mCAAA;EACA,kCAAA;;AAIkC,mBAAC;EAAU,SAAS,KAAT;;AACX,eAAC;EAAU,SAAS,KAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,aAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,aAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,2BAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,0BAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,6BAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,0BAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,2BAAC;EAAU,SAAS,OAAT;;AACX,+BAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,6BAAC;EAAU,SAAS,OAAT;;AACX,iCAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AClO/C;EACE,qBAAA;EACA,QAAA;EACA,SAAA;EACA,gBAAA;EACA,sBAAA;EACA,qBAAA;EACA,mCAAA;EACA,kCAAA;;AAIF;EACE,kBAAA;;AAIF,gBAAgB;EACd,UAAA;;AAIF;EACE,kBAAA;EACA,SAAA;EACA,OAAA;EACA,aAAA;EACA,aAAA;EACA,WAAA;EACA,gBAAA;EACA,cAAA;EACA,eAAA;EACA,gBAAA;EACA,eAAA;EACA,yBAAA;EACA,yBAAA;EACA,qCAAA;EACA,kBAAA;Eb8EA,mDAAA;EACQ,2CAAA;Ea7ER,4BAAA;;AAKA,cAAC;EACC,QAAA;EACA,UAAA;;AAxBJ,cA4BE;EboVA,WAAA;EACA,aAAA;EACA,gBAAA;EACA,yBAAA;;AanXF,cAiCE,KAAK;EACH,cAAA;EACA,iBAAA;EACA,WAAA;EACA,mBAAA;EACA,uBAAA;EACA,cAAA;EACA,mBAAA;;AAMF,cADa,KAAK,IACjB;AACD,cAFa,KAAK,IAEjB;EACC,qBAAA;EACA,cAAA;EACA,yBAAA;;AAMF,cADa,UAAU;AAEvB,cAFa,UAAU,IAEtB;AACD,cAHa,UAAU,IAGtB;EACC,cAAA;EACA,qBAAA;EACA,UAAA;EACA,yBAAA;;AASF,cADa,YAAY;AAEzB,cAFa,YAAY,IAExB;AACD,cAHa,YAAY,IAGxB;EACC,cAAA;;AAKF,cADa,YAAY,IACxB;AACD,cAFa,YAAY,IAExB;EACC,qBAAA;EACA,6BAAA;EACA,sBAAA;EbkPF,mEAAA;EahPE,mBAAA;;AAKJ,KAEE;EACE,cAAA;;AAHJ,KAOE;EACE,UAAA;;AAQJ;EACE,UAAA;EACA,QAAA;;AAQF;EACE,OAAA;EACA,WAAA;;AAIF;EACE,cAAA;EACA,iBAAA;EACA,eAAA;EACA,uBAAA;EACA,cAAA;;AAIF;EACE,eAAA;EACA,OAAA;EACA,QAAA;EACA,SAAA;EACA,MAAA;EACA,YAAA;;AAIF,WAAY;EACV,QAAA;EACA,UAAA;;AAQF,OAGE;AAFF,oBAAqB,UAEnB;EACE,aAAA;EACA,wBAAA;EACA,SAAS,EAAT;;AANJ,OASE;AARF,oBAAqB,UAQnB;EACE,SAAA;EACA,YAAA;EACA,kBAAA;;AAsBJ,QAb2C;EACzC,aACE;IAnEF,UAAA;IACA,QAAA;;EAiEA,aAME;IA9DF,OAAA;IACA,WAAA;;;AH7IF;AACA;EACE,kBAAA;EACA,qBAAA;EACA,sBAAA;;AAJF,UAKE;AAJF,mBAIE;EACE,kBAAA;EACA,WAAA;;AAEA,UAJF,OAIG;AAAD,mBAJF,OAIG;AACD,UALF,OAKG;AAAD,mBALF,OAKG;AACD,UANF,OAMG;AAAD,mBANF,OAMG;AACD,UAPF,OAOG;AAAD,mBAPF,OAOG;EACC,UAAA;;AAEF,UAVF,OAUG;AAAD,mBAVF,OAUG;EAEC,aAAA;;AAMN,UACE,KAAK;AADP,UAEE,KAAK;AAFP,UAGE,WAAW;AAHb,UAIE,WAAW;EACT,iBAAA;;AAKJ;EACE,iBAAA;;AADF,YAIE;AAJF,YAKE;EACE,WAAA;;AANJ,YAQE;AARF,YASE;AATF,YAUE;EACE,gBAAA;;AAIJ,UAAW,OAAM,IAAI,cAAc,IAAI,aAAa,IAAI;EACtD,gBAAA;;AAIF,UAAW,OAAM;EACf,cAAA;;AACA,UAFS,OAAM,YAEd,IAAI,aAAa,IAAI;EV2CtB,6BAAA;EACG,0BAAA;;AUvCL,UAAW,OAAM,WAAW,IAAI;AAChC,UAAW,mBAAkB,IAAI;EV6C/B,4BAAA;EACG,yBAAA;;AUzCL,UAAW;EACT,WAAA;;AAEF,UAAW,aAAY,IAAI,cAAc,IAAI,aAAc;EACzD,gBAAA;;AAEF,UAAW,aAAY,YACrB,OAAM;AADR,UAAW,aAAY,YAErB;EVwBA,6BAAA;EACG,0BAAA;;AUrBL,UAAW,aAAY,WAAY,OAAM;EV4BvC,4BAAA;EACG,yBAAA;;AUxBL,UAAW,iBAAgB;AAC3B,UAAU,KAAM;EACd,UAAA;;AAiBF,UAAW,OAAO;EAChB,iBAAA;EACA,kBAAA;;AAEF,UAAW,UAAU;EACnB,kBAAA;EACA,mBAAA;;AAKF,UAAU,KAAM;EVGd,wDAAA;EACQ,gDAAA;;AUAR,UAJQ,KAAM,iBAIb;EVDD,wBAAA;EACQ,gBAAA;;AUOV,IAAK;EACH,cAAA;;AAGF,OAAQ;EACN,uBAAA;EACA,sBAAA;;AAGF,OAAQ,QAAQ;EACd,uBAAA;;AAOF,mBACE;AADF,mBAEE;AAFF,mBAGE,aAAa;EACX,cAAA;EACA,WAAA;EACA,WAAA;EACA,eAAA;;AAPJ,mBAWE,aAEE;EACE,WAAA;;AAdN,mBAkBE,OAAO;AAlBT,mBAmBE,OAAO;AAnBT,mBAoBE,aAAa;AApBf,mBAqBE,aAAa;EACX,gBAAA;EACA,cAAA;;AAKF,mBADkB,OACjB,IAAI,cAAc,IAAI;EACrB,gBAAA;;AAEF,mBAJkB,OAIjB,YAAY,IAAI;EACf,4BAAA;EVvEF,6BAAA;EACC,4BAAA;;AUyED,mBARkB,OAQjB,WAAW,IAAI;EACd,8BAAA;EVnFF,0BAAA;EACC,yBAAA;;AUsFH,mBAAoB,aAAY,IAAI,cAAc,IAAI,aAAc;EAClE,gBAAA;;AAEF,mBAAoB,aAAY,YAAY,IAAI,aAC9C,OAAM;AADR,mBAAoB,aAAY,YAAY,IAAI,aAE9C;EVpFA,6BAAA;EACC,4BAAA;;AUuFH,mBAAoB,aAAY,WAAW,IAAI,cAAe,OAAM;EVhGlE,0BAAA;EACC,yBAAA;;AUwGH;EACE,cAAA;EACA,WAAA;EACA,mBAAA;EACA,yBAAA;;AAJF,oBAKE;AALF,oBAME;EACE,WAAA;EACA,mBAAA;EACA,SAAA;;AATJ,oBAWE,aAAa;EACX,WAAA;;AAMJ,uBAAwB,OAAO,QAAO;AACtC,uBAAwB,OAAO,QAAO;EACpC,aAAA;;AI1NF;EACE,kBAAA;EACA,cAAA;EACA,yBAAA;;AAGA,YAAC;EACC,WAAA;EACA,eAAA;EACA,gBAAA;;AATJ,YAYE;EAGE,kBAAA;EACA,UAAA;EAKA,WAAA;EAEA,WAAA;EACA,gBAAA;;AASJ,eAAgB;AAChB,eAAgB;AAChB,eAAgB,mBAAmB;Edw2BjC,YAAA;EACA,kBAAA;EACA,eAAA;EACA,iBAAA;EACA,kBAAA;;AAEA,MAAM,ech3BQ;Adg3Bd,MAAM,ec/2BQ;Ad+2Bd,MAAM,ec92BQ,mBAAmB;Ed+2B/B,YAAA;EACA,iBAAA;;AAGF,QAAQ,ecr3BM;Adq3Bd,QAAQ,ecp3BM;Ado3Bd,QAAQ,ecn3BM,mBAAmB;Ado3BjC,MAAM,UAAU,ect3BF;Ads3Bd,MAAM,UAAU,ecr3BF;Adq3Bd,MAAM,UAAU,ecp3BF,mBAAmB;Edq3B/B,YAAA;;Acp3BJ,eAAgB;AAChB,eAAgB;AAChB,eAAgB,mBAAmB;Edq2BjC,YAAA;EACA,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AAEA,MAAM,ec72BQ;Ad62Bd,MAAM,ec52BQ;Ad42Bd,MAAM,ec32BQ,mBAAmB;Ed42B/B,YAAA;EACA,iBAAA;;AAGF,QAAQ,ecl3BM;Adk3Bd,QAAQ,ecj3BM;Adi3Bd,QAAQ,ech3BM,mBAAmB;Adi3BjC,MAAM,UAAU,ecn3BF;Adm3Bd,MAAM,UAAU,ecl3BF;Adk3Bd,MAAM,UAAU,ecj3BF,mBAAmB;Edk3B/B,YAAA;;Ac72BJ;AACA;AACA,YAAa;EACX,mBAAA;;AAEA,kBAAC,IAAI,cAAc,IAAI;AAAvB,gBAAC,IAAI,cAAc,IAAI;AAAvB,YAHW,cAGV,IAAI,cAAc,IAAI;EACrB,gBAAA;;AAIJ;AACA;EACE,SAAA;EACA,mBAAA;EACA,sBAAA;;AAKF;EACE,iBAAA;EACA,eAAA;EACA,mBAAA;EACA,cAAA;EACA,cAAA;EACA,kBAAA;EACA,yBAAA;EACA,yBAAA;EACA,kBAAA;;AAGA,kBAAC;EACC,iBAAA;EACA,eAAA;EACA,kBAAA;;AAEF,kBAAC;EACC,kBAAA;EACA,eAAA;EACA,kBAAA;;AApBJ,kBAwBE,MAAK;AAxBP,kBAyBE,MAAK;EACH,aAAA;;AAKJ,YAAa,cAAa;AAC1B,kBAAkB;AAClB,gBAAgB,YAAa;AAC7B,gBAAgB,YAAa,aAAa;AAC1C,gBAAgB,YAAa;AAC7B,gBAAgB,WAAY,OAAM,IAAI,aAAa,IAAI;AACvD,gBAAgB,WAAY,aAAY,IAAI,aAAc;EdFxD,6BAAA;EACG,0BAAA;;AcIL,kBAAkB;EAChB,eAAA;;AAEF,YAAa,cAAa;AAC1B,kBAAkB;AAClB,gBAAgB,WAAY;AAC5B,gBAAgB,WAAY,aAAa;AACzC,gBAAgB,WAAY;AAC5B,gBAAgB,YAAa,OAAM,IAAI;AACvC,gBAAgB,YAAa,aAAY,IAAI,cAAe;EdN1D,4BAAA;EACG,yBAAA;;AcQL,kBAAkB;EAChB,cAAA;;AAKF;EACE,kBAAA;EAGA,YAAA;EACA,mBAAA;;AALF,gBASE;EACE,kBAAA;;AAVJ,gBASE,OAEE;EACE,iBAAA;;AAGF,gBANF,OAMG;AACD,gBAPF,OAOG;AACD,gBARF,OAQG;EACC,UAAA;;AAKJ,gBAAC,YACC;AADF,gBAAC,YAEC;EACE,kBAAA;;AAGJ,gBAAC,WACC;AADF,gBAAC,WAEC;EACE,iBAAA;;ACtJN;EACE,gBAAA;EACA,eAAA;EACA,gBAAA;;AAHF,IAME;EACE,kBAAA;EACA,cAAA;;AARJ,IAME,KAIE;EACE,kBAAA;EACA,cAAA;EACA,kBAAA;;AACA,IARJ,KAIE,IAIG;AACD,IATJ,KAIE,IAKG;EACC,qBAAA;EACA,yBAAA;;AAKJ,IAhBF,KAgBG,SAAU;EACT,cAAA;;AAEA,IAnBJ,KAgBG,SAAU,IAGR;AACD,IApBJ,KAgBG,SAAU,IAIR;EACC,cAAA;EACA,qBAAA;EACA,6BAAA;EACA,mBAAA;;AAOJ,IADF,MAAM;AAEJ,IAFF,MAAM,IAEH;AACD,IAHF,MAAM,IAGH;EACC,yBAAA;EACA,qBAAA;;AAzCN,IAkDE;EfkVA,WAAA;EACA,aAAA;EACA,gBAAA;EACA,yBAAA;;AevYF,IAyDE,KAAK,IAAI;EACP,eAAA;;AASJ;EACE,gCAAA;;AADF,SAEE;EACE,WAAA;EAEA,mBAAA;;AALJ,SAEE,KAME;EACE,iBAAA;EACA,uBAAA;EACA,6BAAA;EACA,0BAAA;;AACA,SAXJ,KAME,IAKG;EACC,qCAAA;;AAMF,SAlBJ,KAiBG,OAAQ;AAEP,SAnBJ,KAiBG,OAAQ,IAEN;AACD,SApBJ,KAiBG,OAAQ,IAGN;EACC,cAAA;EACA,yBAAA;EACA,yBAAA;EACA,gCAAA;EACA,eAAA;;AAKN,SAAC;EAqDD,WAAA;EA8BA,gBAAA;;AAnFA,SAAC,cAuDD;EACE,WAAA;;AAxDF,SAAC,cAuDD,KAEG;EACC,kBAAA;EACA,kBAAA;;AA3DJ,SAAC,cA+DD,YAAY;EACV,SAAA;EACA,UAAA;;AAYJ,QATqC;EASrC,SA7EG,cAqEC;IACE,mBAAA;IACA,SAAA;;EAMN,SA7EG,cAqEC,KAGE;IACE,gBAAA;;;AAzEN,SAAC,cAqFD,KAAK;EAEH,eAAA;EACA,kBAAA;;AAxFF,SAAC,cA2FD,UAAU;AA3FV,SAAC,cA4FD,UAAU,IAAG;AA5Fb,SAAC,cA6FD,UAAU,IAAG;EACX,yBAAA;;AAcJ,QAXqC;EAWrC,SA5GG,cAkGC,KAAK;IACH,gCAAA;IACA,0BAAA;;EAQN,SA5GG,cAsGC,UAAU;EAMd,SA5GG,cAuGC,UAAU,IAAG;EAKjB,SA5GG,cAwGC,UAAU,IAAG;IACX,4BAAA;;;AAhGN,UACE;EACE,WAAA;;AAFJ,UACE,KAIE;EACE,kBAAA;;AANN,UACE,KAOE;EACE,gBAAA;;AAKA,UAbJ,KAYG,OAAQ;AAEP,UAdJ,KAYG,OAAQ,IAEN;AACD,UAfJ,KAYG,OAAQ,IAGN;EACC,cAAA;EACA,yBAAA;;AAQR,YACE;EACE,WAAA;;AAFJ,YACE,KAEE;EACE,eAAA;EACA,cAAA;;AAYN;EACE,WAAA;;AADF,cAGE;EACE,WAAA;;AAJJ,cAGE,KAEG;EACC,kBAAA;EACA,kBAAA;;AAPN,cAWE,YAAY;EACV,SAAA;EACA,UAAA;;AAYJ,QATqC;EASrC,cARI;IACE,mBAAA;IACA,SAAA;;EAMN,cARI,KAGE;IACE,gBAAA;;;AASR;EACE,gBAAA;;AADF,mBAGE,KAAK;EAEH,eAAA;EACA,kBAAA;;AANJ,mBASE,UAAU;AATZ,mBAUE,UAAU,IAAG;AAVf,mBAWE,UAAU,IAAG;EACX,yBAAA;;AAcJ,QAXqC;EAWrC,mBAVI,KAAK;IACH,gCAAA;IACA,0BAAA;;EAQN,mBANI,UAAU;EAMd,mBALI,UAAU,IAAG;EAKjB,mBAJI,UAAU,IAAG;IACX,4BAAA;;;AAUN,YACE;EACE,aAAA;;AAFJ,YAIE;EACE,cAAA;;AASJ,SAAU;EAER,gBAAA;Ef3IA,0BAAA;EACC,yBAAA;;AgB1FH;EACE,kBAAA;EACA,gBAAA;EACA,mBAAA;EACA,6BAAA;;AAQF,QAH6C;EAG7C;IAFI,kBAAA;;;AAgBJ,QAH6C;EAG7C;IAFI,WAAA;;;AAeJ;EACE,iBAAA;EACA,mBAAA;EACA,mBAAA;EACA,kBAAA;EACA,iCAAA;EACA,kDAAA;EAEA,iCAAA;;AAEA,gBAAC;EACC,gBAAA;;AA4BJ,QAzB6C;EAyB7C;IAxBI,WAAA;IACA,aAAA;IACA,gBAAA;;EAEA,gBAAC;IACC,yBAAA;IACA,uBAAA;IACA,iBAAA;IACA,4BAAA;;EAGF,gBAAC;IACC,mBAAA;;EAKF,iBAAkB;EAClB,kBAAmB;EACnB,oBAAqB;IACnB,eAAA;IACA,gBAAA;;;AAUN,UAEE;AADF,gBACE;AAFF,UAGE;AAFF,gBAEE;EACE,mBAAA;EACA,kBAAA;;AAMF,QAJ6C;EAI7C,UATA;EASA,gBATA;EASA,UARA;EAQA,gBARA;IAKI,eAAA;IACA,cAAA;;;AAaN;EACE,aAAA;EACA,qBAAA;;AAKF,QAH6C;EAG7C;IAFI,gBAAA;;;AAKJ;AACA;EACE,eAAA;EACA,QAAA;EACA,OAAA;EACA,aAAA;;AAMF,QAH6C;EAG7C;EAAA;IAFI,gBAAA;;;AAGJ;EACE,MAAA;EACA,qBAAA;;AAEF;EACE,SAAA;EACA,gBAAA;EACA,qBAAA;;AAMF;EACE,WAAA;EACA,kBAAA;EACA,eAAA;EACA,iBAAA;EACA,YAAA;;AAEA,aAAC;AACD,aAAC;EACC,qBAAA;;AASJ,QAN6C;EACzC,OAAQ,aAAa;EACrB,OAAQ,mBAAmB;IACzB,kBAAA;;;AAWN;EACE,kBAAA;EACA,YAAA;EACA,kBAAA;EACA,iBAAA;EhBsaA,eAAA;EACA,kBAAA;EgBraA,6BAAA;EACA,sBAAA;EACA,6BAAA;EACA,kBAAA;;AAIA,cAAC;EACC,aAAA;;AAdJ,cAkBE;EACE,cAAA;EACA,WAAA;EACA,WAAA;EACA,kBAAA;;AAtBJ,cAwBE,UAAU;EACR,eAAA;;AAMJ,QAH6C;EAG7C;IAFI,aAAA;;;AAUJ;EACE,mBAAA;;AADF,WAGE,KAAK;EACH,iBAAA;EACA,oBAAA;EACA,iBAAA;;AA2BF,QAxB+C;EAwB/C,WAtBE,MAAM;IACJ,gBAAA;IACA,WAAA;IACA,WAAA;IACA,aAAA;IACA,6BAAA;IACA,SAAA;IACA,gBAAA;;EAeJ,WAtBE,MAAM,eAQJ,KAAK;EAcT,WAtBE,MAAM,eASJ;IACE,0BAAA;;EAYN,WAtBE,MAAM,eAYJ,KAAK;IACH,iBAAA;;EACA,WAdJ,MAAM,eAYJ,KAAK,IAEF;EACD,WAfJ,MAAM,eAYJ,KAAK,IAGF;IACC,sBAAA;;;AAuBV,QAhB6C;EAgB7C;IAfI,WAAA;IACA,SAAA;;EAcJ,WAZI;IACE,WAAA;;EAWN,WAZI,KAEE;IACE,iBAAA;IACA,oBAAA;;EAIJ,WAAC,aAAa;IACZ,mBAAA;;;AAkBN,QAN2C;EACzC;ICnQA,sBAAA;;EDoQA;ICvQA,uBAAA;;;ADgRF;EACE,kBAAA;EACA,mBAAA;EACA,kBAAA;EACA,iCAAA;EACA,oCAAA;EhB3KA,4FAAA;EACQ,oFAAA;EAkeR,eAAA;EACA,kBAAA;;AQ3NF,QAjDqC;EAiDrC,YA/CI;IACE,qBAAA;IACA,gBAAA;IACA,sBAAA;;EA4CN,YAxCI;IACE,qBAAA;IACA,WAAA;IACA,sBAAA;;EAqCN,YAlCI,aAAa;IACX,WAAA;;EAiCN,YA9BI;IACE,gBAAA;IACA,sBAAA;;EA4BN,YAtBI;EAsBJ,YArBI;IACE,qBAAA;IACA,aAAA;IACA,gBAAA;IACA,eAAA;IACA,sBAAA;;EAgBN,YAdI,OAAO,MAAK;EAchB,YAbI,UAAU,MAAK;IACb,WAAA;IACA,cAAA;;EAWN,YAJI,cAAc;IACZ,MAAA;;;AQhFJ,QAHiD;EAGjD,YAJA;IAEI,kBAAA;;;AAsBN,QAd6C;EAc7C;IAbI,WAAA;IACA,SAAA;IACA,cAAA;IACA,eAAA;IACA,cAAA;IACA,iBAAA;IhBlMF,wBAAA;IACQ,gBAAA;;EgBqMN,YAAC,aAAa;IACZ,mBAAA;;;AASN,WAAY,KAAK;EACf,aAAA;EhBvOA,0BAAA;EACC,yBAAA;;AgB0OH,oBAAqB,YAAY,KAAK;EhBnOpC,6BAAA;EACC,4BAAA;;AgB2OH;EhBqQE,eAAA;EACA,kBAAA;;AgBnQA,WAAC;EhBkQD,gBAAA;EACA,mBAAA;;AgBhQA,WAAC;EhB+PD,gBAAA;EACA,mBAAA;;AgBtPF;EhBqPE,gBAAA;EACA,mBAAA;;AgBzOF,QAV6C;EAU7C;IATI,WAAA;IACA,iBAAA;IACA,kBAAA;;EAGA,YAAC,aAAa;IACZ,eAAA;;;AASN;EACE,yBAAA;EACA,qBAAA;;AAFF,eAIE;EACE,cAAA;;AACA,eAFF,cAEG;AACD,eAHF,cAGG;EACC,cAAA;EACA,6BAAA;;AATN,eAaE;EACE,cAAA;;AAdJ,eAiBE,YACE,KAAK;EACH,cAAA;;AAEA,eAJJ,YACE,KAAK,IAGF;AACD,eALJ,YACE,KAAK,IAIF;EACC,cAAA;EACA,6BAAA;;AAIF,eAXJ,YAUE,UAAU;AAER,eAZJ,YAUE,UAAU,IAEP;AACD,eAbJ,YAUE,UAAU,IAGP;EACC,cAAA;EACA,yBAAA;;AAIF,eAnBJ,YAkBE,YAAY;AAEV,eApBJ,YAkBE,YAAY,IAET;AACD,eArBJ,YAkBE,YAAY,IAGT;EACC,cAAA;EACA,6BAAA;;AAxCR,eA6CE;EACE,qBAAA;;AACA,eAFF,eAEG;AACD,eAHF,eAGG;EACC,yBAAA;;AAjDN,eA6CE,eAME;EACE,yBAAA;;AApDN,eAwDE;AAxDF,eAyDE;EACE,qBAAA;;AAOE,eAHJ,YAEE,QAAQ;AAEN,eAJJ,YAEE,QAAQ,IAEL;AACD,eALJ,YAEE,QAAQ,IAGL;EACC,yBAAA;EACA,cAAA;;AAiCN,QA7BiD;EA6BjD,eAxCA,YAaI,MAAM,eACJ,KAAK;IACH,cAAA;;EACA,eAhBR,YAaI,MAAM,eACJ,KAAK,IAEF;EACD,eAjBR,YAaI,MAAM,eACJ,KAAK,IAGF;IACC,cAAA;IACA,6BAAA;;EAIF,eAvBR,YAaI,MAAM,eASJ,UAAU;EAER,eAxBR,YAaI,MAAM,eASJ,UAAU,IAEP;EACD,eAzBR,YAaI,MAAM,eASJ,UAAU,IAGP;IACC,cAAA;IACA,yBAAA;;EAIF,eA/BR,YAaI,MAAM,eAiBJ,YAAY;EAEV,eAhCR,YAaI,MAAM,eAiBJ,YAAY,IAET;EACD,eAjCR,YAaI,MAAM,eAiBJ,YAAY,IAGT;IACC,cAAA;IACA,6BAAA;;;AAjGZ,eA6GE;EACE,cAAA;;AACA,eAFF,aAEG;EACC,cAAA;;AAQN;EACE,yBAAA;EACA,qBAAA;;AAFF,eAIE;EACE,cAAA;;AACA,eAFF,cAEG;AACD,eAHF,cAGG;EACC,cAAA;EACA,6BAAA;;AATN,eAaE;EACE,cAAA;;AAdJ,eAiBE,YACE,KAAK;EACH,cAAA;;AAEA,eAJJ,YACE,KAAK,IAGF;AACD,eALJ,YACE,KAAK,IAIF;EACC,cAAA;EACA,6BAAA;;AAIF,eAXJ,YAUE,UAAU;AAER,eAZJ,YAUE,UAAU,IAEP;AACD,eAbJ,YAUE,UAAU,IAGP;EACC,cAAA;EACA,yBAAA;;AAIF,eAnBJ,YAkBE,YAAY;AAEV,eApBJ,YAkBE,YAAY,IAET;AACD,eArBJ,YAkBE,YAAY,IAGT;EACC,cAAA;EACA,6BAAA;;AAxCR,eA8CE;EACE,qBAAA;;AACA,eAFF,eAEG;AACD,eAHF,eAGG;EACC,yBAAA;;AAlDN,eA8CE,eAME;EACE,yBAAA;;AArDN,eAyDE;AAzDF,eA0DE;EACE,qBAAA;;AAME,eAFJ,YACE,QAAQ;AAEN,eAHJ,YACE,QAAQ,IAEL;AACD,eAJJ,YACE,QAAQ,IAGL;EACC,yBAAA;EACA,cAAA;;AAuCN,QAnCiD;EAmCjD,eA7CA,YAYI,MAAM,eACJ;IACE,qBAAA;;EA+BR,eA7CA,YAYI,MAAM,eAIJ;IACE,yBAAA;;EA4BR,eA7CA,YAYI,MAAM,eAOJ,KAAK;IACH,cAAA;;EACA,eArBR,YAYI,MAAM,eAOJ,KAAK,IAEF;EACD,eAtBR,YAYI,MAAM,eAOJ,KAAK,IAGF;IACC,cAAA;IACA,6BAAA;;EAIF,eA5BR,YAYI,MAAM,eAeJ,UAAU;EAER,eA7BR,YAYI,MAAM,eAeJ,UAAU,IAEP;EACD,eA9BR,YAYI,MAAM,eAeJ,UAAU,IAGP;IACC,cAAA;IACA,yBAAA;;EAIF,eApCR,YAYI,MAAM,eAuBJ,YAAY;EAEV,eArCR,YAYI,MAAM,eAuBJ,YAAY,IAET;EACD,eAtCR,YAYI,MAAM,eAuBJ,YAAY,IAGT;IACC,cAAA;IACA,6BAAA;;;AAvGZ,eA8GE;EACE,cAAA;;AACA,eAFF,aAEG;EACC,cAAA;;AE9lBN;EACE,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,yBAAA;EACA,kBAAA;;AALF,WAOE;EACE,qBAAA;;AARJ,WAOE,KAGE,KAAI;EACF,SAAS,QAAT;EACA,cAAA;EACA,cAAA;;AAbN,WAiBE;EACE,cAAA;;ACpBJ;EACE,qBAAA;EACA,eAAA;EACA,cAAA;EACA,kBAAA;;AAJF,WAME;EACE,eAAA;;AAPJ,WAME,KAEE;AARJ,WAME,KAGE;EACE,kBAAA;EACA,WAAA;EACA,iBAAA;EACA,uBAAA;EACA,qBAAA;EACA,cAAA;EACA,yBAAA;EACA,yBAAA;EACA,iBAAA;;AAEF,WAdF,KAcG,YACC;AADF,WAdF,KAcG,YAEC;EACE,cAAA;EnBqFN,8BAAA;EACG,2BAAA;;AmBlFD,WArBF,KAqBG,WACC;AADF,WArBF,KAqBG,WAEC;EnBuEJ,+BAAA;EACG,4BAAA;;AmBhED,WAFF,KAAK,IAEF;AAAD,WADF,KAAK,OACF;AACD,WAHF,KAAK,IAGF;AAAD,WAFF,KAAK,OAEF;EACC,cAAA;EACA,yBAAA;EACA,qBAAA;;AAMF,WAFF,UAAU;AAER,WADF,UAAU;AAER,WAHF,UAAU,IAGP;AAAD,WAFF,UAAU,OAEP;AACD,WAJF,UAAU,IAIP;AAAD,WAHF,UAAU,OAGP;EACC,UAAA;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;EACA,eAAA;;AAtDN,WA0DE,YACE;AA3DJ,WA0DE,YAEE,OAAM;AA5DV,WA0DE,YAGE,OAAM;AA7DV,WA0DE,YAIE;AA9DJ,WA0DE,YAKE,IAAG;AA/DP,WA0DE,YAME,IAAG;EACD,cAAA;EACA,yBAAA;EACA,qBAAA;EACA,mBAAA;;AASN,cnBodE,KACE;AmBrdJ,cnBodE,KAEE;EACE,kBAAA;EACA,eAAA;;AAEF,cANF,KAMG,YACC;AADF,cANF,KAMG,YAEC;EA7bJ,8BAAA;EACG,2BAAA;;AAgcD,cAZF,KAYG,WACC;AADF,cAZF,KAYG,WAEC;EA3cJ,+BAAA;EACG,4BAAA;;AmBnBL,cnB+cE,KACE;AmBhdJ,cnB+cE,KAEE;EACE,iBAAA;EACA,eAAA;;AAEF,cANF,KAMG,YACC;AADF,cANF,KAMG,YAEC;EA7bJ,8BAAA;EACG,2BAAA;;AAgcD,cAZF,KAYG,WACC;AADF,cAZF,KAYG,WAEC;EA3cJ,+BAAA;EACG,4BAAA;;AoBnGL;EACE,eAAA;EACA,cAAA;EACA,gBAAA;EACA,kBAAA;;AAJF,MAME;EACE,eAAA;;AAPJ,MAME,GAEE;AARJ,MAME,GAGE;EACE,qBAAA;EACA,iBAAA;EACA,yBAAA;EACA,yBAAA;EACA,mBAAA;;AAdN,MAME,GAWE,IAAG;AAjBP,MAME,GAYE,IAAG;EACD,qBAAA;EACA,yBAAA;;AApBN,MAwBE,MACE;AAzBJ,MAwBE,MAEE;EACE,YAAA;;AA3BN,MA+BE,UACE;AAhCJ,MA+BE,UAEE;EACE,WAAA;;AAlCN,MAsCE,UACE;AAvCJ,MAsCE,UAEE,IAAG;AAxCP,MAsCE,UAGE,IAAG;AAzCP,MAsCE,UAIE;EACE,cAAA;EACA,yBAAA;EACA,mBAAA;;AC9CN;EACE,eAAA;EACA,uBAAA;EACA,cAAA;EACA,iBAAA;EACA,cAAA;EACA,cAAA;EACA,kBAAA;EACA,mBAAA;EACA,wBAAA;EACA,oBAAA;;AAIE,MADD,MACE;AACD,MAFD,MAEE;EACC,cAAA;EACA,qBAAA;EACA,eAAA;;AAKJ,MAAC;EACC,aAAA;;AAIF,IAAK;EACH,kBAAA;EACA,SAAA;;AAOJ;ErBmhBE,yBAAA;;AAEE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;AqBnhBN;ErB+gBE,yBAAA;;AAEE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;AqB/gBN;ErB2gBE,yBAAA;;AAEE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;AqB3gBN;ErBugBE,yBAAA;;AAEE,WADD,MACE;AACD,WAFD,MAEE;EACC,yBAAA;;AqBvgBN;ErBmgBE,yBAAA;;AAEE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;AqBngBN;ErB+fE,yBAAA;;AAEE,aADD,MACE;AACD,aAFD,MAEE;EACC,yBAAA;;AsB1jBN;EACE,qBAAA;EACA,eAAA;EACA,gBAAA;EACA,eAAA;EACA,iBAAA;EACA,cAAA;EACA,cAAA;EACA,wBAAA;EACA,mBAAA;EACA,kBAAA;EACA,yBAAA;EACA,mBAAA;;AAGA,MAAC;EACC,aAAA;;AAIF,IAAK;EACH,kBAAA;EACA,SAAA;;AAEF,OAAQ;EACN,MAAA;EACA,gBAAA;;AAMF,CADD,MACE;AACD,CAFD,MAEE;EACC,cAAA;EACA,qBAAA;EACA,eAAA;;AAKJ,CAAC,gBAAgB,OAAQ;AACzB,UAAW,UAAU,IAAI;EACvB,cAAA;EACA,yBAAA;;AAEF,UAAW,KAAK,IAAI;EAClB,gBAAA;;AChDF;EACE,aAAA;EACA,mBAAA;EACA,cAAA;EACA,yBAAA;;AAJF,UAME;AANF,UAOE;EACE,cAAA;;AARJ,UAUE;EACE,mBAAA;EACA,eAAA;EACA,gBAAA;;AAGF,UAAW;EACT,kBAAA;;AAjBJ,UAoBE;EACE,eAAA;;AAiBJ,mBAdgD;EAchD;IAbI,iBAAA;IACA,oBAAA;;EAEA,UAAW;IACT,kBAAA;IACA,mBAAA;;EAQN,UALI;EAKJ,UAJI;IACE,eAAA;;;ArBlCN;EACE,cAAA;EACA,YAAA;EACA,mBAAA;EACA,uBAAA;EACA,yBAAA;EACA,yBAAA;EACA,kBAAA;EFkHA,wCAAA;EACQ,gCAAA;;AE1HV,UAUE;AAVF,UAWE,EAAE;EAEA,iBAAA;EACA,kBAAA;;AAIF,CAAC,UAAC;AACF,CAAC,UAAC;AACF,CAAC,UAAC;EACA,qBAAA;;AArBJ,UAyBE;EACE,YAAA;EACA,cAAA;;AsBzBJ;EACE,aAAA;EACA,mBAAA;EACA,6BAAA;EACA,kBAAA;;AAJF,MAOE;EACE,aAAA;EAEA,cAAA;;AAVJ,MAaE;EACE,iBAAA;;AAdJ,MAkBE;AAlBF,MAmBE;EACE,gBAAA;;AApBJ,MAsBE,IAAI;EACF,eAAA;;AAQJ;EACC,mBAAA;;AADD,kBAIE;EACE,kBAAA;EACA,SAAA;EACA,YAAA;EACA,cAAA;;AAQJ;ExBmXE,yBAAA;EACA,qBAAA;EACA,cAAA;;AwBrXF,cxBuXE;EACE,yBAAA;;AwBxXJ,cxB0XE;EACE,cAAA;;AwBxXJ;ExBgXE,yBAAA;EACA,qBAAA;EACA,cAAA;;AwBlXF,WxBoXE;EACE,yBAAA;;AwBrXJ,WxBuXE;EACE,cAAA;;AwBrXJ;ExB6WE,yBAAA;EACA,qBAAA;EACA,cAAA;;AwB/WF,cxBiXE;EACE,yBAAA;;AwBlXJ,cxBoXE;EACE,cAAA;;AwBlXJ;ExB0WE,yBAAA;EACA,qBAAA;EACA,cAAA;;AwB5WF,axB8WE;EACE,yBAAA;;AwB/WJ,axBiXE;EACE,cAAA;;AyBzaJ;EACE;IAAQ,2BAAA;;EACR;IAAQ,wBAAA;;;AAIV;EACE;IAAQ,2BAAA;;EACR;IAAQ,wBAAA;;;AASV;EACE,gBAAA;EACA,YAAA;EACA,mBAAA;EACA,yBAAA;EACA,kBAAA;EzB0FA,sDAAA;EACQ,8CAAA;;AyBtFV;EACE,WAAA;EACA,SAAA;EACA,YAAA;EACA,eAAA;EACA,iBAAA;EACA,cAAA;EACA,kBAAA;EACA,yBAAA;EzB6EA,sDAAA;EACQ,8CAAA;EAKR,mCAAA;EACQ,2BAAA;;AyB9EV,iBAAkB;EzBqSd,kBAAkB,2LAAlB;EACA,kBAAkB,mLAAlB;EyBpSF,0BAAA;;AAIF,SAAS,OAAQ;EzBoJf,0DAAA;EACQ,kDAAA;;AyB5IV;EzBkiBE,yBAAA;;AACA,iBAAkB;EA7QhB,kBAAkB,2LAAlB;EACA,kBAAkB,mLAAlB;;AyBnRJ;EzB8hBE,yBAAA;;AACA,iBAAkB;EA7QhB,kBAAkB,2LAAlB;EACA,kBAAkB,mLAAlB;;AyB/QJ;EzB0hBE,yBAAA;;AACA,iBAAkB;EA7QhB,kBAAkB,2LAAlB;EACA,kBAAkB,mLAAlB;;AyB3QJ;EzBshBE,yBAAA;;AACA,iBAAkB;EA7QhB,kBAAkB,2LAAlB;EACA,kBAAkB,mLAAlB;;A0B/UJ;AACA;EACE,gBAAA;EACA,OAAA;;AAIF;AACA,MAAO;EACL,gBAAA;;AAEF,MAAM;EACJ,aAAA;;AAIF;EACE,cAAA;;AAIF;EACE,eAAA;;AAOF,MACE;EACE,kBAAA;;AAFJ,MAIE;EACE,iBAAA;;AASJ;EACE,eAAA;EACA,gBAAA;;AC7CF;EAEE,mBAAA;EACA,eAAA;;AAQF;EACE,kBAAA;EACA,cAAA;EACA,kBAAA;EAEA,mBAAA;EACA,yBAAA;EACA,yBAAA;;AAGA,gBAAC;E3BqED,4BAAA;EACC,2BAAA;;A2BnED,gBAAC;EACC,gBAAA;E3ByEF,+BAAA;EACC,8BAAA;;A2BxFH,gBAmBE;EACE,YAAA;;AApBJ,gBAsBE,SAAS;EACP,iBAAA;;AAUJ,CAAC;EACC,cAAA;;AADF,CAAC,gBAGC;EACE,cAAA;;AAIF,CARD,gBAQE;AACD,CATD,gBASE;EACC,qBAAA;EACA,yBAAA;;AAIF,CAfD,gBAeE;AACD,CAhBD,gBAgBE,OAAO;AACR,CAjBD,gBAiBE,OAAO;EACN,UAAA;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AANF,CAfD,gBAeE,OASC;AARF,CAhBD,gBAgBE,OAAO,MAQN;AAPF,CAjBD,gBAiBE,OAAO,MAON;EACE,cAAA;;AAVJ,CAfD,gBAeE,OAYC;AAXF,CAhBD,gBAgBE,OAAO,MAWN;AAVF,CAjBD,gBAiBE,OAAO,MAUN;EACE,cAAA;;A3BoYJ,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;EAKb,cAAA;;AADF,CAAC,iBAJc,OAOb;EAA2B,cAAA;;AAE3B,CALD,iBAJc,OASZ;AACD,CAND,iBAJc,OAUZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAVD,iBAJc,OAcZ;AACD,CAXD,iBAJc,OAeZ,OAAO;AACR,CAZD,iBAJc,OAgBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AAnBN,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;EAKb,cAAA;;AADF,CAAC,iBAJc,IAOb;EAA2B,cAAA;;AAE3B,CALD,iBAJc,IASZ;AACD,CAND,iBAJc,IAUZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAVD,iBAJc,IAcZ;AACD,CAXD,iBAJc,IAeZ,OAAO;AACR,CAZD,iBAJc,IAgBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AAnBN,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;EAKb,cAAA;;AADF,CAAC,iBAJc,OAOb;EAA2B,cAAA;;AAE3B,CALD,iBAJc,OASZ;AACD,CAND,iBAJc,OAUZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAVD,iBAJc,OAcZ;AACD,CAXD,iBAJc,OAeZ,OAAO;AACR,CAZD,iBAJc,OAgBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AAnBN,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;EAKb,cAAA;;AADF,CAAC,iBAJc,MAOb;EAA2B,cAAA;;AAE3B,CALD,iBAJc,MASZ;AACD,CAND,iBAJc,MAUZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAVD,iBAJc,MAcZ;AACD,CAXD,iBAJc,MAeZ,OAAO;AACR,CAZD,iBAJc,MAgBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;A2BlYR;EACE,aAAA;EACA,kBAAA;;AAEF;EACE,gBAAA;EACA,gBAAA;;ACtGF;EACE,mBAAA;EACA,yBAAA;EACA,6BAAA;EACA,kBAAA;E5B+GA,iDAAA;EACQ,yCAAA;;A4B3GV;EACE,aAAA;;AAKF;EACE,kBAAA;EACA,oCAAA;E5B4EA,4BAAA;EACC,2BAAA;;A4B/EH,cAKE,YAAY;EACV,cAAA;;AAKJ;EACE,aAAA;EACA,gBAAA;EACA,eAAA;EACA,cAAA;;AAJF,YAME;EACE,cAAA;;AAKJ;EACE,kBAAA;EACA,yBAAA;EACA,6BAAA;E5B4DA,+BAAA;EACC,8BAAA;;A4BnDH,MACE;EACE,gBAAA;;AAFJ,MACE,cAGE;EACE,mBAAA;EACA,gBAAA;;AAIF,MATF,cASG,YACC,iBAAgB;EACd,aAAA;E5B8BN,4BAAA;EACC,2BAAA;;A4B1BC,MAhBF,cAgBG,WACC,iBAAgB;EACd,gBAAA;E5B+BN,+BAAA;EACC,8BAAA;;A4BzBH,cAAe,cACb,iBAAgB;EACd,mBAAA;;AAUJ,MACE;AADF,MAEE,oBAAoB;EAClB,gBAAA;;AAHJ,MAME,SAAQ;AANV,MAOE,oBAAmB,YAAa,SAAQ;E5BHxC,4BAAA;EACC,2BAAA;;A4BLH,MAME,SAAQ,YAIN,QAAO,YAEL,KAAI,YACF,GAAE;AAbV,MAOE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI,YACF,GAAE;AAbV,MAME,SAAQ,YAKN,QAAO,YACL,KAAI,YACF,GAAE;AAbV,MAOE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI,YACF,GAAE;AAbV,MAME,SAAQ,YAIN,QAAO,YAEL,KAAI,YAEF,GAAE;AAdV,MAOE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI,YAEF,GAAE;AAdV,MAME,SAAQ,YAKN,QAAO,YACL,KAAI,YAEF,GAAE;AAdV,MAOE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI,YAEF,GAAE;EACA,2BAAA;;AAfV,MAME,SAAQ,YAIN,QAAO,YAEL,KAAI,YAKF,GAAE;AAjBV,MAOE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI,YAKF,GAAE;AAjBV,MAME,SAAQ,YAKN,QAAO,YACL,KAAI,YAKF,GAAE;AAjBV,MAOE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI,YAKF,GAAE;AAjBV,MAME,SAAQ,YAIN,QAAO,YAEL,KAAI,YAMF,GAAE;AAlBV,MAOE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI,YAMF,GAAE;AAlBV,MAME,SAAQ,YAKN,QAAO,YACL,KAAI,YAMF,GAAE;AAlBV,MAOE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI,YAMF,GAAE;EACA,4BAAA;;AAnBV,MAyBE,SAAQ;AAzBV,MA0BE,oBAAmB,WAAY,SAAQ;E5BdvC,+BAAA;EACC,8BAAA;;A4BbH,MAyBE,SAAQ,WAIN,QAAO,WAEL,KAAI,WACF,GAAE;AAhCV,MA0BE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI,WACF,GAAE;AAhCV,MAyBE,SAAQ,WAKN,QAAO,WACL,KAAI,WACF,GAAE;AAhCV,MA0BE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI,WACF,GAAE;AAhCV,MAyBE,SAAQ,WAIN,QAAO,WAEL,KAAI,WAEF,GAAE;AAjCV,MA0BE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI,WAEF,GAAE;AAjCV,MAyBE,SAAQ,WAKN,QAAO,WACL,KAAI,WAEF,GAAE;AAjCV,MA0BE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI,WAEF,GAAE;EACA,8BAAA;;AAlCV,MAyBE,SAAQ,WAIN,QAAO,WAEL,KAAI,WAKF,GAAE;AApCV,MA0BE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI,WAKF,GAAE;AApCV,MAyBE,SAAQ,WAKN,QAAO,WACL,KAAI,WAKF,GAAE;AApCV,MA0BE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI,WAKF,GAAE;AApCV,MAyBE,SAAQ,WAIN,QAAO,WAEL,KAAI,WAMF,GAAE;AArCV,MA0BE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI,WAMF,GAAE;AArCV,MAyBE,SAAQ,WAKN,QAAO,WACL,KAAI,WAMF,GAAE;AArCV,MA0BE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI,WAMF,GAAE;EACA,+BAAA;;AAtCV,MA2CE,cAAc;AA3ChB,MA4CE,cAAc;EACZ,6BAAA;;AA7CJ,MA+CE,SAAS,QAAO,YAAa,KAAI,YAAa;AA/ChD,MAgDE,SAAS,QAAO,YAAa,KAAI,YAAa;EAC5C,aAAA;;AAjDJ,MAmDE;AAnDF,MAoDE,oBAAoB;EAClB,SAAA;;AArDJ,MAmDE,kBAGE,QAGE,KACE,KAAI;AA1DZ,MAoDE,oBAAoB,kBAElB,QAGE,KACE,KAAI;AA1DZ,MAmDE,kBAIE,QAEE,KACE,KAAI;AA1DZ,MAoDE,oBAAoB,kBAGlB,QAEE,KACE,KAAI;AA1DZ,MAmDE,kBAKE,QACE,KACE,KAAI;AA1DZ,MAoDE,oBAAoB,kBAIlB,QACE,KACE,KAAI;AA1DZ,MAmDE,kBAGE,QAGE,KAEE,KAAI;AA3DZ,MAoDE,oBAAoB,kBAElB,QAGE,KAEE,KAAI;AA3DZ,MAmDE,kBAIE,QAEE,KAEE,KAAI;AA3DZ,MAoDE,oBAAoB,kBAGlB,QAEE,KAEE,KAAI;AA3DZ,MAmDE,kBAKE,QACE,KAEE,KAAI;AA3DZ,MAoDE,oBAAoB,kBAIlB,QACE,KAEE,KAAI;EACF,cAAA;;AA5DV,MAmDE,kBAGE,QAGE,KAKE,KAAI;AA9DZ,MAoDE,oBAAoB,kBAElB,QAGE,KAKE,KAAI;AA9DZ,MAmDE,kBAIE,QAEE,KAKE,KAAI;AA9DZ,MAoDE,oBAAoB,kBAGlB,QAEE,KAKE,KAAI;AA9DZ,MAmDE,kBAKE,QACE,KAKE,KAAI;AA9DZ,MAoDE,oBAAoB,kBAIlB,QACE,KAKE,KAAI;AA9DZ,MAmDE,kBAGE,QAGE,KAME,KAAI;AA/DZ,MAoDE,oBAAoB,kBAElB,QAGE,KAME,KAAI;AA/DZ,MAmDE,kBAIE,QAEE,KAME,KAAI;AA/DZ,MAoDE,oBAAoB,kBAGlB,QAEE,KAME,KAAI;AA/DZ,MAmDE,kBAKE,QACE,KAME,KAAI;AA/DZ,MAoDE,oBAAoB,kBAIlB,QACE,KAME,KAAI;EACF,eAAA;;AAhEV,MAmDE,kBAiBE,QAEE,KAAI,YACF;AAvER,MAoDE,oBAAoB,kBAgBlB,QAEE,KAAI,YACF;AAvER,MAmDE,kBAkBE,QACE,KAAI,YACF;AAvER,MAoDE,oBAAoB,kBAiBlB,QACE,KAAI,YACF;AAvER,MAmDE,kBAiBE,QAEE,KAAI,YAEF;AAxER,MAoDE,oBAAoB,kBAgBlB,QAEE,KAAI,YAEF;AAxER,MAmDE,kBAkBE,QACE,KAAI,YAEF;AAxER,MAoDE,oBAAoB,kBAiBlB,QACE,KAAI,YAEF;EACE,gBAAA;;AAzEV,MAmDE,kBA0BE,QAEE,KAAI,WACF;AAhFR,MAoDE,oBAAoB,kBAyBlB,QAEE,KAAI,WACF;AAhFR,MAmDE,kBA2BE,QACE,KAAI,WACF;AAhFR,MAoDE,oBAAoB,kBA0BlB,QACE,KAAI,WACF;AAhFR,MAmDE,kBA0BE,QAEE,KAAI,WAEF;AAjFR,MAoDE,oBAAoB,kBAyBlB,QAEE,KAAI,WAEF;AAjFR,MAmDE,kBA2BE,QACE,KAAI,WAEF;AAjFR,MAoDE,oBAAoB,kBA0BlB,QACE,KAAI,WAEF;EACE,gBAAA;;AAlFV,MAuFE;EACE,SAAA;EACA,gBAAA;;AAUJ;EACE,mBAAA;;AADF,YAIE;EACE,gBAAA;EACA,kBAAA;EACA,gBAAA;;AAPJ,YAIE,OAIE;EACE,eAAA;;AATN,YAaE;EACE,gBAAA;;AAdJ,YAaE,eAEE,kBAAkB;EAChB,6BAAA;;AAhBN,YAmBE;EACE,aAAA;;AApBJ,YAmBE,cAEE,kBAAkB;EAChB,gCAAA;;AAON;E5BsLE,qBAAA;;AAEA,cAAE;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;A4BhMN;E5BmLE,qBAAA;;AAEA,cAAE;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;A4B7LN;E5BgLE,qBAAA;;AAEA,cAAE;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;A4B1LN;E5B6KE,qBAAA;;AAEA,WAAE;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,WAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AAGJ,WAAE,gBACA,kBAAkB;EAChB,4BAAA;;A4BvLN;E5B0KE,qBAAA;;AAEA,cAAE;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;A4BpLN;E5BuKE,qBAAA;;AAEA,aAAE;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,aAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AAGJ,aAAE,gBACA,kBAAkB;EAChB,4BAAA;;A6B5ZN;EACE,gBAAA;EACA,aAAA;EACA,mBAAA;EACA,yBAAA;EACA,yBAAA;EACA,kBAAA;E7B6GA,uDAAA;EACQ,+CAAA;;A6BpHV,KAQE;EACE,kBAAA;EACA,iCAAA;;AAKJ;EACE,aAAA;EACA,kBAAA;;AAEF;EACE,YAAA;EACA,kBAAA;;ACtBF;EACE,YAAA;EACA,eAAA;EACA,iBAAA;EACA,cAAA;EACA,cAAA;EACA,4BAAA;E9BkRA,YAAA;EAGA,yBAAA;;A8BlRA,MAAC;AACD,MAAC;EACC,cAAA;EACA,qBAAA;EACA,eAAA;E9B2QF,YAAA;EAGA,yBAAA;;A8BvQA,MAAM;EACJ,UAAA;EACA,eAAA;EACA,uBAAA;EACA,SAAA;EACA,wBAAA;;ACpBJ;EACE,gBAAA;;AAIF;EACE,aAAA;EACA,cAAA;EACA,kBAAA;EACA,eAAA;EACA,MAAA;EACA,QAAA;EACA,SAAA;EACA,OAAA;EACA,aAAA;EACA,iCAAA;EAIA,UAAA;;AAGA,MAAC,KAAM;E/BiIP,mBAAmB,kBAAnB;EACI,eAAe,kBAAf;EACI,WAAW,kBAAX;EApBR,mDAAA;EACG,6CAAA;EACE,yCAAA;EACG,mCAAA;;A+B9GR,MAAC,GAAI;E/B6HL,mBAAmB,eAAnB;EACI,eAAe,eAAf;EACI,WAAW,eAAX;;A+B3HV;EACE,kBAAA;EACA,WAAA;EACA,YAAA;;AAIF;EACE,kBAAA;EACA,yBAAA;EACA,yBAAA;EACA,oCAAA;EACA,kBAAA;E/BqEA,gDAAA;EACQ,wCAAA;E+BpER,4BAAA;EAEA,aAAA;;AAIF;EACE,eAAA;EACA,MAAA;EACA,QAAA;EACA,SAAA;EACA,OAAA;EACA,aAAA;EACA,yBAAA;;AAEA,eAAC;E/BwND,UAAA;EAGA,wBAAA;;A+B1NA,eAAC;E/BuND,YAAA;EAGA,yBAAA;;A+BrNF;EACE,aAAA;EACA,gCAAA;EACA,yBAAA;;AAGF,aAAc;EACZ,gBAAA;;AAIF;EACE,SAAA;EACA,uBAAA;;AAKF;EACE,kBAAA;EACA,aAAA;;AAIF;EACE,gBAAA;EACA,uBAAA;EACA,iBAAA;EACA,6BAAA;;AAJF,aAQE,KAAK;EACH,gBAAA;EACA,gBAAA;;AAVJ,aAaE,WAAW,KAAK;EACd,iBAAA;;AAdJ,aAiBE,WAAW;EACT,cAAA;;AAmBJ,QAdmC;EAEjC;IACE,YAAA;IACA,iBAAA;;EAEF;I/BPA,iDAAA;IACQ,yCAAA;;E+BWR;IAAY,YAAA;;;AAMd,QAHmC;EACjC;IAAY,YAAA;;;ACnId;EACE,kBAAA;EACA,aAAA;EACA,cAAA;EACA,mBAAA;EACA,eAAA;EACA,gBAAA;EhCiRA,UAAA;EAGA,wBAAA;;AgCjRA,QAAC;EhC8QD,YAAA;EAGA,yBAAA;;AgChRA,QAAC;EAAU,gBAAA;EAAmB,cAAA;;AAC9B,QAAC;EAAU,gBAAA;EAAmB,cAAA;;AAC9B,QAAC;EAAU,eAAA;EAAmB,cAAA;;AAC9B,QAAC;EAAU,iBAAA;EAAmB,cAAA;;AAIhC;EACE,gBAAA;EACA,gBAAA;EACA,cAAA;EACA,kBAAA;EACA,qBAAA;EACA,yBAAA;EACA,kBAAA;;AAIF;EACE,kBAAA;EACA,QAAA;EACA,SAAA;EACA,yBAAA;EACA,mBAAA;;AAGA,QAAC,IAAK;EACJ,SAAA;EACA,SAAA;EACA,iBAAA;EACA,uBAAA;EACA,yBAAA;;AAEF,QAAC,SAAU;EACT,SAAA;EACA,SAAA;EACA,uBAAA;EACA,yBAAA;;AAEF,QAAC,UAAW;EACV,SAAA;EACA,UAAA;EACA,uBAAA;EACA,yBAAA;;AAEF,QAAC,MAAO;EACN,QAAA;EACA,OAAA;EACA,gBAAA;EACA,2BAAA;EACA,2BAAA;;AAEF,QAAC,KAAM;EACL,QAAA;EACA,QAAA;EACA,gBAAA;EACA,2BAAA;EACA,0BAAA;;AAEF,QAAC,OAAQ;EACP,MAAA;EACA,SAAA;EACA,iBAAA;EACA,uBAAA;EACA,4BAAA;;AAEF,QAAC,YAAa;EACZ,MAAA;EACA,SAAA;EACA,uBAAA;EACA,4BAAA;;AAEF,QAAC,aAAc;EACb,MAAA;EACA,UAAA;EACA,uBAAA;EACA,4BAAA;;ACvFJ;EACE,kBAAA;EACA,MAAA;EACA,OAAA;EACA,aAAA;EACA,aAAA;EACA,gBAAA;EACA,YAAA;EACA,gBAAA;EACA,yBAAA;EACA,4BAAA;EACA,yBAAA;EACA,oCAAA;EACA,kBAAA;EjCuGA,iDAAA;EACQ,yCAAA;EiCpGR,mBAAA;;AAGA,QAAC;EAAW,iBAAA;;AACZ,QAAC;EAAW,iBAAA;;AACZ,QAAC;EAAW,gBAAA;;AACZ,QAAC;EAAW,kBAAA;;AAGd;EACE,SAAA;EACA,iBAAA;EACA,eAAA;EACA,mBAAA;EACA,iBAAA;EACA,yBAAA;EACA,gCAAA;EACA,0BAAA;;AAGF;EACE,iBAAA;;AAQA,QADO;AAEP,QAFO,SAEN;EACC,kBAAA;EACA,cAAA;EACA,QAAA;EACA,SAAA;EACA,yBAAA;EACA,mBAAA;;AAGJ,QAAS;EACP,kBAAA;;AAEF,QAAS,SAAQ;EACf,kBAAA;EACA,SAAS,EAAT;;AAIA,QAAC,IAAK;EACJ,SAAA;EACA,kBAAA;EACA,sBAAA;EACA,yBAAA;EACA,qCAAA;EACA,aAAA;;AACA,QAPD,IAAK,SAOH;EACC,SAAS,GAAT;EACA,WAAA;EACA,kBAAA;EACA,sBAAA;EACA,yBAAA;;AAGJ,QAAC,MAAO;EACN,QAAA;EACA,WAAA;EACA,iBAAA;EACA,oBAAA;EACA,2BAAA;EACA,uCAAA;;AACA,QAPD,MAAO,SAOL;EACC,SAAS,GAAT;EACA,SAAA;EACA,aAAA;EACA,oBAAA;EACA,2BAAA;;AAGJ,QAAC,OAAQ;EACP,SAAA;EACA,kBAAA;EACA,mBAAA;EACA,4BAAA;EACA,wCAAA;EACA,UAAA;;AACA,QAPD,OAAQ,SAON;EACC,SAAS,GAAT;EACA,QAAA;EACA,kBAAA;EACA,mBAAA;EACA,4BAAA;;AAIJ,QAAC,KAAM;EACL,QAAA;EACA,YAAA;EACA,iBAAA;EACA,qBAAA;EACA,0BAAA;EACA,sCAAA;;AACA,QAPD,KAAM,SAOJ;EACC,SAAS,GAAT;EACA,UAAA;EACA,qBAAA;EACA,0BAAA;EACA,aAAA;;A9B1HN;EACE,kBAAA;;AAGF;EACE,kBAAA;EACA,gBAAA;EACA,WAAA;;AAHF,eAKE;EACE,aAAA;EACA,kBAAA;EH8GF,yCAAA;EACQ,iCAAA;;AGtHV,eAKE,QAME;AAXJ,eAKE,QAOE,IAAI;EAEF,cAAA;;AAdN,eAkBE;AAlBF,eAmBE;AAnBF,eAoBE;EAAU,cAAA;;AApBZ,eAsBE;EACE,OAAA;;AAvBJ,eA0BE;AA1BF,eA2BE;EACE,kBAAA;EACA,MAAA;EACA,WAAA;;AA9BJ,eAiCE;EACE,UAAA;;AAlCJ,eAoCE;EACE,WAAA;;AArCJ,eAuCE,QAAO;AAvCT,eAwCE,QAAO;EACL,OAAA;;AAzCJ,eA4CE,UAAS;EACP,WAAA;;AA7CJ,eA+CE,UAAS;EACP,UAAA;;AAQJ;EACE,kBAAA;EACA,MAAA;EACA,OAAA;EACA,SAAA;EACA,UAAA;EHsNA,YAAA;EAGA,yBAAA;EGvNA,eAAA;EACA,cAAA;EACA,kBAAA;EACA,yCAAA;;AAKA,iBAAC;EH8NC,kBAAkB,8BAA8B,mCAAyC,uCAAzF;EACA,kBAAmB,4EAAnB;EACA,2BAAA;EACA,sHAAA;;AG9NF,iBAAC;EACC,UAAA;EACA,QAAA;EHyNA,kBAAkB,8BAA8B,sCAAyC,oCAAzF;EACA,kBAAmB,4EAAnB;EACA,2BAAA;EACA,sHAAA;;AGvNF,iBAAC;AACD,iBAAC;EACC,aAAA;EACA,cAAA;EACA,qBAAA;EH8LF,YAAA;EAGA,yBAAA;;AG9NF,iBAkCE;AAlCF,iBAmCE;AAnCF,iBAoCE;AApCF,iBAqCE;EACE,kBAAA;EACA,QAAA;EACA,UAAA;EACA,qBAAA;;AAzCJ,iBA2CE;AA3CF,iBA4CE;EACE,SAAA;;AA7CJ,iBA+CE;AA/CF,iBAgDE;EACE,UAAA;;AAjDJ,iBAmDE;AAnDF,iBAoDE;EACE,WAAA;EACA,YAAA;EACA,iBAAA;EACA,kBAAA;EACA,kBAAA;;AAIA,iBADF,WACG;EACC,SAAS,OAAT;;AAIF,iBADF,WACG;EACC,SAAS,OAAT;;AAUN;EACE,kBAAA;EACA,YAAA;EACA,SAAA;EACA,WAAA;EACA,UAAA;EACA,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AATF,oBAWE;EACE,qBAAA;EACA,WAAA;EACA,YAAA;EACA,WAAA;EACA,mBAAA;EACA,yBAAA;EACA,mBAAA;EACA,eAAA;EAUA,yBAAA;EACA,kCAAA;;AA9BJ,oBAgCE;EACE,SAAA;EACA,WAAA;EACA,YAAA;EACA,yBAAA;;AAOJ;EACE,kBAAA;EACA,SAAA;EACA,UAAA;EACA,YAAA;EACA,WAAA;EACA,iBAAA;EACA,oBAAA;EACA,cAAA;EACA,kBAAA;EACA,yCAAA;;AACA,iBAAE;EACA,iBAAA;;AAkCJ,mBA5B8C;EAG5C,iBACE;EADF,iBAEE;EAFF,iBAGE;EAHF,iBAIE;IACE,WAAA;IACA,YAAA;IACA,iBAAA;IACA,kBAAA;IACA,eAAA;;EAKJ;IACE,SAAA;IACA,UAAA;IACA,oBAAA;;EAIF;IACE,YAAA;;;AHlNF,SAAC;AACD,SAAC;AMXH,UNUG;AMVH,UNWG;AMSH,gBNVG;AMUH,gBNTG;AMkBH,INnBG;AMmBH,INlBG;AQsXH,gBAoBE,YR3YC;AQuXH,gBAoBE,YR1YC;AUkBH,YVnBG;AUmBH,YVlBG;AU8HH,mBAWE,aV1IC;AU+HH,mBAWE,aVzIC;AeZH,IfWG;AeXH,IfYG;AgBVH,OhBSG;AgBTH,OhBUG;AgBUH,chBXG;AgBWH,chBVG;AgB6BH,gBhB9BG;AgB8BH,gBhB7BG;AoBfH,MpBcG;AoBdH,MpBeG;A4BLH,W5BIG;A4BJH,W5BKG;A+B+EH,a/BhFG;A+BgFH,a/B/EG;EACC,SAAS,GAAT;EACA,cAAA;;AAEF,SAAC;AMfH,UNeG;AMKH,gBNLG;AMcH,INdG;AQkXH,gBAoBE,YRtYC;AUcH,YVdG;AU0HH,mBAWE,aVrIC;AehBH,IfgBG;AgBdH,OhBcG;AgBMH,chBNG;AgByBH,gBhBzBG;AoBnBH,MpBmBG;A4BTH,W5BSG;A+B2EH,a/B3EG;EACC,WAAA;;AiBdJ;EjB6BE,cAAA;EACA,iBAAA;EACA,kBAAA;;AiB5BF;EACE,uBAAA;;AAEF;EACE,sBAAA;;AAQF;EACE,wBAAA;;AAEF;EACE,yBAAA;;AAEF;EACE,kBAAA;;AAEF;EjB8CE,WAAA;EACA,kBAAA;EACA,iBAAA;EACA,6BAAA;EACA,SAAA;;AiBzCF;EACE,wBAAA;EACA,6BAAA;;AAOF;EACE,eAAA;;AiBnCF;EACE,mBAAA;;AAKF;AACA;AACA;AACA;ElCylBE,wBAAA;;AkCjlBF,QAHqC;EAGrC;IlCykBE,yBAAA;;EACA,KAAK;IAAK,cAAA;;EACV,EAAE;IAAQ,kBAAA;;EACV,EAAE;EACF,EAAE;IAAQ,mBAAA;;;AkCxkBZ,QAHqC,uBAAgC;EAGrE;IlCokBE,yBAAA;;EACA,KAAK;IAAK,cAAA;;EACV,EAAE;IAAQ,kBAAA;;EACV,EAAE;EACF,EAAE;IAAQ,mBAAA;;;AkCnkBZ,QAHqC,uBAAgC;EAGrE;IlC+jBE,yBAAA;;EACA,KAAK;IAAK,cAAA;;EACV,EAAE;IAAQ,kBAAA;;EACV,EAAE;EACF,EAAE;IAAQ,mBAAA;;;AkC9jBZ,QAHqC;EAGrC;IlC0jBE,yBAAA;;EACA,KAAK;IAAK,cAAA;;EACV,EAAE;IAAQ,kBAAA;;EACV,EAAE;EACF,EAAE;IAAQ,mBAAA;;;AkCxjBZ,QAHqC;EAGrC;IlC4jBE,wBAAA;;;AkCvjBF,QAHqC,uBAAgC;EAGrE;IlCujBE,wBAAA;;;AkCljBF,QAHqC,uBAAgC;EAGrE;IlCkjBE,wBAAA;;;AkC7iBF,QAHqC;EAGrC;IlC6iBE,wBAAA;;;AkCtiBF;ElCsiBE,wBAAA;;AkChiBF;EAAA;IlCwhBE,yBAAA;;EACA,KAAK;IAAK,cAAA;;EACV,EAAE;IAAQ,kBAAA;;EACV,EAAE;EACF,EAAE;IAAQ,mBAAA;;;AkCthBZ;EAAA;IlC0hBE,wBAAA","sourcesContent":["/*! normalize.css v3.0.0 | MIT License | git.io/normalize */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS text size adjust after orientation change, without disabling\n// user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined in IE 8/9.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9.\n// Hide the `template` element in IE, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background: transparent;\n}\n\n//\n// Improve readability when focused and also mouse hovered in all browsers.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9, Safari 5, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari 5 and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari 5, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow displayed oddly in IE 9.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari 5.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8+, and Opera\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome\n// (include `-moz` to future-proof).\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box; // 2\n box-sizing: content-box;\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}","//\n// Basic print styles\n// --------------------------------------------------\n// Source: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css\n\n@media print {\n\n * {\n text-shadow: none !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n background: transparent !important;\n box-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links for images, or javascript/internal links\n a[href^=\"javascript:\"]:after,\n a[href^=\"#\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245\n // Once fixed, we can just straight up remove this.\n select {\n background: #fff !important;\n }\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .table {\n td,\n th {\n background-color: #fff !important;\n }\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n}\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 62.5%;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: underline;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n","//\n// Mixins\n// --------------------------------------------------\n\n\n// Utilities\n// -------------------------\n\n// Clearfix\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n\n// WebKit-style focus\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n\n// Center-align a block level element\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n\n// Sizing shortcuts\n.size(@width; @height) {\n width: @width;\n height: @height;\n}\n.square(@size) {\n .size(@size; @size);\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n &::-moz-placeholder { color: @color; // Firefox\n opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Text overflow\n// Requires inline-block or block for proper styling\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n// CSS image replacement\n//\n// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. Note\n// that we cannot chain the mixins together in Less, so they are repeated.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (will be removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n\n\n\n// CSS3 PROPERTIES\n// --------------------------------------------------\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support the\n// standard `box-shadow` property.\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Transitions\n.transition(@transition) {\n -webkit-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n// Transformations\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n transform: rotate(@degrees);\n}\n.scale(@ratio; @ratio-y...) {\n -webkit-transform: scale(@ratio, @ratio-y);\n -ms-transform: scale(@ratio, @ratio-y); // IE9 only\n transform: scale(@ratio, @ratio-y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n transform: translate(@x, @y);\n}\n.skew(@x; @y) {\n -webkit-transform: skew(@x, @y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n transform: skew(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// User select\n// For selecting text on the page\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n\n// Resize anything\n.resizable(@direction) {\n resize: @direction; // Options: horizontal, vertical, both\n overflow: auto; // Safari fix\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Opacity\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n\n\n\n// GRADIENTS\n// --------------------------------------------------\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n\n// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n\n\n\n// Retina images\n//\n// Short retina mixin for setting background-image and -size\n\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// COMPONENT MIXINS\n// --------------------------------------------------\n\n// Horizontal dividers\n// -------------------------\n// Dividers (basically an hr) within dropdowns and nav lists\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n\n// Panels\n// -------------------------\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse .panel-body {\n border-top-color: @border;\n }\n }\n & > .panel-footer {\n + .panel-collapse .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n\n// Alerts\n// -------------------------\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n\n// Tables\n// -------------------------\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n\n// List Groups\n// -------------------------\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a& {\n color: @color;\n\n .list-group-item-heading { color: inherit; }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n\n// Button variants\n// -------------------------\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:hover,\n &:focus,\n &:active,\n &.active,\n .open .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 8%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &:active,\n &.active {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n// -------------------------\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n\n// Pagination\n// -------------------------\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n\n// Labels\n// -------------------------\n.label-variant(@color) {\n background-color: @color;\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n\n// Contextual backgrounds\n// -------------------------\n.bg-variant(@color) {\n background-color: @color;\n a&:hover {\n background-color: darken(@color, 10%);\n }\n}\n\n// Typography\n// -------------------------\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover {\n color: darken(@color, 10%);\n }\n}\n\n// Navbar vertical align\n// -------------------------\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n\n// Progress bars\n// -------------------------\n.progress-bar-variant(@color) {\n background-color: @color;\n .progress-striped & {\n #gradient > .striped();\n }\n}\n\n// Responsive utilities\n// -------------------------\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n}\n\n\n// Grid System\n// -----------\n\n// Centered container element\n.container-fixed() {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n @media (min-width: @screen-xs-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-xs-column-push(@columns) {\n @media (min-width: @screen-xs-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-xs-column-pull(@columns) {\n @media (min-width: @screen-xs-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n\n// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n border-color: @border-color;\n background-color: @background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @text-color;\n }\n}\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-focus-border` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n","//\n// Variables\n// --------------------------------------------------\n\n\n//== Colors\n//\n//## Gray and brand colors for use across Bootstrap.\n\n@gray-darker: lighten(#000, 13.5%); // #222\n@gray-dark: lighten(#000, 20%); // #333\n@gray: lighten(#000, 33.5%); // #555\n@gray-light: lighten(#000, 60%); // #999\n@gray-lighter: lighten(#000, 93.5%); // #eee\n\n@brand-primary: #428bca;\n@brand-success: #5cb85c;\n@brand-info: #5bc0de;\n@brand-warning: #f0ad4e;\n@brand-danger: #d9534f;\n\n\n//== Scaffolding\n//\n// ## Settings for some of the most global styles.\n\n//** Background color for `<body>`.\n@body-bg: #fff;\n//** Global text color on `<body>`.\n@text-color: @gray-dark;\n\n//** Global textual link color.\n@link-color: @brand-primary;\n//** Link hover color set via `darken()` function.\n@link-hover-color: darken(@link-color, 15%);\n\n\n//== Typography\n//\n//## Font, line-height, and color for body text, headings, and more.\n\n@font-family-sans-serif: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n@font-family-serif: Georgia, \"Times New Roman\", Times, serif;\n//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.\n@font-family-monospace: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n@font-family-base: @font-family-sans-serif;\n\n@font-size-base: 14px;\n@font-size-large: ceil((@font-size-base * 1.25)); // ~18px\n@font-size-small: ceil((@font-size-base * 0.85)); // ~12px\n\n@font-size-h1: floor((@font-size-base * 2.6)); // ~36px\n@font-size-h2: floor((@font-size-base * 2.15)); // ~30px\n@font-size-h3: ceil((@font-size-base * 1.7)); // ~24px\n@font-size-h4: ceil((@font-size-base * 1.25)); // ~18px\n@font-size-h5: @font-size-base;\n@font-size-h6: ceil((@font-size-base * 0.85)); // ~12px\n\n//** Unit-less `line-height` for use in components like buttons.\n@line-height-base: 1.428571429; // 20/14\n//** Computed \"line-height\" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.\n@line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px\n\n//** By default, this inherits from the `<body>`.\n@headings-font-family: inherit;\n@headings-font-weight: 500;\n@headings-line-height: 1.1;\n@headings-color: inherit;\n\n\n//-- Iconography\n//\n//## Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower.\n\n@icon-font-path: \"../fonts/\";\n@icon-font-name: \"glyphicons-halflings-regular\";\n@icon-font-svg-id: \"glyphicons_halflingsregular\";\n\n//== Components\n//\n//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).\n\n@padding-base-vertical: 6px;\n@padding-base-horizontal: 12px;\n\n@padding-large-vertical: 10px;\n@padding-large-horizontal: 16px;\n\n@padding-small-vertical: 5px;\n@padding-small-horizontal: 10px;\n\n@padding-xs-vertical: 1px;\n@padding-xs-horizontal: 5px;\n\n@line-height-large: 1.33;\n@line-height-small: 1.5;\n\n@border-radius-base: 4px;\n@border-radius-large: 6px;\n@border-radius-small: 3px;\n\n//** Global color for active items (e.g., navs or dropdowns).\n@component-active-color: #fff;\n//** Global background color for active items (e.g., navs or dropdowns).\n@component-active-bg: @brand-primary;\n\n//** Width of the `border` for generating carets that indicator dropdowns.\n@caret-width-base: 4px;\n//** Carets increase slightly in size for larger components.\n@caret-width-large: 5px;\n\n\n//== Tables\n//\n//## Customizes the `.table` component with basic values, each used across all table variations.\n\n//** Padding for `<th>`s and `<td>`s.\n@table-cell-padding: 8px;\n//** Padding for cells in `.table-condensed`.\n@table-condensed-cell-padding: 5px;\n\n//** Default background color used for all tables.\n@table-bg: transparent;\n//** Background color used for `.table-striped`.\n@table-bg-accent: #f9f9f9;\n//** Background color used for `.table-hover`.\n@table-bg-hover: #f5f5f5;\n@table-bg-active: @table-bg-hover;\n\n//** Border color for table and cell borders.\n@table-border-color: #ddd;\n\n\n//== Buttons\n//\n//## For each of Bootstrap's buttons, define text, background and border color.\n\n@btn-font-weight: normal;\n\n@btn-default-color: #333;\n@btn-default-bg: #fff;\n@btn-default-border: #ccc;\n\n@btn-primary-color: #fff;\n@btn-primary-bg: @brand-primary;\n@btn-primary-border: darken(@btn-primary-bg, 5%);\n\n@btn-success-color: #fff;\n@btn-success-bg: @brand-success;\n@btn-success-border: darken(@btn-success-bg, 5%);\n\n@btn-info-color: #fff;\n@btn-info-bg: @brand-info;\n@btn-info-border: darken(@btn-info-bg, 5%);\n\n@btn-warning-color: #fff;\n@btn-warning-bg: @brand-warning;\n@btn-warning-border: darken(@btn-warning-bg, 5%);\n\n@btn-danger-color: #fff;\n@btn-danger-bg: @brand-danger;\n@btn-danger-border: darken(@btn-danger-bg, 5%);\n\n@btn-link-disabled-color: @gray-light;\n\n\n//== Forms\n//\n//##\n\n//** `<input>` background color\n@input-bg: #fff;\n//** `<input disabled>` background color\n@input-bg-disabled: @gray-lighter;\n\n//** Text color for `<input>`s\n@input-color: @gray;\n//** `<input>` border color\n@input-border: #ccc;\n//** `<input>` border radius\n@input-border-radius: @border-radius-base;\n//** Border color for inputs on focus\n@input-border-focus: #66afe9;\n\n//** Placeholder text color\n@input-color-placeholder: @gray-light;\n\n//** Default `.form-control` height\n@input-height-base: (@line-height-computed + (@padding-base-vertical * 2) + 2);\n//** Large `.form-control` height\n@input-height-large: (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);\n//** Small `.form-control` height\n@input-height-small: (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);\n\n@legend-color: @gray-dark;\n@legend-border-color: #e5e5e5;\n\n//** Background color for textual input addons\n@input-group-addon-bg: @gray-lighter;\n//** Border color for textual input addons\n@input-group-addon-border-color: @input-border;\n\n\n//== Dropdowns\n//\n//## Dropdown menu container and contents.\n\n//** Background for the dropdown menu.\n@dropdown-bg: #fff;\n//** Dropdown menu `border-color`.\n@dropdown-border: rgba(0,0,0,.15);\n//** Dropdown menu `border-color` **for IE8**.\n@dropdown-fallback-border: #ccc;\n//** Divider color for between dropdown items.\n@dropdown-divider-bg: #e5e5e5;\n\n//** Dropdown link text color.\n@dropdown-link-color: @gray-dark;\n//** Hover color for dropdown links.\n@dropdown-link-hover-color: darken(@gray-dark, 5%);\n//** Hover background for dropdown links.\n@dropdown-link-hover-bg: #f5f5f5;\n\n//** Active dropdown menu item text color.\n@dropdown-link-active-color: @component-active-color;\n//** Active dropdown menu item background color.\n@dropdown-link-active-bg: @component-active-bg;\n\n//** Disabled dropdown menu item background color.\n@dropdown-link-disabled-color: @gray-light;\n\n//** Text color for headers within dropdown menus.\n@dropdown-header-color: @gray-light;\n\n// Note: Deprecated @dropdown-caret-color as of v3.1.0\n@dropdown-caret-color: #000;\n\n\n//-- Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n//\n// Note: These variables are not generated into the Customizer.\n\n@zindex-navbar: 1000;\n@zindex-dropdown: 1000;\n@zindex-popover: 1010;\n@zindex-tooltip: 1030;\n@zindex-navbar-fixed: 1030;\n@zindex-modal-background: 1040;\n@zindex-modal: 1050;\n\n\n//== Media queries breakpoints\n//\n//## Define the breakpoints at which your layout will change, adapting to different screen sizes.\n\n// Extra small screen / phone\n// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1\n@screen-xs: 480px;\n@screen-xs-min: @screen-xs;\n@screen-phone: @screen-xs-min;\n\n// Small screen / tablet\n// Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1\n@screen-sm: 768px;\n@screen-sm-min: @screen-sm;\n@screen-tablet: @screen-sm-min;\n\n// Medium screen / desktop\n// Note: Deprecated @screen-md and @screen-desktop as of v3.0.1\n@screen-md: 992px;\n@screen-md-min: @screen-md;\n@screen-desktop: @screen-md-min;\n\n// Large screen / wide desktop\n// Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1\n@screen-lg: 1200px;\n@screen-lg-min: @screen-lg;\n@screen-lg-desktop: @screen-lg-min;\n\n// So media queries don't overlap when required, provide a maximum\n@screen-xs-max: (@screen-sm-min - 1);\n@screen-sm-max: (@screen-md-min - 1);\n@screen-md-max: (@screen-lg-min - 1);\n\n\n//== Grid system\n//\n//## Define your custom responsive grid.\n\n//** Number of columns in the grid.\n@grid-columns: 12;\n//** Padding between columns. Gets divided in half for the left and right.\n@grid-gutter-width: 30px;\n// Navbar collapse\n//** Point at which the navbar becomes uncollapsed.\n@grid-float-breakpoint: @screen-sm-min;\n//** Point at which the navbar begins collapsing.\n@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);\n\n\n//== Container sizes\n//\n//## Define the maximum width of `.container` for different screen sizes.\n\n// Small screen / tablet\n@container-tablet: ((720px + @grid-gutter-width));\n//** For `@screen-sm-min` and up.\n@container-sm: @container-tablet;\n\n// Medium screen / desktop\n@container-desktop: ((940px + @grid-gutter-width));\n//** For `@screen-md-min` and up.\n@container-md: @container-desktop;\n\n// Large screen / wide desktop\n@container-large-desktop: ((1140px + @grid-gutter-width));\n//** For `@screen-lg-min` and up.\n@container-lg: @container-large-desktop;\n\n\n//== Navbar\n//\n//##\n\n// Basics of a navbar\n@navbar-height: 50px;\n@navbar-margin-bottom: @line-height-computed;\n@navbar-border-radius: @border-radius-base;\n@navbar-padding-horizontal: floor((@grid-gutter-width / 2));\n@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);\n@navbar-collapse-max-height: 340px;\n\n@navbar-default-color: #777;\n@navbar-default-bg: #f8f8f8;\n@navbar-default-border: darken(@navbar-default-bg, 6.5%);\n\n// Navbar links\n@navbar-default-link-color: #777;\n@navbar-default-link-hover-color: #333;\n@navbar-default-link-hover-bg: transparent;\n@navbar-default-link-active-color: #555;\n@navbar-default-link-active-bg: darken(@navbar-default-bg, 6.5%);\n@navbar-default-link-disabled-color: #ccc;\n@navbar-default-link-disabled-bg: transparent;\n\n// Navbar brand label\n@navbar-default-brand-color: @navbar-default-link-color;\n@navbar-default-brand-hover-color: darken(@navbar-default-brand-color, 10%);\n@navbar-default-brand-hover-bg: transparent;\n\n// Navbar toggle\n@navbar-default-toggle-hover-bg: #ddd;\n@navbar-default-toggle-icon-bar-bg: #888;\n@navbar-default-toggle-border-color: #ddd;\n\n\n// Inverted navbar\n// Reset inverted navbar basics\n@navbar-inverse-color: @gray-light;\n@navbar-inverse-bg: #222;\n@navbar-inverse-border: darken(@navbar-inverse-bg, 10%);\n\n// Inverted navbar links\n@navbar-inverse-link-color: @gray-light;\n@navbar-inverse-link-hover-color: #fff;\n@navbar-inverse-link-hover-bg: transparent;\n@navbar-inverse-link-active-color: @navbar-inverse-link-hover-color;\n@navbar-inverse-link-active-bg: darken(@navbar-inverse-bg, 10%);\n@navbar-inverse-link-disabled-color: #444;\n@navbar-inverse-link-disabled-bg: transparent;\n\n// Inverted navbar brand label\n@navbar-inverse-brand-color: @navbar-inverse-link-color;\n@navbar-inverse-brand-hover-color: #fff;\n@navbar-inverse-brand-hover-bg: transparent;\n\n// Inverted navbar toggle\n@navbar-inverse-toggle-hover-bg: #333;\n@navbar-inverse-toggle-icon-bar-bg: #fff;\n@navbar-inverse-toggle-border-color: #333;\n\n\n//== Navs\n//\n//##\n\n//=== Shared nav styles\n@nav-link-padding: 10px 15px;\n@nav-link-hover-bg: @gray-lighter;\n\n@nav-disabled-link-color: @gray-light;\n@nav-disabled-link-hover-color: @gray-light;\n\n@nav-open-link-hover-color: #fff;\n\n//== Tabs\n@nav-tabs-border-color: #ddd;\n\n@nav-tabs-link-hover-border-color: @gray-lighter;\n\n@nav-tabs-active-link-hover-bg: @body-bg;\n@nav-tabs-active-link-hover-color: @gray;\n@nav-tabs-active-link-hover-border-color: #ddd;\n\n@nav-tabs-justified-link-border-color: #ddd;\n@nav-tabs-justified-active-link-border-color: @body-bg;\n\n//== Pills\n@nav-pills-border-radius: @border-radius-base;\n@nav-pills-active-link-hover-bg: @component-active-bg;\n@nav-pills-active-link-hover-color: @component-active-color;\n\n\n//== Pagination\n//\n//##\n\n@pagination-color: @link-color;\n@pagination-bg: #fff;\n@pagination-border: #ddd;\n\n@pagination-hover-color: @link-hover-color;\n@pagination-hover-bg: @gray-lighter;\n@pagination-hover-border: #ddd;\n\n@pagination-active-color: #fff;\n@pagination-active-bg: @brand-primary;\n@pagination-active-border: @brand-primary;\n\n@pagination-disabled-color: @gray-light;\n@pagination-disabled-bg: #fff;\n@pagination-disabled-border: #ddd;\n\n\n//== Pager\n//\n//##\n\n@pager-bg: @pagination-bg;\n@pager-border: @pagination-border;\n@pager-border-radius: 15px;\n\n@pager-hover-bg: @pagination-hover-bg;\n\n@pager-active-bg: @pagination-active-bg;\n@pager-active-color: @pagination-active-color;\n\n@pager-disabled-color: @pagination-disabled-color;\n\n\n//== Jumbotron\n//\n//##\n\n@jumbotron-padding: 30px;\n@jumbotron-color: inherit;\n@jumbotron-bg: @gray-lighter;\n@jumbotron-heading-color: inherit;\n@jumbotron-font-size: ceil((@font-size-base * 1.5));\n\n\n//== Form states and alerts\n//\n//## Define colors for form feedback states and, by default, alerts.\n\n@state-success-text: #3c763d;\n@state-success-bg: #dff0d8;\n@state-success-border: darken(spin(@state-success-bg, -10), 5%);\n\n@state-info-text: #31708f;\n@state-info-bg: #d9edf7;\n@state-info-border: darken(spin(@state-info-bg, -10), 7%);\n\n@state-warning-text: #8a6d3b;\n@state-warning-bg: #fcf8e3;\n@state-warning-border: darken(spin(@state-warning-bg, -10), 5%);\n\n@state-danger-text: #a94442;\n@state-danger-bg: #f2dede;\n@state-danger-border: darken(spin(@state-danger-bg, -10), 5%);\n\n\n//== Tooltips\n//\n//##\n\n//** Tooltip max width\n@tooltip-max-width: 200px;\n//** Tooltip text color\n@tooltip-color: #fff;\n//** Tooltip background color\n@tooltip-bg: #000;\n@tooltip-opacity: .9;\n\n//** Tooltip arrow width\n@tooltip-arrow-width: 5px;\n//** Tooltip arrow color\n@tooltip-arrow-color: @tooltip-bg;\n\n\n//== Popovers\n//\n//##\n\n//** Popover body background color\n@popover-bg: #fff;\n//** Popover maximum width\n@popover-max-width: 276px;\n//** Popover border color\n@popover-border-color: rgba(0,0,0,.2);\n//** Popover fallback border color\n@popover-fallback-border-color: #ccc;\n\n//** Popover title background color\n@popover-title-bg: darken(@popover-bg, 3%);\n\n//** Popover arrow width\n@popover-arrow-width: 10px;\n//** Popover arrow color\n@popover-arrow-color: #fff;\n\n//** Popover outer arrow width\n@popover-arrow-outer-width: (@popover-arrow-width + 1);\n//** Popover outer arrow color\n@popover-arrow-outer-color: fadein(@popover-border-color, 5%);\n//** Popover outer arrow fallback color\n@popover-arrow-outer-fallback-color: darken(@popover-fallback-border-color, 20%);\n\n\n//== Labels\n//\n//##\n\n//** Default label background color\n@label-default-bg: @gray-light;\n//** Primary label background color\n@label-primary-bg: @brand-primary;\n//** Success label background color\n@label-success-bg: @brand-success;\n//** Info label background color\n@label-info-bg: @brand-info;\n//** Warning label background color\n@label-warning-bg: @brand-warning;\n//** Danger label background color\n@label-danger-bg: @brand-danger;\n\n//** Default label text color\n@label-color: #fff;\n//** Default text color of a linked label\n@label-link-hover-color: #fff;\n\n\n//== Modals\n//\n//##\n\n//** Padding applied to the modal body\n@modal-inner-padding: 20px;\n\n//** Padding applied to the modal title\n@modal-title-padding: 15px;\n//** Modal title line-height\n@modal-title-line-height: @line-height-base;\n\n//** Background color of modal content area\n@modal-content-bg: #fff;\n//** Modal content border color\n@modal-content-border-color: rgba(0,0,0,.2);\n//** Modal content border color **for IE8**\n@modal-content-fallback-border-color: #999;\n\n//** Modal backdrop background color\n@modal-backdrop-bg: #000;\n//** Modal backdrop opacity\n@modal-backdrop-opacity: .5;\n//** Modal header border color\n@modal-header-border-color: #e5e5e5;\n//** Modal footer border color\n@modal-footer-border-color: @modal-header-border-color;\n\n@modal-lg: 900px;\n@modal-md: 600px;\n@modal-sm: 300px;\n\n\n//== Alerts\n//\n//## Define alert colors, border radius, and padding.\n\n@alert-padding: 15px;\n@alert-border-radius: @border-radius-base;\n@alert-link-font-weight: bold;\n\n@alert-success-bg: @state-success-bg;\n@alert-success-text: @state-success-text;\n@alert-success-border: @state-success-border;\n\n@alert-info-bg: @state-info-bg;\n@alert-info-text: @state-info-text;\n@alert-info-border: @state-info-border;\n\n@alert-warning-bg: @state-warning-bg;\n@alert-warning-text: @state-warning-text;\n@alert-warning-border: @state-warning-border;\n\n@alert-danger-bg: @state-danger-bg;\n@alert-danger-text: @state-danger-text;\n@alert-danger-border: @state-danger-border;\n\n\n//== Progress bars\n//\n//##\n\n//** Background color of the whole progress component\n@progress-bg: #f5f5f5;\n//** Progress bar text color\n@progress-bar-color: #fff;\n\n//** Default progress bar color\n@progress-bar-bg: @brand-primary;\n//** Success progress bar color\n@progress-bar-success-bg: @brand-success;\n//** Warning progress bar color\n@progress-bar-warning-bg: @brand-warning;\n//** Danger progress bar color\n@progress-bar-danger-bg: @brand-danger;\n//** Info progress bar color\n@progress-bar-info-bg: @brand-info;\n\n\n//== List group\n//\n//##\n\n//** Background color on `.list-group-item`\n@list-group-bg: #fff;\n//** `.list-group-item` border color\n@list-group-border: #ddd;\n//** List group border radius\n@list-group-border-radius: @border-radius-base;\n\n//** Background color of single list elements on hover\n@list-group-hover-bg: #f5f5f5;\n//** Text color of active list elements\n@list-group-active-color: @component-active-color;\n//** Background color of active list elements\n@list-group-active-bg: @component-active-bg;\n//** Border color of active list elements\n@list-group-active-border: @list-group-active-bg;\n@list-group-active-text-color: lighten(@list-group-active-bg, 40%);\n\n@list-group-link-color: #555;\n@list-group-link-heading-color: #333;\n\n\n//== Panels\n//\n//##\n\n@panel-bg: #fff;\n@panel-body-padding: 15px;\n@panel-border-radius: @border-radius-base;\n\n//** Border color for elements within panels\n@panel-inner-border: #ddd;\n@panel-footer-bg: #f5f5f5;\n\n@panel-default-text: @gray-dark;\n@panel-default-border: #ddd;\n@panel-default-heading-bg: #f5f5f5;\n\n@panel-primary-text: #fff;\n@panel-primary-border: @brand-primary;\n@panel-primary-heading-bg: @brand-primary;\n\n@panel-success-text: @state-success-text;\n@panel-success-border: @state-success-border;\n@panel-success-heading-bg: @state-success-bg;\n\n@panel-info-text: @state-info-text;\n@panel-info-border: @state-info-border;\n@panel-info-heading-bg: @state-info-bg;\n\n@panel-warning-text: @state-warning-text;\n@panel-warning-border: @state-warning-border;\n@panel-warning-heading-bg: @state-warning-bg;\n\n@panel-danger-text: @state-danger-text;\n@panel-danger-border: @state-danger-border;\n@panel-danger-heading-bg: @state-danger-bg;\n\n\n//== Thumbnails\n//\n//##\n\n//** Padding around the thumbnail image\n@thumbnail-padding: 4px;\n//** Thumbnail background color\n@thumbnail-bg: @body-bg;\n//** Thumbnail border color\n@thumbnail-border: #ddd;\n//** Thumbnail border radius\n@thumbnail-border-radius: @border-radius-base;\n\n//** Custom text color for thumbnail captions\n@thumbnail-caption-color: @text-color;\n//** Padding around the thumbnail caption\n@thumbnail-caption-padding: 9px;\n\n\n//== Wells\n//\n//##\n\n@well-bg: #f5f5f5;\n@well-border: darken(@well-bg, 7%);\n\n\n//== Badges\n//\n//##\n\n@badge-color: #fff;\n//** Linked badge text color on hover\n@badge-link-hover-color: #fff;\n@badge-bg: @gray-light;\n\n//** Badge text color in active nav link\n@badge-active-color: @link-color;\n//** Badge background color in active nav link\n@badge-active-bg: #fff;\n\n@badge-font-weight: bold;\n@badge-line-height: 1;\n@badge-border-radius: 10px;\n\n\n//== Breadcrumbs\n//\n//##\n\n@breadcrumb-padding-vertical: 8px;\n@breadcrumb-padding-horizontal: 15px;\n//** Breadcrumb background color\n@breadcrumb-bg: #f5f5f5;\n//** Breadcrumb text color\n@breadcrumb-color: #ccc;\n//** Text color of current page in the breadcrumb\n@breadcrumb-active-color: @gray-light;\n//** Textual separator for between breadcrumb elements\n@breadcrumb-separator: \"/\";\n\n\n//== Carousel\n//\n//##\n\n@carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6);\n\n@carousel-control-color: #fff;\n@carousel-control-width: 15%;\n@carousel-control-opacity: .5;\n@carousel-control-font-size: 20px;\n\n@carousel-indicator-active-bg: #fff;\n@carousel-indicator-border-color: #fff;\n\n@carousel-caption-color: #fff;\n\n\n//== Close\n//\n//##\n\n@close-font-weight: bold;\n@close-color: #000;\n@close-text-shadow: 0 1px 0 #fff;\n\n\n//== Code\n//\n//##\n\n@code-color: #c7254e;\n@code-bg: #f9f2f4;\n\n@kbd-color: #fff;\n@kbd-bg: #333;\n\n@pre-bg: #f5f5f5;\n@pre-color: @gray-dark;\n@pre-border-color: #ccc;\n@pre-scrollable-max-height: 340px;\n\n\n//== Type\n//\n//##\n\n//** Text muted color\n@text-muted: @gray-light;\n//** Abbreviations and acronyms border color\n@abbr-border-color: @gray-light;\n//** Headings small color\n@headings-small-color: @gray-light;\n//** Blockquote small color\n@blockquote-small-color: @gray-light;\n//** Blockquote font size\n@blockquote-font-size: (@font-size-base * 1.25);\n//** Blockquote border color\n@blockquote-border-color: @gray-lighter;\n//** Page header border color\n@page-header-border-color: @gray-lighter;\n\n\n//== Miscellaneous\n//\n//##\n\n//** Horizontal line color.\n@hr-border: @gray-lighter;\n\n//** Horizontal offset for forms and lists.\n@component-offset-horizontal: 180px;\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n display: block;\n padding: @thumbnail-padding;\n margin-bottom: @line-height-computed;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n > img,\n a > img {\n &:extend(.img-responsive);\n margin-left: auto;\n margin-right: auto;\n }\n\n // Add a hover state for linked versions only\n a&:hover,\n a&:focus,\n a&.active {\n border-color: @link-color;\n }\n\n // Image captions\n .caption {\n padding: @thumbnail-caption-padding;\n color: @thumbnail-caption-color;\n }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n\n > .item {\n display: none;\n position: relative;\n .transition(.6s ease-in-out left);\n\n // Account for jankitude on images\n > img,\n > a > img {\n &:extend(.img-responsive);\n line-height: 1;\n }\n }\n\n > .active,\n > .next,\n > .prev { display: block; }\n\n > .active {\n left: 0;\n }\n\n > .next,\n > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n > .next {\n left: 100%;\n }\n > .prev {\n left: -100%;\n }\n > .next.left,\n > .prev.right {\n left: 0;\n }\n\n > .active.left {\n left: -100%;\n }\n > .active.right {\n left: 100%;\n }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: @carousel-control-width;\n .opacity(@carousel-control-opacity);\n font-size: @carousel-control-font-size;\n color: @carousel-control-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n // We can't have this transition here because WebKit cancels the carousel\n // animation if you trip this while in the middle of another animation.\n\n // Set gradients for backgrounds\n &.left {\n #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n }\n &.right {\n left: auto;\n right: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n outline: none;\n color: @carousel-control-color;\n text-decoration: none;\n .opacity(.9);\n }\n\n // Toggles\n .icon-prev,\n .icon-next,\n .glyphicon-chevron-left,\n .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n }\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n }\n .icon-prev,\n .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n margin-left: -10px;\n font-family: serif;\n }\n\n .icon-prev {\n &:before {\n content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n }\n }\n .icon-next {\n &:before {\n content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n }\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n\n li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid @carousel-indicator-border-color;\n border-radius: 10px;\n cursor: pointer;\n\n // IE8-9 hack for event handling\n //\n // Internet Explorer 8-9 does not support clicks on elements without a set\n // `background-color`. We cannot use `filter` since that's not viewed as a\n // background color by the browser. Thus, a hack is needed.\n //\n // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n // set alpha transparency for the best results possible.\n background-color: #000 \\9; // IE8\n background-color: rgba(0,0,0,0); // IE9\n }\n .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: @carousel-caption-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n & .btn {\n text-shadow: none; // No shadow for button elements in carousel-caption\n }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicon-chevron-left,\n .glyphicon-chevron-right,\n .icon-prev,\n .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n margin-left: -15px;\n font-size: 30px;\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n\n // Move up the indicators\n .carousel-indicators {\n bottom: 20px;\n }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 200;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: 14px base font * 85% = about 12px\nsmall,\n.small { font-size: 85%; }\n\n// Undo browser default styling\ncite { font-style: normal; }\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// --------------------------------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n@media (min-width: @grid-float-breakpoint) {\n .dl-horizontal {\n dt {\n float: left;\n width: (@component-offset-horizontal - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @component-offset-horizontal;\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n }\n}\n\n// MISC\n// ----\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: '\\2014 \\00A0'; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n text-align: right;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: ''; }\n &:after {\n content: '\\00A0 \\2014'; // nbsp, em dash\n }\n }\n}\n\n// Quotes\nblockquote:before,\nblockquote:after {\n content: \"\";\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n white-space: nowrap;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid(lg);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n max-width: 100%;\n background-color: @table-bg;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-child(odd) {\n > td,\n > th {\n background-color: @table-bg-accent;\n }\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n > td,\n > th {\n background-color: @table-bg-hover;\n }\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n@media (max-width: @screen-xs-max) {\n .table-responsive {\n width: 100%;\n margin-bottom: (@line-height-computed * 0.75);\n overflow-y: hidden;\n overflow-x: scroll;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n -webkit-overflow-scrolling: touch;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: -webkit-min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; /* IE8-9 */\n line-height: normal;\n}\n\n// Set the height of file controls to match text inputs\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n cursor: not-allowed;\n background-color: @input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content\n }\n\n // Reset height for `textarea`s\n textarea& {\n height: auto;\n }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n\n\n// Special styles for iOS date input\n//\n// In Mobile Safari, date inputs require a pixel line-height that matches the\n// given height of the input.\n\ninput[type=\"date\"] {\n line-height: @input-height-base;\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n margin-bottom: 15px;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n display: block;\n min-height: @line-height-computed; // clear the floating input if there is no label text\n margin-top: 10px;\n margin-bottom: 10px;\n padding-left: 20px;\n label {\n display: inline;\n font-weight: normal;\n cursor: pointer;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n float: left;\n margin-left: -20px;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"],\n.radio,\n.radio-inline,\n.checkbox,\n.checkbox-inline {\n &[disabled],\n fieldset[disabled] & {\n cursor: not-allowed;\n }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n\n.input-sm {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n\n.input-lg {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n // Enable absolute positioning\n position: relative;\n\n // Ensure icons don't overlap text\n .form-control {\n padding-right: (@input-height-base * 1.25);\n }\n\n // Feedback icon (requires .glyphicon classes)\n .form-control-feedback {\n position: absolute;\n top: (@line-height-computed + 5); // Height of the `label` and its margin\n right: 0;\n display: block;\n width: @input-height-base;\n height: @input-height-base;\n line-height: @input-height-base;\n text-align: center;\n }\n}\n\n// Feedback states\n.has-success {\n .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n margin-bottom: 0; // Remove default margin from `p`\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n display: block; // account for any element using help-block\n margin-top: 5px;\n margin-bottom: 10px;\n color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n // Kick in the inline\n @media (min-width: @screen-sm-min) {\n // Inline-block all the things for \"inline\"\n .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // In navbar-form, allow folks to *not* use `.form-group`\n .form-control {\n display: inline-block;\n width: auto; // Prevent labels from stacking above inputs in `.form-group`\n vertical-align: middle;\n }\n // Input groups need that 100% width though\n .input-group > .form-control {\n width: 100%;\n }\n\n .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // Remove default margin on radios/checkboxes that were used for stacking, and\n // then undo the floating of radios and checkboxes to match (which also avoids\n // a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).\n .radio,\n .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n padding-left: 0;\n vertical-align: middle;\n }\n .radio input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"] {\n float: none;\n margin-left: 0;\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n top: 0;\n }\n }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n // Consistent vertical alignment of labels, radios, and checkboxes\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n // Account for padding we're adding to ensure the alignment and of help text\n // and other content below items\n .radio,\n .checkbox {\n min-height: (@line-height-computed + (@padding-base-vertical + 1));\n }\n\n // Make form groups behave like rows\n .form-group {\n .make-row();\n }\n\n .form-control-static {\n padding-top: (@padding-base-vertical + 1);\n }\n\n // Only right align form labels here when the columns stop stacking\n @media (min-width: @screen-sm-min) {\n .control-label {\n text-align: right;\n }\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n top: 0;\n right: (@grid-gutter-width / 2);\n }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n display: inline-block;\n margin-bottom: 0; // For input.btn\n font-weight: @btn-font-weight;\n text-align: center;\n vertical-align: middle;\n cursor: pointer;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n white-space: nowrap;\n .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @border-radius-base);\n .user-select(none);\n\n &,\n &:active,\n &.active {\n &:focus {\n .tab-focus();\n }\n }\n\n &:hover,\n &:focus {\n color: @btn-default-color;\n text-decoration: none;\n }\n\n &:active,\n &.active {\n outline: 0;\n background-image: none;\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n cursor: not-allowed;\n pointer-events: none; // Future-proof disabling of clicks\n .opacity(.65);\n .box-shadow(none);\n }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n color: @link-color;\n font-weight: normal;\n cursor: pointer;\n border-radius: 0;\n\n &,\n &:active,\n &[disabled],\n fieldset[disabled] & {\n background-color: transparent;\n .box-shadow(none);\n }\n &,\n &:hover,\n &:focus,\n &:active {\n border-color: transparent;\n }\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: underline;\n background-color: transparent;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @btn-link-disabled-color;\n text-decoration: none;\n }\n }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n // line-height: ensure even-numbered height of button next to large input\n .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n.btn-sm {\n // line-height: ensure proper height of button next to small input\n .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n.btn-xs {\n .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n display: block;\n width: 100%;\n padding-left: 0;\n padding-right: 0;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n &.btn-block {\n width: 100%;\n }\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle; // match .btn alignment given font-size hack above\n > .btn {\n position: relative;\n float: left;\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active,\n &.active {\n z-index: 2;\n }\n &:focus {\n // Remove focus outline when dropdown JS adds it after closing the menu\n outline: none;\n }\n }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n .btn + .btn,\n .btn + .btn-group,\n .btn-group + .btn,\n .btn-group + .btn-group {\n margin-left: -1px;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n margin-left: -5px; // Offset the first child's margin\n &:extend(.clearfix all);\n\n .btn-group,\n .input-group {\n float: left;\n }\n > .btn,\n > .btn-group,\n > .input-group {\n margin-left: 5px;\n }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n margin-left: 0;\n &:not(:last-child):not(.dropdown-toggle) {\n .border-right-radius(0);\n }\n}\n// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-right-radius(0);\n }\n}\n.btn-group > .btn-group:last-child > .btn:first-child {\n .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n // Show no shadow for `.btn-link` since it has no other button styles.\n &.btn-link {\n .box-shadow(none);\n }\n}\n\n\n// Reposition the caret\n.btn .caret {\n margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n border-width: @caret-width-large @caret-width-large 0;\n border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n > .btn,\n > .btn-group,\n > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n }\n\n // Clear floats so dropdown menus can be properly placed\n > .btn-group {\n &:extend(.clearfix all);\n > .btn {\n float: none;\n }\n }\n\n > .btn + .btn,\n > .btn + .btn-group,\n > .btn-group + .btn,\n > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n }\n}\n\n.btn-group-vertical > .btn {\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n &:first-child:not(:last-child) {\n border-top-right-radius: @border-radius-base;\n .border-bottom-radius(0);\n }\n &:last-child:not(:first-child) {\n border-bottom-left-radius: @border-radius-base;\n .border-top-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-bottom-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-top-radius(0);\n}\n\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n > .btn,\n > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n }\n > .btn-group .btn {\n width: 100%;\n }\n}\n\n\n// Checkbox and radio options\n[data-toggle=\"buttons\"] > .btn > input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn > input[type=\"checkbox\"] {\n display: none;\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552.\n\n.fade {\n opacity: 0;\n .transition(opacity .15s linear);\n &.in {\n opacity: 1;\n }\n}\n\n.collapse {\n display: none;\n &.in {\n display: block;\n }\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n .transition(height .35s ease);\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: ~\"url('@{icon-font-path}@{icon-font-name}.eot')\";\n src: ~\"url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype')\",\n ~\"url('@{icon-font-path}@{icon-font-name}.woff') format('woff')\",\n ~\"url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype')\",\n ~\"url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg')\";\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\2a\"; } }\n.glyphicon-plus { &:before { content: \"\\2b\"; } }\n.glyphicon-euro { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: @caret-width-base solid;\n border-right: @caret-width-base solid transparent;\n border-left: @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropdown {\n position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: @zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0; // override default ul\n list-style: none;\n font-size: @font-size-base;\n background-color: @dropdown-bg;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: @border-radius-base;\n .box-shadow(0 6px 12px rgba(0,0,0,.175));\n background-clip: padding-box;\n\n // Aligns the dropdown menu to right\n //\n // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n &.pull-right {\n right: 0;\n left: auto;\n }\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: @line-height-base;\n color: @dropdown-link-color;\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n &:hover,\n &:focus {\n text-decoration: none;\n color: @dropdown-link-hover-color;\n background-color: @dropdown-link-hover-bg;\n }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n text-decoration: none;\n outline: 0;\n background-color: @dropdown-link-active-bg;\n }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-disabled-color;\n }\n}\n// Nuke hover/focus effects\n.dropdown-menu > .disabled > a {\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none; // Remove CSS gradient\n .reset-filter();\n cursor: not-allowed;\n }\n}\n\n// Open state for the dropdown\n.open {\n // Show the menu\n > .dropdown-menu {\n display: block;\n }\n\n // Remove the outline when :focus is triggered\n > a {\n outline: 0;\n }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n left: auto; // Reset the default from `.dropdown-menu`\n right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: @font-size-small;\n line-height: @line-height-base;\n color: @dropdown-header-color;\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n // Reverse the caret\n .caret {\n border-top: 0;\n border-bottom: @caret-width-base solid;\n content: \"\";\n }\n // Different positioning for bottom up menu\n .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 1px;\n }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .dropdown-menu-right();\n }\n // Necessary for overrides of the default right aligned menu.\n // Will remove come v4 in all likelihood.\n .dropdown-menu-left {\n .dropdown-menu-left();\n }\n }\n}\n\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n position: relative; // For dropdowns\n display: table;\n border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n // Undo padding and float of grid classes\n &[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n }\n\n .form-control {\n // Ensure that the input is always above the *appended* addon button for\n // proper border colors.\n position: relative;\n z-index: 2;\n\n // IE9 fubars the placeholder attribute in text inputs and the arrows on\n // select elements in input groups. To fix it, we float the input. Details:\n // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n float: left;\n\n width: 100%;\n margin-bottom: 0;\n }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn { .input-lg(); }\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn { .input-sm(); }\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 1;\n color: @input-color;\n text-align: center;\n background-color: @input-group-addon-bg;\n border: 1px solid @input-group-addon-border-color;\n border-radius: @border-radius-base;\n\n // Sizing\n &.input-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n border-radius: @border-radius-small;\n }\n &.input-lg {\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n border-radius: @border-radius-large;\n }\n\n // Nuke default margins from checkboxes and radios to vertically center within.\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin-top: 0;\n }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n .border-right-radius(0);\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n .border-left-radius(0);\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n position: relative;\n // Jankily prevent input button groups from wrapping with `white-space` and\n // `font-size` in combination with `inline-block` on buttons.\n font-size: 0;\n white-space: nowrap;\n\n // Negative margin for spacing, position for bringing hovered/focused/actived\n // element above the siblings.\n > .btn {\n position: relative;\n + .btn {\n margin-left: -1px;\n }\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active {\n z-index: 2;\n }\n }\n\n // Negative margin to only have a 1px border between the two\n &:first-child {\n > .btn,\n > .btn-group {\n margin-right: -1px;\n }\n }\n &:last-child {\n > .btn,\n > .btn-group {\n margin-left: -1px;\n }\n }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n margin-bottom: 0;\n padding-left: 0; // Override default ul/ol\n list-style: none;\n &:extend(.clearfix all);\n\n > li {\n position: relative;\n display: block;\n\n > a {\n position: relative;\n display: block;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @nav-link-hover-bg;\n }\n }\n\n // Disabled state sets text to gray and nukes hover/tab effects\n &.disabled > a {\n color: @nav-disabled-link-color;\n\n &:hover,\n &:focus {\n color: @nav-disabled-link-hover-color;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n }\n }\n }\n\n // Open dropdowns\n .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @nav-link-hover-bg;\n border-color: @link-color;\n }\n }\n\n // Nav dividers (deprecated with v3.0.1)\n //\n // This should have been removed in v3 with the dropping of `.nav-list`, but\n // we missed it. We don't currently support this anywhere, but in the interest\n // of maintaining backward compatibility in case you use it, it's deprecated.\n .nav-divider {\n .nav-divider();\n }\n\n // Prevent IE8 from misplacing imgs\n //\n // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n > li > a > img {\n max-width: none;\n }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n border-bottom: 1px solid @nav-tabs-border-color;\n > li {\n float: left;\n // Make the list-items overlay the bottom border\n margin-bottom: -1px;\n\n // Actual tabs (as links)\n > a {\n margin-right: 2px;\n line-height: @line-height-base;\n border: 1px solid transparent;\n border-radius: @border-radius-base @border-radius-base 0 0;\n &:hover {\n border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n }\n }\n\n // Active state, and its :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-tabs-active-link-hover-color;\n background-color: @nav-tabs-active-link-hover-bg;\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-bottom-color: transparent;\n cursor: default;\n }\n }\n }\n // pulling this in mainly for less shorthand\n &.nav-justified {\n .nav-justified();\n .nav-tabs-justified();\n }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n float: left;\n\n // Links rendered as pills\n > a {\n border-radius: @nav-pills-border-radius;\n }\n + li {\n margin-left: 2px;\n }\n\n // Active state\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-pills-active-link-hover-color;\n background-color: @nav-pills-active-link-hover-bg;\n }\n }\n }\n}\n\n\n// Stacked pills\n.nav-stacked {\n > li {\n float: none;\n + li {\n margin-top: 2px;\n margin-left: 0; // no need for this gap between nav items\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n width: 100%;\n\n > li {\n float: none;\n > a {\n text-align: center;\n margin-bottom: 5px;\n }\n }\n\n > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n }\n\n @media (min-width: @screen-sm-min) {\n > li {\n display: table-cell;\n width: 1%;\n > a {\n margin-bottom: 0;\n }\n }\n }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n border-bottom: 0;\n\n > li > a {\n // Override margin from .nav-tabs\n margin-right: 0;\n border-radius: @border-radius-base;\n }\n\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border: 1px solid @nav-tabs-justified-link-border-color;\n }\n\n @media (min-width: @screen-sm-min) {\n > li > a {\n border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border-bottom-color: @nav-tabs-justified-active-link-border-color;\n }\n }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n > .tab-pane {\n display: none;\n }\n > .active {\n display: block;\n }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n // make dropdown border overlap tab border\n margin-top: -1px;\n // Remove the top rounded corners here since there is a hard edge above the menu\n .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-margin-bottom;\n border: 1px solid transparent;\n\n // Prevent floats from breaking the navbar\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n max-height: @navbar-collapse-max-height;\n overflow-x: visible;\n padding-right: @navbar-padding-horizontal;\n padding-left: @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n &:extend(.clearfix all);\n -webkit-overflow-scrolling: touch;\n\n &.in {\n overflow-y: auto;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n &.in {\n overflow-y: visible;\n }\n\n // Undo the collapse side padding for navbars with containers to ensure\n // alignment of right-aligned contents.\n .navbar-fixed-top &,\n .navbar-static-top &,\n .navbar-fixed-bottom & {\n padding-left: 0;\n padding-right: 0;\n }\n }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n > .navbar-header,\n > .navbar-collapse {\n margin-right: -@navbar-padding-horizontal;\n margin-left: -@navbar-padding-horizontal;\n\n @media (min-width: @grid-float-breakpoint) {\n margin-right: 0;\n margin-left: 0;\n }\n }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n z-index: @zindex-navbar;\n border-width: 0 0 1px;\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: @zindex-navbar-fixed;\n\n // Undo the rounded corners\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0; // override .navbar defaults\n border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n float: left;\n padding: @navbar-padding-vertical @navbar-padding-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n height: @navbar-height;\n\n &:hover,\n &:focus {\n text-decoration: none;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: @navbar-padding-horizontal;\n padding: 9px 10px;\n .navbar-vertical-align(34px);\n background-color: transparent;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n border-radius: @border-radius-base;\n\n // We remove the `outline` here, but later compensate by attaching `:hover`\n // styles to `:focus`.\n &:focus {\n outline: none;\n }\n\n // Bars\n .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n }\n .icon-bar + .icon-bar {\n margin-top: 4px;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n display: none;\n }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: @line-height-computed;\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n > li > a,\n .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n > li > a {\n line-height: @line-height-computed;\n &:hover,\n &:focus {\n background-image: none;\n }\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin: 0;\n\n > li {\n float: left;\n > a {\n padding-top: @navbar-padding-vertical;\n padding-bottom: @navbar-padding-vertical;\n }\n }\n\n &.navbar-right:last-child {\n margin-right: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-left { .pull-left(); }\n .navbar-right { .pull-right(); }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n margin-left: -@navbar-padding-horizontal;\n margin-right: -@navbar-padding-horizontal;\n padding: 10px @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n\n // Mixin behavior for optimum display\n .form-inline();\n\n .form-group {\n @media (max-width: @grid-float-breakpoint-max) {\n margin-bottom: 5px;\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@input-height-base);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n .box-shadow(none);\n\n // Outdent the form if last child to line up with content down the page\n &.navbar-right:last-child {\n margin-right: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n .navbar-vertical-align(@input-height-base);\n\n &.btn-sm {\n .navbar-vertical-align(@input-height-small);\n }\n &.btn-xs {\n .navbar-vertical-align(22);\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n .navbar-vertical-align(@line-height-computed);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin-left: @navbar-padding-horizontal;\n margin-right: @navbar-padding-horizontal;\n\n // Outdent the form if last child to line up with content down the page\n &.navbar-right:last-child {\n margin-right: 0;\n }\n }\n}\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n background-color: @navbar-default-bg;\n border-color: @navbar-default-border;\n\n .navbar-brand {\n color: @navbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-default-brand-hover-color;\n background-color: @navbar-default-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: @navbar-default-border;\n }\n\n // Dropdown menu items\n .navbar-nav {\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-default-link-active-bg;\n color: @navbar-default-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n }\n\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n background-color: @navbar-inverse-bg;\n border-color: @navbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-brand-hover-color;\n background-color: @navbar-inverse-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-inverse-link-active-bg;\n color: @navbar-inverse-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-inverse-border;\n }\n .divider {\n background-color: @navbar-inverse-border;\n }\n > li > a {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n }\n\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n .clearfix();\n}\n.center-block {\n .center-block();\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n display: none !important;\n visibility: hidden !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n position: fixed;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n margin-bottom: @line-height-computed;\n list-style: none;\n background-color: @breadcrumb-bg;\n border-radius: @border-radius-base;\n\n > li {\n display: inline-block;\n\n + li:before {\n content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n padding: 0 5px;\n color: @breadcrumb-color;\n }\n }\n\n > .active {\n color: @breadcrumb-active-color;\n }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: @line-height-computed 0;\n border-radius: @border-radius-base;\n\n > li {\n display: inline; // Remove list-style and block-level defaults\n > a,\n > span {\n position: relative;\n float: left; // Collapse white-space\n padding: @padding-base-vertical @padding-base-horizontal;\n line-height: @line-height-base;\n text-decoration: none;\n color: @pagination-color;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n margin-left: -1px;\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-left-radius(@border-radius-base);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius-base);\n }\n }\n }\n\n > li > a,\n > li > span {\n &:hover,\n &:focus {\n color: @pagination-hover-color;\n background-color: @pagination-hover-bg;\n border-color: @pagination-hover-border;\n }\n }\n\n > .active > a,\n > .active > span {\n &,\n &:hover,\n &:focus {\n z-index: 2;\n color: @pagination-active-color;\n background-color: @pagination-active-bg;\n border-color: @pagination-active-border;\n cursor: default;\n }\n }\n\n > .disabled {\n > span,\n > span:hover,\n > span:focus,\n > a,\n > a:hover,\n > a:focus {\n color: @pagination-disabled-color;\n background-color: @pagination-disabled-bg;\n border-color: @pagination-disabled-border;\n cursor: not-allowed;\n }\n }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @border-radius-small);\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n padding-left: 0;\n margin: @line-height-computed 0;\n list-style: none;\n text-align: center;\n &:extend(.clearfix all);\n li {\n display: inline;\n > a,\n > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: @pager-bg;\n border: 1px solid @pager-border;\n border-radius: @pager-border-radius;\n }\n\n > a:hover,\n > a:focus {\n text-decoration: none;\n background-color: @pager-hover-bg;\n }\n }\n\n .next {\n > a,\n > span {\n float: right;\n }\n }\n\n .previous {\n > a,\n > span {\n float: left;\n }\n }\n\n .disabled {\n > a,\n > a:hover,\n > a:focus,\n > span {\n color: @pager-disabled-color;\n background-color: @pager-bg;\n cursor: not-allowed;\n }\n }\n\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: @label-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n\n // Add hover effects, but only for links\n &[href] {\n &:hover,\n &:focus {\n color: @label-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Empty labels collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for labels in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n .label-variant(@label-default-bg);\n}\n\n.label-primary {\n .label-variant(@label-primary-bg);\n}\n\n.label-success {\n .label-variant(@label-success-bg);\n}\n\n.label-info {\n .label-variant(@label-info-bg);\n}\n\n.label-warning {\n .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n .label-variant(@label-danger-bg);\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base classes\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: @font-size-small;\n font-weight: @badge-font-weight;\n color: @badge-color;\n line-height: @badge-line-height;\n vertical-align: baseline;\n white-space: nowrap;\n text-align: center;\n background-color: @badge-bg;\n border-radius: @badge-border-radius;\n\n // Empty badges collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for badges in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n .btn-xs & {\n top: 0;\n padding: 1px 5px;\n }\n}\n\n// Hover state, but only for links\na.badge {\n &:hover,\n &:focus {\n color: @badge-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n}\n\n// Account for counters in navs\na.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: @badge-active-color;\n background-color: @badge-active-bg;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n padding: @jumbotron-padding;\n margin-bottom: @jumbotron-padding;\n color: @jumbotron-color;\n background-color: @jumbotron-bg;\n\n h1,\n .h1 {\n color: @jumbotron-heading-color;\n }\n p {\n margin-bottom: (@jumbotron-padding / 2);\n font-size: @jumbotron-font-size;\n font-weight: 200;\n }\n\n .container & {\n border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n }\n\n .container {\n max-width: 100%;\n }\n\n @media screen and (min-width: @screen-sm-min) {\n padding-top: (@jumbotron-padding * 1.6);\n padding-bottom: (@jumbotron-padding * 1.6);\n\n .container & {\n padding-left: (@jumbotron-padding * 2);\n padding-right: (@jumbotron-padding * 2);\n }\n\n h1,\n .h1 {\n font-size: (@font-size-base * 4.5);\n }\n }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n padding: @alert-padding;\n margin-bottom: @line-height-computed;\n border: 1px solid transparent;\n border-radius: @alert-border-radius;\n\n // Headings for larger alerts\n h4 {\n margin-top: 0;\n // Specified for the h4 to prevent conflicts of changing @headings-color\n color: inherit;\n }\n // Provide class for links that match alerts\n .alert-link {\n font-weight: @alert-link-font-weight;\n }\n\n // Improve alignment and spacing of inner content\n > p,\n > ul {\n margin-bottom: 0;\n }\n > p + p {\n margin-top: 5px;\n }\n}\n\n// Dismissable alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable {\n padding-right: (@alert-padding + 20);\n\n // Adjust close link position\n .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n.alert-info {\n .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n.alert-warning {\n .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n.alert-danger {\n .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n overflow: hidden;\n height: @line-height-computed;\n margin-bottom: @line-height-computed;\n background-color: @progress-bg;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: @font-size-small;\n line-height: @line-height-computed;\n color: @progress-bar-color;\n text-align: center;\n background-color: @progress-bar-bg;\n .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n .transition(width .6s ease);\n}\n\n// Striped bars\n.progress-striped .progress-bar {\n #gradient > .striped();\n background-size: 40px 40px;\n}\n\n// Call animation for the active one\n.progress.active .progress-bar {\n .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Media objects\n// Source: http://stubbornella.org/content/?p=497\n// --------------------------------------------------\n\n\n// Common styles\n// -------------------------\n\n// Clear the floats\n.media,\n.media-body {\n overflow: hidden;\n zoom: 1;\n}\n\n// Proper spacing between instances of .media\n.media,\n.media .media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n\n// For images and videos, set to block\n.media-object {\n display: block;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n margin: 0 0 5px;\n}\n\n\n// Media image alignment\n// -------------------------\n\n.media {\n > .pull-left {\n margin-right: 10px;\n }\n > .pull-right {\n margin-left: 10px;\n }\n}\n\n\n// Media list variation\n// -------------------------\n\n// Undo default ul/ol styles\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n // No need to set list-style: none; since .list-group-item is block level\n margin-bottom: 20px;\n padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n // Place the border on the list items and negative margin up for better styling\n margin-bottom: -1px;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n margin-bottom: 0;\n .border-bottom-radius(@list-group-border-radius);\n }\n\n // Align badges within list items\n > .badge {\n float: right;\n }\n > .badge + .badge {\n margin-right: 5px;\n }\n}\n\n\n// Linked list items\n//\n// Use anchor elements instead of `li`s or `div`s to create linked list items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Hover state\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @list-group-hover-bg;\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: @list-group-active-color;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n\n // Force color to inherit for custom content\n .list-group-item-heading {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-active-text-color;\n }\n }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n margin-bottom: @line-height-computed;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-radius: @panel-border-radius;\n .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n padding: @panel-body-padding;\n &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n .border-top-radius((@panel-border-radius - 1));\n\n > .dropdown .dropdown-toggle {\n color: inherit;\n }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: ceil((@font-size-base * 1.125));\n color: inherit;\n\n > a {\n color: inherit;\n }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: 10px 15px;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group {\n margin-bottom: 0;\n\n .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n }\n\n // Add border top radius for first one\n &:first-child {\n .list-group-item:first-child {\n border-top: 0;\n .border-top-radius((@panel-border-radius - 1));\n }\n }\n // Add border bottom radius for last one\n &:last-child {\n .list-group-item:last-child {\n border-bottom: 0;\n .border-bottom-radius((@panel-border-radius - 1));\n }\n }\n }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n .list-group-item:first-child {\n border-top-width: 0;\n }\n}\n\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n > .table,\n > .table-responsive > .table {\n margin-bottom: 0;\n }\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n .border-top-radius((@panel-border-radius - 1));\n\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n td:first-child,\n th:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-top-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n .border-bottom-radius((@panel-border-radius - 1));\n\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n > .panel-body + .table,\n > .panel-body + .table-responsive {\n border-top: 1px solid @table-border-color;\n }\n > .table > tbody:first-child > tr:first-child th,\n > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n }\n > .table-bordered,\n > .table-responsive > .table-bordered {\n border: 0;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n > thead,\n > tbody {\n > tr:first-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n > tbody,\n > tfoot {\n > tr:last-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n }\n > .table-responsive {\n border: 0;\n margin-bottom: 0;\n }\n}\n\n\n// Collapsable panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n margin-bottom: @line-height-computed;\n\n // Tighten up margin so it's only between panels\n .panel {\n margin-bottom: 0;\n border-radius: @panel-border-radius;\n overflow: hidden; // crop contents when collapsed\n + .panel {\n margin-top: 5px;\n }\n }\n\n .panel-heading {\n border-bottom: 0;\n + .panel-collapse .panel-body {\n border-top: 1px solid @panel-inner-border;\n }\n }\n .panel-footer {\n border-top: 0;\n + .panel-collapse .panel-body {\n border-bottom: 1px solid @panel-inner-border;\n }\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: @well-bg;\n border: 1px solid @well-border;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n blockquote {\n border-color: #ddd;\n border-color: rgba(0,0,0,.15);\n }\n}\n\n// Sizes\n.well-lg {\n padding: 24px;\n border-radius: @border-radius-large;\n}\n.well-sm {\n padding: 9px;\n border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n float: right;\n font-size: (@font-size-base * 1.5);\n font-weight: @close-font-weight;\n line-height: 1;\n color: @close-color;\n text-shadow: @close-text-shadow;\n .opacity(.2);\n\n &:hover,\n &:focus {\n color: @close-color;\n text-decoration: none;\n cursor: pointer;\n .opacity(.5);\n }\n\n // Additional properties for button version\n // iOS requires the button element instead of an anchor tag.\n // If you want the anchor version, it requires `href=\"#\"`.\n button& {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n display: none;\n overflow: auto;\n overflow-y: scroll;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal;\n -webkit-overflow-scrolling: touch;\n\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n\n // When fading in the modal, animate it to slide down\n &.fade .modal-dialog {\n .translate(0, -25%);\n .transition-transform(~\"0.3s ease-out\");\n }\n &.in .modal-dialog { .translate(0, 0)}\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n background-color: @modal-content-bg;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 3px 9px rgba(0,0,0,.5));\n background-clip: padding-box;\n // Remove focus outline from opened modal\n outline: none;\n}\n\n// Modal background\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal-background;\n background-color: @modal-backdrop-bg;\n // Fade for backdrop\n &.fade { .opacity(0); }\n &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n padding: @modal-title-padding;\n border-bottom: 1px solid @modal-header-border-color;\n min-height: (@modal-title-padding + @modal-title-line-height);\n}\n// Close icon\n.modal-header .close {\n margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n margin: 0;\n line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n margin-top: 15px;\n padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;\n text-align: right; // right align buttons\n border-top: 1px solid @modal-footer-border-color;\n &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-left: -1px;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-left: 0;\n }\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n width: @modal-md;\n margin: 30px auto;\n }\n .modal-content {\n .box-shadow(0 5px 15px rgba(0,0,0,.5));\n }\n\n // Modal sizes\n .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n position: absolute;\n z-index: @zindex-tooltip;\n display: block;\n visibility: visible;\n font-size: @font-size-small;\n line-height: 1.4;\n .opacity(0);\n\n &.in { .opacity(@tooltip-opacity); }\n &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; }\n &.right { margin-left: 3px; padding: 0 @tooltip-arrow-width; }\n &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; }\n &.left { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: @tooltip-max-width;\n padding: 3px 8px;\n color: @tooltip-color;\n text-align: center;\n text-decoration: none;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip {\n &.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-left .tooltip-arrow {\n bottom: 0;\n left: @tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-right .tooltip-arrow {\n bottom: 0;\n right: @tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n border-right-color: @tooltip-arrow-color;\n }\n &.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-left-color: @tooltip-arrow-color;\n }\n &.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-left .tooltip-arrow {\n top: 0;\n left: @tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-right .tooltip-arrow {\n top: 0;\n right: @tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: @zindex-popover;\n display: none;\n max-width: @popover-max-width;\n padding: 1px;\n text-align: left; // Reset given new insertion method\n background-color: @popover-bg;\n background-clip: padding-box;\n border: 1px solid @popover-fallback-border-color;\n border: 1px solid @popover-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n // Overrides for proper insertion\n white-space: normal;\n\n // Offset the popover to account for the popover arrow\n &.top { margin-top: -@popover-arrow-width; }\n &.right { margin-left: @popover-arrow-width; }\n &.bottom { margin-top: @popover-arrow-width; }\n &.left { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n margin: 0; // reset heading margin\n padding: 8px 14px;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 18px;\n background-color: @popover-title-bg;\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\n border-radius: 5px 5px 0 0;\n}\n\n.popover-content {\n padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n &,\n &:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n}\n.popover > .arrow {\n border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n border-width: @popover-arrow-width;\n content: \"\";\n}\n\n.popover {\n &.top > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-top-color: @popover-arrow-outer-color;\n bottom: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n bottom: 1px;\n margin-left: -@popover-arrow-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-color;\n }\n }\n &.right > .arrow {\n top: 50%;\n left: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-right-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n left: 1px;\n bottom: -@popover-arrow-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-color;\n }\n }\n &.bottom > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-bottom-color: @popover-arrow-outer-color;\n top: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n top: 1px;\n margin-left: -@popover-arrow-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-color;\n }\n }\n\n &.left > .arrow {\n top: 50%;\n right: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-width: 0;\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-left-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: @popover-arrow-color;\n bottom: -@popover-arrow-width;\n }\n }\n\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#browsers\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n width: device-width;\n}\n\n\n// Visibility utilities\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n .responsive-invisibility();\n}\n\n.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n}\n.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n}\n.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n}\n.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n}\n\n.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n}\n.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n}\n.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n}\n.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n.visible-print {\n .responsive-invisibility();\n\n @media print {\n .responsive-visibility();\n }\n}\n\n.hidden-print {\n @media print {\n .responsive-invisibility();\n }\n}\n"]}
\ No newline at end of file diff --git a/public/css/bootstrap.min.css b/public/css/bootstrap.min.css deleted file mode 100755 index 679272d258..0000000000 --- a/public/css/bootstrap.min.css +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v3.1.1 (http://getbootstrap.com) - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -/*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none!important;color:#000!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:400;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#999}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}input[type=date]{line-height:34px}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px}.radio label,.checkbox label{display:inline;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type=radio][disabled],input[type=checkbox][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type=radio],fieldset[disabled] input[type=checkbox],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.has-feedback .form-control-feedback{position:absolute;top:25px;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-control-static{padding-top:7px}@media (min-width:768px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:400;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#999}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle=buttons]>.btn>input[type=radio],[data-toggle=buttons]>.btn>input[type=checkbox]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{float:none;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#428bca;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:gray}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:20px}.modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.5) 0),color-stop(rgba(0,0,0,.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.0001) 0),color-stop(rgba(0,0,0,.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}}@media print{.hidden-print{display:none!important}}
\ No newline at end of file diff --git a/public/css/gogs.min.css b/public/css/gogs.min.css index dd1cd4f66f..c417af80c5 100644 --- a/public/css/gogs.min.css +++ b/public/css/gogs.min.css @@ -1 +1 @@ -@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=345f8bad9c5003db196d08f05e7f030fd2a32ff6) format('embedded-opentype'),url(../fonts/octicons.woff?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6) format('woff'),url(../fonts/octicons.ttf?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6) format('truetype'),url(../fonts/octicons.svg?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-alignment-align:before{content:'\f08a'}.octicon-alignment-aligned-to:before{content:'\f08e'}.octicon-alignment-unalign:before{content:'\f08b'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beer:before{content:'\f069'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hourglass:before{content:'\f09e'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-jump-down:before{content:'\f072'}.octicon-jump-left:before{content:'\f0a5'}.octicon-jump-right:before{content:'\f0a6'}.octicon-jump-up:before{content:'\f073'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-microscope:before{content:'\f089'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-move-down:before{content:'\f0a8'}.octicon-move-left:before{content:'\f074'}.octicon-move-right:before{content:'\f0a9'}.octicon-move-up:before{content:'\f0a7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-playback-fast-forward:before{content:'\f0bd'}.octicon-playback-pause:before{content:'\f0bb'}.octicon-playback-play:before{content:'\f0bf'}.octicon-playback-rewind:before{content:'\f0bc'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-podium:before{content:'\f0af'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-puzzle:before{content:'\f0c0'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-split:before{content:'\f0c6'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-steps:before{content:'\f0c7'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .top.menu a.item.brand{padding-left:0}.following.bar .brand .ui.mini.image{width:30px}.following.bar .top.menu .dropdown.item.active,.following.bar .top.menu .dropdown.item:hover,.following.bar .top.menu a.item:hover{background-color:transparent}.following.bar .top.menu a.item:hover{color:rgba(0,0,0,.45)}.following.bar .top.menu .menu{z-index:900}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .avatar>.ui.image{margin-right:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.right{text-align:right}.ui .text.small{font-size:.75em}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}.ui .avatar.image{border-radius:3px}footer{margin-top:40px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.mega-octicon.icon,.octicon.icon{font-family:octicons}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:120px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:120px}.install form label{text-align:right;width:40%!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:41%}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.repository.new.fork form{margin:auto;width:800px!important}.repository.new.fork form .ui.message{text-align:center}.repository.new.fork form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help{margin-left:260px!important}.repository.new.fork form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i{margin-right:0!important}.repository.new.fork form input,.repository.new.fork form textarea{width:50%!important}.repository{padding-top:15px;padding-bottom:120px}.repository .head .column{padding-top:5px!important;padding-bottom:5px!important}.repository .head .ui.compact.menu{margin-left:1rem}.repository .head .ui.header{margin-top:0}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .ui.huge.breadcrumb{font-weight:300;font-size:1.7rem}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .dropdown.item{margin:1px;padding-right:0}.repository .page.buttons{padding-top:15px}.repository .issue.list{list-style:none;padding-top:15px}.repository .issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.repository .issue.list>.item .title:hover{color:#000}.repository .issue.list>.item .comment{padding-right:10px;color:#666}.repository .issue.list>.item .desc{padding-top:5px;color:#999}.repository .issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.repository .issue.list>.item .desc a.milestone:hover{color:#000!important}.repository .issue.list>.item .desc .assignee{margin-top:-5px;margin-right:5px}.repository.new.issue .comment.form .comment .avatar{width:3em}.repository.new.issue .comment.form .content{margin-left:4em}.repository.new.issue .comment.form .content .markdown{font-size:14px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository.view.issue .title{padding-bottom:0!important}.repository.view.issue .title h1{font-weight:300;font-size:3rem;margin-bottom:5px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .comment-list:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:96px;width:2px;background-color:#f3f3f3;z-index:-1}.repository.view.issue .comment-list .comment .avatar{width:3em}.repository.view.issue .comment-list .comment .tag{color:#767676;margin-top:3px;padding:2px 5px;font-size:12px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.repository.view.issue .comment-list .comment .content{margin-left:4em}.repository.view.issue .comment-list .comment .content .header{font-weight:400;padding:auto 15px;color:#767676;background-color:#f7f7f7;border-bottom:1px solid #eee;border-top-left-radius:3px;border-top-right-radius:3px}.repository.view.issue .comment-list .comment .content .header .text{max-width:78%;padding-top:10px;padding-bottom:10px}.repository.view.issue .comment-list .comment .content .markdown{font-size:14px}.repository.view.issue .comment-list .comment .content .no-content{color:#767676;font-style:italic}.repository.view.issue .comment-list .comment .content>.bottom.segment{background:#f3f4f5}.repository.view.issue .comment-list .comment .content>.bottom.segment .ui.image{max-height:150px}.repository.view.issue .comment-list .comment .ui.form .field:first-child{clear:none}.repository.view.issue .comment-list .comment .ui.form .tab.segment{border:none;padding:0;padding-top:10px}.repository.view.issue .comment-list .comment .ui.form textarea{height:200px}.repository.view.issue .comment-list .event{position:relative;margin:15px 0 15px 79px;padding-left:25px}.repository.view.issue .comment-list .event .octicon{width:30px;float:left;margin-left:-36px;text-align:center}.repository.view.issue .comment-list .event .octicon.octicon-circle-slash{font-size:30px;color:#bd2c00}.repository.view.issue .comment-list .event .octicon.octicon-primitive-dot{font-size:35px;color:#6cc644}.repository.view.issue .ui.segment.metas{margin-top:-3px}.repository .comment.form .ui.comments{margin-top:-12px;max-width:100%}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository .filter.dropdown .menu .items{max-height:300px;overflow-y:auto}.repository .filter.dropdown .menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.repository .filter.dropdown .menu .items .item.active{font-weight:700}.repository .filter.dropdown .menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.ui.comments .dropzone{width:100%;margin-bottom:10px;border:2px dashed #0087F7;box-shadow:none!important}.ui.comments .dropzone .dz-error-message{top:140px}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px}
\ No newline at end of file +@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('embedded-opentype'),url(../fonts/octicons.woff?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('woff'),url(../fonts/octicons.ttf?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('truetype'),url(../fonts/octicons.svg?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beaker:before,.octicon-microscope:before{content:'\f0dd'}.octicon-bell:before{content:'\f0de'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-clone:before,.octicon-desktop-download:before{content:'\f0dc'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-shield:before{content:'\f0e1'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-watch:before{content:'\f0e0'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .top.menu a.item.brand{padding-left:0}.following.bar .brand .ui.mini.image{width:30px}.following.bar .top.menu .dropdown.item.active,.following.bar .top.menu .dropdown.item:hover,.following.bar .top.menu a.item:hover{background-color:transparent}.following.bar .top.menu a.item:hover{color:rgba(0,0,0,.45)}.following.bar .top.menu .menu{z-index:900}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .avatar>.ui.image{margin-right:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.blue{color:#428bca!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.right{text-align:right}.ui .text.small{font-size:.75em}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}.ui .warning.header{background-color:#F9EDBE!important;border-color:#F0C36D}.ui .warning.segment{border-color:#F0C36D}.ui .avatar.image{border-radius:3px}.ui .form .fake{display:none!important}footer{margin-top:54px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.mega-octicon.icon,.octicon.icon{font-family:octicons}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:120px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:120px}.install form label{text-align:right;width:40%!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:41%}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-6px}.repository.new.fork form,.repository.new.migrate form{margin:auto;width:800px!important}.repository.new.fork form .ui.message,.repository.new.migrate form .ui.message{text-align:center}.repository.new.fork form .header,.repository.new.migrate form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label,.repository.new.migrate form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help,.repository.new.migrate form .help{margin-left:265px!important}.repository.new.fork form .dropdown .dropdown.icon,.repository.new.migrate form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text,.repository.new.migrate form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i,.repository.new.migrate form .dropdown .text i{margin-right:0!important}.repository.new.fork form .optional .title,.repository.new.migrate form .optional .title{margin-left:250px!important}.repository.new.fork form input,.repository.new.fork form textarea,.repository.new.migrate form input,.repository.new.migrate form textarea{width:50%!important}.repository{padding-top:15px;padding-bottom:120px}.repository .head .column{padding-top:5px!important;padding-bottom:5px!important}.repository .head .ui.compact.menu{margin-left:1rem}.repository .head .ui.header{margin-top:0}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .ui.huge.breadcrumb{font-weight:300;font-size:1.7rem}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .dropdown.item{margin:1px;padding-right:0}.repository .page.buttons{padding-top:15px}.repository .issue.list{list-style:none;padding-top:15px}.repository .issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.repository .issue.list>.item .title:hover{color:#000}.repository .issue.list>.item .comment{padding-right:10px;color:#666}.repository .issue.list>.item .desc{padding-top:5px;color:#999}.repository .issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.repository .issue.list>.item .desc a.milestone:hover{color:#000!important}.repository .issue.list>.item .desc .assignee{margin-top:-5px;margin-right:5px}.repository.new.issue .comment.form .comment .avatar{width:3em}.repository.new.issue .comment.form .content{margin-left:4em}.repository.new.issue .comment.form .content .markdown{font-size:14px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository.view.issue .title{padding-bottom:0!important}.repository.view.issue .title h1{font-weight:300;font-size:3rem;margin-bottom:5px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .comment-list:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:96px;width:2px;background-color:#f3f3f3;z-index:-1}.repository.view.issue .comment-list .comment .avatar{width:3em}.repository.view.issue .comment-list .comment .tag{color:#767676;margin-top:3px;padding:2px 5px;font-size:12px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.repository.view.issue .comment-list .comment .content{margin-left:4em}.repository.view.issue .comment-list .comment .content .header{font-weight:400;padding:auto 15px;color:#767676;background-color:#f7f7f7;border-bottom:1px solid #eee;border-top-left-radius:3px;border-top-right-radius:3px}.repository.view.issue .comment-list .comment .content .header .text{max-width:78%;padding-top:10px;padding-bottom:10px}.repository.view.issue .comment-list .comment .content .markdown{font-size:14px}.repository.view.issue .comment-list .comment .content .no-content{color:#767676;font-style:italic}.repository.view.issue .comment-list .comment .content>.bottom.segment{background:#f3f4f5}.repository.view.issue .comment-list .comment .content>.bottom.segment .ui.image{max-height:150px}.repository.view.issue .comment-list .comment .ui.form .field:first-child{clear:none}.repository.view.issue .comment-list .comment .ui.form .tab.segment{border:none;padding:0;padding-top:10px}.repository.view.issue .comment-list .comment .ui.form textarea{height:200px}.repository.view.issue .comment-list .event{position:relative;margin:15px 0 15px 79px;padding-left:25px}.repository.view.issue .comment-list .event .octicon{width:30px;float:left;margin-left:-36px;text-align:center}.repository.view.issue .comment-list .event .octicon.octicon-circle-slash{margin-top:5px;font-size:20px;color:#bd2c00}.repository.view.issue .comment-list .event .octicon.octicon-primitive-dot{font-size:35px;color:#6cc644}.repository.view.issue .ui.segment.metas{margin-top:-3px}.repository .comment.form .ui.comments{margin-top:-12px;max-width:100%}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository .filter.dropdown .menu .items{max-height:300px;overflow-y:auto}.repository .filter.dropdown .menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.repository .filter.dropdown .menu .items .item.active{font-weight:700}.repository .filter.dropdown .menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.ui.comments .dropzone{width:100%;margin-bottom:10px;border:2px dashed #0087F7;box-shadow:none!important}.ui.comments .dropzone .dz-error-message{top:140px}.settings .content{margin-top:2px}.settings .content .header,.settings .content .segment{box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px}.user{padding-top:15px;padding-bottom:120px}.user.settings .key.list .item.ui.grid{margin-top:15px}.admin{padding-top:15px;padding-bottom:120px}.admin .table.segment{padding:0;font-size:13px}.admin .table.segment th{padding-top:5px;padding-bottom:5px}.admin .table.segment td:first-child,.admin .table.segment th:first-child{padding-left:15px}
\ No newline at end of file diff --git a/public/css/markdown.css b/public/css/markdown.css deleted file mode 100644 index e682b080de..0000000000 --- a/public/css/markdown.css +++ /dev/null @@ -1,514 +0,0 @@ -.markdown { - overflow: hidden; - font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif; - font-size: 16px; - line-height: 1.6; - word-wrap: break-word; - padding: 0 2em 2em !important; -} -.markdown > *:first-child { - margin-top: 0 !important; -} -.markdown > *:last-child { - margin-bottom: 0 !important; -} -.markdown a:not([href]) { - color: inherit; - text-decoration: none; -} -.markdown .absent { - color: #c00; -} -.markdown .anchor { - position: absolute; - top: 0; - left: 0; - display: block; - padding-right: 6px; - padding-left: 30px; - margin-left: -30px; -} -.markdown .anchor:focus { - outline: none; -} -.markdown h1, -.markdown h2, -.markdown h3, -.markdown h4, -.markdown h5, -.markdown h6 { - position: relative; - margin-top: 1em; - margin-bottom: 16px; - font-weight: bold; - line-height: 1.4; -} -.markdown h1 .octicon-link, -.markdown h2 .octicon-link, -.markdown h3 .octicon-link, -.markdown h4 .octicon-link, -.markdown h5 .octicon-link, -.markdown h6 .octicon-link { - display: none; - color: #000; - vertical-align: middle; -} -.markdown h1:hover .anchor, -.markdown h2:hover .anchor, -.markdown h3:hover .anchor, -.markdown h4:hover .anchor, -.markdown h5:hover .anchor, -.markdown h6:hover .anchor { - padding-left: 8px; - margin-left: -30px; - text-decoration: none; -} -.markdown h1:hover .anchor .octicon-link, -.markdown h2:hover .anchor .octicon-link, -.markdown h3:hover .anchor .octicon-link, -.markdown h4:hover .anchor .octicon-link, -.markdown h5:hover .anchor .octicon-link, -.markdown h6:hover .anchor .octicon-link { - display: inline-block; -} -.markdown h1 tt, -.markdown h1 code, -.markdown h2 tt, -.markdown h2 code, -.markdown h3 tt, -.markdown h3 code, -.markdown h4 tt, -.markdown h4 code, -.markdown h5 tt, -.markdown h5 code, -.markdown h6 tt, -.markdown h6 code { - font-size: inherit; -} -.markdown h1 { - padding-bottom: 0.3em; - font-size: 2.25em; - line-height: 1.2; - border-bottom: 1px solid #eee; -} -.markdown h1 .anchor { - line-height: 1; -} -.markdown h2 { - padding-bottom: 0.3em; - font-size: 1.75em; - line-height: 1.225; - border-bottom: 1px solid #eee; -} -.markdown h2 .anchor { - line-height: 1; -} -.markdown h3 { - font-size: 1.5em; - line-height: 1.43; -} -.markdown h3 .anchor { - line-height: 1.2; -} -.markdown h4 { - font-size: 1.25em; -} -.markdown h4 .anchor { - line-height: 1.2; -} -.markdown h5 { - font-size: 1em; -} -.markdown h5 .anchor { - line-height: 1.1; -} -.markdown h6 { - font-size: 1em; - color: #777; -} -.markdown h6 .anchor { - line-height: 1.1; -} -.markdown p, -.markdown blockquote, -.markdown ul, -.markdown ol, -.markdown dl, -.markdown table, -.markdown pre { - margin-top: 0; - margin-bottom: 16px; -} -.markdown hr { - height: 4px; - padding: 0; - margin: 16px 0; - background-color: #e7e7e7; - border: 0 none; -} -.markdown ul, -.markdown ol { - padding-left: 2em; -} -.markdown ul.no-list, -.markdown ol.no-list { - padding: 0; - list-style-type: none; -} -.markdown ul ul, -.markdown ul ol, -.markdown ol ol, -.markdown ol ul { - margin-top: 0; - margin-bottom: 0; -} -.markdown ol ol, -.markdown ul ol { - list-style-type: lower-roman; -} -.markdown li > p { - margin-top: 16px; -} -.markdown dl { - padding: 0; -} -.markdown dl dt { - padding: 0; - margin-top: 16px; - font-size: 1em; - font-style: italic; - font-weight: bold; -} -.markdown dl dd { - padding: 0 16px; - margin-bottom: 16px; -} -.markdown blockquote { - padding: 0 15px; - color: #777; - border-left: 4px solid #ddd; -} -.markdown blockquote > :first-child { - margin-top: 0; -} -.markdown blockquote > :last-child { - margin-bottom: 0; -} -.markdown table { - display: block; - width: 100%; - overflow: auto; - word-break: normal; - word-break: keep-all; -} -.markdown table th { - font-weight: bold; -} -.markdown table th, -.markdown table td { - padding: 6px 13px !important; - border: 1px solid #ddd; -} -.markdown table tr { - background-color: #fff; - border-top: 1px solid #ccc; -} -.markdown table tr:nth-child(2n) { - background-color: #f8f8f8; -} -.markdown img { - max-width: 100%; - box-sizing: border-box; -} -.markdown .emoji { - max-width: none; -} -.markdown span.frame { - display: block; - overflow: hidden; -} -.markdown span.frame > span { - display: block; - float: left; - width: auto; - padding: 7px; - margin: 13px 0 0; - overflow: hidden; - border: 1px solid #ddd; -} -.markdown span.frame span img { - display: block; - float: left; -} -.markdown span.frame span span { - display: block; - padding: 5px 0 0; - clear: both; - color: #333; -} -.markdown span.align-center { - display: block; - overflow: hidden; - clear: both; -} -.markdown span.align-center > span { - display: block; - margin: 13px auto 0; - overflow: hidden; - text-align: center; -} -.markdown span.align-center span img { - margin: 0 auto; - text-align: center; -} -.markdown span.align-right { - display: block; - overflow: hidden; - clear: both; -} -.markdown span.align-right > span { - display: block; - margin: 13px 0 0; - overflow: hidden; - text-align: right; -} -.markdown span.align-right span img { - margin: 0; - text-align: right; -} -.markdown span.float-left { - display: block; - float: left; - margin-right: 13px; - overflow: hidden; -} -.markdown span.float-left span { - margin: 13px 0 0; -} -.markdown span.float-right { - display: block; - float: right; - margin-left: 13px; - overflow: hidden; -} -.markdown span.float-right > span { - display: block; - margin: 13px auto 0; - overflow: hidden; - text-align: right; -} -.markdown code, -.markdown tt { - padding: 0; - padding-top: 0.2em; - padding-bottom: 0.2em; - margin: 0; - font-size: 85%; - background-color: rgba(0, 0, 0, 0.04); - border-radius: 3px; -} -.markdown code:before, -.markdown code:after, -.markdown tt:before, -.markdown tt:after { - letter-spacing: -0.2em; - content: "\00a0"; -} -.markdown code br, -.markdown tt br { - display: none; -} -.markdown del code { - text-decoration: inherit; -} -.markdown pre > code { - padding: 0; - margin: 0; - font-size: 100%; - word-break: normal; - white-space: pre; - background: transparent; - border: 0; -} -.markdown .highlight { - margin-bottom: 16px; -} -.markdown .highlight pre, -.markdown pre { - padding: 16px; - overflow: auto; - font-size: 85%; - line-height: 1.45; - background-color: #f7f7f7; - border-radius: 3px; -} -.markdown .highlight pre { - margin-bottom: 0; - word-break: normal; -} -.markdown pre { - word-wrap: normal; -} -.markdown pre code, -.markdown pre tt { - display: inline; - max-width: initial; - padding: 0; - margin: 0; - overflow: initial; - line-height: inherit; - word-wrap: normal; - background-color: transparent; - border: 0; -} -.markdown pre code:before, -.markdown pre code:after, -.markdown pre tt:before, -.markdown pre tt:after { - content: normal; -} -.markdown kbd { - display: inline-block; - padding: 3px 5px; - font-size: 11px; - line-height: 10px; - color: #555; - vertical-align: middle; - background-color: #fcfcfc; - border: solid 1px #ccc; - border-bottom-color: #bbb; - border-radius: 3px; - box-shadow: inset 0 -1px 0 #bbbbbb; -} -.markdown .csv-data td, -.markdown .csv-data th { - padding: 5px; - overflow: hidden; - font-size: 12px; - line-height: 1; - text-align: left; - white-space: nowrap; -} -.markdown .csv-data .blob-num { - padding: 10px 8px 9px; - text-align: right; - background: #fff; - border: 0; -} -.markdown .csv-data tr { - border-top: 0; -} -.markdown .csv-data th { - font-weight: bold; - background: #f8f8f8; - border-top: 0; -} -/* Author: jmblog */ -/* Project: https://github.com/jmblog/color-themes-for-google-code-prettify */ -/* GitHub Theme */ -/* Pretty printing styles. Used with prettify.js. */ -/* SPAN elements with the classes below are added by prettyprint. */ -/* plain text */ -.pln { - color: #333333; -} -@media screen { - /* string content */ - .str { - color: #dd1144; - } - /* a keyword */ - .kwd { - color: #333333; - } - /* a comment */ - .com { - color: #999988; - font-style: italic; - } - /* a type name */ - .typ { - color: #445588; - } - /* a literal value */ - .lit { - color: #445588; - } - /* punctuation */ - .pun { - color: #333333; - } - /* lisp open bracket */ - .opn { - color: #333333; - } - /* lisp close bracket */ - .clo { - color: #333333; - } - /* a markup tag name */ - .tag { - color: navy; - } - /* a markup attribute name */ - .atn { - color: teal; - } - /* a markup attribute value */ - .atv { - color: #dd1144; - } - /* a declaration */ - .dec { - color: #333333; - } - /* a variable name */ - .var { - color: teal; - } - /* a function name */ - .fun { - color: #990000; - } -} -/* Use higher contrast and text-weight for printable form. */ -@media print, projection { - .str { - color: #006600; - } - .kwd { - color: #006; - font-weight: bold; - } - .com { - color: #600; - font-style: italic; - } - .typ { - color: #404; - font-weight: bold; - } - .lit { - color: #004444; - } - .pun, - .opn, - .clo { - color: #444400; - } - .tag { - color: #006; - font-weight: bold; - } - .atn { - color: #440044; - } - .atv { - color: #006600; - } -} -/* Specify class=linenums on a pre to get line numbering */ -ol.linenums { - margin-top: 0; - margin-bottom: 0; -} diff --git a/public/css/todc-bootstrap.css.map b/public/css/todc-bootstrap.css.map deleted file mode 100755 index 75bb0d4614..0000000000 --- a/public/css/todc-bootstrap.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["less/panels.less","bootstrap/less/glyphicons.less","less/scaffolding.less","less/list-group.less","less/dropdowns.less","bootstrap/less/dropdowns.less","bootstrap/less/mixins.less","less/type.less","less/code.less","less/tables.less","less/forms.less","less/mixins.less","less/navbar.less","less/buttons.less","less/button-groups.less","less/input-groups.less","less/navs.less","less/masthead.less","less/toolbar.less","less/navbar-common.less","less/breadcrumbs.less","less/arrows.less","less/pagination.less","less/pager.less","less/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/progress-bars.less","less/wells.less","less/scrollbars.less","less/modals.less","less/tooltip.less","less/popovers.less","less/carousel.less"],"names":[],"mappings":"AAgKM,YAZJ,eAME,EAMG;AAcD,YA1BJ,eAME,EAoBG,UAAU;ECzJf,kBAAA;EACA,QAAA;EACA,qBAAA;EACA,aAAa,sBAAb;EACA,kBAAA;EACA,mBAAA;EACA,cAAA;EACA,mCAAA;EACA,kCAAA;;ACoCF;AC6HE,eAAC;ADpHH;AEeA,iBAAkB,IAAG;ADkHnB,eAAC,UAAU;EEpMX,qBAAA;EACA,QAAA;EACA,SAAA;EACA,gBAAA;EACA,sBAAA;EACA,qBAAA;EACA,mCAAA;EACA,kCAAA;;AHPF;EACE,yCAAA;EACA,eAAA;EACA,gBAAA;EACA,cAAA;EACA,yBAAA;;AAIF;AACA;AACA;AACA;EACE,oBAAA;EACA,kBAAA;EACA,oBAAA;;AAMF;EACE,cAAA;;AAEA,CAAC;AACD,CAAC;EACC,cAAA;;AAQJ;EACE,kBAAA;;AAMF;EACE,UAAA;EACA,gBAAA;EACA,yBAAA;EACA,yBAAA;EACA,gBAAA;EIoEA,qCAAA;EACQ,6BAAA;EAKR,wBAAA;EACQ,gBAAA;EA+PR,qBAAA;EACA,eAAA;EACA,YAAA;;AJhUF;AASA;AEeA,iBAAkB,IAAG;ADkHnB,eAAC,UAAU;EDxIX,wBAAA;EACA,iCAAA;EACA,sBAAA;EACA,oCAAA;EACA,sBAAA;;AAGF;EAEE,cAAA;EACA,iBAAA;EACA,uBAAA;EACA,qBAAA;;AAKF;EACE,YAEE,sDACA,6DAGA,6EACA,qFAPF;EAQA,YAEE,sDACA,6DAGA,+EACA,uFAPF;EAQA,4BAAA;EACA,mDAAA;EACA,yDAAA;;AK9FF;EDwkBE,cAAA;;AACA,CAAC,aAAC;EACA,cAAA;;ACvkBJ;EDqkBE,cAAA;;AACA,CAAC,aAAC;EACA,cAAA;;AChkBJ;EAGE,WAAA;EDkjBA,yBAAA;;AACA,CAAC,WAAC;EACA,yBAAA;;ACjjBJ;ED+iBE,yBAAA;;AACA,CAAC,WAAC;EACA,yBAAA;;AEpkBJ;EACE,gBAAA;EACA,gBAAA;;AAIF;EACE,kBAAA;;AAIF;EACE,YAAA;EACA,eAAA;EACA,eAAA;EACA,gBAAA;EACA,gBAAA;;ACjBF;EACE,6BAAA;;AAMF;EACG,mBAAA;;AADH,MAGE,QAGE,KACE;AAPN,MAIE,QAEE,KACE;AAPN,MAKE,QACE,KACE;AAPN,MAGE,QAGE,KAEE;AARN,MAIE,QAEE,KAEE;AARN,MAKE,QACE,KAEE;EACE,gBAAA;EACA,6BAAA;;AAVR,MAeE,QAAQ,KAAK;EACX,gCAAA;;AAhBJ,MAmBE,QAAQ;EACN,6BAAA;;AApBJ,MAwBE;EACE,yBAAA;;AAUJ;EACE,yBAAA;;AADF,eAEE,QAGE,KACE;AANN,eAGE,QAEE,KACE;AANN,eAIE,QACE,KACE;AANN,eAEE,QAGE,KAEE;AAPN,eAGE,QAEE,KAEE;AAPN,eAIE,QACE,KAEE;EACE,yBAAA;;AAYR,cACE,QAAQ,KAAI,UAAU,KACpB;AAFJ,cACE,QAAQ,KAAI,UAAU,KAEpB;EACE,yBAAA;;AAWN,YACE,QAAQ,KAAI,MACV;AAFJ,YACE,QAAQ,KAAI,MAEV;EACE,yBAAA;;AHqWJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,OAAS;AACX,MANK,QAAQ,KAMZ,CAAC,OAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,OAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,OAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,OAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,CAAC,OAAQ,MAAO;EACf,yBAAA;;AG5VN,QALmC;EACjC;IACE,yBAAA;;;ACrGJ;EACE,mBAAA;EACA,iBAAA;;AAWF,KAAK;AACL,KAAK;EACH,eAAA;;AAIF;EACE,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,cAAA;;AA0BF;EACE,YAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,yBAAA;EACA,yBAAA;EACA,yBAAA;EACA,kBAAA;EJuDA,wBAAA;EACQ,gBAAA;EAKR,wBAAA;EACQ,gBAAA;EI3DR,wBAAA;;AAEA,aAAC;EACC,yBAAA;EACA,yBAAA;EJgDF,sDAAA;EACQ,8CAAA;;AAywBR,aAAC;EACC,qBAAA;EACA,UAAA;EA5wBF,qFAAA;EACQ,6EAAA;;AKmCR,aAAC;ELpCD,sDAAA;EACQ,8CAAA;;AIrCR,aAAC;AACD,aAAC;AACD,QAAQ,UAAW;EACjB,yBAAA;EACA,yBAAA;;AACA,aALD,UAKE;AAAD,aAJD,UAIE;AAAD,QAHM,UAAW,cAGhB;AACD,aAND,UAME;AAAD,aALD,UAKE;AAAD,QAJM,UAAW,cAIhB;AACD,aAPD,UAOE;AAAD,aAND,UAME;AAAD,QALM,UAAW,cAKhB;EACC,yBAAA;EJ4BJ,wBAAA;EACQ,gBAAA;;AIzBR,aAAC,UAAW;EACV,yBAAA;;AACA,aAFD,UAAW,cAET;AACD,aAHD,UAAW,cAGT;AACD,aAJD,UAAW,cAIT;EACC,yBAAA;;AAIJ,QAAQ;EACN,kBAAA;;AASJ,KAAK;EACH,iBAAA;;AAQF;AACA;EACE,gBAAA;;AAEF,KAAK;AACL,MAAO,MAAK;AACZ,aAAc,MAAK;AACnB,KAAK;AACL,SAAU,MAAK;AACf,gBAAiB,MAAK;EACpB,kBAAA;EACA,WAAA;EACA,YAAA;EACA,iBAAA;EACA,yBAAA;EACA,kBAAA;EACA,wBAAA;EAGA,kBAAA;;AAEA,KAjBG,cAiBF;AAAD,MAhBK,MAAK,cAgBT;AAAD,aAfY,MAAK,cAehB;AAAD,KAdG,iBAcF;AAAD,SAbQ,MAAK,iBAaZ;AAAD,gBAZe,MAAK,iBAYnB;EACC,aAAA;EACA,qBAAA;;AAGF,KAtBG,cAsBF;AAAD,MArBK,MAAK,cAqBT;AAAD,aApBY,MAAK,cAoBhB;AAAD,KAnBG,iBAmBF;AAAD,SAlBQ,MAAK,iBAkBZ;AAAD,gBAjBe,MAAK,iBAiBnB;EACC,qBAAA;EACA,yBAAA;EAEA,QAAQ,yDAAyD,yBAAyB,4BAA1F;;AAGF,KA7BG,cA6BF;AAAD,MA5BK,MAAK,cA4BT;AAAD,aA3BY,MAAK,cA2BhB;AAAD,KA1BG,iBA0BF;AAAD,SAzBQ,MAAK,iBAyBZ;AAAD,gBAxBe,MAAK,iBAwBnB;EACC,gBAAA;;AAGJ,KAAK;AACL,MAAO,MAAK;AACZ,aAAc,MAAK;EACjB,kBAAA;EACA,WAAA;EACA,YAAA;;AAEA,KAPG,cAOF,QAAQ;AAAT,MANK,MAAK,cAMT,QAAQ;AAAT,aALY,MAAK,cAKhB,QAAQ;EACP,SAAS,EAAT;EACA,cAAA;EACA,kBAAA;EACA,QAAA;EACA,SAAA;EACA,UAAA;EACA,WAAA;EACA,gBAAA;EACA,kBAAA;;AAMF,KAHG,iBAGF;AAAD,SAFQ,MAAK,iBAEZ;AAAD,gBADe,MAAK,iBACnB;EACC,qBAAA;EJhEF,sDAAA;EACQ,8CAAA;EImEN,mBAAA;;AAGF,KAXG,iBAWF,QAAQ;AAAT,SAVQ,MAAK,iBAUZ,QAAQ;AAAT,gBATe,MAAK,iBASnB,QAAQ;EACP,kCAAA;EACA,cAAA;EACA,kBAAA;EACA,SAAA;EACA,UAAA;;AAUJ;EJksBE,YAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AAEA,MAAM;EACJ,YAAA;EACA,iBAAA;;AAGF,QAAQ;AACR,MAAM,UAAU;EACd,YAAA;;AI3sBJ;EJ8rBE,YAAA;EACA,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AAEA,MAAM;EACJ,YAAA;EACA,iBAAA;;AAGF,QAAQ;AACR,MAAM,UAAU;EACd,YAAA;;AIlsBJ,aAEE;EACE,qBAAA;;AAHJ,aAOE;EACE,SAAA;EACA,WAAA;EACA,YAAA;EACA,iBAAA;;AAKJ,YJ0mBE;AI1mBF,YJ2mBE;AI3mBF,YJ4mBE;AI5mBF,YJ6mBE;AI7mBF,YJ8mBE;AI9mBF,YJ+mBE;EACE,cAAA;;AIhnBJ,YJmnBE;EACE,qBAAA;EAvuBF,wDAAA;EACQ,gDAAA;;AAwuBN,YAHF,cAGG;EACC,qBAAA;EA1uBJ,yEAAA;EACQ,iEAAA;;AIkHV,YJ6nBE;EACE,cAAA;EACA,qBAAA;EACA,yBAAA;;AIhoBJ,YJmoBE;EACE,cAAA;;AIpoBJ,YCrHE;ELEA,wBAAA;EACQ,gBAAA;;AKAN,YAHF,cAGG;EACC,qBAAA;ELFJ,sDAAA;EACQ,8CAAA;;AKIN,YAPF,cAOG;EACC,qBAAA;ELNJ,sDAAA;EACQ,8CAAA;;AIqHV,YJumBE;AIvmBF,YJwmBE;AIxmBF,YJymBE;AIzmBF,YJ0mBE;AI1mBF,YJ2mBE;AI3mBF,YJ4mBE;EACE,cAAA;;AI7mBJ,YJgnBE;EACE,qBAAA;EAvuBF,wDAAA;EACQ,gDAAA;;AAwuBN,YAHF,cAGG;EACC,qBAAA;EA1uBJ,yEAAA;EACQ,iEAAA;;AIqHV,YJ0nBE;EACE,cAAA;EACA,qBAAA;EACA,yBAAA;;AI7nBJ,YJgoBE;EACE,cAAA;;AIjoBJ,YCxHE;ELEA,wBAAA;EACQ,gBAAA;;AKAN,YAHF,cAGG;EACC,qBAAA;ELFJ,sDAAA;EACQ,8CAAA;;AKIN,YAPF,cAOG;EACC,qBAAA;ELNJ,sDAAA;EACQ,8CAAA;;AIwHV,UJomBE;AIpmBF,UJqmBE;AIrmBF,UJsmBE;AItmBF,UJumBE;AIvmBF,UJwmBE;AIxmBF,UJymBE;EACE,cAAA;;AI1mBJ,UJ6mBE;EACE,qBAAA;EAvuBF,wDAAA;EACQ,gDAAA;;AAwuBN,UAHF,cAGG;EACC,qBAAA;EA1uBJ,yEAAA;EACQ,iEAAA;;AIwHV,UJunBE;EACE,cAAA;EACA,qBAAA;EACA,yBAAA;;AI1nBJ,UJ6nBE;EACE,cAAA;;AI9nBJ,UC3HE;ELEA,wBAAA;EACQ,gBAAA;;AKAN,UAHF,cAGG;EACC,qBAAA;ELFJ,sDAAA;EACQ,8CAAA;;AKIN,UAPF,cAOG;EACC,qBAAA;ELNJ,sDAAA;EACQ,8CAAA;;AIwIV;EACE,cAAA;;AASF,gBAAiB;AACjB,gBAAiB;AACjB,gBAAiB;EACf,gBAAA;;AAiEF,QA9CqC;EA8CrC,YA5CI;EEAJ,YFAI;IACE,qBAAA;IACA,gBAAA;IACA,sBAAA;;EAyCN,YArCI;EEPJ,YFOI;IACE,qBAAA;IACA,WAAA;IACA,sBAAA;;EAkCN,YA/BI;EEbJ,YFaI;IACE,gBAAA;IACA,sBAAA;;EA6BN,YAvBI;EAuBJ,YAtBI;EEtBJ,YFqBI;EErBJ,YFsBI;IACE,qBAAA;IACA,aAAA;IACA,gBAAA;IACA,eAAA;IACA,sBAAA;;EAiBN,YAfI,OAAO,MAAK;EAehB,YAdI,UAAU,MAAK;EE9BnB,YF6BI,OAAO,MAAK;EE7BhB,YF8BI,UAAU,MAAK;IACb,WAAA;IACA,cAAA;IACA,mBAAA;;EAWN,YAJI,cAAc;EExClB,YFwCI,cAAc;IACZ,MAAA;;;AAWN,gBAGE;AAHF,gBAIE;AAJF,gBAKE;AALF,gBAME;AANF,gBAOE;EACE,gBAAA;;AARJ,gBAYE;AAZF,gBAaE;EACE,gBAAA;;AAdJ,gBAiBE;EACE,gBAAA;;AGlWJ;EACE,iBAAA;EACA,eAAA;EACA,2BAAA;EPghBA,iBAAA;EACA,eAAA;EACA,iBAAA;EACA,kBAAA;EAraA,wBAAA;EACQ,gBAAA;;AO3GR,IAAC;EP0GD,gDAAA;EACQ,wCAAA;;AOvGR,IAAC;AACD,IAAC;EPqGD,sDAAA;EACQ,8CAAA;;AO7FV;EFIE,yBAAA;EACA,cAAA;ELwRE,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EK5TA,qCAAA;EENA,yBAAA;EACA,yBAAA;;AFOA,YAAC;EACC,qCAAA;ELiFF,gDAAA;EACQ,wCAAA;;AK7ER,YAAC;AACD,YAAC;AACD,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,cAAA;EACA,yBAAA;ELuQA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EK3SE,yBAAA;;AAEF,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,yBAAA;EACA,qCAAA;EL8PA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EAxOA,sDAAA;EACQ,8CAAA;;AKzDR,YAAC;EACC,yBAAA;ELuDF,2CAAA;EACQ,mCAAA;;AKlDN,YAHD;AAGC,YAFD;AAEC,QADM,UAAW;AAEjB,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;AACD,YAND,SAME;AAAD,YALD,UAKE;AAAD,QAJM,UAAW,aAIhB;AACD,YAPD,SAOE;AAAD,YAND,UAME;AAAD,QALM,UAAW,aAKhB;EACC,yBAAA;EL6OF,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EKjRI,yBAAA;ELyCJ,wBAAA;EACQ,gBAAA;;AO7FV,YFwDE;EACE,cAAA;EACA,yBAAA;;AErDF,YAAC;EACC,iBAAA;EACA,qBAAA;EPsRA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EOvRA,wBAAA;EPmFF,gDAAA;EACQ,wCAAA;EAKR,wBAAA;EACQ,gBAAA;;AOrFR,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,yBAAA;EP4QA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EO7QA,yBAAA;EACA,yBAAA;EPwEF,sDAAA;EACQ,8CAAA;;AOrER,YAAC;;EAEC,qBAAA;EACA,mBAAA;EACA,yBAAA;;AAOA,YAHD,SAGE;AAAD,YAFD,UAEE;AAAD,QADM,UAAW,aAChB;AACD,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;EACC,yBAAA;EACA,iBAAA;;AAvCN,YA2CE;EACE,cAAA;EACA,iBAAA;;AAGJ;EF5CE,yBAAA;EACA,cAAA;ELwRE,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EK5TA,qCAAA;;AAEA,YAAC;EACC,qCAAA;ELiFF,gDAAA;EACQ,wCAAA;;AK7ER,YAAC;AACD,YAAC;AACD,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,cAAA;EACA,yBAAA;ELuQA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EK3SE,yBAAA;;AAEF,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,yBAAA;EACA,qCAAA;EL8PA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EAxOA,sDAAA;EACQ,8CAAA;;AKzDR,YAAC;EACC,yBAAA;ELuDF,2CAAA;EACQ,mCAAA;;AKlDN,YAHD;AAGC,YAFD;AAEC,QADM,UAAW;AAEjB,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;AACD,YAND,SAME;AAAD,YALD,UAKE;AAAD,QAJM,UAAW,aAIhB;AACD,YAPD,SAOE;AAAD,YAND,UAME;AAAD,QALM,UAAW,aAKhB;EACC,yBAAA;EL6OF,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EKjRI,yBAAA;ELyCJ,wBAAA;EACQ,gBAAA;;AO7CV,YFQE;EACE,cAAA;EACA,yBAAA;;AENJ;EFhDE,yBAAA;EACA,cAAA;ELwRE,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EK5TA,qCAAA;;AAEA,YAAC;EACC,qCAAA;ELiFF,gDAAA;EACQ,wCAAA;;AK7ER,YAAC;AACD,YAAC;AACD,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,cAAA;EACA,yBAAA;ELuQA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EK3SE,yBAAA;;AAEF,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,yBAAA;EACA,qCAAA;EL8PA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EAxOA,sDAAA;EACQ,8CAAA;;AKzDR,YAAC;EACC,yBAAA;ELuDF,2CAAA;EACQ,mCAAA;;AKlDN,YAHD;AAGC,YAFD;AAEC,QADM,UAAW;AAEjB,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;AACD,YAND,SAME;AAAD,YALD,UAKE;AAAD,QAJM,UAAW,aAIhB;AACD,YAPD,SAOE;AAAD,YAND,UAME;AAAD,QALM,UAAW,aAKhB;EACC,yBAAA;EL6OF,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EKjRI,yBAAA;ELyCJ,wBAAA;EACQ,gBAAA;;AOzCV,YFIE;EACE,cAAA;EACA,yBAAA;;AEFJ;EFpDE,yBAAA;EACA,cAAA;ELwRE,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EK5TA,qCAAA;;AAEA,SAAC;EACC,qCAAA;ELiFF,gDAAA;EACQ,wCAAA;;AK7ER,SAAC;AACD,SAAC;AACD,SAAC;AACD,SAAC;AACD,KAAM,iBAAgB;EACpB,cAAA;EACA,yBAAA;ELuQA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EK3SE,yBAAA;;AAEF,SAAC;AACD,SAAC;AACD,KAAM,iBAAgB;EACpB,yBAAA;EACA,qCAAA;EL8PA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EAxOA,sDAAA;EACQ,8CAAA;;AKzDR,SAAC;EACC,yBAAA;ELuDF,2CAAA;EACQ,mCAAA;;AKlDN,SAHD;AAGC,SAFD;AAEC,QADM,UAAW;AAEjB,SAJD,SAIE;AAAD,SAHD,UAGE;AAAD,QAFM,UAAW,UAEhB;AACD,SALD,SAKE;AAAD,SAJD,UAIE;AAAD,QAHM,UAAW,UAGhB;AACD,SAND,SAME;AAAD,SALD,UAKE;AAAD,QAJM,UAAW,UAIhB;AACD,SAPD,SAOE;AAAD,SAND,UAME;AAAD,QALM,UAAW,UAKhB;EACC,yBAAA;EL6OF,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EKjRI,yBAAA;ELyCJ,wBAAA;EACQ,gBAAA;;AOrCV,SFAE;EACE,cAAA;EACA,yBAAA;;AEEJ;EFxDE,yBAAA;EACA,cAAA;ELwRE,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EK5TA,qCAAA;;AAEA,YAAC;EACC,qCAAA;ELiFF,gDAAA;EACQ,wCAAA;;AK7ER,YAAC;AACD,YAAC;AACD,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,cAAA;EACA,yBAAA;ELuQA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EK3SE,yBAAA;;AAEF,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,yBAAA;EACA,qCAAA;EL8PA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EAxOA,sDAAA;EACQ,8CAAA;;AKzDR,YAAC;EACC,yBAAA;ELuDF,2CAAA;EACQ,mCAAA;;AKlDN,YAHD;AAGC,YAFD;AAEC,QADM,UAAW;AAEjB,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;AACD,YAND,SAME;AAAD,YALD,UAKE;AAAD,QAJM,UAAW,aAIhB;AACD,YAPD,SAOE;AAAD,YAND,UAME;AAAD,QALM,UAAW,aAKhB;EACC,yBAAA;EL6OF,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EKjRI,yBAAA;ELyCJ,wBAAA;EACQ,gBAAA;;AOjCV,YFJE;EACE,cAAA;EACA,yBAAA;;AEMJ;EF5DE,yBAAA;EACA,cAAA;ELwRE,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EK5TA,qCAAA;;AAEA,WAAC;EACC,qCAAA;ELiFF,gDAAA;EACQ,wCAAA;;AK7ER,WAAC;AACD,WAAC;AACD,WAAC;AACD,WAAC;AACD,KAAM,iBAAgB;EACpB,cAAA;EACA,yBAAA;ELuQA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EK3SE,yBAAA;;AAEF,WAAC;AACD,WAAC;AACD,KAAM,iBAAgB;EACpB,yBAAA;EACA,qCAAA;EL8PA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EAxOA,sDAAA;EACQ,8CAAA;;AKzDR,WAAC;EACC,yBAAA;ELuDF,2CAAA;EACQ,mCAAA;;AKlDN,WAHD;AAGC,WAFD;AAEC,QADM,UAAW;AAEjB,WAJD,SAIE;AAAD,WAHD,UAGE;AAAD,QAFM,UAAW,YAEhB;AACD,WALD,SAKE;AAAD,WAJD,UAIE;AAAD,QAHM,UAAW,YAGhB;AACD,WAND,SAME;AAAD,WALD,UAKE;AAAD,QAJM,UAAW,YAIhB;AACD,WAPD,SAOE;AAAD,WAND,UAME;AAAD,QALM,UAAW,YAKhB;EACC,yBAAA;EL6OF,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EKjRI,yBAAA;ELyCJ,wBAAA;EACQ,gBAAA;;AO7BV,WFRE;EACE,cAAA;EACA,yBAAA;;AEeJ;EACE,cAAA;;AAEA;AACA,SAAC;AACD,SAAC;AACD,QAAQ,UAAW;EACjB,6BAAA;EPYF,wBAAA;EACQ,gBAAA;;AOVR;AACA,SAAC;AACD,SAAC;AACD,SAAC;EACC,yBAAA;;AAEF,SAAC;AACD,SAAC;EACC,cAAA;EACA,6BAAA;EPAF,wBAAA;EACQ,gBAAA;;AOIN,SAFD,UAEE;AAAD,QADM,UAAW,UAChB;AACD,SAHD,UAGE;AAAD,QAFM,UAAW,UAEhB;EACC,cAAA;;AASN;ACpHA,aAAc;ERsgBZ,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AOjZF;ACzHA,aAAc;ERugBZ,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AO7YF;AC9HA,aAAc;ERwgBZ,gBAAA;EACA,eAAA;EACA,iBAAA;EACA,kBAAA;;AFxhBF;EACE,cAAA;EACA,eAAA;EACA,eAAA;EACA,yBAAA;EACA,yBAAA;EACA,oCAAA;EACA,gBAAA;EE4GA,gDAAA;EACQ,wCAAA;;AFpHV,cAWE;EE2XA,WAAA;EACA,aAAA;EACA,gBAAA;EACA,yBAAA;;AFzYF,cAgBE,KAAK;EACH,iBAAA;EACA,kBAAA;;AAlBJ,cAgBE,KAAK,IAKH;EACE,kBAAA;EACA,SAAA;EACA,QAAA;;AAMN,cAAe,GAAG,IAAG;AACrB,cAAe,GAAG,IAAG;AACrB,iBAAiB,MAAO;AACxB,iBAAiB,MAAO;EACtB,cAAA;EEkRE,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EFnRF,yBAAA;;AAKA,cADa,UAAU;AAEvB,cAFa,UAAU,IAEtB;AACD,cAHa,UAAU,IAGtB;EACC,cAAA;EEwQA,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EFzQA,yBAAA;;AAKJ;EACE,cAAA;;AAOF;EACE,kBAAA;;AAGF,iBAAkB;EAChB,MAAA;EACA,UAAA;EACA,iBAAA;EACA,gBAAA;;AAEF,iBAAiB,MAAO;EACtB,cAAA;;AAIF,OAAQ,kBAAkB;EACxB,SAAA;EACA,SAAA;EACA,aAAA;EACA,mBAAA;EACA,gBAAA;;AAIF,iBAAkB,IAAG;EACnB,kBAAA;EACA,WAAA;EAEA,eAAA;EACA,SAAS,EAAT;;AAIF,iBAAiB;EAGf,sBAAA;;AAHF,iBAAiB,UAMf;EACE,WAAA;EACA,iBAAA;EACA,gBAAA;;AUtGJ,YAEE;AAFF,YAGE;AAHF,YAIE;EACE,iBAAA;;AAkBJ,UAAW,OAAO;ER6FhB,wBAAA;EACQ,gBAAA;;AQ1FV,UACE,mBAAkB;ERwFlB,gDAAA;EACQ,wCAAA;;AQ1FV,UAIE,eAAc,gBAAgB;AAJhC,UAKE,YAAW,gBAAgB;AAL7B,UAME,eAAc,gBAAgB;AANhC,UAOE,cAAa,gBAAgB;AAP/B,UAQE,eAAc,gBAAgB;ERiF9B,gDAAA;EACQ,wCAAA;;AQ1FV,UAWE,OAAM,gBAAgB;AAXxB,UAYE,OAAM,gBAAgB;ER6EtB,sDAAA;EACQ,8CAAA;;AQ1FV,UAeE,eAAc,gBAAgB;AAfhC,UAgBE,eAAc,gBAAgB;AAhBhC,UAiBE,eAAc,gBAAgB;AAjBhC,UAkBE,eAAc,gBAAgB;AAlBhC,UAmBE,cAAa,gBAAgB;AAnB/B,UAoBE,cAAa,gBAAgB;AApB/B,UAqBE,eAAc,gBAAgB;AArBhC,UAsBE,eAAc,gBAAgB;AAtBhC,UAuBE,YAAW,gBAAgB;AAvB7B,UAwBE,YAAW,gBAAgB;ERiE3B,sDAAA;EACQ,8CAAA;;AQ1FV,UA2BE,UAAS;EACP,gBAAA;;AA5BJ,UA8BE,UAAS;EACP,gBAAA;;AAIJ,UAAU,KAMR;ERgDA,uDAAA;EACQ,+CAAA;;AQvDV,UAAU,KAWR,KAAI;EACF,yBAAA;EACA,sBAAA;ERyCF,sDAAA;EACQ,8CAAA;;AQvDV,UAAU,KAgBR,aAAY;EACV,yBAAA;EACA,sBAAA;ERoCF,sDAAA;EACQ,8CAAA;;AQvDV,UAAU,KAqBR,aAAY;EACV,yBAAA;EACA,sBAAA;ER+BF,sDAAA;EACQ,8CAAA;;AQvDV,UAAU,KA0BR,YAAW;EACT,yBAAA;EACA,sBAAA;ER0BF,sDAAA;EACQ,8CAAA;;AQvDV,UAAU,KA+BR,aAAY;EACV,yBAAA;EACA,sBAAA;ERqBF,sDAAA;EACQ,8CAAA;;AQvDV,UAAU,KAoCR,UAAS;EACP,yBAAA;EACA,sBAAA;ERgBF,sDAAA;EACQ,8CAAA;;AQVV,OAAQ;EACN,uBAAA;;AAGF,OAAQ,QAAQ;EACd,uBAAA;;AAQA,mBADkB,OACjB,YAAY,IAAI;EACf,4BAAA;;AAEF,mBAJkB,OAIjB,WAAW,IAAI;EACd,8BAAA;;ACxHJ,eAAgB;AAChB,eAAgB;AAChB,eAAgB,mBAAmB;ETs4BjC,YAAA;EACA,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AAEA,MAAM,eS94BQ;AT84Bd,MAAM,eS74BQ;AT64Bd,MAAM,eS54BQ,mBAAmB;ET64B/B,YAAA;EACA,iBAAA;;AAGF,QAAQ,eSn5BM;ATm5Bd,QAAQ,eSl5BM;ATk5Bd,QAAQ,eSj5BM,mBAAmB;ATk5BjC,MAAM,UAAU,eSp5BF;ATo5Bd,MAAM,UAAU,eSn5BF;ATm5Bd,MAAM,UAAU,eSl5BF,mBAAmB;ETm5B/B,YAAA;;ASl5BJ,eAAgB;AAChB,eAAgB;AAChB,eAAgB,mBAAmB;ETm4BjC,YAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AAEA,MAAM,eS34BQ;AT24Bd,MAAM,eS14BQ;AT04Bd,MAAM,eSz4BQ,mBAAmB;ET04B/B,YAAA;EACA,iBAAA;;AAGF,QAAQ,eSh5BM;ATg5Bd,QAAQ,eS/4BM;AT+4Bd,QAAQ,eS94BM,mBAAmB;AT+4BjC,MAAM,UAAU,eSj5BF;ATi5Bd,MAAM,UAAU,eSh5BF;ATg5Bd,MAAM,UAAU,eS/4BF,mBAAmB;ETg5B/B,YAAA;;AS34BJ;AACA;AACA,YAAa;EACX,SAAA;EACA,gBAAA;;AAKF;EACE,gBAAA;EACA,eAAA;EACA,cAAA;EACA,yBAAA;EACA,yBAAA;EACA,kBAAA;;AAGA,kBAAC;EACC,gBAAA;EACA,eAAA;EACA,kBAAA;;AAEF,kBAAC;EACC,iBAAA;EACA,eAAA;EACA,kBAAA;;AAjBJ,kBAqBE,MAAK;AArBP,kBAsBE,MAAK;EACH,mBAAA;;ACvCA,IAHF,KAGG,SAAU;EACT,cAAA;;AAEA,IANJ,KAGG,SAAU,IAGR;AACD,IAPJ,KAGG,SAAU,IAIR;EACC,cAAA;;AAOJ,IADF,MAAM;AAEJ,IAFF,MAAM,IAEH;AACD,IAHF,MAAM,IAGH;EACC,WAAA;EACA,yBAAA;EACA,qBAAA;;AASN,SACE,KAGE;EACE,0BAAA;EACA,cAAA;;AACA,SANJ,KAGE,IAGG;EACC,qCAAA;;AAMF,SAbJ,KAYG,OAAQ;AAEP,SAdJ,KAYG,OAAQ,IAEN;AACD,SAfJ,KAYG,OAAQ,IAGN;EACC,iBAAA;EACA,cAAA;;AASR,gBACE;EACE,kBAAA;;AAFJ,gBACE,KAIE;EACE,iBAAA;EACA,gBAAA;EACA,cAAA;EACA,6BAAA;EACA,mBAAA;EACA,gBAAA;EACA,aAAA;;AACA,gBAZJ,KAIE,IAQG;EACC,cAAA;;AAEF,gBAfJ,KAIE,IAWG;AACD,gBAhBJ,KAIE,IAYG;EACC,6BAAA;EACA,6BAAA;;AAEF,gBApBJ,KAIE,IAgBG;EACC,cAAA;EACA,gCAAA;;AAEF,gBAxBJ,KAIE,IAoBG;EACC,cAAA;;AAEF,gBA3BJ,KAIE,IAuBG;EACC,cAAA;EACA,UAAA;;AAMF,gBAnCJ,KAkCG,OAAQ;AAEP,gBApCJ,KAkCG,OAAQ,IAEN;AACD,gBArCJ,KAkCG,OAAQ,IAGN;EACC,6BAAA;EACA,mBAAA;EACA,cAAA;EACA,4BAAA;;AAQR,UACE,KAGE;EACE,kBAAA;;AAKA,UATJ,KAQG,OAAQ;AAEP,UAVJ,KAQG,OAAQ,IAEN;AACD,UAXJ,KAQG,OAAQ,IAGN;EACC,cAAA;EACA,yBAAA;;AJvHR;EAEE,gBAAA;EACA,mBAAA;;AASF,QAH6C;EAG7C;IAFI,kBAAA;;;AAoIJ;EAEE,iBAAA;EACA,eAAA;EACA,iBAAA;EACA,YAAA;;AALF,aAaE;EACE,aAAA;;AASJ,QAN6C;EACzC,OAAQ,aAAa;EACrB,OAAQ,mBAAmB;IACzB,kBAAA;;;AAWN;EAGE,kBAAA;EACA,iBAAA;EDzFA,eAAA;EACA,kBAAA;EC6FA,kBAAA;;AA8BF;EACE,iBAAA;;AADF,WAGE,KAAK;EACH,gBAAA;EACA,mBAAA;EACA,iBAAA;;AA2BF,QAxB+C;EAwB/C,WAtBE,MAAM,eAYJ,KAAK;IACH,iBAAA;;;AA0BR,QAhB6C;EAgB7C;IAdI,SAAA;;EAcJ,WAZI,KAEE;IACE,gBAAA;IACA,mBAAA;;EAIJ,WAAC,aAAa;IACZ,mBAAA;;;AAuBN;EACE,kBAAA;EACA,mBAAA;EACA,kBAAA;EN9KA,wBAAA;EACQ,gBAAA;EKxBR,eAAA;EACA,kBAAA;;ACiMF,YAWE,eAAe;ED7Mf,eAAA;EACA,kBAAA;;ACyOA,QAf2C;EAe3C;IAZE,cAAA;IACA,eAAA;IACA,cAAA;IACA,iBAAA;;;AA/BJ,YAwCE;EACE,YAAA;EACA,gBAAA;;AAsBJ;AACA,OAAQ;EACN,gBAAA;EDpQA,eAAA;EACA,kBAAA;;ACsQA,WAAC;AAAD,OAJM,KAIL;EDvQD,eAAA;EACA,kBAAA;;ACyQA,WAAC;AAAD,OAPM,KAOL;EACC,gBAAA;ED3QF,eAAA;EACA,kBAAA;;ACoRF;EDrRE,eAAA;EACA,kBAAA;;ACuSF;EACE,yBAAA;EACA,qBAAA;;AAFF,eAIE;EACE,cAAA;;AACA,eAFF,cAEG;AACD,eAHF,cAGG;EACC,cAAA;EACA,6BAAA;;AATN,eAIE,cAOE;EACE,yBAAA;EACA,4BAAA;;AAbN,eAiBE;EACE,cAAA;;AAlBJ,eAqBE,YACE,KAAK;EACH,cAAA;;AAEA,eAJJ,YACE,KAAK,IAGF;AACD,eALJ,YACE,KAAK,IAIF;EACC,cAAA;EACA,6BAAA;;AAIF,eAXJ,YAUE,UAAU;AAER,eAZJ,YAUE,UAAU,IAEP;AACD,eAbJ,YAUE,UAAU,IAGP;EACC,cAAA;EACA,yBAAA;;AAIF,eAnBJ,YAkBE,YAAY;AAEV,eApBJ,YAkBE,YAAY,IAET;AACD,eArBJ,YAkBE,YAAY,IAGT;EACC,cAAA;EACA,6BAAA;;AA5CR,eAiDE;EACE,qBAAA;;AACA,eAFF,eAEG;AACD,eAHF,eAGG;EACC,yBAAA;;AArDN,eAiDE,eAME;EACE,yBAAA;;AAxDN,eA4DE;AA5DF,eA6DE;EACE,qBAAA;;AAOE,eAHJ,YAEE,QAAQ;AAEN,eAJJ,YAEE,QAAQ,IAEL;AACD,eALJ,YAEE,QAAQ,IAGL;EACC,yBAAA;EACA,cAAA;;AAiCN,QA7BiD;EA6BjD,eAxCA,YAaI,MAAM,eACJ,KAAK;IACH,cAAA;;EACA,eAhBR,YAaI,MAAM,eACJ,KAAK,IAEF;EACD,eAjBR,YAaI,MAAM,eACJ,KAAK,IAGF;IACC,cAAA;IACA,6BAAA;;EAIF,eAvBR,YAaI,MAAM,eASJ,UAAU;EAER,eAxBR,YAaI,MAAM,eASJ,UAAU,IAEP;EACD,eAzBR,YAaI,MAAM,eASJ,UAAU,IAGP;IACC,cAAA;IACA,yBAAA;;EAIF,eA/BR,YAaI,MAAM,eAiBJ,YAAY;EAEV,eAhCR,YAaI,MAAM,eAiBJ,YAAY,IAET;EACD,eAjCR,YAaI,MAAM,eAiBJ,YAAY,IAGT;IACC,cAAA;IACA,6BAAA;;;AArGZ,eAiHE;EACE,cAAA;;AACA,eAFF,aAEG;EACC,cAAA;;AAQN;EACE,yBAAA;EACA,qBAAA;;AAFF,eAIE;EACE,cAAA;;AACA,eAFF,cAEG;AACD,eAHF,cAGG;EACC,cAAA;EACA,6BAAA;;AATN,eAIE,cAOE;EACE,yBAAA;EACA,4BAAA;;AAbN,eAiBE;EACE,cAAA;;AAlBJ,eAqBE,YACE,KAAK;EACH,cAAA;;AAEA,eAJJ,YACE,KAAK,IAGF;AACD,eALJ,YACE,KAAK,IAIF;EACC,cAAA;EACA,6BAAA;;AAIF,eAXJ,YAUE,UAAU;AAER,eAZJ,YAUE,UAAU,IAEP;AACD,eAbJ,YAUE,UAAU,IAGP;EACC,cAAA;EACA,yBAAA;;AAIF,eAnBJ,YAkBE,YAAY;AAEV,eApBJ,YAkBE,YAAY,IAET;AACD,eArBJ,YAkBE,YAAY,IAGT;EACC,cAAA;EACA,6BAAA;;AA5CR,eAkDE;EACE,qBAAA;;AACA,eAFF,eAEG;AACD,eAHF,eAGG;EACC,yBAAA;;AAtDN,eAkDE,eAME;EACE,yBAAA;;AAzDN,eA6DE;AA7DF,eA8DE;EACE,qBAAA;;AAME,eAFJ,YACE,QAAQ;AAEN,eAHJ,YACE,QAAQ,IAEL;AACD,eAJJ,YACE,QAAQ,IAGL;EACC,yBAAA;EACA,cAAA;;AAuCN,QAnCiD;EAmCjD,eA7CA,YAYI,MAAM,eACJ;IACE,qBAAA;;EA+BR,eA7CA,YAYI,MAAM,eAIJ;IACE,yBAAA;;EA4BR,eA7CA,YAYI,MAAM,eAOJ,KAAK;IACH,cAAA;;EACA,eArBR,YAYI,MAAM,eAOJ,KAAK,IAEF;EACD,eAtBR,YAYI,MAAM,eAOJ,KAAK,IAGF;IACC,cAAA;IACA,6BAAA;;EAIF,eA5BR,YAYI,MAAM,eAeJ,UAAU;EAER,eA7BR,YAYI,MAAM,eAeJ,UAAU,IAEP;EACD,eA9BR,YAYI,MAAM,eAeJ,UAAU,IAGP;IACC,cAAA;IACA,yBAAA;;EAIF,eApCR,YAYI,MAAM,eAuBJ,YAAY;EAEV,eArCR,YAYI,MAAM,eAuBJ,YAAY,IAET;EACD,eAtCR,YAYI,MAAM,eAuBJ,YAAY,IAGT;IACC,cAAA;IACA,6BAAA;;;AA3GZ,eAkHE;EACE,cAAA;;AACA,eAFF,aAEG;EACC,cAAA;;AKjnBN;EAEE,gBAAA;EACA,mBAAA;;AASF,QAH6C;EAG7C;IAFI,kBAAA;;;AAiGJ,gBAAiB;EACf,aAAA;;AASF,gBAAiB;AACjB,gBAAiB;EAIf,aAAA;;AAoBF,gBAAiB;EAEf,kBAAA;EACA,eAAA;EAEA,YAAA;;AALF,gBAAiB,cAaf;EACE,gBAAA;;AASJ,QAN6C;EACzC,OAAQ,aAAa,iBAlBR;EAmBb,OAAQ,mBAAmB,iBAnBd;IAoBX,kBAAA;;;AAWN,gBAAiB;EAGf,kBAAA;ENxFA,eAAA;EACA,kBAAA;;AMqHF,gBAAiB;EACf,iBAAA;;AAiDF,QAhB6C;EAgB7C,gBAlDiB;IAoCb,aAAA;;EAcJ,gBAlDiB,YAsCb,KAEE;IACE,gBAAA;IACA,mBAAA;;EAIJ,gBA9Ca,YA8CZ,aAAa;IACZ,mBAAA;;;AAeN,gBAAiB;EACf,kBAAA;EACA,mBAAA;EACA,kBAAA;ENvLA,eAAA;EACA,kBAAA;;AMmLF,gBAAiB,aAKf,eAAe;ENzLf,eAAA;EACA,kBAAA;;AMgMA,QAHiD;EAGjD,gBAbe,aASf;IAEI,kBAAA;;;AAoBJ,QAZ2C;EAY3C,gBA/Be;IAoBb,cAAA;IACA,eAAA;IACA,cAAA;IACA,iBAAA;;EAGA,gBA1Ba,aA0BZ,aAAa;IACZ,mBAAA;;;AA3BN,gBAAiB,aA+Bf;EACE,YAAA;EACA,gBAAA;;AAaF,gBAAC;AACD,gBAAC,OAAQ;EACP,gBAAA;ENpOF,eAAA;EACA,kBAAA;;AMsOE,gBALD,WAKE;AAAD,gBAJD,OAAQ,KAIN;EACC,gBAAA;ENxOJ,eAAA;EACA,kBAAA;;AM0OE,gBATD,WASE;AAAD,gBARD,OAAQ,KAQN;EACC,gBAAA;EN5OJ,gBAAA;EACA,mBAAA;;AMsPF,gBAAiB;ENvPf,gBAAA;EACA,mBAAA;;AMyQF,gBAAgB;EACd,yBAAA;EACA,qBAAA;;AAFF,gBAAgB,eAId;EACE,cAAA;;AACA,gBANY,eAId,cAEG;AACD,gBAPY,eAId,cAGG;EACC,cAAA;EACA,6BAAA;;AATN,gBAAgB,eAId,cAOE;EACE,yBAAA;EACA,4BAAA;;AAbN,gBAAgB,eAiBd;EACE,cAAA;;AAlBJ,gBAAgB,eAqBd,YACE,KAAK;EACH,cAAA;;AAEA,gBAzBU,eAqBd,YACE,KAAK,IAGF;AACD,gBA1BU,eAqBd,YACE,KAAK,IAIF;EACC,cAAA;EACA,6BAAA;;AAIF,gBAhCU,eAqBd,YAUE,UAAU;AAER,gBAjCU,eAqBd,YAUE,UAAU,IAEP;AACD,gBAlCU,eAqBd,YAUE,UAAU,IAGP;EACC,cAAA;EACA,yBAAA;;AAIF,gBAxCU,eAqBd,YAkBE,YAAY;AAEV,gBAzCU,eAqBd,YAkBE,YAAY,IAET;AACD,gBA1CU,eAqBd,YAkBE,YAAY,IAGT;EACC,cAAA;EACA,6BAAA;;AA5CR,gBAAgB,eAiDd;EACE,qBAAA;;AACA,gBAnDY,eAiDd,eAEG;AACD,gBApDY,eAiDd,eAGG;EACC,yBAAA;;AArDN,gBAAgB,eAiDd,eAME;EACE,yBAAA;;AAxDN,gBAAgB,eA4Dd;AA5DF,gBAAgB,eA6Dd;EACE,qBAAA;;AAOE,gBArEU,eAkEd,YAEE,QAAQ;AAEN,gBAtEU,eAkEd,YAEE,QAAQ,IAEL;AACD,gBAvEU,eAkEd,YAEE,QAAQ,IAGL;EACC,yBAAA;EACA,cAAA;;AAiCN,QA7BiD;EA6BjD,gBA1Gc,eAkEd,YAaI,MAAM,eACJ,KAAK;IACH,cAAA;;EACA,gBAlFM,eAkEd,YAaI,MAAM,eACJ,KAAK,IAEF;EACD,gBAnFM,eAkEd,YAaI,MAAM,eACJ,KAAK,IAGF;IACC,cAAA;IACA,6BAAA;;EAIF,gBAzFM,eAkEd,YAaI,MAAM,eASJ,UAAU;EAER,gBA1FM,eAkEd,YAaI,MAAM,eASJ,UAAU,IAEP;EACD,gBA3FM,eAkEd,YAaI,MAAM,eASJ,UAAU,IAGP;IACC,cAAA;IACA,yBAAA;;EAIF,gBAjGM,eAkEd,YAaI,MAAM,eAiBJ,YAAY;EAEV,gBAlGM,eAkEd,YAaI,MAAM,eAiBJ,YAAY,IAET;EACD,gBAnGM,eAkEd,YAaI,MAAM,eAiBJ,YAAY,IAGT;IACC,cAAA;IACA,6BAAA;;;AArGZ,gBAAgB,eAiHd;EACE,cAAA;;AACA,gBAnHY,eAiHd,aAEG;EACC,cAAA;;AAQN,gBAAgB;EACd,yBAAA;EACA,qBAAA;;AAFF,gBAAgB,eAId;EACE,cAAA;;AACA,gBANY,eAId,cAEG;AACD,gBAPY,eAId,cAGG;EACC,cAAA;EACA,6BAAA;;AATN,gBAAgB,eAId,cAOE;EACE,yBAAA;EACA,4BAAA;;AAbN,gBAAgB,eAiBd;EACE,cAAA;;AAlBJ,gBAAgB,eAqBd,YACE,KAAK;EACH,cAAA;;AAEA,gBAzBU,eAqBd,YACE,KAAK,IAGF;AACD,gBA1BU,eAqBd,YACE,KAAK,IAIF;EACC,cAAA;EACA,6BAAA;;AAIF,gBAhCU,eAqBd,YAUE,UAAU;AAER,gBAjCU,eAqBd,YAUE,UAAU,IAEP;AACD,gBAlCU,eAqBd,YAUE,UAAU,IAGP;EACC,cAAA;EACA,yBAAA;;AAIF,gBAxCU,eAqBd,YAkBE,YAAY;AAEV,gBAzCU,eAqBd,YAkBE,YAAY,IAET;AACD,gBA1CU,eAqBd,YAkBE,YAAY,IAGT;EACC,cAAA;EACA,6BAAA;;AA5CR,gBAAgB,eAkDd;EACE,qBAAA;;AACA,gBApDY,eAkDd,eAEG;AACD,gBArDY,eAkDd,eAGG;EACC,yBAAA;;AAtDN,gBAAgB,eAkDd,eAME;EACE,yBAAA;;AAzDN,gBAAgB,eA6Dd;AA7DF,gBAAgB,eA8Dd;EACE,qBAAA;;AAME,gBArEU,eAmEd,YACE,QAAQ;AAEN,gBAtEU,eAmEd,YACE,QAAQ,IAEL;AACD,gBAvEU,eAmEd,YACE,QAAQ,IAGL;EACC,yBAAA;EACA,cAAA;;AAuCN,QAnCiD;EAmCjD,gBAhHc,eAmEd,YAYI,MAAM,eACJ;IACE,qBAAA;;EA+BR,gBAhHc,eAmEd,YAYI,MAAM,eAIJ;IACE,yBAAA;;EA4BR,gBAhHc,eAmEd,YAYI,MAAM,eAOJ,KAAK;IACH,cAAA;;EACA,gBAxFM,eAmEd,YAYI,MAAM,eAOJ,KAAK,IAEF;EACD,gBAzFM,eAmEd,YAYI,MAAM,eAOJ,KAAK,IAGF;IACC,cAAA;IACA,6BAAA;;EAIF,gBA/FM,eAmEd,YAYI,MAAM,eAeJ,UAAU;EAER,gBAhGM,eAmEd,YAYI,MAAM,eAeJ,UAAU,IAEP;EACD,gBAjGM,eAmEd,YAYI,MAAM,eAeJ,UAAU,IAGP;IACC,cAAA;IACA,yBAAA;;EAIF,gBAvGM,eAmEd,YAYI,MAAM,eAuBJ,YAAY;EAEV,gBAxGM,eAmEd,YAYI,MAAM,eAuBJ,YAAY,IAET;EACD,gBAzGM,eAmEd,YAYI,MAAM,eAuBJ,YAAY,IAGT;IACC,cAAA;IACA,6BAAA;;;AA3GZ,gBAAgB,eAkHd;EACE,cAAA;;AACA,gBApHY,eAkHd,aAEG;EACC,cAAA;;ACnlBN;EAEE,gBAAA;EACA,mBAAA;;AASF,QAH6C;EAG7C;IAFI,kBAAA;;;AAiGJ,eAAgB;EACd,aAAA;;AASF,eAAgB;AAChB,eAAgB;EAId,aAAA;;AAoBF,eAAgB;EAEd,iBAAA;EACA,eAAA;EACA,iBAAA;EAEA,YAAA;;AAaF,QAN6C;EACzC,OAAQ,aAAa,gBAdT;EAeZ,OAAQ,mBAAmB,gBAff;IAgBV,kBAAA;;;AAWN,eAAgB;EAGd,kBAAA;EPpFA,eAAA;EACA,kBAAA;;AOiHF,eAAgB;EACd,iBAAA;;AADF,eAAgB,YAGd;EACE,kBAAA;;AAJJ,eAAgB,YAGd,KAEE;EACE,iBAAA;;AAIA,eAVU,YAGd,KAEE,IAKG;AACD,eAXU,YAGd,KAEE,IAMG;EACC,0BAAA;;AAZR,eAAgB,YAGd,KAYE;EACE,eAAA;;AAhBN,eAAgB,YAmBd,UAAU;EACR,iBAAA;;AACA,eArBY,YAmBd,UAAU,IAEP;EACC,kBAAA;EACA,YAAA;EACA,SAAA;EACA,qBAAA;EACA,iBAAA;;EACA,mCAAA;EACA,oCAAA;EACA,kCAAA;EACA,SAAS,EAAT;;AAEF,eAhCY,YAmBd,UAAU,IAaP;EACC,kBAAA;EACA,YAAA;EACA,SAAA;EACA,qBAAA;EACA,iBAAA;;EACA,mCAAA;EACA,oCAAA;EACA,kCAAA;EACA,SAAS,EAAT;;AA6CN,QAhB6C;EAgB7C,eAtFgB;IAwEZ,SAAA;;EAcJ,eAtFgB,YA0EZ,KAEE;IACE,gBAAA;IACA,mBAAA;;EAIJ,eAlFY,YAkFX,aAAa;IACZ,mBAAA;;;AAeN,eAAgB;EACd,kBAAA;EACA,mBAAA;EACA,kBAAA;EPvNA,eAAA;EACA,kBAAA;;AOmNF,eAAgB,aAKd,eAAe;EPzNf,eAAA;EACA,kBAAA;;AOgOA,QAHiD;EAGjD,eAbc,aASd;IAEI,kBAAA;;;AAoBJ,QAZ2C;EAY3C,eA/Bc;IAoBZ,cAAA;IACA,eAAA;IACA,cAAA;IACA,iBAAA;;EAGA,eA1BY,aA0BX,aAAa;IACZ,mBAAA;;;AA3BN,eAAgB,aA+Bd;EACE,YAAA;EACA,gBAAA;;AAMJ,eAAgB;EACd,oBAAA;;AAQA,eAAC;AACD,eAAC,OAAQ;EACP,gBAAA;EPtQF,eAAA;EACA,kBAAA;;AOwQE,eALD,WAKE;AAAD,eAJD,OAAQ,KAIN;EACC,gBAAA;EP1QJ,eAAA;EACA,kBAAA;;AO4QE,eATD,WASE;AAAD,eARD,OAAQ,KAQN;EACC,gBAAA;EP9QJ,eAAA;EACA,kBAAA;;AOwRF,eAAgB;EPzRd,eAAA;EACA,kBAAA;;AO2SF,eAAe;EACb,yBAAA;EACA,qBAAA;;AAFF,eAAe,eAIb;EACE,cAAA;;AACA,eANW,eAIb,cAEG;AACD,eAPW,eAIb,cAGG;EACC,cAAA;EACA,6BAAA;;AATN,eAAe,eAIb,cAOE;EACE,yBAAA;EACA,4BAAA;;AAbN,eAAe,eAiBb;EACE,cAAA;;AAlBJ,eAAe,eAqBb,YACE,KAAK;EACH,cAAA;;AAEA,eAzBS,eAqBb,YACE,KAAK,IAGF;AACD,eA1BS,eAqBb,YACE,KAAK,IAIF;EACC,cAAA;EACA,6BAAA;;AAIF,eAhCS,eAqBb,YAUE,UAAU;AAER,eAjCS,eAqBb,YAUE,UAAU,IAEP;AACD,eAlCS,eAqBb,YAUE,UAAU,IAGP;EACC,cAAA;EACA,yBAAA;;AAEF,eAtCS,eAqBb,YAUE,UAAU,IAOP;EACC,gCAAA;;AAEF,eAzCS,eAqBb,YAUE,UAAU,IAUP;EACC,gCAAA;;AAIF,eA9CS,eAqBb,YAwBE,YAAY;AAEV,eA/CS,eAqBb,YAwBE,YAAY,IAET;AACD,eAhDS,eAqBb,YAwBE,YAAY,IAGT;EACC,cAAA;EACA,6BAAA;;AAlDR,eAAe,eAuDb;EACE,qBAAA;;AACA,eAzDW,eAuDb,eAEG;AACD,eA1DW,eAuDb,eAGG;EACC,yBAAA;;AA3DN,eAAe,eAuDb,eAME;EACE,yBAAA;;AA9DN,eAAe,eAkEb;AAlEF,eAAe,eAmEb;EACE,qBAAA;;AAOE,eA3ES,eAwEb,YAEE,QAAQ;AAEN,eA5ES,eAwEb,YAEE,QAAQ,IAEL;AACD,eA7ES,eAwEb,YAEE,QAAQ,IAGL;EACC,yBAAA;EACA,cAAA;;AAiCN,QA7BiD;EA6BjD,eAhHa,eAwEb,YAaI,MAAM,eACJ,KAAK;IACH,cAAA;;EACA,eAxFK,eAwEb,YAaI,MAAM,eACJ,KAAK,IAEF;EACD,eAzFK,eAwEb,YAaI,MAAM,eACJ,KAAK,IAGF;IACC,cAAA;IACA,6BAAA;;EAIF,eA/FK,eAwEb,YAaI,MAAM,eASJ,UAAU;EAER,eAhGK,eAwEb,YAaI,MAAM,eASJ,UAAU,IAEP;EACD,eAjGK,eAwEb,YAaI,MAAM,eASJ,UAAU,IAGP;IACC,cAAA;IACA,yBAAA;;EAIF,eAvGK,eAwEb,YAaI,MAAM,eAiBJ,YAAY;EAEV,eAxGK,eAwEb,YAaI,MAAM,eAiBJ,YAAY,IAET;EACD,eAzGK,eAwEb,YAaI,MAAM,eAiBJ,YAAY,IAGT;IACC,cAAA;IACA,6BAAA;;;AA3GZ,eAAe,eAuHb;EACE,cAAA;;AACA,eAzHW,eAuHb,aAEG;EACC,cAAA;;AAQN,eAAe;EACb,yBAAA;EACA,qBAAA;;AAFF,eAAe,eAIb;EACE,cAAA;;AACA,eANW,eAIb,cAEG;AACD,eAPW,eAIb,cAGG;EACC,cAAA;EACA,6BAAA;;AATN,eAAe,eAIb,cAOE;EACE,yBAAA;EACA,4BAAA;;AAbN,eAAe,eAiBb;EACE,cAAA;;AAlBJ,eAAe,eAqBb,YACE,KAAK;EACH,cAAA;;AAEA,eAzBS,eAqBb,YACE,KAAK,IAGF;AACD,eA1BS,eAqBb,YACE,KAAK,IAIF;EACC,cAAA;EACA,6BAAA;;AAIF,eAhCS,eAqBb,YAUE,UAAU;AAER,eAjCS,eAqBb,YAUE,UAAU,IAEP;AACD,eAlCS,eAqBb,YAUE,UAAU,IAGP;EACC,cAAA;EACA,yBAAA;;AAEF,eAtCS,eAqBb,YAUE,UAAU,IAOP;EACC,gCAAA;;AAEF,eAzCS,eAqBb,YAUE,UAAU,IAUP;EACC,gCAAA;;AAIF,eA9CS,eAqBb,YAwBE,YAAY;AAEV,eA/CS,eAqBb,YAwBE,YAAY,IAET;AACD,eAhDS,eAqBb,YAwBE,YAAY,IAGT;EACC,cAAA;EACA,6BAAA;;AAlDR,eAAe,eAwDb;EACE,qBAAA;;AACA,eA1DW,eAwDb,eAEG;AACD,eA3DW,eAwDb,eAGG;EACC,yBAAA;;AA5DN,eAAe,eAwDb,eAME;EACE,yBAAA;;AA/DN,eAAe,eAmEb;AAnEF,eAAe,eAoEb;EACE,qBAAA;;AAME,eA3ES,eAyEb,YACE,QAAQ;AAEN,eA5ES,eAyEb,YACE,QAAQ,IAEL;AACD,eA7ES,eAyEb,YACE,QAAQ,IAGL;EACC,yBAAA;EACA,cAAA;;AAuCN,QAnCiD;EAmCjD,eAtHa,eAyEb,YAYI,MAAM,eACJ;IACE,qBAAA;;EA+BR,eAtHa,eAyEb,YAYI,MAAM,eAIJ;IACE,yBAAA;;EA4BR,eAtHa,eAyEb,YAYI,MAAM,eAOJ,KAAK;IACH,cAAA;;EACA,eA9FK,eAyEb,YAYI,MAAM,eAOJ,KAAK,IAEF;EACD,eA/FK,eAyEb,YAYI,MAAM,eAOJ,KAAK,IAGF;IACC,cAAA;IACA,6BAAA;;EAIF,eArGK,eAyEb,YAYI,MAAM,eAeJ,UAAU;EAER,eAtGK,eAyEb,YAYI,MAAM,eAeJ,UAAU,IAEP;EACD,eAvGK,eAyEb,YAYI,MAAM,eAeJ,UAAU,IAGP;IACC,cAAA;IACA,yBAAA;;EAIF,eA7GK,eAyEb,YAYI,MAAM,eAuBJ,YAAY;EAEV,eA9GK,eAyEb,YAYI,MAAM,eAuBJ,YAAY,IAET;EACD,eA/GK,eAyEb,YAYI,MAAM,eAuBJ,YAAY,IAGT;IACC,cAAA;IACA,6BAAA;;;AAjHZ,eAAe,eAwHb;EACE,cAAA;;AACA,eA1HW,eAwHb,aAEG;EACC,cAAA;;ACjoBN;EACE,gBAAA;;AAIF;AACA;EACE,mBAAA;;AAEF;EACE,mBAAA;;AAIF;AACA;EACE,eAAA;EACA,QAAA;EACA,OAAA;EACA,gBAAA;;AAGF;AACA;EACE,gBAAA;;AAEF;EACE,MAAA;;AAEF;EACE,SAAA;EACA,gBAAA;;AAQF;EACE,gBAAA;EACA,eAAA;;AAEF,IAAI;EACF,eAAA;;AAEF,IAAI;EACF,eAAA;;AAoBF;EACE,cAAA;;AACA,YAAC;EACC,cAAA;;AAKJ,eAAgB;EACd,cAAA;;AACA,eAFc,aAEb;EACC,cAAA;;AAMJ,YACE;AADF,YAEE;EACE,cAAA;;AC5FJ;EACE,kBAAA;EACA,mBAAA;EACA,yBAAA;EACA,kBAAA;;AAJF,WAME,KACE;ECSF,kBAAA;EACA,qBAAA;EDRI,iBAAA;;AC8GJ,WDjHA,KACE,KCgHD;EACC,kBAAA;;AArGF,WDbA,KACE,KCYD;AACD,WDdA,KACE,KCaD;EACC,SAAS,EAAT;EACA,kBAAA;EACA,QAAA;EACA,SAAA;;AAEF,WDpBA,KACE,KCmBD;EACC,6BAAA;;AAEF,WDvBA,KACE,KCsBD;EACC,6BAAA;;AA0BF,WDlDA,KACE,KCiDD;AACD,WDnDA,KACE,KCkDD;EACC,UAAA;EACA,QAAA;;AAEF,WDvDA,KACE,KCsDD;EACC,gBAAA;EACA,sBAAA;EACA,0BAAA;;AAEF,WD5DA,KACE,KC2DD;EACC,gBAAA;EACA,8BAAA;;ADpEJ,WAME,KAKE,KAAI;AAXR,WAME,KAME,KAAI;EACF,WAAA;;AAbN,WAME,KASE,KAAI;EACF,SAAS,EAAT;EACA,cAAA;;AAjBN,WAME,KAaE;EACE,cAAA;;AACA,WAfJ,KAaE,IAEG;EACC,cAAA;;AAtBR,WA2BE;AA3BF,WA4BE,UAAU;EACR,cAAA;;AAIJ;EACE,yBAAA;;AADF,mBAGE,KACE;ECrBF,kBAAA;EACA,qBAAA;;AAsGA,mBDnFA,KACE,KCkFD;EACC,kBAAA;;AArGF,mBDiBA,KACE,KClBD;AACD,mBDgBA,KACE,KCjBD;EACC,SAAS,EAAT;EACA,kBAAA;EACA,QAAA;EACA,SAAA;;AAEF,mBDUA,KACE,KCXD;EACC,6BAAA;;AAEF,mBDOA,KACE,KCRD;EACC,6BAAA;;AA0BF,mBDpBA,KACE,KCmBD;AACD,mBDrBA,KACE,KCoBD;EACC,UAAA;EACA,QAAA;;AAEF,mBDzBA,KACE,KCwBD;EACC,gBAAA;EACA,sBAAA;EACA,0BAAA;;AAEF,mBD9BA,KACE,KC6BD;EACC,gBAAA;EACA,8BAAA;;ADnCJ,mBAGE,KAIE,KAAI;AAPR,mBAGE,KAKE,KAAI;EACF,WAAA;;AATN,mBAGE,KAQE;EACE,cAAA;;AACA,mBAVJ,KAQE,IAEG;EACC,cAAA;;AAdR,mBAmBE;AAnBF,mBAoBE,UAAU;EACR,cAAA;;AAIJ;EACE,iBAAA;EACA,yBAAA;EACA,gCAAA;;AAEA,cAAC;EACC,yBAAA;;AElEJ;EACE,cAAA;EACA,kBAAA;;AAFF,WAIE,KACE;AALJ,WAIE,KAEE;EACE,cAAA;EACA,iBAAA;EACA,gBAAA;EACA,yBAAA;EACA,yBAAA;;AAEF,WATF,KASG,YACC;AADF,WATF,KASG,YAEC;EACE,cAAA;EhB4FN,8BAAA;EACG,2BAAA;;AgBzFD,WAhBF,KAgBG,WACC;AADF,WAhBF,KAgBG,WAEC;EhB8EJ,+BAAA;EACG,4BAAA;;AgBvED,WAFF,KAAK,IAEF;AAAD,WADF,KAAK,OACF;AACD,WAHF,KAAK,IAGF;AAAD,WAFF,KAAK,OAEF;EACC,UAAA;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;EhBmFJ,gDAAA;EACQ,wCAAA;;AgBvHV,WAwCE,KAAK,IAAG;EhB+QN,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EgBnTE,yBAAA;EhB2EF,sDAAA;EACQ,8CAAA;;AgBtEN,WAFF,UAAU;AAER,WADF,UAAU;AAER,WAHF,UAAU,IAGP;AAAD,WAFF,UAAU,OAEP;AACD,WAJF,UAAU,IAIP;AAAD,WAHF,UAAU,OAGP;EACC,cAAA;EACA,yBAAA;EACA,qBAAA;EhBgEJ,wBAAA;EACQ,gBAAA;;AgBvHV,WA2DE,YACE;AA5DJ,WA2DE,YAEE,OAAM;AA7DV,WA2DE,YAGE,OAAM;AA9DV,WA2DE,YAIE;AA/DJ,WA2DE,YAKE,IAAG;AAhEP,WA2DE,YAME,IAAG;EACD,cAAA;EACA,qBAAA;EhBoPF,kBAAkB,sDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,sHAAA;EAoCF,mEAAA;EgBvRI,yBAAA;EhB+CJ,wBAAA;EACQ,gBAAA;EgB7CJ,iBAAA;;AASN,chB8cE,KACE;AgB/cJ,chB8cE,KAEE;EACE,iBAAA;EACA,eAAA;;AAEF,cANF,KAMG,YACC;AADF,cANF,KAMG,YAEC;EA7bJ,8BAAA;EACG,2BAAA;;AAgcD,cAZF,KAYG,WACC;AADF,cAZF,KAYG,WAEC;EA3cJ,+BAAA;EACG,4BAAA;;AgBbL,chBycE,KACE;AgB1cJ,chBycE,KAEE;EACE,gBAAA;EACA,eAAA;;AAEF,cANF,KAMG,YACC;AADF,cANF,KAMG,YAEC;EA7bJ,8BAAA;EACG,2BAAA;;AAgcD,cAZF,KAYG,WACC;AADF,cAZF,KAYG,WAEC;EA3cJ,+BAAA;EACG,4BAAA;;AiBpGL;EACE,cAAA;;AADF,MAEE,GACE;AAHJ,MAEE,GAEE;EACE,kBAAA;EACA,iBAAA;EACA,eAAA;EAEA,cAAA;EACA,qBAAA;EACA,mBAAA;EACA,eAAA;EACA,yBAAA;EACA,yBAAA;EACA,oCAAA;EACA,kBAAA;EACA,aAAA;EjBoGJ,4EAAA;EACQ,oEAAA;EAuOR,mEAAA;;AiB7VF,MAEE,GAqBE,IAAG;AAvBP,MAEE,GAsBE,IAAG;EACD,cAAA;EACA,yBAAA;;AA1BN,MAEE,GA2BE,IAAG;EACD,cAAA;EACA,yBAAA;;AA/BN,MAEE,GAgCE;EFjBF,kBAAA;EACA,qBAAA;EEkBI,kBAAA;;AFoFJ,MEtHA,GAgCE,WFsFD;EACC,kBAAA;;AArGF,MElBA,GAgCE,WFdD;AACD,MEnBA,GAgCE,WFbD;EACC,SAAS,EAAT;EACA,kBAAA;EACA,QAAA;EACA,SAAA;;AAEF,MEzBA,GAgCE,WFPD;EACC,6BAAA;;AAEF,ME5BA,GAgCE,WFJD;EACC,6BAAA;;AAgEF,ME7FA,GAgCE,WF6DD;AACD,ME9FA,GAgCE,WF8DD;EACC,WAAA;EACA,SAAA;;AAEF,MElGA,GAgCE,WFkED;EACC,gBAAA;EACA,uBAAA;EACA,2BAAA;;AAEF,MEvGA,GAgCE,WFuED;EACC,gBAAA;EACA,+BAAA;;AE3GJ,MAEE,GAoCE;EFrBF,kBAAA;EACA,qBAAA;EEsBI,iBAAA;;AFgFJ,MEtHA,GAoCE,WFkFD;EACC,kBAAA;;AArGF,MElBA,GAoCE,WFlBD;AACD,MEnBA,GAoCE,WFjBD;EACC,SAAS,EAAT;EACA,kBAAA;EACA,QAAA;EACA,SAAA;;AAEF,MEzBA,GAoCE,WFXD;EACC,6BAAA;;AAEF,ME5BA,GAoCE,WFRD;EACC,6BAAA;;AA0BF,MEvDA,GAoCE,WFmBD;AACD,MExDA,GAoCE,WFoBD;EACC,UAAA;EACA,SAAA;;AAEF,ME5DA,GAoCE,WFwBD;EACC,gBAAA;EACA,sBAAA;EACA,0BAAA;;AAEF,MEjEA,GAoCE,WF6BD;EACC,gBAAA;EACA,8BAAA;;AErEJ,MA4CE,UACE;AA7CJ,MA4CE,UAEE,IAAG;AA9CP,MA4CE,UAGE,IAAG;AA/CP,MA4CE,UAIE;EjBqEF,wBAAA;EACQ,gBAAA;EiBpEJ,cAAA;EACA,yBAAA;EACA,qBAAA;EjBySJ,mEAAA;;AiB7VF,MA4CE,UAYE;EFvCF,kBAAA;EACA,qBAAA;EEwCI,kBAAA;;AF8DJ,ME5EA,UAYE,WFgED;EACC,kBAAA;;AArGF,MEwBA,UAYE,WFpCD;AACD,MEuBA,UAYE,WFnCD;EACC,SAAS,EAAT;EACA,kBAAA;EACA,QAAA;EACA,SAAA;;AAEF,MEiBA,UAYE,WF7BD;EACC,6BAAA;;AAEF,MEcA,UAYE,WF1BD;EACC,6BAAA;;AAgEF,MEnDA,UAYE,WFuCD;AACD,MEpDA,UAYE,WFwCD;EACC,WAAA;EACA,SAAA;;AAEF,MExDA,UAYE,WF4CD;EACC,gBAAA;EACA,uBAAA;EACA,2BAAA;;AAEF,ME7DA,UAYE,WFiDD;EACC,gBAAA;EACA,+BAAA;;AE3GJ,MA4CE,UAgBE;EF3CF,kBAAA;EACA,qBAAA;EE4CI,iBAAA;;AF0DJ,ME5EA,UAgBE,WF4DD;EACC,kBAAA;;AArGF,MEwBA,UAgBE,WFxCD;AACD,MEuBA,UAgBE,WFvCD;EACC,SAAS,EAAT;EACA,kBAAA;EACA,QAAA;EACA,SAAA;;AAEF,MEiBA,UAgBE,WFjCD;EACC,6BAAA;;AAEF,MEcA,UAgBE,WF9BD;EACC,6BAAA;;AA0BF,MEbA,UAgBE,WFHD;AACD,MEdA,UAgBE,WFFD;EACC,UAAA;EACA,SAAA;;AAEF,MElBA,UAgBE,WFED;EACC,gBAAA;EACA,sBAAA;EACA,0BAAA;;AAEF,MEvBA,UAgBE,WFOD;EACC,gBAAA;EACA,8BAAA;;AGnEJ;EACE,cAAA;EACA,gBAAA;;AAMF;ElB8iBE,yBAAA;;AAEE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;AkB9iBN;ElB0iBE,yBAAA;;AAEE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;AkB1iBN;ElBsiBE,yBAAA;;AAEE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;AkBtiBN;ElBkiBE,yBAAA;;AAEE,WADD,MACE;AACD,WAFD,MAEE;EACC,yBAAA;;AkBliBN;ElB8hBE,yBAAA;;AAEE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;AkB9hBN;ElB0hBE,yBAAA;;AAEE,aADD,MACE;AACD,aAFD,MAEE;EACC,yBAAA;;AmB1jBN;EACE,eAAA;;AAIF,CAAC,gBAAgB,OAAQ;AACzB,EAAE,gBAAgB,OAAQ,EAAE;EAC1B,cAAA;EACA,yBAAA;;AAEF,UAAW,UAAU,IAAI;EACvB,cAAA;EACA,yBAAA;;ACbF;EACE,cAAA;EACA,yBAAA;;AAFF,UAIE;AAJF,UAKE;EACE,cAAA;;AANJ,UAQE;EACE,eAAA;;AAGF,UAAW;EACT,kBAAA;;AASJ,mBANgD;EAMhD,UALI;EAKJ,UAJI;IACE,iBAAA;;;AClBN;EACE,cAAA;EACA,UAAA;EACA,mBAAA;EACA,gBAAA;EACA,yBAAA;EACA,yBAAA;EACA,gBAAA;;AAGA,CAAC,UAAC;AACF,CAAC,UAAC;AACF,CAAC,UAAC;EACA,qBAAA;ErBsGF,qCAAA;EACQ,6BAAA;;AqBpHV,UAkBE;EACE,gBAAA;EACA,cAAA;;ACbJ;EACE,YAAA;EACA,mBAAA;EACA,kBAAA;;AAHF,MAME;EACE,iBAAA;;AAQJ;EACC,mBAAA;;AAOD;EtBsYE,yBAAA;EACA,qBAAA;EACA,cAAA;;AsBxYF,ctB0YE;EACE,yBAAA;;AsB3YJ,ctB6YE;EACE,cAAA;;AsB3YJ;EtBmYE,yBAAA;EACA,qBAAA;EACA,cAAA;;AsBrYF,WtBuYE;EACE,yBAAA;;AsBxYJ,WtB0YE;EACE,cAAA;;AsBxYJ;EtBgYE,yBAAA;EACA,qBAAA;EACA,cAAA;;AsBlYF,ctBoYE;EACE,yBAAA;;AsBrYJ,ctBuYE;EACE,cAAA;;AsBrYJ;EtB6XE,yBAAA;EACA,qBAAA;EACA,cAAA;;AsB/XF,atBiYE;EACE,yBAAA;;AsBlYJ,atBoYE;EACE,cAAA;;AsBhYJ;AACA;AACA;AACA;EACE,6CAAA;;AC7CF;EACE,sBAAA;EACA,YAAA;EACA,YAAA;EACA,eAAA;EACA,YAAA;EACA,mBAAA;EACA,6BAAA;EACA,sBAAA;EACA,gBAAA;EvBuGA,wBAAA;EACQ,gBAAA;;AuBnGV;EACE,iBAAA;EACA,yBAAA;EACA,sBAAA;EvB+FA,wBAAA;EACQ,gBAAA;;AuB3FV,iBAAkB;EvBwTd,kBAAkB,2LAAlB;EACA,kBAAkB,mLAAlB;EuBvTF,0BAAA;;AAQF;EvB0jBE,yBAAA;;AACA,iBAAkB;EA7QhB,kBAAkB,2LAAlB;EACA,kBAAkB,mLAAlB;;AuB3SJ;EvBsjBE,yBAAA;;AACA,iBAAkB;EA7QhB,kBAAkB,2LAAlB;EACA,kBAAkB,mLAAlB;;AuBvSJ;EvBkjBE,yBAAA;;AACA,iBAAkB;EA7QhB,kBAAkB,2LAAlB;EACA,kBAAkB,mLAAlB;;AuBnSJ;EvB8iBE,yBAAA;;AACA,iBAAkB;EA7QhB,kBAAkB,2LAAlB;EACA,kBAAkB,mLAAlB;;AHhVJ;EACE,cAAA;EACA,yBAAA;EACA,yBAAA;;AAGA,gBAAC;EGqFD,0BAAA;EACC,yBAAA;;AHnFD,gBAAC;EG0FD,6BAAA;EACC,4BAAA;;AHpGH,gBAaE;EACE,aAAA;;AAdJ,gBAgBE;EACE,qBAAA;EACA,wBAAA;EACA,cAAA;;AASJ,CAAC;EACC,cAAA;;AADF,CAAC,gBAGC;EACE,cAAA;;AAIF,CARD,gBAQE;AACD,CATD,gBASE,OAAO;AACR,CAVD,gBAUE,OAAO;EACN,cAAA;EACA,iBAAA;EACA,6BAAA;EACA,qBAAA;EACA,8BAAA;EACA,0BAAA;;AARF,CARD,gBAQE,OAUC;AATF,CATD,gBASE,OAAO,MASN;AARF,CAVD,gBAUE,OAAO,MAQN;EACE,mBAAA;EACA,cAAA;;AAGJ,CAvBD,gBAuBE,OAAO;AACR,CAxBD,gBAwBE,OAAO;EACN,yBAAA;;AAMF,CAHD,gBAGE;AAAD,EAFA,gBAAiB,EAEhB;AACD,CAJD,gBAIE;AAAD,EAHA,gBAAiB,EAGhB;EACC,qBAAA;EACA,yBAAA;;AAGJ,EAAE;EACA,UAAA;EACA,gBAAA;EACA,cAAA;;AAHF,EAAE,gBAIA;EACE,cAAA;EACA,cAAA;EACA,iBAAA;EACA,kBAAA;;AAGF,EAXA,gBAWC;EACC,iBAAA;EACA,6BAAA;EACA,8BAAA;;AAHF,EAXA,gBAWC,OAIC;EACE,iBAAA;EACA,cAAA;;AG2XJ,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;EAKb,cAAA;;AADF,CAAC,iBAJc,OAOb;EAA2B,cAAA;;AAE3B,CALD,iBAJc,OASZ;AACD,CAND,iBAJc,OAUZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAVD,iBAJc,OAcZ;AACD,CAXD,iBAJc,OAeZ,OAAO;AACR,CAZD,iBAJc,OAgBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AAnBN,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;EAKb,cAAA;;AADF,CAAC,iBAJc,IAOb;EAA2B,cAAA;;AAE3B,CALD,iBAJc,IASZ;AACD,CAND,iBAJc,IAUZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAVD,iBAJc,IAcZ;AACD,CAXD,iBAJc,IAeZ,OAAO;AACR,CAZD,iBAJc,IAgBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AAnBN,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;EAKb,cAAA;;AADF,CAAC,iBAJc,OAOb;EAA2B,cAAA;;AAE3B,CALD,iBAJc,OASZ;AACD,CAND,iBAJc,OAUZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAVD,iBAJc,OAcZ;AACD,CAXD,iBAJc,OAeZ,OAAO;AACR,CAZD,iBAJc,OAgBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AAnBN,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;EAKb,cAAA;;AADF,CAAC,iBAJc,MAOb;EAA2B,cAAA;;AAE3B,CALD,iBAJc,MASZ;AACD,CAND,iBAJc,MAUZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAVD,iBAJc,MAcZ;AACD,CAXD,iBAJc,MAeZ,OAAO;AACR,CAZD,iBAJc,MAgBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AH5XR;EACE,iBAAA;;AACA,wBAAC,MAAO;EACN,cAAA;;AAHJ,wBAKE;EACE,cAAA;EACA,iBAAA;EACA,SAAA;EACA,cAAA;;AAMA,wBADF,YACG,MAAO;EACN,yBAAA;;AAEF,wBAJF,YAIG;EACC,cAAA;;AADF,wBAJF,YAIG,KAEC;EACE,yBAAA;;AArBR,wBAcE,YAUE;EACE,aAAA;;AAQN;EACE,cAAA;EACA,4BAAA;EACA,eAAA;EACA,iBAAA;EACA,gBAAA;EACA,cAAA;EACA,6CAAA;EACA,yBAAA;;AAEA,EAAE;EACA,iBAAA;;AAGF,WAAY;EACV,eAAA;;AAKJ;EAEE,UAAA;EACA,SAAA;EACA,cAAA;EACA,gBAAA;EG7CA,wBAAA;EACQ,gBAAA;;AHuCV,qBAQE,yBAAyB;EACvB,kBAAA;;AATJ,qBAWE,sBAAsB,yBAAyB;EAC7C,kBAAA;;AAZJ,qBAcE,mBACE;EACE,iBAAA;;AAMN;EACE,kBAAA;EACA,UAAA;EACA,qBAAA;EACA,WAAA;EACA,YAAA;EACA,iBAAA;;AACA,eAAC;EACC,SAAS,EAAT;EACA,kBAAA;EACA,SAAA;EACA,SAAA;EACA,cAAA;EAEA,uBAAA;;AAEF,eAAC;EACC,yBAAA;;AAGF,eAAC,UAAU;EACT,SAAA;EACA,SAAA;;AAMJ,WAAY;EGyLV,WAAA;EACA,aAAA;EACA,gBAAA;EACA,yBAAA;EH1LE,kBAAA;EACA,iBAAA;;AHhNJ;EACE,qBAAA;EACA,yBAAA;EACA,6BAAA;EACA,wBAAA;EACA,kBAAA;EM8GA,wBAAA;EACQ,gBAAA;;AN1GV;EACE,kBAAA;;AAIF;EACE,kBAAA;EM6EA,4BAAA;EACC,2BAAA;;ANxEH;EACE,eAAA;;AAIF;EACE,kBAAA;EACA,yBAAA;EACA,6BAAA;EMuEA,+BAAA;EACC,8BAAA;;AN3DC,MAFF,cAEG,YACC,iBAAgB;EMiDpB,4BAAA;EACC,2BAAA;;AN7CC,MARF,cAQG,WACC,iBAAgB;EMmDpB,+BAAA;EACC,8BAAA;;ANxCH,MAEE,SAAQ,YAEN,QAAO,YAEL,KAAI,YACF,GAAE;AAPV,MAGE,oBAAmB,YAAa,SAAQ,YACtC,QAAO,YAEL,KAAI,YACF,GAAE;AAPV,MAEE,SAAQ,YAGN,QAAO,YACL,KAAI,YACF,GAAE;AAPV,MAGE,oBAAmB,YAAa,SAAQ,YAEtC,QAAO,YACL,KAAI,YACF,GAAE;AAPV,MAEE,SAAQ,YAEN,QAAO,YAEL,KAAI,YAEF,GAAE;AARV,MAGE,oBAAmB,YAAa,SAAQ,YACtC,QAAO,YAEL,KAAI,YAEF,GAAE;AARV,MAEE,SAAQ,YAGN,QAAO,YACL,KAAI,YAEF,GAAE;AARV,MAGE,oBAAmB,YAAa,SAAQ,YAEtC,QAAO,YACL,KAAI,YAEF,GAAE;EACA,2BAAA;;AATV,MAEE,SAAQ,YAEN,QAAO,YAEL,KAAI,YAKF,GAAE;AAXV,MAGE,oBAAmB,YAAa,SAAQ,YACtC,QAAO,YAEL,KAAI,YAKF,GAAE;AAXV,MAEE,SAAQ,YAGN,QAAO,YACL,KAAI,YAKF,GAAE;AAXV,MAGE,oBAAmB,YAAa,SAAQ,YAEtC,QAAO,YACL,KAAI,YAKF,GAAE;AAXV,MAEE,SAAQ,YAEN,QAAO,YAEL,KAAI,YAMF,GAAE;AAZV,MAGE,oBAAmB,YAAa,SAAQ,YACtC,QAAO,YAEL,KAAI,YAMF,GAAE;AAZV,MAEE,SAAQ,YAGN,QAAO,YACL,KAAI,YAMF,GAAE;AAZV,MAGE,oBAAmB,YAAa,SAAQ,YAEtC,QAAO,YACL,KAAI,YAMF,GAAE;EACA,4BAAA;;AAbV,MAmBE,SAAQ,WAEN,QAAO,WAEL,KAAI,WACF,GAAE;AAxBV,MAoBE,oBAAmB,WAAY,SAAQ,WACrC,QAAO,WAEL,KAAI,WACF,GAAE;AAxBV,MAmBE,SAAQ,WAGN,QAAO,WACL,KAAI,WACF,GAAE;AAxBV,MAoBE,oBAAmB,WAAY,SAAQ,WAErC,QAAO,WACL,KAAI,WACF,GAAE;AAxBV,MAmBE,SAAQ,WAEN,QAAO,WAEL,KAAI,WAEF,GAAE;AAzBV,MAoBE,oBAAmB,WAAY,SAAQ,WACrC,QAAO,WAEL,KAAI,WAEF,GAAE;AAzBV,MAmBE,SAAQ,WAGN,QAAO,WACL,KAAI,WAEF,GAAE;AAzBV,MAoBE,oBAAmB,WAAY,SAAQ,WAErC,QAAO,WACL,KAAI,WAEF,GAAE;EACA,8BAAA;;AA1BV,MAmBE,SAAQ,WAEN,QAAO,WAEL,KAAI,WAKF,GAAE;AA5BV,MAoBE,oBAAmB,WAAY,SAAQ,WACrC,QAAO,WAEL,KAAI,WAKF,GAAE;AA5BV,MAmBE,SAAQ,WAGN,QAAO,WACL,KAAI,WAKF,GAAE;AA5BV,MAoBE,oBAAmB,WAAY,SAAQ,WAErC,QAAO,WACL,KAAI,WAKF,GAAE;AA5BV,MAmBE,SAAQ,WAEN,QAAO,WAEL,KAAI,WAMF,GAAE;AA7BV,MAoBE,oBAAmB,WAAY,SAAQ,WACrC,QAAO,WAEL,KAAI,WAMF,GAAE;AA7BV,MAmBE,SAAQ,WAGN,QAAO,WACL,KAAI,WAMF,GAAE;AA7BV,MAoBE,oBAAmB,WAAY,SAAQ,WAErC,QAAO,WACL,KAAI,WAMF,GAAE;EACA,+BAAA;;AA9BV,MAmCE,cAAc;AAnChB,MAoCE,cAAc;EACZ,6BAAA;;AAMJ;EMsSE,qBAAA;;AAEA,cAAE;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;ANhTN;EMmSE,qBAAA;;AAEA,cAAE;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;AN7SN;EMgSE,qBAAA;;AAEA,cAAE;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;AN1SN;EM6RE,qBAAA;;AAEA,WAAE;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,WAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AAGJ,WAAE,gBACA,kBAAkB;EAChB,4BAAA;;ANvSN;EM0RE,qBAAA;;AAEA,cAAE;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;ANpSN;EMuRE,qBAAA;;AAEA,aAAE;EACA,cAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,aAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AAGJ,aAAE,gBACA,kBAAkB;EAChB,4BAAA;;AN1RN;EACE,mBAAA;;AADF,YAIE;EACE,yBAAA;EACA,gBAAA;;AANJ,YAIE,OAGE;EACE,gBAAA;;AARN,YAYE;EACE,eAAA;EACA,yBAAA;EACA,2BAAA;EACA,8BAAA;;AAhBJ,YAYE,eAME;EACE,cAAA;EACA,mBAAA;EACA,WAAA;EACA,qBAAA;;AAEA,YAZJ,eAME,EAMG;EACC,SAAS,OAAT;EACA,iBAAA;;AAIF,YAlBJ,eAME,EAYG;EACC,yBAAA;;AAGF,YAtBJ,eAME,EAgBG;EACC,aAAA;;AAGF,YA1BJ,eAME,EAoBG,UAAU;EACT,SAAS,OAAT;EACA,iBAAA;;AAxCR,YAYE,eAiCE;EACE,eAAA;;AA9CN,YAYE,eAqCE,kBAAkB;EAChB,kBAAA;;AAlDN,YAqDE,cACE,kBAAkB;EAChB,qBAAA;;A8BzLN;EACE,yBAAA;EACA,yBAAA;EACA,gBAAA;ExBgHA,wBAAA;EACQ,gBAAA;;AwB5GV;EACE,gBAAA;;AAEF;EACE,gBAAA;;ACbF,WAAW;EACT,YAAA;EACA,WAAA;;AAEA,WAJS,mBAIR;EACC,yBAAA;EACA,yBAAA;;AAGJ,WAAW,0BAA0B,MAAM;AAC3C,WAAW,0BAA0B,IAAI;EACvC,6BAAA;EACA,cAAA;EACA,SAAA;;AAEF,WAAW;EACT,4BAAA;EACA;aAAA;EAEA,uBAAA;;AAEF,WAAW;EACT,6BAAA;EACA,gBAAA;;AAEF,WAAW;EACT,yBAAA;EACA,oCAAA;EACA,yBAAA;EACA,eAAA;EzBuFA,oFAAA;EACQ,4EAAA;EyBtFR,4BAAA;;AAEA,WARS,yBAQR;EACC,yBAAA;;AAEF,WAXS,yBAWR;EACC,yBAAA;EACA,oCAAA;EzB8EF,yDAAA;EACQ,iDAAA;;AyB3ER,WAjBS,yBAiBR;AACD,WAlBS,yBAkBR;EACC,yBAAA;EACA,gBAAA;;ACxCJ;EACE,cAAA;EACA,yBAAA;EACA,sCAAA;EACA,gBAAA;E1B2GA,iDAAA;EACQ,yCAAA;;A0BvGV;EACE,yBAAA;;AAIF,aAAc;EACZ,mBAAA;E1BoQA,YAAA;EAGA,yBAAA;;A0BjQF;EACG,aAAA;;AAIH;EACE,eAAA;;AC/BF;EACE,eAAA;EACA,iBAAA;EACA,iBAAA;EACA,sBAAA;;AAEA,QAAC;E3BiRD,UAAA;EAGA,0BAAA;;A2BhRF;EACE,gBAAA;EACA,yBAAA;EACA,sBAAA;EACA,gBAAA;;AAIF,cAAc;EACZ,SAAS,GAAT;EACA,kBAAA;EACA,WAAA;EACA,6BAAA;;AAGA,QAAC,IAAK;AACN,QAAC,SAAU;AACX,QAAC,UAAW;EACV,WAAA;;AACA,QAJD,IAAK,eAIH;AAAD,QAHD,SAAU,eAGR;AAAD,QAFD,UAAW,eAET;EACC,SAAA;EACA,UAAA;EACA,yBAAA;EACA,uBAAA;;AAGJ,QAAC,MAAO;EACN,SAAA;;AACA,QAFD,MAAO,eAEL;EACC,SAAA;EACA,WAAA;EACA,2BAAA;EACA,qBAAA;;AAGJ,QAAC,KAAM;EACL,UAAA;;AACA,QAFD,KAAM,eAEJ;EACC,SAAA;EACA,UAAA;EACA,sBAAA;EACA,0BAAA;;AAGJ,QAAC,OAAQ;AACT,QAAC,YAAa;AACd,QAAC,aAAc;EACb,QAAA;;AACA,QAJD,OAAQ,eAIN;AAAD,QAHD,YAAa,eAGX;AAAD,QAFD,aAAc,eAEZ;EACC,YAAA;EACA,UAAA;EACA,oBAAA;EACA,4BAAA;;AC/DN;EACE,UAAA;EACA,yBAAA;EACA,kBAAA;E5BiHA,iDAAA;EACQ,yCAAA;;A4B9GV;AACA;EACE,aAAA;EACA,eAAA;EACA,yBAAA;EACA,gCAAA;EACA,2CAAA;EACA,gBAAA;;AAEF;EACE,6BAAA;EACA,wCAAA;EACA,mBAAA;;AAGF;EACE,aAAA;;ACtBF;EACE,WAAA;EACA,aAAA;EACA,gBAAA;ExBKE,yBAAA;EACA,kBAAkB,wDAAoF,yDAAtG;EACA,kBAAkB,gDAA4E,iDAA9F;EACA,kBAAkB,4DAAyF,6DAA3G;EACA,4BAAA;EACA,iCAAA;EACA,0BAAA;;AwBHJ;E7B4QE,aAAA;EAGA,yBAAA;E6B7QA,cAAA;EACA,iBAAA;;AAGA,iBAAC;EACC,sBAAA;;AAEF,iBAAC;EACC,sBAAA;;AAIF,iBAAC;AACD,iBAAC;EACC,cAAA;;AAMA,iBAFF,WAEG;AAAD,iBADF,WACG;EACC,SAAS,EAAT;;AAvBN,iBA0BE;EdtBA,kBAAA;EACA,qBAAA;EcuBE,kBAAA;EACA,QAAA;;Ad8EF,iBcjFA,WdiFC;EACC,mBAAA;;AArGF,iBcmBA,WdnBC;AACD,iBckBA,WdlBC;EACC,SAAS,EAAT;EACA,kBAAA;EACA,QAAA;EACA,SAAA;;AAEF,iBcYA,WdZC;EACC,8BAAA;;AAEF,iBcSA,WdTC;EACC,8BAAA;;AAgEF,iBcxDA,WdwDC;AACD,iBczDA,WdyDC;EACC,WAAA;EACA,QAAA;;AAEF,iBc7DA,Wd6DC;EACC,iBAAA;EACA,wBAAA;EACA,2BAAA;;AAEF,iBclEA,WdkEC;EACC,iBAAA;EACA,gCAAA;;Ac9FJ,iBAgCE;Ed5BA,kBAAA;EACA,qBAAA;Ec6BE,kBAAA;EACA,QAAA;EACA,SAAA;;AduEF,iBc3EA,Wd2EC;EACC,mBAAA;;AArGF,iBcyBA,WdzBC;AACD,iBcwBA,WdxBC;EACC,SAAS,EAAT;EACA,kBAAA;EACA,QAAA;EACA,SAAA;;AAEF,iBckBA,WdlBC;EACC,8BAAA;;AAEF,iBceA,WdfC;EACC,8BAAA;;AA0BF,iBcZA,WdYC;AACD,iBcbA,WdaC;EACC,UAAA;EACA,QAAA;;AAEF,iBcjBA,WdiBC;EACC,iBAAA;EACA,uBAAA;EACA,0BAAA;;AAEF,iBctBA,WdsBC;EACC,iBAAA;EACA,+BAAA;;AcXJ;EACE,WAAA;EACA,OAAA;EACA,WAAA;EACA,cAAA;;AAJF,oBAME;EACE,yBAAA;EACA,yBAAA;;AARJ,oBAUE;EACE,WAAA;EACA,WAAA;EACA,YAAA;EACA,yBAAA;EACA,yBAAA;;AAOJ;EACE,QAAA;EACA,SAAA;EACA,OAAA;EACA,aAAA;EACA,cAAA;EACA,iBAAA;EACA,yBAAA;EACA,qCAAA","sourcesContent":["//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n word-wrap: break-word;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-bottom-width: 2px;\n border-radius: @panel-border-radius;\n .box-shadow(none);\n}\n\n// Panel contents\n.panel-body {\n padding: @panel-body-padding;\n}\n\n// Optional heading\n.panel-heading {\n padding: 15px 20px;\n // border-bottom: 1px solid transparent;\n .border-top-radius(@panel-border-radius);\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n font-size: floor((@font-size-base * 1.25));\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: 15px 20px;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius(@panel-border-radius);\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group {\n // Add border top radius for first one\n &:first-child {\n .list-group-item:first-child {\n .border-top-radius((@panel-border-radius - 1));\n }\n }\n // Add border bottom radius for last one\n &:last-child {\n .list-group-item:last-child {\n .border-bottom-radius((@panel-border-radius - 1));\n }\n }\n }\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n td:first-child,\n th:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-top-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n > .panel-body + .table,\n > .panel-body + .table-responsive {\n border-top: 1px solid @table-border-color;\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-heading-bg);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n\n\n// Collapsable panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n margin-bottom: @line-height-computed;\n\n // Tighten up margin so it's only between panels\n .panel {\n border-color: transparent;\n border-radius: 0;\n + .panel {\n margin-top: -3px;\n }\n }\n\n .panel-heading {\n padding: 0 15px;\n background-color: #fafafa;\n border-top: 1px dashed #ccc;\n border-bottom: 1px dashed #ccc;\n\n a {\n display: block;\n padding: 10px 0 9px;\n color: #444;\n text-decoration: none;\n\n &:before {\n content: \"\\e082\";\n margin-right: 7px;\n &:extend(.glyphicon);\n }\n\n &:hover {\n background-color: #f5f5f5;\n }\n\n &:focus {\n outline: none;\n }\n\n &.collapsed:before {\n content: \"\\e081\";\n margin-right: 7px;\n &:extend(.glyphicon);\n }\n }\n\n .panel-title {\n font-size: @font-size-base;\n }\n\n + .panel-collapse .panel-body {\n border-top: 0 none;\n }\n }\n .panel-footer {\n + .panel-collapse .panel-body {\n border-bottom: 0 none;\n }\n }\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: ~\"url('@{icon-font-path}@{icon-font-name}.eot')\";\n src: ~\"url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype')\",\n ~\"url('@{icon-font-path}@{icon-font-name}.woff') format('woff')\",\n ~\"url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype')\",\n ~\"url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg')\";\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\2a\"; } }\n.glyphicon-plus { &:before { content: \"\\2b\"; } }\n.glyphicon-euro { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Body reset\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n }\n}\n\n\n// Images\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 3px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .box-shadow(0 0 0 1px #aaaaaa);\n .transition(none);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n\n// Miscellaneous\n\n// Additional carets\n.caret-right {\n &:extend(.caret);\n vertical-align: baseline;\n border-top: @caret-width-base solid transparent;\n border-right: 0 dotted;\n border-bottom: @caret-width-base solid transparent;\n border-left: @caret-width-base solid;\n}\n\n.caret-left {\n &:extend(.caret-right);\n margin-left: 0;\n margin-right: 2px;\n border-right: @caret-width-base solid;\n border-left: 0 dotted;\n}\n\n\n// Scrollable shadow\n.scrollable-shadow {\n background:\n // Shadow covers\n linear-gradient(white 30%, rgba(255,255,255,0)),\n linear-gradient(rgba(255,255,255,0), white 70%) 0 100%,\n\n // Shadows\n radial-gradient(50% 0, farthest-side, rgba(0,0,0,.2), rgba(0,0,0,0)),\n radial-gradient(50% 100%, farthest-side, rgba(0,0,0,.2), rgba(0,0,0,0)) 0 100%;\n background:\n // Shadow covers\n linear-gradient(white 30%, rgba(255,255,255,0)),\n linear-gradient(rgba(255,255,255,0), white 70%) 0 100%,\n\n // Shadows\n radial-gradient(farthest-side at 50% 0, rgba(0,0,0,.2), rgba(0,0,0,0)),\n radial-gradient(farthest-side at 50% 100%, rgba(0,0,0,.2), rgba(0,0,0,0)) 0 100%;\n background-repeat: no-repeat;\n background-attachment: local, local, scroll, scroll; // Opera doesn't support this in the shorthand\n background-size: 100% 40px, 100% 40px, 100% 6px, 100% 6px;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n color: @gray-darker;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n .border-bottom-radius(@list-group-border-radius);\n }\n\n .dropdown {\n display: none;\n }\n .dropdown-toggle {\n display: inline-block;\n padding: 5px 6px 5px 5px;\n color: @gray-darker;\n }\n}\n\n// Linked list items\n//\n// Use anchor elements instead of `li`s or `div`s to create linked list items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n color: @list-group-active-color;\n font-weight: bold;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n border-left: 4px solid @list-group-active-color;\n border-left-color: @list-group-active-color;\n\n .list-group-item-text {\n font-weight: normal;\n color: @list-group-active-text-color;\n }\n }\n &.active:hover,\n &.active:focus {\n background-color: @list-group-hover-bg;\n }\n}\na.list-group-item,\nli.list-group-item a {\n // Hover state\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @list-group-hover-bg;\n }\n}\nli.list-group-item {\n padding: 0;\n margin-bottom: 0;\n border: 0 none;\n > a {\n color: @gray-darker;\n display: block;\n padding: @padding-base-vertical 17px;\n margin: 0 0 0 14px;\n }\n\n &.active {\n font-weight: bold;\n background-color: @list-group-active-bg;\n border-left: 4px solid #DD4B39;\n > a {\n margin-left: 10px;\n color: @list-group-active-color;\n }\n }\n}\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n// List group item wrapper\n// -------------------------\n\n.list-group-item-wrapper {\n margin-left: 14px;\n &:hover > .dropdown {\n display: block;\n }\n > a {\n display: block;\n padding: 5px 17px;\n margin: 0;\n color: @gray-darker;\n // &:hover {\n // background-color: @gray-lighter !important;\n // }\n }\n > .dropdown {\n &:hover + a {\n background-color: @gray-lighter;\n }\n &.open {\n display: block;\n + a {\n background-color: @gray-lighter;\n }\n }\n > .dropdown-menu {\n margin-top: 0;\n }\n }\n}\n\n// List group headers\n// -------------------------\n\n.list-group-header {\n display: block;\n padding: 10px 30px 10px 15px;\n font-size: 11px;\n font-weight: bold;\n line-height: @line-height-base;\n color: @gray-light;\n text-shadow: 0 1px 0 rgba(255,255,255,.5);\n text-transform: uppercase;\n\n li& {\n padding: 3px 15px;\n }\n\n .list-group & {\n margin-top: 9px;\n }\n}\n\n// Collapsible menu\n.list-group-item-menu {\n // No need to set list-style: none; since .list-group-item is block level\n padding: 0;\n margin: 0;\n border: 0 none;\n border-radius: 0;\n .box-shadow(none);\n\n .list-group-item-wrapper > a {\n padding-left: 30px;\n }\n .list-group-item-menu .list-group-item-wrapper > a {\n padding-left: 44px;\n }\n > .list-group-item {\n .collapse-caret {\n margin-left: 28px;\n }\n }\n}\n\n// Caret\n.collapse-caret {\n position: absolute;\n z-index: 1;\n display: inline-block;\n width: 17px;\n height: 28px;\n margin-left: 14px;\n &:before {\n content: '';\n position: absolute;\n top: 12px;\n left: 5px;\n margin-left: 0;\n &:extend(.caret);\n border-bottom: 0 dotted;\n }\n &:hover {\n background-color: @gray-lighter;\n }\n\n &.collapsed:before {\n top: 10px;\n left: 6px;\n &:extend(.caret-right);\n }\n}\n\n// Dividers (basically an hr) within the list group\n.list-group .divider {\n .nav-divider();\n margin-right: 15px;\n margin-left: 15px;\n}\n\n\n\n\n// Sidebar list group\n// -------------------------\n\n// .nav-list-sidebar {\n// .transition(color 0.218s ease 0s);\n// a {\n// color: @gray-darker;\n// }\n// .btn {\n// color: @btn-default-color;\n// }\n// &:hover a,\n// &:hover .active > a {\n// color: @link-color;\n// }\n// &:hover,\n// &:focus,\n// &:active,\n// &.active & {\n// .btn,\n// > .btn {\n// color: @btn-default-color;\n// }\n// }\n// li {\n// margin-top: 3px;\n// }\n// .nav-header {\n// margin-bottom: 5px;\n// color: #808080;\n// // border-bottom: 1px solid #E9E9E9;\n// position: relative;\n// overflow: hidden;\n// &:after {\n// border-bottom: 1px solid #E9E9E9;\n// content: '';\n// margin-left: 10px;\n// margin-top: 10px;\n// position: absolute;\n// width: 100%;\n// }\n// }\n// }\n// .nav-list-sidebar > .active > a,\n// .nav-list-sidebar > .active > a:hover,\n// .nav-list-sidebar > .active > a:focus {\n// padding-left: 15px;\n// font-weight: bold;\n// color: @gray-darker;\n// border-left: 0 none;\n// }\n// .nav-list-sidebar > .active > a:hover,\n// .nav-list-sidebar > li > a:hover,\n// .nav-list-sidebar > li > a:active,\n// .nav-list-sidebar > li > a:focus {\n// color: @link-color;\n// background-color: transparent;\n// text-decoration: underline;\n// }\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// The dropdown menu (ul)\n.dropdown-menu {\n padding: 6px 0;\n margin: 1px 0 0; // override default ul\n font-size: @font-size-base;\n background-color: @dropdown-bg;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: 0;\n .box-shadow(0 2px 4px @dropdown-border);\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n padding: 3px 30px;\n position: relative;\n\n // icon within the menu item\n .glyphicon {\n position: absolute;\n left: 7px;\n top: 4px;\n }\n }\n}\n\n// Hover/Focus state\n.dropdown-menu li > a:hover,\n.dropdown-menu li > a:focus,\n.dropdown-submenu:hover > a,\n.dropdown-submenu:focus > a {\n color: @dropdown-link-hover-color;\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: @dropdown-link-hover-bg);\n background-color: @gray-lighter;\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: @dropdown-link-hover-bg);\n background-color: @gray-lighter;\n }\n}\n\n// Dropdown section headers\n.dropdown-header {\n color: @gray-light;\n}\n\n// Sub menus\n// ---------------------------\n\n// Original Bootstrap sub menus\n.dropdown-submenu {\n position: relative;\n}\n// Default dropdowns\n.dropdown-submenu > .dropdown-menu {\n top: 0;\n left: 100%;\n margin-left: -1px;\n border-radius: 0;\n}\n.dropdown-submenu:hover > .dropdown-menu {\n display: block;\n}\n\n// Dropups\n.dropup .dropdown-submenu > .dropdown-menu {\n top: auto;\n bottom: 0;\n margin-top: 0;\n margin-bottom: -2px;\n border-radius: 0;\n}\n\n// Caret to indicate there is a submenu\n.dropdown-submenu > a:after {\n position: absolute;\n right: 10px;\n &:extend(.caret-right);\n margin-top: (@caret-width-base + 1);\n content: \"\";\n}\n\n// Left aligned submenus\n.dropdown-submenu.pull-left {\n // Undo the float\n // Yes, this is awkward since .pull-left adds a float, but it sticks to our conventions elsewhere.\n float: none !important;\n\n // Positioning the submenu\n > .dropdown-menu {\n left: -100%;\n margin-left: 18px;\n border-radius: 0;\n }\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: @caret-width-base solid;\n border-right: @caret-width-base solid transparent;\n border-left: @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropdown {\n position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: @zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0; // override default ul\n list-style: none;\n font-size: @font-size-base;\n background-color: @dropdown-bg;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: @border-radius-base;\n .box-shadow(0 6px 12px rgba(0,0,0,.175));\n background-clip: padding-box;\n\n // Aligns the dropdown menu to right\n //\n // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n &.pull-right {\n right: 0;\n left: auto;\n }\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: @line-height-base;\n color: @dropdown-link-color;\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n &:hover,\n &:focus {\n text-decoration: none;\n color: @dropdown-link-hover-color;\n background-color: @dropdown-link-hover-bg;\n }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n text-decoration: none;\n outline: 0;\n background-color: @dropdown-link-active-bg;\n }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-disabled-color;\n }\n}\n// Nuke hover/focus effects\n.dropdown-menu > .disabled > a {\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none; // Remove CSS gradient\n .reset-filter();\n cursor: not-allowed;\n }\n}\n\n// Open state for the dropdown\n.open {\n // Show the menu\n > .dropdown-menu {\n display: block;\n }\n\n // Remove the outline when :focus is triggered\n > a {\n outline: 0;\n }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n left: auto; // Reset the default from `.dropdown-menu`\n right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: @font-size-small;\n line-height: @line-height-base;\n color: @dropdown-header-color;\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n // Reverse the caret\n .caret {\n border-top: 0;\n border-bottom: @caret-width-base solid;\n content: \"\";\n }\n // Different positioning for bottom up menu\n .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 1px;\n }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .dropdown-menu-right();\n }\n // Necessary for overrides of the default right aligned menu.\n // Will remove come v4 in all likelihood.\n .dropdown-menu-left {\n .dropdown-menu-left();\n }\n }\n}\n\n","//\n// Mixins\n// --------------------------------------------------\n\n\n// Utilities\n// -------------------------\n\n// Clearfix\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n\n// WebKit-style focus\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n\n// Center-align a block level element\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n\n// Sizing shortcuts\n.size(@width; @height) {\n width: @width;\n height: @height;\n}\n.square(@size) {\n .size(@size; @size);\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n &::-moz-placeholder { color: @color; // Firefox\n opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Text overflow\n// Requires inline-block or block for proper styling\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n// CSS image replacement\n//\n// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. Note\n// that we cannot chain the mixins together in Less, so they are repeated.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (will be removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n\n\n\n// CSS3 PROPERTIES\n// --------------------------------------------------\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support the\n// standard `box-shadow` property.\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Transitions\n.transition(@transition) {\n -webkit-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n// Transformations\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n transform: rotate(@degrees);\n}\n.scale(@ratio; @ratio-y...) {\n -webkit-transform: scale(@ratio, @ratio-y);\n -ms-transform: scale(@ratio, @ratio-y); // IE9 only\n transform: scale(@ratio, @ratio-y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n transform: translate(@x, @y);\n}\n.skew(@x; @y) {\n -webkit-transform: skew(@x, @y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n transform: skew(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// User select\n// For selecting text on the page\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n\n// Resize anything\n.resizable(@direction) {\n resize: @direction; // Options: horizontal, vertical, both\n overflow: auto; // Safari fix\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Opacity\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n\n\n\n// GRADIENTS\n// --------------------------------------------------\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n\n// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n\n\n\n// Retina images\n//\n// Short retina mixin for setting background-image and -size\n\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// COMPONENT MIXINS\n// --------------------------------------------------\n\n// Horizontal dividers\n// -------------------------\n// Dividers (basically an hr) within dropdowns and nav lists\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n\n// Panels\n// -------------------------\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse .panel-body {\n border-top-color: @border;\n }\n }\n & > .panel-footer {\n + .panel-collapse .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n\n// Alerts\n// -------------------------\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n\n// Tables\n// -------------------------\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n\n// List Groups\n// -------------------------\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a& {\n color: @color;\n\n .list-group-item-heading { color: inherit; }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n\n// Button variants\n// -------------------------\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:hover,\n &:focus,\n &:active,\n &.active,\n .open .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 8%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &:active,\n &.active {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n// -------------------------\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n\n// Pagination\n// -------------------------\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n\n// Labels\n// -------------------------\n.label-variant(@color) {\n background-color: @color;\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n\n// Contextual backgrounds\n// -------------------------\n.bg-variant(@color) {\n background-color: @color;\n a&:hover {\n background-color: darken(@color, 10%);\n }\n}\n\n// Typography\n// -------------------------\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover {\n color: darken(@color, 10%);\n }\n}\n\n// Navbar vertical align\n// -------------------------\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n\n// Progress bars\n// -------------------------\n.progress-bar-variant(@color) {\n background-color: @color;\n .progress-striped & {\n #gradient > .striped();\n }\n}\n\n// Responsive utilities\n// -------------------------\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n}\n\n\n// Grid System\n// -----------\n\n// Centered container element\n.container-fixed() {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n @media (min-width: @screen-xs-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-xs-column-push(@columns) {\n @media (min-width: @screen-xs-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-xs-column-pull(@columns) {\n @media (min-width: @screen-xs-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n\n// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n border-color: @border-color;\n background-color: @background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @text-color;\n }\n}\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-focus-border` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Emphasis & misc\n// -------------------------\n\n// Contextual emphasis\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline code\ncode {\n padding: 2px 4px;\n border-radius: 0;\n}\n\n// User input typically entered via keyboard\nkbd {\n border-radius: @border-radius-small;\n}\n\n// Blocks of code\npre {\n padding: (@line-height-computed / 2);\n margin: 0 0( @line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n border-radius: 0;\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n background-color: @table-bg;\n}\n\n\n// Baseline styles\n\n.table {\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n line-height: @line-height-base;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n border-bottom: 2px solid @table-border-color;\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n}\n\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-child(odd) {\n > td,\n > th {\n background-color: @table-bg-accent;\n }\n }\n}\n\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n > td,\n > th {\n background-color: @table-bg-hover;\n }\n }\n}\n\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(warning; @state-warning-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n@media (max-width: @screen-xs-max) {\n .table-responsive {\n border: 1px solid @table-border-color;\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nlegend {\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 2px 0 0;\n}\n\n// Adjust output element\noutput {\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n background-color: @input-bg;\n border: 1px solid @input-border;\n border-top-color: darken(@input-border, 10%);\n border-radius: @input-border-radius;\n .box-shadow(none);\n .transition(none);\n -webkit-appearance: none; // remove iOS input shadow\n\n &:hover {\n border: 1px solid #b9b9b9;\n border-top-color: #a0a0a0;\n .box-shadow(inset 0 1px 2px rgba(0,0,0,0.1));\n }\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n background-color: @input-bg-disabled;\n border: 1px solid #e5e5e5;\n &:hover,\n &:focus,\n &:active {\n border: 1px solid #e5e5e5;\n .box-shadow(none);\n }\n }\n &[readonly] & {\n border: 1px solid @input-border;\n &:hover,\n &:focus,\n &:active {\n border: 1px solid @input-border;\n }\n }\n\n textarea& {\n padding-right: 4px;\n }\n}\n\n// Special styles for iOS date input\n//\n// In Mobile Safari, date inputs require a pixel line-height that matches the\n// given height of the input.\n\ninput[type=\"date\"] {\n line-height: @input-height-base;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n min-height: @line-height-computed; // clear the floating input if there is no label text\n}\ninput[type=\"radio\"],\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\ninput[type=\"checkbox\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: relative;\n width: 13px;\n height: 13px;\n background: white;\n border: 1px solid #dcdcdc;\n border-radius: 1px;\n -webkit-appearance: none;\n\n // override styles for IE\n border-width: 0 \\0;\n\n &:focus {\n outline: none;\n border-color: @brand-primary;\n }\n\n &:active {\n border-color: #c6c6c6;\n background-color: #ebebeb;\n // override the bkgd color for IE\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);\n }\n\n &:checked {\n background: #fff;\n }\n}\ninput[type=\"radio\"],\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"] {\n border-radius: 1em;\n width: 15px;\n height: 15px;\n\n &:checked::after {\n content: '';\n display: block;\n position: relative;\n top: 3px;\n left: 3px;\n width: 7px;\n height: 7px;\n background: #666;\n border-radius: 1em;\n }\n}\ninput[type=\"checkbox\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n &:hover {\n border-color: #c6c6c6;\n .box-shadow(inset 0 1px 1px rgba(0, 0, 0, 0.1));\n\n // no box shadow for IE\n box-shadow: none e(\"\\9\");\n }\n\n &:checked::after {\n content: url(../img/checkmark.png);\n display: block;\n position: absolute;\n top: -6px;\n left: -5px;\n }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n\n.input-sm {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n\n.input-lg {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n // Ensure icons don't overlap text\n .form-control {\n padding-right: (@input-height-base * 1.25);\n }\n\n // Feedback icon (requires .glyphicon classes)\n .form-control-feedback {\n top: (@line-height-computed + 5); // Height of the `label` and its margin\n width: @input-height-base;\n height: @input-height-base;\n line-height: @input-height-base;\n }\n}\n\n// Feedback states\n.has-success {\n .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n .form-control-validation(darken(@alert-warning-border, 20%); darken(@alert-warning-border, 20%); @state-warning-bg);\n}\n.has-error {\n .form-control-validation(#dd4b39; #dd4b39; @state-danger-bg);\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n color: lighten(@text-color, 26.5%); // lighten the text some for contrast\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal .control-label,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n padding-top: @padding-base-vertical;\n}\n\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n // Kick in the inline\n @media (min-width: @screen-sm-min) {\n // Inline-block all the things for \"inline\"\n .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // In navbar-form, allow folks to *not* use `.form-group`\n .form-control {\n display: inline-block;\n width: auto; // Prevent labels from stacking above inputs in `.form-group`\n vertical-align: middle;\n }\n\n .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // Remove default margin on radios/checkboxes that were used for stacking, and\n // then undo the floating of radios and checkboxes to match (which also avoids\n // a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).\n .radio,\n .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n padding-left: 0;\n vertical-align: middle;\n }\n .radio input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"] {\n float: none;\n margin-left: 0;\n margin-bottom: -2px;\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n top: 0;\n }\n }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n // Consistent vertical alignment of labels, radios, and checkboxes\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n // Account for padding we're adding to ensure the alignment and of help text\n // and other content below items\n .radio,\n .checkbox {\n min-height: (@line-height-computed + (@padding-base-vertical + 1));\n }\n\n .form-control-static {\n padding-top: (@padding-base-vertical + 1);\n }\n}\n","//\n// Mixins\n// --------------------------------------------------\n\n\n// GRADIENTS\n// --------------------------------------------------\n\n#gradient {\n\n // Top and Bottom gradient\n //\n // Creates the same gradient and the top and bottom and uses the background color for the field.\n .top-and-bottom(@start-color: @gray-lighter; @end-color: #f5f5f5; @start-percent: 0%; @end-percent: 100%) {\n background-color: @end-color;\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent), -webkit-linear-gradient(bottom, @start-color @start-percent, @end-color @end-percent);\n background-image: linear-gradient(top, @start-color @start-percent, @end-color @end-percent), linear-gradient(bottom, @start-color @start-percent, @end-color @end-percent);\n background-image: -moz-linear-gradient(center top , @start-color @start-percent, @end-color @end-percent), -moz-linear-gradient(center bottom , @start-color @start-percent, @end-color @end-percent);\n background-repeat: no-repeat;\n background-position: 0 @start-percent, 0 @end-percent;\n background-size: @end-percent 10px;\n }\n}\n\n\n// COMPONENT MIXINS\n// --------------------------------------------------\n\n// Button variants - Overload Bootstrap's mixin\n// -------------------------\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n.button-variant(@start-color; @end-color; @color: #fff; @border-color: @btn-default-border) {\n border: 1px solid @border-color;\n color: @color;\n #gradient > .vertical(@start-color: @start-color; @end-color: @end-color);\n .reset-filter();\n text-shadow: 0 1px rgba(0, 0, 0, 0.1);\n\n &:hover {\n text-shadow: 0 1px rgba(0, 0, 0, 0.3);\n .box-shadow(0 1px 1px rgba(0, 0, 0, 0.2));\n }\n\n // in these cases the gradient won't cover the background, so we override\n &:hover,\n &:focus,\n &:active,\n &.active,\n .open .dropdown-toggle& {\n color: @color;\n border: 1px solid darken(@border-color, 5%);\n #gradient > .vertical(@start-color: @start-color; @end-color: darken(@end-color, 5%));\n .reset-filter();\n background-color: darken(@end-color, 5%);\n }\n &:active,\n &.active,\n .open .dropdown-toggle& {\n border: 1px solid darken(@border-color, 10%);\n text-shadow: 0 1px rgba(0, 0, 0, 0.3);\n #gradient > .vertical(@start-color: @start-color; @end-color: darken(@end-color, 10%));\n .reset-filter();\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, 0.3));\n }\n &:focus {\n border: 1px solid @border-color;\n .box-shadow(inset 0 0 0 1px #fff);\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &:active,\n &.active {\n border: 1px solid @border-color;\n #gradient > .vertical(@start-color: @start-color; @end-color: @end-color);\n .reset-filter();\n background-color: @start-color;\n .box-shadow(none)\n }\n }\n\n .badge {\n color: @border-color;\n background-color: @color;\n }\n}\n\n// Navbar vertical align - Overload Bootstrap's mixin\n// -------------------------\n// Vertically center elements in the navbar or other bars.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n// Example: an element has a height of 30px and you want to vertically center it in a bar other than the navbar:\n// .navbar-vertical-align(32px; @navbar-toolbar-height);\n.navbar-vertical-align(@element-height; @bar-height: @navbar-height) {\n margin-top: ((@bar-height - @element-height) / 2);\n margin-bottom: ((@bar-height - @element-height) / 2);\n}\n\n\n// Form validation states - Override Bootstrap's mixin\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // // Color the label text\n // .help-block,\n // .control-label,\n // .radio,\n // .checkbox,\n // .radio-inline,\n // .checkbox-inline {\n // color: @text-color;\n // }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n // border-color: @border-color;\n .box-shadow(none);\n &:hover {\n border-color: @border-color;\n .box-shadow(0 1px 2px rgba(0, 0, 0, 0.1) inset);\n }\n &:focus {\n border-color: @border-color;\n .box-shadow(0 1px 2px rgba(0, 0, 0, 0.3) inset);\n }\n }\n // // Set validation states also for addons\n // .input-group-addon {\n // color: @text-color;\n // border-color: @border-color;\n // background-color: @background-color;\n // }\n // // Optional feedback icon\n // .form-control-feedback {\n // color: @text-color;\n // }\n}\n\n// Form control focus state - Override Bootstrap's mixin\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-focus-border` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n\n.form-control-focus(@color: @input-border-focus) {\n &:focus {\n // border-color: @color;\n // outline: 0;\n .box-shadow(inset 0 1px 2px rgba(0,0,0,0.3));\n }\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n // position: relative;\n min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-margin-bottom;\n // border: 1px solid transparent;\n\n // // Prevent floats from breaking the navbar\n // .clearfix();\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n// .navbar-header {\n// // .clearfix();\n\n// @media (min-width: @grid-float-breakpoint) {\n// float: left;\n// }\n// }\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n// .navbar-collapse {\n// max-height: @navbar-collapse-max-height;\n// overflow-x: visible;\n// padding-right: @navbar-padding-horizontal;\n// padding-left: @navbar-padding-horizontal;\n// border-top: 1px solid transparent;\n// box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n// .clearfix();\n// -webkit-overflow-scrolling: touch;\n\n// &.in {\n// overflow-y: auto;\n// }\n\n// @media (min-width: @grid-float-breakpoint) {\n// width: auto;\n// border-top: 0;\n// box-shadow: none;\n\n// &.collapse {\n// display: block !important;\n// height: auto !important;\n// padding-bottom: 0; // Override default setting\n// overflow: visible !important;\n// }\n\n// &.in {\n// overflow-y: visible;\n// }\n\n// // Undo the collapse side padding for navbars with containers to ensure\n// // alignment of right-aligned contents.\n// .navbar-fixed-top &,\n// .navbar-static-top &,\n// .navbar-fixed-bottom & {\n// padding-left: 0;\n// padding-right: 0;\n// }\n// }\n// }\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n// .container,\n// .container-fluid {\n// > .navbar-header,\n// > .navbar-collapse {\n// margin-right: -@navbar-padding-horizontal;\n// margin-left: -@navbar-padding-horizontal;\n\n// @media (min-width: @grid-float-breakpoint) {\n// margin-right: 0;\n// margin-left: 0;\n// }\n// }\n// }\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n// .navbar-static-top {\n// z-index: @zindex-navbar;\n// border-width: 0 0 1px;\n\n// @media (min-width: @grid-float-breakpoint) {\n// border-radius: 0;\n// }\n// }\n\n// Fix the top/bottom navbars when screen real estate supports it\n// .navbar-fixed-top,\n// .navbar-fixed-bottom {\n// position: fixed;\n// right: 0;\n// left: 0;\n// z-index: @zindex-navbar-fixed;\n\n// // Undo the rounded corners\n// @media (min-width: @grid-float-breakpoint) {\n// border-radius: 0;\n// }\n// }\n// .navbar-fixed-top {\n// top: 0;\n// border-width: 0 0 1px;\n// }\n// .navbar-fixed-bottom {\n// bottom: 0;\n// margin-bottom: 0; // override .navbar defaults\n// border-width: 1px 0 0;\n// }\n\n\n// Brand/project name\n\n.navbar-brand {\n // float: left;\n padding: @navbar-padding-vertical @navbar-padding-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n height: @navbar-height;\n\n // &:hover,\n // &:focus {\n // text-decoration: none;\n // }\n\n // Prevent Glyphicons from increasing height of navbar\n > .glyphicon {\n margin-top: 0;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n // position: relative;\n // float: right;\n margin-right: @navbar-padding-horizontal;\n padding: @padding-base-vertical 10px;\n .navbar-vertical-align(@input-height-small);\n // background-color: transparent;\n // background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n // border: 1px solid transparent;\n border-radius: @border-radius-base;\n\n // We remove the `outline` here, but later compensate by attaching `:hover`\n // styles to `:focus`.\n // &:focus {\n // outline: none;\n // }\n\n // Bars\n // .icon-bar {\n // display: block;\n // width: 22px;\n // height: 2px;\n // border-radius: 1px;\n // }\n // .icon-bar + .icon-bar {\n // margin-top: 4px;\n // }\n\n // @media (min-width: @grid-float-breakpoint) {\n // display: none;\n // }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n margin: floor((@navbar-padding-vertical / 2)) -@navbar-padding-horizontal;\n\n > li > a {\n padding-top: @navbar-padding-vertical;\n padding-bottom: @navbar-padding-vertical;\n line-height: @line-height-computed;\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n // position: static;\n // float: none;\n // width: auto;\n // margin-top: 0;\n // background-color: transparent;\n // border: 0;\n // box-shadow: none;\n // > li > a,\n // .dropdown-header {\n // padding: 5px 15px 5px 25px;\n // }\n > li > a {\n line-height: @line-height-computed;\n // &:hover,\n // &:focus {\n // background-image: none;\n // }\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n // float: left;\n margin: 0;\n\n > li {\n // float: left;\n > a {\n padding-top: @navbar-padding-vertical;\n padding-bottom: @navbar-padding-vertical;\n }\n }\n\n &.navbar-right:last-child {\n margin-right: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n\n// @media (min-width: @grid-float-breakpoint) {\n// .navbar-left { .pull-left(); }\n// .navbar-right { .pull-right(); }\n// }\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n margin-left: -@navbar-padding-horizontal;\n margin-right: -@navbar-padding-horizontal;\n padding: 10px @navbar-padding-horizontal;\n // border-top: 1px solid transparent;\n // border-bottom: 1px solid transparent;\n .box-shadow(none);\n\n // Mixin behavior for optimum display\n &:extend(.form-inline all);\n \n > .input-group .form-control {\n .navbar-vertical-align(@input-height-small);\n }\n\n // .form-group {\n // @media (max-width: @grid-float-breakpoint-max) {\n // margin-bottom: 5px;\n // }\n // }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align((@input-height-small + 2));\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n // width: auto;\n // border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n // .box-shadow(none);\n\n // Outdent the form if last child to line up with content down the page\n // &.navbar-right:last-child {\n // margin-right: -@navbar-padding-horizontal;\n // }\n }\n\n .form-control {\n height: @input-height-small;\n padding: @padding-small-vertical @padding-small-horizontal;\n }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n// .navbar-nav > li > .dropdown-menu {\n// margin-top: 0;\n// .border-top-radius(0);\n// }\n// // Menu position and menu caret support for dropups via extra dropup class\n// .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n// .border-bottom-radius(0);\n// }\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn,\n.navbar .btn {\n padding: @padding-small-vertical @padding-small-horizontal;\n .navbar-vertical-align(@input-height-small);\n\n &.btn-sm {\n .navbar-vertical-align(@input-height-small);\n }\n &.btn-xs {\n padding: @padding-xs-vertical @padding-xs-horizontal;\n .navbar-vertical-align(20);\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n .navbar-vertical-align(@line-height-computed);\n\n // @media (min-width: @grid-float-breakpoint) {\n // float: left;\n // margin-left: @navbar-padding-horizontal;\n // margin-right: @navbar-padding-horizontal;\n\n // // Outdent the form if last child to line up with content down the page\n // &.navbar-right:last-child {\n // margin-right: 0;\n // }\n // }\n}\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n background-color: @navbar-default-bg;\n border-color: @navbar-default-border;\n\n .navbar-brand {\n color: @navbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-default-brand-hover-color;\n background-color: @navbar-default-brand-hover-bg;\n }\n > .caret {\n border-top-color: @navbar-default-brand-color;\n border-bottom-color: @navbar-default-brand-color;\n }\n }\n\n .navbar-text {\n color: @navbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: @navbar-default-border;\n }\n\n // Dropdown menu items\n .navbar-nav {\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-default-link-active-bg;\n color: @navbar-default-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n }\n\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n background-color: @navbar-inverse-bg;\n border-color: @navbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-brand-hover-color;\n background-color: @navbar-inverse-brand-hover-bg;\n }\n > .caret {\n border-top-color: @navbar-default-brand-color;\n border-bottom-color: @navbar-default-brand-color;\n }\n }\n\n .navbar-text {\n color: @navbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-inverse-link-active-bg;\n color: @navbar-inverse-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-inverse-border;\n }\n .divider {\n background-color: @navbar-inverse-border;\n }\n > li > a {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n }\n\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n font-weight: bold;\n cursor: default;\n background-clip: border-box;\n .button-size(@padding-base-vertical; (@padding-base-horizontal + 4); @font-size-base; @line-height-computed; @border-radius-base);\n .box-shadow(none);\n\n &:hover {\n .box-shadow(0 1px 1px rgba(0,0,0,0.1));\n }\n\n &:active,\n &.active {\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, 0.1));\n }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n .button-variant(#f5f5f5; #f1f1f1; @btn-default-color; @btn-default-border);\n background-color: @btn-default-bg;\n text-shadow: 0 1px 0 #fff;\n\n &:hover {\n text-shadow: none;\n border-color: #c6c6c6;\n #gradient > .vertical(@start-color: #f8f8f8; @end-color: #f1f1f1);\n background-position: 0 0;\n .box-shadow(0 1px 1px rgba(0,0,0,0.1));\n .transition(none);\n }\n\n &:active,\n &.active,\n .open .dropdown-toggle& {\n border: 1px solid @btn-default-border;\n #gradient > .vertical(@start-color: #f6f6f6; @end-color: #f1f1f1);\n background-color: #e8e8e8;\n text-shadow: 0 1px 0 #fff;\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, 0.1));\n }\n\n &:focus {\n /* Blue border on button focus. */\n border-color: @brand-primary;\n outline-style: none;\n background-color: @btn-default-bg;\n }\n\n // Disabled state\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus,\n &:active {\n background-color: @btn-default-bg;\n text-shadow: none;\n }\n }\n\n .badge {\n color: @btn-default-bg;\n text-shadow: none;\n }\n}\n.btn-primary {\n .button-variant(@brand-primary; #4787ed; @btn-primary-color; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n .button-variant(@brand-success; @brand-success; @btn-success-color; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n .button-variant(@btn-info-bg; @btn-info-bg; @btn-info-color; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n .button-variant(lighten(@brand-warning, 5%); @brand-warning; @btn-warning-color; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n .button-variant(#dd4b39; #d14836; @btn-danger-color; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n color: @link-color;\n\n &,\n &:active,\n &[disabled],\n fieldset[disabled] & {\n background-color: transparent;\n .box-shadow(none);\n }\n &,\n &:hover,\n &:focus,\n &:active {\n border-color: transparent;\n }\n &:hover,\n &:focus {\n color: @link-hover-color;\n background-color: transparent;\n .box-shadow(none);\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @btn-link-disabled-color;\n }\n }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n // line-height: ensure even-numbered height of button next to large input\n .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-base);\n}\n.btn-sm {\n // line-height: ensure proper height of button next to small input\n .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-base);\n}\n.btn-xs {\n .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-mini; @line-height-xs; @border-radius-small);\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n // Space out series of button groups\n > .btn,\n > .btn-group,\n > .input-group {\n margin-left: 16px;\n }\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n .box-shadow(none);\n}\n\n.btn-group {\n > .dropdown-toggle:hover {\n .box-shadow(0 1px 1px rgba(0,0,0,0.1));\n }\n > .btn-primary.dropdown-toggle:hover,\n > .btn-info.dropdown-toggle:hover,\n > .btn-warning.dropdown-toggle:hover,\n > .btn-danger.dropdown-toggle:hover,\n > .btn-success.dropdown-toggle:hover {\n .box-shadow(0 1px 1px rgba(0,0,0,0.2));\n }\n > .btn.dropdown-toggle:active,\n > .btn.dropdown-toggle.active {\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, 0.1));\n }\n > .btn-primary.dropdown-toggle:active,\n > .btn-primary.dropdown-toggle.active,\n > .btn-warning.dropdown-toggle:active,\n > .btn-warning.dropdown-toggle.active,\n > .btn-danger.dropdown-toggle:active,\n > .btn-danger.dropdown-toggle.active,\n > .btn-success.dropdown-toggle:active,\n > .btn-success.dropdown-toggle.active,\n > .btn-info.dropdown-toggle:active,\n > .btn-info.dropdown-toggle.active {\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, 0.3));\n }\n > .btn-sm.dropdown-toggle {\n padding: 5px 7px;\n }\n > .btn-lg.dropdown-toggle {\n padding: 9px 9px;\n }\n}\n\n.btn-group.open {\n\n // TODO - create a dropdown-toggle-variant mixin to clean things up\n\n // The clickable button for toggling the menu\n // Remove the gradient and set the same inset shadow as the :active state\n .dropdown-toggle {\n .box-shadow(inset 0 1px 6px rgba(0, 0, 0, 0.15));\n }\n\n // Keep the hover's background when dropdown is open\n .btn.dropdown-toggle {\n background-color: @btn-default-bg;\n background-image: none;\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, 0.1));\n }\n .btn-primary.dropdown-toggle {\n background-color: @btn-primary-bg;\n background-image: none;\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, 0.3));\n }\n .btn-warning.dropdown-toggle {\n background-color: @btn-warning-bg;\n background-image: none;\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, 0.3));\n }\n .btn-danger.dropdown-toggle {\n background-color: @btn-danger-bg;\n background-image: none;\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, 0.3));\n }\n .btn-success.dropdown-toggle {\n background-color: @btn-success-bg;\n background-image: none;\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, 0.3));\n }\n .btn-info.dropdown-toggle {\n background-color: @btn-info-bg;\n background-image: none;\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, 0.3));\n }\n}\n\n\n// Carets in other button sizes\n.btn-lg .caret {\n border-width: @caret-width-large @caret-width-large 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical > .btn {\n &:first-child:not(:last-child) {\n border-top-right-radius: @border-radius-base;\n }\n &:last-child:not(:first-child) {\n border-bottom-left-radius: @border-radius-base;\n }\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn { .input-lg(); }\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn { .input-sm(); }\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n margin: 0;\n border-radius: 0;\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n color: @input-color;\n border: 1px solid @input-group-addon-border-color;\n border-top-color: darken(@input-border, 10%);\n border-radius: @border-radius-base;\n\n // Sizing\n &.input-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n border-radius: @border-radius-small;\n }\n &.input-lg {\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n border-radius: @border-radius-large;\n }\n\n // Nuke default margins from checkboxes and radios to vertically center within.\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin-bottom: -3px;\n }\n}\n\n// Reset rounded corners\n\n// Button input groups\n// -------------------------\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n > li {\n\n // Disabled state sets text to gray and nukes hover/tab effects\n &.disabled > a {\n color: @nav-disabled-link-color;\n\n &:hover,\n &:focus {\n color: @nav-disabled-link-hover-color;\n }\n }\n }\n\n // Open dropdowns\n .open > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n background-color: @nav-open-bg;\n border-color: @nav-open-bg;\n }\n }\n}\n\n\n// Tabs\n// -------------------------\n\n.nav-tabs {\n > li {\n\n // Actual tabs (as links)\n > a {\n border-radius: @border-radius-base @border-radius-base 0 0;\n color: @nav-tabs-link-color;\n &:hover {\n border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n }\n }\n\n // Active state, and its :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n font-weight: bold;\n color: @nav-tabs-active-link-hover-color;\n }\n }\n }\n}\n\n\n// Google Tabs\n// -------------------------\n.nav-tabs-google {\n > li {\n margin: 0 -1px 0 0;\n\n // Actual tabs (as links)\n > a {\n padding: @nav-tabs-google-link-padding-vertical @nav-tabs-google-link-padding-horizontal;\n line-height: @line-height-base;\n color: @nav-tabs-google-link-color;\n border: 3px solid transparent;\n border-width: 3px 0;\n border-radius: 0;\n margin: @nav-tabs-google-link-margin-vertical @nav-tabs-google-link-margin-horizontal;\n &:first-of-type {\n margin-left: 0;\n }\n &:hover,\n &:focus {\n background-color: transparent;\n border-top-color: transparent;\n }\n &:hover {\n color: @nav-tabs-google-link-hover-color;\n border-bottom-color: transparent;\n }\n &:active {\n color: @nav-tabs-google-link-active-color;\n }\n &:focus {\n color: @nav-tabs-google-link-focus-color;\n outline: 0;\n }\n }\n\n // Active state, and it's :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n border: 3px solid transparent;\n border-width: 3px 0;\n color: @nav-tabs-google-link-active-color;\n border-bottom-color: @nav-tabs-google-link-selected-border-color;\n }\n }\n }\n}\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n\n // Links rendered as pills\n > a {\n border-radius: @nav-pills-border-radius;\n }\n\n // Active state\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-pills-active-link-hover-color;\n background-color: @nav-pills-active-link-hover-bg;\n }\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n\n// Dropdowns\n// -------------------------\n","//\n// Masthead\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static masthead from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar-masthead {\n // position: relative;\n min-height: @navbar-masthead-height; // Ensure a masthead always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-masthead-margin-bottom;\n // border: 1px solid transparent;\n\n // // Prevent floats from breaking the navbar\n // .clearfix();\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-masthead-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n// .navbar-header {\n// .clearfix();\n\n// @media (min-width: @grid-float-breakpoint) {\n// float: left;\n// }\n// }\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n// .navbar-masthead .navbar-collapse {\n// max-height: 340px;\n// overflow-x: visible;\n// padding-right: @navbar-masthead-padding-horizontal;\n// padding-left: @navbar-masthead-padding-horizontal;\n// border-top: 1px solid transparent;\n// box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n// .clearfix();\n// -webkit-overflow-scrolling: touch;\n\n// &.in {\n// overflow-y: auto;\n// }\n\n// @media (min-width: @grid-float-breakpoint) {\n// width: auto;\n// border-top: 0;\n// box-shadow: none;\n\n// &.collapse {\n// display: block !important;\n// height: auto !important;\n// padding-bottom: 0; // Override default setting\n// overflow: visible !important;\n// }\n\n// &.in {\n// overflow-y: auto;\n// }\n\n// // Undo the collapse side padding for navbars with containers to ensure\n// // alignment of right-aligned contents.\n// .navbar-fixed-top &,\n// .navbar-static-top &,\n// .navbar-fixed-bottom & {\n// padding-left: 0;\n// padding-right: 0;\n// }\n// }\n// }\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n// .navbar-masthead > .container,\n// .navbar-masthead > .container-fluid {\n// > .navbar-header,\n// > .navbar-collapse {\n// margin-right: -@navbar-masthead-padding-horizontal;\n// margin-left: -@navbar-masthead-padding-horizontal;\n\n// @media (min-width: @grid-float-breakpoint) {\n// margin-right: 0;\n// margin-left: 0;\n// }\n// }\n// }\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirity of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-masthead .navbar-static-top {\n z-index: @zindex-masthead;\n // border-width: 0 0 1px;\n\n // @media (min-width: @grid-float-breakpoint) {\n // border-radius: 0;\n // }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-masthead .navbar-fixed-top,\n.navbar-masthead .navbar-fixed-bottom {\n // position: fixed;\n // right: 0;\n // left: 0;\n z-index: @zindex-masthead-fixed;\n\n // // Undo the rounded corners\n // @media (min-width: @grid-float-breakpoint) {\n // border-radius: 0;\n // }\n}\n// .navbar-masthead .navbar-fixed-top {\n// top: 0;\n// border-width: 0 0 1px;\n// }\n// .navbar-masthead .navbar-fixed-bottom {\n// bottom: 0;\n// margin-bottom: 0; // override .navbar defaults\n// border-width: 1px 0 0;\n// }\n\n\n// Brand/project name\n\n.navbar-masthead .navbar-brand {\n // float: left;\n padding: @navbar-masthead-padding-vertical @navbar-masthead-padding-horizontal;\n font-size: @navbar-masthead-brand-font-size;\n // line-height: @line-height-computed;\n height: @navbar-masthead-height;\n //\n // &:hover,\n // &:focus {\n // text-decoration: none;\n // }\n\n // Prevent Glyphicons from increasing height of navbar\n > .glyphicon {\n margin-top: -3px;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-masthead-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-masthead .navbar-toggle {\n // position: relative;\n // float: right;\n margin-right: @navbar-masthead-padding-horizontal;\n // padding: @padding-base-vertical 10px;\n .navbar-vertical-align(@input-height-base, @navbar-masthead-height);\n // background-color: transparent;\n // background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n // border: 1px solid transparent;\n // border-radius: @border-radius-base;\n\n // // Bars\n // .icon-bar {\n // display: block;\n // width: 22px;\n // height: 2px;\n // border-radius: 1px;\n // }\n // .icon-bar + .icon-bar {\n // margin-top: 4px;\n // }\n\n // @media (min-width: @grid-float-breakpoint) {\n // display: none;\n // }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-masthead .navbar-nav {\n margin: floor((@navbar-masthead-padding-vertical / 2)) -@navbar-masthead-padding-horizontal;\n\n // > li > a {\n // padding-top: 10px;\n // padding-bottom: 10px;\n // line-height: @line-height-computed;\n // }\n\n // @media (max-width: @grid-float-breakpoint-max) {\n // // Dropdowns get custom display when collapsed\n // .open .dropdown-menu {\n // position: static;\n // float: none;\n // width: auto;\n // margin-top: 0;\n // background-color: transparent;\n // border: 0;\n // box-shadow: none;\n // > li > a,\n // .dropdown-header {\n // padding: 5px 15px 5px 25px;\n // }\n // > li > a {\n // line-height: @line-height-computed;\n // &:hover,\n // &:focus {\n // background-image: none;\n // }\n // }\n // }\n // }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n // float: left;\n margin: floor((@navbar-masthead-padding-vertical / 2)) 0;\n\n > li {\n // float: left;\n > a {\n padding-top: (floor(@navbar-masthead-padding-vertical / 2) + 2);\n padding-bottom: floor((@navbar-masthead-padding-vertical / 2));\n }\n }\n\n &.navbar-right:last-child {\n margin-right: -@navbar-masthead-padding-horizontal;\n }\n }\n}\n\n\n// Component alignment\n//\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-masthead .navbar-form {\n margin-left: -@navbar-masthead-padding-horizontal;\n margin-right: -@navbar-masthead-padding-horizontal;\n padding: 10px @navbar-masthead-padding-horizontal;\n \n > .input-group .form-control {\n .navbar-vertical-align(@input-height-base, @navbar-masthead-height);\n }\n\n .form-group {\n @media (max-width: @grid-float-breakpoint-max) {\n margin-bottom: 5px;\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@navbar-masthead-height, @navbar-masthead-height);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n\n // Outdent the form if last child to line up with content down the page\n &.navbar-right:last-child {\n margin-right: -@navbar-masthead-padding-horizontal;\n }\n }\n\n .form-control {\n height: @input-height-base;\n padding: @padding-base-vertical @padding-base-horizontal;\n }\n}\n\n\n// Dropdown menus\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-masthead {\n &.navbar-btn,\n &.navbar .btn {\n padding: @padding-base-vertical @padding-base-horizontal;\n .navbar-vertical-align(@input-height-base, @navbar-masthead-height);\n\n &.btn-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n .navbar-vertical-align(@input-height-small, @navbar-masthead-height);\n }\n &.btn-xs {\n padding: @padding-xs-vertical @padding-xs-horizontal;\n .navbar-vertical-align(20, @navbar-masthead-height);\n }\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-masthead .navbar-text {\n .navbar-vertical-align(@line-height-computed, @navbar-masthead-height);\n\n // @media (min-width: @grid-float-breakpoint) {\n // float: left;\n // margin-left: @navbar-masthead-padding-horizontal;\n // margin-right: @navbar-masthead-padding-horizontal;\n\n // // Outdent the form if last child to line up with content down the page\n // &.navbar-right:last-child {\n // margin-right: 0;\n // }\n // }\n}\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-masthead.navbar-default {\n background-color: @navbar-masthead-default-bg;\n border-color: @navbar-masthead-default-border;\n\n .navbar-brand {\n color: @navbar-masthead-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-masthead-default-brand-hover-color;\n background-color: @navbar-masthead-default-brand-hover-bg;\n }\n > .caret {\n border-top-color: @navbar-masthead-default-brand-color;\n border-bottom-color: @navbar-masthead-default-brand-color;\n }\n }\n\n .navbar-text {\n color: @navbar-masthead-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-masthead-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-masthead-default-link-hover-color;\n background-color: @navbar-masthead-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-masthead-default-link-active-color;\n background-color: @navbar-masthead-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-masthead-default-link-disabled-color;\n background-color: @navbar-masthead-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-masthead-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-masthead-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-masthead-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-masthead-default-bg, 7%);\n }\n\n // Dropdown menu items\n .navbar-nav {\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-masthead-default-link-active-bg;\n color: @navbar-masthead-default-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-masthead-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-masthead-default-link-hover-color;\n background-color: @navbar-masthead-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-masthead-default-link-active-color;\n background-color: @navbar-masthead-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-masthead-default-link-disabled-color;\n background-color: @navbar-masthead-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-masthead-default-link-color;\n &:hover {\n color: @navbar-masthead-default-link-hover-color;\n }\n }\n\n}\n\n// Inverse navbar\n\n.navbar-masthead.navbar-inverse {\n background-color: @navbar-masthead-inverse-bg;\n border-color: @navbar-masthead-inverse-border;\n\n .navbar-brand {\n color: @navbar-masthead-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-masthead-inverse-brand-hover-color;\n background-color: @navbar-masthead-inverse-brand-hover-bg;\n }\n > .caret {\n border-top-color: @navbar-masthead-inverse-brand-color;\n border-bottom-color: @navbar-masthead-inverse-brand-color;\n }\n }\n\n .navbar-text {\n color: @navbar-masthead-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-masthead-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-masthead-inverse-link-hover-color;\n background-color: @navbar-masthead-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-masthead-inverse-link-active-color;\n background-color: @navbar-masthead-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-masthead-inverse-link-disabled-color;\n background-color: @navbar-masthead-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-masthead-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-masthead-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-masthead-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-masthead-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-masthead-inverse-link-active-bg;\n color: @navbar-masthead-inverse-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-masthead-inverse-border;\n }\n .divider {\n background-color: @navbar-masthead-inverse-border;\n }\n > li > a {\n color: @navbar-masthead-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-masthead-inverse-link-hover-color;\n background-color: @navbar-masthead-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-masthead-inverse-link-active-color;\n background-color: @navbar-masthead-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-masthead-inverse-link-disabled-color;\n background-color: @navbar-masthead-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-masthead-inverse-link-color;\n &:hover {\n color: @navbar-masthead-inverse-link-hover-color;\n }\n }\n\n}\n","//\n// Toolbar\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static toolbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar-toolbar {\n // position: relative;\n min-height: @navbar-toolbar-height; // Ensure a toolbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-toolbar-margin-bottom;\n // border: 1px solid transparent;\n\n // // Prevent floats from breaking the navbar\n // .clearfix();\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-toolbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n// .navbar-header {\n// .clearfix();\n\n// @media (min-width: @grid-float-breakpoint) {\n// float: left;\n// }\n// }\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n// .navbar-toolbar .navbar-collapse {\n// max-height: 340px;\n// overflow-x: visible;\n// padding-right: @navbar-toolbar-padding-horizontal;\n// padding-left: @navbar-toolbar-padding-horizontal;\n// border-top: 1px solid transparent;\n// box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n// .clearfix();\n// -webkit-overflow-scrolling: touch;\n\n// &.in {\n// overflow-y: auto;\n// }\n\n// @media (min-width: @grid-float-breakpoint) {\n// width: auto;\n// border-top: 0;\n// box-shadow: none;\n\n// &.collapse {\n// display: block !important;\n// height: auto !important;\n// padding-bottom: 0; // Override default setting\n// overflow: visible !important;\n// }\n\n// &.in {\n// overflow-y: auto;\n// }\n\n// // Undo the collapse side padding for navbars with containers to ensure\n// // alignment of right-aligned contents.\n// .navbar-fixed-top &,\n// .navbar-static-top &,\n// .navbar-fixed-bottom & {\n// padding-left: 0;\n// padding-right: 0;\n// }\n// }\n// }\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n// .navbar-toolbar > .container,\n// .navbar-toolbar > .container-fluid {\n// > .navbar-header,\n// > .navbar-collapse {\n// margin-right: -@navbar-toolbar-padding-horizontal;\n// margin-left: -@navbar-toolbar-padding-horizontal;\n\n// @media (min-width: @grid-float-breakpoint) {\n// margin-right: 0;\n// margin-left: 0;\n// }\n// }\n// }\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirity of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-toolbar .navbar-static-top {\n z-index: @zindex-toolbar;\n // border-width: 0 0 1px;\n\n // @media (min-width: @grid-float-breakpoint) {\n // border-radius: 0;\n // }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-toolbar .navbar-fixed-top,\n.navbar-toolbar .navbar-fixed-bottom {\n // position: fixed;\n // right: 0;\n // left: 0;\n z-index: @zindex-toolbar-fixed;\n\n // // Undo the rounded corners\n // @media (min-width: @grid-float-breakpoint) {\n // border-radius: 0;\n // }\n}\n// .navbar-toolbar .navbar-fixed-top {\n// top: 0;\n// border-width: 0 0 1px;\n// }\n// .navbar-toolbar .navbar-fixed-bottom {\n// bottom: 0;\n// margin-bottom: 0; // override .navbar defaults\n// border-width: 1px 0 0;\n// }\n\n\n// Brand/project name\n\n.navbar-toolbar .navbar-brand {\n // float: left;\n padding: @navbar-toolbar-padding-vertical @navbar-toolbar-padding-horizontal;\n font-size: @navbar-toolbar-brand-font-size;\n font-weight: bold;\n // line-height: @line-height-computed;\n height: @navbar-toolbar-height;\n //\n // &:hover,\n // &:focus {\n // text-decoration: none;\n // }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-toolbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toolbar .navbar-toggle {\n // position: relative;\n // float: right;\n margin-right: @navbar-toolbar-padding-horizontal;\n // padding: @padding-base-vertical 10px;\n .navbar-vertical-align(@input-height-base, @navbar-toolbar-height);\n // background-color: transparent;\n // background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n // border: 1px solid transparent;\n // border-radius: @border-radius-base;\n\n // // Bars\n // .icon-bar {\n // display: block;\n // width: 22px;\n // height: 2px;\n // border-radius: 1px;\n // }\n // .icon-bar + .icon-bar {\n // margin-top: 4px;\n // }\n\n // @media (min-width: @grid-float-breakpoint) {\n // display: none;\n // }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-toolbar .navbar-nav {\n margin: floor((@navbar-toolbar-padding-vertical / 2)) -@navbar-toolbar-padding-horizontal;\n\n > li {\n position: relative;\n > a {\n padding: @navbar-toolbar-padding-vertical @navbar-padding-horizontal;\n // padding-top: 10px;\n // padding-bottom: 10px;\n // line-height: @line-height-computed;\n &:hover,\n &:focus {\n text-decoration: underline;\n }\n }\n > .dropdown-menu {\n margin-top: 1px;\n }\n }\n > .active > a {\n font-weight: bold;\n &:before {\n position: absolute;\n bottom: -1px;\n left: 50%;\n display: inline-block;\n margin-left: -8px; /* value should match border-width below */\n border-right: 8px solid transparent;\n border-bottom: 8px solid transparent;\n border-left: 8px solid transparent;\n content: '';\n }\n &:after {\n position: absolute;\n bottom: -1px;\n left: 50%;\n display: inline-block;\n margin-left: -7px; /* value should match border-width below */\n border-right: 7px solid transparent;\n border-bottom: 7px solid transparent;\n border-left: 7px solid transparent;\n content: '';\n }\n }\n\n // @media (max-width: @grid-float-breakpoint-max) {\n // // Dropdowns get custom display when collapsed\n // .open .dropdown-menu {\n // position: static;\n // float: none;\n // width: auto;\n // margin-top: 0;\n // background-color: transparent;\n // border: 0;\n // box-shadow: none;\n // > li > a,\n // .dropdown-header {\n // padding: 5px 15px 5px 25px;\n // }\n // > li > a {\n // line-height: @line-height-computed;\n // &:hover,\n // &:focus {\n // background-image: none;\n // }\n // }\n // }\n // }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n // float: left;\n margin: 0;\n\n > li {\n // float: left;\n > a {\n padding-top: @navbar-toolbar-padding-vertical;\n padding-bottom: @navbar-toolbar-padding-vertical;\n }\n }\n\n &.navbar-right:last-child {\n margin-right: -@navbar-toolbar-padding-horizontal;\n }\n }\n}\n\n\n// Component alignment\n//\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-toolbar .navbar-form {\n margin-left: -@navbar-toolbar-padding-horizontal;\n margin-right: -@navbar-toolbar-padding-horizontal;\n padding: 10px @navbar-toolbar-padding-horizontal;\n \n > .input-group .form-control {\n .navbar-vertical-align(@input-height-base, @navbar-toolbar-height);\n }\n\n .form-group {\n @media (max-width: @grid-float-breakpoint-max) {\n margin-bottom: 5px;\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@navbar-toolbar-height, @navbar-toolbar-height);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n\n // Outdent the form if last child to line up with content down the page\n &.navbar-right:last-child {\n margin-right: -@navbar-toolbar-padding-horizontal;\n }\n }\n\n .form-control {\n height: @input-height-base;\n padding: @padding-base-vertical @padding-base-horizontal;\n }\n}\n\n\n// Dropdown menus\n.navbar-toolbar .dropdown-menu {\n border-top: 1px none;\n}\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-toolbar {\n &.navbar-btn,\n &.navbar .btn {\n padding: @padding-base-vertical @padding-base-horizontal;\n .navbar-vertical-align(@input-height-base, @navbar-toolbar-height);\n\n &.btn-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n .navbar-vertical-align(@input-height-small, @navbar-toolbar-height);\n }\n &.btn-xs {\n padding: @padding-xs-vertical @padding-xs-horizontal;\n .navbar-vertical-align(20, @navbar-toolbar-height);\n }\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-toolbar .navbar-text {\n .navbar-vertical-align(@line-height-computed, @navbar-toolbar-height);\n\n // @media (min-width: @grid-float-breakpoint) {\n // float: left;\n // margin-left: @navbar-toolbar-padding-horizontal;\n // margin-right: @navbar-toolbar-padding-horizontal;\n\n // // Outdent the form if last child to line up with content down the page\n // &.navbar-right:last-child {\n // margin-right: 0;\n // }\n // }\n}\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-toolbar.navbar-default {\n background-color: @navbar-toolbar-default-bg;\n border-color: @navbar-toolbar-default-border;\n\n .navbar-brand {\n color: @navbar-toolbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-toolbar-default-brand-hover-color;\n background-color: @navbar-toolbar-default-brand-hover-bg;\n }\n > .caret {\n border-top-color: @navbar-toolbar-default-brand-color;\n border-bottom-color: @navbar-toolbar-default-brand-color;\n }\n }\n\n .navbar-text {\n color: @navbar-toolbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-toolbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-toolbar-default-link-hover-color;\n background-color: @navbar-toolbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-toolbar-default-link-active-color;\n background-color: @navbar-toolbar-default-link-active-bg;\n }\n &:before {\n border-bottom: 8px solid @navbar-toolbar-default-border;\n }\n &:after {\n border-bottom: 7px solid @dropdown-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-toolbar-default-link-disabled-color;\n background-color: @navbar-toolbar-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-toolbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-toolbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-toolbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-toolbar-default-bg, 7%);\n }\n\n // Dropdown menu items\n .navbar-nav {\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-toolbar-default-link-active-bg;\n color: @navbar-toolbar-default-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-toolbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-toolbar-default-link-hover-color;\n background-color: @navbar-toolbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-toolbar-default-link-active-color;\n background-color: @navbar-toolbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-toolbar-default-link-disabled-color;\n background-color: @navbar-toolbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-toolbar-default-link-color;\n &:hover {\n color: @navbar-toolbar-default-link-hover-color;\n }\n }\n\n}\n\n// Inverse navbar\n\n.navbar-toolbar.navbar-inverse {\n background-color: @navbar-toolbar-inverse-bg;\n border-color: @navbar-toolbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-toolbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-toolbar-inverse-brand-hover-color;\n background-color: @navbar-toolbar-inverse-brand-hover-bg;\n }\n > .caret {\n border-top-color: @navbar-toolbar-inverse-brand-color;\n border-bottom-color: @navbar-toolbar-inverse-brand-color;\n }\n }\n\n .navbar-text {\n color: @navbar-toolbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-toolbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-toolbar-inverse-link-hover-color;\n background-color: @navbar-toolbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-toolbar-inverse-link-active-color;\n background-color: @navbar-toolbar-inverse-link-active-bg;\n }\n &:before {\n border-bottom: 8px solid @navbar-toolbar-inverse-border;\n }\n &:after {\n border-bottom: 7px solid @dropdown-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-toolbar-inverse-link-disabled-color;\n background-color: @navbar-toolbar-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-toolbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-toolbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-toolbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-toolbar-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-toolbar-inverse-link-active-bg;\n color: @navbar-toolbar-inverse-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-toolbar-inverse-border;\n }\n .divider {\n background-color: @navbar-toolbar-inverse-border;\n }\n > li > a {\n color: @navbar-toolbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-toolbar-inverse-link-hover-color;\n background-color: @navbar-toolbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-toolbar-inverse-link-active-color;\n background-color: @navbar-toolbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-toolbar-inverse-link-disabled-color;\n background-color: @navbar-toolbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-toolbar-inverse-link-color;\n &:hover {\n color: @navbar-toolbar-inverse-link-hover-color;\n }\n }\n\n}\n","//\n// Navbar common classes\n// --------------------------------------------------\n\n\n//\n// Navbar alignment options - Shared\n// --------------------------------------------------\n\n// Static navbar\n.navbar-static-top {\n border-radius: 0;\n}\n\n// Shared (top/bottom) styles\n.navbar-fixed-top,\n.navbar-static-top {\n border-width: 1px 0;\n}\n.navbar-fixed-bottom {\n border-width: 1px 0;\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n border-radius: 0;\n}\n// Fixed navbars aren't fixed to start; that comes at >768px\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n.navbar-fixed-top {\n top: 0;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0; // override .navbar defaults\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n padding: @padding-small-vertical @padding-small-horizontal;\n margin-top: (floor((@navbar-height - @input-height-small) / 2));\n}\n.btn.navbar-masthead-btn {\n margin-top: ((@navbar-masthead-height - @input-height-base) / 2);\n}\n.btn.navbar-toolbar-btn {\n margin-top: ((@navbar-toolbar-height - @input-height-base) / 2);\n}\n\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n\n}\n\n\n\n// Links in navbars\n//\n// Add a class to ensure links outside the navbar nav are colored correctly.\n\n// Default navbar variables\n.navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n}\n\n// Use the inverse navbar variables\n.navbar-inverse .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n}\n\n\n// Forms in navbars\n.navbar-form {\n .radio-inline,\n .checkbox-inline {\n color: @navbar-default-color;\n }\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n margin-bottom: @line-height-computed;\n background-color: @breadcrumb-bg;\n border-radius: @border-radius-base;\n\n > li {\n + li {\n .chevron(right, 5px, @breadcrumb-bg, 9px, 1px, #777);\n margin-left: 20px;\n }\n + li:before,\n + li:after {\n left: -16px;\n }\n + li:before {\n content: \"\";\n color: @breadcrumb-color;\n }\n > a {\n color: @breadcrumb-color;\n &:hover {\n color: @breadcrumb-active-color;\n }\n }\n }\n\n > .active,\n > .active > a {\n color: @breadcrumb-active-color;\n }\n}\n\n.breadcrumb-inverse {\n background-color: @breadcrumb-inverse-bg;\n\n > li {\n + li {\n .chevron(right, 5px, @breadcrumb-inverse-bg, 9px, 1px, #666);\n }\n + li:before,\n + li:after {\n left: -16px;\n }\n > a {\n color: @breadcrumb-inverse-color;\n &:hover {\n color: @breadcrumb-inverse-active-color;\n }\n }\n }\n\n > .active,\n > .active > a {\n color: @breadcrumb-inverse-active-color;\n }\n}\n\n.breadcrumb-sm {\n padding: @breadcrumb-small-padding-vertical @breadcrumb-small-padding-horizontal;\n background-color: @breadcrumb-small-bg;\n border-bottom: 1px solid @breadcrumb-small-border;\n\n &.breadcrumb-inverse {\n background-color: @breadcrumb-inverse-bg;\n }\n}\n","// Arrow\n// -------------------------\n// Based off of: https://github.com/HugoGiraudel/LESS-Mixin-for-CSS-arrows\n//\n// Create CSS arrows that can optionally have a border\n//\n// Example usage: .arrow(direction, size, color, offset, border-size, border-color);\n//\n// - direction: up, right, down, or left\n// - size: the width of the arrow\n// - color: the color of the arrow (plain color required)\n// - offset: the position of the arrow on its axis (px / em)\n// - border-size: the width of the border if there is one (optional; default \"0\")\n// - border-color: the color of the border if there is one (optional; default \"inherit\");\n//\n// Extra\n// Drop-shadows can be used on the element to create a shadow on the arrow as well\n\n.arrow(@_; @size; @color; @offset; @border-size: 0; @border-color: inherit) {\n @total-size: (@size + (@border-size * 2));\n\n position: relative;\n display: inline-block;\n\n &:before,\n &:after {\n content: \"\";\n position: absolute;\n width: 0;\n height: 0;\n }\n &:before {\n border: @total-size solid transparent;\n }\n &:after {\n border: @size solid transparent;\n }\n}\n\n.arrow(up; @size; @color; @offset; @border-size: 0; @border-color: inherit) {\n @total-size: (@size + (@border-size * 2));\n\n &:before,\n &:after {\n bottom: 50%;\n left: @offset;\n }\n &:before {\n margin-left: -@total-size;\n border-bottom: @total-size solid;\n border-bottom-color: @border-color;\n }\n &:after {\n margin-left: -@size;\n border-bottom: @size solid @color;\n }\n}\n\n.arrow(right; @size; @color; @offset; @border-size: 0; @border-color: inherit) {\n @total-size: (@size + (@border-size * 2));\n\n &:before,\n &:after {\n left: 100%;\n top: @offset;\n }\n &:before {\n margin-top: -@total-size;\n border-left: @total-size solid;\n border-left-color: @border-color;\n }\n &:after {\n margin-top: -@size;\n border-left: @size solid @color;\n }\n}\n\n.arrow(down; @size; @color; @offset; @border-size: 0; @border-color: inherit) {\n @total-size: (@size + (@border-size * 2));\n\n &:before,\n &:after {\n top: 50%;\n left: @offset;\n }\n &:before {\n margin-left: -@total-size;\n border-top: @total-size solid;\n border-top-color: @border-color;\n }\n &:after {\n margin-left: -@size;\n border-top: @size solid @color;\n }\n}\n\n.arrow(left; @size; @color; @offset; @border-size: 0; @border-color: inherit) {\n @total-size: (@size + (@border-size * 2));\n\n &:before,\n &:after {\n right: 100%;\n top: @offset;\n }\n &:before {\n margin-top: -@total-size;\n border-right: @total-size solid;\n border-right-color: @border-color;\n }\n &:after {\n margin-top: -@size;\n border-right: @size solid @color;\n }\n}\n\n// Chevron\n// -------------------------\n// Emulate Google chevrons without using images or a font\n// Adds a border-radius to an arrow\n//\n// Example usage: .chevron(direction, size, color, offset, border-size, border-color);\n\n.chevron(@_; @size; @color: #fff; @offset; @border-size: 0; @border-color: inherit) {\n @total-size: (@size + (@border-size * 2));\n &:before {\n border-radius: (@total-size - 2px);\n }\n}\n\n.chevron(up; @size; @color: #fff; @offset; @border-size: 0; @border-color: inherit) {\n .arrow(up, @size, @color, @offset, @border-size, @border-color);\n}\n\n.chevron(right; @size; @color: #fff; @offset; @border-size: 0; @border-color: inherit) {\n .arrow(right, @size, @color, @offset, @border-size, @border-color);\n}\n\n.chevron(down; @size; @color: #fff; @offset; @border-size: 0; @border-color: inherit) {\n .arrow(down, @size, @color, @offset, @border-size, @border-color);\n}\n\n.chevron(left; @size; @color: #fff; @offset; @border-size: 0; @border-color: inherit) {\n .arrow(left, @size, @color, @offset, @border-size, @border-color);\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n margin: @line-height-computed 0;\n border-radius: @border-radius-base;\n\n > li {\n > a,\n > span {\n color: @pagination-color;\n padding: @pagination-padding-vertical @pagination-padding-horizontal;\n line-height: @line-height-base;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-left-radius(@border-radius-base);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius-base);\n }\n }\n }\n\n > li > a,\n > li > span {\n &:hover,\n &:focus {\n z-index: 2;\n color: @pagination-color;\n background-color: @pagination-hover-bg;\n border-color: @pagination-hover-border;\n\n .box-shadow(0 1px 1px rgba(0,0,0,0.1));\n }\n }\n > li > a:active {\n #gradient > .vertical(@start-color: #f6f6f6; @end-color: #f1f1f1);\n .reset-filter();\n background-color: #f4f4f4;\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, 0.1));\n }\n\n > .active > a,\n > .active > span {\n &,\n &:hover,\n &:focus {\n color: @pagination-active-color;\n background-color: @pagination-active-bg;\n border-color: @pagination-active-border;\n .box-shadow(none);\n }\n }\n\n > .disabled {\n > span,\n > span:hover,\n > span:focus,\n > a,\n > a:hover,\n > a:focus {\n color: @pagination-disabled-color;\n border-color: @pagination-disabled-border;\n\n #gradient > .vertical(@start-color: #f5f5f5; @end-color: #f1f1f1);\n .reset-filter();\n background-color: @pagination-disabled-bg;\n\n .box-shadow(none);\n text-shadow: none;\n }\n }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @border-radius-small);\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n.pager {\n margin: @line-height-computed 0;\n li {\n > a,\n > span {\n padding: 11px 24px;\n overflow: visible;\n font-size: @font-size-large;\n // font-weight: normal;\n color: @pager-color;\n text-decoration: none;\n white-space: nowrap;\n cursor: default;\n background-color: @pager-bg;\n border: 1px solid #5b5b5b; //old browsers fallback (ie8 etc)\n border: 1px solid rgba(0, 0, 0, 0.1);\n border-radius: @pager-border-radius;\n outline: none;\n @shadow: 0 2px 1px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.1);\n .box-shadow(@shadow);\n .reset-filter();\n }\n\n > a:hover,\n > a:focus {\n color: @pager-hover-color;\n background-color: @pager-hover-bg;\n }\n\n > a:active {\n color: @pager-active-color;\n background-color: @pager-active-bg;\n }\n\n .icon-prev {\n .chevron(left, 4px, @pager-bg, -5px, 1.5px);\n padding-right: 8px;\n }\n .icon-next {\n .chevron(right, 4px, @pager-bg, -5px, 1.5px);\n padding-left: 8px;\n }\n }\n\n .disabled {\n > a,\n > a:hover,\n > a:focus,\n > span {\n .box-shadow(none);\n color: @pager-disabled-color;\n background-color: @pager-disabled-bg;\n border-color: @pager-disabled-border;\n .reset-filter();\n }\n\n .icon-prev {\n .chevron(left, 4px, @pager-disabled-bg, -5px, 1.5px, @pager-disabled-color);\n padding-right: 8px;\n }\n .icon-next {\n .chevron(right, 4px, @pager-disabled-bg, -5px, 1.5px, @pager-disabled-color);\n padding-left: 8px;\n }\n }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n\n// Base classes\n.label {\n font-size: 80%;\n border-radius: 0;\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n .label-variant(@label-default-bg);\n}\n\n.label-primary {\n .label-variant(@label-primary-bg);\n}\n\n.label-success {\n .label-variant(@label-success-bg);\n}\n\n.label-info {\n .label-variant(@label-info-bg);\n}\n\n.label-warning {\n .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n .label-variant(@label-danger-bg);\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base classes\n.badge {\n font-size: @font-size-small;\n}\n\n// Account for counters in navs\na.list-group-item.active > .badge,\nli.list-group-item.active a > .badge {\n color: @badge-color;\n background-color: @list-group-active-color;\n}\n.nav-pills > .active > a > .badge {\n color: @link-color;\n background-color: @badge-active-bg;\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n color: @jumbotron-color;\n background-color: @jumbotron-bg;\n\n h1,\n .h1 {\n color: @jumbotron-heading-color;\n }\n p {\n font-size: @jumbotron-font-size;\n }\n\n .container & {\n border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n }\n\n @media screen and (min-width: @screen-sm-min) {\n h1,\n .h1 {\n font-size: (@font-size-base * 4.5);\n }\n }\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n display: block;\n padding: @thumbnail-padding;\n margin-bottom: @line-height-computed;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n\n // Add a hover state for linked versions only\n a&:hover,\n a&:focus,\n a&.active {\n border-color: @thumbnail-border;\n .box-shadow(0 0 0 1px #dedede);\n }\n\n // Image captions\n .caption {\n padding: @thumbnail-caption-padding;\n color: @thumbnail-caption-color;\n }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n// for alert-default\n// text-shadow: none;\n// .box-shadow(0 2px 4px rgba(0,0,0,0.2));\n\n\n.alert {\n padding: @alert-padding;\n margin-bottom: @line-height-computed;\n border-radius: @alert-border-radius;\n\n // Provide class for links that match alerts\n .alert-link {\n font-weight: @alert-link-font-weight;\n }\n}\n\n// Dismissable alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable {\n padding-right: (@alert-padding + 20);\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n.alert-info {\n .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n.alert-warning {\n .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n.alert-danger {\n .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n\n\n.alert-success,\n.alert-info,\n.alert-warning,\n.alert-danger {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n border: 1px solid #999;\n padding: 1px;\n height: 14px;\n font-size: @font-size-small;\n height: @line-height-computed;\n margin-bottom: @line-height-computed;\n background-color: transparent;\n background-image: none;\n border-radius: 0;\n .box-shadow(none);\n}\n\n// Bar of progress\n.progress-bar {\n line-height: @line-height-computed;\n background-color: @progress-bar-bg;\n background-image: none;\n .box-shadow(none);\n}\n\n// Striped bars\n.progress-striped .progress-bar {\n #gradient > .striped();\n background-size: 40px 40px;\n }\n\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n .progress-bar-variant(@progress-bar-danger-bg);\n}\n\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n background-color: @well-bg;\n border: 1px solid @well-border;\n border-radius: 0;\n .box-shadow(none);\n}\n\n// Sizes\n.well-lg {\n border-radius: 0;\n}\n.well-sm {\n border-radius: 0;\n}\n","//\n// Scrollbars\n// --------------------------------------------------\n\n\n.scrollable::-webkit-scrollbar {\n height: 16px;\n width: 10px;\n\n &:hover {\n background-color: #f3f3f3;\n border: 1px solid #dbdbdb;\n }\n}\n.scrollable::-webkit-scrollbar-button:start:decrement,\n.scrollable::-webkit-scrollbar-button:end:increment {\n background-color: transparent;\n display: block;\n height: 0;\n}\n.scrollable::-webkit-scrollbar-track {\n background-clip: padding-box;\n border: solid\n transparent;\n border-width: 0 0 0 4px;\n}\n.scrollable::-webkit-scrollbar-track-piece {\n background-color: transparent;\n border-radius: 0;\n}\n.scrollable::-webkit-scrollbar-thumb {\n background-color: #515151; //old browsers fallback (ie8 etc)\n background-color: rgba(0,0,0,0.2);\n border: solid transparent;\n border-width: 0;\n .box-shadow(~\"inset 1px 1px 0 rgba(0,0,0,0.10),inset 0 -1px 0 rgba(0,0,0,0.07)\");\n background-clip: padding-box;\n\n &:hover {\n background-color: #949494;\n }\n &:active {\n background-color: #3b3b3b; //old browsers fallback (ie8 etc)\n background-color: rgba(0,0,0,0.5);\n .box-shadow(inset 1px 1px 3px rgba(0,0,0,0.35));\n }\n\n &:vertical,\n &:horizontal {\n background-color: #c6c6c6;\n border-radius: 0;\n }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Actual modal\n.modal-content {\n color: @gray-darker;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: 0;\n .box-shadow(0 4px 16px rgba(0, 0, 0, 0.2));\n}\n\n// Modal background\n.modal-backdrop {\n background-color: @modal-backdrop-bg;\n}\n\n// Close icon\n.modal-header .close {\n font-weight: normal;\n .opacity(.4);\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n margin-top: 5px;\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n font-size: @font-size-mini;\n font-weight: bold;\n line-height: @line-height-xs;\n word-break: break-word;\n\n &.in { .opacity(@tooltip-opacity); }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n padding: @tooltip-padding-vertical @tooltip-padding-horizontal;\n background-color: @tooltip-bg;\n border: 1px solid #fff;\n border-radius: 0;\n}\n\n// Arrows\n.tooltip-arrow:before {\n content: \" \";\n position: absolute;\n z-index: -1;\n border: @tooltip-arrow-outer-width solid transparent;\n}\n.tooltip {\n &.top .tooltip-arrow,\n &.top-left .tooltip-arrow,\n &.top-right .tooltip-arrow {\n bottom: 1px;\n &:before {\n top: -@tooltip-arrow-width;\n left: -@tooltip-arrow-outer-width;\n border-top-color: @tooltip-arrow-outer-color;\n border-bottom: 0 dotted;\n }\n }\n &.right .tooltip-arrow {\n left: 1px;\n &:before {\n top: -@tooltip-arrow-outer-width;\n right: -@tooltip-arrow-width;\n border-right-color: @tooltip-arrow-outer-color;\n border-left: 0 dotted;\n }\n }\n &.left .tooltip-arrow {\n right: 1px;\n &:before {\n top: -@tooltip-arrow-outer-width;\n left: -@tooltip-arrow-width;\n border-right: 0 dotted;\n border-left-color: @tooltip-arrow-outer-color;\n }\n }\n &.bottom .tooltip-arrow,\n &.bottom-left .tooltip-arrow,\n &.bottom-right .tooltip-arrow {\n top: 1px;\n &:before {\n bottom: -@tooltip-arrow-width;\n left: -@tooltip-arrow-outer-width;\n border-top: 0 dotted;\n border-bottom-color: @tooltip-arrow-outer-color;\n }\n }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n padding: 0;\n background-color: @popover-bg;\n border-radius: @border-radius-base;\n .box-shadow(0 2px 10px rgba(0,0,0,.2));\n}\n\n.popover-title,\n.popover-footer {\n padding: 10px;\n font-size: @font-size-base;\n background-color: @popover-title-bg;\n border-bottom: 1px solid @popover-fallback-border-color;\n border-bottom: 1px solid @popover-border-color;\n border-radius: 0;\n}\n.popover-footer {\n border-top: 1px solid @popover-fallback-border-color;\n border-top: 1px solid @popover-border-color;\n border-bottom: none;\n}\n\n.popover-content {\n padding: 10px;\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n width: 100%;\n padding: 50px;\n overflow: hidden;\n #gradient > .top-and-bottom(@start-color: @gray-lighter; @end-color: @carousel-bg);\n}\n\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n .opacity(@carousel-control-opacity);\n color: @carousel-control-color;\n text-shadow: @carousel-text-shadow;\n\n // Set gradients for backgrounds\n &.left {\n background-image: none;\n }\n &.right {\n background-image: none;\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n color: @carousel-control-color;\n }\n\n // Toggles\n .icon-prev,\n .icon-next {\n &:before {\n content: '';\n }\n }\n .icon-prev {\n .chevron(left, 19px, #f5f5f5, 8px, 1.5px, #777);\n position: absolute;\n right: 0;\n // left: 0;\n }\n .icon-next {\n .chevron(right, 19px, #f5f5f5, 8px, 1.5px, #777);\n position: absolute;\n right: 0;\n left: 50%;\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n bottom: 5px;\n left: 0;\n width: 100%;\n margin-left: 0;\n\n li {\n background-color: @carousel-indicator-bg;\n border: 1px solid @carousel-indicator-border-color;\n }\n .active {\n margin: 1px;\n width: 10px;\n height: 10px;\n background-color: @carousel-indicator-active-bg;\n border: 1px solid @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n right: 0;\n bottom: 0;\n left: 0;\n padding: 10px;\n color: @carousel-caption-color;\n text-shadow: @carousel-text-shadow;\n background-color: @carousel-caption-fallback-bg; //old browsers fallback (ie8 etc)\n background-color: @carousel-caption-bg;\n}\n"]}
\ No newline at end of file diff --git a/public/css/todc-bootstrap.min.css b/public/css/todc-bootstrap.min.css deleted file mode 100755 index 8b475fcbe8..0000000000 --- a/public/css/todc-bootstrap.min.css +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * TODC Bootstrap v3.1.1-3.2.1 (http://todc.github.com/todc-bootstrap/) - * Copyright 2011-2014 Tim O'Donnell - * Licensed under MIT (http://www.opensource.org/licenses/mit-license.php) - */ - -.panel-group .panel-heading a:before,.panel-group .panel-heading a.collapsed:before{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.caret-right,.collapse-caret:before,.caret-left,.dropdown-submenu>a:after,.collapse-caret.collapsed:before{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}body{font-family:Arial,Helvetica,sans-serif;font-size:13px;line-height:1.4;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#15c}a:hover,a:focus{color:#15c}.img-rounded{border-radius:4px}.img-thumbnail{padding:0;line-height:1.4;background-color:#fff;border:3px solid #fff;border-radius:0;-webkit-box-shadow:0 0 0 1px #aaa;box-shadow:0 0 0 1px #aaa;-webkit-transition:none;transition:none;display:inline-block;max-width:100%;height:auto}.caret-right,.caret-left,.dropdown-submenu>a:after,.collapse-caret.collapsed:before{vertical-align:baseline;border-top:4px solid transparent;border-right:0 dotted;border-bottom:4px solid transparent;border-left:4px solid}.caret-left{margin-left:0;margin-right:2px;border-right:4px solid;border-left:0 dotted}.scrollable-shadow{background:linear-gradient(#fff 30%,rgba(255,255,255,0)),linear-gradient(rgba(255,255,255,0),#fff 70%) 0 100%,radial-gradient(50% 0,farthest-side,rgba(0,0,0,.2),rgba(0,0,0,0)),radial-gradient(50% 100%,farthest-side,rgba(0,0,0,.2),rgba(0,0,0,0)) 0 100%;background:linear-gradient(#fff 30%,rgba(255,255,255,0)),linear-gradient(rgba(255,255,255,0),#fff 70%) 0 100%,radial-gradient(farthest-side at 50% 0,rgba(0,0,0,.2),rgba(0,0,0,0)),radial-gradient(farthest-side at 50% 100%,rgba(0,0,0,.2),rgba(0,0,0,0)) 0 100%;background-repeat:no-repeat;background-attachment:local,local,scroll,scroll;background-size:100% 40px,100% 40px,100% 6px,100% 6px}.text-primary{color:#4d90fe}a.text-primary:hover{color:#1a70fe}.text-warning{color:#333}a.text-warning:hover{color:#1a1a1a}.bg-primary{color:#fff;background-color:#4d90fe}a.bg-primary:hover{background-color:#1a70fe}.bg-warning{background-color:#f9edbe}a.bg-warning:hover{background-color:#f5e08f}code{padding:2px 4px;border-radius:0}kbd{border-radius:1px}pre{padding:9px;margin:0 0 9px;font-size:12px;line-height:1.4;border-radius:0}table{background-color:transparent}.table{margin-bottom:18px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{line-height:1.4;border-top:1px solid #ddd}.table>thead>tr>th{border-bottom:2px solid #ddd}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#ffc}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#f9edbe}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#f7e7a7}@media (max-width:767px){.table-responsive{border:1px solid #ddd}}legend{margin-bottom:18px;font-size:19.5px}input[type=radio],input[type=checkbox]{margin:2px 0 0}output{padding-top:6px;font-size:13px;line-height:1.4;color:#555}.form-control{height:30px;padding:5px 8px;font-size:13px;line-height:1.4;background-color:#fff;border:1px solid #d9d9d9;border-top-color:silver;border-radius:1px;-webkit-box-shadow:none;box-shadow:none;-webkit-transition:none;transition:none;-webkit-appearance:none}.form-control:hover{border:1px solid #b9b9b9;border-top-color:#a0a0a0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.form-control:focus{border-color:#4d90fe;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(77,144,254,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(77,144,254,.6)}.form-control:focus{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#f1f1f1;border:1px solid #e5e5e5}.form-control[disabled]:hover,.form-control[readonly]:hover,fieldset[disabled] .form-control:hover,.form-control[disabled]:focus,.form-control[readonly]:focus,fieldset[disabled] .form-control:focus,.form-control[disabled]:active,.form-control[readonly]:active,fieldset[disabled] .form-control:active{border:1px solid #e5e5e5;-webkit-box-shadow:none;box-shadow:none}.form-control[readonly] .form-control{border:1px solid #d9d9d9}.form-control[readonly] .form-control:hover,.form-control[readonly] .form-control:focus,.form-control[readonly] .form-control:active{border:1px solid #d9d9d9}textarea.form-control{padding-right:4px}input[type=date]{line-height:30px}.radio,.checkbox{min-height:18px}input[type=radio],.radio input[type=radio],.radio-inline input[type=radio],input[type=checkbox],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:relative;width:13px;height:13px;background:#fff;border:1px solid #dcdcdc;border-radius:1px;-webkit-appearance:none;border-width:0 \0}input[type=radio]:focus,.radio input[type=radio]:focus,.radio-inline input[type=radio]:focus,input[type=checkbox]:focus,.checkbox input[type=checkbox]:focus,.checkbox-inline input[type=checkbox]:focus{outline:0;border-color:#4d90fe}input[type=radio]:active,.radio input[type=radio]:active,.radio-inline input[type=radio]:active,input[type=checkbox]:active,.checkbox input[type=checkbox]:active,.checkbox-inline input[type=checkbox]:active{border-color:#c6c6c6;background-color:#ebebeb;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0)}input[type=radio]:checked,.radio input[type=radio]:checked,.radio-inline input[type=radio]:checked,input[type=checkbox]:checked,.checkbox input[type=checkbox]:checked,.checkbox-inline input[type=checkbox]:checked{background:#fff}input[type=radio],.radio input[type=radio],.radio-inline input[type=radio]{border-radius:1em;width:15px;height:15px}input[type=radio]:checked::after,.radio input[type=radio]:checked::after,.radio-inline input[type=radio]:checked::after{content:'';display:block;position:relative;top:3px;left:3px;width:7px;height:7px;background:#666;border-radius:1em}input[type=checkbox]:hover,.checkbox input[type=checkbox]:hover,.checkbox-inline input[type=checkbox]:hover{border-color:#c6c6c6;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.1);box-shadow:inset 0 1px 1px rgba(0,0,0,.1);box-shadow:none \9}input[type=checkbox]:checked::after,.checkbox input[type=checkbox]:checked::after,.checkbox-inline input[type=checkbox]:checked::after{content:url(../img/checkmark.png);display:block;position:absolute;top:-6px;left:-5px}.input-sm{height:26px;padding:3px 8px;font-size:12px;line-height:1.5;border-radius:1px}select.input-sm{height:26px;line-height:26px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg{height:38px;padding:9px 14px;font-size:14px;line-height:1.3;border-radius:4px}select.input-lg{height:38px;line-height:38px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback .form-control{padding-right:37.5px}.has-feedback .form-control-feedback{top:23px;width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-success .form-control{-webkit-box-shadow:none;box-shadow:none}.has-success .form-control:hover{border-color:#3c763d;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.1) inset;box-shadow:0 1px 2px rgba(0,0,0,.1) inset}.has-success .form-control:focus{border-color:#3c763d;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.3) inset;box-shadow:0 1px 2px rgba(0,0,0,.3) inset}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#e09b17}.has-warning .form-control{border-color:#e09b17;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#b27b12;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #f0c36d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #f0c36d}.has-warning .input-group-addon{color:#e09b17;border-color:#e09b17;background-color:#f9edbe}.has-warning .form-control-feedback{color:#e09b17}.has-warning .form-control{-webkit-box-shadow:none;box-shadow:none}.has-warning .form-control:hover{border-color:#e09b17;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.1) inset;box-shadow:0 1px 2px rgba(0,0,0,.1) inset}.has-warning .form-control:focus{border-color:#e09b17;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.3) inset;box-shadow:0 1px 2px rgba(0,0,0,.3) inset}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#dd4b39}.has-error .form-control{border-color:#dd4b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#c23321;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ec9a90;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ec9a90}.has-error .input-group-addon{color:#dd4b39;border-color:#dd4b39;background-color:#f2dede}.has-error .form-control-feedback{color:#dd4b39}.has-error .form-control{-webkit-box-shadow:none;box-shadow:none}.has-error .form-control:hover{border-color:#dd4b39;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.1) inset;box-shadow:0 1px 2px rgba(0,0,0,.1) inset}.has-error .form-control:focus{border-color:#dd4b39;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.3) inset;box-shadow:0 1px 2px rgba(0,0,0,.3) inset}.help-block{color:#777}.form-horizontal .control-label,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:5px}@media (min-width:768px){.form-inline .form-group,.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control,.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .control-label,.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox,.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox],.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{float:none;margin-left:0;margin-bottom:-2px}.form-inline .has-feedback .form-control-feedback,.navbar-form .has-feedback .form-control-feedback{top:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:6px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:24px}.form-horizontal .form-control-static{padding-top:6px}.btn{font-weight:700;cursor:default;background-clip:border-box;padding:5px 12px;font-size:13px;line-height:18px;border-radius:2px;-webkit-box-shadow:none;box-shadow:none}.btn:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1)}.btn:active,.btn.active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.btn-default{border:1px solid #dcdcdc;color:#333;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#f1f1f1 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#f1f1f1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff1f1f1', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);text-shadow:0 1px rgba(0,0,0,.1);background-color:#f3f3f3;text-shadow:0 1px 0 #fff}.btn-default:hover{text-shadow:0 1px rgba(0,0,0,.3);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 1px rgba(0,0,0,.2)}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;border:1px solid #cfcfcf;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e4e4e4 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e4e4e4 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe4e4e4', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#e4e4e4}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{border:1px solid #c3c3c3;text-shadow:0 1px rgba(0,0,0,.3);background-image:-webkit-linear-gradient(top,#f5f5f5 0,#d8d8d8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#d8d8d8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffd8d8d8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.btn-default:focus{border:1px solid #dcdcdc;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{border:1px solid #dcdcdc;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#f1f1f1 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#f1f1f1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff1f1f1', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#f5f5f5;-webkit-box-shadow:none;box-shadow:none}.btn-default .badge{color:#dcdcdc;background-color:#333}.btn-default:hover{text-shadow:none;border-color:#c6c6c6;background-image:-webkit-linear-gradient(top,#f8f8f8 0,#f1f1f1 100%);background-image:linear-gradient(to bottom,#f8f8f8 0,#f1f1f1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff8f8f8', endColorstr='#fff1f1f1', GradientType=0);background-position:0 0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1);-webkit-transition:none;transition:none}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{border:1px solid #dcdcdc;background-image:-webkit-linear-gradient(top,#f6f6f6 0,#f1f1f1 100%);background-image:linear-gradient(to bottom,#f6f6f6 0,#f1f1f1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff6f6f6', endColorstr='#fff1f1f1', GradientType=0);background-color:#e8e8e8;text-shadow:0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.btn-default:focus{border-color:#4d90fe;outline-style:none;background-color:#f3f3f3}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active{background-color:#f3f3f3;text-shadow:none}.btn-default .badge{color:#f3f3f3;text-shadow:none}.btn-primary{border:1px solid #3079ed;color:#fff;background-image:-webkit-linear-gradient(top,#4d90fe 0,#4787ed 100%);background-image:linear-gradient(to bottom,#4d90fe 0,#4787ed 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff4d90fe', endColorstr='#ff4787ed', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);text-shadow:0 1px rgba(0,0,0,.1)}.btn-primary:hover{text-shadow:0 1px rgba(0,0,0,.3);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 1px rgba(0,0,0,.2)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;border:1px solid #196aeb;background-image:-webkit-linear-gradient(top,#4d90fe 0,#3078eb 100%);background-image:linear-gradient(to bottom,#4d90fe 0,#3078eb 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff4d90fe', endColorstr='#ff3078eb', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#3078eb}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{border:1px solid #135fd7;text-shadow:0 1px rgba(0,0,0,.3);background-image:-webkit-linear-gradient(top,#4d90fe 0,#1969e8 100%);background-image:linear-gradient(to bottom,#4d90fe 0,#1969e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff4d90fe', endColorstr='#ff1969e8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.btn-primary:focus{border:1px solid #3079ed;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{border:1px solid #3079ed;background-image:-webkit-linear-gradient(top,#4d90fe 0,#4787ed 100%);background-image:linear-gradient(to bottom,#4d90fe 0,#4787ed 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff4d90fe', endColorstr='#ff4787ed', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#4d90fe;-webkit-box-shadow:none;box-shadow:none}.btn-primary .badge{color:#3079ed;background-color:#fff}.btn-success{border:1px solid #359947;color:#fff;background-image:-webkit-linear-gradient(top,#35aa47 0,#35aa47 100%);background-image:linear-gradient(to bottom,#35aa47 0,#35aa47 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff35aa47', endColorstr='#ff35aa47', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);text-shadow:0 1px rgba(0,0,0,.1)}.btn-success:hover{text-shadow:0 1px rgba(0,0,0,.3);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 1px rgba(0,0,0,.2)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;border:1px solid #2e863e;background-image:-webkit-linear-gradient(top,#35aa47 0,#2f973f 100%);background-image:linear-gradient(to bottom,#35aa47 0,#2f973f 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff35aa47', endColorstr='#ff2f973f', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#2f973f}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{border:1px solid #287335;text-shadow:0 1px rgba(0,0,0,.3);background-image:-webkit-linear-gradient(top,#35aa47 0,#298337 100%);background-image:linear-gradient(to bottom,#35aa47 0,#298337 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff35aa47', endColorstr='#ff298337', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.btn-success:focus{border:1px solid #359947;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{border:1px solid #359947;background-image:-webkit-linear-gradient(top,#35aa47 0,#35aa47 100%);background-image:linear-gradient(to bottom,#35aa47 0,#35aa47 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff35aa47', endColorstr='#ff35aa47', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#35aa47;-webkit-box-shadow:none;box-shadow:none}.btn-success .badge{color:#359947;background-color:#fff}.btn-info{border:1px solid #46b8da;color:#fff;background-image:-webkit-linear-gradient(top,#5bc0de 0,#5bc0de 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#5bc0de 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff5bc0de', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);text-shadow:0 1px rgba(0,0,0,.1)}.btn-info:hover{text-shadow:0 1px rgba(0,0,0,.3);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 1px rgba(0,0,0,.2)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;border:1px solid #31b0d5;background-image:-webkit-linear-gradient(top,#5bc0de 0,#46b8da 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#46b8da 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff46b8da', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#46b8da}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{border:1px solid #28a1c5;text-shadow:0 1px rgba(0,0,0,.3);background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.btn-info:focus{border:1px solid #46b8da;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{border:1px solid #46b8da;background-image:-webkit-linear-gradient(top,#5bc0de 0,#5bc0de 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#5bc0de 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff5bc0de', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#5bc0de;-webkit-box-shadow:none;box-shadow:none}.btn-info .badge{color:#46b8da;background-color:#fff}.btn-warning{border:1px solid #faa328;color:#fff;background-image:-webkit-linear-gradient(top,#fbb450 0,#faa937 100%);background-image:linear-gradient(to bottom,#fbb450 0,#faa937 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fffaa937', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);text-shadow:0 1px rgba(0,0,0,.1)}.btn-warning:hover{text-shadow:0 1px rgba(0,0,0,.3);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 1px rgba(0,0,0,.2)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;border:1px solid #f9980f;background-image:-webkit-linear-gradient(top,#fbb450 0,#f99e1e 100%);background-image:linear-gradient(to bottom,#fbb450 0,#f99e1e 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff99e1e', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#f99e1e}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{border:1px solid #e98b06;text-shadow:0 1px rgba(0,0,0,.3);background-image:-webkit-linear-gradient(top,#fbb450 0,#f89306 100%);background-image:linear-gradient(to bottom,#fbb450 0,#f89306 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89306', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.btn-warning:focus{border:1px solid #faa328;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{border:1px solid #faa328;background-image:-webkit-linear-gradient(top,#fbb450 0,#faa937 100%);background-image:linear-gradient(to bottom,#fbb450 0,#faa937 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fffaa937', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#fbb450;-webkit-box-shadow:none;box-shadow:none}.btn-warning .badge{color:#faa328;background-color:#fff}.btn-danger{border:1px solid #c6322a;color:#fff;background-image:-webkit-linear-gradient(top,#dd4b39 0,#d14836 100%);background-image:linear-gradient(to bottom,#dd4b39 0,#d14836 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdd4b39', endColorstr='#ffd14836', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);text-shadow:0 1px rgba(0,0,0,.1)}.btn-danger:hover{text-shadow:0 1px rgba(0,0,0,.3);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 1px rgba(0,0,0,.2)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;border:1px solid #b12d26;background-image:-webkit-linear-gradient(top,#dd4b39 0,#c13e2c 100%);background-image:linear-gradient(to bottom,#dd4b39 0,#c13e2c 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdd4b39', endColorstr='#ffc13e2c', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#c13e2c}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{border:1px solid #9c2721;text-shadow:0 1px rgba(0,0,0,.3);background-image:-webkit-linear-gradient(top,#dd4b39 0,#ad3727 100%);background-image:linear-gradient(to bottom,#dd4b39 0,#ad3727 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdd4b39', endColorstr='#ffad3727', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.btn-danger:focus{border:1px solid #c6322a;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{border:1px solid #c6322a;background-image:-webkit-linear-gradient(top,#dd4b39 0,#d14836 100%);background-image:linear-gradient(to bottom,#dd4b39 0,#d14836 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdd4b39', endColorstr='#ffd14836', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#dd4b39;-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge{color:#c6322a;background-color:#fff}.btn-link{color:#15c}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#15c;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#333}.btn-lg,.btn-group-lg>.btn{padding:9px 14px;font-size:14px;line-height:1.3;border-radius:2px}.btn-sm,.btn-group-sm>.btn{padding:3px 8px;font-size:12px;line-height:1.5;border-radius:2px}.btn-xs,.btn-group-xs>.btn{padding:2px 6px;font-size:11px;line-height:1.25;border-radius:1px}.dropdown-menu{padding:6px 0;margin:1px 0 0;font-size:13px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:0;-webkit-box-shadow:0 2px 4px rgba(0,0,0,.2);box-shadow:0 2px 4px rgba(0,0,0,.2)}.dropdown-menu .divider{height:1px;margin:8px 0;overflow:hidden;background-color:#ebebeb}.dropdown-menu>li>a{padding:3px 30px;position:relative}.dropdown-menu>li>a .glyphicon{position:absolute;left:7px;top:4px}.dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{color:#333;background-image:-webkit-linear-gradient(top,#eee 0,#eee 100%);background-image:linear-gradient(to bottom,#eee 0,#eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffeeeeee', GradientType=0);background-color:#eee}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#333;background-image:-webkit-linear-gradient(top,#eee 0,#eee 100%);background-image:linear-gradient(to bottom,#eee 0,#eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffeeeeee', GradientType=0);background-color:#eee}.dropdown-header{color:#999}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-left:-1px;border-radius:0}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;border-radius:0}.dropdown-submenu>a:after{position:absolute;right:10px;margin-top:5px;content:""}.dropdown-submenu.pull-left{float:none!important}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:18px;border-radius:0}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:16px}.btn-group>.btn+.dropdown-toggle{-webkit-box-shadow:none;box-shadow:none}.btn-group>.dropdown-toggle:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1)}.btn-group>.btn-primary.dropdown-toggle:hover,.btn-group>.btn-info.dropdown-toggle:hover,.btn-group>.btn-warning.dropdown-toggle:hover,.btn-group>.btn-danger.dropdown-toggle:hover,.btn-group>.btn-success.dropdown-toggle:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 1px rgba(0,0,0,.2)}.btn-group>.btn.dropdown-toggle:active,.btn-group>.btn.dropdown-toggle.active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.btn-group>.btn-primary.dropdown-toggle:active,.btn-group>.btn-primary.dropdown-toggle.active,.btn-group>.btn-warning.dropdown-toggle:active,.btn-group>.btn-warning.dropdown-toggle.active,.btn-group>.btn-danger.dropdown-toggle:active,.btn-group>.btn-danger.dropdown-toggle.active,.btn-group>.btn-success.dropdown-toggle:active,.btn-group>.btn-success.dropdown-toggle.active,.btn-group>.btn-info.dropdown-toggle:active,.btn-group>.btn-info.dropdown-toggle.active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.btn-group>.btn-sm.dropdown-toggle{padding:5px 7px}.btn-group>.btn-lg.dropdown-toggle{padding:9px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 1px 6px rgba(0,0,0,.15);box-shadow:inset 0 1px 6px rgba(0,0,0,.15)}.btn-group.open .btn.dropdown-toggle{background-color:#f3f3f3;background-image:none;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.btn-group.open .btn-primary.dropdown-toggle{background-color:#4d90fe;background-image:none;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.btn-group.open .btn-warning.dropdown-toggle{background-color:#faa937;background-image:none;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.btn-group.open .btn-danger.dropdown-toggle{background-color:#d84a38;background-image:none;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.btn-group.open .btn-success.dropdown-toggle{background-color:#35aa47;background-image:none;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.btn-group.open .btn-info.dropdown-toggle{background-color:#5bc0de;background-image:none;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:2px}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:2px}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:38px;padding:9px 14px;font-size:14px;line-height:1.3;border-radius:4px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:38px;line-height:38px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:26px;padding:3px 8px;font-size:12px;line-height:1.5;border-radius:1px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:26px;line-height:26px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{margin:0;border-radius:0}.input-group-addon{padding:5px 8px;font-size:13px;color:#555;border:1px solid #d9d9d9;border-top-color:silver;border-radius:2px}.input-group-addon.input-sm{padding:3px 8px;font-size:12px;border-radius:1px}.input-group-addon.input-lg{padding:9px 14px;font-size:14px;border-radius:4px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-bottom:-3px}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{color:#fff;background-color:#999;border-color:#999}.nav-tabs>li>a{border-radius:2px 2px 0 0;color:#666}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{font-weight:700;color:#333}.nav-tabs-google>li{margin:0 -1px 0 0}.nav-tabs-google>li>a{padding:12px 8px;line-height:1.4;color:#777;border:3px solid transparent;border-width:3px 0;border-radius:0;margin:0 8px}.nav-tabs-google>li>a:first-of-type{margin-left:0}.nav-tabs-google>li>a:hover,.nav-tabs-google>li>a:focus{background-color:transparent;border-top-color:transparent}.nav-tabs-google>li>a:hover{color:#000;border-bottom-color:transparent}.nav-tabs-google>li>a:active{color:#dd4b39}.nav-tabs-google>li>a:focus{color:#000;outline:0}.nav-tabs-google>li.active>a,.nav-tabs-google>li.active>a:hover,.nav-tabs-google>li.active>a:focus{border:3px solid transparent;border-width:3px 0;color:#dd4b39;border-bottom-color:#dd4b39}.nav-pills>li>a{border-radius:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#4d90fe}.navbar{min-height:28px;margin-bottom:18px}@media (min-width:768px){.navbar{border-radius:2px}}.navbar-brand{padding:5px 15px;font-size:14px;line-height:18px;height:28px}.navbar-brand>.glyphicon{margin-top:0}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{margin-right:15px;padding:5px 10px;margin-top:1px;margin-bottom:1px;border-radius:2px}.navbar-nav{margin:2px -15px}.navbar-nav>li>a{padding-top:5px;padding-bottom:5px;line-height:18px}@media (max-width:767px){.navbar-nav .open .dropdown-menu>li>a{line-height:18px}}@media (min-width:768px){.navbar-nav{margin:0}.navbar-nav>li>a{padding-top:5px;padding-bottom:5px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;-webkit-box-shadow:none;box-shadow:none;margin-top:0;margin-bottom:0}.navbar-form>.input-group .form-control{margin-top:1px;margin-bottom:1px}@media (min-width:768px){.navbar-form{margin-left:0;margin-right:0;padding-top:0;padding-bottom:0}}.navbar-form .form-control{height:26px;padding:3px 8px}.navbar-btn,.navbar .btn{padding:3px 8px;margin-top:1px;margin-bottom:1px}.navbar-btn.btn-sm,.navbar .btn.btn-sm{margin-top:1px;margin-bottom:1px}.navbar-btn.btn-xs,.navbar .btn.btn-xs{padding:2px 6px;margin-top:4px;margin-bottom:4px}.navbar-text{margin-top:5px;margin-bottom:5px}.navbar-default{background-color:#2d2d2d;border-color:#000}.navbar-default .navbar-brand{color:#999}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-default .navbar-brand>.caret{border-top-color:#999;border-bottom-color:#999}.navbar-default .navbar-text{color:#999}.navbar-default .navbar-nav>li>a{color:#999}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#fff;background-color:#141414}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#555;background-color:transparent}.navbar-default .navbar-toggle{border-color:#222}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#333}.navbar-default .navbar-toggle .icon-bar{background-color:#fff}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#000}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#141414;color:#fff}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#141414}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#555;background-color:transparent}}.navbar-default .navbar-link{color:#999}.navbar-default .navbar-link:hover{color:#fff}.navbar-inverse{background-color:#fafafa;border-color:#dbdbdb}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:gray;background-color:transparent}.navbar-inverse .navbar-brand>.caret{border-top-color:#999;border-bottom-color:#999}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#333;background-color:#e1e1e1}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#ddd}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#ddd}.navbar-inverse .navbar-toggle .icon-bar{background-color:#888}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#e8e8e8}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#e1e1e1;color:#333}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#dbdbdb}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#dbdbdb}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#333;background-color:#e1e1e1}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#333}.navbar-masthead{min-height:44px;margin-bottom:18px}@media (min-width:768px){.navbar-masthead{border-radius:2px}}.navbar-masthead .navbar-static-top{z-index:1005}.navbar-masthead .navbar-fixed-top,.navbar-masthead .navbar-fixed-bottom{z-index:1029}.navbar-masthead .navbar-brand{padding:13px 15px;font-size:20px;height:44px}.navbar-masthead .navbar-brand>.glyphicon{margin-top:-3px}@media (min-width:768px){.navbar>.container .navbar-masthead .navbar-brand,.navbar>.container-fluid .navbar-masthead .navbar-brand{margin-left:-15px}}.navbar-masthead .navbar-toggle{margin-right:15px;margin-top:7px;margin-bottom:7px}.navbar-masthead .navbar-nav{margin:6px -15px}@media (min-width:768px){.navbar-masthead .navbar-nav{margin:6px 0}.navbar-masthead .navbar-nav>li>a{padding-top:8px;padding-bottom:6px}.navbar-masthead .navbar-nav.navbar-right:last-child{margin-right:-15px}}.navbar-masthead .navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;margin-top:0;margin-bottom:0}.navbar-masthead .navbar-form>.input-group .form-control{margin-top:7px;margin-bottom:7px}@media (max-width:767px){.navbar-masthead .navbar-form .form-group{margin-bottom:5px}}@media (min-width:768px){.navbar-masthead .navbar-form{margin-left:0;margin-right:0;padding-top:0;padding-bottom:0}.navbar-masthead .navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-masthead .navbar-form .form-control{height:30px;padding:5px 8px}.navbar-masthead.navbar-btn,.navbar-masthead.navbar .btn{padding:5px 8px;margin-top:7px;margin-bottom:7px}.navbar-masthead.navbar-btn.btn-sm,.navbar-masthead.navbar .btn.btn-sm{padding:3px 8px;margin-top:9px;margin-bottom:9px}.navbar-masthead.navbar-btn.btn-xs,.navbar-masthead.navbar .btn.btn-xs{padding:2px 6px;margin-top:12px;margin-bottom:12px}.navbar-masthead .navbar-text{margin-top:13px;margin-bottom:13px}.navbar-masthead.navbar-default{background-color:#f1f1f1;border-color:#e5e5e5}.navbar-masthead.navbar-default .navbar-brand{color:#777}.navbar-masthead.navbar-default .navbar-brand:hover,.navbar-masthead.navbar-default .navbar-brand:focus{color:#777;background-color:transparent}.navbar-masthead.navbar-default .navbar-brand>.caret{border-top-color:#777;border-bottom-color:#777}.navbar-masthead.navbar-default .navbar-text{color:#777}.navbar-masthead.navbar-default .navbar-nav>li>a{color:#777}.navbar-masthead.navbar-default .navbar-nav>li>a:hover,.navbar-masthead.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-masthead.navbar-default .navbar-nav>.active>a,.navbar-masthead.navbar-default .navbar-nav>.active>a:hover,.navbar-masthead.navbar-default .navbar-nav>.active>a:focus{color:#333;background-color:#f1f1f1}.navbar-masthead.navbar-default .navbar-nav>.disabled>a,.navbar-masthead.navbar-default .navbar-nav>.disabled>a:hover,.navbar-masthead.navbar-default .navbar-nav>.disabled>a:focus{color:#bbb;background-color:transparent}.navbar-masthead.navbar-default .navbar-toggle{border-color:#dcdcdc}.navbar-masthead.navbar-default .navbar-toggle:hover,.navbar-masthead.navbar-default .navbar-toggle:focus{background-color:#e4e4e4}.navbar-masthead.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-masthead.navbar-default .navbar-collapse,.navbar-masthead.navbar-default .navbar-form{border-color:#dfdfdf}.navbar-masthead.navbar-default .navbar-nav>.open>a,.navbar-masthead.navbar-default .navbar-nav>.open>a:hover,.navbar-masthead.navbar-default .navbar-nav>.open>a:focus{background-color:#f1f1f1;color:#333}@media (max-width:767px){.navbar-masthead.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-masthead.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-masthead.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-masthead.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-masthead.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-masthead.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#333;background-color:#f1f1f1}.navbar-masthead.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-masthead.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-masthead.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#bbb;background-color:transparent}}.navbar-masthead.navbar-default .navbar-link{color:#777}.navbar-masthead.navbar-default .navbar-link:hover{color:#333}.navbar-masthead.navbar-inverse{background-color:#444;border-color:#333}.navbar-masthead.navbar-inverse .navbar-brand{color:#fff}.navbar-masthead.navbar-inverse .navbar-brand:hover,.navbar-masthead.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-masthead.navbar-inverse .navbar-brand>.caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-masthead.navbar-inverse .navbar-text{color:#999}.navbar-masthead.navbar-inverse .navbar-nav>li>a{color:#fff}.navbar-masthead.navbar-inverse .navbar-nav>li>a:hover,.navbar-masthead.navbar-inverse .navbar-nav>li>a:focus{color:#bbb;background-color:transparent}.navbar-masthead.navbar-inverse .navbar-nav>.active>a,.navbar-masthead.navbar-inverse .navbar-nav>.active>a:hover,.navbar-masthead.navbar-inverse .navbar-nav>.active>a:focus{color:#bbb;background-color:#444}.navbar-masthead.navbar-inverse .navbar-nav>.disabled>a,.navbar-masthead.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-masthead.navbar-inverse .navbar-nav>.disabled>a:focus{color:#777;background-color:transparent}.navbar-masthead.navbar-inverse .navbar-toggle{border-color:#222}.navbar-masthead.navbar-inverse .navbar-toggle:hover,.navbar-masthead.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-masthead.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-masthead.navbar-inverse .navbar-collapse,.navbar-masthead.navbar-inverse .navbar-form{border-color:#323232}.navbar-masthead.navbar-inverse .navbar-nav>.open>a,.navbar-masthead.navbar-inverse .navbar-nav>.open>a:hover,.navbar-masthead.navbar-inverse .navbar-nav>.open>a:focus{background-color:#444;color:#bbb}@media (max-width:767px){.navbar-masthead.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#333}.navbar-masthead.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#333}.navbar-masthead.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#fff}.navbar-masthead.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-masthead.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#bbb;background-color:transparent}.navbar-masthead.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-masthead.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-masthead.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#bbb;background-color:#444}.navbar-masthead.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-masthead.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-masthead.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#777;background-color:transparent}}.navbar-masthead.navbar-inverse .navbar-link{color:#fff}.navbar-masthead.navbar-inverse .navbar-link:hover{color:#bbb}.navbar-toolbar{min-height:36px;margin-bottom:18px}@media (min-width:768px){.navbar-toolbar{border-radius:2px}}.navbar-toolbar .navbar-static-top{z-index:1008}.navbar-toolbar .navbar-fixed-top,.navbar-toolbar .navbar-fixed-bottom{z-index:1028}.navbar-toolbar .navbar-brand{padding:9px 15px;font-size:16px;font-weight:700;height:36px}@media (min-width:768px){.navbar>.container .navbar-toolbar .navbar-brand,.navbar>.container-fluid .navbar-toolbar .navbar-brand{margin-left:-15px}}.navbar-toolbar .navbar-toggle{margin-right:15px;margin-top:3px;margin-bottom:3px}.navbar-toolbar .navbar-nav{margin:4px -15px}.navbar-toolbar .navbar-nav>li{position:relative}.navbar-toolbar .navbar-nav>li>a{padding:9px 15px}.navbar-toolbar .navbar-nav>li>a:hover,.navbar-toolbar .navbar-nav>li>a:focus{text-decoration:underline}.navbar-toolbar .navbar-nav>li>.dropdown-menu{margin-top:1px}.navbar-toolbar .navbar-nav>.active>a{font-weight:700}.navbar-toolbar .navbar-nav>.active>a:before{position:absolute;bottom:-1px;left:50%;display:inline-block;margin-left:-8px;border-right:8px solid transparent;border-bottom:8px solid transparent;border-left:8px solid transparent;content:''}.navbar-toolbar .navbar-nav>.active>a:after{position:absolute;bottom:-1px;left:50%;display:inline-block;margin-left:-7px;border-right:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid transparent;content:''}@media (min-width:768px){.navbar-toolbar .navbar-nav{margin:0}.navbar-toolbar .navbar-nav>li>a{padding-top:9px;padding-bottom:9px}.navbar-toolbar .navbar-nav.navbar-right:last-child{margin-right:-15px}}.navbar-toolbar .navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;margin-top:0;margin-bottom:0}.navbar-toolbar .navbar-form>.input-group .form-control{margin-top:3px;margin-bottom:3px}@media (max-width:767px){.navbar-toolbar .navbar-form .form-group{margin-bottom:5px}}@media (min-width:768px){.navbar-toolbar .navbar-form{margin-left:0;margin-right:0;padding-top:0;padding-bottom:0}.navbar-toolbar .navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-toolbar .navbar-form .form-control{height:30px;padding:5px 8px}.navbar-toolbar .dropdown-menu{border-top:1px none}.navbar-toolbar.navbar-btn,.navbar-toolbar.navbar .btn{padding:5px 8px;margin-top:3px;margin-bottom:3px}.navbar-toolbar.navbar-btn.btn-sm,.navbar-toolbar.navbar .btn.btn-sm{padding:3px 8px;margin-top:5px;margin-bottom:5px}.navbar-toolbar.navbar-btn.btn-xs,.navbar-toolbar.navbar .btn.btn-xs{padding:2px 6px;margin-top:8px;margin-bottom:8px}.navbar-toolbar .navbar-text{margin-top:9px;margin-bottom:9px}.navbar-toolbar.navbar-default{background-color:#fff;border-color:#ebebeb}.navbar-toolbar.navbar-default .navbar-brand{color:#dd4b39}.navbar-toolbar.navbar-default .navbar-brand:hover,.navbar-toolbar.navbar-default .navbar-brand:focus{color:#dd4b39;background-color:transparent}.navbar-toolbar.navbar-default .navbar-brand>.caret{border-top-color:#dd4b39;border-bottom-color:#dd4b39}.navbar-toolbar.navbar-default .navbar-text{color:#777}.navbar-toolbar.navbar-default .navbar-nav>li>a{color:#777}.navbar-toolbar.navbar-default .navbar-nav>li>a:hover,.navbar-toolbar.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-toolbar.navbar-default .navbar-nav>.active>a,.navbar-toolbar.navbar-default .navbar-nav>.active>a:hover,.navbar-toolbar.navbar-default .navbar-nav>.active>a:focus{color:#333;background-color:#f2f2f2}.navbar-toolbar.navbar-default .navbar-nav>.active>a:before{border-bottom:8px solid #ebebeb}.navbar-toolbar.navbar-default .navbar-nav>.active>a:after{border-bottom:7px solid #fff}.navbar-toolbar.navbar-default .navbar-nav>.disabled>a,.navbar-toolbar.navbar-default .navbar-nav>.disabled>a:hover,.navbar-toolbar.navbar-default .navbar-nav>.disabled>a:focus{color:#bbb;background-color:transparent}.navbar-toolbar.navbar-default .navbar-toggle{border-color:#dcdcdc}.navbar-toolbar.navbar-default .navbar-toggle:hover,.navbar-toolbar.navbar-default .navbar-toggle:focus{background-color:#e4e4e4}.navbar-toolbar.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-toolbar.navbar-default .navbar-collapse,.navbar-toolbar.navbar-default .navbar-form{border-color:#ededed}.navbar-toolbar.navbar-default .navbar-nav>.open>a,.navbar-toolbar.navbar-default .navbar-nav>.open>a:hover,.navbar-toolbar.navbar-default .navbar-nav>.open>a:focus{background-color:#f2f2f2;color:#333}@media (max-width:767px){.navbar-toolbar.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-toolbar.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-toolbar.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-toolbar.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-toolbar.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-toolbar.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#333;background-color:#f2f2f2}.navbar-toolbar.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-toolbar.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-toolbar.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#bbb;background-color:transparent}}.navbar-toolbar.navbar-default .navbar-link{color:#777}.navbar-toolbar.navbar-default .navbar-link:hover{color:#333}.navbar-toolbar.navbar-inverse{background-color:#444;border-color:#333}.navbar-toolbar.navbar-inverse .navbar-brand{color:#fff}.navbar-toolbar.navbar-inverse .navbar-brand:hover,.navbar-toolbar.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-toolbar.navbar-inverse .navbar-brand>.caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-toolbar.navbar-inverse .navbar-text{color:#999}.navbar-toolbar.navbar-inverse .navbar-nav>li>a{color:#fff}.navbar-toolbar.navbar-inverse .navbar-nav>li>a:hover,.navbar-toolbar.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-toolbar.navbar-inverse .navbar-nav>.active>a,.navbar-toolbar.navbar-inverse .navbar-nav>.active>a:hover,.navbar-toolbar.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#444}.navbar-toolbar.navbar-inverse .navbar-nav>.active>a:before{border-bottom:8px solid #333}.navbar-toolbar.navbar-inverse .navbar-nav>.active>a:after{border-bottom:7px solid #fff}.navbar-toolbar.navbar-inverse .navbar-nav>.disabled>a,.navbar-toolbar.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-toolbar.navbar-inverse .navbar-nav>.disabled>a:focus{color:#777;background-color:transparent}.navbar-toolbar.navbar-inverse .navbar-toggle{border-color:#222}.navbar-toolbar.navbar-inverse .navbar-toggle:hover,.navbar-toolbar.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-toolbar.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-toolbar.navbar-inverse .navbar-collapse,.navbar-toolbar.navbar-inverse .navbar-form{border-color:#323232}.navbar-toolbar.navbar-inverse .navbar-nav>.open>a,.navbar-toolbar.navbar-inverse .navbar-nav>.open>a:hover,.navbar-toolbar.navbar-inverse .navbar-nav>.open>a:focus{background-color:#444;color:#fff}@media (max-width:767px){.navbar-toolbar.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#333}.navbar-toolbar.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#333}.navbar-toolbar.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#fff}.navbar-toolbar.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-toolbar.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-toolbar.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-toolbar.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-toolbar.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#444}.navbar-toolbar.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-toolbar.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-toolbar.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#777;background-color:transparent}}.navbar-toolbar.navbar-inverse .navbar-link{color:#fff}.navbar-toolbar.navbar-inverse .navbar-link:hover{color:#fff}.navbar-static-top{border-radius:0}.navbar-fixed-top,.navbar-static-top{border-width:1px 0}.navbar-fixed-bottom{border-width:1px 0}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;border-radius:0}.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}.navbar-fixed-top{top:0}.navbar-fixed-bottom{bottom:0;margin-bottom:0}.navbar-btn{padding:3px 8px;margin-top:1px}.btn.navbar-masthead-btn{margin-top:7px}.btn.navbar-toolbar-btn{margin-top:3px}.navbar-link{color:#999}.navbar-link:hover{color:#fff}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#333}.navbar-form .radio-inline,.navbar-form .checkbox-inline{color:#999}.breadcrumb{padding:13px 15px;margin-bottom:18px;background-color:#f3f3f3;border-radius:2px}.breadcrumb>li+li{position:relative;display:inline-block;margin-left:20px}.breadcrumb>li+li:before{border-radius:5px}.breadcrumb>li+li:before,.breadcrumb>li+li:after{content:"";position:absolute;width:0;height:0}.breadcrumb>li+li:before{border:7px solid transparent}.breadcrumb>li+li:after{border:5px solid transparent}.breadcrumb>li+li:before,.breadcrumb>li+li:after{left:100%;top:9px}.breadcrumb>li+li:before{margin-top:-7px;border-left:7px solid;border-left-color:#777}.breadcrumb>li+li:after{margin-top:-5px;border-left:5px solid #f3f3f3}.breadcrumb>li+li:before,.breadcrumb>li+li:after{left:-16px}.breadcrumb>li+li:before{content:"";color:#999}.breadcrumb>li>a{color:#999}.breadcrumb>li>a:hover{color:#000}.breadcrumb>.active,.breadcrumb>.active>a{color:#000}.breadcrumb-inverse{background-color:#393832}.breadcrumb-inverse>li+li{position:relative;display:inline-block}.breadcrumb-inverse>li+li:before{border-radius:5px}.breadcrumb-inverse>li+li:before,.breadcrumb-inverse>li+li:after{content:"";position:absolute;width:0;height:0}.breadcrumb-inverse>li+li:before{border:7px solid transparent}.breadcrumb-inverse>li+li:after{border:5px solid transparent}.breadcrumb-inverse>li+li:before,.breadcrumb-inverse>li+li:after{left:100%;top:9px}.breadcrumb-inverse>li+li:before{margin-top:-7px;border-left:7px solid;border-left-color:#666}.breadcrumb-inverse>li+li:after{margin-top:-5px;border-left:5px solid #393832}.breadcrumb-inverse>li+li:before,.breadcrumb-inverse>li+li:after{left:-16px}.breadcrumb-inverse>li>a{color:#999}.breadcrumb-inverse>li>a:hover{color:#fff}.breadcrumb-inverse>.active,.breadcrumb-inverse>.active>a{color:#fff}.breadcrumb-sm{padding:4px 15px;background-color:#fff;border-bottom:1px solid #ebebeb}.breadcrumb-sm.breadcrumb-inverse{background-color:#393832}.pagination{margin:18px 0;border-radius:2px}.pagination>li>a,.pagination>li>span{color:#333;padding:5px 12px;line-height:1.4;background-color:#f3f3f3;border:1px solid #dcdcdc}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:2px;border-top-left-radius:2px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:2px;border-top-right-radius:2px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#333;background-color:#f5f5f5;border-color:#c6c6c6;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1)}.pagination>li>a:active{background-image:-webkit-linear-gradient(top,#f6f6f6 0,#f1f1f1 100%);background-image:linear-gradient(to bottom,#f6f6f6 0,#f1f1f1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff6f6f6', endColorstr='#fff1f1f1', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#f4f4f4;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{color:#4d90fe;background-color:#f5f5f5;border-color:#c6c6c6;-webkit-box-shadow:none;box-shadow:none}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#b3b3b3;border-color:#d9d9d9;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#f1f1f1 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#f1f1f1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff1f1f1', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-color:#f3f3f3;-webkit-box-shadow:none;box-shadow:none;text-shadow:none}.pagination-lg>li>a,.pagination-lg>li>span{padding:9px 14px;font-size:14px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination-sm>li>a,.pagination-sm>li>span{padding:3px 8px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pager{margin:18px 0}.pager li>a,.pager li>span{padding:11px 24px;overflow:visible;font-size:14px;color:#777;text-decoration:none;white-space:nowrap;cursor:default;background-color:#fff;border:1px solid #5b5b5b;border:1px solid rgba(0,0,0,.1);border-radius:2px;outline:0;-webkit-box-shadow:0 2px 1px rgba(0,0,0,.1),0 0 1px rgba(0,0,0,.1);box-shadow:0 2px 1px rgba(0,0,0,.1),0 0 1px rgba(0,0,0,.1);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.pager li>a:hover,.pager li>a:focus{color:#444;background-color:#fff}.pager li>a:active{color:#444;background-color:#fff}.pager li .icon-prev{position:relative;display:inline-block;padding-right:8px}.pager li .icon-prev:before{border-radius:5px}.pager li .icon-prev:before,.pager li .icon-prev:after{content:"";position:absolute;width:0;height:0}.pager li .icon-prev:before{border:7px solid transparent}.pager li .icon-prev:after{border:4px solid transparent}.pager li .icon-prev:before,.pager li .icon-prev:after{right:100%;top:-5px}.pager li .icon-prev:before{margin-top:-7px;border-right:7px solid;border-right-color:inherit}.pager li .icon-prev:after{margin-top:-4px;border-right:4px solid #fff}.pager li .icon-next{position:relative;display:inline-block;padding-left:8px}.pager li .icon-next:before{border-radius:5px}.pager li .icon-next:before,.pager li .icon-next:after{content:"";position:absolute;width:0;height:0}.pager li .icon-next:before{border:7px solid transparent}.pager li .icon-next:after{border:4px solid transparent}.pager li .icon-next:before,.pager li .icon-next:after{left:100%;top:-5px}.pager li .icon-next:before{margin-top:-7px;border-left:7px solid;border-left-color:inherit}.pager li .icon-next:after{margin-top:-4px;border-left:4px solid #fff}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{-webkit-box-shadow:none;box-shadow:none;color:#b3b3b3;background-color:#fafafa;border-color:#d9d9d9;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.pager .disabled .icon-prev{position:relative;display:inline-block;padding-right:8px}.pager .disabled .icon-prev:before{border-radius:5px}.pager .disabled .icon-prev:before,.pager .disabled .icon-prev:after{content:"";position:absolute;width:0;height:0}.pager .disabled .icon-prev:before{border:7px solid transparent}.pager .disabled .icon-prev:after{border:4px solid transparent}.pager .disabled .icon-prev:before,.pager .disabled .icon-prev:after{right:100%;top:-5px}.pager .disabled .icon-prev:before{margin-top:-7px;border-right:7px solid;border-right-color:#b3b3b3}.pager .disabled .icon-prev:after{margin-top:-4px;border-right:4px solid #fafafa}.pager .disabled .icon-next{position:relative;display:inline-block;padding-left:8px}.pager .disabled .icon-next:before{border-radius:5px}.pager .disabled .icon-next:before,.pager .disabled .icon-next:after{content:"";position:absolute;width:0;height:0}.pager .disabled .icon-next:before{border:7px solid transparent}.pager .disabled .icon-next:after{border:4px solid transparent}.pager .disabled .icon-next:before,.pager .disabled .icon-next:after{left:100%;top:-5px}.pager .disabled .icon-next:before{margin-top:-7px;border-left:7px solid;border-left-color:#b3b3b3}.pager .disabled .icon-next:after{margin-top:-4px;border-left:4px solid #fafafa}.label{font-size:80%;border-radius:0}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:gray}.label-primary{background-color:#4d90fe}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#1a70fe}.label-success{background-color:#35aa47}.label-success[href]:hover,.label-success[href]:focus{background-color:#298337}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#faa937}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#f89306}.label-danger{background-color:#d84a38}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#b93524}.badge{font-size:12px}a.list-group-item.active>.badge,li.list-group-item.active a>.badge{color:#fff;background-color:#dd4b39}.nav-pills>.active>a>.badge{color:#15c;background-color:#fff}.jumbotron{color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{font-size:20px}.container .jumbotron{border-radius:4px}@media screen and (min-width:768px){.jumbotron h1,.jumbotron .h1{font-size:58.5px}}.thumbnail{display:block;padding:0;margin-bottom:18px;line-height:1.4;background-color:#fff;border:1px solid #fff;border-radius:0}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#fff;-webkit-box-shadow:0 0 0 1px #dedede;box-shadow:0 0 0 1px #dedede}.thumbnail .caption{padding:9px 4px;color:#000}.alert{padding:8px;margin-bottom:18px;border-radius:2px}.alert .alert-link{font-weight:700}.alert-dismissable{padding-right:28px}.alert-success{background-color:#dff0d8;border-color:#a3d48e;color:#3c763d}.alert-success hr{border-top-color:#93cd7c}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#85c5e5;color:#31708f}.alert-info hr{border-top-color:#70bbe1}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#f9edbe;border-color:#f0c36d;color:#333}.alert-warning hr{border-top-color:#eeb956}.alert-warning .alert-link{color:#1a1a1a}.alert-danger{background-color:#f2dede;border-color:#d59595;color:#a94442}.alert-danger hr{border-top-color:#ce8383}.alert-danger .alert-link{color:#843534}.alert-success,.alert-info,.alert-warning,.alert-danger{text-shadow:0 1px 0 rgba(255,255,255,.5)}.progress{border:1px solid #999;padding:1px;height:14px;font-size:12px;height:18px;margin-bottom:18px;background-color:transparent;background-image:none;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.progress-bar{line-height:18px;background-color:#6188f5;background-image:none;-webkit-box-shadow:none;box-shadow:none}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress-bar-success{background-color:#2f973f}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#53bddc}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#fbb450}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#c13e2c}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group-item{color:#222;background-color:#fff;border:1px solid #e5e5e5}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group-item:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.list-group-item .dropdown{display:none}.list-group-item .dropdown-toggle{display:inline-block;padding:5px 6px 5px 5px;color:#222}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{color:#dd4b39;font-weight:700;background-color:transparent;border-color:#e5e5e5;border-left:4px solid #dd4b39;border-left-color:#dd4b39}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{font-weight:400;color:#888}a.list-group-item.active:hover,a.list-group-item.active:focus{background-color:#eee}a.list-group-item:hover,li.list-group-item a:hover,a.list-group-item:focus,li.list-group-item a:focus{text-decoration:none;background-color:#eee}li.list-group-item{padding:0;margin-bottom:0;border:0 none}li.list-group-item>a{color:#222;display:block;padding:5px 17px;margin:0 0 0 14px}li.list-group-item.active{font-weight:700;background-color:transparent;border-left:4px solid #DD4B39}li.list-group-item.active>a{margin-left:10px;color:#dd4b39}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#333;background-color:#f9edbe}a.list-group-item-warning{color:#333}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#333;background-color:#f7e7a7}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#333;border-color:#333}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-wrapper{margin-left:14px}.list-group-item-wrapper:hover>.dropdown{display:block}.list-group-item-wrapper>a{display:block;padding:5px 17px;margin:0;color:#222}.list-group-item-wrapper>.dropdown:hover+a{background-color:#eee}.list-group-item-wrapper>.dropdown.open{display:block}.list-group-item-wrapper>.dropdown.open+a{background-color:#eee}.list-group-item-wrapper>.dropdown>.dropdown-menu{margin-top:0}.list-group-header{display:block;padding:10px 30px 10px 15px;font-size:11px;font-weight:700;line-height:1.4;color:#999;text-shadow:0 1px 0 rgba(255,255,255,.5);text-transform:uppercase}li.list-group-header{padding:3px 15px}.list-group .list-group-header{margin-top:9px}.list-group-item-menu{padding:0;margin:0;border:0 none;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.list-group-item-menu .list-group-item-wrapper>a{padding-left:30px}.list-group-item-menu .list-group-item-menu .list-group-item-wrapper>a{padding-left:44px}.list-group-item-menu>.list-group-item .collapse-caret{margin-left:28px}.collapse-caret{position:absolute;z-index:1;display:inline-block;width:17px;height:28px;margin-left:14px}.collapse-caret:before{content:'';position:absolute;top:12px;left:5px;margin-left:0;border-bottom:0 dotted}.collapse-caret:hover{background-color:#eee}.collapse-caret.collapsed:before{top:10px;left:6px}.list-group .divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5;margin-right:15px;margin-left:15px}.panel{word-wrap:break-word;background-color:#fff;border:1px solid transparent;border-bottom-width:2px;border-radius:3px;-webkit-box-shadow:none;box-shadow:none}.panel-body{padding:15px 20px}.panel-heading{padding:15px 20px;border-top-right-radius:3px;border-top-left-radius:3px}.panel-title{font-size:16px}.panel-footer{padding:15px 20px;background-color:#f8f8f8;border-top:1px solid #e5e5e5;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group:first-child .list-group-item:first-child{border-top-right-radius:2px;border-top-left-radius:2px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:2px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:2px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:2px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:2px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel-default{border-color:#d8d8d8}.panel-default>.panel-heading{color:#333;background-color:#fff;border-color:#fff}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#d8d8d8}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d8d8d8}.panel-primary{border-color:#4d90fe}.panel-primary>.panel-heading{color:#fff;background-color:#4d90fe;border-color:#4d90fe}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#4d90fe}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#4d90fe}.panel-success{border-color:#a3d48e}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#a3d48e}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#a3d48e}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#a3d48e}.panel-info{border-color:#85c5e5}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#85c5e5}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#85c5e5}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#85c5e5}.panel-warning{border-color:#f0c36d}.panel-warning>.panel-heading{color:#333;background-color:#f9edbe;border-color:#f0c36d}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#f0c36d}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#f0c36d}.panel-danger{border-color:#d59595}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#d59595}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#d59595}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d59595}.panel-group{margin-bottom:18px}.panel-group .panel{border-color:transparent;border-radius:0}.panel-group .panel+.panel{margin-top:-3px}.panel-group .panel-heading{padding:0 15px;background-color:#fafafa;border-top:1px dashed #ccc;border-bottom:1px dashed #ccc}.panel-group .panel-heading a{display:block;padding:10px 0 9px;color:#444;text-decoration:none}.panel-group .panel-heading a:before{content:"\e082";margin-right:7px}.panel-group .panel-heading a:hover{background-color:#f5f5f5}.panel-group .panel-heading a:focus{outline:0}.panel-group .panel-heading a.collapsed:before{content:"\e081";margin-right:7px}.panel-group .panel-heading .panel-title{font-size:13px}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:0 none}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:0 none}.well{background-color:#f1f1f1;border:1px solid #e5e5e5;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.well-lg{border-radius:0}.well-sm{border-radius:0}.scrollable::-webkit-scrollbar{height:16px;width:10px}.scrollable::-webkit-scrollbar:hover{background-color:#f3f3f3;border:1px solid #dbdbdb}.scrollable::-webkit-scrollbar-button:start:decrement,.scrollable::-webkit-scrollbar-button:end:increment{background-color:transparent;display:block;height:0}.scrollable::-webkit-scrollbar-track{background-clip:padding-box;border:solid transparent;border-width:0 0 0 4px}.scrollable::-webkit-scrollbar-track-piece{background-color:transparent;border-radius:0}.scrollable::-webkit-scrollbar-thumb{background-color:#515151;background-color:rgba(0,0,0,.2);border:solid transparent;border-width:0;-webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);box-shadow:inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);background-clip:padding-box}.scrollable::-webkit-scrollbar-thumb:hover{background-color:#949494}.scrollable::-webkit-scrollbar-thumb:active{background-color:#3b3b3b;background-color:rgba(0,0,0,.5);-webkit-box-shadow:inset 1px 1px 3px rgba(0,0,0,.35);box-shadow:inset 1px 1px 3px rgba(0,0,0,.35)}.scrollable::-webkit-scrollbar-thumb:vertical,.scrollable::-webkit-scrollbar-thumb:horizontal{background-color:#c6c6c6;border-radius:0}.modal-content{color:#222;border:1px solid #aaa;border:1px solid rgba(0,0,0,.333);border-radius:0;-webkit-box-shadow:0 4px 16px rgba(0,0,0,.2);box-shadow:0 4px 16px rgba(0,0,0,.2)}.modal-backdrop{background-color:#fff}.modal-header .close{font-weight:400;opacity:.4;filter:alpha(opacity=40)}.modal-body{padding:15px}.modal-footer{margin-top:5px}.tooltip{font-size:11px;font-weight:700;line-height:1.25;word-break:break-word}.tooltip.in{opacity:1;filter:alpha(opacity=100)}.tooltip-inner{padding:7px 9px;background-color:#2a2a2a;border:1px solid #fff;border-radius:0}.tooltip-arrow:before{content:" ";position:absolute;z-index:-1;border:7px solid transparent}.tooltip.top .tooltip-arrow,.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:1px}.tooltip.top .tooltip-arrow:before,.tooltip.top-left .tooltip-arrow:before,.tooltip.top-right .tooltip-arrow:before{top:-5px;left:-7px;border-top-color:#fff;border-bottom:0 dotted}.tooltip.right .tooltip-arrow{left:1px}.tooltip.right .tooltip-arrow:before{top:-7px;right:-5px;border-right-color:#fff;border-left:0 dotted}.tooltip.left .tooltip-arrow{right:1px}.tooltip.left .tooltip-arrow:before{top:-7px;left:-5px;border-right:0 dotted;border-left-color:#fff}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{top:1px}.tooltip.bottom .tooltip-arrow:before,.tooltip.bottom-left .tooltip-arrow:before,.tooltip.bottom-right .tooltip-arrow:before{bottom:-5px;left:-7px;border-top:0 dotted;border-bottom-color:#fff}.popover{padding:0;background-color:#fff;border-radius:2px;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.2);box-shadow:0 2px 10px rgba(0,0,0,.2)}.popover-title,.popover-footer{padding:10px;font-size:13px;background-color:#f5f5f5;border-bottom:1px solid #ccc;border-bottom:1px solid rgba(0,0,0,.2);border-radius:0}.popover-footer{border-top:1px solid #ccc;border-top:1px solid rgba(0,0,0,.2);border-bottom:0}.popover-content{padding:10px}.carousel{width:100%;padding:50px;overflow:hidden;background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#eee 0,#f5f5f5 100%),-webkit-linear-gradient(bottom,#eee 0,#f5f5f5 100%);background-image:linear-gradient(top,#eee 0,#f5f5f5 100%),linear-gradient(bottom,#eee 0,#f5f5f5 100%);background-image:-moz-linear-gradient(center top,#eee 0,#f5f5f5 100%),-moz-linear-gradient(center bottom,#eee 0,#f5f5f5 100%);background-repeat:no-repeat;background-position:0 0,0 100%;background-size:100% 10px}.carousel-control{opacity:.33;filter:alpha(opacity=33);color:#777;text-shadow:none}.carousel-control.left{background-image:none}.carousel-control.right{background-image:none}.carousel-control:hover,.carousel-control:focus{color:#777}.carousel-control .icon-prev:before,.carousel-control .icon-next:before{content:''}.carousel-control .icon-prev{position:relative;display:inline-block;position:absolute;right:0}.carousel-control .icon-prev:before{border-radius:20px}.carousel-control .icon-prev:before,.carousel-control .icon-prev:after{content:"";position:absolute;width:0;height:0}.carousel-control .icon-prev:before{border:22px solid transparent}.carousel-control .icon-prev:after{border:19px solid transparent}.carousel-control .icon-prev:before,.carousel-control .icon-prev:after{right:100%;top:8px}.carousel-control .icon-prev:before{margin-top:-22px;border-right:22px solid;border-right-color:#777}.carousel-control .icon-prev:after{margin-top:-19px;border-right:19px solid #f5f5f5}.carousel-control .icon-next{position:relative;display:inline-block;position:absolute;right:0;left:50%}.carousel-control .icon-next:before{border-radius:20px}.carousel-control .icon-next:before,.carousel-control .icon-next:after{content:"";position:absolute;width:0;height:0}.carousel-control .icon-next:before{border:22px solid transparent}.carousel-control .icon-next:after{border:19px solid transparent}.carousel-control .icon-next:before,.carousel-control .icon-next:after{left:100%;top:8px}.carousel-control .icon-next:before{margin-top:-22px;border-left:22px solid;border-left-color:#777}.carousel-control .icon-next:after{margin-top:-19px;border-left:19px solid #f5f5f5}.carousel-indicators{bottom:5px;left:0;width:100%;margin-left:0}.carousel-indicators li{background-color:#c2c2c2;border:1px solid #c2c2c2}.carousel-indicators .active{margin:1px;width:10px;height:10px;background-color:#444;border:1px solid #444}.carousel-caption{right:0;bottom:0;left:0;padding:10px;color:#fff;text-shadow:none;background-color:#262626;background-color:rgba(0,0,0,.55)}
\ No newline at end of file diff --git a/public/fonts/octicons.eot b/public/fonts/octicons.eot Binary files differindex 659adc4719..2bf20bca00 100755 --- a/public/fonts/octicons.eot +++ b/public/fonts/octicons.eot diff --git a/public/fonts/octicons.svg b/public/fonts/octicons.svg index 23faa8628f..d932988bb5 100755 --- a/public/fonts/octicons.svg +++ b/public/fonts/octicons.svg @@ -17,9 +17,6 @@ Applies to all other files <font-face font-family="octicons" font-weight="400" font-stretch="normal" units-per-em="1024" ascent="832" descent="-192" /> <missing-glyph d="M512 832C229.25 832 0 602.75 0 320c0-226.25 146.688-418.125 350.156-485.812 25.594-4.688 34.938 11.125 34.938 24.625 0 12.188-0.469 52.562-0.719 95.312C242-76.81200000000001 211.906 14.5 211.906 14.5c-23.312 59.125-56.844 74.875-56.844 74.875-46.531 31.75 3.53 31.125 3.53 31.125 51.406-3.562 78.47-52.75 78.47-52.75 45.688-78.25 119.875-55.625 149-42.5 4.654 33 17.904 55.625 32.5 68.375C304.906 106.56200000000001 185.344 150.5 185.344 346.688c0 55.938 19.969 101.562 52.656 137.406-5.219 13-22.844 65.094 5.062 135.562 0 0 42.938 13.75 140.812-52.5 40.812 11.406 84.594 17.031 128.125 17.219 43.5-0.188 87.312-5.875 128.188-17.281 97.688 66.312 140.688 52.5 140.688 52.5 28-70.531 10.375-122.562 5.125-135.5 32.812-35.844 52.625-81.469 52.625-137.406 0-196.688-119.75-240-233.812-252.688 18.438-15.875 34.75-47 34.75-94.75 0-68.438-0.688-123.625-0.688-140.5 0-13.625 9.312-29.562 35.25-24.562C877.438-98 1024 93.875 1024 320 1024 602.75 794.75 832 512 832z" horiz-adv-x="1024" /> <glyph glyph-name="alert" unicode="" d="M1005.854 31.753000000000043l-438.286 767C556.173 818.694 534.967 831 512 831s-44.173-12.306-55.567-32.247l-438.286-767c-11.319-19.809-11.238-44.144 0.213-63.876C29.811-51.85500000000002 50.899-64 73.714-64h876.572c22.814 0 43.903 12.145 55.354 31.877S1017.173 11.94399999999996 1005.854 31.753000000000043zM576 64H448V192h128V64zM576 256H448V512h128V256z" horiz-adv-x="1024" /> -<glyph glyph-name="alignment-align" unicode="" d="M192 768C85.938 768 0 682.062 0 576s85.938-192 192-192c106.062 0 192 85.938 192 192S298.062 768 192 768zM672 224l160 160H384v-448l160 160 288-288 128 128L672 224z" horiz-adv-x="960" /> -<glyph glyph-name="alignment-aligned-to" unicode="" d="M384 256l128 128 288-288 160 160v-448H512l160 160L384 256zM192 384C85.938 384 0 469.938 0 576S85.938 768 192 768c106.062 0 192-85.938 192-192S298.062 384 192 384z" horiz-adv-x="960" /> -<glyph glyph-name="alignment-unalign" unicode="" d="M512 640L384 512 128 768 0 640l256-256L128 256l64-64 384 384L512 640zM640 256l128 128-64 64L320 64l64-64 128 128 256-256 128 128L640 256z" horiz-adv-x="896" /> <glyph glyph-name="arrow-down" unicode="" d="M448 384V640H192v-256H0l320-384 320 384H448z" horiz-adv-x="640" /> <glyph glyph-name="arrow-left" unicode="" d="M384 448V640L0 320l384-320V192h256V448H384z" horiz-adv-x="640" /> <glyph glyph-name="arrow-right" unicode="" d="M640 320L256 640v-192H0v-256h256v-192L640 320z" horiz-adv-x="640" /> @@ -28,172 +25,158 @@ Applies to all other files <glyph glyph-name="arrow-small-right" unicode="" d="M384 320L128 512v-128H0v-128h128v-128L384 320z" horiz-adv-x="384" /> <glyph glyph-name="arrow-small-up" unicode="" d="M192 512L0 256h128v-128h128V256h128L192 512z" horiz-adv-x="384" /> <glyph glyph-name="arrow-up" unicode="" d="M320 640L0 256h192v-256h256V256h192L320 640z" horiz-adv-x="640" /> -<glyph glyph-name="beer" unicode="" d="M896 576c-31 0-192 0-192 0v128c0 71-158 128-352 128s-352-57-352-128v-768c0-71 158-128 352-128s352 57 352 128v128s160 0 192 0 64 30 64 64 0 350 0 384-29 64-64 64z m-704-576h-64v512h64v-512z m192-64h-64v512h64v-512z m192 64h-64v512h64v-512z m-224 640c-124 0-224 29-224 64s100 64 224 64 224-29 224-64-100-64-224-64z m480-448h-128v256h128v-256z" horiz-adv-x="1024" /> -<glyph glyph-name="book" unicode="" d="M768 256h-128c-34 0-64-32-64-64h256c0 34-32 64-64 64z m-55 416c-167 0-209-32-233-56-24 24-66 56-233 56s-247-46-247-78v-586c29 16 119 48 214 56 115 9 234-9 234-32 0-16 8-31 31-32 0 0 0 0 1 0 0 0 0 0 1 0 23 1 31 16 31 32 0 23 119 41 234 32 94-7 185-40 214-56v586c0 32-80 78-247 78z m-265-572c-30 16-103 28-192 28s-170-12-192-27c0 0 0 411 0 443s64 59 192 59 192-27 192-59 0-444 0-444z m448 1c-22 15-103 27-192 27s-162-12-192-28c0 0 0 412 0 444s64 59 192 59 192-27 192-59 0-443 0-443z m-128 283h-128c-34 0-64-32-64-64h256c0 34-32 64-64 64z m0 128h-128c-34 0-64-32-64-64h256c0 34-32 64-64 64z m-448-128h-128c-32 0-64-30-64-64h256c0 32-30 64-64 64z m0-128h-128c-32 0-64-30-64-64h256c0 32-30 64-64 64z m0 256h-128c-32 0-64-30-64-64h256c0 32-30 64-64 64z" horiz-adv-x="1024" /> -<glyph glyph-name="bookmark" unicode="" d="M0 704v-768l192 128 192-128V704H0zM316.25 507.25l-71.875-51.938 27.188-83.406c2.75-8.375-0.688-11.062-7.562-6.594l-72 52.094-72-52.031c-6.844-4.469-10.312-1.781-7.562 6.594l27.219 83.406L67.783 507.25c-6.469 5.125-5 9.219 3.906 9.219l88 0.125 27.125 83.094c2.812 8.812 7.562 8.812 10.375 0l27.188-83.094 87.938-0.125C321.25 516.469 322.688 512.375 316.25 507.25z" horiz-adv-x="384" /> -<glyph glyph-name="briefcase" unicode="" d="M896 640H640v66c0 34.2-27.8 62-62 62H446c-34.2 0-62-27.8-62-62v-66H128c-35.3 0-64-28.7-64-64v-512c0-35.3 28.7-64 64-64h768c35.3 0 64 28.7 64 64V576C960 611.3 931.3 640 896 640zM448 688c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-48H448V688zM896 320H576v-64H448v64H128V576h64v-192h640V576h64V320z" horiz-adv-x="1024" /> -<glyph glyph-name="broadcast" unicode="" d="M448 640c142 0 256-115 256-256 0-69-28-132-72-178l-16-93c91 56 152 156 152 271 0 177-143 320-320 320s-320-143-320-320c0-115 61-215 152-271l-16 93c-45 46-72 109-72 178 0 142 114 256 256 256z m-64-320c-36 0-64-29-64-64v-128c0-36 30-64 64-64v-256h128v256c34 0 64 28 64 64v128c0 35-28 64-64 64s-64 0-64 0-28 0-64 0z m192 128c0 71-57 128-128 128s-128-57-128-128 57-128 128-128 128 57 128 128z m-128 384c-247 0-448-201-448-448 0-197 128-363 305-423l-12 72c-135 60-229 194-229 351 0 212 172 384 384 384s384-172 384-384c0-157-94-291-229-351l-12-72c177 60 305 225 305 423 0 247-201 448-448 448z" horiz-adv-x="896" /> +<glyph glyph-name="beaker" unicode="" d="M920-102L704 384V640h64v64H192v-64h64v-256L40-102c-19-42 12-90 58-90h764c46 0 77 48 58 90zM240 192l80 192V640h320v-256l80-192H240z m272 128h64v-64h-64v64z m-64 64h-64v64h64v-64z m0 192h64v-64h-64v64z m0 192h-64V832h64v-64z" horiz-adv-x="1024" /> +<glyph glyph-name="bell" unicode="" d="M896 64v-64H0v64l47 37c49 49 52 163 76 283 49 241 261 320 261 320 0 35 29 64 64 64s64-29 64-64c0 0 217-79 266-320 24-120 27-234 76-283l42-37z m-448-256c71 0 128 57 128 128H320c0-71 57-128 128-128z" horiz-adv-x="896" /> +<glyph glyph-name="book" unicode="" d="M128 512h256v-64H128v64z m0-192h256v64H128v-64z m0-128h256v64H128v-64z m704 320H576v-64h256v64z m0-128H576v-64h256v64z m0-128H576v-64h256v64z m128 384v-576c0-35-29-64-64-64H544l-64-64-64 64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h352l64-64 64 64h352c35 0 64-29 64-64z m-512-32l-32 32H64v-576h384V608z m448 32H544l-32-32v-544h384V640z" horiz-adv-x="1024" /> +<glyph glyph-name="bookmark" unicode="" d="M0-64l192 128 192-128V640c0 35-29 64-64 64H64c-35 0-64-29-64-64v-704z m72 580l88 1 27 83c3 9 7 9 10 0l27-83 88-1c9 0 11-3 4-9l-72-52 28-83c2-9-1-11-8-7l-72 52-72-52c-7-4-10-2-8 7l28 83-72 52c-7 6-5 9 4 9z" horiz-adv-x="384" /> +<glyph glyph-name="briefcase" unicode="" d="M576 576v64c0 35-29 64-64 64H384c-35 0-64-29-64-64v-64H64c-35 0-64-29-64-64v-512c0-35 29-64 64-64h768c35 0 64 29 64 64V512c0 35-29 64-64 64H576z m-192 64h128v-64H384v64z m448-384H512v-64H384v64H64V512h64v-192h640V512h64v-256z" horiz-adv-x="896" /> +<glyph glyph-name="broadcast" unicode="" d="M576 256h-64c35 0 64 29 64 64v64c0 35-29 64-64 64h-64c-35 0-64-29-64-64v-64c0-35 29-64 64-64h-64c-35 0-64-29-64-64v-128h64v-192c0-35 29-64 64-64h64c35 0 64 29 64 64V64h64V192c0 35-29 64-64 64zM448 384h64v-64h-64v64z m128-256h-64v-256h-64V128h-64v64h192v-64z m134 224c0 127-103 230-230 230S250 479 250 352c0-18 2-35 6-52v-127c-39 49-64 111-64 179 0 159 129 288 288 288s288-129 288-288c0-68-25-130-64-179V300c4 17 6 34 6 52z m250 0c0-184-104-344-256-424v67c119 74 198 206 198 357 0 233-189 422-422 422S58 585 58 352c0-151 79-283 198-357v-67C104 8 0 168 0 352 0 617 215 832 480 832s480-215 480-480z" horiz-adv-x="1024" /> <glyph glyph-name="browser" unicode="" d="M320 640h64v-64h-64V640zM192 640h64v-64h-64V640zM64 640h64v-64H64V640zM832 0H64V512h768V0zM832 576H448v64h384V576zM896 640c0 35.35-28.65 64-64 64H64c-35.35 0-64-28.65-64-64v-640c0-35.35 28.65-64 64-64h768c35.35 0 64 28.65 64 64V640z" horiz-adv-x="896" /> -<glyph glyph-name="bug" unicode="" d="M243.621 675.469C190.747 618.688 205.34 528 205.34 528s53.968-64 160-64c106.031 0 160.031 64 160.031 64s14.375 89.469-37.375 146.312c32.375 18.031 51.438 44.094 43.562 61.812-8.938 19.969-48.375 21.75-88.25 3.969-14.812-6.594-27.438-14.969-37.25-23.875-12.438 2.25-25.625 3.781-40.72 3.781-14.061 0-26.561-1.344-38.344-3.25-9.656 8.75-22.062 16.875-36.531 23.344-39.875 17.719-79.375 15.938-88.25-3.969C194.465 718.781 212.497 693.438 243.621 675.469zM644.746 262.25c-8.25 1.75-16.125 2.75-23.75 3.5 0 2.125 0.375 4.125 0.375 6.312 0 33.594-4.75 65.654-12.438 96.125 16.438-1.406 37.375 2.375 58.562 11.779 39.875 17.781 65 48.375 56.125 68.219-8.875 19.969-48.375 21.75-88.25 3.969-18.625-8.312-33.812-19.469-44-30.906-7.75 18.25-16.5 35.781-26.812 51.719-30.188-25.156-87.312-62.719-167.062-71.062v-321.781c0 0-0.25-32-32.031-32-31.75 0-32 32-32 32V401.781c-79.811 8.344-136.968 45.969-167.093 71.062-9.875-15.312-18.375-32-25.938-49.344-10.281 10.625-24.625 20.844-41.969 28.594-39.875 17.719-79.375 15.938-88.25-3.969-8.906-19.906 16.25-50.438 56.125-68.219 19.844-8.846 39.531-12.812 55.469-12.096-7.656-30.404-12.469-62.344-12.469-95.812 0-2.188 0.375-4.25 0.438-6.5-6.719-0.75-13.688-1.75-20.781-3.25-51.969-10.75-91.781-37.625-88.844-59.812 2.938-22.312 47.5-31.5 99.594-20.688 6.781 1.375 13.438 3.125 19.781 5.062C128.684 146 143.34 108.125 163.622 75.5c-12.031-6.062-24.531-15-36.031-26.625C95.715 17 82.779-21.75 98.715-37.68799999999999c15.938-15.937 54.656-3 86.531 28.812 9.344 9.375 16.844 19.25 22.656 29C251.434-22.5 305.965-48 365.465-48c60.343 0 115.781 26.25 159.531 69.938 5.875-10.312 13.75-20.812 23.625-30.688 31.812-31.875 70.625-44.812 86.562-28.875s3 54.625-28.875 86.5c-12.312 12.375-25.688 21.75-38.438 27.938 20.125 32.5 34.625 70.375 43.688 111.062 7.188-2.25 14.688-4.375 22.562-6.062 52.061-10.812 96.625-1.562 99.625 20.688C736.558 224.625 696.746 251.5 644.746 262.25z" horiz-adv-x="733.886" /> -<glyph glyph-name="calendar" unicode="" d="M704 320h-64v-128h64V320zM576 320h-64v-128h64V320zM704 512h-64v-128h64V512zM832 320h-64v-128h64V320zM576 128h-64v-128h64V128zM768 832h-64v-128h64V832zM256 832h-64v-128h64V832zM832 512h-64v-128h64V512zM576 512h-64v-128h64V512zM320 128h-64v-128h64V128zM192 320h-64v-128h64V320zM320 320h-64v-128h64V320zM832 768v-128H640V768H320v-128H128V768H0v-896h960V768H832zM896-64H64V576h832V-64zM192 128h-64v-128h64V128zM448 512h-64v-128h64V512zM448 128h-64v-128h64V128zM320 512h-64v-128h64V512zM448 320h-64v-128h64V320zM704 128h-64v-128h64V128z" horiz-adv-x="1024" /> -<glyph glyph-name="check" unicode="" d="M640 640L256 256 128 384 0 256l256-256 512 512L640 640z" horiz-adv-x="768" /> -<glyph glyph-name="checklist" unicode="" d="M760.688 315.78099999999995l-49.812 49.656c-6.438 6.529-16.938 6.594-23.375 0L582.5 260.5 462.375 140.125l-93.031 93.125c-6.531 6.562-17.031 6.562-23.5 0l-49.719-49.688c-6.531-6.562-6.531-17.062 0-23.562l104.781-104.875 17.969-17.875 31.688-31.812c6.562-6.562 17.188-6.562 23.562 0l49.625 49.688L760.625 292.22C767.25 298.688 767.25 309.188 760.688 315.78099999999995zM228.469 251.188L278.156 301c42.469 42.375 116.344 42.438 158.781-0.062l25.312-25.312L576 384V704H0v-704h320l-91.531 92.125C184.688 136.062 184.688 207.375 228.469 251.188zM192 640h320v-64H192V640zM192 512h320v-64H192V512zM128 320H64v64h64V320zM128 448H64v64h64V448zM128 576H64v64h64V576zM192 384h64v-64h-64V384z" horiz-adv-x="765.602" /> -<glyph glyph-name="chevron-down" unicode="" d="M512 512L320 320 128 512 0 384l320-320 320 320L512 512z" horiz-adv-x="640" /> -<glyph glyph-name="chevron-left" unicode="" d="M448 512L320 640 0 320l320-320 128 128L256 320 448 512z" horiz-adv-x="448" /> -<glyph glyph-name="chevron-right" unicode="" d="M128 640L0 512l192-192L0 128l128-128 320 320L128 640z" horiz-adv-x="448" /> -<glyph glyph-name="chevron-up" unicode="" d="M320 576L0 256l128-128 192 192 192-192 128 128L320 576z" horiz-adv-x="640" /> -<glyph glyph-name="circle-slash" unicode="" d="M320 640C143.219 640 0 496.781 0 320c0-176.75 143.219-320 320-320 176.75 0 320 143.25 320 320C640 496.781 496.75 640 320 640zM320 512c27.656 0 53.688-6.094 77.438-16.562L144.562 242.562C134.094 266.312 128 292.34400000000005 128 320 128 426 213.938 512 320 512zM320 128c-28.031 0-54.531 6.375-78.594 17.125l253.906 252.5C505.875 373.812 512 347.719 512 320 512 213.938 426.062 128 320 128z" horiz-adv-x="640" /> -<glyph glyph-name="circuit-board" unicode="" d="M320 576c35.346 0 64-28.654 64-64 0-35.346-28.654-64-64-64s-64 28.654-64 64C256 547.346 284.654 576 320 576zM960 64c0-106.039-85.961-192-192-192H320l192 192h81.128c22.132-38.258 63.494-64 110.872-64 70.692 0 128 57.308 128 128s-57.308 128-128 128c-47.377 0-88.74-25.742-110.872-64H448L156.044-99.95600000000002C100.845-66.23199999999997 64-5.419999999999959 64 64V576c0 106.039 85.961 192 192 192v-145.128C217.742 600.74 192 559.377 192 512c0-70.692 57.308-128 128-128 47.276 0 88.56 25.633 110.727 63.756l162.416 0.219C615.279 409.731 656.633 384 704 384c70.692 0 128 57.308 128 128s-57.308 128-128 128c-47.388 0-88.758-25.753-110.887-64.025l-162.097-0.219c-11.246 19.54-27.503 35.828-47.016 47.116V768h384c106.039 0 192-85.961 192-192V64zM640 128c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64S640 92.654 640 128zM640 512c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64S640 476.654 640 512z" horiz-adv-x="1024" /> -<glyph glyph-name="clippy" unicode="" d="M704-64h-640v576h640v-192h64v320c0 35-29 64-64 64h-192c0 71-57 128-128 128s-128-57-128-128h-192c-35 0-64-29-64-64v-704c0-35 29-64 64-64h640c35 0 64 29 64 64v128h-64v-128z m-512 704c29 0 29 0 64 0s64 29 64 64 29 64 64 64 64-29 64-64 32-64 64-64 33 0 64 0 64-29 64-64h-512c0 39 28 64 64 64z m-64-512h128v64h-128v-64z m448 128v128l-256-192 256-192v128h320v128h-320z m-448-256h192v64h-192v-64z m320 448h-320v-64h320v64z m-192-128h-128v-64h128v64z" horiz-adv-x="896" /> -<glyph glyph-name="clock" unicode="" d="M384 256h256l64 64-64 64H512V576l-64 64-64-64V256zM448 768C200.562 768 0 567.438 0 320c0-247.438 200.562-448 448-448 247.438 0 448 200.562 448 448C896 567.438 695.438 768 448 768zM448 0c-176.25 0-320 143.75-320 320 0 175.938 144.188 319.5 320 320 175.812-0.5 320-144.062 320-320C768 143.75 624.25 0 448 0z" horiz-adv-x="896" /> -<glyph glyph-name="cloud-download" unicode="" d="M832 512c-8.75 0-17.125-1.406-25.625-2.562C757.625 623.75 644.125 704 512 704c-132.156 0-245.562-80.25-294.406-194.562C209.156 510.594 200.781 512 192 512 85.938 512 0 426.062 0 320s85.938-192 192-192c20.531 0 39.875 4.25 58.375 10.375C284.469 100.625 331.312 75.25 384 67.5v65.25c-49.844 10.375-91.594 42.812-112.625 87.875C249.531 203 222.219 192 192 192c-70.656 0-128 57.375-128 128 0 70.656 57.344 128 128 128 25.281 0 48.625-7.562 68.406-20.094C281.344 548.219 385.594 640 512 640c126.5 0 229.75-92.219 250.5-212.75 20 13 43.875 20.75 69.5 20.75 70.625 0 128-57.344 128-128 0-70.625-57.375-128-128-128-10.25 0-20 1.5-29.625 3.75C773.438 154.875 725.938 128 672 128c-11.062 0-21.625 1.625-32 4v-64.938c10.438-1.688 21.062-3.062 32-3.062 61.188 0 116.5 24.625 156.938 64.438C830 128.375 830.875 128 832 128c106.062 0 192 85.938 192 192S938.062 512 832 512zM576 320H448v-320H320l192-192 192 192H576V320z" horiz-adv-x="1024" /> -<glyph glyph-name="cloud-upload" unicode="" d="M512 448L320 256h128v-320h128V256h128L512 448zM832 512c-8.75 0-17.125-1.406-25.625-2.562C757.625 623.812 644.125 704 512 704c-132.156 0-245.562-80.188-294.406-194.562C209.156 510.594 200.781 512 192 512 85.938 512 0 426 0 320c0-106.062 85.938-192 192-192 20.531 0 39.875 4.25 58.375 10.438C284.469 100.625 331.312 75.25 384 67.5v65.25c-49.844 10.375-91.594 42.812-112.625 87.75C249.531 203 222.219 192 192 192c-70.656 0-128 57.375-128 128 0 70.656 57.344 128 128 128 25.281 0 48.625-7.562 68.406-20.156C281.344 548.219 385.594 640 512 640c126.5 0 229.75-92.219 250.5-212.75 20 13 43.875 20.75 69.5 20.75 70.625 0 128-57.344 128-128 0-70.625-57.375-128-128-128-10.25 0-20 1.5-29.625 3.75C773.438 154.875 725.938 128 672 128c-11.062 0-21.625 1.625-32 4v-64.938c10.438-1.688 21.062-3.062 32-3.062 61.188 0 116.5 24.688 157 64.438 1 0 1.875-0.438 3-0.438 106.062 0 192 85.938 192 192C1024 426 938.062 512 832 512z" horiz-adv-x="1024" /> +<glyph glyph-name="bug" unicode="" d="M704 192h192v64H704v64l203 66-22 60-181-62v64c0 35-29 64-64 64v64c0 31-23 56-53 62l66 66h115V768H627L499 640h-38L333 768H192v-64h115l66-66c-30-6-53-31-53-62v-64c-35 0-64-29-64-64v-64L75 446l-22-60 203-66v-64H64v-64h192v-64L53 62l22-60 181 62v-64c0-35 29-64 64-64h64l64 64V448h64v-448l64-64h64c35 0 64 29 64 64v64l181-62 22 60-203 66v64zM576 512H384v64h192v-64z" horiz-adv-x="1024" /> +<glyph glyph-name="calendar" unicode="" d="M768 704h-64v-96c0-18-14-32-32-32H544c-18 0-32 14-32 32v96H320v-96c0-18-14-32-32-32H160c-18 0-32 14-32 32v96H64c-35 0-64-29-64-64v-704c0-35 29-64 64-64h704c35 0 64 29 64 64V640c0 35-29 64-64 64z m0-768H64V512h704v-576zM256 640h-64V768h64v-128z m384 0h-64V768h64v-128zM320 384h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64zM192 256h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64zM192 128h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64zM192 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z" horiz-adv-x="896" /> +<glyph glyph-name="check" unicode="" d="M768 512L256 0 0 256l96 96 160-160 416 416 96-96z" horiz-adv-x="768" /> +<glyph glyph-name="checklist" unicode="" d="M208 166c1 21 10 42 25 56l64 60c16 15 35 22 55 22s41-8 57-23l39-40 128 128V640c0 35-29 64-64 64H64c-35 0-64-29-64-64v-576c0-35 29-64 64-64h272L231 108c-15 16-23 36-23 58z m-16 474h320v-64H192v64z m-64-192H64v64h64v-64z m0 128H64v64h64v-64z m64-64h320v-64H192v64z m544-224L448 0 288 164l64 60 96-96 224 224 64-64z" horiz-adv-x="768" /> +<glyph glyph-name="chevron-down" unicode="" d="M320 128L0 448l96 96 224-240 224 240 96-96-320-320z" horiz-adv-x="640" /> +<glyph glyph-name="chevron-left" unicode="" d="M352 640l96-96-240-224 240-224-96-96L32 320l320 320z" horiz-adv-x="512" /> +<glyph glyph-name="chevron-right" unicode="" d="M480 320L160 0l-96 96 240 224L64 544l96 96 320-320z" horiz-adv-x="512" /> +<glyph glyph-name="chevron-up" unicode="" d="M640 256l-96-96-224 240L96 160 0 256l320 320 320-320z" horiz-adv-x="640" /> +<glyph glyph-name="circle-slash" unicode="" d="M448 768C201 768 0 567 0 320s201-448 448-448 448 201 448 448S695 768 448 768z m0-83c83 0 160-28 222-75L158 98c-47 62-75 139-75 222 0 201 164 365 365 365z m0-730c-83 0-160 28-222 75l512 512c47-62 75-139 75-222 0-201-164-365-365-365z" horiz-adv-x="896" /> +<glyph glyph-name="circuit-board" unicode="" d="M192 512c0 35 29 64 64 64s64-29 64-64-29-64-64-64-64 29-64 64z m512 0c0 35-29 64-64 64s-64-29-64-64 29-64 64-64 64 29 64 64z m0-384c0 35-29 64-64 64s-64-29-64-64 29-64 64-64 64 29 64 64zM832 768H320v-139c23-12 41-30 53-53h150c27 50 85 82 150 67 48-12 87-51 98-99 20-88-46-166-131-166-51 0-95 28-117 70H373c-27-51-85-82-150-66-47 11-86 50-97 97-16 65 15 123 66 150V768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64l320 320h139c27 50 85 82 150 67 48-12 87-51 98-99 20-88-46-166-131-166-51 0-95 28-117 70h-75L256-128h576c35 0 64 29 64 64V704c0 35-29 64-64 64z" horiz-adv-x="896" /> +<glyph glyph-name="clippy" unicode="" d="M128 64h256v-64H128v64z m320 384H128v-64h320v64z m128-192V384L384 192l192-192V128h320V256H576z m-288 64H128v-64h160v64zM128 128h160v64H128v-64z m576-64h64v-128c-1-18-7-33-19-45s-27-18-45-19H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h192C256 775 313 832 384 832s128-57 128-128h192c35 0 64-29 64-64v-320h-64V512H64v-576h640V64zM128 576h512c0 35-29 64-64 64h-64c-35 0-64 29-64 64s-29 64-64 64-64-29-64-64-29-64-64-64h-64c-35 0-64-29-64-64z" horiz-adv-x="896" /> +<glyph glyph-name="clock" unicode="" d="M512 320h192v-128H448c-35 0-64 29-64 64V576h128v-256z m-64 365c201 0 365-164 365-365S649-45 448-45 83 119 83 320s164 365 365 365m0 83C201 768 0 567 0 320s201-448 448-448 448 201 448 448S695 768 448 768z" horiz-adv-x="896" /> +<glyph glyph-name="cloud-download" unicode="" d="M576 0h128l-192-192-192 192h128V320h128v-320z m192 512c0 28-58 192-288 192-155 0-288-123-288-256C65 448 0 351 0 256c0-98 64-192 192-192 28 0 170 0 192 0v83H192C88 147 83 238 83 256c0 11 3 109 109 109h83v83c0 89 100 173 205 173 163 0 200-99 205-115v-77h83c52 0 173-14 173-141 0-134-144-141-173-141H640v-83c24 0 127 0 128 0 133 0 256 74 256 224 0 156-123 224-256 224z" horiz-adv-x="1024" /> +<glyph glyph-name="cloud-upload" unicode="" d="M448 256H320l192 192 192-192H576v-320H448V256z m320 256c0 28-58 192-288 192-155 0-288-123-288-256C65 448 0 351 0 256c0-98 64-192 192-192 28 0 170 0 192 0v83H192C88 147 83 238 83 256c0 11 3 109 109 109h83v83c0 89 100 173 205 173 163 0 200-99 205-115v-77h83c52 0 173-14 173-141 0-134-144-141-173-141H640v-83c24 0 127 0 128 0 133 0 256 74 256 224 0 156-123 224-256 224z" horiz-adv-x="1024" /> <glyph glyph-name="code" unicode="" d="M608 640l-96-96 224-224L512 96l96-96 288 320L608 640zM288 640L0 320l288-320 96 96L160 320l224 224L288 640z" horiz-adv-x="896" /> -<glyph glyph-name="color-mode" unicode="" d="M0 704v-768h768V704H0zM64 0V640h640L64 0z" horiz-adv-x="768" /> -<glyph glyph-name="comment" unicode="" d="M768 704H128C66 704 0 640 0 576v-384c0-128 128-128 128-128h64v-256l256 256c0 0 258 0 320 0s128 68 128 128V576C896 638 832 704 768 704z" horiz-adv-x="896" /> -<glyph glyph-name="comment-discussion" unicode="" d="M256 320c0 64 0 192 0 192s-160 0-192 0-64-32-64-64 0-288 0-320 32-64 64-64 64 0 64 0v-192l194 192s162 0 192 0 62 32 62 64 0 64 0 64-128 0-192 0-128 64-128 128z m576 384c-32 0-416 0-448 0s-64-32-64-64 0-288 0-320 32-64 64-64 190 0 190 0l194-192v192s32 0 64 0 64 32 64 64 0 288 0 320-32 64-64 64z" horiz-adv-x="896" /> -<glyph glyph-name="credit-card" unicode="" d="M128 128h128v64h-128v-64z m192 0h128v64h-128v-64z m64 192h-256v-64h256v64z m-128 64h64l128 128h-64l-128-128z m192-128h192v64h-192v-64z m512 384c-32 0-864 0-896 0s-64-32-64-64 0-480 0-512 32-64 64-64 864 0 896 0 64 32 64 64 0 480 0 512-32 64-64 64z m0-256v-288s0-32-32-32h-832c-32 0-32 32-32 32v288h64l128 128h-192v32s0 32 32 32h832c32 0 32-32 32-32v-32h-384l-128-128h512z" horiz-adv-x="1024" /> +<glyph glyph-name="color-mode" unicode="" d="M704 704H64c-35 0-64-29-64-64v-640c0-35 29-64 64-64h640c35 0 64 29 64 64V640c0 35-29 64-64 64zM64 0V640h640L64 0z" horiz-adv-x="768" /> +<glyph glyph-name="comment" unicode="" d="M832 704H64c-35 0-64-29-64-64v-512c0-35 29-64 64-64h128v-224l224 224h416c35 0 64 29 64 64V640c0 35-29 64-64 64z m0-576H384L256 0V128H64V640h768v-512z" horiz-adv-x="896" /> +<glyph glyph-name="comment-discussion" unicode="" d="M256 256c0-35 29-64 64-64h256v-64c0-35-29-64-64-64H320L128-128V64H64c-35 0-64 29-64 64V448c0 35 29 64 64 64h192v-256z m640 448H384c-35 0-64-29-64-64v-320c0-35 29-64 64-64h256l192-192V256h64c35 0 64 29 64 64V640c0 35-29 64-64 64z" horiz-adv-x="1024" /> +<glyph glyph-name="credit-card" unicode="" d="M768 256H128v64h640v-64z m256 384v-576c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h896c35 0 64-29 64-64z m-64-192H64v-384h896V448z m0 192H64v-64h896v64zM384 192H128v-64h256v64z" horiz-adv-x="1024" /> <glyph glyph-name="dash" unicode="" d="M0 384v-128h512V384H0z" horiz-adv-x="512" /> -<glyph glyph-name="dashboard" unicode="" d="M416 367.5c-61.562 0-111.5-49.938-111.5-111.5S354.438 144.5 416 144.5 527.5 194.438 527.5 256c0 8.5-1.125 16.75-3 24.688C606.125 375.625 732.5 523.656 800 608c23.125 28.875-2.312 56.188-32 32-85.188-69.375-232.312-194.688-326.906-275.594C433.031 366.281 424.625 367.5 416 367.5zM447.875 576.125c0 17.656-14.344 32-32 32s-32-14.344-32-32 14.344-32 32-32S447.875 558.469 447.875 576.125zM639.875 320.125c0-17.656 14.375-32 32-32s32 14.344 32 32-14.375 32-32 32S639.875 337.781 639.875 320.125zM287.875 576.125c-17.656 0-32-14.344-32-32s14.344-32 32-32 32 14.344 32 32S305.531 576.125 287.875 576.125zM223.875 448.125c0 17.656-14.344 32-32 32s-32-14.344-32-32 14.344-32 32-32S223.875 430.469 223.875 448.125zM127.875 320.125c0-17.656 14.344-32 32-32s32 14.344 32 32-14.344 32-32 32S127.875 337.781 127.875 320.125zM575.875 544.125c0 17.656-14.375 32-32 32s-32-14.344-32-32 14.375-32 32-32S575.875 526.469 575.875 544.125zM792.875 495.312l-68.75-89.938C731.625 378.188 736 349.625 736 320c0-176.75-143.312-320-320-320S96 143.25 96 320c0 176.688 143.312 320 320 320 65.875 0 127-19.969 177.875-54.094l79.25 60.625C602.375 702.406 513.25 736 416 736 186.25 736 0 549.75 0 320s186.25-416 416-416 416 186.25 416 416C832 382.719 817.75 442 792.875 495.312z" horiz-adv-x="832" /> +<glyph glyph-name="dashboard" unicode="" d="M512 512h-64v64h64v-64z m256-192h-64v-64h64v64zM320 512h-64v-64h64v64z m-64-192h-64v-64h64v64z m704 352l-32 32-416-320c-4 1-64 0-64 0-35 0-64-29-64-64v-64c0-35 29-64 64-64h64c35 0 64 29 64 64v59l384 357zM858 410c12-39 19-80 19-122 0-219-178-397-397-397S83 69 83 288s178 397 397 397c77 0 148-22 209-60l60 60c-76 52-169 83-269 83C215 768 0 553 0 288s215-480 480-480 480 215 480 480c0 66-13 129-38 186l-64-64z" horiz-adv-x="1024" /> <glyph glyph-name="database" unicode="" d="M384-128C171.969-128 0-70.625 0 0c0 38.625 0 80.875 0 128 0 11.125 5.562 21.688 13.562 32C56.375 104.875 205.25 64 384 64s327.625 40.875 370.438 96c8-10.312 13.562-20.875 13.562-32 0-37.062 0-76.375 0-128C768-70.625 596-128 384-128zM384 128C171.969 128 0 185.375 0 256c0 38.656 0 80.844 0 128 0 6.781 2.562 13.375 6 19.906l0 0C7.938 408 10.5 412.031 13.562 416 56.375 360.906 205.25 320 384 320s327.625 40.906 370.438 96c3.062-3.969 5.625-8 7.562-12.094l0 0c3.438-6.531 6-13.125 6-19.906 0-37.062 0-76.344 0-128C768 185.375 596 128 384 128zM384 384C171.969 384 0 441.344 0 512c0 20.219 0 41.594 0 64 0 20.344 0 41.469 0 64C0 710.656 171.969 768 384 768c212 0 384-57.344 384-128 0-19.969 0-41.156 0-64 0-19.594 0-40.25 0-64C768 441.344 596 384 384 384zM384 704c-141.375 0-256-28.594-256-64s114.625-64 256-64 256 28.594 256 64S525.375 704 384 704z" horiz-adv-x="768" /> -<glyph glyph-name="device-camera" unicode="" d="M512 447.999c-70.691 0-127.999-57.308-127.999-127.999S441.309 192.00099999999998 512 192.00099999999998c5.713 0 11.337 0.38 16.852 1.105-46.344 7.058-81.851 47.079-81.851 95.394 0 53.295 43.204 96.499 96.499 96.499 48.314 0 88.336-35.507 95.394-81.851 0.726 5.515 1.105 11.139 1.105 16.852C639.999 390.691 582.691 447.999 512 447.999zM896 576H767.999L640 704H384L255.999 576H128c-35.348 0-64-28.652-64-64v-448c0-35.347 28.652-64 64-64h768c35.347 0 64 28.653 64 64V512C960 547.348 931.347 576 896 576zM416 640h192l64-64H352L416 640zM160.143 64C142.391 64 128 78.39099999999996 128 96.14300000000003V384h64v64h-64v31.857C128 497.609 142.391 512 160.143 512h182.526c-3.98-3.518-7.881-7.174-11.688-10.98-99.974-99.975-99.974-262.064 0-362.039l74.98-74.98H160.143zM512 128.00099999999998c-106.038 0-191.999 85.961-191.999 191.999S405.962 511.999 512 511.999 703.999 426.038 703.999 320 618.038 128.00099999999998 512 128.00099999999998zM832 352L681.327 512H832V352z" horiz-adv-x="1024" /> -<glyph glyph-name="device-camera-video" unicode="" d="M576 640c-35.347 0-64-28.653-64-64s28.653-64 64-64 64 28.653 64 64S611.347 640 576 640zM896 448L768 320v64c0 30.625-21.515 56.21-50.25 62.503C748.958 480.646 768 526.097 768 575.998 768 682.038 682.039 768 576 768c-101.123 0-183.986-78.178-191.45-177.393C350.516 621.306 305.442 640 256 640c-106.038 0-192-85.962-192-192.002C64 341.961 149.962 256 256 256h-64v-128h64v-128c0-35.347 28.653-64 64-64h384c35.347 0 64 28.653 64 64v64l128-128h64V448H896zM256 512c-35.347 0-64-28.653-64-64s28.653-64 64-64v-64c-70.692 0-128 57.308-128 127.999C128 518.692 185.308 576 256 576s128-57.307 128-128h-64C320 483.347 291.347 512 256 512zM576 128H448V256h128V128zM704 237.21299999999997c-33.526 33.547-70.276 70.317-73.373 73.414C624.837 316.418 616.837 320 608 320H416c-17.674 0-32-14.326-32-32v-192c0-8.329 3.183-15.915 8.396-21.607 0.53-0.58 39.123-39.164 74.409-74.393H352c-17.674 0-32 14.326-32 32V352c0 17.674 14.326 32 32 32h320c17.674 0 32-14.326 32-32V237.21299999999997zM576 448c-70.692 0-128 57.308-128 127.999C448 646.692 505.308 704 576 704s128-57.308 128-128.001C704 505.308 646.692 448 576 448zM896 128l-64 64 0.082 128.084L896 384.002V128z" horiz-adv-x="1024" /> -<glyph glyph-name="device-desktop" unicode="" d="M960 768c-32 0-864 0-896 0s-64-32-64-64 0-544 0-576 32-64 64-64 320 0 320 0-192-64-192-128c0-32 32-64 64-64s480 0 512 0 64 32 64 64c0 64-192 128-192 128s288 0 320 0 64 32 64 64 0 544 0 576-32 64-64 64z m0-640h-896v576h896v-576z m-64 512h-192c-384-64-542-300-576-384v-64h768v448z" horiz-adv-x="1024" /> -<glyph glyph-name="device-mobile" unicode="" d="M576 832H64C28.688 832 0 803.312 0 768v-896c0-35.375 28.688-64 64-64h512c35.375 0 64 28.625 64 64V768C640 803.312 611.375 832 576 832zM288 768h64c17.625 0 32-14.344 32-32s-14.375-32-32-32h-64c-17.656 0-32 14.344-32 32S270.344 768 288 768zM352-128h-64c-17.656 0-32 14.375-32 32s14.344 32 32 32h64c17.625 0 32-14.375 32-32S369.625-128 352-128zM576 0H64V640h512V0z" horiz-adv-x="640" /> -<glyph glyph-name="diff" unicode="" d="M448 576H320v-128H192v-128h128v-128h128V320h128V448H448V576zM192-64h384V64H192V-64zM640 832H128v-64h480l224-224v-608h64V576L640 832zM0 704v-896h768V512L576 704H0zM704-128H64V640h480l160-160V-128z" horiz-adv-x="896" /> -<glyph glyph-name="diff-added" unicode="" d="M512 512h-128v-128h-128v-128h128v-128h128v128h128v128h-128v128z m320 256c-32 0-736 0-768 0s-64-32-64-64 0-736 0-768 32-64 64-64 736 0 768 0 64 32 64 64 0 736 0 768-32 64-64 64z m-64-736c0-16-17-32-32-32s-558 0-576 0-32 12-32 32c0 16 0 560 0 576s16 32 32 32 561 0 576 0 32-16 32-32 0-560 0-576z" horiz-adv-x="896" /> -<glyph glyph-name="diff-ignored" unicode="" d="M832 768h-768c-32 0-64-32-64-64v-768c0-32 32-64 64-64h768c32 0 64 32 64 64v768c0 32-32 64-64 64z m-64-736c0-16-17-32-32-32h-576c-18 0-32 12-32 32v576c0 16 16 32 32 32h576c15 0 32-16 32-32v-576z m-512 194v-98h98l286 286v98h-98l-286-286z" horiz-adv-x="896" /> -<glyph glyph-name="diff-modified" unicode="" d="M832 768h-768c-32 0-64-32-64-64v-768c0-32 32-64 64-64h768c32 0 64 32 64 64v768c0 32-32 64-64 64z m-64-736c0-16-17-32-32-32h-576c-18 0-32 12-32 32v576c0 16 16 32 32 32h576c15 0 32-16 32-32v-576z m-320 416c-71 0-128-57-128-128s57-128 128-128 128 57 128 128-57 128-128 128z" horiz-adv-x="896" /> -<glyph glyph-name="diff-removed" unicode="" d="M832 768h-768c-32 0-64-32-64-64v-768c0-32 32-64 64-64h768c32 0 64 32 64 64v768c0 32-32 64-64 64z m-64-736c0-16-17-32-32-32h-576c-18 0-32 12-32 32v576c0 16 16 32 32 32h576c15 0 32-16 32-32v-576z m-512 224h384v128h-384v-128z" horiz-adv-x="896" /> -<glyph glyph-name="diff-renamed" unicode="" d="M832 768h-768c-32 0-64-32-64-64v-768c0-32 32-64 64-64h768c32 0 64 32 64 64v768c0 32-32 64-64 64z m-64-736c0-16-17-32-32-32h-576c-18 0-32 12-32 32v576c0 16 16 32 32 32h576c15 0 32-16 32-32v-576z m-320 352h-192v-128h192v-128l256 192-256 192v-128z" horiz-adv-x="896" /> -<glyph glyph-name="ellipsis" unicode="" d="M640 512c-64 0-448 0-512 0s-128-64-128-128 0-64 0-128 64-128 128-128 448 0 512 0 128 64 128 128 0 64 0 128-64 128-128 128z m-384-256h-128v128h128v-128z m192 0h-128v128h128v-128z m192 0h-128v128h128v-128z" horiz-adv-x="768" /> -<glyph glyph-name="eye" unicode="" d="M512 704c-192 0-416-128-512-384 96-192 288-320 512-320s416 128 512 320c-96 256-320 384-512 384z m0-640c-192 0-352 128-384 256 32 128 192 256 384 256s352-128 384-256c-32-128-192-256-384-256z m0 448c-20 0-38-4-56-9 33-15 56-48 56-87 0-53-43-96-96-96-39 0-72 23-87 56-5-18-9-36-9-56 0-106 86-192 192-192s192 86 192 192-86 192-192 192z" horiz-adv-x="1024" /> -<glyph glyph-name="file-binary" unicode="" d="M0-128V768h576l192-192v-704H0zM704 512L512 704H64v-768h640V512zM320 320H128V576h192V320zM256 512h-64v-128h64V512zM256 64h64v-64H128v64h64V192h-64v64h128V64zM512 384h64v-64H384v64h64V512h-64v64h128V384zM576 0H384V256h192V0zM512 192h-64v-128h64V192z" horiz-adv-x="768" /> -<glyph glyph-name="file-code" unicode="" d="M288 448L128 288l160-160 64 64-96 96 96 96L288 448zM416 384l96-96-96-96 64-64 160 160L480 448 416 384zM576 768H0v-896h768V576L576 768zM704-64H64V704h448l192-192V-64z" horiz-adv-x="768" /> -<glyph glyph-name="file-directory" unicode="" d="M832 640c-32 0-336 0-352 0s-32 16-32 32 0 0 0 32-32 64-64 64-288 0-320 0-64-32-64-64 0-704 0-704h896s0 544 0 576-32 64-64 64z m-448 0h-320s0 15 0 32 16 32 32 32 241 0 256 0 32-15 32-32 0-32 0-32z" horiz-adv-x="896" /> -<glyph glyph-name="file-media" unicode="" d="M576 768H0v-896h768V576L576 768zM704-64H64V704h448l192-192V-64zM128 576v-512h128c0 70.625 57.344 128 128 128-70.656 0-128 57.375-128 128 0 70.656 57.344 128 128 128 70.625 0 128-57.344 128-128 0-70.625-57.375-128-128-128 70.625 0 128-57.375 128-128h128V448L512 576H128z" horiz-adv-x="768" /> -<glyph glyph-name="file-pdf" unicode="" d="M576 768H0v-896h768V576L576 768zM64 704h255.812c-13.188-4.094-27.281-15.031-34.625-42.875-13.25-49.406-7.031-130.75 15.625-209.344C276.688 370.562 178.188 175.125 171.531 163.5c-15.625-4.875-65.344-23.625-107.531-59.812V704zM347.125 396.531c57.625-149.781 95-149.531 135.188-167.594C398.344 216 334.219 206.75 249.781 169.5 246.094 163.062 326.281 315.40599999999995 347.125 396.531zM704-64H65.844 64v0.375c0.781-0.062 1.094-0.375 1.844-0.375 33.812 0 84.75 21 180.562 182.375 38.188 15.438 72.062 26.875 78.469 28.938 58.812 14.875 125 26.625 187.562 33.375C566.875 153.5 639.125 135 680.25 132.375c9.625-0.5 16.062 1.188 23.75 2V-64zM704 246.625c-23.688 14.688-54 25-89.125 25-24.25 0-50.625-1.375-78.688-4.375-26.938 13-92.562 32.719-147.188 190.219 17.094 103.625 12.719 173.562 12.719 173.562 6.781 52.938-23.344 72.844-51.625 72.844 0 0-0.279 0.125-0.344 0.125H512l192-192V246.625z" horiz-adv-x="768" /> -<glyph glyph-name="file-submodule" unicode="" d="M832 320c-32 0-192 0-192 0 0 32-32 64-64 64s-96 0-128 0-64-32-64-64 0-320 0-320h512s0 224 0 256-32 64-64 64z m-256-64h-128s0 17 0 32 15 32 32 32 48 0 64 0 32-15 32-32 0-32 0-32z m256 320c-32 0-336 0-352 0s-32 17-32 32 0 0 0 32-32 64-64 64-288 0-320 0-64-32-64-64 0-640 0-640h320s0 352 0 384 32 64 64 64 224 0 256 0 64-32 64-64h192s0 96 0 128-32 64-64 64z m-448 0h-320s0 16 0 32 16 32 32 32 240 0 256 0 32-17 32-32 0-32 0-32z" horiz-adv-x="896" /> -<glyph glyph-name="file-symlink-directory" unicode="" d="M832 640h-352c-16 0-32 16-32 32s0 0 0 32-32 64-64 64h-320c-32 0-64-32-64-64s0-704 0-704h896s0 544 0 576-32 64-64 64z m-768 32c0 17 16 32 32 32h256c15 0 32-15 32-32s0-32 0-32h-320s0 15 0 32z m384-544v128c-125 0-224-56-256-192 0 209 107 320 256 320 0 49 0 128 0 128l256-192-256-192z" horiz-adv-x="896" /> -<glyph glyph-name="file-symlink-file" unicode="" d="M576 768h-576v-896h768v704l-192 192z m128-832h-640v768h448l192-192v-576z m-320 448c-149 0-256-111-256-320 32 136 131 192 256 192v-128l256 192-256 192s0-79 0-128z" horiz-adv-x="768" /> -<glyph glyph-name="file-text" unicode="" d="M448 576H128v-64h320V576zM576 768H0v-896h768V576L576 768zM704-64H64V704h448l192-192V-64zM128 64h512v64H128V64zM128 192h512v64H128V192zM128 320h512v64H128V320z" horiz-adv-x="768" /> -<glyph glyph-name="file-zip" unicode="" d="M320 256v64h-64v-64H320zM320 384v64h-64v-64H320zM320 512v64h-64v-64H320zM192 448h64v64h-64V448zM576 768H0v-896h768V576L576 768zM704-64H64V704h192v-64h64v64h192l192-192V-64zM192 576h64v64h-64V576zM192 320h64v64h-64V320zM192 192l-64-64v-128h256V128l-64 64h-64v64h-64V192zM320 128v-64H192v64H320z" horiz-adv-x="768" /> +<glyph glyph-name="desktop-download" unicode="" d="M256 448h192V832h128v-384h192L512 192 256 448z m704 256H704v-64h256v-512H64V640h256v64H64c-35 0-64-29-64-64v-576c0-35 29-64 64-64h342c-16-39-55-89-150-128h512c-95 39-134 89-150 128h342c35 0 64 29 64 64V640c0 35-29 64-64 64z" horiz-adv-x="1024" /> +<glyph glyph-name="device-camera" unicode="" d="M960 640H448c0 35-29 64-64 64H128c-35 0-64-29-64-64-35 0-64-29-64-64v-576c0-35 29-64 64-64h896c35 0 64 29 64 64V576c0 35-29 64-64 64zM384 512H128v64h256v-64z m288-448c-124 0-224 100-224 224s100 224 224 224 224-100 224-224-100-224-224-224z m160 224c0-88-72-160-160-160s-160 72-160 160 72 160 160 160 160-72 160-160z" horiz-adv-x="1024" /> +<glyph glyph-name="device-camera-video" unicode="" d="M973 634L640 402V576c0 35-29 64-64 64H64c-35 0-64-29-64-64v-576c0-35 29-64 64-64h512c35 0 64 29 64 64V174l333-232c21-15 51 0 51 26V608c0 26-30 41-51 26z" horiz-adv-x="1024" /> +<glyph glyph-name="device-desktop" unicode="" d="M960 704H64c-35 0-64-29-64-64v-576c0-35 29-64 64-64h342c-16-39-55-89-150-128h512c-95 39-134 89-150 128h342c35 0 64 29 64 64V640c0 35-29 64-64 64z m0-576H64V640h896v-512z" horiz-adv-x="1024" /> +<glyph glyph-name="device-mobile" unicode="" d="M576 832H64C29 832 0 803 0 768v-896c0-35 29-64 64-64h512c35 0 64 29 64 64V768c0 35-29 64-64 64zM320-147c-46 0-83 37-83 83s37 83 83 83 83-37 83-83-37-83-83-83z m256 211H64V704h512v-640z" horiz-adv-x="640" /> +<glyph glyph-name="diff" unicode="" d="M384 384h128v-64H384v-128h-64V320H192v64h128V512h64v-128zM192 0h320v64H192v-64z m288 704l224-224v-608c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h416z m160-256L448 640H64v-768h576V448zM544 832S192 832 192 832v-64h320l256-256v-512h64V544L544 832z" horiz-adv-x="896" /> +<glyph glyph-name="diff-added" unicode="" d="M832 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h768c35 0 64 29 64 64V704c0 35-29 64-64 64z m0-832H64V704h768v-768zM384 256H192V384h192V576h128v-192h192v-128H512v-192H384V256z" horiz-adv-x="896" /> +<glyph glyph-name="diff-ignored" unicode="" d="M832 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h768c35 0 64 29 64 64V704c0 35-29 64-64 64z m0-832H64V704h768v-768zM288 64h-96v96l416 416h96v-96L288 64z" horiz-adv-x="896" /> +<glyph glyph-name="diff-modified" unicode="" d="M832 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h768c35 0 64 29 64 64V704c0 35-29 64-64 64z m0-832H64V704h768v-768zM256 320c0 106 86 192 192 192s192-86 192-192-86-192-192-192-192 86-192 192z" horiz-adv-x="896" /> +<glyph glyph-name="diff-removed" unicode="" d="M832 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h768c35 0 64 29 64 64V704c0 35-29 64-64 64z m0-832H64V704h768v-768zM704 256H192V384h512v-128z" horiz-adv-x="896" /> +<glyph glyph-name="diff-renamed" unicode="" d="M384 256H192V384h192V576l320-256-320-256V256z m512 448v-768c0-35-29-64-64-64H64c-35 0-64 29-64 64V704c0 35 29 64 64 64h768c35 0 64-29 64-64z m-64 0H64v-768h768V704z" horiz-adv-x="896" /> +<glyph glyph-name="ellipsis" unicode="" d="M704 512H64c-35 0-64-29-64-64v-256c0-35 29-64 64-64h640c35 0 64 29 64 64V448c0 35-29 64-64 64zM256 256H128V384h128v-128z m192 0H320V384h128v-128z m192 0H512V384h128v-128z" horiz-adv-x="768" /> +<glyph glyph-name="eye" unicode="" d="M516 704C192 704 0 320 0 320s192-384 516-384c316 0 508 384 508 384S832 704 516 704z m-4-640c-141 0-256 114-256 256 0 141 115 256 256 256 142 0 256-115 256-256 0-142-114-256-256-256z m128 256c0-71-57-128-128-128s-128 57-128 128 57 128 128 128 128-57 128-128z" horiz-adv-x="1024" /> +<glyph glyph-name="file-binary" unicode="" d="M256 64h64v-64H128v64h64V192h-64v64h128v-192z m512 480v-608c0-35-29-64-64-64H64c-35 0-64 29-64 64V704c0 35 29 64 64 64h480l224-224z m-64-32L512 704H64v-768h640V512z m-192 64H384v-64h64v-128h-64v-64h192v64h-64V576z m-384 0h192v-256H128V576z m64-192h64V512h-64v-128z m192-128h192v-256H384V256z m64-192h64V192h-64v-128z" horiz-adv-x="768" /> +<glyph glyph-name="file-code" unicode="" d="M544 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h640c35 0 64 29 64 64V544L544 768z m160-832H64V704h448l192-192v-576zM320 385l-96-97 96-96-32-64-160 160 160 160 32-63z m160 63l160-160-160-160-32 63 96 97-96 96 32 64z" horiz-adv-x="768" /> +<glyph glyph-name="file-directory" unicode="" d="M832 576H448v64c0 42-20 64-64 64H64c-35 0-64-29-64-64v-640c0-35 29-64 64-64h768c35 0 64 29 64 64V512c0 35-29 64-64 64z m-448 0H64v64h320v-64z" horiz-adv-x="896" /> +<glyph glyph-name="file-media" unicode="" d="M384 512h128v-128H384V512z m384 32v-608c0-35-29-64-64-64H64c-35 0-64 29-64 64V704c0 35 29 64 64 64h480l224-224z m-64-32L512 704H64v-704l192 320 128-256 128 128 192-192V512z" horiz-adv-x="768" /> +<glyph glyph-name="file-pdf" unicode="" d="M544 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h640c35 0 64 29 64 64V544L544 768zM64 704h256c-7-2-13-6-20-13-6-6-11-16-15-30-7-25-9-57-6-94s11-75 22-115c-15-47-39-103-71-170s-51-106-58-118c-9-3-23-9-44-19-21-9-42-23-64-41V704z m283-307c29-72 54-117 75-134s41-29 60-34c-41-6-79-13-116-21-36-8-75-21-116-38 1 1 14 28 39 80s45 101 58 147z m357-461H96c-4 0-8 1-11 2 13 4 29 13 47 28 29 24 67 74 114 152 20 8 37 15 52 20l27 9c29 8 60 15 92 21 32 5 64 10 95 13 29-14 58-25 89-34 31-8 58-13 79-15 9 0 17 1 24 2v-198z m0 311c-12 7-26 13-41 18-15 4-31 6-48 7-25 0-51-2-79-5-15 4-36 18-63 41s-55 73-84 149c8 53 12 95 13 126s1 47 0 48c3 26-2 45-13 56s-24 17-39 17h162l192-192v-265z" horiz-adv-x="768" /> +<glyph glyph-name="file-submodule" unicode="" d="M640 384H256v-448h576c35 0 64 29 64 64V320H640v64z m-64-128H320v64h256v-64z m256 320H448v64c0 42-20 64-64 64H64c-35 0-64-29-64-64v-640c0-35 29-64 64-64h128V384c0 35 29 64 64 64h384c35 0 64-29 64-64h192V512c0 35-29 64-64 64z m-448 0H64v64h320v-64z" horiz-adv-x="896" /> +<glyph glyph-name="file-symlink-directory" unicode="" d="M832 576H448v64c0 42-20 64-64 64H64c-35 0-64-29-64-64v-640c0-35 29-64 64-64h768c35 0 64 29 64 64V512c0 35-29 64-64 64zM64 640h320v-64H64v64z m384-576V192c-63 1-118-14-163-45s-76-80-93-147c1 105 25 184 72 239 47 54 108 81 184 81V448l256-192-256-192z" horiz-adv-x="896" /> +<glyph glyph-name="file-symlink-file" unicode="" d="M544 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h640c35 0 64 29 64 64V544L544 768z m160-832H64V704h448l192-192v-576zM384 544l256-192-256-192V288c-63 1-118-14-163-45s-76-80-93-147c1 105 25 184 72 239 47 54 108 81 184 81V544z" horiz-adv-x="768" /> +<glyph glyph-name="file-text" unicode="" d="M384 512H128v64h256v-64zM128 320h448v64H128v-64z m0-128h448v64H128v-64z m0-128h448v64H128v-64z m640 480v-608c0-35-29-64-64-64H64c-35 0-64 29-64 64V704c0 35 29 64 64 64h480l224-224z m-64-32L512 704H64v-768h640V512z" horiz-adv-x="768" /> +<glyph glyph-name="file-zip" unicode="" d="M544 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h640c35 0 64 29 64 64V544L544 768z m160-832H64V704h192v-64h64v64h192l192-192v-576zM320 576v64h64v-64h-64z m-64 0h64v-64h-64v64z m64-128v64h64v-64h-64z m-64 0h64v-64h-64v64z m64-128v64h64v-64h-64z m-64-82c-38-22-64-63-64-110v-64h256v64c0 71-57 128-128 128v64h-64v-82z m128-46v-64H256v64h128z" horiz-adv-x="768" /> <glyph glyph-name="flame" unicode="" d="M433 787c50-134 24-207-32-265-61-64-156-112-223-206-89-125-104-400 217-472-135 71-164 277-18 406-38-125 32-205 119-176 85 29 141-32 139-102-1-48-20-89-69-112 209 37 293 210 293 342 0 174-155 198-77 344-93-8-125-69-116-169 6-66-63-111-114-81-41 25-40 73-4 109 77 76 107 251-115 382z" horiz-adv-x="1024" /> -<glyph glyph-name="fold" unicode="" d="M896 576H672l-64-64h192L672 384H224L96 512h192l-64 64H0v-63.999L160 352 0 192v-64h224l64 64H96l128 128h448l128-128H608l64-64h224v64L736 352l160 160.001V576zM640 640H512V832H384v-192H256l192-192L640 640zM256 64h128v-192h128V64h128L448 256 256 64z" horiz-adv-x="896" /> -<glyph glyph-name="gear" unicode="" d="M447.938 482C358.531 482 286 409.469 286 320c0-89.375 72.531-162.062 161.938-162.062 89.438 0 161.438 72.688 161.438 162.062C609.375 409.469 537.375 482 447.938 482zM772.625 226.938l-29.188-70.312 52.062-102.25 6.875-13.5-72.188-72.188L611.75 24.625l-70.312-28.875L505.75-113.5l-4.562-14.5H399.156L355-4.687999999999988l-70.312 29-102.404-51.938-13.5-6.75-72.156 72.125 55.875 118.5-28.969 70.25L14.469 262.125 0 266.812V368.781L123.406 413l28.969 70.188-51.906 102.469-6.844 13.438 72.062 72.062 118.594-55.844 70.219 29.031 35.656 109.188L394.75 768h102l44.188-123.469 70.125-29.031L713.5 667.469l13.625 6.844 72.125-72.062-55.875-118.406L772.25 413.5l109.375-35.656L896 373.25v-101.938L772.625 226.938z" horiz-adv-x="896" /> -<glyph glyph-name="gift" unicode="" d="M448-128h320V192H448V-128zM64-128h320V192H64V-128zM447.75 455.812c31.469 3.5 66.875 7.406 87.375 9.719C619 474.875 694.5 550.406 703.812 634.25c9.312 83.75-51 144.125-134.688 134.719C503.688 761.656 443.844 714 416 653.625 388.156 714 328.312 761.656 262.906 769.031 179.188 778.375 118.781 718 128.188 634.25c9.344-83.844 84.875-159.312 168.656-168.719 20.531-2.312 55.938-6.281 87.406-9.719C383.75 451.594 384 448 384 448h64C448 448 448.25 451.594 447.75 455.812zM555.375 691.312c45.25 5.062 78-27.562 72.875-72.875-5-45.312-45.875-86.156-91.125-91.219-45.375-5.031-78 27.594-72.938 72.906C469.249 645.436 510.125 686.281 555.375 691.312zM294.906 527.219c-45.25 5.062-86.062 45.906-91.125 91.219-5.063 45.313 27.594 77.938 72.812 72.875 45.312-5.031 86.156-45.875 91.222-91.188C372.875 554.812 340.219 522.188 294.906 527.219zM448 448v-192h384V448H448zM0 256h384V448H0V256z" horiz-adv-x="896" /> -<glyph glyph-name="gist" unicode="" d="M416 448l96-96-96-96 64-64 160 160-160 160-64-64z m-416 320v-832h768v832h-768z m704-768h-640v704h640v-704z m-352 256l-96 96 96 96-64 64-160-160 160-160 64 64z" horiz-adv-x="768" /> -<glyph glyph-name="gist-secret" unicode="" d="M193 128l128-192h-256l-65 256 257 64-64-128z m448 128l64-128-128-192h256l64 256-256 64z m-84 0h-216l44-102-64-218h256l-64 218 44 102z m84 192h-384l-128-64h640l-128 64z m-64 256l-128-64-128 64-64-192h384l-64 192z" horiz-adv-x="896" /> -<glyph glyph-name="git-branch" unicode="" d="M512 640c-71 0-128-57-128-128 0-47 26-88 64-110v-18c0-64-64-128-128-128-53 0-95-11-128-29v303c38 22 64 63 64 110 0 71-57 128-128 128s-128-57-128-128c0-47 26-88 64-110v-419c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 34-13 64-34 87 19 23 49 41 98 41 128 0 256 128 256 256v18c38 22 64 63 64 110 0 71-57 128-128 128z m-384 64c35 0 64-29 64-64s-29-64-64-64-64 29-64 64 29 64 64 64z m0-768c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z m384 512c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z" horiz-adv-x="640" /> -<glyph glyph-name="git-commit" unicode="" d="M694.875 384C666.375 494.219 567.125 576 448 576c-119.094 0-218.375-81.781-246.906-192H0v-128h201.094C229.625 145.75 328.906 64 448 64c119.125 0 218.375 81.75 246.875 192H896V384H694.875zM448 192c-70.656 0-128 57.375-128 128 0 70.656 57.344 128 128 128 70.625 0 128-57.344 128-128C576 249.375 518.625 192 448 192z" horiz-adv-x="896" /> -<glyph glyph-name="git-compare" unicode="" d="M832 110s0 306 0 402-96 192-192 192c-64 0-64 0-64 0v128l-192-192 192-192v128s32 0 64 0 64-32 64-64 0-402 0-402c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110z m-64-174c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z m-448 128s-32 0-64 0-64 32-64 64 0 402 0 402c38 22 64 63 64 110 0 71-57 128-128 128s-128-57-128-128c0-47 26-88 64-110 0 0 0-306 0-402s96-192 192-192c64 0 64 0 64 0v-128l192 192-192 192v-128z m-192 512c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z" horiz-adv-x="896" /> -<glyph glyph-name="git-merge" unicode="" d="M640 384c-47.625 0-88.625-26.312-110.625-64.906C523.625 319.5 518 320 512 320c-131.062 0-255.438 99.844-300.812 223.438C238.469 566.906 256 601.281 256 640c0 70.656-57.344 128-128 128S0 710.656 0 640c0-47.219 25.844-88.062 64-110.281V110.25C25.844 88.06200000000001 0 47.25 0 0c0-70.625 57.344-128 128-128s128 57.375 128 128c0 47.25-25.844 88.062-64 110.25V340.531C276.156 251.5 392.375 192 512 192c6.375 0 11.625 0.438 17.375 0.625C551.5 154.188 592.5 128 640 128c70.625 0 128 57.375 128 128C768 326.656 710.625 384 640 384zM128-64c-35.312 0-64 28.625-64 64 0 35.312 28.688 64 64 64 35.406 0 64-28.688 64-64C192-35.375 163.406-64 128-64zM128 576c-35.312 0-64 28.594-64 64s28.688 64 64 64c35.406 0 64-28.594 64-64S163.406 576 128 576zM640 192c-35.312 0-64 28.625-64 64 0 35.406 28.688 64 64 64 35.375 0 64-28.594 64-64C704 220.625 675.375 192 640 192z" horiz-adv-x="768" /> -<glyph glyph-name="git-pull-request" unicode="" d="M704 110s0 306 0 402-96 192-192 192c-64 0-64 0-64 0v128l-192-192 192-192v128s32 0 64 0 64-32 64-64 0-402 0-402c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110z m-64-174c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z m-512 832c-71 0-128-57-128-128 0-47 26-88 64-110v-419c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110v419c38 22 64 63 64 110 0 71-57 128-128 128z m0-832c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z m0 640c-35 0-64 29-64 64s29 64 64 64 64-29 64-64-29-64-64-64z" horiz-adv-x="768" /> +<glyph glyph-name="fold" unicode="" d="M448 256l192-192H512v-192H384V64H256l192 192z m192 384H512V832H384v-192H256l192-192 192 192z m256-128c0 35-29 64-64 64H672l-64-64h192L672 384H224L96 512h192l-64 64H64c-35 0-64-29-64-64l160-160L0 192c0-35 29-64 64-64h160l64 64H96l128 128h448l128-128H608l64-64h160c35 0 64 29 64 64L736 352l160 160z" horiz-adv-x="896" /> +<glyph glyph-name="gear" unicode="" d="M896 271V373l-124 41-29 70 56 118-72 72-116-58-70 29-44 123H395l-40-124-71-29-118 56-72-72 58-116-29-70L0 369v-102l124-41 29-70-56-118 72-72 116 58 70-29 44-123h102l40 124 71 29 118-56 72 72-59 116 30 70 123 44zM448 128c-106 0-192 86-192 192s86 192 192 192 192-86 192-192-86-192-192-192z" horiz-adv-x="896" /> +<glyph glyph-name="gift" unicode="" d="M832 576h-88c12 21 21 43 23 58 4 43-7 78-33 103-23 24-52 31-87 31-3 0-5 0-7 0-34-1-71-16-98-37s-47-46-62-77c-15 31-35 56-62 77s-64 37-98 37c-1 0-2 0-2 0-36 0-68-6-92-31-26-25-37-60-33-103 2-15 11-37 23-58h-88c-35 0-64-29-64-64v-192h64v-320c0-35 29-64 64-64h576c35 0 64 29 64 64V320h64V512c0 35-29 64-64 64z m-306 56c11 23 27 43 48 59 19 15 46 25 67 26h6c29 0 42-7 51-16s21-25 19-61c-3-12-16-39-32-64H500l26 56z m-264 69c8 8 20 16 58 16 20 0 46-11 66-26 21-16 37-35 48-59l27-56H275c-16 25-29 52-32 64-2 36 10 52 19 61z m186-701H192V320h256v-320z m0 384H128V512h320v-128z m320-384H512V320h256v-320z m64 384H512V512h320v-128z" horiz-adv-x="896" /> +<glyph glyph-name="gist" unicode="" d="M480 512l160-160-160-160-48 48 112 112-112 112 48 48z m-192 0L128 352l160-160 48 48-112 112 112 112-48 48zM0 0V704c0 35 29 64 64 64h640c35 0 64-29 64-64v-704c0-35-29-64-64-64H64c-35 0-64 29-64 64z m64 0h640V704H64v-704z" horiz-adv-x="768" /> +<glyph glyph-name="gist-secret" unicode="" d="M512 160l64-224H320l64 224-48 96h224l-48-96z m128 288H256l-128-64h640l-128 64z m-64 256l-128-64-128 64-64-192h384l-64 192z m258-496l-194 48 64-128-128-192h206c29 0 55 20 62 48l36 146c9 34-12 69-46 78z m-578 48L62 208c-34-9-55-44-46-78l36-146c7-28 33-48 62-48h206L192 128l64 128z" horiz-adv-x="896" /> +<glyph glyph-name="git-branch" unicode="" d="M640 512c0 71-57 128-128 128s-128-57-128-128c0-47 26-88 64-110v-19c-1-33-15-63-40-88s-55-39-88-40c-53-1-95-10-128-29V530c38 22 64 63 64 110 0 71-57 128-128 128S0 711 0 640c0-47 26-88 64-110v-420C26 88 0 47 0 0c0-71 57-128 128-128s128 57 128 128c0 34-13 64-34 87 6 4 31 26 38 30 16 7 36 11 60 11 67 3 125 29 176 80s77 127 80 193h-1c39 23 65 64 65 111zM128 717c42 0 77-35 77-77s-35-77-77-77-77 35-77 77 35 77 77 77z m0-794c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z m384 512c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z" horiz-adv-x="640" /> +<glyph glyph-name="git-commit" unicode="" d="M695 384c-29 110-128 192-247 192s-218-82-247-192H0v-128h201c29-110 128-192 247-192s218 82 247 192h201V384H695zM448 179c-78 0-141 63-141 141s63 141 141 141 141-63 141-141-63-141-141-141z" horiz-adv-x="896" /> +<glyph glyph-name="git-compare" unicode="" d="M320 64h-64c-17 1-31 7-44 20s-19 27-20 44V530c38 22 64 63 64 110 0 71-57 128-128 128S0 711 0 640c0-47 26-88 64-110 0-111 0-402 0-402 2-50 22-94 60-132s82-58 132-60c0 0 65 0 64 0v-128l192 192-192 192v-128zM128 717c42 0 77-35 77-77s-35-77-77-77-77 35-77 77 35 77 77 77z m704-607c0 111 0 402 0 402-2 50-22 94-60 132s-82 58-132 60c0 0-65 0-64 0V832L384 640l192-192V576h64c17-1 31-7 44-20s19-27 20-44v-402c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110z m-64-187c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z" horiz-adv-x="896" /> +<glyph glyph-name="git-merge" unicode="" d="M640 384c-47 0-88-26-111-65v1c-67 1-145 23-200 65-48 37-96 103-121 156 29 23 48 59 48 99 0 71-57 128-128 128S0 711 0 640c0-47 26-88 64-110v-420C26 88 0 47 0 0c0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110V341c43-45 92-81 147-108s130-40 190-41v1c23-39 64-65 111-65 71 0 128 57 128 128s-57 128-128 128zM205 0c0-42-35-77-77-77s-77 35-77 77 35 77 77 77 77-35 77-77z m-77 563c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z m512-384c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z" horiz-adv-x="768" /> +<glyph glyph-name="git-pull-request" unicode="" d="M704 110c0 111 0 402 0 402-2 50-22 94-60 132s-82 58-132 60c0 0-65 0-64 0V832L256 640l192-192V576h64c17-1 31-7 44-20s19-27 20-44v-402c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110z m-64-187c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77zM256 640c0 71-57 128-128 128S0 711 0 640c0-47 26-88 64-110 0-99 0-356 0-420-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110V530c38 22 64 63 64 110z m-51-640c0-42-35-77-77-77s-77 35-77 77 35 77 77 77 77-35 77-77z m-77 563c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z" horiz-adv-x="768" /> <glyph glyph-name="globe" unicode="" d="M512 704c-212.077 0-384-171.923-384-384s171.923-384 384-384c25.953 0 51.303 2.582 75.812 7.49-9.879 4.725-10.957 40.174-1.188 60.385 10.875 22.5 45 79.5 11.25 98.625s-24.375 27.75-45 49.875-12.19 25.451-13.5 31.125c-4.5 19.5 19.875 48.75 21 51.75s1.125 14.25 0.75 17.625S545.75 265.25 542 265.625s-5.625-6-10.875-6.375-28.125 13.875-33 17.625-7.125 12.75-13.875 19.5-7.5 1.5-18 5.625-44.25 16.5-70.125 27-28.125 25.219-28.5 35.625-15.75 25.5-22.961 36.375c-7.209 10.875-8.539 25.875-11.164 22.5s13.5-42.75 10.875-43.875-8.25 10.875-15.75 20.625 7.875 4.5-16.125 51.75 7.5 71.344 9 96 20.25-9 10.5 6.75 0.75 48.75-6.75 60.75S275 602 275 602c1.125 11.625 37.5 31.5 63.75 49.875s42.281 4.125 63.375-2.625 22.5-4.5 15.375 2.25 3 10.125 19.5 7.5 21-22.5 46.125-20.625 2.625-4.875 6-11.25-3.75-5.625-20.25-16.875S469.25 599 498.5 577.625s20.25 14.25 17.25 30S537.125 611 537.125 611c18-12 14.674-0.66 27.799-4.785S613.625 572 613.625 572c-44.625-24.375-16.5-27-9-32.625s-15.375-16.5-15.375-16.5c-9.375 9.375-10.875-0.375-16.875-3.75s-0.375-12-0.375-12c-31.031-4.875-24-37.5-23.625-45.375s-19.875-19.875-25.125-31.125S536.75 395 527 393.5s-19.5 36.75-72 22.5c-15.828-4.297-51-22.5-32.25-59.625s49.875 10.5 60.375 5.25-3-28.875-0.75-29.25 29.625-1.031 31.125-33 41.625-29.25 50.25-30 37.5 23.625 41.625 24.75S626 309.125 662 288.5s54.375-17.625 66.75-26.25 3.75-25.875 15.375-31.5 58.125 1.875 69.75-17.25-48-115.125-66.75-125.625S719.75 53.375 701 38s-45-34.406-69.75-49.125c-21.908-13.027-25.85-36.365-35.609-43.732C767.496-16.67999999999995 896 136.64999999999998 896 320 896 532.077 724.077 704 512 704zM602 343.625c-5.25-1.5-16.125-11.25-42.75 4.5s-45 12.75-47.25 15.375c0 0-2.25 6.375 9.375 7.5 23.871 2.311 54-22.125 60.75-22.5s10.125 6.75 22.125 2.883C616.25 347.52 607.25 345.125 602 343.625zM476.375 665.75c-2.615 1.902 2.166 4.092 5.016 7.875 1.645 2.186 0.425 5.815 2.484 7.875 5.625 5.625 33.375 13.5 27.949-1.875C506.4 664.25 480.5 662.75 476.375 665.75zM543.5 617c-9.375 0.375-31.443 2.707-27.375 6.75 15.844 15.75-6 20.25-19.5 21.375S477.5 653.75 484.25 654.5s33.75-0.375 38.25-4.125 28.875-13.5 30.375-20.625S552.875 616.625 543.5 617zM624.875 619.625c-7.5-6-45.24 21.529-52.5 27.75-31.5 27-48.375 18-54.99 22.5-6.617 4.5-4.26 10.5 5.865 19.5s38.625-3 55.125-4.875 35.625-14.625 36-29.781C614.75 639.564 632.375 625.625 624.875 619.625z" horiz-adv-x="1024" /> -<glyph glyph-name="graph" unicode="" d="M704 576H512v-640h192V576zM960 384H768v-448h192V384zM64-128V0h64v64H64V192h64v64H64V384h64v64H64V576h64v64H64V768h64V832H0v-1024h1024v64H64zM448 256H256v-320h192V256z" horiz-adv-x="1024" /> -<glyph glyph-name="heart" unicode="♥" d="M384-32c399 314 384 425 384 512s-72 192-192 192-192-128-192-128-72 128-192 128-192-105-192-192-15-198 384-512z" horiz-adv-x="768.199" /> -<glyph glyph-name="history" unicode="" d="M448 768c-90.938 0-175.312-27.531-245.938-74.062L128 768v-256h256l-88 88c45.438 24.688 96.688 40 152 40 176.75 0 320-143.219 320-320 0-176.75-143.25-320-320-320-176.781 0-320 143.25-320 320 0 45.562 9.781 88.781 27 128H64v99.406C24.312 480.5 0 403.406 0 320c0-247.438 200.562-448 448-448 247.438 0 448 200.562 448 448C896 567.438 695.438 768 448 768zM447.031 1L512 64V256h128l64 64-64 64H512l-64 64L320 320l64-64v-192L447.031 1z" horiz-adv-x="896" /> -<glyph glyph-name="home" unicode="" d="M192 256l64-384h192V192h128v-320h192l64 384L512 576 192 256zM832 448V704H704l0.312-128.312L512 768 0 256h128l384 384 384-384h128L832 448z" horiz-adv-x="1024" /> +<glyph glyph-name="graph" unicode="" d="M1024-64v-64H0V832h64v-896h960z m-704 64H192V320h128v-320z m256 0H448V640h128v-640z m256 0H704V448h128v-448z" horiz-adv-x="1024" /> +<glyph glyph-name="heart" unicode="♥" d="M717 576c-33 40-80 61-141 64-62 0-108-27-141-64s-50-59-51-64c-1 5-18 27-51 64s-75 64-141 64c-61-3-108-24-141-64-33-39-50-82-51-128 0-33 6-97 43-171s150-188 341-341c191 153 305 267 342 341s42 139 42 171c-1 46-18 89-51 129z" horiz-adv-x="768" /> +<glyph glyph-name="history" unicode="" d="M512 0H384V448h320v-128H512v-320zM448 768c-140 0-264-65-346-166L0 704v-256h256l-96 96c67 85 171 141 288 141 201 0 365-164 365-365S649-45 448-45 83 119 83 320c0 22 2 43 6 64H5c-3-21-5-42-5-64 0-247 201-448 448-448s448 201 448 448S695 768 448 768z" horiz-adv-x="896" /> +<glyph glyph-name="home" unicode="" d="M1024 256L832 448V704H704v-128L512 768 0 256h128l64-320c0-35 29-64 64-64h512c35 0 64 29 64 64l64 320h128zM768-64H576V192H448v-256H256l-76 404 332 332 332-332-76-404z" horiz-adv-x="1024" /> <glyph glyph-name="horizontal-rule" unicode="" d="M63.938 384h128v-128h64V639.938h-64V448h-128V639.938H0V256h63.938V384zM639.875 256V384h-63.938v-128H639.875zM639.875 448V575.938h-63.938V448H639.875zM447.938 448V575.938h128v64h-192V256h64V384h128v64H447.938zM0 0h639.875V128H0V0z" horiz-adv-x="639.875" /> -<glyph glyph-name="hourglass" unicode="" d="M571 320c118 85 197 240 197 384 0 71-172 128-384 128s-384-57-384-128c0-144 80-299 197-384-118-85-197-240-197-384 0-71 172-128 384-128s384 57 384 128c0 144-80 299-197 384z m-187 448c141 0 256-29 256-64s-115-64-256-64-256 29-256 64 115 64 256 64z m-64-706c-154-7-238-40-253-82 16 114 75 189 141 251 73 68 112 60 112 103v-273z m-105 352c-70 55-122 130-142 215 70-32 183-53 311-53s241 21 311 53c-20-85-72-160-142-215-24 17-70 34-169 34s-145-17-169-34z m233-352v273c0-43 39-35 112-103 66-62 125-138 141-251-14 41-99 75-253 82z" horiz-adv-x="768" /> -<glyph glyph-name="hubot" unicode="" d="M512 768c-283 0-512-229-512-512 0 0 0-192 0-256s64-128 128-128 704 0 768 0 128 64 128 128 0 256 0 256c0 283-229 512-512 512z m96-768h-192c-18 0-32 14-32 32s14 32 32 32h192c18 0 32-14 32-32s-14-32-32-32z m288 128c0-32-32-64-64-64s-128 0-128 0c0 32-32 64-64 64s-224 0-256 0-64-32-64-64c0 0-96 0-128 0s-64 32-64 64 0 360 0 360c78 129 220 216 384 216s306-87 384-216c0 0 0-328 0-360z m-128 384c-32 0-480 0-512 0s-64-32-64-64 0-96 0-128 32-64 64-64 480 0 512 0 64 32 64 64 0 96 0 128-32 64-64 64z m0-128l-64-64h-128l-64 64-64-64h-128l-64 64v64h64l64-64 64 64h128l64-64 64 64h64v-64z" horiz-adv-x="1024" /> -<glyph glyph-name="inbox" unicode="" d="M704 640H64L0 256v-256h768V256L704 640zM576 256l-64-128H256l-64 128H79l49 320h512l49-320H576z" horiz-adv-x="768" /> -<glyph glyph-name="info" unicode="" d="M448 448c35 0 64 29 64 64s-29 64-64 64-64-29-64-64 29-64 64-64z m0 320c-247 0-448-201-448-448s201-448 448-448 448 201 448 448-201 448-448 448z m0-768c-177 0-320 143-320 320s143 320 320 320 320-143 320-320-143-320-320-320z m64 320c0 32-32 64-64 64s-32 0-64 0-64-32-64-64h64s0-160 0-192 32-64 64-64 32 0 64 0 64 32 64 64h-64s0 160 0 192z" horiz-adv-x="896" /> -<glyph glyph-name="issue-closed" unicode="" d="M704 515.969l-96-96L768 256l256 256-96 96L769.25 449.219 704 515.969zM512 0c-176.781 0-320 143.25-320 320 0 176.781 143.219 320 320 320 88.375 0 168.375-35.844 226.25-93.75l90.562 90.5C747.75 717.875 635.75 768 512 768 264.562 768 64 567.438 64 320c0-247.438 200.562-448 448-448 247.438 0 448 200.562 448 448L759.75 119.75C768.688 130.75 684.75 0 512 0zM576 576H448v-320h128V576zM448 64h128V192H448V64z" horiz-adv-x="1024" /> -<glyph glyph-name="issue-opened" unicode="" d="M448 768C200.562 768 0 567.438 0 320c0-247.438 200.562-448 448-448 247.438 0 448 200.562 448 448C896 567.438 695.438 768 448 768zM448 0c-176.781 0-320 143.25-320 320 0 176.781 143.219 320 320 320 176.75 0 320-143.219 320-320C768 143.25 624.75 0 448 0zM384 64h128V192H384V64zM384 256h128V576H384V256z" horiz-adv-x="896" /> -<glyph glyph-name="issue-reopened" unicode="" d="M639.125 64.75C585.75 24.625 520 0 448 0c-176.781 0-320 143.25-320 320 0 45.562 9.781 88.781 27 128H64v99.469C24.312 480.562 0 403.406 0 320c0-247.438 200.562-448 448-448 107.375 0 204.5 39.312 281.75 102.25L768-64V128H576L639.125 64.75zM384 64h128V192H384V64zM512 576H384v-320h128V576zM896 320c0 247.438-200.562 448-448 448-107.406 0-204.531-39.312-281.656-102.344L128 704v-192h192l-63.156 63.156C310.281 615.312 376 640 448 640c176.75 0 320-143.219 320-320 0-45.562-9.75-88.75-27-128h91v-99.5C871.688 159.438 896 236.5 896 320z" horiz-adv-x="896" /> -<glyph glyph-name="jersey" unicode="" d="M704 832h-192c0-32-33-64-97-64s-95 32-95 64h-192c0-128-2-384-128-384 0 0-1-544-1-576s32-64 64-64 672 0 704 0 64 32 64 64 0 576 0 576c-126 0-128 256-128 384z m-609-960c-16 0-31 10-31 32 0 32 0 480 0 480 119 64 128 192 128 384h64c0-96 32-191 160-192s160 96 160 192h64c0-186 32-276 64-339v-557s-593 0-609 0z m385 576l-32-32v-320l32-32h128l32 32v320l-32 32h-128z m96-320h-64v256h64v-256z m-352 320l-32-32v-320l32-32h128l32 32v320l-32 32h-128z m96-320h-64v256h64v-256z" horiz-adv-x="896" /> -<glyph glyph-name="jump-down" unicode="" d="M767.75 640H0.25L384 256.25 767.75 640zM0 128v-128h768V128H0z" horiz-adv-x="768" /> -<glyph glyph-name="jump-left" unicode="" d="M256.25 320L640-63.75v767.5L256.25 320zM0-64h128V704H0V-64z" horiz-adv-x="640" /> -<glyph glyph-name="jump-right" unicode="" d="M0-63.75L383.75 320 0 703.812V-63.75zM512 704v-768h128V704H512z" horiz-adv-x="640" /> -<glyph glyph-name="jump-up" unicode="" d="M0.188 0h767.5L384 383.75 0.188 0zM0 640v-128h768V640H0z" horiz-adv-x="768" /> -<glyph glyph-name="key" unicode="" d="M640.9 768.1c-141.4 0-256-114.6-256-256 0-19.6 2.2-38.6 6.4-56.9L0 64v-64l64-64h128l64 64v64h64v64h64v64h128l70.8 70.8c18.7-4.3 38.1-6.6 58.1-6.6 141.4 0 256 114.6 256 256S782.2 768.1 640.9 768.1zM384 320L64 0v64l320 320V320zM704 512c-35.3 0-64 28.7-64 64 0 35.3 28.7 64 64 64s64-28.7 64-64C768 540.7 739.3 512 704 512z" horiz-adv-x="896.9" /> -<glyph glyph-name="keyboard" unicode="" d="M640 256h64V384h-64V256zM768 576h-64v-128h64V576zM640 576h-64v-128h64V576zM512 256h64V384h-64V256zM384 64h320V192H384V64zM768 256h128V576h-64v-192h-64V256zM256 64h64V192h-64V64zM768 64h128V192H768V64zM512 576h-64v-128h64V576zM192 384h-64v-128h64V384zM192 192h-64v-128h64V192zM0 704v-768h1024V704H0zM960 0H64V640h896V0zM384 256h64V384h-64V256zM256 576H128v-128h128V576zM384 576h-64v-128h64V576zM256 256h64V384h-64V256z" horiz-adv-x="1024" /> -<glyph glyph-name="law" unicode="" d="M514 640c34 1 61 28 62 62 1 37-29 67-66 66-34-1-61-28-62-62-1-37 29-67 66-66z m464-384h-18l-127 246c18 2 36 9 52 16 24 11 29 43 11 62l-1 1c-11 11-28 15-43 8-14-6-34-13-53-13-56 0-81 64-287 64s-231-64-287-64c-20 0-39 6-53 13-15 6-32 3-43-8l-1-1c-18-19-13-50 11-62 16-8 34-14 52-16l-127-246h-18c-8 0-14-7-13-15 11-64 92-113 191-113s180 49 191 113c1 8-5 15-13 15h-18l-127 245c83 7 127 49 191 49v-486c-35 0-64-29-64-64h-71c-28 0-57-29-57-64h512c0 35-29 64-71 64h-57c0 35-29 64-64 64v486c64 0 108-42 191-49l-127-245h-18c-8 0-14-7-13-15 11-64 92-113 191-113s180 49 191 113c1 8-5 15-13 15z m-658 0h-192l96 180 96-180z m384 0l96 180 96-180h-192z" horiz-adv-x="1024" /> -<glyph glyph-name="light-bulb" unicode="" d="M512 768c-176.731 0-320-143.269-320-320 0-104.69 50.278-197.633 128-256.015V0c0-35.346 28.653-64 64-64 0-35.346 28.653-64 64-64h128c35.347 0 64 28.654 64 64 35.347 0 64 28.654 64 64V191.985C781.722 250.36699999999996 832 343.31 832 448 832 624.731 688.731 768 512 768zM640 32c0-17.673-14.326-32-32-32H416c-17.674 0-32 14.327-32 32v32h256V32zM704 278.693c-33.234-33.03-64-42.389-64-124.041V128h-64V256l128 128v64l-64 64-64-64-64 64-64-64-64 64-64-64v-64l128-128v-128h-64v26.652c0 81.652-30.766 91.011-64 124.041C280.177 323.82 256 383.082 256 448c0 141.385 114.615 256 256 256s256-114.615 256-256C768 383.082 743.823 323.82 704 278.693zM512 256L384 384v64l64-64 64 64 64-64 64 64v-64L512 256z" horiz-adv-x="1024" /> -<glyph glyph-name="link" unicode="" d="M768 576h-138c48-32 93-89 107-128h30c65 0 128-64 128-128s-65-128-128-128h-192c-63 0-128 64-128 128 0 23 7 45 18 64h-137c-5-21-8-42-8-64 0-128 127-256 255-256s65 0 193 0 256 128 256 256-128 256-256 256z m-481-384h-30c-65 0-128 64-128 128s65 128 128 128h192c63 0 128-64 128-128 0-23-7-45-18-64h137c5 21 8 42 8 64 0 128-127 256-255 256s-65 0-193 0-256-128-256-256 128-256 256-256h138c-48 32-93 89-107 128z" horiz-adv-x="1024" /> -<glyph glyph-name="link-external" unicode="" d="M640 64H128V574.094L256 576V704H0v-768h768V256H640V64zM384 704l128-128L320 384l128-128 192 192 128-128V704H384z" horiz-adv-x="768" /> +<glyph glyph-name="hubot" unicode="" d="M192 448c-35 0-64-29-64-64v-128c0-35 29-64 64-64h512c35 0 64 29 64 64V384c0 35-29 64-64 64H192z m512-112l-80-80h-96l-80 80-80-80h-96l-80 80v48h48l80-80 80 80h96l80-80 80 80h48v-48zM320 128h256v-64H320v64z m128 576C201 704 0 518 0 288v-288c0-35 29-64 64-64h768c35 0 64 29 64 64V288c0 230-201 416-448 416z m384-704H64V288c0 198 169 358 384 358s384-160 384-358v-288z" horiz-adv-x="896" /> +<glyph glyph-name="inbox" unicode="" d="M896 256l-72 457c-5 31-32 55-64 55H136c-32 0-59-24-64-55L0 256v-320c0-35 29-64 64-64h768c35 0 64 29 64 64V256z m-210-35l-28-57c-11-22-33-36-58-36H295c-24 0-46 14-57 35l-28 58c-11 21-33 35-57 35H64l64 448h640l64-448h-88c-25 0-47-14-58-35z" horiz-adv-x="896" /> +<glyph glyph-name="info" unicode="" d="M403 468c-12 12-18 27-18 45s6 33 18 45 27 18 45 18 33-6 45-18 18-27 18-45-6-33-18-45-27-19-45-19-33 7-45 19z m109-147c-1 16-7 31-20 44-13 12-27 19-44 20h-64c-17-1-31-8-44-20-13-13-19-28-20-44h64v-192c1-17 7-32 20-44 13-13 27-20 44-20h64c17 0 31 7 44 20 13 12 19 27 20 44h-64V321z m-64 364C247 685 83 522 83 321s164-365 365-365 365 163 365 365-164 364-365 364m0 84c247 0 448-201 448-448S695-127 448-127 0 73 0 321 201 769 448 769z" horiz-adv-x="896" /> +<glyph glyph-name="issue-closed" unicode="" d="M448 192h128v-128H448V192z m128 384H448v-320h128V576z m96-96l-64-64 160-160 256 288-64 64-192-224-96 96zM512-45c-201 0-365 164-365 365s164 365 365 365c117 0 221-56 288-141l59 59C777 704 652 768 512 768 265 768 64 567 64 320s201-448 448-448 448 201 448 448l-97-97c-42-154-183-268-351-268z" horiz-adv-x="1024" /> +<glyph glyph-name="issue-opened" unicode="" d="M448 685c201 0 365-164 365-365S649-45 448-45 83 119 83 320s164 365 365 365m0 83C201 768 0 567 0 320s201-448 448-448 448 201 448 448S695 768 448 768z m64-192H384v-320h128V576z m0-384H384v-128h128V192z" horiz-adv-x="896" /> +<glyph glyph-name="issue-reopened" unicode="" d="M512 256H384V576h128v-320zM384 64h128V192H384v-128z m405 128H640l96-96c-67-85-171-141-288-141-201 0-365 164-365 365 0 22 2 43 6 64H5c-3-21-5-42-5-64 0-247 201-448 448-448 140 0 264 65 346 166l102-102V192H789zM107 448h149l-96 96c67 85 171 141 288 141 201 0 365-164 365-365 0-22-2-43-6-64h84c3 21 5 42 5 64 0 247-201 448-448 448-140 0-264-65-346-166L0 704v-256h107z" horiz-adv-x="896" /> +<glyph glyph-name="jersey" unicode="" d="M224 448l-32-32v-320l32-32h128l32 32V416l-32 32H224z m96-320h-64V384h64v-256z m401 464c-14 88-20 168-17 240H513c0-17-8-31-25-44-16-13-40-19-72-19s-56 6-72 19c-15 13-23 27-23 44H128c3-72-2-152-16-240-13-88-51-136-112-144v-576c1-17 7-31 20-44s27-19 44-20h704c17 1 31 7 44 20s19 27 20 44V448c-61 8-98 56-112 144z m47-720H64V384c57 32 95 80 110 144s20 144 18 240h64c-1-50 10-94 33-132 23-37 65-57 128-60 63 1 105 21 128 60 23 38 32 82 31 132h64c1-91 8-163 21-216 13-52 44-128 107-168v-512zM480 448l-32-32v-320l32-32h128l32 32V416l-32 32H480z m96-320h-64V384h64v-256z" horiz-adv-x="896" /> +<glyph glyph-name="key" unicode="" d="M821 693c-48 48-108 73-181 75-72-2-133-27-181-75s-72-108-74-181c0-19 2-38 6-57L0 64v-64l64-64h128l64 64v64h64v64h64v64h128l70 71c19-5 38-7 58-7 73 2 133 27 181 75s73 108 75 181c-2 73-27 133-75 181zM704 488c-49 0-88 39-88 88s39 88 88 88 88-39 88-88-39-88-88-88z" horiz-adv-x="896" /> +<glyph glyph-name="keyboard" unicode="" d="M640 512h-64v64h64v-64z m-448-64h-64v-64h64v64z m320 128h-64v-64h64v64z m-256 0H128v-64h128v64z m512-448h128v64H768v-64zM512 384h64v64h-64v-64zM256 192H128v-64h128v64z m512 384h-64v-64h64v64z m128 0h-64v-64h64v64zM768 256h128V448H768v-192z m256 384v-576c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h896c35 0 64-29 64-64z m-64 0H64v-576h896V640zM384 384h64v64h-64v-64z m0 192h-64v-64h64v64zM256 384h64v64h-64v-64z m64-256h384v64H320v-64z m320 256h64v64h-64v-64z m-448-64h-64v-64h64v64z m320 0v-64h64v64h-64z m-128 0v-64h64v64h-64z m-64 0h-64v-64h64v64z m320-64h64v64h-64v-64z" horiz-adv-x="1024" /> +<glyph glyph-name="law" unicode="" d="M448 576c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z m448-384c0-71-57-128-128-128h-64c-71 0-128 57-128 128l128 256h-64c-35 0-64 29-64 64h-64v-512c27 0 64-29 64-64h64c27 0 64-29 64-64H192c0 35 37 64 64 64h64c0 35 37 64 64 64h2l-2 512h-64c0-35-29-64-64-64h-64l128-256c0-71-57-128-128-128h-64C57 64 0 121 0 192l128 256H64v64h192c0 35 29 64 64 64h256c35 0 64-29 64-64h192v-64h-64l128-256zM160 384L64 192h192l-96 192z m672-192l-96 192-96-192h192z" horiz-adv-x="896" /> +<glyph glyph-name="light-bulb" unicode="" d="M352 832C159 832 0 692 0 512c0-59 35-144 64-192 86-144 114-178 128-256v-64h320v64c14 78 42 112 128 256 29 48 64 133 64 192C704 692 545 832 352 832z m233-479c-16-28-30-51-43-71-55-90-80-132-93-207-1-3-1-7-1-11H256c0 4 0 8-1 11-13 75-38 117-93 207-13 20-27 43-43 71-27 45-55 117-55 159C64 653 193 768 352 768c78 0 151-27 206-76 53-48 82-112 82-180 0-42-28-114-55-159zM192-64h320c-15-73-83-128-160-128s-145 55-160 128z" horiz-adv-x="768" /> +<glyph glyph-name="link" unicode="" d="M256 256h64v-64h-64c-96 0-192 108-192 224s99 224 192 224h256c93 0 192-108 192-224 0-90-58-174-128-208v74c37 29 64 81 64 134 0 82-65 160-128 160H256c-63 0-128-78-128-160s64-160 128-160z m576 192h-64v-64h64c64 0 128-78 128-160s-65-160-128-160H576c-63 0-128 78-128 160 0 53 27 105 64 134v74c-70-34-128-118-128-208 0-116 99-224 192-224h256c93 0 192 108 192 224s-96 224-192 224z" horiz-adv-x="1024" /> +<glyph glyph-name="link-external" unicode="" d="M704 192h64v-192c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h192v-64H64v-640h640V192zM384 704l144-144-208-208 96-96 208 208 144-144V704H384z" horiz-adv-x="768" /> <glyph glyph-name="list-ordered" unicode="" d="M320 256h448v128h-448v-128z m0-256h448v128h-448v-128z m0 640v-128h448v128h-448z m-241-256h78v256h-36l-85-23v-50l43 2v-185z m110-206c0 36-12 78-96 78-33 0-64-6-83-16l1-66c21 10 42 15 67 15s32-11 32-28c0-26-30-58-110-112v-50h192v67l-91-2c49 30 87 66 87 113l1 1z" horiz-adv-x="768" /> <glyph glyph-name="list-unordered" unicode="" d="M0 256h128v128h-128v-128z m0 256h128v128h-128v-128z m0-512h128v128h-128v-128z m256 256h512v128h-512v-128z m0 256h512v128h-512v-128z m0-512h512v128h-512v-128z" horiz-adv-x="768" /> -<glyph glyph-name="location" unicode="" d="M320 832c-177 0-320-143-320-320s160-416 320-704c160 288 320 527 320 704s-143 320-320 320z m0-448c-71 0-128 57-128 128s57 128 128 128 128-57 128-128-57-128-128-128z" horiz-adv-x="640" /> -<glyph glyph-name="lock" unicode="" d="M704 384c-32 0-64 0-64 0s0 64 0 192-128 256-256 256-256-128-256-256 0-192 0-192-32 0-64 0-64-32-64-64 0-416 0-448 32-64 64-64 608 0 640 0 64 32 64 64 0 416 0 448-32 64-64 64z m-192-128h-384v-64h384v-64h-384v-64h384v-64h-384v-64h384v-64h-448v448h448v-64z m0 128h-256s0 128 0 192 64 128 128 128 128-64 128-128 0-192 0-192z" horiz-adv-x="768" /> +<glyph glyph-name="location" unicode="" d="M384 832C172 832 0 672 0 480c0-289 384-672 384-672s384 383 384 672C768 672 596 832 384 832z m0-931C265 31 64 292 64 480 64 639 208 768 384 768c86 0 167-31 228-87 59-55 92-126 92-201 0-188-201-449-320-579z m128 579c0-71-57-128-128-128s-128 57-128 128 57 128 128 128 128-57 128-128z" horiz-adv-x="768" /> +<glyph glyph-name="lock" unicode="" d="M256 0h-64v64h64v-64z m512 384v-448c0-35-29-64-64-64H64c-35 0-64 29-64 64V384c0 35 29 64 64 64h64V576C128 717 243 832 384 832s256-115 256-256v-128h64c35 0 64-29 64-64z m-525 64h282V576c0 78-63 141-141 141s-141-63-141-141v-128z m461-64H128v-448h576V384z m-448-64h-64v-64h64v64z m0-128h-64v-64h64v64z" horiz-adv-x="768" /> <glyph glyph-name="logo-github" unicode="" d="M552.73 499.865H311.557c-6.205 0-11.25-5.045-11.25-11.297v-117.887c0-6.252 5.045-11.272 11.25-11.272h94.109v-146.542c0 0-21.145-7.057-79.496-7.057-68.914 0-165.156 25.244-165.156 236.795 0 211.642 100.197 239.491 194.307 239.491 81.465 0 116.514-14.304 138.869-21.241 7.01-2.203 13.404 4.831 13.404 11.105L534.543 785.87c0 2.912-1.041 6.417-4.262 8.785C521.186 801.048 465.865 832 326.168 832 165.133 832 0 763.513 0 434.243 0 105.02099999999996 189.051 56 348.381 56c131.883 0 212.021 56.314 212.021 56.314 3.268 1.801 3.6 6.395 3.6 8.479V488.568C563.955 494.773 558.887 499.865 552.73 499.865zM1772.381 803.866h-135.695c-6.252 0-11.271-5.044-11.271-11.296v-262.393h-211.619V792.57c0 6.252-5.068 11.296-11.178 11.296h-135.838c-6.111 0-11.084-5.044-11.084-11.296v-710.473c0-6.299 5.021-11.32 11.084-11.32h135.838c6.203 0 11.178 5.068 11.178 11.32V385.933h211.619l-0.475-303.883c0-6.3 5.021-11.272 11.084-11.272h135.885c6.252 0 11.131 5.068 11.131 11.272l0.473 710.521C1783.607 798.822 1778.539 803.866 1772.381 803.866zM714.949 787.763c-48.357 0-87.574-39.572-87.574-88.403 0-48.855 39.217-88.428 87.574-88.428s87.527 39.572 87.527 88.428C802.477 748.19 763.307 787.763 714.949 787.763zM792.861 559.874c0 6.205-5.02 11.344-11.131 11.344H646.32c-6.348 0-11.746-6.394-11.746-12.67 0 0 0-394.654 0-469.867 0-13.735 8.572-17.903 19.703-17.903 0 0 57.688 0 121.959 0 13.311 0 16.814 6.536 16.814 18.188-0.094 25.197-0.094 123.808-0.094 142.942C792.861 250.09500000000003 792.861 559.874 792.861 559.874zM2297.973 570.152h-134.701c-6.158 0-11.084-5.092-11.084-11.344v-348.31c0 0-34.244-25.197-82.934-25.197-48.547 0-61.525 22.024-61.525 69.719 0 47.553 0 303.835 0 303.835 0 6.252-5.068 11.345-11.131 11.345h-136.643c-6.252 0-11.178-5.093-11.178-11.345 0 0 0-185.521 0-326.807 0-141.284 78.766-175.906 186.99-175.906 88.854 0 160.609 49.115 160.609 49.115s3.363-25.766 5.068-28.844c1.422-3.078 5.447-6.158 9.852-6.158h86.58c6.158 0 11.178 5.069 11.178 11.321l0.379 477.278C2309.15 565.0609999999999 2304.129 570.152 2297.973 570.152zM2666.932 586.1610000000001c-76.539 0-128.592-34.148-128.592-34.148V792.57c0 6.252-5.068 11.296-11.131 11.296h-136.264c-6.109 0-11.131-5.044-11.131-11.296l-0.379-710.521c0-6.3 5.068-11.272 11.225-11.272 0 0 94.773 0 94.869 0 4.215 0 7.389 2.179 9.805 5.968 2.369 3.837 5.73 32.775 5.73 32.775s55.557-52.763 161.035-52.763c123.807 0 194.758 62.804 194.758 281.906C2856.859 557.482 2743.471 586.1610000000001 2666.932 586.1610000000001zM2613.791 185.77499999999998c-46.701 1.421-78.34 22.64-78.34 22.64v225.07c0 0 31.307 19.206 69.672 22.593 48.547 4.31 95.438-10.326 95.438-126.13C2700.322 207.94100000000003 2679.199 183.83399999999995 2613.791 185.77499999999998zM1185.125 188.33299999999997c-5.969 0-21.219-2.368-36.85-2.368-49.92 0-66.971 23.256-66.971 53.331 0 30.218 0 199.85 0 199.85h101.926c6.252 0 11.178 5.044 11.178 11.343v109.48c0.094 6.299-4.926 11.344-11.178 11.344h-101.926l-0.143 134.535c0 5.092-2.699 7.625-8.572 7.625H933.861c-5.352 0-8.336-2.391-8.336-7.578v-139.035c0 0-69.576-16.79-74.266-18.188-4.641-1.326-8.051-5.684-8.051-10.822v-87.408c0-6.252 5.068-11.344 11.178-11.344h71.139c0 0 0-91.34 0-210.222 0-156.109 109.553-171.455 183.439-171.455 33.723 0 74.076 10.988 80.848 13.356 4.074 1.421 6.395 5.637 6.395 10.136l0.047 96.101C1196.254 183.312 1190.998 188.428 1185.125 188.33299999999997z" horiz-adv-x="2856.857" /> -<glyph glyph-name="mail" unicode="" d="M0 640v-640h896V640H0zM768 576L448 312 128 576H768zM64 512l252.031-191.625L64 128V512zM128 64l254 206.25L448 220l65.875 50.125L768 64H128zM832 128L579.625 320.062 832 512V128z" horiz-adv-x="896" /> -<glyph glyph-name="mail-read" unicode="" d="M576 448H256v-64h320V448zM384 576H256v-64h128V576zM768 603.469V704H627.188L448 832 268.812 704H128v-100.531L0 512v-640h896V512L768 603.469zM192 640h512v-244.812L448 184 192 395.188V640zM64 384l252.031-191.625L64 0V384zM128-64l254 206.25L448 92l65.875 50.125L768-64H128zM832 0L579.625 192.062 832 384V0z" horiz-adv-x="896" /> +<glyph glyph-name="mail" unicode="" d="M0 576v-512c0-35 29-64 64-64h768c35 0 64 29 64 64V576c0 35-29 64-64 64H64c-35 0-64-29-64-64z m832 0L448 256 64 576h768zM64 480l256-192L64 96V480z m64-416l224 192 96-96 96 96 224-192H128z m704 32L576 288l256 192v-384z" horiz-adv-x="896" /> +<glyph glyph-name="mail-read" unicode="" d="M384 512H256v64h128v-64z m192-64H256v-64h320v64z m320 31v-543c0-35-29-64-64-64H64c-35 0-64 29-64 64V479c0 21 10 40 27 52l101 72v37c0 35 29 64 64 64h77L448 832l179-128h77c35 0 64-29 64-64v-37l101-72c17-12 27-31 27-52zM192 352l256-160 256 160V640H192v-288zM64-32l288 192L64 352v-384z m704-32L448 128 128-64h640z m64 416L544 160l288-192V352z" horiz-adv-x="896" /> <glyph glyph-name="mail-reply" unicode="" d="M384 672l-384-288 384-288v192c111 0 329-61 384-280 0 291-196 451-384 472v192z" horiz-adv-x="768" /> -<glyph glyph-name="mark-github" unicode="" d="M512 832c-283 0-512-229-512-512 0-226 147-418 350-486 26-5 35 11 35 25 0 12-1 53-1 95-104-23-156 20-173 60-11 27-25 55-57 75-34 22-19 34 4 31 29-3 58-17 79-53 43-75 117-57 149-43 5 33 18 56 33 68-114 13-233 57-233 253 0 56 20 102 53 137-5 13-23 65 5 136 0 0 43 14 141-53 41 11 85 17 128 17 44 0 87-6 128-17 98 66 141 53 141 53 28-71 10-123 5-136 33-36 53-82 53-137 0-197-120-240-234-253 18-16 35-47 35-95 0-68-1-124-1-141 0-14 9-30 35-25 203 68 350 260 350 486 0 283-229 512-512 512z" horiz-adv-x="1024" /> +<glyph glyph-name="mark-github" unicode="" d="M512 832C229.252 832 0 602.748 0 320c0-226.251 146.688-418.126 350.155-485.813 25.593-4.686 34.937 11.125 34.937 24.626 0 12.188-0.469 52.562-0.718 95.314-128.708-23.46-161.707 31.541-172.469 60.373-5.525 14.809-30.407 60.249-52.398 72.263-17.988 9.828-43.26 33.237-0.917 33.735 40.434 0.476 69.348-37.308 78.471-52.75 45.938-77.749 119.876-55.627 148.999-42.5 4.654 32.999 17.902 55.627 32.501 68.373-113.657 12.939-233.22 56.875-233.22 253.063 0 55.94 19.968 101.561 52.658 137.404-5.22 12.999-22.844 65.095 5.063 135.563 0 0 42.937 13.749 140.811-52.501 40.811 11.406 84.594 17.031 128.124 17.22 43.499-0.188 87.314-5.874 128.188-17.28 97.689 66.311 140.686 52.501 140.686 52.501 28-70.532 10.375-122.564 5.124-135.499 32.811-35.844 52.626-81.468 52.626-137.404 0-196.686-119.751-240-233.813-252.686 18.439-15.876 34.748-47.001 34.748-94.748 0-68.437-0.686-123.627-0.686-140.501 0-13.625 9.312-29.561 35.25-24.562C877.436-97.99800000000005 1024 93.87400000000002 1024 320 1024 602.748 794.748 832 512 832z" horiz-adv-x="1024" /> <glyph glyph-name="markdown" unicode="" d="M950.154 640H73.846C33.127 640 0 606.873 0 566.154v-492.308C0 33.125 33.127 0 73.846 0h876.308c40.721 0 73.846 33.125 73.846 73.846V566.154C1024 606.873 990.875 640 950.154 640zM576 128.125L448 128V320l-96-123.077L256 320v-192H128V512h128l96-128 96 128 128 0.125V128.125zM767.091 96.125L608 320h96V512h128v-192h96L767.091 96.125z" horiz-adv-x="1024" /> -<glyph glyph-name="megaphone" unicode="" d="M832 800c-130 0-124-130-704-128C57.344 672 0 557.375 0 416s57.344-256 128-256c22.781 0 43.188-0.5 64.188-0.875L256-128l192-32 64 96-45.125 203.125C709.375 102.875 733.75 32 832 32c106 0 192 172 192 384C1024 628.031 938 800 832 800zM197 349.062c-39.188 1.469-82.188 2.25-127.562 2.625C66 371.406 64 393.094 64 416c0 88.375 28.688 192 64 192 39.031-0.125 75 0.438 109 1.406C209.656 562.438 192 493.688 192 416 192 392.688 194.062 370.562 197 349.062zM261.312 346.062C258.125 368.312 256 391.625 256 416c0 79.5 18.438 149.5 46.906 196.219 155.156 8.312 251.906 28.469 319.031 50.188C593.625 595.531 576 510.344 576 416c0-40 3.875-78 9.5-114.312C513.344 320.375 412.812 337.406 261.312 346.062zM832 128c-12.125 0-23.688 5.062-34.812 12.125-15.25 67.312-83.438 418.344 117.438 494.188C942.125 581.5 960 503.812 960 416 960 257 902.625 128 832 128z" horiz-adv-x="1024" /> +<glyph glyph-name="megaphone" unicode="" d="M640 768c-11 0-23-3-33-9-92-56-319-220-415-247-88 0-192-43-192-160s104-160 192-160c19-5 41-15 64-26v-294h128V93c86-55 172-117 223-148 10-6 22-9 33-9 33 0 64 27 64 64V704c0 37-31 64-64 64z m0-768c-24 15-57 37-96 64-10 7-21 14-32 22V620c10 7 20 13 30 20 39 26 74 49 98 64v-704z m128 384h256v-64H768v64z m0-128l256-128v-64L768 192v64z m256 384v-64L768 448v64l256 128z" horiz-adv-x="1024" /> <glyph glyph-name="mention" unicode="" d="M466.697 732.899C238.66 760.898 31.1 598.735 3.102 370.698c-28-228.038 134.163-435.598 362.2-463.597 71.429-8.756 145.115 0.913 213.325 29.946l-0.016 0.032c24.404 10.357 35.788 38.538 25.431 62.939-10.359 24.403-38.538 35.787-62.94 25.43l-0.001 0.004c-52.472-22.339-109.15-29.799-164.1-23.067-175.413 21.538-300.153 181.2-278.616 356.613 21.538 175.413 181.199 300.154 356.613 278.616 175.412-21.538 300.154-181.199 278.617-356.612-4.309-35.083-21.542-55.725-61.6-55.725-42.5 0-64 45.889-64 81.222V432c0 26.51-21.49 48-48 48-9.699 0-18.72-2.887-26.269-7.833-25.684 20.259-57.437 33.87-94.349 38.402-105.246 12.923-201.045-61.924-213.967-167.17C212.508 238.15200000000004 287.354 142.35400000000004 392.6 129.43200000000002c57.379-7.045 116.216 14.707 157.871 53.13 24.959-28.124 59.866-47.624 100.121-52.567 87.707-10.769 167.537 51.602 178.307 139.309C856.898 497.34 694.734 704.899 466.697 732.899zM511.285 308.30100000000004c-6.462-52.623-54.361-90.047-106.985-83.585-52.623 6.461-90.046 54.36-83.585 106.984 6.461 52.623 54.361 90.046 106.984 83.585C480.322 408.823 517.746 360.924 511.285 308.30100000000004z" horiz-adv-x="832" /> -<glyph glyph-name="microscope" unicode="" d="M617-64c86.312 18.75 151 100 151 192 0 58.438-26.625 110.125-67.875 145.375C702.5 288.625 704 304.125 704 320c0 104.844-49.875 197.875-128 256l64 64v64l64 64L640 832l-64-64h-64L256 512l-128-64v-128l64-64h128l64 128 96 96c55.5-33.406 96-90.438 96-160-106.062 0-192-85.938-192-192H0v-64h192c19.125-14.25 42.062-22.125 64-32v-96H128L0-192h768L640-64H617zM512 128c0 35.375 28.625 64 64 64s64-28.625 64-64c0-35.312-28.625-64-64-64S512 92.68799999999999 512 128z" horiz-adv-x="768" /> -<glyph glyph-name="milestone" unicode="" d="M704 640H0v-256h704l128 128L704 640zM448 448H320V576h128V448zM448 832H320v-128h128V832zM320-192h128V320H320V-192z" horiz-adv-x="832" /> -<glyph glyph-name="mirror" unicode="" d="M320 512L128 320l192-192V256h384v-128l192 192L704 512v-128H320V512zM512 832L0 512v-704l512 256 512-256V512L512 832zM960-64L576 128v64H448v-64L64-64V448l384 256v-256h128V704l384-256V-64z" horiz-adv-x="1024" /> +<glyph glyph-name="milestone" unicode="" d="M512 704H384V832h128v-128z m256-320H128c-35 0-64 29-64 64V576c0 35 29 64 64 64h640l128-128-128-128zM512 576H384v-128h128V576z m-128-768h128V320H384v-512z" horiz-adv-x="896" /> +<glyph glyph-name="mirror" unicode="" d="M992 531L544 832 96 531c-19-12-32-29-32-51v-672l480 256 480-256V480c0 22-13 39-32 51z m-32-627L576 112v80h-64v-80L128-96V480L512 736v-288h64V736l384-256v-576zM384 384h320V512l192-192-192-192V256H384v-128L192 320l192 192v-128z" horiz-adv-x="1024" /> <glyph glyph-name="mortar-board" unicode="" d="M501 244l-245 76s0-96 0-160 115-96 256-96 256 32 256 96 0 160 0 160l-245-76c-7-2-15-2-23 0h1z m18 409c-4 1-9 1-13 0l-489-152c-21-7-21-36 0-43l111-35v-113c-19-11-32-32-32-55 0-12 3-23 9-32-5-9-9-20-9-32v-165c0-35 128-35 128 0v165c0 12-3 23-9 32 5 9 9 20 9 32 0 24-13 44-32 55v93l313-98c4-1 9-1 13 0l489 152c21 7 21 36 0 43l-488 153z m-6-205c-35 0-64 14-64 32s29 32 64 32 64-14 64-32-29-32-64-32z" horiz-adv-x="1024" /> -<glyph glyph-name="move-down" unicode="" d="M640 512H448V832H192v-320H0l320-384L640 512zM0-192h640V0H0V-192z" horiz-adv-x="640" /> -<glyph glyph-name="move-left" unicode="" d="M0 0h192V640H0V0zM704 448V640L320 320l384-320V192h320V448H704z" horiz-adv-x="1024" /> -<glyph glyph-name="move-right" unicode="" d="M832 640v-640h192V640H832zM320 448H0v-256h320v-192l384 320L320 640V448z" horiz-adv-x="1024" /> -<glyph glyph-name="move-up" unicode="" d="M0 128h192v-320h256V128h192L320 512 0 128zM0 832v-192h640V832H0z" horiz-adv-x="640" /> -<glyph glyph-name="mute" unicode="" d="M128 448H0v-256h128l256-192h64V640h-64L128 448zM864 416l-64 64-96-96-96 96-63-63.5 95-96.5-96-96 64-64 96 96 96-96 64 64-96 96L864 416z" horiz-adv-x="896" /> -<glyph glyph-name="no-newline" unicode="" d="M896 512v-128H768V512L576 320l192-192V256h192c0 0 64 0.375 64 64s0 192 0 192H896zM224 544C100.281 544 0 443.719 0 320c0-123.75 100.281-224 224-224s224 100.25 224 224C448 443.719 347.719 544 224 544zM96 320c0 70.656 57.344 128 128 128 18.75 0 36.406-4.219 52.469-11.531L107.531 267.5C100.219 283.625 96 301.25 96 320zM224 192c-18.75 0-36.406 4.25-52.469 11.5l168.938 168.969C347.781 356.406 352 338.75 352 320 352 249.375 294.656 192 224 192z" horiz-adv-x="1024" /> +<glyph glyph-name="mute" unicode="" d="M512 652v-664c0-43-52-64-82-34L192 192H64c-35 0-64 29-64 64V384c0 35 29 64 64 64h128l238 238c30 30 82 9 82-34z m482-206l-68 68-126-126-126 126-68-68 126-126-126-126 68-68 126 126 126-126 68 68-126 126 126 126z" horiz-adv-x="1024" /> +<glyph glyph-name="no-newline" unicode="" d="M1024 512v-192c0-35-29-64-64-64H768v-128L576 320l192 192v-128h128V512h128zM512 320c0-141-115-256-256-256S0 179 0 320s115 256 256 256 256-115 256-256zM96 214l266 266c-31 20-67 32-106 32-106 0-192-86-192-192 0-39 12-75 32-106z m352 106c0 39-12 75-32 106L150 160c31-20 67-32 106-32 106 0 192 86 192 192z" horiz-adv-x="1024" /> <glyph glyph-name="octoface" unicode="" d="M940.812 554.312c8.25 20.219 35.375 101.75-8.562 211.906 0 0-67.375 21.312-219.875-82.906C648.5 700.875 579.875 703.5 512 703.5c-67.906 0-136.438-2.625-200.5-20.25C159.031 787.531 91.719 766.219 91.719 766.219 47.812 656 74.938 574.531 83.188 554.312 31.5 498.438 0 427.125 0 339.656 0 10.437999999999988 213.25-64 510.844-64 808.562-64 1024 10.437999999999988 1024 339.656 1024 427.125 992.5 498.438 940.812 554.312zM512-1c-211.406 0-382.781 9.875-382.781 214.688 0 48.938 24.062 94.595 65.344 132.312 68.75 62.969 185.281 29.688 317.438 29.688 132.25 0 248.625 33.281 317.438-29.625 41.312-37.78 65.438-83.312 65.438-132.312C894.875 8.875 723.375-1 512-1zM351.156 319.562c-42.469 0-76.906-51.062-76.906-114.188s34.438-114.312 76.906-114.312c42.375 0 76.812 51.188 76.812 114.312S393.531 319.562 351.156 319.562zM672.875 319.562C630.5 319.562 596 268.5 596 205.375s34.5-114.312 76.875-114.312 76.812 51.188 76.812 114.312C749.75 268.5 715.312 319.562 672.875 319.562z" horiz-adv-x="1024" /> -<glyph glyph-name="organization" unicode="" d="M768 448h-64H576h-64-64-64-64H192h-64C57.344 448 0 390.656 0 320v-64c0-47.25 25.844-88.062 64-110.25V-64h256v-128h256V-64h256V145.75c38.125 22.188 64 62.938 64 110.25v64C896 390.656 838.625 448 768 448zM256 0H128V256H64v64c0 35.312 28.688 64 64 64h81.719c-11-18.875-17.719-40.562-17.719-64v-128c0-47.25 25.844-88.062 64-110.25V0zM576 128V256h-64v-384H384V256h-64v-128c-35.312 0-64 28.625-64 64V320c0 35.312 28.688 64 64 64h256c35.375 0 64-28.688 64-64v-128C640 156.625 611.375 128 576 128zM832 256h-64v-256H640v81.75c38.125 22.188 64 62.938 64 110.25V320c0 23.438-6.75 45.125-17.75 64H768c35.375 0 64-28.688 64-64V256zM303.688 514.625C338.875 474.125 390.156 448 448 448c57.875 0 109.125 26.125 144.312 66.625C614.125 475.062 655.688 448 704 448c70.625 0 128 57.344 128 128s-57.375 128-128 128c-25.625 0-49.375-7.688-69.375-20.688C614.875 768.438 539.062 832 448 832S281.094 768.438 261.375 683.312C241.344 696.312 217.594 704 192 704c-70.656 0-128-57.344-128-128s57.344-128 128-128C240.312 448 281.844 475.062 303.688 514.625zM704 640c35.375 0 64-28.594 64-64s-28.625-64-64-64c-35.312 0-64 28.594-64 64S668.688 640 704 640zM448 768c70.625 0 128-57.344 128-128s-57.375-128-128-128c-70.656 0-128 57.344-128 128S377.344 768 448 768zM192 512c-35.312 0-64 28.594-64 64s28.688 64 64 64c35.406 0 64-28.594 64-64S227.406 512 192 512z" horiz-adv-x="896" /> -<glyph glyph-name="package" unicode="" d="M480 768L0 640v-576l480-128 480 128V640L480 768zM63.875 111.06600000000003L63.5 544l384.498-102.533 0.001-432.833L63.875 111.06600000000003zM63.5 608l160.254 42.734L640 539.735v-0.135l-160-42.667L63.5 608zM896.125 111.06600000000003L512.001 8.634000000000015l0.001 432.833L640 475.6v-156l128 34.135V509.733L896.5 544 896.125 111.06600000000003zM768 573.733v0.125L351.734 684.862 480 719.066 896.5 608 768 573.733z" horiz-adv-x="1024" /> +<glyph glyph-name="organization" unicode="" d="M304 515c35-41 86-67 144-67s109 26 144 67c22-40 64-67 112-67 71 0 128 57 128 128s-57 128-128 128c-26 0-49-8-69-21C615 768 539 832 448 832S281 768 261 683c-20 13-43 21-69 21-71 0-128-57-128-128s57-128 128-128c48 0 90 27 112 67z m333 97c13 24 38 41 67 41 42 0 77-35 77-77s-35-77-77-77-75 34-76 75c4 12 7 25 9 38zM448 769c71 0 129-58 129-129s-58-129-129-129-129 58-129 129S377 769 448 769zM192 499c-42 0-77 35-77 77s35 77 77 77c29 0 54-17 67-41 2-13 5-26 9-38-1-41-34-75-76-75z m640-51H64c-35 0-64-29-64-64v-192c0-35 29-64 64-64v-128c0-35 29-64 64-64h64c35 0 64 29 64 64v64h64v-192c0-35 29-64 64-64h128c35 0 64 29 64 64V64h64v-64c0-35 29-64 64-64h64c35 0 64 29 64 64V128c35 0 64 29 64 64V384c0 35-29 64-64 64zM192 0h-64V192H64V384h128v-384z m448 128h-64V256h-64v-384H384V256h-64v-128h-64V384h384v-256z m192 64h-64v-192h-64V384h128v-192z" horiz-adv-x="896" /> +<glyph glyph-name="package" unicode="" d="M0 559v-478c0-29 19-54 48-62l416-111c10-3 22-3 32 0l416 111c29 8 48 33 48 62V559c0 29-19 54-48 62L496 732c-10 2-22 2-32 0L48 621c-29-8-48-33-48-62z m448-582L64 79V512l384-103v-432zM64 576l160 43 416-111-160-43L64 576z m832-497L512-23V409l128 35v-156l128 34V478l128 34v-433zM768 542L352 653l128 34 416-111-128-34z" horiz-adv-x="1024" /> <glyph glyph-name="paintcan" unicode="" d="M384 832C171.923 832 0 660.077 0 448v-64c0-35.346 28.654-64 64-64v-320c0-70.692 143.269-128 320-128s320 57.308 320 128V320c35.346 0 64 28.654 64 64v64C768 660.077 596.077 832 384 832zM576 192v-32c0-17.673-14.327-32-32-32s-32 14.327-32 32v32c0 17.673-14.327 32-32 32s-32-14.327-32-32v-160c0-17.673-14.327-32-32-32s-32 14.327-32 32V160c0 17.673-14.327 32-32 32s-32-14.327-32-32v-32c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c-35.346 0-64 28.654-64 64V371.193C186.382 340.108 279.318 320 384 320s197.618 20.108 256 51.193V256C640 220.654 611.346 192 576 192zM384 384c-107.433 0-199.393 26.474-237.372 64 37.979 37.526 129.939 64 237.372 64s199.393-26.474 237.372-64C583.393 410.474 491.433 384 384 384zM384 576c-176.62 0-319.816-57.236-319.996-127.867-0.001 0.001-0.002 0.001-0.003 0.002C64.075 624.804 207.314 768 384 768c176.731 0 320-143.269 320-320C704 518.692 560.731 576 384 576z" horiz-adv-x="768" /> -<glyph glyph-name="pencil" unicode="" d="M704 768L576 640l192-192 128 128L704 768zM0 64l0.688-192.562L192-128l512 512L512 576 0 64zM192-64H64V64h64v-64h64V-64z" horiz-adv-x="896" /> -<glyph glyph-name="person" unicode="" d="M448 640C448 746 362.062 832 256 832S64 746 64 640c0-106.062 85.938-192 192-192S448 533.938 448 640zM256 512c-70.656 0-128 57.344-128 128S185.344 768 256 768c70.625 0 128-57.344 128-128S326.625 512 256 512zM384 448H256 128C57.344 448 0 390.656 0 320v-128c0-70.625 57.344-128 128-128v-256h256V64c70.625 0 128 57.375 128 128V320C512 390.656 454.625 448 384 448zM448 192c0-35.375-28.625-64-64-64V256h-64v-384H192V256h-64v-128c-35.312 0-64 28.625-64 64V320c0 35.312 28.688 64 64 64h256c35.375 0 64-28.688 64-64V192z" horiz-adv-x="512" /> -<glyph glyph-name="pin" unicode="" d="M196 128l64-320 64 320c-20-2-43-3-64-3s-44 1-64 3z m254 299c-33 17-62 59-62 85v64c0 22 12 39 23 52 15 13 24 29 24 45 0 53-61 95-175 95s-175-42-175-95c0-16 9-32 24-45 11-13 23-30 23-52v-64c0-26-29-68-62-85-38-19-70-54-70-88 0-74 101-148 260-148s260 73 260 148c0 33-31 68-70 88z" horiz-adv-x="519.657" /> -<glyph glyph-name="playback-fast-forward" unicode="" d="M0 64l384 256L0 576V64zM768 320L384 576v-256-256L768 320z" horiz-adv-x="768" /> -<glyph glyph-name="playback-pause" unicode="" d="M0 0h192V640H0V0zM320 640v-640h192V640H320z" horiz-adv-x="512" /> -<glyph glyph-name="playback-play" unicode="" d="M0 640l512-320L0 0V640z" horiz-adv-x="512" /> -<glyph glyph-name="playback-rewind" unicode="" d="M384 320l384-256V576L384 320zM0 320l384-256V320 576L0 320z" horiz-adv-x="768" /> -<glyph glyph-name="plug" unicode="" d="M1003.386 627.336l-0.905 0.905c-24.744 24.744-64.861 24.744-89.605 0l-45.707-45.707-90.51 90.51 45.707 45.707c24.744 24.744 24.744 64.861 0 89.605l-0.905 0.905c-24.744 24.744-64.861 24.744-89.605 0l-47.973-47.973C621.76 802.446 537.237 795.66 482.502 740.926l-24.89-24.89c-109.011-109.011-121.948-277.692-38.854-400.892l-4.138-4.138c-62.392-62.392-62.484-163.493-0.275-225.999 12.41-12.469 12.642-33.327 0.121-45.683-12.509-12.343-32.655-12.292-45.101 0.153l-89.427 89.427c-62.637 62.638-164.63 63.747-227.299 1.141-62.542-62.479-62.562-163.829-0.058-226.332l8.763-8.763c24.744-24.744 64.861-24.744 89.605 0l0.905 0.905c24.744 24.744 24.744 64.861 0 89.605l-8.292 8.292c-12.329 12.329-13.085 32.418-1.098 45.081 12.437 13.138 33.174 13.353 45.882 0.645l89.328-89.328c62.92-62.92 165.504-63.814 228.081-0.553 61.793 62.468 61.65 163.161-0.431 225.451-12.55 12.592-12.777 32.866-0.207 45.437l4.151 4.151c123.2-83.095 291.881-70.158 400.892 38.854l24.89 24.89c54.734 54.735 61.52 139.258 20.362 201.382l47.973 47.973C1028.129 562.475 1028.129 602.593 1003.386 627.336zM889.796 333.632c-37.49-37.49-98.274-37.49-135.765 0L527.757 559.906c-37.49 37.49-37.49 98.274 0 135.765 29.556 29.556 73.585 35.804 109.269 18.759l-41.839-41.839c-24.744-24.744-24.744-64.861 0-89.604l0.905-0.905c24.744-24.744 64.861-24.744 89.605 0l45.707 45.707 90.51-90.51-45.707-45.707c-24.744-24.744-24.744-64.861 0-89.605l0.905-0.905c24.744-24.744 64.861-24.744 89.604 0l41.839 41.839C925.6 407.218 919.351 363.188 889.796 333.632z" horiz-adv-x="1024" /> -<glyph glyph-name="plus" unicode="" d="M384 384V640H256v-256H0v-128h256v-256h128V256h256V384H384z" horiz-adv-x="640" /> -<glyph glyph-name="podium" unicode="" d="M320 832c-32 0-64-32-64-64s0-64 0-64h-64l-192-192v-128h192l64-384-128-64v-64h512v64l-128 64 64 384h192v128l-192 192h-256v64s14 0 32 0 32 17 32 32-16 32-32 32 0 0-32 0z m0-832l-53 320h118l-1-320h-64z m-224 512l128 128h32v-64h64v64h224l128-128h-576z" horiz-adv-x="768" /> +<glyph glyph-name="pencil" unicode="" d="M0 64v-192h192l512 512-192 192L0 64z m192-128H64V64h64v-64h64v-64z m659 595l-83-83-192 192 83 83c25 25 65 25 90 0l102-102c25-25 25-65 0-90z" horiz-adv-x="896" /> +<glyph glyph-name="person" unicode="" d="M448 448H64c-35 0-64-29-64-64v-320h128v-192c0-35 29-64 64-64h128c35 0 64 29 64 64V64h128V384c0 35-29 64-64 64z m0-320h-64V256h-64v-384H192V256h-64v-128H64V384h384v-256z m0 512C448 746 362 832 256 832S64 746 64 640s86-192 192-192 192 86 192 192zM256 512c-71 0-128 57-128 128S185 768 256 768s128-57 128-128-57-128-128-128z" horiz-adv-x="512" /> +<glyph glyph-name="pin" unicode="" d="M640 755v-51l32-64-288-192H141c-28 0-43-34-22-55l201-201L64-128l320 256 201-201c21-21 55-6 55 22V192l192 288 64-32h51c28 0 43 34 22 55L695 777c-21 21-55 6-55-22z" horiz-adv-x="1024" /> +<glyph glyph-name="plug" unicode="" d="M960 448v64H704V640H576v-64H448c-66 0-113-52-128-128l-64-64c-106 0-192-86-192-192v-128h64V192c0 71 57 128 128 128l64-64c16-74 63-128 128-128h128v-64h128V192h256v64H704V448h256z" horiz-adv-x="1024" /> +<glyph glyph-name="plus" unicode="" d="M768 256H448v-320H320V256H0V384h320V704h128v-320h320v-128z" horiz-adv-x="768" /> <glyph glyph-name="primitive-dot" unicode="" d="M-0.088 320c0 141.5 114.5 256 256 256 141.438 0 256-114.5 256-256s-114.562-256-256-256C114.413 64-0.088 178.5-0.088 320z" horiz-adv-x="511.825" /> <glyph glyph-name="primitive-square" unicode="" d="M512 64H0V576h512V64z" horiz-adv-x="512" /> <glyph glyph-name="pulse" unicode="" d="M736 320.062L563.188 486.406 422.406 288 352 729.594 152.438 320.062H0V192h230.406L288 307.188l57.594-345.562L576 288l102.375-96H896V320.062H736z" horiz-adv-x="896" /> -<glyph glyph-name="puzzle" unicode="" d="M755.75 256.85c-13.95 9.96-28.52 16.59-43.47 19.92-8.84 1.69-18.06 2.33-27.57 1.81-8.99-0.5-17.56-1.68-25.69-3.52-6.1-1.69-12.22-3.89-18.35-6.59-18.18-8.02-33.89-18.12-46.79-30.33-12.22-12.9-22.32-28.62-30.34-46.79-2.7-6.12-4.9-12.24-6.59-18.34-1.84-8.14-3.03-16.7-3.52-25.69-0.52-9.51 0.12-18.73 1.81-27.57 3.33-14.95 9.96-29.52 19.92-43.47 3.89-5.44 8.08-10.4 12.56-14.88 20.06-20.03 45.83-30.7 75.42-34.11 8.92-1.02 18.12-1.68 26.53-4.48 5.12-1.7 9.16-4.08 12.08-7.02 6.65-6.6 7.63-16.1 2.5-27.24-3.15-6.84-7.7-13.45-12.96-18.84l-2.79-2.86c-3.93-3.92-6.41-6.4-7.05-7.04-3.13-3.16-6.1-6.15-9.06-9.15l-2.96-2.92c-10.52-10.58-21.09-21.12-31.66-31.65-22.76-22.82-45.57-45.58-68.38-68.36-7.5-7.5-15-15-22.5-22.49-3.46-3.45-7.07-6.38-10.78-8.79-1.8-1.22-3.49-2.24-5.18-3.16-19.6-9.89-41.43-5.92-59.24 11.88-5.4 5.4-10.62 10.62-15.85 15.84-30.25 30.25-60.48 60.52-90.77 90.73-8.59 8.57-17.13 17.08-25.68 25.59-6.12 6.09-12.67 11.85-19.56 17.06-5.72 4.33-11.59 7.56-17.46 9.73-21.16 7.32-41.41 2.01-54.67-13.26-3.81-4.8-7-10.47-9.39-16.94-3.43-9.26-4.6-19.47-5.9-29.36-4.9-37.53-25.8-68.43-55.98-82.65-7.48-3.65-15.49-6.29-23.9-7.78-7.95-1.41-15.95-1.71-23.85-1.04-26.61 1.35-49.48 13.09-68.51 32.57-1.68 1.67-2.1 2.09-2.51 2.51-19.48 19.02-31.22 41.9-32.57 68.5-0.68 7.9-0.37 15.9 1.04 23.85 1.49 8.41 4.13 16.43 7.78 23.9 14.22 30.18 45.13 51.07 82.65 55.97 9.89 1.29 20.1 2.47 29.36 5.9 6.94 2.56 12.96 6.05 17.97 10.23 14.54 13.15 19.59 32.63 12.84 52.34-2.78 7.35-6 13.22-10.33 18.94-5.21 6.88-10.97 13.43-17.06 19.55-8.51 8.55-17.03 17.09-25.55 25.63-26.92 26.98-53.84 53.88-80.75 80.78l-10.03 10.03c-5.22 5.22-10.45 10.45-15.26 15.27-18.39 18.4-22.35 40.22-12.46 59.82 0.92 1.69 1.94 3.37 3.08 5.05 2.49 3.84 5.42 7.45 8.87 10.91 7.49 7.5 14.99 15 22.49 22.5 22.77 22.81 45.54 45.62 68.36 68.38 10.53 10.57 21.06 21.14 31.65 31.66l2.92 2.96c2.99 2.97 5.99 5.93 8.98 8.9 0.8 0.81 3.28 3.29 7.2 7.22l2.86 2.79c5.39 5.26 12 9.8 18.84 12.96 11.14 5.13 20.63 4.15 27.24-2.5 2.94-2.92 5.32-6.96 7.02-12.08 2.79-8.41 3.45-17.61 4.48-26.53 3.41-29.59 14.08-55.35 34.11-75.41 4.49-4.48 9.44-8.67 14.88-12.56 13.95-9.96 28.52-16.59 43.47-19.92 8.84-1.69 18.06-2.33 27.57-1.81 8.99 0.5 17.56 1.68 25.69 3.52 6.1 1.69 12.22 3.89 18.35 6.59 18.18 8.02 33.89 18.12 46.79 30.33 12.22 12.9 22.32 28.62 30.34 46.79 2.7 6.12 4.9 12.24 6.59 18.34 1.84 8.14 3.03 16.7 3.52 25.69 0.52 9.51-0.12 18.73-1.81 27.57-3.33 14.95-9.96 29.52-19.92 43.47-3.89 5.44-8.08 10.4-12.56 14.88-20.06 20.03-45.83 30.7-75.42 34.11-8.92 1.02-18.12 1.68-26.53 4.48-5.12 1.7-9.16 4.08-12.08 7.02-6.65 6.6-7.63 16.1-2.5 27.24 3.15 6.84 7.7 13.45 12.96 18.84l2.79 2.86c3.93 3.92 6.41 6.4 7.05 7.04 3.13 3.16 6.1 6.15 9.06 9.15l2.96 2.92c10.52 10.58 21.09 21.12 31.66 31.65 22.76 22.82 45.57 45.58 68.38 68.35 7.5 7.5 15 15 22.5 22.49 3.46 3.45 7.07 6.38 10.78 8.79 1.8 1.22 3.49 2.24 5.18 3.16 19.6 9.89 41.43 5.92 59.24-11.88 5.4-5.4 10.62-10.62 15.85-15.84 30.25-30.25 60.48-60.52 90.77-90.73 8.59-8.57 17.13-17.08 25.68-25.59 6.12-6.09 12.67-11.85 19.56-17.06 5.72-4.33 11.59-7.56 17.46-9.73 21.16-7.32 41.41-2.01 54.67 13.26 3.81 4.8 7 10.47 9.39 16.94 3.43 9.26 4.6 19.47 5.9 29.36 4.9 37.53 25.8 68.43 55.98 82.65 7.48 3.65 15.49 6.28 23.9 7.78 7.95 1.41 15.95 1.71 23.85 1.04 26.61-1.35 49.48-13.09 68.51-32.57 1.68-1.67 2.1-2.09 2.51-2.51 19.48-19.02 31.22-41.9 32.57-68.5 0.68-7.9 0.37-15.9-1.04-23.85-1.49-8.41-4.13-16.43-7.78-23.9-14.22-30.18-45.13-51.07-82.65-55.97-9.89-1.29-20.1-2.47-29.36-5.9-6.94-2.56-12.96-6.05-17.97-10.23-14.54-13.15-19.59-32.63-12.84-52.34 2.78-7.35 6-13.22 10.33-18.94 5.21-6.88 10.97-13.43 17.06-19.55 8.51-8.55 17.03-17.09 25.55-25.63 30.26-30.33 60.54-60.56 90.78-90.81 5.22-5.22 10.45-10.45 15.26-15.27 18.39-18.4 22.35-40.22 12.46-59.82-0.92-1.69-1.94-3.37-3.08-5.05-2.49-3.84-5.42-7.45-8.87-10.91-7.49-7.5-14.99-15-22.49-22.5-22.77-22.81-45.54-45.62-68.36-68.38-10.53-10.57-21.06-21.14-31.65-31.66l-2.92-2.96c-2.99-2.97-5.99-5.93-8.98-8.9-0.8-0.81-3.28-3.29-7.2-7.22l-2.86-2.79c-5.39-5.26-12-9.8-18.84-12.96-11.14-5.13-20.63-4.15-27.24 2.5-2.94 2.92-5.32 6.96-7.02 12.08-2.79 8.41-3.45 17.61-4.48 26.53-3.41 29.59-14.08 55.35-34.11 75.41C766.15 248.76999999999998 761.19 252.97000000000003 755.75 256.85z" horiz-adv-x="1024" /> -<glyph glyph-name="question" unicode="" d="M448 64h128v128h-128v-128z m64 512c-96 0-192-96-192-192h128c0 32 32 64 64 64s64-32 64-64c0-64-128-64-128-128h128c64 22 128 64 128 160s-96 160-192 160z m0 256c-283 0-512-229-512-512s229-512 512-512 512 229 512 512-229 512-512 512z m0-896c-212 0-384 172-384 384s172 384 384 384 384-172 384-384-172-384-384-384z" horiz-adv-x="1024" /> +<glyph glyph-name="question" unicode="" d="M384 192h128v-128H384V192z m256 224c0-137-128-160-128-160H384c0 35 29 64 64 64h32c18 0 32 14 32 32v64c0 18-14 32-32 32h-64c-18 0-32-14-32-32v-32H256c0 96 96 192 192 192s192-64 192-160zM448 685c201 0 365-164 365-365S649-45 448-45 83 119 83 320s164 365 365 365m0 83C201 768 0 567 0 320s201-448 448-448 448 201 448 448S695 768 448 768z" horiz-adv-x="896" /> <glyph glyph-name="quote" unicode="" d="M0 320v-256h256V320H128c0 0 0 128 128 128V576C256 576 0 576 0 320zM640 448V576c0 0-256 0-256-256v-256h256V320H512C512 320 512 448 640 448z" horiz-adv-x="640" /> <glyph glyph-name="radio-tower" unicode="" d="M306.838 441.261c15.868 16.306 15.868 42.731 0 59.037-20.521 21.116-30.643 48.417-30.705 76.124 0.062 27.77 10.183 55.039 30.705 76.186 15.868 16.337 15.868 42.764 0 59.069-7.934 8.184-18.272 12.275-28.706 12.275-10.371 0-20.804-4.029-28.738-12.213-36.266-37.297-54.633-86.433-54.57-135.317-0.062-48.792 18.305-97.927 54.57-135.161C265.262 424.955 290.97 424.955 306.838 441.261zM149.093 798.858c-8.121 8.309-18.68 12.463-29.3 12.463-10.558 0-21.179-4.154-29.237-12.463C30.8 737.509 0.751 656.856 0.813 576.422 0.751 496.081 30.8 415.272 90.494 353.985c16.181-16.618 42.356-16.618 58.537 0 16.118 16.587 16.118 43.513 0 60.067-43.7 44.98-65.44 103.456-65.44 162.368s21.74 117.449 65.44 162.368C165.149 755.439 165.149 782.365 149.093 798.858zM513.031 472.153c57.351 0 103.956 46.574 103.956 103.956 0 57.382-46.605 103.955-103.956 103.955-57.381 0-103.956-46.573-103.956-103.955C409.076 518.727 455.65 472.153 513.031 472.153zM933.539 798.233c-16.181 16.618-42.355 16.618-58.475 0-16.181-16.587-16.181-43.513 0-60.068 43.668-44.918 65.409-103.456 65.409-162.368 0-58.85-21.805-117.387-65.473-162.306-16.117-16.618-16.117-43.575 0.062-60.068 8.059-8.309 18.616-12.463 29.237-12.463 10.558 0 21.178 4.154 29.236 12.463 59.726 61.287 89.774 142.096 89.649 222.437C1023.313 656.138 993.264 736.947 933.539 798.233zM513.281 389.127L513.281 389.127c-26.489-0.062-53.04 6.466-77.091 19.429L235.057-127.59000000000003h95.209l54.819 63.973h255.891l53.977-63.973h95.272L589.124 408.431C565.384 395.655 539.395 389.127 513.281 389.127zM512.656 358.483L577.004 128.29999999999995H449.059L512.656 358.483zM385.086 0.3550000000000182l63.974 63.973h127.944l63.974-63.973H385.086zM717.194 710.958c-15.868-16.306-15.868-42.731 0-59.037 20.491-21.116 30.611-48.511 30.674-76.124-0.062-27.77-10.183-55.102-30.674-76.187-15.868-16.336-15.868-42.763 0-59.068 7.871-8.184 18.242-12.213 28.737-12.213 10.309 0 20.741 4.029 28.675 12.213 36.298 37.234 54.665 86.433 54.54 135.255 0.125 48.792-18.181 97.927-54.54 135.161C758.801 727.264 733.062 727.264 717.194 710.958z" horiz-adv-x="1024" /> -<glyph glyph-name="repo" unicode="" d="M320 576h-64v-64h64v64z m0 128h-64v-64h64v64z m384 128c-32 0-608 0-640 0s-64-32-64-64 0-736 0-768 32-64 64-64 128 0 128 0v-128l96 96 96-96v128s288 0 320 0 64 32 64 64 0 736 0 768-32 64-64 64z m0-800c0-16-15-32-32-32s-288 0-288 0v64h-192v-64s-79 0-96 0-32 17-32 32 0 96 0 96h640s0-80 0-96z m0 160h-512v576h513l-1-576z m-384 128h-64v-64h64v64z m0 128h-64v-64h64v64z" horiz-adv-x="768" /> -<glyph glyph-name="repo-clone" unicode="" d="M320 448h-64v-64h64v64z m-128 320h256v64s-352 0-384 0-64-32-64-64 0-736 0-768 32-64 64-64 128 0 128 0v-128l96 96 96-96v128s286 0 320 0 64 32 64 64 0 192 0 192h-576v576z m512-640s0-79 0-96-14-32-32-32-288 0-288 0v64h-192v-64s-80 0-96 0-32 16-32 32 0 96 0 96h640z m-384 448h-64v-64h64v64z m-64-320h64v64h-64v-64z m704 576c-32 0-288 0-320 0s-64-32-64-64 0-352 0-384 32-64 64-64 64 0 64 0v-64l32 32 32-32v64s160 0 192 0 64 32 64 64 0 352 0 384-32 64-64 64z m-256-448s-15 0-32 0-32 15-32 32 0 32 0 32h64v-64z m256 32c0-16-15-32-32-32s-160 0-160 0v64h192s0-16 0-32z m0 96h-256v256h224s32 0 32-32 0-224 0-224z m-640 192h-64v-64h64v64z" horiz-adv-x="1024" /> -<glyph glyph-name="repo-force-push" unicode="" d="M768 768c0 32-32 64-64 64s-608 0-640 0-64-32-64-64 0-768 0-768 0 32 0 0 32-64 64-64 128 0 128 0v-128l128 128v128h-128v-64s-79 0-96 0-32 15-32 32 0 96 0 96h256v64h-128v576h512v-576h-128v-64h128s0-80 0-96-15-32-32-32-96 0-96 0v-64s96 0 128 0 64 32 64 64 0 736 0 768z m-272-320h144l-192 256-192-256h144l-144-192h128v-448h128v448h128l-144 192z" horiz-adv-x="767.896" /> -<glyph glyph-name="repo-forked" unicode="" d="M768 704c0 71-57 128-128 128s-128-57-128-128c0-47 26-89 64-111v-106l-192-212-192 212v106c38 22 64 63 64 111 0 71-57 128-128 128s-128-57-128-128c0-47 26-89 64-111v-156l256-282v-109c-38-22-64-63-64-111 0-71 57-128 128-128s128 57 128 128c0 47-26 89-64 111v109l256 282v156c38 22 64 63 64 111z m-640 63c34 0 62-28 62-62s-28-62-62-62-62 28-62 62 28 62 62 62z m256-891c-34 0-62 28-62 62s28 62 62 62 62-28 62-62-28-62-62-62z m256 891c34 0 62-28 62-62s-28-62-62-62-62 28-62 62 28 62 62 62z" horiz-adv-x="768" /> -<glyph glyph-name="repo-pull" unicode="" d="M1024 512l-192 192v-128h-384v-128h384v-128l192 192z m-320-320h-512v576h512v-128h64s0 96 0 128-32 64-64 64-608 0-640 0-64-32-64-64 0-736 0-768 32-64 64-64 128 0 128 0v-128l96 96 96-96v128s288 0 320 0 64 32 64 64 0 384 0 384h-64v-192z m0-160c0-15-15-32-32-32s-288 0-288 0v64h-192v-64s-79 0-96 0-32 16-32 32 0 96 0 96h640s0-81 0-96z m-384 544h-64v-64h64v64z m0 128h-64v-64h64v64z m0-256h-64v-64h64v64z m-64-192h64v64h-64v-64z" horiz-adv-x="1024" /> -<glyph glyph-name="repo-push" unicode="" d="M448 512l-192-256h128v-448h128v448h128l-192 256z m-192 0h64v64h-64v-64z m64 192h-64v-64h64v64z m384 128c-32 0-608 0-640 0s-64-32-64-64 0-736 0-768 32-64 64-64 128 0 128 0v-128l128 128v128h-128v-64s-79 0-96 0-32 14-32 32 0 96 0 96h256v64h-128v576h513l-1-576h-128v-64h128s0-79 0-96-15-32-32-32-96 0-96 0v-64s96 0 128 0 64 32 64 64 0 736 0 768-32 64-64 64z" horiz-adv-x="768" /> -<glyph glyph-name="rocket" unicode="" d="M716.737 707.944c-71.926-41.686-148.041-96.13-218.436-166.555-45-45.031-81.213-88.78-110.39-129.778L209.538 378.65 0.047 169.00300000000004l186.818-5.815 131.562 131.562c-46.439-96.224-50.536-160.019-50.536-160.019l58.854-58.792c0 0 65.827 6.255 162.737 53.163L355.107-5.119000000000028l5.88-186.881 209.585 209.521 33.086 179.252c41.403 29.02 85.185 65.046 129.716 109.545 70.425 70.455 124.837 146.541 166.555 218.466-45.97 9.351-88.125 28.488-121.397 61.668C745.257 619.819 725.994 661.975 716.737 707.944zM786.161 745.157c5.004-45 19.952-81.274 44.78-105.98 24.769-24.985 60.98-39.902 106.138-44.844C1003.063 727.677 1023.953 832 1023.953 832S919.63 811.142 786.161 745.157z" horiz-adv-x="1024" /> -<glyph glyph-name="rss" unicode="" d="M128 192C57.344 192 0 134.625 0 64s57.344-128 128-128 128 57.375 128 128S198.656 192 128 192zM128 448c0 0-64-2-64-64s64-64 64-64c141.375 0 256-114.625 256-256 0 0 0-64 64-64s64 64 64 64C512 276 340.031 448 128 448zM128 704c0 0-64 0-64-64s64-64 64-64c282.75 0 512-229.25 512-512 0 0 0-64 64-64s64 64 64 64C768 417.406 481.5 704 128 704z" horiz-adv-x="768" /> -<glyph glyph-name="ruby" unicode="" d="M768 704H256L0 448l512-512 512 512L768 704zM128 448l192 192h384l192-192L512 64 128 448zM704 576H512v-448l320 320L704 576z" horiz-adv-x="1024" /> -<glyph glyph-name="screen-full" unicode="" d="M128 64h639.875V576H128V64zM255.938 448h384v-256h-384V448zM64 639.938h191.938v64H0V448h64V639.938zM64 192H0v-255.938h255.938V0H64V192zM639.938 703.938v-64h191.938V448h64V703.938H639.938zM831.875 0H639.938v-63.938h255.938V192h-64V0z" horiz-adv-x="895.875" /> -<glyph glyph-name="screen-normal" unicode="" d="M127.938 640.062H0v-64h191.938V768h-64V640.062zM0-0.06200000000001182h127.938V-128h64V63.93799999999999H0V-0.06200000000001182zM768.062 640.062V768h-64v-191.938H896v64H768.062zM704.062-128h64V-0.06200000000001182H896v64H704.062V-128zM192.062 128H704V512H192.062V128zM320 384h256v-128H320V384z" horiz-adv-x="896" /> -<glyph glyph-name="search" unicode="" d="M960 0L710.875 249.125C746.438 307.188 768 374.844 768 448 768 660.031 596 832 384 832 171.969 832 0 660.031 0 448c0-212 171.969-384 384-384 73.156 0 140.812 21.562 198.875 57L832-128c17.5-17.5 46.5-17.375 64 0l64 64C977.5-46.5 977.5-17.5 960 0zM384 192c-141.375 0-256 114.625-256 256s114.625 256 256 256 256-114.625 256-256S525.375 192 384 192z" horiz-adv-x="973.125" /> -<glyph glyph-name="server" unicode="" d="M704 448h-640c-35 0-64-32-64-64v-128c0-32 32-64 64-64h640c32 0 64 32 64 64v128c0 32-32 64-64 64z m-576-192h-64v128h64v-128z m128 0h-64v128h64v-128z m128 0h-64v128h64v-128z m128 0h-64v128h64v-128z m192-128h-640c-35 0-64-32-64-64v-128c0-32 32-64 64-64h640c32 0 64 32 64 64v128c0 32-32 64-64 64z m-576-192h-64v128h64v-128z m128 0h-64v128h64v-128z m128 0h-64v128h64v-128z m128 0h-64v128h64v-128z m192 832h-640c-35 0-64-32-64-64v-128c0-32 32-64 64-64h640c32 0 64 32 64 64v128c0 32-32 64-64 64z m-576-192h-64v128h64v-128z m128 0h-64v128h64v-128z m128 0h-64v128h64v-128z m128 0h-64v128h64v-128z m192 64h-64v64h64v-64z" horiz-adv-x="768" /> -<glyph glyph-name="settings" unicode="" d="M64-64h128V128H64V-64zM192 704H64v-320h128V704zM512 704H384v-128h128V704zM0 192h256V320H0V192zM384-64h128V320H384V-64zM320 384h256V512H320V384zM832 704H704v-384h128V704zM640 256v-128h256V256H640zM704-64h128V64H704V-64z" horiz-adv-x="896" /> -<glyph glyph-name="sign-in" unicode="" d="M640 256L640 384 896 384 896 512 640 512 640 640 448 496 448 640 192 768 704 768 704 576 768 576 768 832 64 832 64 0 448-192 448 0 768 0 768 320 704 320 704 64 448 64 448 400z" horiz-adv-x="896" /> -<glyph glyph-name="sign-out" unicode="" d="M640 64H384V640L128 768h512v-192h64V832H0v-832l384-192V0h320V320h-64V64zM1024 448L768 640v-128H512v-128h256v-128L1024 448z" horiz-adv-x="1024" /> -<glyph glyph-name="split" unicode="" d="M448 576l-256 256-192-192 311-300c15 81 43 136 133 230l5 6z m128 256l133-133-197-197c-99-99-128-162-128-309v-384h256v384c0 52 19 94 53 128l197 197 133-133v448h-448z" horiz-adv-x="1024" /> +<glyph glyph-name="repo" unicode="" d="M256 256h-64v64h64v-64z m0 192h-64v-64h64v64z m0 128h-64v-64h64v64z m0 128h-64v-64h64v64z m512 64v-768c0-35-29-64-64-64H384v-128l-96 96-96-96V-64H64c-35 0-64 29-64 64V768C0 803 29 832 64 832h640c35 0 64-29 64-64z m-64-640H64v-128h128v64h192v-64h320V128z m0 640H128v-576h576V768z" horiz-adv-x="768" /> +<glyph glyph-name="repo-clone" unicode="" d="M960 832H576v-448c0-35 29-64 64-64h64v-64h64v64h192c35 0 64 29 64 64V768c0 35-29 64-64 64zM704 384h-64v64h64v-64z m256 0H768v64h192v-64z m0 128H704V768h256v-256z m-704 0h-64v64h64v-64z m0 128h-64v64h64v-64zM128 768h384V832H64C29 832 0 803 0 768v-768c0-35 29-64 64-64h128v-128l96 96 96-96V-64h320c35 0 64 29 64 64V192H128V768z m576-640v-128H384v64H192v-64H64V128h640zM192 320h64v-64h-64v64z m64 64h-64v64h64v-64z" horiz-adv-x="1024" /> +<glyph glyph-name="repo-force-push" unicode="" d="M640 256H512v-448H384V256H256l144 192H256l192 256 192-256H496l144-192zM704 832H64C29 832 0 803 0 768v-768c0-35 29-64 64-64h256v64H64V128h256v64H128V768h576v-576H576v-64h128v-128H576v-64h128c35 0 64 29 64 64V768c0 35-29 64-64 64z" horiz-adv-x="767.896" /> +<glyph glyph-name="repo-forked" unicode="" d="M512 768c-71 0-128-57-128-128 0-47 26-88 64-110v-82L320 320 192 448v82c38 22 64 63 64 110 0 71-57 128-128 128S0 711 0 640c0-47 26-88 64-110v-114l192-192v-114c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110V224l192 192V530c38 22 64 63 64 110 0 71-57 128-128 128zM128 563c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z m192-640c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z m192 640c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z" horiz-adv-x="640" /> +<glyph glyph-name="repo-pull" unicode="" d="M832 320V448H448V576h384V704l192-192-192-192zM256 704h-64v-64h64v64z m448-320h64v-384c0-35-29-64-64-64H384v-128l-96 96-96-96V-64H64c-35 0-64 29-64 64V768C0 803 29 832 64 832h640c35 0 64-29 64-64v-128h-64V768H128v-576h576V384z m0-256H64v-128h128v64h192v-64h320V128zM256 448h-64v-64h64v64z m0 128h-64v-64h64v64z m-64-320h64v64h-64v-64z" horiz-adv-x="1024" /> +<glyph glyph-name="repo-push" unicode="" d="M256 640h-64v64h64v-64z m-64-128h64v64h-64v-64z m256 0L256 256h128v-448h128V256h128L448 512zM704 832H64C29 832 0 803 0 768v-768c0-35 29-64 64-64h256v64H64V128h256v64H128V768h577l-1-576H576v-64h128v-128H576v-64h128c35 0 64 29 64 64V768c0 35-29 64-64 64z" horiz-adv-x="768" /> +<glyph glyph-name="rocket" unicode="" d="M1024 832s-6-24-19-68c-13-45-35-101-68-170-45 5-81 21-106 46s-40 60-45 105c69 33 125 56 169 69 45 13 69 18 69 18zM779 587c-17 17-30 35-40 56-10 20-17 42-22 65-37-21-74-45-111-72-37-28-73-60-108-95-45-45-85-116-114-157H192L0 192h192l128 128c-22-49-65-191-64-192l64-64c1-1 143 41 192 64L384 0v-192l192 192V192c41 29 112 70 157 114 35 35 67 72 94 109 28 37 52 74 73 110-23 5-45 12-66 22-20 10-38 23-55 40z" horiz-adv-x="1024" /> +<glyph glyph-name="rss" unicode="" d="M128 0H0V128c71 0 128-57 128-128zM0 640v-64c318 0 576-258 576-576h64c0 353-287 640-640 640z m0-256v-64c176 0 320-144 320-320h64c0 212-172 384-384 384z" horiz-adv-x="640" /> +<glyph glyph-name="ruby" unicode="" d="M832 448L512 128V576h192l128-128z m192 0L512-64 0 448l256 256h512l256-256zM512 32l416 416-192 192H288L96 448l416-416z" horiz-adv-x="1024" /> +<glyph glyph-name="screen-full" unicode="" d="M832 192h64v-192c0-35-29-64-64-64H640v64h192V192z m-768 0H0v-192c0-35 29-64 64-64h192v64H64V192z m0 448h192v64H64c-35 0-64-29-64-64v-192h64V640z m64-64h640v-512H128V576z m128-384h384V448H256v-256z m576 512H640v-64h192v-192h64V640c0 35-29 64-64 64z" horiz-adv-x="896" /> +<glyph glyph-name="screen-normal" unicode="" d="M128 576H0v64h128V768h64v-128c0-35-29-64-64-64z m0-512H0v-64h128v-128h64V0c0 35-29 64-64 64z m576 128c0-35-29-64-64-64H256c-35 0-64 29-64 64V448c0 35 29 64 64 64h384c35 0 64-29 64-64v-256zM576 384H320v-128h256V384z m128-384v-128h64V0h128v64H768c-35 0-64-29-64-64z m64 640V768h-64v-128c0-35 29-64 64-64h128v64H768z" horiz-adv-x="896" /> +<glyph glyph-name="search" unicode="" d="M1005-83L761 162c45 63 71 139 71 222 0 212-172 384-384 384S64 596 64 384s172-384 384-384c83 0 159 26 222 71l245-244c12-13 29-19 45-19s33 6 45 19c25 25 25 65 0 90zM448 83c-166 0-301 135-301 301s135 301 301 301 301-135 301-301-135-301-301-301z" horiz-adv-x="1024" /> +<glyph glyph-name="server" unicode="" d="M704 448H64c-35 0-64-29-64-64v-128c0-35 29-64 64-64h640c35 0 64 29 64 64V384c0 35-29 64-64 64zM128 256H64V384h64v-128z m128 0h-64V384h64v-128z m128 0h-64V384h64v-128z m128 0h-64V384h64v-128zM704 768H64C29 768 0 739 0 704v-128c0-35 29-64 64-64h640c35 0 64 29 64 64V704c0 35-29 64-64 64zM128 576H64V704h64v-128z m128 0h-64V704h64v-128z m128 0h-64V704h64v-128z m128 0h-64V704h64v-128z m192 64h-64v64h64v-64z m0-512H64c-35 0-64-29-64-64v-128c0-35 29-64 64-64h640c35 0 64 29 64 64V64c0 35-29 64-64 64zM128-64H64V64h64v-128z m128 0h-64V64h64v-128z m128 0h-64V64h64v-128z m128 0h-64V64h64v-128z" horiz-adv-x="768" /> +<glyph glyph-name="settings" unicode="" d="M192 384h-64V704h64v-320z m-64-448h64V128h-64v-192z m320 0h64V320h-64v-384z m320 0h64V64h-64v-128z m64 768h-64v-384h64V704z m-320 0h-64v-128h64V704zM256 320H64c-35 0-64-29-64-64s29-64 64-64h192c35 0 64 29 64 64s-29 64-64 64z m320 192H384c-35 0-64-29-64-64s29-64 64-64h192c35 0 64 29 64 64s-29 64-64 64z m320-256H704c-35 0-64-29-64-64s29-64 64-64h192c35 0 64 29 64 64s-29 64-64 64z" horiz-adv-x="1024" /> +<glyph glyph-name="shield" unicode="" d="M448 832L0 704v-385c0-299 340-511 448-511s448 212 448 511V704L448 832zM320 128l73 179c3 15-4 30-16 38-36 23-57 61-57 103 0 70 57 128 127 128 69 0 129-58 129-128 0-42-21-80-57-103-12-8-19-23-16-38l73-179H320z" horiz-adv-x="896" /> +<glyph glyph-name="sign-in" unicode="" d="M384 400v-336h256V320h64v-256c0-35-29-64-64-64H384v-192L35-18c-21 11-35 33-35 58V768C0 803 29 832 64 832h576c35 0 64-29 64-64v-192h-64V768H128l256-128v-144l192 144v-128h256v-128H576v-128L384 400z" horiz-adv-x="896" /> +<glyph glyph-name="sign-out" unicode="" d="M768 256V384H512V512h256V640l256-192-256-192zM640 64H384V640L128 768h512v-192h64V768c0 35-29 64-64 64H64C29 832 0 803 0 768v-728c0-25 14-47 35-58l349-174V0h256c35 0 64 29 64 64V320h-64v-256z" horiz-adv-x="1024" /> <glyph glyph-name="squirrel" unicode="" d="M768 768c-141.385 0-256-83.75-256-186.875C512 457.25 544 387 512 192c0 288-177 405.783-256 405.783 3.266 32.17-30.955 42.217-30.955 42.217s-14-7.124-19.354-21.583c-17.231 20.053-36.154 17.54-36.154 17.54l-8.491-37.081c0 0-117.045-40.876-118.635-206.292C56 371 141.311 353.898 201.887 364.882c57.157-2.956 42.991-50.648 30.193-63.446C178.083 247.438 128 320 64 320s-64-64 0-64 64-64 192-64c-198-77 0-256 0-256h-64c-64 0-64-64-64-64s256 0 384 0c192 0 320 64 320 222.182 0 54.34-27.699 114.629-64 162.228C697.057 349.433 782.453 427.566 832 384s192-64 192 128C1024 653.385 909.385 768 768 768zM160 448c-17.674 0-32 14.327-32 32 0 17.674 14.326 32 32 32 17.673 0 32-14.326 32-32C192 462.327 177.673 448 160 448z" horiz-adv-x="1024" /> <glyph glyph-name="star" unicode="" d="M896 448l-313.5 40.781L448 768 313.469 488.781 0 448l230.469-208.875L171-63.93799999999999l277 148.812 277.062-148.812L665.5 239.125 896 448z" horiz-adv-x="896" /> -<glyph glyph-name="steps" unicode="" d="M136 768C60.89 768 0 667.71 0 544c0-68.83 17.02-141.84 34-254.54C47.3 201.16999999999996 79.67 128 136 128s94.08 48.79 94.08 137.97c0 30.37-24.97 78.75-26.08 120.03-2.02 74.46 49.93 104.17 49.93 173C253.93 682.71 211.1 768 136 768zM502.97 512c-75.1 0-117.93-85.29-117.93-209 0-68.83 51.95-98.54 49.93-173-1.109-41.28-26.08-89.66-26.08-120.03 0-89.18 37.75-137.97 94.08-137.97s88.7 73.17 102 161.46c16.98 112.7 34 185.71 34 254.54C638.97 411.71 578.08 512 502.97 512z" horiz-adv-x="640" /> -<glyph glyph-name="stop" unicode="" d="M704 832H320L0 512v-384l320-320h384l320 320V512L704 832zM896 192L640-64H384L128 192V448l256 256h256l256-256V192zM448 256h128V576H448V256zM448 64h128V192H448V64z" horiz-adv-x="1024" /> +<glyph glyph-name="stop" unicode="" d="M640 768H256L0 512v-384l256-256h384l256 256V512L640 768z m192-608L608-64H288L64 160V480l224 224h320l224-224v-320zM384 576h128v-320H384V576z m0-384h128v-128H384V192z" horiz-adv-x="896" /> <glyph glyph-name="sync" unicode="" d="M655.461 358.531c11.875-81.719-13.062-167.781-76.812-230.594-94.188-92.938-239.5-104.375-346.375-34.562l74.875 73L31.96 204.75 70.367-64l84.031 80.5c150.907-111.25 364.938-100.75 502.063 34.562 79.5 78.438 115.75 182.562 111.25 285.312L655.461 358.531zM189.46 511.938c94.156 92.938 239.438 104.438 346.313 34.562l-75-72.969 275.188-38.406L697.586 704l-83.938-80.688C462.711 734.656 248.742 724.031 111.585 588.75 32.085 510.344-4.133 406.219 0.335 303.5l112.25-22.125C100.71 363.125 125.71 449.094 189.46 511.938z" horiz-adv-x="768.051" /> -<glyph glyph-name="tag" unicode="" d="M384 768H128L0 640v-256l512-512 384 384L384 768zM64 416V608l96 96h192l448-448L512-32 64 416zM448 512L256 320l256-256 192 192L448 512zM352 320l96 96 160-160-96-96L352 320zM320 544c0 53-43 96-96 96s-96-43-96-96 43-96 96-96S320 491 320 544zM224 512c-17.656 0-32 14.344-32 32s14.344 32 32 32 32-14.344 32-32S241.656 512 224 512z" horiz-adv-x="896" /> -<glyph glyph-name="telescope" unicode="" d="M76 409c32 8 229 59 229 59-1-6-2-19-2-19 0-71 49-128 128-128s128 59 128 128c0 11-8 22-19 32l49-3s7 2 31 8c-51-14-108 31-126 99s8 135 60 149c-24-6-31-8-31-8l-168-110c-34-9-55-46-46-80 2-9 7-17 12-23-7-12-12-26-15-40-27 1-51 19-59 46-9 34 11 69 45 78l-245-65c-34-9-54-43-45-77s41-54 73-46z m419-153h-128v-64l-320-320h128l192 128v-128h128v128l192-128h128l-320 320v64z m429 448c-18 68-70 110-122 96-69-18-98-28-186-51-51-14-79-80-61-148s74-115 125-102c87 23 117 33 186 51 51 14 76 85 58 154z m-70-90c-17-5-42 17-51 51s-4 66 13 70 42-17 51-51 4-66-13-70z" horiz-adv-x="929.875" /> -<glyph glyph-name="terminal" unicode="" d="M831 705H63c-35.35 0-64-28.65-64-64v-640c0-35.35 28.65-64 64-64h768c35.35 0 64 28.65 64 64V641C895 676.35 866.35 705 831 705zM127 257l128 128L127 513l64 64 192-192L191 193 127 257zM639 193H383v64h256V193z" horiz-adv-x="896" /> +<glyph glyph-name="tag" unicode="" d="M431 657c-30 30-71 47-113 47H160C72 704 0 632 0 544v-158c0-42 17-83 47-113l388-388c25-25 65-25 90 0l294 294c25 25 25 65 0 90L431 657zM88 314c-20 19-30 45-30 72V544c0 56 46 102 102 102h158c27 0 53-10 72-30l393-392-303-303L88 314z m40 262h128v-128H128V576z" horiz-adv-x="896" /> +<glyph glyph-name="telescope" unicode="" d="M512 256l192-384h-64L512 128v-320h-64V192L320-128h-64l128 320 128 64zM448 832h-64v-64h64V832zM320 640h-64v-64h64v64zM128 768H64v-64h64V768zM40 256c-14-10-18-28-10-43l35-59c8-15 26-20 41-13l89 42-74 128-81-55z m505 345L174 348l79-137 405 194-113 196z m270-82l-94 161c-9 16-30 21-46 11l-77-53 118-205 85 41c17 8 23 28 14 45z" horiz-adv-x="896" /> +<glyph glyph-name="terminal" unicode="" d="M448 192h256v-64H448v64z m-192-64l192 192-192 192-48-48 144-144-144-144 48-48z m640 512v-640c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h768c35 0 64-29 64-64z m-64 0H64v-640h768V640z" horiz-adv-x="896" /> <glyph glyph-name="three-bars" unicode="" d="M0 640v-128h768v128h-768z m0-384h768v128h-768v-128z m0-256h768v128h-768v-128z" horiz-adv-x="768" /> -<glyph glyph-name="thumbsdown" unicode="" d="M833 258c0-38-31-68-68-68h-111c-5 0-109 4-128-8-19-11-21-101-8-139 12-34 22-100-16-150-23-30-57-25-78-17-23 8-14 50-10 86 4 35-14 93-47 123s-29 58-45 86-41 52-62 86-68 41-132 39v353s93 0 114 2c31 3 72 13 112 26 41 13 128 26 140 26 89 3 174-18 208-24 34-7 60-41 54-77-2-11-6-21-12-29 6-2 11-5 16-9 22-12 36-34 36-60 0-21-9-39-24-52 4-1 8-3 12-5 27-9 47-35 47-65 0-27-16-51-40-62 2-1 4-2 6-4 15-9 26-23 31-40 2-6 3-11 3-18 0-1 0-1 0-2z" horiz-adv-x="1024" /> -<glyph glyph-name="thumbsup" unicode="" d="M833 381c0 38-31 68-68 68h-111c-5 0-109-4-128 8-19 11-21 101-8 139 12 34 22 100-16 150-23 30-57 25-78 17-23-8-14-50-10-86 4-35-14-93-47-123s-29-58-45-86-41-52-62-86-68-41-132-39v-353s93 0 114-2c31-3 72-13 112-26 41-13 128-26 140-26 89-3 174 18 208 24s60 41 54 77c-2 11-6 21-12 29 6 2 11 5 16 9 22 12 36 34 36 60 0 21-9 39-24 52 4 1 8 3 12 5 27 9 47 35 47 65 0 27-16 51-40 62 2 1 4 2 6 4 15 9 26 23 31 40 2 6 3 11 3 18 0 1 0 1 0 2z" horiz-adv-x="1024" /> +<glyph glyph-name="thumbsdown" unicode="" d="M871 347c9 19 15 40 15 62 0 51-28 96-69 120 4 13 6 27 6 41 0 50-26 93-65 118 2 8 10 19 10 27C768 781 709 832 640 832c0 0-212 0-222 0-88 0-170-43-242-81-42-22-89-47-113-47H0v-576h64c37-2 155-69 206-112 12-10 173-168 173-168 26-26 60-40 96-40 35 0 68 13 92 38 51 51 50 135-2 188-20 20-94 115-117 138l256-44c76 0 128 59 128 131 0 34-3 64-25 88zM768 192l-384 64c-7 0 200-266 200-266 28-29 29-73 3-100-13-13-30-19-48-19s-37 7-52 21L347 34c-86 71-216 158-283 158V642c87 0 221 126 352 126h224c34 0 64-20 64-53 0-34-30-75-64-75h48c45 0 72-25 72-70 0-44-36-90-81-90h63c45 0 81-26 81-71 0-44-36-80-81-80h27c42 0 63-32 63-70 0-39-23-67-64-67z" horiz-adv-x="896" /> +<glyph glyph-name="thumbsup" unicode="" d="M896 381c0 72-52 131-128 131l-256-44c23 23 97 118 117 138 52 53 53 137 2 188-24 25-57 38-92 38-36 0-70-14-96-40 0 0-161-158-173-168-51-43-169-110-206-112H0v-576h63c24 0 71-25 113-47 72-38 154-81 242-81 10 0 222 0 222 0 69 0 128 51 128 117 0 8-8 19-10 27 39 25 65 68 65 118 0 14-2 28-6 41 41 24 69 69 69 120 0 22-6 43-15 62 22 24 25 54 25 88z m-64 0c0-38-21-70-63-70h-27c45 0 81-36 81-80 0-45-36-71-81-71h-63c45 0 81-46 81-90 0-45-27-70-72-70h-48c34 0 64-41 64-75 0-33-30-53-64-53H416c-131 0-265 126-352 126V448c67 0 197 87 283 158L487 748c15 14 34 21 52 21s35-6 48-19c26-27 25-71-3-100 0 0-207-266-200-266l384 64c41 0 64-28 64-67z" horiz-adv-x="896" /> <glyph glyph-name="tools" unicode="" d="M286.547 366.984c16.843-16.812 81.716-85.279 81.716-85.279l35.968 37.093-56.373 58.248L456.072 491.98c0 0-48.842 47.623-27.468 28.655 20.438 75.903 1.812 160.589-55.842 220.243C315.608 800.064 234.392 819.47 161.425 799.096l123.653-127.715-32.53-125.309-121.06-33.438L7.898 640.3820000000001c-19.718-75.436-0.969-159.339 56.311-218.556C124.302 359.703 210.83 341.453 286.547 366.984zM698.815 242.769L549.694 95.46100000000001l245.932-254.805c20.062-20.812 46.498-31.188 72.872-31.188 26.25 0 52.624 10.375 72.811 31.188 40.249 41.624 40.249 108.997 0 150.62L698.815 242.769zM1023.681 670.162L867.06 832.001 405.387 354.703l56.373-58.248L185.425 10.839000000000055l-63.154-33.749-89.217-145.559 22.719-23.562 140.839 92.247 32.655 65.312 276.336 285.554 56.404-58.248L1023.681 670.162z" horiz-adv-x="1024" /> -<glyph glyph-name="trashcan" unicode="" d="M704 704H448c0 0 0 24.057 0 32 0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 0-32 0-32H128c-35.346 0-64-28.654-64-64v-64c0-35.346 28.654-64 64-64v-576c0-35.346 28.654-64 64-64h448c35.346 0 64 28.654 64 64V512c35.346 0 64 28.654 64 64v64C768 675.346 739.346 704 704 704zM640-32c0-17.673-14.327-32-32-32H224c-17.673 0-32 14.327-32 32V512h64v-480c0-17.673 14.327-32 32-32s32 14.327 32 32l0.387 480H384v-480c0-17.673 14.327-32 32-32s32 14.327 32 32l0.387 480h64L512 32c0-17.673 14.327-32 32-32s32 14.327 32 32V512h64V-32zM704 592c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h544c8.837 0 16-7.163 16-16V592z" horiz-adv-x="768" /> +<glyph glyph-name="trashcan" unicode="" d="M640 704H512c0 35-29 64-64 64H256c-35 0-64-29-64-64H64c-35 0-64-29-64-64v-64c0-35 29-64 64-64v-576c0-35 29-64 64-64h448c35 0 64 29 64 64V512c35 0 64 29 64 64v64c0 35-29 64-64 64z m-64-768H128V512h64v-512h64V512h64v-512h64V512h64v-512h64V512h64v-576z m64 640H64v64h576v-64z" horiz-adv-x="768" /> <glyph glyph-name="triangle-down" unicode="" d="M0 448l383.75-383.75L767.5 448H0z" horiz-adv-x="767.5" /> <glyph glyph-name="triangle-left" unicode="" d="M0 320.125l383.75-383.75v767.5L0 320.125z" horiz-adv-x="383.75" /> <glyph glyph-name="triangle-right" unicode="" d="M0.062 703.75L383.812 320 0.062-63.75V703.75z" horiz-adv-x="383.875" /> <glyph glyph-name="triangle-up" unicode="" d="M383.75 576L0 192.25h767.5L383.75 576z" horiz-adv-x="767.5" /> -<glyph glyph-name="unfold" unicode="" d="M384 448h128V640h128L448 832 256 640h128V448zM576 576v-64h224L672 384H224L96 512h224v64H0v-63.999L160 352 0 192v-64h320v64H96l128 128h448l128-128H576v-64h320v64L736 352l160 160.001V576H576zM512 256H384v-192H256l192-192 192 192H512V256z" horiz-adv-x="896" /> -<glyph glyph-name="unmute" unicode="" d="M128 448H0v-256h128l256-192h64V640h-64L128 448zM538.51 410.51c-12.496 12.497-32.758 12.497-45.255 0-12.496-12.496-12.496-32.758 0-45.255 24.994-24.993 24.994-65.516 0-90.51-12.496-12.496-12.496-32.758 0-45.255 12.497-12.496 32.759-12.496 45.255 0C588.497 279.47900000000004 588.497 360.523 538.51 410.51zM629.02 501.019c-12.495 12.497-32.758 12.497-45.255 0-12.495-12.496-12.495-32.758 0-45.255 74.981-74.98 74.981-196.548 0-271.528-12.495-12.497-12.495-32.76 0-45.256 12.497-12.496 32.76-12.496 45.255 0C728.994 238.95399999999995 728.994 401.045 629.02 501.019zM719.529 591.529c-12.497 12.497-32.76 12.497-45.255 0-12.496-12.496-12.496-32.758 0-45.255 124.968-124.968 124.968-327.58 0-452.548-12.496-12.497-12.496-32.759 0-45.255 12.495-12.497 32.758-12.497 45.255 0C869.49 198.433 869.49 441.568 719.529 591.529z" horiz-adv-x="896" /> -<glyph glyph-name="versions" unicode="" d="M0 128h128v64H64V448h64v64H0V128zM384 640v-640h512V640H384zM768 128H512V512h256V128zM192 64h128v64h-64V512h64v64H192V64z" horiz-adv-x="896" /> -<glyph glyph-name="x" unicode="" d="M640 512L512 640 320 448 128 640 0 512l192-192L0 128l128-128 192 192 192-192 128 128L448 320 640 512z" horiz-adv-x="640" /> +<glyph glyph-name="unfold" unicode="" d="M736 288l160-160c0-35-29-64-64-64H576v64h224L672 256H224L96 128h224v-64H64c-35 0-64 29-64 64l160 160L0 448c0 35 29 64 64 64h256v-64H96l128-128h448l128 128H576v64h256c35 0 64-29 64-64L736 288z m-352 96h128V576h128L448 768 256 576h128v-192z m128-192H384v-192H256l192-192 192 192H512V192z" horiz-adv-x="896" /> +<glyph glyph-name="unmute" unicode="" d="M704 319c0-70-29-134-75-181l-43 43c35 36 57 84 57 138s-22 103-57 138l43 43c46-46 75-110 75-181zM430 686L192 448H64c-35 0-64-29-64-64v-128c0-35 29-64 64-64h128l238-238c30-30 82-9 82 34V652c0 43-52 64-82 34z m380-5l-43-43c82-82 132-194 132-319 0-124-50-237-132-319l43-43c93 93 150 221 150 362 0 142-57 270-150 362z m-90-90l-44-43c59-59 95-140 95-229s-36-170-95-228l44-43c69 69 112 165 112 271s-43 202-112 272z" horiz-adv-x="1024" /> +<glyph glyph-name="versions" unicode="" d="M832 640H448c-35 0-64-29-64-64v-512c0-35 29-64 64-64h384c35 0 64 29 64 64V576c0 35-29 64-64 64z m-64-512H512V512h256v-384zM256 576h64v-64h-64v-384h64v-64h-64c-35 0-64 29-64 64V512c0 35 29 64 64 64zM64 512h64v-64H64v-256h64v-64H64c-35 0-64 29-64 64V448c0 35 29 64 64 64z" horiz-adv-x="896" /> +<glyph glyph-name="watch" unicode="" d="M384 320h128v-64H320V512h64v-192z m384 0c0-142-77-266-192-332v-116c0-35-29-64-64-64H256c-35 0-64 29-64 64V-12C77 54 0 178 0 320s77 266 192 332V768c0 35 29 64 64 64h256c35 0 64-29 64-64v-116c115-66 192-190 192-332z m-64 0c0 177-143 320-320 320S64 497 64 320s143-320 320-320 320 143 320 320z" horiz-adv-x="768" /> +<glyph glyph-name="x" unicode="" d="M479 320l240-240-95-95-240 240-240-240-95 95 240 240L49 560l95 95 240-240 240 240 95-95-240-240z" horiz-adv-x="768" /> <glyph glyph-name="zap" unicode="⚡" d="M640 384H384L576 832 0 256h256L64-192 640 384z" horiz-adv-x="640" /> </font> </defs> diff --git a/public/fonts/octicons.ttf b/public/fonts/octicons.ttf Binary files differindex 921111ae98..32e6720a73 100755 --- a/public/fonts/octicons.ttf +++ b/public/fonts/octicons.ttf diff --git a/public/fonts/octicons.woff b/public/fonts/octicons.woff Binary files differindex b49b54cff9..cbf9f62ea6 100755 --- a/public/fonts/octicons.woff +++ b/public/fonts/octicons.woff diff --git a/public/img/bootstrap-colorpicker/alpha-horizontal.png b/public/img/bootstrap-colorpicker/alpha-horizontal.png Binary files differdeleted file mode 100644 index d0a65c08b0..0000000000 --- a/public/img/bootstrap-colorpicker/alpha-horizontal.png +++ /dev/null diff --git a/public/img/bootstrap-colorpicker/alpha.png b/public/img/bootstrap-colorpicker/alpha.png Binary files differdeleted file mode 100644 index 38043f1c85..0000000000 --- a/public/img/bootstrap-colorpicker/alpha.png +++ /dev/null diff --git a/public/img/bootstrap-colorpicker/hue-horizontal.png b/public/img/bootstrap-colorpicker/hue-horizontal.png Binary files differdeleted file mode 100644 index a0d9add8e7..0000000000 --- a/public/img/bootstrap-colorpicker/hue-horizontal.png +++ /dev/null diff --git a/public/img/bootstrap-colorpicker/hue.png b/public/img/bootstrap-colorpicker/hue.png Binary files differdeleted file mode 100644 index d89560e999..0000000000 --- a/public/img/bootstrap-colorpicker/hue.png +++ /dev/null diff --git a/public/img/bootstrap-colorpicker/saturation.png b/public/img/bootstrap-colorpicker/saturation.png Binary files differdeleted file mode 100644 index 594ae50ed7..0000000000 --- a/public/img/bootstrap-colorpicker/saturation.png +++ /dev/null diff --git a/public/js/app.js b/public/js/app.js deleted file mode 100644 index 8eb19a0aa5..0000000000 --- a/public/js/app.js +++ /dev/null @@ -1,1188 +0,0 @@ -var Gogits = {}; - -(function ($) { - // extend jQuery ajax, set csrf token value - var ajax = $.ajax; - $.extend({ - ajax: function (url, options) { - if (typeof url === 'object') { - options = url; - url = undefined; - } - options = options || {}; - url = options.url; - var csrftoken = $('meta[name=_csrf]').attr('content'); - var headers = options.headers || {}; - var domain = document.domain.replace(/\./ig, '\\.'); - if (!/^(http:|https:).*/.test(url) || eval('/^(http:|https:)\\/\\/(.+\\.)*' + domain + '.*/').test(url)) { - headers = $.extend(headers, {'X-Csrf-Token': csrftoken}); - } - options.headers = headers; - var callback = options.success; - options.success = function (data) { - if (data.once) { - // change all _once value if ajax data.once exist - $('[name=_once]').val(data.once); - } - if (callback) { - callback.apply(this, arguments); - } - }; - return ajax(url, options); - }, - - changeHash: function (hash) { - if (history.pushState) { - history.pushState(null, null, hash); - } - else { - location.hash = hash; - } - }, - - deSelect: function () { - if (window.getSelection) { - window.getSelection().removeAllRanges(); - } else { - document.selection.empty(); - } - } - }); - $.fn.extend({ - toggleHide: function () { - $(this).addClass("hidden"); - }, - toggleShow: function () { - $(this).removeClass("hidden"); - }, - toggleAjax: function (successCallback, errorCallback) { - var url = $(this).data("ajax"); - var method = $(this).data('ajax-method') || 'get'; - var ajaxName = $(this).data('ajax-name'); - var data = {}; - - if (ajaxName.endsWith("preview")) { - data["mode"] = "gfm"; - data["context"] = $(this).data('ajax-context'); - } - - $('[data-ajax-rel=' + ajaxName + ']').each(function () { - var field = $(this).data("ajax-field"); - var t = $(this).data("ajax-val"); - if (t == "val") { - data[field] = $(this).val(); - return true; - } - if (t == "txt") { - data[field] = $(this).text(); - return true; - } - if (t == "html") { - data[field] = $(this).html(); - return true; - } - if (t == "data") { - data[field] = $(this).data("ajax-data"); - return true; - } - return true; - }); - console.log("toggleAjax:", method, url, data); - $.ajax({ - url: url, - method: method.toUpperCase(), - data: data, - error: errorCallback, - success: function (d) { - if (successCallback) { - successCallback(d); - } - } - }) - } - }) -}(jQuery)); - -(function ($) { - - Gogits.showTab = function (selector, index) { - if (!index) { - index = 0; - } - $(selector).tab("show"); - $(selector).find("li:eq(" + index + ") a").tab("show"); - }; - Gogits.validateForm = function (selector, options) { - var $form = $(selector); - options = options || {}; - options.showErrors = function (map, list) { - var $error = $form.find('.form-error').addClass('hidden'); - $('.has-error').removeClass("has-error"); - $error.text(list[0].message).show().removeClass("hidden"); - $(list[0].element).parents(".form-group").addClass("has-error"); - }; - $form.validate(options); - }; - - // ----- init elements - Gogits.initModals = function () { - var modals = $("[data-toggle=modal]"); - if (modals.length < 1) { - return; - } - $.each(modals, function (i, item) { - var hide = $(item).data('modal'); - $(item).modal(hide ? hide : "hide"); - }); - }; - Gogits.initTooltips = function () { - $("body").tooltip({ - selector: "[data-toggle=tooltip]" - //container: "body" - }); - }; - Gogits.initPopovers = function () { - var hideAllPopovers = function () { - $('[data-toggle=popover]').each(function () { - $(this).popover('hide'); - }); - }; - - $(document).on('click', function (e) { - var $e = $(e.target); - if ($e.data('toggle') == 'popover' || $e.parents("[data-toggle=popover], .popover").length > 0) { - return; - } - hideAllPopovers(); - }); - - $("body").popover({ - selector: "[data-toggle=popover]" - }); - }; - Gogits.initTabs = function () { - var $tabs = $('[data-init=tabs]'); - $tabs.tab("show"); - $tabs.find("li:eq(0) a").tab("show"); - }; - - // fix dropdown inside click - Gogits.initDropDown = function () { - $('.dropdown-menu.no-propagation').on('click', function (e) { - e.stopPropagation(); - }); - }; - - - // render markdown - Gogits.renderMarkdown = function () { - var $md = $('.markdown'); - var $pre = $md.find('pre > code').parent(); - $pre.addClass('prettyprint linenums'); - prettyPrint(); - - // Set anchor. - var headers = {}; - $md.find('h1, h2, h3, h4, h5, h6').each(function () { - var node = $(this); - var val = encodeURIComponent(node.text().toLowerCase().replace(/[^\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('<div id="' + name + '" class="anchor-wrap" ></div>'); - node.append('<a class="anchor" href="#' + name + '"><span class="octicon octicon-link"></span></a>'); - }); - }; - - // render code view - Gogits.renderCodeView = function () { - 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 (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')); - } - - $(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('rel') + ']'), (e.shiftKey ? $list.filter('.active').eq(0) : null)); - $.deSelect(); - }); - - $('.code-view .lines-code > pre').each(function () { - var $pre = $(this); - var $lineCode = $pre.parent(); - var $lineNums = $lineCode.siblings('.lines-num'); - if ($lineNums.length > 0) { - var nums = $pre.find('ol.linenums > li').length; - for (var i = 1; i <= nums; i++) { - $lineNums.append('<span id="L' + i + '" rel="L' + i + '">' + i + '</span>'); - } - } - }); - - $(window).on('hashchange', function (e) { - var m = window.location.hash.match(/^#(L\d+)\-(L\d+)$/); - var $list = $('.code-view ol.linenums > li'); - if (m) { - var $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) { - var $first = $list.filter('.' + m[1]); - selectRange($list, $first); - $("html, body").scrollTop($first.offset().top - 200); - } - }).trigger('hashchange'); - }; - - // copy utils - Gogits.bindCopy = function (selector) { - if ($(selector).hasClass('js-copy-bind')) { - return; - } - - if ( document.documentElement.classList.contains("is-copy-enabled") ) { - - $(selector).click(function(event) { - var $this = $(this); - - var cfrom = $this.attr('data-copy-from'); - $(cfrom).select(); - document.execCommand('copy'); - getSelection().removeAllRanges(); - - $this.tipsy("hide").attr('original-title', $this.data('after-title')); - setTimeout(function () { - $this.tipsy("show"); - }, 200); - setTimeout(function () { - $this.tipsy('hide').attr('original-title', $this.data('original-title')); - }, 2000); - - this.blur(); - return; - }); - - $(selector).addClass("js-copy-bind"); - - } else { - - $(selector).zclip({ - path: Gogits.AppSubUrl + "/js/ZeroClipboard.swf", - copy: function () { - var t = $(this).data("copy-val"); - var to = $($(this).data("copy-from")); - var str = ""; - if (t == "txt") { - str = to.text(); - } - if (t == 'val') { - str = to.val(); - } - if (t == 'html') { - str = to.html(); - } - return str; - }, - afterCopy: function () { - var $this = $(this); - $this.tipsy("hide").attr('original-title', $this.data('after-title')); - setTimeout(function () { - $this.tipsy("show"); - }, 200); - setTimeout(function () { - $this.tipsy('hide').attr('original-title', $this.data('original-title')); - }, 2000); - } - }).addClass("js-copy-bind"); - } - } - - // api working - Gogits.getUsers = function (val, $target) { - var notEmpty = function (str) { - return str && str.length > 0; - } - $.ajax({ - url: '/api/v1/users/search?q=' + val, - dataType: "json", - success: function (json) { - if (json.ok && json.data.length) { - var html = ''; - $.each(json.data, function (i, item) { - html += '<li><img src="' + item.avatar + '">' + item.username; - if (notEmpty(item.full_name)) { - html += ' (' + item.full_name + ')'; - } - html += '</li>'; - }); - $target.toggleShow(); - $target.find('ul').html(html); - } else { - $target.toggleHide(); - } - } - }); - } - -})(jQuery); - -// ajax utils -(function ($) { - Gogits.ajaxDelete = function (url, data, success) { - data = data || {}; - data._method = "DELETE"; - $.ajax({ - url: url, - data: data, - method: "POST", - dataType: "json", - success: function (json) { - if (success) { - success(json); - } - } - }) - } -})(jQuery); - - -function initCore() { - Gogits.initTooltips(); - Gogits.initPopovers(); - Gogits.initTabs(); - Gogits.initModals(); - Gogits.initDropDown(); - Gogits.renderMarkdown(); - Gogits.renderCodeView(); -} - -function initUserSetting() { - // ssh confirmation - $('#ssh-keys .delete').confirmation({ - singleton: true, - onConfirm: function (e, $this) { - Gogits.ajaxDelete("", {"id": $this.data("del")}, function (json) { - if (json.ok) { - window.location.reload(); - } else { - alert(json.err); - } - }); - } - }); - - // profile form - (function () { - $('#user-setting-username').on("keyup", function () { - var $this = $(this); - if ($this.val() != $this.attr('title')) { - $this.next('.help-block').toggleShow(); - } else { - $this.next('.help-block').toggleHide(); - } - }); - }()) -} - -function initRepository() { - // clone group button script - (function () { - var $clone = $('.clone-group-btn'); - if ($clone.length) { - var $url = $('.clone-group-url'); - $clone.find('button[data-link]').on("click", function (e) { - var $this = $(this); - if (!$this.hasClass('btn-primary')) { - $clone.find('.input-group-btn .btn-primary').removeClass('btn-primary').addClass("btn-default"); - $(this).addClass('btn-primary').removeClass('btn-default'); - $url.val($this.data("link")); - $clone.find('span.clone-url').text($this.data('link')); - } - }).eq(0).trigger("click"); - $("#repo-clone").on("shown.bs.dropdown", function () { - Gogits.bindCopy("[data-init=copy]"); - }); - Gogits.bindCopy("[data-init=copy]:visible"); - } - })(); - - // watching script - (function () { - var $watch = $('#repo-watching'), - watchLink = $watch.attr("data-watch"), - // Use $.attr() to work around jQuery not finding $.data("unwatch") in Firefox, - // which has a method "unwatch" on `Object` that gets returned instead. - unwatchLink = $watch.attr("data-unwatch"); - $watch.on('click', '.to-watch', function () { - if ($watch.hasClass("watching")) { - return false; - } - $.get(watchLink, function (json) { - if (json.ok) { - $watch.find('.text-primary').removeClass('text-primary'); - $watch.find('.to-watch h4').addClass('text-primary'); - $watch.find('.fa-eye-slash').removeClass('fa-eye-slash').addClass('fa-eye'); - $watch.removeClass("no-watching").addClass("watching"); - } - }); - return false; - }).on('click', '.to-unwatch', function () { - if ($watch.hasClass("no-watching")) { - return false; - } - $.get(unwatchLink, function (json) { - if (json.ok) { - $watch.find('.text-primary').removeClass('text-primary'); - $watch.find('.to-unwatch h4').addClass('text-primary'); - $watch.find('.fa-eye').removeClass('fa-eye').addClass('fa-eye-slash'); - $watch.removeClass("watching").addClass("no-watching"); - } - }); - return false; - }); - })(); - - // repo diff counter - (function () { - var $counter = $('.diff-counter'); - if ($counter.length < 1) { - return; - } - $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 + "%"); - }); - }()); - - // repo setting form - (function () { - $('#repo-setting-name').on("keyup", function () { - var $this = $(this); - if ($this.val() != $this.attr('title')) { - $this.next('.help-block').toggleShow(); - } else { - $this.next('.help-block').toggleHide(); - } - }); - }()) -} - -function initInstall() { - // database type change - (function () { - var mysql_default = '127.0.0.1:3306'; - var postgres_default = '127.0.0.1:5432'; - - $('#install-database').on("change", function () { - var val = $(this).val(); - if (val != "SQLite3") { - $('.server-sql').show(); - $('.sqlite-setting').addClass("hide"); - if (val == "PostgreSQL") { - $('.pgsql-setting').removeClass("hide"); - - // Change the host value to the Postgres default, but only - // if the user hasn't already changed it from the MySQL - // default. - if ($('#database-host').val() == mysql_default) { - $('#database-host').val(postgres_default); - } - } else if (val == 'MySQL') { - $('.pgsql-setting').addClass("hide"); - if ($('#database-host').val() == postgres_default) { - $('#database-host').val(mysql_default); - } - } else { - $('.pgsql-setting').addClass("hide"); - } - } else { - $('.server-sql').hide(); - $('.sqlite-setting').removeClass("hide"); - } - }); - }()); - -} - -function initIssue() { - // close button - (function () { - var $closeBtn = $('#issue-close-btn'); - var $openBtn = $('#issue-open-btn'); - $('#issue-reply-content').on("keyup", function () { - if ($(this).val().length) { - $closeBtn.val($closeBtn.data("text")); - $openBtn.val($openBtn.data("text")); - } else { - $closeBtn.val($closeBtn.data("origin")); - $openBtn.val($openBtn.data("origin")); - } - }); - }()); - - // store unsend text in session storage. - (function() { - var $textArea = $("#issue-content,#issue-reply-content"); - var current = ""; - - if ($textArea == null || !('sessionStorage' in window)) { - return; - } - - var path = location.pathname.split("/"); - var key = "issue-" + path[1] + "-" + path[2] + "-"; - - if (/\/issues\/\d+$/.test(location.pathname)) { - key = key + path[4]; - } else { - key = key + "new"; - } - - if ($textArea.val() !== undefined && $textArea.val() !== "") { - sessionStorage.setItem(key, $textArea.val()); - } else { - $textArea.val(sessionStorage.getItem(key) || ""); - - if ($textArea.attr("id") == "issue-reply-content") { - var $closeBtn = $('#issue-close-btn'); - var $openBtn = $('#issue-open-btn'); - - if ($textArea.val().length) { - $closeBtn.val($closeBtn.data("text")); - $openBtn.val($openBtn.data("text")); - } else { - $closeBtn.val($closeBtn.data("origin")); - $openBtn.val($openBtn.data("origin")); - } - } - } - - $textArea.on("keyup", function() { - if ($textArea.val() !== current) { - sessionStorage.setItem(key, current = $textArea.val()); - } - }); - }()); - - // Preview for images. - (function() { - var $hoverElement = $("<div></div>"); - var $hoverImage = $("<img />"); - - $hoverElement.addClass("attachment-preview"); - $hoverElement.hide(); - - $hoverImage.addClass("attachment-preview-img"); - - $hoverElement.append($hoverImage); - $(document.body).append($hoverElement); - - var over = function() { - var $this = $(this); - - if ((/\.(png|jpg|jpeg|gif)$/i).test($this.text()) == false) { - return; - } - - if ($hoverImage.attr("src") != $this.attr("href")) { - $hoverImage.attr("src", $this.attr("href")); - $hoverImage.load(function() { - var height = this.height; - var width = this.width; - - if (height > 300) { - var factor = 300 / height; - - height = factor * height; - width = factor * width; - } - - $hoverImage.css({"height": height, "width": width}); - - var offset = $this.offset(); - var left = offset.left, top = offset.top + $this.height() + 5; - - $hoverElement.css({"top": top + "px", "left": left + "px"}); - $hoverElement.css({"height": height + 16, "width": width + 16}); - $hoverElement.show(); - }); - } else { - $hoverElement.show(); - } - }; - - var out = function() { - $hoverElement.hide(); - }; - - $(".issue-main .attachments .attachment").hover(over, out); - }()); - - // Upload. - (function() { - var $attachedList = $("#attached-list"); - var $addButton = $("#attachments-button"); - var files = []; - var fileInput = document.getElementById("attachments-input"); - - if (fileInput === null) { - return; - } - - $attachedList.on("click", "span.attachment-remove", function(event) { - var $parent = $(this).parent(); - - files.splice($parent.data("index"), 1); - $parent.remove(); - }); - - var clickedButton; - - $('input[type="submit"],input[type="button"],button.btn-success', fileInput.form).on('click', function() { - clickedButton = this; - - var $button = $(this); - - $button.removeClass("btn-success btn-default"); - $button.addClass("btn-warning"); - - $button.html("Submitting…"); - }); - - fileInput.form.addEventListener("submit", function(event) { - event.stopImmediatePropagation(); - event.preventDefault(); - - //var data = new FormData(this); - - // Internet Explorer ... -_- - var data = new FormData(); - - $.each($("[name]", this), function(i, e) { - if (e.name == "attachments" || e.type == "submit") { - return; - } - - data.append(e.name, $(e).val()); - }); - - data.append(clickedButton.name, $(clickedButton).val()); - - files.forEach(function(file) { - data.append("attachments", file); - }); - - var xhr = new XMLHttpRequest(); - - xhr.addEventListener("error", function() { - console.log("Issue submit request failed. xhr.status: " + xhr.status); - }); - - xhr.addEventListener("load", function() { - var response = xhr.response; - - if (typeof response == "string") { - try { - response = JSON.parse(response); - } catch (err) { - response = { ok: false, error: "Could not parse JSON" }; - } - } - - if (response.ok === false) { - $("#submit-error").text(response.error); - $("#submit-error").show(); - - var $button = $(clickedButton); - - $button.removeClass("btn-warning"); - $button.addClass("btn-danger"); - - $button.text("An error occurred!"); - - return; - } - - if (!('sessionStorage' in window)) { - return; - } - - var path = location.pathname.split("/"); - var key = "issue-" + path[1] + "-" + path[2] + "-"; - - if (/\/issues\/\d+$/.test(location.pathname)) { - key = key + path[4]; - } else { - key = key + "new"; - } - - sessionStorage.removeItem(key); - window.location.href = response.data; - }); - - xhr.open("POST", this.action, true); - xhr.send(data); - - return false; - }); - - fileInput.addEventListener("change", function() { - for (var index = 0; index < fileInput.files.length; index++) { - var file = fileInput.files[index]; - - if (files.indexOf(file) > -1) { - continue; - } - - var $span = $("<span></span>"); - - $span.addClass("label"); - $span.addClass("label-default"); - - $span.data("index", files.length); - - $span.append(file.name); - $span.append(" <span class=\"attachment-remove fa fa-times-circle\"></span>"); - - $attachedList.append($span); - - files.push(file); - } - - this.value = ""; - }); - - $addButton.on("click", function(evt) { - fileInput.click(); - evt.preventDefault(); - }); - }()); - - // issue edit mode - (function () { - $("#issue-edit-btn").on("click", function () { - $('#issue h1.title,#issue .issue-main > .issue-content .content,#issue-edit-btn').toggleHide(); - $('#issue-edit-title,.issue-edit-content,.issue-edit-cancel,.issue-edit-save').toggleShow(); - $('#issue-edit-content').focus(); - }); - $('.issue-edit-cancel').on("click", function () { - $('#issue h1.title,#issue .issue-main > .issue-content .content,#issue-edit-btn').toggleShow(); - $('#issue-edit-title,.issue-edit-content,.issue-edit-cancel,.issue-edit-save').toggleHide(); - }); - }()); - - // issue ajax update - (function () { - var $cnt = $('#issue-edit-content'); - $('.issue-edit-save').on("click", function () { - $cnt.attr('data-ajax-rel', 'issue-edit-save'); - $(this).toggleAjax(function (json) { - if (json.ok) { - $('.issue-head h1.title').text(json.title); - $('.issue-main > .issue-content .content').html(json.content); - $('.issue-edit-cancel').trigger("click"); - } - }); - setTimeout(function () { - $cnt.attr('data-ajax-rel', 'issue-edit-preview'); - }, 200) - }); - }()); - - // issue ajax preview - (function () { - $('[data-ajax-name=issue-preview],[data-ajax-name=issue-edit-preview]').on("click", function () { - var $this = $(this); - $this.toggleAjax(function (resp) { - $($this.data("preview")).html(resp); - }, function () { - $($this.data("preview")).html("no content"); - }) - }); - $('.issue-write a[data-toggle]').on("click", function () { - var selector = $(this).parent().next(".issue-preview").find('a').data('preview'); - $(selector).html("loading..."); - }); - }()); - - // assignee - var is_issue_bar = $('.issue-bar').length > 0; - var $a = $('.assignee'); - if ($a.data("assigned") > 0) { - $('.clear-assignee').toggleShow(); - } - $('.assignee', '#issue').on('click', 'li', function () { - var uid = $(this).data("uid"); - if (is_issue_bar) { - var assignee = $a.data("assigned"); - if (uid != assignee) { - var text = $(this).text(); - var img = $("img", this).attr("src"); - - $.post($a.data("ajax"), { - issue: $('#issue').data("id"), - assigneeid: uid - }, function (json) { - if (json.ok) { - //window.location.reload(); - $a.data("assigned", uid); - - if (uid > 0) { - $('.clear-assignee').toggleShow(); - $(".assignee > p").html('<img src="' + img + '"><strong>' + text + '</strong>'); - } else { - $('.clear-assignee').toggleHide(); - $(".assignee > p").text("No one assigned"); - } - } - }) - } - - return; - } - $('#assignee').val(uid); - if (uid > 0) { - $('.clear-assignee').toggleShow(); - $('#assigned').text($(this).find("strong").text()) - } else { - $('.clear-assignee').toggleHide(); - $('#assigned').text($('#assigned').data("no-assigned")); - } - }); - - // milestone - - $('#issue .dropdown-menu a[data-toggle="tab"]').on("click", function (e) { - e.stopPropagation(); - $(this).tab('show'); - return false; - }); - - var $m = $('.milestone'); - if ($m.data("milestone") > 0) { - $('.clear-milestone').toggleShow(); - } - $('.milestone', '#issue').on('click', 'li.milestone-item', function () { - var id = $(this).data("id"); - if (is_issue_bar) { - var m = $m.data("milestone"); - if (id != m) { - var text = $(this).text(); - - $.post($m.data("ajax"), { - issue: $('#issue').data("id"), - milestoneid: id - }, function (json) { - if (json.ok) { - //window.location.reload(); - $m.data("milestone", id); - - if (id > 0) { - $('.clear-milestone').toggleShow(); - $(".milestone > .name").html('<a href="' + location.pathname + '?milestone=' + id + '"><strong>' + text + '</strong></a>'); - } else { - $('.clear-milestone').toggleHide(); - $(".milestone > .name").text("No milestone"); - } - } - }); - } - - return; - } - $('#milestone-id').val(id); - if (id > 0) { - $('.clear-milestone').toggleShow(); - $('#milestone').text($(this).find("strong").text()) - } else { - $('.clear-milestone').toggleHide(); - $('#milestone').text($('#milestone').data("no-milestone")); - } - }); - - // labels - var removeLabels = []; - $('#label-manage-btn').on("click", function () { - var $list = $('#label-list'); - if ($list.hasClass("managing")) { - var ids = []; - $list.find('li').each(function (i, item) { - var id = $(item).data("id"); - if (id > 0) { - ids.push(id); - } - }); - $.post($list.data("ajax"), {"ids": ids.join(","), "remove": removeLabels.join(",")}, function (json) { - if (json.ok) { - window.location.reload(); - } - }) - } else { - $list.addClass("managing"); - $list.find(".count").hide(); - $list.find(".del").show(); - $(this).text("Save Labels"); - $list.on('click', 'li.label-item', function () { - var $this = $(this); - $this.after($('.label-change-li').detach().show()); - $('#label-name-change-ipt').val($this.find('.name').text()); - var color = $this.find('.color').data("color"); - $('.label-change-color-picker').colorpicker("setValue", color); - $('#label-color-change-ipt,#label-color-change-ipt2').val(color); - $('#label-change-id-ipt').val($this.data("id")); - return false; - }); - } - }); - var colorRegex = new RegExp("^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$"); - $('#label-color-ipt2').on('keyup', function () { - var val = $(this).val(); - if (val.length > 7) { - $(this).val(val.substr(0, 7)); - } - if (colorRegex.test(val)) { - $('.label-color-picker').colorpicker("setValue", val); - } - return true; - }); - $('#label-color-change-ipt2').on('keyup', function () { - var val = $(this).val(); - console.log(val); - if (val.length > 7) { - $(this).val(val.substr(0, 7)); - } - if (colorRegex.test(val)) { - $('.label-change-color-picker').colorpicker("setValue", val); - } - return true; - }); - $("#label-list").on('click', '.del', function () { - var $p = $(this).parent(); - removeLabels.push($p.data('id')); - $p.remove(); - return false; - }); - $('.label-selected').each(function (i, item) { - var $item = $(item); - var color = $item.find('.color').data('color'); - $item.css('background-color', color); - }); - - $('.issue-bar .labels .dropdown-menu').on('click', 'li', function (e) { - var $labels = $('.issue-bar .labels'); - var url = $labels.data("ajax"); - var id = $(this).data('id'); - var check = $(this).hasClass("checked"); - var item = this; - $.post(url, {id: id, action: check ? 'detach' : "attach", issue: $('#issue').data('id')}, function (json) { - if (json.ok) { - if (check) { - $("span.check.pull-left", item).remove(); - - $(item).removeClass("checked"); - $(item).addClass("no-checked"); - - $("#label-" + id, $labels).remove(); - - if ($labels.children(".label-item").length == 0) { - $labels.append("<p>None yet</p>"); - } - } else { - $(item).prepend('<span class="check pull-left"><i class="fa fa-check"></i></span>'); - - $(item).removeClass("no-checked"); - $(item).addClass("checked"); - - $("p:not([class])", $labels).remove(); - - var $l = $("<p></p>"); - var c = $("span.color", item).css("background-color"); - - $l.attr("id", "label-" + id); - $l.attr("class", "label-item label-white"); - $l.css("background-color", c); - - $l.append("<strong>" + $(item).text() + "</strong>"); - $labels.append($l); - } - } - }); - e.stopPropagation(); - return false; - }) -} - -function initRelease() { -// release new ajax preview - (function () { - $('[data-ajax-name=release-preview]').on("click", function () { - var $this = $(this); - $this.toggleAjax(function (resp) { - $($this.data("preview")).html(resp); - }, function () { - $($this.data("preview")).html("no content"); - }) - }); - $('.release-write a[data-toggle]').on("click", function () { - $('.release-preview-content').html("loading..."); - }); - }()); - - // release new target selection - (function () { - $('#release-new-target-branch-list').on('click', 'a', function () { - $('#tag-target').val($(this).text()); - $('#release-new-target-name').text(" " + $(this).text()); - }); - }()); -} - -function initRepoSetting() { - // repo member add - $('#repo-collaborator').on('keyup', function () { - var $this = $(this); - if (!$this.val()) { - $this.next().toggleHide(); - return; - } - Gogits.getUsers($this.val(), $this.next()); - }).on('focus', function () { - if (!$(this).val()) { - $(this).next().toggleHide(); - } - }).next().on("click", 'li', function () { - $('#repo-collaborator').val($(this).text()); - }); -} - -function initRepoCreating() { - // owner switch menu click - (function () { - $('#repo-owner-switch .dropdown-menu').on("click", "li", function () { - var uid = $(this).data('uid'); - // set to input - $('#repo-owner-id').val(uid); - // set checked class - if (!$(this).hasClass("checked")) { - $(this).parent().find(".checked").removeClass("checked"); - $(this).addClass("checked"); - } - // set button group to show clicked owner - $('#repo-owner-avatar').attr("src", $(this).find('img').attr("src")); - $('#repo-owner-name').text($(this).text().trim()); - console.log("set repo owner to uid :", uid, $(this).text().trim()); - }); - }()); - console.log("init repo-creating scripts"); -} - -function initOrganization() { - (function(){ - $('#org-team-add-user').on('keyup', function () { - var $this = $(this); - if (!$this.val()) { - $this.next().toggleHide(); - return; - } - Gogits.getUsers($this.val(), $this.next()); - }).on('focus', function () { - if (!$(this).val()) { - $(this).next().toggleHide(); - } - }).next().on("click", 'li', function () { - $('#org-team-add-user').val($(this).text()); - $('#org-team-add-user-form').submit(); - }).toggleHide(); - console.log("init script : add user to team"); - }()); - - (function(){ - $('#org-team-add-repo').next().toggleHide(); - console.log("init script : add repository to team"); - }()); - - - console.log("init script : organization done"); -} - -function initTimeSwitch() { - $(".time-since[title]").on("click", function() { - var $this = $(this); - - var title = $this.attr("title"); - var text = $this.text(); - - $this.text(title); - $this.attr("title", text); - }); -} - -(function ($) { - $(function () { - initCore(); - var body = $("#body"); - if (body.data("page") == "user") { - initUserSetting(); - } - if ($('.repo-nav').length) { - initRepository(); - } - if ($('#install-card').length) { - initInstall(); - } - if ($('#issue').length) { - initIssue(); - } - if ($('#release').length) { - initRelease(); - } - if ($('#repo-setting-container').length) { - initRepoSetting(); - } - if ($('#repo-create').length) { - initRepoCreating(); - } - if ($('#body-nav').hasClass("org-nav")) { - initOrganization(); - } - - initTimeSwitch(); - }); -})(jQuery); - -String.prototype.endsWith = function (suffix) { - return this.indexOf(suffix, this.length - suffix.length) !== -1; -}; diff --git a/public/js/bootstrap.min.js b/public/js/bootstrap.min.js deleted file mode 100755 index d6821920e3..0000000000 --- a/public/js/bootstrap.min.js +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Bootstrap v3.1.0 (http://getbootstrap.com) - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -if("undefined"==typeof jQuery)throw new Error("Bootstrap requires jQuery");+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one(a.support.transition.end,function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b()})}(jQuery),+function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function c(){f.trigger("closed.bs.alert").remove()}var d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one(a.support.transition.end,c).emulateTransitionEnd(150):c())};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("bs.alert");e||d.data("bs.alert",e=new c(this)),"string"==typeof b&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.bs.alert.data-api",b,c.prototype.close)}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.isLoading=!1};b.DEFAULTS={loadingText:"loading..."},b.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",f.resetText||d.data("resetText",d[e]()),d[e](f[b]||this.options[b]),setTimeout(a.proxy(function(){"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},b.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}a&&this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof c&&c;e||d.data("bs.button",e=new b(this,f)),"toggle"==c?e.toggle():c&&e.setState(c)})},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.bs.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle"),b.preventDefault()})}(jQuery),+function(a){"use strict";var b=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},b.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},b.prototype.getActiveIndex=function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},b.prototype.to=function(b){var c=this,d=this.getActiveIndex();return b>this.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}if(e.hasClass("active"))return this.sliding=!1;var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});return this.$element.trigger(j),j.isDefaultPrevented()?void 0:(this.sliding=!0,f&&this.pause(),this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid.bs.carousel",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")?(e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid.bs.carousel")},0)}).emulateTransitionEnd(1e3*d.css("transition-duration").slice(0,-1))):(d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid.bs.carousel")),f&&this.cycle(),this)};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("collapse in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?void this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);!e&&f.toggle&&"show"==c&&(c=!c),e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(jQuery),+function(a){"use strict";function b(b){a(d).remove(),a(e).each(function(){var d=c(a(this)),e={relatedTarget:this};d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown",e)),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown",e))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;f.toggleClass("open").trigger("shown.bs.dropdown",h),e.focus()}return!1}},f.prototype.keydown=function(b){if(/(38|40|27)/.test(b.keyCode)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var f=c(d),g=f.hasClass("open");if(!g||g&&27==b.keyCode)return 27==b.which&&f.find(e).focus(),d.click();var h=" li:not(.divider):visible a",i=f.find("[role=menu]"+h+", [role=listbox]"+h);if(i.length){var j=i.index(i.filter(":focus"));38==b.keyCode&&j>0&&j--,40==b.keyCode&&j<i.length-1&&j++,~j||(j=0),i.eq(j).focus()}}}};var g=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new f(this)),"string"==typeof b&&d[b].call(c)})},a.fn.dropdown.Constructor=f,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=g,this},a(document).on("click.bs.dropdown.data-api",b).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",e,f.prototype.toggle).on("keydown.bs.dropdown.data-api",e+", [role=menu], [role=listbox]",f.prototype.keydown)}(jQuery),+function(a){"use strict";var b=function(b,c){this.options=c,this.$element=a(b),this.$backdrop=this.isShown=null,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};b.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},b.prototype.toggle=function(a){return this[this.isShown?"hide":"show"](a)},b.prototype.show=function(b){var c=this,d=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(d),this.isShown||d.isDefaultPrevented()||(this.isShown=!0,this.escape(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.backdrop(function(){var d=a.support.transition&&c.$element.hasClass("fade");c.$element.parent().length||c.$element.appendTo(document.body),c.$element.show().scrollTop(0),d&&c.$element[0].offsetWidth,c.$element.addClass("in").attr("aria-hidden",!1),c.enforceFocus();var e=a.Event("shown.bs.modal",{relatedTarget:b});d?c.$element.find(".modal-dialog").one(a.support.transition.end,function(){c.$element.focus().trigger(e)}).emulateTransitionEnd(300):c.$element.focus().trigger(e)}))},b.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one(a.support.transition.end,a.proxy(this.hideModal,this)).emulateTransitionEnd(300):this.hideModal())},b.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.focus()},this))},b.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keyup.dismiss.bs.modal")},b.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.removeBackdrop(),a.$element.trigger("hidden.bs.modal")})},b.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},b.prototype.backdrop=function(b){var c=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var d=a.support.transition&&c;if(this.$backdrop=a('<div class="modal-backdrop '+c+'" />').appendTo(document.body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus.call(this.$element[0]):this.hide.call(this))},this)),d&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;d?this.$backdrop.one(a.support.transition.end,b).emulateTransitionEnd(150):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,b).emulateTransitionEnd(150):b()):b&&b()};var c=a.fn.modal;a.fn.modal=function(c,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},b.DEFAULTS,e.data(),"object"==typeof c&&c);f||e.data("bs.modal",f=new b(this,g)),"string"==typeof c?f[c](d):g.show&&f.show(d)})},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());c.is("a")&&b.preventDefault(),e.modal(f,this).one("hide",function(){c.is(":visible")&&c.focus()})}),a(document).on("show.bs.modal",".modal",function(){a(document.body).addClass("modal-open")}).on("hidden.bs.modal",".modal",function(){a(document.body).removeClass("modal-open")})}(jQuery),+function(a){"use strict";var b=function(a,b){this.type=this.options=this.enabled=this.timeout=this.hoverState=this.$element=null,this.init("tooltip",a,b)};b.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1},b.prototype.init=function(b,c,d){this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d);for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},b.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},b.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type);return clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show()},b.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type);return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},b.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){if(this.$element.trigger(b),b.isDefaultPrevented())return;var c=this,d=this.tip();this.setContent(),this.options.animation&&d.addClass("fade");var e="function"==typeof this.options.placement?this.options.placement.call(this,d[0],this.$element[0]):this.options.placement,f=/\s?auto?\s?/i,g=f.test(e);g&&(e=e.replace(f,"")||"top"),d.detach().css({top:0,left:0,display:"block"}).addClass(e),this.options.container?d.appendTo(this.options.container):d.insertAfter(this.$element);var h=this.getPosition(),i=d[0].offsetWidth,j=d[0].offsetHeight;if(g){var k=this.$element.parent(),l=e,m=document.documentElement.scrollTop||document.body.scrollTop,n="body"==this.options.container?window.innerWidth:k.outerWidth(),o="body"==this.options.container?window.innerHeight:k.outerHeight(),p="body"==this.options.container?0:k.offset().left;e="bottom"==e&&h.top+h.height+j-m>o?"top":"top"==e&&h.top-m-j<0?"bottom":"right"==e&&h.right+i>n?"left":"left"==e&&h.left-i<p?"right":e,d.removeClass(l).addClass(e)}var q=this.getCalculatedOffset(e,h,i,j);this.applyPlacement(q,e),this.hoverState=null;var r=function(){c.$element.trigger("shown.bs."+c.type)};a.support.transition&&this.$tip.hasClass("fade")?d.one(a.support.transition.end,r).emulateTransitionEnd(150):r()}},b.prototype.applyPlacement=function(b,c){var d,e=this.tip(),f=e[0].offsetWidth,g=e[0].offsetHeight,h=parseInt(e.css("margin-top"),10),i=parseInt(e.css("margin-left"),10);isNaN(h)&&(h=0),isNaN(i)&&(i=0),b.top=b.top+h,b.left=b.left+i,a.offset.setOffset(e[0],a.extend({using:function(a){e.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),e.addClass("in");var j=e[0].offsetWidth,k=e[0].offsetHeight;if("top"==c&&k!=g&&(d=!0,b.top=b.top+g-k),/bottom|top/.test(c)){var l=0;b.left<0&&(l=-2*b.left,b.left=0,e.offset(b),j=e[0].offsetWidth,k=e[0].offsetHeight),this.replaceArrow(l-f+j,j,"left")}else this.replaceArrow(k-g,k,"top");d&&e.offset(b)},b.prototype.replaceArrow=function(a,b,c){this.arrow().css(c,a?50*(1-a/b)+"%":"")},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},b.prototype.hide=function(){function b(){"in"!=c.hoverState&&d.detach(),c.$element.trigger("hidden.bs."+c.type)}var c=this,d=this.tip(),e=a.Event("hide.bs."+this.type);return this.$element.trigger(e),e.isDefaultPrevented()?void 0:(d.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d.one(a.support.transition.end,b).emulateTransitionEnd(150):b(),this.hoverState=null,this)},b.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},b.prototype.hasContent=function(){return this.getTitle()},b.prototype.getPosition=function(){var b=this.$element[0];return a.extend({},"function"==typeof b.getBoundingClientRect?b.getBoundingClientRect():{width:b.offsetWidth,height:b.offsetHeight},this.$element.offset())},b.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},b.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},b.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},b.prototype.validate=function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},b.prototype.enable=function(){this.enabled=!0},b.prototype.disable=function(){this.enabled=!1},b.prototype.toggleEnabled=function(){this.enabled=!this.enabled},b.prototype.toggle=function(b){var c=b?a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type):this;c.tip().hasClass("in")?c.leave(c):c.enter(c)},b.prototype.destroy=function(){clearTimeout(this.timeout),this.hide().$element.off("."+this.type).removeData("bs."+this.type)};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof c&&c;(e||"destroy"!=c)&&(e||d.data("bs.tooltip",e=new b(this,f)),"string"==typeof c&&e[c]())})},a.fn.tooltip.Constructor=b,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(jQuery),+function(a){"use strict";var b=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");b.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;(e||"destroy"!=c)&&(e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]())})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(a(c).is("body")?window:c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);{var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})}},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);if(g&&b<=e[0])return g!=(a=f[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parentsUntil(this.options.target,".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=this.pinnedOffset=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(b.RESET).addClass("affix");var a=this.$window.scrollTop(),c=this.$element.offset();return this.pinnedOffset=c.top-a},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"top"==this.affixed&&(e.top+=d),"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top(this.$element)),"function"==typeof h&&(h=f.bottom(this.$element));var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;if(this.affixed!==i){this.unpin&&this.$element.css("top","");var j="affix"+(i?"-"+i:""),k=a.Event(j+".bs.affix");this.$element.trigger(k),k.isDefaultPrevented()||(this.affixed=i,this.unpin="bottom"==i?this.getPinnedOffset():null,this.$element.removeClass(b.RESET).addClass(j).trigger(a.Event(j.replace("affix","affixed"))),"bottom"==i&&this.$element.offset({top:c-h-this.$element.height()}))}}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(jQuery); diff --git a/public/js/gogs.js b/public/js/gogs.js index 4bae588d19..04f246a916 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -118,7 +118,6 @@ function initCommentForm() { $(this).removeClass('selected active') }); - if (has_update_action) { updateIssueMeta($menu.data('update-url'), '', ''); } @@ -227,13 +226,6 @@ function initRepository() { }); } - // Settings - if ($('.repository.settings').length > 0) { - $('#add-deploy-key').click(function () { - $('#add-deploy-key-panel').show(); - }); - } - // Issues if ($('.repository.view.issue').length > 0) { var $status_btn = $('#status-button'); @@ -337,6 +329,11 @@ $(document).ready(function () { $('.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") @@ -347,6 +344,9 @@ $(document).ready(function () { }).modal('show'); return false; }); + $('.show-panel.button').click(function () { + $($(this).data('panel')).show(); + }); initCommentForm(); initInstall(); diff --git a/public/js/lib.js b/public/js/lib.js deleted file mode 100644 index bd42152b0c..0000000000 --- a/public/js/lib.js +++ /dev/null @@ -1,495 +0,0 @@ -/* =========================================================== - * forked from bootstrap-confirmation.js - * http://ethaizone.github.io/Bootstrap-Confirmation/ - * =========================================================== - * Copyright 2013 Nimit Suwannagate <ethaizone@hotmail.com> - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * =========================================================== */ -!function ($) { - 'use strict'; - - //var for check event at body can have only one. - var event_body = false; - - // CONFIRMATION PUBLIC CLASS DEFINITION - // =============================== - var Confirmation = function (element, options) { - var that = this; - - this.init('confirmation', element, options); - - - $(element).on('show.bs.confirmation', function(e) { - that.options.onShow(e, this); - - $(this).addClass('open'); - - var options = that.options; - var all = options.all_selector; - - if(options.singleton) { - $(all+'.in').not(that.$element).confirmation('hide'); - } - }); - - $(element).on('hide.bs.confirmation', function(e) { - that.options.onHide(e, this); - - $(this).removeClass('open'); - }); - - $(element).on('shown.bs.confirmation', function(e) { - var options = that.options; - var all = options.all_selector; - - that.$element.on('click.dismiss.bs.confirmation', '[data-dismiss="confirmation"]', $.proxy(that.hide, that)); - - if(that.isPopout()) { - if(!event_body) { - event_body = $('body').on('click', function (e) { - if(that.$element.is(e.target)) return; - if(that.$element.has(e.target).length) return; - if($('.popover').has(e.target).length) return; - - that.$element.confirmation('hide'); - - $('body').unbind(e); - - event_body = false; - - return; - }); - } - } - }); - - $(element).on('click', function(e) { - e.preventDefault(); - }); - } - - if (!$.fn.popover || !$.fn.tooltip) throw new Error('Confirmation requires popover.js and tooltip.js'); - - Confirmation.DEFAULTS = $.extend({}, $.fn.popover.Constructor.DEFAULTS, { - placement : 'top', - title : 'Are you sure?', - btnOkClass : 'btn btn-danger btn-sm', - btnOkLabel : 'Yes', - btnOkIcon : '', - btnCancelClass : 'btn btn-default btn-sm', - btnCancelLabel : 'Cancel', - btnCancelIcon : '', - href : '#', - target : '_self', - singleton : true, - popout : true, - onShow : function(event, element){}, - onHide : function(event, element){}, - onConfirm : function(event, element){}, - onCancel : function(event, element){}, - template : '<div class="popover"><div class="arrow"></div>' - + '<h3 class="popover-title"></h3>' - + '<div class="popover-content">' - + '<div class="btn-group"><a data-apply="confirmation">Yes</a>' - + ' <a data-dismiss="confirmation">No</a></div>' - + '</div>' - + '</div>' - }); - - - // NOTE: CONFIRMATION EXTENDS popover.js - // ================================ - Confirmation.prototype = $.extend({}, $.fn.popover.Constructor.prototype); - - Confirmation.prototype.constructor = Confirmation; - - Confirmation.prototype.getDefaults = function () { - return Confirmation.DEFAULTS; - } - - Confirmation.prototype.setContent = function () { - var that = this; - var $tip = this.tip(); - var title = this.getTitle(); - var $btnOk = $tip.find('[data-apply="confirmation"]'); - var $btnCancel = $tip.find('[data-dismiss="confirmation"]'); - var options = this.options - - $btnOk.addClass(this.getBtnOkClass()) - .html(this.getBtnOkLabel()) - .prepend($('<i></i>').addClass(this.getBtnOkIcon()), " ") - .attr('href', this.getHref()) - .attr('target', this.getTarget()) - .off('click').on('click', function(event) { - options.onConfirm(event, that.$element); - - that.$element.confirmation('hide'); - }); - - $btnCancel.addClass(this.getBtnCancelClass()) - .html(this.getBtnCancelLabel()) - .prepend($('<i></i>').addClass(this.getBtnCancelIcon()), " ") - .off('click').on('click', function(event){ - options.onCancel(event, that.$element); - - that.$element.confirmation('hide'); - }); - - $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title); - - $tip.removeClass('fade top bottom left right in'); - - // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do - // this manually by checking the contents. - if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide(); - } - - Confirmation.prototype.getBtnOkClass = function () { - var $e = this.$element; - var o = this.options; - - return $e.attr('data-btnOkClass') || (typeof o.btnOkClass == 'function' ? o.btnOkClass.call($e[0]) : o.btnOkClass); - } - - Confirmation.prototype.getBtnOkLabel = function () { - var $e = this.$element; - var o = this.options; - - return $e.attr('data-btnOkLabel') || (typeof o.btnOkLabel == 'function' ? o.btnOkLabel.call($e[0]) : o.btnOkLabel); - } - - Confirmation.prototype.getBtnOkIcon = function () { - var $e = this.$element; - var o = this.options; - - return $e.attr('data-btnOkIcon') || (typeof o.btnOkIcon == 'function' ? o.btnOkIcon.call($e[0]) : o.btnOkIcon); - } - - Confirmation.prototype.getBtnCancelClass = function () { - var $e = this.$element; - var o = this.options; - - return $e.attr('data-btnCancelClass') || (typeof o.btnCancelClass == 'function' ? o.btnCancelClass.call($e[0]) : o.btnCancelClass); - } - - Confirmation.prototype.getBtnCancelLabel = function () { - var $e = this.$element; - var o = this.options; - - return $e.attr('data-btnCancelLabel') || (typeof o.btnCancelLabel == 'function' ? o.btnCancelLabel.call($e[0]) : o.btnCancelLabel); - } - - Confirmation.prototype.getBtnCancelIcon = function () { - var $e = this.$element; - var o = this.options; - - return $e.attr('data-btnCancelIcon') || (typeof o.btnCancelIcon == 'function' ? o.btnCancelIcon.call($e[0]) : o.btnCancelIcon); - } - - Confirmation.prototype.getHref = function () { - var $e = this.$element; - var o = this.options; - - return $e.attr('data-href') || (typeof o.href == 'function' ? o.href.call($e[0]) : o.href); - } - - Confirmation.prototype.getTarget = function () { - var $e = this.$element; - var o = this.options; - - return $e.attr('data-target') || (typeof o.target == 'function' ? o.target.call($e[0]) : o.target); - } - - Confirmation.prototype.isPopout = function () { - var popout; - var $e = this.$element; - var o = this.options; - - popout = $e.attr('data-popout') || (typeof o.popout == 'function' ? o.popout.call($e[0]) : o.popout); - - if(popout == 'false') popout = false; - - return popout - } - - - // CONFIRMATION PLUGIN DEFINITION - // ========================= - var old = $.fn.confirmation; - - $.fn.confirmation = function (option) { - var that = this; - - return this.each(function () { - var $this = $(this); - var data = $this.data('bs.confirmation'); - var options = typeof option == 'object' && option; - - options = options || {}; - options.all_selector = that.selector; - - if (!data && option == 'destroy') return; - if (!data) $this.data('bs.confirmation', (data = new Confirmation(this, options))); - if (typeof option == 'string') data[option](); - }); - } - - $.fn.confirmation.Constructor = Confirmation - - - // CONFIRMATION NO CONFLICT - // =================== - $.fn.confirmation.noConflict = function () { - $.fn.confirmation = old; - - return this; - } -}(jQuery); - -/*! - * jQuery Cookie Plugin v1.4.0 - * https://github.com/carhartl/jquery-cookie - * - * Copyright 2013 Klaus Hartl - * Released under the MIT license - */ -(function(c){"function"===typeof define&&define.amd?define(["jquery"],c):c(jQuery)})(function(c){function m(b){return f.raw?b:encodeURIComponent(b)}function n(b,e){var a;if(f.raw)a=b;else a:{var d=b;0===d.indexOf('"')&&(d=d.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\"));try{d=decodeURIComponent(d.replace(l," "));a=f.json?JSON.parse(d):d;break a}catch(g){}a=void 0}return c.isFunction(e)?e(a):a}var l=/\+/g,f=c.cookie=function(b,e,a){if(void 0!==e&&!c.isFunction(e)){a=c.extend({},f.defaults, -a);if("number"===typeof a.expires){var d=a.expires,g=a.expires=new Date;g.setDate(g.getDate()+d)}return document.cookie=[m(b),"=",m(f.json?JSON.stringify(e):String(e)),a.expires?"; expires="+a.expires.toUTCString():"",a.path?"; path="+a.path:"",a.domain?"; domain="+a.domain:"",a.secure?"; secure":""].join("")}a=b?void 0:{};for(var d=document.cookie?document.cookie.split("; "):[],g=0,l=d.length;g<l;g++){var h=d[g].split("="),k;k=h.shift();k=f.raw?k:decodeURIComponent(k);h=h.join("=");if(b&&b===k){a= -n(h,e);break}b||void 0===(h=n(h))||(a[k]=h)}return a};f.defaults={};c.removeCookie=function(b,e){if(void 0===c.cookie(b))return!1;c.cookie(b,"",c.extend({},e,{expires:-1}));return!c.cookie(b)}}); - - -/* -Copyright 2012 Igor Vaynberg - -Version: 3.4.3 Timestamp: Tue Sep 17 06:47:14 PDT 2013 - -This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU -General Public License version 2 (the "GPL License"). You may choose either license to govern your -use of this software only upon the condition that you accept all of the terms of either the Apache -License or the GPL License. - -You may obtain a copy of the Apache License and the GPL License at: - -http://www.apache.org/licenses/LICENSE-2.0 -http://www.gnu.org/licenses/gpl-2.0.html - -Unless required by applicable law or agreed to in writing, software distributed under the Apache License -or the GPL Licesnse is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, -either express or implied. See the Apache License and the GPL License for the specific language governing -permissions and limitations under the Apache License and the GPL License. -*/ -!function(a){"undefined"==typeof a.fn.each2&&a.extend(a.fn,{each2:function(b){for(var c=a([0]),d=-1,e=this.length;++d<e&&(c.context=c[0]=this[d])&&b.call(c[0],d,c)!==!1;);return this}})}(jQuery),function(a,b){"use strict";function n(a){var b,c,d,e;if(!a||a.length<1)return a;for(b="",c=0,d=a.length;d>c;c++)e=a.charAt(c),b+=m[e]||e;return b}function o(a,b){for(var c=0,d=b.length;d>c;c+=1)if(q(a,b[c]))return c;return-1}function p(){var b=a(l);b.appendTo("body");var c={width:b.width()-b[0].clientWidth,height:b.height()-b[0].clientHeight};return b.remove(),c}function q(a,c){return a===c?!0:a===b||c===b?!1:null===a||null===c?!1:a.constructor===String?a+""==c+"":c.constructor===String?c+""==a+"":!1}function r(b,c){var d,e,f;if(null===b||b.length<1)return[];for(d=b.split(c),e=0,f=d.length;f>e;e+=1)d[e]=a.trim(d[e]);return d}function s(a){return a.outerWidth(!1)-a.width()}function t(c){var d="keyup-change-value";c.on("keydown",function(){a.data(c,d)===b&&a.data(c,d,c.val())}),c.on("keyup",function(){var e=a.data(c,d);e!==b&&c.val()!==e&&(a.removeData(c,d),c.trigger("keyup-change"))})}function u(c){c.on("mousemove",function(c){var d=i;(d===b||d.x!==c.pageX||d.y!==c.pageY)&&a(c.target).trigger("mousemove-filtered",c)})}function v(a,c,d){d=d||b;var e;return function(){var b=arguments;window.clearTimeout(e),e=window.setTimeout(function(){c.apply(d,b)},a)}}function w(a){var c,b=!1;return function(){return b===!1&&(c=a(),b=!0),c}}function x(a,b){var c=v(a,function(a){b.trigger("scroll-debounced",a)});b.on("scroll",function(a){o(a.target,b.get())>=0&&c(a)})}function y(a){a[0]!==document.activeElement&&window.setTimeout(function(){var d,b=a[0],c=a.val().length;a.focus(),a.is(":visible")&&b===document.activeElement&&(b.setSelectionRange?b.setSelectionRange(c,c):b.createTextRange&&(d=b.createTextRange(),d.collapse(!1),d.select()))},0)}function z(b){b=a(b)[0];var c=0,d=0;if("selectionStart"in b)c=b.selectionStart,d=b.selectionEnd-c;else if("selection"in document){b.focus();var e=document.selection.createRange();d=document.selection.createRange().text.length,e.moveStart("character",-b.value.length),c=e.text.length-d}return{offset:c,length:d}}function A(a){a.preventDefault(),a.stopPropagation()}function B(a){a.preventDefault(),a.stopImmediatePropagation()}function C(b){if(!h){var c=b[0].currentStyle||window.getComputedStyle(b[0],null);h=a(document.createElement("div")).css({position:"absolute",left:"-10000px",top:"-10000px",display:"none",fontSize:c.fontSize,fontFamily:c.fontFamily,fontStyle:c.fontStyle,fontWeight:c.fontWeight,letterSpacing:c.letterSpacing,textTransform:c.textTransform,whiteSpace:"nowrap"}),h.attr("class","select2-sizer"),a("body").append(h)}return h.text(b.val()),h.width()}function D(b,c,d){var e,g,f=[];e=b.attr("class"),e&&(e=""+e,a(e.split(" ")).each2(function(){0===this.indexOf("select2-")&&f.push(this)})),e=c.attr("class"),e&&(e=""+e,a(e.split(" ")).each2(function(){0!==this.indexOf("select2-")&&(g=d(this),g&&f.push(this))})),b.attr("class",f.join(" "))}function E(a,b,c,d){var e=n(a.toUpperCase()).indexOf(n(b.toUpperCase())),f=b.length;return 0>e?(c.push(d(a)),void 0):(c.push(d(a.substring(0,e))),c.push("<span class='select2-match'>"),c.push(d(a.substring(e,e+f))),c.push("</span>"),c.push(d(a.substring(e+f,a.length))),void 0)}function F(a){var b={"\\":"\","&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};return String(a).replace(/[&<>"'\/\\]/g,function(a){return b[a]})}function G(c){var d,e=null,f=c.quietMillis||100,g=c.url,h=this;return function(i){window.clearTimeout(d),d=window.setTimeout(function(){var d=c.data,f=g,j=c.transport||a.fn.select2.ajaxDefaults.transport,k={type:c.type||"GET",cache:c.cache||!1,jsonpCallback:c.jsonpCallback||b,dataType:c.dataType||"json"},l=a.extend({},a.fn.select2.ajaxDefaults.params,k);d=d?d.call(h,i.term,i.page,i.context):null,f="function"==typeof f?f.call(h,i.term,i.page,i.context):f,e&&e.abort(),c.params&&(a.isFunction(c.params)?a.extend(l,c.params.call(h)):a.extend(l,c.params)),a.extend(l,{url:f,dataType:c.dataType,data:d,success:function(a){var b=c.results(a,i.page);i.callback(b)}}),e=j.call(h,l)},f)}}function H(b){var d,e,c=b,f=function(a){return""+a.text};a.isArray(c)&&(e=c,c={results:e}),a.isFunction(c)===!1&&(e=c,c=function(){return e});var g=c();return g.text&&(f=g.text,a.isFunction(f)||(d=g.text,f=function(a){return a[d]})),function(b){var g,d=b.term,e={results:[]};return""===d?(b.callback(c()),void 0):(g=function(c,e){var h,i;if(c=c[0],c.children){h={};for(i in c)c.hasOwnProperty(i)&&(h[i]=c[i]);h.children=[],a(c.children).each2(function(a,b){g(b,h.children)}),(h.children.length||b.matcher(d,f(h),c))&&e.push(h)}else b.matcher(d,f(c),c)&&e.push(c)},a(c().results).each2(function(a,b){g(b,e.results)}),b.callback(e),void 0)}}function I(c){var d=a.isFunction(c);return function(e){var f=e.term,g={results:[]};a(d?c():c).each(function(){var a=this.text!==b,c=a?this.text:this;(""===f||e.matcher(f,c))&&g.results.push(a?this:{id:this,text:this})}),e.callback(g)}}function J(b,c){if(a.isFunction(b))return!0;if(!b)return!1;throw new Error(c+" must be a function or a falsy value")}function K(b){return a.isFunction(b)?b():b}function L(b){var c=0;return a.each(b,function(a,b){b.children?c+=L(b.children):c++}),c}function M(a,c,d,e){var h,i,j,k,l,f=a,g=!1;if(!e.createSearchChoice||!e.tokenSeparators||e.tokenSeparators.length<1)return b;for(;;){for(i=-1,j=0,k=e.tokenSeparators.length;k>j&&(l=e.tokenSeparators[j],i=a.indexOf(l),!(i>=0));j++);if(0>i)break;if(h=a.substring(0,i),a=a.substring(i+l.length),h.length>0&&(h=e.createSearchChoice.call(this,h,c),h!==b&&null!==h&&e.id(h)!==b&&null!==e.id(h))){for(g=!1,j=0,k=c.length;k>j;j++)if(q(e.id(h),e.id(c[j]))){g=!0;break}g||d(h)}}return f!==a?a:void 0}function N(b,c){var d=function(){};return d.prototype=new b,d.prototype.constructor=d,d.prototype.parent=b.prototype,d.prototype=a.extend(d.prototype,c),d}if(window.Select2===b){var c,d,e,f,g,h,j,k,i={x:0,y:0},c={TAB:9,ENTER:13,ESC:27,SPACE:32,LEFT:37,UP:38,RIGHT:39,DOWN:40,SHIFT:16,CTRL:17,ALT:18,PAGE_UP:33,PAGE_DOWN:34,HOME:36,END:35,BACKSPACE:8,DELETE:46,isArrow:function(a){switch(a=a.which?a.which:a){case c.LEFT:case c.RIGHT:case c.UP:case c.DOWN:return!0}return!1},isControl:function(a){var b=a.which;switch(b){case c.SHIFT:case c.CTRL:case c.ALT:return!0}return a.metaKey?!0:!1},isFunctionKey:function(a){return a=a.which?a.which:a,a>=112&&123>=a}},l="<div class='select2-measure-scrollbar'></div>",m={"\u24b6":"A","\uff21":"A","\xc0":"A","\xc1":"A","\xc2":"A","\u1ea6":"A","\u1ea4":"A","\u1eaa":"A","\u1ea8":"A","\xc3":"A","\u0100":"A","\u0102":"A","\u1eb0":"A","\u1eae":"A","\u1eb4":"A","\u1eb2":"A","\u0226":"A","\u01e0":"A","\xc4":"A","\u01de":"A","\u1ea2":"A","\xc5":"A","\u01fa":"A","\u01cd":"A","\u0200":"A","\u0202":"A","\u1ea0":"A","\u1eac":"A","\u1eb6":"A","\u1e00":"A","\u0104":"A","\u023a":"A","\u2c6f":"A","\ua732":"AA","\xc6":"AE","\u01fc":"AE","\u01e2":"AE","\ua734":"AO","\ua736":"AU","\ua738":"AV","\ua73a":"AV","\ua73c":"AY","\u24b7":"B","\uff22":"B","\u1e02":"B","\u1e04":"B","\u1e06":"B","\u0243":"B","\u0182":"B","\u0181":"B","\u24b8":"C","\uff23":"C","\u0106":"C","\u0108":"C","\u010a":"C","\u010c":"C","\xc7":"C","\u1e08":"C","\u0187":"C","\u023b":"C","\ua73e":"C","\u24b9":"D","\uff24":"D","\u1e0a":"D","\u010e":"D","\u1e0c":"D","\u1e10":"D","\u1e12":"D","\u1e0e":"D","\u0110":"D","\u018b":"D","\u018a":"D","\u0189":"D","\ua779":"D","\u01f1":"DZ","\u01c4":"DZ","\u01f2":"Dz","\u01c5":"Dz","\u24ba":"E","\uff25":"E","\xc8":"E","\xc9":"E","\xca":"E","\u1ec0":"E","\u1ebe":"E","\u1ec4":"E","\u1ec2":"E","\u1ebc":"E","\u0112":"E","\u1e14":"E","\u1e16":"E","\u0114":"E","\u0116":"E","\xcb":"E","\u1eba":"E","\u011a":"E","\u0204":"E","\u0206":"E","\u1eb8":"E","\u1ec6":"E","\u0228":"E","\u1e1c":"E","\u0118":"E","\u1e18":"E","\u1e1a":"E","\u0190":"E","\u018e":"E","\u24bb":"F","\uff26":"F","\u1e1e":"F","\u0191":"F","\ua77b":"F","\u24bc":"G","\uff27":"G","\u01f4":"G","\u011c":"G","\u1e20":"G","\u011e":"G","\u0120":"G","\u01e6":"G","\u0122":"G","\u01e4":"G","\u0193":"G","\ua7a0":"G","\ua77d":"G","\ua77e":"G","\u24bd":"H","\uff28":"H","\u0124":"H","\u1e22":"H","\u1e26":"H","\u021e":"H","\u1e24":"H","\u1e28":"H","\u1e2a":"H","\u0126":"H","\u2c67":"H","\u2c75":"H","\ua78d":"H","\u24be":"I","\uff29":"I","\xcc":"I","\xcd":"I","\xce":"I","\u0128":"I","\u012a":"I","\u012c":"I","\u0130":"I","\xcf":"I","\u1e2e":"I","\u1ec8":"I","\u01cf":"I","\u0208":"I","\u020a":"I","\u1eca":"I","\u012e":"I","\u1e2c":"I","\u0197":"I","\u24bf":"J","\uff2a":"J","\u0134":"J","\u0248":"J","\u24c0":"K","\uff2b":"K","\u1e30":"K","\u01e8":"K","\u1e32":"K","\u0136":"K","\u1e34":"K","\u0198":"K","\u2c69":"K","\ua740":"K","\ua742":"K","\ua744":"K","\ua7a2":"K","\u24c1":"L","\uff2c":"L","\u013f":"L","\u0139":"L","\u013d":"L","\u1e36":"L","\u1e38":"L","\u013b":"L","\u1e3c":"L","\u1e3a":"L","\u0141":"L","\u023d":"L","\u2c62":"L","\u2c60":"L","\ua748":"L","\ua746":"L","\ua780":"L","\u01c7":"LJ","\u01c8":"Lj","\u24c2":"M","\uff2d":"M","\u1e3e":"M","\u1e40":"M","\u1e42":"M","\u2c6e":"M","\u019c":"M","\u24c3":"N","\uff2e":"N","\u01f8":"N","\u0143":"N","\xd1":"N","\u1e44":"N","\u0147":"N","\u1e46":"N","\u0145":"N","\u1e4a":"N","\u1e48":"N","\u0220":"N","\u019d":"N","\ua790":"N","\ua7a4":"N","\u01ca":"NJ","\u01cb":"Nj","\u24c4":"O","\uff2f":"O","\xd2":"O","\xd3":"O","\xd4":"O","\u1ed2":"O","\u1ed0":"O","\u1ed6":"O","\u1ed4":"O","\xd5":"O","\u1e4c":"O","\u022c":"O","\u1e4e":"O","\u014c":"O","\u1e50":"O","\u1e52":"O","\u014e":"O","\u022e":"O","\u0230":"O","\xd6":"O","\u022a":"O","\u1ece":"O","\u0150":"O","\u01d1":"O","\u020c":"O","\u020e":"O","\u01a0":"O","\u1edc":"O","\u1eda":"O","\u1ee0":"O","\u1ede":"O","\u1ee2":"O","\u1ecc":"O","\u1ed8":"O","\u01ea":"O","\u01ec":"O","\xd8":"O","\u01fe":"O","\u0186":"O","\u019f":"O","\ua74a":"O","\ua74c":"O","\u01a2":"OI","\ua74e":"OO","\u0222":"OU","\u24c5":"P","\uff30":"P","\u1e54":"P","\u1e56":"P","\u01a4":"P","\u2c63":"P","\ua750":"P","\ua752":"P","\ua754":"P","\u24c6":"Q","\uff31":"Q","\ua756":"Q","\ua758":"Q","\u024a":"Q","\u24c7":"R","\uff32":"R","\u0154":"R","\u1e58":"R","\u0158":"R","\u0210":"R","\u0212":"R","\u1e5a":"R","\u1e5c":"R","\u0156":"R","\u1e5e":"R","\u024c":"R","\u2c64":"R","\ua75a":"R","\ua7a6":"R","\ua782":"R","\u24c8":"S","\uff33":"S","\u1e9e":"S","\u015a":"S","\u1e64":"S","\u015c":"S","\u1e60":"S","\u0160":"S","\u1e66":"S","\u1e62":"S","\u1e68":"S","\u0218":"S","\u015e":"S","\u2c7e":"S","\ua7a8":"S","\ua784":"S","\u24c9":"T","\uff34":"T","\u1e6a":"T","\u0164":"T","\u1e6c":"T","\u021a":"T","\u0162":"T","\u1e70":"T","\u1e6e":"T","\u0166":"T","\u01ac":"T","\u01ae":"T","\u023e":"T","\ua786":"T","\ua728":"TZ","\u24ca":"U","\uff35":"U","\xd9":"U","\xda":"U","\xdb":"U","\u0168":"U","\u1e78":"U","\u016a":"U","\u1e7a":"U","\u016c":"U","\xdc":"U","\u01db":"U","\u01d7":"U","\u01d5":"U","\u01d9":"U","\u1ee6":"U","\u016e":"U","\u0170":"U","\u01d3":"U","\u0214":"U","\u0216":"U","\u01af":"U","\u1eea":"U","\u1ee8":"U","\u1eee":"U","\u1eec":"U","\u1ef0":"U","\u1ee4":"U","\u1e72":"U","\u0172":"U","\u1e76":"U","\u1e74":"U","\u0244":"U","\u24cb":"V","\uff36":"V","\u1e7c":"V","\u1e7e":"V","\u01b2":"V","\ua75e":"V","\u0245":"V","\ua760":"VY","\u24cc":"W","\uff37":"W","\u1e80":"W","\u1e82":"W","\u0174":"W","\u1e86":"W","\u1e84":"W","\u1e88":"W","\u2c72":"W","\u24cd":"X","\uff38":"X","\u1e8a":"X","\u1e8c":"X","\u24ce":"Y","\uff39":"Y","\u1ef2":"Y","\xdd":"Y","\u0176":"Y","\u1ef8":"Y","\u0232":"Y","\u1e8e":"Y","\u0178":"Y","\u1ef6":"Y","\u1ef4":"Y","\u01b3":"Y","\u024e":"Y","\u1efe":"Y","\u24cf":"Z","\uff3a":"Z","\u0179":"Z","\u1e90":"Z","\u017b":"Z","\u017d":"Z","\u1e92":"Z","\u1e94":"Z","\u01b5":"Z","\u0224":"Z","\u2c7f":"Z","\u2c6b":"Z","\ua762":"Z","\u24d0":"a","\uff41":"a","\u1e9a":"a","\xe0":"a","\xe1":"a","\xe2":"a","\u1ea7":"a","\u1ea5":"a","\u1eab":"a","\u1ea9":"a","\xe3":"a","\u0101":"a","\u0103":"a","\u1eb1":"a","\u1eaf":"a","\u1eb5":"a","\u1eb3":"a","\u0227":"a","\u01e1":"a","\xe4":"a","\u01df":"a","\u1ea3":"a","\xe5":"a","\u01fb":"a","\u01ce":"a","\u0201":"a","\u0203":"a","\u1ea1":"a","\u1ead":"a","\u1eb7":"a","\u1e01":"a","\u0105":"a","\u2c65":"a","\u0250":"a","\ua733":"aa","\xe6":"ae","\u01fd":"ae","\u01e3":"ae","\ua735":"ao","\ua737":"au","\ua739":"av","\ua73b":"av","\ua73d":"ay","\u24d1":"b","\uff42":"b","\u1e03":"b","\u1e05":"b","\u1e07":"b","\u0180":"b","\u0183":"b","\u0253":"b","\u24d2":"c","\uff43":"c","\u0107":"c","\u0109":"c","\u010b":"c","\u010d":"c","\xe7":"c","\u1e09":"c","\u0188":"c","\u023c":"c","\ua73f":"c","\u2184":"c","\u24d3":"d","\uff44":"d","\u1e0b":"d","\u010f":"d","\u1e0d":"d","\u1e11":"d","\u1e13":"d","\u1e0f":"d","\u0111":"d","\u018c":"d","\u0256":"d","\u0257":"d","\ua77a":"d","\u01f3":"dz","\u01c6":"dz","\u24d4":"e","\uff45":"e","\xe8":"e","\xe9":"e","\xea":"e","\u1ec1":"e","\u1ebf":"e","\u1ec5":"e","\u1ec3":"e","\u1ebd":"e","\u0113":"e","\u1e15":"e","\u1e17":"e","\u0115":"e","\u0117":"e","\xeb":"e","\u1ebb":"e","\u011b":"e","\u0205":"e","\u0207":"e","\u1eb9":"e","\u1ec7":"e","\u0229":"e","\u1e1d":"e","\u0119":"e","\u1e19":"e","\u1e1b":"e","\u0247":"e","\u025b":"e","\u01dd":"e","\u24d5":"f","\uff46":"f","\u1e1f":"f","\u0192":"f","\ua77c":"f","\u24d6":"g","\uff47":"g","\u01f5":"g","\u011d":"g","\u1e21":"g","\u011f":"g","\u0121":"g","\u01e7":"g","\u0123":"g","\u01e5":"g","\u0260":"g","\ua7a1":"g","\u1d79":"g","\ua77f":"g","\u24d7":"h","\uff48":"h","\u0125":"h","\u1e23":"h","\u1e27":"h","\u021f":"h","\u1e25":"h","\u1e29":"h","\u1e2b":"h","\u1e96":"h","\u0127":"h","\u2c68":"h","\u2c76":"h","\u0265":"h","\u0195":"hv","\u24d8":"i","\uff49":"i","\xec":"i","\xed":"i","\xee":"i","\u0129":"i","\u012b":"i","\u012d":"i","\xef":"i","\u1e2f":"i","\u1ec9":"i","\u01d0":"i","\u0209":"i","\u020b":"i","\u1ecb":"i","\u012f":"i","\u1e2d":"i","\u0268":"i","\u0131":"i","\u24d9":"j","\uff4a":"j","\u0135":"j","\u01f0":"j","\u0249":"j","\u24da":"k","\uff4b":"k","\u1e31":"k","\u01e9":"k","\u1e33":"k","\u0137":"k","\u1e35":"k","\u0199":"k","\u2c6a":"k","\ua741":"k","\ua743":"k","\ua745":"k","\ua7a3":"k","\u24db":"l","\uff4c":"l","\u0140":"l","\u013a":"l","\u013e":"l","\u1e37":"l","\u1e39":"l","\u013c":"l","\u1e3d":"l","\u1e3b":"l","\u017f":"l","\u0142":"l","\u019a":"l","\u026b":"l","\u2c61":"l","\ua749":"l","\ua781":"l","\ua747":"l","\u01c9":"lj","\u24dc":"m","\uff4d":"m","\u1e3f":"m","\u1e41":"m","\u1e43":"m","\u0271":"m","\u026f":"m","\u24dd":"n","\uff4e":"n","\u01f9":"n","\u0144":"n","\xf1":"n","\u1e45":"n","\u0148":"n","\u1e47":"n","\u0146":"n","\u1e4b":"n","\u1e49":"n","\u019e":"n","\u0272":"n","\u0149":"n","\ua791":"n","\ua7a5":"n","\u01cc":"nj","\u24de":"o","\uff4f":"o","\xf2":"o","\xf3":"o","\xf4":"o","\u1ed3":"o","\u1ed1":"o","\u1ed7":"o","\u1ed5":"o","\xf5":"o","\u1e4d":"o","\u022d":"o","\u1e4f":"o","\u014d":"o","\u1e51":"o","\u1e53":"o","\u014f":"o","\u022f":"o","\u0231":"o","\xf6":"o","\u022b":"o","\u1ecf":"o","\u0151":"o","\u01d2":"o","\u020d":"o","\u020f":"o","\u01a1":"o","\u1edd":"o","\u1edb":"o","\u1ee1":"o","\u1edf":"o","\u1ee3":"o","\u1ecd":"o","\u1ed9":"o","\u01eb":"o","\u01ed":"o","\xf8":"o","\u01ff":"o","\u0254":"o","\ua74b":"o","\ua74d":"o","\u0275":"o","\u01a3":"oi","\u0223":"ou","\ua74f":"oo","\u24df":"p","\uff50":"p","\u1e55":"p","\u1e57":"p","\u01a5":"p","\u1d7d":"p","\ua751":"p","\ua753":"p","\ua755":"p","\u24e0":"q","\uff51":"q","\u024b":"q","\ua757":"q","\ua759":"q","\u24e1":"r","\uff52":"r","\u0155":"r","\u1e59":"r","\u0159":"r","\u0211":"r","\u0213":"r","\u1e5b":"r","\u1e5d":"r","\u0157":"r","\u1e5f":"r","\u024d":"r","\u027d":"r","\ua75b":"r","\ua7a7":"r","\ua783":"r","\u24e2":"s","\uff53":"s","\xdf":"s","\u015b":"s","\u1e65":"s","\u015d":"s","\u1e61":"s","\u0161":"s","\u1e67":"s","\u1e63":"s","\u1e69":"s","\u0219":"s","\u015f":"s","\u023f":"s","\ua7a9":"s","\ua785":"s","\u1e9b":"s","\u24e3":"t","\uff54":"t","\u1e6b":"t","\u1e97":"t","\u0165":"t","\u1e6d":"t","\u021b":"t","\u0163":"t","\u1e71":"t","\u1e6f":"t","\u0167":"t","\u01ad":"t","\u0288":"t","\u2c66":"t","\ua787":"t","\ua729":"tz","\u24e4":"u","\uff55":"u","\xf9":"u","\xfa":"u","\xfb":"u","\u0169":"u","\u1e79":"u","\u016b":"u","\u1e7b":"u","\u016d":"u","\xfc":"u","\u01dc":"u","\u01d8":"u","\u01d6":"u","\u01da":"u","\u1ee7":"u","\u016f":"u","\u0171":"u","\u01d4":"u","\u0215":"u","\u0217":"u","\u01b0":"u","\u1eeb":"u","\u1ee9":"u","\u1eef":"u","\u1eed":"u","\u1ef1":"u","\u1ee5":"u","\u1e73":"u","\u0173":"u","\u1e77":"u","\u1e75":"u","\u0289":"u","\u24e5":"v","\uff56":"v","\u1e7d":"v","\u1e7f":"v","\u028b":"v","\ua75f":"v","\u028c":"v","\ua761":"vy","\u24e6":"w","\uff57":"w","\u1e81":"w","\u1e83":"w","\u0175":"w","\u1e87":"w","\u1e85":"w","\u1e98":"w","\u1e89":"w","\u2c73":"w","\u24e7":"x","\uff58":"x","\u1e8b":"x","\u1e8d":"x","\u24e8":"y","\uff59":"y","\u1ef3":"y","\xfd":"y","\u0177":"y","\u1ef9":"y","\u0233":"y","\u1e8f":"y","\xff":"y","\u1ef7":"y","\u1e99":"y","\u1ef5":"y","\u01b4":"y","\u024f":"y","\u1eff":"y","\u24e9":"z","\uff5a":"z","\u017a":"z","\u1e91":"z","\u017c":"z","\u017e":"z","\u1e93":"z","\u1e95":"z","\u01b6":"z","\u0225":"z","\u0240":"z","\u2c6c":"z","\ua763":"z"};j=a(document),g=function(){var a=1;return function(){return a++}}(),j.on("mousemove",function(a){i.x=a.pageX,i.y=a.pageY}),d=N(Object,{bind:function(a){var b=this;return function(){a.apply(b,arguments)}},init:function(c){var d,e,h,i,f=".select2-results";this.opts=c=this.prepareOpts(c),this.id=c.id,c.element.data("select2")!==b&&null!==c.element.data("select2")&&c.element.data("select2").destroy(),this.container=this.createContainer(),this.containerId="s2id_"+(c.element.attr("id")||"autogen"+g()),this.containerSelector="#"+this.containerId.replace(/([;&,\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g,"\\$1"),this.container.attr("id",this.containerId),this.body=w(function(){return c.element.closest("body")}),D(this.container,this.opts.element,this.opts.adaptContainerCssClass),this.container.attr("style",c.element.attr("style")),this.container.css(K(c.containerCss)),this.container.addClass(K(c.containerCssClass)),this.elementTabIndex=this.opts.element.attr("tabindex"),this.opts.element.data("select2",this).attr("tabindex","-1").before(this.container).on("click.select2",A),this.container.data("select2",this),this.dropdown=this.container.find(".select2-drop"),D(this.dropdown,this.opts.element,this.opts.adaptDropdownCssClass),this.dropdown.addClass(K(c.dropdownCssClass)),this.dropdown.data("select2",this),this.dropdown.on("click",A),this.results=d=this.container.find(f),this.search=e=this.container.find("input.select2-input"),this.queryCount=0,this.resultsPage=0,this.context=null,this.initContainer(),this.container.on("click",A),u(this.results),this.dropdown.on("mousemove-filtered touchstart touchmove touchend",f,this.bind(this.highlightUnderEvent)),x(80,this.results),this.dropdown.on("scroll-debounced",f,this.bind(this.loadMoreIfNeeded)),a(this.container).on("change",".select2-input",function(a){a.stopPropagation()}),a(this.dropdown).on("change",".select2-input",function(a){a.stopPropagation()}),a.fn.mousewheel&&d.mousewheel(function(a,b,c,e){var f=d.scrollTop();e>0&&0>=f-e?(d.scrollTop(0),A(a)):0>e&&d.get(0).scrollHeight-d.scrollTop()+e<=d.height()&&(d.scrollTop(d.get(0).scrollHeight-d.height()),A(a))}),t(e),e.on("keyup-change input paste",this.bind(this.updateResults)),e.on("focus",function(){e.addClass("select2-focused")}),e.on("blur",function(){e.removeClass("select2-focused")}),this.dropdown.on("mouseup",f,this.bind(function(b){a(b.target).closest(".select2-result-selectable").length>0&&(this.highlightUnderEvent(b),this.selectHighlighted(b))})),this.dropdown.on("click mouseup mousedown",function(a){a.stopPropagation()}),a.isFunction(this.opts.initSelection)&&(this.initSelection(),this.monitorSource()),null!==c.maximumInputLength&&this.search.attr("maxlength",c.maximumInputLength);var h=c.element.prop("disabled");h===b&&(h=!1),this.enable(!h);var i=c.element.prop("readonly");i===b&&(i=!1),this.readonly(i),k=k||p(),this.autofocus=c.element.prop("autofocus"),c.element.prop("autofocus",!1),this.autofocus&&this.focus(),this.nextSearchTerm=b},destroy:function(){var a=this.opts.element,c=a.data("select2");this.close(),this.propertyObserver&&(delete this.propertyObserver,this.propertyObserver=null),c!==b&&(c.container.remove(),c.dropdown.remove(),a.removeClass("select2-offscreen").removeData("select2").off(".select2").prop("autofocus",this.autofocus||!1),this.elementTabIndex?a.attr({tabindex:this.elementTabIndex}):a.removeAttr("tabindex"),a.show())},optionToData:function(a){return a.is("option")?{id:a.prop("value"),text:a.text(),element:a.get(),css:a.attr("class"),disabled:a.prop("disabled"),locked:q(a.attr("locked"),"locked")||q(a.data("locked"),!0)}:a.is("optgroup")?{text:a.attr("label"),children:[],element:a.get(),css:a.attr("class")}:void 0},prepareOpts:function(c){var d,e,f,g,h=this;if(d=c.element,"select"===d.get(0).tagName.toLowerCase()&&(this.select=e=c.element),e&&a.each(["id","multiple","ajax","query","createSearchChoice","initSelection","data","tags"],function(){if(this in c)throw new Error("Option '"+this+"' is not allowed for Select2 when attached to a <select> element.")}),c=a.extend({},{populateResults:function(d,e,f){var g,l=this.opts.id;g=function(d,e,i){var j,k,m,n,o,p,q,r,s,t;for(d=c.sortResults(d,e,f),j=0,k=d.length;k>j;j+=1)m=d[j],o=m.disabled===!0,n=!o&&l(m)!==b,p=m.children&&m.children.length>0,q=a("<li></li>"),q.addClass("select2-results-dept-"+i),q.addClass("select2-result"),q.addClass(n?"select2-result-selectable":"select2-result-unselectable"),o&&q.addClass("select2-disabled"),p&&q.addClass("select2-result-with-children"),q.addClass(h.opts.formatResultCssClass(m)),r=a(document.createElement("div")),r.addClass("select2-result-label"),t=c.formatResult(m,r,f,h.opts.escapeMarkup),t!==b&&r.html(t),q.append(r),p&&(s=a("<ul></ul>"),s.addClass("select2-result-sub"),g(m.children,s,i+1),q.append(s)),q.data("select2-data",m),e.append(q)},g(e,d,0)}},a.fn.select2.defaults,c),"function"!=typeof c.id&&(f=c.id,c.id=function(a){return a[f]}),a.isArray(c.element.data("select2Tags"))){if("tags"in c)throw"tags specified as both an attribute 'data-select2-tags' and in options of Select2 "+c.element.attr("id");c.tags=c.element.data("select2Tags")}if(e?(c.query=this.bind(function(a){var f,g,i,c={results:[],more:!1},e=a.term;i=function(b,c){var d;b.is("option")?a.matcher(e,b.text(),b)&&c.push(h.optionToData(b)):b.is("optgroup")&&(d=h.optionToData(b),b.children().each2(function(a,b){i(b,d.children)}),d.children.length>0&&c.push(d))},f=d.children(),this.getPlaceholder()!==b&&f.length>0&&(g=this.getPlaceholderOption(),g&&(f=f.not(g))),f.each2(function(a,b){i(b,c.results)}),a.callback(c)}),c.id=function(a){return a.id},c.formatResultCssClass=function(a){return a.css}):"query"in c||("ajax"in c?(g=c.element.data("ajax-url"),g&&g.length>0&&(c.ajax.url=g),c.query=G.call(c.element,c.ajax)):"data"in c?c.query=H(c.data):"tags"in c&&(c.query=I(c.tags),c.createSearchChoice===b&&(c.createSearchChoice=function(b){return{id:a.trim(b),text:a.trim(b)}}),c.initSelection===b&&(c.initSelection=function(b,d){var e=[];a(r(b.val(),c.separator)).each(function(){var b={id:this,text:this},d=c.tags;a.isFunction(d)&&(d=d()),a(d).each(function(){return q(this.id,b.id)?(b=this,!1):void 0}),e.push(b)}),d(e)}))),"function"!=typeof c.query)throw"query function not defined for Select2 "+c.element.attr("id");return c},monitorSource:function(){var c,a=this.opts.element;a.on("change.select2",this.bind(function(){this.opts.element.data("select2-change-triggered")!==!0&&this.initSelection()})),c=this.bind(function(){var d,f=a.prop("disabled");f===b&&(f=!1),this.enable(!f);var d=a.prop("readonly");d===b&&(d=!1),this.readonly(d),D(this.container,this.opts.element,this.opts.adaptContainerCssClass),this.container.addClass(K(this.opts.containerCssClass)),D(this.dropdown,this.opts.element,this.opts.adaptDropdownCssClass),this.dropdown.addClass(K(this.opts.dropdownCssClass))}),a.on("propertychange.select2 DOMAttrModified.select2",c),this.mutationCallback===b&&(this.mutationCallback=function(a){a.forEach(c)}),"undefined"!=typeof WebKitMutationObserver&&(this.propertyObserver&&(delete this.propertyObserver,this.propertyObserver=null),this.propertyObserver=new WebKitMutationObserver(this.mutationCallback),this.propertyObserver.observe(a.get(0),{attributes:!0,subtree:!1}))},triggerSelect:function(b){var c=a.Event("select2-selecting",{val:this.id(b),object:b});return this.opts.element.trigger(c),!c.isDefaultPrevented()},triggerChange:function(b){b=b||{},b=a.extend({},b,{type:"change",val:this.val()}),this.opts.element.data("select2-change-triggered",!0),this.opts.element.trigger(b),this.opts.element.data("select2-change-triggered",!1),this.opts.element.click(),this.opts.blurOnChange&&this.opts.element.blur()},isInterfaceEnabled:function(){return this.enabledInterface===!0},enableInterface:function(){var a=this._enabled&&!this._readonly,b=!a;return a===this.enabledInterface?!1:(this.container.toggleClass("select2-container-disabled",b),this.close(),this.enabledInterface=a,!0)},enable:function(a){a===b&&(a=!0),this._enabled!==a&&(this._enabled=a,this.opts.element.prop("disabled",!a),this.enableInterface())},disable:function(){this.enable(!1)},readonly:function(a){return a===b&&(a=!1),this._readonly===a?!1:(this._readonly=a,this.opts.element.prop("readonly",a),this.enableInterface(),!0)},opened:function(){return this.container.hasClass("select2-dropdown-open")},positionDropdown:function(){var q,r,s,t,b=this.dropdown,c=this.container.offset(),d=this.container.outerHeight(!1),e=this.container.outerWidth(!1),f=b.outerHeight(!1),g=a(window).scrollLeft()+a(window).width(),h=a(window).scrollTop()+a(window).height(),i=c.top+d,j=c.left,l=h>=i+f,m=c.top-f>=this.body().scrollTop(),n=b.outerWidth(!1),o=g>=j+n,p=b.hasClass("select2-drop-above");this.opts.dropdownAutoWidth?(t=a(".select2-results",b)[0],b.addClass("select2-drop-auto-width"),b.css("width",""),n=b.outerWidth(!1)+(t.scrollHeight===t.clientHeight?0:k.width),n>e?e=n:n=e,o=g>=j+n):this.container.removeClass("select2-drop-auto-width"),"static"!==this.body().css("position")&&(q=this.body().offset(),i-=q.top,j-=q.left),p?(r=!0,!m&&l&&(r=!1)):(r=!1,!l&&m&&(r=!0)),o||(j=c.left+e-n),r?(i=c.top-f,this.container.addClass("select2-drop-above"),b.addClass("select2-drop-above")):(this.container.removeClass("select2-drop-above"),b.removeClass("select2-drop-above")),s=a.extend({top:i,left:j,width:e},K(this.opts.dropdownCss)),b.css(s)},shouldOpen:function(){var b;return this.opened()?!1:this._enabled===!1||this._readonly===!0?!1:(b=a.Event("select2-opening"),this.opts.element.trigger(b),!b.isDefaultPrevented())},clearDropdownAlignmentPreference:function(){this.container.removeClass("select2-drop-above"),this.dropdown.removeClass("select2-drop-above")},open:function(){return this.shouldOpen()?(this.opening(),!0):!1},opening:function(){var f,b=this.containerId,c="scroll."+b,d="resize."+b,e="orientationchange."+b;this.container.addClass("select2-dropdown-open").addClass("select2-container-active"),this.clearDropdownAlignmentPreference(),this.dropdown[0]!==this.body().children().last()[0]&&this.dropdown.detach().appendTo(this.body()),f=a("#select2-drop-mask"),0==f.length&&(f=a(document.createElement("div")),f.attr("id","select2-drop-mask").attr("class","select2-drop-mask"),f.hide(),f.appendTo(this.body()),f.on("mousedown touchstart click",function(b){var d,c=a("#select2-drop");c.length>0&&(d=c.data("select2"),d.opts.selectOnBlur&&d.selectHighlighted({noFocus:!0}),d.close({focus:!1}),b.preventDefault(),b.stopPropagation())})),this.dropdown.prev()[0]!==f[0]&&this.dropdown.before(f),a("#select2-drop").removeAttr("id"),this.dropdown.attr("id","select2-drop"),f.show(),this.positionDropdown(),this.dropdown.show(),this.positionDropdown(),this.dropdown.addClass("select2-drop-active");var h=this;this.container.parents().add(window).each(function(){a(this).on(d+" "+c+" "+e,function(){h.positionDropdown()})})},close:function(){if(this.opened()){var b=this.containerId,c="scroll."+b,d="resize."+b,e="orientationchange."+b;this.container.parents().add(window).each(function(){a(this).off(c).off(d).off(e)}),this.clearDropdownAlignmentPreference(),a("#select2-drop-mask").hide(),this.dropdown.removeAttr("id"),this.dropdown.hide(),this.container.removeClass("select2-dropdown-open").removeClass("select2-container-active"),this.results.empty(),this.clearSearch(),this.search.removeClass("select2-active"),this.opts.element.trigger(a.Event("select2-close"))}},externalSearch:function(a){this.open(),this.search.val(a),this.updateResults(!1)},clearSearch:function(){},getMaximumSelectionSize:function(){return K(this.opts.maximumSelectionSize)},ensureHighlightVisible:function(){var c,d,e,f,g,h,i,b=this.results;if(d=this.highlight(),!(0>d)){if(0==d)return b.scrollTop(0),void 0;c=this.findHighlightableChoices().find(".select2-result-label"),e=a(c[d]),f=e.offset().top+e.outerHeight(!0),d===c.length-1&&(i=b.find("li.select2-more-results"),i.length>0&&(f=i.offset().top+i.outerHeight(!0))),g=b.offset().top+b.outerHeight(!0),f>g&&b.scrollTop(b.scrollTop()+(f-g)),h=e.offset().top-b.offset().top,0>h&&"none"!=e.css("display")&&b.scrollTop(b.scrollTop()+h)}},findHighlightableChoices:function(){return this.results.find(".select2-result-selectable:not(.select2-disabled)")},moveHighlight:function(b){for(var c=this.findHighlightableChoices(),d=this.highlight();d>-1&&d<c.length;){d+=b;var e=a(c[d]);if(e.hasClass("select2-result-selectable")&&!e.hasClass("select2-disabled")&&!e.hasClass("select2-selected")){this.highlight(d);break}}},highlight:function(b){var d,e,c=this.findHighlightableChoices();return 0===arguments.length?o(c.filter(".select2-highlighted")[0],c.get()):(b>=c.length&&(b=c.length-1),0>b&&(b=0),this.removeHighlight(),d=a(c[b]),d.addClass("select2-highlighted"),this.ensureHighlightVisible(),e=d.data("select2-data"),e&&this.opts.element.trigger({type:"select2-highlight",val:this.id(e),choice:e}),void 0)},removeHighlight:function(){this.results.find(".select2-highlighted").removeClass("select2-highlighted")},countSelectableResults:function(){return this.findHighlightableChoices().length},highlightUnderEvent:function(b){var c=a(b.target).closest(".select2-result-selectable");if(c.length>0&&!c.is(".select2-highlighted")){var d=this.findHighlightableChoices();this.highlight(d.index(c))}else 0==c.length&&this.removeHighlight()},loadMoreIfNeeded:function(){var c,a=this.results,b=a.find("li.select2-more-results"),e=this.resultsPage+1,f=this,g=this.search.val(),h=this.context;0!==b.length&&(c=b.offset().top-a.offset().top-a.height(),c<=this.opts.loadMorePadding&&(b.addClass("select2-active"),this.opts.query({element:this.opts.element,term:g,page:e,context:h,matcher:this.opts.matcher,callback:this.bind(function(c){f.opened()&&(f.opts.populateResults.call(this,a,c.results,{term:g,page:e,context:h}),f.postprocessResults(c,!1,!1),c.more===!0?(b.detach().appendTo(a).text(f.opts.formatLoadMore(e+1)),window.setTimeout(function(){f.loadMoreIfNeeded()},10)):b.remove(),f.positionDropdown(),f.resultsPage=e,f.context=c.context,this.opts.element.trigger({type:"select2-loaded",items:c}))})})))},tokenize:function(){},updateResults:function(c){function m(){d.removeClass("select2-active"),h.positionDropdown()}function n(a){e.html(a),m()}var g,i,l,d=this.search,e=this.results,f=this.opts,h=this,j=d.val(),k=a.data(this.container,"select2-last-term");if((c===!0||!k||!q(j,k))&&(a.data(this.container,"select2-last-term",j),c===!0||this.showSearchInput!==!1&&this.opened())){l=++this.queryCount;var o=this.getMaximumSelectionSize();if(o>=1&&(g=this.data(),a.isArray(g)&&g.length>=o&&J(f.formatSelectionTooBig,"formatSelectionTooBig")))return n("<li class='select2-selection-limit'>"+f.formatSelectionTooBig(o)+"</li>"),void 0;if(d.val().length<f.minimumInputLength)return J(f.formatInputTooShort,"formatInputTooShort")?n("<li class='select2-no-results'>"+f.formatInputTooShort(d.val(),f.minimumInputLength)+"</li>"):n(""),c&&this.showSearch&&this.showSearch(!0),void 0;if(f.maximumInputLength&&d.val().length>f.maximumInputLength)return J(f.formatInputTooLong,"formatInputTooLong")?n("<li class='select2-no-results'>"+f.formatInputTooLong(d.val(),f.maximumInputLength)+"</li>"):n(""),void 0; -f.formatSearching&&0===this.findHighlightableChoices().length&&n("<li class='select2-searching'>"+f.formatSearching()+"</li>"),d.addClass("select2-active"),this.removeHighlight(),i=this.tokenize(),i!=b&&null!=i&&d.val(i),this.resultsPage=1,f.query({element:f.element,term:d.val(),page:this.resultsPage,context:null,matcher:f.matcher,callback:this.bind(function(g){var i;if(l==this.queryCount){if(!this.opened())return this.search.removeClass("select2-active"),void 0;if(this.context=g.context===b?null:g.context,this.opts.createSearchChoice&&""!==d.val()&&(i=this.opts.createSearchChoice.call(h,d.val(),g.results),i!==b&&null!==i&&h.id(i)!==b&&null!==h.id(i)&&0===a(g.results).filter(function(){return q(h.id(this),h.id(i))}).length&&g.results.unshift(i)),0===g.results.length&&J(f.formatNoMatches,"formatNoMatches"))return n("<li class='select2-no-results'>"+f.formatNoMatches(d.val())+"</li>"),void 0;e.empty(),h.opts.populateResults.call(this,e,g.results,{term:d.val(),page:this.resultsPage,context:null}),g.more===!0&&J(f.formatLoadMore,"formatLoadMore")&&(e.append("<li class='select2-more-results'>"+h.opts.escapeMarkup(f.formatLoadMore(this.resultsPage))+"</li>"),window.setTimeout(function(){h.loadMoreIfNeeded()},10)),this.postprocessResults(g,c),m(),this.opts.element.trigger({type:"select2-loaded",items:g})}})})}},cancel:function(){this.close()},blur:function(){this.opts.selectOnBlur&&this.selectHighlighted({noFocus:!0}),this.close(),this.container.removeClass("select2-container-active"),this.search[0]===document.activeElement&&this.search.blur(),this.clearSearch(),this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus")},focusSearch:function(){y(this.search)},selectHighlighted:function(a){var b=this.highlight(),c=this.results.find(".select2-highlighted"),d=c.closest(".select2-result").data("select2-data");d?(this.highlight(b),this.onSelect(d,a)):a&&a.noFocus&&this.close()},getPlaceholder:function(){var a;return this.opts.element.attr("placeholder")||this.opts.element.attr("data-placeholder")||this.opts.element.data("placeholder")||this.opts.placeholder||((a=this.getPlaceholderOption())!==b?a.text():b)},getPlaceholderOption:function(){if(this.select){var a=this.select.children().first();if(this.opts.placeholderOption!==b)return"first"===this.opts.placeholderOption&&a||"function"==typeof this.opts.placeholderOption&&this.opts.placeholderOption(this.select);if(""===a.text()&&""===a.val())return a}},initContainerWidth:function(){function c(){var c,d,e,f,g;if("off"===this.opts.width)return null;if("element"===this.opts.width)return 0===this.opts.element.outerWidth(!1)?"auto":this.opts.element.outerWidth(!1)+"px";if("copy"===this.opts.width||"resolve"===this.opts.width){if(c=this.opts.element.attr("style"),c!==b)for(d=c.split(";"),f=0,g=d.length;g>f;f+=1)if(e=d[f].replace(/\s/g,"").match(/[^-]width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i),null!==e&&e.length>=1)return e[1];return"resolve"===this.opts.width?(c=this.opts.element.css("width"),c.indexOf("%")>0?c:0===this.opts.element.outerWidth(!1)?"auto":this.opts.element.outerWidth(!1)+"px"):null}return a.isFunction(this.opts.width)?this.opts.width():this.opts.width}var d=c.call(this);null!==d&&this.container.css("width",d)}}),e=N(d,{createContainer:function(){var b=a(document.createElement("div")).attr({"class":"select2-container"}).html(["<a href='javascript:void(0)' onclick='return false;' class='select2-choice' tabindex='-1'>"," <span class='select2-chosen'> </span><abbr class='select2-search-choice-close'></abbr>"," <span class='select2-arrow'><b></b></span>","</a>","<input class='select2-focusser select2-offscreen' type='text'/>","<div class='select2-drop select2-display-none'>"," <div class='select2-search'>"," <input type='text' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' class='select2-input'/>"," </div>"," <ul class='select2-results'>"," </ul>","</div>"].join(""));return b},enableInterface:function(){this.parent.enableInterface.apply(this,arguments)&&this.focusser.prop("disabled",!this.isInterfaceEnabled())},opening:function(){var c,d,e;this.opts.minimumResultsForSearch>=0&&this.showSearch(!0),this.parent.opening.apply(this,arguments),this.showSearchInput!==!1&&this.search.val(this.focusser.val()),this.search.focus(),c=this.search.get(0),c.createTextRange?(d=c.createTextRange(),d.collapse(!1),d.select()):c.setSelectionRange&&(e=this.search.val().length,c.setSelectionRange(e,e)),""===this.search.val()&&this.nextSearchTerm!=b&&(this.search.val(this.nextSearchTerm),this.search.select()),this.focusser.prop("disabled",!0).val(""),this.updateResults(!0),this.opts.element.trigger(a.Event("select2-open"))},close:function(a){this.opened()&&(this.parent.close.apply(this,arguments),a=a||{focus:!0},this.focusser.removeAttr("disabled"),a.focus&&this.focusser.focus())},focus:function(){this.opened()?this.close():(this.focusser.removeAttr("disabled"),this.focusser.focus())},isFocused:function(){return this.container.hasClass("select2-container-active")},cancel:function(){this.parent.cancel.apply(this,arguments),this.focusser.removeAttr("disabled"),this.focusser.focus()},destroy:function(){a("label[for='"+this.focusser.attr("id")+"']").attr("for",this.opts.element.attr("id")),this.parent.destroy.apply(this,arguments)},initContainer:function(){var b,d=this.container,e=this.dropdown;this.opts.minimumResultsForSearch<0?this.showSearch(!1):this.showSearch(!0),this.selection=b=d.find(".select2-choice"),this.focusser=d.find(".select2-focusser"),this.focusser.attr("id","s2id_autogen"+g()),a("label[for='"+this.opts.element.attr("id")+"']").attr("for",this.focusser.attr("id")),this.focusser.attr("tabindex",this.elementTabIndex),this.search.on("keydown",this.bind(function(a){if(this.isInterfaceEnabled()){if(a.which===c.PAGE_UP||a.which===c.PAGE_DOWN)return A(a),void 0;switch(a.which){case c.UP:case c.DOWN:return this.moveHighlight(a.which===c.UP?-1:1),A(a),void 0;case c.ENTER:return this.selectHighlighted(),A(a),void 0;case c.TAB:return this.selectHighlighted({noFocus:!0}),void 0;case c.ESC:return this.cancel(a),A(a),void 0}}})),this.search.on("blur",this.bind(function(){document.activeElement===this.body().get(0)&&window.setTimeout(this.bind(function(){this.search.focus()}),0)})),this.focusser.on("keydown",this.bind(function(a){if(this.isInterfaceEnabled()&&a.which!==c.TAB&&!c.isControl(a)&&!c.isFunctionKey(a)&&a.which!==c.ESC){if(this.opts.openOnEnter===!1&&a.which===c.ENTER)return A(a),void 0;if(a.which==c.DOWN||a.which==c.UP||a.which==c.ENTER&&this.opts.openOnEnter){if(a.altKey||a.ctrlKey||a.shiftKey||a.metaKey)return;return this.open(),A(a),void 0}return a.which==c.DELETE||a.which==c.BACKSPACE?(this.opts.allowClear&&this.clear(),A(a),void 0):void 0}})),t(this.focusser),this.focusser.on("keyup-change input",this.bind(function(a){if(this.opts.minimumResultsForSearch>=0){if(a.stopPropagation(),this.opened())return;this.open()}})),b.on("mousedown","abbr",this.bind(function(a){this.isInterfaceEnabled()&&(this.clear(),B(a),this.close(),this.selection.focus())})),b.on("mousedown",this.bind(function(b){this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.opened()?this.close():this.isInterfaceEnabled()&&this.open(),A(b)})),e.on("mousedown",this.bind(function(){this.search.focus()})),b.on("focus",this.bind(function(a){A(a)})),this.focusser.on("focus",this.bind(function(){this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.container.addClass("select2-container-active")})).on("blur",this.bind(function(){this.opened()||(this.container.removeClass("select2-container-active"),this.opts.element.trigger(a.Event("select2-blur")))})),this.search.on("focus",this.bind(function(){this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.container.addClass("select2-container-active")})),this.initContainerWidth(),this.opts.element.addClass("select2-offscreen"),this.setPlaceholder()},clear:function(b){var c=this.selection.data("select2-data");if(c){var d=a.Event("select2-clearing");if(this.opts.element.trigger(d),d.isDefaultPrevented())return;var e=this.getPlaceholderOption();this.opts.element.val(e?e.val():""),this.selection.find(".select2-chosen").empty(),this.selection.removeData("select2-data"),this.setPlaceholder(),b!==!1&&(this.opts.element.trigger({type:"select2-removed",val:this.id(c),choice:c}),this.triggerChange({removed:c}))}},initSelection:function(){if(this.isPlaceholderOptionSelected())this.updateSelection(null),this.close(),this.setPlaceholder();else{var c=this;this.opts.initSelection.call(null,this.opts.element,function(a){a!==b&&null!==a&&(c.updateSelection(a),c.close(),c.setPlaceholder())})}},isPlaceholderOptionSelected:function(){var a;return this.getPlaceholder()?(a=this.getPlaceholderOption())!==b&&a.is(":selected")||""===this.opts.element.val()||this.opts.element.val()===b||null===this.opts.element.val():!1},prepareOpts:function(){var b=this.parent.prepareOpts.apply(this,arguments),c=this;return"select"===b.element.get(0).tagName.toLowerCase()?b.initSelection=function(a,b){var d=a.find(":selected");b(c.optionToData(d))}:"data"in b&&(b.initSelection=b.initSelection||function(c,d){var e=c.val(),f=null;b.query({matcher:function(a,c,d){var g=q(e,b.id(d));return g&&(f=d),g},callback:a.isFunction(d)?function(){d(f)}:a.noop})}),b},getPlaceholder:function(){return this.select&&this.getPlaceholderOption()===b?b:this.parent.getPlaceholder.apply(this,arguments)},setPlaceholder:function(){var a=this.getPlaceholder();if(this.isPlaceholderOptionSelected()&&a!==b){if(this.select&&this.getPlaceholderOption()===b)return;this.selection.find(".select2-chosen").html(this.opts.escapeMarkup(a)),this.selection.addClass("select2-default"),this.container.removeClass("select2-allowclear")}},postprocessResults:function(a,b,c){var d=0,e=this;if(this.findHighlightableChoices().each2(function(a,b){return q(e.id(b.data("select2-data")),e.opts.element.val())?(d=a,!1):void 0}),c!==!1&&(b===!0&&d>=0?this.highlight(d):this.highlight(0)),b===!0){var g=this.opts.minimumResultsForSearch;g>=0&&this.showSearch(L(a.results)>=g)}},showSearch:function(b){this.showSearchInput!==b&&(this.showSearchInput=b,this.dropdown.find(".select2-search").toggleClass("select2-search-hidden",!b),this.dropdown.find(".select2-search").toggleClass("select2-offscreen",!b),a(this.dropdown,this.container).toggleClass("select2-with-searchbox",b))},onSelect:function(a,b){if(this.triggerSelect(a)){var c=this.opts.element.val(),d=this.data();this.opts.element.val(this.id(a)),this.updateSelection(a),this.opts.element.trigger({type:"select2-selected",val:this.id(a),choice:a}),this.nextSearchTerm=this.opts.nextSearchTerm(a,this.search.val()),this.close(),b&&b.noFocus||this.focusser.focus(),q(c,this.id(a))||this.triggerChange({added:a,removed:d})}},updateSelection:function(a){var d,e,c=this.selection.find(".select2-chosen");this.selection.data("select2-data",a),c.empty(),null!==a&&(d=this.opts.formatSelection(a,c,this.opts.escapeMarkup)),d!==b&&c.append(d),e=this.opts.formatSelectionCssClass(a,c),e!==b&&c.addClass(e),this.selection.removeClass("select2-default"),this.opts.allowClear&&this.getPlaceholder()!==b&&this.container.addClass("select2-allowclear")},val:function(){var a,c=!1,d=null,e=this,f=this.data();if(0===arguments.length)return this.opts.element.val();if(a=arguments[0],arguments.length>1&&(c=arguments[1]),this.select)this.select.val(a).find(":selected").each2(function(a,b){return d=e.optionToData(b),!1}),this.updateSelection(d),this.setPlaceholder(),c&&this.triggerChange({added:d,removed:f});else{if(!a&&0!==a)return this.clear(c),void 0;if(this.opts.initSelection===b)throw new Error("cannot call val() if initSelection() is not defined");this.opts.element.val(a),this.opts.initSelection(this.opts.element,function(a){e.opts.element.val(a?e.id(a):""),e.updateSelection(a),e.setPlaceholder(),c&&e.triggerChange({added:a,removed:f})})}},clearSearch:function(){this.search.val(""),this.focusser.val("")},data:function(a){var c,d=!1;return 0===arguments.length?(c=this.selection.data("select2-data"),c==b&&(c=null),c):(arguments.length>1&&(d=arguments[1]),a?(c=this.data(),this.opts.element.val(a?this.id(a):""),this.updateSelection(a),d&&this.triggerChange({added:a,removed:c})):this.clear(d),void 0)}}),f=N(d,{createContainer:function(){var b=a(document.createElement("div")).attr({"class":"select2-container select2-container-multi"}).html(["<ul class='select2-choices'>"," <li class='select2-search-field'>"," <input type='text' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' class='select2-input'>"," </li>","</ul>","<div class='select2-drop select2-drop-multi select2-display-none'>"," <ul class='select2-results'>"," </ul>","</div>"].join(""));return b},prepareOpts:function(){var b=this.parent.prepareOpts.apply(this,arguments),c=this;return"select"===b.element.get(0).tagName.toLowerCase()?b.initSelection=function(a,b){var d=[];a.find(":selected").each2(function(a,b){d.push(c.optionToData(b))}),b(d)}:"data"in b&&(b.initSelection=b.initSelection||function(c,d){var e=r(c.val(),b.separator),f=[];b.query({matcher:function(c,d,g){var h=a.grep(e,function(a){return q(a,b.id(g))}).length;return h&&f.push(g),h},callback:a.isFunction(d)?function(){for(var a=[],c=0;c<e.length;c++)for(var g=e[c],h=0;h<f.length;h++){var i=f[h];if(q(g,b.id(i))){a.push(i),f.splice(h,1);break}}d(a)}:a.noop})}),b},selectChoice:function(a){var b=this.container.find(".select2-search-choice-focus");b.length&&a&&a[0]==b[0]||(b.length&&this.opts.element.trigger("choice-deselected",b),b.removeClass("select2-search-choice-focus"),a&&a.length&&(this.close(),a.addClass("select2-search-choice-focus"),this.opts.element.trigger("choice-selected",a)))},destroy:function(){a("label[for='"+this.search.attr("id")+"']").attr("for",this.opts.element.attr("id")),this.parent.destroy.apply(this,arguments)},initContainer:function(){var d,b=".select2-choices";this.searchContainer=this.container.find(".select2-search-field"),this.selection=d=this.container.find(b);var e=this;this.selection.on("click",".select2-search-choice:not(.select2-locked)",function(){e.search[0].focus(),e.selectChoice(a(this))}),this.search.attr("id","s2id_autogen"+g()),a("label[for='"+this.opts.element.attr("id")+"']").attr("for",this.search.attr("id")),this.search.on("input paste",this.bind(function(){this.isInterfaceEnabled()&&(this.opened()||this.open())})),this.search.attr("tabindex",this.elementTabIndex),this.keydowns=0,this.search.on("keydown",this.bind(function(a){if(this.isInterfaceEnabled()){++this.keydowns;var b=d.find(".select2-search-choice-focus"),e=b.prev(".select2-search-choice:not(.select2-locked)"),f=b.next(".select2-search-choice:not(.select2-locked)"),g=z(this.search);if(b.length&&(a.which==c.LEFT||a.which==c.RIGHT||a.which==c.BACKSPACE||a.which==c.DELETE||a.which==c.ENTER)){var h=b;return a.which==c.LEFT&&e.length?h=e:a.which==c.RIGHT?h=f.length?f:null:a.which===c.BACKSPACE?(this.unselect(b.first()),this.search.width(10),h=e.length?e:f):a.which==c.DELETE?(this.unselect(b.first()),this.search.width(10),h=f.length?f:null):a.which==c.ENTER&&(h=null),this.selectChoice(h),A(a),h&&h.length||this.open(),void 0}if((a.which===c.BACKSPACE&&1==this.keydowns||a.which==c.LEFT)&&0==g.offset&&!g.length)return this.selectChoice(d.find(".select2-search-choice:not(.select2-locked)").last()),A(a),void 0;if(this.selectChoice(null),this.opened())switch(a.which){case c.UP:case c.DOWN:return this.moveHighlight(a.which===c.UP?-1:1),A(a),void 0;case c.ENTER:return this.selectHighlighted(),A(a),void 0;case c.TAB:return this.selectHighlighted({noFocus:!0}),this.close(),void 0;case c.ESC:return this.cancel(a),A(a),void 0}if(a.which!==c.TAB&&!c.isControl(a)&&!c.isFunctionKey(a)&&a.which!==c.BACKSPACE&&a.which!==c.ESC){if(a.which===c.ENTER){if(this.opts.openOnEnter===!1)return;if(a.altKey||a.ctrlKey||a.shiftKey||a.metaKey)return}this.open(),(a.which===c.PAGE_UP||a.which===c.PAGE_DOWN)&&A(a),a.which===c.ENTER&&A(a)}}})),this.search.on("keyup",this.bind(function(){this.keydowns=0,this.resizeSearch()})),this.search.on("blur",this.bind(function(b){this.container.removeClass("select2-container-active"),this.search.removeClass("select2-focused"),this.selectChoice(null),this.opened()||this.clearSearch(),b.stopImmediatePropagation(),this.opts.element.trigger(a.Event("select2-blur"))})),this.container.on("click",b,this.bind(function(b){this.isInterfaceEnabled()&&(a(b.target).closest(".select2-search-choice").length>0||(this.selectChoice(null),this.clearPlaceholder(),this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.open(),this.focusSearch(),b.preventDefault()))})),this.container.on("focus",b,this.bind(function(){this.isInterfaceEnabled()&&(this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"),this.clearPlaceholder())})),this.initContainerWidth(),this.opts.element.addClass("select2-offscreen"),this.clearSearch()},enableInterface:function(){this.parent.enableInterface.apply(this,arguments)&&this.search.prop("disabled",!this.isInterfaceEnabled())},initSelection:function(){if(""===this.opts.element.val()&&""===this.opts.element.text()&&(this.updateSelection([]),this.close(),this.clearSearch()),this.select||""!==this.opts.element.val()){var c=this;this.opts.initSelection.call(null,this.opts.element,function(a){a!==b&&null!==a&&(c.updateSelection(a),c.close(),c.clearSearch())})}},clearSearch:function(){var a=this.getPlaceholder(),c=this.getMaxSearchWidth();a!==b&&0===this.getVal().length&&this.search.hasClass("select2-focused")===!1?(this.search.val(a).addClass("select2-default"),this.search.width(c>0?c:this.container.css("width"))):this.search.val("").width(10)},clearPlaceholder:function(){this.search.hasClass("select2-default")&&this.search.val("").removeClass("select2-default")},opening:function(){this.clearPlaceholder(),this.resizeSearch(),this.parent.opening.apply(this,arguments),this.focusSearch(),this.updateResults(!0),this.search.focus(),this.opts.element.trigger(a.Event("select2-open"))},close:function(){this.opened()&&this.parent.close.apply(this,arguments)},focus:function(){this.close(),this.search.focus()},isFocused:function(){return this.search.hasClass("select2-focused")},updateSelection:function(b){var c=[],d=[],e=this;a(b).each(function(){o(e.id(this),c)<0&&(c.push(e.id(this)),d.push(this))}),b=d,this.selection.find(".select2-search-choice").remove(),a(b).each(function(){e.addSelectedChoice(this)}),e.postprocessResults()},tokenize:function(){var a=this.search.val();a=this.opts.tokenizer.call(this,a,this.data(),this.bind(this.onSelect),this.opts),null!=a&&a!=b&&(this.search.val(a),a.length>0&&this.open())},onSelect:function(a,b){this.triggerSelect(a)&&(this.addSelectedChoice(a),this.opts.element.trigger({type:"selected",val:this.id(a),choice:a}),(this.select||!this.opts.closeOnSelect)&&this.postprocessResults(a,!1,this.opts.closeOnSelect===!0),this.opts.closeOnSelect?(this.close(),this.search.width(10)):this.countSelectableResults()>0?(this.search.width(10),this.resizeSearch(),this.getMaximumSelectionSize()>0&&this.val().length>=this.getMaximumSelectionSize()&&this.updateResults(!0),this.positionDropdown()):(this.close(),this.search.width(10)),this.triggerChange({added:a}),b&&b.noFocus||this.focusSearch())},cancel:function(){this.close(),this.focusSearch()},addSelectedChoice:function(c){var j,k,d=!c.locked,e=a("<li class='select2-search-choice'> <div></div> <a href='#' onclick='return false;' class='select2-search-choice-close' tabindex='-1'></a></li>"),f=a("<li class='select2-search-choice select2-locked'><div></div></li>"),g=d?e:f,h=this.id(c),i=this.getVal();j=this.opts.formatSelection(c,g.find("div"),this.opts.escapeMarkup),j!=b&&g.find("div").replaceWith("<div>"+j+"</div>"),k=this.opts.formatSelectionCssClass(c,g.find("div")),k!=b&&g.addClass(k),d&&g.find(".select2-search-choice-close").on("mousedown",A).on("click dblclick",this.bind(function(b){this.isInterfaceEnabled()&&(a(b.target).closest(".select2-search-choice").fadeOut("fast",this.bind(function(){this.unselect(a(b.target)),this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus"),this.close(),this.focusSearch()})).dequeue(),A(b))})).on("focus",this.bind(function(){this.isInterfaceEnabled()&&(this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"))})),g.data("select2-data",c),g.insertBefore(this.searchContainer),i.push(h),this.setVal(i)},unselect:function(a){var c,d,b=this.getVal();if(a=a.closest(".select2-search-choice"),0===a.length)throw"Invalid argument: "+a+". Must be .select2-search-choice";if(c=a.data("select2-data")){for(;(d=o(this.id(c),b))>=0;)b.splice(d,1),this.setVal(b),this.select&&this.postprocessResults();a.remove(),this.opts.element.trigger({type:"removed",val:this.id(c),choice:c}),this.triggerChange({removed:c})}},postprocessResults:function(a,b,c){var d=this.getVal(),e=this.results.find(".select2-result"),f=this.results.find(".select2-result-with-children"),g=this;e.each2(function(a,b){var c=g.id(b.data("select2-data"));o(c,d)>=0&&(b.addClass("select2-selected"),b.find(".select2-result-selectable").addClass("select2-selected"))}),f.each2(function(a,b){b.is(".select2-result-selectable")||0!==b.find(".select2-result-selectable:not(.select2-selected)").length||b.addClass("select2-selected")}),-1==this.highlight()&&c!==!1&&g.highlight(0),!this.opts.createSearchChoice&&!e.filter(".select2-result:not(.select2-selected)").length>0&&(!a||a&&!a.more&&0===this.results.find(".select2-no-results").length)&&J(g.opts.formatNoMatches,"formatNoMatches")&&this.results.append("<li class='select2-no-results'>"+g.opts.formatNoMatches(g.search.val())+"</li>")},getMaxSearchWidth:function(){return this.selection.width()-s(this.search)},resizeSearch:function(){var a,b,c,d,e,f=s(this.search);a=C(this.search)+10,b=this.search.offset().left,c=this.selection.width(),d=this.selection.offset().left,e=c-(b-d)-f,a>e&&(e=c-f),40>e&&(e=c-f),0>=e&&(e=a),this.search.width(Math.floor(e))},getVal:function(){var a;return this.select?(a=this.select.val(),null===a?[]:a):(a=this.opts.element.val(),r(a,this.opts.separator))},setVal:function(b){var c;this.select?this.select.val(b):(c=[],a(b).each(function(){o(this,c)<0&&c.push(this)}),this.opts.element.val(0===c.length?"":c.join(this.opts.separator)))},buildChangeDetails:function(a,b){for(var b=b.slice(0),a=a.slice(0),c=0;c<b.length;c++)for(var d=0;d<a.length;d++)q(this.opts.id(b[c]),this.opts.id(a[d]))&&(b.splice(c,1),c--,a.splice(d,1),d--);return{added:b,removed:a}},val:function(c,d){var e,f=this;if(0===arguments.length)return this.getVal();if(e=this.data(),e.length||(e=[]),!c&&0!==c)return this.opts.element.val(""),this.updateSelection([]),this.clearSearch(),d&&this.triggerChange({added:this.data(),removed:e}),void 0;if(this.setVal(c),this.select)this.opts.initSelection(this.select,this.bind(this.updateSelection)),d&&this.triggerChange(this.buildChangeDetails(e,this.data()));else{if(this.opts.initSelection===b)throw new Error("val() cannot be called if initSelection() is not defined");this.opts.initSelection(this.opts.element,function(b){var c=a.map(b,f.id);f.setVal(c),f.updateSelection(b),f.clearSearch(),d&&f.triggerChange(f.buildChangeDetails(e,this.data()))})}this.clearSearch()},onSortStart:function(){if(this.select)throw new Error("Sorting of elements is not supported when attached to <select>. Attach to <input type='hidden'/> instead.");this.search.width(0),this.searchContainer.hide()},onSortEnd:function(){var b=[],c=this;this.searchContainer.show(),this.searchContainer.appendTo(this.searchContainer.parent()),this.resizeSearch(),this.selection.find(".select2-search-choice").each(function(){b.push(c.opts.id(a(this).data("select2-data")))}),this.setVal(b),this.triggerChange()},data:function(b,c){var e,f,d=this;return 0===arguments.length?this.selection.find(".select2-search-choice").map(function(){return a(this).data("select2-data")}).get():(f=this.data(),b||(b=[]),e=a.map(b,function(a){return d.opts.id(a)}),this.setVal(e),this.updateSelection(b),this.clearSearch(),c&&this.triggerChange(this.buildChangeDetails(f,this.data())),void 0)}}),a.fn.select2=function(){var d,g,h,i,j,c=Array.prototype.slice.call(arguments,0),k=["val","destroy","opened","open","close","focus","isFocused","container","dropdown","onSortStart","onSortEnd","enable","disable","readonly","positionDropdown","data","search"],l=["opened","isFocused","container","dropdown"],m=["val","data"],n={search:"externalSearch"};return this.each(function(){if(0===c.length||"object"==typeof c[0])d=0===c.length?{}:a.extend({},c[0]),d.element=a(this),"select"===d.element.get(0).tagName.toLowerCase()?j=d.element.prop("multiple"):(j=d.multiple||!1,"tags"in d&&(d.multiple=j=!0)),g=j?new f:new e,g.init(d);else{if("string"!=typeof c[0])throw"Invalid arguments to select2 plugin: "+c;if(o(c[0],k)<0)throw"Unknown method: "+c[0];if(i=b,g=a(this).data("select2"),g===b)return;if(h=c[0],"container"===h?i=g.container:"dropdown"===h?i=g.dropdown:(n[h]&&(h=n[h]),i=g[h].apply(g,c.slice(1))),o(c[0],l)>=0||o(c[0],m)&&1==c.length)return!1}}),i===b?this:i},a.fn.select2.defaults={width:"copy",loadMorePadding:0,closeOnSelect:!0,openOnEnter:!0,containerCss:{},dropdownCss:{},containerCssClass:"",dropdownCssClass:"",formatResult:function(a,b,c,d){var e=[];return E(a.text,c.term,e,d),e.join("")},formatSelection:function(a,c,d){return a?d(a.text):b},sortResults:function(a){return a},formatResultCssClass:function(){return b},formatSelectionCssClass:function(){return b},formatNoMatches:function(){return"No matches found"},formatInputTooShort:function(a,b){var c=b-a.length;return"Please enter "+c+" more character"+(1==c?"":"s")},formatInputTooLong:function(a,b){var c=a.length-b;return"Please delete "+c+" character"+(1==c?"":"s")},formatSelectionTooBig:function(a){return"You can only select "+a+" item"+(1==a?"":"s")},formatLoadMore:function(){return"Loading more results..."},formatSearching:function(){return"Searching..."},minimumResultsForSearch:0,minimumInputLength:0,maximumInputLength:null,maximumSelectionSize:0,id:function(a){return a.id},matcher:function(a,b){return n(""+b).toUpperCase().indexOf(n(""+a).toUpperCase())>=0},separator:",",tokenSeparators:[],tokenizer:M,escapeMarkup:F,blurOnChange:!1,selectOnBlur:!1,adaptContainerCssClass:function(a){return a},adaptDropdownCssClass:function(){return null},nextSearchTerm:function(){return b}},a.fn.select2.ajaxDefaults={transport:a.ajax,params:{type:"GET",cache:!1,dataType:"json"}},window.Select2={query:{ajax:G,local:H,tags:I},util:{debounce:v,markMatch:E,escapeMarkup:F,stripDiacritics:n},"class":{"abstract":d,single:e,multi:f}}}}(jQuery); - -(function($){ - switch($.cookie("lang")){ - case "zh-CN": - // Select2 Chinese translation - (function(c){c.extend(c.fn.select2.defaults,{formatNoMatches:function(){return"\u6ca1\u6709\u627e\u5230\u5339\u914d\u9879"},formatInputTooShort:function(a,b){return"\u8bf7\u518d\u8f93\u5165"+(b-a.length)+"\u4e2a\u5b57\u7b26"},formatInputTooLong:function(a,b){return"\u8bf7\u5220\u6389"+(a.length-b)+"\u4e2a\u5b57\u7b26"},formatSelectionTooBig:function(a){return"\u4f60\u53ea\u80fd\u9009\u62e9\u6700\u591a"+a+"\u9879"},formatLoadMore:function(a){return"\u52a0\u8f7d\u7ed3\u679c\u4e2d..."},formatSearching:function(){return"\u641c\u7d22\u4e2d..."}})})(jQuery); - break - case "zh-TW": - // Select2 Traditional Chinese translation - (function(c){c.extend(c.fn.select2.defaults,{formatNoMatches:function(){return"\u6c92\u6709\u627e\u5230\u76f8\u7b26\u7684\u9805\u76ee"},formatInputTooShort:function(a,b){return"\u8acb\u518d\u8f38\u5165"+(b-a.length)+"\u500b\u5b57\u5143"},formatInputTooLong:function(a,b){return"\u8acb\u522a\u6389"+(a.length-b)+"\u500b\u5b57\u5143"},formatSelectionTooBig:function(a){return"\u4f60\u53ea\u80fd\u9078\u64c7\u6700\u591a"+a+"\u9805"},formatLoadMore:function(a){return"\u8f09\u5165\u4e2d..."},formatSearching:function(){return"\u641c\u5c0b\u4e2d..."}})})(jQuery); - } -})(jQuery); - -/*! - Autosize v1.17.8 - 2013-09-07 - Automatically adjust textarea height based on user input. - (c) 2013 Jack Moore - http://www.jacklmoore.com/autosize - license: http://www.opensource.org/licenses/mit-license.php -*/ -(function(e){"function"==typeof define&&define.amd?define(["jquery"],e):e(window.jQuery||window.$)})(function(e){var t,o={className:"autosizejs",append:"",callback:!1,resizeDelay:10},i='<textarea tabindex="-1" style="position:absolute; top:-999px; left:0; right:auto; bottom:auto; border:0; padding: 0; -moz-box-sizing:content-box; -webkit-box-sizing:content-box; box-sizing:content-box; word-wrap:break-word; height:0 !important; min-height:0 !important; overflow:hidden; transition:none; -webkit-transition:none; -moz-transition:none;"/>',n=["fontFamily","fontSize","fontWeight","fontStyle","letterSpacing","textTransform","wordSpacing","textIndent"],s=e(i).data("autosize",!0)[0];s.style.lineHeight="99px","99px"===e(s).css("lineHeight")&&n.push("lineHeight"),s.style.lineHeight="",e.fn.autosize=function(i){return this.length?(i=e.extend({},o,i||{}),s.parentNode!==document.body&&e(document.body).append(s),this.each(function(){function o(){var t,o;"getComputedStyle"in window?(t=window.getComputedStyle(u),o=u.getBoundingClientRect().width,e.each(["paddingLeft","paddingRight","borderLeftWidth","borderRightWidth"],function(e,i){o-=parseInt(t[i],10)}),s.style.width=o+"px"):s.style.width=Math.max(p.width(),0)+"px"}function a(){var a={};if(t=u,s.className=i.className,d=parseInt(p.css("maxHeight"),10),e.each(n,function(e,t){a[t]=p.css(t)}),e(s).css(a),o(),window.chrome){var r=u.style.width;u.style.width="0px",u.offsetWidth,u.style.width=r}}function r(){var e,n;t!==u?a():o(),s.value=u.value+i.append,s.style.overflowY=u.style.overflowY,n=parseInt(u.style.height,10),s.scrollTop=0,s.scrollTop=9e4,e=s.scrollTop,d&&e>d?(u.style.overflowY="scroll",e=d):(u.style.overflowY="hidden",c>e&&(e=c)),e+=f,n!==e&&(u.style.height=e+"px",w&&i.callback.call(u,u))}function l(){clearTimeout(h),h=setTimeout(function(){var e=p.width();e!==g&&(g=e,r())},parseInt(i.resizeDelay,10))}var d,c,h,u=this,p=e(u),f=0,w=e.isFunction(i.callback),z={height:u.style.height,overflow:u.style.overflow,overflowY:u.style.overflowY,wordWrap:u.style.wordWrap,resize:u.style.resize},g=p.width();p.data("autosize")||(p.data("autosize",!0),("border-box"===p.css("box-sizing")||"border-box"===p.css("-moz-box-sizing")||"border-box"===p.css("-webkit-box-sizing"))&&(f=p.outerHeight()-p.height()),c=Math.max(parseInt(p.css("minHeight"),10)-f||0,p.height()),p.css({overflow:"hidden",overflowY:"hidden",wordWrap:"break-word",resize:"none"===p.css("resize")||"vertical"===p.css("resize")?"none":"horizontal"}),"onpropertychange"in u?"oninput"in u?p.on("input.autosize keyup.autosize",r):p.on("propertychange.autosize",function(){"value"===event.propertyName&&r()}):p.on("input.autosize",r),i.resizeDelay!==!1&&e(window).on("resize.autosize",l),p.on("autosize.resize",r),p.on("autosize.resizeIncludeStyle",function(){t=null,r()}),p.on("autosize.destroy",function(){t=null,clearTimeout(h),e(window).off("resize",l),p.off("autosize").off(".autosize").css(z).removeData("autosize")}),r())})):this}}); - -/*! jquery-textcomplete - v0.1.0 - 2013-10-28 */ -!function(a){"use strict";var b=function(a){var b,d;return b=function(){d=!1},function(){var e;d||(d=!0,e=c(arguments),e.unshift(b),a.apply(this,e))}},c=function(a){var b;return b=Array.prototype.slice.call(a)},d=function(a,b){return a.bind?a.bind(b):function(){a.apply(b,arguments)}},e=function(){var b;return b=a("<div></div>").css(["color"]).color,"undefined"!=typeof b?function(a,b){return a.css(b)}:function(b,c){var d;return d={},a.each(c,function(a,c){d[c]=b.css(c)}),d}}(),f=function(a){return a},g=function(a){var b={};return function(c,d){b[c]?d(b[c]):a.call(this,c,function(a){b[c]=(b[c]||[]).concat(a),d.apply(null,arguments)})}},h=function(a,b){var c,d;if(a.indexOf)return-1!=a.indexOf(b);for(c=0,d=a.length;d>c;c++)if(a[c]===b)return!0;return!1},i=function(){function c(b,c){var e,f,g;f=i.clone(),this.el=b.get(0),this.$el=b,e=k(this.$el),g=this.el===document.activeElement,this.$el.wrap(e).before(f),g&&this.el.focus(),this.listView=new j(f,this),this.strategies=c,this.$el.on("keyup",d(this.onKeyup,this)),this.$el.on("keydown",d(this.listView.onKeydown,this.listView)),a(document).on("click",d(function(a){a.originalEvent&&!a.originalEvent.keepTextCompleteDropdown&&this.listView.deactivate()},this))}var f,g,h,i;f={wrapper:'<div class="textcomplete-wrapper"></div>',list:'<ul class="dropdown-menu"></ul>'},g={wrapper:{position:"relative"},list:{position:"absolute",top:0,left:0,zIndex:"100",display:"none"}},h=a(f.wrapper).css(g.wrapper),i=a(f.list).css(g.list),a.extend(c.prototype,{renderList:function(a){this.clearAtNext&&(this.listView.clear(),this.clearAtNext=!1),a.length?(this.listView.shown||(this.listView.setPosition(this.getCaretPosition()).clear().activate(),this.listView.strategy=this.strategy),a=a.slice(0,this.strategy.maxCount),this.listView.render(a)):this.listView.shown&&this.listView.deactivate()},searchCallbackFactory:function(a){var b=this;return function(c,d){b.renderList(c),d||(a(),b.clearAtNext=!0)}},onKeyup:function(){var a,b;if(a=this.extractSearchQuery(this.getTextFromHeadToCaret()),a.length){if(b=a[1],this.term===b)return;this.term=b,this.search(a)}else this.term=null,this.listView.deactivate()},onSelect:function(b){var c,d,e;c=this.getTextFromHeadToCaret(),d=this.el.value.substring(this.el.selectionEnd),e=this.strategy.replace(b),a.isArray(e)&&(d=e[1]+d,e=e[0]),c=c.replace(this.strategy.match,e),this.$el.val(c+d),this.el.focus(),this.el.selectionStart=this.el.selectionEnd=c.length},getCaretPosition:function(){if(0!==this.el.selectionEnd){var b,c,d,f,g;return b=["border-width","font-family","font-size","font-style","font-variant","font-weight","height","letter-spacing","word-spacing","line-height","text-decoration","width","padding-top","padding-right","padding-bottom","padding-left","margin-top","margin-right","margin-bottom","margin-left"],c=a.extend({position:"absolute",overflow:"auto","white-space":"pre-wrap",top:0,left:-9999},e(this.$el,b)),d=a("<div></div>").css(c).text(this.getTextFromHeadToCaret()),f=a("<span></span>").text(" ").appendTo(d),this.$el.before(d),g=f.position(),g.top+=f.height()-this.$el.scrollTop(),d.remove(),g}},getTextFromHeadToCaret:function(){var a,b,c;return b=this.el.selectionEnd,"number"==typeof b?a=this.el.value.substring(0,b):document.selection&&(c=this.el.createTextRange(),c.moveStart("character",0),c.moveEnd("textedit"),a=c.text),a},extractSearchQuery:function(a){var b,c,d,e;for(b=0,c=this.strategies.length;c>b;b++)if(d=this.strategies[b],e=a.match(d.match))return[d,e[d.index]];return[]},search:b(function(a,b){var c;this.strategy=b[0],c=b[1],this.strategy.search(c,this.searchCallbackFactory(a))})});var k=function(a){return h.clone().css("display",a.css("display"))};return c}(),j=function(){function b(a,b){this.$el=a,this.index=0,this.completer=b,this.$el.on("click","li.textcomplete-item",d(this.onClick,this))}return a.extend(b.prototype,{shown:!1,render:function(a){var b,c,d,e,f;for(b="",c=0,d=a.length;d>c&&(f=a[c],h(this.data,f)||(e=this.data.length,this.data.push(f),b+='<li class="textcomplete-item" data-index="'+e+'"><a>',b+=this.strategy.template(f),b+="</a></li>",this.data.length!==this.strategy.maxCount));c++);this.$el.append(b),this.data.length?this.activateIndexedItem():this.deactivate()},clear:function(){return this.data=[],this.$el.html(""),this.index=0,this},activateIndexedItem:function(){this.$el.find(".active").removeClass("active"),this.getActiveItem().addClass("active")},getActiveItem:function(){return a(this.$el.children().get(this.index))},activate:function(){return this.shown||(this.$el.show(),this.shown=!0),this},deactivate:function(){return this.shown&&(this.$el.hide(),this.shown=!1,this.data=this.index=null),this},setPosition:function(a){return this.$el.css(a),this},select:function(a){this.completer.onSelect(this.data[a]),this.deactivate()},onKeydown:function(a){this.shown&&(27===a.keyCode?this.deactivate():38===a.keyCode?(a.preventDefault(),0===this.index?this.index=this.data.length-1:this.index-=1,this.activateIndexedItem()):40===a.keyCode?(a.preventDefault(),this.index===this.data.length-1?this.index=0:this.index+=1,this.activateIndexedItem()):(13===a.keyCode||9===a.keyCode)&&(a.preventDefault(),this.select(parseInt(this.getActiveItem().data("index")))))},onClick:function(b){var c=a(b.target);b.originalEvent.keepTextCompleteDropdown=!0,c.hasClass("textcomplete-item")||(c=c.parents("li.textcomplete-item")),this.select(parseInt(c.data("index")))}}),b}();a.fn.textcomplete=function(a){var b,c,d;for(b=0,c=a.length;c>b;b++)d=a[b],d.template||(d.template=f),null==d.index&&(d.index=2),d.cache&&(d.search=g(d.search)),d.maxCount||(d.maxCount=10);return new i(this,a),this}}(window.jQuery||window.Zepto); - -/*! jquery-overlay - v0.0.2 - 2013-10-02 */ -!function(a){"use strict";var b=function(a,b){return a.bind?a.bind(b):function(){a.apply(b,arguments)}},c=function(){var b;return b=a("<div></div>").css(["color"]).color,"undefined"!=typeof b?function(a,b){return a.css(b)}:function(b,c){var d;return d={},a.each(c,function(a,c){d[c]=b.css(c)}),d}}(),d={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"},e=/[&<>"'\/]/g,f=function(a){return a.replace(e,function(a){return d[a]})},g=function(){function d(d,f){var j,k;k=d.css("position"),"static"===k&&(k="relative"),j=a(e.wrapper).css(a.extend({},g.wrapper,c(d,h),{position:k})),this.textareaTop=parseInt(d.css("border-top-width")),this.$el=a(e.overlay).css(a.extend({},g.overlay,c(d,i),{top:this.textareaTop,right:parseInt(d.css("border-right-width")),bottom:parseInt(d.css("border-bottom-width")),left:parseInt(d.css("border-left-width"))})),this.$textarea=d.css(g.textarea),this.$textarea.wrap(j).before(this.$el),this.$textarea.origVal=d.val,this.$textarea.val=b(this.val,this),this.$textarea.on("input",b(this.onInput,this)),this.$textarea.on("change",b(this.onInput,this)),this.$textarea.on("scroll",b(this.resizeOverlay,this)),this.$textarea.on("resize",b(this.resizeOverlay,this)),this.strategies=a.isArray(f)?f:[f],this.renderTextOnOverlay()}var e,g,h,i;return e={wrapper:'<div class="textoverlay-wrapper"></div>',overlay:'<div class="textoverlay"></div>'},g={wrapper:{margin:0,padding:0,overflow:"hidden"},overlay:{position:"absolute",color:"transparent","white-space":"pre-wrap","word-wrap":"break-word",overflow:"hidden"},textarea:{background:"transparent",position:"relative",outline:0}},h=["display"],i=["margin-top","margin-right","margin-bottom","margin-left","padding-top","padding-right","padding-bottom","padding-left","font-family","font-weight","font-size","background-color"],a.extend(d.prototype,{val:function(a){return null==a?this.$textarea.origVal():this.setVal(a)},setVal:function(a){return this.$textarea.origVal(a),this.renderTextOnOverlay()},onInput:function(){this.renderTextOnOverlay()},renderTextOnOverlay:function(){var b,c,d,e,g,h;for(b=f(this.$textarea.val()),c=0,d=this.strategies.length;d>c;c++)e=this.strategies[c],g=e.match,a.isArray(g)&&(g=a.map(g,function(a){return a.replace(/(\(|\)|\|)/g,"$1")}),g=new RegExp("("+g.join("|")+")","g")),h="background-color:"+e.css["background-color"],b=b.replace(g,function(a){return'<span style="'+h+'">'+a+"</span>"});return this.$el.html(b),this},resizeOverlay:function(){this.$el.css({top:this.textareaTop-this.$textarea.scrollTop()})}}),d}();a.fn.overlay=function(a){return new g(this,a),this}}(window.jQuery); - -/* https://github.com/balupton/jquery-scrollto */ -(function(){var e,h;e=window.jQuery||require("jquery");e.propHooks.scrollTop=e.propHooks.scrollLeft={get:function(a,d){var b=null;if("HTML"===a.tagName||"BODY"===a.tagName)"scrollLeft"===d?b=window.scrollX:"scrollTop"===d&&(b=window.scrollY);null==b&&(b=a[d]);return b}};e.Tween.propHooks.scrollTop=e.Tween.propHooks.scrollLeft={get:function(a){return e.propHooks.scrollTop.get(a.elem,a.prop)},set:function(a){"HTML"===a.elem.tagName||"BODY"===a.elem.tagName?(a.options.bodyScrollLeft=a.options.bodyScrollLeft|| -window.scrollX,a.options.bodyScrollTop=a.options.bodyScrollTop||window.scrollY,"scrollLeft"===a.prop?a.options.bodyScrollLeft=Math.round(a.now):"scrollTop"===a.prop&&(a.options.bodyScrollTop=Math.round(a.now)),window.scrollTo(a.options.bodyScrollLeft,a.options.bodyScrollTop)):a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}};h={config:{duration:400,easing:"swing",callback:void 0,durationMode:"each",offsetTop:0,offsetLeft:0},configure:function(a){e.extend(h.config,a||{});return this},scroll:function(a, -d){var b,c,f,g,n,l,m,k,p;b=a.pop();c=b.$container;f=b.$target;c.prop("tagName");g=e("<span/>").css({position:"absolute",top:"0px",left:"0px"});n=c.css("position");c.css({position:"relative"});g.appendTo(c);b=g.offset().top;b=f.offset().top-b-parseInt(d.offsetTop,10);l=g.offset().left;m=f.offset().left-l-parseInt(d.offsetLeft,10);f=c.prop("scrollTop");l=c.prop("scrollLeft");g.remove();c.css({position:n});k={};p=function(b){0===a.length?"function"===typeof d.callback&&d.callback():h.scroll(a,d);return!0}; -d.onlyIfOutside&&(g=f+c.height(),n=l+c.width(),f<b&&b<g&&(b=f),l<m&&m<n&&(m=l));b!==f&&(k.scrollTop=b);m!==l&&(k.scrollLeft=m);c.prop("scrollHeight")===c.width()&&delete k.scrollTop;c.prop("scrollWidth")===c.width()&&delete k.scrollLeft;null!=k.scrollTop||null!=k.scrollLeft?c.animate(k,{duration:d.duration,easing:d.easing,complete:p}):p();return!0},fn:function(a){var d,b,c;d=[];var f=e(this);if(0===f.length)return this;a=e.extend({},h.config,a);b=f.parent();for(c=b.get(0);1===b.length&&c!==document.body&& -c!==document;){var g;g="visible"!==b.css("overflow-y")&&c.scrollHeight!==c.clientHeight;c="visible"!==b.css("overflow-x")&&c.scrollWidth!==c.clientWidth;if(g||c)d.push({$container:b,$target:f}),f=b;b=b.parent();c=b.get(0)}d.push({$container:e("html"),$target:f});"all"===a.durationMode&&(a.duration/=d.length);h.scroll(d,a);return this}};e.ScrollTo=e.ScrollTo||h;e.fn.ScrollTo=e.fn.ScrollTo||h.fn;return h}).call(this); - -// pretty print -!function(){var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; -(function(){function S(a){function d(e){var b=e.charCodeAt(0);if(b!==92)return b;var a=e.charAt(1);return(b=r[a])?b:"0"<=a&&a<="7"?parseInt(e.substring(1),8):a==="u"||a==="x"?parseInt(e.substring(2),16):e.charCodeAt(1)}function g(e){if(e<32)return(e<16?"\\x0":"\\x")+e.toString(16);e=String.fromCharCode(e);return e==="\\"||e==="-"||e==="]"||e==="^"?"\\"+e:e}function b(e){var b=e.substring(1,e.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),e=[],a= -b[0]==="^",c=["["];a&&c.push("^");for(var a=a?1:0,f=b.length;a<f;++a){var h=b[a];if(/\\[bdsw]/i.test(h))c.push(h);else{var h=d(h),l;a+2<f&&"-"===b[a+1]?(l=d(b[a+2]),a+=2):l=h;e.push([h,l]);l<65||h>122||(l<65||h>90||e.push([Math.max(65,h)|32,Math.min(l,90)|32]),l<97||h>122||e.push([Math.max(97,h)&-33,Math.min(l,122)&-33]))}}e.sort(function(e,a){return e[0]-a[0]||a[1]-e[1]});b=[];f=[];for(a=0;a<e.length;++a)h=e[a],h[0]<=f[1]+1?f[1]=Math.max(f[1],h[1]):b.push(f=h);for(a=0;a<b.length;++a)h=b[a],c.push(g(h[0])), -h[1]>h[0]&&(h[1]+1>h[0]&&c.push("-"),c.push(g(h[1])));c.push("]");return c.join("")}function s(e){for(var a=e.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),c=a.length,d=[],f=0,h=0;f<c;++f){var l=a[f];l==="("?++h:"\\"===l.charAt(0)&&(l=+l.substring(1))&&(l<=h?d[l]=-1:a[f]=g(l))}for(f=1;f<d.length;++f)-1===d[f]&&(d[f]=++x);for(h=f=0;f<c;++f)l=a[f],l==="("?(++h,d[h]||(a[f]="(?:")):"\\"===l.charAt(0)&&(l=+l.substring(1))&&l<=h&& -(a[f]="\\"+d[l]);for(f=0;f<c;++f)"^"===a[f]&&"^"!==a[f+1]&&(a[f]="");if(e.ignoreCase&&m)for(f=0;f<c;++f)l=a[f],e=l.charAt(0),l.length>=2&&e==="["?a[f]=b(l):e!=="\\"&&(a[f]=l.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return a.join("")}for(var x=0,m=!1,j=!1,k=0,c=a.length;k<c;++k){var i=a[k];if(i.ignoreCase)j=!0;else if(/[a-z]/i.test(i.source.replace(/\\u[\da-f]{4}|\\x[\da-f]{2}|\\[^UXux]/gi,""))){m=!0;j=!1;break}}for(var r={b:8,t:9,n:10,v:11, -f:12,r:13},n=[],k=0,c=a.length;k<c;++k){i=a[k];if(i.global||i.multiline)throw Error(""+i);n.push("(?:"+s(i)+")")}return RegExp(n.join("|"),j?"gi":"g")}function T(a,d){function g(a){var c=a.nodeType;if(c==1){if(!b.test(a.className)){for(c=a.firstChild;c;c=c.nextSibling)g(c);c=a.nodeName.toLowerCase();if("br"===c||"li"===c)s[j]="\n",m[j<<1]=x++,m[j++<<1|1]=a}}else if(c==3||c==4)c=a.nodeValue,c.length&&(c=d?c.replace(/\r\n?/g,"\n"):c.replace(/[\t\n\r ]+/g," "),s[j]=c,m[j<<1]=x,x+=c.length,m[j++<<1|1]= -a)}var b=/(?:^|\s)nocode(?:\s|$)/,s=[],x=0,m=[],j=0;g(a);return{a:s.join("").replace(/\n$/,""),d:m}}function H(a,d,g,b){d&&(a={a:d,e:a},g(a),b.push.apply(b,a.g))}function U(a){for(var d=void 0,g=a.firstChild;g;g=g.nextSibling)var b=g.nodeType,d=b===1?d?a:g:b===3?V.test(g.nodeValue)?a:d:d;return d===a?void 0:d}function C(a,d){function g(a){for(var j=a.e,k=[j,"pln"],c=0,i=a.a.match(s)||[],r={},n=0,e=i.length;n<e;++n){var z=i[n],w=r[z],t=void 0,f;if(typeof w==="string")f=!1;else{var h=b[z.charAt(0)]; -if(h)t=z.match(h[1]),w=h[0];else{for(f=0;f<x;++f)if(h=d[f],t=z.match(h[1])){w=h[0];break}t||(w="pln")}if((f=w.length>=5&&"lang-"===w.substring(0,5))&&!(t&&typeof t[1]==="string"))f=!1,w="src";f||(r[z]=w)}h=c;c+=z.length;if(f){f=t[1];var l=z.indexOf(f),B=l+f.length;t[2]&&(B=z.length-t[2].length,l=B-f.length);w=w.substring(5);H(j+h,z.substring(0,l),g,k);H(j+h+l,f,I(w,f),k);H(j+h+B,z.substring(B),g,k)}else k.push(j+h,w)}a.g=k}var b={},s;(function(){for(var g=a.concat(d),j=[],k={},c=0,i=g.length;c<i;++c){var r= -g[c],n=r[3];if(n)for(var e=n.length;--e>=0;)b[n.charAt(e)]=r;r=r[1];n=""+r;k.hasOwnProperty(n)||(j.push(r),k[n]=q)}j.push(/[\S\s]/);s=S(j)})();var x=d.length;return g}function v(a){var d=[],g=[];a.tripleQuotedStrings?d.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?d.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/, -q,"'\"`"]):d.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&g.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var b=a.hashComments;b&&(a.cStyleComments?(b>1?d.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):d.push(["com",/^#(?:(?:define|e(?:l|nd)if|else|error|ifn?def|include|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),g.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h(?:h|pp|\+\+)?|[a-z]\w*)>/,q])):d.push(["com", -/^#[^\n\r]*/,q,"#"]));a.cStyleComments&&(g.push(["com",/^\/\/[^\n\r]*/,q]),g.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));if(b=a.regexLiterals){var s=(b=b>1?"":"\n\r")?".":"[\\S\\s]";g.push(["lang-regex",RegExp("^(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<<?=?|>>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*("+("/(?=[^/*"+b+"])(?:[^/\\x5B\\x5C"+b+"]|\\x5C"+s+"|\\x5B(?:[^\\x5C\\x5D"+b+"]|\\x5C"+ -s+")*(?:\\x5D|$))+/")+")")])}(b=a.types)&&g.push(["typ",b]);b=(""+a.keywords).replace(/^ | $/g,"");b.length&&g.push(["kwd",RegExp("^(?:"+b.replace(/[\s,]+/g,"|")+")\\b"),q]);d.push(["pln",/^\s+/,q," \r\n\t\u00a0"]);b="^.[^\\s\\w.$@'\"`/\\\\]*";a.regexLiterals&&(b+="(?!s*/)");g.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/, -q],["pun",RegExp(b),q]);return C(d,g)}function J(a,d,g){function b(a){var c=a.nodeType;if(c==1&&!x.test(a.className))if("br"===a.nodeName)s(a),a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)b(a);else if((c==3||c==4)&&g){var d=a.nodeValue,i=d.match(m);if(i)c=d.substring(0,i.index),a.nodeValue=c,(d=d.substring(i.index+i[0].length))&&a.parentNode.insertBefore(j.createTextNode(d),a.nextSibling),s(a),c||a.parentNode.removeChild(a)}}function s(a){function b(a,c){var d= -c?a.cloneNode(!1):a,e=a.parentNode;if(e){var e=b(e,1),g=a.nextSibling;e.appendChild(d);for(var i=g;i;i=g)g=i.nextSibling,e.appendChild(i)}return d}for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),d;(d=a.parentNode)&&d.nodeType===1;)a=d;c.push(a)}for(var x=/(?:^|\s)nocode(?:\s|$)/,m=/\r\n?|\n/,j=a.ownerDocument,k=j.createElement("li");a.firstChild;)k.appendChild(a.firstChild);for(var c=[k],i=0;i<c.length;++i)b(c[i]);d===(d|0)&&c[0].setAttribute("value",d);var r=j.createElement("ol"); -r.className="linenums";for(var d=Math.max(0,d-1|0)||0,i=0,n=c.length;i<n;++i)k=c[i],k.setAttribute("rel", "L"+(i+d+1)),k.className="L"+(i+d+1),k.firstChild||k.appendChild(j.createTextNode("\u00a0")),r.appendChild(k);a.appendChild(r)}function p(a,d){for(var g=d.length;--g>=0;){var b=d[g];F.hasOwnProperty(b)?D.console&&console.warn("cannot override language handler %s",b):F[b]=a}}function I(a,d){if(!a||!F.hasOwnProperty(a))a=/^\s*</.test(d)?"default-markup":"default-code";return F[a]}function K(a){var d=a.h;try{var g=T(a.c,a.i),b=g.a; -a.a=b;a.d=g.d;a.e=0;I(d,b)(a);var s=/\bMSIE\s(\d+)/.exec(navigator.userAgent),s=s&&+s[1]<=8,d=/\n/g,x=a.a,m=x.length,g=0,j=a.d,k=j.length,b=0,c=a.g,i=c.length,r=0;c[i]=m;var n,e;for(e=n=0;e<i;)c[e]!==c[e+2]?(c[n++]=c[e++],c[n++]=c[e++]):e+=2;i=n;for(e=n=0;e<i;){for(var p=c[e],w=c[e+1],t=e+2;t+2<=i&&c[t+1]===w;)t+=2;c[n++]=p;c[n++]=w;e=t}c.length=n;var f=a.c,h;if(f)h=f.style.display,f.style.display="none";try{for(;b<k;){var l=j[b+2]||m,B=c[r+2]||m,t=Math.min(l,B),A=j[b+1],G;if(A.nodeType!==1&&(G=x.substring(g, -t))){s&&(G=G.replace(d,"\r"));A.nodeValue=G;var L=A.ownerDocument,o=L.createElement("span");o.className=c[r+1];var v=A.parentNode;v.replaceChild(o,A);o.appendChild(A);g<l&&(j[b+1]=A=L.createTextNode(x.substring(t,l)),v.insertBefore(A,o.nextSibling))}g=t;g>=l&&(b+=2);g>=B&&(r+=2)}}finally{if(f)f.style.display=h}}catch(u){D.console&&console.log(u&&u.stack||u)}}var D=window,y=["break,continue,do,else,for,if,return,while"],E=[[y,"auto,case,char,const,default,double,enum,extern,float,goto,inline,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], -"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],M=[E,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,delegate,dynamic_cast,explicit,export,friend,generic,late_check,mutable,namespace,nullptr,property,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],N=[E,"abstract,assert,boolean,byte,extends,final,finally,implements,import,instanceof,interface,null,native,package,strictfp,super,synchronized,throws,transient"], -O=[N,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,internal,into,is,let,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var,virtual,where"],E=[E,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],P=[y,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], -Q=[y,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],W=[y,"as,assert,const,copy,drop,enum,extern,fail,false,fn,impl,let,log,loop,match,mod,move,mut,priv,pub,pure,ref,self,static,struct,true,trait,type,unsafe,use"],y=[y,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],R=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)\b/, -V=/\S/,X=v({keywords:[M,O,E,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",P,Q,y],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),F={};p(X,["default-code"]);p(C([],[["pln",/^[^<?]+/],["dec",/^<!\w[^>]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-", -/^<xmp\b[^>]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);p(C([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/], -["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);p(C([],[["atv",/^[\S\s]+/]]),["uq.val"]);p(v({keywords:M,hashComments:!0,cStyleComments:!0,types:R}),["c","cc","cpp","cxx","cyc","m"]);p(v({keywords:"null,true,false"}),["json"]);p(v({keywords:O,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:R}), -["cs"]);p(v({keywords:N,cStyleComments:!0}),["java"]);p(v({keywords:y,hashComments:!0,multiLineStrings:!0}),["bash","bsh","csh","sh"]);p(v({keywords:P,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),["cv","py","python"]);p(v({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:2}),["perl","pl","pm"]);p(v({keywords:Q, -hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb","ruby"]);p(v({keywords:E,cStyleComments:!0,regexLiterals:!0}),["javascript","js"]);p(v({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,throw,true,try,unless,until,when,while,yes",hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);p(v({keywords:W,cStyleComments:!0,multilineStrings:!0}),["rc","rs","rust"]); -p(C([],[["str",/^[\S\s]+/]]),["regex"]);var Y=D.PR={createSimpleLexer:C,registerLangHandler:p,sourceDecorator:v,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit",PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ",prettyPrintOne:D.prettyPrintOne=function(a,d,g){var b=document.createElement("div");b.innerHTML="<pre>"+a+"</pre>";b=b.firstChild;g&&J(b,g,!0);K({h:d,j:g,c:b,i:1}); -return b.innerHTML},prettyPrint:D.prettyPrint=function(a,d){function g(){for(var b=D.PR_SHOULD_USE_CONTINUATION?c.now()+250:Infinity;i<p.length&&c.now()<b;i++){for(var d=p[i],j=h,k=d;k=k.previousSibling;){var m=k.nodeType,o=(m===7||m===8)&&k.nodeValue;if(o?!/^\??prettify\b/.test(o):m!==3||/\S/.test(k.nodeValue))break;if(o){j={};o.replace(/\b(\w+)=([\w%+\-.:]+)/g,function(a,b,c){j[b]=c});break}}k=d.className;if((j!==h||e.test(k))&&!v.test(k)){m=!1;for(o=d.parentNode;o;o=o.parentNode)if(f.test(o.tagName)&& -o.className&&e.test(o.className)){m=!0;break}if(!m){d.className+=" prettyprinted";m=j.lang;if(!m){var m=k.match(n),y;if(!m&&(y=U(d))&&t.test(y.tagName))m=y.className.match(n);m&&(m=m[1])}if(w.test(d.tagName))o=1;else var o=d.currentStyle,u=s.defaultView,o=(o=o?o.whiteSpace:u&&u.getComputedStyle?u.getComputedStyle(d,q).getPropertyValue("white-space"):0)&&"pre"===o.substring(0,3);u=j.linenums;if(!(u=u==="true"||+u))u=(u=k.match(/\blinenums\b(?::(\d+))?/))?u[1]&&u[1].length?+u[1]:!0:!1;u&&J(d,u,o);r= -{h:m,c:d,j:u,i:o};K(r)}}}i<p.length?setTimeout(g,250):"function"===typeof a&&a()}for(var b=d||document.body,s=b.ownerDocument||document,b=[b.getElementsByTagName("pre"),b.getElementsByTagName("code"),b.getElementsByTagName("xmp")],p=[],m=0;m<b.length;++m)for(var j=0,k=b[m].length;j<k;++j)p.push(b[m][j]);var b=q,c=Date;c.now||(c={now:function(){return+new Date}});var i=0,r,n=/\blang(?:uage)?-([\w.]+)(?!\S)/,e=/\bprettyprint\b/,v=/\bprettyprinted\b/,w=/pre|xmp/i,t=/^code$/i,f=/^(?:pre|code|xmp)$/i, -h={};g()}};typeof define==="function"&&define.amd&&define("google-code-prettify",[],function(){return Y})})();}() - -// lang-apollo.js -PR.registerLangHandler(PR.createSimpleLexer([["com",/^#[^\n\r]*/,null,"#"],["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"']],[["kwd",/^(?:ADS|AD|AUG|BZF|BZMF|CAE|CAF|CA|CCS|COM|CS|DAS|DCA|DCOM|DCS|DDOUBL|DIM|DOUBLE|DTCB|DTCF|DV|DXCH|EDRUPT|EXTEND|INCR|INDEX|NDX|INHINT|LXCH|MASK|MSK|MP|MSU|NOOP|OVSK|QXCH|RAND|READ|RELINT|RESUME|RETURN|ROR|RXOR|SQUARE|SU|TCR|TCAA|OVSK|TCF|TC|TS|WAND|WOR|WRITE|XCH|XLQ|XXALQ|ZL|ZQ|ADD|ADZ|SUB|SUZ|MPY|MPR|MPZ|DVP|COM|ABS|CLA|CLZ|LDQ|STO|STQ|ALS|LLS|LRS|TRA|TSQ|TMI|TOV|AXT|TIX|DLY|INP|OUT)\s/, -null],["typ",/^(?:-?GENADR|=MINUS|2BCADR|VN|BOF|MM|-?2CADR|-?[1-6]DNADR|ADRES|BBCON|[ES]?BANK=?|BLOCK|BNKSUM|E?CADR|COUNT\*?|2?DEC\*?|-?DNCHAN|-?DNPTR|EQUALS|ERASE|MEMORY|2?OCT|REMADR|SETLOC|SUBRO|ORG|BSS|BES|SYN|EQU|DEFINE|END)\s/,null],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[!-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["apollo","agc","aea"]); - -// lang-basic.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["str",/^"(?:[^\n\r"\\]|\\.)*(?:"|$)/,a,'"'],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^REM[^\n\r]*/,a],["kwd",/^\b(?:AND|CLOSE|CLR|CMD|CONT|DATA|DEF ?FN|DIM|END|FOR|GET|GOSUB|GOTO|IF|INPUT|LET|LIST|LOAD|NEW|NEXT|NOT|ON|OPEN|OR|POKE|PRINT|READ|RESTORE|RETURN|RUN|SAVE|STEP|STOP|SYS|THEN|TO|VERIFY|WAIT)\b/,a],["pln",/^[a-z][^\W_]?(?:\$|%)?/i,a],["lit",/^(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?/i,a,"0123456789"],["pun", -/^.[^\s\w"$%.]*/,a]]),["basic","cbm"]); - -// lang-clj.js -/* - Copyright (C) 2011 Google Inc. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -*/ -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["opn",/^[([{]+/,a,"([{"],["clo",/^[)\]}]+/,a,")]}"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:def|if|do|let|quote|var|fn|loop|recur|throw|try|monitor-enter|monitor-exit|defmacro|defn|defn-|macroexpand|macroexpand-1|for|doseq|dosync|dotimes|and|or|when|not|assert|doto|proxy|defstruct|first|rest|cons|defprotocol|deftype|defrecord|reify|defmulti|defmethod|meta|with-meta|ns|in-ns|create-ns|import|intern|refer|alias|namespace|resolve|ref|deref|refset|new|set!|memfn|to-array|into-array|aset|gen-class|reduce|map|filter|find|nil?|empty?|hash-map|hash-set|vec|vector|seq|flatten|reverse|assoc|dissoc|list|list?|disj|get|union|difference|intersection|extend|extend-type|extend-protocol|prn)\b/,a], -["typ",/^:[\dA-Za-z-]+/]]),["clj"]); - -// lang-css.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n\u000c"]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]+)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//], -["com",/^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}\b/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); - -// lang-dart.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["com",/^#!.*/],["kwd",/^\b(?:import|library|part of|part|as|show|hide)\b/i],["com",/^\/\/.*/],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["kwd",/^\b(?:class|interface)\b/i],["kwd",/^\b(?:assert|break|case|catch|continue|default|do|else|finally|for|if|in|is|new|return|super|switch|this|throw|try|while)\b/i],["kwd",/^\b(?:abstract|const|extends|factory|final|get|implements|native|operator|set|static|typedef|var)\b/i], -["typ",/^\b(?:bool|double|dynamic|int|num|object|string|void)\b/i],["kwd",/^\b(?:false|null|true)\b/i],["str",/^r?'''[\S\s]*?[^\\]'''/],["str",/^r?"""[\S\s]*?[^\\]"""/],["str",/^r?'('|[^\n\f\r]*?[^\\]')/],["str",/^r?"("|[^\n\f\r]*?[^\\]")/],["pln",/^[$_a-z]\w*/i],["pun",/^[!%&*+/:<-?^|~-]/],["lit",/^\b0x[\da-f]+/i],["lit",/^\b\d+(?:\.\d*)?(?:e[+-]?\d+)?/i],["lit",/^\b\.\d+(?:e[+-]?\d+)?/i],["pun",/^[(),.;[\]{}]/]]), -["dart"]); - -// lang-erlang.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["lit",/^[a-z]\w*/],["lit",/^'(?:[^\n\f\r'\\]|\\[^&])+'?/,null,"'"],["lit",/^\?[^\t\n ({]+/,null,"?"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^%[^\n]*/],["kwd",/^(?:module|attributes|do|let|in|letrec|apply|call|primop|case|of|end|when|fun|try|catch|receive|after|char|integer|float,atom,string,var)\b/], -["kwd",/^-[_a-z]+/],["typ",/^[A-Z_]\w*/],["pun",/^[,.;]/]]),["erlang","erl"]); - -// lang-go.js -// PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["pln",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])+(?:'|$)|`[^`]*(?:`|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\/\*[\S\s]*?\*\/)/],["pln",/^(?:[^"'/`]|\/(?![*/]))+/]]),["go"]); - -// lang-hs.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/, -null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]); - -// lang-lisp.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a], -["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","lsp","scm","ss","rkt"]); - -// lang-llvm.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^!?"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["com",/^;[^\n\r]*/,null,";"]],[["pln",/^[!%@](?:[$\-.A-Z_a-z][\w$\-.]*|\d+)/],["kwd",/^[^\W\d]\w*/,null],["lit",/^\d+\.\d+/],["lit",/^(?:\d+|0[Xx][\dA-Fa-f]+)/],["pun",/^[(-*,:<->[\]{}]|\.\.\.$/]]),["llvm","ll"]); - -// lang-lua.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$))/,null,"\"'"]],[["com",/^--(?:\[(=*)\[[\S\s]*?(?:]\1]|$)|[^\n\r]*)/],["str",/^\[(=*)\[[\S\s]*?(?:]\1]|$)/],["kwd",/^(?:and|break|do|else|elseif|end|false|for|function|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i], -["pln",/^[_a-z]\w*/i],["pun",/^[^\w\t\n\r \xa0][^\w\t\n\r "'+=\xa0-]*/]]),["lua"]); - -// lang-ml.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^#(?:if[\t\n\r \xa0]+(?:[$_a-z][\w']*|``[^\t\n\r`]*(?:``|$))|else|endif|light)/i,null,"#"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])(?:'|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\(\*[\S\s]*?\*\))/],["kwd",/^(?:abstract|and|as|assert|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|if|in|inherit|inline|interface|internal|lazy|let|match|member|module|mutable|namespace|new|null|of|open|or|override|private|public|rec|return|static|struct|then|to|true|try|type|upcast|use|val|void|when|while|with|yield|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|global|include|method|mixin|object|parallel|process|protected|pure|sealed|trait|virtual|volatile)\b/], -["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^(?:[_a-z][\w']*[!#?]?|``[^\t\n\r`]*(?:``|$))/i],["pun",/^[^\w\t\n\r "'\xa0]+/]]),["fs","ml"]); - -// lang-mumps.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"]|\\.)*"/,null,'"']],[["com",/^;[^\n\r]*/,null,";"],["dec",/^\$(?:d|device|ec|ecode|es|estack|et|etrap|h|horolog|i|io|j|job|k|key|p|principal|q|quit|st|stack|s|storage|sy|system|t|test|tl|tlevel|tr|trestart|x|y|z[a-z]*|a|ascii|c|char|d|data|e|extract|f|find|fn|fnumber|g|get|j|justify|l|length|na|name|o|order|p|piece|ql|qlength|qs|qsubscript|q|query|r|random|re|reverse|s|select|st|stack|t|text|tr|translate|nan)\b/i, -null],["kwd",/^(?:[^$]b|break|c|close|d|do|e|else|f|for|g|goto|h|halt|h|hang|i|if|j|job|k|kill|l|lock|m|merge|n|new|o|open|q|quit|r|read|s|set|tc|tcommit|tre|trestart|tro|trollback|ts|tstart|u|use|v|view|w|write|x|xecute)\b/i,null],["lit",/^[+-]?(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?/i],["pln",/^[a-z][^\W_]*/i],["pun",/^[^\w\t\n\r"$%;^\xa0]|_/]]),["mumps"]); - -// lang-n.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["str",/^(?:'(?:[^\n\r'\\]|\\.)*'|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,a,'"'],["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,a,"#"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["str",/^@"(?:[^"]|"")*(?:"|$)/,a],["str",/^<#[^#>]*(?:#>|$)/,a],["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,a],["com",/^\/\/[^\n\r]*/,a],["com",/^\/\*[\S\s]*?(?:\*\/|$)/, -a],["kwd",/^(?:abstract|and|as|base|catch|class|def|delegate|enum|event|extern|false|finally|fun|implements|interface|internal|is|macro|match|matches|module|mutable|namespace|new|null|out|override|params|partial|private|protected|public|ref|sealed|static|struct|syntax|this|throw|true|try|type|typeof|using|variant|virtual|volatile|when|where|with|assert|assert2|async|break|checked|continue|do|else|ensures|for|foreach|if|late|lock|new|nolate|otherwise|regexp|repeat|requires|return|surroundwith|unchecked|unless|using|while|yield)\b/, -a],["typ",/^(?:array|bool|byte|char|decimal|double|float|int|list|long|object|sbyte|short|string|ulong|uint|ufloat|ulong|ushort|void)\b/,a],["lit",/^@[$_a-z][\w$@]*/i,a],["typ",/^@[A-Z]+[a-z][\w$@]*/,a],["pln",/^'?[$_a-z][\w$@]*/i,a],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,a,"0123456789"],["pun",/^.[^\s\w"-$'./@`]*/,a]]),["n","nemerle"]); - -// lang-pascal.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["str",/^'(?:[^\n\r'\\]|\\.)*(?:'|$)/,a,"'"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^\(\*[\S\s]*?(?:\*\)|$)|^{[\S\s]*?(?:}|$)/,a],["kwd",/^(?:absolute|and|array|asm|assembler|begin|case|const|constructor|destructor|div|do|downto|else|end|external|for|forward|function|goto|if|implementation|in|inline|interface|interrupt|label|mod|not|object|of|or|packed|procedure|program|record|repeat|set|shl|shr|then|to|type|unit|until|uses|var|virtual|while|with|xor)\b/i,a], -["lit",/^(?:true|false|self|nil)/i,a],["pln",/^[a-z][^\W_]*/i,a],["lit",/^(?:\$[\da-f]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?)/i,a,"0123456789"],["pun",/^.[^\s\w$'./@]*/,a]]),["pascal"]); - -// lang-proto.js -PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); - -// lang-r.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^'\\]|\\[\S\s])*(?:'|$)/,null,"'"]],[["com",/^#.*/],["kwd",/^(?:if|else|for|while|repeat|in|next|break|return|switch|function)(?![\w.])/],["lit",/^0[Xx][\dA-Fa-f]+([Pp]\d+)?[Li]?/],["lit",/^[+-]?(\d+(\.\d+)?|\.\d+)([Ee][+-]?\d+)?[Li]?/],["lit",/^(?:NULL|NA(?:_(?:integer|real|complex|character)_)?|Inf|TRUE|FALSE|NaN|\.\.(?:\.|\d+))(?![\w.])/], -["pun",/^(?:<<?-|->>?|-|==|<=|>=|<|>|&&?|!=|\|\|?|[!*+/^]|%.*?%|[$=@~]|:{1,3}|[(),;?[\]{}])/],["pln",/^(?:[A-Za-z]+[\w.]*|\.[^\W\d][\w.]*)(?![\w.])/],["str",/^`.+`/]]),["r","s","R","S","Splus"]); - -// lang-rd.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["lit",/^\\(?:cr|l?dots|R|tab)\b/],["kwd",/^\\[@-Za-z]+/],["kwd",/^#(?:ifn?def|endif)/],["pln",/^\\[{}]/],["pun",/^[()[\]{}]+/]]),["Rd","rd"]); - -// lang-scala.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:""(?:""?(?!")|[^"\\]|\\.)*"{0,3}|(?:[^\n\r"\\]|\\.)*"?)/,null,'"'],["lit",/^`(?:[^\n\r\\`]|\\.)*`?/,null,"`"],["pun",/^[!#%&(--:-@[-^{-~]+/,null,"!#%&()*+,-:;<=>?@[\\]^{|}~"]],[["str",/^'(?:[^\n\r'\\]|\\(?:'|[^\n\r']+))'/],["lit",/^'[$A-Z_a-z][\w$]*(?![\w$'])/],["kwd",/^(?:abstract|case|catch|class|def|do|else|extends|final|finally|for|forSome|if|implicit|import|lazy|match|new|object|override|package|private|protected|requires|return|sealed|super|throw|trait|try|type|val|var|while|with|yield)\b/], -["lit",/^(?:true|false|null|this)\b/],["lit",/^(?:0(?:[0-7]+|x[\da-f]+)l?|(?:0|[1-9]\d*)(?:(?:\.\d+)?(?:e[+-]?\d+)?f?|l?)|\\.\d+(?:e[+-]?\d+)?f?)/i],["typ",/^[$_]*[A-Z][\d$A-Z_]*[a-z][\w$]*/],["pln",/^[$A-Z_a-z][\w$]*/],["com",/^\/(?:\/.*|\*(?:\/|\**[^*/])*(?:\*+\/?)?)/],["pun",/^(?:\.+|\/)/]]),["scala"]); - -// lang-sql.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')/,null,"\"'"]],[["com",/^(?:--[^\n\r]*|\/\*[\S\s]*?(?:\*\/|$))/],["kwd",/^(?:add|all|alter|and|any|apply|as|asc|authorization|backup|begin|between|break|browse|bulk|by|cascade|case|check|checkpoint|close|clustered|coalesce|collate|column|commit|compute|connect|constraint|contains|containstable|continue|convert|create|cross|current|current_date|current_time|current_timestamp|current_user|cursor|database|dbcc|deallocate|declare|default|delete|deny|desc|disk|distinct|distributed|double|drop|dummy|dump|else|end|errlvl|escape|except|exec|execute|exists|exit|fetch|file|fillfactor|following|for|foreign|freetext|freetexttable|from|full|function|goto|grant|group|having|holdlock|identity|identitycol|identity_insert|if|in|index|inner|insert|intersect|into|is|join|key|kill|left|like|lineno|load|match|matched|merge|natural|national|nocheck|nonclustered|nocycle|not|null|nullif|of|off|offsets|on|open|opendatasource|openquery|openrowset|openxml|option|or|order|outer|over|partition|percent|pivot|plan|preceding|precision|primary|print|proc|procedure|public|raiserror|read|readtext|reconfigure|references|replication|restore|restrict|return|revoke|right|rollback|rowcount|rowguidcol|rows?|rule|save|schema|select|session_user|set|setuser|shutdown|some|start|statistics|system_user|table|textsize|then|to|top|tran|transaction|trigger|truncate|tsequal|unbounded|union|unique|unpivot|update|updatetext|use|user|using|values|varying|view|waitfor|when|where|while|with|within|writetext|xml)(?=[^\w-]|$)/i, -null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^[_a-z][\w-]*/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'+\xa0-]*/]]),["sql"]); - -// lang-tcl.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["opn",/^{+/,a,"{"],["clo",/^}+/,a,"}"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:after|append|apply|array|break|case|catch|continue|error|eval|exec|exit|expr|for|foreach|if|incr|info|proc|return|set|switch|trace|uplevel|upvar|while)\b/,a],["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit", -/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["tcl"]); - -// lang-tex.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["kwd",/^\\[@-Za-z]+/],["kwd",/^\\./],["typ",/^[$&]/],["lit",/[+-]?(?:\.\d+|\d+(?:\.\d*)?)(cm|em|ex|in|pc|pt|bp|mm)/i],["pun",/^[()=[\]{}]+/]]),["latex","tex"]); - -// lang-vb.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0\u2028\u2029]+/,null,"\t\n\r \u00a0\u2028\u2029"],["str",/^(?:["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})(?:["\u201c\u201d]c|$)|["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})*(?:["\u201c\u201d]|$))/i,null,'"\u201c\u201d'],["com",/^['\u2018\u2019](?:_(?:\r\n?|[^\r]?)|[^\n\r_\u2028\u2029])*/,null,"'\u2018\u2019"]],[["kwd",/^(?:addhandler|addressof|alias|and|andalso|ansi|as|assembly|auto|boolean|byref|byte|byval|call|case|catch|cbool|cbyte|cchar|cdate|cdbl|cdec|char|cint|class|clng|cobj|const|cshort|csng|cstr|ctype|date|decimal|declare|default|delegate|dim|directcast|do|double|each|else|elseif|end|endif|enum|erase|error|event|exit|finally|for|friend|function|get|gettype|gosub|goto|handles|if|implements|imports|in|inherits|integer|interface|is|let|lib|like|long|loop|me|mod|module|mustinherit|mustoverride|mybase|myclass|namespace|new|next|not|notinheritable|notoverridable|object|on|option|optional|or|orelse|overloads|overridable|overrides|paramarray|preserve|private|property|protected|public|raiseevent|readonly|redim|removehandler|resume|return|select|set|shadows|shared|short|single|static|step|stop|string|structure|sub|synclock|then|throw|to|try|typeof|unicode|until|variant|wend|when|while|with|withevents|writeonly|xor|endif|gosub|let|variant|wend)\b/i, -null],["com",/^rem\b.*/i],["lit",/^(?:true\b|false\b|nothing\b|\d+(?:e[+-]?\d+[dfr]?|[dfilrs])?|(?:&h[\da-f]+|&o[0-7]+)[ils]?|\d*\.\d+(?:e[+-]?\d+)?[dfr]?|#\s+(?:\d+[/-]\d+[/-]\d+(?:\s+\d+:\d+(?::\d+)?(\s*(?:am|pm))?)?|\d+:\d+(?::\d+)?(\s*(?:am|pm))?)\s+#)/i],["pln",/^(?:(?:[a-z]|_\w)\w*(?:\[[!#%&@]+])?|\[(?:[a-z]|_\w)\w*])/i],["pun",/^[^\w\t\n\r "'[\]\xa0\u2018\u2019\u201c\u201d\u2028\u2029]+/],["pun",/^(?:\[|])/]]),["vb","vbs"]); - -// lang-vhdl.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["str",/^(?:[box]?"(?:[^"]|"")*"|'.')/i],["com",/^--[^\n\r]*/],["kwd",/^(?:abs|access|after|alias|all|and|architecture|array|assert|attribute|begin|block|body|buffer|bus|case|component|configuration|constant|disconnect|downto|else|elsif|end|entity|exit|file|for|function|generate|generic|group|guarded|if|impure|in|inertial|inout|is|label|library|linkage|literal|loop|map|mod|nand|new|next|nor|not|null|of|on|open|or|others|out|package|port|postponed|procedure|process|pure|range|record|register|reject|rem|report|return|rol|ror|select|severity|shared|signal|sla|sll|sra|srl|subtype|then|to|transport|type|unaffected|units|until|use|variable|wait|when|while|with|xnor|xor)(?=[^\w-]|$)/i, -null],["typ",/^(?:bit|bit_vector|character|boolean|integer|real|time|string|severity_level|positive|natural|signed|unsigned|line|text|std_u?logic(?:_vector)?)(?=[^\w-]|$)/i,null],["typ",/^'(?:active|ascending|base|delayed|driving|driving_value|event|high|image|instance_name|last_active|last_event|last_value|left|leftof|length|low|path_name|pos|pred|quiet|range|reverse_range|right|rightof|simple_name|stable|succ|transaction|val|value)(?=[^\w-]|$)/i,null],["lit",/^\d+(?:_\d+)*(?:#[\w.\\]+#(?:[+-]?\d+(?:_\d+)*)?|(?:\.\d+(?:_\d+)*)?(?:e[+-]?\d+(?:_\d+)*)?)/i], -["pln",/^(?:[a-z]\w*|\\[^\\]*\\)/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'\xa0-]*/]]),["vhdl","vhd"]); - -// lang-wiki.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\d\t a-gi-z\xa0]+/,null,"\t \u00a0abcdefgijklmnopqrstuvwxyz0123456789"],["pun",/^[*=[\]^~]+/,null,"=*~^[]"]],[["lang-wiki.meta",/(?:^^|\r\n?|\n)(#[a-z]+)\b/],["lit",/^[A-Z][a-z][\da-z]+[A-Z][a-z][^\W_]+\b/],["lang-",/^{{{([\S\s]+?)}}}/],["lang-",/^`([^\n\r`]+)`/],["str",/^https?:\/\/[^\s#/?]*(?:\/[^\s#?]*)?(?:\?[^\s#]*)?(?:#\S*)?/i],["pln",/^(?:\r\n|[\S\s])[^\n\r#*=A-[^`h{~]*/]]),["wiki"]); -PR.registerLangHandler(PR.createSimpleLexer([["kwd",/^#[a-z]+/i,null,"#"]],[]),["wiki.meta"]); - -// lang-yaml.js -var a=null; -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); - -/* - * zClip :: jQuery ZeroClipboard v1.1.1 - * http://steamdev.com/zclip - * - * Copyright 2011, SteamDev - * Released under the MIT license. - * http://www.opensource.org/licenses/mit-license.php - * - * Date: Wed Jun 01, 2011 - */ - -(function(a){a.fn.zclip=function(c){if(typeof c=="object"&&!c.length){var b=a.extend({path:"ZeroClipboard.swf",copy:null,beforeCopy:null,afterCopy:null,clickAfter:true,setHandCursor:true,setCSSEffects:true},c);return this.each(function(){var e=a(this);if(e.is(":visible")&&(typeof b.copy=="string"||a.isFunction(b.copy))){ZeroClipboard.setMoviePath(b.path);var d=new ZeroClipboard.Client();if(a.isFunction(b.copy)){e.bind("zClip_copy",b.copy)}if(a.isFunction(b.beforeCopy)){e.bind("zClip_beforeCopy",b.beforeCopy)}if(a.isFunction(b.afterCopy)){e.bind("zClip_afterCopy",b.afterCopy)}d.setHandCursor(b.setHandCursor);d.setCSSEffects(b.setCSSEffects);d.addEventListener("mouseOver",function(f){e.trigger("mouseenter")});d.addEventListener("mouseOut",function(f){e.trigger("mouseleave")});d.addEventListener("mouseDown",function(f){e.trigger("mousedown");if(!a.isFunction(b.copy)){d.setText(b.copy)}else{d.setText(e.triggerHandler("zClip_copy"))}if(a.isFunction(b.beforeCopy)){e.trigger("zClip_beforeCopy")}});d.addEventListener("complete",function(f,g){if(a.isFunction(b.afterCopy)){e.trigger("zClip_afterCopy")}else{if(g.length>500){g=g.substr(0,500)+"...\n\n("+(g.length-500)+" characters not shown)"}e.removeClass("hover");alert("Copied text to clipboard:\n\n "+g)}if(b.clickAfter){e.trigger("click")}});d.glue(e[0],e.parent()[0]);a(window).bind("load resize",function(){d.reposition()})}})}else{if(typeof c=="string"){return this.each(function(){var f=a(this);c=c.toLowerCase();var e=f.data("zclipId");var d=a("#"+e+".zclip");if(c=="remove"){d.remove();f.removeClass("active hover")}else{if(c=="hide"){d.hide();f.removeClass("active hover")}else{if(c=="show"){d.show()}}}})}}}})(jQuery);var ZeroClipboard={version:"1.0.7",clients:{},moviePath:"ZeroClipboard.swf",nextId:1,$:function(a){if(typeof(a)=="string"){a=document.getElementById(a)}if(!a.addClass){a.hide=function(){/*this.style.display="none"*/};a.show=function(){this.style.display=""};a.addClass=function(b){this.removeClass(b);this.className+=" "+b};a.removeClass=function(d){var e=this.className.split(/\s+/);var b=-1;for(var c=0;c<e.length;c++){if(e[c]==d){b=c;c=e.length}}if(b>-1){e.splice(b,1);this.className=e.join(" ")}return this};a.hasClass=function(b){return !!this.className.match(new RegExp("\\s*"+b+"\\s*"))}}return a},setMoviePath:function(a){this.moviePath=a},dispatch:function(d,b,c){var a=this.clients[d];if(a){a.receiveEvent(b,c)}},register:function(b,a){this.clients[b]=a},getDOMObjectPosition:function(c,a){var b={left:0,top:0,width:c.width?c.width:c.offsetWidth,height:c.height?c.height:c.offsetHeight};if(c&&(c!=a)){b.left+=c.offsetLeft;b.top+=c.offsetTop}return b},Client:function(a){this.handlers={};this.id=ZeroClipboard.nextId++;this.movieId="ZeroClipboardMovie_"+this.id;ZeroClipboard.register(this.id,this);if(a){this.glue(a)}}};ZeroClipboard.Client.prototype={id:0,ready:false,movie:null,clipText:"",handCursorEnabled:true,cssEffects:true,handlers:null,glue:function(d,b,e){this.domElement=ZeroClipboard.$(d);var f=99;if(this.domElement.style.zIndex){f=parseInt(this.domElement.style.zIndex,10)+1}if(typeof(b)=="string"){b=ZeroClipboard.$(b)}else{if(typeof(b)=="undefined"){b=document.getElementsByTagName("body")[0]}}var c=ZeroClipboard.getDOMObjectPosition(this.domElement,b);this.div=document.createElement("div");this.div.className="zclip";this.div.id="zclip-"+this.movieId;$(this.domElement).data("zclipId","zclip-"+this.movieId);var a=this.div.style;a.position="absolute";a.left=""+c.left+"px";a.top=""+c.top+"px";a.width=""+c.width+"px";a.height=""+c.height+"px";a.zIndex=f;if(typeof(e)=="object"){for(addedStyle in e){a[addedStyle]=e[addedStyle]}}b.appendChild(this.div);this.div.innerHTML=this.getHTML(c.width,c.height)},getHTML:function(d,a){var c="";var b="id="+this.id+"&width="+d+"&height="+a;if(navigator.userAgent.match(/MSIE/)){var e=location.href.match(/^https/i)?"https://":"http://";c+='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="'+e+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+d+'" height="'+a+'" id="'+this.movieId+'" align="middle"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="false" /><param name="movie" value="'+ZeroClipboard.moviePath+'" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" /><param name="flashvars" value="'+b+'"/><param name="wmode" value="transparent"/></object>'}else{c+='<embed id="'+this.movieId+'" src="'+ZeroClipboard.moviePath+'" loop="false" menu="false" quality="best" bgcolor="#ffffff" width="'+d+'" height="'+a+'" name="'+this.movieId+'" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="'+b+'" wmode="transparent" />'}return c},hide:function(){if(this.div){this.div.style.left="-2000px"}},show:function(){this.reposition()},destroy:function(){if(this.domElement&&this.div){this.hide();this.div.innerHTML="";var a=document.getElementsByTagName("body")[0];try{a.removeChild(this.div)}catch(b){}this.domElement=null;this.div=null}},reposition:function(c){if(c){this.domElement=ZeroClipboard.$(c);if(!this.domElement){this.hide()}}if(this.domElement&&this.div){var b=ZeroClipboard.getDOMObjectPosition(this.domElement);var a=this.div.style;a.left=""+b.left+"px";a.top=""+b.top+"px"}},setText:function(a){this.clipText=a;if(this.ready){this.movie.setText(a)}},addEventListener:function(a,b){a=a.toString().toLowerCase().replace(/^on/,"");if(!this.handlers[a]){this.handlers[a]=[]}this.handlers[a].push(b)},setHandCursor:function(a){this.handCursorEnabled=a;if(this.ready){this.movie.setHandCursor(a)}},setCSSEffects:function(a){this.cssEffects=!!a},receiveEvent:function(d,f){d=d.toString().toLowerCase().replace(/^on/,"");switch(d){case"load":this.movie=document.getElementById(this.movieId);if(!this.movie){var c=this;setTimeout(function(){c.receiveEvent("load",null)},1);return}if(!this.ready&&navigator.userAgent.match(/Firefox/)&&navigator.userAgent.match(/Windows/)){var c=this;setTimeout(function(){c.receiveEvent("load",null)},100);this.ready=true;return}this.ready=true;try{this.movie.setText(this.clipText)}catch(h){}try{this.movie.setHandCursor(this.handCursorEnabled)}catch(h){}break;case"mouseover":if(this.domElement&&this.cssEffects){this.domElement.addClass("hover");if(this.recoverActive){this.domElement.addClass("active")}}break;case"mouseout":if(this.domElement&&this.cssEffects){this.recoverActive=false;if(this.domElement.hasClass("active")){this.domElement.removeClass("active");this.recoverActive=true}this.domElement.removeClass("hover")}break;case"mousedown":if(this.domElement&&this.cssEffects){this.domElement.addClass("active")}break;case"mouseup":if(this.domElement&&this.cssEffects){this.domElement.removeClass("active");this.recoverActive=false}break}if(this.handlers[d]){for(var b=0,a=this.handlers[d].length;b<a;b++){var g=this.handlers[d][b];if(typeof(g)=="function"){g(this,f)}else{if((typeof(g)=="object")&&(g.length==2)){g[0][g[1]](this,f)}else{if(typeof(g)=="string"){window[g](this,f)}}}}}}};
\ No newline at end of file diff --git a/public/less/_admin.less b/public/less/_admin.less new file mode 100644 index 0000000000..93115a7f8f --- /dev/null +++ b/public/less/_admin.less @@ -0,0 +1,18 @@ +.admin { + padding-top: 15px; + padding-bottom: @footer-margin * 3; + + .table.segment { + padding: 0; + font-size: 13px; + th { + padding-top: 5px; + padding-bottom: 5px; + } + th, td { + &:first-child { + padding-left: 15px; + } + } + } +}
\ No newline at end of file diff --git a/public/less/_base.less b/public/less/_base.less index 8f80e0d492..4bbb098ea4 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -74,6 +74,9 @@ img { &.red { color: #d95c5c!important; } + &.blue { + color: #428bca!important; + } &.grey { color: #767676!important; a { @@ -99,14 +102,29 @@ img { padding-left: 0.75rem; vertical-align: middle; } + .warning { + &.header { + background-color: #F9EDBE!important; + border-color: #F0C36D; + } + &.segment { + border-color: #F0C36D; + } + } .avatar.image { border-radius: 3px; } + + .form { + .fake { + display: none!important; + } + } } footer { - margin-top: @footer-margin!important; + margin-top: @footer-margin+14px!important; height: @footer-margin; background-color: white; border-top: 1px solid #d6d6d6; diff --git a/public/less/_form.less b/public/less/_form.less index 8d02ae5afe..03c0144d98 100644 --- a/public/less/_form.less +++ b/public/less/_form.less @@ -9,42 +9,48 @@ .ui.attached.header { background: #f0f0f0; .right { - margin-top: -5px; + margin-top: -6px; } } -.repository.new.fork { - form { - margin: auto; - width: 800px!important; - .ui.message { - text-align: center; - } - @input-padding: 250px !important; - .header { - padding-left: @input-padding+30px; - } - .inline.field > label { - text-align: right; - width: @input-padding; - word-wrap: break-word; - } - .help { - margin-left: @input-padding+10px; - } - .dropdown { - .dropdown.icon { - margin-top: -7px!important; +.repository { + &.new.migrate, + &.new.fork { + form { + margin: auto; + width: 800px!important; + .ui.message { + text-align: center; + } + @input-padding: 250px !important; + .header { + padding-left: @input-padding+30px; + } + .inline.field > label { + text-align: right; + width: @input-padding; + word-wrap: break-word; } - .text { - margin-right: 0!important; - i { + .help { + margin-left: @input-padding+15px; + } + .dropdown { + .dropdown.icon { + margin-top: -7px!important; + } + .text { margin-right: 0!important; + i { + margin-right: 0!important; + } } } - } - input, - textarea { - width: 50%!important; + .optional .title { + margin-left: @input-padding; + } + input, + textarea { + width: 50%!important; + } } } }
\ No newline at end of file diff --git a/public/less/_octicons.less b/public/less/_octicons.less index f40abe6691..be97b69015 100755 --- a/public/less/_octicons.less +++ b/public/less/_octicons.less @@ -1,5 +1,6 @@ +// v3.1.0 @octicons-font-path: "../fonts"; -@octicons-version: "345f8bad9c5003db196d08f05e7f030fd2a32ff6"; +@octicons-version: "396334ee3da78f4302d25c758ae3e3ce5dc3c97d"; @font-face { font-family: 'octicons'; @@ -28,9 +29,6 @@ .mega-octicon { font-size: 32px; } .octicon-alert:before { content: '\f02d'} /* */ -.octicon-alignment-align:before { content: '\f08a'} /* */ -.octicon-alignment-aligned-to:before { content: '\f08e'} /* */ -.octicon-alignment-unalign:before { content: '\f08b'} /* */ .octicon-arrow-down:before { content: '\f03f'} /* */ .octicon-arrow-left:before { content: '\f040'} /* */ .octicon-arrow-right:before { content: '\f03e'} /* */ @@ -39,7 +37,9 @@ .octicon-arrow-small-right:before { content: '\f071'} /* */ .octicon-arrow-small-up:before { content: '\f09f'} /* */ .octicon-arrow-up:before { content: '\f03d'} /* */ -.octicon-beer:before { content: '\f069'} /* */ +.octicon-microscope:before, +.octicon-beaker:before { content: '\f0dd'} /* */ +.octicon-bell:before { content: '\f0de'} /* */ .octicon-book:before { content: '\f007'} /* */ .octicon-bookmark:before { content: '\f07b'} /* */ .octicon-briefcase:before { content: '\f0d3'} /* */ @@ -68,6 +68,8 @@ .octicon-dash:before { content: '\f0ca'} /* */ .octicon-dashboard:before { content: '\f07d'} /* */ .octicon-database:before { content: '\f096'} /* */ +.octicon-clone:before, +.octicon-desktop-download:before { content: '\f0dc'} /* */ .octicon-device-camera:before { content: '\f056'} /* */ .octicon-device-camera-video:before { content: '\f057'} /* */ .octicon-device-desktop:before { content: '\f27c'} /* */ @@ -112,7 +114,6 @@ .octicon-history:before { content: '\f07e'} /* */ .octicon-home:before { content: '\f08d'} /* */ .octicon-horizontal-rule:before { content: '\f070'} /* */ -.octicon-hourglass:before { content: '\f09e'} /* */ .octicon-hubot:before { content: '\f09d'} /* */ .octicon-inbox:before { content: '\f0cf'} /* */ .octicon-info:before { content: '\f059'} /* */ @@ -120,10 +121,6 @@ .octicon-issue-opened:before { content: '\f026'} /* */ .octicon-issue-reopened:before { content: '\f027'} /* */ .octicon-jersey:before { content: '\f019'} /* */ -.octicon-jump-down:before { content: '\f072'} /* */ -.octicon-jump-left:before { content: '\f0a5'} /* */ -.octicon-jump-right:before { content: '\f0a6'} /* */ -.octicon-jump-up:before { content: '\f073'} /* */ .octicon-key:before { content: '\f049'} /* */ .octicon-keyboard:before { content: '\f00d'} /* */ .octicon-law:before { content: '\f0d8'} /* */ @@ -145,15 +142,10 @@ .octicon-markdown:before { content: '\f0c9'} /* */ .octicon-megaphone:before { content: '\f077'} /* */ .octicon-mention:before { content: '\f0be'} /* */ -.octicon-microscope:before { content: '\f089'} /* */ .octicon-milestone:before { content: '\f075'} /* */ .octicon-mirror-public:before, .octicon-mirror:before { content: '\f024'} /* */ .octicon-mortar-board:before { content: '\f0d7'} /* */ -.octicon-move-down:before { content: '\f0a8'} /* */ -.octicon-move-left:before { content: '\f074'} /* */ -.octicon-move-right:before { content: '\f0a9'} /* */ -.octicon-move-up:before { content: '\f0a7'} /* */ .octicon-mute:before { content: '\f080'} /* */ .octicon-no-newline:before { content: '\f09c'} /* */ .octicon-octoface:before { content: '\f008'} /* */ @@ -165,21 +157,15 @@ .octicon-person-follow:before, .octicon-person:before { content: '\f018'} /* */ .octicon-pin:before { content: '\f041'} /* */ -.octicon-playback-fast-forward:before { content: '\f0bd'} /* */ -.octicon-playback-pause:before { content: '\f0bb'} /* */ -.octicon-playback-play:before { content: '\f0bf'} /* */ -.octicon-playback-rewind:before { content: '\f0bc'} /* */ .octicon-plug:before { content: '\f0d4'} /* */ .octicon-repo-create:before, .octicon-gist-new:before, .octicon-file-directory-create:before, .octicon-file-add:before, .octicon-plus:before { content: '\f05d'} /* */ -.octicon-podium:before { content: '\f0af'} /* */ .octicon-primitive-dot:before { content: '\f052'} /* */ .octicon-primitive-square:before { content: '\f053'} /* */ .octicon-pulse:before { content: '\f085'} /* */ -.octicon-puzzle:before { content: '\f0c0'} /* */ .octicon-question:before { content: '\f02c'} /* */ .octicon-quote:before { content: '\f063'} /* */ .octicon-radio-tower:before { content: '\f030'} /* */ @@ -200,16 +186,15 @@ .octicon-search:before { content: '\f02e'} /* */ .octicon-server:before { content: '\f097'} /* */ .octicon-settings:before { content: '\f07c'} /* */ +.octicon-shield:before { content: '\f0e1'} /* */ .octicon-log-in:before, .octicon-sign-in:before { content: '\f036'} /* */ .octicon-log-out:before, .octicon-sign-out:before { content: '\f032'} /* */ -.octicon-split:before { content: '\f0c6'} /* */ .octicon-squirrel:before { content: '\f0b2'} /* */ .octicon-star-add:before, .octicon-star-delete:before, .octicon-star:before { content: '\f02a'} /* */ -.octicon-steps:before { content: '\f0c7'} /* */ .octicon-stop:before { content: '\f08f'} /* */ .octicon-repo-sync:before, .octicon-sync:before { content: '\f087'} /* */ @@ -230,6 +215,7 @@ .octicon-unfold:before { content: '\f039'} /* */ .octicon-unmute:before { content: '\f0ba'} /* */ .octicon-versions:before { content: '\f064'} /* */ +.octicon-watch:before { content: '\f0e0'} /* */ .octicon-remove-close:before, .octicon-x:before { content: '\f081'} /* */ .octicon-zap:before { content: '\26A1'} /* ⚡ */ diff --git a/public/less/_repository.less b/public/less/_repository.less index 4b228cd18b..5e9ade3255 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -242,7 +242,8 @@ margin-left: -36px; text-align: center; &.octicon-circle-slash { - font-size: 30px; + margin-top: 5px; + font-size: 20px; color: #bd2c00; } &.octicon-primitive-dot { @@ -411,27 +412,36 @@ } } -.settings .key.list { - .item:not(:first-child) { - border-top: 1px solid #eaeaea; - } - .ssh-key-state-indicator { - float: left; - color: gray; - padding-left: 10px; - padding-top: 10px; - &.active { - color: #6cc644; - } - } - .meta { - padding-top: 5px; - } - .print { - color: #767676; +.settings { + .content { + margin-top: 2px; + .header, + .segment { + box-shadow: 0 1px 2px 0 rgba(34,36,38,.15); + } } - .activity { - color: #666; + .key.list { + .item:not(:first-child) { + border-top: 1px solid #eaeaea; + } + .ssh-key-state-indicator { + float: left; + color: gray; + padding-left: 10px; + padding-top: 10px; + &.active { + color: #6cc644; + } + } + .meta { + padding-top: 5px; + } + .print { + color: #767676; + } + .activity { + color: #666; + } } } diff --git a/public/less/_user.less b/public/less/_user.less new file mode 100644 index 0000000000..ac2b4032ba --- /dev/null +++ b/public/less/_user.less @@ -0,0 +1,12 @@ +.user { + padding-top: 15px; + padding-bottom: @footer-margin * 3; + + &.settings { + .key.list { + .item.ui.grid { + margin-top: 15px; + } + } + } +}
\ No newline at end of file diff --git a/public/less/gogs.less b/public/less/gogs.less index 54fc409487..3fe7705db7 100644 --- a/public/less/gogs.less +++ b/public/less/gogs.less @@ -4,4 +4,6 @@ @import "_home"; @import "_install"; @import "_form"; -@import "_repository";
\ No newline at end of file +@import "_repository"; +@import "_user"; +@import "_admin";
\ No newline at end of file diff --git a/public/ng/css/gogs.css b/public/ng/css/gogs.css index 607c62a6c5..4d23a82078 100644 --- a/public/ng/css/gogs.css +++ b/public/ng/css/gogs.css @@ -88,7 +88,7 @@ img.avatar-100 { z-index: 100; font-size: 12px; width: 120%; - min-width: 100px; + min-width: 140px; } #footer-lang .drop-down li > a { padding: 3px 9px; diff --git a/public/ng/less/gogs/base.less b/public/ng/less/gogs/base.less index ed5f2fee59..321f0c1a45 100644 --- a/public/ng/less/gogs/base.less +++ b/public/ng/less/gogs/base.less @@ -102,7 +102,7 @@ clear: both; z-index: 100; font-size: 12px; width: 120%; - min-width: 100px; + min-width: 140px; li > a { padding: 3px 9px; } diff --git a/routers/admin/admin.go b/routers/admin/admin.go index 316f1d4257..46106aa427 100644 --- a/routers/admin/admin.go +++ b/routers/admin/admin.go @@ -14,8 +14,8 @@ import ( "github.com/Unknwon/macaron" "github.com/gogits/gogs/models" + "github.com/gogits/gogs/models/cron" "github.com/gogits/gogs/modules/base" - "github.com/gogits/gogs/modules/cron" "github.com/gogits/gogs/modules/middleware" "github.com/gogits/gogs/modules/process" "github.com/gogits/gogs/modules/setting" @@ -229,6 +229,6 @@ func Monitor(ctx *middleware.Context) { ctx.Data["PageIsAdmin"] = true ctx.Data["PageIsAdminMonitor"] = true ctx.Data["Processes"] = process.Processes - ctx.Data["Entries"] = cron.ListEntries() + ctx.Data["Entries"] = cron.ListTasks() ctx.HTML(200, MONITOR) } diff --git a/routers/admin/auths.go b/routers/admin/auths.go index 2bec7da46c..bb73026b7d 100644 --- a/routers/admin/auths.go +++ b/routers/admin/auths.go @@ -63,18 +63,18 @@ func NewAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) { case models.LDAP: u = &models.LDAPConfig{ Ldapsource: ldap.Ldapsource{ + Name: form.Name, Host: form.Host, Port: form.Port, UseSSL: form.UseSSL, - BaseDN: form.BaseDN, - AttributeUsername: form.AttributeUsername, + BindDN: form.BindDN, + BindPassword: form.BindPassword, + UserBase: form.UserBase, + Filter: form.Filter, AttributeName: form.AttributeName, AttributeSurname: form.AttributeSurname, AttributeMail: form.AttributeMail, - Filter: form.Filter, - MsAdSAFormat: form.MsAdSA, Enabled: true, - Name: form.Name, }, } case models.SMTP: @@ -149,18 +149,18 @@ func EditAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) { case models.LDAP: config = &models.LDAPConfig{ Ldapsource: ldap.Ldapsource{ + Name: form.Name, Host: form.Host, Port: form.Port, UseSSL: form.UseSSL, - BaseDN: form.BaseDN, - AttributeUsername: form.AttributeUsername, + BindDN: form.BindDN, + BindPassword: form.BindPassword, + UserBase: form.UserBase, AttributeName: form.AttributeName, AttributeSurname: form.AttributeSurname, AttributeMail: form.AttributeMail, Filter: form.Filter, - MsAdSAFormat: form.MsAdSA, Enabled: true, - Name: form.Name, }, } case models.SMTP: diff --git a/routers/api/v1/user.go b/routers/api/v1/user.go index feecda483d..60b6adcd12 100644 --- a/routers/api/v1/user.go +++ b/routers/api/v1/user.go @@ -18,7 +18,7 @@ import ( // ToApiUser converts user to API format. func ToApiUser(u *models.User) *api.User { return &api.User{ - Id: u.Id, + ID: u.Id, UserName: u.Name, AvatarUrl: string(setting.Protocol) + u.AvatarLink(), } @@ -45,10 +45,14 @@ func SearchUsers(ctx *middleware.Context) { results := make([]*api.User, len(us)) for i := range us { results[i] = &api.User{ + ID: us[i].Id, UserName: us[i].Name, AvatarUrl: us[i].AvatarLink(), FullName: us[i].FullName, } + if ctx.IsSigned { + results[i].Email = us[i].Email + } } ctx.Render.JSON(200, map[string]interface{}{ diff --git a/routers/api/v1/user_app.go b/routers/api/v1/user_app.go index 31da8a3eef..5e5156aca4 100644 --- a/routers/api/v1/user_app.go +++ b/routers/api/v1/user_app.go @@ -34,7 +34,7 @@ type CreateAccessTokenForm struct { // POST /users/:username/tokens func CreateAccessToken(ctx *middleware.Context, form CreateAccessTokenForm) { t := &models.AccessToken{ - Uid: ctx.User.Id, + UID: ctx.User.Id, Name: form.Name, } if err := models.NewAccessToken(t); err != nil { diff --git a/routers/install.go b/routers/install.go index 8fed105fc2..4e7dd3904e 100644 --- a/routers/install.go +++ b/routers/install.go @@ -18,9 +18,9 @@ import ( "gopkg.in/ini.v1" "github.com/gogits/gogs/models" + "github.com/gogits/gogs/models/cron" "github.com/gogits/gogs/modules/auth" "github.com/gogits/gogs/modules/base" - "github.com/gogits/gogs/modules/cron" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/mailer" "github.com/gogits/gogs/modules/middleware" diff --git a/routers/repo/http.go b/routers/repo/http.go index 54ea91cada..9c1f227391 100644 --- a/routers/repo/http.go +++ b/routers/repo/http.go @@ -113,7 +113,7 @@ func Http(ctx *middleware.Context) { } // Assume username now is a token. - token, err := models.GetAccessTokenBySha(authUsername) + token, err := models.GetAccessTokenBySHA(authUsername) if err != nil { if err == models.ErrAccessTokenNotExist { ctx.HandleText(401, "invalid token") @@ -122,7 +122,11 @@ func Http(ctx *middleware.Context) { } return } - authUser, err = models.GetUserByID(token.Uid) + token.Updated = time.Now() + if err = models.UpdateAccessToekn(token); err != nil { + ctx.Handle(500, "UpdateAccessToekn", err) + } + authUser, err = models.GetUserByID(token.UID) if err != nil { ctx.Handle(500, "GetUserById", err) return @@ -292,6 +296,7 @@ func serviceReceivePack(hr handler) { func serviceRpc(rpc string, hr handler) { w, r, dir := hr.w, hr.r, hr.Dir + defer r.Body.Close() if !hasAccess(r, hr.Config, dir, rpc, true) { renderNoAccess(w) diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 4072483e89..2fa270f373 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -1013,7 +1013,7 @@ func ChangeMilestonStatus(ctx *middleware.Context) { func DeleteMilestone(ctx *middleware.Context) { if err := models.DeleteMilestoneByID(ctx.QueryInt64("id")); err != nil { - ctx.Flash.Error("DeleteMilestone: " + err.Error()) + ctx.Flash.Error("DeleteMilestoneByID: " + err.Error()) } else { ctx.Flash.Success(ctx.Tr("repo.milestones.deletion_success")) } diff --git a/routers/repo/repo.go b/routers/repo/repo.go index 533bd569ad..1d29557005 100644 --- a/routers/repo/repo.go +++ b/routers/repo/repo.go @@ -214,9 +214,10 @@ func MigratePost(ctx *middleware.Context, form auth.MigrateRepoForm) { } } - if strings.Contains(err.Error(), "Authentication failed") { + if strings.Contains(err.Error(), "Authentication failed") || + strings.Contains(err.Error(), " not found") { ctx.Data["Err_Auth"] = true - ctx.RenderWithErr(ctx.Tr("form.auth_failed", err), MIGRATE, &form) + ctx.RenderWithErr(ctx.Tr("form.auth_failed", strings.Replace(err.Error(), ":"+form.AuthPassword+"@", ":<password>@", 1)), MIGRATE, &form) return } diff --git a/routers/user/auth.go b/routers/user/auth.go index 61e572f9bc..5c6bb26fba 100644 --- a/routers/user/auth.go +++ b/routers/user/auth.go @@ -220,7 +220,6 @@ func SignUpPost(ctx *middleware.Context, cpt *captcha.Captcha, form auth.Registe Passwd: form.Password, IsActive: !setting.Service.RegisterEmailConfirm || isOauth, } - if err := models.CreateUser(u); err != nil { switch { case models.IsErrUserAlreadyExist(err): @@ -242,6 +241,16 @@ func SignUpPost(ctx *middleware.Context, cpt *captcha.Captcha, form auth.Registe } log.Trace("Account created: %s", u.Name) + // Auto-set admin for the only user. + if models.CountUsers() == 1 { + u.IsAdmin = true + u.IsActive = true + if err := models.UpdateUser(u); err != nil { + ctx.Handle(500, "UpdateUser", err) + return + } + } + // Bind social account. if isOauth { if err := models.BindUserOauth2(u.Id, sid); err != nil { diff --git a/routers/user/setting.go b/routers/user/setting.go index de9af6556b..c8b9f130d4 100644 --- a/routers/user/setting.go +++ b/routers/user/setting.go @@ -33,14 +33,12 @@ const ( func Settings(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("settings") - ctx.Data["PageIsUserSettings"] = true ctx.Data["PageIsSettingsProfile"] = true ctx.HTML(200, SETTINGS_PROFILE) } func SettingsPost(ctx *middleware.Context, form auth.UpdateProfileForm) { ctx.Data["Title"] = ctx.Tr("settings") - ctx.Data["PageIsUserSettings"] = true ctx.Data["PageIsSettingsProfile"] = true if ctx.HasError() { @@ -132,7 +130,6 @@ func SettingsAvatar(ctx *middleware.Context, form auth.UploadAvatarForm) { func SettingsEmails(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("settings") - ctx.Data["PageIsUserSettings"] = true ctx.Data["PageIsSettingsEmails"] = true emails, err := models.GetEmailAddresses(ctx.User.Id) @@ -147,7 +144,6 @@ func SettingsEmails(ctx *middleware.Context) { func SettingsEmailPost(ctx *middleware.Context, form auth.AddEmailForm) { ctx.Data["Title"] = ctx.Tr("settings") - ctx.Data["PageIsUserSettings"] = true ctx.Data["PageIsSettingsEmails"] = true emails, err := models.GetEmailAddresses(ctx.User.Id) @@ -232,14 +228,12 @@ func SettingsEmailPost(ctx *middleware.Context, form auth.AddEmailForm) { func SettingsPassword(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("settings") - ctx.Data["PageIsUserSettings"] = true ctx.Data["PageIsSettingsPassword"] = true ctx.HTML(200, SETTINGS_PASSWORD) } func SettingsPasswordPost(ctx *middleware.Context, form auth.ChangePasswordForm) { ctx.Data["Title"] = ctx.Tr("settings") - ctx.Data["PageIsUserSettings"] = true ctx.Data["PageIsSettingsPassword"] = true if ctx.HasError() { @@ -273,7 +267,6 @@ func SettingsPasswordPost(ctx *middleware.Context, form auth.ChangePasswordForm) func SettingsSSHKeys(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("settings") - ctx.Data["PageIsUserSettings"] = true ctx.Data["PageIsSettingsSSHKeys"] = true var err error @@ -288,7 +281,6 @@ func SettingsSSHKeys(ctx *middleware.Context) { func SettingsSSHKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) { ctx.Data["Title"] = ctx.Tr("settings") - ctx.Data["PageIsUserSettings"] = true ctx.Data["PageIsSettingsSSHKeys"] = true var err error @@ -355,7 +347,6 @@ func SettingsSSHKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) { func SettingsSocial(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("settings") - ctx.Data["PageIsUserSettings"] = true ctx.Data["PageIsSettingsSocial"] = true // Unbind social account. @@ -381,21 +372,8 @@ func SettingsSocial(ctx *middleware.Context) { func SettingsApplications(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("settings") - ctx.Data["PageIsUserSettings"] = true ctx.Data["PageIsSettingsApplications"] = true - // Delete access token. - remove, _ := com.StrTo(ctx.Query("remove")).Int64() - if remove > 0 { - if err := models.DeleteAccessTokenById(remove); err != nil { - ctx.Handle(500, "DeleteAccessTokenById", err) - return - } - ctx.Flash.Success(ctx.Tr("settings.delete_token_success")) - ctx.Redirect(setting.AppSubUrl + "/user/settings/applications") - return - } - tokens, err := models.ListAccessTokens(ctx.User.Id) if err != nil { ctx.Handle(500, "ListAccessTokens", err) @@ -406,42 +384,56 @@ func SettingsApplications(ctx *middleware.Context) { ctx.HTML(200, SETTINGS_APPLICATIONS) } -// FIXME: split to two different functions and pages to handle access token and oauth2 func SettingsApplicationsPost(ctx *middleware.Context, form auth.NewAccessTokenForm) { ctx.Data["Title"] = ctx.Tr("settings") - ctx.Data["PageIsUserSettings"] = true ctx.Data["PageIsSettingsApplications"] = true - switch ctx.Query("type") { - case "token": - if ctx.HasError() { - ctx.HTML(200, SETTINGS_APPLICATIONS) - return - } - - t := &models.AccessToken{ - Uid: ctx.User.Id, - Name: form.Name, - } - if err := models.NewAccessToken(t); err != nil { - ctx.Handle(500, "NewAccessToken", err) - return - } + if ctx.HasError() { + ctx.HTML(200, SETTINGS_APPLICATIONS) + return + } - ctx.Flash.Success(ctx.Tr("settings.generate_token_succees")) - ctx.Flash.Info(t.Sha1) + t := &models.AccessToken{ + UID: ctx.User.Id, + Name: form.Name, + } + if err := models.NewAccessToken(t); err != nil { + ctx.Handle(500, "NewAccessToken", err) + return } + ctx.Flash.Success(ctx.Tr("settings.generate_token_succees")) + ctx.Flash.Info(t.Sha1) + ctx.Redirect(setting.AppSubUrl + "/user/settings/applications") } +func SettingsDeleteApplication(ctx *middleware.Context) { + if err := models.DeleteAccessTokenByID(ctx.QueryInt64("id")); err != nil { + ctx.Flash.Error("DeleteAccessTokenByID: " + err.Error()) + } else { + ctx.Flash.Success(ctx.Tr("settings.delete_token_success")) + } + + ctx.JSON(200, map[string]interface{}{ + "redirect": setting.AppSubUrl + "/user/settings/applications", + }) +} + func SettingsDelete(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("settings") - ctx.Data["PageIsUserSettings"] = true ctx.Data["PageIsSettingsDelete"] = true if ctx.Req.Method == "POST" { - // FIXME: validate password. + if _, err := models.UserSignIn(ctx.User.Name, ctx.Query("password")); err != nil { + if models.IsErrUserNotExist(err) { + ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_password"), SETTINGS_DELETE, nil) + } else { + ctx.Handle(500, "UserSignIn", err) + } + return + } + if err := models.DeleteUser(ctx.User); err != nil { switch { case models.IsErrUserOwnRepos(err): diff --git a/templates/.VERSION b/templates/.VERSION index 2b9aa5b037..bd3cf2cb27 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.5.0815 Beta
\ No newline at end of file +0.6.5.0819 Beta
\ No newline at end of file diff --git a/templates/admin/auth/edit.tmpl b/templates/admin/auth/edit.tmpl index 12d1d1f8f2..3fd772de63 100644 --- a/templates/admin/auth/edit.tmpl +++ b/templates/admin/auth/edit.tmpl @@ -32,10 +32,6 @@ {{if eq $type 2}} <div class="field"> - <label class="req" for="domain">{{.i18n.Tr "admin.auths.domain"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_Domain}}ipt-error{{end}}" id="domain" name="domain" value="{{.Source.LDAP.Name}}" required /> - </div> - <div class="field"> <label class="req" for="host">{{.i18n.Tr "admin.auths.host"}}</label> <input class="ipt ipt-large ipt-radius {{if .Err_Host}}ipt-error{{end}}" id="host" name="host" value="{{.Source.LDAP.Host}}" required /> </div> @@ -44,12 +40,24 @@ <input class="ipt ipt-large ipt-radius {{if .Err_Port}}ipt-error{{end}}" id="port" name="port" value="{{.Source.LDAP.Port}}" required /> </div> <div class="field"> - <label class="req" for="base_dn">{{.i18n.Tr "admin.auths.base_dn"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_BaseDN}}ipt-error{{end}}" id="base_dn" name="base_dn" value="{{.Source.LDAP.BaseDN}}" /> + <label for="use_ssl">{{.i18n.Tr "admin.auths.enable_tls"}}</label> + <input name="use_ssl" type="checkbox" {{if .Source.LDAP.UseSSL}}checked{{end}}> + </div> + <div class="field"> + <label for="bind_dn">{{.i18n.Tr "admin.auths.bind_dn"}}</label> + <input class="ipt ipt-large ipt-radius {{if .Err_BindDN}}ipt-error{{end}}" id="bind_dn" name="bind_dn" value="{{.Source.LDAP.BindDN}}" /> + </div> + <div class="field"> + <label for="bind_password">{{.i18n.Tr "admin.auths.bind_password"}}</label> + <input class="ipt ipt-large ipt-radius {{if .Err_BindPassword}}ipt-error{{end}}" id="bind_password" name="bind_password" type="password" value="{{.Source.LDAP.BindPassword}}" /> + </div> + <div class="field"> + <label class="req" for="user_base">{{.i18n.Tr "admin.auths.user_base"}}</label> + <input class="ipt ipt-large ipt-radius {{if .Err_UserBase}}ipt-error{{end}}" id="user_base" name="user_base" value="{{.Source.LDAP.UserBase}}" /> </div> <div class="field"> - <label class="req" for="attribute_username">{{.i18n.Tr "admin.auths.attribute_username"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_Attributes}}ipt-error{{end}}" id="attribute_username" name="attribute_username" value="{{.Source.LDAP.AttributeUsername}}" /> + <label class="req" for="filter">{{.i18n.Tr "admin.auths.filter"}}</label> + <input class="ipt ipt-large ipt-radius {{if .Err_Filter}}ipt-error{{end}}" id="filter" name="filter" value="{{.Source.LDAP.Filter}}" /> </div> <div class="field"> <label for="attribute_name">{{.i18n.Tr "admin.auths.attribute_name"}}</label> @@ -63,14 +71,6 @@ <label class="req" for="attribute_mail">{{.i18n.Tr "admin.auths.attribute_mail"}}</label> <input class="ipt ipt-large ipt-radius {{if .Err_Attributes}}ipt-error{{end}}" id="attribute_mail" name="attribute_mail" value="{{.Source.LDAP.AttributeMail}}" /> </div> - <div class="field"> - <label class="req" for="filter">{{.i18n.Tr "admin.auths.filter"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_Filter}}ipt-error{{end}}" id="filter" name="filter" value="{{.Source.LDAP.Filter}}" /> - </div> - <div class="field"> - <label class="req" for="ms_ad_sa">{{.i18n.Tr "admin.auths.ms_ad_sa"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_MsAdSA}}ipt-error{{end}}" id="ms_ad_sa" name="ms_ad_sa" value="{{.Source.LDAP.MsAdSAFormat}}" /> - </div> {{else if eq $type 3}} <div class="field"> diff --git a/templates/admin/auth/new.tmpl b/templates/admin/auth/new.tmpl index 36b90cfb48..80d7c266f2 100644 --- a/templates/admin/auth/new.tmpl +++ b/templates/admin/auth/new.tmpl @@ -28,10 +28,6 @@ </div> <div class="ldap"> <div class="field"> - <label class="req" for="domain">{{.i18n.Tr "admin.auths.domain"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_Domain}}ipt-error{{end}}" id="domain" name="domain" value="{{.domain}}" /> - </div> - <div class="field"> <label class="req" for="host">{{.i18n.Tr "admin.auths.host"}}</label> <input class="ipt ipt-large ipt-radius {{if .Err_Host}}ipt-error{{end}}" id="host" name="host" value="{{.host}}" /> </div> @@ -40,12 +36,24 @@ <input class="ipt ipt-large ipt-radius {{if .Err_Port}}ipt-error{{end}}" id="port" name="port" value="{{.port}}" /> </div> <div class="field"> - <label class="req" for="base_dn">{{.i18n.Tr "admin.auths.base_dn"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_BaseDN}}ipt-error{{end}}" id="base_dn" name="base_dn" value="{{.base_dn}}" /> + <label for="use_ssl">{{.i18n.Tr "admin.auths.enable_tls"}}</label> + <input name="use_ssl" type="checkbox" {{if .use_ssl}}checked{{end}}> + </div> + <div class="field"> + <label class="req" for="bind_dn">{{.i18n.Tr "admin.auths.bind_dn"}}</label> + <input class="ipt ipt-large ipt-radius {{if .Err_BindDN}}ipt-error{{end}}" id="bind_dn" name="bind_dn" value="{{.bind_dn}}" /> + </div> + <div class="field"> + <label class="req" for="bind_password">{{.i18n.Tr "admin.auths.bind_password"}}</label> + <input class="ipt ipt-large ipt-radius {{if .Err_BindPassword}}ipt-error{{end}}" id="bind_password" name="bind_password" type="password" value="{{.bind_password}}" /> + </div> + <div class="field"> + <label class="req" for="user_base">{{.i18n.Tr "admin.auths.user_base"}}</label> + <input class="ipt ipt-large ipt-radius {{if .Err_UserBase}}ipt-error{{end}}" id="user_base" name="user_base" value="{{.user_base}}" /> </div> <div class="field"> - <label class="req" for="attribute_username">{{.i18n.Tr "admin.auths.attribute_username"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_AttributeUsername}}ipt-error{{end}}" id="attribute_username" name="attribute_username" value="{{.attribute_username}}" /> + <label class="req" for="filter">{{.i18n.Tr "admin.auths.filter"}}</label> + <input class="ipt ipt-large ipt-radius {{if .Err_Filter}}ipt-error{{end}}" id="filter" name="filter" value="{{.filter}}" /> </div> <div class="field"> <label for="attribute_name">{{.i18n.Tr "admin.auths.attribute_name"}}</label> @@ -59,14 +67,6 @@ <label class="req" for="attribute_mail">{{.i18n.Tr "admin.auths.attribute_mail"}}</label> <input class="ipt ipt-large ipt-radius {{if .Err_AttributeMail}}ipt-error{{end}}" id="attribute_mail" name="attribute_mail" value="{{.attribute_mail}}" /> </div> - <div class="field"> - <label class="req" for="filter">{{.i18n.Tr "admin.auths.filter"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_Filter}}ipt-error{{end}}" id="filter" name="filter" value="{{.filter}}" /> - </div> - <div class="field"> - <label class="req" for="ms_ad_sa">{{.i18n.Tr "admin.auths.ms_ad_sa"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_MsAdSA}}ipt-error{{end}}" id="ms_ad_sa" name="ms_ad_sa" value="{{.ms_ad_sa}}" /> - </div> </div> <div class="smtp hidden"> <div class="field"> diff --git a/templates/admin/monitor.tmpl b/templates/admin/monitor.tmpl index a7942e09c3..8092082563 100644 --- a/templates/admin/monitor.tmpl +++ b/templates/admin/monitor.tmpl @@ -1,74 +1,65 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="admin-wrapper"> - <div id="setting-wrapper" class="main-wrapper"> - <div id="admin-setting" class="container clear"> - {{template "admin/nav" .}} - <div class="grid-4-5 left"> - <div class="setting-content"> - {{template "ng/base/alert" .}} - <div id="setting-content"> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.monitor.cron"}}</strong> - </div> - <div class="panel-body admin-panel"> - <table class="table table-striped"> - <thead> - <tr> - <th>{{.i18n.Tr "admin.monitor.name"}}</th> - <th>{{.i18n.Tr "admin.monitor.schedule"}}</th> - <th>{{.i18n.Tr "admin.monitor.next"}}</th> - <th>{{.i18n.Tr "admin.monitor.previous"}}</th> - <th>{{.i18n.Tr "admin.monitor.execute_times"}}</th> - </tr> - </thead> - <tbody> - {{range .Entries}} - <tr> - <td>{{.Description}}</td> - <td>{{.Spec}}</td> - <td>{{.Next}}</td> - <td>{{.Prev}}</td> - <td>{{.ExecTimes}}</td> - </tr> - {{end}} - </tbody> - </table> - </div> - </div> - <br> - <div class="panel panel-radius"> - <div class="panel-header"> - <strong>{{.i18n.Tr "admin.monitor.process"}}</strong> - </div> - <div class="panel-body admin-panel"> - <table class="table table-striped"> - <thead> - <tr> - <th>Pid</th> - <th>{{.i18n.Tr "admin.monitor.desc"}}</th> - <th>{{.i18n.Tr "admin.monitor.start"}}</th> - <th>{{.i18n.Tr "admin.monitor.execute_time"}}</th> - </tr> - </thead> - <tbody> - {{range .Processes}} - <tr> - <td>{{.Pid}}</td> - <td>{{.Description}}</td> - <td>{{.Start}}</td> - <td>{{TimeSince .Start $.Lang}}</td> - </tr> - {{end}} - </tbody> - </table> - </div> - </div> - </div> - </div> - </div> +{{template "base/head" .}} +<div class="admin monitor"> + <div class="ui container"> + <div class="ui grid"> + {{template "admin/navbar" .}} + <div class="twelve wide column content"> + {{template "base/alert" .}} + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.monitor.cron"}} + </h4> + <div class="ui attached table segment"> + <table class="ui very basic striped table"> + <thead> + <tr> + <th>{{.i18n.Tr "admin.monitor.name"}}</th> + <th>{{.i18n.Tr "admin.monitor.schedule"}}</th> + <th>{{.i18n.Tr "admin.monitor.next"}}</th> + <th>{{.i18n.Tr "admin.monitor.previous"}}</th> + <th>{{.i18n.Tr "admin.monitor.execute_times"}}</th> + </tr> + </thead> + <tbody> + {{range .Entries}} + <tr> + <td>{{.Description}}</td> + <td>{{.Spec}}</td> + <td>{{DateFmtLong .Next}}</td> + <td>{{if gt .Prev.Year 1 }}{{DateFmtLong .Prev}}{{else}}N/A{{end}}</td> + <td>{{.ExecTimes}}</td> + </tr> + {{end}} + </tbody> + </table> </div> + + <h4 class="ui top attached header"> + {{.i18n.Tr "admin.monitor.process"}} + </h4> + <div class="ui attached table segment"> + <table class="ui very basic striped table"> + <thead> + <tr> + <th>Pid</th> + <th>{{.i18n.Tr "admin.monitor.desc"}}</th> + <th>{{.i18n.Tr "admin.monitor.start"}}</th> + <th>{{.i18n.Tr "admin.monitor.execute_time"}}</th> + </tr> + </thead> + <tbody> + {{range .Processes}} + <tr> + <td>{{.Pid}}</td> + <td>{{.Description}}</td> + <td>{{DateFmtLong .Start}}</td> + <td>{{TimeSince .Start $.Lang}}</td> + </tr> + {{end}} + </tbody> + </table> + </div> + </div> </div> + </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/admin/navbar.tmpl b/templates/admin/navbar.tmpl new file mode 100644 index 0000000000..e85fa24fbf --- /dev/null +++ b/templates/admin/navbar.tmpl @@ -0,0 +1,29 @@ +<div class="four wide column"> + <div class="ui vertical menu"> + <div class="header item">{{.i18n.Tr "admin_panel"}}</div> + <a class="{{if .PageIsAdminDashboard}}active{{end}} item" href="{{AppSubUrl}}/admin"> + {{.i18n.Tr "admin.dashboard"}} + </a> + <a class="{{if .PageIsAdminUsers}}active{{end}} item" href="{{AppSubUrl}}/admin/users"> + {{.i18n.Tr "admin.users"}} + </a> + <a class="{{if .PageIsAdminOrganizations}}active{{end}} item" href="{{AppSubUrl}}/admin/orgs"> + {{.i18n.Tr "admin.organizations"}} + </a> + <a class="{{if .PageIsAdminRepositories}}active{{end}} item" href="{{AppSubUrl}}/admin/repos"> + {{.i18n.Tr "admin.repositories"}} + </a> + <a class="{{if .PageIsAdminAuthentications}}active{{end}} item" href="{{AppSubUrl}}/admin/auths"> + {{.i18n.Tr "admin.authentication"}} + </a> + <a class="{{if .PageIsAdminConfig}}active{{end}} item" href="{{AppSubUrl}}/admin/config"> + {{.i18n.Tr "admin.config"}} + </a> + <a class="{{if .PageIsAdminNotices}}active{{end}} item" href="{{AppSubUrl}}/admin/notices"> + {{.i18n.Tr "admin.notices"}} + </a> + <a class="{{if .PageIsAdminMonitor}}active{{end}} item" href="{{AppSubUrl}}/admin/monitor"> + {{.i18n.Tr "admin.monitor"}} + </a> + </div> +</div>
\ No newline at end of file diff --git a/templates/base/alert_old.tmpl b/templates/base/alert_old.tmpl deleted file mode 100644 index bb1eb6aab1..0000000000 --- a/templates/base/alert_old.tmpl +++ /dev/null @@ -1,2 +0,0 @@ -{{if .Flash.ErrorMsg}}<div class="alert alert-danger form-error">{{.Flash.ErrorMsg}}</div>{{end}} -{{if .Flash.SuccessMsg}}<div class="alert alert-success">{{.Flash.SuccessMsg}}</div>{{end}}
\ No newline at end of file diff --git a/templates/base/footer_old.tmpl b/templates/base/footer_old.tmpl deleted file mode 100644 index adc831425a..0000000000 --- a/templates/base/footer_old.tmpl +++ /dev/null @@ -1,34 +0,0 @@ -<div class="wrapper-push"></div> -</div> -<footer id="footer"> - <div class="container footer-wrap"> - <div class="row"> - <div class="col-md-6"> - <p>© 2014 GoGits · Version: {{AppVer}} · - Page: <b>{{LoadTimes .PageStartTime}}</b> · - Template: <b>{{call .TmplLoadTimes}}</b> - </p> - </div> - - {{if .ShowFooterBranding}} - <div class="col-md-2" style="margin: -5px;"> - <a target="_blank" href="https://github.com/gogits/gogs"><i class="fa fa-github fa-2x"></i></a> - </div> - {{end}} - - <div class="col-md-4"> - <p class="desc"> - <a href="http://gogs.io">Official Website</a> - </p> - </div> - </div> - - <div class="row"> - <div class="col-md-6"> - Go Version: {{GoVer}} - </div> - </div> - </div> -</footer> -</body> -</html>
\ No newline at end of file diff --git a/templates/base/head.tmpl b/templates/base/head.tmpl index e8e84ce510..0470ac0bed 100644 --- a/templates/base/head.tmpl +++ b/templates/base/head.tmpl @@ -110,7 +110,7 @@ <i class="octicon icon octicon-person"></i> {{.i18n.Tr "your_profile"}}<!-- Your profile --> </a> - <a class="item" href="{{AppSubUrl}}/user/settings"> + <a class="{{if .PageIsUserSettings}}active{{end}} item" href="{{AppSubUrl}}/user/settings"> <i class="octicon icon octicon-settings"></i> {{.i18n.Tr "your_settings"}}<!-- Your settings --> </a> @@ -121,7 +121,7 @@ {{if .IsAdmin}} <div class="divider"></div> - <a class="item" href="{{AppSubUrl}}/admin"> + <a class="{{if .PageIsAdmin}}active{{end}} item" href="{{AppSubUrl}}/admin"> <i class="icon settings"></i> {{.i18n.Tr "admin_panel"}}<!-- Admin Panel --> </a> diff --git a/templates/base/head_old.tmpl b/templates/base/head_old.tmpl deleted file mode 100644 index 9a4665de05..0000000000 --- a/templates/base/head_old.tmpl +++ /dev/null @@ -1,40 +0,0 @@ -<!DOCTYPE html> -<html> - <head{{if AppSubUrl}} data-suburl="{{AppSubUrl}}"{{end}}> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <link rel="shortcut icon" href="{{AppSubUrl}}/img/favicon.png" /> - <meta http-equiv="X-UA-Compatible" content="IE=edge"/> - <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/> - <meta name="author" content="Gogs - Go Git Service" /> - <meta name="description" content="Gogs(Go Git Service) is a GitHub-like clone in the Go Programming Language" /> - <meta name="keywords" content="go, git"> - <meta name="referrer" content="no-referrer" /> - <meta name="_csrf" content="{{.CsrfToken}}" /> - {{if .GoGetImport}}<meta name="go-import" content="{{.GoGetImport}} git {{.CloneLink.HTTPS}}">{{end}} - - <!-- Stylesheets --> - {{if CdnMode}} - <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"> - <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet"> - - <script src="//code.jquery.com/jquery-1.11.3.min.js"></script> - <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script> - {{else}} - <link href="{{AppSubUrl}}/css/bootstrap.min.css" rel="stylesheet" /> - <link href="{{AppSubUrl}}/css/font-awesome.min.css" rel="stylesheet" /> - - <script src="{{AppSubUrl}}/js/jquery-1.11.3.min.js"></script> - <script src="{{AppSubUrl}}/js/bootstrap.min.js"></script> - {{end}} - - <link href="{{AppSubUrl}}/css/todc-bootstrap.min.css" rel="stylesheet" /> - <link href="{{AppSubUrl}}/css/markdown.css" rel="stylesheet" /> - <link href="{{AppSubUrl}}/css/gogs.css" rel="stylesheet" /> - - <script src="{{AppSubUrl}}/js/lib.js"></script> - <script src="{{AppSubUrl}}/js/app.js"></script> - <title>{{if .Title}}{{.Title}} - {{end}}{{AppName}}</title> - </head> - <body> - <div id="wrapper"> - <noscript>Please enable JavaScript in your browser!</noscript>
\ No newline at end of file diff --git a/templates/base/navbar.tmpl b/templates/base/navbar.tmpl deleted file mode 100644 index b69e9dc4a0..0000000000 --- a/templates/base/navbar.tmpl +++ /dev/null @@ -1,49 +0,0 @@ -<div class="masthead navbar" id="masthead"> - <div class="container"> - <nav class="nav"> - <a id="nav-logo" class="nav-item pull-left{{if .PageIsHome}} active{{end}}" href="{{AppSubUrl}}/"><img src="{{AppSubUrl}}/img/favicon.png" alt="Gogs Logo" id="logo"></a> - <a class="nav-item pull-left{{if .PageIsUserDashboard}} active{{end}}" href="{{AppSubUrl}}/">Dashboard</a> - <a class="nav-item pull-left{{if .PageIsHelp}} active{{end}}" target="_blank" href="http://gogs.io/docs">Help</a> - {{if .IsSigned}} - {{if .HasAccess}} - <!-- <form class="nav-item pull-left{{if .PageIsNewRepo}} active{{end}}" id="nav-search-form"> - <div class="input-group"> - <div class="input-group-btn"> - <button type="button" class="btn btn-sm btn-default dropdown-toggle" data-toggle="dropdown">{{if .Repository}}This Repository{{else}}All Repositories{{end}} <span class="caret"></span></button> - <ul class="dropdown-menu"> - {{if .Repository}} - <li><a href="#">This Repository</a></li> - <li class="divider"></li> - {{end}} - <li><a href="#">All Repositories</a></li> - </ul> - </div> - <input type="search" class="form-control input-sm" name="q" placeholder="search code, commits and issues"/> - </div> - </form> --> - {{end}} - <a id="nav-out" class="nav-item navbar-right navbar-btn btn btn-danger" href="{{AppSubUrl}}/user/logout/"><i class="fa fa-power-off fa-lg"></i></a> - <a id="nav-avatar" class="nav-item navbar-right{{if .PageIsUserProfile}} active{{end}}" href="{{.SignedUser.HomeLink}}" data-toggle="tooltip" data-placement="bottom" title="{{.SignedUserName}}"> - <img src="{{.SignedUser.AvatarLink}}?s=28" alt="user-avatar" title="username"/> - </a> - <a class="navbar-right nav-item{{if .PageIsUserSetting}} active{{end}}" href="{{AppSubUrl}}/user/settings" data-toggle="tooltip" data-placement="bottom" title="Settings"><i class="fa fa-cogs fa-lg"></i></a> - {{if .IsAdmin}} - <a class="navbar-right nav-item{{if .PageIsAdmin}} active{{end}}" href="{{AppSubUrl}}/admin" data-toggle="tooltip" data-placement="bottom" title="Admin"><i class="fa fa-gear fa-lg"></i></a> - {{end}} - <div class="navbar-right nav-item pull-right{{if .PageIsNewRepo}} active{{end}}" id="nav-repo-new" data-toggle="tooltip" data-placement="bottom" title="New Repo"> - <button type="button" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-plus-square fa-lg"></i></button> - <div class="dropdown-menu"> - <ul class="list-unstyled"> - <li><a href="{{AppSubUrl}}/repo/create"><i class="fa fa-book"></i>Repository</a></li> - <li><a href="{{AppSubUrl}}/repo/migrate"><i class="fa fa-clipboard"></i>Migration</a></li> - <!-- <li><a href="#"><i class="fa fa-users"></i>Organization</a></li> --> - </ul> - </div> - </div> - {{else}} - <a id="nav-signin" class="nav-item navbar-right navbar-btn btn btn-danger" href="{{AppSubUrl}}/user/login/" rel="nofollow">Sign In</a> - <a id="nav-signup" class="nav-item navbar-right" href="{{AppSubUrl}}/user/sign_up/" rel="nofollow">Sign Up</a> - {{end}} - </nav> - </div> -</div> diff --git a/templates/install.tmpl b/templates/install.tmpl index 30a837f98a..e28468f07b 100644 --- a/templates/install.tmpl +++ b/templates/install.tmpl @@ -9,8 +9,6 @@ {{template "base/alert" .}} <form class="ui form" action="{{AppSubUrl}}/install" method="post"> - {{.CsrfTokenHtml}} - <!-- Dtabase Settings --> <h4 class="ui dividing header">{{.i18n.Tr "install.db_title"}}</h4> <p>{{.i18n.Tr "install.requite_db_desc"}}</p> @@ -65,7 +63,7 @@ </div> <div id="sqlite_settings" class="{{if not (eq .CurDbOption "SQLite3")}}hide{{end}}"> - <div class="inline required field {{if .Err_DbPath}}error{{end}}"> + <div class="inline required field {{if or .Err_DbPath .Err_DbSetting}}error{{end}}"> <label for="db_path">{{.i18n.Tr "install.path"}}</label> <input id="db_path" name="db_path" value="{{.db_path}}"> <span class="help">{{.i18n.Tr "install.sqlite_helper"}}</span> @@ -108,7 +106,7 @@ <!-- Optional Settings --> <h4 class="ui dividing header">{{.i18n.Tr "install.optional_title"}}</h4> <div class="ui accordion optional field"> - <div class="title {{if .Err_SMTP}}text-error{{end}}"> + <div class="title {{if .Err_SMTP}}text red{{end}}"> <i class="icon dropdown"></i> {{.i18n.Tr "install.email_title"}} </div> @@ -173,7 +171,7 @@ </div> <div class="ui accordion optional field"> - <div class="title {{if .Err_Admin}}text-error{{end}}"> + <div class="title {{if .Err_Admin}}text red{{end}}"> <i class="icon dropdown"></i> {{.i18n.Tr "install.admin_title"}} </div> diff --git a/templates/org/new.tmpl b/templates/org/new.tmpl deleted file mode 100644 index 4e42775a49..0000000000 --- a/templates/org/new.tmpl +++ /dev/null @@ -1,32 +0,0 @@ -{{template "base/head" .}} -{{template "base/navbar" .}} -<div class="container" id="body"> - <form action="{{AppSubUrl}}/org/create" method="post" class="form-horizontal card" id="org-create"> - {{.CsrfTokenHtml}} - <h3>Create New Organization</h3> - {{template "base/alert" .}} - <div class="form-group {{if .Err_OrgName}}has-error has-feedback{{end}}"> - <label class="col-md-2 control-label">Organization<strong class="text-danger">*</strong></label> - <div class="col-md-8"> - <input name="orgname" type="text" class="form-control" placeholder="Type your organization name" value="{{.orgname}}" required="required"> - <span class="help-block">Great organization names are short and memorable. </span> - </div> - </div> - - <div class="form-group{{if .Err_Email}} has-error has-feedback{{end}}"> - <label class="col-md-2 control-label">Email<strong class="text-danger">*</strong></label> - <div class="col-md-8"> - <input name="email" type="text" class="form-control" placeholder="Type organization's email" value="{{.email}}" required="required"> - <span class="help-block">Organization's Email receives all notifications and confirmations.</span> - </div> - </div> - - <div class="form-group"> - <div class="col-md-offset-2 col-md-8"> - <button type="submit" class="btn btn-lg btn-primary">Create An Organization</button> - <a href="{{AppSubUrl}}/" class="text-danger">Cancel</a> - </div> - </div> - </form> -</div> -{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/repo/branch.tmpl b/templates/repo/branch.tmpl deleted file mode 100644 index 8d2d59d7fd..0000000000 --- a/templates/repo/branch.tmpl +++ /dev/null @@ -1,42 +0,0 @@ -{{template "base/head" .}} -{{template "base/navbar" .}} -{{template "repo/nav" .}} -{{template "repo/toolbar" .}} -<div id="body" class="container"> - <div id="source"> - <div class="panel panel-default branch-box info-box"> - <div class="panel-heading info-head"> - <h4>Branches</h4> - </div> - <table class="panel-footer table branch-list table table-hover"> - <thead> - <tr> - <th class="name"></th> - <th class="behind">Behind</th> - <th class="ahead">Ahead</th> - <th class="date">Last Commit</th> - <th class="action"></th> - </tr> - </thead> - <tbody> - <tr class="branch-main"> - <td class="name" colspan="3"> - <a href="#"><strong>BranchName</strong></a> - <button class="btn btn-primary btn-sm">base branch</button> - </td> - <td class="date">3 years ago</td> - <td class="action"></td> - </tr> - <tr> - <td class="name"><a href="#"><strong>BranchName</strong></a></td> - <td class="behind">102 <span class="graph" style="width: 100%"></span></td> - <td class="ahead"><span class="graph" style="width: 4%"></span>4</td> - <td class="date">3 years ago</td> - <td class="action"><a class="btn btn-info btn-sm" href="#">compare</a></td> - </tr> - </tbody> - </table> - </div> - </div> -</div> -{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/repo/issue/create.tmpl b/templates/repo/issue/create.tmpl deleted file mode 100644 index 307be6aa22..0000000000 --- a/templates/repo/issue/create.tmpl +++ /dev/null @@ -1,126 +0,0 @@ -{{template "base/head_old" .}} -{{template "base/navbar" .}} -{{template "repo/nav" .}} -{{template "repo/toolbar" .}} -<div id="body" class="container"> - <div id="issue"> - <form class="form" action="{{.RepoLink}}/issues/new" method="post" id="issue-create-form" enctype="multipart/form-data"> - {{.CsrfTokenHtml}} - {{template "base/alert" .}} - <div class="col-md-1"> - <img class="avatar" src="{{.SignedUser.AvatarLink}}" alt=""/> - </div> - <div class="col-md-8 panel panel-default"> - <div class="form-group panel-body"> - <input class="form-control input-lg" type="text" name="title" required="required" placeholder="Title" value="{{.title}}" autofocus /> - </div> - <div class="form-group panel-body"> - {{if .IsRepositoryOwner}} - <span><strong id="assigned" data-no-assigned="No one">No one</strong> will be assigned</span> - <input type="hidden" name="assigneeid" value="0" id="assignee"/> - <div style="display: inline-block;position: relative"> - <button type="button" class="dropdown-toggle btn btn-default btn-sm" data-toggle="dropdown"> - <i class="fa fa-group"></i> - <span class="caret"></span> - </button> - <div class="dropdown-menu assignee"> - <ul class="list-unstyled"> - <li data-uid="0" class="clear-assignee hidden"><i class="fa fa-times-circle-o"></i> Clear assignee</li> - {{range .Collaborators}} - <li data-uid="{{.Id}}"><img src="{{.AvatarLink}}"><strong>{{.Name}}</strong> {{.FullName}}</li> - {{end}} - </ul> - </div> - </div> - <span><strong id="milestone" data-no-milestone="No milestone">No milestone</strong></span> - <input type="hidden" name="milestoneid" value="0" id="milestone-id"/> - <div style="display: inline-block;position: relative"> - <button type="button" class="dropdown-toggle btn btn-default btn-sm" data-toggle="dropdown"> - <i class="fa fa-check-square-o"></i> - <span class="caret"></span> - </button> - <div class="dropdown-menu milestone"> - <ul class="list-unstyled"> - <li data-id="0" class="clear-milestone milestone-item hidden"><i class="fa fa-times-circle-o"></i> Clear milestone </li> - <li class="milestone-list"> - <ul class="nav nav-tabs" data-init="tabs"> - <li class="active"><a href="#milestone-open" data-toggle="tab">Open</a></li> - <li><a href="#milestone-close" data-toggle="tab">Closed</a></li> - </ul> - <div class="tab-content"> - <div class="tab-pane active" id="milestone-open"> - {{if not .OpenMilestones}} - <p class="milestone-item">Nothing to show</p> - {{else}} - <ul class="list-unstyled"> - {{range .OpenMilestones}} - <li class="milestone-item" data-id="{{.ID}}"> - <p><strong>{{.Name}}</strong></p> - <!-- <p>due to 3 days later</p> --> - </li> - {{end}} - </ul> - {{end}} - </div> - - <div class="tab-pane" id="milestone-close"> - {{if not .ClosedMilestones}} - <p class="milestone-item">Nothing to show</p> - {{else}} - <ul class="list-unstyled"> - {{range .ClosedMilestones}} - <li class="milestone-item" data-id="{{.ID}}"> - <p><strong>{{.Name}}</strong></p> - <p>Closed {{TimeSince .ClosedDate $.Lang}}</p> - </li> - {{end}} - </ul> - {{end}} - </div> - </div> - </li> - </ul> - </div> - </div> - </div> - {{end}} - <div class="form-group panel-body"> - <div class="md-help pull-right"><!-- todo help link --> - Content with <a href="https://help.github.com/articles/markdown-basics">Markdown</a> - </div> - <ul class="nav nav-tabs" data-init="tabs"> - <li class="active issue-write"><a href="#issue-textarea" data-toggle="tab">Write</a></li> - <li class="issue-preview"><a href="#issue-preview" data-toggle="tab" data-ajax="/api/v1/markdown" data-ajax-name="issue-preview" data-ajax-context="{{.RepoLink}}" data-ajax-method="post" data-preview="#issue-preview">Preview</a></li> - </ul> - <div class="tab-content"> - <div class="tab-pane" id="issue-textarea"> - <div class="form-group"> - <div id="submit-error" class="text-danger"></div> - <textarea class="form-control" name="content" id="issue-content" rows="10" placeholder="Write some content" data-ajax-rel="issue-preview" data-ajax-val="val" data-ajax-field="text">{{.content}}</textarea> - </div> - </div> - <div class="tab-pane issue-preview-content" id="issue-preview">loading...</div> - </div> - </div> - {{if .AttachmentsEnabled}} - <div id="attached"> - <div id="attached-list"> - <b>Attachments:</b> - </div> - </div> - {{end}} - <div class="text-right panel-body"> - <div class="form-group"> - {{if .AttachmentsEnabled}} - <input type="file" accept="{{.AllowedTypes}}" style="display: none;" id="attachments-input" name="attachments" multiple /> - <button class="btn-default btn attachment-add" id="attachments-button">Select Attachments...</button> - {{end}} - <input type="hidden" value="id" name="repo-id"/> - <button class="btn-success btn">Create new issue</button> - </div> - </div> - </div> - </form> - </div> -</div> -{{template "base/footer_old" .}} diff --git a/templates/repo/issue/view_old.tmpl b/templates/repo/issue/view_old.tmpl deleted file mode 100644 index d13364aa54..0000000000 --- a/templates/repo/issue/view_old.tmpl +++ /dev/null @@ -1,284 +0,0 @@ -{{template "base/head_old" .}} -{{template "base/navbar" .}} -{{template "repo/nav" .}} -{{template "repo/toolbar" .}} -<div id="body" class="container"> - <div id="issue" data-id="{{.Issue.ID}}"> - <div id="issue-{{.Issue.ID}}" class="issue-whole issue-is-opening"> - <div class="issue-wrap col-md-10"> - <div class="issue-head clearfix"> - <div class="number pull-right">#{{.Issue.Index}}</div> - <a class="author pull-left" href="{{AppSubUrl}}/{{.Issue.Poster.Name}}"><img class="avatar" src="{{.Issue.Poster.AvatarLink}}" alt="" width="30"/></a> - <h1 class="title pull-left">{{.Issue.Name}}</h1> - <input id="issue-edit-title" class="form-control input-lg pull-left hidden" type="text" value="{{.Issue.Name}}" data-ajax-rel="issue-edit-save" data-ajax-val="val" data-ajax-field="title"/> - <input type="hidden" value="{{.Issue.ID}}" data-ajax-rel="issue-edit-save" data-ajax-val="val" data-ajax-field="issue_id"/> - <p class="info pull-left"> - {{if .IsIssueOwner}}<a class="btn btn-default pull-right issue-edit" href="#" id="issue-edit-btn">Edit</a> - <a class="btn btn-danger pull-right issue-edit-cancel hidden" href="#">Cancel</a> - <a class="btn btn-primary pull-right issue-edit-save hidden" href="#" data-ajax="{{.RepoLink}}/issues/{{.Issue.Index}}" data-ajax-name="issue-edit-save" data-ajax-method="post">Save</a>{{end}} - <span class="status label label-{{if .Issue.IsClosed}}danger{{else}}success{{end}}">{{if .Issue.IsClosed}}Closed{{else}}Open{{end}}</span> - <a href="{{AppSubUrl}}/{{.Issue.Poster.Name}}" class="author"><strong>{{.Issue.Poster.Name}}</strong></a> opened this issue - <span class="time">{{TimeSince .Issue.Created $.Lang}}</span> · {{.Issue.NumComments}} comments - </p> - </div> - <div class="issue-main"> - <div class="panel panel-default issue-content"> - <div class="panel-body"> - <div class="content markdown"> - {{Str2html .Issue.RenderedContent}} - </div> - <div class="issue-edit-content hidden"> - <div class="form-group"> - <div class="md-help pull-right">Content with <a href="https://help.github.com/articles/markdown-basics">Markdown</a> - </div> - <ul class="nav nav-tabs" data-init="tabs"> - <li class="issue-write active"><a href="#issue-edit-textarea" data-toggle="tab">Write</a></li> - <li class="issue-preview"><a href="#issue-edit-preview" data-toggle="tab" data-ajax="/api/v1/markdown" data-ajax-name="issue-edit-preview" data-ajax-context="{{.RepoLink}}" data-ajax-method="post" data-preview="#issue-edit-preview">Preview</a></li> - </ul> - <div class="tab-content"> - <div class="tab-pane active" id="issue-edit-textarea"> - <div class="form-group"> - <input type="hidden" value="1" name="issueIndex"> - <textarea class="form-control" name="content" id="issue-edit-content" rows="10" placeholder="Write some content" data-ajax-rel="issue-edit-preview" data-ajax-val="val" data-ajax-field="text">{{.Issue.Content}}</textarea> - </div> - </div> - <div class="tab-pane issue-preview-content" id="issue-edit-preview">Loading...</div> - </div> - </div> - </div> - </div> - {{with $attachments := .Issue.Attachments}} - {{if $attachments}} - <div class="attachments"> - <span class="attachment-label label label-info">Attachments:</span> - - {{range $attachments}} - <a class="attachment label label-default" href="/attachments/{{.UUID}}">{{.Name}}</a> - {{end}} - </div> - {{end}} - {{end}} - </div> - {{range .Comments}} - {{/* 0 = COMMENT, 1 = REOPEN, 2 = CLOSE, 3 = ISSUE, 4 = COMMIT, 5 = PULL */}} - {{if eq .Type 0}} - <div class="issue-child" id="issue-comment-{{.Id}}"> - <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}"><img class="avatar" src="{{.Poster.AvatarLink}}" alt=""/></a> - <div class="issue-content panel panel-default"> - <div class="panel-heading"> - <a href="{{AppSubUrl}}/{{.Poster.Name}}" class="user">{{.Poster.Name}}</a> commented <span class="time">{{TimeSince .Created $.Lang}}</span> - <!-- <a class="issue-comment-del pull-right issue-action" href="#" title="Edit Comment"><i class="fa fa-times-circle"></i></a> - <a class="issue-comment-edit pull-right issue-action" href="#" title="Remove Comment" data-url="{remove-link}"><i class="fa fa-edit"></i></a> --> - {{if eq .Poster.Id $.Owner.Id}} - <span class="role label label-default pull-right">Owner</span> - {{end}} - </div> - <div class="panel-body markdown"> - {{if len .Content}} - {{Str2html .Content}} - {{else}} - <i>No comment entered</i> - {{end}} - </div> - {{with $attachments := .Attachments}} - {{if $attachments}} - <div class="attachments"> - <span class="attachment-label label label-info">Attachments:</span> - - {{range $attachments}} - <a class="attachment label label-default" href="{{.IssueId}}/attachment/{{.Id}}">{{.Name}}</a> - {{end}} - </div> - {{end}} - {{end}} - </div> - </div> - {{else if eq .Type 1}} - <div class="issue-child issue-opened"> - <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}"><img class="avatar" src="{{.Poster.AvatarLink}}" alt="" /></a> - <div class="issue-content"> - <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}">{{.Poster.Name}}</a> <span class="label label-success">Reopened</span> this issue <span class="time">{{TimeSince .Created $.Lang}}</span> - </div> - </div> - {{else if eq .Type 2}} - <div class="issue-child issue-closed"> - <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}"><img class="avatar" src="{{.Poster.AvatarLink}}" alt=""/></a> - <div class="issue-content"> - <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}">{{.Poster.Name}}</a> <span class="label label-danger">Closed</span> this issue <span class="time">{{TimeSince .Created $.Lang}}</span> - </div> - </div> - {{else if eq .Type 4}} - <div class="issue-child issue-reference issue-reference-commit"> - <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}"><img class="avatar" src="{{.Poster.AvatarLink}}" alt=""/></a> - <div class="issue-content"> - <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}">{{.Poster.Name}}</a> <span class="label label-primary">Referenced</span> this issue <span class="time">{{TimeSince .Created $.Lang}}</span> - <p> - <a class="user pull-left" href="{{AppSubUrl}}/{{.Poster.Name}}"><img class="avatar" src="{{.Poster.AvatarLink}}" alt=""/></a> - {{.ContentHtml}} - </p> - </div> - </div> - {{end}} - {{end}} - <hr class="issue-line"/> - {{if .SignedUser}}<div class="issue-child issue-reply"> - <a class="user pull-left" href="{{AppSubUrl}}/{{.SignedUser.Name}}"><img class="avatar" src="{{.SignedUser.AvatarLink}}" alt=""/></a> - <form class="panel panel-default issue-content" action="{{.RepoLink}}/comment/new" method="post" enctype="multipart/form-data"> - {{.CsrfTokenHtml}} - <div class="panel-body"> - <div class="form-group"> - <div class="md-help pull-right">Content with <a href="https://help.github.com/articles/markdown-basics">Markdown</a> - </div> - <ul class="nav nav-tabs" data-init="tabs"> - <li class="active issue-write"><a href="#issue-textarea" data-toggle="tab">Write</a></li> - <li class="issue-preview"><a href="#issue-preview" data-toggle="tab" data-ajax="/api/v1/markdown" data-ajax-name="issue-preview" data-ajax-context="{{.RepoLink}}" data-ajax-method="post" data-preview="#issue-preview">Preview</a></li> - </ul> - <div class="tab-content"> - <div class="tab-pane" id="issue-textarea"> - <div class="form-group"> - <div id="submit-error" class="text-danger"></div> - <input type="hidden" value="{{.Issue.Index}}" name="issueIndex"/> - <textarea class="form-control" name="content" id="issue-reply-content" rows="10" placeholder="Write some content" data-ajax-rel="issue-preview" data-ajax-val="val" data-ajax-field="text">{{.content}}</textarea> - </div> - </div> - <div class="tab-pane issue-preview-content" id="issue-preview">Loading...</div> - </div> - </div> - {{if .AttachmentsEnabled}} - <!-- <div id="attached"> - <div id="attached-list"> - <b>Attachments:</b> - </div> - </div> --> - {{end}} - <div class="text-right"> - <div class="form-group"> - {{if .AttachmentsEnabled}} - <!-- <input type="file" accept="{{.AllowedTypes}}" style="display: none;" id="attachments-input" name="attachments" multiple /> - <button class="btn-default btn attachment-add" id="attachments-button">Select Attachments...</button> --> - {{end}} - {{if .IsIssueOwner}}{{if .Issue.IsClosed}} - <input type="submit" class="btn-default btn issue-open" id="issue-open-btn" data-origin="Reopen" data-text="Reopen & Comment" name="change_status" value="Reopen"/>{{else}} - <input type="submit" class="btn-default btn issue-close" id="issue-close-btn" data-origin="Close" data-text="Close & Comment" name="change_status" value="Close"/>{{end}}{{end}} - <button class="btn-success btn" id="issue-reply-btn">Comment</button> - </div> - </div> - </div> - </form> - </div>{{else}}<div class="alert alert-warning"><a class="btn btn-success btn-lg" href="{{AppSubUrl}}/user/sign_up">Sign up for free</a> to join this conversation. Already have an account? <a href="{{AppSubUrl}}/user/login">Sign in to comment</a></div>{{end}} - </div> - </div> - - <div class="issue-bar col-md-2"> - <div class="labels" data-ajax="{{.Issue.Index}}/label"> - {{if .IsRepositoryOwner}} - <div class="pull-right action"> - <button class="btn btn-default btn-sm" data-toggle="dropdown"> - <i class="fa fa-tags"></i> - <span class="caret"></span> - </button> - <div class="dropdown-menu dropdown-menu-right no"> - <ul class="list-unstyled"> - {{range .Labels}} - <li class="{{if not .IsChecked}}no-{{end}}checked" data-id="{{.ID}}"> - {{if .IsChecked}}<span class="check pull-left"><i class="fa fa-check"></i></span>{{end}} - <span class="color" style="background-color: {{.Color}}"></span> - <span class="name">{{.Name}}</span> - </li> - {{end}} - </ul> - </div> - </div> - {{end}} - <h4>Labels</h4> - {{if .Issue.Labels}} - {{range .Issue.Labels}} - <p id="label-{{.ID}}" class="label-item label-white" style="background-color: {{.Color}}"><strong>{{.Name}}</strong></p> - {{end}} - {{else}} - <p>None yet</p> - {{end}} - </div> - <div class="milestone" data-milestone="{{.Milestone.ID}}" data-ajax="{{.Issue.Index}}/milestone"> - <div class="pull-right action"> - {{if .IsRepositoryOwner}} - <button class="btn btn-default btn-sm" data-toggle="dropdown"> - <i class="fa fa-check-square-o"></i> - <span class="caret"></span> - </button> - <div class="dropdown-menu dropdown-menu-right"> - <ul class="list-unstyled"> - <li data-id="0" class="clear-milestone milestone-item hidden"><i class="fa fa-times-circle-o"></i> Clear milestone </li> - <li class="milestone-list"> - <ul class="nav nav-tabs" data-init="tabs"> - <li class="active"><a href="#milestone-open" data-toggle="tab">Open</a></li> - <li><a href="#milestone-close" data-toggle="tab">Closed</a></li> - </ul> - <div class="tab-content"> - <div class="tab-pane active" id="milestone-open"> - {{if not .OpenMilestones}} - <p class="milestone-item">Nothing to show</p> - {{else}} - <ul class="list-unstyled"> - {{range .OpenMilestones}} - <li class="milestone-item" data-id="{{.ID}}"> - <p><strong>{{.Name}}</strong></p> - <!-- <p>due to 3 days later</p> --> - </li> - {{end}} - </ul> - {{end}} - </div> - - <div class="tab-pane" id="milestone-close"> - {{if not .ClosedMilestones}} - <p class="milestone-item">Nothing to show</p> - {{else}} - <ul class="list-unstyled"> - {{range .ClosedMilestones}} - <li class="milestone-item" data-id="{{.ID}}"> - <p><strong>{{.Name}}</strong></p> - <p>Closed {{TimeSince .ClosedDate $.Lang}}</p> - </li> - {{end}} - </ul> - {{end}} - </div> - </div> - </li> - </ul> - </div> - {{end}} - </div> - <h4>Milestone</h4> - {{if .Milestone}} - <p class="completion{{if eq .Milestone.Completeness 0}} hidden{{end}}"><span style="width:{{.Milestone.Completeness}}%"> </span></p> - <p class="name"><strong><a href="{{$.RepoLink}}/issues?milestone={{.Milestone.ID}}{{if $.Issue.IsClosed}}&state=closed{{end}}">{{.Milestone.Name}}</a></strong></p> - {{else}} - <p class="name">No milestone</p> - {{end}} - </div> - - <div class="assignee" data-assigned="{{if .Issue.Assignee}}{{.Issue.Assignee.Id}}{{else}}0{{end}}" data-ajax="{{.Issue.Index}}/assignee">{{if .IsRepositoryOwner}} - <div class="pull-right action"> - <button type="button" class="dropdown-toggle btn btn-default btn-sm" data-toggle="dropdown"> - <i class="fa fa-group"></i> - <span class="caret"></span> - </button> - <div class="dropdown-menu dropdown-menu-right"> - <ul class="list-unstyled"> - <li data-uid="0" class="clear-assignee hidden"><i class="fa fa-times-circle-o"></i> Clear assignee</li> - {{range .Collaborators}} - <li data-uid="{{.Id}}"><img src="{{.AvatarLink}}"><strong>{{.Name}}</strong></li> - {{end}} - </ul> - </div> - </div>{{end}} - <h4>Assignee</h4> - <p>{{if .Issue.Assignee}}<img src="{{.Issue.Assignee.AvatarLink}}"><strong>{{.Issue.Assignee.Name}}</strong>{{else}}No one assigned{{end}}</p> - </div> - </div> - </div> - </div> -</div> -{{template "base/footer_old" .}} diff --git a/templates/repo/list.tmpl b/templates/repo/list.tmpl deleted file mode 100644 index 403c62d62c..0000000000 --- a/templates/repo/list.tmpl +++ /dev/null @@ -1,10 +0,0 @@ -{{template "base/head" .}} -{{template "base/navbar" .}} -<div class="container" id="body"> - <ul> - {{range .Repos}} - <li>{{.Name}} stars: {{.NumStars}} forks: {{.NumForks}} watches:{{.NumWatchs}}</li> - {{end}} - </ul> -</div> -{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/repo/migrate.tmpl b/templates/repo/migrate.tmpl index cc23888db2..6e9dc9c1a4 100644 --- a/templates/repo/migrate.tmpl +++ b/templates/repo/migrate.tmpl @@ -1,82 +1,98 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="repo-wrapper"> - <form id="repo-migrate-form" class="form form-align panel panel-radius" action="{{AppSubUrl}}/repo/migrate" method="post"> - {{.CsrfTokenHtml}} - <div class="panel-header"><h2>{{.i18n.Tr "new_migrate"}}</h2></div> - <div class="panel-content"> - {{template "ng/base/alert" .}} - <div class="field"> - <label class="req" for="clone_addr">{{.i18n.Tr "repo.migrate.clone_address"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_CloneAddr}}ipt-error{{end}}" id="clone_addr" name="clone_addr" type="text" value="{{.clone_addr}}" required /> +{{template "base/head" .}} +<div class="repository new migrate"> + <div class="ui middle very relaxed page grid"> + <div class="column"> + <form class="ui form" action="{{.Link}}" method="post"> + {{.CsrfTokenHtml}} + <h3 class="ui top attached header"> + {{.i18n.Tr "new_migrate"}} + </h3> + <div class="ui attached segment"> + {{template "base/alert" .}} + <div class="inline required field {{if .Err_CloneAddr}}error{{end}}"> + <label for="clone_addr">{{.i18n.Tr "repo.migrate.clone_address"}}</label> + <input id="clone_addr" name="clone_addr" value="{{.clone_addr}}" autofocus required> + <span class="help">{{.i18n.Tr "repo.migrate.clone_address_desc"}}</span> + </div> + <div class="ui accordion optional field"> + <div class="title {{if .Err_Auth}}text red active{{end}}"> + <i class="icon dropdown"></i> + {{.i18n.Tr "repo.need_auth"}} </div> - <div class="field"> - <span class="form-label"></span> - <button class="btn btn-large btn-gray btn-radius" id="auth-button" data-toggle="collapse" data-target="#repo-import-auth">{{.i18n.Tr "repo.need_auth"}}</button> - <div id="repo-migrate-auth" {{if not .Err_Auth}}class="hide"{{end}}> - <div class="field"> - <label for="auth_username">{{.i18n.Tr "username"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_Auth}}ipt-error{{end}}" id="auth_username" name="auth_username" type="text" value="{{.auth_username}}" /> - </div> - <div class="field"> - <label for="auth_password">{{.i18n.Tr "password"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_Auth}}ipt-error{{end}}" id="auth_password" name="auth_password" type="password" value="{{.auth_password}}" /> - </div> - </div> + <div class="content {{if .Err_Auth}}active{{end}}"> + <div class="inline field {{if .Err_Auth}}error{{end}}"> + <label for="auth_username">{{.i18n.Tr "username"}}</label> + <input id="auth_username" name="auth_username" value="{{.auth_username}}" {{if not .auth_username}}data-need-clear="true"{{end}}> + </div> + <input class="fake" type="password"> + <div class="inline field {{if .Err_Auth}}error{{end}}"> + <label for="auth_password">{{.i18n.Tr "password"}}</label> + <input id="auth_password" name="auth_password" type="password" value="{{.auth_password}}"> + </div> </div> - <hr/> - <div class="field"> - <label for="owner" class="req">{{.i18n.Tr "repo.owner"}}</label> - <input id="repo-owner-id" type="hidden" name="uid" value="{{.ContextUser.Id}}" /> - <div class="inline-block drop"> - <a href="#" class="drop-bottom"> - <img class="avatar" src="{{.ContextUser.AvatarLink}}" id="repo-owner-avatar" alt="user-avatar"> - <strong id="repo-owner-name">{{.ContextUser.Name}}</strong> - </a> - <ul class="drop-down menu menu-vertical menu-radius switching-list" id="repo-create-owner-list"> - <li {{if eq $.ContextUser.Id .SignedUser.Id}}class="checked"{{end}} data-uid="{{.SignedUser.Id}}"> - <a> - <i class="octicon octicon-check"></i> - <img class="avatar" src="{{.SignedUser.AvatarLink}}" alt="user-avatar"> - <strong>{{.SignedUser.Name}}</strong> - </a> - </li> - {{range .Orgs}} - <li {{if eq $.ContextUser.Id .Id}}class="checked"{{end}} data-uid="{{.Id}}"> - <a> - <i class="octicon octicon-check"></i> - <img class="avatar" src="{{.AvatarLink}}" alt="user-avatar"> - <strong>{{.Name}}</strong> - </a> - </li> - {{end}} - </ul> - </div> - </div> - <div class="field"> - <label class="req" for="repo-name">{{.i18n.Tr "repo.repo_name"}}</label> - <input class="ipt ipt-large ipt-radius {{if .Err_RepoName}}ipt-error{{end}}" id="repo-name" name="repo_name" type="text" value="{{.repo_name}}" required /> - </div> - <div class="field"> - <label for="visibility">{{.i18n.Tr "repo.visibility"}}</label> - <input class="ipt-chk" id="visibility" name="private" type="checkbox" {{if .private}}checked{{end}} /> - <span>{{.i18n.Tr "repo.visiblity_helper" | Str2html}}</span> - </div> - <div class="field"> - <label for="migrate_type">{{.i18n.Tr "repo.migrate_type"}}</label> - <input class="ipt-chk" id="migrate_type" name="mirror" type="checkbox" {{if .mirror}}checked{{end}} /> - <span>{{.i18n.Tr "repo.migrate_type_helper" | Str2html}}</span> - </div> - <div class="field clear"> - <label class="left" for="description">{{.i18n.Tr "repo.repo_desc"}}</label> - <textarea class="ipt ipt-large ipt-radius {{if .Err_Description}}ipt-error{{end}}" id="description" name="description">{{.description}}</textarea> - </div> - <div class="field"> - <label for="repo-create-submit"></label> - <button class="btn btn-large btn-blue btn-radius" id="repo-create-submit">{{.i18n.Tr "repo.migrate_repo"}}</button> - <a class="btn btn-small btn-gray btn-radius" id="repo-create-cancel" href="{{AppSubUrl}}/"><strong>{{.i18n.Tr "cancel"}}</strong></a> - </div> - </div> - </form> + </div> + + <div class="ui divider"></div> + + <div class="inline required field {{if .Err_Owner}}error{{end}}"> + <label>{{.i18n.Tr "repo.owner"}}</label> + <div class="ui selection dropdown"> + <input type="hidden" id="uid" name="uid" value="{{.ContextUser.Id}}" required> + <span class="text"> + <img class="ui mini image" src="{{.ContextUser.AvatarLink}}"> + {{.ContextUser.Name}} + </span> + <i class="dropdown icon"></i> + <div class="menu"> + <div class="item" data-value="{{.SignedUser.Id}}"> + <img class="ui mini image" src="{{.SignedUser.AvatarLink}}"> + {{.SignedUser.Name}} + </div> + {{range .Orgs}} + {{if .IsOwnedBy $.SignedUser.Id}} + <div class="item" data-value="{{.Id}}"> + <img class="ui mini image" src="{{.AvatarLink}}"> + {{.Name}} + </div> + {{end}} + {{end}} + </div> + </div> + </div> + + <div class="inline required field {{if .Err_RepoName}}error{{end}}"> + <label for="repo_name">{{.i18n.Tr "repo.repo_name"}}</label> + <input id="repo_name" name="repo_name" value="{{.repo_name}}" required> + </div> + <div class="inline field"> + <label>{{.i18n.Tr "repo.visibility"}}</label> + <div class="ui toggle checkbox"> + <input name="private" type="checkbox" {{if .private}}checked{{end}}> + <label>{{.i18n.Tr "repo.visiblity_helper" | Safe}}</label> + </div> + </div> + <div class="inline field"> + <label>{{.i18n.Tr "repo.migrate_type"}}</label> + <div class="ui toggle checkbox"> + <input name="mirror" type="checkbox" {{if .mirror}}checked{{end}}> + <label>{{.i18n.Tr "repo.migrate_type_helper" | Safe}}</label> + </div> + </div> + <div class="inline field {{if .Err_Description}}error{{end}}"> + <label for="description">{{.i18n.Tr "repo.repo_desc"}}</label> + <textarea id="description" name="description">{{.description}}</textarea> + </div> + + <div class="inline field"> + <label></label> + <button class="ui green button"> + {{.i18n.Tr "repo.migrate_repo"}} + </button> + <a class="ui button" href="{{AppSubUrl}}/">{{.i18n.Tr "cancel"}}</a> + </div> + </div> + </form> + </div> + </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/repo/settings/deploy_keys.tmpl b/templates/repo/settings/deploy_keys.tmpl index 5d66fa2fad..09f66b6b96 100644 --- a/templates/repo/settings/deploy_keys.tmpl +++ b/templates/repo/settings/deploy_keys.tmpl @@ -2,73 +2,73 @@ <div class="repository settings"> {{template "repo/header" .}} <div class="ui container"> - <div class="ui grid"> - {{template "repo/settings/navbar" .}} - <div class="twelve wide column content"> - {{template "base/alert" .}} - <h3 class="ui top attached header"> - {{.i18n.Tr "repo.settings.deploy_keys"}} - <div class="ui right"> - <div id="add-deploy-key" class="ui blue tiny button">{{.i18n.Tr "repo.settings.add_deploy_key"}}</div> - </div> - </h3> - <div class="ui attached segment"> - {{if .Deploykeys}} - <div class="ui key list"> - {{range .Deploykeys}} - <div class="item ui grid"> - <div class="one wide column"> - <i class="ssh-key-state-indicator fa fa-circle{{if .HasRecentActivity}} active invert poping up{{else}}-o{{end}}" {{if .HasRecentActivity}}data-content="{{$.i18n.Tr "settings.key_state_desc"}}" data-variation="inverted"{{end}}></i> - </div> - <div class="one wide column"> - <i class="mega-octicon octicon-key left"></i> - </div> - <div class="eleven wide column"> - <strong>{{.Name}}</strong> - <div class="print meta"> - {{.Fingerprint}} + <div class="ui grid"> + {{template "repo/settings/navbar" .}} + <div class="twelve wide column content"> + {{template "base/alert" .}} + <h4 class="ui top attached header"> + {{.i18n.Tr "repo.settings.deploy_keys"}} + <div class="ui right"> + <div class="ui blue tiny show-panel button" data-panel="#add-deploy-key-panel">{{.i18n.Tr "repo.settings.add_deploy_key"}}</div> + </div> + </h4> + <div class="ui attached segment"> + {{if .Deploykeys}} + <div class="ui key list"> + {{range .Deploykeys}} + <div class="item ui grid"> + <div class="one wide column"> + <i class="ssh-key-state-indicator fa fa-circle{{if .HasRecentActivity}} active invert poping up{{else}}-o{{end}}" {{if .HasRecentActivity}}data-content="{{$.i18n.Tr "settings.key_state_desc"}}" data-variation="inverted"{{end}}></i> </div> - <div class="activity meta"> - <i>{{$.i18n.Tr "settings.add_on"}} <span>{{DateFmtShort .Created}}</span> — <i class="octicon octicon-info"></i> {{if .HasUsed}}{{$.i18n.Tr "settings.last_used"}} <span>{{DateFmtShort .Updated}}</span>{{else}}{{$.i18n.Tr "settings.no_activity"}}{{end}}</i> + <div class="one wide column"> + <i class="mega-octicon octicon-key left"></i> + </div> + <div class="eleven wide column"> + <strong>{{.Name}}</strong> + <div class="print meta"> + {{.Fingerprint}} + </div> + <div class="activity meta"> + <i>{{$.i18n.Tr "settings.add_on"}} <span>{{DateFmtShort .Created}}</span> — <i class="octicon octicon-info"></i> {{if .HasUsed}}{{$.i18n.Tr "settings.last_used"}} <span>{{DateFmtShort .Updated}}</span>{{else}}{{$.i18n.Tr "settings.no_activity"}}{{end}}</i> + </div> + </div> + <div class="two wide column"> + <button class="ui red tiny button delete-button" data-url="{{$.Link}}/delete" data-id="{{.ID}}"> + {{$.i18n.Tr "settings.delete_key"}} + </button> </div> </div> - <div class="two wide column"> - <button class="ui red tiny button delete-button" data-url="{{$.Link}}/delete" data-id="{{.ID}}"> - {{$.i18n.Tr "settings.delete_key"}} - </button> - </div> + {{end}} </div> + {{else}} + {{.i18n.Tr "repo.settings.no_deploy_keys"}} {{end}} </div> - {{else}} - {{.i18n.Tr "repo.settings.no_deploy_keys"}} - {{end}} - </div> - <br> - <div {{if not .HasError}}class="hide"{{end}} id="add-deploy-key-panel"> - <h4 class="ui top attached header"> - {{.i18n.Tr "repo.settings.add_deploy_key"}} - </h4> - <div class="ui attached segment"> - <form class="ui form" action="{{.Link}}" method="post"> - {{.CsrfTokenHtml}} - <div class="field {{if .Err_Title}}error{{end}}"> - <label>{{.i18n.Tr "repo.settings.title"}}</label> - <input name="title" value="{{.title}}" autofocus required> - </div> - <div class="field {{if .Err_Content}}error{{end}}"> - <label>{{.i18n.Tr "repo.settings.deploy_key_content"}}</label> - <textarea name="content" required>{{.content}}</textarea> - </div> - <button class="ui green button"> - {{.i18n.Tr "repo.settings.add_deploy_key"}} - </button> - </form> + <br> + <div {{if not .HasError}}class="hide"{{end}} id="add-deploy-key-panel"> + <h4 class="ui top attached header"> + {{.i18n.Tr "repo.settings.add_deploy_key"}} + </h4> + <div class="ui attached segment"> + <form class="ui form" action="{{.Link}}" method="post"> + {{.CsrfTokenHtml}} + <div class="field {{if .Err_Title}}error{{end}}"> + <label>{{.i18n.Tr "repo.settings.title"}}</label> + <input name="title" value="{{.title}}" autofocus required> + </div> + <div class="field {{if .Err_Content}}error{{end}}"> + <label>{{.i18n.Tr "repo.settings.deploy_key_content"}}</label> + <textarea name="content" required>{{.content}}</textarea> + </div> + <button class="ui green button"> + {{.i18n.Tr "repo.settings.add_deploy_key"}} + </button> + </form> + </div> </div> </div> </div> </div> - </div> </div> <div class="ui small basic delete modal"> diff --git a/templates/repo/toolbar.tmpl b/templates/repo/toolbar.tmpl deleted file mode 100644 index 44df6815f2..0000000000 --- a/templates/repo/toolbar.tmpl +++ /dev/null @@ -1,45 +0,0 @@ -<div id="repo-toolbar"> - <div class="container"> - <nav class="navbar navbar-toolbar navbar-default" role="navigation"> - <div class="collapse navbar-collapse"> - <ul class="nav navbar-nav"> - <li class="{{if .IsRepoToolbarSource}}active{{end}}"><a href="{{.RepoLink}}{{if .BranchName}}{{if ne .BranchName `master`}}/src/{{.BranchName}}{{end}}{{end}}">Source</a></li> - {{if not .IsBareRepo}} - <li class="{{if .IsRepoToolbarCommits}}active{{end}}"><a href="{{.RepoLink}}/commits/{{if .BranchName}}{{.BranchName}}{{else}}master{{end}}">Commits</a></li> - <!-- <li class="{{if .IsRepoToolbarBranches}}active{{end}}"><a href="{{.RepoLink}}/branches">Branches</a></li> --> - <!-- <li class="{{if .IsRepoToolbarPulls}}active{{end}}"><a href="{{.RepoLink}}/pulls">Pull Requests</a></li> --> - <li class="{{if .IsRepoToolbarIssues}}active{{end}}"><a href="{{.RepoLink}}/issues">{{if .Repository.NumOpenIssues}}<span class="badge">{{.Repository.NumOpenIssues}}</span> {{end}}Issues <!--<span class="badge">42</span>--></a></li> - {{if .IsRepoToolbarIssues}} - <li class="tmp">{{if .IsRepoToolbarIssuesList}} - <a href="{{.RepoLink}}/issues/new"><button class="btn btn-primary btn-sm">New Issue</button></a> - <a href="{{.RepoLink}}/milestones"><button class="btn btn-success btn-sm">Milestones</button></a> - {{end}}</li> - {{end}} - <li class="{{if .IsRepoToolbarReleases}}active{{end}}"><a href="{{.RepoLink}}/releases">{{if .Repository.NumTags}}<span class="badge">{{.Repository.NumTags}}</span> {{end}}Releases</a></li> - {{if .IsRepoToolbarReleases}}{{if .IsRepositoryOwner}}{{if not .IsRepoReleaseNew}} - <li class="tmp"><a href="{{.RepoLink}}/releases/new"><button class="btn btn-primary btn-sm">New Release</button></a></li> - {{end}}{{end}}{{end}} - <!-- <li class="dropdown"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown">More <b class="caret"></b></a> - <ul class="dropdown-menu"> - <li><a href="{{.RepoLink}}/wiki">Wiki</a></li> - </ul> - </li> -->{{end}} - </ul> - <ul class="nav navbar-nav navbar-right"> - {{if not .IsBareRepo}} - <!-- <li class="dropdown"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown">Statistic <b class="caret"></b></a> - <ul class="dropdown-menu"> - <li><a href="#">Graphic</a></li> - <li><a href="#">Pulse</a></li> - <li><a href="#">Network</a></li> - </ul> - </li> -->{{end}}{{if .IsRepositoryAdmin}} - <li class="{{if .IsRepoToolbarSetting}}active{{end}}"><a href="{{.RepoLink}}/settings">Settings</a> - </li>{{end}} - </ul> - </div> - </nav> - </div> -</div> diff --git a/templates/user/settings/applications.tmpl b/templates/user/settings/applications.tmpl index 2e766a3dc7..b51ebc8b76 100644 --- a/templates/user/settings/applications.tmpl +++ b/templates/user/settings/applications.tmpl @@ -1,56 +1,85 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="setting-wrapper" class="main-wrapper"> - <div id="user-profile-setting" class="container clear"> - {{template "user/settings/nav" .}} - <div class="grid-4-5 left"> - <div class="setting-content"> - {{template "ng/base/alert" .}} - <div id="setting-content"> - <div id="user-applications-panel" class="panel panel-radius"> - <div class="panel-header"> - <a class="show-form-btn" data-target-form="#access-add-form"> - <button class="btn btn-medium btn-black btn-radius right">{{.i18n.Tr "settings.generate_new_token"}}</button> - </a> - <strong>{{.i18n.Tr "settings.manage_access_token"}}</strong> - </div> - <ul class="panel-body setting-list"> - <li>{{.i18n.Tr "settings.tokens_desc"}}</li> - {{range .Tokens}} - <li class="ssh clear"> - <span class="active-icon left label label-{{if .HasRecentActivity}}green{{else}}gray{{end}} label-radius"></span> - <i class="fa fa-send fa-2x left"></i> - <div class="ssh-content left"> - <p><strong>{{.Name}}</strong></p> - <p class="activity"><i>{{$.i18n.Tr "settings.add_on"}} <span title="{{DateFmtLong .Created}}">{{DateFmtShort .Created}}</span> — <i class="octicon octicon-info"></i>{{if .HasUsed}}{{$.i18n.Tr "settings.last_used"}} {{DateFmtShort .Updated}}{{else}}{{$.i18n.Tr "settings.no_activity"}}{{end}}</i></p> - </div> - <a href="{{AppSubUrl}}/user/settings/applications?remove={{.Id}}"> - <button class="btn btn-small btn-red btn-radius ssh-btn right">{{$.i18n.Tr "settings.delete_token"}}</button> - </a> - </li> - {{end}} - </ul> - </div> - <br> - <form class="panel panel-radius form form-align form-settings-add hide" id="access-add-form" action="{{AppSubUrl}}/user/settings/applications" method="post"> - {{.CsrfTokenHtml}} - <p class="panel-header"><strong>{{.i18n.Tr "settings.generate_new_token"}}</strong></p> - <div class="panel-body"> - <div class="text-center panel-desc">{{.i18n.Tr "settings.new_token_desc"}}</div> - <input type="hidden" name="type" value="token"> - <p class="field"> - <label class="req" for="token-name">{{.i18n.Tr "settings.token_name"}}</label> - <input class="ipt ipt-radius" id="token-name" name="name" required /> - </p> - <p class="field"> - <label></label> - <button class="btn btn-green btn-medium btn-radius" id="ssh-add-btn">{{.i18n.Tr "settings.generate_token"}}</button> - </p> - </div> - </form> +{{template "base/head" .}} +<div class="user settings"> + <div class="ui container"> + <div class="ui grid"> + {{template "user/settings/navbar" .}} + <div class="twelve wide column content"> + {{template "base/alert" .}} + <h4 class="ui top attached header"> + {{.i18n.Tr "settings.manage_access_token"}} + <div class="ui right"> + <div class="ui blue tiny show-panel button" data-panel="#add-access-token-panel">{{.i18n.Tr "settings.generate_new_token"}}</div> + </div> + </h4> + <div class="ui attached segment"> + <div class="ui key list"> + <div class="item"> + {{.i18n.Tr "settings.tokens_desc"}} + </div> + {{range .Tokens}} + <div class="item ui grid"> + <div class="one wide column"> + <i class="ssh-key-state-indicator fa fa-circle{{if .HasRecentActivity}} active invert poping up{{else}}-o{{end}}" {{if .HasRecentActivity}}data-content="{{$.i18n.Tr "settings.token_state_desc"}}" data-variation="inverted"{{end}}></i> + </div> + <div class="one wide column"> + <i class="fa fa-send fa-2x left"></i> + </div> + <div class="eleven wide column"> + <strong>{{.Name}}</strong> + <div class="activity meta"> + <i>{{$.i18n.Tr "settings.add_on"}} <span>{{DateFmtShort .Created}}</span> — <i class="octicon octicon-info"></i> {{if .HasUsed}}{{$.i18n.Tr "settings.last_used"}} <span>{{DateFmtShort .Updated}}</span>{{else}}{{$.i18n.Tr "settings.no_activity"}}{{end}}</i> </div> + </div> + <div class="two wide column"> + <button class="ui red tiny button delete-button" data-url="{{$.Link}}/delete" data-id="{{.ID}}"> + {{$.i18n.Tr "settings.delete_token"}} + </button> + </div> </div> + {{end}} + </div> + </div> + <br> + <div {{if not .HasError}}class="hide"{{end}} id="add-access-token-panel"> + <h4 class="ui top attached header"> + {{.i18n.Tr "settings.generate_new_token"}} + </h4> + <div class="ui attached segment"> + <form class="ui form" action="{{.Link}}" method="post"> + {{.CsrfTokenHtml}} + <p>{{.i18n.Tr "settings.new_token_desc"}}</p> + <div class="field {{if .Err_Name}}error{{end}}"> + <label for="name">{{.i18n.Tr "settings.token_name"}}</label> + <input id="name" name="name" value="{{.name}}" autofocus required> + </div> + <button class="ui green button"> + {{.i18n.Tr "settings.generate_token"}} + </button> + </form> + </div> </div> + </div> + </div> + </div> +</div> + +<div class="ui small basic delete modal"> + <div class="ui icon header"> + <i class="trash icon"></i> + {{.i18n.Tr "settings.access_token_deletion"}} + </div> + <div class="content"> + <p>{{.i18n.Tr "settings.access_token_deletion_desc"}}</p> + </div> + <div class="actions"> + <div class="ui red basic inverted cancel button"> + <i class="remove icon"></i> + {{.i18n.Tr "modal.no"}} + </div> + <div class="ui green basic inverted ok button"> + <i class="checkmark icon"></i> + {{.i18n.Tr "modal.yes"}} </div> + </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/user/settings/delete.tmpl b/templates/user/settings/delete.tmpl index a6d3663dbe..d9a0837b5e 100644 --- a/templates/user/settings/delete.tmpl +++ b/templates/user/settings/delete.tmpl @@ -1,35 +1,51 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -<div id="setting-wrapper" class="main-wrapper"> - <div id="user-profile-setting" class="container clear"> - {{template "user/settings/nav" .}} - <div class="grid-4-5 left"> - <div class="setting-content"> - {{template "ng/base/alert" .}} - <div id="setting-content"> - <div id="user-profile-setting-content" class="panel panel-warning panel-radius"> - <p class="panel-header"><strong>{{.i18n.Tr "settings.delete_account"}}</strong></p> - <div class="panel-body panel-content"> - <span class="alert alert-red alert-radius block"><i class="octicon octicon-alert"></i>{{.i18n.Tr "settings.delete_prompt" | Str2html}}</span> - <form id="delete-account-form" action="{{AppSubUrl}}/user/settings/delete" method="post"> - {{.CsrfTokenHtml}} - <p class="field"> - <span class="form-label"></span> - <button class="btn btn-red btn-large btn-radius" id="delete-account-btn" href="#delete-account-modal">{{.i18n.Tr "settings.confirm_delete_account"}}</button> - </p> - </form> - <div class="white-popup-block mfp-hide" id="delete-account-modal"> - <h1 class="text-red">{{.i18n.Tr "settings.delete_account_title"}}</h1> - <p>{{.i18n.Tr "settings.delete_account_desc"}}</p> - <br> - <button class="btn btn-red btn-large btn-radius" id="delete-account-submit">{{.i18n.Tr "settings.continue"}}</button> - <button class="btn btn-large btn-radius popup-modal-dismiss">{{.i18n.Tr "settings.cancel"}}</button> - </div> - </div> - </div> - </div> +{{template "base/head" .}} +<div class="user settings"> + <div class="ui container"> + <div class="ui grid"> + {{template "user/settings/navbar" .}} + <div class="twelve wide column content"> + {{template "base/alert" .}} + <h4 class="ui top attached warning header"> + {{.i18n.Tr "settings.delete_account"}} + </h4> + <div class="ui attached warning segment"> + <div class="ui red message"> + <p>{{.i18n.Tr "settings.delete_prompt" | Str2html}}</p> + </div> + <form class="ui form" id="delete-form" action="{{.Link}}" method="post"> + {{.CsrfTokenHtml}} + <input class="fake" type="password"> + <div class="inline required field {{if .Err_Password}}error{{end}}"> + <label for="password">{{.i18n.Tr "password"}}</label> + <input id="password" name="password" type="password" autofocus required> </div> + <div class="ui red button delete-button" data-type="form" data-form="#delete-form"> + {{.i18n.Tr "settings.confirm_delete_account"}} + </div> + </form> </div> + </div> + </div> + </div> +</div> + +<div class="ui small basic delete modal"> + <div class="ui icon header"> + <i class="trash icon"></i> + {{.i18n.Tr "settings.delete_account_title"}} + </div> + <div class="content"> + <p>{{.i18n.Tr "settings.delete_account_desc"}}</p> + </div> + <div class="actions"> + <div class="ui red basic inverted cancel button"> + <i class="remove icon"></i> + {{.i18n.Tr "modal.no"}} + </div> + <div class="ui green basic inverted ok button"> + <i class="checkmark icon"></i> + {{.i18n.Tr "modal.yes"}} </div> + </div> </div> -{{template "ng/base/footer" .}}
\ No newline at end of file +{{template "base/footer" .}}
\ No newline at end of file diff --git a/templates/user/settings/navbar.tmpl b/templates/user/settings/navbar.tmpl new file mode 100644 index 0000000000..3b8973b8e0 --- /dev/null +++ b/templates/user/settings/navbar.tmpl @@ -0,0 +1,28 @@ +<div class="four wide column"> + <div class="ui vertical menu"> + <div class="header item">{{.i18n.Tr "settings"}}</div> + <a class="{{if .PageIsSettingsProfile}}active{{end}} item" href="{{AppSubUrl}}/user/settings"> + {{.i18n.Tr "settings.profile"}} + </a> + <a class="{{if .PageIsSettingsPassword}}active{{end}} item" href="{{AppSubUrl}}/user/settings/password"> + {{.i18n.Tr "settings.password"}} + </a> + <a class="{{if .PageIsSettingsEmails}}active{{end}} item" href="{{AppSubUrl}}/user/settings/email"> + {{.i18n.Tr "settings.emails"}} + </a> + <a class="{{if .PageIsSettingsSSHKeys}}active{{end}} item" href="{{AppSubUrl}}/user/settings/ssh"> + {{.i18n.Tr "settings.ssh_keys"}} + </a> + {{if .HasOAuthService}} + <a class="{{if .PageIsSettingsSocial}}active{{end}} item" href="{{AppSubUrl}}/user/settings/social"> + {{.i18n.Tr "settings.social"}} + </a> + {{end}} + <a class="{{if .PageIsSettingsApplications}}active{{end}} item" href="{{AppSubUrl}}/user/settings/applications"> + {{.i18n.Tr "settings.applications"}} + </a> + <a class="{{if .PageIsSettingsDelete}}active{{end}} item" href="{{AppSubUrl}}/user/settings/delete"> + {{.i18n.Tr "settings.delete"}} + </a> + </div> +</div> |