diff --git a/conf/auth.d/github.conf.example b/conf/auth.d/github.conf.example index 976c1ed06..f222a85d8 100644 --- a/conf/auth.d/github.conf.example +++ b/conf/auth.d/github.conf.example @@ -1,8 +1,8 @@ # This is an example of GitHub authentication # -id = 106 +id = 105 type = github -name = GitHub OAuth 2.0 +name = GitHub is_activated = true [config] diff --git a/gogs.go b/gogs.go index 2d8350f76..f520b7717 100644 --- a/gogs.go +++ b/gogs.go @@ -16,7 +16,7 @@ import ( "github.com/gogs/gogs/pkg/setting" ) -const APP_VER = "0.11.82.1218" +const APP_VER = "0.11.83.1218" func init() { setting.AppVer = APP_VER diff --git a/models/login_source.go b/models/login_source.go index dd31adc15..7c6c5f49a 100644 --- a/models/login_source.go +++ b/models/login_source.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. +// FIXME: Put this file into its own package and separate into different files based on login sources. package models import ( @@ -62,7 +63,7 @@ var ( _ core.Conversion = &LDAPConfig{} _ core.Conversion = &SMTPConfig{} _ core.Conversion = &PAMConfig{} - _ core.Conversion = &GITHUBConfig{} + _ core.Conversion = &GitHubConfig{} ) type LDAPConfig struct { @@ -110,15 +111,15 @@ func (cfg *PAMConfig) ToDB() ([]byte, error) { return jsoniter.Marshal(cfg) } -type GITHUBConfig struct { - ApiEndpoint string // Github service (e.g. https://github.com/api/v1/) +type GitHubConfig struct { + APIEndpoint string // GitHub service (e.g. https://api.github.com/) } -func (cfg *GITHUBConfig) FromDB(bs []byte) error { +func (cfg *GitHubConfig) FromDB(bs []byte) error { return jsoniter.Unmarshal(bs, &cfg) } -func (cfg *GITHUBConfig) ToDB() ([]byte, error) { +func (cfg *GitHubConfig) ToDB() ([]byte, error) { return jsoniter.Marshal(cfg) } @@ -191,7 +192,7 @@ func (s *LoginSource) BeforeSet(colName string, val xorm.Cell) { case LOGIN_PAM: s.Cfg = new(PAMConfig) case LOGIN_GITHUB: - s.Cfg = new(GITHUBConfig) + s.Cfg = new(GitHubConfig) default: panic("unrecognized login source type: " + com.ToStr(*val)) } @@ -227,7 +228,7 @@ func (s *LoginSource) IsPAM() bool { return s.Type == LOGIN_PAM } -func (s *LoginSource) IsGITHUB() bool { +func (s *LoginSource) IsGitHub() bool { return s.Type == LOGIN_GITHUB } @@ -271,8 +272,8 @@ func (s *LoginSource) PAM() *PAMConfig { return s.Cfg.(*PAMConfig) } -func (s *LoginSource) GITHUB() *GITHUBConfig { - return s.Cfg.(*GITHUBConfig) +func (s *LoginSource) GitHub() *GitHubConfig { + return s.Cfg.(*GitHubConfig) } func CreateLoginSource(source *LoginSource) error { @@ -516,7 +517,7 @@ func LoadAuthSources() { loginSource.Cfg = &PAMConfig{} case "github": loginSource.Type = LOGIN_GITHUB - loginSource.Cfg = &GITHUBConfig{} + loginSource.Cfg = &GitHubConfig{} default: log.Fatal(2, "Failed to load authentication source: unknown type '%s'", authType) } @@ -755,10 +756,18 @@ func LoginViaPAM(user *User, login, password string, sourceID int64, cfg *PAMCon } return user, CreateUser(user) } -func LoginViaGITHUB(user *User, login, password string, sourceID int64, cfg *GITHUBConfig, autoRegister bool) (*User, error) { - login_id, fullname, email, url, location, err := github.GITHUBAuth(cfg.ApiEndpoint, login, password) + +//________.__ __ ___ ___ ___. +/// _____/|__|/ |_ / | \ __ _\_ |__ +/// \ ___| \ __\/ ~ \ | \ __ \ +//\ \_\ \ || | \ Y / | / \_\ \ +//\______ /__||__| \___|_ /|____/|___ / +//\/ \/ \/ + +func LoginViaGitHub(user *User, login, password string, sourceID int64, cfg *GitHubConfig, autoRegister bool) (*User, error) { + fullname, email, url, location, err := github.Authenticate(cfg.APIEndpoint, login, password) if err != nil { - if strings.Contains(err.Error(), "Authentication failure") { + if strings.Contains(err.Error(), "401") { return nil, errors.UserNotExist{0, login} } return nil, err @@ -769,7 +778,7 @@ func LoginViaGITHUB(user *User, login, password string, sourceID int64, cfg *GIT } user = &User{ LowerName: strings.ToLower(login), - Name: login_id, + Name: login, FullName: fullname, Email: email, Website: url, @@ -782,6 +791,7 @@ func LoginViaGITHUB(user *User, login, password string, sourceID int64, cfg *GIT } return user, CreateUser(user) } + func remoteUserLogin(user *User, login, password string, source *LoginSource, autoRegister bool) (*User, error) { if !source.IsActived { return nil, errors.LoginSourceNotActivated{source.ID} @@ -795,7 +805,7 @@ func remoteUserLogin(user *User, login, password string, source *LoginSource, au case LOGIN_PAM: return LoginViaPAM(user, login, password, source.ID, source.Cfg.(*PAMConfig), autoRegister) case LOGIN_GITHUB: - return LoginViaGITHUB(user, login, password, source.ID, source.Cfg.(*GITHUBConfig), autoRegister) + return LoginViaGitHub(user, login, password, source.ID, source.Cfg.(*GitHubConfig), autoRegister) } return nil, errors.InvalidLoginSourceType{source.Type} diff --git a/models/models.go b/models/models.go index 18931628d..c4b60a0e2 100644 --- a/models/models.go +++ b/models/models.go @@ -347,7 +347,7 @@ func ImportDatabase(dirPath string, verbose bool) (err error) { case LOGIN_PAM: bean.Cfg = new(PAMConfig) case LOGIN_GITHUB: - bean.Cfg = new(GITHUBConfig) + bean.Cfg = new(GitHubConfig) default: return fmt.Errorf("unrecognized login source type:: %v", tp) } diff --git a/pkg/auth/github/github.go b/pkg/auth/github/github.go index 2a8d8b488..a06608a3e 100644 --- a/pkg/auth/github/github.go +++ b/pkg/auth/github/github.go @@ -1,9 +1,12 @@ +// Copyright 2018 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 github import ( "context" "crypto/tls" - "errors" "fmt" "net/http" "strings" @@ -11,35 +14,37 @@ import ( "github.com/google/go-github/github" ) -func GITHUBAuth(apiEndpoint, userName, passwd string) (string, string, string, string, string, error) { - tr := &http.Transport{ - TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, - } +func Authenticate(apiEndpoint, login, passwd string) (name string, email string, website string, location string, _ error) { tp := github.BasicAuthTransport{ - Username: strings.TrimSpace(userName), - Password: strings.TrimSpace(passwd), - Transport: tr, + Username: strings.TrimSpace(login), + Password: strings.TrimSpace(passwd), + Transport: &http.Transport{ + TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, + }, } client, err := github.NewEnterpriseClient(apiEndpoint, apiEndpoint, tp.Client()) if err != nil { - return "", "", "", "", "", errors.New("Authentication failure: GitHub Api Endpoint can not be reached") + return "", "", "", "", fmt.Errorf("create new client: %v", err) } - ctx := context.Background() - user, _, err := client.Users.Get(ctx, "") - if err != nil || user == nil { - fmt.Println(err) - msg := fmt.Sprintf("Authentication failure! Github Api Endpoint authticated failed! User %s", userName) - return "", "", "", "", "", errors.New(msg) + user, _, err := client.Users.Get(context.Background(), "") + if err != nil { + return "", "", "", "", fmt.Errorf("get user info: %v", err) } - var website = "" + if user.Name != nil { + name = *user.Name + } + if user.Email != nil { + email = *user.Email + } else { + email = login + "+github@local" + } if user.HTMLURL != nil { website = strings.ToLower(*user.HTMLURL) } - var location = "" if user.Location != nil { location = strings.ToUpper(*user.Location) } - return *user.Login, *user.Name, *user.Email, website, location, nil + return name, email, website, location, nil } diff --git a/pkg/bindata/bindata.go b/pkg/bindata/bindata.go index f98bff9b6..06121ae3e 100644 --- a/pkg/bindata/bindata.go +++ b/pkg/bindata/bindata.go @@ -4440,7 +4440,7 @@ func confLocaleLocale_enGbIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xeb\x72\xdc\xb8\x92\x30\xf8\x9f\x4f\x81\xf6\x84\xc2\xdd\x11\x72\x39\xba\xcf\x37\xdf\x6e\x74\x58\x3e\xab\x96\xdb\x97\x19\xd9\xd6\x48\xf2\x39\xdf\xac\xd7\xc1\x46\x91\xa8\x2a\x8e\x58\x44\x1d\x02\x54\xb9\xfa\xc4\x79\x83\x7d\x80\x7d\xbe\x7d\x92\x8d\xbc\xe1\x42\xb2\x64\xbb\xcf\xec\x1f\xa9\x08\x24\x12\xf7\x44\x66\x22\x33\xa1\x77\xbb\xb2\x36\xae\x52\x67\xea\x5c\xed\x74\xd3\xb5\xc6\x39\xe5\x4c\xbb\x7a\xb2\xb1\xce\x9b\x5a\xbd\x6a\xbc\x72\xa6\xbf\x6f\x2a\x53\x14\x1b\xbb\x35\xea\x4c\xbd\xb6\x5b\x53\xd4\xda\x6d\x96\x56\xf7\xb5\x3a\x53\x2f\xe4\x77\x61\x3e\xef\x5a\xdb\x03\xd0\xaf\xf4\xab\xd8\x98\x76\x07\x65\x4c\xbb\x2b\x5c\xb3\xee\xca\xa6\x53\x67\xea\xa6\x59\x77\xea\x4d\x47\x29\x76\xf0\x92\xf4\x7e\xf0\x94\x36\xec\x24\xe9\xc3\xae\xe8\xcd\xba\x71\xde\xf4\xea\x4c\x5d\xf3\xcf\x62\x6f\x96\xae\xf1\x50\xd3\x5f\xe9\x57\x71\x6f\x7a\xd7\x58\xc0\xfe\x17\xfa\x55\xec\xf4\x1a\x00\xae\xf4\xda\x14\xde\x6c\x77\xad\xc6\x02\xb7\xfc\xb3\x68\x75\xb7\x1e\x08\xe6\x92\x7f\x16\x55\x6f\xb4\x37\x65\x67\xf6\xea\x4c\x5d\xe0\xc7\x62\xb1\x28\x06\x67\xfa\x72\xd7\xdb\x55\xd3\x9a\x52\x77\x75\xb9\xa5\x6e\x7e\x70\xa6\x57\x9c\xae\x74\x57\x2b\x48\xc7\x2e\x98\xba\x6c\xba\x52\x3b\xee\x87\xa9\x55\xd3\x29\xed\x0a\x44\xd5\xe9\xad\x94\x86\x9f\x85\xd9\xea\xa6\x85\x51\x83\xff\xc5\x4e\x3b\xb7\xb7\x38\xb4\x57\xfc\xb3\xe8\x4d\xe9\x0f\x3b\x83\x43\xf0\xe4\xf6\xb0\x33\x45\xa5\x77\xbe\xda\x68\x68\x26\xfd\x2a\x8a\xde\xec\xac\x6b\xbc\xed\x0f\x08\x27\x1f\x85\xed\xd7\xba\x6b\x7e\xd7\x9e\xc6\xe7\x7d\xf2\x59\x6c\x9b\xbe\xb7\x30\xb4\x6f\xf1\x47\xd1\x99\x7d\x09\x78\xd4\x99\x7a\x67\xf6\x29\x16\xc8\xd9\x36\xeb\x9e\x46\x11\x32\xdf\xe2\x17\x60\xa1\x3c\xc6\x44\x59\x01\xdb\xca\xf6\x77\x9c\xfa\x12\x7e\x8e\x50\xda\x7e\xcd\xb9\x79\xbb\x74\xa7\xd7\x86\x73\xdf\xe2\x47\x06\xe0\x0a\x5d\x6f\x9b\xae\xdc\xe9\xce\xc0\xd0\x9d\xc3\x97\xba\x82\xaf\x42\x57\x95\x1d\x3a\x5f\x3a\xe3\x7d\xd3\xad\x61\x0e\xce\x29\x49\xdd\x70\x52\x91\xe4\x85\xb4\x83\x1d\xc2\x2c\xab\x33\xf5\x9f\x76\xe8\xd5\x15\x7d\x52\x5e\x52\x08\x33\x43\xc9\x42\x57\xbe\xb9\x6f\x7c\x63\xa8\x32\xf9\x28\x76\x43\xdb\x96\xbd\xf9\xdb\x60\x9c\x87\xac\xab\xa1\x6d\xd5\x35\x7f\x17\x8d\x73\x03\x96\x78\x83\x3f\x8a\xa2\xd2\x5d\x85\xdd\xb9\xc0\x1f\x45\xf1\xb1\xe9\x9c\xd7\x6d\xfb\xa9\xe0\x1f\x00\x4c\xbf\x68\x9c\x7c\xe3\xb1\xb1\x9c\xa8\x6e\xbc\xd9\x39\x18\x68\xf5\xb2\xe9\x9d\x7f\xe2\x9b\xad\x51\xd7\x43\x57\xd4\xb6\xba\x33\x7d\x09\x1b\x12\xb7\xd2\x9b\x95\x3a\xd8\xe1\x71\x6f\x54\x3f\x74\x5d\xd3\xad\xd5\x2b\xbb\x76\xaa\xe9\x5c\x53\x1b\xf5\x02\xa1\x4f\xd5\xae\x35\xda\x19\xd5\x1b\x5d\xab\x67\x5a\x79\xdd\xaf\x8d\x3f\x7b\x54\x2e\x5b\xdd\xdd\x3d\x52\x9b\xde\xac\xce\x1e\x9d\xb8\x47\xcf\x5f\x0d\x4d\x6d\xda\xa6\x33\xee\xd9\x53\xfd\x5c\x55\xba\x37\xab\xa1\x6d\x0f\x6a\x69\x56\xb0\x57\x0e\x76\x50\xd5\x46\x77\x6b\xd8\x27\x07\xbf\x81\x0a\x9b\x4e\xf9\x4d\xe3\x14\x6c\xd4\xef\x0a\x18\xa5\xc6\x9b\xb2\x5e\x0a\x51\xc2\x06\x61\x72\x6f\x9c\x7a\x7b\xb8\xf9\x8f\xcb\x53\x75\x65\x9d\x5f\xf7\x06\x7f\xdf\xfc\xc7\x65\xe3\xcd\x9f\x4e\xd5\xdb\x9b\x9b\xff\xb8\x54\xb6\x57\xb7\xcd\x8b\x5f\x16\x45\xbd\x2c\x65\x5c\x5e\x68\xaf\x97\xd0\x85\x30\x57\x90\x49\x5b\x29\xe4\xe1\x86\x02\x92\x87\xe4\xcd\x79\xdc\xa4\xbc\x41\x67\xb7\x63\xbd\x2c\x79\x0f\x07\x1c\xef\x60\x23\xd7\xcb\x38\xc0\x57\x34\x74\x83\x33\xea\xcd\xbb\x77\xef\x5f\xfc\xa2\x4c\xb7\x6e\x3a\xa3\xf6\x8d\xdf\xa8\xc1\xaf\xfe\xf7\x72\x6d\x3a\xd3\xeb\xb6\xac\x1a\x18\x9b\xde\x19\xaf\x56\xb6\xa7\x9e\x2e\x0a\xe7\xda\x72\x6b\x6b\xa8\xe5\xe6\xe6\x52\xbd\xb5\xb5\x29\x76\xda\x6f\xb0\x21\x7e\x53\xb8\xbf\xb5\x30\x5e\xa1\xc2\xdb\x8d\x51\xb8\x74\x11\xc8\xae\x64\x78\x54\xcd\x6d\x5c\xa8\x67\xcb\xfe\x79\xd2\x2e\xbd\x74\xb6\x1d\x3c\x97\xd8\x6f\x4c\x87\xf3\xe4\xbc\xee\xbd\xd2\x4e\x48\xff\xa2\x30\x7d\x5f\x9a\xed\xce\x1f\x60\x76\xb8\x0d\x63\xec\x84\xa4\xd2\x5d\x67\xbd\x5a\x1a\x85\xf0\x8b\xa2\xb3\x25\xed\x54\x20\x9b\x75\xe3\xf4\xb2\x35\x25\x91\xf4\x5e\x28\xd2\x7f\xc2\xe2\xa0\x82\x0c\xa1\x32\x08\x18\x31\x38\x26\x90\x3a\xc3\xca\xd1\x9d\x42\xa4\x8a\xb7\x7a\xda\x42\xa1\x0b\x61\xd6\x88\x34\x84\x84\x49\x0b\x0b\x99\x06\x59\x33\xe7\xbb\x5d\xdb\x54\x54\xf5\x2b\xca\x8b\xcb\x07\x0e\x4d\x9e\xfb\x14\x0e\xa7\x5f\xf2\x92\x45\x30\x78\x18\xd2\x5e\x65\x34\x18\xcb\x6f\x4c\x6f\xd4\x66\x58\xd3\xc1\xd1\xda\xa1\xfe\x0e\x29\xb8\x8c\x6f\xa4\x93\xea\xda\x5a\x4f\x73\x1e\x00\x62\x15\xe7\x6d\x8b\xe7\x74\x6f\xb6\xd6\xc3\xc0\x71\x31\xa0\x45\xfb\xa6\x6d\xa1\xa7\x4e\xdf\x9b\x5a\x79\x4b\xfb\xad\x6e\x7a\x53\x01\xe2\x45\xd1\x0f\x5d\xc9\x8b\xfd\x7a\xe8\x68\xc1\x4b\x5a\xbe\xb2\x10\x6a\x3b\x38\xaf\x36\xfa\xde\xc0\xc0\x03\xb3\xe0\xed\x6c\x3b\xb1\x4b\xfd\xd0\xe1\x16\x5e\x14\xb5\xdd\x6a\x3c\xf8\x5f\xe0\x0f\xfe\x4e\xf1\x37\x4e\xe9\xd5\xca\x54\xde\xa9\x9b\x9b\xd7\xaa\x6a\x6d\x67\xd4\x87\xeb\x4b\x07\xdb\x60\x53\xee\x6c\x8f\x4c\xc2\xcd\x6b\x75\x65\x7b\x1f\xd2\x92\x81\x06\x88\x6e\xd8\x2e\x4d\xaf\xf6\x9b\xa6\xda\xd0\xb0\x43\x09\x58\xc5\xa6\x57\x8d\x53\x83\x6b\xba\xf5\xa9\x6a\x0d\xf4\xa0\xf1\xb4\x00\xa0\x0f\xb2\xea\x00\x7c\x65\xb4\x1f\x7a\x83\x87\x7e\xb9\x1c\x9a\xd6\x37\x5d\x09\x15\x32\x1e\x24\x0b\xea\x17\xca\xc0\x12\x37\x98\x71\x04\xbe\xdc\xd9\x1d\xb1\x33\xb8\xab\x96\x49\x39\x46\x08\x5b\x1e\x26\xd0\xee\x0c\xad\x77\xc7\x4d\x82\x05\x37\x34\x6e\xa3\x56\xbd\xdd\x2a\x77\x70\xde\x6c\xb1\x60\xad\xcd\xd6\x76\x8b\x62\xe3\xfd\x4e\xc6\xe6\xf5\xed\xed\x15\x0d\x4e\x48\x7d\x68\x74\x74\xb2\x76\x71\x95\xb4\xc0\x58\x75\x0a\xd0\xc2\x32\x1e\xfa\x76\xb4\xc2\x3f\x5c\x5f\x4a\xce\x91\x99\x83\x26\x3c\x85\x3f\x37\x71\x02\x71\x25\x38\xbb\x35\x7b\x5c\xef\x4d\xa7\x90\xd9\x59\x14\xad\x5d\x97\xbd\xb5\x5e\x96\xfb\xa5\x5d\xd3\x12\xcf\x32\x62\x4d\x2f\x64\xd1\xc2\xe0\xec\x7b\x60\xfe\x5a\xbb\x46\x82\x07\xe3\xb5\x28\x4c\x87\xa4\xa5\xb2\x9d\xb3\xad\x11\xca\xf9\x2b\xa6\xaa\x0b\x4a\x25\x22\x3a\x03\x19\x66\xe9\x0d\x50\x96\xba\xc1\x1e\x7b\x4b\xf4\x14\x00\x4e\x95\x6e\x9d\x55\xbb\xbe\xe9\x3c\x54\x8c\x73\xc4\x18\x16\x45\x61\x77\x50\x22\xa1\x21\xef\x39\x21\x12\x0e\xec\x77\xc8\x47\x56\x0f\x57\x4e\x53\x25\x87\x93\xdb\xfa\x5d\xc9\x27\xd1\xcd\xdb\xdb\x2b\x3a\x8e\x30\x15\x17\xc1\x99\x7a\xd9\xdb\x6d\x4c\x88\xe3\xf3\x16\xf0\x21\x8c\xae\xeb\xde\x38\x77\xaa\xae\x5f\x5e\xa8\x7f\xfd\xd3\x4f\x3f\x2d\xd4\x1b\x0f\x64\x0f\x28\xc1\x7f\xc1\x0e\xd6\x3c\x0b\x11\xd4\xf6\xca\x6f\x8c\x7a\x04\x64\xec\x91\x7a\x86\xb9\xff\x87\xf9\xac\xb7\xbb\xd6\x2c\x2a\xbb\x7d\x0e\xab\x74\xab\xfd\xa2\x80\x1c\xd3\x0b\xd1\xb8\x31\x5d\x6d\x7a\x66\x5c\x39\x2b\x21\xbd\x9c\x9d\xb0\xb1\xc4\xbf\xc3\xd8\xaf\x9a\x7e\x1b\x27\x48\x38\x7b\x98\x29\xc8\x11\x2e\xb0\x69\xcb\xce\xfa\x66\x75\x88\xa0\xd8\xd3\x77\x90\xc8\x4b\xb3\xe0\x9d\xc6\xc7\x55\x18\x63\xda\x97\xb8\x02\xdf\xfb\x8d\xe9\x65\xb8\x5d\x1c\x6f\xbb\x5a\x01\xd3\x32\x5a\x2d\xef\x29\x95\x56\x4b\x0a\x12\x96\xc9\x0b\x26\x18\x17\x2f\xde\x29\x73\x6f\x3a\x58\xd8\xbb\xde\xd6\x43\x85\x2b\x47\x56\x4c\xab\x7a\xe3\xec\xd0\x57\x86\x17\x6a\x20\xc8\xd0\x34\xa0\xfa\x95\x6e\xdb\xc3\xa2\x90\x83\x71\xdd\xeb\x7b\xed\x75\x9f\x54\xf1\x4a\x92\xb8\xf5\x13\xd8\x49\xa3\x42\x09\xe8\x79\x35\x38\x0f\xd4\x03\x5b\xe1\xa8\x51\x94\xed\x94\xee\x8d\x1a\x76\xad\xd5\xb5\xa9\xd5\xf2\x80\x34\xde\xc1\x5a\xa8\xcd\x4a\x0f\xad\x5f\x14\x2b\x53\x03\x51\x32\x75\xc9\x75\xb5\xd6\xde\x61\x65\x3c\x54\x2f\x05\x40\x9d\x33\xd2\x4b\x84\x38\x56\x32\x34\x96\xcb\x07\xb0\xd0\x28\xae\xc1\x5b\x64\x51\x62\xbe\xdd\x99\x8e\xbb\x21\x8c\x89\x02\xbe\xa3\x56\xb6\x53\x6d\xb3\xe4\x4e\xc7\xb1\x1c\x31\x19\x32\x3a\x37\x20\xdf\xa6\x79\xb3\x05\x26\x83\x8a\x0b\xde\x8d\xcb\x9e\x2a\xdb\xb5\x07\x66\x46\x60\x8b\x91\x00\x29\x7c\x89\x8b\x64\x29\x88\x6b\x42\x91\x58\x6a\xcb\xf3\x43\xb5\xd7\xc4\xf6\xaa\x7b\xdd\x36\x35\x60\x14\x04\x70\x5a\xcc\xb7\x65\x51\x30\xaf\x5c\xb2\xa4\x5d\xde\x37\x28\xc7\x86\x2d\x46\x28\x59\xfa\x86\x11\xfe\x0b\x00\x80\x80\xec\x66\xcb\x86\xd6\xbc\x87\x4e\xba\x20\xc7\xd2\x3a\x81\xee\x62\x0d\xc0\xbf\xbb\x53\x75\xdf\x20\x1b\xc0\x8b\x1c\xc7\x65\x09\x3c\x66\x6b\xa0\x2a\x67\x0c\x62\x50\x4d\xf7\x74\xd8\x51\x99\x05\x0b\x71\x2c\x57\x09\xdf\x0f\xec\x60\x6d\x15\x70\x69\xc8\x6b\x00\xa5\xe5\x61\x1d\xf1\x7d\xaa\x6f\xd6\x1b\xaf\x3a\xbb\x3f\xa5\x41\xd9\x6f\xac\x81\x3d\xff\xe6\xc5\xd9\x8f\xd4\x8e\x35\x70\x1e\xa1\x10\xf0\x2c\x7a\xf0\x16\xe8\x0b\x6f\x3d\x6a\x42\xe0\xfd\x10\x72\x22\x2e\x12\xd0\x58\x6e\x9f\xb0\x9a\x81\xd0\x31\x7d\x4b\xf3\x98\xb0\x45\x18\x2a\x2d\xb2\x3f\x55\x4c\x84\x94\x65\xbd\x72\x6d\x51\xd6\x14\xd9\x0e\x98\xa9\xc2\x1b\xe7\xcb\x75\xe3\xcb\x15\x50\x5b\x40\xfc\x12\x10\x00\x6f\x67\x9c\x57\x8f\xd7\x8d\x7f\xac\x2a\xbb\xdd\xea\xae\xfe\x59\x9d\xdc\xb3\x98\xf0\x27\x20\xa3\xb0\x15\x9b\x16\x67\x84\x25\xd8\xde\x90\x34\x20\xda\x93\xda\x1a\x87\x03\xef\x86\x1d\x32\x16\x41\xc4\x62\x49\xb0\xb6\xfb\x0e\x08\x06\x1e\x17\x76\xb5\x6a\xaa\x46\xb7\x6a\xd9\x74\xba\x3f\x04\x2c\x78\x0c\x9d\xb8\x53\xf5\xee\xfd\x2d\x02\xae\x2d\xf0\x3d\xb5\x00\x2c\x8a\xa6\xc3\x85\x0d\xe2\x04\x4f\x7e\x2a\x4b\x49\x52\x43\x6d\xa9\x6c\x0f\x67\x3f\xf6\x46\x0a\x1e\xe1\x94\x81\x71\x20\x41\xa4\x01\x59\x16\x61\xb1\x5c\x60\x6a\x61\x18\xb6\xda\x57\x1b\x66\x79\x71\xd9\x34\xae\x7b\xec\xb1\xa5\xd5\xd0\xf7\xa6\xf3\x98\xfc\xb3\x3a\x71\xea\xc9\x73\x75\x92\x9c\xcb\xe5\xb6\x71\xc0\x45\x06\x96\x54\x0e\x69\xa8\x90\xf3\x14\xe6\xe1\xb2\xc3\xe3\x35\x76\x37\x3d\xc8\xb1\x24\x9c\xe6\x6a\xd5\x98\xb6\x96\xce\xc6\x26\x03\xd3\x4e\x07\xe5\x7a\x3a\xd9\x90\xa9\x28\x73\xa0\xed\x9f\x0d\x4f\xb6\xaf\xc2\xea\x92\x5d\x93\x8c\x6f\x3a\x46\xb2\xec\xdc\x40\x1b\xe5\x4c\xfd\xd5\xb4\x95\xdd\x9a\xef\xd4\x5f\xcd\xe3\xde\xa8\x75\x8b\x13\xaf\x3d\x8b\xf3\xd6\x19\x5c\x94\xa7\xb4\x4f\x57\x43\x87\x47\x8e\xd7\x77\x06\x35\x00\xb1\xe3\x73\xdc\xde\xd1\xb9\x2a\x3e\x6e\xec\xd6\x7c\x2a\x06\x92\xa5\x6c\x5b\x07\x69\x1c\x77\xa0\xed\x89\x7d\x09\xa2\x79\x84\x09\x9b\xcb\xed\x1b\x5f\x6d\xca\xa0\xa7\x84\x81\xf4\xe6\x33\x4e\x19\x66\x45\xb5\x25\xec\x4c\xc8\x2a\xb6\x07\x5c\x56\xd0\xf1\xb7\x87\xb8\xaa\x1a\xe3\x0a\xb7\xb1\x7b\x54\xfa\x05\x88\x9b\x8d\xdd\xa3\xba\x2f\x93\xb8\x16\x8b\x45\x51\xd9\xb6\xd5\x4b\x0b\xb3\x72\x1f\xe1\x2f\xd2\xd4\x1c\xf9\xf6\x50\xda\x7e\xcd\xd5\xe6\x4a\xae\xed\x81\xf5\x6a\x9c\x4b\x7a\x35\x57\x20\x75\x66\x85\x2c\x12\xf1\x13\x57\xb0\x3a\x69\xd1\x74\x25\x6a\xab\xa4\xe6\x37\x1d\xc9\x42\x69\x3b\x8b\xe2\x23\x2b\x6b\x3f\x15\x02\x97\xb5\x89\x48\x3c\x0d\xba\xcb\x34\x88\x6e\xa4\x42\x74\x85\x33\xba\xc7\xfd\x74\x83\x3f\x8a\xe2\xa3\x1e\xfc\xe6\x53\xa2\x4c\x2d\x65\xe5\x89\x52\x15\x15\x7e\x4c\x65\x23\x57\xb8\x31\x3b\x60\x20\xb7\x0e\x97\x6c\xdb\x1b\x5d\x1f\x58\xdc\x0c\x8b\xf7\xcf\x74\x7e\x35\x1d\x50\xfd\xef\x0a\x67\x81\x00\x95\xdf\x88\xe2\x97\xa6\xab\xa9\x7c\x7e\xf6\x93\x96\x77\xbb\xc3\x65\x62\xfb\xfe\x70\x9a\x2b\x22\x36\xda\xa9\xa5\x31\x9d\x08\x8c\xf5\x42\xd4\x3c\xb0\xbc\x74\x45\x34\x04\x35\xd3\xb8\x03\xa9\xa4\x9d\x30\x25\xd0\x42\x22\xfb\x5c\x0b\x9d\x02\x4e\xf8\x53\x60\xcc\xbe\xb9\x0a\x18\xf4\x92\x19\xa4\x33\x75\x3e\xf8\x8d\xe9\xbc\x48\x6f\x37\x98\x5e\x20\xc3\x89\xfb\xaf\xd2\x6d\xd1\x9b\xad\x01\x99\xb0\xdc\x92\x66\x99\xbe\xd4\x5b\x53\xac\x6c\xbf\xc6\xdd\x4a\xdb\xe9\x4c\xbd\xc4\x84\xb8\xbf\x00\xc0\xf8\xf4\x7c\x63\x08\x49\xf9\xb3\x68\xf2\xcb\xce\xee\x51\xc3\x0b\x3c\xde\x78\x1a\x87\x1d\x4c\xc3\x42\xce\x4b\x62\xbd\x90\xeb\x77\xa6\xf3\x71\x32\xce\x55\x67\xf6\x2a\x85\xe2\x21\x0b\x33\x02\xf0\x40\x18\x9f\x2d\x9f\x9f\xb8\x67\x4f\x97\xcf\xc3\x91\x55\x6d\x4c\x75\x47\x5b\xa0\xe9\x96\xf6\x33\xaa\x93\x50\xf7\x68\x54\x07\x24\xe1\xa4\x56\x1b\x3b\xf4\x2c\xd2\x81\xc8\xe3\x0d\xe6\x66\x73\xbf\xeb\x6d\x85\xc4\x1c\x75\xbd\x86\xf6\x58\x5c\xd7\xa8\xf4\x85\x95\x8d\xe7\xaa\x2c\xed\x5d\x6f\x37\xcd\xb2\xf1\x40\x00\x51\x03\x72\x89\xff\xaf\x38\xd9\xd4\x23\x88\x84\x05\xea\x03\xb9\x6e\x9c\xda\x85\x02\xd0\x48\x04\x8d\xfd\xe3\x75\x11\xd7\x04\x70\x82\x38\x7e\x6d\xb3\x6d\xfc\x64\x49\x03\xf1\xd6\xbc\x35\x58\x37\x2d\x73\x83\x7d\x88\xa3\xdb\x9b\xca\x74\xbe\x3d\x84\x35\xb8\xd7\x8d\x57\x7f\x52\xdb\xa6\x1b\x3c\xc8\xdd\x1b\xd3\x29\xdf\x1f\x94\x06\x36\x6b\x51\x6c\xb4\x2b\x87\x8e\xa7\xc9\xd4\xb2\xc8\x5f\x37\xc8\x0d\x40\xbd\xb2\x15\x13\xa8\x5c\x16\x55\xdf\x87\x19\xfc\x61\xc1\x5a\x6a\x2c\x05\x27\x34\xb4\xa7\x01\xc1\x49\xcf\xad\x05\xdb\xab\xce\xd0\x08\x61\xff\x01\x0c\x96\x8d\xed\x4c\x1c\xac\xb6\xa9\xee\x40\x62\x80\xf9\x5d\x0e\xde\x5b\x10\x8b\x5b\x58\x83\x54\x46\xda\x7c\x81\x80\xa8\xb4\x88\xf8\x0e\x34\x2d\xf9\x28\x15\x58\x0c\x20\xfc\x7c\xe1\xef\x7b\xf3\x43\x2c\x1e\xb6\x0c\x96\x60\x14\x54\x3a\xd9\x4d\xd7\x98\x49\x57\x10\xb2\xe7\xe4\x30\xad\x58\x29\x1c\x66\xb3\xcf\x47\x03\xf3\x61\x63\x98\xcf\xbb\xa6\x07\x01\xa9\x8f\xac\xc5\x62\x54\x57\xd4\x20\x4c\x7b\xec\xf3\x16\xc7\xf3\xd6\x5b\x5b\xba\x0d\x71\x40\xd2\x3c\xd5\x9a\x6e\x9d\x69\x80\xf1\x3a\x11\x97\xc8\xff\x5c\x14\x9d\xed\x4a\xa4\x3e\xc9\x9e\x79\x67\xbb\x27\x44\x91\x44\x5e\x92\xd2\x7c\x55\x20\x15\x02\x9a\xde\x0e\xeb\x0d\x2b\x14\x0b\xda\x2c\x7e\x6f\xcb\x95\xae\x3c\x5e\x3b\xdd\xee\xed\x13\xfe\xc8\x69\xdf\x04\x18\xfb\xce\x83\x38\x22\x93\x57\x9c\x33\x2d\x63\x3a\xa0\xda\xbd\xa9\xec\xbd\xe9\x0f\x32\x07\xbf\x42\xaa\xd2\xca\xc7\xca\x05\x44\xcd\xe3\x09\xd9\x59\x8b\xaf\x39\xf5\x38\xbc\xd4\x28\x90\xea\xe2\x81\x66\x26\x1d\x9c\x69\xe1\xee\x68\x27\x23\x77\x7d\xa4\xd2\xb0\xb4\x90\xe6\x0e\x8e\x16\x57\x90\x1a\x78\x85\x15\x1f\x61\x51\x7f\x2a\x78\xa7\x98\x64\xca\x99\x8e\x48\x8e\xec\x28\xa2\x96\x01\x5e\x84\xa2\xbf\x98\xbe\x59\x1d\x08\x28\xa3\x12\xc7\x36\x4c\xbe\x5e\xc3\x61\x1b\x39\xda\xeb\x94\xa4\x73\xf2\x6a\x68\x4f\xd5\x9e\x58\xdd\x58\x26\xa8\x9d\x98\x09\x06\xa2\x41\xd7\xdc\xc5\xc7\xad\xad\x75\xfb\xa9\x38\xe0\xe5\xdd\x7f\x1a\x57\x74\x78\x61\x6a\x8b\xad\xad\xa9\xd0\x5b\xfc\x51\x14\x1f\x57\xb6\xdf\x7e\x2a\x80\x8d\x7a\x37\x92\x1e\x81\xdf\xe2\xb4\x44\x82\xc1\xac\x5f\xd3\x0b\xe1\xd0\xe7\xab\x19\x41\xf3\xda\xc4\x7b\x61\xfc\x15\x3a\x7f\x73\xf3\xfa\x56\x14\x61\x37\xaf\xd5\x9d\x61\xdc\xaf\xbd\xdf\xb9\x0f\xa8\xde\x25\x5d\xed\x87\xeb\xcb\xe2\x4a\x1f\x40\xaa\xa3\x64\xfe\xc0\x8c\x5b\xa3\xb7\xdc\x48\xf8\x49\x28\x60\xd3\x70\x22\xfc\xb4\x7d\x7a\xb1\x51\xa0\xac\xf1\x6b\x26\xd6\x12\x91\x2b\xde\x99\xfd\x2f\xbd\xee\x2a\x29\x0c\x4c\xe0\x12\x13\xa8\xe4\x85\xdd\x6e\x1b\x7f\x33\x6c\xb7\x1a\x37\x08\x7d\x2b\x47\x09\x9c\xfd\xd6\x38\x47\xb7\xf6\x9c\xbd\xa5\x04\xce\xbe\xd8\xd8\xa6\x4a\x72\x2b\xfc\x2e\x6e\x7b\x63\xb8\xd6\x97\x72\x47\x56\x20\xe3\x4f\x5c\x29\xfd\x2a\x82\x1a\xc4\xf0\x65\xf6\x6f\x93\xfb\xa2\xdf\x0a\xdd\xee\x36\x1a\x45\x8b\x04\x0c\xaf\x46\x96\xac\xb0\x51\x08\x82\x74\x77\xd8\x9a\xbe\xa9\x70\x97\x68\xb7\xf9\xfe\x49\xf9\x03\xde\xf5\xe9\xca\x9b\xde\xe5\xc8\x6a\xeb\xff\x18\x42\xdc\x82\xfe\x41\xbc\xae\xfd\xc3\xcd\x9d\x60\x87\x14\xc4\x67\xa0\x22\xd7\xfc\x2e\xc3\x95\x61\x86\x74\x75\x02\x10\x28\x8a\x46\xa8\x00\x84\x8c\x0b\x88\xa5\x5e\x01\x55\xf0\x20\x6e\x67\x7d\xd8\xea\xcf\x5f\x2a\xb8\xb5\x33\xe5\x48\xd5\x1e\x0b\xb1\x68\xad\xb9\xb7\x19\x25\x59\xfc\x56\x0c\xfd\x03\xc0\x1f\xae\x2f\x17\xbf\x15\x4d\x57\xb5\x43\x7d\xb4\x21\x6e\x58\x3a\xdf\x83\x48\xfd\xf8\xc4\x3d\x06\x94\xdd\x5d\x67\xf7\x5d\x80\xff\x40\xdf\x0a\xbf\x7f\x16\xe3\x8d\xb2\xe9\x58\xb7\x11\xcd\x38\x54\xdd\xd4\xc0\xea\xa0\x8e\x62\x11\x8f\xdc\x54\x6f\x11\x08\x01\x2a\x78\x59\xaf\x14\x68\x21\x08\x0f\xa8\xc2\xd1\x5b\xb3\x88\x06\x27\x25\x90\xec\x12\x64\xf3\x2e\x15\xa6\x81\x98\x0b\x33\x88\x44\x1d\x21\x16\x74\xd3\x38\x2d\x37\xa2\x54\x47\x8b\xdb\x7e\x3d\x53\xfa\xfd\xf4\x16\xf4\x48\x79\x6f\xf4\x76\x06\x41\xa0\x41\x47\x0b\xd2\xdc\x63\x21\x3c\x9e\x46\x44\x74\x5a\x0e\xa0\x16\x71\x94\xc2\x80\xa7\x73\x93\xaa\x1e\xc2\x38\xe7\xda\xa9\x4c\xfe\x2a\xb7\x8d\x93\xc9\xba\xdd\x18\xa5\x73\x2e\x23\x68\xb1\x5b\x53\x01\xeb\x2d\x4b\xce\xa1\x34\x0b\x29\x68\x23\xe0\xf9\xda\x75\x51\xe0\xa9\xde\xa3\x4d\x51\xa2\xfe\x62\x75\x24\x1f\xa9\x5b\x7d\x67\x94\x1b\x80\x7b\xdb\x68\xcf\xf2\x4b\x3e\x59\xc0\x4a\x23\x2a\xaa\x33\xb4\x7c\x82\xde\xee\x3b\x38\x01\xbf\x84\x1f\xc1\xbe\x11\x75\xaa\x2d\x9d\x22\x66\xe4\x01\xe8\x18\xda\xa0\xca\x33\x9f\x1b\xbc\x2c\x7b\xd5\xdc\x1b\x56\xe6\x05\x6e\x04\xf3\x16\x45\xab\x9d\x2f\x61\x3d\x52\x73\x51\xd0\xb5\xf7\xb0\x59\xa1\x3e\xc8\xa5\x72\x74\x79\xc6\x9d\x82\xf5\xc7\x6a\x41\xdd\xb6\x76\x6f\xea\x53\xa5\x91\x9b\xed\x0d\xed\x7d\xdd\xee\xf5\xc1\xa1\x8a\x5b\xe8\x97\xed\x64\x4c\x80\x38\x75\x07\xb5\xc6\x56\xa5\xda\x93\x45\x11\x95\x81\x6e\x53\xc2\xa9\x1c\x38\xf9\x3d\x2a\xd9\x70\x25\xb0\xd2\xfc\x3e\xe1\x7f\xf8\x10\xff\x59\x9d\xb8\x62\xa0\x4b\x03\xca\x4e\x10\xa1\xc5\x0c\x1f\x58\x33\x65\x4f\x41\xe2\x51\x7b\x03\x2b\x6d\xd8\xf2\x58\x37\x28\x60\x62\x93\x12\x2d\xef\xb0\x6c\xcd\x13\x92\x9c\x1b\x59\xdb\x41\x09\x39\x62\x9a\x29\x9d\x54\x77\xce\x37\x6d\x0b\x23\x2d\x56\x64\x99\x24\x8b\xb9\xb8\x05\x71\x98\xdc\xa6\xd9\x29\x8b\x77\x74\xe9\x10\xc6\x65\x9b\xc8\x8c\xde\xaa\xda\xa0\x64\x6e\x7b\xe5\x7b\xdd\xb9\x95\xc1\x4b\xcb\xad\x5a\x35\x3d\xcc\x33\x55\x0d\x22\x28\x59\x8d\x1d\xa9\x99\x94\x1c\x58\x75\x7a\xf6\xe0\xdc\x25\x13\x95\x57\x4d\x26\x03\x78\x33\x86\x6d\xc0\x51\x8d\x98\x9c\xb4\x01\x96\xd9\x64\x08\xf0\x92\x3c\x33\x00\x99\x1d\x87\x55\xa6\xa1\xa3\xfa\x71\xa5\x7d\xa1\xdf\x05\x59\x65\x95\xc4\x49\x65\xbb\xe2\x16\x73\x84\xc7\x1a\x6f\x8c\xe2\x23\xac\xfb\x4f\x05\x09\x5b\x65\xb8\x79\xbc\x20\xe1\x8b\x58\x73\x4c\x2c\xfe\xcb\x36\x5d\x89\xd7\x68\xff\x66\x9b\x0e\xef\xdc\x8a\xcc\xd2\x64\xa4\x3e\x64\x7b\xb8\x03\x9a\xc0\x2c\xdb\xa6\x12\xa3\xb8\x43\xb1\xb2\xb8\x9f\x50\xbb\xf8\x52\x7e\x17\xce\x6b\x20\x13\x6c\x27\x01\xbf\x32\x75\x25\x15\x22\x5d\xf6\x4b\xf9\xcd\xa9\x21\xa9\x18\xba\x90\xf2\x81\x7f\x16\x05\x30\xe0\x0b\x24\xed\x20\x33\xe0\xb5\x6b\x42\xd0\xe1\xbc\x86\xf5\x2f\x79\x8b\x04\x7e\xa7\xbd\x37\x7d\x47\x37\x27\x44\x04\xd2\xa2\x9c\x1d\x50\xe0\xc6\x25\x30\x18\x5b\x31\x16\xfc\x54\x44\x93\x42\xb1\x26\x9c\xbb\x32\x0a\xc3\x4f\x17\xa9\x05\xef\x6a\xc7\xfc\xfb\xbf\x9b\x83\x2b\x9c\xa9\x86\x9e\x86\xf5\x86\x7f\xce\xab\x6f\x59\x9f\x3c\xb2\x98\x8c\xd6\x1c\x2e\x37\xee\x70\x05\xaf\xb1\x33\xf5\x82\x7e\x88\x02\xab\xd8\xe1\xf4\x25\x66\x91\x3c\x9f\xa1\x2b\x6c\x15\x9b\x2a\xae\x72\x85\x4e\xe3\x14\x21\x41\x76\x45\x6e\xc0\xf1\x70\x5e\xd9\x1e\xe9\x64\xb8\xce\x33\x2d\x1e\x7f\x5d\x72\xbb\xef\x4e\xb1\x1c\x80\xed\xcd\x52\xae\x7c\xa3\xad\xcc\x56\xd7\x46\xdd\x37\x3a\xe8\x45\x13\xa6\x29\x9c\xea\xa2\x4c\xcd\x94\x0e\x28\x2f\x91\xa2\x5b\x78\x26\x99\x66\x6f\x45\x05\xe1\x37\xa6\xa1\x1b\xd7\x0e\xf9\xa9\xd5\xd0\xb6\x72\x32\xbe\x1c\xda\x96\x2c\xbf\xa6\xf6\xc8\x50\x05\xdf\x3c\x5f\xf2\xcf\x62\xd8\xd5\x20\xdd\xc6\xb1\xfc\x80\x09\x61\x2c\xf3\xfc\x44\x6a\xc5\x51\x95\x62\x51\xfc\x46\xf0\x3a\x11\x63\xdb\xc3\x42\x76\xf3\x8c\x9d\x31\x6f\xec\x7a\x0c\x12\x15\x84\x48\xa9\xb8\xe3\x38\x51\x64\xda\x83\x43\xbb\xd7\x07\xb5\xb1\x7b\xd5\x36\xdd\x9d\xe3\x99\x82\x71\x4a\x25\x78\x54\xe4\xfa\xa6\x1b\x0c\xcb\x54\xf0\x73\x6a\xd5\xca\xa6\x00\x6c\x18\xb0\x3c\x88\xda\x8c\x4c\x07\x78\x03\xa8\xe5\x41\xa1\xd8\x78\xdc\x06\x61\x6c\x7c\x20\xb6\x07\x72\xa7\x8e\xa6\x0f\x91\xae\x7d\x70\x46\x5d\x90\x39\x04\xef\xb1\x6a\x63\xad\xe3\x1b\x8a\x48\xfd\x20\x0d\x15\x87\x4c\xfc\x78\x5a\x22\x1e\x9a\xb5\x73\x31\xcb\xc0\x7d\xce\x3b\xa8\xe4\x0b\xc4\x08\xcd\x1b\xea\x82\x2f\x16\xcf\x05\x27\x99\x5d\x48\x9f\x90\xc6\x94\xcd\x96\x24\xdb\x0f\x62\x94\x81\x13\x1e\x24\x12\xcc\x5e\xe4\xed\x19\xaf\x12\xae\x57\xae\xf8\xbe\xb0\x58\x64\x29\xa4\xf7\xd4\x34\xfd\x81\x2e\xd9\x36\x63\xda\xa4\x1f\x21\x1f\x06\x2f\xc9\x7f\x87\x16\x05\x41\x01\x03\x7b\xac\x1c\x81\xb0\xce\x22\x83\x9c\x65\xbb\xa5\xae\xa3\x2c\xf7\xa8\xf5\x93\x1d\x23\xe5\xf6\xda\x65\x1d\xe7\x35\x5e\x2f\xc4\xf4\x54\x75\x76\x4f\xe6\x09\x68\x23\x48\x76\x92\x1d\xda\x36\x10\x8a\x84\xa8\x70\xa5\xff\x2c\x49\x89\x98\x49\x66\x71\x41\x54\x39\x27\xc2\x69\x9c\x58\xc1\x87\x7c\x36\x84\xcf\xe8\xab\x11\xd3\xb2\x94\x02\xef\xfa\x06\x75\x28\x39\x25\x9e\xd0\xde\x8c\xce\x22\x99\xb5\x68\x28\x15\xc9\xeb\xa2\x10\x54\x70\x7a\xe1\x2f\x49\x09\x5a\xba\x1b\x83\xd6\xc2\x9c\x2c\x1b\x41\x72\x69\xfd\x87\x36\xb6\x86\xa9\x22\xf5\xf5\x05\x27\x8c\xf2\xa5\x33\x94\x2d\x13\x32\xd3\x9b\x1e\x78\x79\x13\x0e\x8e\xa6\x23\x3b\xb5\x60\x85\x90\x51\x27\xf5\x02\xc9\x95\xda\x6b\xba\x2b\x12\x62\xf5\xe7\x71\xed\x71\x1d\xfd\x9a\xdf\x32\x51\xdf\xf2\x5d\xf4\x5d\xa1\xeb\x1a\xd7\x78\xb4\xe5\xa8\x71\xf1\xe4\x2a\x4b\x80\x4a\x21\xc8\xd6\x23\xa4\x96\xd9\x1d\x98\x23\xbd\xd4\xd7\xdf\x7b\x01\x17\xf2\xdf\x70\xe5\x95\x55\x15\xaf\xbc\x42\x23\x47\x3b\x6c\xd2\xcb\xe9\x56\xd3\x75\x8d\x0c\x11\xaf\xe5\x84\xad\xe1\xd5\x1c\xb8\x1b\xa8\x85\xe4\x18\x18\x9e\x7f\x37\x07\xe4\x81\x78\x25\xe0\xd1\xd4\x38\xa5\xd1\x52\x15\xcd\xdb\x49\xa8\x71\x13\xb9\x39\x9f\xf3\x73\x94\xda\x9c\x61\x58\xe4\x0f\x75\x77\x00\x7e\x5f\xf6\xba\xd9\xc2\x38\x90\xa5\x50\xb0\x6b\x9e\xdc\x99\x9f\xb2\xa8\xb4\x69\xd6\x9b\xf6\xa0\x9a\xed\xce\xf6\x1e\x57\x92\x58\x44\x44\x49\x16\xbe\x7a\x53\xd9\x75\xd7\xfc\x8e\x03\xbb\x25\x43\xe6\x70\xd9\xf2\xcc\xf9\xde\x76\xeb\xe7\x2f\x2c\x88\x98\x77\x40\x7e\x36\x76\xff\xe7\x67\x4f\x39\x5d\x5d\xe0\x14\xda\xc1\xab\x57\x8d\x7f\x3d\x2c\x1f\x3b\xb5\x1e\x9a\x1a\x8f\xdc\x67\x3a\xf1\xbc\x60\xd3\x28\xb2\x32\xdf\x77\x61\x58\xd0\x0f\xc3\xf6\xca\xd9\xf6\xde\x8c\x8a\xd8\xed\x96\xa6\x77\xd9\x9a\x2d\x41\x62\xfb\xd1\x9a\xca\x74\x38\x72\xa6\xe7\xf1\xb9\xb9\x79\xbd\x08\x4b\x3c\xce\x0f\x4f\x9b\xf0\xa9\x99\xca\x85\x79\x44\x00\xae\x58\xc7\x9a\x5d\x1a\x2c\x42\x29\xe4\x3f\xa6\xa5\x70\x1e\x1d\xf0\x2c\x13\x65\x0f\x0a\x2f\x80\x42\x8a\xab\x33\x68\x07\xf1\x61\x90\x56\x4d\xb4\xba\xbc\xb0\x92\xc5\x0b\x67\x8f\x68\xc5\x91\x7f\x0f\xcd\xc3\xe5\x3a\xda\xdf\x4c\xd1\xa8\xef\x4c\xcf\xa4\x03\x09\x45\xe3\x11\x89\x34\x6d\x0c\x93\x51\x35\x43\x34\x4d\x5a\x91\x52\x33\x32\x1c\x25\x8a\x46\x0b\xd2\x38\xa4\xd7\x5f\x49\xcd\x26\xf5\xc6\x8e\x4b\x75\x5f\x41\xd1\xb0\x4f\xe7\x38\x1c\xb6\x23\x2d\x0a\x4f\xd4\x25\xeb\x4c\x30\xa3\xb3\x65\x22\xed\xbd\xb3\x7c\x69\xac\x24\x11\xe7\xc4\x79\xe0\x58\xd2\xad\x0c\x8d\x40\x93\x7c\x32\x29\x44\x35\xcc\xff\xa6\x6a\x7d\x70\x85\xb7\x77\xa6\x9b\x29\x82\xe9\xc7\x0a\x15\x5f\x79\x19\x98\xdc\x76\x41\x0d\x83\x23\x91\xd3\x0f\xee\xe7\x34\x8f\x3c\xe5\x32\x70\xbb\x5a\x41\xda\x6a\x55\x64\xf7\x6d\x6c\x4e\x47\x46\x96\x69\x96\x38\x15\x04\x1b\xd2\x34\x13\x0d\x78\xb2\x6b\x36\x27\xa6\x3c\x68\x31\xaf\xf3\x3d\x0b\xbb\x96\x09\x52\x72\x13\x47\x3b\x17\xa8\x96\x72\x7a\x65\xd4\xae\xd5\x95\x89\x3c\xcd\xe0\x88\xf4\xe0\xe1\x2c\x37\x82\x0d\xdd\xa8\xb7\xd6\x99\x31\xb1\x1b\x69\x29\x13\x71\x71\x91\x36\x7d\xe3\xfd\x8e\xec\x3d\x52\x8b\xff\xc8\x32\xb0\x81\x01\xb2\x3f\xaa\xb5\xdd\xda\xf4\x41\xa1\x05\x4d\xda\xb5\x9a\x6d\x48\x71\xf7\x42\x77\x03\x2f\x14\x6c\x5d\xc4\xde\xb3\xc6\x22\x71\x24\x3e\xfe\xf8\xc9\x9d\x7c\xfc\xe9\x93\x7b\xf4\xfc\xca\xf4\x0e\x4d\xec\xcf\xa9\x1b\xb7\xb0\x3c\x70\x44\xb4\xe3\x5b\xf1\xde\xd4\xd0\x21\xdd\x9e\x2a\xb3\x58\x2f\xd4\x33\x18\x82\xe7\x27\x1f\xff\xf4\xc9\x3d\x7b\x8a\xbf\x17\xd3\xc9\x8c\x36\xfa\x34\xb7\x5f\xb7\x96\x2a\xdd\x95\x7f\x1b\xf9\x7d\x7d\x61\x54\xd1\x8e\x0f\x26\x0a\x0e\x5e\xe4\xed\xf3\x25\x28\xb7\xb9\xce\x54\xbd\xf1\x28\xce\x93\x32\x94\x44\x5d\x4c\xcd\x4a\x40\x45\xd3\x1b\xe0\xdb\x8d\xe9\xb8\x9c\xa4\x66\xa5\x58\x51\x28\xb7\xad\xc5\xcc\x7d\x70\x8e\x2d\x2e\xa6\x91\x7a\x36\x5c\x01\x07\x46\x24\xd8\x86\x7c\x57\x64\x77\xda\xb0\x83\xbf\x0a\xeb\xac\xba\x3e\x47\xdf\x31\xcf\xda\x99\xef\x66\x26\x53\x6e\x60\xa6\x93\xa9\x8f\x6a\x31\xa7\x58\x22\x01\x3d\x8e\x00\x2d\x2e\x3a\x92\x09\xc6\xc4\x7a\x44\x5e\x8f\xdd\xef\xbb\xb0\xf6\x8e\x2e\xba\xdc\x00\xc0\x3d\x80\x8a\x49\x67\x76\x77\xcf\x36\xff\x40\x3f\x83\xbb\x9f\x37\xc0\xc9\xe8\xbe\x69\x0f\xdf\x4a\x16\xd4\xaf\xba\xda\xe4\x34\x09\x29\x8f\x18\x7f\xf3\x19\x51\x99\x53\xf5\x6c\xf9\x9c\x27\xed\xce\x98\x1d\xb3\x64\xd4\xa4\x11\x01\x7b\xf6\x74\x99\x6f\xcb\xde\x90\x87\x9e\x37\x53\x8a\x79\x1d\xf2\x1e\x1c\x98\x23\x08\xc2\xea\x48\xd0\xe4\x14\xf6\xc8\xb2\x38\x8e\x31\xe7\x31\x46\xc8\xc2\xa9\x2b\xa5\xc7\xe7\xee\xf4\xf8\x88\x9e\xac\x7c\x9c\x7c\x15\x39\x92\xc2\x73\xe6\x64\x41\x89\xd8\x9a\x7b\xd3\x12\xe3\x51\x03\x31\x41\xc3\x8c\x15\xd0\x89\x20\xdb\xfa\x63\xab\xfd\x01\xee\x63\xa6\x19\x5f\xbb\x7d\x42\xbd\xf9\xa8\x88\xec\x40\x0b\xb3\x24\x3e\x20\xc8\x0f\xb3\xe7\x80\x2b\xc2\x04\x01\xdb\x2a\x45\x5e\xc9\x2c\xc3\xe4\x20\x20\x71\x1b\x61\xb7\x50\xe1\xa8\xfb\x8f\x13\x85\x5c\x3e\x7b\x51\xe1\xba\xf6\x36\xec\x94\x0d\xd9\x41\xab\xf3\xab\x37\x6e\x51\x84\x0a\x05\x29\xee\x12\x6a\xc2\x9e\x14\xff\x68\x2d\xdd\xb6\x93\xad\x26\x6a\x34\x2a\xce\xdc\x2d\xb6\x89\xf8\xdb\xd0\xa9\x49\x87\xa8\x33\x79\x3e\x8d\xbb\x71\xc9\x0a\xa0\xda\xb0\x25\x63\x41\x2d\x74\xf5\x3b\xf5\x36\x5e\xc9\xc1\xcc\xee\x0e\x20\xfa\x24\xbe\x16\x74\xc0\xaa\x3d\x0a\x2f\x23\x27\x8f\xc6\x13\xc5\x57\xc0\xbf\xf6\x81\x79\x96\x06\x33\xfb\x9c\x4e\x65\xca\x43\xcf\x4e\x66\xe4\xa8\x67\x8b\xcd\xb1\xd5\x3b\xc1\x93\xf7\xf9\x4b\x4c\xb6\x5d\xe5\xf4\xed\xe8\x22\x4f\x7b\x95\x2c\xef\xab\xd9\x6a\xc3\xb6\xa7\xaa\x47\xcb\x5b\x91\x0c\x48\x16\xb5\xc8\x24\x91\x7e\x91\x56\x44\xc2\x2e\x68\xa7\xf6\xa6\x6d\x17\x05\xaa\xf7\x17\x1d\x88\xb0\xe4\x2d\x13\x74\x4d\x7c\x27\x85\xfd\xe8\x0e\xd9\xa5\x93\x5b\x50\x31\xbc\xca\x0a\x54\xe5\x92\x2f\xb6\x92\xd0\x0b\x09\x54\xe2\x90\x43\x4e\xa2\xf9\xf1\x40\x43\x98\xdc\x02\xa1\xf5\xbf\xd1\x5b\xc7\x74\x04\x39\x4d\xb3\xe2\xdb\xe2\xf4\x1a\xf4\xf8\xc8\xd2\x85\x06\x35\x40\x1a\x98\xa6\x8d\x9a\x1e\x2f\x0b\x33\xa0\x2f\xb4\x7c\x74\x3b\x9e\xb7\xf6\x81\xc6\xa5\x55\x64\xaa\x10\xda\xd3\xd8\xd7\x04\x2f\x8a\x96\x23\x5a\xc6\x2b\x27\x9a\xc4\xf1\xb2\xcd\xec\x86\x19\x28\x51\xcc\x9b\xc8\x61\x0b\xc9\x8e\x37\x91\x82\x6c\x67\xfa\xad\xee\xd0\x64\x97\x6e\x4d\x44\xcd\x70\x71\xfe\xee\xdd\xfb\xdb\xa8\x5d\x00\x1a\xd6\xd5\xc8\x32\x89\xab\xd2\xa4\x5d\xe2\xb0\x14\x36\x5f\x0e\x11\x5d\xa6\xb8\xc4\x31\xb8\x54\x84\x4b\x4c\x9a\xd7\x16\x95\x2f\x16\xda\x22\x42\x68\xd6\xfe\xfa\xe8\x0a\xf9\x08\x43\xfc\xa9\x90\xfb\xfc\xf7\xf0\xbf\x48\x4d\x22\x12\x2b\x15\x24\x9b\xd1\x98\x25\xba\xcd\xab\xb5\xb5\xf5\xc4\x44\x02\xa5\xcb\x41\xa3\x8e\xd8\x6e\x77\x16\x19\x98\x95\x42\x63\xd7\x53\xd8\x5d\xb6\x47\x62\x87\x92\x49\xd7\xfc\x6d\x40\xbd\x12\xda\xa8\x2e\x8a\xfb\xc6\x35\xcb\xa6\x25\x49\xf8\x2f\xe1\x83\xd2\xe1\xd7\xc8\x71\x3a\xa9\xbc\x71\xea\x99\xdb\xe9\x4e\x55\xad\x76\xee\xec\xd1\xd0\x28\x60\x7f\xbd\xf9\xec\x1f\x3d\xbf\xea\xd1\x2c\xf2\xd9\x53\x80\x78\x3e\x41\x57\xae\x6c\x5f\xd1\xdd\x69\x30\x01\x47\x9a\xc3\xe9\xb0\x4d\x3b\x64\x46\x92\xad\x4a\x03\xff\x07\xea\x5c\xd9\xfe\x2e\xf6\xe3\x7b\xbe\x2e\xb0\x2b\xa2\xbb\xf7\xba\x1d\xf2\xbb\x23\xa8\x1d\xca\xb8\x1f\x0a\xf4\x0a\x8f\x65\xd1\x25\x00\x23\x04\x41\x46\xd3\xad\xff\x8c\x83\xe6\x1f\x8e\x34\xf2\xda\xb4\x3b\x90\xf2\xbe\x2b\xb0\x25\x7c\xc7\x3e\x0e\x2d\x83\x79\xe2\x32\x0d\x79\xe8\x37\x8d\xa9\x33\xb3\x91\x04\xa0\xd0\xad\x08\x58\xc9\x6c\x02\x39\xc5\x4e\xa4\xf7\xd2\x07\x36\x92\x0a\xa7\x8f\xab\xfa\x06\xdd\xbe\x29\xbd\xd5\x78\x5d\x1d\x62\x0b\x61\xe2\xba\xf1\xcd\xba\xb3\x7d\x32\x0c\x37\x68\x06\xa4\x16\x21\x4b\x49\xb4\x22\x57\xb4\x4d\x65\x3a\x87\xd4\x8e\x7e\x49\xca\xa4\xb8\x56\x02\x8b\x57\x89\x20\x31\xf1\x56\x80\x1f\xfc\x3d\x53\x8a\x01\xa5\xca\x42\x0f\xde\x96\x4d\xd7\x78\xf4\x1c\x6a\x40\x78\x26\x15\x66\xbe\x5e\x49\x41\x27\x06\x4c\xe4\xdc\x4c\xd4\x9f\xf1\xb0\xf3\x0f\x4f\x0f\x7b\xfd\x24\x13\xc4\x2e\xc6\x6c\xb5\x80\xe3\x87\x09\x8a\x2c\x44\x39\x30\x51\xb9\xeb\x87\x8e\x6e\xce\x87\xce\x64\x89\x51\xbe\xa1\xe3\xbc\x3b\x70\x08\x8c\x27\xbe\xd7\xd5\x1d\x10\x97\xde\xac\x4c\x6f\xba\x0a\x3d\x15\xb4\x4f\xf4\x11\x64\x20\xc1\x6e\x00\x54\x4c\x90\x37\x20\x79\xde\xa3\x97\x0c\x79\x5b\xa9\x37\x92\xf2\xfd\xc6\x0e\xfd\x0f\x02\x28\x1a\xef\x00\xc7\xf7\x36\xa3\x7c\x69\x27\xeb\x05\xd8\x92\x50\x75\x06\x0e\x05\xdd\x93\xd7\x75\xa2\xaa\x70\x8a\x15\xf5\xc1\x7b\x90\xf1\xa1\x06\xce\x1d\xba\x2a\xea\xe0\x6e\xf0\xab\xd8\x6b\x5f\x6d\xc8\xa2\xe2\xaf\xfc\x13\x0d\x2a\xd6\xfa\x77\x4a\xbd\x09\x1f\xb8\x05\x1c\x6f\x0a\x17\x17\x30\xaf\xdc\x24\xde\x42\x4c\xcc\x4c\x53\x0e\x0b\xf5\x56\x7f\x6e\xb6\xc3\x56\xfd\xeb\x8f\x3f\xa5\x56\xa1\x64\xff\xbf\x98\xe2\x64\xc7\x00\xb4\x6c\x60\xf7\xd3\x58\x8c\x0d\x34\x7a\xa3\xab\x0d\xfb\xab\xd8\x55\x49\x91\x5e\x90\x23\xbc\x0d\x86\x66\x40\xd2\x10\xce\xd4\x6a\xcb\x6d\x08\x80\x58\x14\x5a\x7a\x92\x9b\x8e\x2c\xe6\x0d\x40\xc6\x76\x8c\xdf\x6e\x07\x32\xc6\xf0\xb0\x39\x48\x67\x4c\x5d\x82\xc4\x23\x74\x2f\x33\x9c\x2e\x38\xb0\x96\x44\x26\x0a\x91\xb5\x28\x34\x51\x9a\x7b\xfc\x08\x91\xdb\x3d\x9d\x53\x75\xf4\x7a\x5c\xb6\x83\x79\xf4\x9c\x16\x92\x90\x74\xc1\xca\x5b\xf4\x2d\xc7\xf6\x4a\xf6\x28\x43\x2c\x88\x6e\xc7\xf5\x7e\x81\xd1\x3d\xe2\x72\x9f\x81\xca\x4e\x7d\x96\x9a\x74\xa2\x2f\x7c\xfa\xea\xcd\x2d\xda\xd6\x3e\x50\xbc\xa4\x2b\x96\x52\x9c\xd6\xfe\x93\xe2\x55\x61\x20\x8e\xe4\x56\x55\x82\x92\xe9\x74\x30\x96\x07\x0a\xae\x20\x41\x56\x76\x1a\x96\xa6\xd4\x05\x7c\x46\xe3\x1c\xc9\x0e\x5d\x83\xf3\x99\xf1\xd1\x11\x3b\xb5\x81\x91\xe5\x0b\x4b\xb0\x45\x27\xd7\x4a\xb7\xe2\xe1\xfa\x86\x12\xb9\x20\x24\xe2\xfd\x51\x6e\x83\x25\x9e\x39\x3a\x8d\xc9\x23\x68\x83\xb9\x5d\x5c\x0d\xa9\xa5\x1d\x53\x05\x3e\xe3\x38\xfa\x9a\x5d\x15\x74\x4c\x49\x3a\x1f\x5a\xf0\x55\x80\x20\x57\xb6\x4d\x77\x87\xcc\xdd\xee\x10\x13\x12\x5e\xf6\xc2\xee\x1a\x53\x7f\x97\xe4\x89\x8e\xe4\x0a\x67\xff\xff\xfd\xbf\xff\x9f\x27\x17\xd0\xee\x0b\xdf\xb7\x4f\x2e\x44\x40\x04\x78\x1a\x47\x42\xa0\xde\xff\x7b\x31\x74\x7b\xb6\x81\xfd\x40\xbf\x0a\xf9\x46\x2a\x55\x0c\x9d\x63\x83\x0a\xfc\x51\xf0\x17\x10\xab\x82\xa3\xc6\x01\x95\x2a\x8a\x2e\x1c\xb2\xef\x6c\x76\xce\xfe\x6d\x68\xaa\xbb\x92\xee\xc5\xce\xd4\x7f\xc0\x97\xc2\x48\x64\xcc\x6a\xc0\xa9\x15\x8e\x20\x5c\xb4\xa3\x73\x2c\xf5\x51\x45\xba\xc5\x9e\xf3\xf1\xc8\xd2\x39\xeb\x74\x90\x43\x43\x00\xdb\xa6\x33\xc5\x6e\x70\x1b\x32\xba\x93\xda\xae\x06\xb7\xc1\x38\x2b\x9f\x29\x8e\x4f\x8a\x01\xa7\x66\x82\x63\xa9\x7b\x53\x6e\x83\x73\xc3\x78\x77\x87\x85\xc3\x1e\x74\xf1\x66\xed\x60\xfc\xa2\x28\xe8\x08\x26\xef\x06\x57\x84\x53\x95\x4f\x53\xdf\x1b\x44\xda\x1b\x03\x90\xde\xf4\x62\x2e\xa8\xbb\xba\xf4\x7a\x4d\x25\x81\xf5\xe1\xa2\xb6\x57\x5e\xaf\x19\x11\x62\xfe\x85\x7f\x16\x5e\xa3\x71\xd9\xad\x5e\x4f\x43\xd8\xed\x86\xb6\x9d\x06\xba\x6b\xf5\xd2\x60\xf2\x25\xfe\x28\xb6\xd0\x48\x6f\x3b\x43\xa7\xa7\x7c\x14\x15\xfa\x6c\xb8\xe0\xbd\xe1\x8a\x75\x23\x2c\x42\xde\x06\x0e\x5c\x40\x2a\x40\xfa\x89\x43\x50\xf6\x7a\x0f\x69\x7a\x4f\x9f\x9b\xc6\x71\x40\xc4\xd7\xf4\x8b\x92\xe9\xfa\x05\x41\xf1\xce\x25\xc0\xa3\x04\xc2\x7b\xe4\x4a\x7e\x53\x96\xb7\xc0\xd3\xf5\x71\x76\xc4\x38\xc7\x5b\xab\x28\x83\x98\x6a\xb7\xb1\xfb\xae\xb8\x6f\x6a\x63\xf1\xcc\xe0\x58\x0a\x14\x12\x72\xd9\xdb\xbd\x13\xa6\x13\x46\x9b\x3e\x61\x7a\xbb\xc7\x31\xee\xc2\xeb\xdb\xb7\x97\xff\xaa\x10\x07\xcc\xc3\xa2\x08\x33\xb1\xb0\xf7\xa6\xe7\xc8\x1e\xef\xf9\x67\xcc\x64\xe7\xd4\x64\xc8\xd0\xf0\xd2\xc4\x91\x0b\xa0\xce\xeb\x36\x83\xbc\x81\x84\x19\x40\x0a\x3b\x78\xde\xb6\x33\x79\x6c\x56\x54\x2e\x0f\xc1\x30\xaa\x56\x78\x4b\x03\x24\x18\x6f\x6a\x22\xb0\x58\xce\x8c\x59\x3f\x96\x21\x46\x1c\x60\x61\x6a\x58\xfa\x0b\x0c\x22\x49\xf6\x72\xef\xcc\x9e\xd8\x5b\xce\x22\x2b\xaa\x32\x58\xd3\xa1\xdb\x52\x0a\x00\xff\x24\xfb\xd7\xba\xf1\x59\xe6\xae\x37\xb8\x0e\xa8\x59\x8e\x48\x1c\x8e\x2c\x35\xc8\x09\x20\x89\x06\x25\x22\xeb\x6c\x57\xc2\x91\x5a\xca\x86\xbb\x20\xb9\x01\x32\x55\x67\xbb\x27\x78\xde\x62\x66\xd6\x08\x24\x45\x69\x4b\xbc\x2c\x21\x01\xdb\x0e\xce\x97\x4b\x53\xda\xae\xd4\x71\x6c\xfe\x53\xac\x80\x97\xe8\x81\xa6\x65\x7f\xc2\xc1\xa7\xef\xc8\x23\xa1\xb7\x20\xa8\x2a\xe9\x87\xc4\x79\x4b\x91\xa3\xe4\x43\xb1\x18\xb1\x1f\x29\x66\xa4\xb5\x63\x06\x9f\xe3\x36\x02\xac\x98\xca\xa7\xf8\x44\xff\x95\xf4\x2a\x55\xbf\x4d\xfa\x05\x54\xab\xc4\xb0\x5d\xac\xc5\x4d\x1b\x80\x24\x8d\x62\x7a\x45\x15\xcd\x37\xf5\x8e\x2c\x50\xb1\x49\xf1\x28\x43\x47\xaf\xfc\x76\x7f\xfe\xb6\x5b\x16\x1a\x30\x7b\xe8\xd6\x2d\xcb\x8d\x3d\x1b\x7a\xac\x6c\xb1\x58\xa4\xf5\x05\x75\x02\x6a\x68\x81\x5b\x8f\x87\xf8\x29\xc5\xd9\x42\x6e\xae\xf1\x74\xc5\x89\xa7\xe7\xd3\x05\xc0\x8a\x06\x32\x2d\xb0\xb6\xa2\x97\x5a\x9a\x75\x43\x11\x39\x51\xa8\x36\x1c\x1f\x24\x22\x59\xea\xea\xce\xed\x34\x06\x66\xa4\xf6\xe0\xf9\x6c\xfb\x64\xbd\x56\xa6\x2d\xd1\xb4\x5a\x9d\x29\xfa\x0c\x99\x48\x59\x93\x45\xcf\x8e\x72\xa3\x35\xaf\xeb\xba\xf4\xdb\x9d\x18\x2b\x3d\x3e\x71\x4f\x9f\x49\xb7\x9f\x3f\x4e\xa0\x22\xc0\xe3\xb8\x2d\x6b\x8a\x12\xcb\x96\x92\x69\xde\xd8\xd0\x38\xcd\xe3\xa6\xf1\x21\x18\x62\x13\xd7\xe8\x9c\x2e\x21\xd6\x94\xf9\xec\x4d\x57\x9b\x5a\x25\x32\x46\x32\x37\x8c\x84\x86\xb6\x3d\x94\xde\xd2\x2a\x8d\xd4\x86\xfa\x2b\x00\x32\xec\xac\x2a\x13\xb6\x99\xc0\x9f\x40\x77\x1f\xa1\x3f\x7a\x50\x9d\x61\x46\xac\x2e\x32\x10\xb1\x06\x61\x1d\x44\xfd\xd6\x05\x47\xc7\x88\x67\x85\x31\xd7\xd0\xa9\x05\xdb\x83\xd7\xfe\x14\x79\x53\xc1\x29\x2a\xae\xf9\x8b\x94\x0e\x8a\x8d\x3f\xda\x34\x33\x4b\x94\x3b\x51\xa6\x23\x31\xb2\xbb\x1d\x2f\x5e\x26\x6b\x4b\x43\x91\x33\x79\xc7\xa0\x30\x33\x09\x92\xc9\x65\x85\x69\xa0\x1b\x59\x62\x79\xe2\xb9\x4c\x9b\x2d\x33\xd4\x71\x21\xca\x6b\xaa\x37\x91\xb5\x20\xcb\xbf\x6c\x5c\xa9\x03\x75\xec\xbc\xa8\x4e\x59\x12\xde\x69\x36\x03\xa5\x58\x31\x9a\x4e\xde\x11\xe3\xfc\x50\x45\x48\x1f\xb0\x0e\x77\xd8\xf2\xe9\x1e\xc2\xa5\x8a\xc0\xa6\x95\x64\xca\x55\x0f\x0f\x01\x3a\xf5\x36\xcc\x45\x93\x2d\xb4\x59\x2a\x46\x3d\x19\x55\xac\x26\xb6\x2a\x56\x94\xc9\x99\x29\x6b\xf8\xf5\x5d\x60\x6a\x5c\x76\xb6\x24\x45\x46\x9c\x81\xbc\x3b\x62\x81\x21\xe4\x7b\xa4\xf9\x08\x3a\x86\x63\x15\xb1\x7d\x6c\xb9\xdf\x24\xd5\x0a\x49\x9d\x98\x74\x31\xb4\x72\x4d\x57\x99\x18\x42\xd6\xd4\x52\xff\xe2\x61\x95\x5e\x8c\x3c\x80\xe6\x1b\x7c\x91\xb4\x87\x59\xc0\xa3\x21\xab\xc4\xf6\x61\x5b\x11\x39\x94\xfd\xb3\xd6\x4d\x17\xb7\x97\xb7\xe8\x59\x44\xa7\x8a\xdf\x24\x27\x48\xde\xd3\xc9\x52\x3e\xa7\x61\x44\x05\x57\x9c\xb2\xaf\x5f\xd4\x9d\x15\xda\x0a\xa4\x07\x78\x41\x9a\x1d\x90\x5c\xc9\x26\x26\x39\xc9\x20\x3b\xb6\x07\x03\x44\xda\x92\xed\xbb\x79\x3b\xbc\x24\x31\x30\xdc\x0b\x3d\x65\xdb\x98\x38\xd9\xd8\x54\xf2\x2c\x05\xc9\x70\x84\x8d\x8f\xc5\x09\x36\x26\xc4\x5f\x42\x03\xe7\x80\x1b\x96\x75\xd3\x33\x29\xa6\x0f\x16\x56\x23\xb1\x61\x97\x34\x6c\x7e\x60\xca\xdc\xa8\xfd\x81\x3f\x73\x62\xb2\x7a\xa4\xd6\x14\x07\x76\xa2\xe9\x73\x06\x2f\x20\x28\x44\x68\x10\xc2\x1f\x39\x7e\x26\xf4\xc2\xf8\xe7\x70\xa9\x90\x21\x39\xa3\x40\x46\xbc\xb2\x62\xfe\xaa\x41\xc9\xf0\x65\xd3\xd5\x21\x4d\xa3\x1e\x27\x78\xc2\x87\xf4\x28\xc9\xb1\xc3\x7a\xc8\xe1\xb3\xf1\x05\x6a\x49\x39\x4d\xe2\x57\xbd\x87\xff\x21\xb5\x33\x7b\x56\x94\xef\x4d\x1f\xe2\x3b\x51\x70\x7a\x20\xfb\x28\x73\x25\xc9\x8b\xb1\x9c\x95\x64\x01\xc9\x80\x44\x12\xa2\x31\x3f\xcd\xae\x5a\xa3\xfb\x32\x94\xbf\x80\x4f\xd5\x4e\xb0\x04\xc1\x2d\x95\xdb\x46\xd5\xa4\x30\xef\xec\x3c\x18\x55\x97\x42\x52\x8d\xdb\x39\x60\xbb\x33\x5d\x06\xfb\x7e\x67\xba\x54\x6c\xcc\x10\x5b\x67\xea\x11\x66\xbc\xc5\x99\x87\xd7\x0e\xc3\x1a\xe2\x3d\x16\xff\x9c\xb6\x33\x01\xa2\x66\xea\x19\xd0\xce\xa6\x70\xef\xec\x04\x88\xf7\x6d\x60\x0f\xc6\xb3\x17\xe7\xc7\xec\x27\x13\x44\x99\x25\x1a\xc8\x84\x68\x67\x08\x14\x4e\xfd\xac\x9a\x80\x8c\x2b\xcb\xf0\x11\xae\x70\xcb\xb0\x08\x37\xaa\xb0\xbb\x34\x70\x99\xb5\x59\xa1\x9b\x9f\x33\xa8\x53\xcd\x17\xc2\xb8\x78\xd3\xad\x6c\x4a\xe3\xd0\x69\xb6\x3b\x70\x29\xd4\x4f\x04\x9b\xc4\x2c\xfe\xce\xa3\xd0\xd3\x47\x12\x8b\x47\x2f\x6d\x16\xf1\x91\xdc\x32\x29\x5a\xf9\xb8\x61\x1c\xb7\xe7\x48\xab\x66\x2e\x48\x70\x48\x9c\xf1\xc7\x8a\x0c\x8e\xdd\xa5\x88\xb8\x7f\x11\x5e\x48\x6c\x2a\x84\x46\x72\x87\xb4\x8a\x70\x84\xe7\x27\x02\xb5\xa5\x80\x7b\x84\x16\xd7\xb7\xd7\x4b\x75\xa6\x4e\x6a\x5c\xdc\x61\x2e\x61\xe9\xc6\x2c\x5a\xc9\x92\xc9\x7a\x1c\x99\xe8\x6c\x86\xd3\x3c\xe0\x16\xe8\xa6\x86\xd6\x65\xb8\xb5\x69\x67\x4a\x3c\xb8\xc1\xc7\x30\x47\x31\x4f\xb6\x31\x97\x7c\x60\xb7\x45\x88\x75\xd3\x99\xe3\xa8\x8f\x94\x63\xc5\x39\xaa\xcb\xa7\x39\x0b\xdd\xb6\x65\x50\x55\x9d\xb7\xad\xa2\x8f\x59\x50\xc7\xef\x77\x78\x0b\xc2\x60\x6c\x6a\xcd\x66\x3a\x73\x85\x68\xb5\xd6\xe5\xf2\xc0\x65\x68\xdb\x61\x54\xdd\x23\x45\xb6\xa6\x03\xc9\x05\xd8\x39\x2a\xf2\x36\x24\xcc\x14\x71\x1c\x6e\xd2\xf6\x7e\x26\x67\x81\xeb\xd1\xf3\x51\xe1\x66\x41\x80\x68\x20\xc8\x7b\xfc\x31\x07\x42\x96\xdb\x41\x7a\xbb\xe6\xe8\x5f\xe2\x3b\x36\x5b\xb1\xd1\x2e\x96\xb8\x44\x57\xea\xfe\x2b\xca\x6d\xad\xf3\x70\xcc\x91\xa1\xfe\x5b\x8b\xc1\x34\xf0\xf3\x81\x7a\x62\x01\xaa\x68\x52\x02\x76\x92\x28\xa3\xe8\x77\xd4\x45\x25\x36\xc4\x68\x3e\xcc\x56\xc0\xfa\xf9\xa4\x70\xb9\xd2\x77\x66\x06\x03\x69\xb3\x18\x1a\x95\x47\x76\x08\x5a\x23\x3b\x24\xe7\xca\x67\x9a\x8a\xcf\x3e\xdf\xe2\x21\x36\xf8\x68\x87\xd7\x21\x2b\xdf\xe1\xdd\xb0\x2d\xb9\x8f\x8e\x28\x80\x7c\x85\xe2\x32\x02\xa5\x86\x2a\x7f\x0b\xdf\xb1\xbb\xff\x02\x1c\xf6\x09\xf6\xf4\x37\x29\x26\xbe\x8a\x04\x9d\x44\xe3\x3e\x67\xdf\x95\xe0\xc4\x22\xd6\x17\x75\xa2\xdc\xe1\x62\x7f\x0e\xcd\xb4\x89\xcf\x05\x9d\x02\x78\xff\x95\x6b\xa8\x33\x92\x86\x1f\xd2\xdf\x3c\x4b\x1a\x15\x40\x78\xd2\x31\xd6\x49\x0a\xde\x1b\x1c\x55\x81\xbb\xc6\xcf\x51\xe6\x43\xc8\xfa\xac\x00\x1f\x9b\x71\x89\x31\xe8\x68\xa2\x78\x98\x89\xa5\x78\xa6\x55\x53\xb3\x51\xfa\xa3\x30\xdc\xf8\xf5\x1c\x17\x4b\x36\xe8\x54\x5f\xc0\x21\x9f\xdf\x88\x85\xb9\xdc\xde\xac\x02\x1e\xbe\xe4\xae\x69\x76\xa8\xab\x1c\xcc\x82\x65\xa3\x6f\xab\x62\x67\xf9\xb9\xa5\x2b\xfc\x11\x6b\x96\x08\xa6\xc8\xef\x5e\x24\x9f\x61\x99\x67\x16\x39\x9c\x28\x11\xa5\x25\xb4\x12\xeb\x2d\x32\x8f\x24\x8e\xe9\x29\xe2\xdf\x7f\x59\x11\xb0\x2a\xdb\xdd\x9b\xde\xb1\x17\x02\x63\x64\x05\xe6\xaf\x75\x13\xa7\x67\xa4\xeb\x90\xba\xc9\x88\xec\x46\xdf\x9b\xd1\x21\x2e\x2c\x4f\x60\xa1\xf2\xfc\xca\xb6\x36\xb2\x58\xf8\x35\x06\x20\x2b\xa9\x93\x7a\x96\x3b\x8a\x4b\x93\x77\x2e\x86\x2f\xcf\x4f\x1d\x82\x9c\xe9\x0c\x65\x8c\x34\x65\x79\x66\x08\x34\x46\x0d\xc4\x70\x63\x62\x07\x3c\xc5\xc2\x7e\xe8\x08\x1a\xcc\xb4\x66\xc1\xe6\x1d\x2f\x89\xc7\x48\xad\x27\x1b\x14\x82\xa3\xb3\x65\xd3\x65\x06\x95\x8c\xfb\xb8\x21\xdd\x7c\xe5\x51\x77\x4b\x6d\xfd\x82\xde\x36\x21\x93\x3b\xdd\xfb\xa6\x6a\x76\x3a\x90\xca\xab\x24\x45\x20\xb5\xf7\xba\xda\xc0\xb6\x4e\x99\xae\xdf\x48\xff\xc0\x6a\x07\x58\x8f\x64\x92\x0e\x82\x96\xd7\xcb\xdf\x66\x4a\x87\x30\xd8\x69\xe9\x90\x08\x28\x7e\x2b\xe8\x2e\x2c\x11\xd7\xd2\x3b\x31\xce\xac\xec\x76\xa7\x7b\x93\x6b\x63\x21\x25\xa8\x63\x67\xe1\x64\x96\x04\xd8\xef\xad\x0a\x17\x39\xf8\x0e\x19\x9c\x60\xb9\x1e\x11\x15\x8e\x41\x05\x92\xa3\xc5\xa8\xdb\x67\x18\x5b\x61\x5c\x21\xd7\x70\xa6\xf8\x17\xe7\x67\x97\x88\xe3\xcb\x43\xe9\xb9\x2d\x7b\xe3\x86\x16\x67\x04\x1d\xc3\xe8\x63\x65\x87\xae\x5e\x04\x20\x7c\x0c\x0a\xb8\xad\x58\x57\x72\x88\xd0\x53\x51\xec\xa6\x0a\xb9\x4b\x53\x69\x60\xd4\xb1\xcd\xd0\xd7\x8d\xd1\x75\xd2\xfb\xde\xe0\x8b\x0c\x63\xfc\x5b\xd3\xaf\x43\x47\xbf\x06\x7f\x36\xa6\x1b\x0a\xb7\x4d\x8e\xb2\xed\x41\xd5\xcd\x0a\xa9\xae\x57\xac\x6e\x90\xea\x36\xda\x95\xe9\xa3\x5f\xb0\x40\x42\x6d\xa2\x44\x1a\x4d\xcc\xd2\xf8\x3d\x46\xb0\x42\x9f\x08\xa8\x97\x54\x65\xee\xe7\x91\xe3\xd3\x53\xac\xe3\x29\x70\x2e\x35\x13\xee\x7f\xc1\x0f\x22\xdf\x3c\x73\x23\x31\x73\x66\xd5\x21\xf1\x93\x35\xb4\xc7\x2d\xe3\xad\xc2\x11\x42\x6e\xa7\x16\xcd\x07\x1d\x23\xe2\x35\xf5\x53\xf0\x9a\x52\x4d\xe7\xed\x8c\x37\x15\xe3\x47\x4c\xcc\xd4\x48\x35\x94\xf6\xcf\xa1\x57\x27\x1f\xff\xc7\x27\xd9\x12\x5e\x2f\xcb\xf4\x74\x20\x8b\xd5\xf0\x99\x41\x8d\x15\x3e\x31\x2f\xbb\x36\x17\x1d\x23\xe7\x33\x0f\xe1\x2d\x2d\x9e\x68\xc3\x45\x19\x6c\x68\x9e\xce\xa4\xb7\x6a\x67\x7a\xa0\x8a\x3c\x9a\xc1\x66\x77\x91\x0d\x0d\x72\xfb\x7d\xac\x09\x56\x4d\xc8\xb9\x9d\xa0\x0d\x64\x90\x61\x72\x2a\x48\x28\x6a\xed\x75\xb9\xec\xc5\xca\x5e\x7b\x1d\x6c\x32\xe7\x71\x31\x6c\x3d\xc4\xd8\x4a\x6c\xeb\x85\xf7\x81\x09\x71\x97\xb6\x37\xae\x44\xc7\x72\x52\x05\xdf\xb2\xb7\x78\xdb\x54\x5e\x85\xf4\xc6\x71\x70\x23\x7a\x10\x65\x4d\xcf\xcb\x84\x67\xe4\x56\xbd\x71\x1b\x7c\xfc\x01\x00\x56\x66\xaf\xb6\x16\x19\xda\x40\x91\x74\x57\xa2\x09\x22\xed\xd7\xd4\x8a\x28\xeb\x06\x9b\x14\xf1\x80\x8c\x9e\x74\x08\xa8\xd0\x62\xeb\xeb\xb0\x91\x23\xc3\x1c\xbe\x48\x11\x82\x12\x57\xfa\xed\x8e\xd7\x35\x7e\x07\x8e\xd6\xc3\x56\x77\x64\x5c\xdc\x74\xca\xf6\xb5\xe9\x39\xd4\x2e\xfa\x68\xfb\xcd\x1c\x66\xe2\x4b\x09\x29\xb3\x73\xc9\x0d\x13\xa1\xa5\xf4\xb0\x6c\x81\xca\xc9\x65\x2f\x00\xd0\x84\x5d\x63\xba\x5c\xec\x72\x7a\x24\xf7\x78\x69\x96\x18\xfd\x05\xfd\x69\x6a\x70\x93\x2c\xe2\x31\x99\xc3\x05\x3d\x47\x6d\x70\x13\x0d\x1d\x13\x05\x2c\x15\x94\xed\xbf\xb1\x5e\xe8\xb1\x0f\x1b\x87\x37\x57\xb4\x76\xcf\x87\x3f\x25\xa3\x1d\x71\x55\xd9\x54\x7e\xff\x2f\x27\xf5\x0f\xfc\x62\x96\xde\x9a\xa9\xcd\x2a\x24\xd2\xa8\xa5\xfc\x0b\x1c\x24\x8d\xc3\xf8\xd6\x30\x5a\x70\x56\xf2\x08\x2d\x84\xb0\xb2\xd0\x94\x18\xac\x22\x7f\xf6\x4b\x7a\xe4\x65\x30\x18\x8b\xac\x33\xfb\x84\x00\xf1\x3d\x59\xbc\x5b\x12\xc6\x46\x3a\xd9\xd0\x0e\xa5\xa8\x0f\x54\x8a\x9c\x13\xb0\xc9\x5d\x65\x16\x45\x62\x3d\x93\x30\x17\x51\x59\x93\x64\xcf\x68\x96\x92\xdc\x79\xed\xd2\x18\xa0\x8e\x2a\xd4\x13\x97\xd5\x6d\xcb\x7a\x30\x25\x8b\xfe\xef\x2c\x92\x12\xf8\x1a\xb7\x40\x44\xde\x31\xe6\x20\xff\xe5\x1d\x2a\xdd\xb0\x84\x33\x9d\x82\x52\xd3\x42\x4f\x0c\x86\xbc\x15\x4f\x12\xbe\x9b\x67\xee\x2c\x43\x3f\x3a\x03\x67\x07\x27\xb8\x5a\xc2\xff\x34\x63\xc6\xa0\x3b\xcd\x8d\x7d\x7e\x31\x18\x54\xe3\xab\xef\xe5\x72\xfa\x87\xbc\x93\x86\x22\x0a\xc1\xff\x34\x23\xbc\x7e\xc2\xa8\x4a\x5a\x87\x8c\x11\x91\x73\x4a\x7c\x19\xe3\x34\x58\x81\x3c\x3e\x1c\x0e\x87\x27\xdb\xed\x93\xba\x7e\x3c\xd3\xeb\x84\x89\x0e\xdd\x1e\x59\x41\xb0\xb6\x6a\x74\x8e\x24\x98\x12\x99\x64\x7e\xec\xd0\xa4\x25\x9d\xa7\x0f\xa8\xa0\x5d\x1a\x8f\xee\x83\x09\x19\xc1\x9d\x14\x67\xcf\xc1\x09\x69\x77\xad\x89\xce\x63\x40\xf2\x28\x28\x44\xda\x97\x91\x3c\x97\x64\x8d\x62\x2c\x3f\xd8\xc0\x60\xd5\xc8\xfc\xb5\x5d\xc5\xc6\x8c\x06\x85\xde\x48\x3c\x3a\x24\x89\x1c\x15\x87\x35\xc8\x52\x33\x80\xf3\x92\x54\xac\xfd\xbf\x53\x9a\x9a\xab\x7e\x6e\x19\x7c\x41\x9e\x2a\xf6\xcd\x5d\xa3\xce\xd4\x5f\x9b\xbb\x06\x7f\x2f\x38\x2a\x76\x12\x05\xdb\x5b\xcc\xfe\x2e\xcb\x97\xbe\x42\x0e\x5a\xc4\x6d\xd8\x97\x57\xd1\xb3\x7f\xe4\x2c\x38\xb4\xb5\x6a\x9b\x3b\xe2\x37\x6c\x35\xa0\xa2\xe5\xc0\xa1\xcd\xfe\x0b\xe3\x8c\xd9\xb5\x41\x67\xee\x20\xc3\x34\x9e\x17\xd5\x82\x2a\xe4\x35\x8e\xa1\x0f\x4b\x7e\xe1\x99\x37\x39\x99\xca\xf4\xce\x23\x7f\x41\xe0\xe9\x1b\xd0\x98\xc0\x72\x0b\xa7\xb3\xd4\x12\xe1\x29\x52\x55\x8a\xf5\x1d\xbf\x90\x45\xf9\x62\xba\x96\x5b\xaa\x40\xcf\xc9\x7a\x09\x04\x0a\xa3\xf4\xd2\x0e\x6c\xe0\xc5\xaa\xd1\x48\x20\xb8\x1f\xf8\xb8\x0f\xd7\x74\x03\xc2\x45\xac\x03\xed\xfc\xb9\x02\xbe\x5a\x39\x71\x78\x93\x2e\x2a\x1e\x2c\x77\xe2\x08\x1c\x57\x3a\xa4\x94\x7c\x85\xc2\xba\x84\xac\x3f\x31\x6f\xdc\x1f\xf2\x33\xcb\x40\xf8\x60\x9b\x87\xea\xac\x6f\x2a\x53\xfe\x28\x7c\x54\xea\x8b\x46\xb6\x1a\x6b\xc3\xac\x3b\x88\xc1\x12\x66\x41\xd8\x20\xd8\xef\xa6\xf7\xf8\x5a\x44\x98\xa1\xe9\x25\x3c\x2e\x24\x44\x35\x8a\x04\x93\xdf\xc3\x27\x38\x1c\x4f\xb3\x4b\x06\x51\x62\x9e\x49\xc4\x12\x31\x4f\x74\xc5\xec\xfb\xcf\x92\xb6\xa0\xc9\x72\xe1\x19\xc7\x24\x2b\x79\xdc\x87\x79\xa4\xe4\xfb\x08\xd8\x82\x3c\xb2\x38\x18\xfa\x31\x20\xb2\x54\xe0\x95\x74\x0c\x08\x1f\x62\x26\xa7\x9e\x63\x20\x43\x27\x77\x64\x67\xea\x83\xfc\x8e\xc0\x73\xc6\xb4\x93\xcc\x72\x49\x72\x78\xe2\x17\x45\x2e\xd8\x51\x22\x06\xba\x8e\x50\xa9\x67\x08\x4f\xf2\x6e\x70\x1b\x7c\xf4\x33\x68\x80\x25\x44\xab\x54\xf4\x25\xef\x9f\x23\x80\x91\x83\x37\xf2\x46\xa1\xd8\x3e\x91\xae\xd0\x35\x35\x86\x8d\xc0\xdb\x45\x60\x77\x1f\x49\x3e\x6a\x3f\x30\x3e\x01\xb1\x55\xa7\x19\xdb\xc8\xc1\xcf\x3a\x7c\xf6\x51\x8c\x56\x62\x2b\x46\x06\x6d\xe3\x8c\x91\x45\x6b\x39\x74\xc1\xe4\x37\x5a\xb7\x4e\xdb\x9b\xbc\xb3\x46\x37\x45\xe8\x47\xde\xf8\xf0\x8e\x9a\xed\xd8\x7d\x61\xd2\x94\x71\x8d\x91\xd8\xbf\xc8\xab\x11\x19\x30\x61\x83\x1f\x0c\x09\xf8\x5d\xac\x69\xd7\x5b\x8f\x77\x6e\xa9\x8d\xf0\x95\x24\xce\xac\x9e\x69\x81\xe0\xfb\x44\x39\xc9\xea\xc1\x77\xcf\x6c\x5f\xd1\x62\xc1\x67\x79\x75\x55\x35\xb5\xe9\xbc\x6e\xa3\x34\x8a\x11\x43\x37\x8d\x37\x18\xf4\x2b\x99\x3f\x8c\xf4\x9e\x6c\x01\x0a\xe4\xa8\x53\x9b\x62\x0c\xe3\x28\xf6\xb2\x8b\xc5\x62\xbc\xcc\x4b\x6e\x2f\x6d\x64\xe6\xcc\xaf\x42\xda\x03\xe0\x23\x97\x2e\xaa\x5c\x71\xbe\x12\xea\x81\x3b\x84\xb0\x86\x27\x6d\x16\x93\xd1\x1a\x19\x27\xca\x48\xe1\xa4\x2d\x47\x9b\x61\xa6\x48\xe0\x32\x38\x3a\x44\x1c\x53\xd6\x04\xee\x7a\x73\x8f\x3b\x10\x46\x5c\xc6\x75\xa6\x19\xa2\x9d\x1f\x49\x75\xf2\x68\x64\x26\x63\x35\x9d\xf3\x40\x88\xc8\x0e\x48\x66\xf0\xeb\x70\x86\x98\x08\x14\x8f\x05\xfb\x49\x23\x96\x3e\xc4\x9c\x63\x0e\x36\xbf\x3c\x97\xa2\xc7\x09\xe1\x99\x97\xdc\x65\x0a\xca\xc0\x01\x61\x3a\xdb\x3d\x09\x4b\x52\x66\x02\x19\x0b\x12\xf2\x73\xa4\xe1\x85\x99\xdc\xf6\x72\xd2\xa7\xb0\x1a\xcb\xb8\x10\x81\x6a\x87\x45\xba\xdf\x58\xd4\x4e\x20\x11\xcc\xeb\xf8\x3a\x6c\xa9\xdd\x2b\xf3\xca\xb6\x67\xb7\x7a\x6f\x93\xed\x60\x57\xe9\x38\x4d\x06\x09\x9f\x6e\x03\x56\x32\x96\x20\x17\xb1\xc3\x4e\xbb\xf0\xb0\xfe\x48\x11\xb2\x31\xd5\xdd\x83\xbd\xce\x1e\x86\xfb\xa3\x9d\x25\x43\xab\x80\x8b\xcd\xad\xf0\xf3\xa1\x62\x34\x06\xf4\x0a\x00\xed\x2f\x7a\xcc\x9a\x03\x71\xb3\xbd\xf4\xf6\x9f\x68\x91\xd4\xc0\x2d\xc2\xcf\x09\xed\x95\xd2\x13\xda\x7b\x35\x43\x01\xd2\x25\xf6\xb5\x94\x77\x63\xed\x1d\x3d\xbf\xb8\xc4\x9f\x31\x67\xdd\x78\xc9\x84\x83\xe2\x75\x9e\xbb\xd4\xae\xa9\xca\x84\xb5\xf9\x05\x12\x66\x18\x1c\xf6\x1d\x4b\x20\xd9\x85\x75\x0a\xea\x0e\x5d\xc5\x6f\x10\xc2\xb8\x1c\xba\x4a\xbd\xb3\xfb\x29\x2a\x00\x6b\xba\x52\x74\x7e\x11\x25\xe4\x84\xc7\x26\xbf\xac\x13\x24\xde\x59\xf3\x13\x63\xc9\x52\xe4\xf8\xca\xef\xe5\xcd\xd1\x9b\x66\xe6\x20\x4e\x7a\xc4\xb6\xe7\xd3\x1e\xb1\x17\x0a\x9c\x88\x5f\x17\xfd\x78\x2e\xea\xf1\xd8\x78\x36\x60\xd7\xf5\x3d\x48\xac\x75\xda\x94\x73\x4e\x9b\x69\x0c\x30\xab\x23\x92\x88\x42\x18\xbd\xf6\x9e\xf4\xcf\x19\xf2\x4c\xee\x74\x5b\xb2\x98\x06\x32\xb7\xbc\x27\x0f\x49\x49\x23\xda\xd6\xee\x4b\x0e\xdd\x9d\x56\x71\x8e\xe1\x2f\x25\x1c\x77\xf0\xb5\x40\x84\x18\x10\x2a\x0f\x49\xb0\xa3\x20\x00\x79\x33\xcc\xe7\x69\x33\x24\x6d\xd4\x8e\x0c\x94\xdf\x94\xff\x55\x40\x91\xc7\xff\x70\x7d\xf9\x00\xb8\x34\xfb\x2f\xd9\xd3\xc2\x4b\x18\x7a\xa2\x7c\x44\xc6\x3f\x5c\x5f\x52\xeb\xfd\xc6\x1c\x72\x13\x33\xaf\x97\xc9\xe4\x90\x20\x3d\x1a\x6f\xba\x30\x47\xa7\x71\xd3\x1f\x19\x71\x84\x29\x19\x66\x34\xf4\x6d\xb3\xde\xf8\xbd\xc1\xe8\x38\x47\x70\x65\xf3\x91\x37\xe2\xc8\x8c\xf0\xd5\xf1\x37\xcf\xc9\x5c\x43\xc3\xe4\x1c\x69\x5d\x28\xcc\x39\xe3\x89\x42\x43\x45\x75\xcb\x38\xe7\x67\x2c\x29\xfa\xdf\x3d\x69\x29\xea\xa0\x28\x3b\xde\x38\xf5\x12\x61\xa6\xe5\x69\x68\x9c\x3f\x90\x97\xc1\x3c\x82\x77\x7a\x8b\x31\x4f\x01\xea\xe7\x07\x71\x2c\xe4\xad\xa4\x33\xf5\x8e\x7e\x3d\x0c\x8e\x6f\x2c\xc5\x32\xe7\xc9\xe7\x43\x7d\x4d\x23\xd9\x48\x50\xc7\xd4\x0a\x94\x44\xed\xbf\xc3\xd9\xf9\x0f\xf5\x77\x58\x2a\xff\x50\x7f\x6f\xba\xda\x7c\xfe\x87\xdc\x9a\x85\x27\xc3\x81\xdc\x9d\x4e\x42\x9e\x90\xea\x1b\x06\x01\x8b\xa5\xa7\xff\xd0\xb6\xe3\xdd\x92\x4b\x4d\x1c\x03\x6b\x47\x4f\x21\xf5\xcd\x72\xa0\x93\x4f\xae\x34\x27\xd1\x81\x96\x53\xa9\x81\xee\x96\x28\x28\x06\x1e\xc8\xe8\xdb\xa4\xce\xd4\x1b\x8a\x86\x21\x77\xe3\xc2\xc9\x60\xf6\xb8\x3c\xed\x30\xbe\xfa\x90\xeb\x3a\xda\x5b\x03\x9e\x32\x78\xf7\x11\x6e\x39\xc5\xb2\x3b\xca\x99\x1a\xdd\x29\x7e\x27\xcb\xc7\x17\xf8\xa5\xfe\x4f\xdb\xa5\x92\x38\xdd\xf1\xa0\x27\x9d\xb7\xa5\x83\xb3\x43\x0c\x5e\x12\x41\x19\x6f\xcf\x32\x5f\x74\xd8\xce\xde\x29\xdb\x37\xeb\x06\x56\x1c\x16\x4a\x86\xb9\x33\x7b\x7e\x71\x67\xa3\x1d\xe1\x0d\x2f\x87\x50\x20\x7a\xaa\x46\x87\xe7\x6c\x5d\x5e\x41\xae\x23\x59\x8c\xe4\x92\xc0\x0f\xe3\xfb\x05\x89\xd6\xa0\xbb\x37\xbd\x0f\xd7\xa6\x5e\xdd\x5a\x75\x6d\xd6\x43\xab\xfb\x34\x08\xc0\xb8\xc0\x78\x41\x0a\x1e\x56\x6f\xe2\x99\x0f\xcb\x42\xf5\x8c\x2b\x55\x10\x48\x38\x00\xbe\xfd\x00\xd9\xa4\xa7\x78\xc0\xe3\x5a\x48\xcf\xe4\x50\xd1\xf4\x84\x9f\x50\xc9\x03\x20\x65\x15\x27\xa3\xc1\x6d\xc0\x3b\xe4\xb9\x56\x90\x25\x59\x68\x03\xc5\x41\x9a\x69\x41\xb4\x8a\x93\x48\x48\x7c\xbf\x3c\xd2\xf4\x10\x34\x85\x5a\x1b\x05\x86\x88\x1a\x77\x82\x92\xc7\x49\xa9\x49\x68\xb3\x9a\xc7\xe3\x4f\x09\x01\xbd\xf4\x72\x06\xa4\x89\x7e\xbe\x97\xb7\x62\xa6\x60\x41\x31\x12\x1f\x88\xc9\x07\x25\x91\x8b\x90\x14\xf0\x24\xe5\x8f\x13\xf1\x16\xab\x36\xc9\x53\xad\xa8\xba\xc2\xd0\x6f\x6e\xa6\x79\xa3\x69\x9a\x0d\xb7\xd5\xac\x92\x35\x8c\x7e\x56\x4d\x57\x37\xf7\x4d\x3d\xe8\x96\xdf\xb7\x3a\x8e\xf7\xa7\x1c\x6f\x65\x3b\xd4\x88\x1c\xc5\x3d\xea\x10\xd2\x36\x8c\x78\xfb\xb8\x67\x63\xf2\x55\x7c\xba\x6a\xb6\x47\x40\x76\x83\x79\x18\xef\x24\x8a\x9e\x1a\x1f\xa1\x49\x75\xf5\xa4\x88\xc7\xf5\x41\x31\xb8\x65\x95\xfe\x3c\xe1\xf2\xd8\x9e\xeb\xd7\x1e\x70\x22\xfb\xf3\x42\x7b\x3d\x0b\x26\x13\xfa\x5e\x3c\xaa\x0c\x16\x42\x96\xab\xd6\x5e\xc7\xdb\xd0\xce\x72\x28\xad\xa5\xae\xee\x66\xf5\xac\xb3\xf8\x67\xf6\x57\xaa\xca\x85\x81\x13\x61\x1c\x3d\xde\xa0\x62\x38\x48\x4e\xa6\xcc\xeb\xe4\xc2\xe1\x3a\x25\x4d\xd2\xe0\xe8\xc9\x85\x5d\x19\xbf\x44\x91\x68\xfc\x72\x07\x51\x6c\xda\x1c\x3d\x3a\x32\x50\xd2\x81\xec\x19\xa9\x3f\x32\x5a\xc7\x07\x2a\x12\xa2\x2f\xc6\x57\x3b\x8e\xef\xa7\xa3\x84\x2d\x89\x82\x26\xbd\x01\x3a\x79\x20\x53\xa5\xa9\xeb\xd9\x29\x07\x15\x82\x5c\x90\x0a\x61\xb8\x4f\x99\x83\x3c\x0d\x26\xc3\xfc\x58\x60\x62\xc3\x49\x7b\xe8\x78\x0b\xf1\xa4\xa3\x6e\x9f\x4b\x10\x2f\x61\xe6\xf0\x2e\x08\xf8\x85\x9d\xe9\x6a\xb4\xa8\xa5\xc0\xa1\x53\x05\xd3\xc3\xeb\xe3\x0b\x37\x52\xc7\xe4\xbb\x79\x64\x22\x77\x7f\xe1\xd1\x93\xe9\x9e\x97\x63\xfc\x9d\xd9\xb3\xed\x6a\x94\x6f\xf5\x1d\xf2\xd3\x42\x8d\x31\x34\xa6\x90\xd9\x19\x54\xb3\xe7\x40\x7c\xe5\x2b\x34\x4d\x0a\xf4\xc7\x9b\x97\x47\xe6\x9b\x8b\xc8\x97\x48\x9d\x75\x39\xb2\xcf\x3d\xaf\x6b\xec\x4f\x66\xa7\x7b\xb4\xc0\x28\x6e\x6d\x86\x2b\x8f\x8d\x3f\x5d\x2f\xa3\x8a\x25\x40\xfe\xf4\x7a\xc2\xf6\xa9\x39\x6a\xda\xb0\x99\x2e\xcd\x16\xcb\x4c\x78\xf0\x20\xc3\xf5\x18\xdd\x5b\xd9\x50\x2f\xbd\xa4\x49\xa3\x3e\xe6\x87\xe2\x68\xcd\x3e\x10\x50\x5f\x1a\x45\xf7\xb5\xc7\x46\xee\x62\x76\xd4\x38\xe8\x67\xaa\xca\x88\xea\xaf\x91\x47\x57\xa2\x09\xcb\x34\xd6\xf8\x9c\x66\x0c\x3f\x05\xfc\xe7\x72\x32\xf0\xd9\xeb\x9a\x79\x04\x2a\x56\x92\xd2\xe3\x06\xc8\x3e\xa6\x65\x17\xf9\xba\xd8\x93\xda\x89\xd7\x10\x2b\xa1\x46\xda\xa9\x70\xe3\xcb\x2a\x2a\x34\x8b\xda\x0e\xd5\x86\x6e\x78\x51\x13\x85\xe1\x9e\xd4\xd5\xfb\x9b\x5b\x45\x3a\x68\xdf\x37\xeb\x35\x1c\xbb\xea\xaf\x1b\xd3\x01\x4d\xc3\x5b\x22\xa2\x6b\xb6\xaa\x06\xd2\x57\xbe\xb2\x6b\x77\xaa\xf6\x46\x82\xe5\x76\x35\x1f\x42\xe9\x73\x35\xa2\x84\x21\x53\x49\xb5\xb1\x8e\xde\xe0\x70\x3b\x53\x35\xab\xc3\x42\x5d\x1a\xdd\x77\x6a\x0b\x12\x84\x90\xcc\x07\x9d\x90\x43\x4f\x30\x80\xd0\xb3\xa7\x3a\x55\xd6\xf3\x90\xa4\xcb\x97\x8f\xa7\xc9\xf0\x8c\x41\xe7\xa2\xd3\xca\x08\x3f\x64\x03\x80\x8f\x9e\xd1\x81\xdc\x60\x08\x69\xb1\x34\xfd\x8a\x65\x3a\x69\x43\x5c\xa3\xdc\xde\xaf\x26\xbc\x8c\x6a\xe1\x49\x77\xcf\x6d\x39\x53\xb7\xc6\x61\xc8\x4f\xfc\xfe\x02\xb8\x0c\xc1\x0d\xbd\xc9\x8f\xee\x35\xa8\x9f\xa5\x65\x11\xb0\xc2\x94\x1a\xc7\x36\x01\x32\x46\x6e\xaa\x33\x9b\xad\x23\x89\x31\x0d\x38\xf6\xe3\x7e\xd2\xda\x27\x53\x47\xaa\xee\x6f\x83\x19\xcc\x42\xbd\xf1\x6a\xab\x0f\xf8\x7e\x2c\x5a\x24\x3a\x53\xd9\xae\x76\x62\x28\xd7\x78\xf4\xd2\x76\x6a\xd8\x89\xd7\xfc\x64\x4a\xa6\x6d\xeb\x4d\x32\x56\xd7\xe1\xe3\x21\xc0\xa4\x07\xaf\xa1\xe5\x5e\xbb\xbb\x91\x8d\x0a\xc8\x7f\xdf\xd8\x8b\x18\x4f\x38\x94\xe0\x77\x2f\x9a\xee\xc1\xf6\xa7\x37\x40\xc6\xf9\x39\x10\xb7\xb3\x14\x9c\xf2\x9a\x7f\x4e\x81\xc8\x40\x08\xfb\x44\xbf\xa6\x20\x3b\x7e\x6e\x3c\x3c\x3c\x3e\x05\x59\xda\x1a\xc6\xf1\x17\x5b\x1f\xa6\xba\x70\x59\x5d\x41\x21\x8e\xb4\x68\x67\xf7\x78\x13\xbc\x3c\x60\x46\xe3\x9d\x69\x57\xf4\x34\x05\x48\xad\x46\x82\x01\xe1\xad\x41\xbc\x85\x25\x12\xc0\xf3\x8c\x77\x26\xe8\x65\x9a\x5a\xf6\xd2\xb3\x72\xd9\x1b\x59\xe3\x36\x51\xa8\x20\x6e\xd7\x1b\x92\x38\x70\x35\xa2\x12\x9c\x62\x34\x9d\x82\xc4\xbe\x4b\xc2\x29\x88\x9a\x6c\xd7\x1b\x87\x3e\x5c\x48\xc3\xf0\xa1\x5a\x01\x21\x91\x8d\xa2\x75\x24\x91\x56\x23\xa3\xde\x38\xac\x67\xa6\x45\x1c\x19\x17\x57\x16\xc6\xc4\x9d\x40\x44\x1f\x2e\x04\x92\xc7\x73\xc6\x2c\x18\x83\x47\x0d\xfb\xeb\x8c\xfc\x25\x07\x48\x98\x18\xbb\x66\xbe\xd1\x11\x01\x20\x9d\x15\x1c\x0c\xa2\xa2\x4a\x0c\xa8\x61\xac\x3e\x5c\x5f\xa6\xc4\xfc\x54\x69\x38\xde\x49\xcf\x51\x1b\x8f\xaf\xa1\xf5\x66\xad\xfb\x5a\x62\x13\xf1\x01\xb3\xd1\x9e\x0e\x92\x3e\x7d\xdc\x0d\x23\x06\x32\x2e\x0a\x2b\x71\xd7\x74\x18\xd7\x17\x25\x13\x56\x2a\x82\x90\x18\x0d\x94\xe0\x50\x19\x76\x70\xce\xd0\xa1\x25\x15\x61\xdf\xbf\xff\xb7\x9b\xf7\xef\x4e\xd5\xe7\x27\xfb\xfd\xfe\x09\x14\x7f\x32\xf4\xad\xe9\xa0\x2f\xf5\xa9\xfa\x5f\x6f\x2f\x4f\x95\xf1\xd5\x0f\x0b\xf5\x96\x8e\x9f\x48\xd5\xd9\x6e\x19\x5d\x20\xd0\x08\x78\xe8\xff\x89\x63\x89\xb7\x0e\x2b\x6c\xd3\x77\xfb\x53\x26\x12\xa6\x51\x1c\x64\xe5\xc9\x7b\x74\x94\x4d\x18\x12\x7e\x61\xe4\x06\x7f\x8c\x33\x22\xfd\x46\x30\x59\xa8\xf8\xf4\x98\x76\xea\xe6\xf5\xf9\x4f\xff\xfa\x3f\xd5\xeb\xb7\xe7\x17\x6a\x63\x3e\xab\xba\x59\x1b\xba\x9e\x94\xad\x7d\xdf\xc8\xa4\xff\xaf\x27\xb0\x1a\x9e\xdc\x34\xeb\x4e\xfb\xa1\x37\xb2\x00\x88\x4e\xa4\x3c\x52\xab\xab\xbb\xb9\x57\x2c\xc7\x20\x4d\x65\x3b\x1e\x80\x37\x95\xed\xf2\xde\x13\x88\x38\x73\x5d\xa0\x1b\x57\x54\x5e\xc3\x9a\x09\x8c\xcc\xc6\x74\x40\xe8\x87\xb6\xce\xcf\xe8\xa5\x91\x25\x60\xea\x3f\x8f\x0b\x63\xe0\x3f\x7c\xed\xe2\x4c\xfd\x1b\x86\x7c\xda\x88\xf5\x13\x64\x49\xef\x10\x78\x5c\x16\x36\x43\x99\x08\x76\x67\xea\x8d\xea\x40\x74\x10\xa1\x32\xe6\x05\xc1\x72\x8c\x83\x55\x7c\x67\xea\xd2\x78\xb5\x0d\x2a\x3f\x5c\xe3\x84\x6d\x52\x22\x37\x8d\x9d\xcf\x96\x41\xf9\x25\x8d\x05\x28\x66\xa3\xd3\x01\xcc\xfd\xd4\x66\xb3\xe7\x31\x32\xef\x31\x2e\x92\x06\x7f\x9c\xc9\x8a\x91\x7f\x63\x48\x45\x0c\x73\x39\x37\x3b\x1c\x8b\x71\x76\xe2\x92\x83\x43\xae\x8b\x53\xb5\xc1\xb8\xcc\x38\xd6\xe1\x6c\x76\xa0\xfa\xa8\x51\x27\x17\xcf\x53\x72\x5c\xad\x4f\x95\x38\x7d\x9e\xb2\x3d\xdf\xa9\x44\x89\xa8\x4f\xd5\xd0\xc5\xdf\xe4\x70\xc7\xe2\xab\x7c\xa2\x3d\x31\x7c\x06\x73\xcf\xfa\x94\xde\xa4\x8e\x09\x8b\x69\x47\x33\x7b\x8e\xcc\x3e\xff\x01\xd0\x60\xe2\x92\x5a\x07\xfc\xff\xdf\x9b\xb4\x2b\xd8\x37\x77\xe8\xaa\x4d\x6f\xbb\xe6\xf7\x99\xbe\xd1\xf5\x4a\x74\xd9\xa5\x31\x17\xc7\xdd\x87\x80\xf3\x59\x12\x0c\xbc\xc0\x63\x77\xc2\x83\xdf\xd3\xba\x39\x00\x65\x8c\x3f\x79\x04\x20\x2e\x56\xb1\x8d\x5b\xb6\x0d\x9a\xaa\xa0\x8f\xe1\xfc\x1d\x32\x85\x6c\x94\xd8\x8d\xe3\x8c\x34\x48\xf3\xf1\xb3\x90\x14\xb9\x81\x74\xc5\xc3\x4b\xc8\x37\xf3\x83\x24\x10\xd2\xc3\x12\xd9\x29\x8e\x47\x78\xae\x16\x98\x67\xaa\xa7\xd6\x69\x51\x82\x64\x1e\x61\x22\x25\x31\xe0\xa8\x8e\x89\x70\xc2\x6b\x66\xaa\x73\x88\x35\x1c\x93\xc3\x28\x0a\x81\xc8\x07\xf2\x46\x39\x3e\x4d\xf7\x22\xa4\xe5\x52\xad\x1c\x92\xc8\xff\xe4\x27\x24\x86\x41\xc2\xc3\x24\xe5\x6c\x40\x3e\xce\xfd\x98\x01\x84\x5f\x65\xf3\x46\xc2\xf6\x4e\x5e\x93\x3c\x8c\x86\xba\x6e\x5c\x65\xfb\xfa\x61\xdc\x2f\x08\xe8\x8f\x60\xef\xd6\x5e\xb7\x5f\x68\xfa\x0b\x86\xfa\x36\xfc\x34\x26\xf2\xb8\x0b\x3d\x42\x33\xca\xac\xed\x56\xa3\xf9\xeb\x0b\xfc\x31\x39\x9c\x37\xba\xeb\xc8\xd4\x9f\x7e\xa5\x73\xbd\x6b\xed\x41\x9e\x0b\x7d\x81\x5f\xf2\x10\xfa\x14\x24\x79\x5c\x73\xf9\xfc\x82\x9e\xb8\x7c\x65\x7d\xb5\xd1\xdf\x3d\x7b\xba\x7c\x0e\x7c\x38\xdf\x03\xb4\xd6\xde\x89\x97\x8f\xae\x71\xdf\x84\xf7\x62\x76\xe1\x11\xca\x68\xa3\xa2\xeb\x9a\x0c\x8b\x9a\x8e\x86\x62\xf4\x32\x5f\x7c\x59\x89\x5a\x35\xe2\xd2\x70\x0e\x42\x3b\x79\xec\x63\x6f\xe6\x3a\x13\x95\x06\x08\x85\x23\xb0\xa1\xe7\x4e\x74\xfd\x04\x19\x0e\xd6\xde\xaa\xdb\x8d\x39\x84\xc0\xd5\xf8\x30\x1c\x5e\xea\xe6\x4f\xe0\x60\xf3\xe4\x65\xd0\xf4\xea\xd1\x96\xf9\x20\xcb\x53\x26\x18\xc3\x87\xb4\x45\xdd\x41\xd5\xb1\x19\xa9\xfa\x34\x73\xa0\x99\xeb\xc5\xf4\x29\xce\x00\x35\x7e\x32\x34\xf6\xf4\xe8\x93\xa1\x69\xd1\xf4\xdd\xd0\xa4\x28\x4a\x08\x61\x10\x66\x2d\xc6\xb3\x69\x99\xbe\x0a\x1a\xbb\xfa\x15\x0f\x83\xce\xcf\xdc\x58\x45\xf4\xc5\xa9\x7e\xc8\x61\xa4\x4e\x3b\xf7\x15\x4f\x84\x8e\xc3\xd2\x7d\x85\xb6\x68\xae\x2d\xa9\x41\x71\x68\xc0\xd7\xea\x8c\xd2\xe0\xff\x53\x67\xaa\x6f\x7c\x4e\x60\x16\xeb\x17\x9e\x14\xa8\x9b\xd5\x6a\x41\xa1\x95\x4b\x67\x87\x1e\xcd\x09\x7e\xc1\x6f\x75\x83\xdf\x04\xc2\x81\x25\xcf\x38\xc2\x24\x25\x06\x27\x4b\xf6\xaa\xc4\x44\x74\xaf\x45\x0d\x6c\xa8\xf0\x4c\xbd\x68\x56\x2b\x72\xb5\x7d\x67\x7d\x6c\xca\x82\x8a\xb8\x8d\xdd\x97\xf0\x0b\x1f\x1a\x45\xab\xc2\x8d\xdd\x53\xa1\x1b\x48\x49\xc0\xdc\xae\x6d\x7c\xc9\x51\x9d\x6f\xe0\x03\xe3\x52\x27\x10\x43\x87\x31\x28\x05\xe6\x03\x7d\xa6\x50\x80\x32\x04\xd7\x90\x8b\xa8\x93\x3a\x04\x4e\x44\x6d\x47\xbc\xa2\xc2\xad\x22\x70\x27\x35\x12\x42\x54\x67\x44\x90\xf4\x05\xa1\x93\x3a\x28\xca\x23\x04\x0f\x34\x52\xf7\x5f\xde\xbc\xa3\x4f\x8c\xa9\xcc\xd1\xb0\x30\xb8\xf6\xcb\xa6\xe5\xf1\xc6\x88\x8b\x6e\xd8\x61\xe0\x46\x53\x4b\x40\x49\xc8\x53\x49\x72\xe2\x0c\x99\x86\xd7\x26\x1c\xde\xda\x72\xab\xbb\x43\x70\xdd\xbe\xb1\x5b\xc3\xaa\x9c\xbd\x61\x3a\x88\x21\xb8\xa3\xe7\xa8\xb5\x0a\x8a\x30\x94\x0c\x88\xa8\x85\x01\x6d\x21\x11\xc5\x17\x73\x91\xc5\x25\x8f\xc2\xc4\x0b\xe3\x07\xe4\x42\x98\x3f\x81\xa8\x7b\xbd\x42\x47\x3e\xf8\x1f\x52\x77\xbd\x89\xc5\xae\x7a\xf3\x64\x5c\x8c\x1d\xee\xe0\x5f\x48\xd3\x1b\x72\xf6\x88\x33\x10\x67\x46\x7c\x43\xbd\x55\x27\x8e\xe3\x6e\xf2\xce\xcf\x11\xd3\xea\x2f\xf9\x99\x4d\x5a\xfb\xf8\x40\x62\xd6\xa7\xd4\x93\xef\x8a\x18\x54\x15\xc6\x01\xcd\x57\xe8\x91\xb9\x5d\x6f\xeb\xa1\xf2\x8b\xac\xdd\x59\x69\xe2\x48\x8d\xac\x3a\xd5\xda\x35\xea\x3c\x30\x50\x32\xd9\xfb\x0e\x5d\x6d\x7a\xe7\xc9\xb4\x5f\x27\x64\xbe\xd9\xee\x7a\xba\x29\x11\xf4\x5e\xaf\xc3\x23\x78\x7a\x4d\x61\x5a\x62\x1e\x2a\xfe\x21\x07\x7e\x64\x65\x02\x27\x20\x5e\x00\x49\xb4\x55\xaf\xd7\xc8\xd8\x57\x69\x7c\x7f\x10\x46\x6d\x27\xcc\x79\xd2\x80\xec\x88\x93\xd4\xe9\xb1\x26\x39\xb9\x13\x4f\x32\xfd\xbc\x6d\x39\xc0\x78\xc8\x69\xad\xae\x49\xf6\xbf\xa4\x5f\x8b\xc5\x62\x66\xd5\x4c\x1f\x41\xdf\xf5\xe6\xc9\x78\xae\x13\xf8\x30\x00\x7f\x35\x8f\xdb\x56\xed\x6c\xd3\x79\x45\x4e\x69\xda\x67\x2b\x45\x2e\x8a\x78\x6a\x1b\xdb\x3d\xc1\xf3\x32\x36\x63\xec\x8a\x19\xaa\xe3\x85\x12\x97\xcc\x78\x55\xa3\x93\x9b\xec\x08\xf4\x72\xcb\xb7\x05\xae\x9e\xb8\x31\xd0\xdd\x74\xb2\xa1\x88\xdf\x8f\x50\xb9\x59\xc0\x0c\x30\x9d\xbd\x22\x6f\x85\x8b\xc5\x31\xcc\xfc\x71\x2b\xf5\x8c\xdd\xda\x2a\xdb\x93\xbe\x3b\xdc\xb2\x7b\xbd\x7e\xf0\xa1\xb8\x51\x6d\xe9\x85\x35\x55\xf1\x85\xd3\x74\xbc\x07\x72\x27\xb9\x04\x0f\xf3\x3c\x40\x29\x79\x8f\x4c\x78\x9e\x09\x2e\x76\x2a\x4e\xf6\x55\xf6\x7e\x6f\x2c\x21\x31\x6d\x90\x13\x90\xdf\x45\xf1\xd1\xf6\xeb\x4f\x05\xde\x4a\x62\x18\xf4\x10\xbf\x34\xbd\x82\x44\x35\x33\xc0\x40\x8f\x1e\x02\x7c\x39\xb4\x6d\x84\xce\xdf\x69\x7b\x05\xdb\x34\x37\xea\x01\x00\x52\xf2\xe3\xb3\x6c\xec\xd3\xc1\x2f\xb3\x2d\xe4\x49\x0f\xdb\xaf\xa3\x17\x67\x5a\x1d\x3d\x50\x14\x7d\x03\xf9\xd5\x82\x82\x7d\x2d\xce\xd4\x15\xfe\x28\x9a\xee\xbe\xf1\xc0\x3f\x6c\x0d\x59\x05\xbe\xc1\x04\x3c\x6f\x6c\x67\x8a\xcc\x1b\xa1\xc0\x60\xeb\xa5\x78\x22\x9c\x89\x4f\x02\xa7\x67\x76\x90\x67\x99\x59\x64\xfa\x04\x09\xa0\xcc\x5d\x4f\x01\x39\x8e\xca\x8c\x53\x3a\x40\x07\xf2\x08\x25\x71\x08\x31\xf5\x21\xe8\xec\xd9\x33\xa0\x0e\x83\x04\xbc\x44\x5c\x68\x23\xd9\x91\xe4\x87\x8b\x0a\x30\x37\x5d\x16\x89\xcb\x2d\x62\x35\x09\xad\xd9\x90\xc7\x7a\x2c\x06\x5c\x2a\x1a\xf4\xff\x99\xe0\xb3\x77\x77\x58\xed\xaa\xe9\xd9\x42\x4a\xe6\x37\x69\x53\x3d\x2c\x22\x02\x91\xe4\xcf\xc5\xfc\x53\x4e\xef\xc7\x6b\xe3\x0f\x3c\xe6\x34\xc5\xf1\xe0\x73\x4e\x88\x2e\x0e\x68\xd2\x18\x9c\x87\x23\x8d\x08\xac\xec\xb7\x3a\x9d\x86\xfd\x03\x0c\x53\xd8\x2b\xe9\x2d\x19\x3b\x47\xfc\x95\x7e\xc5\xac\xd6\x56\xe2\xa9\x7a\xc9\x3f\x8f\xda\xd4\x3c\xe4\x33\x91\x83\x26\xc4\x2c\x1b\xb8\x80\xe9\x6b\x0d\x70\xd8\x15\xc3\xf6\xeb\x7f\xce\x13\x23\x7b\x5a\x74\xd2\x6a\x7d\xaf\xbd\xee\x8f\x35\x9a\x72\xa5\xed\x5f\xdd\xf4\xb1\x99\x5a\x46\x61\xc6\xda\xaa\xc9\x63\x9f\xd8\xc1\x07\x8b\xe4\x4f\x7f\xa6\x0d\x0e\xf7\x84\x89\x99\x18\xdb\x98\xd0\xa3\x9f\x64\xeb\xf0\xe5\x97\x3f\x8f\x18\x1a\x3d\xf4\x04\xe8\xb8\x95\x40\x99\x42\x58\xcb\xb4\x91\x0f\x96\x48\xb9\x19\x3b\x32\x5a\xf9\xe3\xcf\x82\xce\x1b\xa8\x9c\xd7\xb5\xa8\x2d\xf9\x15\x40\x19\xbf\xa8\x1a\x5d\x25\x31\xe5\xc7\x6f\xda\xc6\x91\x43\xbe\x95\x1d\x16\xb3\xf5\x56\x30\xad\x5f\xf0\xff\x4d\xb3\x2b\xb3\xa7\x40\xdf\x86\xf4\xe4\x55\xd0\x9f\x43\x31\x56\x39\x31\x1f\x55\x8d\xd2\x23\x7d\xc5\x80\x08\xe2\xfe\x11\x80\xe8\x1b\x79\xcb\xd9\x9c\x71\xf9\xbc\x0e\xfa\x5f\xf6\xb6\x35\xa1\xa1\xea\xda\xb6\x26\x36\x2f\x0f\xea\x98\x17\x0c\x65\x42\x3a\xeb\x27\xe4\x5d\xc6\x90\x9e\xbf\xe7\x2b\xa9\x7c\xc6\xa6\x2f\x7d\x20\x3f\xce\xd8\x51\xbc\xf9\x79\x0c\xdd\x61\x48\x7d\x3e\x8d\xdf\xd9\x7d\x41\x47\xf1\x02\xa3\x46\x9e\xa9\x7f\xb3\x4d\xc7\x29\x79\xa5\x94\x06\x9c\x51\x7c\x83\xe6\x1a\x64\x2c\x7a\x6b\x7a\x9a\x3f\x7a\x6b\x0f\x4f\xa2\xf0\xca\x1e\x3f\x79\x8d\x8c\x3d\xc7\x26\xed\xc8\x8a\x27\x7f\x25\x8e\xb0\x8e\x9e\xbe\xa1\x70\x11\x59\xbd\x29\xc4\xd7\x54\x8c\xa1\x00\xc6\xd5\x9d\x8a\x2e\x1f\x15\x80\xc1\x05\xd2\x6c\xa5\x1d\x68\xcf\x1d\xdb\x81\x11\x09\xf2\x76\xa4\x10\x5f\xd3\x0e\xa8\x05\x03\xd3\x89\x9f\xc3\xd1\xf6\xe8\xba\x56\x64\x82\x9e\x1a\x9f\xb9\x71\x13\xe3\x6b\x6f\xb7\xc9\xf9\x8f\xa6\xbb\xf5\x88\x9f\x71\x8b\xb9\x23\x95\x72\xc8\xe6\x72\x86\xe5\x20\x33\xfa\xd9\x47\xd8\xbf\x4c\x04\x30\xe0\x20\x94\x0c\xa0\x89\x81\x7c\xf6\xfa\xc4\xf4\x5c\xa2\x76\x45\x16\x11\x79\x05\xa6\x0d\x9c\xf9\xe5\x23\x99\xe0\xe4\xf9\x25\xe2\x17\xd3\x43\x05\x19\x46\x99\xc9\x1a\x21\xca\xb0\x57\x61\x83\x25\xb5\x4e\x91\x05\x62\x8e\x50\x81\x88\x4f\xe1\x64\xc7\xa6\xdc\x5e\x72\xb1\x64\xf0\xfa\x2c\xf3\xcb\x15\xa8\xad\x3e\x8c\x5f\xe3\xc6\x50\x11\xd9\xae\x39\x2e\x58\x4d\x9b\x12\xcf\xf5\x57\xcd\xbd\xe9\xe2\x82\x39\x2a\x5c\x2d\xd2\xad\x3e\x5d\x20\x09\xb9\x6e\x52\x26\x78\xdd\x63\xa8\x44\x99\x79\x20\x1d\xc9\xc2\x40\xf4\x3f\x87\x3e\x57\xba\x1b\xd3\x06\x34\x57\x34\x7a\xfb\xf8\x21\x12\xf1\x87\x9b\x83\x24\xe5\xe1\xf6\x20\xc9\xa0\xc8\xc0\x5d\x9d\x92\x87\x87\x9a\x45\xf4\xe0\x0f\x37\x0b\x29\xcc\x57\x36\xeb\x54\xda\x44\x7c\x0c\xd0\x8b\x39\x4a\xf1\x50\x6b\x47\x82\x16\x2e\xe3\xeb\x54\xda\x12\xb2\x81\x16\xb8\x28\x09\xce\x5a\xe0\x26\x0a\xea\xc5\x62\xbc\x9f\x12\x13\xe2\x64\x4f\x25\x3e\x0a\xd2\x16\x34\x16\x66\x5f\x2e\x3e\x0f\x23\xaa\xce\x76\x28\x9f\xd3\x65\x71\xf0\xf7\x4a\x90\xf3\x75\x95\xef\x0f\xcc\x13\xe1\x23\x63\xd9\x0b\xa2\xe1\x8e\x8a\xd5\x59\x4d\x88\xb5\x52\x7c\xc4\x99\xfb\x54\xd4\xda\x6d\x96\x56\xf7\x78\x55\x22\xbf\x8b\xcc\x8f\xbf\x48\x09\xd5\x98\x43\xa6\x57\x82\x93\x41\xcd\xc6\x53\x0f\x7e\x03\xe2\x62\x90\x33\xce\xb3\x04\x47\xef\xcb\xaf\x85\x99\x5c\x0f\x1c\x2a\x87\x9d\x0c\xd0\xa7\xdc\x79\xb3\x55\xef\x28\xa1\xd8\xda\xae\x21\x7b\xe6\xb7\xf4\xab\xe9\xd6\x45\x16\xef\xe9\x25\x7c\x14\x18\xe1\x87\x53\x2e\xb5\xf3\x85\xb7\x1e\x9f\x89\xbd\x85\xff\x3f\xab\x93\xba\x88\x5d\x47\xed\x78\xe3\x3c\xb2\x59\x37\xf2\xdb\x25\x00\xd1\x9c\x8f\xc2\xd5\xf1\x47\x8a\x02\xdb\x59\xb2\xf5\x64\x68\x37\xb7\x12\xb1\x0e\x6e\xae\x4a\x89\xe2\x84\x76\x70\xb5\xf6\x7a\x29\xea\x9f\x67\x4b\xd4\xea\x2e\x9f\x93\x6a\xf4\x34\x49\xc8\x66\x24\xcd\xc8\x2e\x28\x63\x72\x7e\xea\xc6\x74\x7a\x1b\x3a\x4b\x72\x5e\xe7\x75\xe9\x6a\x52\x8b\xdc\x29\xa5\x69\xe2\x51\x12\x53\xc4\xb7\x24\xc3\x6e\xd1\x3d\x9f\x85\x88\x2c\x8b\x1c\xa8\xb2\x24\x72\xd6\x1b\xf5\x84\x14\xcf\x69\x5a\x6b\xd7\x4d\xa7\x48\x99\x9d\x77\x8f\x59\xfb\x1c\xa7\x44\x43\xcb\x50\x60\x94\xee\x34\x65\x23\x56\xb6\x59\x2a\x6e\xd0\x34\x81\xcd\x67\x27\x80\x31\x1c\xb4\x5b\xcc\x2d\x24\x91\xd8\xc3\x62\x22\xb1\x7d\x0e\xd2\xed\x1b\x7a\x18\xf7\x06\x7f\xcc\xc2\xf4\x03\xaa\x35\x87\x2e\xc9\xad\x5a\xa3\xbb\x72\xe8\x96\x4d\x57\x97\x96\x9f\x97\xbe\x80\x44\x35\x74\x4b\xb4\x31\x7c\x8f\xfb\xd1\x3d\x58\x28\x39\x42\xcf\xdb\x56\x51\x96\x94\x4c\x1c\xb7\xe6\xcf\xd2\x88\x99\x4f\x65\xb6\x70\xd5\x51\x94\x74\x91\x49\xd1\x18\x1b\x96\x2d\x5c\x24\xfb\xab\x70\x8c\x5a\x19\x21\x02\x9a\x6f\x6f\x2a\x1e\x00\x40\xf0\x9b\x7b\x33\x6a\x64\xee\xba\xcc\x20\x5f\xc0\x30\x6a\xe2\x2c\x8a\x6f\x6f\x24\x1e\xbc\xdd\x9a\x8e\x9d\x23\x8d\x3c\xa8\xde\x54\xb6\xaf\x59\xc6\x6d\xad\xf3\xa8\xa5\xa6\x87\x48\x1f\x46\x79\xac\xd5\x0f\xe2\xfc\x86\x6e\xac\x1b\x5f\xae\xab\xd8\x7c\xab\xd6\xba\x5f\xea\x35\x39\xea\x70\x04\x26\x9b\x3b\x8b\x1f\x29\xfe\xd0\x00\x63\x83\x6a\x60\xb4\x66\xd0\x1f\x6b\x5b\x6f\x30\x72\x89\x6e\xdb\xd2\xb9\x0d\x1b\x41\x5c\x1b\xba\xc7\x79\xbc\x70\x6e\xf3\x54\xf3\x4b\xed\x06\xcd\x05\xdc\x63\x7a\xc4\xe7\xfb\x4a\xa3\xaf\xfb\xcf\x18\x67\x08\x49\x3b\x96\x16\x26\x18\x46\xeb\x87\x07\x2b\x1a\xf5\x25\xa1\xeb\xc9\xd8\xf6\xd8\x14\x6f\xbe\xaa\x07\x12\x1a\xe6\x1a\x93\xf8\x8e\xa8\x32\x68\x6c\xce\x54\x0c\x19\x3f\xeb\xbc\x64\xb0\xc1\xbb\x5d\x4d\xd6\xfc\x03\x55\x3c\x30\x0b\x8f\xbf\xa5\xd6\xb4\x9b\x50\xc3\x03\x6b\xa8\x37\x4d\xd7\xf8\xc9\x56\xb8\xc6\xe4\x46\xb7\xcd\xef\x7f\x70\x43\xcc\x21\xfe\x67\x37\x44\x9f\xb4\x6a\xdc\xa5\x94\x41\xc0\xd8\x6e\xe5\xb0\xf3\x0d\x1e\x14\x37\xf4\x54\xfd\x07\xfc\x4e\x09\xf6\xd0\xf7\xc0\x24\xae\x6d\x6f\x07\xdf\xd0\xa3\x66\x94\xa6\x5e\x49\x9a\x9b\x29\x80\x97\x22\x87\x72\xe0\x18\x95\x52\xe6\x2d\x26\xab\x0f\xf8\x2a\x5d\x2c\x85\xfc\x93\x94\xd1\x2d\xaa\x8e\x49\xa7\x8d\x8c\x15\x97\x3a\x97\x8c\xa4\x24\x97\xb1\x4b\xaf\x39\xf0\x20\x03\xbf\xe7\x94\x04\x16\xaf\x22\x4d\x5f\xb6\xd6\xde\x0d\xbb\x12\xba\x8a\xa1\x93\x28\x59\x5d\x62\xb2\xba\x85\xe4\x69\x0d\xd2\xaa\x50\x6c\xd4\xa8\x63\xe5\x56\xbd\x99\x94\x79\xd9\x9b\x29\xbc\x8c\xdc\xc6\xe8\xdd\x64\xdc\x5e\x1b\xbd\x9b\x8c\x1a\x42\x4e\x07\x00\x61\x8f\x8f\x42\x5a\xaa\xa9\x51\xe2\x4e\x4b\xbc\xa9\xdb\x63\x75\x34\x68\x31\x35\x86\xef\x80\x8f\x3f\x52\x82\xf9\xa9\x71\xab\xf8\xfa\x70\xd2\x2a\xbb\xfc\x2f\x53\x79\x27\xd0\xef\xe9\x33\x81\x5a\x5a\xeb\x9d\xef\xf5\x0e\x58\x61\xb4\xd1\xa7\x61\xfa\x45\xd2\x81\x15\xae\xee\x26\x23\x45\xd0\xd3\xa1\x22\xe8\xe3\x63\xb5\x75\x3b\xdd\x95\xce\xf7\x43\xe5\x87\xde\xb8\x50\xe1\xdb\x9b\x9d\xee\xd4\x4d\xc8\x98\xd4\x38\x29\x99\xae\xd0\x71\xe1\xb9\x9a\x2b\x5d\x6d\xcc\x6c\xd5\x17\x90\xf3\x60\xdd\x93\xb2\x69\xe5\x93\xe2\x73\x3b\xa5\xb7\xab\xa6\x05\xa2\xb4\x1c\xaa\x3b\xe3\xcb\x8d\x76\x9b\xd2\xe3\x33\x9b\x09\xae\x2b\x01\x53\xbf\x20\x98\x7a\xad\xdd\x46\xdd\xa2\x7a\x6e\x06\xeb\xba\x2a\xb7\xc6\x6b\xb4\x67\x4a\xb0\xbc\xba\x50\x6f\x39\x79\xae\x14\xaa\xed\x4a\x96\x80\x78\x17\x02\x53\x9a\x60\x78\x8f\x9a\x3d\x16\x8a\xce\x03\xc8\x1c\xb6\xce\x7c\xe6\x23\xbd\x3a\x54\xfc\xb0\xfb\x67\x0f\x6d\xb8\xa6\x94\x04\x16\xc5\xbc\x75\x55\x0a\x8d\x44\x53\x17\x0c\xe7\xfa\xea\x02\xb7\xef\x84\x82\x45\x60\x22\x5c\xaf\x2e\xd4\x95\x1e\xdc\x2c\xe0\x4e\xd3\x66\x3a\x0a\x29\xd5\x0b\xa0\xd4\x3c\x86\xe3\x4a\x1d\x0d\x25\x91\x15\x92\xb1\x17\xe8\xe6\x4b\xe1\x53\xcb\x9d\x26\x53\x57\x90\xba\xd5\x5b\x0a\xa9\x7a\x05\x69\x0c\xdb\x99\x7d\x7a\xfd\x12\xef\x81\xcf\x29\x51\xc0\x48\xb2\x40\x79\x82\x52\x84\x17\xae\xc5\x6a\x1c\x49\x34\xe7\x65\xe1\x67\x29\x2d\x1e\xa0\x3b\xeb\x38\x4d\xc2\x82\x87\xd7\xeb\x38\x1d\x1d\x55\x7a\xb3\x6e\x9c\xe7\xc8\x1c\x18\x7e\x1b\xbd\x39\xaf\x31\x59\xe4\x9b\xd4\x3f\xf7\xd6\x62\x2f\x93\x8e\xe5\x86\x96\xd2\xcd\x2f\x87\x26\x5f\x30\x8e\xf4\xa5\x24\xee\x19\x0a\x2f\x62\xe0\x97\x6b\x1e\xc4\xd0\x8f\x20\x61\x39\xb6\x7c\x0b\xda\xa6\xa5\x51\xb2\x14\x51\x6d\x84\xe1\x12\xa5\xce\x64\x94\x77\xda\xb9\x3d\x1a\x6a\x8b\x5e\x1c\x6f\x16\x54\xe3\xd9\x29\x0f\xf5\xf2\x68\xee\x3c\x74\x6c\x66\x26\xad\x8f\xc1\x03\xd9\x0a\x2e\xb0\x18\x3c\x10\x9c\xf3\xa5\x1b\xc8\x38\x16\xc9\x4a\x41\xd3\x99\x7c\x8d\x6c\xf5\x67\x12\x4e\x70\x48\x39\x72\x39\x9b\x5a\x26\x9e\x33\x17\x92\x7b\xd9\x6c\x9b\xa3\x65\x45\xe9\xf7\xfd\x8d\xf1\xea\xc9\x8f\xe8\x55\xea\x8c\x5a\xb7\x76\x89\xe1\x5a\x29\xe6\x6c\x0b\x28\x7e\x60\x1c\x8d\x2b\xd3\x45\x89\xca\x69\x69\x30\xfe\xcc\x17\xe9\xae\xb7\x9b\x66\xd9\x78\x9a\x90\x99\x02\x02\x20\x8f\x6b\xae\xc3\x5a\x86\x9a\x78\x89\x67\x85\x30\x4e\x12\x64\xd0\x0a\xb5\x7d\x62\x68\x20\x6b\x9e\xe2\x46\x81\x88\xc1\xee\x04\x13\x0c\x49\x99\xe4\x5d\x52\x60\xfb\x28\x36\x63\x8a\xa7\xd9\xee\x6c\x0f\x5d\xa0\xc5\xf6\x25\x5c\x04\xae\x08\x3c\xe3\xbd\xe7\x96\x4c\xbc\x0c\x90\x15\x43\xa4\x5f\x16\xe7\x83\x77\xcd\xf9\xda\xc0\x27\x5a\x4a\xbb\xef\xa2\xe2\x31\x69\x29\x3d\xe0\x02\xed\x8d\x71\x2b\x2c\x70\xa6\xc0\xf3\xe2\xc3\x8b\x20\x64\xa5\xf1\x47\x42\xb8\xa0\xf8\x52\xa0\xed\x43\x88\x0b\xb2\x9d\x67\xb5\x64\xda\x80\x8d\x76\x6c\xa6\x73\xa4\xfe\x6d\xa6\x63\xce\xaa\x4f\xf5\x63\x79\x03\xe8\xd2\x2f\xb8\xee\x4c\x2e\x62\x5c\xde\x94\x19\x0b\xad\xf3\x64\xca\x1e\x0a\x97\x6f\x7b\x0e\xcd\x30\xa2\xee\xd9\x4d\x78\x46\xe5\xb1\x44\x4a\xbd\x31\x21\xb7\x24\xc2\xa4\x78\x4b\x24\x17\x44\xa4\x85\x45\xc2\x3d\xae\x2f\xd9\xce\x59\x6d\x54\x22\xbf\xbf\xa5\xb4\xb4\x09\x94\x32\xbd\x47\xa6\x74\xd6\x1f\xaa\x33\xf5\x57\xfa\xc5\xe9\xa8\x44\x24\xee\xad\x97\xb4\xb1\x83\x1c\x43\x82\x6c\x06\x27\xf7\xef\xa6\x40\x75\x71\x46\xb7\xdd\x31\xc2\xed\x18\x96\x9e\x38\x91\x68\x26\x4c\xd4\x39\x2b\xe9\x05\xa5\xa4\xcf\xc0\x52\x8a\xc1\xb0\x75\x75\x08\x60\x57\x73\xba\xd0\xac\x10\x31\x9b\xd3\xa7\x76\x61\x49\x93\x19\xfd\xa8\xbd\x49\x6d\x08\x35\x7f\x98\x24\xad\x74\xa6\x1a\xfa\xc6\x1f\x30\x92\xac\xad\x6c\x4b\xbe\xb5\x98\x86\x41\x64\x21\x4d\xda\x39\xf2\x9e\xa1\x54\x0c\x77\x71\xa6\x5e\x5b\x27\xed\xde\xd1\x03\xb1\x57\xb6\x97\x14\xd4\xef\xd5\x68\x9a\xdd\x74\xb5\x7a\xf1\x2e\x4f\xcf\xcc\xc0\x42\x68\x41\x7a\xec\xde\x65\x21\x06\x25\x7e\x20\x85\x0f\x34\x8b\xf5\x42\xbd\x78\xff\xf6\xff\x3a\x71\x29\x42\x39\x1a\xa5\xba\x2b\xfe\x9e\x83\x49\x4c\xc6\x74\xdf\x35\xdd\xfa\x67\x7e\x93\x49\x70\xe0\x2b\x52\xb6\x27\x1b\xed\x5d\x0b\x03\xe0\xcd\x67\x8f\xd7\x82\x9d\xf5\xfc\x1c\xf4\xa6\x59\x6f\xd0\x1e\xa2\x69\xcd\x9a\xfc\x20\x60\xdb\x2e\x64\x26\x81\xef\xe2\x07\xdf\x90\xdf\xe2\xab\x9d\x5f\xb4\x33\x29\x08\x0e\x11\x02\x84\x21\xd2\x9e\x62\x19\x9a\x39\x07\x64\x75\x2e\xb9\x47\xa1\xc7\xef\x74\x23\x45\x0a\x1c\x02\xb4\xde\x35\xeb\xee\x49\x83\xcf\xa3\x00\x69\x34\x6d\xcd\x0e\xfd\x59\xb0\xc6\xc5\xa4\x06\xb1\x02\xc3\x77\x2e\xde\x3d\xdc\x1a\x37\x48\xd3\x6f\x86\x2f\xb5\x7c\xab\x1b\x8c\xf9\x89\xff\xc7\x60\xf7\xa6\x6f\x56\x87\x72\xdd\xdb\x61\x57\x26\x34\xf9\x4c\xfd\x05\x73\x14\xe6\x24\xd4\x9a\xcb\x51\x01\xbe\x6b\xc3\xc8\x8c\x38\xd6\xaf\x10\x3a\x99\x8d\x38\xf0\x54\x82\x1e\xe9\x08\x90\xf4\x4a\x47\x06\x11\x1b\x5e\xd9\x0e\xe4\x0b\x0a\xa6\xd3\x92\x65\x2c\x15\x0b\xbd\x40\x2b\x6d\xdd\xe0\xcb\xca\x97\x1c\x38\x9b\xae\xbd\x92\x55\x10\x31\x02\x12\x53\x83\xa0\x4d\xdd\xe2\xc5\x11\xd1\x5d\x22\x00\x46\xaa\x01\x80\xf1\x58\x3a\x28\x8a\x1a\xf4\x33\xf5\xd2\xf8\x6a\xa3\x62\x16\x14\xe2\xdd\x48\x6e\x4e\x9f\x65\xb7\x86\x3e\x63\x65\x59\x97\xe9\x06\x36\x00\x90\xcd\x46\x06\xb1\x05\x0e\xa8\x74\x1a\x8e\x0b\xa7\xce\x6b\x75\x73\x2e\xa4\x66\xeb\x77\x25\x5f\x0c\xdc\xbc\xbd\xbd\x7a\x80\x76\x01\x28\xd3\x15\x84\x4c\x88\x0b\x64\x31\x81\xc1\xac\x84\xca\x48\x44\x22\xa2\x53\x4e\xa2\x6e\x9a\x9a\x09\x96\x9b\x87\x7b\x88\x83\x86\x1d\xde\x1b\xe7\xfb\xa6\xa2\x87\xe4\xb9\xcc\x42\xbd\x1d\x5a\xdf\xec\x5a\x23\x29\x62\x28\x8a\xc1\x08\x76\xba\x97\x27\xb7\x2b\xbb\xdd\x6a\xf5\xf8\xf4\xf1\x22\x3b\x05\x4a\xdf\xba\x18\xc9\xf4\xf6\xf2\x46\xfd\xda\x55\xfd\x81\xec\x49\xb8\xa7\x77\xcd\x0e\xc0\x4a\x5a\xf3\xd0\xe1\xbb\x66\x87\xb0\xb4\xd6\x85\xdc\xea\x6d\xe9\x4c\x7f\xdf\x54\x61\x4f\x5e\x9d\xbf\x45\x15\x5e\x53\x99\x94\xd8\x73\xd5\xf8\x34\x9c\x08\x51\xb1\x11\xe7\x83\xb7\x99\x10\x25\xa5\x92\x17\x98\xc6\xc7\x23\x99\x82\xc8\xb8\x4e\x78\xec\x1c\x3a\x63\xb5\xb3\xa3\x4f\x96\xc5\xb1\x62\x81\xab\x4f\xee\xde\xe2\x99\x3c\x96\xe6\xf2\xe2\x5f\x72\x9d\x5b\x64\xa7\x6d\xca\x7a\xe5\x78\xbe\xd2\x2a\x33\x45\x96\xb0\xc9\x0f\x8d\xdb\x6c\x98\xc1\xbc\x44\x06\x59\x12\x03\xc0\xe6\x31\x23\xd4\xc1\x50\x66\x5a\x22\x35\x65\x9a\x8e\xf1\x8c\xb5\xe3\x03\x16\x8e\xbc\x44\x91\x77\x6e\x82\xe7\xe4\x11\xd4\xc4\x45\x23\xcc\xf2\x40\x26\x36\x7c\xc9\xcc\x16\x03\x91\x51\x8f\x91\x54\x8d\x63\xa8\x34\x60\x28\x2d\x00\xe4\x7d\x98\x73\x4e\xba\x39\xe2\x9c\xf3\x66\x7c\x81\x81\x26\x34\x24\x81\xb3\xa3\x92\x38\x37\x5c\x26\x8b\x8e\x99\x92\x91\x4f\x03\x1b\x16\x2c\x3a\xeb\x4b\x87\x8e\x40\xdf\xa3\xe7\x97\xf1\x3f\x48\x16\x2b\xd8\x83\x05\x02\x2b\xd8\x73\x43\x04\x86\xd5\xbb\x5d\x60\xdc\x76\xbb\x36\xe3\xda\x12\x90\x7b\x22\xc1\x09\xc4\x5f\x38\x22\x6c\x02\x44\xd1\x48\x52\xa0\x0f\xd7\x97\x02\x30\x66\xe8\x38\xd9\xae\x56\x6d\xd3\x99\x72\x4b\x9e\x5a\xef\xe9\x53\xbd\xb5\x75\xa8\x9f\xc3\xfc\x94\xbd\x1d\x48\x83\xbe\x4e\x1e\xfe\xb8\xc6\x44\x18\x37\x01\xef\x07\x3a\x15\xe9\xd6\x98\x94\x31\x49\x16\x57\x04\x59\x69\x25\x20\x0a\xcb\xfb\x33\x14\x1a\x63\xd4\x41\x34\x6b\xa8\xd0\xfb\xae\xec\xad\xf5\xe5\x4e\xd3\xe9\x82\xe9\xe4\xd0\x77\x6d\xad\x57\x57\xda\x6f\xa4\x50\x6b\xd7\xd3\x12\x97\x76\x7d\x04\x9c\xe3\x02\xd3\x0e\x92\x3e\x50\xda\x78\x89\x61\xb7\x42\xdb\xdc\x26\x99\xed\x9b\xd7\xf3\x53\x0d\x50\x53\xb1\x20\xc9\x04\xd9\xc6\x97\x1c\xdf\xbd\xa4\x55\xc4\xa2\x8e\x57\xbf\x70\xd8\x77\x5a\x4c\x69\xb1\x23\x33\x0b\x59\x29\x77\x9e\x24\x23\xab\xd1\x49\x2e\xf2\x15\xdd\x04\x28\x1d\xb2\xc9\x48\x21\x80\x61\xdb\xd1\xfc\xa2\xb2\xd4\x9e\x7a\x92\xdc\x68\x8e\x40\xd4\xb9\xa7\x5e\xa5\xe8\xee\xcc\xa1\xc4\xd0\x6a\x5c\xe7\xbf\x9b\x03\x85\x54\x1b\xd7\x7b\x67\x0e\x6b\x68\x7d\x00\x5b\x9b\x4e\x7d\xff\xd8\xb9\xcd\x13\xca\x7a\xfc\xc3\xa4\xcc\xb6\xe9\x9a\xed\xb0\x25\xc7\xeb\xe6\x77\x43\x2f\xca\xe2\x6b\x11\x98\x81\xb5\x81\xa8\xa8\x2e\x20\xe3\xa1\xa2\x6e\xa6\x94\x2b\xe2\x12\xda\xd9\xb8\x16\x52\x85\xd7\xdc\x92\x40\xe8\x6c\xa0\x63\x81\xe9\x98\xa3\x0d\xaa\x08\x83\x37\xf8\x45\x8c\x54\x8a\x0d\x5f\xe2\x29\xa3\x58\xfd\x12\x5f\xe6\x11\xe1\x9a\x21\xb7\xfa\x73\xd4\xb1\xa1\xfa\x8c\xb4\x74\x63\xb5\x1c\x83\xef\xf0\xb1\xff\xde\xd4\x65\xdb\x54\xa6\x73\xfc\x24\x13\x27\xaa\x4b\x4e\x1c\x13\x8c\x8d\xf7\xbb\x72\x8d\xb8\x85\x5c\x60\x68\xc6\x57\x11\x33\x73\x29\xa8\x8a\xc2\x31\x28\xb7\xcd\x3a\xbc\x72\xc6\xcc\x0a\x2a\x4f\x71\x28\xd4\x5b\xc9\x15\x04\xec\x91\x5a\xae\x80\xe3\x85\x81\xa7\xab\xb4\xea\x10\x9f\x5d\x66\x6e\xf8\x22\xe6\x85\xd9\xc2\x16\x86\xd9\xc2\xc6\xcd\xce\x13\xc2\xb1\x6d\x32\x46\x9c\xb7\x2d\x79\xf1\x94\x14\x5d\x9d\x94\x37\x70\x16\x5d\x50\x2e\xc7\x80\x7f\x8f\xb9\xa1\xba\x7a\x19\x2b\x7b\x21\x06\x59\xb3\x15\xd6\xcb\x32\xd5\x29\xc4\xd4\x54\x02\x8f\xa9\xa9\x46\x22\xa6\x32\x05\x4b\x29\x70\xbd\x2c\x9d\x6b\x85\x08\xdf\xdc\x5c\xe6\x94\x3e\xe6\x46\x46\xf9\x7b\x10\x0d\x1f\xed\xac\xf3\xeb\xde\xb8\x47\xca\x76\xed\xe1\x87\xa4\x04\xaf\xdc\x74\xa5\x72\xea\x18\x87\xfb\x5b\xdb\x78\xf3\xa7\x47\x78\x2f\xff\xc8\x37\xf5\xf2\xd1\x0f\x45\x7a\x68\x36\xe8\x32\x9c\x9c\x9a\x4d\x75\x64\x7c\xc2\xb5\x80\x01\xc9\x31\x89\x99\x2e\x0f\x47\x91\x44\xc9\x8e\x24\xf9\xd0\xca\x71\x16\x99\xe2\x70\x98\xa5\x0c\xb1\xb4\x6b\x83\x01\xfe\x63\x46\x7c\xb0\x10\xfd\xea\xaf\x05\xcd\x2f\x98\x1c\x1b\x48\x6f\x50\x81\xc0\x0d\x4c\x13\x3b\xe2\x4a\xf3\x6e\x9a\x75\xa7\xde\x74\xe4\x47\x1f\x36\x65\xd3\xc6\x6b\x8e\xb7\xd0\xfe\xf4\x66\x63\xdc\xfe\x09\x29\x93\x5e\x3c\x4c\xd2\x78\xc7\x55\x7a\xe7\xab\x8d\x8e\x9b\xec\x82\x12\x02\x3f\x41\x21\x7f\x2a\x58\x0a\x2d\x5b\x29\x51\x58\x20\x74\xe3\x56\x97\x68\x96\x14\x3a\xeb\x8c\x8f\x6a\x96\xac\xd0\x35\xe4\x05\xb5\x4c\x5a\x58\x4a\x4b\xd8\xbe\x30\xf3\x12\x8e\x67\x76\xe6\x31\xee\x64\x0c\xc4\xf0\x1f\xf0\xa9\x2e\xf1\x33\x8c\x10\xc5\xd9\xc1\x9b\x31\x3b\xb0\x4a\x1a\x52\xf0\x82\xcc\x0e\xf1\xd8\xf9\xa2\xd4\x95\xce\x4d\xca\xd2\xbd\xc5\xef\xf9\x16\x32\xec\xd1\xa3\x9e\xf3\x03\x95\x34\xad\x4d\x29\xe4\xaf\x97\xef\x47\x90\x6e\xc0\xcb\xf0\x12\xc8\x70\xf3\x19\xf5\x2a\x98\x80\x24\xb8\xf9\x3c\x82\x9e\xa1\x10\x9c\x33\x43\x0f\xf0\x8e\x0d\x4f\x5d\xd6\xc4\xe0\xed\x1a\x1e\xbb\xb8\x83\x04\x2e\x80\x94\x2b\xf2\xb3\x3f\x53\x2f\xa1\x80\xb7\x14\x5c\x11\xe3\xa7\xe2\x5e\x84\x24\x60\x9c\x7f\x56\x27\xf7\xd3\xd2\x8e\xfc\xd7\x6f\x23\x78\x7c\x08\x97\x23\x4d\x42\xe1\xc8\x66\x93\xa1\x60\x18\x77\x34\x0e\x9c\x1f\x76\x82\x9c\x8e\x7a\x38\x29\xf0\x62\x3c\x9a\x05\xe3\x55\xf8\x2c\x26\x82\xd4\xb5\xde\x11\x79\x20\xd0\x73\xfa\xce\x81\xd0\x7a\xe4\x5e\xb7\x01\xea\x0d\x27\x4c\x6a\xed\xd2\x3a\x3b\x7e\xeb\x2f\x4e\x03\xd9\xb8\x27\xc4\x8f\xfc\x52\xe7\x19\x49\x86\xde\xf5\xf6\xbe\x11\xf3\x71\x82\xbf\xe2\xa4\x78\x72\xd3\x77\xc4\x2c\x10\x8c\x3a\x9e\xa3\xf6\xae\x09\x3a\x85\x0b\xfc\xca\xce\x13\xa6\x1b\xb0\xd1\x09\x36\x92\x8e\x1b\xe3\xb9\x44\xe0\xe6\xab\x30\x32\x72\x29\xfe\xea\x22\x8c\x0d\xdd\x9f\x8f\x3a\xd3\x36\x2b\x13\x6e\xdb\xb9\x37\x97\xcd\xca\x64\xc0\x70\x0e\x3b\x09\x7c\x08\xc7\xf5\x8d\x7a\xdf\xb5\x87\x51\x27\x52\x54\xdc\x93\x88\x29\x8c\x4c\x83\x26\x10\xc9\xc0\x50\xc2\xfc\x90\x0b\x34\x9f\x52\x09\x38\x1f\x53\x63\xea\xbc\xee\xd9\xc1\x33\xee\xec\x57\x9c\x34\x1a\xd1\x95\xa9\x31\xca\x45\x5d\x86\x12\x3c\xae\x2f\x25\x47\x9d\x63\x4e\x24\x99\x20\x2d\x85\x86\x83\xb0\x34\xdb\x68\x80\x92\xf6\x60\x40\x98\x4d\xb3\xde\xe0\xb3\x51\x49\xab\x28\x2e\xcc\xa1\xf3\xfa\xb3\x7a\x2d\xf9\x29\x06\xe0\x15\xb1\x34\x08\x86\x8e\xf9\x44\x2c\x75\x89\x09\x78\xb6\x6b\xe5\x9a\x6e\xdd\x52\x40\x94\x1f\x8e\x16\x2f\x93\x40\x3b\x09\xa2\x8b\x98\x9a\x63\x83\x32\xf3\xd8\x24\x0a\x4b\xc0\xf1\x12\x13\xbe\x27\x9d\x06\xc6\x61\xc9\x0a\xae\xab\x52\xf7\x6b\xb6\x93\x38\xef\xd7\xf8\x0a\xb4\xcb\x50\x23\x6b\x69\x92\x53\x23\x30\x9b\xe3\x73\x83\xc0\xf1\x01\xba\x14\x1a\xdf\x7f\x61\x25\xd0\x4c\x09\xf4\xc6\x49\x0a\x5c\xa0\x77\x4e\x34\xd3\x9e\x29\x82\xa1\x11\x63\x09\x8c\x8a\xf8\x60\x01\xb6\x07\x21\xf0\x57\x17\x33\xc0\xa9\x68\x1c\x96\x10\x88\xc4\xb3\x4b\x08\xa0\x98\x59\x4c\x19\x45\x48\x9e\x3a\x8e\x8b\x0f\xc5\xa2\xea\x29\xd2\x3e\xfc\xbb\xd5\xee\x2e\x78\x57\x64\x57\x67\x92\xe6\xaa\x8d\xa9\x87\x96\x84\x1a\xfa\x19\xe1\xcd\x67\x2f\x76\x3a\xb8\x7d\x25\x03\x63\x9b\xd8\xc1\x49\x70\x13\xf8\x99\x01\x98\xcf\xa6\x1a\x12\x93\xbd\x5f\xe9\x9b\x6d\x64\x22\x1a\x2b\x1e\x99\x43\x87\x9a\xfa\x2b\x4a\x49\x60\xe6\xde\xe5\x97\xa6\xb3\x9c\x4b\x22\xfa\xd1\xfa\x43\xf5\x32\x11\x85\xf8\xa1\x88\x77\x07\x3f\x6f\xcd\x17\x09\x23\xd7\x14\x81\xc5\x08\x47\x14\x87\xb8\x0c\x91\x6f\x30\xd4\x11\x41\x72\x14\x9c\x00\xcf\xfe\x15\xcc\xb9\xc1\x0c\x85\x5a\x4d\x0b\x0c\x85\x6e\xe9\xc8\x87\x0f\x90\x58\x42\x7e\x6d\x32\x88\x17\xfc\x99\xc1\x34\x1d\x29\x4b\x28\x8b\x04\xb6\x37\x94\xc6\x28\x13\x7f\x1b\xd1\x4d\x12\x30\x87\x4f\x43\x3d\xe0\x0d\xa7\x8c\x21\xa5\x66\x04\x3a\x6f\xdb\xc9\x68\xa4\xf2\x51\x9a\x86\x4f\x87\x24\x4e\x51\x49\x9f\xc6\xd3\x28\x59\x76\x87\xab\x78\x31\x69\x6d\x50\x30\xf2\x8c\x88\xf7\xd0\x97\x8c\xd0\x8b\x8f\x34\xf6\x9f\x24\xca\x06\xdb\x3b\x88\x99\x51\x62\xda\x9b\x05\x43\x3c\xc1\x18\x7e\x45\x6f\xba\xe4\x35\x2e\xfa\xca\x0a\xa1\x33\x1d\xc5\xfb\x3d\xf9\xf8\xe3\x27\x27\x01\x7f\xbd\x4d\xf0\x7d\xfc\xe9\x13\xa0\xfc\xf8\xa7\x4f\x84\x95\xdf\x76\x67\xac\xf1\xe1\xda\xa4\xc4\x8f\x9f\xdc\x53\xd7\x57\x4f\xc7\x65\x95\xf6\x23\x30\xc8\xfc\x1f\x11\xf1\x4e\xf7\xa6\x94\xe8\x50\xbc\x28\x29\xb9\x71\xb6\xe3\x08\x71\xc6\x19\x0c\x0c\xc6\x8f\xa0\x85\xb7\x4b\xb8\x45\xf2\x3d\x1a\x1f\xea\xe5\x7c\x17\xe3\x90\xf1\x38\xd3\x83\x72\x67\xea\x37\x8a\x10\xcb\x0f\xcc\x25\x05\x9e\x92\xb1\xc0\x53\x2a\xfa\x2f\xd8\x51\x40\xf0\x5b\x81\xd1\x65\x23\x02\x0a\x36\xfb\x2d\x08\x28\x2c\x6d\xc4\x20\x61\x6a\xbf\xa9\x11\x1c\x27\x36\x36\x83\x12\x4c\xad\x50\xbd\xfe\xf5\x88\x68\x3c\x46\x61\x78\x7f\x93\x05\x98\xbd\xbe\x9b\x22\xc4\x67\xed\x8e\x8e\xce\x04\x1d\x0d\xd2\x37\x63\xe3\xa1\x1a\xa3\x0b\x23\xf6\xcd\x08\xf1\x79\xbd\x09\x3e\x7e\x71\xf9\xdb\x3b\x4b\x83\x17\x5e\xc7\x96\x51\xeb\xcc\x3e\x3c\xad\xfd\xcf\x6e\x1a\x26\x31\xa1\x0e\x21\x24\x82\x9f\x37\xf7\x4f\x71\x73\xcf\xa2\x93\xcd\x8d\x81\xa5\xbd\x5e\x27\x3b\x5b\xaf\xb3\xce\x62\x13\xb1\x0c\xf7\x73\xba\xf7\x53\x84\xe2\xea\x8c\x28\xa5\x71\x88\xf3\x1b\x5b\x86\xa1\xb3\x79\x8b\x53\xbc\xec\xc9\x33\x85\x73\x1b\x3a\x7d\xe0\x97\x03\x6a\xb3\xaf\x46\x12\x84\xee\x9f\x9d\x05\x22\xa4\x54\x55\x56\x63\x08\x57\xce\x75\xc2\xcc\xa3\xbe\xd3\x74\x95\xf9\x27\x86\xf5\x68\x85\xe1\x5e\x90\x2b\xc4\x87\xd0\x78\xd4\x93\x8a\xbf\x6d\xec\xb3\xda\x8a\x8f\xde\xda\xf6\x53\xa1\xd7\x30\x13\x7a\x6d\x0b\xc8\xe5\xa8\x16\x08\xd8\xd9\x7d\x41\x9f\xf0\xeb\x47\x20\xe4\x3f\xf2\x83\x1e\xea\xc4\x15\x3f\x6e\x31\x81\x5e\x48\xc6\x84\x0d\x26\x6c\xec\x80\xef\xb3\xfd\x58\xe3\x67\xad\x0f\xf8\xb5\xc7\xaf\xbd\x31\x77\x54\x18\x19\x84\x1f\xd5\xd6\x76\x7e\x83\x29\x07\xfc\x3e\x18\xcd\xaf\xbb\xd1\xc3\x21\x67\x70\x44\xc8\xc7\x89\x2b\xa8\x3a\x4e\x97\x8f\x13\x57\x40\xad\x9c\x4a\x3f\x4f\x5c\x51\xeb\x03\x27\xe1\xaf\x13\x57\x40\xf5\x9c\x44\x3f\x4f\x90\xaf\xf3\x1b\x41\x48\xbf\x4f\x5c\x01\xed\xe0\x44\xfa\x79\xe2\x8a\x5e\xef\xcb\xd8\x2e\xfe\x85\xa9\xb1\x55\xfc\xab\x28\x3e\xd6\xbd\xdd\xfd\x6e\x3b\xf3\xa9\x90\x9b\xee\xad\x71\x6c\xb8\xff\xa2\xb7\x3b\xf1\xd7\x31\x3d\xdd\x7e\xe2\xd3\xb3\xf8\x4e\x4a\x6b\x75\xbd\x28\x38\x38\x5a\xd9\x74\xbb\x21\xa8\xf9\xd9\x48\xea\xb1\x67\xb0\xf8\x78\x08\xb9\xbe\x1f\x76\x66\x51\xe0\x15\x97\xb7\xb6\x5c\x22\x37\x8f\x97\x5b\x68\xfe\xf6\xfd\xdf\xff\x8e\xf0\xcd\xef\xe6\x1f\xff\x50\x6f\x7f\xf9\x41\x99\xcf\x95\x31\xb5\x53\x5b\x36\xc9\x15\xb0\xad\xfe\xfc\x32\x83\x5c\x14\xec\x47\xce\x36\xa0\xe4\x47\x8e\xd5\x17\xff\x5f\x00\x00\x00\xff\xff\x14\x4d\x96\xe7\xc2\x01\x01\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\x6b\x72\x1c\x39\x92\x30\xf8\x3f\x4e\x81\xd2\x18\x4d\x55\x66\x54\xca\xaa\xfa\x9b\x6f\xd7\xca\x44\xf5\xb2\xa8\xd2\x63\x86\x92\x38\x24\xd5\xfd\xcd\x6a\x65\x51\xc8\x08\x64\x26\x86\x91\x40\x76\x00\xc1\x54\x56\x5b\xdf\x60\x0f\xb0\xe7\xdb\x93\xac\xf9\x03\xaf\x88\x48\x4a\xaa\x9e\xfd\x43\x66\x00\x0e\xc7\xdb\xe1\xee\x70\x77\xc8\xdd\xae\x6e\x95\x6b\xc4\x99\x38\x17\x3b\xa9\x4d\xa7\x9c\x13\x4e\x75\xab\x27\x1b\xeb\xbc\x6a\xc5\x2b\xed\x85\x53\xfd\xbd\x6e\x54\x55\x6d\xec\x56\x89\x33\xf1\xda\x6e\x55\xd5\x4a\xb7\x59\x5a\xd9\xb7\xe2\x4c\xbc\x08\xbf\x2b\xf5\x79\xd7\xd9\x1e\x80\x7e\xa5\x5f\xd5\x46\x75\x3b\x28\xa3\xba\x5d\xe5\xf4\xda\xd4\xda\x88\x33\x71\xa3\xd7\x46\xbc\x31\x94\x62\x07\x1f\x92\xde\x0f\x9e\xd2\x86\x5d\x48\xfa\xb0\xab\x7a\xb5\xd6\xce\xab\x5e\x9c\x89\x6b\xfe\x59\xed\xd5\xd2\x69\x0f\x35\xfd\x95\x7e\x55\xf7\xaa\x77\xda\x02\xf6\xbf\xd0\xaf\x6a\x27\xd7\x00\x70\x25\xd7\xaa\xf2\x6a\xbb\xeb\x24\x16\xb8\xe5\x9f\x55\x27\xcd\x7a\x20\x98\x4b\xfe\x59\x35\xbd\x92\x5e\xd5\x46\xed\xc5\x99\xb8\xc0\x8f\xc5\x62\x51\x0d\x4e\xf5\xf5\xae\xb7\x2b\xdd\xa9\x5a\x9a\xb6\xde\x52\x37\x3f\x38\xd5\x0b\x4e\x17\xd2\xb4\x02\xd2\xb1\x0b\xaa\xad\xb5\xa9\xa5\xe3\x7e\xa8\x56\x68\x23\xa4\xab\x10\x95\x91\xdb\x50\x1a\x7e\x56\x6a\x2b\x75\x07\xa3\x06\xff\xab\x9d\x74\x6e\x6f\x71\x68\xaf\xf8\x67\xd5\xab\xda\x1f\x76\x0a\x87\xe0\xc9\xed\x61\xa7\xaa\x46\xee\x7c\xb3\x91\xd0\x4c\xfa\x55\x55\xbd\xda\x59\xa7\xbd\xed\x0f\x08\x17\x3e\x2a\xdb\xaf\xa5\xd1\xbf\x4b\x4f\xe3\xf3\x3e\xfb\xac\xb6\xba\xef\x2d\x0c\xed\x5b\xfc\x51\x19\xb5\xaf\x01\x8f\x38\x13\xef\xd4\x3e\xc7\x02\x39\x5b\xbd\xee\x69\x14\x21\xf3\x2d\x7e\x01\x16\xca\x63\x4c\x94\x15\xb1\xad\x6c\x7f\xc7\xa9\x2f\xe1\xe7\x08\xa5\xed\xd7\x9c\x5b\xb6\x4b\x1a\xb9\x56\x9c\xfb\x16\x3f\x0a\x00\x57\xc9\x76\xab\x4d\xbd\x93\x46\xc1\xd0\x9d\xc3\x97\xb8\x82\xaf\x4a\x36\x8d\x1d\x8c\xaf\x9d\xf2\x5e\x9b\x35\xcc\xc1\x39\x25\x89\x1b\x4e\xaa\xb2\xbc\x98\x76\xb0\x43\x9c\x65\x71\x26\xfe\xd3\x0e\xbd\xb8\xa2\x4f\xca\xcb\x0a\x61\x66\x2c\x59\xc9\xc6\xeb\x7b\xed\xb5\xa2\xca\xc2\x47\xb5\x1b\xba\xae\xee\xd5\xdf\x06\xe5\x3c\x64\x5d\x0d\x5d\x27\xae\xf9\xbb\xd2\xce\x0d\x58\xe2\x0d\xfe\xa8\xaa\x46\x9a\x06\xbb\x73\x81\x3f\xaa\xea\xa3\x36\xce\xcb\xae\xfb\x54\xf1\x0f\x00\xa6\x5f\x34\x4e\x5e\x7b\x6c\x2c\x27\x8a\x1b\xaf\x76\x0e\x06\x5a\xbc\xd4\xbd\xf3\x4f\xbc\xde\x2a\x71\x3d\x98\xaa\xb5\xcd\x9d\xea\x6b\xd8\x90\xb8\x95\xde\xac\xc4\xc1\x0e\x8f\x7b\x25\xfa\xc1\x18\x6d\xd6\xe2\x95\x5d\x3b\xa1\x8d\xd3\xad\x12\x2f\x10\xfa\x54\xec\x3a\x25\x9d\x12\xbd\x92\xad\x78\x26\x85\x97\xfd\x5a\xf9\xb3\x47\xf5\xb2\x93\xe6\xee\x91\xd8\xf4\x6a\x75\xf6\xe8\xc4\x3d\x7a\xfe\x6a\xd0\xad\xea\xb4\x51\xee\xd9\x53\xf9\x5c\x34\xb2\x57\xab\xa1\xeb\x0e\x62\xa9\x56\xb0\x57\x0e\x76\x10\xcd\x46\x9a\x35\xec\x93\x83\xdf\x40\x85\xda\x08\xbf\xd1\x4e\xc0\x46\xfd\xae\x82\x51\xd2\x5e\xd5\xed\x32\x10\x25\x6c\x10\x26\xf7\xca\x89\xb7\x87\x9b\xff\xb8\x3c\x15\x57\xd6\xf9\x75\xaf\xf0\xf7\xcd\x7f\x5c\x6a\xaf\xfe\x74\x2a\xde\xde\xdc\xfc\xc7\xa5\xb0\xbd\xb8\xd5\x2f\x7e\x59\x54\xed\xb2\x0e\xe3\xf2\x42\x7a\xb9\x84\x2e\xc4\xb9\x82\x4c\xda\x4a\x31\x0f\x37\x14\x90\x3c\x24\x6f\xce\xe3\x26\xe5\x0d\x3a\xbb\x1d\xdb\x65\xcd\x7b\x38\xe2\x78\x07\x1b\xb9\x5d\xa6\x01\xbe\xa2\xa1\x1b\x9c\x12\x6f\xde\xbd\x7b\xff\xe2\x17\xa1\xcc\x5a\x1b\x25\xf6\xda\x6f\xc4\xe0\x57\xff\x7b\xbd\x56\x46\xf5\xb2\xab\x1b\x0d\x63\xd3\x3b\xe5\xc5\xca\xf6\xd4\xd3\x45\xe5\x5c\x57\x6f\x6d\x0b\xb5\xdc\xdc\x5c\x8a\xb7\xb6\x55\xd5\x4e\xfa\x0d\x36\xc4\x6f\x2a\xf7\xb7\x0e\xc6\x2b\x56\x78\xbb\x51\x02\x97\x2e\x02\xd9\x55\x18\x1e\xd1\x72\x1b\x17\xe2\xd9\xb2\x7f\x9e\xb5\x4b\x2e\x9d\xed\x06\xcf\x25\xf6\x1b\x65\x70\x9e\x9c\x97\xbd\x17\xd2\x05\xd2\xbf\xa8\x54\xdf\xd7\x6a\xbb\xf3\x07\x98\x1d\x6e\xc3\x18\x3b\x21\x69\xa4\x31\xd6\x8b\xa5\x12\x08\xbf\xa8\x8c\xad\x69\xa7\x02\xd9\x6c\xb5\x93\xcb\x4e\xd5\x44\xd2\xfb\x40\x91\xfe\x13\x16\x07\x15\x64\x08\x51\x40\xc0\x88\xc1\x31\x81\xd4\x19\x56\x8e\x34\x02\x91\x0a\xde\xea\x79\x0b\x03\x5d\x88\xb3\x46\xa4\x21\x26\x4c\x5a\x58\x85\x69\x08\x6b\xe6\x7c\xb7\xeb\x74\x43\x55\xbf\xa2\xbc\xb4\x7c\xe0\xd0\xe4\xb9\xcf\xe1\x70\xfa\x43\x5e\xb6\x08\x06\x0f\x43\xda\x8b\x82\x06\x63\xf9\x8d\xea\x95\xd8\x0c\x6b\x3a\x38\x3a\x3b\xb4\xdf\x21\x05\x0f\xe3\x9b\xe8\xa4\xb8\xb6\xd6\xd3\x9c\x47\x80\x54\xc5\x79\xd7\xe1\x39\xdd\xab\xad\xf5\x30\x70\x5c\x0c\x68\xd1\x5e\x77\x1d\xf4\xd4\xc9\x7b\xd5\x0a\x6f\x69\xbf\xb5\xba\x57\x0d\x20\x5e\x54\xfd\x60\x6a\x5e\xec\xd7\x83\xa1\x05\x1f\xd2\xca\x95\x85\x50\xdb\xc1\x79\xb1\x91\xf7\x0a\x06\x1e\x98\x05\x6f\x67\xdb\x89\x5d\xea\x07\x83\x5b\x78\x51\xb5\x76\x2b\xf1\xe0\x7f\x81\x3f\xf8\x3b\xc7\xaf\x9d\x90\xab\x95\x6a\xbc\x13\x37\x37\xaf\x45\xd3\x59\xa3\xc4\x87\xeb\x4b\x07\xdb\x60\x53\xef\x6c\x8f\x4c\xc2\xcd\x6b\x71\x65\x7b\x1f\xd3\xb2\x81\x06\x08\x33\x6c\x97\xaa\x17\xfb\x8d\x6e\x36\x34\xec\x50\x02\x56\xb1\xea\x85\x76\x62\x70\xda\xac\x4f\x45\xa7\xa0\x07\xda\xd3\x02\x80\x3e\x84\x55\x07\xe0\x2b\x25\xfd\xd0\x2b\x3c\xf4\xeb\xe5\xa0\x3b\xaf\x4d\x0d\x15\x32\x1e\x24\x0b\xe2\x17\xca\xc0\x12\x37\x98\x71\x04\xbe\xde\xd9\x1d\xb1\x33\xb8\xab\x96\x59\x39\x46\x08\x5b\x1e\x26\xd0\xee\x14\xad\x77\xc7\x4d\x82\x05\x37\x68\xb7\x11\xab\xde\x6e\x85\x3b\x38\xaf\xb6\x58\xb0\x95\x6a\x6b\xcd\xa2\xda\x78\xbf\x0b\x63\xf3\xfa\xf6\xf6\x8a\x06\x27\xa6\x3e\x34\x3a\x32\x5b\xbb\xb8\x4a\x3a\x60\xac\x8c\x00\xb4\xb0\x8c\x87\xbe\x1b\xad\xf0\x0f\xd7\x97\x21\xe7\xc8\xcc\x41\x13\x9e\xc2\x9f\x9b\x34\x81\xb8\x12\x9c\xdd\xaa\x3d\xae\x77\x6d\x04\x32\x3b\x8b\xaa\xb3\xeb\xba\xb7\xd6\x87\xe5\x7e\x69\xd7\xb4\xc4\x8b\x8c\x54\xd3\x8b\xb0\x68\x61\x70\xf6\x3d\x30\x7f\x9d\x5d\x23\xc1\x83\xf1\x5a\x54\xca\x20\x69\x69\xac\x71\xb6\x53\x81\x72\xfe\x8a\xa9\xe2\x82\x52\x89\x88\xce\x40\xc6\x59\x7a\x03\x94\xa5\xd5\xd8\x63\x6f\x89\x9e\x02\xc0\xa9\x90\x9d\xb3\x62\xd7\x6b\xe3\xa1\x62\x9c\x23\xc6\xb0\xa8\x2a\xbb\x83\x12\x19\x0d\x79\xcf\x09\x89\x70\x60\xbf\x63\x3e\xb2\x7a\xb8\x72\x74\x93\x1d\x4e\x6e\xeb\x77\x35\x9f\x44\x37\x6f\x6f\xaf\xe8\x38\xc2\x54\x5c\x04\x67\xe2\x65\x6f\xb7\x29\x21\x8d\xcf\x5b\xc0\x87\x30\xb2\x6d\x7b\xe5\xdc\xa9\xb8\x7e\x79\x21\xfe\xf5\x4f\x3f\xfd\xb4\x10\x6f\x3c\x90\x3d\xa0\x04\xff\x05\x3b\x58\xf2\x2c\x24\x50\xdb\x0b\xbf\x51\xe2\x11\x90\xb1\x47\xe2\x19\xe6\xfe\x1f\xea\xb3\xdc\xee\x3a\xb5\x68\xec\xf6\x39\xac\xd2\xad\xf4\x8b\x0a\x72\x54\x1f\x88\xc6\x8d\x32\xad\xea\x99\x71\xe5\xac\x8c\xf4\x72\x76\xc6\xc6\x12\xff\x0e\x63\xbf\xd2\xfd\x36\x4d\x50\xe0\xec\x61\xa6\x20\x27\x70\x81\xba\xab\x8d\xf5\x7a\x75\x48\xa0\xd8\xd3\x77\x90\xc8\x4b\xb3\xe2\x9d\xc6\xc7\x55\x1c\x63\xda\x97\xb8\x02\xdf\xfb\x8d\xea\xc3\x70\xbb\x34\xde\x76\xb5\x02\xa6\x65\xb4\x5a\xde\x53\x2a\xad\x96\x1c\x24\x2e\x93\x17\x4c\x30\x2e\x5e\xbc\x13\xea\x5e\x19\x58\xd8\xbb\xde\xb6\x43\x83\x2b\x27\xac\x98\x4e\xf4\xca\xd9\xa1\x6f\x14\x2f\xd4\x48\x90\xa1\x69\x40\xf5\x1b\xd9\x75\x87\x45\x15\x0e\xc6\x75\x2f\xef\xa5\x97\x7d\x56\xc5\xab\x90\xc4\xad\x9f\xc0\x4e\x1a\x15\x4b\x40\xcf\x9b\xc1\x79\xa0\x1e\xd8\x0a\x47\x8d\xa2\x6c\x27\x64\xaf\xc4\xb0\xeb\xac\x6c\x55\x2b\x96\x07\xa4\xf1\x0e\xd6\x42\xab\x56\x72\xe8\xfc\xa2\x5a\xa9\x16\x88\x92\x6a\x6b\xae\xab\xb3\xf6\x0e\x2b\xe3\xa1\x7a\x19\x00\xc4\x39\x23\xbd\x44\x88\x63\x25\x63\x63\xb9\x7c\x04\x8b\x8d\xe2\x1a\xbc\x45\x16\x25\xe5\xdb\x9d\x32\xdc\x8d\xc0\x98\x08\xe0\x3b\x5a\x61\x8d\xe8\xf4\x92\x3b\x9d\xc6\x72\xc4\x64\x84\xd1\xb9\x01\xf9\x36\xcf\x9b\x2d\x30\x19\x54\x5c\xf0\x6e\x5c\xf6\x54\x58\xd3\x1d\x98\x19\x81\x2d\x46\x02\x64\xe0\x4b\x5c\x22\x4b\x51\x5c\x0b\x14\x89\xa5\xb6\x32\x3f\x56\x7b\x4d\x6c\xaf\xb8\x97\x9d\x6e\x01\x63\x40\x00\xa7\xc5\x7c\x5b\x16\x15\xf3\xca\x35\x4b\xda\xf5\xbd\x46\x39\x36\x6e\x31\x42\xc9\xd2\x37\x8c\xf0\x5f\x00\x00\x04\x64\x37\x5b\x36\xb6\xe6\x3d\x74\xd2\x45\x39\x96\xd6\x09\x74\x17\x6b\x00\xfe\xdd\x9d\x8a\x7b\x8d\x6c\x00\x2f\x72\x1c\x97\x25\xf0\x98\x9d\x82\xaa\x9c\x52\x88\x41\x68\xf3\x74\xd8\x51\x99\x05\x0b\x71\x2c\x57\x05\xbe\x1f\xd8\xc1\xd6\x0a\xe0\xd2\x90\xd7\x00\x4a\xcb\xc3\x3a\xe2\xfb\x44\xaf\xd7\x1b\x2f\x8c\xdd\x9f\xd2\xa0\xec\x37\x56\xc1\x9e\x7f\xf3\xe2\xec\x47\x6a\xc7\x1a\x38\x8f\x58\x08\x78\x16\x39\x78\x0b\xf4\x85\xb7\x1e\x35\x21\xf2\x7e\x08\x39\x11\x17\x09\x68\x2c\xb7\x4f\x58\xcd\x48\xe8\x98\xbe\xe5\x79\x4c\xd8\x12\x0c\x95\x0e\xb2\x3f\x55\x4c\x84\x94\x65\xbd\x7a\x6d\x51\xd6\x0c\xb2\x1d\x30\x53\x95\x57\xce\xd7\x6b\xed\xeb\x15\x50\x5b\x40\xfc\x12\x10\x00\x6f\xa7\x9c\x17\x8f\xd7\xda\x3f\x16\x8d\xdd\x6e\xa5\x69\x7f\x16\x27\xf7\x2c\x26\xfc\x09\xc8\x28\x6c\x45\xdd\xe1\x8c\xb0\x04\xdb\x2b\x92\x06\x82\xf6\xa4\xb5\xca\xe1\xc0\xbb\x61\x87\x8c\x45\x14\xb1\x58\x12\x6c\xed\xde\x00\xc1\xc0\xe3\xc2\xae\x56\xba\xd1\xb2\x13\x4b\x6d\x64\x7f\x88\x58\xf0\x18\x3a\x71\xa7\xe2\xdd\xfb\x5b\x04\x5c\x5b\xe0\x7b\xda\x00\xb0\xa8\xb4\xc1\x85\x0d\xe2\x04\x4f\x7e\x2e\x4b\x85\x24\x4d\x6d\x69\x6c\x0f\x67\x3f\xf6\x26\x14\x3c\xc2\x29\x03\xe3\x40\x82\x88\x06\x59\x16\x61\xb1\x5c\x64\x6a\x61\x18\xb6\xd2\x37\x1b\x66\x79\x71\xd9\x68\x67\x1e\x7b\x6c\x69\x33\xf4\xbd\x32\x1e\x93\x7f\x16\x27\x4e\x3c\x79\x2e\x4e\xb2\x73\xb9\xde\x6a\x07\x5c\x64\x64\x49\xc3\x21\x0d\x15\x72\x9e\xc0\x3c\x5c\x76\x78\xbc\xa6\xee\xe6\x07\x39\x96\x84\xd3\x5c\xac\xb4\xea\xda\xd0\xd9\xd4\x64\x60\xda\xe9\xa0\x5c\x4f\x27\x1b\x32\x05\x65\x0e\xb4\xfd\x8b\xe1\x29\xf6\x55\x5c\x5d\x61\xd7\x64\xe3\x9b\x8f\x51\x58\x76\x6e\xa0\x8d\x72\x26\xfe\xaa\xba\xc6\x6e\xd5\x77\xe2\xaf\xea\x71\xaf\xc4\xba\xc3\x89\x97\x9e\xc5\x79\xeb\x14\x2e\xca\x53\xda\xa7\xab\xc1\xe0\x91\xe3\xe5\x9d\x42\x0d\x40\xea\xf8\x1c\xb7\x77\x74\xae\xaa\x8f\x1b\xbb\x55\x9f\xaa\x81\x64\x29\xdb\xb5\x51\x1a\xc7\x1d\x68\x7b\x62\x5f\xa2\x68\x9e\x60\xe2\xe6\x72\x7b\xed\x9b\x4d\x1d\xf5\x94\x30\x90\x5e\x7d\xc6\x29\xc3\xac\xa4\xb6\x84\x9d\x09\x59\xd5\xf6\x80\xcb\x0a\x3a\xfe\xf6\x90\x56\x95\x56\xae\x72\x1b\xbb\x47\xa5\x5f\x84\xb8\xd9\xd8\x3d\xaa\xfb\x0a\x89\x6b\xb1\x58\x54\x8d\xed\x3a\xb9\xb4\x30\x2b\xf7\x09\xfe\x22\x4f\x2d\x91\x6f\x0f\xb5\xed\xd7\x5c\x6d\xa9\xe4\xda\x1e\x58\xaf\xc6\xb9\xa4\x57\x73\x15\x52\x67\x56\xc8\x22\x11\x3f\x71\x15\xab\x93\x16\xda\xd4\xa8\xad\x0a\x35\xbf\x31\x24\x0b\xe5\xed\xac\xaa\x8f\xac\xac\xfd\x54\x05\xb8\xa2\x4d\x44\xe2\x69\xd0\x5d\xa1\x41\x74\x23\x15\xa2\xab\x9c\x92\x3d\xee\xa7\x1b\xfc\x51\x55\x1f\xe5\xe0\x37\x9f\x32\x65\x6a\x1d\x56\x5e\x50\xaa\xa2\xc2\x8f\xa9\x6c\xe2\x0a\x37\x6a\x07\x0c\xe4\xd6\xe1\x92\xed\x7a\x25\xdb\x03\x8b\x9b\x71\xf1\xfe\x99\xce\x2f\x6d\x80\xea\x7f\x57\x39\x0b\x04\xa8\xfe\x46\x14\xbf\x68\xd3\x52\xf9\xf2\xec\x27\x2d\xef\x76\x87\xcb\xc4\xf6\xfd\xe1\xb4\x54\x44\x6c\xa4\x13\x4b\xa5\x4c\x10\x18\xdb\x45\x50\xf3\xc0\xf2\x92\x0d\xd1\x10\xd4\x4c\xe3\x0e\xa4\x92\x76\xc2\x94\x40\x0b\x89\xec\x73\x2d\x74\x0a\xb8\xc0\x9f\x02\x63\xf6\xcd\x55\xc0\xa0\xd7\xcc\x20\x9d\x89\xf3\xc1\x6f\x94\xf1\x41\x7a\xbb\xc1\xf4\x0a\x19\x4e\xdc\x7f\x8d\xec\xaa\x5e\x6d\x15\xc8\x84\xf5\x96\x34\xcb\xf4\x25\xde\xaa\x6a\x65\xfb\x35\xee\x56\xda\x4e\x67\xe2\x25\x26\xa4\xfd\x05\x00\xca\xe7\xe7\x1b\x43\x84\x94\x3f\x07\x4d\x7e\x6d\xec\x1e\x35\xbc\xc0\xe3\x8d\xa7\x71\xd8\xc1\x34\x2c\xc2\x79\x49\xac\x17\x72\xfd\x4e\x19\x9f\x26\xe3\x5c\x18\xb5\x17\x39\x14\x0f\x59\x9c\x11\x80\x07\xc2\xf8\x6c\xf9\xfc\xc4\x3d\x7b\xba\x7c\x1e\x8f\xac\x66\xa3\x9a\x3b\xda\x02\xda\x2c\xed\x67\x54\x27\xa1\xee\x51\x09\x03\x24\xe1\xa4\x15\x1b\x3b\xf4\x2c\xd2\x81\xc8\xe3\x15\xe6\x16\x73\xbf\xeb\x6d\x83\xc4\x1c\x75\xbd\x8a\xf6\x58\x5a\xd7\xa8\xf4\x85\x95\x8d\xe7\x6a\x58\xda\xbb\xde\x6e\xf4\x52\x7b\x20\x80\xa8\x01\xb9\xc4\xff\x57\x9c\xac\xda\x11\x44\xc6\x02\xf5\x91\x5c\x6b\x27\x76\xb1\x00\x34\x12\x41\x53\xff\x78\x5d\xa4\x35\x01\x9c\x20\x8e\x5f\xa7\xb7\xda\x4f\x96\x34\x10\x6f\xc9\x5b\x83\x75\xd3\x61\x6e\xb0\x0f\x69\x74\x7b\xd5\x28\xe3\xbb\x43\x5c\x83\x7b\xa9\xbd\xf8\x93\xd8\x6a\x33\x78\x90\xbb\x37\xca\x08\xdf\x1f\x84\x04\x36\x6b\x51\x6d\xa4\xab\x07\xc3\xd3\xa4\xda\xb0\xc8\x5f\x6b\xe4\x06\xa0\xde\xb0\x15\x33\xa8\x52\x16\x15\xdf\xc7\x19\xfc\x61\xc1\x5a\x6a\x2c\x05\x27\x34\xb4\x47\x83\xe0\x24\xe7\xd6\x82\xed\x85\x51\x34\x42\xd8\x7f\x00\x83\x65\x63\x8d\x4a\x83\xd5\xe9\xe6\x0e\x24\x06\x98\xdf\xe5\xe0\xbd\x05\xb1\xb8\x83\x35\x48\x65\x42\x9b\x2f\x10\x10\x95\x16\x09\xdf\x81\xa6\xa5\x1c\xa5\x0a\x8b\x01\x84\x9f\x2f\xfc\x7d\xaf\x7e\x48\xc5\xe3\x96\xc1\x12\x8c\x82\x4a\x67\xbb\xe9\x1a\x33\xe9\x0a\x22\xec\xb9\x70\x98\x36\xac\x14\x8e\xb3\xd9\x97\xa3\x81\xf9\xb0\x31\xd4\xe7\x9d\xee\x41\x40\xea\x13\x6b\xb1\x18\xd5\x95\x34\x08\xd3\x1e\xfb\xb2\xc5\xe9\xbc\xf5\xd6\xd6\x6e\x43\x1c\x50\x68\x9e\xe8\x94\x59\x17\x1a\x60\xbc\x4e\xc4\x25\xf2\x3f\x17\x95\xb1\xa6\x46\xea\x93\xed\x99\x77\xd6\x3c\x21\x8a\x14\xe4\xa5\x50\x9a\xaf\x0a\x42\x85\x80\xa6\xb7\xc3\x7a\xc3\x0a\xc5\x8a\x36\x8b\xdf\xdb\x7a\x25\x1b\x8f\xd7\x4e\xb7\x7b\xfb\x84\x3f\x4a\xda\x37\x01\xc6\xbe\xf3\x20\x8e\xc8\xe4\x15\xe7\x4c\xcb\x28\x03\x54\xbb\x57\x8d\xbd\x57\xfd\x21\xcc\xc1\xaf\x90\x2a\xa4\xf0\xa9\xf2\x00\x22\xe6\xf1\xc4\xec\xa2\xc5\xd7\x9c\x7a\x1c\x3e\xd4\x18\x20\xc5\xc5\x03\xcd\xcc\x3a\x38\xd3\xc2\xdd\xd1\x4e\x26\xee\xfa\x48\xa5\x71\x69\x21\xcd\x1d\x1c\x2d\xae\x28\x35\xf0\x0a\xab\x3e\xc2\xa2\xfe\x54\xf1\x4e\x51\xd9\x94\x33\x1d\x09\x39\x61\x47\x11\xb5\x8c\xf0\x41\x28\xfa\x8b\xea\xf5\xea\x40\x40\x05\x95\x38\xb6\x61\xca\xf5\x1a\x0f\xdb\xc4\xd1\x5e\xe7\x24\x9d\x93\x57\x43\x77\x2a\xf6\xc4\xea\xa6\x32\x51\xed\xc4\x4c\x30\x10\x0d\xba\xe6\xae\x3e\x6e\x6d\x2b\xbb\x4f\xd5\x01\x2f\xef\xfe\x53\xb9\xca\xe0\x85\xa9\xad\xb6\xb6\xa5\x42\x6f\xf1\x47\x55\x7d\x5c\xd9\x7e\xfb\xa9\x02\x36\xea\xdd\x48\x7a\x04\x7e\x8b\xd3\x32\x09\x06\xb3\x7e\xcd\x2f\x84\x63\x9f\xaf\x66\x04\xcd\x6b\x95\xee\x85\xf1\x57\xec\xfc\xcd\xcd\xeb\xdb\xa0\x08\xbb\x79\x2d\xee\x14\xe3\x7e\xed\xfd\xce\x7d\x40\xf5\x2e\xe9\x6a\x3f\x5c\x5f\x56\x57\xf2\x00\x52\x1d\x25\xf3\x07\x66\xdc\x2a\xb9\xe5\x46\xc2\x4f\x42\x01\x9b\x86\x13\xe1\xa7\xed\xf3\x8b\x8d\x0a\x65\x8d\x5f\x0b\xb1\x96\x88\x5c\xf5\x4e\xed\x7f\xe9\xa5\x69\x42\x61\x60\x02\x97\x98\x40\x25\x2f\xec\x76\xab\xfd\xcd\xb0\xdd\x4a\xdc\x20\xf4\x2d\x1c\x25\x70\xf6\x5b\xe5\x1c\xdd\xda\x73\xf6\x96\x12\x38\xfb\x62\x63\x75\x93\xe5\x36\xf8\x5d\xdd\xf6\x4a\x71\xad\x2f\xc3\x1d\x59\x85\x8c\x3f\x71\xa5\xf4\xab\x8a\x6a\x10\xc5\x97\xd9\xbf\x4d\xee\x8b\x7e\xab\x64\xb7\xdb\x48\x14\x2d\x32\x30\xbc\x1a\x59\xb2\xc2\x46\x20\x08\xd2\xdd\x61\xab\x7a\xdd\xe0\x2e\x91\x6e\xf3\xfd\x93\xfa\x07\xbc\xeb\x93\x8d\x57\xbd\x2b\x91\xb5\xd6\xff\x31\x84\xb8\x05\xfd\x83\x78\x5d\xf7\x87\x9b\x3b\xc1\x0e\x29\x88\x4f\x41\x45\x4e\xff\x1e\x86\xab\xc0\x0c\xe9\xe2\x04\x20\x50\x14\x4d\x50\x11\x08\x19\x17\x10\x4b\xbd\x00\xaa\xe0\x41\xdc\x2e\xfa\xb0\x95\x9f\xbf\x54\x70\x6b\x67\xca\x91\xaa\x3d\x15\x62\xd1\x5a\x72\x6f\x0b\x4a\xb2\xf8\xad\x1a\xfa\x07\x80\x3f\x5c\x5f\x2e\x7e\xab\xb4\x69\xba\xa1\x3d\xda\x10\x37\x2c\x9d\xef\x41\xa4\x7e\x7c\xe2\x1e\x03\x4a\x73\x67\xec\xde\x44\xf8\x0f\xf4\x2d\xf0\xfb\xe7\x60\xbc\x51\x6b\xc3\xba\x8d\x64\xc6\x21\x5a\xdd\x02\xab\x83\x3a\x8a\x45\x3a\x72\x73\xbd\x45\x24\x04\xa8\xe0\x65\xbd\x52\xa4\x85\x20\x3c\xa0\x0a\x47\x6e\xd5\x22\x19\x9c\xd4\x40\xb2\x6b\x90\xcd\x4d\x2e\x4c\x03\x31\x0f\xcc\x20\x12\x75\x84\x58\xd0\x4d\xe3\xb4\xdc\x88\x52\x1d\x2d\x6e\xfb\xf5\x4c\xe9\xf7\xd3\x5b\xd0\x23\xe5\xbd\x92\xdb\x19\x04\x91\x06\x1d\x2d\x48\x73\x8f\x85\xf0\x78\x1a\x11\xd1\x69\x39\x80\x5a\xa4\x51\x8a\x03\x9e\xcf\x4d\xae\x7a\x88\xe3\x5c\x6a\xa7\x0a\xf9\xab\xde\x6a\x17\x26\xeb\x76\xa3\x84\x2c\xb9\x8c\xa8\xc5\xee\x54\x03\xac\x77\x58\x72\x0e\xa5\x59\x48\x41\x1b\x01\xcf\xd7\xae\x8b\x0a\x4f\xf5\x1e\x6d\x8a\x32\xf5\x17\xab\x23\xf9\x48\xdd\xca\x3b\x25\xdc\x00\xdc\xdb\x46\x7a\x96\x5f\xca\xc9\x02\x56\x1a\x51\x51\x9d\xb1\xe5\x13\xf4\x76\x6f\xe0\x04\xfc\x12\x7e\x04\xfb\x46\xd4\xb9\xb6\x74\x8a\x98\x91\x47\xa0\x63\x68\xa3\x2a\x4f\x7d\xd6\x78\x59\xf6\x4a\xdf\x2b\x56\xe6\x45\x6e\x04\xf3\x16\x55\x27\x9d\xaf\x61\x3d\x52\x73\x51\xd0\xb5\xf7\xb0\x59\xa1\x3e\xc8\xa5\x72\x74\x79\xc6\x9d\x82\xf5\xc7\x6a\x41\xd9\x75\x76\xaf\xda\x53\x21\x91\x9b\xed\x15\xed\x7d\xd9\xed\xe5\xc1\xa1\x8a\x3b\xd0\x2f\x6b\xc2\x98\x00\x71\x32\x07\xb1\xc6\x56\xe5\xda\x93\x45\x95\x94\x81\x6e\x53\xc3\xa9\x1c\x39\xf9\x3d\x2a\xd9\x70\x25\xb0\xd2\xfc\x3e\xe3\x7f\xf8\x10\xff\x59\x9c\xb8\x6a\xa0\x4b\x03\xca\xce\x10\xa1\xc5\x0c\x1f\x58\x33\x65\x4f\x41\xe2\x11\x7b\x05\x2b\x6d\xd8\xf2\x58\x6b\x14\x30\xb1\x49\x99\x96\x77\x58\x76\xea\x09\x49\xce\x3a\xac\xed\xa8\x84\x1c\x31\xcd\x94\x4e\xaa\x3b\xe7\x75\xd7\xc1\x48\x07\x2b\xb2\x42\x92\xc5\x5c\xdc\x82\x38\x4c\x6e\xa3\x77\xc2\xe2\x1d\x5d\x3e\x84\x69\xd9\x66\x32\xa3\xb7\xa2\x55\x28\x99\xdb\x5e\xf8\x5e\x1a\xb7\x52\x78\x69\xb9\x15\x2b\xdd\xc3\x3c\x53\xd5\x20\x82\x92\xd5\xd8\x91\x9a\x49\xc9\x81\x55\xe7\x67\x0f\xce\x5d\x36\x51\x65\xd5\x64\x32\x80\x37\x63\xd8\x06\x1c\xd5\x84\xc9\x85\x36\xc0\x32\x9b\x0c\x01\x5e\x92\x17\x06\x20\xb3\xe3\xb0\x2a\x34\x74\x54\x3f\xae\xb4\x2f\xf4\xbb\x22\xab\xac\x9a\x38\xa9\x62\x57\xdc\x62\x4e\xe0\xb1\xc6\x1b\xa3\xfa\x08\xeb\xfe\x53\x45\xc2\x56\x1d\x6f\x1e\x2f\x48\xf8\x22\xd6\x1c\x13\xab\xff\xb2\xda\xd4\x78\x8d\xf6\x6f\x56\x1b\xbc\x73\xab\x0a\x4b\x93\x91\xfa\x90\xed\xe1\x0e\x68\x02\xb3\xec\x74\x13\x8c\xe2\x0e\xd5\xca\xe2\x7e\x42\xed\xe2\xcb\xf0\xbb\x72\x5e\x02\x99\x60\x3b\x09\xf8\x55\xa8\x2b\xa9\x10\xe9\xb2\x5f\x86\xdf\x9c\x1a\x93\xaa\xc1\xc4\x94\x0f\xfc\xb3\xaa\x80\x01\x5f\x20\x69\x07\x99\x01\xaf\x5d\x33\x82\x0e\xe7\x35\xac\xff\x90\xb7\xc8\xe0\x77\xd2\x7b\xd5\x1b\xba\x39\x21\x22\x90\x17\xe5\xec\x88\x02\x37\x2e\x81\xc1\xd8\x06\x63\xc1\x4f\x55\x32\x29\x0c\xd6\x84\x73\x57\x46\x71\xf8\xe9\x22\xb5\xe2\x5d\xed\x98\x7f\xff\x77\x75\x70\x95\x53\xcd\xd0\xd3\xb0\xde\xf0\xcf\x79\xf5\x2d\xeb\x93\x47\x16\x93\xc9\x9a\xc3\x95\xc6\x1d\xae\xe2\x35\x76\x26\x5e\xd0\x8f\xa0\xc0\xaa\x76\x38\x7d\x99\x59\x24\xcf\x67\xec\x0a\x5b\xc5\xe6\x8a\xab\x52\xa1\xa3\x9d\x20\x24\xc8\xae\x84\x1b\x70\x3c\x9c\x57\xb6\x47\x3a\x19\xaf\xf3\x54\x87\xc7\x9f\xc9\x6e\xf7\xdd\x29\x96\x03\xb0\xbd\x5a\x86\x2b\xdf\x64\x2b\xb3\x95\xad\x12\xf7\x5a\x46\xbd\x68\xc6\x34\xc5\x53\x3d\x28\x53\x0b\xa5\x03\xca\x4b\xa4\xe8\x0e\x3c\x53\x98\x66\x6f\x83\x0a\xc2\x6f\x94\xa6\x1b\x57\x83\xfc\xd4\x6a\xe8\xba\x70\x32\xbe\x1c\xba\x8e\x2c\xbf\xa6\xf6\xc8\x50\x05\xdf\x3c\x5f\xf2\xcf\x6a\xd8\xb5\x20\xdd\xa6\xb1\xfc\x80\x09\x71\x2c\xcb\xfc\x4c\x6a\xc5\x51\x0d\xc5\x92\xf8\x8d\xe0\x6d\x26\xc6\x76\x87\x45\xd8\xcd\x33\x76\xc6\xbc\xb1\xdb\x31\x48\x52\x10\x22\xa5\xe2\x8e\xe3\x44\x91\x69\x0f\x0e\xed\x5e\x1e\xc4\xc6\xee\x45\xa7\xcd\x9d\xe3\x99\x82\x71\xca\x25\x78\x54\xe4\x7a\x6d\x06\xc5\x32\x15\xfc\x9c\x5a\xb5\xb2\x29\x00\x1b\x06\x2c\x0f\x41\x6d\x46\xa6\x03\xbc\x01\xc4\xf2\x20\x50\x6c\x3c\x6e\x83\x30\x36\x3e\x08\xb6\x07\xe1\x4e\x1d\x4d\x1f\x12\x5d\xfb\xe0\x94\xb8\x20\x73\x08\xde\x63\xcd\xc6\x5a\xc7\x37\x14\x89\xfa\x41\x1a\x2a\x0e\x99\xf8\xf1\xb4\x24\x3c\x34\x6b\xe7\xc1\x2c\x03\xf7\x39\xef\xa0\x9a\x2f\x10\x13\x34\x6f\xa8\x0b\xbe\x58\x3c\x0f\x38\xc9\xec\x22\xf4\x09\x69\x4c\xad\xb7\x24\xd9\x7e\x08\x46\x19\x38\xe1\x51\x22\xc1\xec\x45\xd9\x9e\xf1\x2a\xe1\x7a\xc3\x15\xdf\x17\x16\x4b\x58\x0a\xf9\x3d\x35\x4d\x7f\xa4\x4b\xb6\x2b\x98\xb6\xd0\x8f\x98\x0f\x83\x97\xe5\xbf\x43\x8b\x82\xa8\x80\x81\x3d\x56\x8f\x40\x58\x67\x51\x40\xce\xb2\xdd\xa1\xae\xa3\x2c\xf7\xa8\xf5\x93\x1d\x13\xca\xed\xa5\x2b\x3a\xce\x6b\xbc\x5d\x04\xd3\x53\x61\xec\x9e\xcc\x13\xd0\x46\x90\xec\x24\x0d\xda\x36\x10\x8a\x8c\xa8\x70\xa5\xff\x2c\x49\x49\x98\x49\x66\x71\x51\x54\x39\x27\xc2\xa9\x5c\xb0\x82\x8f\xf9\x6c\x08\x5f\xd0\x57\x15\x4c\xcb\x72\x0a\xbc\xeb\x35\xea\x50\x4a\x4a\x3c\xa1\xbd\x05\x9d\x45\x32\x6b\xd1\x50\x2a\x91\xd7\x45\x15\x50\xc1\xe9\x85\xbf\x42\x4a\xd4\xd2\xdd\x28\xb4\x16\xe6\xe4\xb0\x11\x42\x2e\xad\xff\xd8\xc6\x4e\x31\x55\xa4\xbe\xbe\xe0\x84\x51\x7e\xe8\x0c\x65\x87\x09\x99\xe9\x4d\x0f\xbc\xbc\x8a\x07\x87\x36\x64\xa7\x16\xad\x10\x0a\xea\x24\x5e\x20\xb9\x12\x7b\x49\x77\x45\x81\x58\xfd\x79\x5c\x7b\x5a\x47\xbf\x96\xb7\x4c\xd4\xb7\x72\x17\x7d\x57\xc9\xb6\xc5\x35\x9e\x6c\x39\x5a\x5c\x3c\xa5\xca\x12\xa0\x72\x08\xb2\xf5\x88\xa9\x75\x71\x07\xe6\x48\x2f\xf5\xf5\xf7\x5e\xc0\x85\xfc\x37\x5c\x79\x15\x55\xa5\x2b\xaf\xd8\xc8\xd1\x0e\x9b\xf4\x72\xba\xd5\x64\xdb\x22\x43\xc4\x6b\x39\x63\x6b\x78\x35\x47\xee\x06\x6a\x21\x39\x06\x86\xe7\xdf\xd5\x01\x79\x20\x5e\x09\x78\x34\x69\x27\x24\x5a\xaa\xa2\x79\x3b\x09\x35\x6e\x22\x37\x97\x73\x7e\x8e\x52\x9b\x53\x0c\x8b\xfc\xa1\x34\x07\xe0\xf7\xc3\x5e\x57\x5b\x18\x07\xb2\x14\x8a\x76\xcd\x93\x3b\xf3\x53\x16\x95\x36\x7a\xbd\xe9\x0e\x42\x6f\x77\xb6\xf7\xb8\x92\x82\x45\x44\x92\x64\xe1\xab\x57\x8d\x5d\x1b\xfd\x3b\x0e\xec\x96\x0c\x99\xe3\x65\xcb\x33\xe7\x7b\x6b\xd6\xcf\x5f\x58\x10\x31\xef\x80\xfc\x6c\xec\xfe\xcf\xcf\x9e\x72\xba\xb8\xc0\x29\xb4\x83\x17\xaf\xb4\x7f\x3d\x2c\x1f\x3b\xb1\x1e\x74\x8b\x47\xee\x33\x99\x79\x5e\xb0\x69\x14\x59\x99\xef\x4d\x1c\x16\xf4\xc3\xb0\xbd\x70\xb6\xbb\x57\xa3\x22\x76\xbb\xa5\xe9\x5d\x76\x6a\x4b\x90\xd8\x7e\xb4\xa6\x52\x06\x47\x4e\xf5\x3c\x3e\x37\x37\xaf\x17\x71\x89\xa7\xf9\xe1\x69\x0b\x7c\x6a\xa1\x72\x61\x1e\x11\x80\x1b\xd6\xb1\x16\x97\x06\x8b\x58\x0a\xf9\x8f\x69\x29\x9c\x47\x07\x3c\xcb\x44\xd9\x83\xc2\x0b\xa0\x08\xc5\xc5\x19\xb4\x83\xf8\x30\x48\x6b\x26\x5a\x5d\x5e\x58\xd9\xe2\x85\xb3\x27\x68\xc5\x91\x7f\x8f\xcd\xc3\xe5\x3a\xda\xdf\x4c\xd1\xa8\xef\x4c\xcf\x42\x07\x32\x8a\xc6\x23\x92\x68\xda\x18\xa6\xa0\x6a\x8a\x68\x5a\x68\x45\x4e\xcd\xc8\x70\x94\x28\x1a\x2d\x48\xe5\x90\x5e\x7f\x25\x35\x9b\xd4\x9b\x3a\x1e\xaa\xfb\x0a\x8a\x86\x7d\x3a\xc7\xe1\xb0\x86\xb4\x28\x3c\x51\x97\xac\x33\xc1\x0c\x63\xeb\x4c\xda\x7b\x67\xf9\xd2\x58\x84\x44\x9c\x13\xe7\x81\x63\xc9\xb7\x32\x34\x02\x4d\xf2\xc9\xa4\x10\xd5\x30\xff\x9b\x68\xe5\xc1\x55\xde\xde\x29\x33\x53\x04\xd3\x8f\x15\xaa\xbe\xf2\x32\x30\xbb\xed\x82\x1a\x06\x47\x22\xa7\x1f\xdc\xcf\x79\x1e\x79\xca\x15\xe0\x76\xb5\x82\xb4\xd5\xaa\x2a\xee\xdb\xd8\x9c\x8e\x8c\x2c\xf3\xac\xe0\x54\x10\x6d\x48\xf3\x4c\x34\xe0\x29\xae\xd9\x5c\x30\xe5\x41\x8b\x79\x59\xee\x59\xd8\xb5\x4c\x90\xb2\x9b\x38\xda\xb9\x40\xb5\x84\x93\x2b\x25\x76\x9d\x6c\x54\xe2\x69\x06\x47\xa4\x07\x0f\xe7\x70\x23\xa8\xe9\x46\xbd\xb3\x4e\x8d\x89\xdd\x48\x4b\x99\x89\x8b\x8b\xbc\xe9\x1b\xef\x77\x64\xef\x91\x5b\xfc\x27\x96\x81\x0d\x0c\x90\xfd\x11\x9d\x35\x6b\xd5\x47\x85\x16\x34\x69\xd7\x49\xb6\x21\xc5\xdd\x0b\xdd\x8d\xbc\x50\xb4\x75\x09\xf6\x9e\x2d\x16\x49\x23\xf1\xf1\xc7\x4f\xee\xe4\xe3\x4f\x9f\xdc\xa3\xe7\x57\xaa\x77\x68\x62\x7f\x4e\xdd\xb8\x85\xe5\x81\x23\x22\x1d\xdf\x8a\xf7\xaa\x85\x0e\xc9\xee\x54\xa8\xc5\x7a\x21\x9e\xc1\x10\x3c\x3f\xf9\xf8\xa7\x4f\xee\xd9\x53\xfc\xbd\x98\x4e\x66\xb2\xd1\xa7\xb9\xfd\xba\xb5\xd4\x48\x53\xff\x6d\xe4\xf7\xf5\x85\x51\x45\x3b\x3e\x98\x28\x38\x78\x91\xb7\x2f\x97\x60\xb8\xcd\x75\xaa\xe9\x95\x47\x71\x9e\x94\xa1\x24\xea\x62\x6a\x51\x02\x2a\x9a\xde\x00\xdf\x6e\x94\xe1\x72\x21\xb5\x28\xc5\x8a\xc2\x70\xdb\x5a\xcd\xdc\x07\x97\xd8\xd2\x62\x1a\xa9\x67\xe3\x15\x70\x64\x44\xa2\x6d\xc8\x77\x55\x71\xa7\x0d\x3b\xf8\xab\xb0\xce\xaa\xeb\x4b\xf4\x86\x79\x56\xa3\xbe\x9b\x99\xcc\x70\x03\x33\x9d\x4c\x79\x54\x8b\x39\xc5\x92\x08\xe8\x71\x04\x68\x71\x61\x48\x26\x18\x13\xeb\x11\x79\x3d\x76\xbf\xef\xe2\xda\x3b\xba\xe8\x4a\x03\x00\xf7\x00\x2a\x26\x9d\xc5\xdd\x3d\xdb\xfc\x03\xfd\x8c\xee\x7e\x5e\x01\x27\x23\x7b\xdd\x1d\xbe\x95\x2c\x88\x5f\x65\xb3\x29\x69\x12\x52\x9e\x60\xfc\xcd\x67\x44\xa3\x4e\xc5\xb3\xe5\x73\x9e\xb4\x3b\xa5\x76\xcc\x92\x51\x93\x46\x04\xec\xd9\xd3\x65\xb9\x2d\x7b\x45\x1e\x7a\x5e\x4d\x29\xe6\x75\xcc\x7b\x70\x60\x8e\x20\x88\xab\x23\x43\x53\x52\xd8\x23\xcb\xe2\x38\xc6\x92\xc7\x18\x21\x8b\xa7\x6e\x28\x3d\x3e\x77\xa7\xc7\x47\xf2\x64\xe5\xe3\xe4\xab\xc8\x51\x28\x3c\x67\x4e\x16\x95\x88\x9d\xba\x57\x1d\x31\x1e\x2d\x10\x13\x34\xcc\x58\x01\x9d\x88\xb2\xad\x3f\xb6\xda\x1f\xe0\x3e\x66\x9a\xf1\xb5\xdb\x27\xd6\x5b\x8e\x4a\x90\x1d\x68\x61\xd6\xc4\x07\x44\xf9\x61\xf6\x1c\x70\x55\x9c\x20\x60\x5b\x43\x91\x57\x61\x96\x61\x72\x10\x90\xb8\x8d\xb8\x5b\xa8\x70\xd2\xfd\xa7\x89\x42\x2e\x9f\xbd\xa8\x70\x5d\x7b\x1b\x77\xca\x86\xec\xa0\xc5\xf9\xd5\x1b\xb7\xa8\x62\x85\x01\x29\xee\x12\x6a\xc2\x9e\x14\xff\x68\x2d\xdd\x75\x93\xad\x16\xd4\x68\x54\x9c\xb9\x5b\x6c\x13\xf1\xb7\xb1\x53\x93\x0e\x51\x67\xca\x7c\x1a\x77\xe5\xb2\x15\x40\xb5\x61\x4b\xc6\x82\x5a\xec\xea\x77\xe2\x6d\xba\x92\x83\x99\xdd\x1d\x40\xf4\xc9\x7c\x2d\xe8\x80\x15\x7b\x14\x5e\x46\x4e\x1e\xda\x13\xc5\x17\xc0\xbf\xf6\x91\x79\x0e\x0d\x66\xf6\x39\x9f\xca\x9c\x87\x9e\x9d\xcc\xc4\x51\xcf\x16\x9b\x63\xab\x77\x01\x4f\xd9\xe7\x2f\x31\xd9\x76\x55\xd2\xb7\xa3\x8b\x3c\xef\x55\xb6\xbc\xaf\x66\xab\x8d\xdb\x9e\xaa\x1e\x2d\x6f\x41\x32\x20\x59\xd4\x22\x93\x44\xfa\x45\x5a\x11\x19\xbb\x20\x9d\xd8\xab\xae\x5b\x54\xa8\xde\x5f\x18\x10\x61\xc9\x5b\x26\xea\x9a\xf8\x4e\x0a\xfb\x61\x0e\xc5\xa5\x93\x5b\x50\x31\xbc\xca\x8a\x54\xe5\x92\x2f\xb6\xb2\xd0\x0b\x19\x54\xe6\x90\x43\x4e\xa2\xe5\xf1\x40\x43\x98\xdd\x02\xa1\xf5\xbf\x92\x5b\xc7\x74\x04\x39\x4d\xb5\xe2\xdb\xe2\xfc\x1a\xf4\xf8\xc8\xd2\x85\x06\x35\x20\x34\x30\x4f\x1b\x35\x3d\x5d\x16\x16\x40\x5f\x68\xf9\xe8\x76\xbc\x6c\xed\x03\x8d\xcb\xab\x28\x54\x21\xb4\xa7\xb1\xaf\x19\x5e\x14\x2d\x47\xb4\x8c\x57\x4e\x32\x89\xe3\x65\x5b\xd8\x0d\x33\x50\xa6\x98\x57\x89\xc3\x0e\x24\x3b\xdd\x44\x06\x64\x3b\xd5\x6f\xa5\x41\x93\x5d\xba\x35\x09\x6a\x86\x8b\xf3\x77\xef\xde\xdf\x26\xed\x02\xd0\x30\xd3\x22\xcb\x14\x5c\x95\x26\xed\x0a\x0e\x4b\x71\xf3\x95\x10\xc9\x65\x8a\x4b\x1c\x83\xcb\x45\xb8\xcc\xa4\x79\x6d\x51\xf9\x62\xa1\x2d\x41\x08\x2d\xda\xdf\x1e\x5d\x21\x1f\x61\x88\x3f\x55\xe1\x3e\xff\x3d\xfc\xaf\x72\x93\x88\xcc\x4a\x05\xc9\x66\x32\x66\x49\x6e\xf3\x62\x6d\x6d\x3b\x31\x91\x40\xe9\x72\x90\xa8\x23\xb6\xdb\x9d\x45\x06\x66\x25\xd0\xd8\xf5\x14\x76\x97\xed\x91\xd8\xa1\x64\x62\xf4\xdf\x06\xd4\x2b\xa1\x8d\xea\xa2\xba\xd7\x4e\x2f\x75\x47\x92\xf0\x5f\xe2\x07\xa5\xc3\xaf\x91\xe3\x74\x56\xb9\x76\xe2\x99\xdb\x49\x23\x9a\x4e\x3a\x77\xf6\x68\xd0\x02\xd8\x5f\xaf\x3e\xfb\x47\xcf\xaf\x7a\x34\x8b\x7c\xf6\x14\x20\x9e\x4f\xd0\xd5\x2b\xdb\x37\x74\x77\x1a\x4d\xc0\x91\xe6\x70\x3a\x6c\x53\x83\xcc\x48\xb6\x55\x69\xe0\xff\x40\x9d\x2b\xdb\xdf\xa5\x7e\x7c\xcf\xd7\x05\x76\x45\x74\xf7\x5e\x76\x43\x79\x77\x04\xb5\x43\x19\xf7\x43\x85\x5e\xe1\xa9\x2c\xba\x04\x60\x84\x20\xc8\xd0\x66\xfd\x67\x1c\x34\xff\x70\xa4\x91\xd7\xaa\xdb\x81\x94\xf7\x5d\x85\x2d\xe1\x3b\xf6\x71\x68\x19\xcc\x0b\x2e\xd3\x90\x87\x7e\xd3\x98\x3a\x33\x1b\x59\x00\x0a\xd9\x05\x01\x2b\x9b\x4d\x20\xa7\xd8\x89\xfc\x5e\xfa\xc0\x46\x52\xf1\xf4\x71\x4d\xaf\xd1\xed\x9b\xd2\x3b\x89\xd7\xd5\x31\xb6\x10\x26\xae\xb5\xd7\x6b\x63\xfb\x6c\x18\x6e\xd0\x0c\x48\x2c\x62\x96\x08\xd1\x8a\x5c\xd5\xe9\x46\x19\x87\xd4\x8e\x7e\x85\x94\x49\x71\x29\x02\x2c\x5e\x25\x82\xc4\xc4\x5b\x01\x7e\xf0\xf7\x4c\x29\x06\x0c\x55\x56\x72\xf0\xb6\xd6\x46\x7b\xf4\x1c\xd2\x20\x3c\x93\x0a\xb3\x5c\xaf\xa4\xa0\x0b\x06\x4c\xe4\xdc\x4c\xd4\x9f\xf1\xb0\xf3\x0f\x4f\x0f\x7b\xfd\x64\x13\xc4\x2e\xc6\x6c\xb5\x80\xe3\x87\x09\x82\x2c\x44\x39\x30\x51\xbd\xeb\x07\x43\x37\xe7\x83\x51\x45\x62\x92\x6f\xe8\x38\x37\x07\x0e\x81\xf1\xc4\xf7\xb2\xb9\x03\xe2\xd2\xab\x95\xea\x95\x69\xd0\x53\x41\xfa\x4c\x1f\x41\x06\x12\xec\x06\x40\xc5\x02\x72\x0d\x92\xe7\x3d\x7a\xc9\x90\xb7\x95\x78\x13\x52\xbe\xdf\xd8\xa1\xff\x21\x00\x06\x8d\x77\x84\xe3\x7b\x9b\x51\x7e\x68\x27\xeb\x05\xd8\x92\x50\x18\x05\x87\x82\xec\xc9\xeb\x3a\x53\x55\x38\xc1\x8a\xfa\xe8\x3d\xc8\xf8\x50\x03\xe7\x0e\xa6\x49\x3a\xb8\x1b\xfc\xaa\xf6\xd2\x37\x1b\xb2\xa8\xf8\x2b\xff\x44\x83\x8a\xb5\xfc\x9d\x52\x6f\xe2\x07\x6e\x01\xc7\x9b\xc2\xa5\x05\xcc\x2b\x37\x8b\xb7\x90\x12\x0b\xd3\x94\xc3\x42\xbc\x95\x9f\xf5\x76\xd8\x8a\x7f\xfd\xf1\xa7\xdc\x2a\x94\xec\xff\x17\x53\x9c\xec\x18\x80\x96\x0d\xec\x7e\x9a\x8a\xb1\x81\x46\xaf\x64\xb3\x61\x7f\x15\xbb\xaa\x29\xd2\x0b\x72\x84\xb7\xd1\xd0\x0c\x48\x1a\xc2\xa9\x56\x6c\xb9\x0d\x11\x10\x8b\x42\x4b\x4f\x4a\xd3\x91\xc5\xbc\x01\xc8\xd8\x8e\xf1\xdb\xed\x40\xc6\x18\x1e\x36\x07\x31\x4a\xb5\x35\x48\x3c\x81\xee\x15\x86\xd3\x15\x07\xd6\x0a\x91\x89\x62\x64\x2d\x0a\x4d\x94\xe7\x1e\x3f\x42\xc2\xed\x9e\x2c\xa9\x3a\x7a\x3d\x2e\xbb\x41\x3d\x7a\x4e\x0b\x29\x90\xf4\x80\x95\xb7\xe8\x5b\x8e\xed\x95\xed\x51\x86\x58\x10\xdd\x4e\xeb\xfd\x02\xa3\x7b\xa4\xe5\x3e\x03\x55\x9c\xfa\x2c\x35\xc9\x4c\x5f\xf8\xf4\xd5\x9b\x5b\xb4\xad\x7d\xa0\x78\x4d\x57\x2c\x75\x70\x5a\xfb\x4f\x8a\x57\x85\x81\x38\xb2\x5b\xd5\x10\x94\x4c\xe6\x83\xb1\x3c\x50\x70\x85\x10\x64\x65\x27\x61\x69\x86\xba\x80\xcf\xd0\xce\x91\xec\x60\x34\xce\x67\xc1\x47\x27\xec\xd4\x06\x46\x56\x2e\xac\x80\x2d\x39\xb9\x36\xb2\x0b\x1e\xae\x6f\x28\x91\x0b\x42\x22\xde\x1f\x95\x36\x58\xc1\x33\x47\xe6\x31\x79\x02\xda\x68\x6e\x97\x56\x43\x6e\x69\xc7\x54\x81\xcf\x38\x8e\xbe\x66\x57\x15\x1d\x53\x21\x9d\x0f\x2d\xf8\xaa\x40\x90\xab\x3b\x6d\xee\x90\xb9\xdb\x1d\x52\x42\xc6\xcb\x5e\xd8\x9d\x56\xed\x77\x59\x5e\xd0\x91\x5c\xe1\xec\xff\xbf\xff\xf7\xff\xf3\xe4\x02\xda\x7d\xe1\xfb\xee\xc9\x45\x10\x10\x01\x9e\xc6\x91\x10\x88\xf7\xff\x5e\x0d\x66\xcf\x36\xb0\x1f\xe8\x57\x15\xbe\x91\x4a\x55\x83\x71\x6c\x50\x81\x3f\x2a\xfe\x02\x62\x55\x71\xd4\x38\xa0\x52\x55\x65\xe2\x21\xfb\xce\x16\xe7\xec\xdf\x06\xdd\xdc\xd5\x74\x2f\x76\x26\xfe\x03\xbe\x04\x46\x22\x63\x56\x03\x4e\xad\x78\x04\xe1\xa2\x1d\x9d\x63\xb9\x8f\x2a\xd2\x2d\xf6\x9c\x4f\x47\x96\x2c\x59\xa7\x43\x38\x34\x02\x60\xa7\x8d\xaa\x76\x83\xdb\x90\xd1\x5d\xa8\xed\x6a\x70\x1b\x8c\xb3\xf2\x99\xe2\xf8\xe4\x18\x70\x6a\x26\x38\x96\xb2\x57\xf5\x36\x3a\x37\x8c\x77\x77\x5c\x38\xec\x41\x97\x6e\xd6\x0e\xca\x2f\xaa\x8a\x8e\x60\xf2\x6e\x70\x55\x3c\x55\xf9\x34\xf5\xbd\x42\xa4\xbd\x52\x00\xe9\x55\x1f\xcc\x05\xa5\x69\x6b\x2f\xd7\x54\x12\x58\x1f\x2e\x6a\x7b\xe1\xe5\x9a\x11\x21\xe6\x5f\xf8\x67\xe5\x25\x1a\x97\xdd\xca\xf5\x34\x84\xdd\x6e\xe8\xba\x69\xa0\xbb\x4e\x2e\x15\x26\x5f\xe2\x8f\x6a\x0b\x8d\xf4\xd6\x28\x3a\x3d\xc3\x47\xd5\xa0\xcf\x86\x8b\xde\x1b\xae\x5a\xeb\xc0\x22\x94\x6d\xe0\xc0\x05\xa4\x02\xa4\x9f\x38\x04\x75\x2f\xf7\x90\x26\xf7\xf4\xb9\xd1\x8e\x03\x22\xbe\xa6\x5f\x94\x4c\xd7\x2f\x08\x8a\x77\x2e\x11\x1e\x25\x10\xde\x23\x57\xe1\x37\x65\x79\x0b\x3c\x5d\x9f\x66\x27\x18\xe7\x78\x6b\x05\x65\x10\x53\xed\x36\x76\x6f\xaa\x7b\xdd\x2a\x8b\x67\x06\xc7\x52\xa0\x90\x90\xcb\xde\xee\x5d\x60\x3a\x61\xb4\xe9\x13\xa6\xd7\x3c\x4e\x71\x17\x5e\xdf\xbe\xbd\xfc\x57\x81\x38\x60\x1e\x16\x55\x9c\x89\x85\xbd\x57\x3d\x47\xf6\x78\xcf\x3f\x53\x26\x3b\xa7\x66\x43\x86\x86\x97\x2a\x8d\x5c\x04\x75\x5e\x76\x05\xe4\x0d\x24\xcc\x00\x52\xd8\xc1\xf3\xae\x9b\xc9\x63\xb3\xa2\x7a\x79\x88\x86\x51\xad\xc0\x5b\x1a\x20\xc1\x78\x53\x93\x80\x83\xe5\xcc\x98\xf5\x63\x19\x62\xc4\x01\x56\xaa\x85\xa5\xbf\xc0\x20\x92\x64\x2f\xf7\x4e\xed\x89\xbd\xe5\x2c\xb2\xa2\xaa\xa3\x35\x1d\xba\x2d\xe5\x00\xf0\x2f\x64\xff\xda\x6a\x5f\x64\xee\x7a\x85\xeb\x80\x9a\xe5\x88\xc4\xe1\xc8\x52\x83\x5c\x00\x24\xd1\xa0\x46\x64\xc6\x9a\x1a\x8e\xd4\x3a\x6c\xb8\x0b\x92\x1b\x20\x53\x18\x6b\x9e\xe0\x79\x8b\x99\x45\x23\x90\x14\xe5\x2d\xf1\x61\x09\x05\xb0\xed\xe0\x7c\xbd\x54\xb5\x35\xb5\x4c\x63\xf3\x9f\xc1\x0a\x78\x89\x1e\x68\x32\xec\x4f\x38\xf8\xe4\x1d\x79\x24\xf4\x16\x04\x55\x11\xfa\x11\xe2\xbc\xe5\xc8\x51\xf2\xa1\x58\x8c\xd8\x8f\x1c\x33\xd2\xda\x31\x83\xcf\x71\x1b\x01\x36\x98\xca\xe7\xf8\x82\xfe\x2b\xeb\x55\xae\x7e\x9b\xf4\x0b\xa8\x56\x8d\x61\xbb\x58\x8b\x9b\x37\x00\x49\x1a\xc5\xf4\x4a\x2a\x9a\x6f\xea\x1d\x59\xa0\x62\x93\xd2\x51\x86\x8e\x5e\xe5\xed\xfe\xfc\x6d\x77\x58\x68\xc0\xec\xa1\x5b\x77\x58\x6e\xec\xd9\xd0\x63\x65\x8b\xc5\x22\xaf\x2f\xaa\x13\x50\x43\x0b\xdc\x7a\x3a\xc4\x4f\x29\xce\x16\x72\x73\xda\xd3\x15\x27\x9e\x9e\x4f\x17\x00\x1b\x34\x90\x79\x81\xb5\x0d\x7a\xa9\xa5\x5a\x6b\x8a\xc8\x89\x42\xb5\xe2\xf8\x20\x09\xc9\x52\x36\x77\x6e\x27\x31\x30\x23\xb5\x07\xcf\x67\xdb\x67\xeb\xb5\x51\x5d\x8d\xa6\xd5\xe2\x4c\xd0\x67\xcc\x44\xca\x9a\x2d\x7a\x76\x94\x1b\xad\x79\xd9\xb6\xb5\xdf\xee\x82\xb1\xd2\xe3\x13\xf7\xf4\x59\xe8\xf6\xf3\xc7\x19\x54\x02\x78\x9c\xb6\x65\x4b\x51\x62\xd9\x52\x32\xcf\x1b\x1b\x1a\xe7\x79\xdc\x34\x3e\x04\x63\x6c\xe2\x16\x9d\xd3\x43\x88\x35\xa1\x3e\x7b\x65\x5a\xd5\x8a\x4c\xc6\xc8\xe6\x86\x91\xd0\xd0\x76\x87\xda\x5b\x5a\xa5\x89\xda\x50\x7f\x03\x40\x18\x76\x56\x95\x05\xb6\x99\xc0\x9f\x40\x77\x1f\xa1\x3f\x7a\x54\x9d\x61\x46\xaa\x2e\x31\x10\xa9\x86\xc0\x3a\x04\xf5\x9b\x89\x8e\x8e\x09\xcf\x0a\x63\xae\xa1\x53\x0b\xb6\x07\xaf\xfd\x29\xf2\xa6\x80\x53\x34\xb8\xe6\x2f\x72\x3a\x18\x6c\xfc\xd1\xa6\x99\x59\xa2\xd2\x89\x32\x1f\x89\x91\xdd\xed\x78\xf1\x32\x59\x5b\x2a\x8a\x9c\xc9\x3b\x06\x85\x99\x49\x90\x4c\x2e\x1b\x98\x06\xba\x91\x25\x96\x27\x9d\xcb\xb4\xd9\x0a\x43\x1d\x17\xa3\xbc\xe6\x7a\x93\xb0\x16\xc2\xf2\xaf\xb5\xab\x65\xa4\x8e\xc6\x07\xd5\x29\x4b\xc2\x3b\xc9\x66\xa0\x14\x2b\x46\xd2\xc9\x3b\x62\x9c\x1f\xaa\x08\xe9\x03\xd6\xe1\x0e\x5b\x3e\xdd\x63\xb8\xd4\x20\xb0\x49\x11\x32\xc3\x55\x0f\x0f\x01\x3a\xf5\x6a\xe6\xa2\xc9\x16\x5a\x2d\x05\xa3\x9e\x8c\x2a\x56\x93\x5a\x95\x2a\x2a\xe4\xcc\x9c\x35\xfc\xfa\x2e\x30\x35\xae\x8d\xad\x49\x91\x91\x66\xa0\xec\x4e\xb0\xc0\x08\xe4\x7b\xa4\xf9\x88\x3a\x86\x63\x15\xb1\x7d\x6c\xbd\xdf\x64\xd5\x06\x92\x3a\x31\xe9\x62\x68\xe1\xb4\x69\x54\x0a\x21\xab\xda\x50\xff\xe2\x61\x95\x5e\x8a\x3c\x80\xe6\x1b\x7c\x91\xb4\x87\x59\xc0\xa3\xa1\xa8\xc4\xf6\x71\x5b\x11\x39\x0c\xfb\x67\x2d\xb5\x49\xdb\xcb\x5b\xf4\x2c\xa2\x53\xc5\x6f\xb2\x13\xa4\xec\xe9\x64\x29\x9f\xd3\x30\xa2\x82\x2b\x4d\xd9\xd7\x2f\x6a\x63\x03\x6d\x05\xd2\x03\xbc\x20\xcd\x0e\x48\xae\x64\x13\x93\x9d\x64\x90\x9d\xda\x83\x01\x22\x6d\xcd\xf6\xdd\xbc\x1d\x5e\x92\x18\x18\xef\x85\x9e\xb2\x6d\x4c\x9a\x6c\x6c\x2a\x79\x96\x82\x64\x38\xc2\xc6\xc7\xe2\x04\x1b\x13\xe2\x2f\xa1\x81\x73\xc0\x0d\xcb\x56\xf7\x4c\x8a\xe9\x83\x85\xd5\x44\x6c\xd8\x25\x0d\x9b\x1f\x99\x32\x37\x6a\x7f\xe4\xcf\x5c\x30\x59\x3d\x52\x6b\x8e\x03\x3b\xa1\xfb\x92\xc1\x8b\x08\xaa\x20\x34\x04\xc2\x9f\x38\x7e\x26\xf4\x81\xf1\x2f\xe1\x72\x21\x23\xe4\x8c\x02\x19\xf1\xca\x4a\xf9\x2b\x8d\x92\xe1\x4b\x6d\xda\x98\x26\x51\x8f\x13\x3d\xe1\x63\x7a\x92\xe4\xd8\x61\x3d\xe6\xf0\xd9\xf8\x02\xb5\xa4\x9c\x16\xe2\x57\xbd\x87\xff\x31\xd5\xa8\x3d\x2b\xca\xf7\xaa\x8f\xf1\x9d\x28\x38\x3d\x90\x7d\x94\xb9\xb2\xe4\xc5\x58\xce\xca\xb2\x80\x64\x40\x22\x09\xd1\x98\x9f\x67\x37\x9d\x92\x7d\x1d\xcb\x5f\xc0\xa7\xe8\x26\x58\xa2\xe0\x96\xcb\x6d\xa3\x6a\x72\x98\x77\x76\x1e\x8c\xaa\xcb\x21\xa9\xc6\xed\x1c\xb0\xdd\x29\x53\xc0\xbe\xdf\x29\x93\x8b\x8d\x05\x62\xeb\x54\x3b\xc2\x8c\xb7\x38\xf3\xf0\xd2\x61\x58\x43\xbc\xc7\xe2\x9f\xd3\x76\x66\x40\xd4\x4c\x39\x03\x6a\x6c\x0e\xf7\xce\x4e\x80\x78\xdf\x46\xf6\x60\x3c\x7b\x69\x7e\xd4\x7e\x32\x41\x94\x59\xa3\x81\x4c\x8c\x76\x86\x40\xf1\xd4\x2f\xaa\x89\xc8\xb8\xb2\x02\x1f\xe1\x8a\xb7\x0c\x8b\x78\xa3\x0a\xbb\x4b\x02\x97\xd9\xaa\x15\xba\xf9\x39\x85\x3a\xd5\x72\x21\x8c\x8b\x6b\xb3\xb2\x39\x8d\x43\xa7\x59\x73\xe0\x52\xa8\x9f\x88\x36\x89\x45\xfc\x9d\x47\xb1\xa7\x8f\x42\x2c\x1e\xb9\xb4\x45\xc4\x47\x72\xcb\xa4\x68\xe5\xe3\x86\x71\xdc\x9e\x23\xad\x9a\xb9\x20\xc1\x21\x71\xca\x1f\x2b\x32\x38\x76\x97\x22\xe2\xfe\x45\xf8\x40\x62\x73\x21\x34\x91\x3b\xa4\x55\x84\x23\x3e\x3f\x11\xa9\x2d\x05\xdc\x23\xb4\xb8\xbe\xbd\x5c\x8a\x33\x71\xd2\xe2\xe2\x8e\x73\x09\x4b\x37\x65\xd1\x4a\x0e\x99\xac\xc7\x09\x13\x5d\xcc\x70\x9e\x07\xdc\x02\xdd\xd4\xd0\xba\x8c\xb7\x36\xdd\x4c\x89\x07\x37\xf8\x18\xe6\x28\xe6\xc9\x36\xe6\x92\x0f\xec\xb6\x04\xb1\xd6\x46\x1d\x47\x7d\xa4\x1c\x2b\xce\x51\x5d\x3e\xcd\x59\xc8\xae\xab\xa3\xaa\xea\xbc\xeb\x04\x7d\xcc\x82\x3a\x7e\xbf\xc3\x5b\x10\x06\x53\x53\x5b\x36\xd3\x99\x2b\x44\xab\xb5\xad\x97\x07\x2e\x43\xdb\x0e\xa3\xea\x1e\x29\xb2\x55\x06\x24\x17\x60\xe7\xa8\xc8\xdb\x98\x30\x53\xc4\x71\xb8\x49\xdb\xfb\x99\x9c\x05\xae\x47\xcf\x47\x85\x9b\x05\x01\xa2\x81\x20\xef\xf1\xc7\x1c\x08\x59\x6e\x47\xe9\xed\x9a\xa3\x7f\x05\xdf\xb1\xd9\x8a\x95\x74\xa9\xc4\x25\xba\x52\xf7\x5f\x51\x6e\x6b\x9d\x87\x63\x8e\x0c\xf5\xdf\x5a\x0c\xa6\x81\x9f\x0f\xd4\x93\x0a\x50\x45\x93\x12\xb0\x93\x82\x32\x8a\x7e\x27\x5d\x54\x66\x43\x8c\xe6\xc3\x6c\x05\x2c\x9f\x4f\x0a\xd7\x2b\x79\xa7\x66\x30\x90\x36\x8b\xa1\x51\x79\x64\x87\xa8\x35\xb2\x43\x76\xae\x7c\xa6\xa9\xf8\xec\xcb\x2d\x1e\x63\x83\x8f\x76\x78\x1b\xb3\xca\x1d\x6e\x86\x6d\xcd\x7d\x74\x44\x01\xc2\x57\x2c\x1e\x46\xa0\x96\x50\xe5\x6f\xf1\x3b\x75\xf7\x5f\x80\xc3\x3e\xc1\x9e\xfe\x16\x8a\x05\x5f\x45\x82\xce\xa2\x71\x9f\xb3\xef\x4a\x74\x62\x09\xd6\x17\x6d\xa6\xdc\xe1\x62\x7f\x8e\xcd\xb4\x99\xcf\x05\x9d\x02\x78\xff\x55\x6a\xa8\x0b\x92\x86\x1f\xa1\xbf\x65\x56\x68\x54\x04\xe1\x49\xc7\x58\x27\x39\x78\xaf\x70\x54\x03\xdc\x35\x7e\x8e\x32\x1f\x42\xd6\x17\x05\xf8\xd8\x4c\x4b\x8c\x41\x47\x13\xc5\xc3\x4c\x2c\xc5\x33\x29\x74\xcb\x46\xe9\x8f\xe2\x70\xe3\xd7\x73\x5c\x2c\xc5\xa0\x53\x7d\x11\x47\xf8\xfc\x46\x2c\xcc\xe5\xf6\x6a\x15\xf1\xf0\x25\x77\x4b\xb3\x43\x5d\xe5\x60\x16\x2c\x1b\x7d\x5b\x15\x3b\xcb\xcf\x2d\x5d\xe1\x8f\x54\x73\x88\x60\x8a\xfc\xee\x45\xf6\x19\x97\x79\x61\x91\xc3\x89\x21\xa2\x74\x08\xad\xc4\x7a\x8b\xc2\x23\x89\x63\x7a\x06\xf1\xef\xbf\x6c\x10\xb0\x1a\x6b\xee\x55\xef\xd8\x0b\x81\x31\xb2\x02\xf3\xd7\x56\xa7\xe9\x19\xe9\x3a\x42\xdd\x64\x44\x76\x23\xef\xd5\xe8\x10\x0f\x2c\x4f\x64\xa1\xca\xfc\xc6\x76\x36\xb1\x58\xf8\x35\x06\x20\x2b\xa9\x93\x76\x96\x3b\x4a\x4b\x93\x77\x2e\x86\x2f\x2f\x4f\x1d\x82\x9c\xe9\x0c\x65\x8c\x34\x65\x65\x66\x0c\x34\x46\x0d\xc4\x70\x63\xc1\x0e\x78\x8a\x85\xfd\xd0\x11\x34\x9a\x69\xcd\x82\xcd\x3b\x5e\x12\x8f\x91\x5b\x4f\x6a\x14\x82\x93\xb3\xa5\x36\x85\x41\x25\xe3\x3e\x6e\x48\x37\x5f\x79\xd2\xdd\x52\x5b\xbf\xa0\xb7\xcd\xc8\xe4\x4e\xf6\x5e\x37\x7a\x27\x23\xa9\xbc\xca\x52\x02\xa4\xf4\x5e\x36\x1b\xd8\xd6\x39\xd3\xf5\x1b\xe9\x1f\x58\xed\x00\xeb\x91\x4c\xd2\x41\xd0\xf2\x72\xf9\xdb\x4c\xe9\x18\x06\x3b\x2f\x1d\x13\x01\xc5\x6f\x15\xdd\x85\x65\xe2\x5a\x7e\x27\xc6\x99\x8d\xdd\xee\x64\xaf\x4a\x6d\x2c\xa4\x44\x75\xec\x2c\x5c\x98\xa5\x00\xec\xf7\x56\xc4\x8b\x1c\x7c\x87\x0c\x4e\xb0\x52\x8f\x88\x0a\xc7\xa8\x02\x29\xd1\x62\xd4\xed\x33\x8c\xad\x30\xae\x90\x6b\x38\x13\xfc\x8b\xf3\x8b\x4b\xc4\xf1\xe5\x61\xe8\xb9\xad\x7b\xe5\x86\x0e\x67\x04\x1d\xc3\xe8\x63\x65\x07\xd3\x2e\x22\x10\x3e\x06\x05\xdc\x56\xaa\x2b\x3b\x44\xe8\xa9\x28\x76\x53\x85\xdc\xa5\x6a\x24\x30\xea\xd8\x66\xe8\xeb\x46\xc9\x36\xeb\x7d\xaf\xf0\x45\x86\x31\xfe\xad\xea\xd7\xb1\xa3\x5f\x83\xbf\x18\xd3\x0d\x85\xdb\x26\x47\xd9\xee\x20\x5a\xbd\x42\xaa\xeb\x05\xab\x1b\x42\x75\x1b\xe9\xea\xfc\xd1\x2f\x58\x20\xb1\xb6\xa0\x44\x1a\x4d\xcc\x52\xf9\x3d\x46\xb0\x42\x9f\x08\xa8\x97\x54\x65\xee\xe7\x91\xe3\xd3\x53\xac\xe3\x29\x70\x2e\x2d\x13\xee\x7f\xc1\x0f\x22\xdf\x3c\x73\x23\x31\x73\x66\xd5\x21\xf1\x0b\x6b\x68\x8f\x5b\xc6\x5b\x81\x23\x84\xdc\x4e\x1b\x34\x1f\x74\x8c\x04\xaf\xa9\x9f\xa2\xd7\x94\xd0\xc6\xdb\x19\x6f\x2a\xc6\x8f\x98\x98\xa9\x09\xd5\x50\xda\x3f\x87\x5e\x9c\x7c\xfc\x1f\x9f\xc2\x96\xf0\x72\x59\xe7\xa7\x03\x59\xac\xc6\xcf\x02\x6a\xac\xf0\x49\x79\xc5\xb5\x79\xd0\x31\x72\x3e\xf3\x10\xde\xd2\xe2\x49\x36\x5c\x94\xc1\x86\xe6\xf9\x4c\x7a\x2b\x76\xaa\x07\xaa\xc8\xa3\x19\x6d\x76\x17\xc5\xd0\x20\xb7\xdf\xa7\x9a\x60\xd5\xc4\x9c\xdb\x09\xda\x48\x06\x19\xa6\xa4\x82\x84\xa2\x95\x5e\xd6\xcb\x3e\x58\xd9\x4b\x2f\xa3\x4d\xe6\x3c\x2e\x86\x6d\x87\x14\x5b\x89\x6d\xbd\xf0\x3e\x30\x23\xee\xa1\xed\xda\xd5\xe8\x58\x4e\xaa\xe0\x5b\xf6\x16\xef\x74\xe3\x45\x4c\xd7\x8e\x83\x1b\xd1\x83\x28\x6b\x7a\x5e\x26\x3e\x23\xb7\xea\x95\xdb\xe0\xe3\x0f\x00\xb0\x52\x7b\xb1\xb5\xc8\xd0\x46\x8a\x24\x4d\x8d\x26\x88\xb4\x5f\x73\x2b\xa2\xa2\x1b\x6c\x52\xc4\x03\x32\x7a\xd2\x21\xa2\x42\x8b\xad\xaf\xc3\x46\x8e\x0c\x73\xf8\x12\x45\x88\x4a\xdc\xd0\x6f\x77\xbc\xae\xf1\x3b\x70\xb4\x1e\xb6\xd2\x90\x71\xb1\x36\xc2\xf6\xad\xea\x39\xd4\x2e\xfa\x68\xfb\xcd\x1c\x66\xe2\x4b\x09\x29\xb3\x73\xd9\x0d\x13\xa1\xa5\xf4\xb8\x6c\x81\xca\x85\xcb\x5e\x00\xa0\x09\xbb\xc6\xf4\x70\xb1\xcb\xe9\x89\xdc\xe3\xa5\x59\x66\xf4\x17\xf5\xa7\xb9\xc1\x4d\xb6\x88\xc7\x64\x0e\x17\xf4\x1c\xb5\xc1\x4d\x34\x18\x26\x0a\x58\x2a\x2a\xdb\x7f\x63\xbd\xd0\x63\x1f\x37\x0e\x6f\xae\x64\xed\x5e\x0e\x7f\x4e\x46\x0d\x71\x55\xc5\x54\x7e\xff\x2f\x27\xed\x0f\xfc\x62\x96\xdc\xaa\xa9\xcd\x2a\x24\xd2\xa8\xe5\xfc\x0b\x1c\x24\xda\x61\x7c\x6b\x18\x2d\x38\x2b\x79\x84\x16\x81\xb0\xb2\xd0\x94\x19\xac\x22\x7f\xf6\x4b\x7e\xe4\x15\x30\x18\x8b\xcc\xa8\x7d\x46\x80\xf8\x9e\x2c\xdd\x2d\x05\xc6\x26\x74\x52\xd3\x0e\xa5\xa8\x0f\x54\x8a\x9c\x13\xb0\xc9\xa6\x51\x8b\x2a\xb3\x9e\xc9\x98\x8b\xa4\xac\xc9\xb2\x67\x34\x4b\x59\xee\xbc\x76\x69\x0c\xd0\x26\x15\xea\x89\x2b\xea\xb6\x75\x3b\xa8\x9a\x45\xff\x77\x16\x49\x09\x7c\x8d\x5b\x10\x44\xde\x31\xe6\x28\xff\x95\x1d\xaa\xdd\xb0\x84\x33\x9d\x82\x52\xd3\x42\xcf\x0c\x86\xbc\x0d\x9e\x24\x7c\x37\xcf\xdc\x59\x81\x7e\x74\x06\xce\x0e\x4e\x74\xb5\x84\xff\x79\xc6\x8c\x41\x77\x9e\x9b\xfa\xfc\x62\x50\xa8\xc6\x17\xdf\x87\xcb\xe9\x1f\xca\x4e\x2a\x8a\x28\x04\xff\xf3\x8c\xf8\xfa\x09\xa3\xaa\x69\x1d\x32\x46\x44\xce\x29\xe9\x65\x8c\xd3\x68\x05\xf2\xf8\x70\x38\x1c\x9e\x6c\xb7\x4f\xda\xf6\xf1\x4c\xaf\x33\x26\x3a\x76\x7b\x64\x05\xc1\xda\xaa\xd1\x39\x92\x61\xca\x64\x92\xf9\xb1\x43\x93\x96\x7c\x9e\x3e\xa0\x82\x76\xa9\x3c\xba\x0f\x66\x64\x04\x77\x52\x9a\x3d\x07\x27\xa4\xdd\x75\x2a\x39\x8f\x01\xc9\xa3\xa0\x10\x79\x5f\x46\xf2\x5c\x96\x35\x8a\xb1\xfc\x60\x03\xa3\x55\x23\xf3\xd7\x76\x95\x1a\x33\x1a\x14\x7a\x23\xf1\xe8\x90\x64\x72\x54\x1a\xd6\x28\x4b\xcd\x00\xce\x4b\x52\xa9\xf6\xff\x4e\x69\x6a\xae\xfa\xb9\x65\xf0\x05\x79\xaa\xda\xeb\x3b\x2d\xce\xc4\x5f\xf5\x9d\xc6\xdf\x0b\x8e\x8a\x9d\x45\xc1\xf6\x16\xb3\xbf\x2b\xf2\x43\x5f\x21\x07\x2d\xe2\x36\xec\xcb\x2b\xe8\xd9\x3f\x72\x16\x1c\xba\x56\x74\xfa\x8e\xf8\x0d\xdb\x0c\xa8\x68\x39\x70\x68\xb3\xff\xc2\x38\x63\x76\xad\xd0\x99\x3b\xca\x30\xda\xf3\xa2\x5a\x50\x85\xbc\xc6\x31\xf4\x61\xcd\x2f\x3c\xf3\x26\x27\x53\x99\xde\x79\xe4\x2f\x08\x3c\x7f\x03\x1a\x13\x58\x6e\xe1\x74\x96\x5a\x12\x3c\x45\xaa\xca\xb1\xbe\xe3\x17\xb2\x28\x3f\x98\xae\x95\x96\x2a\xd0\x73\xb2\x5e\x02\x81\x42\x09\xb9\xb4\x03\x1b\x78\xb1\x6a\x34\x11\x08\xee\x07\x3e\xee\xc3\x35\xdd\x80\x70\x91\xea\x40\x3b\x7f\xae\x80\xaf\x56\x4e\x1c\xde\xa4\x07\x15\x0f\x96\x3b\x71\x04\x8e\x2b\x1d\x52\x6a\xbe\x42\x61\x5d\x42\xd1\x9f\x94\x37\xee\x0f\xf9\x99\x15\x20\x7c\xb0\xcd\x43\x19\xeb\x75\xa3\xea\x1f\x03\x1f\x95\xfb\xa2\x91\xad\xc6\x5a\x31\xeb\x0e\x62\x70\x08\xb3\x10\xd8\x20\xd8\xef\xaa\xf7\xf8\x5a\x44\x9c\xa1\xe9\x25\x3c\x2e\x24\x44\x35\x8a\x04\x53\xde\xc3\x67\x38\x1c\x4f\xb3\xcb\x06\x31\xc4\x3c\x0b\x11\x4b\x82\x79\xa2\xab\x66\xdf\x7f\x0e\x69\x0b\x9a\x2c\x17\x9f\x71\xcc\xb2\xb2\xc7\x7d\x98\x47\xca\xbe\x8f\x80\x2d\xc8\x23\x8b\x83\xa1\x1f\x03\x22\x4b\x05\x5e\x49\xc7\x80\xf0\x21\x66\x72\xea\x39\x06\x32\x98\x70\x47\x76\x26\x3e\x84\xdf\x09\x78\xce\x98\x76\x92\x59\x2f\x49\x0e\xcf\xfc\xa2\xc8\x05\x3b\x49\xc4\x40\xd7\x11\x2a\xf7\x0c\xe1\x49\xde\x0d\x6e\x83\x8f\x7e\x46\x0d\x70\x08\xd1\x1a\x2a\xfa\x92\xf7\xcf\x11\xc0\xc4\xc1\xab\xf0\x46\x61\xb0\x7d\x22\x5d\xa1\xd3\x2d\x86\x8d\xc0\xdb\x45\x60\x77\x1f\x85\x7c\xd4\x7e\x60\x7c\x02\x62\xab\x4e\x0b\xb6\x91\x83\x9f\x19\x7c\xf6\x31\x18\xad\xa4\x56\x8c\x0c\xda\xc6\x19\x23\x8b\xd6\x7a\x30\xd1\xe4\x37\x59\xb7\x4e\xdb\x9b\xbd\xb3\x46\x37\x45\xe8\x47\xae\x7d\x7c\x47\xcd\x1a\x76\x5f\x98\x34\x65\x5c\x63\x22\xf6\x2f\xca\x6a\x82\x0c\x98\xb1\xc1\x0f\x86\x04\xfc\x2e\xd5\xb4\xeb\xad\xc7\x3b\xb7\xdc\x46\xf8\x2a\x24\xce\xac\x9e\x69\x81\xe8\xfb\x44\x39\xd9\xea\xc1\x77\xcf\x6c\xdf\xd0\x62\xc1\x67\x79\x65\xd3\xe8\x56\x19\x2f\xbb\x24\x8d\x62\xc4\xd0\x8d\xf6\x0a\x83\x7e\x65\xf3\x87\x91\xde\xb3\x2d\x40\x81\x1c\x65\x6e\x53\x8c\x61\x1c\x83\xbd\xec\x62\xb1\x18\x2f\xf3\x9a\xdb\x4b\x1b\x99\x39\xf3\xab\x98\xf6\x00\xf8\xc8\xa5\x8b\x2a\x17\x9c\x2f\x02\xf5\xc0\x1d\x42\x58\xe3\x93\x36\x8b\xc9\x68\x8d\x8c\x13\xc3\x48\xe1\xa4\x2d\x47\x9b\x61\xa6\x48\xe4\x32\x38\x3a\x44\x1a\x53\xd6\x04\xee\x7a\x75\x8f\x3b\x10\x46\x3c\x8c\xeb\x4c\x33\x82\x76\x7e\x24\xd5\x85\x47\x23\x0b\x19\x4b\x1b\xe7\x81\x10\x91\x1d\x50\x98\xc1\xaf\xc3\x19\x63\x22\x50\x3c\x16\xec\x27\x8d\x58\xfe\x10\x73\x89\x39\xda\xfc\xf2\x5c\x06\x3d\x4e\x0c\xcf\xbc\xe4\x2e\x53\x50\x06\x0e\x08\x63\xac\x79\x12\x97\x64\x98\x09\x64\x2c\x48\xc8\x2f\x91\xc6\x17\x66\x4a\xdb\xcb\x49\x9f\xe2\x6a\xac\xd3\x42\x04\xaa\x1d\x17\xe9\x7e\x63\x51\x3b\x81\x44\xb0\xac\xe3\xeb\xb0\xe5\x76\xaf\xcc\x2b\xdb\x9e\xdd\xea\xbd\xcd\xb6\x83\x5d\xe5\xe3\x34\x19\x24\x7c\xba\x0d\x58\xc9\x54\x82\x5c\xc4\x0e\x3b\xe9\xe2\xc3\xfa\x23\x45\xc8\x46\x35\x77\x0f\xf6\xba\x78\x18\xee\x8f\x76\x96\x0c\xad\x22\x2e\x36\xb7\xc2\xcf\x87\x8a\xd1\x18\xd0\x2b\x00\xb4\xbf\xe8\x31\x6b\x0e\xc4\xcd\xf6\xd2\xdb\x7f\xa2\x45\xa1\x06\x6e\x11\x7e\x4e\x68\x6f\x28\x3d\xa1\xbd\x57\x33\x14\x20\x5f\x62\x5f\x4b\x79\x37\xd6\xde\xd1\xf3\x8b\x4b\xfc\x99\x72\xd6\xda\x87\x4c\x38\x28\x5e\x97\xb9\x4b\xe9\x74\x53\x67\xac\xcd\x2f\x90\x30\xc3\xe0\xb0\xef\x58\x06\xc9\x2e\xac\x53\x50\x77\x30\x0d\xbf\x41\x08\xe3\x72\x30\x8d\x78\x67\xf7\x53\x54\x00\xa6\x4d\x1d\x74\x7e\x09\x25\xe4\xc4\xc7\x26\xbf\xac\x13\x24\xde\x59\xf2\x13\x63\xd9\x52\xe4\xf8\xca\xef\xc3\x9b\xa3\x37\x7a\xe6\x20\xce\x7a\xc4\xb6\xe7\xd3\x1e\xb1\x17\x0a\x9c\x88\x5f\x17\xfd\x78\x2e\xea\xf1\xd8\x78\x36\x62\x97\xed\x3d\x48\xac\x6d\xde\x94\x73\x4e\x9b\x69\x0c\x30\xab\x23\x92\x88\x42\x18\xbd\xf6\x9e\xf5\xcf\x29\xf2\x4c\x36\xb2\xab\x59\x4c\x03\x99\x3b\xbc\x27\x0f\x49\x59\x23\xba\xce\xee\x6b\x0e\xdd\x9d\x57\x71\x8e\xe1\x2f\x43\x38\xee\xe8\x6b\x81\x08\x31\x20\x54\x19\x92\x60\x47\x41\x00\xca\x66\xa8\xcf\xd3\x66\x84\xb4\x51\x3b\x0a\x50\x7e\x53\xfe\xd7\x00\x8a\x3c\xfe\x87\xeb\xcb\x07\xc0\x43\xb3\xff\x52\x3c\x2d\xbc\x84\xa1\x27\xca\x47\x64\xfc\xc3\xf5\x25\xb5\xde\x6f\xd4\xa1\x34\x31\xf3\x72\x99\x4d\x0e\x09\xd2\xa3\xf1\xa6\x0b\x73\x74\x1a\x57\xfd\x91\x11\x47\x98\x9a\x61\x46\x43\xdf\xe9\xf5\xc6\xef\x15\x46\xc7\x39\x82\xab\x98\x8f\xb2\x11\x47\x66\x84\xaf\x8e\xbf\x79\x4e\xe6\x1a\x1a\x27\xe7\x48\xeb\x62\x61\xce\x19\x4f\x14\x1a\x2a\x8a\x5b\xc6\x39\x3f\x63\x59\xd1\xff\xee\x49\xcb\x51\x47\x45\xd9\xf1\xc6\x89\x97\x08\x33\x2d\x4f\x43\xe3\xfc\x81\xbc\x0c\xe6\x11\xbc\x93\x5b\x8c\x79\x0a\x50\x3f\x3f\x88\x63\x11\xde\x4a\x3a\x13\xef\xe8\xd7\xc3\xe0\xf8\xc6\x52\x2a\x73\x9e\x7d\x3e\xd4\xd7\x3c\x92\x4d\x08\xea\x98\x5b\x81\x92\xa8\xfd\x77\x38\x3b\xff\x21\xfe\x0e\x4b\xe5\x1f\xe2\xef\xda\xb4\xea\xf3\x3f\xc2\xad\x59\x7c\x32\x1c\xc8\xdd\xe9\x24\xe4\x09\xa9\xbe\x61\x10\xb0\x58\x7e\xfa\x0f\x5d\x37\xde\x2d\xa5\xd4\xc4\x31\xb0\x76\xf4\x14\x52\xaf\x97\x03\x9d\x7c\xe1\x4a\x73\x12\x1d\x68\x39\x95\x1a\xe8\x6e\x89\x82\x62\xe0\x81\x8c\xbe\x4d\xe2\x4c\xbc\xa1\x68\x18\xe1\x6e\x3c\x70\x32\x98\x3d\x2e\x4f\x3b\x8c\xaf\x3e\xc2\x75\x1d\xed\xad\x01\x4f\x19\xbc\xfb\x88\xb7\x9c\xc1\xb2\x3b\xc9\x99\x12\xdd\x29\x7e\x27\xcb\xc7\x17\xf8\x25\xfe\x4f\x6b\x72\x49\x9c\xee\x78\xd0\x93\xce\xdb\xda\xc1\xd9\x11\x0c\x5e\x32\x41\x19\x6f\xcf\x0a\x5f\x74\xd8\xce\xde\x09\xdb\xeb\xb5\x86\x15\x87\x85\xb2\x61\x36\x6a\xcf\x2f\xee\x6c\xa4\x23\xbc\xf1\xe5\x10\x0a\x44\x4f\xd5\xc8\xf8\x9c\xad\x2b\x2b\x28\x75\x24\x8b\x91\x5c\x12\xf9\x61\x7c\xbf\x20\xd3\x1a\x98\x7b\xd5\xfb\x78\x6d\xea\xc5\xad\x15\xd7\x6a\x3d\x74\xb2\xcf\x83\x00\x8c\x0b\x8c\x17\x64\xc0\xc3\xea\x4d\x3c\xf3\x61\x59\x88\x9e\x71\xe5\x0a\x82\x10\x0e\x80\x6f\x3f\x40\x36\xe9\x29\x1e\xf0\xb8\x16\xd2\x33\x39\x54\x34\x3d\xe1\x27\x54\xca\x00\x48\x45\xc5\xd9\x68\x70\x1b\xf0\x0e\x79\xae\x15\x64\x49\x16\xdb\x40\x71\x90\x66\x5a\x90\xac\xe2\x42\x24\x24\xbe\x5f\x1e\x69\x7a\x08\x9a\x42\xad\x8d\x02\x43\x24\x8d\x3b\x41\x85\xc7\x49\xa9\x49\x68\xb3\x5a\xc6\xe3\xcf\x09\x01\xbd\xf4\x72\x06\xa4\x89\x7e\xbe\x0f\x6f\xc5\x4c\xc1\xa2\x62\x24\x3d\x10\x53\x0e\x4a\x26\x17\x21\x29\xe0\x49\x2a\x1f\x27\xe2\x2d\xd6\x6c\xb2\xa7\x5a\x51\x75\x85\xa1\xdf\xdc\x4c\xf3\x46\xd3\x34\x1b\x6e\x4b\xaf\xb2\x35\x8c\x7e\x56\xda\xb4\xfa\x5e\xb7\x83\xec\xf8\x7d\xab\xe3\x78\x7f\x2a\xf1\x36\xd6\xa0\x46\xe4\x28\xee\x51\x87\x90\xb6\x61\xc4\xdb\xc7\x3d\x1b\x93\xaf\xd2\xd3\x55\xb3\x3d\x02\xb2\x1b\xcd\xc3\x78\x27\x51\xf4\xd4\xf4\x08\x4d\xae\xab\x27\x45\x3c\xae\x0f\x8a\xc1\x1d\x56\xe9\xcf\x13\x2e\x8f\xed\xb9\x7e\xed\x01\x27\xb2\x3f\x2f\xa4\x97\xb3\x60\x61\x42\xdf\x07\x8f\x2a\x85\x85\x90\xe5\x6a\xa5\x97\xe9\x36\xd4\x58\x0e\xa5\xb5\x94\xcd\xdd\xac\x9e\x75\x16\xff\xcc\xfe\xca\x55\xb9\x30\x70\x41\x18\x47\x8f\x37\xa8\x18\x0e\x92\x93\x29\xf3\x3a\xb9\x70\xb8\xce\x49\x53\x68\x70\xf2\xe4\xc2\xae\x8c\x5f\xa2\xc8\x34\x7e\xa5\x83\x28\x36\x6d\x8e\x1e\x1d\x19\xa8\xd0\x81\xe2\x19\xa9\x3f\x32\x5a\xc7\x07\x2a\x11\xa2\x2f\xc6\x57\x3b\x8e\xef\xa7\xa3\x84\x2d\x8b\x82\x16\x7a\x03\x74\xf2\x40\xa6\x4a\x53\xd7\xb3\x53\x0e\x2a\x04\xb9\x20\x15\xc2\x70\x9f\x32\x07\x79\x1a\x4d\x86\xf9\xb1\xc0\xcc\x86\x93\xf6\xd0\xf1\x16\xe2\x49\x47\xdd\x3e\x0f\x41\xbc\x02\x33\x87\x77\x41\xc0\x2f\xec\x94\x69\xd1\xa2\x96\x02\x87\x4e\x15\x4c\x0f\xaf\x8f\x2f\xdc\x48\x1d\x93\xef\xe6\x91\x05\xb9\xfb\x0b\x8f\x9e\x4c\xf7\x7c\x38\xc6\xdf\xa9\x3d\xdb\xae\x26\xf9\x56\xde\x21\x3f\x1d\xa8\x31\x86\xc6\x0c\x64\x76\x06\xd5\xec\x39\x90\x5e\xf9\x8a\x4d\x0b\x05\xfa\xe3\xcd\x2b\x23\xf3\xcd\x45\xe4\xcb\xa4\xce\xb6\x1e\xd9\xe7\x9e\xb7\x2d\xf6\xa7\xb0\xd3\x3d\x5a\x60\x14\xb7\xb6\xc0\x55\xc6\xc6\x9f\xae\x97\x51\xc5\x21\x40\xfe\xf4\x7a\xc2\xf6\xb9\x39\x6a\xde\xb0\x99\x2e\xcd\x16\x2b\x4c\x78\xf0\x20\xc3\xf5\x98\xdc\x5b\xd9\x50\x2f\xbf\xa4\xc9\xa3\x3e\x96\x87\xe2\x68\xcd\x3e\x10\x50\x3f\x34\x8a\xee\x6b\x8f\x8d\xdc\xc5\xec\xa8\x71\xd0\xcf\x5c\x95\x91\xd4\x5f\x23\x8f\xae\x4c\x13\x56\x68\xac\xf1\x39\xcd\x14\x7e\x0a\xf8\xcf\xe5\x64\xe0\x8b\xd7\x35\xcb\x08\x54\xac\x24\xa5\xc7\x0d\x90\x7d\xcc\xcb\x2e\xca\x75\xb1\x27\xb5\x13\xaf\x21\x56\x42\x8d\xb4\x53\xf1\xc6\x97\x55\x54\x68\x16\xb5\x1d\x9a\x0d\xdd\xf0\xa2\x26\x0a\xc3\x3d\x89\xab\xf7\x37\xb7\x82\x74\xd0\xbe\xd7\xeb\x35\x1c\xbb\xe2\xaf\x1b\x65\x80\xa6\xe1\x2d\x11\xd1\x35\xdb\x34\x03\xe9\x2b\x5f\xd9\xb5\x3b\x15\x7b\x15\x82\xe5\x9a\x96\x0f\xa1\xfc\xb9\x9a\xa0\x84\x21\x53\x49\xb1\xb1\x8e\xde\xe0\x70\x3b\xd5\xe8\xd5\x61\x21\x2e\x95\xec\x8d\xd8\x82\x04\x11\x48\xe6\x83\x4e\xc8\xb1\x27\x18\x40\xe8\xd9\x53\x99\x2b\xeb\x79\x48\xf2\xe5\xcb\xc7\xd3\x64\x78\xc6\xa0\x73\xd1\x69\xc3\x08\x3f\x64\x03\x80\x8f\x9e\xd1\x81\xac\x31\x84\x74\xb0\x34\xfd\x8a\x65\x3a\x69\x43\x5a\xa3\xdc\xde\xaf\x26\xbc\x8c\x6a\xe1\x49\x77\xcf\x6d\x39\x13\xb7\xca\x61\xc8\x4f\xfc\xfe\x02\x78\x18\x82\x1b\x7a\x93\x1f\xdd\x6b\x50\x3f\x4b\xcb\x22\x62\x85\x29\x55\x8e\x6d\x02\xc2\x18\xb9\xa9\xce\x6c\xb6\x8e\x2c\xc6\x34\xe0\xd8\x8f\xfb\x49\x6b\x9f\x4c\x1d\xa9\xba\xbf\x0d\x6a\x50\x0b\xf1\xc6\x8b\xad\x3c\xe0\xfb\xb1\x68\x91\xe8\x54\x63\x4d\xeb\x82\xa1\x9c\xf6\xe8\xa5\xed\xc4\xb0\x0b\x5e\xf3\x93\x29\x99\xb6\xad\x57\xd9\x58\x5d\xc7\x8f\x87\x00\xb3\x1e\xbc\x86\x96\x7b\xe9\xee\x46\x36\x2a\x20\xff\x7d\x63\x2f\x52\x3c\xe1\x58\x82\xdf\xbd\xd0\xe6\xc1\xf6\xe7\x37\x40\xca\xf9\x39\x10\xb7\xb3\x14\x9c\xf2\x9a\x7f\x4e\x81\xc8\x40\x08\xfb\x44\xbf\xa6\x20\x3b\x7e\x6e\x3c\x3e\x3c\x3e\x05\x59\xda\x16\xc6\xf1\x17\xdb\x1e\xa6\xba\xf0\xb0\xba\xa2\x42\x1c\x69\xd1\xce\xee\xf1\x26\x78\x79\xc0\x0c\xed\x9d\xea\x56\xf4\x34\x05\x48\xad\x2a\x04\x03\xc2\x5b\x83\x74\x0b\x4b\x24\x80\xe7\x19\xef\x4c\xd0\xcb\x34\xb7\xec\xa5\x67\xe5\x8a\x37\xb2\xc6\x6d\xa2\x50\x41\xdc\xae\x37\x24\x71\xe0\x6a\x44\x25\x38\xc5\x68\x3a\x05\x89\x7d\x97\x85\x53\x08\x6a\xb2\x5d\xaf\x1c\xfa\x70\x21\x0d\xc3\x87\x6a\x03\x08\x89\x6c\x14\xad\x23\x8b\xb4\x9a\x18\x75\xed\xb0\x9e\x99\x16\x71\x64\x5c\x5c\x59\x18\x13\x77\x02\x91\x7c\xb8\x10\x28\x3c\x9e\x33\x66\xc1\x18\x3c\x69\xd8\x5f\x17\xe4\x2f\x3b\x40\xe2\xc4\xd8\x35\xf3\x8d\x8e\x08\x00\xe9\xac\xe0\x60\x08\x2a\xaa\xcc\x80\x1a\xc6\xea\xc3\xf5\x65\x4e\xcc\x4f\x85\x84\xe3\x9d\xf4\x1c\xad\xf2\xf8\x1a\x5a\xaf\xd6\xb2\x6f\x43\x6c\x22\x3e\x60\x36\xd2\xd3\x41\xd2\xe7\x8f\xbb\x61\xc4\x40\xc6\x45\x61\x25\xee\xb4\xc1\xb8\xbe\x28\x99\xb0\x52\x11\x84\xc4\x64\xa0\x04\x87\xca\xb0\x83\x73\x86\x0e\xad\x50\x11\xf6\xfd\xfb\x7f\xbb\x79\xff\xee\x54\x7c\x7e\xb2\xdf\xef\x9f\x40\xf1\x27\x43\xdf\x29\x03\x7d\x69\x4f\xc5\xff\x7a\x7b\x79\x2a\x94\x6f\x7e\x58\x88\xb7\x74\xfc\x24\xaa\xce\x76\xcb\xe8\x02\x81\x46\xc0\x43\xff\x4f\x1c\x4b\xbc\x75\x58\x61\x9b\xbf\xdb\x9f\x33\x91\x30\x8d\xc1\x41\x36\x3c\x79\x8f\x8e\xb2\x19\x43\xc2\x2f\x8c\xdc\xe0\x8f\x71\x46\xa2\xdf\x08\x16\x16\x2a\x3e\x3d\x26\x9d\xb8\x79\x7d\xfe\xd3\xbf\xfe\x4f\xf1\xfa\xed\xf9\x85\xd8\xa8\xcf\xa2\xd5\x6b\x45\xd7\x93\x61\x6b\xdf\xeb\x30\xe9\xff\xeb\x09\xac\x86\x27\x37\x7a\x6d\xa4\x1f\x7a\x15\x16\x00\xd1\x89\x9c\x47\xea\x64\x73\x37\xf7\x8a\xe5\x18\x44\x37\xd6\xf0\x00\xbc\x69\xac\x29\x7b\x4f\x20\xc1\x99\xeb\x02\xdd\xb8\x92\xf2\x1a\xd6\x4c\x64\x64\x36\xca\x00\xa1\x1f\xba\xb6\x3c\xa3\x97\x2a\x2c\x01\xd5\xfe\x79\x5c\x18\x03\xff\xe1\x6b\x17\x67\xe2\xdf\x30\xe4\xd3\x26\x58\x3f\x41\x56\xe8\x1d\x02\x8f\xcb\xc2\x66\xa8\x33\xc1\xee\x4c\xbc\x11\x06\x44\x87\x20\x54\xa6\xbc\x28\x58\x8e\x71\xb0\x8a\xef\x4c\x5c\x2a\x2f\xb6\x51\xe5\x87\x6b\x9c\xb0\x4d\x4a\x94\xa6\xb1\xf3\xd9\x61\x50\x7e\xc9\x63\x01\x06\xb3\xd1\xe9\x00\x96\x7e\x6a\xb3\xd9\xf3\x18\x99\xf7\x18\x17\xc9\x83\x3f\xce\x64\xa5\xc8\xbf\x29\xa4\x22\x86\xb9\x9c\x9b\x1d\x8e\xc5\x38\x3b\x71\xd9\xc1\x11\xae\x8b\x73\xb5\xc1\xb8\xcc\x38\xd6\xe1\x6c\x76\xa4\xfa\xa8\x51\x27\x17\xcf\x53\x72\x5c\x6d\x4f\x45\x70\xfa\x3c\x65\x7b\xbe\xd3\x10\x25\xa2\x3d\x15\x83\x49\xbf\xc9\xe1\x8e\xc5\xd7\xf0\x89\xf6\xc4\xf0\x19\xcd\x3d\xdb\x53\x7a\x93\x3a\x25\x2c\xa6\x1d\x2d\xec\x39\x0a\xfb\xfc\x07\x40\xa3\x89\x4b\x6e\x1d\xf0\xff\x7f\x6f\xf2\xae\x60\xdf\xdc\xc1\x34\x9b\xde\x1a\xfd\xfb\x4c\xdf\xe8\x7a\x25\xb9\xec\xd2\x98\x07\xc7\xdd\x87\x80\xcb\x59\x0a\x18\x78\x81\xa7\xee\xc4\x07\xbf\xa7\x75\x73\x00\xca\x14\x7f\xf2\x08\x40\x5a\xac\xc1\x36\x6e\xd9\x69\x34\x55\x41\x1f\xc3\xf9\x3b\x64\x0a\xd9\x18\x62\x37\x8e\x33\xf2\x20\xcd\xc7\xcf\x42\x52\xe4\x46\xd2\x95\x0e\xaf\x40\xbe\x99\x1f\x24\x81\x90\x1e\x96\x28\x4e\x71\x3c\xc2\x4b\xb5\xc0\x3c\x53\x3d\xb5\x4e\x4b\x12\x24\xf3\x08\x13\x29\x89\x01\x47\x75\x4c\x84\x13\x5e\x33\x53\x9d\x43\xaa\xe1\x98\x1c\x46\x51\x08\x82\x7c\x10\xde\x28\xc7\xa7\xe9\x5e\xc4\xb4\x52\xaa\x0d\x87\x24\xf2\x3f\xe5\x09\x89\x61\x90\xf0\x30\xc9\x39\x1b\x90\x8f\x4b\x3f\x66\x00\xe1\x57\xd9\xbc\x0a\x61\x7b\x27\xaf\x49\x1e\x46\x43\xdd\x6a\xd7\xd8\xbe\x7d\x18\xf7\x0b\x02\xfa\x23\xd8\xcd\xda\xcb\xee\x0b\x4d\x7f\xc1\x50\xdf\x86\x9f\xc6\x24\x3c\xee\x42\x8f\xd0\x8c\x32\x5b\xbb\x95\x68\xfe\xfa\x02\x7f\x4c\x0e\xe7\x8d\x34\x86\x4c\xfd\xe9\x57\x3e\xd7\xbb\xce\x1e\xc2\x73\xa1\x2f\xf0\x2b\x3c\x84\x3e\x05\xc9\x1e\xd7\x5c\x3e\xbf\xa0\x27\x2e\x5f\x59\xdf\x6c\xe4\x77\xcf\x9e\x2e\x9f\x03\x1f\xce\xf7\x00\x9d\xb5\x77\xc1\xcb\x47\xb6\xb8\x6f\xe2\x7b\x31\xbb\xf8\x08\x65\xb2\x51\x91\x6d\x4b\x86\x45\xda\xd0\x50\x8c\x5e\xe6\x4b\x2f\x2b\x51\xab\x46\x5c\x1a\xce\x41\x6c\x27\x8f\x7d\xea\xcd\x5c\x67\x92\xd2\x00\xa1\x70\x04\x36\xf4\xdc\x89\x6c\x9f\x20\xc3\xc1\xda\x5b\x71\xbb\x51\x87\x18\xb8\x1a\x1f\x86\xc3\x4b\xdd\xf2\x09\x1c\x6c\x5e\x78\x19\x34\xbf\x7a\xb4\x75\x39\xc8\xe1\x29\x13\x8c\xe1\x43\xda\x22\x73\x10\x6d\x6a\x46\xae\x3e\x2d\x1c\x68\xe6\x7a\x31\x7d\x8a\x33\x42\x8d\x9f\x0c\x4d\x3d\x3d\xfa\x64\x68\x5e\x34\x7f\x37\x34\x2b\x8a\x12\x42\x1c\x84\x59\x8b\xf1\x62\x5a\xa6\xaf\x82\xa6\xae\x7e\xc5\xc3\xa0\xf3\x33\x37\x56\x11\x7d\x71\xaa\x1f\x72\x18\x69\xf3\xce\x7d\xc5\x13\xa1\xe3\xb0\x74\x5f\xa1\x2d\x9a\x6b\x4b\x6e\x50\x1c\x1b\xf0\xb5\x3a\xa3\x3c\xf8\xff\xd4\x99\xea\x1b\x9f\x13\x98\xc5\xfa\x85\x27\x05\x5a\xbd\x5a\x2d\x28\xb4\x72\xed\xec\xd0\xa3\x39\xc1\x2f\xf8\x2d\x6e\xf0\x9b\x40\x38\xb0\xe4\x19\x47\x98\xa4\xc4\xe8\x64\xc9\x5e\x95\x98\x88\xee\xb5\xa8\x81\x8d\x15\x9e\x89\x17\x7a\xb5\x22\x57\xdb\x77\xd6\xa7\xa6\x2c\xa8\x88\xdb\xd8\x7d\x0d\xbf\xf0\xa1\x51\xb4\x2a\xdc\xd8\x3d\x15\xba\x81\x94\x0c\xcc\xed\x3a\xed\x6b\x8e\xea\x7c\x03\x1f\x18\x97\x3a\x83\x18\x0c\xc6\xa0\x0c\x30\x1f\xe8\x33\x87\x02\x94\x31\xb8\x46\xb8\x88\x3a\x69\x63\xe0\x44\xd4\x76\xa4\x2b\x2a\xdc\x2a\x01\xee\xa4\x45\x42\x88\xea\x8c\x04\x92\xbf\x20\x74\xd2\x46\x45\x79\x82\xe0\x81\x46\xea\xfe\xcb\x9b\x77\xf4\x89\x31\x95\x39\x1a\x16\x06\xd7\x7e\xa9\x3b\x1e\x6f\x8c\xb8\xe8\x86\x1d\x06\x6e\x54\x6d\x08\x28\x09\x79\x22\x4b\xce\x9c\x21\xf3\xf0\xda\x84\xc3\x5b\x5b\x6f\xa5\x39\x44\xd7\xed\x1b\xbb\x55\xac\xca\xd9\x2b\xa6\x83\x18\x82\x3b\x79\x8e\x5a\x2b\xa0\x08\x43\x85\x01\x09\x6a\x61\x40\x5b\x85\x88\xe2\x8b\xb9\xc8\xe2\x21\x8f\xc2\xc4\x07\xc6\x0f\xc8\x45\x60\xfe\x02\x44\xdb\xcb\x15\x3a\xf2\xc1\xff\x98\xba\xeb\x55\x2a\x76\xd5\xab\x27\xe3\x62\xec\x70\x07\xff\x62\x9a\xdc\x90\xb3\x47\x9a\x81\x34\x33\xc1\x37\xd4\x5b\x71\xe2\x38\xee\x26\xef\xfc\x12\x31\xad\xfe\x9a\x9f\xd9\xa4\xb5\x8f\x0f\x24\x16\x7d\xca\x3d\xf9\xae\x88\x41\x15\x71\x1c\xd0\x7c\x85\x1e\x99\xdb\xf5\xb6\x1d\x1a\xbf\x28\xda\x5d\x94\x26\x8e\x54\x85\x55\x27\x3a\xbb\x46\x9d\x07\x06\x4a\x26\x7b\xdf\xc1\xb4\xaa\x77\x9e\x4c\xfb\x65\x46\xe6\xf5\x76\xd7\xd3\x4d\x49\x40\xef\xe5\x3a\x3e\x82\x27\xd7\x14\xa6\x25\xe5\xa1\xe2\x1f\x72\xe0\x47\x51\x26\x72\x02\xc1\x0b\x20\x8b\xb6\xea\xe5\x1a\x19\xfb\x26\x8f\xef\x0f\xc2\xa8\x35\x81\x39\xcf\x1a\x50\x1c\x71\x21\x75\x7a\xac\x85\x9c\xd2\x89\x27\x9b\x7e\xde\xb6\x1c\x60\x3c\xe6\x74\x56\xb6\x24\xfb\x5f\xd2\xaf\xc5\x62\x31\xb3\x6a\xa6\x8f\xa0\xef\x7a\xf5\x64\x3c\xd7\x19\x7c\x1c\x80\xbf\xaa\xc7\x5d\x27\x76\x56\x1b\x2f\xc8\x29\x4d\xfa\x62\xa5\x84\x8b\x22\x9e\x5a\x6d\xcd\x13\x3c\x2f\x53\x33\xc6\xae\x98\xb1\x3a\x5e\x28\x69\xc9\x8c\x57\x35\x3a\xb9\x85\x1d\x81\x5e\x6e\xe5\xb6\xc0\xd5\x93\x36\x06\xba\x9b\x4e\x36\x14\xf1\xfb\x09\xaa\x34\x0b\x98\x01\xa6\xb3\x37\xc8\x5b\xf1\x62\x71\x0c\x33\x7f\xdc\x86\x7a\xc6\x6e\x6d\x8d\xed\x49\xdf\x1d\x6f\xd9\xbd\x5c\x3f\xf8\x50\xdc\xa8\xb6\xfc\xc2\x9a\xaa\xf8\xc2\x69\x3a\xde\x03\xa5\x93\x5c\x86\x87\x79\x1e\xa0\x94\xbc\x47\x26\x3c\xcf\x04\x17\x3b\x15\x67\xfb\xaa\x78\xbf\x37\x95\x08\x31\x6d\x90\x13\x08\xbf\xab\xea\xa3\xed\xd7\x9f\x2a\xbc\x95\xc4\x30\xe8\x31\x7e\x69\x7e\x05\x89\x6a\x66\x80\x81\x1e\x3d\x04\xf8\x72\xe8\xba\x04\x5d\xbe\xd3\xf6\x0a\xb6\x69\x69\xd4\x03\x00\xa4\xe4\xc7\x67\xd9\xd8\xa7\x83\x5f\x66\x5b\x84\x27\x3d\x6c\xbf\x4e\x5e\x9c\x79\x75\xf4\x40\x51\xf2\x0d\xe4\x57\x0b\x2a\xf6\xb5\x38\x13\x57\xf8\xa3\xd2\xe6\x5e\x7b\xe0\x1f\xb6\x8a\xac\x02\xdf\x60\x02\x9e\x37\xd6\xa8\xaa\xf0\x46\xa8\x30\xd8\x7a\x1d\x3c\x11\xce\x82\x4f\x02\xa7\x17\x76\x90\x67\x85\x59\x64\xfe\x04\x09\xa0\x2c\x5d\x4f\x01\x39\x8e\xca\x8c\x53\x3a\x40\x47\xf2\x08\x25\x71\x08\x31\xf5\x21\xe8\xe2\xd9\x33\xa0\x0e\x43\x08\x78\x89\xb8\xd0\x46\xd2\x90\xe4\x87\x8b\x0a\x30\x6b\x53\x44\xe2\x72\x8b\x54\x4d\x46\x6b\x36\xe4\xb1\x9e\x8a\x01\x97\x8a\x06\xfd\x7f\x26\xf8\xe2\xdd\x1d\x56\xbb\x4a\x7a\xb6\x90\x92\xf9\x4d\xda\x5c\x0f\x8b\x88\x40\x24\xf9\x73\x35\xff\x94\xd3\xfb\xf1\xda\xf8\x03\x8f\x39\x4d\x71\x3c\xf8\x9c\x13\xa2\x4b\x03\x9a\x35\x06\xe7\xe1\x48\x23\x22\x2b\xfb\xad\x4e\xa7\x71\xff\x00\xc3\x14\xf7\x4a\x7e\x4b\xc6\xce\x11\x7f\xa5\x5f\x29\xab\xb3\x4d\xf0\x54\xbd\xe4\x9f\x47\x6d\x6a\x1e\xf2\x99\x28\x41\x33\x62\x56\x0c\x5c\xc4\xf4\xb5\x06\x38\xec\x8a\x61\xfb\xf5\x3f\xe7\x89\x51\x3c\x2d\x3a\x69\xb5\xbc\x97\x5e\xf6\xc7\x1a\x4d\xb9\xa1\xed\x5f\xdd\xf4\xb1\x99\x5a\x41\x61\xc6\xda\xaa\xc9\x63\x9f\xd8\xc1\x07\x8b\x94\x4f\x7f\xe6\x0d\x8e\xf7\x84\x99\x99\x18\xdb\x98\xd0\xa3\x9f\x64\xeb\xf0\xe5\x97\x3f\x8f\x18\x1a\x3d\xf4\x04\xe8\xb8\x95\x40\x99\x62\x58\xcb\xbc\x91\x0f\x96\xc8\xb9\x19\x3b\x32\x5a\xf9\xe3\xcf\x82\xce\x1b\xa8\x9c\xb7\x6d\x50\x5b\xf2\x2b\x80\x61\xfc\x92\x6a\x74\x95\xc5\x94\x1f\xbf\x69\x9b\x46\x0e\xf9\x56\x76\x58\x2c\xd6\x5b\xc5\xb4\x7e\xc1\xff\x37\x7a\x57\x17\x4f\x81\xbe\x8d\xe9\xd9\xab\xa0\x3f\xc7\x62\xac\x72\x62\x3e\xaa\x19\xa5\x27\xfa\x8a\x01\x11\x82\xfb\x47\x04\xa2\x6f\xe4\x2d\x67\x73\xc6\xe5\xcb\x3a\xe8\x7f\xdd\xdb\x4e\xc5\x86\x8a\x6b\xdb\xa9\xd4\xbc\x32\xa8\x63\x59\x30\x96\x89\xe9\xac\x9f\x08\xef\x32\xc6\xf4\xf2\x3d\xdf\x90\xca\x67\x6c\xfe\xd2\x07\xf2\xe3\x8c\x1d\xc5\x9b\x9f\xc7\xd0\x06\x43\xea\xf3\x69\xfc\xce\xee\x2b\x3a\x8a\x17\x18\x35\xf2\x4c\xfc\x9b\xd5\x86\x53\xca\x4a\x29\x0d\x38\xa3\xf4\x06\xcd\x35\xc8\x58\xf4\xd6\xf4\x34\x7f\xf4\xd6\x1e\x9e\x44\xf1\x95\x3d\x7e\xf2\x1a\x19\x7b\x8e\x4d\x6a\xc8\x8a\xa7\x7c\x25\x8e\xb0\x8e\x9e\xbe\xa1\x70\x11\x45\xbd\x39\xc4\xd7\x54\x8c\xa1\x00\xc6\xd5\x9d\x06\x5d\x3e\x2a\x00\xa3\x0b\xa4\xda\x86\x76\xa0\x3d\x77\x6a\x07\x46\x24\x28\xdb\x91\x43\x7c\x4d\x3b\xa0\x16\x0c\x4c\x17\xfc\x1c\x8e\xb6\x47\xb6\xad\x20\x13\xf4\xdc\xf8\xcc\x8d\x9b\x98\x5e\x7b\xbb\xcd\xce\x7f\x34\xdd\x6d\x47\xfc\x8c\x5b\xcc\x1d\xa9\x94\x43\x36\x97\x33\x2c\x07\x99\xd1\xcf\x3e\xc2\xfe\x65\x22\x80\x01\x07\xa1\x64\x04\xcd\x0c\xe4\x8b\xd7\x27\xa6\xe7\x12\xb5\x2b\xb1\x88\xc8\x2b\x30\x6d\xe0\xcc\x2f\x1f\xc9\x04\x17\x9e\x5f\x22\x7e\x31\x3f\x54\x90\x61\x0c\x33\xd9\x22\x44\x1d\xf7\x2a\x6c\xb0\xac\xd6\x29\xb2\x48\xcc\x11\x2a\x12\xf1\x29\x5c\xd8\xb1\x39\xb7\x97\x5d\x2c\x29\xbc\x3e\x2b\xfc\x72\x03\xd4\x56\x1e\xc6\xaf\x71\x63\xa8\x88\x62\xd7\x1c\x17\xac\xa6\x4d\x49\xe7\xfa\x2b\x7d\xaf\x4c\x5a\x30\x47\x85\xab\x45\xbe\xd5\xa7\x0b\x24\x23\xd7\x3a\x67\x82\xd7\x3d\x86\x4a\x0c\x33\x0f\xa4\x23\x5b\x18\x88\xfe\xe7\xd8\xe7\x46\x9a\x31\x6d\x40\x73\x45\x25\xb7\x8f\x1f\x22\x11\x7f\xb8\x39\x48\x52\x1e\x6e\x0f\x92\x0c\x8a\x0c\x6c\xda\x9c\x3c\x3c\xd4\x2c\xa2\x07\x7f\xb8\x59\x48\x61\xbe\xb2\x59\xa7\xa1\x4d\xc4\xc7\x00\xbd\x98\xa3\x14\x0f\xb5\x76\x24\x68\xe1\x32\xbe\xce\xa5\xad\x40\x36\xd0\x02\x17\x25\xc1\x59\x0b\xdc\x4c\x41\xbd\x58\x8c\xf7\x53\x66\x42\x9c\xed\xa9\xcc\x47\x21\xb4\x05\x8d\x85\xd9\x97\x8b\xcf\xc3\x84\xca\x58\x83\xf2\x39\x5d\x16\x47\x7f\xaf\x0c\x39\x5f\x57\xf9\xfe\xc0\x3c\x11\x3e\x32\x56\xbc\x20\x1a\xef\xa8\x58\x9d\xa5\x63\xac\x95\xea\x23\xce\xdc\xa7\xaa\x95\x6e\xb3\xb4\xb2\xc7\xab\x92\xf0\xbb\x2a\xfc\xf8\xab\x9c\x50\x8d\x39\x64\x7a\x25\x38\x1b\xd4\x62\x3c\xe5\xe0\x37\x20\x2e\x46\x39\xe3\xbc\x48\x70\xf4\xbe\xfc\x3a\x30\x93\xeb\x81\x43\xe5\xb0\x93\x01\xfa\x94\x3b\xaf\xb6\xe2\x1d\x25\x54\x5b\x6b\x34\xd9\x33\xbf\xa5\x5f\xda\xac\xab\x22\xde\xd3\x4b\xf8\xa8\x30\xc2\x0f\xa7\x5c\x4a\xe7\x2b\x6f\x3d\x3e\x13\x7b\x0b\xff\x7f\x16\x27\x6d\x95\xba\x8e\xda\x71\xed\x3c\xb2\x59\x37\xe1\xb7\xcb\x00\x92\x39\x1f\x85\xab\xe3\x8f\x1c\x05\xb6\xb3\x66\xeb\xc9\xd8\x6e\x6e\x25\x62\x1d\xdc\x5c\x95\x21\x8a\x13\xda\xc1\xb5\xd2\xcb\x65\x50\xff\x3c\x5b\xa2\x56\x77\xf9\x9c\x54\xa3\xa7\x59\x42\x31\x23\x79\x46\x71\x41\x99\x92\xcb\x53\x37\xa5\xd3\xdb\xd0\x45\x92\xf3\xb2\xac\x4b\x36\x93\x5a\xc2\x9d\x52\x9e\x16\x3c\x4a\x52\x4a\xf0\x2d\x29\xb0\x5b\x74\xcf\x67\x21\xa2\xc8\x22\x07\xaa\x22\x89\x9c\xf5\x46\x3d\x21\xc5\x73\x9e\xd6\xd9\xb5\x36\x82\x94\xd9\x65\xf7\x98\xb5\x2f\x71\x86\x68\x68\x05\x0a\x8c\xd2\x9d\xa7\x6c\x82\x95\x6d\x91\x8a\x1b\x34\x4f\x60\xf3\xd9\x09\x60\x0a\x07\xed\x16\x73\x0b\x29\x48\xec\x71\x31\x91\xd8\x3e\x07\xe9\xf6\x9a\x1e\xc6\xbd\xc1\x1f\xb3\x30\xfd\x80\x6a\xcd\xc1\x64\xb9\x4d\xa7\xa4\xa9\x07\xb3\xd4\xa6\xad\x2d\x3f\x2f\x7d\x01\x89\x62\x30\x4b\xb4\x31\x7c\x8f\xfb\xd1\x3d\x58\x28\x3b\x42\xcf\xbb\x4e\x50\x56\x28\x99\x39\x6e\xcd\x9f\xa5\x09\x33\x9f\xca\x6c\xe1\x2a\x93\x28\xe9\x12\x93\x22\x31\x36\x2c\x5b\xb8\x84\xec\xaf\xc2\x31\x6a\x65\x82\x88\x68\xbe\xbd\xa9\x78\x00\x00\xc1\xd7\xf7\x6a\xd4\xc8\xd2\x75\x99\x41\xbe\x80\x61\xd4\xc4\x59\x14\xdf\xde\x48\x3c\x78\xcd\x9a\x8e\x9d\x23\x8d\x3c\x88\x5e\x35\xb6\x6f\x59\xc6\xed\xac\xf3\xa8\xa5\xa6\x87\x48\x1f\x46\x79\xac\xd5\x0f\xe2\xfc\x86\x6e\xac\xb5\xaf\xd7\x4d\x6a\xbe\x15\x6b\xd9\x2f\xe5\x9a\x1c\x75\x38\x02\x93\x2d\x9d\xc5\x8f\x14\x7f\x68\x80\xb1\x41\x2d\x30\x5a\x33\xe8\x8f\xb5\xad\x57\x18\xb9\x44\x76\x5d\xed\xdc\x86\x8d\x20\xae\x15\xdd\xe3\x3c\x5e\x38\xb7\x79\x2a\xf9\xa5\x76\x85\xe6\x02\xee\x31\x3d\xe2\xf3\x7d\x23\xd1\xd7\xfd\x67\x8c\x33\x84\xa4\x1d\x4b\x07\x26\x18\x46\xeb\x87\x07\x2b\x1a\xf5\x25\xa3\xeb\xd9\xd8\xf6\xd8\x14\xaf\xbe\xaa\x07\x21\x34\xcc\x35\x26\xf1\x1d\x51\xa3\xd0\xd8\x9c\xa9\x18\x32\x7e\xd6\xf9\x90\xc1\x06\xef\x76\x35\x59\xf3\x0f\x54\xf1\xc0\x2c\x3c\xfe\x96\x5a\xf3\x6e\x42\x0d\x0f\xac\xa1\x5e\x69\xa3\xfd\x64\x2b\x5c\x63\xb2\x96\x9d\xfe\xfd\x0f\x6e\x88\x39\xc4\xff\xec\x86\xe8\xb3\x56\x8d\xbb\x94\x33\x08\x18\xdb\xad\x1e\x76\x5e\xe3\x41\x71\x43\x4f\xd5\x7f\xc0\xef\x9c\x60\x0f\x7d\x0f\x4c\xe2\xda\xf6\x76\xf0\x9a\x1e\x35\xa3\x34\xf1\x2a\xa4\xb9\x99\x02\x78\x29\x72\xa8\x07\x8e\x51\x19\xca\xbc\xc5\x64\xf1\x01\x5f\xa5\x4b\xa5\x90\x7f\x0a\x65\x64\x87\xaa\x63\xd2\x69\x23\x63\xc5\xa5\xce\x43\x46\x56\x92\xcb\xd8\xa5\x97\x1c\x78\x90\x81\xdf\x73\x4a\x06\x8b\x57\x91\xaa\xaf\x3b\x6b\xef\x86\x5d\x0d\x5d\xc5\xd0\x49\x94\x2c\x2e\x31\x59\xdc\x42\xf2\xb4\x86\xd0\xaa\x58\x6c\xd4\xa8\x63\xe5\x56\xbd\x9a\x94\x79\xd9\xab\x29\x7c\x18\xb9\x8d\x92\xbb\xc9\xb8\xbd\x56\x72\x37\x19\x35\x84\x9c\x0e\x00\xc2\x1e\x1f\x85\xbc\x94\x6e\x51\xe2\xce\x4b\xbc\x69\xbb\x63\x75\x68\xb4\x98\x1a\xc3\x1b\xe0\xe3\x8f\x94\x60\x7e\x6a\xdc\x2a\xbe\x3e\x9c\xb4\xca\x2e\xff\x4b\x35\xde\x05\xe8\xf7\xf4\x99\x41\x2d\xad\xf5\xce\xf7\x72\x07\xac\x30\xda\xe8\xd3\x30\xfd\x12\xd2\x81\x15\x6e\xee\x26\x23\x45\xd0\xd3\xa1\x22\xe8\xe3\x63\xb5\x75\x3b\x69\x6a\xe7\xfb\xa1\xf1\x43\xaf\x5c\xac\xf0\xed\xcd\x4e\x1a\x71\x13\x33\x26\x35\x4e\x4a\xe6\x2b\x74\x5c\x78\xae\xe6\x46\x36\x1b\x35\x5b\xf5\x05\xe4\x3c\x58\xf7\xa4\x6c\x5e\xf9\xa4\xf8\xdc\x4e\xe9\xed\x4a\x77\x40\x94\x96\x43\x73\xa7\x7c\xbd\x91\x6e\x53\x7b\x7c\x66\x33\xc3\x75\x15\xc0\xc4\x2f\x08\x26\x5e\x4b\xb7\x11\xb7\xa8\x9e\x9b\xc1\xba\x6e\xea\xad\xf2\x12\xed\x99\x32\x2c\xaf\x2e\xc4\x5b\x4e\x9e\x2b\x85\x6a\xbb\x9a\x25\x20\xde\x85\xc0\x94\x66\x18\xde\xa3\x66\x8f\x85\xa2\xf3\x08\x32\x87\xcd\xa8\xcf\x7c\xa4\x37\x87\x86\x1f\x76\xff\xec\xa1\x0d\xd7\x94\x92\xc1\xa2\x98\xb7\x6e\xea\x40\x23\xd1\xd4\x05\xc3\xb9\xbe\xba\xc0\xed\x3b\xa1\x60\x09\x98\x08\xd7\xab\x0b\x71\x25\x07\x37\x0b\xb8\x93\xb4\x99\x8e\x42\x86\xea\x03\x60\xa8\x79\x0c\xc7\x95\x3a\x1a\x4a\x22\x2b\x24\x63\x2f\xd0\xcd\x97\xc2\xa7\xd6\x3b\x49\xa6\xae\x20\x75\x8b\xb7\x14\x52\xf5\x0a\xd2\x18\xd6\xa8\x7d\x7e\xfd\x92\xee\x81\xcf\x29\x31\x80\x91\x64\x81\xf2\x04\xa5\x04\x5e\xb8\x0d\x56\xe3\x48\xa2\x39\xaf\x08\x3f\x4b\x69\xe9\x00\xdd\x59\xc7\x69\x21\x2c\x78\x7c\xbd\x8e\xd3\xd1\x51\xa5\x57\x6b\xed\x3c\x47\xe6\xc0\xf0\xdb\xe8\xcd\x79\x8d\xc9\x41\xbe\xc9\xfd\x73\x6f\x2d\xf6\x32\xeb\x58\x69\x68\x19\xba\xf9\xe5\xd0\xe4\x0b\xc6\x91\xbf\x94\xc4\x3d\x43\xe1\x25\x18\xf8\x95\x9a\x87\x60\xe8\x47\x90\xb0\x1c\x3b\xbe\x05\xed\xf2\xd2\x28\x59\x06\x51\x6d\x84\xe1\x12\xa5\xce\x6c\x94\x77\xd2\xb9\x3d\x1a\x6a\x07\xbd\x38\xde\x2c\x08\xed\xd9\x29\x0f\xf5\xf2\x68\xee\x3c\x18\x36\x33\x0b\xad\x4f\xc1\x03\xd9\x0a\x2e\xb2\x18\x3c\x10\x9c\xf3\xa5\x1b\xc8\x34\x16\xd9\x4a\x41\xd3\x99\x72\x8d\x6c\xe5\x67\x12\x4e\x70\x48\x39\x72\x39\x9b\x5a\x66\x9e\x33\x17\x21\xf7\x52\x6f\xf5\xd1\xb2\x41\xe9\xf7\xfd\x8d\xf2\xe2\xc9\x8f\xe8\x55\xea\x94\x58\x77\x76\x89\xe1\x5a\x29\xe6\x6c\x07\x28\x7e\x60\x1c\xda\xd5\xf9\xa2\x44\xe5\x74\x68\x30\xfe\x2c\x17\xe9\xae\xb7\x1b\xbd\xd4\x9e\x26\x64\xa6\x40\x00\x08\x8f\x6b\xae\xe3\x5a\x86\x9a\x78\x89\x17\x85\x30\x4e\x12\x64\xd0\x0a\xb5\x7d\x66\x68\x10\xd6\x3c\xc5\x8d\x02\x11\x83\xdd\x09\x26\x18\xb2\x32\xd9\xbb\xa4\xc0\xf6\x51\x6c\xc6\x1c\x8f\xde\xee\x6c\x0f\x5d\xa0\xc5\xf6\x25\x5c\x04\x2e\x08\xbc\xe0\xbd\xe7\x96\x4c\xba\x0c\x08\x2b\x86\x48\x7f\x58\x9c\x0f\xde\x35\x97\x6b\x03\x9f\x68\xa9\xed\xde\x24\xc5\x63\xd6\x52\x7a\xc0\x05\xda\x9b\xe2\x56\x58\xe0\x4c\x81\xe7\xc5\x87\x17\x41\xc8\xca\xe3\x8f\xc4\x70\x41\xe9\xa5\x40\xdb\xc7\x10\x17\x64\x3b\xcf\x6a\xc9\xbc\x01\x1b\xe9\xd8\x4c\xe7\x48\xfd\xdb\x42\xc7\x5c\x54\x9f\xeb\xc7\xca\x06\xd0\xa5\x5f\x74\xdd\x99\x5c\xc4\xb8\xb2\x29\x33\x16\x5a\xe7\xd9\x94\x3d\x14\x2e\xdf\xf6\x1c\x9a\x61\x44\xdd\x8b\x9b\xf0\x82\xca\x63\x89\x9c\x7a\x63\x42\x69\x49\x84\x49\xe9\x96\x28\x5c\x10\x91\x16\x16\x09\xf7\xb8\xbe\x6c\x3b\x17\xb5\x51\x89\xf2\xfe\x96\xd2\xf2\x26\x50\xca\xf4\x1e\x99\xd2\x59\x7f\x28\xce\xc4\x5f\xe9\x17\xa7\xa3\x12\x91\xb8\xb7\x3e\xa4\x8d\x1d\xe4\x18\x12\x64\x33\x38\xb9\x7f\x57\x15\xaa\x8b\x0b\xba\xed\x8e\x11\x6e\xc7\xb0\xf4\xc4\x49\x88\x66\xc2\x44\x9d\xb3\xb2\x5e\x50\x4a\xfe\x0c\x2c\xa5\x28\x0c\x5b\xd7\xc6\x00\x76\x2d\xa7\x07\x9a\x15\x23\x66\x73\xfa\xd4\x2e\x2c\x6b\x32\xa3\x1f\xb5\x37\xab\x0d\xa1\xe6\x0f\x93\xac\x95\x4e\x35\x43\xaf\xfd\x01\x23\xc9\xda\xc6\x76\xe4\x5b\x8b\x69\x18\x44\x16\xd2\x42\x3b\x47\xde\x33\x94\x8a\xe1\x2e\xce\xc4\x6b\xeb\x42\xbb\x77\xf4\x40\xec\x95\xed\x43\x0a\xea\xf7\x5a\x34\xcd\xd6\xa6\x15\x2f\xde\x95\xe9\x85\x19\x58\x0c\x2d\x48\x8f\xdd\xbb\x22\xc4\x60\x88\x1f\x48\xe1\x03\xd5\x62\xbd\x10\x2f\xde\xbf\xfd\xbf\x4e\x5c\x8e\x30\x1c\x8d\xa1\xba\x2b\xfe\x9e\x83\xc9\x4c\xc6\x64\x6f\xb4\x59\xff\xcc\x6f\x32\x05\x1c\xf8\x8a\x94\xed\xc9\x46\x7b\xd7\xc1\x00\x78\xf5\xd9\xe3\xb5\xa0\xb1\x9e\x9f\x83\xde\xe8\xf5\x06\xed\x21\x74\xa7\xd6\xe4\x07\x01\xdb\x76\x11\x66\x12\xf8\x2e\x7e\xf0\x0d\xf9\x2d\xbe\xda\xf9\x45\x3a\x95\x83\xe0\x10\x21\x40\x1c\x22\xe9\x29\x96\xa1\x9a\x73\x40\x16\xe7\x21\xf7\x28\xf4\xf8\x9d\x6e\xa4\x48\x91\x43\x80\xd6\x3b\xbd\x36\x4f\x34\x3e\x8f\x02\xa4\x51\x75\x2d\x3b\xf4\x17\xc1\x1a\x17\x93\x1a\x82\x15\x18\xbe\x73\xf1\xee\xe1\xd6\xb8\x21\x34\xfd\x66\xf8\x52\xcb\xb7\x52\x63\xcc\x4f\xfc\x3f\x06\xbb\x57\xbd\x5e\x1d\xea\x75\x6f\x87\x5d\x9d\xd1\xe4\x33\xf1\x17\xcc\x11\x98\x93\x51\x6b\x2e\x47\x05\xf8\xae\x0d\x23\x33\xe2\x58\xbf\x42\xe8\x6c\x36\xd2\xc0\x53\x09\x7a\xa4\x23\x42\xd2\x2b\x1d\x05\x44\x6a\x78\x63\x0d\xc8\x17\x14\x4c\xa7\x23\xcb\x58\x2a\x16\x7b\x81\x56\xda\x52\xe3\xcb\xca\x97\x1c\x38\x9b\xae\xbd\xb2\x55\x90\x30\x02\x12\xd5\x82\xa0\x4d\xdd\xe2\xc5\x91\xd0\x5d\x22\x00\x46\xaa\x01\x80\xf1\x58\x3a\x28\x8a\x1a\xf4\x33\xf1\x52\xf9\x66\x23\x52\x16\x14\xe2\xdd\x48\x6e\x4e\x9f\xc3\x6e\x8d\x7d\xc6\xca\x8a\x2e\xd3\x0d\x6c\x04\x20\x9b\x8d\x02\x62\x0b\x1c\x50\xed\x24\x1c\x17\x4e\x9c\xb7\xe2\xe6\x3c\x90\x9a\xad\xdf\xd5\x7c\x31\x70\xf3\xf6\xf6\xea\x01\xda\x05\xa0\x4c\x57\x10\x32\x23\x2e\x90\xc5\x04\x06\xb3\x32\x2a\x13\x22\x12\x11\x9d\x72\x21\xea\xa6\x6a\x99\x60\xb9\x79\xb8\x87\x38\x68\xd8\xe1\xbd\x72\xbe\xd7\x0d\x3d\x24\xcf\x65\x16\xe2\xed\xd0\x79\xbd\xeb\x54\x48\x09\x86\xa2\x18\x8c\x60\x27\xfb\xf0\xe4\x76\x63\xb7\x5b\x29\x1e\x9f\x3e\x5e\x14\xa7\x40\xed\x3b\x97\x22\x99\xde\x5e\xde\x88\x5f\x4d\xd3\x1f\xc8\x9e\x84\x7b\x7a\xa7\x77\x00\x56\xd3\x9a\x87\x0e\xdf\xe9\x1d\xc2\xd2\x5a\x0f\xe4\x56\x6e\x6b\xa7\xfa\x7b\xdd\xc4\x3d\x79\x75\xfe\x16\x55\x78\xba\x51\x39\xb1\xe7\xaa\xf1\x69\xb8\x20\x44\xa5\x46\x9c\x0f\xde\x16\x42\x54\x28\x95\xbd\xc0\x34\x3e\x1e\xc9\x14\x24\x8c\xeb\x84\xc7\x2e\xa1\x0b\x56\xbb\x38\xfa\xc2\xb2\x38\x56\x2c\x72\xf5\xd9\xdd\x5b\x3a\x93\xc7\xd2\x5c\x59\xfc\x4b\xae\x73\x8b\xe2\xb4\xcd\x59\xaf\x12\xcf\x57\x5a\x65\xe6\xc8\x32\x36\xf9\xa1\x71\x9b\x0d\x33\x58\x96\x28\x20\x6b\x62\x00\xd8\x3c\x66\x84\x3a\x1a\xca\x4c\x4b\xe4\xa6\x4c\xd3\x31\x9e\xb1\x76\x7c\xc0\xc2\x91\x97\x28\xf2\xce\x3a\x7a\x4e\x1e\x41\x4d\x5c\x34\xc2\x2c\x0f\x64\x62\xc3\x97\xcc\x6c\x31\x90\x18\xf5\x14\x49\x55\x39\x86\xca\x03\x86\xd2\x02\x40\xde\x87\x39\xe7\xac\x9b\x23\xce\xb9\x6c\xc6\x17\x18\x68\x42\x43\x12\x38\x3b\x2a\x05\xe7\x86\xcb\x6c\xd1\x31\x53\x32\xf2\x69\xe0\xe3\x40\xfb\xcd\xb0\xac\xe5\x4e\xd7\xca\xb4\xe4\xe7\x72\x26\xce\xaf\xde\x88\x5f\xf9\xb3\x62\x0b\x84\x85\xb1\xbe\x76\xe8\x31\xf4\x3d\xba\x88\x29\xff\x43\xc8\x62\x4d\x7c\x34\x55\x60\x4d\x7c\x69\xb1\xc0\xb0\x72\xb7\x8b\x1c\xde\x6e\xd7\x15\xec\x5d\x06\x72\x4f\xb4\x3a\x83\xf8\x0b\x87\x8e\xcd\x80\x28\x6c\x49\x0e\xf4\xe1\xfa\x32\x00\x8c\x39\x3f\x4e\xb6\xab\x55\xa7\x8d\xaa\xb7\xe4\xd2\xf5\x9e\x3e\xc5\x5b\xdb\xc6\xfa\x39\x1e\x50\xdd\xdb\x81\x54\xed\xeb\xec\x85\x90\x6b\x4c\x84\x01\x0e\xe0\xfd\x40\xc7\x27\x5d\x2f\x93\xd6\x26\xcb\xe2\x8a\x20\x2b\xaf\x04\x64\xe6\xf0\x50\x0d\xc5\xd0\x18\x75\x10\xed\x1f\x1a\x74\xd3\xab\x7b\x6b\x7d\xbd\x93\x74\x0c\x61\x3a\x79\xfe\x5d\x5b\xeb\xc5\x95\xf4\x9b\x50\xa8\xb3\xeb\x69\x89\x4b\xbb\x3e\x02\xce\x01\x84\x69\xab\x85\x3e\x50\xda\x78\x2d\x62\xb7\x62\xdb\xdc\x26\x9b\xed\x9b\xd7\xf3\x53\x0d\x50\x53\xf9\x21\xcb\x04\x21\xc8\xd7\x1c\x08\xbe\xa6\x55\xc4\x32\x91\x17\xbf\x70\x7c\x78\x5a\x4c\x79\xb1\x23\x33\x0b\x59\x39\x1b\x9f\x25\x23\x4f\x62\x42\x2e\x32\x20\x66\x02\x94\x0f\xd9\x64\xa4\x10\x40\xb1\x91\x69\x79\xa3\x59\x4b\x4f\x3d\xc9\xae\x3e\x47\x20\xe2\xdc\x53\xaf\x72\x74\x77\xea\x50\x63\x0c\x36\xae\xf3\xdf\xd5\x81\x62\xaf\x8d\xeb\xbd\x53\x87\x35\xb4\x3e\x82\xad\x95\x11\xdf\x3f\x76\x6e\xf3\x84\xb2\x1e\xff\x30\x29\xb3\xd5\x46\x6f\x87\x2d\x79\x68\xeb\xdf\x15\x3d\x3d\x8b\xcf\x4a\x60\x06\xd6\x06\x32\xa5\xb8\x80\x8c\x87\x8a\xba\x99\x52\xae\x4a\x4b\x68\x67\xd3\x5a\xc8\x35\x63\x73\x4b\x02\xa1\x8b\x81\x4e\x05\xa6\x63\x8e\xc6\xaa\x41\x6a\xbc\xc1\x2f\xe2\xb8\x72\x6c\xf8\x64\x4f\x9d\xe4\xef\x97\xf8\x84\x4f\x90\xc2\x19\x72\x2b\x3f\x27\x65\x1c\xea\xd9\x48\x9d\x37\xd6\xdf\x31\xf8\xae\x57\x14\x5b\xb4\xee\x74\xa3\x8c\xe3\xb7\x9b\x38\x51\x5c\x72\xe2\x98\x60\x6c\xbc\xdf\xd5\x6b\xc4\x1d\xc8\x05\xc6\x70\x7c\x95\x30\x33\x3b\x83\x3a\x2b\x1c\x83\x7a\xab\xd7\xf1\x39\x34\xe6\x6a\x50\xcb\x8a\x43\x21\xde\x86\xdc\x80\x80\x5d\x57\xeb\x15\xb0\xc6\x30\xf0\x74\xe7\xd6\x1c\xd2\xfb\xcc\xcc\x36\x5f\xa4\xbc\x38\x5b\xd8\xc2\x38\x5b\xd8\xb8\xd9\x79\x42\x38\x36\x62\xc6\xd0\xf4\xb6\x23\x77\x9f\x9a\xc2\xb0\x93\x96\x07\x0e\xad\x0b\xca\xe5\x60\xf1\xef\x31\x37\x56\xd7\x2e\x53\x65\x2f\x82\xe5\xd6\x6c\x85\xed\xb2\xce\x95\x0f\x29\x35\x17\xd5\x53\x6a\xae\xba\x48\xa9\x4c\xc1\x72\x0a\xdc\x2e\x6b\xe7\xba\x40\x84\x6f\x6e\x2e\x4b\x4a\x9f\x72\x13\x47\xfd\x3d\xc8\x90\x8f\x76\xd6\xf9\x75\xaf\xdc\x23\x61\x4d\x77\xf8\x21\x2b\xc1\x2b\x37\x5f\xa9\x9c\x3a\xc6\xe1\xfe\xd6\x69\xaf\xfe\xf4\x08\x2f\xf0\x1f\x79\xdd\x2e\x1f\xfd\x50\xe5\x87\xa6\x46\xdf\xe2\xec\xd4\xd4\xcd\x91\xf1\x89\xf7\x07\x0a\x44\xcc\x2c\xb8\x7a\x78\x61\x8a\x44\x4f\xf6\x38\x29\x87\x36\x1c\x67\x89\x7b\x8e\x87\x59\xce\x39\x87\x76\x6d\xf0\x25\x80\x94\x91\x5e\x36\x44\x07\xfc\xeb\x80\xe6\x17\x4c\x4e\x0d\xa4\xc7\xaa\x40\x32\x07\xee\x8a\x3d\x76\x43\xf3\x6e\xf4\xda\x88\x37\x86\x1c\xee\xe3\xa6\xd4\x5d\xba\x0f\x79\x0b\xed\xcf\xaf\x40\xc6\xed\x9f\x90\xb2\xd0\x8b\x87\x49\x1a\xef\xb8\x46\xee\x7c\xb3\x91\x69\x93\x5d\x50\x42\xe4\x27\x28\x36\x50\x03\x4b\xa1\x63\x73\x26\x8a\x1f\x84\xfe\xde\xe2\x12\xed\x97\x62\x67\x9d\xf2\x49\x1f\x53\x14\xba\x86\xbc\xa8\xbf\xc9\x0b\x87\xd2\x21\xbe\x5f\x9c\xf9\x10\xb7\x67\x76\xe6\x31\x40\x65\x8a\xd8\xf0\x1f\xf0\x29\x2e\xf1\x33\x8e\x10\x05\xe4\xc1\x2b\x34\x3b\xb0\xee\x1a\x52\xf0\x26\xcd\x0e\xe9\xd8\xf9\xa2\x78\x96\xcf\x4d\xce\xd2\xbd\xc5\xef\xf9\x16\x32\xec\xd1\xa3\x9e\xf3\x23\x95\x54\x9d\xcd\x29\xe4\xaf\x97\xef\x47\x90\x6e\xc0\x5b\xf3\x1a\xc8\xb0\xfe\x8c\x0a\x18\x4c\x40\x12\xac\x3f\x8f\xa0\x67\x28\x04\xe7\xcc\xd0\x03\xbc\x8c\xc3\x53\x97\x55\x36\x78\x0d\x87\xc7\x2e\xee\xa0\x00\x17\x41\xea\x15\x39\xe4\x9f\x89\x97\x50\xc0\x5b\x8a\xc2\x88\x81\x56\x71\x2f\x42\x12\x70\xd8\x3f\x8b\x93\xfb\x69\x69\x47\x8e\xee\xb7\x09\x3c\xbd\x98\xcb\x21\x29\xa1\xf0\x22\x0e\x3c\x59\x14\xc6\x71\x47\x2b\xc2\xf9\x61\x27\xc8\xe9\xa8\xc7\x93\x02\x6f\xd0\x93\xfd\x30\xde\x99\xcf\x62\x22\x48\xd9\xca\x1d\x91\x07\x02\x3d\xa7\xef\x12\x08\xcd\x4c\xee\x65\x17\xa1\xde\x70\xc2\xa4\x56\x93\xd7\x69\xf8\x51\xc0\x34\x0d\x64\x0c\x9f\x11\x3f\x72\x60\x9d\x67\x24\x19\x7a\xd7\xdb\x7b\x1d\xec\xcc\x09\xfe\x8a\x93\xd2\xc9\x4d\xdf\x09\x73\x80\x60\xd4\xe9\x1c\xb5\x77\x3a\x2a\x1f\x2e\xf0\xab\x38\x4f\x98\x6e\xc0\x46\x27\xd8\x44\x3a\x6e\x94\xe7\x12\x91\x9b\x6f\xe2\xc8\x84\xdb\xf3\x57\x17\x71\x6c\xe8\xa2\x7d\xd4\x99\x4e\xaf\x54\xbc\x96\xe7\xde\x5c\xea\x95\x2a\x80\xe1\x1c\x76\x21\x42\x22\x1c\xd7\x37\xe2\xbd\xe9\x0e\xa3\x4e\xe4\xa8\xb8\x27\x09\x53\x1c\x19\x8d\xb6\x12\xd9\xc0\x50\xc2\xfc\x90\x07\x68\x3e\xa5\x32\x70\x3e\xa6\xc6\xd4\x79\xdd\xb3\x27\x68\xda\xd9\xaf\x38\x69\x34\xa2\x2b\xd5\x62\x38\x8c\xb6\x8e\x25\x78\x5c\x5f\x86\x1c\x71\x8e\x39\x89\x64\x82\xb4\x14\x1b\x0e\xc2\xd2\x6c\xa3\x01\x2a\xb4\x07\x23\xc7\x6c\xf4\x7a\x83\xef\x4b\x65\xad\xa2\x00\x32\x07\xe3\xe5\x67\xf1\x3a\xe4\xe7\x18\x80\x57\xc4\xd2\x20\x18\x3a\xe6\x13\xb1\xd4\x25\x26\xe0\xd9\x2e\x85\xd3\x66\xdd\x51\xe4\x94\x1f\x8e\x16\xaf\xb3\x88\x3c\x19\xa2\x8b\x94\x5a\x62\x83\x32\xf3\xd8\x42\xb8\x96\x88\xe3\x25\x26\x7c\x4f\xca\x0f\x0c\xd8\x52\x14\x5c\x37\xb5\xec\xd7\x6c\x50\x71\xde\xaf\xf1\xb9\x68\x57\xa0\x46\xd6\x52\x65\xa7\x46\x64\x36\xc7\xe7\x06\x81\xe3\x4b\x75\x39\x34\x3e\x14\xc3\xda\xa2\x99\x12\xe8\xb6\x93\x15\xb8\x40\x37\x9e\x64\xcf\x3d\x53\x04\x63\x28\xa6\x12\x18\x3e\xf1\xc1\x02\x6c\x38\x42\xe0\xaf\x2e\x66\x80\x73\xd1\x38\x2e\x21\x10\x89\x67\x97\x10\x40\x31\xb3\x98\x33\x8a\x90\x3c\xf5\x30\x0f\xce\x16\x8b\xa6\xa7\x90\xfc\xf0\xef\x56\xba\xbb\xe8\x86\x51\xdc\xb1\x85\x34\xd7\x6c\x54\x3b\x74\x24\xd4\xd0\xcf\x04\xaf\x3e\xfb\x60\xd0\x83\xdb\x37\x64\x60\x10\x14\x3b\xb8\x10\x05\x05\x7e\x16\x00\xea\xb3\x6a\x86\xcc\xb6\xef\x57\xfa\x66\x63\x9a\x84\xc6\x06\xd7\xcd\xc1\xa0\x4a\xff\x8a\x52\x32\x98\xb9\x07\xfc\x43\xd3\x59\xce\x25\x11\xfd\x68\xfd\xb1\xfa\x30\x11\x55\x70\x58\x09\x6e\x20\xfc\x0e\x36\xdf\x38\x8c\x7c\x58\x02\x2c\x86\x42\xa2\x80\xc5\x75\x0c\x91\x83\x31\x91\x08\x92\xc3\xe5\x44\x78\x76\xc4\x60\xce\x0d\x66\x28\xd6\xaa\x3a\x60\x28\x64\x47\x47\x3e\x7c\x80\xc4\x12\xf3\x5b\x55\x40\xbc\xe0\xcf\x02\x46\x1b\x52\x96\x50\x16\x09\x6c\x6f\x28\x8d\x51\x66\x8e\x39\x41\x89\x49\xc0\x1c\x67\x0d\x15\x86\x37\x9c\x32\x86\x0c\x35\x23\xd0\x79\xd7\x4d\x46\x23\x97\x8f\xf2\x34\x7c\x63\x24\xf3\x9e\xca\xfa\x34\x9e\xc6\x90\x65\x77\xb8\x8a\x17\x93\xd6\x46\x4d\x24\xcf\x48\x70\x33\xfa\x92\xb5\x7a\xf5\x91\xc6\xfe\x53\x08\xc7\xc1\x86\x11\xc1\x1e\x29\xb3\x01\x2e\xa2\x26\x9e\x60\xb0\xbf\xaa\x57\x26\x7b\xb6\x8b\xbe\x8a\x42\xe8\x75\x47\x81\x81\x4f\x3e\xfe\xf8\xc9\x85\xc8\xc0\xde\x66\xf8\x3e\xfe\xf4\x09\x50\x7e\xfc\xd3\x27\xc2\xca\x8f\xc0\x33\xd6\xf4\xc2\x6d\x56\xe2\xc7\x4f\xee\xa9\xeb\x9b\xa7\xe3\xb2\x42\xfa\x11\x18\x64\xfe\x8f\x84\x78\x27\x7b\x55\x87\x30\x52\xbc\x28\x29\x59\x3b\x6b\x38\x94\x9c\x72\x0a\x23\x88\xf1\x6b\x69\xf1\x91\x13\x6e\x51\xf8\x1e\x8d\x0f\xf5\x72\xbe\x8b\x69\xc8\x78\x9c\xe9\xe5\xb9\x33\xf1\x1b\x85\x92\xe5\x97\xe8\xb2\x02\x4f\xc9\xaa\xe0\x29\x15\xfd\x17\xec\x28\x20\xf8\xad\xc2\x30\xb4\x09\x01\x45\xa5\xfd\x16\x04\x14\xbf\x36\x61\x08\xf1\x6c\xbf\xa9\x11\x1c\x50\x36\x35\x83\x12\x54\x2b\x50\x0f\xff\xf5\x88\x68\x3c\x46\xf1\x7a\x7f\x0b\x0b\xb0\x78\xa6\x37\x47\x88\xef\xdf\x1d\x1d\x9d\x09\x3a\x1a\xa4\x6f\xc6\xc6\x43\x35\x46\x17\x47\xec\x9b\x11\xe2\x3b\x7c\x13\x7c\xfc\x34\xf3\xb7\x77\x96\x06\x2f\x3e\xa3\x1d\x46\xcd\xa8\x7d\x7c\x83\xfb\x9f\xdd\x34\x4c\x62\x62\x1d\x81\x90\x04\xfc\xbc\xb9\x7f\x4a\x9b\x7b\x16\x5d\xd8\xdc\x18\x81\xda\xcb\x75\xb6\xb3\xe5\xba\xe8\x2c\x36\x11\xcb\x70\x3f\xa7\x7b\x3f\x47\x18\x7c\xa2\x11\x65\x68\x1c\xe2\xfc\xc6\x96\x61\x8c\x6d\xde\xe2\x14\x58\x7b\xf2\x9e\xe1\xdc\x86\xce\x5f\x02\xe6\xc8\xdb\xec\xd4\x91\x45\xab\xfb\x67\x67\x81\x08\x29\x55\x55\xd4\x18\xe3\x9a\x73\x9d\x30\xf3\xa8\xef\x54\xa6\x51\xff\xc4\xb0\x1e\xad\x30\x5e\x20\x72\x85\xf8\x62\x1a\x8f\x7a\x56\xf1\xb7\x8d\x7d\x51\x5b\xf5\xd1\x5b\xdb\x7d\xaa\xe4\x1a\x66\x42\xae\x6d\x05\xb9\x1c\xfe\x02\x01\x8d\xdd\x57\xf4\x09\xbf\x7e\x04\x42\xfe\x23\xbf\xfc\x21\x4e\x5c\xf5\xe3\x16\x13\xe8\x29\x65\x4c\xd8\x60\xc2\xc6\x0e\xf8\x90\xdb\x8f\x2d\x7e\xb6\xf2\x80\x5f\x7b\xfc\xda\x2b\x75\x47\x85\x91\x41\xf8\x51\x6c\xad\xf1\x1b\x4c\x39\xe0\xf7\x41\x49\x7e\x06\x8e\x5e\x18\x39\x83\x23\x22\x7c\x9c\xb8\x8a\xaa\xe3\xf4\xf0\x71\xe2\x2a\xa8\x95\x53\xe9\xe7\x89\xab\x5a\x79\xe0\x24\xfc\x75\xe2\x2a\xa8\x9e\x93\xe8\xe7\x09\xf2\x75\x7e\x13\x10\xd2\xef\x13\x57\x41\x3b\x38\x91\x7e\x9e\xb8\xaa\x97\xfb\x3a\xb5\x8b\x7f\x61\x6a\x6a\x15\xff\xaa\xaa\x8f\x6d\x6f\x77\xbf\x5b\xa3\x3e\x55\xe1\x4a\x7c\xab\x1c\x5b\xf8\xbf\xe8\xed\x2e\x38\xf6\xa8\x9e\xae\x49\xf1\x8d\x5a\x7c\x50\xa5\xb3\xb2\x5d\x54\x1c\x45\xad\xd6\x66\x37\x44\x35\x3f\x5b\x53\x3d\xf6\x0c\x96\x5e\x19\x21\x1f\xf9\xc3\x4e\x2d\x2a\xbc\xe2\xf2\xd6\xd6\x4b\xe4\xe6\xf1\x72\x0b\xed\xe4\xbe\xff\xfb\xdf\x11\x5e\xff\xae\xfe\xf1\x0f\xf1\xf6\x97\x1f\x84\xfa\xdc\x28\xd5\x3a\xb1\x65\xdb\xdd\x00\xb6\x95\x9f\x5f\x16\x90\x8b\x8a\x1d\xce\xd9\x58\x94\x1c\xce\xb1\xfa\xea\xff\x0b\x00\x00\xff\xff\x24\x46\xcd\x42\xeb\x01\x01\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4455,7 +4455,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 65986, mode: os.FileMode(420), modTime: time.Unix(1544504234, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 66027, mode: os.FileMode(420), modTime: time.Unix(1545166272, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/pkg/form/auth.go b/pkg/form/auth.go index 65f5eac00..47ecc813a 100644 --- a/pkg/form/auth.go +++ b/pkg/form/auth.go @@ -41,7 +41,7 @@ type Authentication struct { TLS bool SkipVerify bool PAMServiceName string - GithubApiEndpoint string `binding:Required;Url` + GitHubAPIEndpoint string `form:"github_api_endpoint" binding:"Url"` } func (f *Authentication) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { diff --git a/routes/admin/auths.go b/routes/admin/auths.go index a217174a1..6837bace2 100644 --- a/routes/admin/auths.go +++ b/routes/admin/auths.go @@ -6,17 +6,18 @@ package admin import ( "fmt" - + "net/http" "strings" "github.com/Unknwon/com" "github.com/go-xorm/core" + log "gopkg.in/clog.v1" + "github.com/gogs/gogs/models" "github.com/gogs/gogs/pkg/auth/ldap" "github.com/gogs/gogs/pkg/context" "github.com/gogs/gogs/pkg/form" "github.com/gogs/gogs/pkg/setting" - log "gopkg.in/clog.v1" ) const ( @@ -141,11 +142,11 @@ func NewAuthSourcePost(c *context.Context, f form.Authentication) { ServiceName: f.PAMServiceName, } case models.LOGIN_GITHUB: - config = &models.GITHUBConfig{ - ApiEndpoint: f.GithubApiEndpoint, + config = &models.GitHubConfig{ + APIEndpoint: strings.TrimSuffix(f.GitHubAPIEndpoint, "/") + "/", } default: - c.Error(400) + c.Error(http.StatusBadRequest) return } c.Data["HasTLS"] = hasTLS @@ -163,7 +164,7 @@ func NewAuthSourcePost(c *context.Context, f form.Authentication) { Cfg: config, }); err != nil { if models.IsErrLoginSourceAlreadyExist(err) { - c.Data["Err_Name"] = true + c.FormErr("Name") c.RenderWithErr(c.Tr("admin.auths.login_source_exist", err.(models.ErrLoginSourceAlreadyExist).Name), AUTH_NEW, f) } else { c.ServerError("CreateSource", err) @@ -227,15 +228,11 @@ func EditAuthSourcePost(c *context.Context, f form.Authentication) { ServiceName: f.PAMServiceName, } case models.LOGIN_GITHUB: - var apiEndpoint = f.GithubApiEndpoint - if !strings.HasSuffix(apiEndpoint, "/") { - apiEndpoint += "/" - } - config = &models.GITHUBConfig{ - ApiEndpoint: apiEndpoint, + config = &models.GitHubConfig{ + APIEndpoint: strings.TrimSuffix(f.GitHubAPIEndpoint, "/") + "/", } default: - c.Error(400) + c.Error(http.StatusBadRequest) return } diff --git a/templates/.VERSION b/templates/.VERSION index 9f1b25ca7..5f92e3b19 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.11.82.1218 +0.11.83.1218 diff --git a/templates/admin/auth/edit.tmpl b/templates/admin/auth/edit.tmpl index 85ae3eb03..c09615dbf 100644 --- a/templates/admin/auth/edit.tmpl +++ b/templates/admin/auth/edit.tmpl @@ -168,14 +168,15 @@ {{end}} - - {{if .Source.IsGITHUB}} - {{ $cfg:=.Source.GITHUB }} + + {{if .Source.IsGitHub}} + {{ $cfg:=.Source.GitHub }}
- +
{{end}} +
diff --git a/templates/admin/auth/list.tmpl b/templates/admin/auth/list.tmpl index df5b3b78b..0c42fdad5 100644 --- a/templates/admin/auth/list.tmpl +++ b/templates/admin/auth/list.tmpl @@ -45,7 +45,7 @@ - + diff --git a/templates/admin/auth/new.tmpl b/templates/admin/auth/new.tmpl index 0fd768f0f..3f07ea248 100644 --- a/templates/admin/auth/new.tmpl +++ b/templates/admin/auth/new.tmpl @@ -157,11 +157,13 @@
- + +
- +
+
diff --git a/templates/user/auth/login.tmpl b/templates/user/auth/login.tmpl index 2f99d981a..583d3e18e 100644 --- a/templates/user/auth/login.tmpl +++ b/templates/user/auth/login.tmpl @@ -19,7 +19,7 @@
{{if .LoginSources}}
- +