From a617d52374e937db0edacfba2a26bdd14a05538e Mon Sep 17 00:00:00 2001 From: Unknwon Date: Thu, 6 Apr 2017 00:14:30 -0400 Subject: [PATCH] 2fa: initial support (#945) --- Makefile | 3 + cmd/web.go | 17 +- conf/locale/locale_en-US.ini | 36 +++- gogs.go | 2 +- models/errors/two_factor.go | 33 +++ models/models.go | 4 +- models/two_factor.go | 201 ++++++++++++++++++ models/user.go | 9 +- pkg/bindata/bindata.go | 4 +- pkg/context/context.go | 5 + pkg/tool/tool.go | 11 +- public/css/gogs.css | 37 ++-- public/less/_form.less | 15 +- public/less/_user.less | 25 ++- routers/repo/http.go | 9 +- routers/user/auth.go | 196 ++++++++++++----- routers/user/setting.go | 165 +++++++++++++- templates/.VERSION | 2 +- .../user/auth/{signin.tmpl => login.tmpl} | 0 templates/user/auth/two_factor.tmpl | 28 +++ .../user/auth/two_factor_recovery_code.tmpl | 28 +++ templates/user/settings/navbar.tmpl | 3 + templates/user/settings/profile.tmpl | 1 - templates/user/settings/security.tmpl | 51 +++++ .../user/settings/two_factor_enable.tmpl | 28 +++ .../settings/two_factor_recovery_codes.tmpl | 36 ++++ 26 files changed, 837 insertions(+), 112 deletions(-) create mode 100644 models/errors/two_factor.go create mode 100644 models/two_factor.go rename templates/user/auth/{signin.tmpl => login.tmpl} (100%) create mode 100644 templates/user/auth/two_factor.tmpl create mode 100644 templates/user/auth/two_factor_recovery_code.tmpl create mode 100644 templates/user/settings/security.tmpl create mode 100644 templates/user/settings/two_factor_enable.tmpl create mode 100644 templates/user/settings/two_factor_recovery_codes.tmpl diff --git a/Makefile b/Makefile index 507632dd..760f4e60 100644 --- a/Makefile +++ b/Makefile @@ -25,6 +25,9 @@ check: test dist: release +web: build + ./gogs web + govet: $(GOVET) gogs.go $(GOVET) models pkg routers diff --git a/cmd/web.go b/cmd/web.go index 6442a115..92022786 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -190,8 +190,13 @@ func runWeb(ctx *cli.Context) error { // ***** START: User ***** m.Group("/user", func() { - m.Get("/login", user.SignIn) - m.Post("/login", bindIgnErr(form.SignIn{}), user.SignInPost) + m.Group("/login", func() { + m.Combo("").Get(user.Login). + Post(bindIgnErr(form.SignIn{}), user.LoginPost) + m.Combo("/two_factor").Get(user.LoginTwoFactor).Post(user.LoginTwoFactorPost) + m.Combo("/two_factor_recovery_code").Get(user.LoginTwoFactorRecoveryCode).Post(user.LoginTwoFactorRecoveryCodePost) + }) + m.Get("/sign_up", user.SignUp) m.Post("/sign_up", bindIgnErr(form.Register{}), user.SignUpPost) m.Get("/reset_password", user.ResetPasswd) @@ -212,6 +217,14 @@ func runWeb(ctx *cli.Context) error { m.Combo("/ssh").Get(user.SettingsSSHKeys). Post(bindIgnErr(form.AddSSHKey{}), user.SettingsSSHKeysPost) m.Post("/ssh/delete", user.DeleteSSHKey) + m.Group("/security", func() { + m.Get("", user.SettingsSecurity) + m.Combo("/two_factor_enable").Get(user.SettingsTwoFactorEnable). + Post(user.SettingsTwoFactorEnablePost) + m.Combo("/two_factor_recovery_codes").Get(user.SettingsTwoFactorRecoveryCodes). + Post(user.SettingsTwoFactorRecoveryCodesPost) + m.Post("/two_factor_disable", user.SettingsTwoFactorDisable) + }) m.Group("/repositories", func() { m.Get("", user.SettingsRepos) m.Post("/leave", user.SettingsLeaveRepo) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 81ad23b2..36c2c382 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -168,6 +168,14 @@ reset_password_helper = Click here to reset your password password_too_short = Password length cannot be less then 6. non_local_account = Non-local accounts cannot change passwords through Gogs. +login_two_factor = Two-factor Authentication +login_two_factor_passcode = Authentication Passcode +login_two_factor_enter_recovery_code = Enter a two-factor recovery code +login_two_factor_recovery = Two-factor Recovery +login_two_factor_recovery_code = Recovery Code +login_two_factor_enter_passcode = Enter a two-factor passcode +login_two_factor_invalid_recovery_code = Recovery code has been used or does not valid. + [mail] activate_account = Please activate your account activate_email = Verify your email address @@ -255,6 +263,7 @@ profile = Profile password = Password avatar = Avatar ssh_keys = SSH Keys +security = Security repos = Repositories orgs = Organizations applications = Applications @@ -324,10 +333,29 @@ no_activity = No recent activity key_state_desc = This key is used in last 7 days token_state_desc = This token is used in last 7 days -manage_social = Manage Associated Social Accounts -social_desc = This is a list of associated social accounts. Remove any binding that you do not recognize. -unbind = Unbind -unbind_success = Social account has been unbound. +two_factor = Two-factor Authentication +two_factor_status = Status: +two_factor_on = On +two_factor_off = Off +two_factor_enable = Enable +two_factor_disable = Disable +two_factor_view_recovery_codes = View and save your recovery codes in a safe place. You can use them as passcode if you lose access to your authentication application. +two_factor_enable_title = Enable Two-factor Authentication +two_factor_scan_qr = Please use your authentication application to scan the image: +two_factor_or_enter_secret = Or enter the secret: +two_factor_then_enter_passcode = Then enter passcode: +two_factor_verify = Verify +two_factor_invalid_passcode = The passcode you entered is not valid, please try again! +two_factor_enable_error = Enable Two-factor authentication failed: %v +two_factor_enable_success = Two-factor authentication has enabled for your account successfully! +two_factor_recovery_codes_title = Two-factor Authentication Recovery Codes +two_factor_recovery_codes_desc = Recovery codes are used when you temporarily lose access to your authentication application. Each recovery code can only be used once, please keep these codes in a safe place. +two_factor_regenerate_recovery_codes = Regenerate Recovery Codes +two_factor_regenerate_recovery_codes_error = Regenerate recovery codes failed: %v +two_factor_regenerate_recovery_codes_success = New recovery codes has been generated successfully! +two_factor_disable_title = Disable Two-factor Authentication +two_factor_disable_desc = Your account security level will decrease after disabled two-factor authentication. Do you want to continue? +two_factor_disable_success = Two-factor authentication has disabled successfully! manage_access_token = Manage Personal Access Tokens generate_new_token = Generate New Token diff --git a/gogs.go b/gogs.go index ba12e239..11b7f407 100644 --- a/gogs.go +++ b/gogs.go @@ -16,7 +16,7 @@ import ( "github.com/gogits/gogs/pkg/setting" ) -const APP_VER = "0.11.4.0405" +const APP_VER = "0.11.5.0406" func init() { setting.AppVer = APP_VER diff --git a/models/errors/two_factor.go b/models/errors/two_factor.go new file mode 100644 index 00000000..02cdcf5c --- /dev/null +++ b/models/errors/two_factor.go @@ -0,0 +1,33 @@ +// Copyright 2017 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package errors + +import "fmt" + +type TwoFactorNotFound struct { + UserID int64 +} + +func IsTwoFactorNotFound(err error) bool { + _, ok := err.(TwoFactorNotFound) + return ok +} + +func (err TwoFactorNotFound) Error() string { + return fmt.Sprintf("two-factor authentication does not found [user_id: %d]", err.UserID) +} + +type TwoFactorRecoveryCodeNotFound struct { + Code string +} + +func IsTwoFactorRecoveryCodeNotFound(err error) bool { + _, ok := err.(TwoFactorRecoveryCodeNotFound) + return ok +} + +func (err TwoFactorRecoveryCodeNotFound) Error() string { + return fmt.Sprintf("two-factor recovery code does not found [code: %s]", err.Code) +} diff --git a/models/models.go b/models/models.go index 2eea56b1..98a4fd23 100644 --- a/models/models.go +++ b/models/models.go @@ -27,7 +27,7 @@ import ( "github.com/gogits/gogs/pkg/setting" ) -// Engine represents a xorm engine or session. +// Engine represents a XORM engine or session. type Engine interface { Delete(interface{}) (int64, error) Exec(string, ...interface{}) (sql.Result, error) @@ -64,7 +64,7 @@ var ( func init() { tables = append(tables, - new(User), new(PublicKey), new(AccessToken), + new(User), new(PublicKey), new(AccessToken), new(TwoFactor), new(TwoFactorRecoveryCode), new(Repository), new(DeployKey), new(Collaboration), new(Access), new(Upload), new(Watch), new(Star), new(Follow), new(Action), new(Issue), new(PullRequest), new(Comment), new(Attachment), new(IssueUser), diff --git a/models/two_factor.go b/models/two_factor.go new file mode 100644 index 00000000..2f6e7991 --- /dev/null +++ b/models/two_factor.go @@ -0,0 +1,201 @@ +// Copyright 2017 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package models + +import ( + "encoding/base64" + "fmt" + "strings" + "time" + + "github.com/Unknwon/com" + "github.com/go-xorm/xorm" + "github.com/pquerna/otp/totp" + log "gopkg.in/clog.v1" + + "github.com/gogits/gogs/models/errors" + "github.com/gogits/gogs/pkg/setting" + "github.com/gogits/gogs/pkg/tool" +) + +// TwoFactor represents a two-factor authentication token. +type TwoFactor struct { + ID int64 + UserID int64 `xorm:"UNIQUE"` + Secret string + Created time.Time `xorm:"-"` + CreatedUnix int64 +} + +func (t *TwoFactor) BeforeInsert() { + t.CreatedUnix = time.Now().Unix() +} + +func (t *TwoFactor) AfterSet(colName string, _ xorm.Cell) { + switch colName { + case "created_unix": + t.Created = time.Unix(t.CreatedUnix, 0).Local() + } +} + +// ValidateTOTP returns true if given passcode is valid for two-factor authentication token. +// It also returns possible validation error. +func (t *TwoFactor) ValidateTOTP(passcode string) (bool, error) { + secret, err := base64.StdEncoding.DecodeString(t.Secret) + if err != nil { + return false, fmt.Errorf("DecodeString: %v", err) + } + decryptSecret, err := com.AESGCMDecrypt(tool.MD5Bytes(setting.SecretKey), secret) + if err != nil { + return false, fmt.Errorf("AESGCMDecrypt: %v", err) + } + return totp.Validate(passcode, string(decryptSecret)), nil +} + +// IsUserEnabledTwoFactor returns true if user has enabled two-factor authentication. +func IsUserEnabledTwoFactor(userID int64) bool { + has, err := x.Where("user_id = ?", userID).Get(new(TwoFactor)) + if err != nil { + log.Error(2, "IsUserEnabledTwoFactor [user_id: %d]: %v", userID, err) + } + return has +} + +func generateRecoveryCodes(userID int64) ([]*TwoFactorRecoveryCode, error) { + recoveryCodes := make([]*TwoFactorRecoveryCode, 10) + for i := 0; i < 10; i++ { + code, err := tool.GetRandomString(10) + if err != nil { + return nil, fmt.Errorf("GetRandomString: %v", err) + } + recoveryCodes[i] = &TwoFactorRecoveryCode{ + UserID: userID, + Code: strings.ToLower(code[:5] + "-" + code[5:]), + } + } + return recoveryCodes, nil +} + +// NewTwoFactor creates a new two-factor authentication token and recovery codes for given user. +func NewTwoFactor(userID int64, secret string) error { + t := &TwoFactor{ + UserID: userID, + } + + // Encrypt secret + encryptSecret, err := com.AESGCMEncrypt(tool.MD5Bytes(setting.SecretKey), []byte(secret)) + if err != nil { + return fmt.Errorf("AESGCMEncrypt: %v", err) + } + t.Secret = base64.StdEncoding.EncodeToString(encryptSecret) + + recoveryCodes, err := generateRecoveryCodes(userID) + if err != nil { + return fmt.Errorf("generateRecoveryCodes: %v", err) + } + + sess := x.NewSession() + defer sess.Close() + if err = sess.Begin(); err != nil { + return err + } + + if _, err = sess.Insert(t); err != nil { + return fmt.Errorf("insert two-factor: %v", err) + } else if _, err = sess.Insert(recoveryCodes); err != nil { + return fmt.Errorf("insert recovery codes: %v", err) + } + + return sess.Commit() +} + +// GetTwoFactorByUserID returns two-factor authentication token of given user. +func GetTwoFactorByUserID(userID int64) (*TwoFactor, error) { + t := new(TwoFactor) + has, err := x.Where("user_id = ?", userID).Get(t) + if err != nil { + return nil, err + } else if !has { + return nil, errors.TwoFactorNotFound{userID} + } + + return t, nil +} + +// DeleteTwoFactor removes two-factor authentication token and recovery codes of given user. +func DeleteTwoFactor(userID int64) (err error) { + sess := x.NewSession() + defer sess.Close() + if err = sess.Begin(); err != nil { + return err + } + + if _, err = sess.Where("user_id = ?", userID).Delete(new(TwoFactor)); err != nil { + return fmt.Errorf("delete two-factor: %v", err) + } else if err = deleteRecoveryCodesByUserID(sess, userID); err != nil { + return fmt.Errorf("deleteRecoveryCodesByUserID: %v", err) + } + + return sess.Commit() +} + +// TwoFactorRecoveryCode represents a two-factor authentication recovery code. +type TwoFactorRecoveryCode struct { + ID int64 + UserID int64 + Code string `xorm:"VARCHAR(11)"` + IsUsed bool +} + +// GetRecoveryCodesByUserID returns all recovery codes of given user. +func GetRecoveryCodesByUserID(userID int64) ([]*TwoFactorRecoveryCode, error) { + recoveryCodes := make([]*TwoFactorRecoveryCode, 0, 10) + return recoveryCodes, x.Where("user_id = ?", userID).Find(&recoveryCodes) +} + +func deleteRecoveryCodesByUserID(e Engine, userID int64) error { + _, err := e.Where("user_id = ?", userID).Delete(new(TwoFactorRecoveryCode)) + return err +} + +// RegenerateRecoveryCodes regenerates new set of recovery codes for given user. +func RegenerateRecoveryCodes(userID int64) error { + recoveryCodes, err := generateRecoveryCodes(userID) + if err != nil { + return fmt.Errorf("generateRecoveryCodes: %v", err) + } + + sess := x.NewSession() + defer sess.Close() + if err = sess.Begin(); err != nil { + return err + } + + if err = deleteRecoveryCodesByUserID(sess, userID); err != nil { + return fmt.Errorf("deleteRecoveryCodesByUserID: %v", err) + } else if _, err = sess.Insert(recoveryCodes); err != nil { + return fmt.Errorf("insert new recovery codes: %v", err) + } + + return sess.Commit() +} + +// UseRecoveryCode validates recovery code of given user and marks it is used if valid. +func UseRecoveryCode(userID int64, code string) error { + recoveryCode := new(TwoFactorRecoveryCode) + has, err := x.Where("code = ?", code).And("is_used = ?", false).Get(recoveryCode) + if err != nil { + return fmt.Errorf("get unused code: %v", err) + } else if !has { + return errors.TwoFactorRecoveryCodeNotFound{code} + } + + recoveryCode.IsUsed = true + if _, err = x.Id(recoveryCode.ID).Cols("is_used").Update(recoveryCode); err != nil { + return fmt.Errorf("mark code as used: %v", err) + } + + return nil +} diff --git a/models/user.go b/models/user.go index 1c733d6e..d9a1e2a0 100644 --- a/models/user.go +++ b/models/user.go @@ -31,8 +31,8 @@ import ( "github.com/gogits/gogs/models/errors" "github.com/gogits/gogs/pkg/avatar" - "github.com/gogits/gogs/pkg/tool" "github.com/gogits/gogs/pkg/setting" + "github.com/gogits/gogs/pkg/tool" ) type UserType int @@ -404,6 +404,11 @@ func (u *User) IsPublicMember(orgId int64) bool { return IsPublicMembership(orgId, u.ID) } +// IsEnabledTwoFactor returns true if user has enabled two-factor authentication. +func (u *User) IsEnabledTwoFactor() bool { + return IsUserEnabledTwoFactor(u.ID) +} + func (u *User) getOrganizationCount(e Engine) (int64, error) { return e.Where("uid=?", u.ID).Count(new(OrgUser)) } @@ -479,7 +484,7 @@ func IsUserExist(uid int64, name string) (bool, error) { if len(name) == 0 { return false, nil } - return x.Where("id!=?", uid).Get(&User{LowerName: strings.ToLower(name)}) + return x.Where("id != ?", uid).Get(&User{LowerName: strings.ToLower(name)}) } // GetUserSalt returns a ramdom user salt token. diff --git a/pkg/bindata/bindata.go b/pkg/bindata/bindata.go index e3363c8f..b593959e 100644 --- a/pkg/bindata/bindata.go +++ b/pkg/bindata/bindata.go @@ -4372,7 +4372,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xeb\x72\x1c\x37\x96\x30\xf8\x3f\x9f\x02\xd6\x04\x43\x76\x04\x55\x0e\x77\x7f\xf3\xed\x86\xc3\x74\x2f\x4d\x59\x97\x19\x4a\xe2\x88\x52\xf7\x37\xab\x50\xa4\x51\x99\xa8\x2a\x0c\xb3\x80\xec\x04\x92\xa5\x72\x47\xbf\xc1\x3e\xc0\x3e\xdf\x3e\xc9\xc6\xb9\xe0\x96\x99\x45\x49\xdd\xf3\xfd\x21\x2b\x81\x83\x83\xfb\xc1\xb9\xe1\x40\xf6\x7d\xdd\x2a\xd7\x88\x0b\x71\x29\x7a\xa9\x4d\xa7\x9c\x13\x4e\x75\x9b\x27\x3b\xeb\xbc\x6a\xc5\x73\xed\x85\x53\xc3\xbd\x6e\x54\x55\xed\xec\x5e\x89\x0b\xf1\xc2\xee\x55\xd5\x4a\xb7\x5b\x5b\x39\xb4\xe2\x42\x3c\x0d\xbf\x2b\xf5\xa9\xef\xec\x00\x40\xbf\xd2\xaf\x6a\xa7\xba\x1e\xca\xa8\xae\xaf\x9c\xde\x9a\x5a\x1b\x71\x21\x6e\xf5\xd6\x88\x97\x86\x52\xec\xe8\x43\xd2\x9b\xd1\x53\xda\xd8\x87\xa4\xf7\x7d\x35\xa8\xad\x76\x5e\x0d\xe2\x42\xbc\xe5\x9f\xd5\x41\xad\x9d\xf6\x50\xd3\x5f\xe8\x57\x75\xaf\x06\xa7\x2d\x60\xff\x33\xfd\xaa\x7a\xb9\x05\x80\x1b\xb9\x55\x95\x57\xfb\xbe\x93\x58\xe0\x1d\xff\xac\x3a\x69\xb6\x23\xc1\x5c\xf3\xcf\xaa\x19\x94\xf4\xaa\x36\xea\x20\x2e\xc4\x15\x7e\xac\x56\xab\x6a\x74\x6a\xa8\xfb\xc1\x6e\x74\xa7\x6a\x69\xda\x7a\x4f\xdd\x7c\xef\xd4\x20\x38\x5d\x48\xd3\x0a\x48\xc7\x2e\xa8\xb6\xd6\xa6\x96\x8e\xfb\xa1\x5a\xa1\x8d\x90\xae\x42\x54\x46\xee\x43\x69\xf8\x59\xa9\xbd\xd4\x1d\x8c\x1a\xfc\xaf\x7a\xe9\xdc\xc1\xe2\xd0\xde\xf0\xcf\x6a\x50\xb5\x3f\xf6\x0a\x87\xe0\xc9\xbb\x63\xaf\xaa\x46\xf6\xbe\xd9\x49\x68\x26\xfd\xaa\xaa\x41\xf5\xd6\x69\x6f\x87\x23\xc2\x85\x8f\xca\x0e\x5b\x69\xf4\xef\xd2\xd3\xf8\xbc\xc9\x3e\xab\xbd\x1e\x06\x0b\x43\xfb\x0a\x7f\x54\x46\x1d\x6a\xc0\x23\x2e\xc4\x6b\x75\xc8\xb1\x40\xce\x5e\x6f\x07\x1a\x45\xc8\x7c\x85\x5f\x80\x85\xf2\x18\x13\x65\x45\x6c\x1b\x3b\xdc\x71\xea\x33\xf8\x39\x41\x69\x87\x2d\xe7\x96\xed\x92\x46\x6e\x15\xe7\xbe\xc2\x8f\x02\xc0\x55\xb2\xdd\x6b\x53\xf7\xd2\x28\x18\xba\x4b\xf8\x12\x37\xf0\x55\xc9\xa6\xb1\xa3\xf1\xb5\x53\xde\x6b\xb3\x85\x39\xb8\xa4\x24\x71\xcb\x49\x55\x96\x17\xd3\x8e\x76\x8c\xb3\x2c\x2e\xc4\x7f\xda\x71\x10\x37\xf4\x49\x79\x59\x21\xcc\x8c\x25\x2b\xd9\x78\x7d\xaf\xbd\x56\x54\x59\xf8\xa8\xfa\xb1\xeb\xea\x41\xfd\x75\x54\xce\x43\xd6\xcd\xd8\x75\xe2\x2d\x7f\x57\xda\xb9\x11\x4b\xbc\xc4\x1f\x55\xd5\x48\xd3\x60\x77\xae\xf0\x47\x55\x7d\xd0\xc6\x79\xd9\x75\x1f\x2b\xfe\x01\xc0\xf4\x8b\xc6\xc9\x6b\x8f\x8d\xe5\x44\x71\xeb\x55\xef\x60\xa0\xc5\x33\x3d\x38\xff\xc4\xeb\xbd\x12\x6f\x47\x53\xb5\xb6\xb9\x53\x43\x0d\x1b\x12\xb7\xd2\xcb\x8d\x38\xda\xf1\xf1\xa0\xc4\x30\x1a\xa3\xcd\x56\x3c\xb7\x5b\x27\xb4\x71\xba\x55\xe2\x29\x42\x9f\x8b\xbe\x53\xd2\x29\x31\x28\xd9\x8a\x9f\xa4\xf0\x72\xd8\x2a\x7f\xf1\xa8\x5e\x77\xd2\xdc\x3d\x12\xbb\x41\x6d\x2e\x1e\x9d\xb9\x47\x3f\x3f\x1f\x75\xab\x3a\x6d\x94\xfb\xe9\x7b\xf9\xb3\x68\xe4\xa0\x36\x63\xd7\x1d\xc5\x5a\x6d\x60\xaf\x1c\xed\x28\x9a\x9d\x34\x5b\xd8\x27\x47\xbf\x83\x0a\xb5\x11\x7e\xa7\x9d\x80\x8d\xfa\x4d\x05\xa3\xa4\xbd\xaa\xdb\x75\x20\x4a\xd8\x20\x4c\x1e\x94\x13\xaf\x8e\xb7\xff\x71\x7d\x2e\x6e\xac\xf3\xdb\x41\xe1\xef\xdb\xff\xb8\xd6\x5e\xfd\xf1\x5c\xbc\xba\xbd\xfd\x8f\x6b\x61\x07\xf1\x4e\x3f\xfd\x65\x55\xb5\xeb\x3a\x8c\xcb\x53\xe9\xe5\x1a\xba\x10\xe7\x0a\x32\x69\x2b\xc5\x3c\xdc\x50\x40\xf2\x90\xbc\x39\x8f\x9b\x94\x37\xe8\xe2\x76\x6c\xd7\x35\xef\xe1\x88\xe3\x35\x6c\xe4\x76\x9d\x06\xf8\x86\x86\x6e\x74\x4a\xbc\x7c\xfd\xfa\xcd\xd3\x5f\x84\x32\x5b\x6d\x94\x38\x68\xbf\x13\xa3\xdf\xfc\x9f\xf5\x56\x19\x35\xc8\xae\x6e\x34\x8c\xcd\xe0\x94\x17\x1b\x3b\x50\x4f\x57\x95\x73\x5d\xbd\xb7\x2d\xd4\x72\x7b\x7b\x2d\x5e\xd9\x56\x55\xbd\xf4\x3b\x6c\x88\xdf\x55\xee\xaf\x1d\x8c\x57\xac\xf0\xdd\x4e\x09\x5c\xba\x08\x64\x37\x61\x78\x44\xcb\x6d\x5c\x89\x9f\xd6\xc3\xcf\x59\xbb\xe4\xda\xd9\x6e\xf4\x5c\xe2\xb0\x53\x06\xe7\xc9\x79\x39\x78\x21\x5d\x20\xfd\xab\x4a\x0d\x43\xad\xf6\xbd\x3f\xc2\xec\x70\x1b\xa6\xd8\x09\x49\x23\x8d\xb1\x5e\xac\x95\x40\xf8\x55\x65\x6c\x4d\x3b\x15\xc8\x66\xab\x9d\x5c\x77\xaa\x26\x92\x3e\x04\x8a\xf4\x9f\xb0\x38\xa8\x20\x43\x88\x02\x02\x46\x0c\x8e\x09\xa4\xce\xb0\x72\xa4\x11\x88\x54\xf0\x56\xcf\x5b\x18\xe8\x42\x9c\x35\x22\x0d\x31\x61\xd6\xc2\x2a\x4c\x43\x58\x33\x97\x7d\xdf\xe9\x86\xaa\x7e\x4e\x79\x69\xf9\xc0\xa1\xc9\x73\x9f\xc3\xe1\xf4\x87\xbc\x6c\x11\x8c\x1e\x86\x74\x10\x05\x0d\xc6\xf2\x3b\x35\x28\xb1\x1b\xb7\x74\x70\x74\x76\x6c\xbf\x41\x0a\x1e\xc6\x37\xd1\x49\xf1\xd6\x5a\x4f\x73\x1e\x01\x52\x15\x97\x5d\x87\xe7\xf4\xa0\xf6\xd6\xc3\xc0\x71\x31\xa0\x45\x07\xdd\x75\xd0\x53\x27\xef\x55\x2b\xbc\xa5\xfd\xd6\xea\x41\x35\x80\x78\x55\x0d\xa3\xa9\x79\xb1\xbf\x1d\x0d\x2d\xf8\x90\x56\xae\x2c\x84\xda\x8f\xce\x8b\x9d\xbc\x57\x30\xf0\xc0\x2c\x78\xbb\xd8\x4e\xec\xd2\x30\x1a\xdc\xc2\xab\xaa\xb5\x7b\x89\x07\xff\x53\xfc\xc1\xdf\x39\x7e\xed\x84\xdc\x6c\x54\xe3\x9d\xb8\xbd\x7d\x21\x9a\xce\x1a\x25\xde\xbf\xbd\x76\xb0\x0d\x76\x75\x6f\x07\x64\x12\x6e\x5f\x88\x1b\x3b\xf8\x98\x96\x0d\x34\x40\x98\x71\xbf\x56\x83\x38\xec\x74\xb3\xa3\x61\x87\x12\xb0\x8a\xd5\x20\xb4\x13\xa3\xd3\x66\x7b\x2e\x3a\x05\x3d\xd0\x9e\x16\x00\xf4\x21\xac\x3a\x00\xdf\x28\xe9\xc7\x41\xe1\xa1\x5f\xaf\x47\xdd\x79\x6d\x6a\xa8\x90\xf1\x20\x59\x10\xbf\x50\x06\x96\xb8\xc5\x8c\x13\xf0\x75\x6f\x7b\x62\x67\x70\x57\xad\xb3\x72\x8c\x10\xb6\x3c\x4c\xa0\xed\x15\xad\x77\xc7\x4d\x82\x05\x37\x6a\xb7\x13\x9b\xc1\xee\x85\x3b\x3a\xaf\xf6\x58\xb0\x95\x6a\x6f\xcd\xaa\xda\x79\xdf\x87\xb1\x79\xf1\xee\xdd\x0d\x0d\x4e\x4c\x7d\x68\x74\x64\xb6\x76\x71\x95\x74\xc0\x58\x19\x01\x68\x61\x19\x8f\x43\x37\x59\xe1\xef\xdf\x5e\x87\x9c\x13\x33\x07\x4d\xf8\x1e\xfe\xdc\xa6\x09\xc4\x95\xe0\xec\x5e\x1d\x70\xbd\x6b\x23\x90\xd9\x59\x55\x9d\xdd\xd6\x83\xb5\x3e\x2c\xf7\x6b\xbb\xa5\x25\x5e\x64\xa4\x9a\x9e\x86\x45\x0b\x83\x73\x18\x80\xf9\xeb\xec\x16\x09\x1e\x8c\xd7\xaa\x52\x06\x49\x4b\x63\x8d\xb3\x9d\x0a\x94\xf3\x57\x4c\x15\x57\x94\x4a\x44\x74\x01\x32\xce\xd2\x4b\xa0\x2c\xad\xc6\x1e\x7b\x4b\xf4\x14\x00\xce\x85\xec\x9c\x15\xfd\xa0\x8d\x87\x8a\x71\x8e\x18\xc3\xaa\xaa\x6c\x0f\x25\x32\x1a\xf2\x86\x13\x12\xe1\xc0\x7e\xc7\x7c\x64\xf5\x70\xe5\xe8\x26\x3b\x9c\xdc\xde\xf7\x35\x9f\x44\xb7\xaf\xde\xdd\xd0\x71\x84\xa9\xb8\x08\x2e\xc4\xb3\xc1\xee\x53\x42\x1a\x9f\x57\x80\x0f\x61\x64\xdb\x0e\xca\xb9\x73\xf1\xf6\xd9\x95\xf8\xd7\x3f\xfe\xe1\x0f\x2b\xf1\xd2\x03\xd9\x03\x4a\xf0\x5f\xb0\x83\x25\xcf\x42\x02\xb5\x83\xf0\x3b\x25\x1e\x01\x19\x7b\x24\x7e\xc2\xdc\xff\x4b\x7d\x92\xfb\xbe\x53\xab\xc6\xee\x7f\x86\x55\xba\x97\x7e\x55\x41\x8e\x1a\x02\xd1\xb8\x55\xa6\x55\x03\x33\xae\x9c\x95\x91\x5e\xce\xce\xd8\x58\xe2\xdf\x61\xec\x37\x7a\xd8\xa7\x09\x0a\x9c\x3d\xcc\x14\xe4\x04\x2e\x50\x77\xb5\xb1\x5e\x6f\x8e\x09\x14\x7b\xfa\x1a\x12\x79\x69\x56\xbc\xd3\xf8\xb8\x8a\x63\x4c\xfb\x12\x57\xe0\x1b\xbf\x53\x43\x18\x6e\x97\xc6\xdb\x6e\x36\xc0\xb4\x4c\x56\xcb\x1b\x4a\xa5\xd5\x92\x83\xc4\x65\xf2\x94\x09\xc6\xd5\xd3\xd7\x42\xdd\x2b\x03\x0b\xbb\x1f\x6c\x3b\x36\xb8\x72\xc2\x8a\xe9\xc4\xa0\x9c\x1d\x87\x46\xf1\x42\x8d\x04\x19\x9a\x06\x54\xbf\x91\x5d\x77\x5c\x55\xe1\x60\xdc\x0e\xf2\x5e\x7a\x39\x64\x55\x3c\x0f\x49\xdc\xfa\x19\xec\xac\x51\xb1\x04\xf4\xbc\x19\x9d\x07\xea\x81\xad\x70\xd4\x28\xca\x76\x42\x0e\x4a\x8c\x7d\x67\x65\xab\x5a\xb1\x3e\x22\x8d\x77\xb0\x16\x5a\xb5\x91\x63\xe7\x57\xd5\x46\xb5\x40\x94\x54\x5b\x73\x5d\x9d\xb5\x77\x58\x19\x0f\xd5\xb3\x00\x20\x2e\x19\xe9\x35\x42\x9c\x2a\x19\x1b\xcb\xe5\x23\x58\x6c\x14\xd7\xe0\x2d\xb2\x28\x29\xdf\xf6\xca\x70\x37\x02\x63\x22\x80\xef\x68\x85\x35\xa2\xd3\x6b\xee\x74\x1a\xcb\x09\x93\x11\x46\xe7\x16\xe4\xdb\x3c\x6f\xb1\xc0\x6c\x50\x71\xc1\xbb\x69\xd9\x73\x61\x4d\x77\x64\x66\x04\xb6\x18\x09\x90\x81\x2f\x71\x89\x2c\x45\x71\x2d\x50\x24\x96\xda\xca\xfc\x58\xed\x5b\x62\x7b\xc5\xbd\xec\x74\x0b\x18\x03\x02\x38\x2d\x96\xdb\xb2\xaa\x98\x57\xae\x59\xd2\xae\xef\x35\xca\xb1\x71\x8b\x11\x4a\x96\xbe\x61\x84\xff\x0c\x00\x20\x20\xbb\xc5\xb2\xb1\x35\x6f\xa0\x93\x2e\xca\xb1\xb4\x4e\xa0\xbb\x58\x03\xf0\xef\xee\x5c\xdc\x6b\x64\x03\x78\x91\xe3\xb8\xac\x81\xc7\xec\x14\x54\xe5\x94\x42\x0c\x42\x9b\xef\xc7\x9e\xca\xac\x58\x88\x63\xb9\x2a\xf0\xfd\xc0\x0e\xb6\x56\x00\x97\x86\xbc\x06\x50\x5a\x1e\xd6\x09\xdf\x27\x06\xbd\xdd\x79\x61\xec\xe1\x9c\x06\xe5\xb0\xb3\x0a\xf6\xfc\xcb\xa7\x17\x3f\x50\x3b\xb6\xc0\x79\xc4\x42\xc0\xb3\xc8\xd1\x5b\xa0\x2f\xbc\xf5\xa8\x09\x91\xf7\x43\xc8\x99\xb8\x48\x40\x53\xb9\x7d\xc6\x6a\x46\x42\xc7\xf4\x2d\xcf\x63\xc2\x96\x60\xa8\x74\x90\xfd\xa9\x62\x22\xa4\x2c\xeb\xd5\x5b\x8b\xb2\x66\x90\xed\x80\x99\xaa\xbc\x72\xbe\xde\x6a\x5f\x6f\x80\xda\x02\xe2\x67\x80\x00\x78\x3b\xe5\xbc\x78\xbc\xd5\xfe\xb1\x68\xec\x7e\x2f\x4d\xfb\xa3\x38\xbb\x67\x31\xe1\x8f\x40\x46\x61\x2b\xea\x0e\x67\x84\x25\xd8\x41\x91\x34\x10\xb4\x27\xad\x55\x0e\x07\xde\x8d\x3d\x32\x16\x51\xc4\x62\x49\xb0\xb5\x07\x03\x04\x03\x8f\x0b\xbb\xd9\xe8\x46\xcb\x4e\xac\xb5\x91\xc3\x31\x62\xc1\x63\xe8\xcc\x9d\x8b\xd7\x6f\xde\x21\xe0\xd6\x02\xdf\xd3\x06\x80\x55\xa5\x0d\x2e\x6c\x10\x27\x78\xf2\x73\x59\x2a\x24\x69\x6a\x4b\x63\x07\x38\xfb\xb1\x37\xa1\xe0\x09\x4e\x19\x18\x07\x12\x44\x34\xc8\xb2\x08\x8b\xe5\x22\x53\x0b\xc3\xb0\x97\xbe\xd9\x31\xcb\x8b\xcb\x46\x3b\xf3\xd8\x63\x4b\x9b\x71\x18\x94\xf1\x98\xfc\xa3\x38\x73\xe2\xc9\xcf\xe2\xcc\xc5\x6a\xf3\x93\x18\xcf\x67\x38\x8e\xc5\x46\xab\xae\x0d\xad\x4d\x75\x02\xd7\x4d\x27\xdd\x76\x3e\x5b\x90\x29\x28\x73\xa4\xfd\x5b\xf4\xaf\xd8\x18\x71\x79\x84\x65\x9f\x0d\x50\xde\xc9\xb0\x6e\xdc\x48\x2b\xfd\x42\xfc\x45\x75\x8d\xdd\xab\x6f\xc4\x5f\x14\x88\xfa\xdb\x0e\x67\x4e\x7a\x96\xc7\xad\x53\xb8\xaa\xce\x69\xa3\x6d\x46\x83\x67\x86\x97\x77\x0a\x45\xf8\x34\x51\x4b\xec\xda\xc9\xc1\xae\x3e\xec\xec\x5e\x7d\xac\x46\x12\x86\x6c\xd7\x46\x71\x1a\xb7\x90\x1d\x88\xff\x88\xb2\x75\x82\x89\xbb\xc3\x1d\xb4\x6f\x76\x75\x54\x34\xc2\x40\x7a\xf5\x09\x19\x23\xcc\x4a\x7a\x47\xd8\x5a\x90\x55\xed\x8f\xb8\x2e\xa0\xe3\xaf\x8e\x69\x59\x68\xe5\x2a\xb7\xb3\x07\xd4\xda\x45\x88\xdb\x9d\x3d\xa0\xbe\xae\x10\x99\x56\xab\x55\xd5\xd8\xae\x93\x6b\x0b\xb3\x72\x9f\xe0\xaf\xf2\xd4\x12\xf9\xfe\x58\xdb\x61\xcb\xd5\x96\x5a\xaa\xfd\x91\x15\x63\x9c\x4b\x8a\x31\x57\x21\x79\x65\x8d\x2a\x52\xe1\x33\x57\xb1\x3e\x68\xa5\x4d\x8d\xea\xa6\x50\xf3\x4b\x43\xc2\x4c\xde\xce\xaa\xfa\xc0\xda\xd6\x8f\x55\x80\x2b\xda\x44\x34\x9a\x06\xdd\x15\x2a\x40\x37\xd1\x01\xba\xca\x29\x39\xe0\x86\xb8\xc5\x1f\x55\xf5\x41\x8e\x7e\xf7\x31\xd3\x86\xd6\x61\xe5\x05\xad\x28\x6a\xec\x98\x4c\x26\xb6\x6e\xa7\x7a\xe0\x00\xf7\x0e\x97\x6c\x37\x28\xd9\x1e\x59\x5e\x8c\x8b\xf7\x4f\x74\x00\x69\x03\x64\xfb\x9b\xca\x59\xa0\x20\xf5\x57\xa2\xf8\x45\x9b\x96\xca\x97\x87\x37\xa9\x69\xf7\x3d\x2e\x13\x3b\x0c\xc7\xf3\x52\x93\xb0\x93\x4e\xac\x95\x32\x41\xe2\x6b\x57\x41\x4f\x03\xcb\x4b\x36\x44\x04\x50\xb5\x8c\x3b\x90\x4a\xda\x19\x57\x01\x2d\x24\xba\xcd\xb5\x10\x19\x77\x81\xc1\x04\xce\xea\xab\xab\x18\xd4\x5e\x81\x88\x56\xef\x49\xd1\x4b\x5f\xe2\x95\xaa\x36\x76\xd8\xe2\xde\xa3\xcd\x71\x21\x9e\x61\x42\xda\x2d\x00\xa0\x7c\x7e\xdc\x30\x44\x48\xf9\x53\x50\xac\xd7\xc6\x1e\x50\xe1\x0a\x2c\xd7\x74\x52\xc6\x1e\x06\x75\x15\x8e\x2f\xe2\x84\x90\x09\x77\xca\xf8\x34\xb4\x97\xc2\xa8\x83\xc8\xa1\x78\x00\xe2\xf8\x02\x3c\x90\xb9\x9f\xd6\x3f\x9f\xb9\x9f\xbe\x5f\xff\x1c\x4f\x90\x66\xa7\x9a\x3b\x5a\xd0\xda\xac\xed\x27\xd4\xee\xa0\x2a\x50\x09\x03\x1b\xfc\xac\x15\x3b\x3b\x0e\x2c\x61\x81\x04\xe2\x15\xe6\x16\x33\xd9\x0f\x16\x68\xdc\x8a\x54\xaf\x8a\x76\x4c\x5a\xa5\xa8\x83\x85\x75\x8a\xc7\x5c\x58\xa8\xfd\x60\x77\x7a\xad\x3d\x90\x33\x54\x48\x5c\xe3\xff\x1b\x4e\x56\xed\x04\x22\xe3\x48\x86\x48\x7c\xb5\x13\x7d\x2c\x00\x8d\x44\xd0\xd4\x3f\x9e\xe5\x34\xc3\x30\xb3\x38\x7e\x9d\xde\x6b\x3f\x5b\xa0\x40\x8a\x25\x2f\x74\x56\x15\x87\xb9\xc1\x3e\xa4\xd1\x1d\x54\xa3\x8c\xef\x8e\x71\x45\x1d\xa4\xf6\xe2\x8f\x62\xaf\xcd\xe8\x41\x0c\xde\x29\x23\xfc\x70\x14\x12\xb8\x9e\x55\xb5\x93\xae\x1e\x0d\x4f\x93\x6a\xc3\x92\x7d\xa1\xf1\x70\x86\x7a\xc3\xc6\xca\xa0\x4a\xd1\x50\x7c\x1b\x67\xf0\xbb\x15\x2b\x8d\xb1\x14\x1c\x98\xd0\x1e\x0d\x72\x8c\x5c\x5a\x0b\x76\x10\x46\xd1\x08\x61\xff\x01\x0c\x96\x8d\x35\x2a\x0d\x56\xa7\x9b\x3b\x60\xe0\x61\x7e\xd7\xa3\xf7\x16\xa4\xd4\x0e\xd6\x20\x95\x09\x6d\xbe\x42\x40\xd4\x21\x24\x7c\x47\x9a\x96\x72\x94\x2a\x2c\x06\x10\x7e\xb9\xf0\xb7\x83\xfa\x2e\x15\x8f\x5b\x06\x4b\x30\x0a\x2a\x9d\xed\xa6\xb7\x98\x49\x16\x81\xb0\xe7\xc2\xd1\xd8\xb0\x8e\x36\xce\xe6\x50\x8e\x06\xe6\xc3\xc6\x50\x9f\x7a\x3d\x80\xbc\x32\x24\x46\x61\x35\xa9\x2b\x09\xf4\xf3\x1e\xfb\xb2\xc5\xe9\xf4\xf4\xd6\xd6\x6e\x47\x7a\xa0\xd0\x3c\xd1\x29\xb3\x2d\x14\xb2\x68\xdd\xc3\x25\xf2\x3f\x57\x95\xb1\xa6\x46\xe9\x33\xdb\x33\xaf\xad\x79\x82\x69\x51\x7c\x09\xa5\x59\x73\x1f\x2a\x04\x34\x83\x1d\xb7\x3b\xd6\xef\x55\x1f\x60\xd4\x3e\x56\x3c\x15\x2a\xc3\xc9\x0b\x35\xe4\x84\x29\xa3\xed\x18\xe1\x03\x13\xfc\x67\x35\x80\xa8\x8f\x40\xc5\x32\x3c\x35\x23\xe5\x80\x44\xda\x9c\x18\xa0\xb7\x39\xcd\xe0\xe4\xcd\xd8\x9d\x8b\x03\x71\x46\xa9\x4c\x54\x33\x30\xcf\x04\xab\x92\xcc\x9a\xd5\x87\xbd\x6d\x65\xf7\xb1\x3a\xa2\xb1\xe6\x3f\x95\xab\x0c\x1a\xc8\x6c\xb5\xb7\x2d\x15\x7a\x85\x3f\xaa\xea\xc3\xc6\x0e\xfb\x8f\x15\x9c\xba\xaf\x27\xd2\x02\x1c\xcf\x9c\x96\x71\xac\x98\xf5\x6b\x6e\x00\x8c\x7d\xbe\x59\x10\x2c\xde\xaa\x64\x07\xc4\x5f\xb1\xf3\xb7\xb7\x2f\xde\x05\xc5\xc7\xed\x0b\x71\xa7\x18\xf7\x0b\xef\x7b\xf7\x1e\xd5\x79\xa4\x9b\x7b\xff\xf6\xba\xba\x91\x47\xe0\xe2\x29\x99\x3f\x30\xe3\x9d\x92\x7b\x6e\x24\xfc\x24\x14\x97\xa3\xdf\x71\x22\xfc\xb4\x43\xae\xc8\xae\x90\x35\xfd\xb5\x10\x63\x68\x17\x55\xaf\xd5\xe1\x97\x41\x9a\x26\x14\x06\x9e\x61\x8d\x09\x54\xf2\xca\xee\xf7\xda\xdf\x8e\xfb\xbd\x44\x9b\x25\x7d\x0b\x47\x09\x9c\xfd\x4a\x39\x47\x56\x5a\xce\xde\x53\x02\x67\x5f\xed\xac\x6e\xb2\xdc\x06\xbf\xab\x77\x83\x52\x5c\xeb\xb3\x60\x13\xa9\x90\x4f\x24\x26\x86\x7e\x55\x51\xec\x55\x6c\xbc\xfc\x6d\x66\x1f\xf8\xad\x92\x5d\xbf\x93\xc8\x89\x66\x60\xa8\x0a\x5f\xb3\x80\x2e\x10\x04\x37\xf6\xb8\x57\x83\x6e\x50\x89\x22\xdd\xee\xdb\x27\xf5\x77\x68\xdb\x91\x8d\x57\x83\x2b\x91\xb5\xd6\xff\x63\x08\xe1\x37\xed\xca\x93\x78\x5d\xf7\x0f\x37\x77\x86\x1d\x52\x10\x9f\x82\x8a\x9c\xfe\x3d\x0c\x57\x81\x19\xd2\xc5\x19\x40\xa0\xe4\x92\xa0\x22\x10\x9e\x8c\x20\xc5\x78\x01\x54\xc1\x83\x78\x55\xf4\x61\x2f\x3f\x7d\xae\xe0\xde\x2e\x94\x23\xd5\x6a\x2a\xc4\x92\x98\xe4\xde\x16\x94\x64\xf5\x5b\x35\x0e\x0f\x00\xbf\x7f\x7b\xbd\xfa\xad\xd2\xa6\xe9\xc6\xf6\x64\x43\xdc\xb8\x76\x7e\x00\x09\xec\xf1\x99\x7b\x0c\x28\xcd\x9d\xb1\x07\x13\xe1\xdf\xd3\xb7\xc0\xef\x1f\x83\xb1\xbe\xd6\x86\x65\xd9\x64\xb6\x17\xad\x6e\xe1\x2c\x45\x99\x74\x95\x68\x7a\x2e\xa7\x46\x42\x80\x0a\x3d\xd6\x23\x44\x5a\x08\xbc\x26\x8a\xec\x72\xaf\x56\xc9\xc1\xa0\x06\x3e\xac\x06\x51\xce\xe4\xb2\x17\x1c\x44\x81\xdb\x40\x4e\x0d\x21\x56\x64\x59\x9a\x97\x9b\x50\xaa\x93\xc5\xed\xb0\x5d\x28\xfd\x66\x6e\xf5\x3a\x51\xde\x2b\xb9\x5f\x40\x10\x69\xd0\xc9\x82\x34\xf7\x58\x68\x74\x28\x61\x17\x44\x74\x5e\x0e\xa0\x56\x69\x94\xe2\x80\xe7\x73\x93\x4b\xaa\x71\x9c\x4b\x6d\xc4\xaa\x52\xc6\xab\x61\x40\x47\x8f\x4c\x27\xc1\x3a\x22\x3e\xf7\xf6\x20\x49\xbb\x11\xce\x70\x90\xba\x89\x8b\x2d\x47\x14\x18\x2a\x44\xa5\xb0\x8a\xd3\xe8\xed\xc1\xc0\x31\xf5\x39\xfc\x08\xf6\x95\xa8\x73\x15\xd6\x1c\x31\x23\x8f\x40\xa7\xd0\x46\xfd\x8a\xfa\xa4\xd1\x82\xf1\x5c\xdf\x2b\xd6\xb0\x44\xc5\x12\xe6\xad\xaa\x4e\x3a\x0f\x42\x33\xf5\x8a\xc4\x1d\x7b\x0f\x3b\x0a\xea\x83\x5c\x2a\x47\x16\x0d\xee\x14\x2c\x12\xd6\xd5\xc8\xae\xb3\x07\xd5\x9e\x0b\x89\x3c\xcd\xa0\x68\x83\xca\xee\x20\x8f\x0e\xf5\x8e\x81\xc8\x58\x13\xc6\x04\x28\x88\x39\x8a\x2d\xb6\x2a\x97\x88\x57\x55\x52\xf0\xb8\x5d\x0d\x47\x67\xe4\xe7\x0e\xa8\x38\x41\x0a\xc1\x9a\xcc\xfb\x8c\x49\xe1\x93\xf6\x47\x10\xdf\x47\xd2\xe4\x52\x76\x86\x08\xdd\x18\xf8\x54\x59\x28\x7b\x0e\x7c\xaf\x38\x28\x21\x9d\x1b\xf7\x3c\xd6\x1a\xc5\x0c\x6c\x52\xa6\x7a\x1b\xd7\x9d\x7a\x42\xf2\x93\xf6\xab\x0a\x84\xf4\xa4\x58\x82\x93\x59\x19\x1f\xcc\x75\x94\x4e\xea\x18\xe7\x75\xd7\xc1\x48\x07\xd7\x9e\x42\x9e\xc1\x5c\xdc\x27\x38\x4c\x6e\xa7\x7b\x61\xd1\x70\x92\x0f\x61\x5a\xb6\x99\xe4\xe0\xad\x68\x15\xca\x67\x76\x10\x7e\x90\xc6\x6d\x14\x5a\x92\xf6\x62\xa3\x07\x98\x67\xaa\x1a\x04\x11\x72\xe5\x39\x51\x33\x89\xba\x58\x75\x7e\x40\xe0\xdc\x65\x13\x55\x56\x4d\x76\x5c\x34\x57\x60\x1b\x70\x54\x13\x26\x17\xda\x00\xcb\x6c\x36\x04\x68\xb9\x2c\xac\xf2\x8b\xe3\xb0\x29\xb4\x2e\x54\x3f\xae\xb4\xcf\xf4\xbb\x22\x57\x99\x9a\xd8\x9d\x62\x57\xbc\xc3\x9c\xc0\x08\x4d\x37\x46\xf5\x01\xd6\xfd\xc7\x8a\x58\xee\x3a\x9a\x83\xae\x88\x05\x27\xfe\x19\x13\xab\xff\xb2\xda\xd4\x68\xdb\xf8\x37\xab\x0d\x1a\x42\xaa\xc2\xfc\x3f\x51\x09\xb1\x93\xd2\x11\xfd\x12\xd6\x9d\x6e\x82\xa7\xd2\xb1\xda\x58\xdc\x4f\xa8\x31\x7a\x16\x7e\x57\xce\x4b\x20\x13\x6c\xbc\x86\x5f\x85\x0a\x8a\x0a\x91\x7e\xf2\x59\xf8\xcd\xa9\x31\xa9\x1a\x4d\x4c\x79\xcf\x3f\xab\x0a\xb8\xe4\x15\xd2\x5f\x60\xec\xd1\x16\x96\x51\x5d\x38\x54\x61\xfd\x87\xbc\x55\x06\xdf\x4b\xef\xd5\x60\x48\x9d\x4d\x44\x20\x2f\xca\xd9\x11\x05\x6e\x5c\x02\x83\xb1\x0d\x1e\x5c\x1f\xab\xe4\xe7\x15\x5c\xbc\x96\xf4\xf8\x71\xf8\xc9\xba\x55\xf1\xae\x76\xcc\x64\xff\xbb\x3a\xba\x65\xf5\x1b\xeb\x03\x27\x2e\x6b\xc9\x9c\xee\x4a\xeb\xba\xab\x78\x3d\x5d\x88\xa7\xf4\x23\xa8\x2c\xaa\x1e\xa7\x2a\xf3\x4b\xe3\xb9\x8b\xcd\x66\xb7\xc4\x5c\x55\x51\x8a\xf0\xda\x09\x42\x82\xfc\x43\x30\x41\xe2\x69\xb9\xb1\x03\xd2\xc4\x68\x4f\x51\x1d\x1a\xdb\x4c\x66\x5e\x75\xe7\x58\x0e\xc0\x0e\x6a\x1d\x6c\x6e\xc9\x59\x61\x2f\x5b\x25\xee\xb5\x8c\x7a\xad\x8c\x8b\x89\xc7\x6c\x50\x86\x15\x62\x26\x0a\x30\xa4\xa8\x0c\x4c\x4c\x98\x52\x6f\x83\xd0\xe9\x77\x4a\x93\xc9\xcb\x20\x83\xb3\x19\xbb\x2e\x9c\x82\xcf\xc6\xae\x23\xd7\x9b\xb9\x43\x28\x54\xc1\xa6\xbf\x6b\xfe\x59\x8d\x7d\x0b\xe2\x66\x1a\xcb\xf7\x98\x10\xc7\xb2\xcc\xcf\xc4\x48\x1c\xd5\x50\x2c\x2a\xb9\x08\xbc\xcd\xe4\xca\xee\xb8\x0a\x3b\x77\xc1\xd1\x93\x37\x71\x3b\x05\x49\x2a\x21\xa4\x4a\xdc\x71\x9c\x28\xf2\xad\xc0\xa1\x3d\xc8\xa3\xd8\xd9\x83\xe8\xb4\xb9\x73\x3c\x53\x30\x4e\xb9\x48\x8d\xaa\x3b\xaf\xcd\xa8\x58\xc8\x81\x9f\x73\xb7\x42\xb6\xc5\xb2\x65\x76\x7d\x0c\x8a\x12\xb2\xdd\xf2\x62\x17\xeb\xa3\x40\x39\xee\xb4\x11\x78\x6a\xfd\x0d\xc6\xdf\x60\xd4\x44\xdb\x73\xa2\x61\xef\x9d\x12\x57\x64\x8f\xe6\xfd\xd4\xec\xac\x75\xac\x61\x4e\x94\x0e\xd2\x50\x55\xc4\x84\x8e\xa7\x25\xe1\xa1\x59\xbb\x0c\x76\x71\xdc\xd3\xbc\x83\x6a\xb6\xe0\x24\x68\xde\x50\x57\x6c\xd9\xb9\x0c\x38\xc9\xee\x1d\xfa\x84\xf4\xa4\xd6\x7b\x12\x35\xdf\x07\xab\x38\x4e\x78\x14\x11\x30\x7b\x55\xb6\x67\xba\x4a\xb8\xde\x60\xa2\xf9\xcc\x62\x09\x4b\x21\x37\x14\xd2\xf4\x47\x1a\x64\xbb\x82\x41\x0b\xfd\x88\xf9\x30\x78\x59\xfe\x6b\x34\xe9\x46\x8d\x08\xec\xb1\x7a\x02\xc2\x4a\x84\x02\x72\x91\x0f\x0e\x75\x9d\xe4\x81\x27\xad\x9f\xed\x98\x50\xee\x20\x5d\xd1\x71\x5e\xe3\xed\x2a\xf8\xfe\x09\x63\x0f\x64\x1f\x46\x27\x2d\x72\x54\x33\x68\x5c\x26\x14\x19\x51\xe1\x4a\xff\x59\x92\x92\x30\x93\x10\xe1\xa2\xec\x70\x49\x84\x53\xb9\xe0\x86\x1c\xf3\xd9\x13\xb9\xa0\xaf\x2a\xf8\xf6\xe4\x14\xb8\x1f\x34\x2a\x35\x4a\x4a\x3c\xa3\xbd\x05\x9d\x45\x32\x6b\xd1\x53\x25\x91\xd7\x55\x15\x50\xc1\x49\x85\xbf\x42\x4a\x54\x9b\xdd\x2a\x74\xd7\xe4\xe4\xb0\x11\x42\x2e\xad\xff\xd8\xc6\x4e\x31\x55\xa4\xbe\x3e\xe5\x84\x49\x7e\xe8\x0c\x65\x87\x09\x59\xe8\xcd\x00\x7c\xbb\x8a\x07\x87\x36\xe4\x28\x14\xcd\xc0\x05\x75\x12\x4f\x91\x5c\x89\x83\x24\xeb\x40\x20\x56\x7f\x9a\xd6\x9e\xd6\xd1\xaf\xa5\x5d\x81\xfa\x56\xee\xa2\x6f\x2a\xd9\xb6\xb8\xc6\x93\x31\xbd\xc5\xc5\x53\xea\x10\x01\x2a\x87\x20\x2d\x55\x4c\xad\x0b\xab\x87\x23\x45\xd1\x97\x5b\x3a\x80\xe3\xf8\x6f\x30\x72\x14\x55\x25\x23\x47\x6c\xe4\x64\x87\xcd\x7a\x39\xdf\x6a\xb2\x6d\x91\xf9\xe1\xb5\x9c\xb1\x30\xbc\x9a\x23\x27\x03\xb5\x90\xcc\x02\xc3\xf3\xef\xea\x88\xfc\x0e\xaf\x04\x3c\x9a\xb4\x13\x12\x5d\x05\xd1\xbf\x98\x04\x18\x07\x92\x8b\x6d\x34\xce\x3f\x3a\x37\x97\x73\x7e\x89\x12\x9a\x53\x0c\x8b\xbc\xa0\x34\x47\xe0\xed\xc3\x5e\x57\x7b\x18\x07\x72\xd5\x88\x8e\xa5\x33\x9b\xe7\x39\x8b\x45\x3b\xbd\xdd\x75\x47\xa1\xf7\xbd\x1d\x3c\xae\xa4\x60\xd1\x4e\x52\x2b\x7c\x0d\xaa\xb1\x5b\xa3\x7f\xc7\x81\xdd\x93\x27\x69\x54\xaf\xff\xe4\xfc\x60\xcd\xf6\xe7\xa7\x16\xc4\xc9\x3b\x20\x3f\x3b\x7b\xf8\xd3\x4f\xdf\x73\xba\xb8\xc2\x29\xb4\xa3\x17\xcf\xb5\x7f\x31\xae\x1f\x3b\xb1\x1d\x75\x8b\x47\xee\x4f\x32\x73\x7d\x67\xdf\x14\x72\xf3\x3d\x98\x38\x2c\xe8\x08\x6f\x07\xe1\x6c\x77\xaf\x26\x45\xec\x7e\x4f\xd3\xbb\xee\xd4\x9e\x20\xb1\xfd\xe8\xce\xa2\x0c\x8e\x9c\x1a\x78\x7c\x6e\x6f\x5f\xac\xe2\x12\x4f\xf3\xc3\xd3\x16\x78\xd2\x42\x07\xc2\x3c\x22\x00\x37\xac\xf4\x4c\x07\x11\x2a\x40\x42\x29\xe4\x3f\xe6\xa5\x70\x1e\x1d\xf0\x2c\x33\xed\x0b\x0a\x2a\x80\x22\x14\x17\x17\xd0\x0e\xe2\xc3\x20\xad\x99\xa9\x59\x79\x61\x65\x8b\x17\xce\x9e\xa0\xa6\x46\x5e\x3d\x36\x0f\x97\xeb\x64\x7f\x33\x45\xa3\xbe\x33\x3d\x0b\x1d\xc8\x28\x1a\x8f\x48\xa2\x69\x53\x98\x82\xaa\x29\xa2\x69\xa1\x15\x39\x35\x23\xcf\x3d\xa2\x68\xb4\x20\x95\x43\x7a\xfd\x85\xd4\x6c\x56\x6f\xea\x78\xa8\xee\x0b\x28\x1a\xf6\xe9\x12\x87\xc3\x1a\xd2\x98\xf0\x44\x5d\xb3\x7e\x04\x33\x8c\xad\x33\xc9\xee\xb5\x65\x33\xa1\x08\x89\x38\x27\xce\x03\xc7\x92\x6f\x65\x68\x04\xfa\x44\x93\x4f\x17\xaa\x5c\xfe\x0f\xd1\xca\xa3\xab\xbc\xbd\x53\x66\xa1\x08\xa6\x9f\x2a\x14\xe9\x0b\x1a\xf4\x13\x75\xb9\x4c\xc4\xe1\x96\xb2\x58\xb4\x71\xc1\xf6\x7f\x92\xc0\x64\x74\x85\xb1\x46\xbf\x3a\xd2\x17\xe1\x65\x12\xb1\xd6\xa6\x25\x3a\xc2\x64\x80\x9d\xc7\xe2\xfe\x5f\x55\xa3\x01\x20\x14\x41\xe1\x07\x7f\xe7\xd3\x52\xe0\xcf\x36\x8b\x59\xdb\xd1\x64\xe4\x93\x96\x43\x4d\x43\x11\x3b\x79\xa3\x06\x87\xee\xbe\x97\x84\xf0\x1d\x64\x3b\xbe\x59\xc0\x2e\x14\xa1\xc8\x73\x4e\xc4\x3d\x80\x80\x34\xe0\x2e\x0e\x04\x7e\x25\x55\x47\xc0\xc2\xae\x3b\xec\xc9\x8b\x73\xe0\x6d\x24\x98\x3b\x72\xe5\x11\x97\x37\x2f\xdd\xaa\x8a\x15\x06\xa4\xbf\xca\x66\xc7\x13\x78\x20\x3d\x07\x3a\xfc\x74\xdd\x94\xe2\x46\x49\x82\x8a\xf3\x06\xc7\x36\xd1\x16\x8f\x9d\x9a\x75\x88\x3a\x53\xe6\xd3\x18\x2b\x97\xe9\x7e\xa8\x36\x6c\xc9\xf4\xac\x8a\x5d\xfd\x46\xbc\x4a\x1a\x48\xd8\x5a\xfd\x11\xa8\x7f\xe6\xef\x27\x69\x84\x0e\x48\xbf\x27\x8e\x86\xda\x93\x09\x5c\xc0\x16\x1e\x22\xfd\x08\x0d\x66\x0a\x92\x4f\x65\x4e\x46\x16\x27\x33\x11\x95\xc5\x62\x4b\x94\xa5\x0f\x78\xca\x3e\x7f\x8e\xce\xc0\xc2\x4f\x9a\x81\x07\xa8\x4c\xde\xab\x6c\x29\xdf\x2c\x56\x1b\x57\x34\x55\x3d\xa1\x37\x82\x8e\x41\x72\x23\x41\xdf\x5b\x12\xb1\x68\x45\x64\xb7\x00\xa4\x13\x07\xd5\x75\xab\x0a\x35\x1c\x2b\x03\xa7\x38\x79\x6c\x46\x76\x9b\x55\x70\xd8\x0f\x73\x2c\x74\x6c\x6e\x45\xc5\x50\x73\x17\x7d\x2e\xaf\x59\x8f\x97\x5d\xff\xcb\xa0\x32\xa7\x50\xba\xa8\x60\x5d\x7e\xfd\x84\x86\x30\x53\x7a\xa1\x03\x9b\x92\x7b\x27\xe4\x06\xce\x50\x18\xbb\x4e\x6d\x58\x39\x9e\x6b\x7d\x4f\x8f\x2c\xe9\x74\xa8\x01\xa1\x81\x79\xda\xa4\xe9\x49\x37\x5a\x00\x7d\xa6\xe5\x13\x63\x40\xd9\xda\x07\x1a\x97\x57\x51\x70\x83\xb4\xa7\xb1\xaf\x19\x5e\x3c\x5d\xcb\xc3\x25\xac\x9c\x64\xa6\xe7\x65\x5b\x38\xcb\x30\x50\xa6\x9b\x50\x49\x2e\xa1\x1e\xe5\x8a\xd7\x80\xac\x57\xc3\x5e\x1a\xf4\x53\x21\xc5\x51\xe0\xb4\xae\x2e\x5f\xbf\x7e\xf3\x2e\x31\x58\x40\xc3\x4c\x6b\x8d\xfa\x26\xba\xcb\xce\xda\x15\x9c\x66\xe3\xe6\x2b\x21\x92\xdb\x2e\x97\x38\x05\x97\x1f\x31\x99\x1f\xcf\xd6\xe2\xb9\x61\xa1\x2d\xe1\x1c\x2e\xda\xdf\x9e\x5c\x21\x1f\x60\x88\x3f\x56\xc1\x7c\xf1\x06\xfe\x57\xb9\x05\x28\xb3\x9c\x21\xd9\x4c\x06\xb6\x74\x75\x4b\x6c\xad\x6d\x67\x16\x21\x3c\x60\x47\x89\x62\xb2\xdd\xf7\x16\xcf\xf9\x8d\x40\x0f\x8f\x73\xd8\x5d\x76\x40\x62\x07\x83\x3b\x1a\xfd\xd7\x11\x59\x6b\x74\xcc\x58\x55\xf7\xda\xe9\xb5\xee\x88\x19\xf8\x73\xfc\xa0\x74\xf8\x35\xb9\xbc\x93\x55\xae\x9d\xf8\xc9\xf5\xd2\x88\xa6\x93\xce\x5d\x3c\x1a\xb5\x18\xe0\x8c\x51\x9f\xfc\xa3\x9f\x6f\x06\x74\xd5\xf8\xe9\x7b\x80\xf8\x79\x86\xae\xde\xd8\xa1\x21\x55\x71\xf4\x7b\x42\x9a\xc3\xe9\xb0\x4d\x41\x56\x29\xb6\x2a\x0d\xfc\x3f\x50\xe7\xc6\x0e\x77\xa9\x1f\xdf\xb2\xc6\xc4\x6e\x88\xee\xde\xcb\x6e\x2c\xd5\x67\x50\x3b\x94\x71\xdf\x55\x78\x33\x29\x95\x45\x3f\x38\xbc\xa5\x0e\x19\xda\x6c\xff\x84\x83\xe6\x1f\xbe\xed\xfa\x42\x75\x3d\x30\xed\xdf\x54\xd8\x12\x36\x29\x4c\xaf\x37\x63\x5e\xb8\xb6\x03\x79\x78\x77\x07\x53\x17\x66\x23\xbb\x04\x29\x3b\x4f\xe6\x04\x91\xcd\x26\x90\x53\xec\x44\xae\x86\x3f\xb2\xe1\x36\x9e\x3e\xae\x19\x34\x5e\x3d\xa2\xf4\x4e\xa2\x76\x3e\xde\x6f\xc7\xc4\xad\xf6\x7a\x6b\xec\x90\x0d\xc3\xad\xea\x60\x9c\x56\x31\x4b\x84\x1b\xf3\xae\xea\x74\xa3\x8c\x43\x6a\x47\xbf\x42\xca\xac\x38\x70\x6e\x04\x8b\xda\x54\x10\x17\x78\x2b\xc0\x0f\xfe\x5e\x28\xc5\x80\xa1\xca\x4a\x8e\xde\xd6\xda\x68\x8f\xce\xaf\xda\x6b\xd9\x91\x14\x57\xae\x57\x92\x51\x10\x09\x6b\xea\x02\xf5\x67\x3c\xec\xbf\xca\xd3\xc3\x8e\xab\xd9\x04\xf1\x35\x17\x36\xd2\xe0\xf8\x61\x82\x20\xaf\x15\xbe\x1c\x5f\xf7\xc3\x68\xc8\x50\x30\x1a\x55\x24\x86\x71\xcf\x98\x51\xba\x86\xf9\xc4\x0f\xb2\xb9\x03\xe2\x32\xa8\x8d\x1a\x94\x69\xd0\x3d\x4f\x02\xef\x22\x3a\x6b\xb6\x6a\x20\x39\x2a\xf8\xbe\x51\xb1\x80\x5c\x83\xf4\x77\x4f\x5c\x34\x5d\xab\x7f\x19\x52\xbe\xdd\xd9\x71\xf8\x2e\x00\x06\xa1\x3f\xc2\xb1\xea\x6a\x92\x1f\xda\xc9\xc6\x5d\xf6\x6e\x10\x46\xc1\xa1\x20\x07\xba\xf9\x23\x9a\x41\xb5\xca\xc0\x68\x3b\xc1\xba\x8a\xe0\x34\x11\xf0\xa1\x10\xe2\x8e\xa6\x49\x62\xc8\x2d\x7e\x55\x07\xe9\x9b\x1d\x19\x90\xfe\xc2\x3f\xd1\x7e\xb4\x95\xbf\x53\xea\x6d\xfc\xc0\x2d\xe0\x78\x53\x38\x36\x06\x0d\x4a\x36\x3b\xf6\x90\xb4\x9b\x9a\xae\xfa\x22\x3b\xf6\x2e\x1a\xb5\x81\x9e\x20\x9c\x6a\xc5\x5e\x7e\xd2\xfb\x71\x2f\x22\x20\x16\x85\x5d\x72\x56\x9a\xa9\x56\xcb\xc6\xa6\xa9\x63\xc3\xd7\xdb\x9c\xa6\x18\x1e\x36\x3d\x19\xa5\xda\x5a\x8e\xe8\x3c\x8f\x44\xa7\xf0\xa4\xaa\x38\xb2\x42\xb8\x9a\x1e\x43\x2b\xd0\xdd\xf4\x3c\xf7\x34\xfd\x0e\xda\x45\x59\x92\x54\xf4\x9a\x5f\x77\xa3\x7a\xf4\x33\xcd\x62\xa0\xa7\x01\x2b\xef\x8f\x57\x1c\xdc\x21\xdb\x20\x0c\xb1\x22\xa2\x99\x16\xdb\x15\x5e\xef\x4c\x6b\x6d\x01\xaa\x38\x72\x59\x64\x91\xd9\x15\xd1\xef\x9f\xbf\x7c\x87\xce\x36\x0f\x14\xaf\x49\xc5\x43\x8e\x8a\x44\x22\x1f\x0f\x8a\x6e\x62\x66\x5a\xdd\x10\x95\x42\xe6\x83\xb1\x3e\xd2\xed\xba\x70\xcb\xb6\x97\x7e\x97\xea\x82\x43\x5e\x3b\x47\x8c\xbb\xd1\x38\x9f\x05\x13\x9b\xb0\x53\x1b\x18\x59\xb9\xb0\x02\xb6\x74\x49\xa2\x91\x5d\xb8\x21\xf1\x92\x12\xb9\x20\x24\xa2\xfe\xaa\xb4\xf7\x06\x5f\x50\x99\x5f\xca\x0e\x68\xa3\x69\x3f\xad\x86\xdc\xaa\xcf\x5b\x92\x0f\x18\x0e\xbf\x61\x37\x15\x9d\x11\x21\x9d\x4f\x0c\xf8\xaa\x40\x8a\xaa\x3b\x6d\xee\x90\xb3\xea\x8f\x29\x21\x63\x24\xaf\x6c\xaf\x55\xfb\x4d\x96\x17\x9c\x9a\x6e\x70\xf6\xff\xbf\xff\xe7\xff\x7d\x72\x05\xed\xbe\xf2\x43\xf7\xe4\x2a\x48\x67\x00\x4f\xe3\x48\x08\xc4\x9b\x7f\xaf\x46\x73\x60\x0f\xa6\xf7\xf4\xab\x0a\xdf\x48\x22\xaa\xd1\x38\x36\xe8\xe0\x8f\x8a\xbf\x80\x52\x54\x1c\x36\x04\x48\x44\x55\x99\x78\xc2\xbd\xb6\xc5\x21\xf7\xd7\x51\x37\x77\x35\xe9\xe5\x2e\xc4\x7f\xc0\x97\xc0\x50\x14\x7c\xce\xc3\x91\x11\xe9\x3f\x2e\xda\xc9\x21\x92\xdf\x71\xc0\xc3\x91\xaf\x4e\xa5\xf3\x42\x96\x7c\xcb\x31\x50\xec\x00\xd8\x69\xa3\xaa\x7e\x74\x3b\x32\xf0\x87\xda\x6e\x46\xb7\xc3\x8b\xb6\x9f\xe8\x22\x77\x8e\x01\xa7\x66\x86\x63\x2d\x07\x55\xef\xa3\xb7\xe3\x74\x77\xc7\x85\xc3\x3e\xdb\x49\xb3\x77\x54\x7e\x55\x55\x74\xfe\x91\xbb\xa3\xab\xe2\x91\xc6\x47\x99\x1f\x14\x22\x1d\x94\x02\x48\xaf\x86\xe0\x9a\x20\x4d\x5b\x7b\xb9\xa5\x92\xc0\x77\x70\x51\x3b\x08\x2f\xb7\x8c\x08\x31\xff\xc2\x3f\x2b\x2f\xd1\xb8\xfd\x4e\x6e\xe7\x31\x4c\xfa\xb1\xeb\xe6\x91\x4e\x3a\xb9\x56\x98\x7c\x8d\x3f\xaa\x3d\x34\xd2\x5b\xa3\xe8\xe8\x0a\x1f\x55\x83\x4e\x9c\x2e\xba\x73\xba\x6a\xab\xc3\xf9\x5c\xb6\x81\x6f\xae\x91\xe1\x9d\x7e\xe2\x10\xd4\x83\x3c\x40\x9a\x3c\xd0\xe7\x4e\x3b\x8e\x88\xf3\x82\x7e\x51\x32\xde\xbf\x21\x50\xbc\x7e\x13\xe1\x91\xfd\xe7\x3d\x72\x13\x7e\x53\x96\xb7\xc0\x50\x0d\x69\x76\x82\x71\xd0\x5b\x2b\x28\x83\x38\x5a\xb7\xb3\x07\x53\xdd\xeb\x56\x59\x3c\x33\xf8\x32\x1d\xc5\x04\x5a\x0f\xf6\xe0\x02\xc7\x07\xa3\x4d\x9f\x30\xbd\x20\x82\x87\x8b\x77\x2f\xde\xbd\xba\xfe\x57\x81\x38\x60\x1e\x56\x55\x9c\x89\x95\xbd\x57\x03\x5f\xed\x7c\xc3\x3f\x53\x26\x5f\x87\xc8\x86\x0c\x9d\x3c\x54\x1a\xb9\x08\xea\xbc\xec\x0a\xc8\x5b\x48\x58\x00\xa4\xb8\x33\x97\x5d\xb7\x90\xc7\x66\xcd\x7a\x7d\x8c\x86\xd9\x56\x9c\x7d\xf8\xe1\xa3\x03\x12\x7c\xf6\xe1\x0f\x1f\x33\xe0\x60\xb9\x9b\xf2\x5d\xcc\xc0\x4f\xd8\xaf\x4a\xb5\xb0\xf4\x57\x18\x45\x88\xec\xf5\xaf\xd5\x81\x78\x4b\xce\x22\x2b\x6e\x1d\xad\xf9\xe8\xc7\x9c\x03\xc0\xbf\x90\xfd\x6b\xab\x7d\x91\xd9\x0f\x0a\xd7\x01\x35\xcb\x11\x89\xc3\x91\xa5\x06\xb9\x00\x48\x7c\x79\x8d\xc8\x8c\x35\x35\x1c\xa9\x75\xd8\x70\x57\xc4\xb4\x43\xa6\x30\xd6\x3c\xc1\xf3\x16\x33\x8b\x46\x20\x29\xca\x5b\xe2\xc3\x12\x0a\x60\xfb\xd1\xf9\x7a\xad\x6a\x6b\x6a\x99\xc6\xe6\x3f\x83\xc7\xd1\x1a\x5d\xd2\x65\xd8\x9f\x70\xf0\xc9\x3b\x72\x51\x1c\x2c\x48\x89\x22\xf4\x23\x04\xfa\xc8\x91\xa3\xd8\x41\xc1\x78\xb0\x1f\x39\x66\xa4\xb5\x53\xee\x9a\x03\xf7\x00\x6c\x70\xcb\xcb\xf1\x05\xe5\x53\xd6\xab\x5c\xf7\x35\xeb\x17\x50\xad\x1a\xe3\x36\xb0\x0a\x35\x6f\x00\x92\x34\x0a\xea\x90\xf4\x23\x5f\xd5\x3b\xf2\x80\xc1\x26\xa5\xa3\x0c\x3d\xbf\x4b\xeb\xc2\xb2\xb6\x3d\x2c\x34\x60\xf6\xf0\x22\x51\x58\x6e\xec\x45\x39\x60\x65\xab\xd5\x2a\xaf\x2f\xca\xf2\xa8\x1e\x05\x56\x39\x1d\xe2\xe7\x14\x68\x01\xb9\x39\xed\x51\x2a\xe9\xf1\xf4\xfc\x7e\x05\xb0\x41\xfd\x97\x17\xd8\xda\xa0\x14\x5a\xab\xad\xa6\x90\x4c\x28\xd1\x2a\xbe\x5f\x9a\x90\xac\x65\x73\xe7\x7a\x89\x91\x79\xa8\x3d\x78\x3e\xdb\x21\x5b\xaf\x8d\xea\x6a\x74\xe3\x12\x17\x82\x3e\x63\x26\x52\xd6\x6c\xd1\xb3\xe7\xfc\x64\xcd\xcb\xb6\xad\xfd\xbe\x0f\xc6\xd2\xc7\x67\xee\xfb\x9f\x42\xb7\x7f\x7e\x9c\x41\x25\x80\xc7\x69\x5b\xb6\x14\x26\x8c\x3d\x35\xf2\xbc\xa9\xa3\x53\x9e\xc7\x4d\xe3\x43\x30\x06\xa7\x6b\xf1\x3a\x54\x88\xb1\x21\xd4\x27\xaf\x4c\xab\x5a\xd1\x26\x4e\x20\x9b\x1b\x46\x42\x43\xdb\x1d\x6b\x6f\x69\x95\x26\x6a\x43\xfd\x0d\x00\x61\xd8\x59\x4f\x15\xd8\x66\x02\x7f\x02\xdd\x7d\x84\x37\xa0\xa2\xde\x0a\x33\x52\x75\x89\x81\x48\x35\x04\xd6\x21\xe8\xbe\x4c\xbc\xf9\x90\xf0\x6c\x30\xe8\x06\x3a\xd0\x62\x7b\x30\x52\x0a\x85\x5e\x12\x70\x8a\x86\xcb\x60\xab\x9c\x0e\x06\x7f\x42\xf4\xa9\x62\x96\xa8\xbc\x55\x91\x8f\xc4\xc4\xef\x67\xba\x78\x99\xac\xad\x15\x85\x4e\xe2\x1d\x83\xc2\xcc\x2c\x4a\x12\x97\x0d\x4c\x03\xd9\x02\x89\xe5\x49\xe7\x32\x6d\xb6\xc2\x50\xe8\x62\x98\xaf\x5c\x69\x11\xd6\x42\x58\xfe\xb5\x76\xb5\x8c\xd4\xd1\xf8\xa0\xb7\x64\x31\xb4\x97\xec\x86\x42\x77\x8d\x25\x9d\xbc\x13\xc6\xf9\xa1\x8a\x90\x3e\x60\x1d\xee\xb8\xe7\xd3\x3d\xc6\xcb\x0a\x02\x9b\x14\x21\x33\xd8\x59\x78\x08\xf0\x96\x8f\x66\x2e\x9a\x7c\xb1\xd4\x5a\x30\xea\xd9\xa8\x62\x35\xa9\x55\xa9\xa2\x42\xce\xcc\x59\xc3\x2f\xef\x02\x53\xe3\xda\xd8\x9a\xb4\x08\x69\x06\xca\xee\x1c\x59\x98\x09\xe4\x7b\xa2\x76\x88\x02\xfe\xa9\x8a\xd8\x3f\xa7\x3e\xec\xb2\x6a\x03\x49\x9d\x99\x94\x19\x5a\x38\x6d\x1a\x95\x62\x88\xa9\x36\xd4\xbf\x7a\x58\x9f\x96\xee\xba\xa1\x29\x9c\xad\x38\x07\x98\x05\x3c\x1a\x8a\x4a\xec\x10\xb7\x15\x91\xc3\xb0\x7f\xb6\x52\x9b\xb4\xbd\xbc\x45\x2f\x66\x3a\x55\xfc\x2e\x3b\x41\xca\x9e\xce\x96\xf2\x25\x0d\x23\x6a\x97\xd2\x94\x7d\xf9\xa2\x36\x36\xd0\x56\x20\x3d\xc0\x0b\xd2\xec\x80\xe4\x8a\xe2\x65\x7e\x92\x41\x76\x6a\x0f\x46\x08\xb2\x35\xfb\x97\xf1\x76\x78\x46\x62\x60\x34\xca\x7c\xcf\x0e\x07\x69\xb2\xb1\xa9\x74\xd5\x04\x24\xc3\x8c\x80\xbb\x71\xdd\xea\x81\x69\x28\x7d\xb0\x94\x99\xa8\x04\xfb\xad\x63\xbd\x91\x9b\x72\x93\x8a\x23\x63\xe5\x82\xaf\xcb\x89\x5a\x73\x1c\x80\x93\xaa\x7f\xbf\x80\xa0\x0a\xdc\x7e\xa0\xd8\x89\x55\x67\x0a\x1d\x38\xf6\x12\x2e\x97\x0e\x42\xce\xe4\x06\x3b\x2f\x89\x94\xbf\x21\xeb\xef\x33\x6d\xda\x98\x26\x51\x01\x13\xef\xb4\xc5\xf4\x24\x82\xf1\xd5\xb3\x98\xc3\x87\xda\x53\xd4\x2d\x72\x5a\x08\x5c\xf0\x06\xfe\xc7\x54\xa3\x0e\xac\x5e\x3e\xa8\x21\x5e\xec\xa7\xb0\xa2\x40\xaf\x51\x58\xca\x92\x57\x53\x01\x29\xcb\x82\xbd\x0e\x89\x24\xfd\x62\x7e\x9e\xdd\x74\x4a\x0e\x75\x2c\x7f\x05\x9f\xa2\x9b\x61\x89\x12\x57\x2e\x70\x4d\xaa\xc9\x61\x5e\xdb\x65\x30\xaa\x2e\x87\xa4\x1a\xf7\x4b\xc0\xb6\x57\xa6\x80\x7d\xd3\x2b\x93\xcb\x7b\x05\x62\xeb\x54\x3b\xc1\x8c\xb6\x8f\x65\x78\xe9\x30\x20\x0d\x5a\x7f\xf8\xe7\xbc\x9d\x19\x10\x35\x53\x2e\x80\x1a\x9b\xc3\xbd\xb6\x33\x20\xde\x70\xf1\x5c\x9f\xce\x5e\x9a\x1f\x75\x98\x4d\x10\x65\xd6\x7d\x27\x1b\x15\xc3\x5c\x20\x50\x3c\xae\x8b\x6a\x22\x32\xae\xac\xc0\x47\xb8\xa2\x6e\x7e\x15\xed\x90\xb0\xbb\x24\xb0\x87\xad\xda\xe0\x5d\x00\xa7\x50\x19\x5a\x2e\x84\x69\x71\x6d\x36\x36\x27\x4e\x78\xb3\xc6\x1c\xb9\x14\x2a\x16\xa2\x83\x66\x71\x55\xfb\x51\xec\xe9\xa3\x70\x6d\x5b\xae\x6d\x11\xab\x87\xee\x6e\x50\x9c\xc9\x69\xc3\xf8\x8a\xf7\x89\x56\x2d\x98\x15\x70\x48\x9c\xf2\xa7\x8a\x8c\x8e\xfd\xac\x89\x2a\x7f\x16\x3e\x50\xda\x5c\x7a\x4c\xe4\x0e\x69\x15\xe1\x88\x81\x83\x23\xb5\xa5\x48\x2b\x84\x16\xd7\xb7\x97\x6b\x71\x21\xce\x5a\x5c\xdc\x71\x2e\x61\xe9\xa6\x2c\x5a\xc9\x21\x93\x15\x30\x61\xa2\x8b\x19\xce\xf3\xe0\x98\x27\xfb\x06\xad\xcb\x68\xeb\xe8\x16\x4a\x3c\xb8\xc1\xa7\x30\x27\x31\xcf\xb6\x31\x97\x7c\x60\xb7\x25\x88\xad\x36\xea\x34\xea\x13\xe5\x58\xe3\x8d\x7a\xee\x79\xce\x4a\x76\x5d\x1d\x75\x4c\x97\x5d\x27\xe8\x63\x11\xd4\x71\xe4\x65\x6f\x41\x8a\x4b\x4d\x6d\xd9\xb9\x65\xa9\x10\xad\xd6\xb6\x5e\x1f\xb9\x0c\x6d\x3b\x8c\x87\x76\xa2\xc8\x5e\x19\x10\x39\x80\x0f\xa3\x22\xaf\x62\xc2\x42\x11\xc7\xb1\x2b\xed\xe0\x17\x72\x56\xb8\x1e\x3d\x1f\x15\x6e\x11\x04\x88\x06\x82\xbc\xc1\x1f\x4b\x20\xe4\xf2\x15\xc5\xae\xb7\x1c\x28\x22\x38\x9d\x2f\x56\xac\xa4\x4b\x25\xae\xf1\xbe\xd5\xf0\x05\xe5\xf6\xd6\x79\x38\xe6\xc8\xc3\xef\x95\xc5\x6b\xb1\xf8\xf9\x40\x3d\xa9\x00\x55\x34\x2b\x01\x3b\x29\x68\x91\xe8\x77\x52\x22\x25\xd7\xc9\x0f\x7f\xf8\xe8\x1e\xfd\x7c\xf6\xe1\x8f\x1f\xd1\x67\x72\x56\xb8\xde\xc8\x3b\xb5\x80\x81\xd4\x50\x0c\x8d\x5a\x1f\x3b\x46\x75\x8f\x1d\xb3\x73\xe5\x13\x4d\xc5\x27\x5f\x6e\xf1\x18\xd5\x71\xb2\xc3\xdb\x98\x55\xee\x70\x33\xee\x6b\xee\xa3\x23\x0a\x10\xbe\x62\xf1\x30\x02\xb5\x84\x2a\x7f\x8b\xdf\xa9\xbb\xff\x02\xac\xf1\x19\xf6\xf4\xb7\x50\x2c\x5c\x72\x20\xe8\x2c\x8e\xe2\x25\x3b\xbd\x46\xef\xd7\xe0\xb3\xd0\x66\x5a\x19\x2e\xf6\xa7\xd8\x4c\x9b\x39\x6b\xd2\x29\x80\x86\xab\x52\xb5\x5c\x90\x34\xfc\x08\xfd\x2d\xb3\x42\xa3\x22\x08\x4f\x3a\xde\x5a\xce\xc1\x07\x85\xa3\x1a\xe0\xde\xe2\xe7\x24\xf3\x21\x64\x43\x51\x80\x8f\xcd\xb4\xc4\x18\x74\x32\x51\x3c\xcc\xc4\x52\xfc\x24\x85\x6e\x61\x41\xfd\xf0\xd1\x3d\x8a\xc3\x8d\x5f\x3f\xe3\x62\x29\x06\x9d\xea\x8b\x38\xc2\xe7\x57\x62\x61\x2e\x77\x50\x9b\x88\x87\x4d\xc3\x2d\xcd\x0e\x75\x95\x6f\xbc\xb2\x50\xf3\x75\x55\xf4\x96\x03\xe5\xdf\xe0\x8f\x54\x73\x08\x5d\x85\xfc\xee\x55\xf6\x19\x97\x79\xe1\xc7\xc2\x89\x21\x16\x60\x08\x92\xc0\x0a\x87\xc2\x95\x99\x83\x39\x05\xb9\xed\xbf\x6c\x90\x8c\x1a\x6b\xee\xd5\xe0\xf8\x82\x2d\x63\x64\xcd\xe3\xaf\xad\x4e\xd3\x33\x51\x52\x84\xba\xc9\xf5\xea\x56\xde\xab\xc9\x21\x1e\x58\x9e\xc8\x42\x95\xf9\x8d\xed\x6c\x62\xb1\xf0\x6b\x0a\x40\xbe\x45\x67\xed\x22\x77\x94\x96\x26\xef\x5c\x0c\x3c\x59\x9e\x3a\x04\xb9\xd0\x19\xca\x98\xa8\xb8\xca\xcc\x18\x32\x84\x1a\x88\x81\x43\x42\x20\xd3\x39\x16\xbe\xc0\x86\xa0\xd1\xb9\x69\x11\x6c\xf9\xc6\x06\xf1\x18\xb9\xcf\xa1\x46\xe9\x35\xdd\xd2\xd0\xa6\x70\x43\x64\xdc\xa7\xdd\xcf\x96\x2b\x4f\x4a\x57\x6a\xeb\x67\x14\xae\x19\x99\xec\xe5\xe0\x75\xa3\x7b\x19\x49\xe5\x4d\x96\x12\x20\xa5\xf7\xb2\xd9\xc1\xb6\xce\x99\xae\xdf\x48\x71\xc0\xfa\x02\x58\x8f\xd8\x1d\xb4\xd8\x79\xb9\xfe\x6d\xa1\x74\x0c\x60\x98\x97\x8e\x89\x80\xe2\xb7\x8a\x8c\x58\x99\xb8\x96\x1b\xb3\x38\xb3\xb1\xfb\x5e\x0e\xaa\x54\xa3\x42\x4a\xd4\xa3\x2e\xc2\x85\x59\x0a\xc0\xfe\x60\x45\xb4\xc0\xe0\x0b\x12\x70\x82\x95\x0a\x40\xd4\x14\x46\xdd\x45\x89\x16\xe3\x25\x5e\xe0\xa5\xcc\x69\x85\x5c\xc3\x85\xe0\x5f\x9c\x5f\x58\xff\xa6\x56\xbf\xd0\x73\x5b\x0f\xca\x8d\x1d\xce\x08\x7a\x94\xd3\xc7\x86\x7c\xa1\x03\x10\x86\xf1\x07\x6e\x2b\xd5\x95\x1d\x22\x14\xe4\x9f\xef\xb7\x40\xee\x5a\x35\x12\x18\x75\x6c\x33\xf4\x75\xa7\x64\x9b\xf5\x7e\x50\x18\x4b\x37\xe0\xdf\x49\x57\xe7\xef\x27\xc0\x8c\x45\xf4\x41\x1d\x33\x19\xa9\xb5\xf2\x07\x0c\x0e\x81\x17\x4e\x60\x70\x49\xe9\xe4\x7e\xcc\xb9\x88\x1f\x3e\xba\xef\xb1\x8e\xef\x81\x95\x68\x99\x92\xfe\x0b\x7e\x10\x3d\xe5\xa1\x9c\xc8\x7d\x0b\xcb\x00\xa9\x51\x98\xd4\x03\xae\x61\x6f\xc5\x5e\x0d\x5b\x85\xec\x47\x1b\x54\x11\x44\xd7\x7f\x6a\x6c\xab\x02\xe1\xc6\xdf\x42\x1b\x6f\x63\xfa\x1f\x63\x3a\xe3\x47\x4c\xcc\x65\x84\x6a\x28\xed\x9f\x43\x2f\xce\x3e\xfc\x8f\x8f\x61\x8d\x7a\xb9\xae\x73\x72\x4d\x8e\x97\xf1\xb3\x80\x9a\x6a\x60\x52\x5e\x61\x80\x0e\xda\x3a\xce\xe7\x43\xdd\xdb\x9a\x86\x26\xba\x22\x51\x06\xfb\x4b\xe7\x33\xe9\xad\xe8\xd5\x00\x64\x8a\x47\x33\xba\x9e\xae\x8a\xa1\x41\xf6\x7b\x48\x35\xc1\xaa\x89\x39\xef\x66\x68\x23\x5d\x62\x98\x92\x2c\x11\x8a\x56\x7a\x59\xaf\x87\xe0\x2c\x2e\xbd\x8c\xae\x85\xcb\xb8\x18\xb6\x1d\x53\x44\x04\x18\x45\xbb\x21\xcb\x5a\x46\x6d\x43\xdb\xb5\xab\xf1\x8a\x18\x29\x55\xdf\xf1\xbd\xaf\x4e\x37\x5e\xc4\x74\xed\x38\x24\x01\xc5\x96\xde\x52\xa4\xee\xf8\x22\xc7\x66\x50\x6e\x87\x71\x74\x01\x60\xa3\x0e\x62\x6f\x91\xc3\x8c\x24\x42\x9a\x1a\x3d\xe9\xb0\xab\x85\x3f\x4e\xd1\x0d\x76\xce\xe1\x01\x99\x44\xc7\x8d\xa8\xd0\xf7\xe9\xcb\xb0\x91\x3f\xfe\x12\xbe\x48\x02\x7c\x54\x87\x86\x7e\xbb\xd3\x75\x4d\x9f\xd4\xa0\xf5\xb0\x97\x86\x7c\x64\xb5\x11\x76\x68\xd5\xc0\x61\xd2\xf0\xb6\x95\xdf\x2d\x60\x26\x6c\x13\x92\x82\x8b\x67\x69\x67\xe3\x82\x1d\x0d\x6f\x40\x2c\x15\x55\xc4\xbf\xb1\x52\xe4\xb1\x8f\x8b\x94\x17\x72\x72\x90\x2e\xbb\x9a\x93\x2c\x43\x2c\x45\x31\x6c\xdf\xfe\xcb\x59\xfb\x1d\x07\xfa\x97\x7b\x35\x77\x73\x84\x44\xea\x78\x7e\x78\x03\x15\xd5\x0e\xe3\x00\xc2\x92\x81\x83\x02\x80\xb4\xd9\xae\x02\x11\x63\x89\x21\xf3\x71\x44\xe6\xe4\x97\x9c\xde\x17\x30\x18\xad\xc3\xa8\x43\xb6\xd9\xd9\xba\x93\x2c\x22\xe1\x54\x0f\x9d\xd4\xb4\x1b\xe8\xae\x24\x95\x22\x7f\x76\x6c\xb2\x69\xd4\xaa\xca\x7c\x3e\xb2\x93\x35\x69\x2a\xb2\xec\x05\xb5\x4a\x96\xbb\xac\x5a\x99\x02\xb4\x49\x7f\x78\xe6\x8a\xba\x6d\xdd\x8e\xaa\x66\xb9\xf7\xb5\xc5\x6d\x0b\x5f\xd3\x16\x04\x79\x6f\x8a\x39\x0a\x3f\x65\x87\x6a\x37\xae\xe1\x40\xa3\xe0\x7d\x74\x60\x64\x6e\x2e\xde\x86\xcb\x07\x6c\x51\x66\xd6\xa4\x40\x3f\x39\x6f\x16\x07\x27\xf0\xbf\x18\xec\x2d\xcf\x58\xf0\x01\xce\x73\x53\x9f\x9f\x8e\x0a\x75\xd8\xe2\xdb\x60\x52\xfd\xae\xec\xa4\xa2\x7b\xf8\xf0\x3f\xcf\x88\x41\x9b\x19\x55\x4d\xeb\x90\x31\x22\x72\x4e\x49\xf1\x80\xcf\xa3\xef\xc2\xe3\xe3\xf1\x78\x7c\xb2\xdf\x3f\x69\xdb\xc7\x0b\xbd\xce\x38\xc8\xd8\xed\x89\xed\x9e\x55\x35\x13\x9a\x9d\x61\xca\x18\xf2\xe5\xb1\x43\x47\x8c\x7c\x9e\xde\xa3\x76\x72\xad\x3c\xac\xd5\xcc\x9c\x4c\x3b\x29\xcd\x9e\x83\xd3\xc8\xf6\x9d\x4a\xf7\x8d\x80\xbc\xd0\x55\xca\xbc\x2f\x13\x61\x26\xcb\x9a\x84\x0a\x7c\xb0\x81\xd1\x17\x8f\x99\x4b\xbb\x49\x8d\x99\x0c\x0a\x3d\xed\x72\x72\x48\x32\x21\x22\x0d\x6b\x14\x24\x16\x00\x97\xc5\x88\x54\xfb\x7f\xa7\x28\xb1\x54\xfd\xd2\x32\xf8\x8c\x30\x51\x1d\xf4\x9d\x16\x17\xe2\x2f\xfa\x4e\xe3\xef\x15\x07\x77\xcc\x82\x39\x7a\x8b\xd9\xdf\x14\xf9\xa1\xaf\x90\x83\x7e\x5c\x3b\x25\x50\x4f\x2f\xe8\xb5\x12\xba\x5f\x36\x76\xad\xe8\xf4\x1d\x9d\xed\xb6\x19\x51\xcb\x70\xe4\x80\x20\xff\x85\xd1\x39\xec\x56\xe1\xb5\xfd\xc8\xc0\x6b\xcf\x8b\x6a\x45\x15\xf2\x1a\xc7\xe0\x40\x35\x3f\x4c\xc7\x9b\x9c\x1c\x3c\x06\xe7\xf1\x2c\x27\xf0\xfc\xe9\x3a\x4c\x60\xa6\x9d\xd3\x99\x65\x4f\xf0\x14\xdf\x21\xc7\xfa\x9a\x03\xfb\x53\x7e\x70\xb8\x2a\xfd\x2b\xa0\xe7\xe4\x73\x03\xdc\xba\x12\x72\x6d\x47\x76\x4b\x62\xbd\x60\x22\x10\xdc\x0f\x0c\x69\xce\x35\x81\x68\x9e\xd5\x81\xae\xe1\x5c\x01\xdb\x15\xce\x1c\xda\x7f\x83\x7e\x03\xcb\x9d\x39\x02\xc7\x95\x0e\x29\x35\xdb\x0f\x58\x90\x2e\xfa\x93\xf2\xa6\xfd\xa1\xab\x49\x05\x08\x1f\x6c\xcb\x50\xc6\x7a\xdd\xa8\xfa\x87\xc0\xb3\xe4\xd7\x97\xc8\xc3\x60\xab\x98\x4d\x06\x19\x90\xb9\xe4\x18\x68\x17\xf6\xbb\x1a\x3c\x46\xd5\x8d\x33\x34\x37\x1d\xe3\x42\x42\x54\x93\xfb\xd3\xa5\xf5\x38\xc3\xe1\x78\x9a\x5d\x36\x88\x21\x52\x48\xb8\xe7\x1b\x9c\xea\x5c\xb5\xf8\x6c\x5d\x48\x5b\xd1\x64\xb9\xf8\xfa\x4c\x96\x95\x85\x34\x67\xf6\x3e\xfb\x3e\x01\xb6\xa2\x4b\x3c\x1c\xd3\xf3\x14\x10\xd9\xd7\x79\x25\x9d\x02\xc2\xf7\xe3\xe8\x1e\xc8\x29\x90\xd1\x04\x03\xd1\x85\x78\x1f\x7e\x27\xe0\x25\x17\xd0\x59\x66\xbd\x26\x21\x34\xbb\x4a\x43\xb7\x76\x93\x90\x09\x74\x1d\xa1\x32\xc3\x7d\x98\xe4\x7e\x74\x3b\x7c\xab\x28\xaa\x3f\x43\x10\xb3\x50\xd1\xe7\x2e\x8c\x9c\x00\x4c\xdc\xb2\x0a\x4f\xab\x04\x8f\x1d\x52\x94\x39\xdd\x62\x34\x3d\x34\xad\x81\x78\xfc\x28\xe4\xa3\xe8\x6f\x5b\x15\xd8\xaa\xf3\x82\x6d\xe4\x90\x21\x06\x5f\xab\x09\xae\x16\xa9\x15\x13\x37\xac\x69\xc6\xc4\x0f\xb3\x1e\x4d\x74\x54\x4d\x3e\x99\xf3\xf6\x66\xcf\x43\x90\x99\x04\xaf\x1e\x6b\x1f\x9f\x7f\xb0\x86\x9d\xee\x67\x4d\x99\xd6\x98\x88\xfd\xd3\xb2\x9a\x20\x6f\x65\x6c\xf0\x83\x81\x74\xbe\x49\x35\xf5\x83\xf5\x68\x70\xca\x3d\x5b\x6f\x42\xe2\xc2\xea\x99\x17\x88\xd7\x65\x28\x27\x5b\x3d\xf8\xda\x83\x1d\x1a\x5a\x2c\xf8\x9a\x98\x6c\x1a\xdd\x2a\xe3\x65\x97\x24\x3f\x8c\xb3\xb5\xd3\x5e\xe1\x4d\xf6\x6c\xfe\x30\x60\x69\xb6\x05\x28\xfc\x91\xcc\x3d\x61\x31\xf8\x51\xf0\xf2\x5c\xad\x56\xd3\x65\x5e\x73\x7b\x69\x23\x33\x67\x7e\x13\xd3\x1e\x00\x9f\xdc\x02\xa2\xca\x05\xe7\x8b\x40\x3d\x70\x87\x10\xd6\x18\xfa\x7b\x35\x1b\xad\x89\x4b\x5d\x18\x29\x9c\xb4\xf5\x64\x33\x2c\x14\x89\x5c\x06\xbf\xae\x93\xc6\x94\xd5\x60\xfd\xa0\xee\x71\x07\xc2\x88\x87\x71\x5d\x68\x46\x50\x4d\x4f\xa4\xba\xf0\xd6\x4d\x21\x63\x69\xe3\x3c\x10\x22\x72\x82\x09\x33\xf8\x65\x38\xe3\x35\x7a\x7a\x4b\x07\xfb\x49\x23\x96\xbf\x1f\x57\x62\x8e\x9e\xaa\x3c\x97\x41\x67\x12\x03\x18\xae\xb9\xcb\x74\x8f\xdf\x50\xe8\x1f\x63\xcd\x93\xb8\x24\xc3\x4c\x20\x63\x41\x02\x75\x89\x34\x46\xe2\x2e\x3d\x06\x67\x7d\x8a\xab\xb1\x4e\x0b\x11\xa8\x76\x5c\xa4\x87\x9d\x45\x4d\x00\x12\xc1\xb2\x8e\x2f\xc3\x96\x7b\x6b\x32\xaf\x6c\x07\xbe\x89\xed\x6d\xb6\x1d\xec\x26\x1f\xa7\xd9\x20\xe1\x83\x15\xc0\x4a\xa6\x12\x74\xb1\xe9\xd8\x4b\x17\xdf\x03\x9d\x28\x1d\x76\xaa\xb9\x7b\xb0\xd7\xc5\x73\x18\xff\x68\x67\xc9\xcb\x28\xe2\x62\x5f\x23\xfc\x7c\xa8\x18\x8d\x01\x05\xb3\xa5\xfd\x45\x6f\xf0\x71\xa8\x4a\xf6\xf2\xdd\xff\x13\x2d\x0a\x35\x70\x8b\xf0\x73\x46\x7b\x43\xe9\x19\xed\xbd\x59\xa0\x00\xf9\x12\xfb\x52\xca\xbb\xb3\xf6\x8e\x1e\x9d\x59\xe3\xcf\x94\xb3\xd5\x3e\x64\xc2\x41\xf1\xa2\xcc\x5d\x4b\xa7\x9b\xfc\x71\xdd\x5f\x20\x61\x81\xc1\xe1\x1b\x4f\x19\x24\xdf\x7a\x9c\x83\xba\xa3\x69\xd2\x93\xc4\xb7\x47\xd3\x88\xd7\xf6\x30\x47\x05\x60\xda\xd4\x41\xbf\x96\x50\x42\x4e\x7c\x62\xe7\xf3\xfa\x37\xe2\x9d\x25\x3f\xc5\x90\x2d\x45\x8e\x4a\xf8\x26\x3c\x95\x74\xab\x17\x0e\xe2\xac\x47\xec\x31\x3d\xef\x11\xdf\x9d\x80\x13\xf1\xcb\x62\x06\x2e\xc5\x0a\x9c\xba\x7c\x46\xec\xb2\xbd\x07\x89\xb5\x2d\x1e\x4d\xe6\xb4\x85\xc6\x00\xb3\x3a\x21\x89\x28\x84\xd1\x23\x95\x59\xff\x9c\xa2\xcb\xac\x46\x76\x35\x8b\x69\x20\x73\x87\x67\x30\x21\x29\x6b\x44\xd7\xd9\x43\xcd\x01\x2f\xf3\x2a\x2e\x31\x68\x54\x08\x62\x19\x6f\x08\x20\x42\x7c\xb6\xb6\xbc\xc5\xde\xd3\xbd\xf1\xb2\x19\xea\xd3\xbc\x19\x21\x6d\xd2\x8e\x02\x94\x9f\xc2\xfc\x35\x80\x22\x8f\xff\xfe\xed\xf5\x03\xe0\xa1\xd9\x7f\x2e\x5e\x44\x5b\xc3\xd0\x13\xe5\x23\x32\xfe\xfe\xed\x35\xb5\xde\xef\xd4\xb1\xf4\xaf\xf2\x72\x9d\x4d\x0e\x09\xd2\x93\xf1\x26\x6b\x31\xde\x33\x56\xc3\x89\x11\x47\x98\x9a\x61\x26\x43\xdf\xe9\xed\xce\x1f\x14\x06\x54\x39\x81\xab\x98\x8f\xb2\x11\x27\x66\x84\xed\xa6\x5f\x3d\x27\x4b\x0d\x8d\x93\x73\xa2\x75\xb1\x30\xe7\x4c\x27\x0a\xbd\xf4\xc4\x3b\xc6\xb9\x3c\x63\x59\xd1\xff\xee\x49\xcb\x51\x47\x45\xd9\xe9\xc6\x89\x67\x08\x33\x2f\x4f\x43\xe3\xfc\x91\x7c\xe3\x97\x11\xbc\x96\x7b\x8c\x14\x06\x50\x3f\x3e\x88\x63\x15\x42\xfe\x5f\x88\xd7\xf4\xeb\x61\x70\x7c\x2a\x20\x95\xb9\xcc\x3e\x1f\xea\x6b\x1e\xfc\x04\xce\xb5\xd1\xb1\x6a\x85\x5d\x20\x49\xd4\xfe\x1b\x9c\x9d\x7f\x17\x7f\x83\xa5\xf2\x77\xf1\x37\x6d\x5a\xf5\xe9\xef\xc1\x42\x15\x5f\x3a\x04\x72\x77\x3e\x8b\x92\x41\xaa\x6f\x18\x04\x2c\x96\x9f\xfe\x63\xd7\x4d\x77\x4b\x29\x35\x71\xd8\xa4\xde\x87\x15\x0c\x02\xdf\xa0\xd7\xe3\x44\x6c\x6e\x25\xfa\xd8\xff\x4e\x5e\x75\x4f\xf1\x4b\xfc\xdf\xd6\xe4\x82\x2e\x99\x2b\xf0\x7a\x95\xb7\x35\x88\xfc\x31\xa6\x79\x26\x87\xa2\x21\xa8\xb8\xa0\x0c\xbb\xc5\x3b\x61\x07\xbd\xd5\x30\xa1\x58\x28\xeb\x05\x3e\x8e\x8f\x21\xdf\x77\xd2\x11\xde\x18\xba\x9a\xa2\xa3\x52\x35\x32\xbe\x91\xe5\xca\x0a\x4a\x15\xc4\x6a\xc2\xf6\x47\x76\x13\x83\xea\x66\x42\xb9\xb9\x57\x83\x8f\x16\x40\x2f\xde\x59\xf1\x56\x6d\xc7\x4e\x0e\xf9\xcd\xf0\x69\x81\xe9\x7c\x07\x3c\xac\x3d\xc4\x23\x15\x46\x5d\x0c\x8c\x2b\x97\xbf\xc3\x1d\x71\x36\x2e\x00\xeb\x3f\x50\x90\xba\x69\x2d\xa4\xc6\x71\xa8\xc7\x79\xc2\x31\xbc\xcb\x90\x34\x45\xc5\xd9\x68\x70\x1b\xd0\x1c\xba\xd4\x0a\xf2\x52\x8a\x6d\xa0\xc8\x34\x0b\x2d\x48\x1e\x57\x21\x36\x0d\x9b\x4a\x27\x8a\x14\x82\xa6\xe0\x57\x93\x68\x01\x49\xa1\x4d\x50\xe1\x8d\x24\x6a\x12\xfa\x43\x96\x41\x62\xf3\x7d\x46\xa1\xc6\x2f\x60\xe7\xd3\xcf\x37\x21\x58\xf9\x1c\x2c\xea\x1d\x52\x84\xf2\x72\x50\x32\xb1\x03\x77\x1a\x4f\x52\x19\x1d\x9f\x79\x71\x7a\x52\x9b\x6f\x1f\xa3\x66\x08\x83\x71\xb9\x85\xe6\x4d\xa6\x69\x31\x00\x92\xde\x64\x6b\x18\x2f\xdf\x68\xd3\xea\x7b\xdd\x8e\xb2\xc3\xc6\x3c\x84\xf7\x0f\x25\xde\xc6\x1a\x54\x38\x9c\xc4\x3d\xe9\x10\x92\x0e\x7c\xca\xea\xf1\xc0\x8e\xca\x9b\xf4\x76\xc2\x62\x8f\x80\xaa\x45\xd7\x23\xde\x49\xf8\x06\x82\x48\x51\xd0\x73\x55\x38\xe9\xb9\x71\x7d\x50\x60\xc8\xb0\x4a\x7f\x9c\x31\x51\xec\x2b\xf4\xeb\x00\x38\x91\xbb\x78\x2a\xbd\x5c\x04\x0b\x13\xfa\x26\x5c\xb3\x51\x58\x08\x39\x9a\x56\x7a\x99\x8c\x8d\xc6\x72\x70\xa3\xb5\x6c\xee\x16\xd5\x98\x8b\xf8\x17\xf6\x57\xae\x29\x85\x81\x0b\xb2\x2e\x5e\x83\x82\x8a\x81\x4e\x9f\xcd\x79\xc3\x99\x3e\xff\x6d\x4e\x9a\x42\x83\xd3\xf5\x1e\xec\xca\x34\x3c\x72\xa6\x50\x2b\x6f\x0d\x62\xd3\x96\xe8\xd1\x89\x81\x0a\x1d\x28\xde\x31\xf8\x47\x46\xeb\xf4\x40\x25\x42\xf4\xd9\x88\x57\xa7\xf1\xfd\xe1\x24\x61\xcb\xe2\x52\xe5\x8a\x6b\xa0\x95\x47\x72\xb5\x99\x2b\xcd\xce\x39\xd4\x0b\xe4\x82\xe0\x05\x43\x7e\xce\x4c\xda\x79\x74\x49\xa5\xf0\xee\x59\xf8\xb9\xdc\x5f\xd0\x9d\x6e\x2b\x9e\x79\x34\x00\x97\x21\xc0\x52\xe0\x9a\xd0\xe8\x02\x07\x73\xaf\x4c\x8b\x7e\x9b\x1b\x32\xb1\xcd\x34\x39\x0f\xaf\x94\xcf\x98\x7e\x4e\x09\x52\xcb\xc8\x82\x80\xfb\x99\x98\xdc\xf3\xdd\x1f\x0e\xf4\xd7\xea\xc0\x1e\x92\x49\x90\x94\x77\xc8\xb8\x06\xba\x8c\x61\x0b\x03\xc1\x5d\x40\xb5\x78\x22\xa4\x07\x27\x62\xd3\x42\x81\xe1\x74\xf3\xca\xa8\x69\x4b\xd1\xd2\x32\xf1\xae\xad\x27\x5e\xa0\x97\x6d\x8b\xfd\x29\xbc\x41\x4f\x16\x98\x84\x6e\x2d\x70\x95\xa1\x5b\xe7\xeb\x65\x52\x71\x88\xdf\x3a\xb7\x03\xd8\x21\x77\x7a\xcc\x1b\xb6\xd0\xa5\xc5\x62\x85\x5f\x0a\xbd\x08\x0d\xeb\x31\xdd\x7e\xdc\xd1\xb3\xbb\xb9\x35\x24\x8f\xc8\x57\x1e\x8f\x93\x35\xfb\x40\xbc\xd7\xd0\x28\x32\x8c\x9e\x1a\xb9\xab\xc5\x51\xe3\x80\x8c\xb9\xce\x20\xe9\x99\x26\xf7\x86\x32\x95\x53\xa1\x1a\xc6\xe7\x97\x52\x74\x22\xe0\x44\xd7\xb3\x81\x2f\x5e\x63\x2a\x03\x14\xb1\x36\x92\x62\xef\x22\x23\x99\x97\x5d\x95\xeb\xe2\x40\xfa\x1d\x5e\x43\xac\xed\x99\xa8\x81\xa2\x69\x95\x75\x41\xe8\xeb\xb3\x1f\x9b\x1d\x99\x52\x51\xe5\x83\xd1\x80\xc4\xcd\x9b\xdb\x77\x82\x94\xbd\x7e\xd0\xdb\x2d\x1c\xc0\xe2\x2f\x3b\x65\xf0\x21\x6f\x67\xf7\x8a\xa9\x5b\xd3\x8c\xa4\x18\xa4\x17\x8b\x0f\x2a\x04\x32\x35\x2d\x1f\x47\x79\x34\xf5\xa0\xed\x20\xff\x3f\xb1\xb3\x8e\x62\xc3\xba\x5e\x35\x7a\x73\x5c\x89\x6b\x25\x07\x43\x0f\x00\x07\x97\xe5\x07\xef\xa8\xc6\x9e\x60\x7c\x99\x9f\xbe\x97\xb9\x56\x9c\x87\x24\x5f\xbe\x7c\x50\xcd\x86\x67\x0a\xba\x14\x39\x34\x8c\xf0\x43\xc6\x76\x24\xda\x74\x34\x6b\x38\x03\x04\x5f\x9f\xfc\x92\x65\x3a\x6b\x43\xfe\x62\x34\x55\xfd\xa5\x84\x97\x51\xad\x3c\x29\xc9\xb9\x2d\x17\xe2\x9d\x72\x18\x8e\x11\xbf\x3f\x03\x1e\x86\xe0\x96\x1e\x09\xc5\x4b\x1c\xa8\x08\xa5\x65\x11\xb1\x86\x47\xce\x91\xa3\x0a\x63\xe4\xe6\xca\xa9\xc5\x3a\x52\x17\xb1\x69\x87\x69\x3f\x69\xed\x93\xff\x1e\x55\xf7\xd7\x51\x8d\x6a\x25\x5e\x7a\xb1\x97\x47\x7a\x14\x7b\xa3\x0e\xc2\xa9\xc6\x9a\xd6\x85\x00\x19\xda\xe3\x25\x5e\x27\xc6\x3e\x5c\xaa\x9e\x4d\xc9\xbc\x6d\x83\xca\xc6\xea\x6d\xfc\x78\x08\x30\xeb\xc1\x0b\x68\xb9\x97\xee\x6e\xe2\x0c\x02\x92\xe0\x57\xf6\x22\xc5\x7a\x8d\x25\x9c\x97\x7e\xc4\x9d\xf6\x50\xfb\x73\x53\x8b\x72\x7e\x09\xc4\xf5\x96\x02\x07\xbe\xe5\x9f\x73\x20\xf2\xc4\xc1\x3e\xd1\xaf\x39\x48\xcf\xcf\x53\xc6\x87\x2a\xe7\x20\x6b\xdb\xc2\x38\xfe\x62\xdb\xe3\x5c\xe9\x1c\x56\x57\xd4\x3c\x23\x2d\xea\xed\x01\x4d\xae\xeb\x23\x66\x68\xef\x54\xb7\xa1\xf7\x9d\x40\x7e\x55\x21\x56\x0c\x32\x44\xc9\xdc\x49\x24\x80\xe7\x19\x8d\x13\x78\x97\x31\x77\x57\xa5\x57\x4f\x8a\x27\x1c\xa6\x6d\xa2\x48\x32\xdc\xae\x97\x24\x7b\xe0\x6a\x44\x6d\x33\x85\xf0\x39\x07\xd9\xbd\xcf\x6e\xdb\x07\x7d\x54\x4f\xaf\x09\xab\x16\x69\x18\xbe\x99\x16\x40\x48\x78\xa3\x60\x0e\x59\x14\xcc\xc4\xb2\x6b\x87\xf5\x2c\xb4\x88\xa3\x96\xe2\xca\xc2\x78\xa5\x33\x88\x74\x53\x08\x81\x42\x6c\xf7\x29\x0b\xc6\xe0\x49\x95\xfd\xa2\x20\x7f\xd9\x01\x12\x27\xc6\x6e\x99\x6f\xe4\x57\x82\x49\x39\x04\x07\x43\xd0\x05\x65\x5e\xc1\x30\x56\xef\xdf\x5e\xe7\xc4\xfc\x5c\x48\x38\xde\x49\xe3\x31\xa8\xad\x1c\xda\x10\xb2\x86\x0f\x96\x9d\xf4\x74\x80\xe4\x4f\x8e\x60\x1c\x39\x46\x41\xc1\x06\xee\xb4\xc1\x50\xab\x28\x9a\xb0\xd2\x0e\xa4\xc4\xe4\x00\x04\x67\xc9\xd8\xc3\xf1\x42\x67\x55\xa8\x07\xbb\xfc\xed\xbf\xdd\xbe\x79\x7d\x2e\x3e\x3d\x39\x1c\x0e\x4f\xa0\xf8\x93\x71\xe8\x94\x81\x2e\xb4\xe7\xe2\x7f\xbd\xba\x3e\x17\xca\x37\xdf\xad\xc4\x2b\x3a\x75\x12\x31\x67\x1f\x5c\xf4\xaf\x47\x87\xd6\x71\xf8\x27\x4e\x23\xde\x31\xac\x10\xcd\x9f\x77\xcd\x79\x47\x98\xbd\x70\xfb\x32\xbc\x8c\x8a\xb7\x30\x33\x3e\xa4\x19\x14\x5e\x5e\xc4\x1f\xd3\x8c\x44\xb6\x11\x2c\xac\x4f\x7c\x10\x43\x3a\x71\xfb\xe2\xf2\x0f\xff\xfa\x3f\xc5\x8b\x57\x97\x57\x62\xa7\x3e\x89\x56\x6f\x15\x99\xff\xc2\x8e\xbe\xd7\x61\xae\xff\xd7\x13\x58\x04\x4f\x6e\xf5\xd6\x48\x3f\x0e\x2a\xcc\x3b\x91\x87\x9c\x35\xea\x64\x73\xb7\xf4\xb6\xd2\x14\x44\x37\xd6\xf0\x00\xbc\x6c\xac\x29\x7b\x4f\x20\xe1\xa6\xd0\x15\xde\x11\x4a\xca\x61\x58\x32\x91\x7f\xd9\x29\x03\xf4\x7d\xec\xda\xf2\x68\x5e\xab\xb0\x04\x54\xfb\xa7\x69\x61\x0c\x07\x67\x4d\x07\x44\xe9\xdf\x30\x10\xd0\x2e\x78\x17\x41\x56\xe8\x1d\x02\xaf\xa6\x85\xf1\xfd\xea\x4c\xac\xbb\x10\x2f\xe9\x21\xed\x20\x56\xa6\xbc\x28\x5a\xce\x90\xb0\x96\xef\x42\x5c\x2b\x2f\xf6\x51\xeb\x87\xab\x9c\xd0\xcd\x8b\x94\xde\xa7\xcb\xd9\x61\x5c\x7e\xc9\x83\xc4\x05\xcf\xcc\xf9\x18\x96\xf7\xa0\x16\xb3\x97\x31\x32\xd7\x31\x2d\x92\x47\x05\x5c\xc8\x4a\xf1\x58\x53\xac\x3d\x8c\x7f\xb8\x34\x41\x1c\xa4\x6f\x71\xee\xb2\x23\x23\x58\x64\x73\xd5\xc1\xb4\xcc\x34\x08\xde\x62\x76\xa4\xf7\xa8\xb4\xa6\x2b\x84\xe7\x74\x31\xb2\x3d\x17\xe1\x52\xe1\x39\xbb\xcc\x9d\x87\x28\x04\xed\xb9\x18\x4d\xfa\x4d\x17\xba\x58\x70\x0d\x9f\xe8\xb2\x0b\x9f\xd1\xa3\xb2\x3d\xa7\x87\x11\x53\xc2\x6c\xbe\x49\xcb\x9f\xae\x4d\x52\xbb\xc2\xe5\xc9\x87\x80\xcb\x9e\x04\x0c\xbc\x08\x52\x07\xe2\xcb\x8c\xf3\xba\x27\xee\x1a\x85\xfb\xfd\x03\xa0\xd1\x83\x25\x37\xfe\xff\xef\x1f\xc9\x7c\x18\xb1\x5b\xee\x68\x9a\xdd\x60\x8d\xfe\x7d\xa1\x6f\x1c\x99\x30\x05\x26\x3c\x01\x90\x16\x6b\x70\x3f\x5b\x77\x1a\xbd\x41\xf0\x0e\xdb\xb2\x99\x96\x62\xf9\x85\xa0\x7e\xd3\x8c\x74\x55\xe2\xa9\xf2\xf8\x64\xd5\xd2\x69\x48\xca\xdc\x48\xbd\xd2\xf9\x15\x28\x38\x73\x82\x24\x0a\x52\xb8\xff\xe2\xfc\xc6\xc3\xbb\x54\x08\x2c\xb3\xd3\x73\x07\xb0\x24\x3b\x32\x77\x30\x93\x8f\x18\x70\x52\xc7\x4c\x2c\xe1\x79\x9b\x6b\x1b\x52\x0d\xa7\x24\x30\xba\xe5\x1e\x24\x83\xf0\x50\x26\xbe\x99\xf2\x34\xa6\x95\xf2\x6c\x38\x27\x91\xf3\x29\x0f\x49\x0c\xb3\x83\xe7\x49\xce\xd3\x80\x64\x5c\xde\x93\x05\x10\xbc\x25\xab\x8d\x57\x21\x9e\xeb\xec\x99\xa3\xe3\x64\xa8\x5b\xed\x1a\x3b\xb4\x0f\xe3\x7e\x4a\x40\x5f\x87\x9d\xda\x1c\x9e\xc4\xa0\xa7\x3b\x26\x99\xad\xdd\x4b\xf4\x00\x7d\x8a\x3f\x66\xe7\xe7\x4e\x1a\x43\xde\xee\xf4\x2b\x9f\x8b\xbe\xb3\xc7\xf0\xce\xd4\x53\xfc\xa2\x37\xa6\x96\x40\xb2\x57\x99\xd6\x3f\x5f\xd1\xdb\x48\xcf\xad\x6f\x76\xf2\x9b\x9f\xbe\x5f\xff\x0c\x1c\x32\xeb\xea\x3b\x6b\xef\xc2\x45\x17\xd9\xe2\xba\x8e\xaf\x6c\xf4\xf1\xf5\xa2\xe4\xa6\x21\xdb\x96\x7c\x6b\xb4\xa1\xa1\xc8\xc6\x0d\x46\x2e\xbe\x44\xcb\xad\x9a\x30\x52\x38\x03\xb1\x9d\x3c\xf4\xa9\x37\x4b\x9d\x49\xe2\x3c\x42\xe1\x08\xec\xe8\x91\x08\xd9\x3e\x41\x9e\x80\x14\x4e\x2b\xf1\x6e\xa7\x8e\x31\xe2\x30\x3e\x9e\x89\x76\xcd\xf2\xe1\x10\x6c\x5e\x78\x52\x2a\x37\x0f\xda\xba\x1c\xe4\xf0\x00\x04\xc6\x70\x21\x3d\x8e\x39\x8a\x36\x35\x23\x57\x6c\x16\x77\x48\x96\x7a\x31\x7f\xc3\x29\x42\x4d\xdf\x9a\x4a\x3d\x3d\xf9\xd6\x54\x5e\x34\x7f\x70\x2a\x2b\x8a\xbc\x7b\x1c\x84\x45\xa7\xe9\x62\x5a\xe6\xcf\x49\xa5\xae\x7e\xc1\x8b\x52\xcb\x33\x37\x55\xde\x7c\x76\xaa\x1f\xba\x33\xd1\xe6\x9d\xfb\x82\xb7\xa5\xa6\xf1\xc4\xbe\x40\x8f\xb3\xd4\x96\xdc\xa7\x36\x36\xe0\x73\x37\x28\x5a\xbd\xd9\xac\x28\x14\x6d\xed\xec\x38\x34\x0a\x39\x32\xf8\x16\xb7\xf8\x4d\x20\x1c\x88\xef\x82\x23\xf2\x51\x22\x87\x2a\xb8\x60\x1f\x57\x4a\xc4\x4b\x94\xa8\x92\xbc\x97\xba\x43\xf1\xf3\x42\x3c\xd5\x9b\x0d\x5d\xa8\x7c\x6d\xf1\x25\x4e\xca\x59\x51\x11\xb7\xb3\x87\x1a\x7e\xe1\xd3\x53\xe8\xcf\xb6\xb3\x07\x2a\x74\x0b\x29\x19\x98\xeb\x3b\xed\x6b\x8e\x82\x7b\x0b\x1f\x18\xc7\x37\x83\x18\x0d\xc6\xec\x0b\x30\xef\xe9\x33\x87\x02\x94\x31\xa6\x41\xb0\xd1\x9c\xb5\x31\xd0\x1c\x8a\xff\xc9\x7a\x83\x2b\x34\xc0\x9d\xb5\x48\x7f\x50\xbe\x4f\x20\xf9\x73\x27\x67\x6d\xd4\x1c\x27\x08\x1e\x68\x24\xaa\xbf\xbc\x7c\x4d\x9f\x18\x83\x96\x83\x10\x61\x30\xe2\x67\xba\xe3\xf1\xe6\x67\x68\x7b\x0c\x74\xa7\xda\x10\x80\x0f\xf2\x44\x96\x9c\x5d\xc3\xcb\xc3\x11\x13\x0e\x6f\x6d\xbd\x97\xe6\x18\x2f\xe8\xde\xda\xbd\x62\xdd\xc6\x41\x31\xf9\xc1\x90\xc5\xe9\xce\xa2\xb5\x02\x8a\x30\x54\x18\x90\xa0\x27\x05\xb4\x55\x88\xc0\xbc\x5a\x8a\xc4\x1c\xf2\x28\xac\x76\xe0\x87\x60\x97\x06\x9e\x28\x40\xb4\x83\xdc\xe0\x15\x32\xf8\x1f\x53\xfb\x41\xa5\x62\x37\x83\x7a\x32\x2d\xc6\x57\xbd\xe0\x5f\x4c\x93\x3b\xba\x66\x90\x66\x20\xcd\x4c\xb8\x95\xe8\xad\x38\x73\x1c\xa7\x90\x37\x5c\x89\x98\x56\x7f\x8d\x3e\xdb\x17\xbc\xf6\xc5\x95\x6d\x55\xd1\xa7\xfc\x0e\xd9\x0d\xf1\x6d\x22\x8e\x03\x7a\x76\xd0\x8b\x58\xfd\x60\xdb\xb1\xf1\xab\xa2\xdd\x45\x69\x62\xd4\x54\x58\x75\xa2\xb3\x5b\xd4\x06\x60\x60\x59\xf2\x34\x1d\x4d\xab\x06\xe7\xc9\xa9\x5c\x66\xd4\x55\xef\xfb\x81\x4c\x07\x01\xbd\x97\xdb\xf8\x62\x97\xdc\x52\x74\x8c\x94\x87\x9a\xf0\xf0\x00\x79\x51\x26\x1e\xc0\xc1\xff\x3c\x8b\x4e\xe9\xe5\x16\x99\xde\x26\x8f\x87\x0e\x32\x9a\x35\x81\x67\xcd\x1a\x50\x9c\x2c\x21\x75\x7e\x9a\x84\x9c\xf2\xfa\x48\x36\xfd\xbc\x6d\x39\x20\x73\xcc\xe9\xac\x6c\x49\x28\xbe\xa6\x5f\xab\xd5\x6a\x61\xd5\xcc\xdf\x94\xeb\x07\xf5\x64\x3a\xd7\x19\x7c\x1c\x80\xbf\xa8\xc7\x5d\x27\x7a\xab\x8d\x17\x74\x1d\x4a\xfa\x62\xa5\x04\xcb\x09\x4f\xad\xb6\xe6\x09\x1e\x53\xa9\x19\xd3\x4b\x80\xb1\x3a\x5e\x28\x69\xc9\x4c\x57\x35\x5e\xaf\x0a\x3b\x02\xef\x57\x95\xdb\x02\x57\x4f\xda\x18\x78\xd1\x71\xb6\xa1\x88\x0d\x4e\x50\xa5\xc5\x7c\x01\x98\x8e\xbc\x20\x86\x44\x4b\xdb\x14\x66\xf9\x94\x0b\xf5\x4c\x2f\x54\xe1\x13\xc1\xae\xb7\x26\x1a\x9f\xbd\xdc\x3e\xf8\xaa\xd5\xa4\xb6\xdc\x82\x4b\x55\x7c\xe6\x10\x9b\xee\x81\xf2\x7a\x56\x86\x87\x59\x0d\xa0\x94\xbc\x47\x66\xac\xc6\x0c\x17\x5f\x67\xcd\xf6\x55\x58\x07\x98\x9e\x4a\x84\x50\x22\x78\x00\x87\xdf\x55\xf5\xc1\x0e\xdb\x8f\x15\x9a\xe9\x30\x6c\x74\x0c\x1b\x99\xdb\xe4\x50\xef\x0a\x30\xf1\x8d\xf3\x13\x80\xe9\xdd\xf3\x84\x31\x2c\xe0\xe7\xb0\x4d\x4b\x7f\x17\x00\x20\xad\x37\xbe\x21\xc5\xb7\x09\xf8\x19\xa9\x55\x78\x02\xc1\x0e\xdb\x74\x7f\x30\xaf\x8e\x5e\x0d\x4a\xb7\xd2\x38\xca\x7b\xc5\x5e\xfe\x17\xe2\x06\x7f\x54\xda\xdc\x6b\x0f\xfc\xc3\x5e\x91\xc3\xdc\x4b\x4c\xc0\xf3\xc6\x1a\x55\x15\x7e\xf0\x15\x06\xa7\xae\x83\x0f\xfc\x45\xf0\x86\xe7\xf4\xe2\x9d\xa8\x8b\xe2\xdd\x8d\xfc\xc9\x06\x40\x59\x5e\x7a\x04\xe4\x38\x2a\x0b\xd7\xa1\x01\x3a\x92\x47\x28\x89\x43\x88\xa9\x0f\x41\x17\x6f\x34\x01\x75\x18\x43\x9c\x41\xc4\x85\xf1\x3e\x0c\x09\x5c\xb8\xa8\x00\xb3\x36\x45\x00\x24\xb7\x4a\xd5\x64\xb4\x66\x47\x77\xa5\x53\x31\x60\x0e\xd1\x95\xfc\x4f\x04\x5f\xbc\x53\xc2\x0a\x49\x49\x6f\xac\x51\xb2\xe8\xd4\xbd\xea\x0a\x0d\x25\x22\x02\x49\xe0\x4f\xd5\xf2\xd3\x37\x6f\xa6\x6b\xe3\x1f\x78\xfc\x66\x8e\xe3\xc1\xe7\x6f\x10\x5d\x1a\xd0\xac\x31\x38\x0f\x27\x1a\x11\x19\xdd\xaf\xbd\xee\x18\xf7\x0f\x30\x4c\x71\xaf\xe4\x66\x23\x76\xcb\xff\x0b\xfd\x4a\x59\x9d\x6d\xc2\x1d\xc9\x6b\xfe\x79\xd2\xc9\xe4\x21\x6f\xfd\x12\x34\x23\x66\xc5\xc0\x45\x4c\x5f\xea\x91\xc2\x97\x00\xec\xb0\xfd\xe7\xee\x00\x14\xef\x20\xce\x5a\x3d\x7b\xd8\xbe\x68\xf4\xd7\x3d\x70\x7f\xd2\x83\xab\xa0\x30\x53\x25\xce\xec\x65\x42\xec\xe0\x83\x45\xca\x77\x0a\xf3\x06\x47\xc3\x59\xe6\x41\xc5\x4e\x17\xf4\x42\x21\x19\xff\x3f\xff\x4c\xe1\x09\xcf\x9b\x87\xde\x2b\x9c\xb6\x12\x28\x53\x8c\x26\x98\x37\xf2\xc1\x12\x39\x37\x63\x27\x5e\x1c\xff\xf8\x1b\x86\xcb\x1e\x1b\x97\x6d\x1b\xb4\x79\xfc\x64\x59\x18\xbf\xa4\x31\xdc\x64\x31\xb8\xa7\x0f\x70\xa6\x91\x43\xbe\x95\xaf\xca\x15\xeb\xad\x62\x5a\xbf\xe2\xff\x3b\xdd\xd7\xc5\xbb\x85\xaf\x62\x7a\xf6\x84\xe1\x8f\xb1\x18\x6b\x7a\xc2\x83\xd5\x93\xf4\x44\x5f\xf1\x2a\x7e\xb8\x78\x10\x81\xe8\x9b\x9e\xd3\x5f\xca\x99\x96\x2f\xeb\xa0\xff\xf5\x60\x3b\x15\x1b\x2a\xde\xda\x4e\xa5\xe6\x95\xb1\xf4\xca\x82\xb1\x4c\x4c\x67\xb5\x40\x78\x44\x2e\xa6\x97\x8f\x8f\x86\x54\x3e\x63\xf3\x97\x11\x90\x1f\x67\xec\x28\xde\xfc\x38\x85\x36\x18\x82\x9c\x4f\xe3\xd7\xf6\x50\xd1\x51\xbc\xc2\x60\x7d\x17\xe2\xdf\xac\x36\x9c\x52\x56\x4a\x69\xc0\x19\xa5\x37\x3b\xde\x82\x8c\x45\x0f\xe3\xce\xf3\x27\x6f\x93\xe1\x49\x14\x5f\x25\xe3\xf7\x79\x91\xb1\xe7\x90\x90\x86\xdc\x5a\xca\x57\xb5\x08\xeb\xe4\xa9\x10\x0a\x54\x50\xd4\x9b\x43\x7c\x49\xc5\x78\x09\x7d\x5a\xdd\x79\x50\x71\xa3\xde\x2d\x5e\xbe\x53\xfb\xd0\x0e\x74\x75\x4e\xed\xc0\xbb\xf0\x65\x3b\x72\x88\x2f\x69\x07\xd4\x82\xe1\xc7\xc2\x15\x80\x93\xed\x91\x6d\x2b\xc8\x3b\xbb\xf0\xc8\x9c\x36\x31\xbd\x8e\xf5\x2e\x3b\xff\xd1\xab\xb5\x9d\xf0\x33\x6e\xb5\x74\xa4\x52\x0e\x39\x21\x2e\xb0\x1c\xe4\x61\xbe\xf8\x62\xf4\xe7\x89\x00\xc6\x79\x83\x92\x11\x34\xf3\x1d\x2f\xa2\xf5\xcf\xcf\x25\x6a\x57\x62\x11\x91\x57\x60\xda\xc0\x99\x9f\x3f\x92\x09\x2e\x3c\x57\x43\xfc\x62\x7e\xa8\x20\xc3\x18\x66\xb2\x45\x88\x3a\xee\x55\xd8\x60\x59\xad\x73\x64\x91\x98\x23\x54\x24\xe2\x73\xb8\xb0\x63\x73\x6e\x2f\xb3\xb7\x28\xb4\x41\x15\x37\x42\x03\xd4\x5e\x1e\xa7\x4f\x07\x63\x90\x82\x62\xd7\x9c\x16\xac\xe6\x4d\x49\xe7\xfa\x73\x7d\xaf\x4c\x5a\x30\x27\x85\xab\x55\xbe\xd5\xe7\x0b\x24\x2d\xbb\xed\x80\x21\xf0\xc2\x5c\x03\xb1\xc8\x96\x02\x22\xfc\x31\xf6\xb2\x91\x66\x4a\x0d\xd0\x63\x4f\xc9\xfd\xe3\x87\x88\xc2\x57\x34\x00\xc9\xc6\xc3\x2d\x40\xb2\x40\x41\x57\x4d\x9b\x93\x80\x87\x1a\x42\x7b\xfe\x2b\x1a\x82\x74\xe3\x0b\x1b\x72\x1e\x5a\x41\xdc\x09\x50\x81\xa5\xfd\xff\x50\xfb\x26\xe2\x13\x2e\xce\xb7\xb9\x0c\x15\x88\x01\x3a\x9a\xa2\x7c\xb7\xe8\x68\x9a\xa9\xa3\x57\xab\xe9\x2e\xc9\x3c\x65\xb3\x9d\x92\x39\xe5\x87\xb6\xa0\x4f\x2c\x5f\x5e\xe2\x53\x2e\xa1\x32\xd6\xa0\xd4\x4d\x96\xd1\x78\xc1\x29\x43\xce\xb6\x1f\x3f\x1c\x99\xd3\xc1\xa7\x96\x8a\x77\x14\xa3\xc1\x87\x95\x54\x3a\xc6\xee\xa8\x3e\xe0\x5c\x7d\xac\x5a\xe9\x76\x6b\x2b\x07\xb4\x3b\x84\xdf\x55\x71\x2f\xbc\x2a\xde\x2a\x9f\x70\x68\xae\x9a\x0c\x6a\x31\x9e\x72\xf4\x3b\x10\x02\xa3\xf4\x70\x59\x24\x38\x7a\xe2\x7a\x1b\x58\xc4\xed\xc8\xa1\x57\xd8\x97\x1e\xef\x28\x3b\xaf\xf6\xe2\x35\x25\x54\x7b\x6b\x34\xb9\xed\xbe\xa2\x5f\xda\x6c\xab\x22\x7e\xd0\x33\xf8\xa8\x30\x62\x0c\xa7\x5c\x4b\xe7\x2b\x6f\x3d\x3e\x96\xf9\x0e\xfe\xff\x28\xce\xda\x2a\x75\x1d\x75\xde\xda\x79\x64\x9e\x6e\xc3\x6f\x97\x01\x24\xaf\x35\x0a\x7f\xc6\x1f\x39\x0a\x6c\x67\xcd\x4e\x82\xb1\xdd\xdc\x4a\xc4\x3a\xba\xa5\x2a\x43\x54\x20\x74\xf7\x6a\xa5\x97\xeb\xa0\xd4\xf9\x69\x8d\xba\xda\xf5\xcf\xa4\xf0\x3c\xcf\x12\x8a\x19\xc9\x33\x0a\x6b\x5f\x4a\x2e\xcf\xd2\x94\x4e\xcf\xd3\x16\x49\xce\xcb\xb2\x2e\xd9\xcc\x6a\x09\x06\x9a\x3c\x2d\x5c\x9f\x48\x29\xe1\x22\x45\x81\xdd\xe2\x75\x6f\x16\x0d\x8a\x2c\xba\x31\x54\x24\xd1\xed\xb4\x49\x4f\x48\x9d\x9c\xa7\x75\x76\xab\x8d\x20\x15\x75\xd9\x3d\x66\xd8\x4b\x9c\x21\xba\x56\x81\x02\x43\x1e\xe7\x29\xbb\xe0\x4c\x5a\xa4\xe2\x06\xcd\x13\xd8\x4b\x74\x06\x98\x62\xeb\xba\xd5\xd2\x42\x0a\x72\x78\x5c\x4c\x24\x8c\x2f\x41\xba\x83\xa6\xe7\x41\x6f\xf1\xc7\x22\xcc\x30\xa2\xb2\x72\x34\x59\x6e\xd3\x29\x69\xea\xd1\xac\xb5\x69\x6b\xcb\x8f\xec\x5e\x41\xa2\x18\xcd\x1a\x7d\xea\xde\xe0\x7e\x74\x0f\x16\xca\x0e\xc6\xcb\xae\x13\x94\x15\x4a\x66\x37\x95\x96\x4f\xc8\x84\x99\xcf\x5a\x76\xe4\x94\x49\x40\x74\x89\xf5\x90\x18\xd7\x93\xdd\x39\x42\xf6\x17\xe1\x98\xb4\x32\x41\x44\x34\x5f\xdf\x54\x3c\x00\x80\xe0\xeb\x7b\x35\x69\x64\x41\xf4\x02\xc8\x67\x30\x4c\x9a\xb8\x88\xe2\xeb\x1b\x89\x47\xad\xd9\xd2\xb1\x73\xa2\x91\x20\xd8\x37\x76\x68\x59\x72\xed\xac\xf3\xa8\x7b\xa6\xe7\x18\x1f\x46\x79\xaa\xd5\x0f\xe2\xfc\x8a\x6e\x6c\xb5\xaf\xb7\x4d\x6a\xbe\x15\x5b\x39\xac\x81\x72\xc3\xe9\xce\x11\x7d\xac\x29\x75\x9d\xcb\xc5\x1f\x1a\x60\x6c\x50\x0b\xcc\xd4\x02\xfa\x53\x6d\x1b\x14\x46\xc2\x90\x5d\x57\x3b\xb7\x63\x8f\x82\xb7\x8a\xac\x33\x8f\x57\xce\xed\xbe\x97\xfc\x5e\xb5\x42\xdb\xbb\x7b\x4c\x2f\xa2\x7c\xdb\x48\xbc\x34\xfd\x23\xc6\xad\x41\xd2\x8e\xa5\x03\x6b\x0b\xa3\xf5\xdd\x83\x15\x4d\xfa\x92\xd1\xf5\x6c\x6c\x07\x6c\x8a\x57\x5f\xd4\x83\x10\x6a\xe4\x2d\x26\xb1\xe5\xa7\x51\xe8\x53\xcd\x54\x0c\x59\x3d\xeb\x7c\xc8\x60\xbf\x6e\xbb\x99\xad\xf9\x07\xaa\x78\x60\x16\x1e\x7f\x4d\xad\x79\x37\xf9\x6d\xf5\xd3\xbd\xd4\x46\xfb\xd9\x56\x78\x8b\xc9\xfc\x4c\xfe\x3f\xb4\x21\x96\x10\xff\xb3\x1b\x62\xc8\x5a\x35\xed\x52\xce\x20\x60\xac\xb0\x7a\xec\xbd\xc6\x83\xe2\x96\x1e\xec\x7e\x8f\xdf\x39\xc1\x1e\x87\x01\x98\xc4\xad\x1d\xec\xe8\x35\xbd\x10\x45\x69\xe2\x79\x48\x73\x0b\x05\xd0\xd4\x71\xac\x47\x8e\x79\x18\xca\xbc\xc2\x64\xf1\x1e\x9f\xf8\x4a\xa5\x90\x7f\x0a\x65\x64\x87\x0a\x61\xd2\x54\x23\x63\xc5\xa5\x2e\x43\x46\x56\x92\xcb\xd8\xb5\x97\x1c\xc8\x8e\x81\xdf\x70\x4a\x06\x8b\x06\x46\x35\xd4\x9d\xb5\x77\x63\x5f\x43\x57\x31\x14\x0f\x25\x8b\x6b\x4c\x16\xef\x20\x79\x5e\x43\x68\x55\x2c\x36\x69\xd4\xa9\x72\x9b\x41\xcd\xca\x3c\x1b\xd4\x1c\x3e\x8c\xdc\x4e\xc9\x7e\x36\x6e\x2f\x94\xec\x67\xa3\x86\x90\xf3\x01\x40\xd8\xd3\xa3\x90\x97\xd2\x2d\xca\xd1\x79\x89\x97\x6d\x77\xaa\x0e\x8d\xee\x47\x53\x78\x03\x7c\xfc\x89\x12\xcc\x4f\x4d\x5b\xc5\x46\xc1\x59\xab\xec\xfa\xbf\x54\xe3\x5d\x80\x7e\x43\x9f\x19\xd4\xda\x5a\xef\xfc\x20\x7b\x60\x85\xd1\x27\x9d\x86\xe9\x97\x90\x0e\xac\x70\x73\x37\x1b\x29\x82\x9e\x0f\x15\x41\x9f\x1e\xab\xbd\xeb\xa5\xa9\x9d\x1f\xc6\xc6\x8f\x83\x72\xb1\xc2\x57\xb7\xbd\x34\xe2\x36\x66\xcc\x6a\x9c\x95\xcc\x57\xe8\xb4\xf0\x52\xcd\x8d\x6c\x76\x6a\xb1\xea\x2b\xc8\x79\xb0\xee\x59\xd9\xbc\xf2\x59\xf1\xa5\x9d\x32\xd8\x8d\xee\x80\x28\xad\xc7\xe6\x4e\xf9\x7a\x27\xdd\xae\xf6\xf8\x66\x61\x86\xeb\x26\x80\x89\x5f\x10\x4c\xbc\x90\x6e\x27\xde\xa1\xd2\x6d\x01\xeb\xb6\xa9\xf7\xca\x4b\xf4\x52\xca\xb0\x3c\xbf\x12\xaf\x38\x79\xa9\x14\x2a\xe3\x6a\x96\x80\x78\x17\x02\x53\x9a\x61\x78\x83\xfa\x3a\x16\x8a\x2e\x23\xc8\x12\x36\xa3\x3e\xf1\x91\xde\x1c\x1b\x7e\xde\xfa\x93\x87\x36\xbc\xa5\x94\x0c\x16\xc5\xbc\x6d\x53\x07\x1a\x89\x0e\x2c\x18\x1e\xf4\xf9\x15\x6e\xdf\x19\x05\x4b\xc0\x44\xb8\x9e\x5f\x89\x1b\x39\xba\x45\xc0\x5e\xd2\x66\x3a\x09\x19\xaa\x0f\x80\xa1\xe6\x29\x1c\x57\xea\x68\x28\x89\xac\x90\x8c\xbd\xc2\xdb\xac\x14\x8e\xb3\xee\x25\xf9\x8d\x82\xd4\x2d\x5e\x51\x88\xce\x1b\x48\x63\x58\xa3\x0e\xb9\x51\x25\x59\x77\x2f\x29\x31\x80\x91\x64\x81\xf2\x04\xa5\x04\x5e\xb8\x0d\x2e\xd2\x48\xa2\x39\xaf\x08\x67\x4a\x69\xe9\x00\xed\xad\xe3\xb4\x10\x66\x3a\x3e\x05\xc6\xe9\x78\x2f\x63\x50\x5b\xed\x3c\x87\xa2\xc0\x70\xce\x78\x69\xf1\x2d\x26\x07\xf9\x26\xbf\x86\xfa\xce\x62\x2f\xb3\x8e\x95\x5e\x8b\xa1\x9b\x9f\x0f\x75\xbd\x62\x1c\xf9\xb3\x33\xdc\x33\x14\x5e\x82\xdb\x5e\xa9\x79\x08\xee\x7b\x04\x09\xcb\xb1\x63\xdb\x66\x97\x97\x46\xc9\x32\x88\x6a\x13\x0c\xd7\x28\x75\x66\xa3\xdc\x4b\xe7\x0e\xe8\x95\x1c\xb4\xdd\x68\x2f\x10\xda\xf3\xdd\x33\xd4\xb6\xa3\xef\xf0\x68\xd8\x79\x2c\xb4\x3e\x05\xa3\x63\xdf\xb6\xc8\x62\xf0\x40\x70\xce\xe7\xec\x8a\x69\x2c\xb2\x95\x82\x0e\x31\xe5\x1a\xd9\xcb\x4f\x24\x9c\xe0\x90\x72\x24\x6c\xf9\x49\xef\xc7\x5c\x55\x45\x53\x8d\x9d\xd5\x7b\x7d\xb2\x6c\x50\xf3\x7d\x7b\xab\xbc\x78\xf2\x03\x5e\x9e\x74\x4a\x6c\x3b\xbb\xc6\xf0\x9f\x14\xc3\xb4\x03\x14\xdf\x31\x0e\xed\xea\x7c\x51\xa2\x82\x30\x34\x18\x7f\x96\x8b\xb4\x1f\xec\x4e\xaf\xb5\xa7\x09\x59\x28\x10\x00\xc2\x4b\x85\xdb\xb8\x96\xa1\x26\x5e\xe2\x45\x21\x0c\x0c\x04\x19\xb4\x42\xed\x90\xb9\x0f\x84\x35\x4f\x91\xbe\x40\xc4\x60\xdf\xf9\x19\x86\xac\x4c\xf6\xc8\x23\xb0\x7d\x14\xeb\x2f\xc7\xa3\xf7\xbd\x1d\xa0\x0b\xb4\xd8\x3e\x87\x8b\xc0\x05\x81\x17\xbc\xf7\xd2\x92\x49\x2a\xfe\xb0\x62\x88\xf4\x87\xc5\xf9\xa0\x05\xb9\x5c\x1b\xf8\xbc\x46\x6d\x0f\x26\x29\x1e\xb3\x96\xd2\xe3\x1b\xd0\xde\x14\x9e\xc1\x02\x67\x0a\x3c\x2f\xbe\x62\x07\x42\x56\x1e\x6c\x23\xc6\xc7\x49\xcf\xae\xd9\x21\x46\x72\x20\x47\x74\x56\x4b\xe6\x0d\xd8\x49\xc7\xce\x37\x27\xea\x4f\x66\x52\xbc\x1a\x92\x57\x9f\xeb\xc7\xca\x06\x90\x29\x2f\xde\xc1\x99\x99\x57\x5c\xd9\x94\x05\xbf\xab\xcb\x6c\xca\x1e\x72\x1e\xb6\x03\x47\x20\x98\x50\xf7\xc2\xbe\x5d\x50\x79\x2c\x91\x53\x6f\x4c\x28\xfd\x83\x30\x29\xd9\x7e\x82\xd9\x87\xb4\xb0\x48\xb8\xa7\xf5\x65\xdb\xb9\xa8\x8d\x4a\x94\x56\x59\x4a\xcb\x9b\x40\x29\x73\xeb\x30\xa5\xb3\xfe\x50\x5c\x88\xbf\xd0\x2f\x4e\x47\x25\x22\x71\x6f\x43\x48\x9b\xde\x06\x63\x48\x90\xcd\xe0\xe4\xfe\x5d\x55\xa8\x2e\x66\xca\x3b\xe9\xc4\x84\xf6\x16\x1d\xa1\x52\xf4\x78\x46\x08\xdf\xc1\xe4\x9d\xb3\xb2\xfe\x50\x4a\xfe\xba\x26\xa5\x28\x0c\x88\xd6\xc6\xd0\x68\x2d\xa7\xcf\xfd\xbb\xb2\x46\x32\x9a\x49\xe3\x32\xac\x08\xb5\x7c\x7c\x64\xad\x71\xaa\x19\x07\xed\x8f\x18\x8b\xd4\x36\xb6\xa3\xdb\xa3\x98\x86\x61\x48\x21\x8d\x61\xa7\x97\x4f\x28\x15\xe3\x38\x5c\x88\x17\xd6\x79\x4e\xe9\xe9\x7d\xcd\x1b\x3b\x84\x14\xd4\xe8\xb5\xe8\x62\xad\x4d\x2b\x9e\xbe\xce\xd3\xc3\xd9\x15\x72\x6f\xf8\x7b\x09\x26\xf3\xd4\x92\x83\xd1\x66\xfb\x23\x3f\x78\x13\x70\xe0\x13\x3d\x76\x20\xd7\xe8\xbe\x83\xf6\x7a\xf5\xc9\xa3\x35\xce\x58\xcf\x8f\xdf\xee\xf4\x76\x87\x6e\x08\xba\x53\x5b\xf2\xfa\x87\x7d\xb5\x0a\x03\x0f\x8c\x11\xbf\xe3\x85\x0c\x11\xdb\x5e\x7e\x91\x4e\xe5\x20\xd8\x23\x04\x88\x3d\x92\x9e\xa2\xd6\xa9\xa5\x1b\xb1\x22\xe6\x9e\x84\x9e\xbe\x4a\x8c\x24\x23\x1e\xe1\xd0\x7a\xa7\xb7\xe6\x89\xc6\xf7\x30\x80\x76\xa9\xae\xe5\x8b\xe5\x45\x74\xbe\xd5\xac\x86\xe0\x7c\x85\x0f\x1b\x7c\xa6\x35\x6e\x0c\x4d\xbf\x1d\x3f\xd7\xf2\xbd\xd4\x18\xe4\x11\xff\x9f\x04\x73\x20\x1f\xae\xf9\xcd\x6f\xe5\x9b\x5d\x02\xc5\xcb\xfb\xbc\x2e\xe8\xbe\xca\xa7\xb0\x6e\xe8\x91\x85\x30\xc8\xf4\xc8\x42\xc0\x8c\xf6\xbe\x08\x40\x5e\x00\x05\xc4\x1e\x4e\xdf\xda\x49\x20\x55\x4e\x5c\xb6\xe2\xf6\x32\x2c\xfa\xbd\xef\x6b\x56\x4a\xdf\xbe\x7a\x77\xf3\xc0\x2e\x02\x50\x5e\xe1\x08\x99\x2d\x73\xc8\xe2\xa5\x8e\x59\xd9\x7a\x0f\x41\x5f\x68\xc7\xb8\x10\x9d\x53\xb5\xbc\x75\xdc\x32\xdc\x43\xdc\x1b\x2c\xde\x41\x39\x3f\xe8\x86\x5e\x84\xe6\x32\x2b\xf1\x6a\xec\xbc\xee\x3b\x15\x52\x82\xeb\x21\x5e\xfc\xee\xe5\x10\xde\xce\x6d\xec\x7e\x2f\xc5\xe3\xf3\xc7\xab\x82\xee\xd4\x1e\x5f\x29\xe7\xa8\x8c\xef\xae\x6f\xc5\xaf\xa6\x19\x8e\xe4\xa1\xc0\x3d\xbd\xd3\x3d\x80\xd5\xf7\x6a\x60\x16\xfb\x4e\xf7\x08\xfb\x67\x4c\x09\x1b\x5f\xee\x6b\xa7\x86\x7b\xdd\xc4\xe5\x76\x73\xf9\x0a\xd5\x47\xba\x51\x39\xd9\xe1\xaa\xf1\x49\xa9\xc0\xc0\xa7\x46\x5c\x8e\xde\x16\x0c\x7c\x20\x9d\xba\xc7\xd3\x48\xf7\x61\x00\xf3\xf7\x65\xa6\x5c\x36\xb9\x1b\x84\x91\x9e\x71\x7c\x25\x74\xc1\xf8\x45\xaa\x3e\x95\x0c\xca\x32\x9f\xbb\xd3\xb4\x2a\xe8\x78\x7e\x8c\x97\x78\xbe\xd0\x6f\x2f\x47\x96\xb1\x5c\x0f\xf5\x7a\x31\x46\x5b\x59\xa2\x80\xac\xe9\x68\x61\x07\x8a\x09\xea\xe8\x4a\x31\x2f\x91\xdb\xda\xe7\x03\xbb\xe0\x0f\xf7\x80\x0f\x1c\x2f\x39\xe4\xc3\x74\xbc\xd2\x76\x02\x35\x71\x64\x08\xb3\x3e\x92\x13\x06\x1b\x2c\xd9\xfa\x9c\x98\xbe\x14\x86\x52\x39\x86\xca\xa3\x2d\x12\x77\x8f\xa7\x2a\x73\x61\x59\x37\x27\x5c\x58\xd9\x8c\xcf\x30\x63\x84\x86\xa4\x39\xbe\xca\x12\xdc\xdf\xaf\x33\xe3\x21\xad\xa6\xa9\xd7\x3b\x1b\xa9\x83\x46\x36\x9a\xac\x59\x23\x5b\x5a\xae\x19\x56\xf6\x7d\x3c\xf7\xfb\xbe\x2b\x0e\xfd\x0c\xe4\x9e\xe8\x66\x06\xf1\x67\x8e\x99\x99\x01\x51\xb8\x86\x1c\xe8\xfd\xdb\xeb\x00\x30\xe5\x07\x38\xd9\x6e\x36\x9d\x36\xaa\xde\xd3\x85\x9d\x37\xf4\x29\x5e\xd9\x36\xd6\xcf\xe1\x4f\xea\xc1\x8e\xa4\x72\xdd\x66\x2f\x0f\xbc\xc5\x44\x18\x9c\x00\x3e\x8c\xb8\x0e\x06\x32\x33\x92\xf4\x9e\x65\x71\x45\x90\x95\x57\x02\xb2\x53\x78\x00\x83\x02\x07\x4c\x3a\x88\x76\xf0\x06\x2f\x61\xd5\x83\xb5\xbe\xee\x25\x1d\x09\x98\x4e\xf7\xba\xde\x5a\xeb\xc5\x8d\xf4\xbb\x50\xa8\xb3\xdb\x79\x89\x6b\xbb\x3d\x01\xce\x91\x53\x69\x9b\x84\x3e\x50\xda\x74\x1d\x61\xb7\x62\xdb\xdc\x2e\x9b\xed\xdb\x17\xcb\x53\x0d\x50\x73\xee\x31\xcb\x04\x66\xd8\xd7\x1c\x60\xba\xa6\x55\xc4\xbc\xb1\x17\xbf\x70\xdc\x69\x5a\x4c\x79\xb1\x13\x33\x0b\x59\x39\x73\x97\x25\x77\xe8\x2f\x12\x72\xaf\xf1\x6b\x06\x94\x0f\xd9\x6c\xa4\x00\xe0\x4e\x1d\x6b\x8c\x11\xc5\x40\xff\xae\x8e\x14\x1b\x6a\x01\x70\x0b\xd5\x45\xb0\xad\x32\xe2\xdb\xc7\xce\xed\x9e\x50\xd6\xe3\xef\x66\x65\x40\xde\xde\x8f\x7b\xba\xa7\xaa\x7f\x57\xf4\xde\x23\xc6\x97\xc7\x0c\xac\x0d\x84\x01\x71\x05\x19\x0f\x15\x75\x0b\xa5\x5c\x95\xe6\xbc\xb7\x69\xf2\x72\x95\xc6\xd2\x1c\x22\x74\x31\x32\xa9\xc0\x7c\x90\xd0\x77\x30\x30\xff\xb7\xf8\x45\xec\x4a\x8e\x0d\xdf\xee\xa8\x93\xe0\xf4\x0c\xdf\xf2\x08\xe2\x13\x43\xee\xe5\xa7\xa4\x45\x41\x05\x09\xe9\x61\xa6\x8a\x17\x06\xef\xf1\x6d\xec\x41\xb5\x75\xa7\x1b\x65\x1c\x3f\xe2\xc2\x89\xe2\x9a\x13\xa7\x3b\x7c\xe7\x7d\x5f\x6f\x11\x77\xd8\xdf\x18\x63\xee\x79\xc2\xcc\xbc\x00\x2a\x1b\x70\x0c\xea\xbd\xde\xc6\x77\x91\x98\x25\x40\xf5\x18\x0e\x85\x78\x15\x72\x03\x02\xbe\x49\x58\x6f\x80\xaf\x84\x81\x27\x63\x49\x73\x4c\x8f\xa2\x32\xcf\x79\x95\xf2\xe2\x6c\xb5\xeb\x34\x57\x4f\x83\x0f\xcc\xe2\x4c\xb5\xeb\x3a\x17\xde\x52\x6a\x2e\x02\xa5\xd4\x5c\xf4\x4b\xa9\x4c\x03\x72\x1a\xd6\xae\x6b\xe7\xba\x40\xc6\x6e\x6f\xaf\x4b\x5a\x99\x72\x13\x7f\xf8\x2d\x30\xfb\x8f\x7a\xeb\xfc\x76\x50\xee\x91\xb0\xa6\x3b\x7e\x97\x95\xe0\xa5\x94\x2f\x1d\x4e\x9d\xe2\x70\x7f\xed\xb4\x57\x7f\x7c\x84\xa6\xd0\x47\x5e\xb7\xeb\x47\xdf\x15\xc7\x8e\xc6\xbb\x97\xd9\xb9\xa3\x9b\x13\xe3\x13\x35\xb1\x0a\x64\x81\x2c\x2e\x73\x78\xfb\x85\x64\x04\xf6\xc8\x2f\x87\x36\x1c\x08\x89\x17\x8c\xc7\x41\xce\x07\x86\x76\xed\xec\x81\x61\xd9\x09\x25\xbe\x39\x86\x17\x94\xdf\x06\x34\xbf\x60\x72\x6a\x20\x3d\x23\x13\x5e\x51\xe7\x1b\x8d\xa1\x79\xf8\x70\xfa\x4b\x43\x17\x92\xe3\x2e\xd1\x5d\xd2\x2c\xbf\x82\xf6\xe7\xca\xe4\x69\xfb\x67\xb4\x25\xf4\xe2\x61\x1a\xc3\x5b\xa0\x91\xbd\x6f\x76\x32\xad\xfa\x2b\x4a\x88\x27\x32\x85\x14\x69\x60\x29\x74\xec\x18\x42\x61\x47\xf0\x3e\xac\xb8\x46\x4f\x90\xd8\x59\xa7\x7c\x12\x9c\x8b\x42\x6f\x21\x2f\x0a\xda\x79\xe1\x50\x3a\x04\x04\x8b\x33\x1f\xc2\x7d\x2c\xce\x3c\x46\xb4\xab\x3b\x65\xb6\xb8\xec\xfe\x03\x3e\xc5\x35\x7e\xc6\x11\xa2\x38\x1e\x68\x8c\xb0\x23\x6b\x01\x21\x05\x6d\x12\x76\x4c\x07\xc5\x67\x85\x8d\x7c\x6e\x72\xa6\xe8\x15\x7e\x2f\xb7\x90\x61\x4f\x1e\x96\x9c\x1f\xc9\x96\xea\x6c\x4e\xb2\x7e\xbd\x7e\x33\x81\x5c\xd8\xdd\x9c\xb3\x40\x0d\x38\x67\x61\xef\xa3\x09\x03\x8f\x3c\x96\xa3\xd1\x78\x81\x67\x1e\xee\x96\x00\x17\x41\xea\x0d\x5d\x4e\xbe\x10\xcf\xa0\x00\x3e\xb4\x6e\x5a\x8a\xc2\x88\xfb\x0e\x92\x80\x97\xfc\x51\x9c\xdd\xcf\x4b\x3b\xba\xf4\xfb\x2e\x81\xa7\x77\x2b\x39\x5e\x1d\x14\x4e\x9c\x27\xf9\x61\xc5\x31\x46\xdf\xab\xe5\x21\x26\xc8\xf9\x08\x47\x32\x8d\x76\xc7\xe4\x75\x89\x96\xc6\x45\x4c\x04\x29\x5b\xd9\x13\x29\x20\xd0\x4b\xfa\x2e\x81\xd0\x38\x7f\x2f\xbb\x08\xf5\x92\x13\x66\xb5\x9a\xbc\x4e\xc3\x4f\x73\xa5\x69\x20\xa7\xe1\x8c\xd0\xd1\x65\xbe\x65\xb6\x8b\xa1\xfb\xc1\xde\xeb\xe0\x9d\x4b\xf0\x37\x9c\x94\x8e\x4d\xfa\x4e\x98\x03\x04\xa3\x4e\x87\x98\xbd\xd3\x51\x6c\xbe\xc2\xaf\x62\x75\x31\x8d\x80\x4d\x4d\xb0\x89\x4c\xdc\x2a\xcf\x25\x22\xef\xdb\xc4\x91\x09\x36\xc7\xe7\x57\x71\x6c\xc8\x3c\x39\xe9\x4c\xa7\x37\x2a\x1a\x33\xb9\x37\xd7\x7a\xa3\x0a\x60\x38\xce\x5d\x88\xa3\x06\x07\xf9\xad\x78\x63\xba\xe3\xa4\x13\x39\x2a\xee\x49\xc2\x14\x47\x46\xa3\x85\x39\x1b\x18\x4a\x58\x1e\xf2\x00\xcd\x27\x52\x06\xce\x47\xd2\x94\x12\x6f\x07\xbe\x15\x97\x76\xf1\x73\x4e\x9a\x8c\xe8\x46\xb5\x18\x1a\xa0\xad\x63\x09\x1e\xd7\x67\x21\x47\x5c\x62\x4e\x22\x8f\x20\x5b\xc4\x86\x83\x68\xb1\xd8\x68\x80\x0a\xed\xc1\x28\x1a\x3b\xbd\xdd\xe1\x2b\x2f\x59\xab\x28\x98\xc6\xd1\x78\xf9\x49\xbc\x08\xf9\x39\x06\x60\xd4\xb0\x34\x88\x51\x8e\x99\x34\x2c\x75\x8d\x09\x78\x8e\x4b\xe1\xb4\xd9\x76\x14\x45\xe2\xbb\x93\xc5\xeb\x66\x27\x07\xd9\xf0\x5b\x63\x11\xd1\x55\x4a\x2d\xb1\x41\x99\x65\x6c\x21\x74\x45\xc4\x41\x8f\xcc\x7f\x4b\x62\x3e\x06\xaf\x28\x0a\x6e\x9b\x5a\x0e\x5b\x36\x43\x5f\x0e\x5b\x7c\xb4\xd5\x15\xa8\x91\xaf\x53\xd9\x09\x11\x39\xbd\xe9\x19\x41\xe0\xf8\x5e\x54\x0e\x8d\xef\x49\xb0\x5e\x64\xa1\x04\x5e\x68\xc8\x0a\x5c\xe1\x05\x87\xe4\x05\xbb\x50\x04\x43\x9d\xa5\x12\x18\xe5\xec\xc1\x02\x6c\x6e\x27\xf0\xe7\x57\x0b\xc0\xb9\x20\x19\x97\x10\x08\x90\x8b\x4b\x08\xa0\x98\x31\xcc\x99\x42\x48\x9e\xdf\xb6\x0d\x2e\xea\xab\x66\xa0\x78\xdd\xf0\xef\x9d\x74\x77\xd1\x79\xbd\xb0\x47\x84\x34\xd7\xec\x54\x3b\x76\x24\x51\xd0\xcf\x04\xaf\x3e\xf9\xe0\x06\x81\xdb\x37\x64\x60\x40\x08\x3b\xba\x10\x11\x02\x7e\x16\x00\xea\x93\x6a\xc6\xcc\x23\xea\x57\xfa\x66\x17\x84\x84\xc6\x86\x6b\x6c\xa3\x31\xda\x6c\x81\x3e\x92\x87\x77\x84\x59\x7a\x46\x3b\x34\x1d\x05\xd9\x20\xd0\x9e\xac\x3f\x56\x1f\x26\xa2\x0a\x6e\xfe\xc1\x79\x9e\x5f\xa3\xed\x48\x31\x33\xf1\xfc\x0f\xb0\x18\x16\xa6\xc5\xf0\x20\x75\x0c\x17\x82\xf1\x61\x08\x92\x43\x87\x44\x78\x76\x5f\x67\x2e\x0d\x66\x28\xd6\xaa\x3a\xd5\xe0\xed\x6d\xa4\xb6\xf0\x21\x2e\xbb\x54\xb2\x55\x05\xc4\x53\xfe\x2c\x60\xb4\x21\xd5\x02\x65\x91\xb4\xf4\x92\xd2\x18\x65\x76\x9d\x21\xa8\xeb\x08\x98\x43\x3d\xa1\x6a\xec\x96\x53\xa6\x90\xa1\x66\x04\xba\xec\xba\xd9\x68\xe4\xb2\x50\x9e\x86\x0f\x10\x64\x77\x4e\xb2\x3e\x4d\xa7\x31\x64\xd9\x1e\x57\xf1\x6a\xd6\xda\xa8\x73\xe3\x19\x09\x97\x33\x3e\xe7\xe3\x5b\x7d\xa0\xb1\xff\x18\x42\x13\xb0\x39\x39\x78\x71\x64\x9e\x93\x45\xdc\xb6\x33\x8c\x37\x56\x61\xe4\x4a\x2e\x42\xe1\x2a\x67\x2f\x05\x2d\x15\x1b\x94\xc9\x1e\x05\xa2\xaf\xa2\x2e\xbc\xd4\x44\x51\x47\xcf\x3e\xfc\xf0\xd1\x85\xb0\xa3\x05\xbe\x0f\x7f\xf8\x08\x28\x3f\xfc\xf1\x23\x61\xe5\x17\x9c\x19\x6b\x7a\x9e\x32\x2b\xf1\xc3\x47\xf7\xbd\x1b\x9a\xef\xa7\x65\x85\xf4\x13\x30\xc8\xfc\x1f\x09\x71\x2f\x07\x55\x87\x48\x3c\xbc\x96\x29\x59\x3b\x7e\x73\x9d\xf4\xa5\x67\x6d\x08\xd8\x53\xc5\x87\x13\xb8\x45\xe1\x7b\x32\xac\xd4\xcb\xe5\x2e\xa6\x21\xe3\xe9\xa1\x67\xa3\x2e\xc4\x6f\x14\x28\x92\x9f\x91\xca\x0a\x7c\x4f\x26\xdc\xef\xa9\xe8\xbf\x60\x47\x01\xc1\x6f\x15\x06\x99\x4c\x08\x28\xe6\xe4\xd7\x20\xa0\xe8\x94\x09\x43\x88\x56\xf9\x55\x8d\xe0\x30\x9c\xa9\x19\x94\xa0\x5a\x81\x8a\xea\x2f\x47\x44\xe3\x31\x89\xc6\xf9\x5b\x58\xb7\xc5\x1b\x9b\x39\x42\x7c\x61\xeb\xe4\xe8\xcc\xd0\xd1\x20\x7d\x35\x36\x1e\xaa\x29\xba\x38\x62\x5f\x8d\x10\x5f\x50\x9d\xe1\xe3\x77\x55\xbf\xbe\xb3\x34\x78\xf1\x0d\xdc\x30\x6a\x46\x1d\xe2\x03\xba\xff\xec\xa6\x61\xca\x14\xeb\x08\xf4\x27\xe0\xe7\xcd\xfd\x87\xb4\xb9\x17\xd1\x85\xcd\x8d\xb1\x6d\xbd\xdc\x66\x3b\x5b\x6e\x8b\xce\x62\x13\xb1\x0c\xf7\x73\xbe\xf7\x73\x84\xe1\x5a\x29\xa2\x0c\x8d\x43\x9c\x5f\xd9\xb2\xea\x83\xb7\xb6\xfb\x58\xc9\x2d\x6c\x72\xb9\xb5\x15\x50\x2f\xbe\xb9\x8e\x84\xcc\xd8\x43\x45\x9f\xf0\xeb\x07\x20\x20\x3f\x70\x14\x7b\x71\xe6\xaa\x1f\xf6\x98\x40\xef\x6f\x62\xc2\x0e\x13\x76\x76\xc4\xe7\x89\x7e\x68\xf1\xb3\x95\x47\xfc\x3a\xe0\xd7\x41\xa9\x3b\x2a\x8c\xe7\xd9\x0f\x62\x6f\x8d\xdf\x61\xca\x11\xbf\x8f\x4a\xf2\xe3\x46\x14\x2d\xff\x02\x48\x53\xf8\x38\x73\x15\x55\xc7\xe9\xe1\xe3\xcc\x55\x50\x2b\xa7\xd2\xcf\x33\x57\xb5\xf2\xc8\x49\xf8\xeb\xcc\x55\x50\x3d\x27\xd1\xcf\x33\x64\x43\xfc\x2e\x20\xa4\xdf\x67\xae\x82\x76\x70\x22\xfd\x3c\x73\xd5\x20\x0f\x75\x6a\x17\xff\xc2\xd4\xd4\x2a\xfe\x55\x55\x1f\xda\xc1\xf6\xbf\x5b\xa3\x3e\x56\xe1\x0d\xee\xbd\x72\xec\xc6\xfb\x74\xb0\x7d\xf0\xde\x57\x03\xd9\xaf\xf0\x61\x43\x7c\x1c\xa0\xb3\xb2\x5d\x55\x1c\x00\xa9\xd6\xa6\x1f\xa3\x4a\x98\x23\xa9\x3f\xf6\x0c\x96\x22\xe6\xd3\xf5\xe5\x63\xaf\x56\x15\xda\x2f\xbc\xb5\xf5\x1a\x99\x4f\xb4\x5c\xa0\x33\xcc\xb7\x7f\xfb\x1b\xc2\xeb\xdf\xd5\xdf\xff\x2e\x5e\xfd\xf2\x9d\x50\x9f\x1a\xa5\x5a\x27\xf6\xec\xa0\x17\xc0\xf6\xf2\xd3\xb3\x02\x72\x55\xf1\xad\x52\xf6\x08\xa3\x5b\xa5\x58\x7d\xf5\xff\x07\x00\x00\xff\xff\xa2\x87\x98\x55\xd7\xf0\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xdb\x72\x1c\x39\x92\x28\xf8\x1e\x5f\x81\xd2\x18\x4d\x55\x66\x54\xca\xaa\xfb\xcc\xd9\xb5\x32\x51\xbd\x2c\xaa\x74\x99\xa1\x24\x36\x49\x75\x9d\x59\x99\x2c\x0a\x19\x81\xcc\x44\x33\x12\xc8\x0e\x20\x98\xca\x6a\xeb\x3f\xd8\x0f\xd8\xef\xdb\x2f\x59\xf3\x0b\x6e\x11\x91\x94\xd4\x3d\xe7\x85\xcc\x00\x1c\x8e\xbb\xc3\xdd\xe1\x70\x97\xbb\x5d\xdd\x2a\xd7\x88\x33\x71\x2e\x76\x52\x9b\x4e\x39\x27\x9c\xea\x56\x4f\x36\xd6\x79\xd5\x8a\x57\xda\x0b\xa7\xfa\x7b\xdd\xa8\xaa\xda\xd8\xad\x12\x67\xe2\xb5\xdd\xaa\xaa\x95\x6e\xb3\xb4\xb2\x6f\xc5\x99\x78\x11\x7e\x57\xea\xf3\xae\xb3\x3d\x00\xfd\x42\xbf\xaa\x8d\xea\x76\x50\x46\x75\xbb\xca\xe9\xb5\xa9\xb5\x11\x67\xe2\x46\xaf\x8d\x78\x63\x28\xc5\x0e\x3e\x24\xbd\x1f\x3c\xa5\x0d\xbb\x90\xf4\x61\x57\xf5\x6a\xad\x9d\x57\xbd\x38\x13\xd7\xfc\xb3\xda\xab\xa5\xd3\x1e\x6a\xfa\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\xcb\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\x3f\x5f\x9e\x8a\x2b\xeb\xfc\xba\x57\xf8\xfb\xe6\xcf\x97\xda\xab\x3f\x9e\x8a\xb7\x37\x37\x7f\xbe\x14\xb6\x17\xb7\xfa\xc5\xcf\x8b\xaa\x5d\xd6\x61\x5c\x5e\x48\x2f\x97\xd0\x85\x38\x57\x90\x49\x5b\x29\xe6\xe1\x86\x02\x92\x87\xe4\xcd\x79\xdc\xa4\xbc\x41\x67\xb7\x63\xbb\xac\x79\x0f\x47\x1c\xef\x60\x23\xb7\xcb\x34\xc0\x57\x34\x74\x83\x53\xe2\xcd\xbb\x77\xef\x5f\xfc\x2c\x94\x59\x6b\xa3\xc4\x5e\xfb\x8d\x18\xfc\xea\xff\xac\xd7\xca\xa8\x5e\x76\x75\xa3\x61\x6c\x7a\xa7\xbc\x58\xd9\x9e\x7a\xba\xa8\x9c\xeb\xea\xad\x6d\xa1\x96\x9b\x9b\x4b\xf1\xd6\xb6\xaa\xda\x49\xbf\xc1\x86\xf8\x4d\xe5\xfe\xd6\xc1\x78\xc5\x0a\x6f\x37\x4a\xe0\xd2\x45\x20\xbb\x0a\xc3\x23\x5a\x6e\xe3\x42\x3c\x5b\xf6\xcf\xb3\x76\xc9\xa5\xb3\xdd\xe0\xb9\xc4\x7e\xa3\x0c\xce\x93\xf3\xb2\xf7\x42\xba\x40\xfa\x17\x95\xea\xfb\x5a\x6d\x77\xfe\x00\xb3\xc3\x6d\x18\x63\x27\x24\x8d\x34\xc6\x7a\xb1\x54\x02\xe1\x17\x95\xb1\x35\xed\x54\x20\x9b\xad\x76\x72\xd9\xa9\x9a\x48\x7a\x1f\x28\xd2\x7f\xc1\xe2\xa0\x82\x0c\x21\x0a\x08\x18\x31\x38\x26\x90\x3a\xc3\xca\x91\x46\x20\x52\xc1\x5b\x3d\x6f\x61\xa0\x0b\x71\xd6\x88\x34\xc4\x84\x49\x0b\xab\x30\x0d\x61\xcd\x9c\xef\x76\x9d\x6e\xa8\xea\x57\x94\x97\x96\x0f\x1c\x9a\x3c\xf7\x39\x1c\x4e\x7f\xc8\xcb\x16\xc1\xe0\x61\x48\x7b\x51\xd0\x60\x2c\xbf\x51\xbd\x12\x9b\x61\x4d\x07\x47\x67\x87\xf6\x3b\xa4\xe0\x61\x7c\x13\x9d\x14\xd7\xd6\x7a\x9a\xf3\x08\x90\xaa\x38\xef\x3a\x3c\xa7\x7b\xb5\xb5\x1e\x06\x8e\x8b\x01\x2d\xda\xeb\xae\x83\x9e\x3a\x79\xaf\x5a\xe1\x2d\xed\xb7\x56\xf7\xaa\x01\xc4\x8b\xaa\x1f\x4c\xcd\x8b\xfd\x7a\x30\xb4\xe0\x43\x5a\xb9\xb2\x10\x6a\x3b\x38\x2f\x36\xf2\x5e\xc1\xc0\x03\xb3\xe0\xed\x6c\x3b\xb1\x4b\xfd\x60\x70\x0b\x2f\xaa\xd6\x6e\x25\x1e\xfc\x2f\xf0\x07\x7f\xe7\xf8\xb5\x13\x72\xb5\x52\x8d\x77\xe2\xe6\xe6\xb5\x68\x3a\x6b\x94\xf8\x70\x7d\xe9\x60\x1b\x6c\xea\x9d\xed\x91\x49\xb8\x79\x2d\xae\x6c\xef\x63\x5a\x36\xd0\x00\x61\x86\xed\x52\xf5\x62\xbf\xd1\xcd\x86\x86\x1d\x4a\xc0\x2a\x56\xbd\xd0\x4e\x0c\x4e\x9b\xf5\xa9\xe8\x14\xf4\x40\x7b\x5a\x00\xd0\x87\xb0\xea\x00\x7c\xa5\xa4\x1f\x7a\x85\x87\x7e\xbd\x1c\x74\xe7\xb5\xa9\xa1\x42\xc6\x83\x64\x41\xfc\x4c\x19\x58\xe2\x06\x33\x8e\xc0\xd7\x3b\xbb\x23\x76\x06\x77\xd5\x32\x2b\xc7\x08\x61\xcb\xc3\x04\xda\x9d\xa2\xf5\xee\xb8\x49\xb0\xe0\x06\xed\x36\x62\xd5\xdb\xad\x70\x07\xe7\xd5\x16\x0b\xb6\x52\x6d\xad\x59\x54\x1b\xef\x77\x61\x6c\x5e\xdf\xde\x5e\xd1\xe0\xc4\xd4\x87\x46\x47\x66\x6b\x17\x57\x49\x07\x8c\x95\x11\x80\x16\x96\xf1\xd0\x77\xa3\x15\xfe\xe1\xfa\x32\xe4\x1c\x99\x39\x68\xc2\x53\xf8\x73\x93\x26\x10\x57\x82\xb3\x5b\xb5\xc7\xf5\xae\x8d\x40\x66\x67\x51\x75\x76\x5d\xf7\xd6\xfa\xb0\xdc\x2f\xed\x9a\x96\x78\x91\x91\x6a\x7a\x11\x16\x2d\x0c\xce\xbe\x07\xe6\xaf\xb3\x6b\x24\x78\x30\x5e\x8b\x4a\x19\x24\x2d\x8d\x35\xce\x76\x2a\x50\xce\x5f\x30\x55\x5c\x50\x2a\x11\xd1\x19\xc8\x38\x4b\x6f\x80\xb2\xb4\x1a\x7b\xec\x2d\xd1\x53\x00\x38\x15\xb2\x73\x56\xec\x7a\x6d\x3c\x54\x8c\x73\xc4\x18\x16\x55\x65\x77\x50\x22\xa3\x21\xef\x39\x21\x11\x0e\xec\x77\xcc\x47\x56\x0f\x57\x8e\x6e\xb2\xc3\xc9\x6d\xfd\xae\xe6\x93\xe8\xe6\xed\xed\x15\x1d\x47\x98\x8a\x8b\xe0\x4c\xbc\xec\xed\x36\x25\xa4\xf1\x79\x0b\xf8\x10\x46\xb6\x6d\xaf\x9c\x3b\x15\xd7\x2f\x2f\xc4\xbf\xff\xf1\x0f\x7f\x58\x88\x37\x1e\xc8\x1e\x50\x82\xbf\xc2\x0e\x96\x3c\x0b\x09\xd4\xf6\xc2\x6f\x94\x78\x04\x64\xec\x91\x78\x86\xb9\xff\x97\xfa\x2c\xb7\xbb\x4e\x2d\x1a\xbb\x7d\x0e\xab\x74\x2b\xfd\xa2\x82\x1c\xd5\x07\xa2\x71\xa3\x4c\xab\x7a\x66\x5c\x39\x2b\x23\xbd\x9c\x9d\xb1\xb1\xc4\xbf\xc3\xd8\xaf\x74\xbf\x4d\x13\x14\x38\x7b\x98\x29\xc8\x09\x5c\xa0\xee\x6a\x63\xbd\x5e\x1d\x12\x28\xf6\xf4\x1d\x24\xf2\xd2\xac\x78\xa7\xf1\x71\x15\xc7\x98\xf6\x25\xae\xc0\xf7\x7e\xa3\xfa\x30\xdc\x2e\x8d\xb7\x5d\xad\x80\x69\x19\xad\x96\xf7\x94\x4a\xab\x25\x07\x89\xcb\xe4\x05\x13\x8c\x8b\x17\xef\x84\xba\x57\x06\x16\xf6\xae\xb7\xed\xd0\xe0\xca\x09\x2b\xa6\x13\xbd\x72\x76\xe8\x1b\xc5\x0b\x35\x12\x64\x68\x1a\x50\xfd\x46\x76\xdd\x61\x51\x85\x83\x71\xdd\xcb\x7b\xe9\x65\x9f\x55\xf1\x2a\x24\x71\xeb\x27\xb0\x93\x46\xc5\x12\xd0\xf3\x66\x70\x1e\xa8\x07\xb6\xc2\x51\xa3\x28\xdb\x09\xd9\x2b\x31\xec\x3a\x2b\x5b\xd5\x8a\xe5\x01\x69\xbc\x83\xb5\xd0\xaa\x95\x1c\x3a\xbf\xa8\x56\xaa\x05\xa2\xa4\xda\x9a\xeb\xea\xac\xbd\xc3\xca\x78\xa8\x5e\x06\x00\x71\xce\x48\x2f\x11\xe2\x58\xc9\xd8\x58\x2e\x1f\xc1\x62\xa3\xb8\x06\x6f\x91\x45\x49\xf9\x76\xa7\x0c\x77\x23\x30\x26\x02\xf8\x8e\x56\x58\x23\x3a\xbd\xe4\x4e\xa7\xb1\x1c\x31\x19\x61\x74\x6e\x40\xbe\xcd\xf3\x66\x0b\x4c\x06\x15\x17\xbc\x1b\x97\x3d\x15\xd6\x74\x07\x66\x46\x60\x8b\x91\x00\x19\xf8\x12\x97\xc8\x52\x14\xd7\x02\x45\x62\xa9\xad\xcc\x8f\xd5\x5e\x13\xdb\x2b\xee\x65\xa7\x5b\xc0\x18\x10\xc0\x69\x31\xdf\x96\x45\xc5\xbc\x72\xcd\x92\x76\x7d\xaf\x51\x8e\x8d\x5b\x8c\x50\xb2\xf4\x0d\x23\xfc\x17\x00\x00\x01\xd9\xcd\x96\x8d\xad\x79\x0f\x9d\x74\x51\x8e\xa5\x75\x02\xdd\xc5\x1a\x80\x7f\x77\xa7\xe2\x5e\x23\x1b\xc0\x8b\x1c\xc7\x65\x09\x3c\x66\xa7\xa0\x2a\xa7\x14\x62\x10\xda\x3c\x1d\x76\x54\x66\xc1\x42\x1c\xcb\x55\x81\xef\x07\x76\xb0\xb5\x02\xb8\x34\xe4\x35\x80\xd2\xf2\xb0\x8e\xf8\x3e\xd1\xeb\xf5\xc6\x0b\x63\xf7\xa7\x34\x28\xfb\x8d\x55\xb0\xe7\xdf\xbc\x38\xfb\x91\xda\xb1\x06\xce\x23\x16\x02\x9e\x45\x0e\xde\x02\x7d\xe1\xad\x47\x4d\x88\xbc\x1f\x42\x4e\xc4\x45\x02\x1a\xcb\xed\x13\x56\x33\x12\x3a\xa6\x6f\x79\x1e\x13\xb6\x04\x43\xa5\x83\xec\x4f\x15\x13\x21\x65\x59\xaf\x5e\x5b\x94\x35\x83\x6c\x07\xcc\x54\xe5\x95\xf3\xf5\x5a\xfb\x7a\x05\xd4\x16\x10\xbf\x04\x04\xc0\xdb\x29\xe7\xc5\xe3\xb5\xf6\x8f\x45\x63\xb7\x5b\x69\xda\x9f\xc4\xc9\x3d\x8b\x09\x7f\x04\x32\x0a\x5b\x51\x77\x38\x23\x2c\xc1\xf6\x8a\xa4\x81\xa0\x3d\x69\xad\x72\x38\xf0\x6e\xd8\x21\x63\x11\x45\x2c\x96\x04\x5b\xbb\x37\x40\x30\xf0\xb8\xb0\xab\x95\x6e\xb4\xec\xc4\x52\x1b\xd9\x1f\x22\x16\x3c\x86\x4e\xdc\xa9\x78\xf7\xfe\x16\x01\xd7\x16\xf8\x9e\x36\x00\x2c\x2a\x6d\x70\x61\x83\x38\xc1\x93\x9f\xcb\x52\x21\x49\x53\x5b\x1a\xdb\xc3\xd9\x8f\xbd\x09\x05\x8f\x70\xca\xc0\x38\x90\x20\xa2\x41\x96\x45\x58\x2c\x17\x99\x5a\x18\x86\xad\xf4\xcd\x86\x59\x5e\x5c\x36\xda\x99\xc7\x1e\x5b\xda\x0c\x7d\xaf\x8c\xc7\xe4\x9f\xc4\x89\x13\x4f\x9e\x8b\x13\x17\xab\xcd\x4f\x62\x3c\x9f\xe1\x38\x16\x2b\xad\xba\x36\xb4\x36\xd5\x09\x5c\x37\x9d\x74\xeb\xe9\x6c\x41\xa6\xa0\xcc\x81\xf6\x6f\xd1\xbf\x62\x63\xc4\xe5\x11\x96\x7d\x36\x40\x79\x27\xc3\xba\x71\x03\xad\xf4\x33\xf1\xab\xea\x1a\xbb\x55\xdf\x89\x5f\x15\x88\xfa\xeb\x0e\x67\x4e\x7a\x96\xc7\xad\x53\xb8\xaa\x4e\x69\xa3\xad\x06\x83\x67\x86\x97\x77\x0a\x45\xf8\x34\x51\x73\xec\xda\xd1\xc1\xae\x3e\x6e\xec\x56\x7d\xaa\x06\x12\x86\x6c\xd7\x46\x71\x1a\xb7\x90\xed\x89\xff\x88\xb2\x75\x82\x89\xbb\xc3\xed\xb5\x6f\x36\x75\x54\x34\xc2\x40\x7a\xf5\x19\x19\x23\xcc\x4a\x7a\x47\xd8\x5a\x90\x55\x6d\x0f\xb8\x2e\xa0\xe3\x6f\x0f\x69\x59\x68\xe5\x2a\xb7\xb1\x7b\xd4\xda\x45\x88\x9b\x8d\xdd\xa3\xbe\xae\x10\x99\x16\x8b\x45\xd5\xd8\xae\x93\x4b\x0b\xb3\x72\x9f\xe0\x2f\xf2\xd4\x12\xf9\xf6\x50\xdb\x7e\xcd\xd5\x96\x5a\xaa\xed\x81\x15\x63\x9c\x4b\x8a\x31\x57\x21\x79\x65\x8d\x2a\x52\xe1\x13\x57\xb1\x3e\x68\xa1\x4d\x8d\xea\xa6\x50\xf3\x1b\x43\xc2\x4c\xde\xce\xaa\xfa\xc8\xda\xd6\x4f\x55\x80\x2b\xda\x44\x34\x9a\x06\xdd\x15\x2a\x40\x37\xd2\x01\xba\xca\x29\xd9\xe3\x86\xb8\xc1\x1f\x55\xf5\x51\x0e\x7e\xf3\x29\xd3\x86\xd6\x61\xe5\x05\xad\x28\x6a\xec\x98\x4c\x26\xb6\x6e\xa3\x76\xc0\x01\x6e\x1d\x2e\xd9\xae\x57\xb2\x3d\xb0\xbc\x18\x17\xef\x9f\xe8\x00\xd2\x06\xc8\xf6\x77\x95\xb3\x40\x41\xea\x6f\x44\xf1\xb3\x36\x2d\x95\x2f\x0f\x6f\x52\xd3\x6e\x77\xb8\x4c\x6c\xdf\x1f\x4e\x4b\x4d\xc2\x46\x3a\xb1\x54\xca\x04\x89\xaf\x5d\x04\x3d\x0d\x2c\x2f\xd9\x10\x11\x40\xd5\x32\xee\x40\x2a\x69\x27\x5c\x05\xb4\x90\xe8\x36\xd7\x42\x64\xdc\x05\x06\x13\x38\xab\x6f\xae\xa2\x57\x5b\x05\x22\x5a\xbd\x25\x45\x2f\x7d\x89\xb7\xaa\x5a\xd9\x7e\x8d\x7b\x8f\x36\xc7\x99\x78\x89\x09\x69\xb7\x00\x80\xf2\xf9\x71\xc3\x10\x21\xe5\x4f\x41\xb1\x5e\x1b\xbb\x47\x85\x2b\xb0\x5c\xe3\x49\x19\x76\x30\xa8\x8b\x70\x7c\x11\x27\x84\x4c\xb8\x53\xc6\xa7\xa1\x3d\x17\x46\xed\x45\x0e\xc5\x03\x10\xc7\x17\xe0\x81\xcc\x3d\x5b\x3e\x3f\x71\xcf\x9e\x2e\x9f\xc7\x13\xa4\xd9\xa8\xe6\x8e\x16\xb4\x36\x4b\xfb\x19\xb5\x3b\xa8\x0a\x54\xc2\xc0\x06\x3f\x69\xc5\xc6\x0e\x3d\x4b\x58\x20\x81\x78\x85\xb9\xc5\x4c\xee\x7a\x0b\x34\x6e\x41\xaa\x57\x45\x3b\x26\xad\x52\xd4\xc1\xc2\x3a\xc5\x63\x2e\x2c\xd4\x5d\x6f\x37\x7a\xa9\x3d\x90\x33\x54\x48\x5c\xe2\xff\x2b\x4e\x56\xed\x08\x22\xe3\x48\xfa\x48\x7c\xb5\x13\xbb\x58\x00\x1a\x89\xa0\xa9\x7f\x3c\xcb\x69\x86\x61\x66\x71\xfc\x3a\xbd\xd5\x7e\xb2\x40\x81\x14\x4b\x5e\xe8\xac\x2a\x0e\x73\x83\x7d\x48\xa3\xdb\xab\x46\x19\xdf\x1d\xe2\x8a\xda\x4b\xed\xc5\x1f\xc5\x56\x9b\xc1\x83\x18\xbc\x51\x46\xf8\xfe\x20\x24\x70\x3d\x8b\x6a\x23\x5d\x3d\x18\x9e\x26\xd5\x86\x25\xfb\x5a\xe3\xe1\x0c\xf5\x86\x8d\x95\x41\x95\xa2\xa1\xf8\x3e\xce\xe0\x0f\x0b\x56\x1a\x63\x29\x38\x30\xa1\x3d\x1a\xe4\x18\x39\xb7\x16\x6c\x2f\x8c\xa2\x11\xc2\xfe\x03\x18\x2c\x1b\x6b\x54\x1a\xac\x4e\x37\x77\xc0\xc0\xc3\xfc\x2e\x07\xef\x2d\x48\xa9\x1d\xac\x41\x2a\x13\xda\x7c\x81\x80\xa8\x43\x48\xf8\x0e\x34\x2d\xe5\x28\x55\x58\x0c\x20\xfc\x7c\xe1\xef\x7b\xf5\x43\x2a\x1e\xb7\x0c\x96\x60\x14\x54\x3a\xdb\x4d\xd7\x98\x49\x37\x02\x61\xcf\x85\xa3\xb1\x61\x1d\x6d\x9c\xcd\xbe\x1c\x0d\xcc\x87\x8d\xa1\x3e\xef\x74\x0f\xf2\x4a\x9f\x18\x85\xc5\xa8\xae\x24\xd0\x4f\x7b\xec\xcb\x16\xa7\xd3\xd3\x5b\x5b\xbb\x0d\xe9\x81\x42\xf3\x44\xa7\xcc\xba\x50\xc8\xe2\xed\x1e\x2e\x91\xff\xb9\xa8\x8c\x35\x35\x4a\x9f\xd9\x9e\x79\x67\xcd\x13\x4c\x8b\xe2\x4b\x28\xcd\x9a\xfb\x50\x21\xa0\xe9\xed\xb0\xde\xb0\x7e\xaf\xa2\xcd\xe2\xf7\xb6\x5e\xc9\xc6\xe3\x2d\xd0\xed\xde\x3e\xe1\x8f\xf3\x01\x6a\xf5\x41\x5a\x1f\x03\x63\xdf\x79\x10\x4b\x50\xec\x0c\xe4\x4c\xcb\x28\x03\x34\xb8\x57\x8d\xbd\x57\xfd\x21\xcc\xc1\x2f\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\x66\xf7\x48\xa5\x71\x69\x21\xcd\x1d\x1c\x2d\xae\xc8\xc4\xf3\x0a\xab\x3e\xc2\xa2\xfe\x54\xf1\x4e\x51\xd9\x94\x33\x1d\x09\x39\x61\x47\x11\xb5\x8c\xf0\x41\x46\xf9\x8b\xea\xf5\xea\x40\x40\x05\x95\x38\xb6\x61\xca\xf5\x1a\x8f\xce\xc4\x9f\x5e\xe7\x24\x9d\x93\x57\x43\x77\x2a\xf6\xc4\xb8\xa6\x32\x51\x0b\xc4\x2c\x2d\x10\x0d\xba\x75\xae\x3e\x6e\x6d\x2b\xbb\x4f\xd5\x01\xef\xd2\xfe\x4b\xb9\xca\xe0\xfd\xa5\xad\xb6\xb6\xa5\x42\x6f\xf1\x47\x55\x7d\x5c\xd9\x7e\xfb\xa9\x02\xa6\xe8\xdd\x48\x98\x03\xee\x89\xd3\x32\x81\x02\xb3\x7e\xc9\xef\x67\x63\x9f\xaf\x66\xe4\xbe\x6b\x95\xae\x69\xf1\x57\xec\xfc\xcd\xcd\xeb\xdb\xa0\x97\xba\x79\x2d\xee\x14\xe3\x7e\xed\xfd\xce\x7d\x40\x6d\x2b\xa9\x4e\x3f\x5c\x5f\x56\x57\xf2\x00\x42\x16\x25\xf3\x07\x66\xdc\x2a\xb9\xe5\x46\xc2\x4f\x42\x01\x9b\x86\x13\xe1\xa7\xed\xf3\x7b\x86\x0a\x25\x87\x5f\x0a\x29\x93\x88\x5c\xf5\x4e\xed\x7f\xee\xa5\x69\x42\x61\x60\xe9\x96\x98\x40\x25\x2f\xec\x76\xab\xfd\xcd\xb0\xdd\x4a\xdc\x20\xf4\x2d\x1c\x25\x70\xf6\x5b\xe5\x1c\x5d\xa2\x73\xf6\x96\x12\x38\xfb\x62\x63\x75\x93\xe5\x36\xf8\x5d\xdd\xf6\x4a\x71\xad\x2f\xc3\x95\x55\x85\x6c\x3c\xf1\x98\xf4\xab\x8a\x5a\x09\xc5\x77\xcb\xbf\x4d\xae\x6f\x7e\xab\x64\xb7\xdb\x48\x14\x14\x32\x30\xbc\xa9\x58\xb2\xfe\x44\x20\x08\xd2\xdd\x61\xab\x7a\xdd\xe0\x2e\x91\x6e\xf3\xfd\x93\xfa\x07\xbc\x7a\x93\x8d\x57\xbd\x2b\x91\xb5\xd6\xff\x73\x08\x71\x0b\xfa\x07\xf1\xba\xee\x9f\x6e\xee\x04\x3b\xa4\x20\x3e\x05\x15\x39\xfd\x7b\x18\xae\x02\x33\xa4\x8b\x13\x80\x40\xc1\x32\x41\x45\x20\x64\x5c\x40\xc8\xf4\x02\xa8\x82\x07\xe9\xb7\xe8\xc3\x56\x7e\xfe\x52\xc1\xad\x9d\x29\x47\x9a\xef\x54\x88\x05\x65\xc9\xbd\x2d\x28\xc9\xe2\xb7\x6a\xe8\x1f\x00\xfe\x70\x7d\xb9\xf8\xad\xd2\xa6\xe9\x86\xf6\x68\x43\xdc\xb0\x74\xbe\x07\x01\xf9\xf1\x89\x7b\x0c\x28\xcd\x9d\xb1\x7b\x13\xe1\x3f\xd0\xb7\xc0\xef\x9f\x82\x2d\x45\xad\x0d\xab\x1a\x92\x55\x85\x68\x75\x0b\xac\x0e\xaa\x0c\x16\xe9\xc8\xcd\xd5\x08\x91\x10\xa0\xbe\x95\xd5\x3c\x91\x16\x82\x28\x80\x1a\x15\xb9\x55\x8b\x64\xff\x51\x03\xc9\xae\x41\xd2\x36\xb9\x68\x0c\xc4\x3c\x30\x83\x48\xd4\x11\x62\x41\x17\x7f\xd3\x72\x23\x4a\x75\xb4\xb8\xed\xd7\x33\xa5\xdf\x4f\x2f\x25\x8f\x94\xf7\x4a\x6e\x67\x10\x44\x1a\x74\xb4\x20\xcd\x3d\x16\xc2\xe3\x69\x44\x44\xa7\xe5\x00\x6a\x91\x46\x29\x0e\x78\x3e\x37\xb9\x22\x21\x8e\x73\xa9\x2c\x5a\x54\x78\xf4\xf6\x68\x87\x93\xa9\x8c\x58\x85\xc7\xe7\xde\x56\xde\x29\xe1\x06\x60\xb1\x36\xd2\xb3\x90\x51\x8e\x28\xf0\xbb\x88\x4a\x61\x15\xc7\xd1\xdb\xbd\x81\x63\xea\x4b\xf8\x11\xec\x1b\x51\xe7\x1a\xc6\x29\x62\x46\x1e\x81\x8e\xa1\x8d\xea\x2f\xf5\x59\xe3\x05\xd3\x2b\x7d\xaf\x58\x01\x16\x59\x06\xcc\x5b\x54\x9d\x74\xbe\x86\x45\x43\xcd\x45\x69\xd4\xde\xc3\x8e\x82\xfa\x20\x97\xca\xd1\x85\x13\x77\x0a\x16\x09\xab\xd2\x64\xd7\xd9\xbd\x6a\x4f\x85\x44\x96\xb3\x57\xb4\x41\x65\xb7\x97\x07\x87\x6a\xe1\x40\x64\xac\x09\x63\x02\x14\xc4\x1c\xc4\x1a\x5b\x95\x2b\x2c\x16\x55\xd2\xbf\xb9\x4d\x0d\x47\x67\x64\xb7\xf7\xa8\xd7\x42\x0a\xc1\x8a\xe6\xfb\x8c\x49\xe1\x93\xf6\x27\x71\xe2\xaa\x81\x14\xed\x94\x9d\x21\x42\x2b\x13\x3e\x55\x66\xca\x9e\x82\x58\x22\xf6\x4a\x48\xe7\x86\x2d\x8f\xb5\x46\x29\x10\x9b\x94\x69\x46\x87\x65\xa7\x9e\x90\x78\xab\xfd\xa2\x92\x83\xdf\x24\xbd\xdf\x88\xb3\xa5\x74\xd2\x96\x39\xaf\xbb\x0e\x46\x3a\x58\x5e\x15\xe2\x26\xe6\xe2\x3e\xc1\x61\x72\x1b\xbd\x13\x16\xef\xb5\xf2\x21\x4c\xcb\x36\x13\xec\xbc\x15\xad\x42\xf1\xd9\xf6\xc2\xf7\xd2\xb8\x95\xc2\x8b\xbe\xad\x58\xe9\x1e\xe6\x99\xaa\x06\x39\x91\x2c\xad\x8e\xd4\x4c\x9a\x08\xac\x3a\x3f\x20\x70\xee\xb2\x89\x2a\xab\xa6\x6b\x76\xbc\x4d\xc2\x36\xe0\xa8\x26\x4c\x2e\xb4\x01\x96\xd9\x64\x08\xf0\x62\xb9\x30\x9a\x98\x1d\x87\x55\xa1\x14\xa3\xfa\x71\xa5\x7d\xa1\xdf\x15\x59\x32\xd5\xc4\xee\x14\xbb\xe2\x16\x73\x02\x23\x34\xde\x18\xd5\x47\x58\xf7\x9f\x2a\x92\x88\xea\x78\x5b\x77\x41\x12\x12\xf1\xcf\x98\x58\xfd\xd5\x6a\x53\xe3\xd5\xd3\x7f\x58\x6d\xf0\x9e\xaa\x2a\xac\x33\x46\x1a\x3b\xb6\x21\x3b\xa0\xd9\xc8\xb2\xd3\x4d\x30\x24\x3b\x54\x2b\x8b\xfb\x09\x15\x7a\x2f\xc3\xef\xca\x79\x09\x64\x82\x6d\x0b\xe0\x57\xa1\x21\xa4\x42\xa4\x3e\x7e\x19\x7e\x73\x6a\x4c\xaa\x06\x13\x53\x3e\xf0\xcf\xaa\x02\x2e\x79\x81\xf4\x17\x18\x7b\xbc\xaa\xcc\xa8\x2e\x1c\xaa\xb0\xfe\x43\xde\x22\x83\xdf\x49\xef\x55\x6f\xe8\xb6\x81\x88\x40\x5e\x94\xb3\x23\x0a\xdc\xb8\x04\x06\x63\x1b\x0c\xec\x3e\x55\xc9\x0c\x2f\x58\xe0\xcd\x5d\xb3\xc4\xe1\xa7\xcb\xc7\x8a\x77\xb5\x63\x26\xfb\x3f\xd5\xc1\x55\x4e\x35\x43\x4f\xc3\x7a\xc3\x3f\xe7\x35\xa6\xac\xc2\x1d\x59\x19\x26\x0b\x08\x57\x1a\x44\xb8\x8a\xd7\xd8\x99\x78\x41\x3f\x82\x96\xa9\xda\xe1\xf4\x65\xa6\x84\x3c\x9f\xb1\x2b\x6c\x49\x9a\x6b\x97\x4a\xad\x8b\x76\x82\x90\x20\x4f\x11\x6e\x8d\xf1\x04\x5d\xd9\x1e\xe9\x64\xbc\x02\x53\x1d\xde\x8f\x9a\xec\x46\xdc\x9d\x62\x39\x00\xdb\xab\x65\xb8\x26\x4d\xf6\x25\x5b\xd9\x2a\x71\xaf\x65\x54\x45\x66\x9c\x4d\x3c\x7a\x83\xfe\xb2\xd0\x0c\xa0\x50\x43\xba\xe5\xc0\xd8\x84\x69\xf6\x36\xe8\x09\xfc\x46\x69\xba\xa5\x34\xc8\xf4\xac\x86\xae\x0b\x27\xe3\xcb\xa1\xeb\xc8\x5a\x6a\x6a\xc3\x0b\x55\xf0\x6d\xed\x25\xff\xac\x86\x5d\x0b\x22\x68\x1a\xcb\x0f\x98\x10\xc7\xb2\xcc\xcf\x44\x4b\x1c\xd5\x50\x2c\xc9\xc8\x08\xde\x66\xb2\x66\x77\x58\x84\xdd\x3c\x63\x9b\xcb\x1b\xbb\x1d\x83\x24\x2d\x1e\x52\x2a\xee\x38\x4e\x14\x99\xc3\xe0\xd0\xee\xe5\x41\x6c\xec\x5e\x74\xda\xdc\x39\x9e\x29\x18\xa7\x5c\xcc\x46\x6d\xab\xd7\x66\x50\x2c\xf8\xc0\xcf\xa9\x25\x28\x5f\x9f\xf3\x65\xfa\xf2\x10\x74\x5b\x74\xdd\xce\x1b\x40\x2c\x0f\x02\x65\xbb\xe3\xf7\xf6\xe3\x0b\xfb\x70\x5f\x1f\xee\xa1\xd1\x5c\x20\xd1\xb5\x0f\x4e\x89\x0b\x32\x21\xe0\x3d\xd6\x6c\xac\x75\x7c\x29\x90\xa8\x1f\xa4\xa1\x76\x8f\x89\x1f\x4f\x4b\xc2\x43\xb3\x76\x1e\x4c\x19\x70\x9f\xf3\x0e\xaa\xf9\xd2\x2d\x41\xf3\x86\xba\xe0\xcb\xb8\xf3\x80\x93\x4c\x15\x42\x9f\x90\xc6\xd4\x7a\x4b\xe2\xe7\x87\x60\xc8\x80\x13\x1e\xc5\x06\xcc\x5e\x94\xed\x19\xaf\x12\xae\x37\xdc\xaa\x7d\x61\xb1\x84\xa5\x90\xdf\xed\xd2\xf4\x47\xba\x64\xbb\x82\x69\x0b\xfd\x88\xf9\x30\x78\x59\xfe\x3b\xbc\x85\x8f\x5a\x12\xd8\x63\xf5\x08\x84\x15\x0b\x05\xe4\x2c\x6f\x1c\xea\x3a\xca\x17\x8f\x5a\x3f\xd9\x31\xa1\xdc\x5e\xba\xa2\xe3\xbc\xc6\xdb\x45\x30\xd7\x14\xc6\xee\xe9\x4a\x1f\xed\xea\xc8\xb6\xd0\xa0\x3d\x00\xa1\xc8\x88\x0a\x57\xfa\xaf\x92\x94\x84\x99\x04\x0b\x17\xe5\x89\x73\x22\x9c\xca\x05\xcb\xf1\x98\xcf\xc6\xe3\x05\x7d\x55\xc1\x1c\x2b\xa7\xc0\xbb\x5e\xa3\xa2\xa3\xa4\xc4\x13\xda\x5b\xd0\x59\x24\xb3\x16\x8d\x8b\x12\x79\x5d\x54\x01\x15\x9c\x5e\xf8\x2b\xa4\x44\x55\xda\x8d\x42\x0b\x5b\x4e\x0e\x1b\x21\xe4\xd2\xfa\x8f\x6d\xec\x14\x53\x45\xea\xeb\x0b\x4e\x18\xe5\x87\xce\x50\x76\x98\x90\x99\xde\xf4\xc0\xcb\xab\x78\x70\x68\x43\xb6\x5d\xf1\xe6\xbe\xa0\x4e\xe2\x05\x92\x2b\xb1\x97\x74\xa1\x13\x88\xd5\x9f\xc6\xb5\xa7\x75\xf4\x4b\x79\x15\x44\x7d\x2b\x77\xd1\x77\x95\x6c\x5b\x5c\xe3\xc9\xfe\xa1\xc5\xc5\x53\xea\x15\x01\x2a\x87\x20\xcd\x55\x4c\xad\x8b\x8b\x2a\x47\xca\xa3\xaf\xbf\x9c\x02\x2e\xe4\xbf\xe1\x5e\xaa\xa8\x2a\xdd\x4b\xc5\x46\x8e\x76\xd8\xa4\x97\xd3\xad\x26\xdb\x16\x19\x22\x5e\xcb\x19\x5b\xc3\xab\x39\x72\x37\x50\x0b\xc9\x31\x30\x3c\xff\xa9\x0e\xc8\x03\xf1\x4a\xc0\xa3\x49\x3b\x21\xd1\xba\x13\x4d\xc2\x49\xa8\x71\x20\xcd\xd8\x46\xe3\xfc\xa3\x3d\x7a\x39\xe7\xe7\x28\xb5\x39\xc5\xb0\xc8\x1f\x4a\x73\x00\x7e\x3f\xec\x75\xb5\x85\x71\x20\xeb\x9a\x68\x0b\x3c\xb9\xa6\x3e\x65\x51\x69\xa3\xd7\x9b\xee\x20\xf4\x76\x67\x7b\x8f\x2b\x29\x18\x21\x24\x49\x16\xbe\x7a\xd5\xd8\xb5\xd1\xbf\xe3\xc0\x6e\xc9\xf8\x37\xde\x88\x3c\x73\xbe\xb7\x66\xfd\xfc\x85\x05\x11\xf3\x0e\xc8\xcf\xc6\xee\xff\xf4\xec\x29\xa7\x8b\x0b\x9c\x42\x3b\x78\xf1\x4a\xfb\xd7\xc3\xf2\xb1\x13\xeb\x41\xb7\x78\xe4\x3e\x93\xd9\x6b\x05\x36\x27\x22\xcb\xec\xbd\x89\xc3\x82\x6f\x17\x6c\x2f\x9c\xed\xee\xd5\xa8\x88\xdd\x6e\x69\x7a\x97\x9d\xda\x12\x24\xb6\x1f\x2d\x90\x94\xc1\x91\x53\x3d\x8f\xcf\xcd\xcd\xeb\x45\x5c\xe2\x69\x7e\x78\xda\x02\x9f\x5a\xe8\x45\x98\x47\x04\xe0\x86\x15\xa1\x85\x66\x7f\x11\x4b\x21\xff\x31\x2d\x85\xf3\xe8\x80\x67\x99\x68\x64\x50\x78\x01\x14\xa1\xb8\x38\x83\x76\x10\x1f\x06\x69\xcd\x44\xf5\xca\x0b\x2b\x5b\xbc\x70\xf6\x04\xd5\x35\xf2\xef\xb1\x79\xb8\x5c\x47\xfb\x9b\x29\x1a\xf5\x9d\xe9\x59\xe8\x40\x46\xd1\x78\x44\x12\x4d\x1b\xc3\x14\x54\x4d\x11\x4d\x0b\xad\xc8\xa9\x19\x19\x5b\x12\x45\xa3\x05\xa9\x1c\xd2\xeb\xaf\xa4\x66\x93\x7a\x53\xc7\x43\x75\x5f\x41\xd1\xb0\x4f\xe7\x38\x1c\xd6\x90\x16\x85\x27\xea\x92\x75\x26\x98\x61\x6c\x9d\x49\x7b\xef\x2c\xdf\xec\x8a\x90\x88\x73\xe2\x3c\x70\x2c\xf9\x56\x86\x46\xa0\x19\x3b\x99\xe1\xa1\x1a\xe6\xff\x10\xad\x3c\xb8\xca\xdb\x3b\x65\x66\x8a\x60\xfa\xb1\x42\xd5\x57\xde\xd8\x65\x57\x52\x50\xc3\xe0\x48\xe4\xf4\x83\xfb\x29\xcf\xa3\xd7\x65\x05\xb8\x5d\xad\x20\x6d\xb5\xaa\x8a\x4b\x31\x36\x41\x23\xc3\xc4\x3c\x2b\x18\xe2\x47\xbb\xcb\x3c\x13\x6d\x66\x8a\xbb\x30\x17\xac\x67\xd0\xca\x5c\x96\x7b\x16\x76\x2d\x13\xa4\xec\xba\x8c\x76\x2e\x50\x2d\xe1\xe4\x4a\x89\x5d\x27\x1b\x95\x78\x9a\xc1\x11\xe9\xc1\xc3\x39\x5c\xdb\x69\xba\xf6\xee\xac\x53\x63\x62\x27\x4b\xb5\x4e\x26\x2e\x2e\xa6\x5d\x4e\xd6\xdf\x34\x02\x5f\x37\xe2\x8d\x34\xf5\xdf\x46\x2f\x8a\xbe\x50\x37\x1a\x98\x41\x77\xe0\x78\x42\x0e\xb8\x9c\xa8\x70\x31\xe9\x54\xd3\x2b\x8f\x42\x2f\xa9\x0c\x49\x20\xc4\xd4\xa2\x04\x54\x34\xbd\xcc\xbc\xdd\x28\xc3\xe5\x42\x6a\x51\x8a\xd5\x69\xe1\xe2\xb0\x9a\xb9\xda\x2c\xb1\xa5\x21\x1f\x29\x31\xe3\x6d\x66\x3c\xae\xa3\x99\xc3\x77\x33\xe3\x1c\xf4\xfc\xd3\x71\x96\x47\xd5\x70\x53\x2c\x89\x02\x1c\x47\x80\xf7\xfa\x86\x98\xda\x31\xb5\x19\xd1\x87\x63\xb7\xc8\x2e\x2e\x8b\xa3\xeb\xa1\xbc\x66\x76\x0f\xa0\xe2\xbd\x5f\xdc\x10\xb3\xa1\x37\x10\x80\xf8\xc6\xcb\x2b\x38\x8a\x65\xaf\xbb\xc3\xb7\xae\x6b\xf1\x8b\x6c\x36\xe5\xa6\xc2\xad\x13\x2c\x7e\x99\xc8\x35\xea\x54\x3c\x5b\x3e\xe7\xe9\xba\x53\x6a\xc7\x3c\x05\x35\x69\xb4\x03\x9f\x3d\x5d\x3e\x5f\x94\xfd\xa2\x67\x59\x5e\x4d\xb7\xfc\x75\xcc\x7b\x70\x60\x8e\x20\x88\xab\x23\x43\x53\x92\x88\x23\xcb\xe2\x38\xc6\xf2\x90\x1c\x21\x8b\xc7\x46\x28\x3d\x3e\x38\xa6\xf4\x2f\x3d\x5f\x64\x7a\xf8\x55\x94\x22\x14\x9e\x33\x5a\x8a\x5a\xb0\x4e\xdd\xab\x8e\x4e\xce\x16\xf6\x39\x5e\xff\xaf\x60\x0b\x47\xe1\xcc\x1f\x5b\xed\x0f\x1c\x9f\x33\xcd\xf8\xda\xed\x13\xeb\x2d\x47\x25\x30\xbf\xb4\x30\x6b\x3a\xc8\x22\x03\x7c\xa5\x7a\x87\xef\x6b\xce\xa9\x92\x5b\xc8\x76\x55\x9c\x20\xe0\xbb\x42\x91\x57\x61\x96\x61\x72\x10\x90\x8e\xcb\xb8\x5b\xa8\x70\x52\x5e\xa7\x89\x42\x36\x95\x9f\xce\xe0\xba\xf6\x36\xee\x94\x0d\xd9\xce\x8a\xf3\xab\x37\x6e\x51\xc5\x0a\x03\x52\xdc\x25\xd4\x84\x3d\x69\xae\xd1\xc2\xb6\xeb\x26\x5b\x2d\xe8\x81\xa8\x38\xb3\x67\xd8\x26\x62\xd0\x62\xa7\x26\x1d\xa2\xce\x94\xf9\x34\xee\xca\x65\x2b\x80\x6a\xc3\x96\x8c\x25\x8d\xd8\xd5\xef\xc4\xdb\x74\xa7\x04\x33\xbb\x3b\x00\xef\x9e\x19\xd8\x4b\x1a\xa1\x3d\x72\xdf\x23\xcb\x7e\xed\x89\x18\x0b\x60\xc0\xfa\xc8\xfd\x85\x06\x33\xff\x97\x4f\x65\xce\x04\xce\x4e\x66\x62\x09\x67\x8b\xcd\xf1\x85\xbb\x80\xa7\xec\xf3\x97\xb8\x44\xbb\x2a\xe9\xdb\xd1\x45\x9e\xf7\x2a\x5b\xde\x57\xb3\xd5\xc6\x6d\x4f\x55\x8f\x96\xb7\x20\x21\x86\xec\x36\xf1\xb1\x0b\x29\xc8\x68\x45\x64\x27\xb9\x74\x62\xaf\xba\x6e\x51\xa1\x7e\x7a\x61\x40\x06\xa3\x27\x12\x51\x59\xc2\x97\x2a\xd8\x0f\x73\x28\x6e\x4d\xdc\x82\x8a\xe1\x5d\x4c\xa4\x2a\x97\x7c\x33\x93\xbd\xb7\xcf\xa0\xb2\x57\x18\xf4\x32\xb0\x3c\x1e\x68\x08\xb3\x6b\x0c\xb4\x18\x57\x72\xeb\x98\x8e\x20\xab\xa4\x56\x7c\xdd\x99\xdf\xe3\x1d\x1f\x59\xd2\xc8\x53\x03\x42\x03\xf3\xb4\x51\xd3\xd3\x6d\x57\x01\xf4\x85\x96\x8f\xae\x77\xcb\xd6\x3e\xd0\xb8\xbc\x8a\x42\x96\xa7\x3d\x8d\x7d\xcd\xf0\xa2\x6c\x34\xa2\x65\xbc\x72\x92\xe1\x15\x2f\xdb\xc2\x3a\x95\x81\x32\xcd\xb2\x4a\x5a\xa5\x40\xb2\xd3\x55\x5a\x40\xb6\x53\xfd\x56\x1a\x34\x0c\x25\xb5\x7f\x90\x93\x2f\xce\xdf\xbd\x7b\x7f\x9b\xc4\x63\xa0\x61\xa6\xb5\x46\x7d\x17\xdf\xa7\x4c\xda\x15\x5e\xa9\xc4\xcd\x57\x42\xa4\x77\x32\x5c\xe2\x18\x5c\x2e\x83\x64\x86\xb3\x6b\x8b\xda\x03\x0b\x6d\x09\x52\x54\xd1\xfe\xf6\xe8\x0a\xf9\x08\x43\xfc\xa9\x0a\x17\xd2\xef\xe1\x7f\x95\xdf\xe9\x67\xb6\x10\x48\x36\x93\xc9\x44\x7a\x2b\x2d\xd6\xd6\xb6\x93\x3b\x7e\x14\x8f\x06\x89\x4a\x4e\xbb\xdd\x59\x64\x60\x56\x02\x4d\x2a\x4f\x61\x77\xd9\x1e\x89\x1d\x0c\xee\x60\xf4\xdf\x06\x54\x8c\xa0\x25\xe4\xa2\xba\xd7\x4e\x2f\x75\x47\xa2\xdc\x5f\xe2\x07\xa5\xc3\xaf\xd1\x6b\xd9\xac\x72\xed\xc4\x33\xb7\x93\x46\x34\x9d\x74\xee\xec\xd1\xa0\x05\xf0\xbb\x5e\x7d\xf6\x8f\x9e\x5f\xf5\x68\x7c\xf7\xec\x29\x40\x3c\x9f\xa0\xab\x57\xb6\x6f\xe8\xf2\x2f\x1a\x1a\x23\xcd\xe1\x74\xd8\xa6\x06\x99\x91\x6c\xab\xd2\xc0\xff\x13\x75\xae\x6c\x7f\x97\xfa\xf1\x3d\xeb\xbb\xed\x8a\xe8\xee\xbd\xec\x86\xf2\xf2\x03\x6a\x87\x32\xee\x87\x0a\x9f\x02\xa7\xb2\x68\x78\x8e\x6e\x61\x20\x43\x9b\xf5\x9f\x70\xd0\xfc\xc3\xee\x25\x5e\xab\x6e\x07\x82\xdb\x77\x15\xb6\x84\x2f\x89\xc7\xfe\x44\x30\x2f\xbc\x93\x85\x3c\x7c\x2c\x8b\xa9\x33\xb3\x91\x79\x1d\x90\x5d\x90\x7d\xb2\xd9\x04\x72\x8a\x9d\xc8\x2f\x56\x0f\x6c\x8a\x13\x4f\x1f\xd7\xf4\x1a\xdf\xfa\x52\x7a\x27\xf1\xbe\x35\x3a\x94\xc1\xc4\xb5\xf6\x7a\x6d\x6c\x9f\x0d\xc3\x8d\xea\x60\x9c\x16\x31\x4b\x04\x17\x35\xae\xea\x74\xa3\x8c\x43\x6a\x47\xbf\x42\xca\xa4\xb8\x14\x01\x16\xef\xc2\x7a\x25\x5b\xde\x0a\xf0\x83\xbf\x67\x4a\x31\x60\xa8\xb2\x92\x83\xb7\xb5\x36\xda\xe3\x6b\x13\xed\xb5\xec\x48\x07\x57\xae\x57\xd2\x30\x21\x12\xbe\x67\x09\xd4\x9f\xf1\xf0\x83\x11\x9e\x1e\x7e\x29\x92\x4d\x10\xbf\x2b\xe5\x6b\x77\x1c\x3f\x4c\x10\x64\x87\xc8\xde\x68\xea\x5d\x3f\x18\xba\xfa\x1d\x8c\x2a\x12\x93\x7c\x43\xc7\xb9\x39\xb0\xdf\x83\x27\xbe\x97\xcd\x1d\x10\x97\x5e\xad\x54\xaf\x4c\x83\xf6\xf0\x12\x78\x17\xd1\x59\xb3\x56\x3d\x69\xc1\x82\xb1\x39\x15\x0b\xc8\x35\x88\x9a\xf7\xb2\x8b\x8e\x70\xc4\x9b\x90\xf2\xfd\xc6\x0e\xfd\x0f\x01\x30\xa8\x6c\x23\x1c\x5f\x3c\x8c\xf2\x43\x3b\x59\x64\x67\x7b\x35\x61\x14\x1c\x0a\xb2\xa7\xa7\xb6\xa2\xe9\x55\x0b\xcc\xb0\xec\x9c\x60\x4d\x73\x30\x83\x0b\xf8\x50\x85\xe4\x0e\xa6\x49\x4a\xa4\x1b\xfc\xaa\xf6\xd2\x37\x1b\x32\x09\xf8\x95\x7f\xa2\x45\xc0\x5a\xfe\x4e\xa9\x37\xf1\x03\xb7\x80\xe3\x4d\xe1\xf8\x7a\xbf\x57\xb2\xd9\xf0\x93\x04\xbb\xaa\xc9\xb7\x06\xb2\x63\xb7\xd1\x4c\x09\xe8\x09\xc2\xa9\x56\x6c\xe5\x67\xbd\x1d\xb6\x22\x02\x62\x51\xd8\x25\x27\xa5\xe1\xc1\x62\xde\x7c\x60\x6c\xaa\xf6\xed\x56\x04\x63\x0c\x0f\x1b\x13\x18\xa5\xda\x1a\xc4\x8d\x40\x74\x0a\xdb\xd8\x8a\x5d\x19\x05\x5f\x30\xd1\x97\x11\x39\x83\xc9\x73\x8f\xd3\xef\x70\x37\x24\x4b\x92\x8a\xcf\xd4\x96\xdd\xa0\x1e\x3d\xa7\x59\x0c\xf4\x34\x60\xe5\xfd\xf1\x96\xbd\x29\x65\x1b\x84\x21\x16\x44\x34\xd3\x62\xbb\x40\x7f\x0a\x69\xad\xcd\x40\x15\x47\x2e\x8b\x2c\x32\xf3\xc9\xf0\xf4\xd5\x9b\x5b\x34\x9f\x7c\xa0\x78\x4d\x0a\x7a\x7a\x19\x40\x24\xf2\x71\xaf\xc8\xf5\x41\x76\x27\x17\xdc\x40\xc9\x7c\x30\x96\x07\x7a\xce\x1e\xdc\x5a\xec\xa4\xdf\xa4\xba\xe0\x90\xd7\xce\x11\xe3\x6e\x34\xce\x67\xc1\xc4\x26\xec\xd4\x06\x46\x56\x2e\xac\x80\x2d\xbd\x4a\x6c\x64\x17\x9e\x24\xbe\xa1\x44\x2e\x08\x89\x78\xfb\x50\x5a\xf0\x84\xc7\x17\x32\xf7\x82\x12\xd0\x46\x63\xad\xb4\x1a\x72\x3b\x2d\xde\x92\x7c\xc0\xb0\xbf\x2b\xbb\xaa\xe8\x8c\x08\xe9\x7c\x62\xc0\x57\x05\x52\x54\xdd\x69\x73\x87\x9c\xd5\xee\x90\x12\x32\x46\xf2\xc2\xee\xb4\x6a\xbf\xcb\xf2\x82\x82\xe2\x0a\x67\xff\xff\xfb\x7f\xfe\xdf\x27\x17\xd0\xee\x0b\xdf\x77\x4f\x2e\x82\x74\x06\xf0\x34\x8e\x84\x40\xbc\xff\xcf\x6a\x30\x7b\xb6\x49\xfd\x40\xbf\xaa\xf0\x8d\x24\xa2\x1a\x8c\xe3\xeb\x78\xfc\x51\xf1\x17\x50\x8a\x8a\xfd\x74\x01\x89\xa8\x2a\x13\x4f\xb8\x77\xb6\x38\xe4\xfe\x36\xe8\xe6\xae\xa6\x5b\x95\x33\xf1\x67\xf8\x12\xe8\xfb\x89\xcf\x79\x38\x32\x22\xfd\xc7\x45\x3b\x3a\x44\xf2\x47\x85\x78\x38\xf2\x5b\xe5\x74\x5e\xc8\x92\x6f\x39\x04\x8a\x1d\x00\x3b\x6d\x54\xb5\x1b\xdc\x86\x4c\xb6\x42\x6d\x57\x83\xdb\xa0\x67\x8b\xcf\xe4\x39\x25\xc7\x80\x53\x33\xc1\xb1\x94\xbd\xaa\xb7\xd1\x7e\x7d\xbc\xbb\xe3\xc2\xe1\x47\x52\xe9\x5e\xe6\xa0\xfc\xa2\xaa\xe8\xfc\x23\x03\x76\x57\xc5\x23\x8d\x8f\x32\xdf\x2b\x44\xda\x2b\x05\x90\x5e\xf5\xc1\xd8\x4c\x9a\xb6\xf6\x72\x4d\x25\x81\xef\xe0\xa2\xb6\x17\x5e\xae\x19\x11\x62\xfe\x99\x7f\x56\x5e\xa2\x69\xd2\xad\x5c\x4f\x9d\x86\xed\x86\xae\x9b\xba\x16\xeb\xe4\x52\x61\xf2\x25\xfe\xa8\xb6\xd0\x48\x6f\x8d\xa2\xa3\x2b\x7c\x54\x0d\x9a\xe5\xbb\x68\xa0\xef\xaa\xb5\x0e\xe7\x73\xd9\x06\x7e\x2a\x4e\xfa\x37\xfa\x89\x43\x50\xf7\x72\x0f\x69\x72\x4f\x9f\x1b\xed\xd8\x05\xdd\x6b\xfa\x45\xc9\xa4\xbc\x47\x50\xd4\xd8\x47\x78\x64\xff\x79\x8f\x5c\x85\xdf\x94\xe5\x2d\x30\x54\x7d\x9a\x9d\x60\xda\xe1\xad\x15\x94\x41\x1c\xad\xdb\xd8\xbd\xa9\xee\x75\xab\x2c\x9e\x19\xfc\x7a\x9d\x9c\xf0\x2d\x7b\xbb\x77\x81\xe3\x83\xd1\xa6\x4f\x98\x5e\x10\xc1\xc3\x4b\xf7\xd7\xb7\x6f\x2f\xff\x5d\x20\x0e\x98\x87\x45\x15\x67\x62\x61\xef\x55\xcf\xbe\x14\xde\xf3\xcf\x94\xc9\xef\x0f\xb3\x21\x43\xb3\x3d\x95\x46\x2e\x82\x3a\x2f\xbb\x02\xf2\x06\x12\x66\x00\xc9\xd1\xdb\x79\xd7\xcd\xe4\xb1\x51\x4a\xbd\x3c\x44\xb3\x9a\x56\x9c\x7c\xfc\xf1\x93\x03\x12\x7c\xf2\xf1\x0f\x9f\x32\xe0\x60\x77\x31\xe6\xbb\x98\x81\x1f\xb1\x5f\x95\x6a\x61\xe9\x2f\xd0\x6d\x1f\x59\x5b\xbd\x53\x7b\xe2\x2d\x39\x8b\x6c\x70\xea\x68\x8b\x85\x2f\x53\x72\x00\xf8\x17\xb2\x7f\x69\xb5\x2f\x32\x77\xbd\xc2\x75\x40\xcd\x72\x44\xe2\x70\x64\xa9\x41\x2e\x00\x12\x5f\x5e\x23\x32\x63\x4d\x0d\x47\x6a\x1d\x36\xdc\x05\x31\xed\x90\x29\x8c\x35\x4f\xf0\xbc\xc5\xcc\xa2\x11\x48\x8a\xf2\x96\xf8\xb0\x84\x02\xd8\x76\x70\xbe\x5e\xaa\xda\x9a\x5a\xa6\xb1\xf9\xaf\x60\x43\xba\xc4\x47\x46\x32\xec\x4f\x38\xf8\xe4\x1d\x19\x9d\xf7\x16\xa4\x44\x11\xfa\x11\x3c\x6b\xe5\xc8\x51\xec\x20\xef\x77\xd8\x8f\x1c\x33\xd2\xda\x31\x77\xcd\x9e\xf2\x00\x36\x18\x5a\xe7\xf8\x82\xf2\x29\xeb\x55\xae\xfb\x9a\xf4\x0b\xa8\x56\x8d\x8e\x92\x58\x85\x9a\x37\x00\x49\x1a\x79\x51\x4a\xfa\x91\x6f\xea\x1d\xd9\x2f\x62\x93\xd2\x51\x86\x6f\x79\xca\xbb\xe1\xf9\xbb\xd2\xb0\xd0\x80\xd9\xc3\x97\xbb\x61\xb9\xb1\x5d\x7c\x8f\x95\x2d\x16\x8b\xbc\xbe\x28\xcb\xa3\x7a\x14\x58\xe5\x74\x88\x9f\x92\x67\x23\xe4\xe6\xb4\x47\xa9\x64\x87\xa7\xe7\xd3\x05\xc0\x06\xf5\x5f\x5e\x60\x6d\x83\x52\x68\xa9\xd6\x9a\x7c\x20\xa2\x44\xab\xd8\xa1\x43\x42\xb2\x94\xcd\x9d\xdb\x49\x74\x85\x47\xed\xc1\xf3\xd9\xf6\xd9\x7a\x6d\x54\x57\xa3\x61\xae\x38\x13\xf4\x19\x33\x91\xb2\x66\x8b\x9e\xdf\x42\x8d\xd6\xbc\x6c\xdb\xda\x6f\x77\xc1\xd4\xe5\xf1\x89\x7b\xfa\x2c\x74\xfb\xf9\xe3\x0c\x2a\x01\x3c\x4e\xdb\xb2\x25\xbf\x9c\x6c\x67\x97\xe7\x8d\xcd\x54\xf3\x3c\x6e\x1a\x1f\x82\xd1\x1b\x6c\x8b\xef\x8f\x83\x53\x2b\xa1\x3e\x7b\x65\x5a\xd5\x8a\x36\x71\x02\xd9\xdc\x30\x12\x1a\xda\xee\x50\x7b\x4b\xab\x34\x51\x1b\xea\x6f\x00\x08\xc3\xce\x7a\xaa\xc0\x36\x13\xf8\x13\xe8\xee\x23\x7c\x72\x1c\xf5\x56\x98\x91\xaa\x4b\x0c\x44\xaa\x21\xb0\x0e\x41\xf7\x65\xe2\x5b\xb6\x84\x67\x85\x5e\xae\xf0\x49\x04\xb6\x07\x2f\x8d\xc9\xd7\xa1\x80\x53\x34\xbc\xbe\x5e\xe4\x74\x30\x58\x88\xa3\x45\x2c\xb3\x44\xe5\x3b\xb9\x7c\x24\x46\x56\x9b\xe3\xc5\xcb\x64\x6d\xa9\xc8\x57\x21\xef\x18\x14\x66\x26\x6e\x09\xb9\x6c\x60\x1a\xc8\x92\x83\x58\x9e\x74\x2e\xd3\x66\x2b\xcc\x3c\x5c\xf4\xab\x99\x2b\x2d\xc2\x5a\x08\xcb\xbf\xd6\xae\x96\x91\x3a\x1a\x1f\xf4\x96\x2c\x86\xee\x24\x1b\x11\x92\x73\x0f\x49\x27\xef\x88\x71\x7e\xa8\x22\xa4\x0f\x58\x87\x3b\x6c\xf9\x74\x8f\x0e\x2a\x83\xc0\x26\x45\xc8\x0c\xf7\x2c\x3c\x04\xf8\x6e\x53\x33\x17\x4d\x96\xb4\x6a\x29\x18\xf5\x64\x54\xb1\x9a\xd4\xaa\x54\x51\x21\x67\xe6\xac\xe1\xd7\x77\x81\xa9\x71\x6d\x6c\x4d\x5a\x84\x34\x03\x65\x77\x0e\x2c\xcc\x04\xf2\x3d\x52\x3b\x44\x01\xff\x58\x45\x6c\x5d\x59\xef\x37\x59\xb5\x81\xa4\x4e\x0c\x82\x18\x5a\x38\x6d\x1a\x95\x9c\x76\xaa\x36\xd4\xbf\x78\x58\x9f\x96\x1e\x97\xa3\x39\x04\xdf\xe2\xec\x61\x16\xf0\x68\x28\x2a\xb1\x7d\xdc\x56\x44\x0e\xc3\xfe\x59\x4b\x6d\xd2\xf6\xf2\x16\xdf\xa5\xd0\xa9\xe2\x37\xd9\x09\x52\xf6\x74\xb2\x94\xcf\x69\x18\x51\xbb\x94\xa6\xec\xeb\x17\xb5\xb1\x81\xb6\x02\xe9\x01\x5e\x90\x66\x07\x24\x57\x14\x2f\xf3\x93\x0c\xb2\x53\x7b\xd0\x25\x9f\xad\xd9\x3a\x98\xb7\xc3\x4b\x12\x03\xe3\xa5\xcc\x53\x36\x17\x4b\x93\x8d\x4d\xa5\xc7\x83\x20\x19\x66\x04\xdc\x0d\xcb\x56\xf7\x4c\x43\xe9\x83\xa5\xcc\x44\x25\xf8\x25\x12\xd6\x1b\xb9\x29\x37\xaa\x38\x32\x56\x2e\x58\x2a\x1e\xa9\x35\xc7\x01\x38\xa9\xfa\x0f\x33\x08\xaa\xc0\xed\x07\x8a\x9d\x58\x75\xa6\xd0\x81\x63\x2f\xe1\x72\xe9\x20\xe4\x8c\x5c\xc6\xf0\x92\x48\xf9\x2b\x8d\x22\xdd\x4b\x6d\xda\x98\x26\x51\x01\x13\x5f\x29\xc7\xf4\x24\x82\xf1\x63\xe2\x98\xc3\x87\xda\x0b\xd4\x2d\x72\x5a\xf0\x14\xf4\x1e\xfe\xc7\x54\xa3\xf6\xac\x5e\xde\xab\x3e\x7a\xd2\x21\x3f\xde\x40\xaf\x51\x58\xca\x92\x17\x63\x01\x29\xcb\x82\xbd\x0e\x89\x24\xfd\x62\x7e\x9e\xdd\x74\x4a\xf6\x75\x2c\x7f\x01\x9f\xa2\x9b\x60\x89\x12\x57\x2e\x70\x8d\xaa\xc9\x61\xde\xd9\x79\x30\xaa\x2e\x87\xa4\x1a\xb7\x73\xc0\x76\xa7\x4c\x01\xfb\x7e\xa7\x4c\x2e\xef\x15\x88\xad\x53\xed\x08\x33\xde\x7d\xcc\xc3\x4b\x87\x1e\xe0\xf0\xf6\x87\x7f\x4e\xdb\x99\x01\x51\x33\xe5\x0c\xa8\xb1\x39\xdc\x3b\x3b\x01\xe2\x0d\x17\xcf\xf5\xf1\xec\xa5\xf9\x51\xfb\xc9\x04\x51\x66\x8d\x66\x25\xd1\xaf\x14\x02\xc5\xe3\xba\xa8\x26\x22\xe3\xca\x0a\x7c\x84\x2b\xea\xe6\x17\xf1\x1e\x12\x76\x97\x04\xf6\xb0\x55\x2b\x7c\xdd\xe5\x14\x2a\x43\xcb\x85\x30\x2e\xae\xcd\xca\xe6\xc4\x09\xdf\x4a\x9a\x03\x97\x42\xc5\x42\x34\x45\x2b\x7c\xa3\x3c\x8a\x3d\x7d\x14\xfc\xa4\xc8\xa5\x2d\x9c\xe3\xd1\x6b\x3c\x72\xec\x3c\x6e\x18\xfb\x54\x39\xd2\xaa\x99\x6b\x05\x1c\x12\xa7\xfc\xb1\x22\x83\xe3\x57\x32\x44\x95\xbf\x08\x1f\x28\x6d\x2e\x3d\x26\x72\x87\xb4\x8a\x70\x44\x4f\xfd\x91\xda\x92\x6b\x33\x42\x8b\xeb\xdb\xcb\xa5\x38\x13\x27\x2d\x2e\xee\x38\x97\xb0\x74\x53\x16\xad\xe4\x90\xc9\x0a\x98\x30\xd1\xc5\x0c\xe7\x79\x70\xcc\xd3\xfd\x06\xad\xcb\x78\xd7\xd1\xcd\x94\x78\x70\x83\x8f\x61\x8e\x62\x9e\x6c\x63\x2e\xf9\xc0\x6e\x4b\x10\x6b\x6d\xd4\x71\xd4\x47\xca\xb1\xc6\x1b\xf5\xdc\xd3\x9c\x85\xec\xba\x3a\xea\x98\xce\xbb\x4e\xd0\xc7\x2c\xa8\xe3\x50\x07\xde\x82\x14\x97\x9a\xda\xb2\x71\xcb\x5c\x21\x5a\xad\x6d\xbd\x3c\x70\x19\xda\x76\xe8\x80\xf4\x48\x91\xad\x32\x20\x72\x00\x1f\x46\x45\xde\xc6\x84\x99\x22\x8e\x9d\x45\xdb\xde\xcf\xe4\x2c\x70\x3d\x7a\x3e\x2a\xdc\x2c\x08\x10\x0d\x04\x79\x8f\x3f\xe6\x40\xc8\x60\x37\x8a\x5d\xd7\xec\x99\x29\x3c\x19\x9a\xad\x58\x49\x97\x4a\x5c\xe2\x0b\xda\xfe\x2b\xca\x6d\xad\xf3\x70\xcc\x91\x7d\xf6\x5b\x8b\x8e\x0e\xf0\xf3\x81\x7a\x52\x01\xaa\x68\x52\x02\x76\x52\xd0\x22\xd1\xef\xa4\x44\x4a\x46\xb4\x1f\xff\xf0\xc9\x3d\x7a\x7e\xf2\xf1\x8f\x9f\xd0\x6e\x76\x52\xb8\x5e\xc9\x3b\x35\x83\x81\xd4\x50\x0c\x8d\x5a\x1f\x3b\x44\x75\x8f\x1d\xb2\x73\xe5\x33\x4d\xc5\x67\x5f\x6e\xf1\xe8\x46\x79\xb4\xc3\xdb\x98\x55\xee\x70\x33\x6c\x6b\xee\xa3\x23\x0a\x10\xbe\x62\xf1\x30\x02\xb5\x84\x2a\x7f\x8b\xdf\xa9\xbb\xff\x06\xac\xf1\x09\xf6\xf4\xb7\x50\x2c\x3c\x51\x23\xe8\xcc\x71\xf1\x39\x3f\x59\x88\x6f\x17\x82\xcd\x42\x9b\x69\x65\xb8\xd8\x9f\x62\x33\x6d\x66\x6a\x4f\xa7\x00\x5e\x5c\x95\xaa\xe5\x82\xa4\xe1\x47\xe8\x6f\x99\x15\x1a\x15\x41\x78\xd2\xd1\x0f\x45\x0e\xde\x2b\x1c\xd5\x00\x77\x8d\x9f\xa3\xcc\x87\x90\xf5\x45\x01\x3e\x36\xd3\x12\x63\xd0\xd1\x44\xf1\x30\x13\x4b\xf1\x4c\x0a\xdd\xc2\x82\xfa\xf1\x93\x7b\x14\x87\x1b\xbf\x9e\xe3\x62\x29\x06\x9d\xea\x8b\x38\xc2\xe7\x37\x62\x61\x2e\xb7\x57\xab\x88\x87\xaf\x86\x5b\x9a\x1d\xea\x2a\xfb\x30\x60\xa1\xe6\xdb\xaa\xd8\x59\x8e\x4c\x73\x85\x3f\x52\xcd\xc1\x57\x24\xf2\xbb\x17\xd9\x67\x5c\xe6\x85\x1d\x0b\x27\x06\xe7\xbb\xc1\xed\x0d\x2b\x1c\x8a\x87\x28\xec\x3d\x31\xc8\x6d\x7f\xb5\x41\x32\x6a\xac\xb9\x57\xbd\x63\xe3\x73\xc6\xc8\x9a\xc7\x5f\x5a\x9d\xa6\x67\xa4\xa4\x08\x75\x93\xe9\xd5\x8d\xbc\x57\xa3\x43\x3c\xb0\x3c\x91\x85\x2a\xf3\x1b\xdb\xd9\xc4\x62\xe1\xd7\x18\x80\x6c\x8b\x4e\xda\x59\xee\x28\x2d\x4d\xde\xb9\xe8\xe9\xb9\x3c\x75\x08\x72\xa6\x33\x94\x31\x52\x71\x95\x99\xd1\x09\x14\x35\x10\x5d\x41\x05\xeb\xd9\x29\x16\x7e\x7e\x8c\xa0\xd1\xb8\x69\x16\x6c\xfe\xbd\x1d\xf1\x18\xb9\xcd\xa1\x46\xe9\x35\xbd\xb1\xd3\xa6\x30\x43\x64\xdc\xc7\xcd\xcf\xe6\x2b\x4f\x4a\x57\x6a\xeb\x17\x14\xae\x19\x99\xdc\xc9\xde\xeb\x46\xef\x64\x24\x95\x57\x59\x4a\x80\x94\xde\xcb\x66\x03\xdb\x3a\x67\xba\x7e\x23\xc5\x01\xeb\x0b\x60\x3d\x92\x21\x37\x08\x5a\x5e\x2e\x7f\x9b\x29\x1d\x3d\x06\xe7\xa5\x63\x22\xa0\xf8\xad\xa2\x4b\xac\x4c\x5c\xcb\x2f\xb3\x38\xb3\xb1\xdb\x9d\xec\x55\xa9\x46\x85\x94\xa8\x47\x9d\x85\x0b\xb3\x14\x80\xfd\xde\x8a\x78\x03\x83\x21\x9b\xe0\x04\x2b\x15\x80\xa8\x29\x8c\xba\x8b\x12\x2d\x3a\x28\x3e\xc3\x27\xf5\xe3\x0a\xb9\x86\x33\xc1\xbf\x38\xbf\xb8\xfd\x1b\xdf\xfa\x85\x9e\xdb\xba\x57\x6e\xe8\x70\x46\xf0\x3d\x10\x7d\xac\xec\x60\xda\x45\x04\xc2\xb8\x39\xc0\x6d\xa5\xba\xb2\x43\x84\xa2\xea\xf0\xeb\x44\xc8\x5d\xaa\x46\x02\xa3\x8e\x6d\x86\xbe\x6e\x94\x6c\xb3\xde\xf7\x0a\x9d\xd7\x07\xfc\x1b\xe9\xea\x3c\x60\x11\xcc\x58\x44\x1f\xd4\x31\xa3\x91\x5a\x2a\xbf\x47\x77\x3f\x68\xda\x0f\x83\x4b\x4a\x27\xf7\x53\xce\x45\xfc\xf8\xc9\x3d\xc5\x3a\x9e\x02\x2b\xd1\x32\x25\xfd\x37\xfc\x20\x7a\xca\x43\x39\x92\xfb\x66\x96\x01\x52\xa3\x30\xa9\x7b\x5c\xc3\xde\x8a\xad\xea\xd7\x0a\xd9\x8f\x36\xa8\x22\x88\xae\x3f\x6b\x6c\xab\x02\xe1\xc6\xdf\x42\x1b\x6f\x63\xfa\x1f\x63\x3a\xe3\x47\x4c\xcc\x65\x84\x6a\x28\xed\x5f\x43\x2f\x4e\x3e\xfe\x8f\x4f\x61\x8d\x7a\xb9\xac\x73\x72\x4d\x86\x97\xf1\xb3\x80\x1a\x6b\x60\x52\x5e\x71\x01\x1d\xb4\x75\x9c\xcf\x87\xba\xb7\x35\x0d\x4d\x34\x45\xa2\x0c\xb6\x97\xce\x67\xd2\x5b\xb1\x53\x3d\x90\x29\x1e\xcd\x68\x7a\xba\x28\x86\x06\xd9\xef\x3e\xd5\x04\xab\x26\xe6\xdc\x4e\xd0\x46\xba\xc4\x30\x25\x59\x22\x14\xad\xf4\xb2\x5e\xf6\xc1\x58\x5c\x7a\x19\x4d\x0b\xe7\x71\x31\x6c\x3b\x24\x1f\x37\x30\x8a\x76\x45\x37\x6b\x19\xb5\x0d\x6d\xd7\xae\xc6\x07\xbe\xa4\x54\xbd\xe5\x57\xbb\x9d\x6e\xbc\x88\xe9\xda\xb1\x93\x19\x0a\xe6\xb0\xa6\xd0\x18\x31\x04\xd6\xaa\x57\x6e\x83\x8e\xeb\x01\x60\xa5\xf6\x62\x6b\x91\xc3\x8c\x24\x42\x9a\x1a\x2d\xe9\xb0\xab\x85\x3d\x4e\xd1\x0d\x36\xce\xe1\x01\x19\xb9\xa3\x8f\xa8\xd0\xf6\xe9\xeb\xb0\x91\x3d\xfe\x1c\xbe\x48\x02\x7c\x54\x87\x86\x7e\xbb\xe3\x75\x8d\x63\x58\xd1\x7a\xd8\x4a\x43\x36\xb2\xda\x08\xdb\xb7\xaa\x67\xbf\xa4\xf8\x56\xd6\x6f\x66\x30\x13\xb6\x11\x49\xc1\xc5\x33\xb7\xb3\x71\xc1\x0e\x86\x37\x20\x96\x8a\x2a\xe2\xdf\x58\x29\xf2\xd8\xc7\x45\xca\x0b\x39\x19\x48\x97\x5d\xcd\x49\x96\x21\x96\xa2\x18\xb6\xef\xff\xed\xa4\xfd\x81\x23\xeb\xc8\xad\x9a\x9a\x39\x42\x22\x75\x3c\x3f\xbc\x81\x8a\x6a\x87\x8e\x77\x61\xc9\xc0\x41\x01\x40\xda\xac\x17\x81\x88\xb1\xc4\x90\xd9\x38\x22\x73\xf2\x73\x4e\xef\x0b\x18\xf4\xbf\x64\xd4\x3e\xdb\xec\x7c\xbb\x93\x6e\x44\xc2\xa9\x1e\x3a\xa9\x69\x37\xd0\x4b\x77\x2a\x45\xf6\xec\xd8\x64\xd3\xa8\x45\x95\xd9\x7c\x64\x27\x6b\xd2\x54\x64\xd9\x33\x6a\x95\x2c\x77\x5e\xb5\x32\x06\x68\x93\xfe\xf0\xc4\x15\x75\xdb\xba\x1d\x54\xcd\x72\xef\x3b\x8b\xdb\x16\xbe\xc6\x2d\x08\xf2\xde\x18\x73\x14\x7e\xca\x0e\xd5\x6e\x58\xc2\x81\x46\xde\x72\xe9\xc0\xc8\xcc\x5c\xbc\x0d\x8f\x0f\xf8\x46\x99\x59\x93\x02\xfd\xe8\xbc\x99\x1d\x9c\xf8\x3a\x0f\xfe\xe7\x19\x33\x36\xc0\x79\x6e\xea\xf3\x8b\x41\xa1\x0e\x5b\x7c\x1f\xae\x54\x7f\x28\x3b\xa9\xc8\x8b\x0a\xfc\xcf\x33\x62\x94\x04\x46\x55\xd3\x3a\x64\x8c\x88\x9c\x53\x92\x03\xfe\xd3\x68\xbb\xf0\xf8\x70\x38\x1c\x9e\x6c\xb7\x4f\xda\xf6\xf1\x4c\xaf\x33\x0e\x32\x76\x7b\x74\x77\xcf\xaa\x9a\x11\xcd\xce\x30\x65\x0c\xf9\xfc\xd8\xa1\x21\x46\x3e\x4f\x1f\x50\x3b\xb9\x54\x1e\x5f\x9c\xa5\x91\xa3\x9d\x94\x66\xcf\xc1\x69\x64\x77\x9d\x4a\xef\x8d\x80\xbc\xd0\x43\xf8\xbc\x2f\x23\x61\x26\xcb\x1a\x39\x7f\x7d\xb0\x81\xd1\x16\x8f\x99\x4b\xbb\x4a\x8d\x19\x0d\x0a\xc5\x52\x3b\x3a\x24\x99\x10\x91\x86\x35\x0a\x12\x33\x80\xf3\x62\x44\xaa\xfd\xbf\x53\x94\x98\xab\x7e\x6e\x19\x7c\x41\x98\xa8\xf6\xfa\x4e\x8b\x33\xf1\xab\xbe\xd3\xf8\x7b\xc1\xee\x7a\x33\xf7\xbc\xde\x62\xf6\x77\x45\x7e\xe8\x2b\xe4\xa0\x1d\xd7\x86\x9f\x7f\x0a\x0a\x0f\x46\xef\xcb\x86\xae\x15\x9d\xbe\xa3\xb3\xdd\x36\x03\x6a\x19\x0e\xec\xce\xe9\xaf\xe8\x5b\xc9\xae\x15\x3a\x5d\x89\x0c\xbc\xf6\xbc\xa8\x16\x54\x21\xaf\x71\x74\xf7\x56\x73\x24\x58\xde\xe4\x64\xe0\xd1\x3b\x8f\x67\x39\x81\xe7\xb1\x62\x31\x81\x99\x76\x4e\x67\x96\x3d\xc1\x93\x77\x9e\x1c\xeb\x3b\x8e\xa4\x43\xf9\xc1\xe0\xaa\xb4\xaf\x80\x9e\x93\xcd\x0d\x70\xeb\x4a\xc8\xa5\x1d\xd8\x2c\x89\xf5\x82\x89\x40\x70\x3f\x30\x86\x08\xd7\x04\xa2\x79\x56\x07\x9a\x86\x73\x05\x7c\xaf\x70\xe2\xf0\xfe\x37\xe8\x37\xb0\xdc\x89\x23\x70\x5c\xe9\x90\x52\xf3\xfd\x01\x0b\xd2\x45\x7f\x52\xde\xb8\x3f\xf4\x34\xa9\x00\xe1\x83\x6d\x1e\xca\x58\xaf\x1b\x55\xff\x18\x78\x96\xfc\xf9\x12\x59\x18\xac\x15\xb3\xc9\x20\x03\x32\x97\x1c\x3d\xdb\xc3\x7e\x57\xbd\x47\x37\xf6\x71\x86\xa6\x57\xc7\xb8\x90\x10\xd5\xc8\xfb\x45\x79\x7b\x9c\xe1\x70\x3c\xcd\x2e\x1b\xc4\xe0\xe7\x29\x78\x69\x08\x46\x75\xae\x9a\x8d\x13\x1b\xd2\x16\x34\x59\x2e\x86\x7b\xcb\xb2\xb2\x18\x22\xcc\xde\x67\xdf\x47\xc0\x16\xf4\x88\x87\xbd\x34\x1f\x03\xa2\xfb\x75\x5e\x49\xc7\x80\x30\x60\x2b\xbd\x03\x39\x06\x32\x98\x70\x41\x74\x26\x3e\x84\xdf\x09\x78\xce\x04\x74\x92\x59\x2f\x49\x08\xcd\x9e\xd2\xd0\xab\xdd\x24\x64\x02\x5d\x47\xa8\xec\xe2\x3e\x4c\xf2\x6e\x70\x1b\x0c\x0e\x18\xd5\x9f\xc1\x2d\x65\xa8\xe8\x4b\x0f\x46\x8e\x00\x26\x6e\x59\x85\x58\x66\xc1\x62\x87\x14\x65\x4e\xb7\xe8\x5a\x00\xaf\xd6\x40\x3c\x7e\x14\xf2\x51\xf4\xc7\x27\xed\xc4\x56\x9d\x16\x6c\x23\x3b\x7c\x32\x18\x1e\x2e\x98\x5a\xa4\x56\x8c\xcc\xb0\xc6\x19\x23\x3b\xcc\x7a\x30\xd1\x50\x35\xd9\x64\x4e\xdb\x9b\xc5\x63\xa2\x6b\x12\x7c\x7a\xac\x7d\x8c\xb7\x64\x0d\x1b\xdd\x4f\x9a\x32\xae\x31\x11\xfb\x17\x65\x35\x41\xde\xca\xd8\xe0\x07\xdd\xa0\x7d\x97\x6a\xda\xf5\xd6\xe3\x85\x53\x6e\xd9\x7a\x15\x12\x67\x56\xcf\xb4\x40\x7c\x2e\x43\x39\xd9\xea\xc1\xf0\x4a\xb6\x6f\x68\xb1\x60\xf8\x4e\xd9\x34\xba\x55\xc6\xcb\x2e\x49\x7e\xe8\x25\x71\xa3\xbd\x42\x47\x47\xd9\xfc\xa1\x0b\xea\x6c\x0b\x90\xf3\x3a\x99\x5b\xc2\xa2\xeb\xba\x60\xe5\xb9\x58\x2c\xc6\xcb\xbc\xe6\xf6\xd2\x46\x66\xce\xfc\x2a\xa6\x3d\x00\x3e\x7a\x05\x44\x95\x0b\xce\x17\x81\x7a\xe0\x0e\x21\xac\x31\xd6\xc6\x62\x32\x5a\x23\x93\xba\x30\x52\x38\x69\xcb\xd1\x66\x98\x29\x12\xb9\x0c\x76\x28\x90\xc6\x94\xd5\x60\xbb\x5e\xdd\xe3\x0e\x84\x11\x0f\xe3\x3a\xd3\x8c\xa0\x9a\x1e\x49\x75\x21\xb8\x5c\x21\x63\x69\xe3\x3c\x10\x22\x32\x82\x09\x33\xf8\x75\x38\xe3\x33\x7a\x72\xe1\x81\xfd\xa4\x11\xcb\x03\xb6\x96\x98\xa3\xa5\x2a\xcf\x65\xd0\x99\x44\x97\xb4\x4b\xee\x32\xbd\xe3\x37\xe4\xb8\xcd\x58\xf3\x24\x2e\xc9\x30\x13\xc8\x58\x90\x40\x5d\x22\x8d\xa1\x2f\x4a\x8b\xc1\x49\x9f\xe2\x6a\xac\xd3\x42\x04\xaa\x1d\x17\xe9\x7e\x63\x51\x13\x80\x44\xb0\xac\xe3\xeb\xb0\xe5\xd6\x9a\xcc\x2b\xdb\x9e\x5f\x62\x7b\x9b\x6d\x07\xbb\xca\xc7\x69\x32\x48\x18\x21\x0a\x58\xc9\x54\x82\x1e\x36\x1d\x76\xd2\xc5\x00\xdc\x23\xa5\xc3\x46\x35\x77\x0f\xf6\xba\x88\x3f\xf5\xcf\x76\x96\xac\x8c\x22\x2e\xb6\x35\xc2\xcf\x87\x8a\xd1\x18\x90\x7b\x72\xda\x5f\x14\xf4\x96\x9d\x0f\xb3\x95\xef\xf6\x5f\x68\x51\xa8\x81\x5b\x84\x9f\x13\xda\x1b\x4a\x4f\x68\xef\xd5\x0c\x05\xc8\x97\xd8\xd7\x52\xde\x8d\xb5\x77\x14\xe5\x6d\x89\x3f\x53\xce\x5a\xfb\x90\x09\x07\xc5\xeb\x32\x77\x29\x9d\x6e\xf2\x68\xf6\x3f\x43\xc2\x0c\x83\xc3\x2f\x9e\x32\x48\x7e\xf5\x38\x05\x75\x07\xd3\x70\xa8\x33\x18\x97\x83\x69\xc4\x3b\xbb\x9f\xa2\x02\x30\x6d\xea\xa0\x5f\x4b\x28\x21\x27\xc6\xb4\xfb\xb2\xfe\x8d\x78\x67\xc9\xb1\x8f\xb2\xa5\xc8\x3e\x65\xdf\x87\xd8\x84\x37\x7a\xe6\x20\xce\x7a\xc4\x16\xd3\xd3\x1e\xf1\xdb\x09\x38\x11\xbf\xce\xe3\xeb\x9c\xa7\xd7\xb1\xc9\x67\xc4\x2e\xdb\x7b\x90\x58\xdb\xbc\x29\xe7\x9c\x36\xd3\x18\x60\x56\x47\x24\x11\x85\x30\x8a\x0a\x9d\xf5\xcf\x29\x7a\xcc\x6a\x64\x57\xb3\x98\x06\x32\x77\x88\x3b\x0d\x49\x59\x23\xba\xce\xee\x6b\x76\x57\x9c\x57\x71\x8e\x2e\xff\x82\x0b\xe2\xf8\x42\x00\x11\xa2\x0f\xa1\xf2\x15\xfb\x8e\xde\x8d\x97\xcd\x50\x9f\xa7\xcd\x08\x69\xa3\x76\x14\xa0\x1c\x7b\xfa\x97\x00\x8a\x3c\xfe\x87\xeb\xcb\x07\xc0\x43\xb3\xff\x52\x84\x20\x5d\xc2\xd0\x13\xe5\x23\x32\xfe\xe1\xfa\x92\x5a\xef\x37\xea\x50\xda\x57\x79\xb9\xcc\x26\x87\x04\xe9\xd1\x78\xd3\x6d\x31\xbe\x33\x56\xfd\x91\x11\x47\x98\x9a\x61\x46\x43\xdf\xe9\xf5\xc6\xef\x15\x3a\x54\x39\x82\xab\x98\x8f\xb2\x11\x47\x66\x84\xef\x4d\xbf\x79\x4e\xe6\x1a\x1a\x27\xe7\x48\xeb\x62\x61\xce\x19\x4f\x14\x5a\xe9\x89\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\x6c\xe3\xe7\x11\xbc\x93\x5b\xf4\xf3\x08\x50\x3f\x3d\x88\x63\x11\x82\xb8\x9c\x89\x77\xf4\xeb\x61\x70\x0c\xfe\x92\xca\x9c\x67\x9f\x0f\xf5\x35\x77\x7e\x12\x1c\xd9\xe5\x26\x90\x24\x6a\xff\x1d\xce\xce\x7f\x88\xbf\xc3\x52\xf9\x87\xf8\xbb\x36\xad\xfa\xfc\x8f\x70\x43\x15\x43\x0b\x03\xb9\x3b\x9d\x78\xc9\x20\xd5\x37\x0c\x02\x16\xcb\x4f\xff\xa1\xeb\xc6\xbb\xa5\x94\x9a\xd8\x6d\xd2\xce\x87\x15\x0c\x02\x5f\xaf\x97\xc3\x48\x6c\x6e\x25\xda\xd8\xff\x4e\x56\x75\x2f\xf0\x4b\xfc\xdf\xd6\xe4\x82\x2e\x5d\x57\xe0\xf3\x2a\x6f\x6b\x10\xf9\x63\x94\x8a\x4c\x0e\xc5\x8b\xa0\xe2\x81\x32\xec\x16\xef\x84\xed\xf5\x5a\xc3\x84\x62\xa1\xac\x17\x46\xed\x39\x88\xc7\x46\x3a\xc2\x1b\x83\x11\x90\x6f\x6b\xaa\x46\xc6\xa0\x94\xae\xac\xa0\x54\x41\x2c\x46\x6c\x7f\x64\x37\xd1\x25\x7a\x26\x94\x9b\x7b\xd5\xfb\x78\x03\xe8\xc5\xad\x15\xd7\x6a\x3d\x74\xb2\xcf\x5f\x86\x8f\x0b\x8c\xe7\x3b\xe0\x61\xed\x21\x1e\xa9\x30\xea\xa2\x67\x5c\xb9\xfc\x1d\xde\x88\xf3\xe5\x02\xb0\xfe\x3d\xb9\x18\x1d\xd7\x42\x6a\x1c\x87\x7a\x9c\x27\x1c\x95\xa1\x74\x49\x53\x54\x9c\x8d\x06\xb7\x01\xaf\x43\xe7\x5a\x41\x56\x4a\xb1\x0d\xe4\x99\x66\xa6\x05\xc9\xe2\x2a\xf8\xa6\xe1\xab\xd2\x91\x22\x85\xa0\xc9\xf9\xd5\xc8\x5b\x40\x52\x68\x13\x54\x08\x4a\x48\x4d\x42\x7b\xc8\xd2\xc5\x77\xbe\xcf\x28\x78\xc4\x19\xec\x7c\xfa\xf9\x3e\x84\x9f\x98\x82\x45\xbd\x43\x8a\x39\x51\x0e\x4a\x26\x76\xe0\x4e\xe3\x49\x2a\xe3\x9d\x30\x2f\xde\x6c\xb2\x10\x8d\xa8\x19\x42\x67\x5c\x6e\xa6\x79\xa3\x69\x9a\x75\x80\xa4\x57\xd9\x1a\xc6\xc7\x37\xda\xb4\xfa\x5e\xb7\x83\xec\xb0\x31\x0f\xe1\xfd\x43\x89\xb7\xb1\x06\x15\x0e\x47\x71\x8f\x3a\x84\xa4\x03\x9d\x68\x3e\xee\xd9\x50\x79\x95\xa2\xe1\xcc\xf6\x08\xa8\x5a\x34\x3d\xe2\x9d\x44\xae\x26\x53\x5c\x8b\x5c\x15\x4e\x7a\x6e\x5c\x1f\xe4\xd6\x37\xac\xd2\x9f\x26\x4c\x14\xdb\x0a\xfd\xd2\x03\x4e\xe4\x2e\x5e\x48\x2f\x67\xc1\xc2\x84\xbe\x0f\xcf\x6c\x14\x16\x42\x8e\xa6\x95\x5e\xa6\xcb\x46\x63\xd9\xb9\xd1\x52\x36\x77\xb3\x6a\xcc\x59\xfc\x33\xfb\x2b\xd7\x94\xc2\xc0\x05\x59\x17\x9f\x41\x41\xc5\x40\xa7\x4f\xa6\xbc\xe1\x44\x9f\x7f\x9d\x93\xa6\xd0\xe0\xf4\xbc\x07\xbb\x32\x76\x6e\x9f\x29\xd4\xca\x57\x83\xd8\xb4\x39\x7a\x74\x64\xa0\x42\x07\x8a\xc8\x34\xff\xcc\x68\x1d\x1f\xa8\x44\x88\xbe\xe8\xf1\xea\x38\xbe\x3f\x1c\x25\x6c\x99\x5f\xaa\x5c\x71\x0d\xb4\xf2\x40\xa6\x36\x53\xa5\xd9\x29\xbb\x7a\x81\x5c\x10\xbc\x60\xc8\x4f\x99\x49\x3b\x8d\x26\xa9\x14\x9c\x23\x73\x3f\x97\xdb\x0b\xba\xe3\x6d\xc5\x33\x8f\x06\xe0\x3c\x38\x58\x0a\x5c\x13\x5e\xba\xc0\xc1\xbc\x53\xa6\x45\xbb\x4d\x72\xea\x38\xd5\xe4\x3c\xbc\x52\xbe\x70\xf5\x73\x4c\x90\x9a\x47\x16\x04\xdc\x2f\x44\x54\x98\xee\xfe\x70\xa0\xbf\x53\x7b\xb6\x90\x4c\x82\xa4\xbc\x43\xc6\x35\xd0\x65\x74\x5b\x18\x08\xee\x0c\xaa\xd9\x13\x21\x85\x10\x8a\x4d\x0b\x05\xfa\xe3\xcd\x2b\xbd\xa6\xcd\x79\x4b\xcb\xc4\xbb\xb6\x1e\x59\x81\x9e\xb7\x2d\xf6\xa7\xb0\x06\x3d\x5a\x60\xe4\x53\xb4\xc0\x55\x3a\xde\x9e\xae\x97\x51\xc5\xc1\xfb\xf6\xf4\x1e\xc0\xf6\xb9\xd1\x63\xde\xb0\x99\x2e\xcd\x16\x2b\xec\x52\xf0\x48\xc3\xf5\x98\x5e\x3f\x6e\x28\xce\x7d\x7e\x1b\x92\x7b\xe4\x2b\x8f\xc7\xd1\x9a\x7d\xc0\x5b\x77\x68\x14\x5d\x8c\x1e\x1b\xb9\x8b\xd9\x51\x63\x87\x8c\xb9\xce\x20\xe9\x99\x46\xef\x86\x32\x95\x53\xa1\x1a\xc6\x80\x7a\xc9\x3b\x11\x70\xa2\xcb\xc9\xc0\x17\xf1\xf5\x4a\x07\x45\xac\x8d\x24\xcf\xe9\xc8\x48\xe6\x65\x17\xe5\xba\xd8\x93\x7e\x87\xd7\x10\x6b\x7b\x46\x6a\xa0\x78\xb5\xca\xba\x20\xb4\xf5\xd9\x0e\xcd\x86\xae\x52\x51\xe5\x83\xde\x80\xc4\xd5\xfb\x9b\x5b\x41\xca\x5e\xdf\xeb\xf5\x1a\x0e\x60\xf1\xeb\x46\x19\xa0\x6c\x78\x1d\xc3\xd4\xad\x69\x06\x52\x0c\xbe\xb2\x6b\x77\x2a\xf6\x2a\x38\x32\x35\x2d\x1f\x47\x79\x2c\x8c\xa0\xed\x20\xfb\x3f\xb1\xb1\x8e\x1c\xfc\xbb\x9d\x6a\xf4\xea\xb0\x10\x97\x4a\xf6\x86\x22\xee\x07\x93\xe5\x07\xdf\xa8\xc6\x9e\xa0\x7f\x99\x67\x4f\x65\xae\x15\xe7\x21\xc9\x97\x2f\x1f\x54\x93\xe1\x19\x83\xce\x79\x0e\x0d\x23\xfc\xd0\x65\x3b\x12\x6d\x3a\x9a\x35\xba\xf7\xe5\xe7\x93\x5f\xb3\x4c\x27\x6d\x48\x6b\x94\xdb\xfb\xd5\x84\x97\x51\x2d\x3c\x29\xc9\xb9\x2d\x67\xe2\x56\x39\x74\xc7\x88\xdf\x5f\x00\x0f\x43\x70\x43\x51\xb9\xf1\x11\x07\x2a\x42\x69\x59\x44\xac\x30\xa5\xca\xf1\xe5\x7b\x18\x23\x37\x55\x4e\xcd\xd6\x91\xf9\xff\x05\x1c\xfb\x71\x3f\x69\xed\x93\xfd\x1e\x55\xf7\xb7\x41\x0d\x6a\x21\xde\x78\xb1\x95\x07\x8c\x20\x89\x66\x76\x4e\x35\xd6\xb4\x2e\x38\xc8\xd0\x1e\x1f\xf1\x3a\x31\xec\xc2\xa3\xea\xc9\x94\x4c\xdb\xd6\xab\x6c\xac\xae\xe3\xc7\x43\x80\x59\x0f\x5e\x43\xcb\xbd\x74\x77\x23\x63\x10\x90\x04\xbf\xb1\x17\xc9\xd7\x6b\x2c\xc1\x4e\xf5\xb5\x79\xb0\xfd\xf9\x55\x8b\x72\x7e\x0e\xc4\xed\x2c\x39\x0e\xbc\xe6\x9f\x53\x20\xb2\xc4\xc1\x3e\xd1\xaf\x29\xc8\x8e\x03\x0e\xc7\xd0\xc3\x53\x90\xa5\x6d\x61\x1c\x7f\xb6\xed\x61\xaa\x74\x0e\xab\x2b\x6a\x9e\x91\x16\xed\xec\x1e\xaf\x5c\x97\x07\xcc\xd0\xde\xa9\x6e\x45\x11\xfb\x40\x7e\x55\xc1\x57\x0c\x32\x44\xe9\xba\x93\x48\x00\xcf\x33\x5e\x4e\xe0\x5b\xc6\xdc\x5c\x95\x62\x56\x15\x01\x78\xc6\x6d\x22\x4f\x32\xdc\xae\x37\x24\x7b\xe0\x6a\x44\x6d\x33\xb9\xf0\x39\x05\xd9\x7d\x97\xbd\xb6\x0f\xfa\xa8\x1d\x85\xef\x57\x2d\xd2\x30\x8c\x82\x19\x40\x48\x78\x23\x67\x0e\x99\x17\xcc\xc4\xb2\x6b\x87\xf5\xcc\xb4\x88\xbd\x96\xe2\xca\x42\x7f\xa5\x13\x88\xf4\x52\x08\x81\x42\x64\x8e\x31\x0b\xc6\xe0\x49\x95\xfd\xba\x20\x7f\xd9\x01\x12\x27\xc6\xae\x99\x6f\xe4\xb0\xfc\xa4\x1c\x82\x83\x21\xe8\x82\x32\xab\x60\x18\xab\x0f\xd7\x97\x39\x31\x3f\x15\x12\x8e\x77\xd2\x78\xf4\x6a\x2d\xfb\x36\xb8\xac\xe1\x83\x65\x23\x3d\x1d\x20\x79\xc0\x28\xf4\x23\xc7\x28\xc8\xd9\xc0\x9d\x36\xe8\x6a\x15\x45\x13\x56\xda\x81\x94\x98\x0c\x80\xe0\x2c\x19\x76\x70\xbc\xd0\x59\x15\xea\xc1\x2e\x7f\xff\x1f\x37\xef\xdf\x9d\x8a\xcf\x4f\xf6\xfb\xfd\x13\x28\xfe\x64\xe8\x3b\x65\xa0\x0b\xed\xa9\xf8\x5f\x6f\x2f\x4f\x85\xf2\xcd\x0f\x0b\xf1\x96\x4e\x9d\x44\xcc\xd9\x06\x17\xed\xeb\xd1\xa0\x75\xe8\xff\x85\xd3\x88\x77\x0c\x2b\x44\xf3\x80\xdd\x39\xef\x08\xb3\x17\x5e\x5f\x86\x58\xd7\xf8\x0a\x33\xe3\x43\x38\x1e\xc3\x0d\xfe\x18\x67\x24\xb2\x8d\x60\x61\x7d\x62\x38\x23\xe9\xc4\xcd\xeb\xf3\x3f\xfc\xfb\xff\x14\xaf\xdf\x9e\x5f\x88\x8d\xfa\x2c\x5a\xbd\x56\x74\xfd\x17\x76\xf4\xbd\x0e\x73\xfd\xbf\x9e\xc0\x22\x78\x72\xa3\xd7\x46\xfa\xa1\x57\x61\xde\x89\x3c\xe4\xac\x51\x27\x9b\xbb\xb9\xc8\x78\x63\x10\xdd\x58\xc3\x03\xf0\xa6\xb1\xa6\xec\x3d\x81\x84\x97\x42\x17\xf8\x46\x28\x29\x87\x61\xc9\x44\xfe\x65\xa3\x0c\xd0\xf7\xa1\x6b\xcb\xa3\x79\xa9\xc2\x12\x50\xed\x9f\xc6\x85\xd1\x1d\x1c\x06\x20\x38\x13\xff\x81\x8e\x80\x36\xc1\xba\x08\xb2\x42\xef\x10\x78\x31\x2e\x0c\x9b\xa0\xce\xc4\xba\x33\xf1\x46\x18\x10\x19\x82\x58\x99\xf2\xa2\x68\x39\x41\xc2\x5a\xbe\x33\x71\xa9\xbc\xd8\x46\xad\x1f\xae\x72\x42\x37\x2d\x52\x5a\x9f\xce\x67\x87\x71\xf9\x39\x77\x12\x17\x2c\x33\xa7\x63\x58\xbe\x83\x9a\xcd\x9e\xc7\xc8\x5c\xc7\xb8\x48\xee\x15\x70\x26\x2b\xf9\x63\x4d\xbe\xf6\xd0\xff\xe1\xdc\x04\xb1\x93\xbe\xd9\xb9\xcb\x8e\x8c\x70\x23\x9b\xab\x0e\xc6\x65\xc6\x4e\xf0\x66\xb3\x23\xbd\x47\xa5\x35\x3d\x21\x3c\xa5\x87\x91\xed\xa9\x08\x8f\x0a\x4f\xd9\x64\xee\x34\x78\x21\x68\x4f\xc5\x60\xd2\x6f\x7a\xd0\xc5\x82\x6b\xf8\x44\x93\x5d\xf8\x8c\x16\x95\xed\x29\x85\xba\x4d\x09\x93\xf9\x26\x2d\x7f\x7a\x36\x49\xed\x0a\x8f\x27\x1f\x02\x2e\x7b\x12\x30\xf0\x22\x48\x1d\x88\xb1\x76\xa7\x75\x8f\xcc\x35\x0a\xf3\xfb\x07\x40\xa3\x05\x4b\x7e\xf9\xff\xbf\x7f\x24\xf3\x61\xc4\x6e\xb9\x83\x69\x36\xbd\x35\xfa\xf7\x99\xbe\xb1\x67\xc2\xe4\x98\xf0\x08\x40\x5a\xac\xc1\xfc\x6c\xd9\x69\xb4\x06\xc1\x37\x6c\xf3\xd7\xb4\xe4\xcb\x2f\x38\xf5\x1b\x67\xa4\xa7\x12\x2f\x94\xc7\x80\x83\x73\xa7\x21\x29\x73\x23\xf5\x4a\xe7\x57\xa0\xe0\xcc\x09\x92\x28\x48\xee\xfe\x8b\xf3\x1b\x0f\xef\x52\x21\x30\xcf\x4e\x4f\x0d\xc0\x92\xec\xc8\xdc\xc1\x44\x3e\x62\xc0\x51\x1d\x13\xb1\x84\xe7\x6d\xaa\x6d\x48\x35\x1c\x93\xc0\xe8\x95\x7b\x90\x0c\x42\xe8\x63\x8c\x78\xf5\x22\xa6\x95\xf2\x6c\x38\x27\x91\xf3\x29\x0f\x49\x74\xb3\x83\xe7\x49\xce\xd3\x80\x64\x5c\xbe\x93\x05\x10\x0e\xf6\xe4\x55\xf0\xe7\x3a\x09\x52\x77\x18\x0d\x75\xab\x5d\x63\xfb\xf6\x61\xdc\x2f\x08\xe8\xdb\xb0\x53\x9b\x43\x48\x0c\x0a\xdd\x31\xca\x6c\xed\x56\xa2\x05\xe8\x0b\xfc\x31\x39\x3f\x37\xd2\x18\xb2\x76\xa7\x5f\xf9\x5c\xec\x3a\x7b\x08\x51\x02\x5f\xe0\x57\x88\x7f\x3c\x05\xc9\x62\xea\x2d\x9f\x5f\x50\x64\xbb\x57\xd6\x37\x1b\xf9\xdd\xb3\xa7\xcb\xe7\xc0\x21\xb3\xae\xbe\xb3\xf6\x2e\x3c\x74\x91\x2d\xae\xeb\x18\x65\x63\x17\x63\xcf\x25\x33\x0d\xd9\xb6\x64\x5b\xa3\x0d\x0d\xc5\x28\x20\x57\x8a\x47\x43\xad\x1a\x31\x52\x38\x03\xb1\x9d\x3c\xf4\xa9\x37\x73\x9d\x49\xe2\x3c\x42\xe1\x08\x6c\x28\x48\x84\x6c\x9f\x20\x4f\x40\x0a\xa7\x85\xb8\xdd\xa8\x43\xf4\x38\x8c\x91\xae\xf0\x5e\xb3\x0c\x1c\x82\xcd\x0b\x01\x01\xf3\xeb\x41\x5b\x97\x83\x1c\x02\x40\xa0\x0f\x17\xd2\xe3\x98\x83\x68\x53\x33\x72\xc5\x66\xf1\x86\x64\xae\x17\xd3\x08\x7c\x11\x6a\x1c\x29\x30\xf5\xf4\x68\xa4\xc0\xbc\x68\x1e\x2e\x30\x2b\x8a\xbc\x7b\x1c\x84\x59\xa3\xe9\x62\x5a\xa6\xc1\x00\x53\x57\xbf\x22\x1e\xe0\xfc\xcc\x8d\x95\x37\x5f\x9c\xea\x87\xde\x4c\xb4\x79\xe7\xbe\x22\x32\xe0\xd8\x9f\xd8\x57\xe8\x71\xe6\xda\x92\xdb\xd4\xc6\x06\x7c\xe9\x05\x45\xab\x57\xab\x05\xb9\xa2\xad\x9d\x1d\xfa\x46\x21\x47\x06\xdf\xe2\x06\xbf\x09\x84\x1d\xf1\x9d\xb1\x47\x3e\x4a\x64\x57\x05\x67\x6c\xe3\x4a\x89\xf8\x88\x12\x55\x92\xf7\x52\x77\x31\x8a\xde\x6a\x45\x0f\x2a\xdf\x59\x8c\xa3\x4c\x39\x0b\x2a\xe2\x36\x76\x5f\xc3\x2f\x0c\xeb\x87\xf6\x6c\x1b\xbb\xa7\x42\x37\x90\x92\x81\xb9\x5d\xa7\x7d\xcd\x5e\x70\x6f\xe0\x03\xfd\xf8\x66\x10\x83\x41\x9f\x7d\x01\xe6\x03\x7d\xe6\x50\x80\x32\xfa\x34\x08\x77\x34\x27\x6d\x74\x34\x87\xe2\x7f\xba\xbd\xc1\x15\x1a\xe0\x4e\x5a\xa4\x3f\x28\xdf\x27\x90\x3c\xdc\xc9\x49\x1b\x35\xc7\x09\x82\x07\x1a\x89\xea\xcf\x6f\xde\xd1\x27\xfa\xa0\x65\x27\x44\xe8\x8c\xf8\xa5\xee\x78\xbc\x39\x88\xf8\x0e\x1d\xdd\xa9\x36\x38\xe0\x83\x3c\x91\x25\x67\xcf\xf0\x72\x77\xc4\x84\xc3\x5b\x5b\x6f\xa5\x39\xc4\x07\xba\x37\x76\xab\x58\xb7\xb1\x57\x4c\x7e\xd0\x65\x71\x7a\xb3\x68\xad\x80\x22\x0c\x15\x06\x24\xe8\x49\x01\x6d\x15\x3c\x30\x2f\xe6\x3c\x31\x87\x3c\x72\xab\x1d\xf8\x21\xd8\xa5\x81\x27\x0a\x10\x6d\x2f\x57\xf8\x84\x0c\xfe\xc7\xd4\x5d\xaf\x52\xb1\xab\x5e\x3d\x19\x17\xe3\xa7\x5e\xf0\x2f\xa6\xc9\x0d\x3d\x33\x48\x33\x90\x66\x26\xbc\x4a\xf4\x56\x9c\x38\xf6\x53\xc8\x1b\xae\x44\x4c\xab\xbf\xe6\x20\x80\xb4\xf6\x31\x9a\x5b\xd1\xa7\xfc\x0d\xd9\x15\xf1\x6d\x22\x8e\x03\x5a\x76\x50\x44\xac\x5d\x6f\xdb\xa1\xf1\x8b\xa2\xdd\x45\x69\x62\xd4\x54\x58\x75\xa2\xb3\x6b\xd4\x06\xa0\x63\x59\xb2\x34\x1d\x4c\xab\x7a\xe7\xc9\xa8\x5c\x66\xd4\x55\x6f\x77\x3d\x5d\x1d\x04\xf4\x5e\xae\x63\xc4\x2e\xb9\x26\xef\x18\x29\x0f\x35\xe1\x90\x03\x3f\x8a\x32\xf1\x00\x0e\xf6\xe7\x99\x77\x4a\x2f\xd7\xc8\xf4\x36\xb9\x3f\x74\x90\xd1\xac\x09\x3c\x6b\xd6\x80\xe2\x64\x09\xa9\xd3\xd3\x24\xe4\x94\xcf\x47\xb2\xe9\xe7\x6d\xcb\x0e\x99\x63\x4e\x67\x65\x4b\x42\xf1\x25\xfd\x5a\x2c\x16\x33\xab\x66\x1a\x72\x78\xd7\xab\x27\xe3\xb9\xce\xe0\xe3\x00\xfc\xaa\x1e\x77\x9d\xd8\x59\x6d\xbc\xa0\xe7\x50\xd2\x17\x2b\x25\xdc\x9c\xf0\xd4\x6a\x6b\x9e\xe0\x31\x95\x9a\x31\x7e\x04\x18\xab\xe3\x85\x92\x96\xcc\x78\x55\xe3\xf3\xaa\xb0\x23\xf0\x7d\x55\xb9\x2d\x70\xf5\xa4\x8d\x81\x0f\x1d\x27\x1b\x8a\xd8\xe0\x04\x55\xde\x98\xcf\x00\xd3\x91\x17\xc4\x90\x78\xd3\x36\x86\x99\x3f\xe5\x42\x3d\xe3\x07\x55\x18\xe0\xdd\xed\xac\x89\x97\xcf\x5e\xae\x1f\x8c\x6a\x35\xaa\x2d\xbf\xc1\xa5\x2a\xbe\x70\x88\x8d\xf7\x40\xf9\x3c\x2b\xc3\xc3\xac\x06\x50\x4a\xde\x23\x13\x56\x63\x82\x8b\x9f\xb3\x66\xfb\xaa\x88\x03\x9a\x4a\x04\x57\x22\x78\x00\x87\xdf\x55\xf5\xd1\xf6\xeb\x4f\x15\x5e\xd3\xa1\xdb\xe8\xe8\x36\x32\xbf\x93\x43\xbd\x2b\xc0\x40\x8f\x1e\x02\x7c\x09\xf2\x6f\x84\x2e\x83\x4a\xbd\x82\x6d\x5a\xda\xbb\x00\x00\x69\xbd\x31\x86\x14\xbf\x26\xe0\x30\x52\x8b\x10\x02\xc1\xf6\xeb\xf4\x7e\x30\xaf\x8e\xa2\x06\xa5\x57\x69\xec\xe5\xbd\x62\x2b\xff\x33\x71\x85\x3f\x2a\x6d\xee\xb5\x07\xfe\x61\xab\xc8\x60\xee\x0d\x26\xe0\x79\x63\x8d\xaa\x0a\x3b\xf8\x0a\x9d\x53\xd7\xc1\x06\xfe\x2c\x58\xc3\x73\x7a\x11\x27\xea\xac\x88\xbb\x91\x87\x6c\x00\x94\xe5\xa3\x47\x40\x8e\xa3\x32\xf3\x1c\x1a\xa0\x23\x79\x84\x92\x38\x84\x98\xfa\x10\x74\x11\xa3\x09\xa8\xc3\x10\xfc\x0c\x22\x2e\xf4\xf7\x61\x48\xe0\xc2\x45\x05\x98\xb5\x29\x1c\x20\xb9\x45\xaa\x26\xa3\x35\x1b\x7a\x2b\x9d\x8a\x01\x73\x88\xa6\xe4\x7f\x22\xf8\x22\x4e\x09\x2b\x24\x25\xc5\x58\xa3\x64\x0e\xa0\x99\x6b\x28\x11\x11\x48\x02\x7f\xaa\xe6\x43\xdf\xbc\x1f\xaf\x8d\x7f\x22\xf8\xcd\x14\xc7\x83\xe1\x6f\x10\x5d\x1a\xd0\xac\x31\x38\x0f\x47\x1a\x11\x19\xdd\x6f\x7d\xee\x18\xf7\x0f\x30\x4c\x71\xaf\xe4\xd7\x46\x6c\x96\xff\x2b\xfd\x4a\x59\x9d\x6d\xc2\x1b\xc9\x4b\xfe\x79\xd4\xc8\xe4\x21\x6b\xfd\x12\x34\x23\x66\xc5\xc0\x45\x4c\x5f\x6b\x91\xc2\x8f\x00\x6c\xbf\xfe\xd7\xde\x00\x14\x71\x10\x27\xad\x96\xf7\xd2\xcb\xfe\x58\xa3\x29\x37\xb4\xfd\xab\x9b\x3e\xb6\xe0\x2a\x28\xcc\x58\x89\x33\x89\x4c\x88\x1d\x7c\xb0\x48\x19\xa7\x30\x6f\x70\xbc\x38\xcb\x2c\xa8\xd8\xe8\x82\x22\x14\xd2\xe5\xff\x97\xc3\x14\x1e\xb1\xbc\x79\x28\x5e\xe1\xb8\x95\x40\x99\xa2\x37\xc1\xbc\x91\x0f\x96\xc8\xb9\x19\x3b\xb2\xe2\xf8\xe7\x63\x18\xce\x5b\x6c\x9c\xb7\x6d\xd0\xe6\x71\xc8\xb2\x30\x7e\x49\x63\xb8\xca\x7c\x70\x8f\x03\x70\xa6\x91\x43\xbe\x95\x9f\xca\x15\xeb\xad\x62\x5a\xbf\xe0\xff\x1b\xbd\xab\x8b\xb8\x85\x6f\x63\x7a\x16\xc2\xf0\xa7\x58\x8c\x35\x3d\xcc\x47\x35\xa3\xf4\x44\x5f\xf1\x29\x7e\x78\x78\x10\x81\xe8\x1b\x79\xcb\xd9\x9c\x71\xf9\xb2\x0e\xfa\x5f\xf7\xb6\x53\xb1\xa1\xe2\xda\x76\x2a\x35\xaf\xf4\xa5\x57\x16\x8c\x65\x62\x3a\xab\x05\x42\x10\xb9\x98\x5e\x06\x1f\x0d\xa9\x7c\xc6\xe6\x91\x11\x90\x1f\x67\xec\x28\xde\xfc\x34\x86\x36\xe8\x82\x9c\x4f\xe3\x77\x76\x5f\xd1\x51\xbc\x40\x67\x7d\x67\xe2\x3f\xac\x36\x9c\x52\x56\x4a\x69\xc0\x19\xa5\x98\x1d\xd7\x20\x63\x51\x60\xdc\x69\xfe\x28\x36\x19\x9e\x44\x31\x2a\x19\xc7\xe7\xbd\x0f\x01\xf2\x31\x42\x13\x9a\xb5\x94\x51\xb5\x08\xeb\x28\x54\x08\x39\x2a\x28\xea\xcd\x21\xbe\xa6\x62\x7c\x84\x3e\xae\xee\x34\xa8\xb8\x51\xef\x16\x1f\xdf\xa9\x6d\x68\x07\x9a\x3a\xa7\x76\xe0\x5b\xf8\xb2\x1d\x39\xc4\xd7\xb4\x03\x6a\x41\xf7\x63\xe1\x09\xc0\xd1\xf6\xc8\xb6\x15\x64\x9d\x5d\x58\x64\x8e\x9b\x98\xa2\x63\xdd\x66\xe7\x3f\x5a\xb5\xb6\x23\x7e\xc6\x2d\xe6\x8e\x54\xca\x21\x23\xc4\x19\x96\x83\x2c\xcc\x67\x23\x46\x7f\x99\x08\xa0\x9f\x37\x28\x19\x41\x33\xdb\xf1\xc2\x5b\xff\xf4\x5c\xa2\x76\x25\x16\x11\x79\x05\xa6\x0d\x9c\xf9\xe5\x23\x99\xe0\x42\xb8\x1a\xe2\x17\xf3\x43\x05\x19\xc6\x30\x93\x2d\x42\xd4\x71\xaf\xc2\x06\xcb\x6a\x9d\x22\x4b\xc1\xf2\x01\x2a\x12\xf1\x29\x5c\xd8\xb1\x39\xb7\x97\xdd\xb7\x28\xbc\x83\x2a\x5e\x84\x06\xa8\xad\x9c\xc4\xc4\x47\x27\x05\xc5\xae\x79\x20\x14\xfa\xa4\x29\xe9\x5c\x7f\xa5\xef\x95\x49\x0b\xe6\xa8\x70\xb5\xc8\xb7\xfa\x74\x81\xa4\x65\xb7\xee\xd1\x05\x5e\x98\x6b\x20\x16\xd9\x52\x40\x84\x3f\xc5\x5e\x36\xd2\x8c\xa9\x01\x5a\xec\x29\xb9\x7d\xfc\x10\x51\xf8\x86\x06\x20\xd9\x78\xb8\x05\x48\x16\xc8\xe9\xaa\x69\x73\x12\xf0\x50\x43\x68\xcf\x7f\x43\x43\x90\x6e\x7c\x65\x43\x4e\x43\x2b\x88\x3b\x01\x2a\x30\xb7\xff\x1f\x6a\xdf\x48\x7c\xc2\xc5\x79\x9d\xcb\x50\x81\x18\xa0\xa1\x29\xca\x77\xb3\x86\xa6\x99\x3a\x7a\xb1\x18\xef\x92\xcc\x52\x36\xdb\x29\x99\x51\x7e\x68\x0b\xda\xc4\xf2\xe3\x25\x3e\xe5\x12\x2a\x63\x0d\x4a\xdd\x74\x33\x1a\x1f\x38\x65\xc8\xf9\xee\xc7\xf7\x07\xe6\x74\x30\xd4\x52\x11\x47\x31\x5e\xf8\xb0\x92\x4a\x47\xdf\x1d\xd5\x47\x9c\xab\x4f\x55\x2b\xdd\x66\x69\x65\x8f\xf7\x0e\xe1\x77\x55\xbc\x0b\xaf\x8a\x58\xe5\x23\x0e\xcd\x55\xa3\x41\x2d\xc6\x53\x0e\x7e\x03\x42\x60\x94\x1e\xce\x8b\x04\x47\x21\xae\xd7\x81\x45\x5c\x0f\xec\x7a\x85\x6d\xe9\xf1\x8d\xb2\xf3\x6a\x2b\xde\x51\x42\xb5\xb5\x46\x93\xd9\xee\x5b\xfa\xa5\xcd\xba\x2a\xfc\x07\xbd\x84\x8f\x0a\x3d\xc6\x70\xca\xa5\x74\xbe\xf2\xd6\x63\xb0\xcc\x5b\xf8\xff\x93\x38\x69\xab\xd4\x75\xd4\x79\x6b\xe7\x91\x79\xba\x09\xbf\x5d\x06\x90\xac\xd6\xc8\xfd\x19\x7f\xe4\x28\xb0\x9d\x35\x1b\x09\xc6\x76\x73\x2b\x11\xeb\xe0\xe6\xaa\x0c\x5e\x81\xd0\xdc\xab\x95\x5e\x2e\x83\x52\xe7\xd9\x12\x75\xb5\xcb\xe7\xa4\xf0\x3c\xcd\x12\x8a\x19\xc9\x33\x8a\xdb\xbe\x94\x5c\x9e\xa5\x29\x9d\xc2\xd3\x16\x49\xce\xcb\xb2\x2e\xd9\x4c\x6a\x09\x17\x34\x79\x5a\x78\x3e\x91\x52\xc2\x43\x8a\x02\xbb\xc5\xe7\xde\x2c\x1a\x14\x59\xf4\x62\xa8\x48\xa2\xd7\x69\xa3\x9e\x90\x3a\x39\x4f\xeb\xec\x5a\x1b\x41\x2a\xea\xb2\x7b\xcc\xb0\x97\x38\x83\x77\xad\x02\x05\xba\x3c\xce\x53\x36\xc1\x98\xb4\x48\xc5\x0d\x9a\x27\xb0\x95\xe8\x04\x30\xf9\xd6\x75\x8b\xb9\x85\x14\xe4\xf0\xb8\x98\x48\x18\x9f\x83\x74\x7b\x4d\xe1\x41\x6f\xf0\xc7\x2c\x4c\x3f\xa0\xb2\x72\x30\x59\x6e\xd3\x29\x69\xea\xc1\x2c\xb5\x69\x6b\xcb\x41\x76\x2f\x20\x51\x0c\x66\x89\x36\x75\xef\x71\x3f\xba\x07\x0b\x65\x07\xe3\x79\xd7\x09\xca\x0a\x25\xb3\x97\x4a\xf3\x27\x64\xc2\xcc\x67\x2d\x1b\x72\xca\x24\x20\xba\xc4\x7a\x48\xf4\xeb\xc9\xe6\x1c\x21\xfb\xab\x70\x8c\x5a\x99\x20\x22\x9a\x6f\x6f\x2a\x1e\x00\x40\xf0\xf5\xbd\x1a\x35\xb2\x20\x7a\x01\xe4\x0b\x18\x46\x4d\x9c\x45\xf1\xed\x8d\xc4\xa3\xd6\xac\xe9\xd8\x39\xd2\x48\x10\xec\x1b\xdb\xb7\x2c\xb9\x76\xd6\x79\xd4\x3d\x53\x38\xc6\x87\x51\x1e\x6b\xf5\x83\x38\xbf\xa1\x1b\x6b\xed\xeb\x75\x93\x9a\x6f\xc5\x5a\xf6\x4b\xa0\xdc\x70\xba\xb3\x47\x1f\x6b\x4a\x5d\xe7\x7c\xf1\x87\x06\x18\x1b\xd4\x02\x33\x35\x83\xfe\x58\xdb\x7a\x85\x9e\x30\x64\xd7\xd5\xce\x6d\xd8\xa2\xe0\x5a\xd1\xed\xcc\xe3\x85\x73\x9b\xa7\x92\xe3\x55\x2b\xbc\x7b\x77\x8f\x29\x22\xca\xf7\x8d\xc4\x47\xd3\x3f\xa1\xdf\x1a\x24\xed\x58\x3a\xb0\xb6\x30\x5a\x3f\x3c\x58\xd1\xa8\x2f\x19\x5d\xcf\xc6\xb6\xc7\xa6\x78\xf5\x55\x3d\x08\xae\x46\xae\x31\x89\x6f\x7e\x1a\x85\x36\xd5\x4c\xc5\x90\xd5\xb3\xce\x87\x0c\xb6\xeb\xb6\xab\xc9\x9a\x7f\xa0\x8a\x07\x66\xe1\xf1\xb7\xd4\x9a\x77\x93\x63\xab\x1f\xef\xa5\x36\xda\x4f\xb6\xc2\x35\x26\x73\x98\xfc\x7f\x6a\x43\xcc\x21\xfe\x57\x37\x44\x9f\xb5\x6a\xdc\xa5\x9c\x41\x40\x5f\x61\xf5\xb0\xf3\x1a\x0f\x8a\x1b\x0a\xd8\xfd\x01\xbf\x73\x82\x3d\xf4\x3d\x30\x89\x6b\xdb\xdb\xc1\x6b\x8a\x10\x45\x69\xe2\x55\x48\x73\x33\x05\xf0\xaa\xe3\x50\x0f\xec\xf3\x30\x94\x79\x8b\xc9\xe2\x03\x86\xf8\x4a\xa5\x90\x7f\x0a\x65\x64\x87\x0a\x61\xd2\x54\x23\x63\xc5\xa5\xce\x43\x46\x56\x92\xcb\xd8\xa5\x97\xec\xc8\x8e\x81\xdf\x73\x4a\x06\x8b\x17\x8c\xaa\xaf\x3b\x6b\xef\x86\x5d\x0d\x5d\x45\x57\x3c\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\x8e\xce\x4b\xbc\x69\xbb\x63\x75\x68\x34\x3f\x1a\xc3\x1b\xe0\xe3\x8f\x94\x60\x7e\x6a\xdc\x2a\xbe\x14\x9c\xb4\xca\x2e\xff\xaa\x1a\xef\x02\xf4\x7b\xfa\xcc\xa0\x96\xd6\x7a\xe7\x7b\xb9\x03\x56\x18\x6d\xd2\x69\x98\x7e\x0e\xe9\xc0\x0a\x37\x77\x93\x91\x22\xe8\xe9\x50\x11\xf4\xf1\xb1\xda\xba\x9d\x34\xb5\xf3\xfd\xd0\xf8\xa1\x57\x2e\x56\xf8\xf6\x66\x27\x8d\xb8\x89\x19\x93\x1a\x27\x25\xf3\x15\x3a\x2e\x3c\x57\x73\x23\x9b\x8d\x9a\xad\xfa\x02\x72\x1e\xac\x7b\x52\x36\xaf\x7c\x52\x7c\x6e\xa7\xf4\x76\xa5\x3b\x20\x4a\xcb\xa1\xb9\x53\xbe\xde\x48\xb7\xa9\x3d\xc6\x2c\xcc\x70\x5d\x05\x30\xf1\x33\x82\x89\xd7\xd2\x6d\xc4\x2d\x2a\xdd\x66\xb0\xae\x9b\x7a\xab\xbc\x44\x2b\xa5\x0c\xcb\xab\x0b\xf1\x96\x93\xe7\x4a\xa1\x32\xae\x66\x09\x88\x77\x21\x30\xa5\x19\x86\xf7\xa8\xaf\x63\xa1\xe8\x3c\x82\xcc\x61\x33\xea\x33\x1f\xe9\xcd\xa1\xe1\xf0\xd6\x9f\x3d\xb4\xe1\x9a\x52\x32\x58\x14\xf3\xd6\x4d\x1d\x68\x24\x1a\xb0\xa0\x7b\xd0\x57\x17\xb8\x7d\x27\x14\x2c\x01\x13\xe1\x7a\x75\x21\xae\xe4\xe0\x66\x01\x77\x92\x36\xd3\x51\xc8\x50\x7d\x00\x0c\x35\x8f\xe1\xb8\x52\x47\x43\x49\x64\x85\x64\xec\x05\xbe\x66\x25\x77\x9c\xf5\x4e\x92\xdd\x28\x48\xdd\xe2\x2d\xb9\xe8\xbc\x82\x34\x86\x35\x6a\x9f\x5f\xaa\xa4\xdb\xdd\x73\x4a\x0c\x60\x24\x59\xa0\x3c\x41\x29\x81\x17\x6e\x83\x89\x34\x92\x68\xce\x2b\xdc\x99\x52\x5a\x3a\x40\x77\xd6\x71\x5a\x70\x33\x1d\x43\x81\x71\x3a\xbe\xcb\xe8\xd5\x5a\x3b\xcf\xae\x28\xd0\x9d\x33\x3e\x5a\xbc\xc6\xe4\x20\xdf\xe4\xcf\x50\x6f\x2d\xf6\x32\xeb\x58\x69\xb5\x18\xba\xf9\x65\x57\xd7\x0b\xc6\x91\x87\x9d\xe1\x9e\xa1\xf0\x12\xcc\xf6\x4a\xcd\x43\x30\xdf\x23\x48\x58\x8e\x1d\xdf\x6d\x76\x79\x69\x94\x2c\x83\xa8\x36\xc2\x70\x89\x52\x67\x36\xca\x3b\xe9\xdc\x1e\xad\x92\x83\xb6\x1b\xef\x0b\x84\xf6\xfc\xf6\x0c\xb5\xed\x68\x3b\x3c\x18\x36\x1e\x0b\xad\x4f\xce\xe8\xd8\xb6\x2d\xb2\x18\x3c\x10\x9c\xf3\xa5\x7b\xc5\x34\x16\xd9\x4a\x41\x83\x98\x72\x8d\x6c\xe5\x67\x12\x4e\x70\x48\xd9\x13\xb6\xfc\xac\xb7\x43\xae\xaa\xa2\xa9\xc6\xce\xea\xad\x3e\x5a\x36\xa8\xf9\xbe\xbf\x51\x5e\x3c\xf9\x11\x1f\x4f\x3a\x25\xd6\x9d\x5d\xa2\xfb\x4f\xf2\x61\xda\x01\x8a\x1f\x18\x87\x76\x75\xbe\x28\x51\x41\x18\x1a\x8c\x3f\xcb\x45\xba\xeb\xed\x46\x2f\xb5\xa7\x09\x99\x29\x10\x00\x42\xa4\xc2\x75\x5c\xcb\x50\x13\x2f\xf1\xa2\x10\x3a\x06\x82\x0c\x5a\xa1\xb6\xcf\xcc\x07\xc2\x9a\x27\x4f\x5f\x20\x62\xb0\xed\xfc\x04\x43\x56\x26\x0b\xf2\x08\x6c\x1f\xf9\xfa\xcb\xf1\xe8\xed\xce\xf6\xd0\x05\x5a\x6c\x5f\xc2\x45\xe0\x82\xc0\x0b\xde\x7b\x6e\xc9\x24\x15\x7f\x58\x31\x44\xfa\xc3\xe2\x7c\xf0\x06\xb9\x5c\x1b\x18\x5e\xa3\xb6\x7b\x93\x14\x8f\x59\x4b\x29\xf8\x06\xb4\x37\xb9\x67\xb0\xc0\x99\x02\xcf\x8b\x51\xec\x40\xc8\xca\x9d\x6d\x44\xff\x38\x29\xec\x9a\xed\xa3\x27\x07\x32\x44\x67\xb5\x64\xde\x80\x8d\x74\x6c\x7c\x73\xa4\xfe\x74\x4d\x8a\x4f\x43\xf2\xea\x73\xfd\x58\xd9\x00\xba\xca\x8b\x6f\x70\x26\xd7\x2b\xae\x6c\xca\x8c\xdd\xd5\x79\x36\x65\x0f\x19\x0f\xdb\x9e\x3d\x10\x8c\xa8\x7b\x71\xbf\x5d\x50\x79\x2c\x91\x53\x6f\x4c\x28\xed\x83\x30\x29\xdd\xfd\x84\x6b\x1f\xd2\xc2\x22\xe1\x1e\xd7\x97\x6d\xe7\xa2\x36\x2a\x51\xde\xca\x52\x5a\xde\x04\x4a\x99\xde\x0e\x53\x3a\xeb\x0f\xc5\x99\xf8\x95\x7e\x71\x3a\x2a\x11\x89\x7b\xeb\x43\xda\xf8\x35\x18\x43\x82\x6c\x06\x27\xf7\xef\xaa\x42\x75\x31\x53\xde\x51\x27\x46\xb4\xb7\xe8\x08\x95\xa2\xe0\x19\xc1\x7d\x07\x93\x77\xce\xca\xfa\x43\x29\x79\x74\x4d\x4a\x51\xe8\x10\xad\x8d\xae\xd1\x5a\x4e\x9f\xda\x77\x65\x8d\x64\x34\xa3\xc6\x65\x58\x11\x6a\xfe\xf8\xc8\x5a\xe3\x54\x33\xf4\xda\x1f\xd0\x17\xa9\x6d\x6c\x47\xaf\x47\x31\x0d\xdd\x90\x42\x1a\xc3\x8e\x1f\x9f\x50\x2a\xfa\x71\x38\x13\xaf\xad\xf3\x9c\xb2\xa3\xf8\x9a\x57\xb6\x0f\x29\xa8\xd1\x6b\xd1\xc4\x5a\x9b\x56\xbc\x78\x97\xa7\x87\xb3\x2b\xe4\x5e\xf1\xf7\x1c\x4c\x66\xa9\x25\x7b\xa3\xcd\xfa\x27\x0e\x78\x13\x70\x60\x88\x1e\xdb\x93\x69\xf4\xae\x83\xf6\x7a\xf5\xd9\xe3\x6d\x9c\xb1\x9e\x83\xdf\x6e\xf4\x7a\x83\x66\x08\xba\x53\x6b\xb2\xfa\x87\x7d\xb5\x08\x03\x0f\x8c\x11\xc7\xf1\x42\x86\x88\xef\x5e\x7e\x96\x4e\xe5\x20\xd8\x23\x04\x88\x3d\x92\x9e\xbc\xd6\xa9\xb9\x17\xb1\x22\xe6\x1e\x85\x1e\x47\x25\x46\x92\x11\x8f\x70\x68\xbd\xd3\x6b\xf3\x44\x63\x3c\x0c\xa0\x5d\xaa\x6b\xf9\x61\x79\xe1\x9d\x6f\x31\xa9\x21\x18\x5f\x61\x60\x83\x2f\xb4\xc6\x0d\xa1\xe9\x37\xc3\x97\x5a\xbe\x95\x1a\x9d\x3c\xe2\xff\xa3\x60\x0e\xe4\xc3\x25\xc7\xfc\x56\xbe\xd9\x24\x50\x7c\xbc\xcf\xeb\x82\xde\xab\x7c\x0e\xeb\x86\x82\x2c\x84\x41\xa6\x20\x0b\x01\x33\xde\xf7\x45\x00\xb2\x02\x28\x20\xb6\x70\xfa\xd6\x4e\x02\xa9\x72\xe2\xbc\x15\x37\xe7\x61\xd1\x6f\xfd\xae\x66\xa5\xf4\xcd\xdb\xdb\xab\x07\x76\x11\x80\xf2\x0a\x47\xc8\x6c\x99\x43\x16\x2f\x75\xcc\xca\xd6\x7b\x70\xfa\x42\x3b\xc6\x05\xef\x9c\xaa\xe5\xad\xe3\xe6\xe1\x1e\xe2\xde\x60\xf1\xf6\xca\xf9\x5e\x37\x14\x11\x9a\xcb\x2c\xc4\xdb\xa1\xf3\x7a\xd7\xa9\x90\x12\x4c\x0f\xf1\xe1\xf7\x4e\xf6\x21\x76\x6e\x63\xb7\x5b\x29\x1e\x9f\x3e\x5e\x14\x74\xa7\xf6\x18\xa5\x9c\xbd\x32\xde\x5e\xde\x88\x5f\x4c\xd3\x1f\xc8\x42\x81\x7b\x7a\xa7\x77\x00\x56\xdf\xab\x9e\x59\xec\x3b\xbd\x43\xd8\xbf\x60\x4a\xd8\xf8\x72\x5b\x3b\xd5\xdf\xeb\x26\x2e\xb7\xab\xf3\xb7\xa8\x3e\xd2\x8d\xca\xc9\x0e\x57\x8d\x21\xa5\x02\x03\x9f\x1a\x71\x3e\x78\x5b\x30\xf0\x81\x74\xea\x1d\x9e\x46\x7a\x17\x06\x30\x8f\x2f\x33\xe6\xb2\xc9\xdc\x20\x8c\xf4\x84\xe3\x2b\xa1\x0b\xc6\x2f\x52\xf5\xb1\x64\x50\x96\xf9\xd2\x9b\xa6\x45\x41\xc7\xf3\x63\xbc\xc4\xf3\x95\x76\x7b\x39\xb2\x8c\xe5\x7a\xa8\xd7\xb3\x3e\xda\xca\x12\x05\x64\x4d\x47\x0b\x1b\x50\x8c\x50\x47\x53\x8a\x69\x89\xfc\xae\x7d\x3a\xb0\x33\xf6\x70\x0f\xd8\xc0\xf1\x92\x43\x3e\x4c\xc7\x27\x6d\x47\x50\x13\x47\x86\x30\xcb\x03\x19\x61\xf0\x85\x25\xdf\x3e\x27\xa6\x2f\xb9\xa1\x54\x8e\xa1\x72\x6f\x8b\xc4\xdd\xe3\xa9\xca\x5c\x58\xd6\xcd\x11\x17\x56\x36\xe3\x0b\xcc\x18\xa1\x21\x69\x8e\x9f\xb2\x04\xf3\xf7\xcb\xec\xf2\x90\x56\xd3\xd8\xea\x9d\x2f\xa9\x83\x46\x36\x5e\x59\xb3\x46\xb6\xbc\xb9\x66\x58\xb9\xdb\xc5\x73\x7f\xb7\xeb\x8a\x43\x3f\x03\xb9\x27\xba\x99\x41\xfc\x85\x7d\x66\x66\x40\xe4\xae\x21\x07\xfa\x70\x7d\x19\x00\xc6\xfc\x00\x27\xdb\xd5\xaa\xd3\x46\xd5\x5b\x7a\xb0\xf3\x9e\x3e\xc5\x5b\xdb\xc6\xfa\xd9\xfd\x49\xdd\xdb\x81\x54\xae\xeb\x2c\xf2\xc0\x35\x26\xc2\xe0\x04\xf0\x7e\xc0\x75\xd0\xd3\x35\x23\x49\xef\x59\x16\x57\x04\x59\x79\x25\x20\x3b\x85\x00\x18\xe4\x38\x60\xd4\x41\xbc\x07\x6f\xf0\x11\x56\xdd\x5b\xeb\xeb\x9d\xa4\x23\x01\xd3\xe9\x5d\xd7\xb5\xb5\x5e\x5c\x49\xbf\x09\x85\x3a\xbb\x9e\x96\xb8\xb4\xeb\x23\xe0\xec\x39\x95\xb6\x49\xe8\x03\xa5\x8d\xd7\x11\x76\x2b\xb6\xcd\x6d\xb2\xd9\xbe\x79\x3d\x3f\xd5\x00\x35\xe5\x1e\xb3\x4c\x60\x86\x7d\xcd\x0e\xa6\x6b\x5a\x45\xcc\x1b\x7b\xf1\x33\xfb\x9d\xa6\xc5\x94\x17\x3b\x32\xb3\x90\x95\x33\x77\x59\x72\x87\xf6\x22\x21\xf7\x12\xbf\x26\x40\xf9\x90\x4d\x46\x0a\x00\xee\xd4\xa1\x46\x1f\x51\x0c\xf4\x9f\xea\x40\xbe\xa1\x66\x00\xd7\x50\x5d\x04\x5b\x2b\x23\xbe\x7f\xec\xdc\xe6\x09\x65\x3d\xfe\x61\x52\x06\xe4\xed\xed\xb0\xa5\x77\xaa\xfa\x77\x45\xf1\x1e\xd1\xbf\x3c\x66\x60\x6d\x20\x0c\x88\x0b\xc8\x78\xa8\xa8\x9b\x29\xe5\xaa\x34\xe7\x3b\x9b\x26\x2f\x57\x69\xcc\xcd\x21\x42\x17\x23\x93\x0a\x4c\x07\x09\x6d\x07\x03\xf3\x7f\x83\x5f\xc4\xae\xe4\xd8\x30\x76\x47\x9d\x04\xa7\x97\x18\xcb\x23\x88\x4f\x0c\xb9\x95\x9f\x93\x16\x05\x15\x24\xa4\x87\x19\x2b\x5e\x18\x7c\x87\xb1\xb1\x7b\xd5\xd6\x9d\x6e\x94\x71\x1c\xc4\x85\x13\xc5\x25\x27\x8e\x77\xf8\xc6\xfb\x5d\xbd\x46\xdc\x61\x7f\xa3\x8f\xb9\x57\x09\x33\xf3\x02\xa8\x6c\xc0\x31\xa8\xb7\x7a\x1d\xe3\x22\x31\x4b\x80\xea\x31\x1c\x0a\xf1\x36\xe4\x06\x04\xfc\x92\xb0\x5e\x01\x5f\x09\x03\x4f\x97\x25\xcd\x21\x05\x45\x65\x9e\xf3\x22\xe5\xc5\xd9\x6a\x97\x69\xae\x5e\x04\x1b\x98\xd9\x99\x6a\x97\x75\x2e\xbc\xa5\xd4\x5c\x04\x4a\xa9\xb9\xe8\x97\x52\x99\x06\xe4\x34\xac\x5d\xd6\xce\x75\x81\x8c\xdd\xdc\x5c\x96\xb4\x32\xe5\x26\xfe\xf0\x7b\x60\xf6\x1f\xed\xac\xf3\xeb\x5e\xb9\x47\xc2\x9a\xee\xf0\x43\x56\x82\x97\x52\xbe\x74\x38\x75\x8c\xc3\xfd\xad\xd3\x5e\xfd\xf1\x11\x5e\x85\x3e\xf2\xba\x5d\x3e\xfa\xa1\x38\x76\x34\xbe\xbd\xcc\xce\x1d\xdd\x1c\x19\x9f\xa8\x89\x55\x20\x0b\x64\x7e\x99\x43\xec\x17\x92\x11\xd8\x22\xbf\x1c\xda\x70\x20\x24\x5e\x30\x1e\x07\x39\x1f\x18\xda\xb5\xb1\x7b\x86\x65\x23\x94\x18\x73\x0c\x1f\x28\x5f\x07\x34\x3f\x63\x72\x6a\x20\x85\x91\x09\x51\xd4\xf9\x45\x63\x68\x1e\x06\x4e\x7f\x63\xe8\x41\x72\xdc\x25\xba\x4b\x9a\xe5\xb7\xd0\xfe\x5c\x99\x3c\x6e\xff\x84\xb6\x84\x5e\x3c\x4c\x63\x78\x0b\x34\x72\xe7\x9b\x8d\x4c\xab\xfe\x82\x12\xe2\x89\x4c\x2e\x45\x1a\x58\x0a\x1d\x1b\x86\x90\xdb\x11\x7c\x0f\x2b\x2e\xd1\x12\x24\x76\xd6\x29\x9f\x04\xe7\xa2\xd0\x35\xe4\x45\x41\x3b\x2f\x1c\x4a\x07\x87\x60\x71\xe6\x83\xbb\x8f\xd9\x99\x47\x8f\x76\x75\xa7\xcc\x1a\x97\xdd\x9f\xe1\x53\x5c\xe2\x67\x1c\x21\xf2\xe3\x81\x97\x11\x76\x60\x2d\x20\xa4\xe0\x9d\x84\x1d\xd2\x41\xf1\x45\x61\x23\x9f\x9b\x9c\x29\x7a\x8b\xdf\xf3\x2d\x64\xd8\xa3\x87\x25\xe7\x47\xb2\xa5\x3a\x9b\x93\xac\x5f\x2e\xdf\x8f\x20\x67\x76\x37\xe7\xcc\x50\x03\xce\x99\xd9\xfb\x78\x85\x81\x47\x1e\xcb\xd1\x78\x79\x81\x67\x1e\xee\x96\x00\x17\x41\xea\x15\x3d\x4e\x3e\x13\x2f\xa1\x00\x06\x5a\x37\x2d\x79\x61\xc4\x7d\x07\x49\xc0\x4b\xfe\x24\x4e\xee\xa7\xa5\x1d\x3d\xfa\xbd\x4d\xe0\x29\x6e\x25\xfb\xab\x83\xc2\x89\xf3\x24\x3b\xac\x38\xc6\x68\x7b\x35\x3f\xc4\x04\x39\x1d\xe1\x48\xa6\xf1\xde\x31\x59\x5d\xe2\x4d\xe3\x2c\x26\x82\x94\xad\xdc\x11\x29\x20\xd0\x73\xfa\x2e\x81\xf0\x72\xfe\x5e\x76\x11\xea\x0d\x27\x4c\x6a\x35\x79\x9d\x86\x43\x73\xa5\x69\x20\xa3\xe1\x8c\xd0\xd1\x63\xbe\x79\xb6\x8b\xa1\x77\xbd\xbd\xd7\xc1\x3a\x97\xe0\xaf\x38\x29\x1d\x9b\xf4\x9d\x30\x07\x08\x46\x9d\x0e\x31\x7b\xa7\xa3\xd8\x7c\x81\x5f\xc5\xea\x62\x1a\x01\x9b\x9a\x60\x13\x99\xb8\x51\x9e\x4b\x44\xde\xb7\x89\x23\x13\xee\x1c\x5f\x5d\xc4\xb1\xa1\xeb\xc9\x51\x67\x3a\xbd\x52\xf1\x32\x93\x7b\x73\xa9\x57\xaa\x00\x86\xe3\xdc\x05\x3f\x6a\x70\x90\xdf\x88\xf7\xa6\x3b\x8c\x3a\x91\xa3\xe2\x9e\x24\x4c\x71\x64\x34\xde\x30\x67\x03\x43\x09\xf3\x43\x1e\xa0\xf9\x44\xca\xc0\xf9\x48\x1a\x53\xe2\x75\xcf\xaf\xe2\xd2\x2e\x7e\xc5\x49\xa3\x11\x5d\xa9\x16\x5d\x03\xb4\x75\x2c\xc1\xe3\xfa\x32\xe4\x88\x73\xcc\x49\xe4\x11\x64\x8b\xd8\x70\x10\x2d\x66\x1b\x0d\x50\xa1\x3d\xe8\x45\x63\xa3\xd7\x1b\x8c\xf2\x92\xb5\x8a\x9c\x69\x1c\x8c\x97\x9f\xc5\xeb\x90\x9f\x63\x00\x46\x0d\x4b\x83\x18\xe5\x98\x49\xc3\x52\x97\x98\x80\xe7\xb8\x14\x4e\x9b\x75\x47\x5e\x24\x7e\x38\x5a\xbc\x6e\x36\xb2\x97\x0d\xc7\x1a\x8b\x88\x2e\x52\x6a\x89\x0d\xca\xcc\x63\x0b\xae\x2b\x22\x0e\x0a\x32\xff\x3d\x89\xf9\xe8\xbc\xa2\x28\xb8\x6e\x6a\xd9\xaf\xf9\x1a\xfa\xbc\x5f\x63\xd0\x56\x57\xa0\x46\xbe\x4e\x65\x27\x44\xe4\xf4\xc6\x67\x04\x81\x63\xbc\xa8\x1c\x1a\xe3\x49\xb0\x5e\x64\xa6\x04\x3e\x68\xc8\x0a\x5c\xe0\x03\x87\x64\x05\x3b\x53\x04\x5d\x9d\xa5\x12\xe8\xe5\xec\xc1\x02\x7c\xdd\x4e\xe0\xaf\x2e\x66\x80\x73\x41\x32\x2e\x21\x10\x20\x67\x97\x10\x40\x31\x63\x98\x33\x85\x90\x3c\x7d\x6d\x1b\x4c\xd4\x17\x4d\x4f\xfe\xba\xe1\xdf\xad\x74\x77\xd1\x78\xbd\xb8\x8f\x08\x69\xae\xd9\xa8\x76\xe8\x48\xa2\xa0\x9f\x09\x5e\x7d\xf6\xc1\x0c\x02\xb7\x6f\xc8\x40\x87\x10\x76\x70\xc1\x23\x04\xfc\x2c\x00\xd4\x67\xd5\x0c\x99\x45\xd4\x2f\xf4\xcd\x26\x08\x09\x8d\x0d\xcf\xd8\x06\x63\xb4\x59\x03\x7d\x24\x0b\xef\x08\x33\x17\x46\x3b\x34\x1d\x05\xd9\x20\xd0\x1e\xad\x3f\x56\x1f\x26\xa2\x0a\x66\xfe\xc1\x78\x9e\xa3\xd1\x76\xa4\x98\x19\x59\xfe\x07\x58\x74\x0b\xd3\xa2\x7b\x90\x3a\xba\x0b\x41\xff\x30\x04\xc9\xae\x43\x22\x3c\x9b\xaf\x33\x97\x06\x33\x14\x6b\x55\x9d\x6a\xf0\xf5\x36\x52\x5b\xf8\x10\xe7\x5d\x2a\xd9\xaa\x02\xe2\x05\x7f\x16\x30\xda\x90\x6a\x81\xb2\x48\x5a\x7a\x43\x69\x8c\x32\x7b\xce\x10\xd4\x75\x04\xcc\xae\x9e\x50\x35\x76\xc3\x29\x63\xc8\x50\x33\x02\x9d\x77\xdd\x64\x34\x72\x59\x28\x4f\xc3\x00\x04\xd9\x9b\x93\xac\x4f\xe3\x69\x0c\x59\x76\x87\xab\x78\x31\x69\x6d\xd4\xb9\xf1\x8c\x84\xc7\x19\x5f\xb2\xf1\xad\x3e\xd2\xd8\x7f\x0a\xae\x09\xf8\x3a\x39\x58\x71\x64\x96\x93\x85\xdf\xb6\x13\xf4\x37\x56\xa1\xe7\x4a\x2e\x42\xee\x2a\x27\x91\x82\xe6\x8a\xf5\xca\x64\x41\x81\xe8\xab\xa8\x0b\x1f\x35\x91\xd7\xd1\x93\x8f\x3f\x7e\x72\xc1\xed\x68\x81\xef\xe3\x1f\x3e\x01\xca\x8f\x7f\xfc\x44\x58\x39\x82\x33\x63\x4d\xe1\x29\xb3\x12\x3f\x7e\x72\x4f\x5d\xdf\x3c\x1d\x97\x15\xd2\x8f\xc0\x20\xf3\x7f\x24\xc4\x3b\xd9\xab\x3a\x78\xe2\xe1\xb5\x4c\xc9\xda\x71\xcc\x75\xd2\x97\x9e\xb4\xc1\x61\x4f\x15\x03\x27\x70\x8b\xc2\xf7\x68\x58\xa9\x97\xf3\x5d\x4c\x43\xc6\xd3\x43\x61\xa3\xce\xc4\x6f\xe4\x28\x92\xc3\x48\x65\x05\x9e\xd2\x15\xee\x53\x2a\xfa\x6f\xd8\x51\x40\xf0\x5b\x85\x4e\x26\x13\x02\xf2\x39\xf9\x2d\x08\xc8\x3b\x65\xc2\x10\xbc\x55\x7e\x53\x23\xd8\x0d\x67\x6a\x06\x25\xa8\x56\xa0\xa2\xfa\xeb\x11\xd1\x78\x8c\xbc\x71\xfe\x16\xd6\x6d\x11\x63\x33\x47\x88\x11\xb6\x8e\x8e\xce\x04\x1d\x0d\xd2\x37\x63\xe3\xa1\x1a\xa3\x8b\x23\xf6\xcd\x08\x31\x82\xea\x04\x1f\xc7\x55\xfd\xf6\xce\xd2\xe0\xc5\x18\xb8\x61\xd4\x8c\xda\xc7\x00\xba\xff\xea\xa6\x61\xca\x14\xeb\x08\xf4\x27\xe0\xe7\xcd\xfd\x87\xb4\xb9\x67\xd1\x85\xcd\x8d\xbe\x6d\xbd\x5c\x67\x3b\x5b\xae\x8b\xce\x62\x13\xb1\x0c\xf7\x73\xba\xf7\x73\x84\xe1\x59\x29\xa2\x0c\x8d\x43\x9c\xdf\xd8\xb2\xea\xa3\xb7\xb6\xfb\x54\xc9\x35\x6c\x72\xb9\xb6\x15\x50\x2f\x7e\xb9\x8e\x84\xcc\xd8\x7d\x45\x9f\xf0\xeb\x47\x20\x20\x3f\xb2\x17\x7b\x71\xe2\xaa\x1f\xb7\x98\x40\xf1\x37\x31\x61\x83\x09\x1b\x3b\x60\x78\xa2\x1f\x5b\xfc\x6c\xe5\x01\xbf\xf6\xf8\xb5\x57\xea\x8e\x0a\xe3\x79\xf6\xa3\xd8\x5a\xe3\x37\x98\x72\xc0\xef\x83\x92\x1c\xdc\x88\xbc\xe5\x9f\x01\x69\x0a\x1f\x27\xae\xa2\xea\x38\x3d\x7c\x9c\xb8\x0a\x6a\xe5\x54\xfa\x79\xe2\xaa\x56\x1e\x38\x09\x7f\x9d\xb8\x0a\xaa\xe7\x24\xfa\x79\x82\x6c\x88\xdf\x04\x84\xf4\xfb\xc4\x55\xd0\x0e\x4e\xa4\x9f\x27\xae\xea\xe5\xbe\x4e\xed\xe2\x5f\x98\x9a\x5a\xc5\xbf\xaa\xea\x63\xdb\xdb\xdd\xef\xd6\xa8\x4f\x55\x88\xc1\xbd\x55\x8e\xcd\x78\x5f\xf4\x76\x17\xac\xf7\x55\x4f\xf7\x57\x18\xd8\x10\x83\x03\x74\x56\xb6\x8b\x8a\x1d\x20\xd5\xda\xec\x86\xa8\x12\x66\x4f\xea\x8f\x3d\x83\x25\x8f\xf9\xf4\x7c\xf9\xb0\x53\x8b\x0a\xef\x2f\xbc\xb5\xf5\x12\x99\x4f\xbc\xb9\x40\x63\x98\xef\xff\xfe\x77\x84\xd7\xbf\xab\x7f\xfc\x43\xbc\xfd\xf9\x07\xa1\x3e\x37\x4a\xb5\x4e\x6c\xd9\x40\x2f\x80\x6d\xe5\xe7\x97\x05\xe4\xa2\xe2\x57\xa5\x6c\x11\x46\xaf\x4a\xb1\xfa\xea\xff\x0f\x00\x00\xff\xff\x27\xdb\x72\xbe\x48\xf8\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4387,7 +4387,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 61655, mode: os.FileMode(420), modTime: time.Unix(1491412512, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 63560, mode: os.FileMode(420), modTime: time.Unix(1491450557, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/pkg/context/context.go b/pkg/context/context.go index 4213eaa4..40d7c8c7 100644 --- a/pkg/context/context.go +++ b/pkg/context/context.go @@ -89,6 +89,11 @@ func (c *Context) Success(name string) { c.HTML(http.StatusOK, name) } +// JSONSuccess responses JSON with status http.StatusOK. +func (c *Context) JSONSuccess(data interface{}) { + c.JSON(http.StatusOK, data) +} + // RenderWithErr used for page has form validation but need to prompt error to users. func (ctx *Context) RenderWithErr(msg, tpl string, f interface{}) { if f != nil { diff --git a/pkg/tool/tool.go b/pkg/tool/tool.go index ceb276e5..167edbb6 100644 --- a/pkg/tool/tool.go +++ b/pkg/tool/tool.go @@ -27,11 +27,16 @@ import ( "github.com/gogits/gogs/pkg/setting" ) -// EncodeMD5 encodes string to md5 hex value. -func EncodeMD5(str string) string { +// MD5Bytes encodes string to MD5 bytes. +func MD5Bytes(str string) []byte { m := md5.New() m.Write([]byte(str)) - return hex.EncodeToString(m.Sum(nil)) + return m.Sum(nil) +} + +// EncodeMD5 encodes string to MD5 hex value. +func EncodeMD5(str string) string { + return hex.EncodeToString(MD5Bytes(str)) } // Encode string to sha1 hex value. diff --git a/public/css/gogs.css b/public/css/gogs.css index 3fc0805e..1d393aad 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -960,7 +960,7 @@ footer .ui.language .menu { } #create-page-form form input, #create-page-form form textarea { - width: 50%!important; + width: 50% !important; } .user.activate form, .user.forgot.password form, @@ -1017,14 +1017,14 @@ footer .ui.language .menu { .user.reset.password form textarea, .user.signin form textarea, .user.signup form textarea { - width: 50%!important; + width: 50% !important; } .user.activate form, .user.forgot.password form, .user.reset.password form, .user.signin form, .user.signup form { - width: 700px!important; + width: 700px !important; } .user.activate form .header, .user.forgot.password form .header, @@ -1040,6 +1040,12 @@ footer .ui.language .menu { .user.signup form .inline.field > label { width: 200px !important; } +.user.signin.two-factor form { + width: 300px !important; +} +.user.signin.two-factor form .header { + padding-left: inherit !important; +} .repository.new.repo form, .repository.new.migrate form, .repository.new.fork form { @@ -1079,7 +1085,7 @@ footer .ui.language .menu { .repository.new.repo form textarea, .repository.new.migrate form textarea, .repository.new.fork form textarea { - width: 50%!important; + width: 50% !important; } .repository.new.repo form .dropdown .dropdown.icon, .repository.new.migrate form .dropdown .dropdown.icon, @@ -2752,7 +2758,7 @@ footer .ui.language .menu { } .organization.new.org form input, .organization.new.org form textarea { - width: 50%!important; + width: 50% !important; } .organization.options input { min-width: 300px; @@ -2856,15 +2862,8 @@ footer .ui.language .menu { .user.settings .email.list .item:not(:first-child) .button { margin-top: -10px; } -.user.settings.organizations .orgs.non-empty { - padding: 0; -} -.user.settings.organizations .orgs .item { - padding: 10px; -} -.user.settings.organizations .orgs .item .button { - margin-top: 5px; - margin-right: 8px; +.user.settings.security .two-factor .toggle.button { + margin-top: -5px; } .user.settings.repositories .repos { padding: 0; @@ -2876,6 +2875,16 @@ footer .ui.language .menu { .user.settings.repositories .repos .item .button { margin-top: -5px; } +.user.settings.organizations .orgs.non-empty { + padding: 0; +} +.user.settings.organizations .orgs .item { + padding: 10px; +} +.user.settings.organizations .orgs .item .button { + margin-top: 5px; + margin-right: 8px; +} .user.profile .ui.card .header { word-break: break-all; } diff --git a/public/less/_form.less b/public/less/_form.less index 120d31bf..8808485a 100644 --- a/public/less/_form.less +++ b/public/less/_form.less @@ -42,7 +42,7 @@ } input, textarea { - width: 50%!important; + width: 50% !important; } } } @@ -52,10 +52,10 @@ .user.reset.password, .user.signin, .user.signup { - @input-padding: 200px!important; + @input-padding: 200px !important; #create-page-form; form { - width: 700px!important; + width: 700px !important; .header { padding-left: @input-padding+30px; } @@ -65,6 +65,15 @@ } } +.user.signin.two-factor { + form { + width: 300px !important; + .header { + padding-left: inherit !important; + } + } +} + .repository { &.new.repo, &.new.migrate, diff --git a/public/less/_user.less b/public/less/_user.less index e3686ae8..2311eb2c 100644 --- a/public/less/_user.less +++ b/public/less/_user.less @@ -19,16 +19,9 @@ } } } - &.organizations .orgs { - &.non-empty { - padding: 0; - } - .item { - padding: 10px; - .button { - margin-top: 5px; - margin-right: 8px; - } + &.security { + .two-factor .toggle.button { + margin-top: -5px; } } &.repositories .repos { @@ -41,6 +34,18 @@ } } } + &.organizations .orgs { + &.non-empty { + padding: 0; + } + .item { + padding: 10px; + .button { + margin-top: 5px; + margin-right: 8px; + } + } + } } &.profile { diff --git a/routers/repo/http.go b/routers/repo/http.go index f90d1ce0..256ca16f 100644 --- a/routers/repo/http.go +++ b/routers/repo/http.go @@ -23,9 +23,9 @@ import ( "github.com/gogits/gogs/models" "github.com/gogits/gogs/models/errors" - "github.com/gogits/gogs/pkg/tool" "github.com/gogits/gogs/pkg/context" "github.com/gogits/gogs/pkg/setting" + "github.com/gogits/gogs/pkg/tool" ) const ( @@ -114,7 +114,6 @@ func HTTPContexter() macaron.Handler { authUser, err := models.UserSignIn(authUsername, authPassword) if err != nil && !errors.IsUserNotExist(err) { - c.Handle(http.StatusInternalServerError, "UserSignIn", err) return } @@ -139,6 +138,10 @@ func HTTPContexter() macaron.Handler { c.Handle(http.StatusInternalServerError, "GetUserByID", err) return } + } else if authUser.IsEnabledTwoFactor() { + askCredentials(c, http.StatusUnauthorized, `User with two-factor authentication enabled cannot perform HTTP/HTTPS operations via plain username and password +Please create and use personal access token on user settings page`) + return } log.Trace("HTTPGit - Authenticated user: %s", authUser.Name) @@ -152,7 +155,7 @@ func HTTPContexter() macaron.Handler { c.Handle(http.StatusInternalServerError, "HasAccess", err) return } else if !has { - askCredentials(c, http.StatusUnauthorized, "User permission denied") + askCredentials(c, http.StatusForbidden, "User permission denied") return } diff --git a/routers/user/auth.go b/routers/user/auth.go index bdbcb7e3..25c7988e 100644 --- a/routers/user/auth.go +++ b/routers/user/auth.go @@ -20,20 +20,22 @@ import ( ) const ( - SIGNIN = "user/auth/signin" - SIGNUP = "user/auth/signup" - ACTIVATE = "user/auth/activate" - FORGOT_PASSWORD = "user/auth/forgot_passwd" - RESET_PASSWORD = "user/auth/reset_passwd" + LOGIN = "user/auth/login" + TWO_FACTOR = "user/auth/two_factor" + TWO_FACTOR_RECOVERY_CODE = "user/auth/two_factor_recovery_code" + SIGNUP = "user/auth/signup" + ACTIVATE = "user/auth/activate" + FORGOT_PASSWORD = "user/auth/forgot_passwd" + RESET_PASSWORD = "user/auth/reset_passwd" ) -// AutoSignIn reads cookie and try to auto-login. -func AutoSignIn(ctx *context.Context) (bool, error) { +// AutoLogin reads cookie and try to auto-login. +func AutoLogin(c *context.Context) (bool, error) { if !models.HasEngine { return false, nil } - uname := ctx.GetCookie(setting.CookieUserName) + uname := c.GetCookie(setting.CookieUserName) if len(uname) == 0 { return false, nil } @@ -42,9 +44,9 @@ func AutoSignIn(ctx *context.Context) (bool, error) { defer func() { if !isSucceed { log.Trace("auto-login cookie cleared: %s", uname) - ctx.SetCookie(setting.CookieUserName, "", -1, setting.AppSubUrl) - ctx.SetCookie(setting.CookieRememberName, "", -1, setting.AppSubUrl) - ctx.SetCookie(setting.LoginStatusCookieName, "", -1, setting.AppSubUrl) + c.SetCookie(setting.CookieUserName, "", -1, setting.AppSubUrl) + c.SetCookie(setting.CookieRememberName, "", -1, setting.AppSubUrl) + c.SetCookie(setting.LoginStatusCookieName, "", -1, setting.AppSubUrl) } }() @@ -56,16 +58,16 @@ func AutoSignIn(ctx *context.Context) (bool, error) { return false, nil } - if val, ok := ctx.GetSuperSecureCookie(u.Rands+u.Passwd, setting.CookieRememberName); !ok || val != u.Name { + if val, ok := c.GetSuperSecureCookie(u.Rands+u.Passwd, setting.CookieRememberName); !ok || val != u.Name { return false, nil } isSucceed = true - ctx.Session.Set("uid", u.ID) - ctx.Session.Set("uname", u.Name) - ctx.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubUrl) + c.Session.Set("uid", u.ID) + c.Session.Set("uname", u.Name) + c.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubUrl) if setting.EnableLoginStatusCookie { - ctx.SetCookie(setting.LoginStatusCookieName, "true", 0, setting.AppSubUrl) + c.SetCookie(setting.LoginStatusCookieName, "true", 0, setting.AppSubUrl) } return true, nil } @@ -77,77 +79,165 @@ func isValidRedirect(url string) bool { return len(url) >= 2 && url[0] == '/' && url[1] != '/' } -func SignIn(ctx *context.Context) { - ctx.Data["Title"] = ctx.Tr("sign_in") +func Login(c *context.Context) { + c.Data["Title"] = c.Tr("sign_in") // Check auto-login. - isSucceed, err := AutoSignIn(ctx) + isSucceed, err := AutoLogin(c) if err != nil { - ctx.Handle(500, "AutoSignIn", err) + c.Handle(500, "AutoLogin", err) return } - redirectTo := ctx.Query("redirect_to") + redirectTo := c.Query("redirect_to") if len(redirectTo) > 0 { - ctx.SetCookie("redirect_to", redirectTo, 0, setting.AppSubUrl) + c.SetCookie("redirect_to", redirectTo, 0, setting.AppSubUrl) } else { - redirectTo, _ = url.QueryUnescape(ctx.GetCookie("redirect_to")) + redirectTo, _ = url.QueryUnescape(c.GetCookie("redirect_to")) } - ctx.SetCookie("redirect_to", "", -1, setting.AppSubUrl) + c.SetCookie("redirect_to", "", -1, setting.AppSubUrl) if isSucceed { if isValidRedirect(redirectTo) { - ctx.Redirect(redirectTo) + c.Redirect(redirectTo) } else { - ctx.Redirect(setting.AppSubUrl + "/") + c.Redirect(setting.AppSubUrl + "/") } return } - ctx.HTML(200, SIGNIN) + c.HTML(200, LOGIN) } -func SignInPost(ctx *context.Context, f form.SignIn) { - ctx.Data["Title"] = ctx.Tr("sign_in") +func afterLogin(c *context.Context, u *models.User, remember bool) { + if remember { + days := 86400 * setting.LoginRememberDays + c.SetCookie(setting.CookieUserName, u.Name, days, setting.AppSubUrl, "", setting.CookieSecure, true) + c.SetSuperSecureCookie(u.Rands+u.Passwd, setting.CookieRememberName, u.Name, days, setting.AppSubUrl, "", setting.CookieSecure, true) + } - if ctx.HasError() { - ctx.HTML(200, SIGNIN) + c.Session.Set("uid", u.ID) + c.Session.Set("uname", u.Name) + c.Session.Delete("twoFactorRemember") + c.Session.Delete("twoFactorUserID") + + // Clear whatever CSRF has right now, force to generate a new one + c.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubUrl) + if setting.EnableLoginStatusCookie { + c.SetCookie(setting.LoginStatusCookieName, "true", 0, setting.AppSubUrl) + } + + redirectTo, _ := url.QueryUnescape(c.GetCookie("redirect_to")) + c.SetCookie("redirect_to", "", -1, setting.AppSubUrl) + if isValidRedirect(redirectTo) { + c.Redirect(redirectTo) + return + } + + c.Redirect(setting.AppSubUrl + "/") +} + +func LoginPost(c *context.Context, f form.SignIn) { + c.Data["Title"] = c.Tr("sign_in") + + if c.HasError() { + c.Success(LOGIN) return } u, err := models.UserSignIn(f.UserName, f.Password) if err != nil { if errors.IsUserNotExist(err) { - ctx.RenderWithErr(ctx.Tr("form.username_password_incorrect"), SIGNIN, &f) + c.RenderWithErr(c.Tr("form.username_password_incorrect"), LOGIN, &f) } else { - ctx.Handle(500, "UserSignIn", err) + c.ServerError("UserSignIn", err) } return } - if f.Remember { - days := 86400 * setting.LoginRememberDays - ctx.SetCookie(setting.CookieUserName, u.Name, days, setting.AppSubUrl, "", setting.CookieSecure, true) - ctx.SetSuperSecureCookie(u.Rands+u.Passwd, setting.CookieRememberName, u.Name, days, setting.AppSubUrl, "", setting.CookieSecure, true) - } - - ctx.Session.Set("uid", u.ID) - ctx.Session.Set("uname", u.Name) - - // Clear whatever CSRF has right now, force to generate a new one - ctx.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubUrl) - if setting.EnableLoginStatusCookie { - ctx.SetCookie(setting.LoginStatusCookieName, "true", 0, setting.AppSubUrl) - } - - redirectTo, _ := url.QueryUnescape(ctx.GetCookie("redirect_to")) - ctx.SetCookie("redirect_to", "", -1, setting.AppSubUrl) - if isValidRedirect(redirectTo) { - ctx.Redirect(redirectTo) + if !u.IsEnabledTwoFactor() { + afterLogin(c, u, f.Remember) return } - ctx.Redirect(setting.AppSubUrl + "/") + c.Session.Set("twoFactorRemember", f.Remember) + c.Session.Set("twoFactorUserID", u.ID) + c.Redirect(setting.AppSubUrl + "/user/login/two_factor") +} + +func LoginTwoFactor(c *context.Context) { + _, ok := c.Session.Get("twoFactorUserID").(int64) + if !ok { + c.NotFound() + return + } + + c.Success(TWO_FACTOR) +} + +func LoginTwoFactorPost(c *context.Context) { + userID, ok := c.Session.Get("twoFactorUserID").(int64) + if !ok { + c.NotFound() + return + } + + t, err := models.GetTwoFactorByUserID(userID) + if err != nil { + c.ServerError("GetTwoFactorByUserID", err) + return + } + valid, err := t.ValidateTOTP(c.Query("passcode")) + if err != nil { + c.ServerError("ValidateTOTP", err) + return + } else if !valid { + c.Flash.Error(c.Tr("settings.two_factor_invalid_passcode")) + c.Redirect(setting.AppSubUrl + "/user/login/two_factor") + return + } + + u, err := models.GetUserByID(userID) + if err != nil { + c.ServerError("GetUserByID", err) + return + } + afterLogin(c, u, c.Session.Get("twoFactorRemember").(bool)) +} + +func LoginTwoFactorRecoveryCode(c *context.Context) { + _, ok := c.Session.Get("twoFactorUserID").(int64) + if !ok { + c.NotFound() + return + } + + c.Success(TWO_FACTOR_RECOVERY_CODE) +} + +func LoginTwoFactorRecoveryCodePost(c *context.Context) { + userID, ok := c.Session.Get("twoFactorUserID").(int64) + if !ok { + c.NotFound() + return + } + + if err := models.UseRecoveryCode(userID, c.Query("recovery_code")); err != nil { + if errors.IsTwoFactorRecoveryCodeNotFound(err) { + c.Flash.Error(c.Tr("auth.login_two_factor_invalid_recovery_code")) + c.Redirect(setting.AppSubUrl + "/user/login/two_factor_recovery_code") + } else { + c.ServerError("UseRecoveryCode", err) + } + return + } + + u, err := models.GetUserByID(userID) + if err != nil { + c.ServerError("GetUserByID", err) + return + } + afterLogin(c, u, c.Session.Get("twoFactorRemember").(bool)) } func SignOut(ctx *context.Context) { diff --git a/routers/user/setting.go b/routers/user/setting.go index 7eb5954f..9083454a 100644 --- a/routers/user/setting.go +++ b/routers/user/setting.go @@ -5,11 +5,17 @@ package user import ( + "bytes" + "encoding/base64" "fmt" + "html/template" + "image/png" "io/ioutil" "strings" "github.com/Unknwon/com" + "github.com/pquerna/otp" + "github.com/pquerna/otp/totp" log "gopkg.in/clog.v1" "github.com/gogits/gogs/models" @@ -22,17 +28,19 @@ import ( ) const ( - SETTINGS_PROFILE = "user/settings/profile" - SETTINGS_AVATAR = "user/settings/avatar" - SETTINGS_PASSWORD = "user/settings/password" - SETTINGS_EMAILS = "user/settings/email" - SETTINGS_SSH_KEYS = "user/settings/sshkeys" - SETTINGS_SECURITY = "user/settings/security" - SETTINGS_REPOSITORIES = "user/settings/repositories" - SETTINGS_ORGANIZATIONS = "user/settings/organizations" - SETTINGS_APPLICATIONS = "user/settings/applications" - SETTINGS_DELETE = "user/settings/delete" - NOTIFICATION = "user/notification" + SETTINGS_PROFILE = "user/settings/profile" + SETTINGS_AVATAR = "user/settings/avatar" + SETTINGS_PASSWORD = "user/settings/password" + SETTINGS_EMAILS = "user/settings/email" + SETTINGS_SSH_KEYS = "user/settings/sshkeys" + SETTINGS_SECURITY = "user/settings/security" + SETTINGS_TWO_FACTOR_ENABLE = "user/settings/two_factor_enable" + SETTINGS_TWO_FACTOR_RECOVERY_CODES = "user/settings/two_factor_recovery_codes" + SETTINGS_REPOSITORIES = "user/settings/repositories" + SETTINGS_ORGANIZATIONS = "user/settings/organizations" + SETTINGS_APPLICATIONS = "user/settings/applications" + SETTINGS_DELETE = "user/settings/delete" + NOTIFICATION = "user/notification" ) func Settings(c *context.Context) { @@ -376,6 +384,141 @@ func DeleteSSHKey(ctx *context.Context) { }) } +func SettingsSecurity(c *context.Context) { + c.Data["Title"] = c.Tr("settings") + c.Data["PageIsSettingsSecurity"] = true + + t, err := models.GetTwoFactorByUserID(c.UserID()) + if err != nil && !errors.IsTwoFactorNotFound(err) { + c.ServerError("GetTwoFactorByUserID", err) + return + } + c.Data["TwoFactor"] = t + + c.Success(SETTINGS_SECURITY) +} + +func SettingsTwoFactorEnable(c *context.Context) { + if c.User.IsEnabledTwoFactor() { + c.NotFound() + return + } + + c.Data["Title"] = c.Tr("settings") + c.Data["PageIsSettingsSecurity"] = true + + var key *otp.Key + var err error + keyURL := c.Session.Get("twoFactorURL") + if keyURL != nil { + key, _ = otp.NewKeyFromURL(keyURL.(string)) + } + if key == nil { + key, err = totp.Generate(totp.GenerateOpts{ + Issuer: setting.AppName, + AccountName: c.User.Email, + }) + if err != nil { + c.ServerError("Generate", err) + return + } + } + c.Data["TwoFactorSecret"] = key.Secret() + + img, err := key.Image(240, 240) + if err != nil { + c.ServerError("Image", err) + return + } + + var buf bytes.Buffer + if err = png.Encode(&buf, img); err != nil { + c.ServerError("Encode", err) + return + } + c.Data["QRCode"] = template.URL("data:image/png;base64," + base64.StdEncoding.EncodeToString(buf.Bytes())) + + c.Session.Set("twoFactorSecret", c.Data["TwoFactorSecret"]) + c.Session.Set("twoFactorURL", key.String()) + c.Success(SETTINGS_TWO_FACTOR_ENABLE) +} + +func SettingsTwoFactorEnablePost(c *context.Context) { + secret, ok := c.Session.Get("twoFactorSecret").(string) + if !ok { + c.NotFound() + return + } + + if !totp.Validate(c.Query("passcode"), secret) { + c.Flash.Error(c.Tr("settings.two_factor_invalid_passcode")) + c.Redirect(setting.AppSubUrl + "/user/settings/security/two_factor_enable") + return + } + + if err := models.NewTwoFactor(c.UserID(), secret); err != nil { + c.Flash.Error(c.Tr("settings.two_factor_enable_error", err)) + c.Redirect(setting.AppSubUrl + "/user/settings/security/two_factor_enable") + return + } + + c.Session.Delete("twoFactorSecret") + c.Session.Delete("twoFactorURL") + c.Flash.Success(c.Tr("settings.two_factor_enable_success")) + c.Redirect(setting.AppSubUrl + "/user/settings/security/two_factor_recovery_codes") +} + +func SettingsTwoFactorRecoveryCodes(c *context.Context) { + if !c.User.IsEnabledTwoFactor() { + c.NotFound() + return + } + + c.Data["Title"] = c.Tr("settings") + c.Data["PageIsSettingsSecurity"] = true + + recoveryCodes, err := models.GetRecoveryCodesByUserID(c.UserID()) + if err != nil { + c.ServerError("GetRecoveryCodesByUserID", err) + return + } + c.Data["RecoveryCodes"] = recoveryCodes + + c.Success(SETTINGS_TWO_FACTOR_RECOVERY_CODES) +} + +func SettingsTwoFactorRecoveryCodesPost(c *context.Context) { + if !c.User.IsEnabledTwoFactor() { + c.NotFound() + return + } + + if err := models.RegenerateRecoveryCodes(c.UserID()); err != nil { + c.Flash.Error(c.Tr("settings.two_factor_regenerate_recovery_codes_error", err)) + } else { + c.Flash.Success(c.Tr("settings.two_factor_regenerate_recovery_codes_success")) + } + + c.Redirect(setting.AppSubUrl + "/user/settings/security/two_factor_recovery_codes") +} + +func SettingsTwoFactorDisable(c *context.Context) { + if !c.User.IsEnabledTwoFactor() { + c.NotFound() + return + } + + if err := models.DeleteTwoFactor(c.UserID()); err != nil { + c.ServerError("DeleteTwoFactor", err) + return + } + + c.Flash.Success(c.Tr("settings.two_factor_disable_success")) + c.JSONSuccess(map[string]interface{}{ + "redirect": setting.AppSubUrl + "/user/settings/security", + }) +} + func SettingsApplications(ctx *context.Context) { ctx.Data["Title"] = ctx.Tr("settings") ctx.Data["PageIsSettingsApplications"] = true diff --git a/templates/.VERSION b/templates/.VERSION index 7816f131..f9dd6482 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.11.4.0405 \ No newline at end of file +0.11.5.0406 \ No newline at end of file diff --git a/templates/user/auth/signin.tmpl b/templates/user/auth/login.tmpl similarity index 100% rename from templates/user/auth/signin.tmpl rename to templates/user/auth/login.tmpl diff --git a/templates/user/auth/two_factor.tmpl b/templates/user/auth/two_factor.tmpl new file mode 100644 index 00000000..bbe12abf --- /dev/null +++ b/templates/user/auth/two_factor.tmpl @@ -0,0 +1,28 @@ +{{template "base/head" .}} +
+
+
+
+ {{.CsrfTokenHtml}} +

+ {{.i18n.Tr "auth.login_two_factor"}} +

+
+ {{template "base/alert" .}} +
+ +
+ +
+
+ + +
+

+ {{.i18n.Tr "auth.login_two_factor_enter_recovery_code"}} +

+
+
+
+
+{{template "base/footer" .}} diff --git a/templates/user/auth/two_factor_recovery_code.tmpl b/templates/user/auth/two_factor_recovery_code.tmpl new file mode 100644 index 00000000..a9ed17ee --- /dev/null +++ b/templates/user/auth/two_factor_recovery_code.tmpl @@ -0,0 +1,28 @@ +{{template "base/head" .}} +
+
+
+
+ {{.CsrfTokenHtml}} +

+ {{.i18n.Tr "auth.login_two_factor_recovery"}} +

+
+ {{template "base/alert" .}} +
+ +
+ +
+
+ + +
+

+ {{.i18n.Tr "auth.login_two_factor_enter_passcode"}} +

+
+
+
+
+{{template "base/footer" .}} diff --git a/templates/user/settings/navbar.tmpl b/templates/user/settings/navbar.tmpl index 2d4ff8dd..3092bedc 100644 --- a/templates/user/settings/navbar.tmpl +++ b/templates/user/settings/navbar.tmpl @@ -16,6 +16,9 @@ {{.i18n.Tr "settings.ssh_keys"}} + + {{.i18n.Tr "settings.security"}} + {{.i18n.Tr "settings.repos"}} diff --git a/templates/user/settings/profile.tmpl b/templates/user/settings/profile.tmpl index aab54a82..85c02cca 100644 --- a/templates/user/settings/profile.tmpl +++ b/templates/user/settings/profile.tmpl @@ -40,7 +40,6 @@ - diff --git a/templates/user/settings/security.tmpl b/templates/user/settings/security.tmpl new file mode 100644 index 00000000..eb39feba --- /dev/null +++ b/templates/user/settings/security.tmpl @@ -0,0 +1,51 @@ +{{template "base/head" .}} +
+
+
+ {{template "user/settings/navbar" .}} +
+ {{template "base/alert" .}} +

+ {{.i18n.Tr "settings.two_factor"}} +

+
+

+ {{.i18n.Tr "settings.two_factor_status"}} + {{if .TwoFactor}} + {{.i18n.Tr "settings.two_factor_on"}} + + {{else}} + {{.i18n.Tr "settings.two_factor_off"}} + {{.i18n.Tr "settings.two_factor_enable"}} + {{end}} +

+
+ {{if .TwoFactor}} +
+

{{.i18n.Tr "settings.two_factor_view_recovery_codes" AppSubUrl "/user/settings/security/two_factor_recovery_codes" | Safe}}

+ {{end}} +
+
+
+
+ + +{{template "base/footer" .}} \ No newline at end of file diff --git a/templates/user/settings/two_factor_enable.tmpl b/templates/user/settings/two_factor_enable.tmpl new file mode 100644 index 00000000..1b981445 --- /dev/null +++ b/templates/user/settings/two_factor_enable.tmpl @@ -0,0 +1,28 @@ +{{template "base/head" .}} +
+
+
+ {{template "user/settings/navbar" .}} +
+ {{template "base/alert" .}} +

+ {{.i18n.Tr "settings.two_factor_enable_title"}} +

+
+
{{.i18n.Tr "settings.two_factor_scan_qr"}}
+ {{.TwoFactorSecret}} +

{{.i18n.Tr "settings.two_factor_or_enter_secret"}} {{.TwoFactorSecret}}

+
+ {{.CsrfTokenHtml}} +
+ {{.i18n.Tr "settings.two_factor_then_enter_passcode"}} + +
+ +
+
+
+
+
+
+{{template "base/footer" .}} \ No newline at end of file diff --git a/templates/user/settings/two_factor_recovery_codes.tmpl b/templates/user/settings/two_factor_recovery_codes.tmpl new file mode 100644 index 00000000..3f555b4f --- /dev/null +++ b/templates/user/settings/two_factor_recovery_codes.tmpl @@ -0,0 +1,36 @@ +{{template "base/head" .}} +
+
+
+ {{template "user/settings/navbar" .}} +
+ {{template "base/alert" .}} +

+ {{.i18n.Tr "settings.two_factor_recovery_codes_title"}} +

+
+

{{.i18n.Tr "settings.two_factor_recovery_codes_desc" | Safe}}

+
    + {{range .RecoveryCodes}} +
  • + + {{if .IsUsed}} + {{.Code}} + {{else}} + {{.Code}} + {{end}} + +
  • + {{end}} +
+ +
+ {{.CsrfTokenHtml}} + +
+
+
+
+
+
+{{template "base/footer" .}} \ No newline at end of file