From 3d5d61778ac8fab981720b5f8b7fe75e2fb58434 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Thu, 10 Dec 2015 19:02:57 -0500 Subject: [PATCH] #1938 #1374 disable password change for non-local users --- README.md | 2 +- conf/locale/locale_en-US.ini | 1 + gogs.go | 2 +- models/login.go | 64 +++++++++++++-------------- models/user.go | 5 +++ modules/bindata/bindata.go | 4 +- routers/admin/auths.go | 24 +++++----- routers/admin/users.go | 2 +- routers/api/v1/admin/users.go | 2 +- templates/.VERSION | 2 +- templates/user/settings/password.tmpl | 6 +++ 11 files changed, 63 insertions(+), 51 deletions(-) diff --git a/README.md b/README.md index eb2e7ba99..77ba5e879 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](public/img/gogs-large-resize.png) -##### Current version: 0.7.40 Beta +##### Current version: 0.7.41 Beta | Web | UI | Preview | |:-------------:|:-------:|:-------:| diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 617342792..be8cafcb2 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -272,6 +272,7 @@ new_password = New Password retype_new_password = Retype New Password password_incorrect = Current password is not correct. change_password_success = Your password was successfully changed. You can now sign using this new password. +password_change_disabled = Non-local type users are not allowed to change their password. emails = Email Addresses manage_emails = Manage email addresses diff --git a/gogs.go b/gogs.go index 305e6dd18..03ccd8b01 100644 --- a/gogs.go +++ b/gogs.go @@ -18,7 +18,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.40.1210 Beta" +const APP_VER = "0.7.41.1210 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/login.go b/models/login.go index 5e2601064..1f248b486 100644 --- a/models/login.go +++ b/models/login.go @@ -26,12 +26,12 @@ type LoginType int // Note: new type must be added at the end of list to maintain compatibility. const ( - NOTYPE LoginType = iota - PLAIN - LDAP - SMTP - PAM - DLDAP + LOGIN_NOTYPE LoginType = iota + LOGIN_PLAIN + LOGIN_LDAP + LOGIN_SMTP + LOGIN_PAM + LOGIN_DLDAP ) var ( @@ -40,10 +40,10 @@ var ( ) var LoginNames = map[LoginType]string{ - LDAP: "LDAP (via BindDN)", - DLDAP: "LDAP (simple auth)", - SMTP: "SMTP", - PAM: "PAM", + LOGIN_LDAP: "LDAP (via BindDN)", + LOGIN_DLDAP: "LDAP (simple auth)", + LOGIN_SMTP: "SMTP", + LOGIN_PAM: "PAM", } // Ensure structs implemented interface. @@ -108,11 +108,11 @@ func (source *LoginSource) BeforeSet(colName string, val xorm.Cell) { switch colName { case "type": switch LoginType((*val).(int64)) { - case LDAP, DLDAP: + case LOGIN_LDAP, LOGIN_DLDAP: source.Cfg = new(LDAPConfig) - case SMTP: + case LOGIN_SMTP: source.Cfg = new(SMTPConfig) - case PAM: + case LOGIN_PAM: source.Cfg = new(PAMConfig) default: panic("unrecognized login source type: " + com.ToStr(*val)) @@ -125,26 +125,26 @@ func (source *LoginSource) TypeName() string { } func (source *LoginSource) IsLDAP() bool { - return source.Type == LDAP + return source.Type == LOGIN_LDAP } func (source *LoginSource) IsDLDAP() bool { - return source.Type == DLDAP + return source.Type == LOGIN_DLDAP } func (source *LoginSource) IsSMTP() bool { - return source.Type == SMTP + return source.Type == LOGIN_SMTP } func (source *LoginSource) IsPAM() bool { - return source.Type == PAM + return source.Type == LOGIN_PAM } func (source *LoginSource) UseTLS() bool { switch source.Type { - case LDAP, DLDAP: + case LOGIN_LDAP, LOGIN_DLDAP: return source.LDAP().UseSSL - case SMTP: + case LOGIN_SMTP: return source.SMTP().TLS } @@ -153,9 +153,9 @@ func (source *LoginSource) UseTLS() bool { func (source *LoginSource) SkipVerify() bool { switch source.Type { - case LDAP, DLDAP: + case LOGIN_LDAP, LOGIN_DLDAP: return source.LDAP().SkipVerify - case SMTP: + case LOGIN_SMTP: return source.SMTP().SkipVerify } @@ -230,7 +230,7 @@ func DeleteSource(source *LoginSource) error { // It returns the same LoginUserPlain semantic. func LoginUserLDAPSource(u *User, loginName, passwd string, source *LoginSource, autoRegister bool) (*User, error) { cfg := source.Cfg.(*LDAPConfig) - directBind := (source.Type == DLDAP) + directBind := (source.Type == LOGIN_DLDAP) name, fn, sn, mail, admin, logged := cfg.SearchEntry(loginName, passwd, directBind) if !logged { // User not in LDAP, do nothing @@ -350,7 +350,7 @@ func SMTPAuth(a smtp.Auth, cfg *SMTPConfig) error { // Query if name/passwd can login against the LDAP directory pool // Create a local user if success // Return the same LoginUserPlain semantic -func LoginUserSMTPSource(u *User, name, passwd string, sourceId int64, cfg *SMTPConfig, autoRegister bool) (*User, error) { +func LoginUserSMTPSource(u *User, name, passwd string, sourceID int64, cfg *SMTPConfig, autoRegister bool) (*User, error) { // Verify allowed domains. if len(cfg.AllowedDomains) > 0 { idx := strings.Index(name, "@") @@ -390,8 +390,8 @@ func LoginUserSMTPSource(u *User, name, passwd string, sourceId int64, cfg *SMTP u = &User{ LowerName: strings.ToLower(loginName), Name: strings.ToLower(loginName), - LoginType: SMTP, - LoginSource: sourceId, + LoginType: LOGIN_SMTP, + LoginSource: sourceID, LoginName: name, IsActive: true, Passwd: passwd, @@ -411,7 +411,7 @@ func LoginUserSMTPSource(u *User, name, passwd string, sourceId int64, cfg *SMTP // Query if name/passwd can login against PAM // Create a local user if success // Return the same LoginUserPlain semantic -func LoginUserPAMSource(u *User, name, passwd string, sourceId int64, cfg *PAMConfig, autoRegister bool) (*User, error) { +func LoginUserPAMSource(u *User, name, passwd string, sourceID int64, cfg *PAMConfig, autoRegister bool) (*User, error) { if err := pam.PAMAuth(cfg.ServiceName, name, passwd); err != nil { if strings.Contains(err.Error(), "Authentication failure") { return nil, ErrUserNotExist{0, name} @@ -427,8 +427,8 @@ func LoginUserPAMSource(u *User, name, passwd string, sourceId int64, cfg *PAMCo u = &User{ LowerName: strings.ToLower(name), Name: name, - LoginType: PAM, - LoginSource: sourceId, + LoginType: LOGIN_PAM, + LoginSource: sourceID, LoginName: name, IsActive: true, Passwd: passwd, @@ -443,11 +443,11 @@ func ExternalUserLogin(u *User, name, passwd string, source *LoginSource, autoRe } switch source.Type { - case LDAP, DLDAP: + case LOGIN_LDAP, LOGIN_DLDAP: return LoginUserLDAPSource(u, name, passwd, source, autoRegister) - case SMTP: + case LOGIN_SMTP: return LoginUserSMTPSource(u, name, passwd, source.ID, source.Cfg.(*SMTPConfig), autoRegister) - case PAM: + case LOGIN_PAM: return LoginUserPAMSource(u, name, passwd, source.ID, source.Cfg.(*PAMConfig), autoRegister) } @@ -470,7 +470,7 @@ func UserSignIn(uname, passwd string) (*User, error) { if userExists { switch u.LoginType { - case NOTYPE, PLAIN: + case LOGIN_NOTYPE, LOGIN_PLAIN: if u.ValidatePassword(passwd) { return u, nil } diff --git a/models/user.go b/models/user.go index 8993d7de3..cb9846f9f 100644 --- a/models/user.go +++ b/models/user.go @@ -118,6 +118,11 @@ func (u *User) AfterSet(colName string, _ xorm.Cell) { } } +// returns true if user login type is LOGIN_PLAIN. +func (u *User) IsLocal() bool { + return u.LoginType <= LOGIN_PLAIN +} + // HasForkedRepo checks if user has already forked a repository with given ID. func (u *User) HasForkedRepo(repoID int64) bool { _, has := HasForkedRepo(u.Id, repoID) diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 8e32a695b..5fb901e9a 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4364,7 +4364,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xeb\x72\xdc\x56\xee\xe7\x77\x3e\x05\xe3\x29\x97\xed\x2a\xb9\x5d\x99\xfc\xf7\x52\xa9\x38\x59\x59\x8a\x2f\xf3\xb7\x2c\x8d\xa5\x4c\x76\x36\xe5\x62\xd8\x4d\x76\x37\xc7\xdd\x64\x0f\xc9\x96\xac\x4c\xcd\x1b\xec\x03\xec\xf3\xed\x93\x2c\xf0\x03\x70\x2e\x24\x5b\xb2\x33\x53\xeb\x0f\x16\xfb\x1c\x9c\x3b\x0e\x0e\x80\x03\xe0\xe4\xbb\x5d\x56\x94\xdd\x22\x7d\x9e\x1e\xa7\xbb\xbc\xaa\x37\x65\xd7\xa5\x5d\xb9\x59\x3e\x5d\x37\x5d\x5f\x16\xe9\xab\xaa\xa7\xdf\xed\x75\xb5\x28\x93\x64\xdd\x6c\x4b\x02\x7d\x4d\x7f\x92\x22\xef\xd6\xf3\x26\x6f\x0b\x4a\x38\xb5\xef\xa4\xfc\xb4\xdb\x34\x2d\x03\xfd\x28\x5f\xc9\xba\xdc\xec\xb8\x0c\xfd\x49\xba\x6a\x55\x67\x55\x4d\x3f\x2f\xe9\x2b\x7d\x53\x4b\x4a\xb3\xef\x2d\xe9\x7c\xdf\x4b\xda\x7e\x67\x49\x3f\xed\x92\xb6\x5c\x55\xd4\x9b\x96\x92\xde\xeb\x67\x72\x53\xce\xbb\xaa\xe7\x96\x7e\x96\xaf\xe4\xba\x6c\xbb\xaa\xe1\xda\xff\x22\x5f\xc9\x2e\x5f\x31\xc0\x05\xfd\x49\xfa\x72\xbb\xdb\xe4\x28\x70\xa5\x9f\xc9\x26\xaf\x57\x7b\x81\x79\xab\x9f\xc9\xa2\x2d\x29\x2b\xab\xcb\x1b\x4a\x3d\xc1\x8f\xd9\x6c\x96\xec\x69\x12\xb2\x5d\xdb\x2c\xab\x4d\x99\xe5\x75\x91\x6d\x65\x98\x3f\x51\x7a\xaa\xe9\x29\xa5\xa7\x9c\x8e\x21\x94\x05\x0d\x35\xcb\x3b\x1d\x07\xcd\x25\x8d\x3c\xef\x12\x54\x55\xe7\x5b\x2b\xcd\x9f\x49\xb9\xcd\xab\x0d\xcf\x1a\xff\xa5\x7e\x77\xdd\x4d\x83\xa9\xbd\xd0\x4f\x9a\x83\xac\xbf\xdd\x95\x98\x82\xa7\x57\xf4\x95\x2c\xf2\x5d\xbf\x58\xe7\xdc\x4d\xf9\x4a\x08\x68\xd7\xd0\x5c\x34\xed\x2d\xe0\xec\x47\xd2\xb4\xab\xbc\xae\x7e\xcb\x7b\x99\x9f\xf3\xe0\x67\xb2\xad\xda\xb6\xe1\xa9\x3d\xc3\x47\x42\x23\xcf\xb8\x1e\x4a\x79\x47\x93\x10\xd4\xc2\x39\xdb\x6a\xd5\xca\x2c\x72\xe6\x19\x7e\x71\x2d\x92\xa7\x35\x49\x96\xab\x6d\xd9\xb4\x1f\x35\xf5\x25\x7f\x0e\xaa\xa4\xce\x69\x6e\xdc\xaf\xbc\xa6\xf5\xd0\xdc\x33\xfc\x88\x00\xba\x24\x2f\xb6\x34\xc3\xbb\xbc\x2e\x79\xea\x8e\xf9\x17\xcd\x17\xfd\x4a\xf2\xc5\xa2\xd9\xd7\x7d\xd6\x95\x7d\x5f\xd5\x2b\x5e\x83\x63\x49\x4a\x2f\x35\x29\x09\xf2\x5c\xda\x6d\xb3\x77\xab\x4c\xe9\x7f\xa5\x9f\xe9\x85\xfc\x94\xbc\xa0\x10\x32\x5d\x49\x1e\x49\x97\x2d\xcb\xb2\x90\xb1\x74\xe9\x4b\xfa\x4e\x76\xfb\xcd\x86\x66\xf3\xef\xfb\xb2\xeb\xb9\xd0\x05\xfd\xa6\xf1\xcb\xef\xa4\xea\x3a\xfa\xa0\xe4\x37\xf8\x48\x68\x49\xeb\x05\x06\x73\x82\x8f\x24\xf9\xa5\x2b\xf3\x76\xb1\xfe\x90\xc8\x5f\xf4\x95\x3f\x18\x25\x0f\x2d\x36\xe3\x97\xe2\x96\xb4\x60\x0d\x24\x8b\xa6\xe0\x1f\x27\xf4\x87\xaa\xae\xea\xae\xcf\x37\x9b\x0f\x89\x7e\x30\x98\x7c\xc9\x02\xf4\x55\x8f\x59\xd0\xc4\xf4\xb2\x2f\x77\x1d\xaf\x60\xfa\xb2\x6a\xbb\xfe\x69\x5f\x11\x0e\xbf\xdf\xd7\x49\xd1\x2c\x3e\xd2\xee\xe0\x9d\x8e\x96\xdf\x2c\x53\x9a\xac\x47\xb4\x3f\xda\x7d\x5d\xd3\xf4\xa4\xaf\x1a\x9a\x32\x6a\xa6\xa2\xf6\x4f\x01\x7d\x94\xee\x36\x65\xde\x11\x48\x99\x17\xe9\x77\x79\xda\xe7\xed\xaa\xec\x9f\x3f\xc8\xe6\xb4\x2b\x3f\x3e\x48\xd7\x6d\xb9\x7c\xfe\xe0\x61\xf7\xe0\xfb\x57\x7b\x2a\xb6\xa9\xea\xb2\xfb\xee\x59\xfe\x7d\xba\xc8\x29\x87\xa6\xf1\x36\x9d\x97\x4b\xde\x84\xd4\x56\x4a\xd8\x5f\xaf\x78\x03\xde\xf6\x6b\x6e\x90\x30\x81\x3e\xba\x94\x29\xc0\x57\x09\x2f\x00\x51\x88\xac\x98\x1b\xb5\x43\x87\x90\xdc\xd2\x02\x9c\xdd\x5e\xfe\xf9\xed\x51\x7a\x41\x24\x6f\xd5\x96\xf8\xa6\xff\xa8\xc4\x37\x29\x8d\xf6\xaa\x3a\x7d\x31\x4b\xa8\xac\x4d\xc8\x69\xde\xe7\x73\xee\xbb\x5b\x7d\xce\x94\xcd\xe9\xf2\xb0\x45\x99\x88\x82\x60\x76\x7d\xb4\x2c\x53\x1b\x9c\xea\x50\xaa\xe0\xea\x78\xc7\xa4\x81\xd2\xdd\xcc\x5e\xc8\x9c\x51\x55\xe9\x9b\x77\xef\xce\x4f\x5f\xa4\x65\xbd\xa2\x99\x49\x6f\xaa\x7e\x9d\xee\xfb\xe5\x7f\xcf\x56\x65\x5d\xb6\xf9\x26\x5b\x54\x3c\x29\x2d\x21\x6c\x4a\xb3\x24\x43\x9c\x25\x5d\xb7\x21\xca\x05\x2c\xb8\xbc\x7c\x9b\x9e\x31\x26\xec\xf2\x7e\x8d\x8e\xf4\xeb\xa4\xfb\xfb\x86\x27\xca\x35\x78\xb5\x2e\x53\x6c\x06\x00\x35\xcb\xe1\xbc\xa4\x85\xf6\x75\x96\x94\x6d\x9b\x11\x61\xed\x6f\x79\x9a\xb5\xce\x43\xd0\x52\x1d\x61\x7b\xdd\xf4\xb4\x8c\x29\xca\x49\x15\x55\x7d\x9d\x6f\xaa\x82\x26\xdb\x4f\x48\x5c\x16\x89\x45\x43\xeb\xc6\xa5\x09\x33\x9b\x1b\x0c\x35\x5f\xd0\xb9\xd0\xa5\x0f\x66\x0f\x40\x88\x1f\x3c\x7d\x30\x4b\xea\x26\x13\x2a\xc1\x24\xbb\xa8\xba\x7c\x4e\xe4\x5b\x8e\x93\xd6\xa8\xe1\x5f\x19\x7f\xa4\x2b\x0a\x91\x46\x10\x3c\xb7\x7c\x44\xe1\x64\x60\xe4\xca\x89\x8e\x83\xd8\x28\x99\x09\xc7\x6e\x34\xc9\xad\xaf\x90\x25\x97\x30\x1a\x73\x62\x0b\x66\xd8\x75\xbc\xdb\x6d\xaa\x85\x34\xfd\x4a\xf2\x3c\xa2\xf1\x81\xad\x93\x12\xc2\x01\x51\x2c\x2f\x40\x17\xea\x35\x93\xad\x34\xa2\xff\x28\xbf\x2e\x69\xe7\xac\xf7\x2b\x39\xb4\x36\xcd\xbe\xf8\x0a\x04\xc5\x56\xce\xd3\x93\xf4\x7d\x43\x1d\x06\x76\x38\x00\xdf\xc4\x31\x11\x06\xe6\x11\xda\x72\xdb\xf4\x3c\x71\x5a\xac\xa2\xe5\xb9\xa9\x28\x93\x46\xda\xe5\xd7\x44\x16\xfb\x46\xb6\x64\x41\x5b\x6e\xc1\x15\x13\x05\xdb\xd3\x41\x2f\xdb\x82\xe8\x88\x6c\x0d\x4b\x8b\x71\x10\x50\xdb\x3d\xed\xa6\x35\x55\xc6\x13\xcf\x8c\x0a\x55\x39\xd5\x4f\x0c\x89\xea\xc1\x2e\xa7\x9d\xdb\xd0\xa1\xca\x0b\x7d\x8a\x0f\xfd\x1d\xd6\x4f\xbd\xca\x97\x4b\xea\x55\x47\xbb\xe2\x75\xba\xd8\x34\xb4\xa5\x7e\x7a\xff\xb6\xe3\x0d\xb3\xce\x76\x4d\x0b\x06\x85\xb2\x2e\xe8\xd3\xa5\x05\x13\xcd\x10\xf5\x7e\x3b\xa7\x5f\x37\xeb\x8a\x08\x35\xa6\x9d\x4b\x30\xf3\x44\xa9\xd4\xc4\xbe\xa3\x25\x3c\x4a\x69\x0b\xd3\x08\x68\xca\x80\x00\x3c\x06\xc3\x3a\x06\x5f\x12\x8e\xed\x5b\xda\x4e\xeb\xbe\xdf\x59\xcb\xaf\xaf\xae\x2e\xa4\x69\x97\x7a\x57\xdb\x79\x80\x19\x58\x83\x0d\xb3\x4c\x75\xda\xd4\x33\x20\xc9\xbe\xdd\x0c\xf0\x87\xc6\x6a\x39\x07\xe6\x85\xbb\xf0\x8c\xff\xbb\xf4\xd3\x83\x79\xee\x88\x19\xbc\x01\x36\xd1\x1c\x83\x8d\x21\x9c\x6e\x76\x5c\x6d\x80\xd4\xe7\x9a\xe0\x31\x19\xa0\x2e\x1f\x7c\x0f\x65\x82\xd1\x0c\xce\xe8\x2d\x0d\x57\x89\xe8\xe5\x19\x4d\x02\x28\x29\x52\x97\x6d\xb3\xa5\xd4\x97\xf4\xc7\x27\xf8\xce\x9f\x71\x7d\x80\xc9\x8b\x82\x68\x7c\x77\x94\xbe\x7f\x79\x92\xfe\x97\x6f\xfe\xf8\xc7\x59\xfa\xa6\xe7\x7d\xc8\xa8\xf9\x37\x46\xa9\x5c\x3b\xee\x41\x89\x5e\xf5\x84\x75\x0f\x78\x5f\x3d\x48\xbf\x43\xee\xff\x28\x3f\xe5\xc4\x37\x96\xb3\x45\xb3\xfd\x9e\x69\xea\x36\xa7\x9d\xcf\x39\x84\xac\x8a\xc5\x97\x65\x5d\xd0\x87\x70\x71\x9a\x15\xd0\x02\xcd\x0e\x78\x3a\x61\x66\xb3\x45\x53\x2f\xab\x96\xc7\xf3\x63\x0d\x54\x30\x36\x97\xce\x6a\xe4\x18\x4b\x44\x53\x46\xe4\xa3\x5a\xde\x7a\x50\x8c\xf4\x1d\x27\xea\x6a\x26\x82\x72\x99\xb2\xed\x6e\x8e\x2f\x05\x13\x79\xd1\xce\x69\x74\xad\x4d\x77\xe7\xe7\xbb\x59\x2e\xf9\xa0\xb5\x23\x42\x5b\x38\x97\x54\x39\x2d\x42\x10\xc2\xc4\x1d\x18\xf5\x53\xc5\xe0\x93\xd3\x77\x69\x79\x4d\xa8\xc6\x24\xaf\x6d\x8a\xfd\x02\xe8\xc5\xb0\x47\x4c\xa9\x89\x3e\x74\xb4\x31\x16\x72\xa8\x04\x14\x82\xbb\xc6\x64\x68\x41\x40\x44\x18\x8c\x52\x13\x77\x79\x4d\x64\xbf\x0d\x9a\x78\x65\x49\xda\xfb\x11\xec\xa8\x53\xae\x04\x8f\x7c\x41\x0b\x4e\x48\x21\xbd\xe8\xa4\x53\x92\x4d\xb8\x4e\x48\xbc\x27\xa9\x25\x2f\xa8\x2f\xf3\x5b\x10\x9d\x8e\x71\xa1\x28\x97\xf9\x7e\xd3\xfb\x7e\x0d\x4e\x10\x6b\xe9\x92\x05\xa7\x30\x6f\xb2\xc0\xa8\x83\x40\x9e\x6e\x58\x96\xb0\xb0\x26\x26\x47\x4e\x1a\x46\x57\x91\x4c\xec\xd0\x21\xda\x54\x62\x79\x32\x2f\x07\xe8\x7a\x99\x38\x10\xe7\xbb\x66\xdf\x0b\xdb\x93\xe2\x9c\xe5\x1a\xad\x02\xe6\x13\xa6\xfb\x32\x4b\x94\x57\xca\x54\x84\xcb\xae\x2b\x08\x48\x0e\x5d\xa5\x4a\x15\xeb\x98\xa8\xfd\x85\x01\x58\xf2\xea\x26\xcb\xba\xde\x9c\xf3\x20\x3b\x27\x20\xc9\x9c\xf3\x70\xd1\x02\xf3\x6f\xb4\x4a\xd7\x15\x68\xbc\x22\x0c\xe6\x85\xb0\x06\x4d\x53\x53\x5d\x59\xa2\x06\x2a\xff\x8c\xea\x44\x99\x99\x4a\x07\xca\xb0\x1b\xdf\xc7\x67\x7d\xd1\x80\x71\xc0\x41\x42\xa5\x6d\x5a\x07\x87\x7a\xda\x56\xab\x35\x11\xd6\xe6\xe6\x48\x26\xe5\x66\xdd\x94\xbc\x7f\xde\x9c\x3e\xff\x5a\xfa\xb1\xe2\x63\xc5\x15\xe2\x03\x29\xdf\x13\x72\xd1\x8c\x29\x1a\x4b\x17\xdc\xc1\x0e\xc8\x91\x1c\x22\x40\x43\x81\x70\xc4\x47\x38\xa2\xa1\xb4\x22\xcc\x53\x22\xe1\x61\xa4\xb4\x09\x95\xd2\xb0\x10\x25\xe5\xf5\xb3\x55\x03\x21\xc6\x78\x7b\x3e\x29\x49\x44\xee\xfa\x6c\x55\xf5\xd9\x92\x29\x17\x57\xfc\x92\x2b\xe0\x83\x9b\x72\xd2\x47\x94\xf5\x28\x25\xea\x47\x92\x59\xf1\x6d\xfa\xf0\x5a\xb9\xc5\x6f\x98\x24\x65\xb4\x89\xaa\x0d\x56\x44\x45\xa3\xb6\x14\x66\xd5\xc4\x72\xc7\xb1\x75\xfb\x1d\xce\x35\x65\x0e\x9d\x24\x50\x34\x37\x35\x6f\x3e\x90\x5e\x22\x33\xd5\xa2\xa2\x03\x63\x5e\xd5\x39\x1d\xee\x56\x0b\x48\xfa\x43\x42\x89\x77\xe7\x57\x00\x5c\x35\xf3\x7d\xb5\x29\x0c\x60\x96\x18\x03\x49\xec\xa3\x2e\x7e\xc8\x52\x5b\x52\x25\x7d\x59\x34\x2d\x73\x23\x18\x8d\x15\x3c\xc0\x06\xb5\xcc\x5e\x20\xb9\x62\x59\x06\xb0\x28\xe7\x38\x16\x9e\x06\x5a\x7d\x88\x69\xcc\xcf\x00\x6d\xaa\xae\x7e\xd4\xa3\xa7\x8b\x3d\xb5\x45\x2b\xcf\xc9\x54\xb0\x4b\x9f\x7e\x4f\xff\x27\xcc\x1d\xc9\x01\xb0\x1a\x4f\x3c\x67\xa6\x92\xb9\x97\xad\x18\x75\x35\xc2\x71\xb7\xd2\x86\xc1\xc1\x58\xc3\xfe\x1a\x0a\x74\x7b\x41\x5a\xd6\xa0\x6c\x68\x59\xcb\xaf\xe8\x83\xa5\xb6\xd5\x06\x8b\x90\xf7\x2a\x5a\x35\x34\x6f\x8c\x20\x47\xb2\x67\x96\x34\x34\x26\xa5\x7d\xfe\xb1\x84\x34\x46\x07\xfe\x2f\xac\x1a\xfa\x90\xec\x85\xff\x6c\x36\x85\x93\x75\x80\xd8\x44\x58\xca\x48\xb3\xe1\x61\x1c\xce\x76\xc4\x67\x2f\xd6\x99\xd3\x2b\xf1\x9c\xf4\xe5\x27\x1c\xfd\xc8\xf2\x6a\x26\x46\x78\xce\x4a\xb6\xb7\x58\x2d\x1e\xc3\xd9\xad\x5f\x2c\x62\x3e\x69\x9b\x90\x1c\x3b\x6f\x78\xd2\xae\x4b\x07\x75\x12\xa6\xc6\x05\xa8\x2e\x62\x93\xb5\xaa\x58\xd1\x40\x59\xa2\xdb\xd0\x5c\xd1\x6d\x74\x09\x08\x99\x2a\xc5\x40\xef\x68\x39\x55\xa8\x9f\xd1\xba\x40\x63\x60\x2d\x13\x55\xbc\x95\x6d\x11\xb4\x99\xfc\xa2\x0a\xb3\x0f\x89\xc1\xbd\x8f\xf3\x89\xa2\x90\xf4\xef\x95\x52\x99\x2d\xae\x29\xa7\xa0\x38\x51\xa2\xe2\x19\x8a\x75\xb9\x63\xde\x63\xdb\x01\x2b\x36\x2c\x64\xdf\x2a\xeb\xec\xf0\xe3\x07\x21\xd7\x84\x30\x44\xe4\xbe\x4a\xba\x86\xf7\x5b\xf6\x85\x55\xbc\xa8\x08\x13\x50\x3e\x3e\xea\x44\x5b\x46\x1c\x2e\x2f\x1f\x6d\xb2\xdb\xa3\x58\xa8\x5a\xe7\x1d\x91\x70\xe2\x14\xb4\x58\x31\x33\xe1\x96\x97\x9d\x44\x39\x6c\x19\x68\xf8\x80\xe4\x52\xb2\x69\x87\x67\x30\xf7\x50\xa8\x9c\xb6\xe2\x38\x27\xf0\x45\x21\xfb\x34\xd1\x26\x4d\xd8\xb6\x64\xce\x39\xdb\x8a\x66\x4d\x7e\xa5\x67\x65\x42\x87\xe1\x8a\xf6\xb3\x21\xec\x73\x56\x7c\xac\x20\x60\x28\xbe\x32\x40\xd9\x87\x64\x58\x21\x2c\xe5\x07\xd3\x64\x12\x61\xb8\x81\x56\x88\xb6\xf6\x68\xfa\xe9\xc0\xa2\xec\x99\x91\x75\xe1\x10\xc0\xe8\x75\x44\x2c\xfc\x24\x1e\xa7\xac\x92\x0c\xa1\x94\x69\x75\xa3\x62\x78\xa6\x19\xdf\xcd\xbf\x7f\xd8\x7d\xf7\x6c\xfe\xbd\xa3\xac\x8b\x75\xb9\xf8\x28\xe8\x57\xd5\xf3\xe6\x13\x44\x5a\xa8\x48\x48\x9a\xe6\x2d\xf6\xb0\x48\x49\xc4\x6d\x21\x51\x11\x25\xa0\x62\x34\xef\x9c\x1b\xad\x19\xf5\x85\x09\x06\x9d\x6b\x0b\x6c\x2a\xe0\xb7\xc7\xc7\x63\x4e\x65\x8c\x04\xf9\xf7\x28\x89\x71\x6c\xaa\x6d\xd5\x8f\x50\x82\xe9\x4b\xae\xa8\xa5\x5a\x32\x9b\x23\xd4\xe5\x47\x49\x54\x9a\xaa\xa1\x43\xd5\xd0\xe4\x26\x27\x11\xea\x9b\x94\x50\x63\x4f\xa7\x13\x77\x96\xc6\x43\x64\x3a\xe7\x53\x99\xc4\xa7\xbc\xcb\xf6\xb5\x4e\x57\x59\x18\x92\xbc\xae\x70\x78\x70\xbb\x86\xca\x01\x54\x2c\x06\xa4\x8f\xdd\x4c\x3e\x99\xa9\x52\x0b\xa5\x98\xa0\x73\x7f\x2a\xe6\x59\xf3\xa9\x35\x21\x7a\x57\x97\x22\xf3\x62\xfc\x0c\xc6\xcb\x47\x82\x93\x5f\x14\x92\xbe\x3e\x52\x0a\xe6\x79\xbe\xef\xfb\x86\x25\x92\x0d\xe3\x82\x94\xb1\x3e\x9f\x00\x10\x22\x96\xaf\x0f\x8b\x39\x9c\x25\x15\xaa\x70\x1c\x77\xd8\xcf\xa2\xef\x66\x41\x2e\x1e\x9a\x1e\x7f\x0e\xaa\x10\x0d\x52\x5e\xdf\x7a\xa5\x06\xfa\xc0\xcd\xf5\xd3\x3d\x79\xdc\x96\x4f\x7c\x5f\xdc\x3e\x40\x09\xed\x8f\x94\x0e\xb6\xc8\x7b\x64\x8a\x5e\xd5\x36\x92\x1d\x66\xaa\x9d\xf4\xa8\xd1\xc6\x53\x8b\x7c\xc6\x76\xa2\x99\xc4\x4e\x16\x98\x65\x1a\x04\x4a\xcf\x06\x6d\x79\x49\x70\x3c\x7d\x7d\xdc\x63\x7f\x28\xf5\x4d\x93\x75\x6b\x91\xb9\xad\x7b\x24\xaf\xd7\xab\x48\x59\x85\x3b\x12\xe0\xdb\x7f\xe5\x93\x8f\x07\xfa\x21\xd1\xa5\x28\x83\xfd\xa0\x88\x6a\x39\xb6\x64\xb2\x2d\x1c\xbc\x31\x69\x7f\x29\x5b\x16\xeb\x00\x14\xad\xd5\xa1\x49\x8c\xc7\xe0\xa8\xa1\x3f\xd5\xdf\x87\x7b\x57\x93\x97\xfb\xcd\x51\x7a\x23\xc7\xbd\x2f\xe3\x44\x4a\x65\x04\x18\x2b\xe5\x3e\x87\x86\xd7\x14\x39\x8d\xef\x16\x7a\xea\xbf\xd2\x99\x54\xe3\x66\xa0\x49\x28\x43\x0a\x9d\xe1\x83\x40\x59\x26\xfe\x90\xf0\xa1\xff\x6e\xc0\xcd\xf2\xa1\xa6\x69\x01\x47\x85\xac\x1f\xc3\x9b\x0f\x37\xe6\x8b\x09\xc6\xf7\x7d\xe9\x2f\x40\xf0\xe5\x06\x7f\x79\xf9\xfa\xca\x84\xdc\xcb\xd7\xe9\xc7\x52\xeb\x7e\xdd\xf7\xbb\xee\x27\x68\x3b\x44\x75\xc1\x7a\x8e\x8b\xfc\x96\xb9\x4c\x49\xd6\x1f\xc8\xb8\x2a\xf3\xad\x76\x92\x3f\xa5\x8a\x63\x3a\x7f\x35\x91\x3f\xe9\x58\x0e\xb4\x68\x09\xf8\xad\x1f\x23\x36\x5b\x10\xdf\xc9\x3c\xa5\x5e\x89\xfc\x3a\xd2\xfc\xfd\x9a\xe4\x9b\x1d\x89\x65\xcc\xf0\x04\x60\x50\x72\xcd\x55\x3a\x4b\x01\x02\x44\xdf\x6f\x09\x41\x16\x90\x46\xa9\xc0\xe3\xa7\xd9\x93\x40\xe9\x19\x57\x56\xd0\xfe\xff\x5d\x15\xf2\x37\x33\xc5\x61\xbd\x5d\xf5\x9b\x8d\x22\xaa\x8e\xd3\x89\x96\x12\x04\x58\x50\x0f\xe5\x80\x70\x90\x33\x3b\xda\xb3\xce\x8b\x12\x88\xe5\x8d\xaa\xde\xe6\x9f\xee\x2b\xb8\x6d\x26\xca\x09\x95\xf3\x85\x8c\x98\xe9\x10\xa3\xdd\x43\xe0\xac\xd4\x3a\x08\x4c\x0b\x4f\x20\x55\xbd\xd8\xec\x8b\x83\x1d\xe9\xf6\x73\xda\x48\xcc\x4a\x3f\x7a\xd8\x3d\xe2\x2a\xeb\x8f\x74\x68\xd7\x0e\xfe\x27\xf9\x9d\xe2\xf7\xb7\x76\x33\x47\xb2\xae\xca\x17\xa9\xbb\xa3\x23\xde\xa3\xe0\xf3\x03\x72\xc2\xcc\x93\x9e\x50\x76\x70\xc8\x0f\x85\x85\xca\x76\x6e\xff\xb3\x96\x02\x62\x14\x21\xe0\xcc\xdf\x26\x66\xcc\x03\x64\xcc\x93\xd7\x21\xe7\xcd\xf4\xd2\x4e\x58\x70\x09\x80\x90\xcb\xa3\x6c\x5c\x6e\xb0\x3b\x0f\x16\x27\x4e\x67\xa2\xf4\xf9\x58\xcd\x7c\xa0\x7c\x4f\x1b\x6c\xa2\x02\xb7\xef\x0e\x16\x94\xb5\x47\x21\x1a\x79\x31\x24\x1c\xe3\x72\x0c\x45\x42\xe1\x66\x53\xae\x58\x1f\x69\xed\x46\x8d\xe9\x3a\xd3\xb1\x28\x60\x21\xba\xf9\x09\x76\x6b\x15\x2e\x6b\x28\xe2\xb8\x25\x8a\x85\x4b\x56\xd4\x50\x55\x2d\x2e\x84\x03\x11\x53\xbb\xa1\xc7\xc4\x96\xa5\xa9\x6e\xcf\xa7\x14\x4b\x5e\xc2\x7c\xc5\x8b\xc1\xfc\x07\xaa\x2a\xd1\xc4\xe1\xea\x09\x15\x99\xaa\xdf\x57\x3f\xc0\xbe\xb0\xea\x50\x23\x31\xae\x58\x2b\x77\x40\x87\xaa\x75\xe2\x72\xf9\xa9\x82\x72\xf7\x55\x75\x5d\xaa\xc0\xec\xf4\x04\xc8\x9b\x25\x1b\x22\x1d\x2c\x99\xc9\xa8\x84\x4b\x6f\xae\x79\x33\x72\x7b\x9c\x2b\xe5\x44\xd9\xab\x83\xe2\x75\x56\xd1\x1b\x17\x44\x65\x71\x44\xcc\x0e\x97\xa0\x7e\x62\x6f\xe7\x9b\x9b\xfc\xb6\x83\x1a\xc9\xe8\x13\xab\xb5\xa5\x38\x13\x1f\x62\x85\x56\xe8\x55\x78\x79\x42\x1b\xce\x66\x82\x6f\x01\xf8\xa4\x71\x1c\xcb\x0d\x84\x67\x10\x17\x55\x4c\x5d\x07\x67\xba\x1e\x4c\x2c\xf8\xb3\x98\xcc\x12\x8c\x64\x07\x15\xe1\x56\x52\xcf\x89\x89\xb2\x47\xcc\x26\x52\x33\xcc\xb6\x11\xf5\x96\xb9\x26\x2e\x98\x66\x16\x5d\x0a\x34\x29\x7b\xaa\xff\xa9\xb0\xfd\x15\xcd\x21\x4b\x91\x5e\xb9\xc0\x07\x19\xad\x8a\x29\xff\x25\x1d\xaa\x81\xa4\xeb\x69\x0b\xf0\x4c\x9b\x09\xc0\x5f\x03\xa6\x25\x45\x2e\xb6\x18\xa6\xa9\x5b\x57\xbb\xb4\x81\x4e\x39\x9c\x42\x8f\xb6\x01\xa3\xcd\xd7\x1c\x25\xc4\x0a\xd6\xad\xb7\x79\xdd\x2d\x4b\x28\xd9\xb7\xe9\x92\x6f\x93\x67\xda\x34\xf3\xed\x72\xe5\x7f\xa0\x65\x91\xd0\xd0\x74\x78\xb6\x60\xed\x82\x85\x8a\x9b\x96\x3b\x17\x68\x72\xd1\x07\xcc\xaa\xaf\xa9\xb3\x3e\x30\x9a\x8d\xa6\x00\xec\x73\x74\x83\x66\xbd\xb9\x2e\xc3\x89\x58\xfe\xde\x91\x07\xb3\xae\xf7\x08\x72\xf5\x12\x2f\x13\xa5\x48\xbb\xa2\x25\x65\x05\x75\x34\x7a\x2e\x1a\xdc\xaa\xd3\x1e\x29\xb5\x15\xde\x18\xbc\x57\x06\x15\x42\x87\xe3\x25\xa6\x44\x6e\xe0\xb3\x39\x75\x71\xb1\x8e\x76\xe7\x15\x72\x52\xc9\x19\x6d\xd0\xe4\x17\x6e\xfa\x43\x22\x77\xf0\x99\xd3\xd8\x9f\xc8\x9d\xbc\xb0\xbd\xaa\x81\xef\x53\x53\xd3\xf3\x35\x8a\x15\x11\xa5\xfc\x9d\x25\xf9\x14\x36\x8d\xe9\xdf\x1a\xe2\x38\xa0\x78\xff\x13\x7d\xb1\x20\x50\x27\xd1\xc5\xe3\x40\x8b\x02\x5e\xbb\xea\x79\x87\x5d\xd0\xc6\x20\xa6\xe7\x58\x53\x48\x88\x07\x75\x80\x62\xe7\xa5\x7d\xd3\x7a\xe4\x4c\xf4\x78\x6b\xcb\x97\xc2\x89\x92\xed\xa5\x7d\x27\xac\x03\xd8\xce\x70\x38\x30\x93\x8e\x3b\x8c\xe0\x48\x60\x66\x81\x97\xcd\xf2\x66\x01\xfc\x2e\xef\x89\x2c\xd6\x22\xab\x09\x85\x0a\x8b\x6a\xb6\xab\xc2\xdd\x74\x73\x2d\x6c\x15\x22\x53\xf1\x21\xf1\xc6\x2a\x66\xa7\x32\xa5\x33\x56\x12\xd3\x29\x83\xfc\x9f\xf4\xa9\xfa\x1e\x90\x2f\x7c\xa8\xc0\x8e\x3b\x66\xbb\x18\x84\xe1\x4c\xf0\x33\x51\x0d\x59\xac\x1e\x53\xf4\x7e\x9e\x9e\xca\x87\x89\xfe\xfb\x0a\x63\xaa\x48\x8c\xd8\x61\xde\x03\xd3\x1a\x5d\x08\xd7\x69\xb5\xac\xf2\x6a\xfa\x76\x2c\xb1\x4a\x25\xc0\x5b\xbb\x38\x02\x0f\xc0\xf7\x16\x81\xe4\xca\x9a\x67\x88\xb4\x75\x70\x29\xc6\x57\x3d\x2c\x86\x13\xd8\x4d\x39\x4f\x59\x17\x4c\x78\x43\x12\xa2\x8e\x73\x9b\x93\x70\x79\x5d\xe5\x4e\xed\x44\x8b\xc5\xb6\x3b\x7a\x88\xbe\x64\xbb\x1d\xdc\xb2\x8f\xed\xce\xf8\xd6\x4a\x2f\x82\xde\xea\x67\xb2\xdf\xf1\xcd\x4a\x30\xde\x9f\x90\xe0\xc6\x1b\xe7\x07\x42\x1b\x46\x6e\xc5\x9c\x6a\x47\xc0\x8b\x40\x8a\xe3\xeb\x05\xdd\x3d\x13\xf6\x64\xba\x83\x8a\x21\x88\x57\xc0\x80\xc2\xa8\xd5\x0c\x26\x53\x2e\x7a\x31\x7c\x3a\x18\xd3\x75\x73\x93\x6e\xaa\xfa\x63\xa7\xb3\xc9\x64\x2c\x14\x60\xa1\xb0\x22\x1c\xdc\x8b\x41\x91\x7c\x8e\xed\x97\xec\x0a\x6a\xb0\xc1\xed\xa2\x4a\x2e\xe3\x8e\x91\x3c\x09\xeb\xc5\x78\xbb\x2c\x5b\x96\xcc\x24\x83\xa6\xd9\xc5\x1e\x8d\xb2\x69\x3a\x55\x8f\x7a\x1a\xc2\x69\xd0\xba\x28\x94\xce\xb9\x83\xd0\x25\x39\xb6\xeb\x44\x6c\xa9\xc4\x2e\x00\xad\x03\xd8\xa0\x59\xb5\x15\x33\xc1\x9f\xec\x7a\x10\xeb\xe3\x64\x09\x64\xc3\xda\x24\xee\x7d\x78\x29\xf2\xae\xb1\xcb\x47\x23\x86\x96\x79\x64\x67\xbe\xcc\x00\x4e\xec\xa8\xb3\x43\xfc\xd0\x0a\x4c\xbf\x7f\x0f\x9a\x18\x12\x84\x17\x46\xb2\xf0\x8e\x3e\x34\x9b\x88\xb3\x3b\xd1\x9b\x0a\x97\xcf\x33\x1b\xe4\xbf\xc3\xd5\x9e\xd3\x3c\xb0\x30\x9e\x0d\x40\x54\x58\x8f\x20\x27\x19\x68\x6b\xeb\x20\xf3\x3c\xe8\xfd\x68\xaf\x58\xb9\x1b\x9a\x85\x70\xe0\x8a\xdd\xc5\xcc\x0c\x7c\x58\xcf\x2a\xf7\x84\xb0\xc4\x10\x6b\x94\x1a\x97\x8c\x52\x05\x4d\x15\x68\x4e\xe7\xa4\x8a\x63\x21\x3e\x7c\x3b\x20\xd6\x88\x2e\x5f\x0d\x12\x23\x1a\x55\x9a\x55\x43\x48\xc5\x76\x2d\x21\x07\x9d\xb2\x31\x35\x1b\xd1\xaf\x88\x56\x81\x54\x35\xb8\xa3\xf7\x24\x8a\x84\x45\xad\x8a\x69\x3d\xbe\x2c\xc5\x29\x91\x08\x89\x99\xcd\xd5\x64\x25\xcc\x2e\x57\xc8\xb3\xeb\x23\xfd\x10\xaa\x25\x63\x3d\xd5\x84\x41\xbe\x0d\x46\xb2\x6d\xda\x26\x46\xa3\x2c\x87\x11\xdf\xaa\x16\x13\x09\x77\x69\x17\x51\x8f\xf4\x14\xe4\x84\x16\x4d\x74\xd6\x46\x4c\x7e\x18\xb6\xee\x57\xfb\xc7\x58\xdb\x2d\x63\x8b\x71\xfd\xab\x84\x7a\x04\x4c\xf4\x57\x9f\x05\x96\x38\xd6\xa8\x31\x54\x08\x21\x3a\x1b\x97\x9a\x45\xba\x78\xa8\xd5\xbf\x44\xff\xce\x67\xf6\xbf\x41\xf5\x1e\x35\xe5\x55\xef\xae\x93\x83\x7d\x30\x1a\xe5\x78\x43\x50\x06\xd8\x07\xc5\xe5\x80\x29\x50\x6c\x76\xbc\x01\xb7\x22\x22\x09\x4f\x0f\x25\x81\x83\x50\x4c\xc0\xd1\xc1\xfc\x29\xec\x8a\x60\x14\x28\xf2\x49\x37\xd2\x27\xc7\x6b\x7e\x0c\x01\x8c\x26\x45\x60\x61\xb8\x47\x07\xb2\x30\xaf\x2a\xd0\x6d\x79\x1e\xe4\x62\xdd\xd9\x78\x8d\xee\xcd\x8e\x54\xea\x59\x57\xab\x35\x8d\xab\xda\xf2\x7d\x32\x30\xc9\x2e\x2d\xbd\x50\xca\xbf\x88\x90\x34\xab\x9a\x15\x56\xdc\x82\x18\x75\xb9\x83\xe5\xbb\xae\x6f\x9b\x7a\xf5\xfd\x69\xc3\xd2\x22\xeb\x71\xf8\xf0\xfb\xe1\xbb\x67\x9a\x4e\xc4\x92\x97\x90\x2d\x00\x5f\x55\xfd\xeb\xfd\xfc\x51\x97\xae\xd8\x24\x15\x77\x2d\x79\x60\xa8\xaa\x96\x04\x62\x71\x77\x53\xbb\x69\x81\xd9\x2a\xed\xf1\xae\xd9\xd0\x06\x89\x8b\x34\xdb\xad\x2c\x2f\x11\xfe\xad\x40\xa2\xff\x30\x3e\x28\x6b\xcc\x5c\xd9\xea\xfc\x50\x85\x33\x87\xe2\x7e\x7d\x74\xd9\x8c\xcb\x8b\xb4\x23\xca\x67\x31\x30\xee\x53\xeb\x3e\x38\x2e\x58\x35\x92\xba\x62\x60\x10\xc6\xc5\xb0\x90\xac\x6c\x1a\x2b\x66\x20\x00\xa0\x0e\x2b\x4f\x45\xa9\x27\xc2\x29\x71\x9a\xb5\x29\x3c\x42\xc9\x8a\x6f\x41\xad\x00\x7d\xf9\x8c\x30\xb5\x2d\xf8\x5d\xd7\x41\x20\xec\x60\x87\x2b\x4d\x93\xd1\x2b\x45\xb3\x11\x04\x34\x4d\xe7\xc4\x53\xb5\x21\x4c\x44\xd7\x4a\xa1\x6a\xd6\x8b\x90\x9e\x89\xd5\x92\xd0\x34\x41\x49\x12\x30\x98\x62\x7f\x26\x3d\x1b\xb5\xeb\x07\x6e\xcd\x7d\x06\x4d\xc3\x98\x8e\x31\x1d\x34\x16\xa8\x44\x74\xa5\xde\xaa\x02\x04\x19\x6c\xee\xea\x85\x9d\x77\x8d\x5e\x9b\xa5\x96\x88\x35\x21\xe9\xa6\x2f\xa3\xcd\xcc\x9d\x80\x81\xa2\xd8\xe0\x40\xa7\xf2\xdf\xd2\x22\x27\x4a\xd0\x37\x1f\x09\x99\xc6\x45\x90\x7e\xa8\x90\xa3\x30\x26\x62\x28\x7d\x39\xf6\xe4\x61\x28\x74\xe8\xed\xf3\x41\x12\x13\x50\x16\xad\xd5\xd9\x41\x89\x42\x08\xc6\xdf\x6c\x2d\x52\x08\x25\x51\x42\xa0\xc6\x3e\x8e\x02\x10\x67\x55\x33\x10\x94\xb6\xfc\xa1\xbf\xc3\x65\x89\xea\x0f\xb6\x0b\xd1\xef\x7d\x1d\x10\x50\x41\x87\x4c\xa6\xc2\x0d\xf2\x82\x24\x48\x98\x3a\x1e\x4b\x85\x57\x9c\xdd\xa9\x99\xaf\x5e\xe2\x5b\x91\x57\x9a\x88\x3d\x00\x40\x99\xf0\xce\x4d\x04\x7e\x79\x65\x82\xd5\xa2\xf6\x19\x6a\xc5\x88\x35\x20\xac\x33\x92\xb9\x16\x7b\x8d\xf4\xf8\xe2\x0d\x1d\x19\xae\x41\xab\xf4\xc7\x9c\x38\x68\xe9\xc2\x8d\x53\x64\x30\xb2\x0d\x69\xae\xe3\xf5\xa5\xb8\xe9\x4d\x51\x12\x5b\xdc\x0d\x6a\x34\x20\x19\x4c\x9c\x2f\x73\x5c\x76\x81\x72\x47\x5a\x43\x4f\x86\xa7\x95\x1b\xea\x57\x34\xb3\x4e\xc5\xc8\x5b\x6b\x77\xcb\xf4\x3f\xb0\xcf\xca\x65\x86\x6e\x40\xc1\x07\x86\x61\x04\x09\x05\x47\xca\x5b\xb8\x75\xf4\xc3\x3a\xac\x14\x24\x5c\xca\x90\x8c\x4c\x2e\xa6\x27\x2a\x93\xc5\xa6\x28\xcb\xce\xea\x89\xc7\x7c\x1f\x9d\x61\xc4\xf7\xe2\xf7\x1d\x54\x26\x1c\x55\x80\xca\x17\x93\xcd\x3a\x8c\x96\xa6\x07\xf4\x26\x95\x83\x50\xcc\x1b\xb8\x15\x91\x2a\x14\x23\x02\xa3\x61\xaa\xe5\xa6\xdc\xb0\xb9\xaf\xb6\xee\xaf\x3e\x75\xe8\x91\x21\x80\x02\x05\x12\x68\xe9\xb9\x5b\x99\x8a\x50\x3b\x67\x95\x11\x04\x6d\x37\xdc\xfd\x8b\x08\x6f\xe7\xf5\xc9\xf1\xbb\x77\xe7\x57\xfe\x98\xe6\x7d\x50\x17\xc4\x4c\x7c\xe5\x4c\xe4\x46\xfd\x32\x43\x39\xb7\x80\x31\x84\x37\xd5\xd3\x12\x87\xe0\x42\x32\x65\xb5\xd3\xe7\xaa\x01\xed\x69\xb8\x2f\x46\xcb\xa3\xfe\x17\x87\xd6\x2f\xf9\x85\xf9\x9b\x0f\x89\xe9\xb8\xcf\xf9\x6f\x12\x5e\x13\x04\x37\x33\xd8\x7a\xfe\x02\xc7\xdb\xe2\x53\x07\x9a\x62\x74\x6d\x00\x22\xbd\xcf\x21\x12\xd1\xdc\x37\x38\x2b\x96\x29\x2e\xba\x8f\x58\x0b\xda\xb4\xd8\x30\x3c\xb9\xfb\xba\xfa\xfb\x1e\x0c\x1a\x0b\x44\x44\x3c\xd8\xf2\x72\x5e\x6d\xe4\x40\xf9\x8b\xfb\x21\xe9\xfc\x35\xb0\x17\x0f\x1a\xa7\x5f\xdf\x75\x3b\x36\x5c\xa5\xb3\xa1\x7b\xfe\x60\x5f\xa5\xac\x54\x63\xc3\xad\x07\xdf\x93\x04\xc3\xd7\xdf\xb4\x7c\x04\xf1\xfd\xa8\x3a\xf6\x19\x5b\x88\x06\xce\x99\x00\x01\x6f\x35\x9d\x77\x0b\x73\xbc\x91\xda\x4f\x26\xfe\x77\xb4\xc9\x0e\x6a\x7e\x1c\x8f\x55\x3a\xa6\x39\xc2\xde\xbd\xce\x37\xfb\x58\x49\xc2\xad\x73\x99\xee\x49\x02\x63\x78\x5f\x16\x36\x3e\x70\x79\xe4\x0c\xc2\x86\x1f\x30\x69\xfd\xdd\x1e\x4e\xec\x1c\xc9\xac\xdf\x57\x09\x7a\xa2\x7a\xe7\xa1\xaf\x1c\xf2\xcc\xec\x9d\xf3\x60\xfb\x8e\xd4\x89\xd5\x08\xbc\x5a\xf2\x4d\x2f\x1a\xe7\x34\x58\x4d\x26\x2d\x18\x44\x19\x62\x8c\x5e\x0c\x3a\x0a\xd6\x2d\xda\x0a\xa6\xfb\x92\xce\x0e\x93\x69\xe0\x2c\xe9\x12\x7d\xbb\x97\x84\xf7\x34\x45\xb3\x55\xd5\x93\xa8\xcd\xfe\x59\x30\xf5\x4e\x88\x6c\xd0\x49\x06\x57\x4b\xf9\xb2\x94\x51\x51\x3e\xf4\x05\x16\xaa\x32\x66\x35\x75\x07\xf0\x87\xfe\x9e\x28\xa5\x80\xe6\xe8\xc9\x97\x1e\x4d\x56\xd5\x15\x6f\xfc\x37\xf4\x87\x0e\x75\x11\x01\x62\x34\x15\xfe\x16\x95\xa8\x5e\x47\xe4\x6f\x57\x8f\x1a\xdf\xe9\xaa\xa8\xd5\x5d\xb0\x2e\x6a\x1d\xae\x8a\x73\x4c\x1b\x12\xd2\x17\x48\x50\x07\x4b\xea\x09\xad\xc2\xb5\xb0\x43\xe2\x28\xf9\xc6\x52\x1e\xb3\x04\xf8\xc4\x00\x4d\x7e\x73\x70\xaa\x85\x18\xe4\xdb\x22\xe9\x35\x9c\x5e\x61\xd3\xae\x60\x52\xce\x6a\x02\xdc\x25\x50\xe7\x0b\xd6\xf9\xe7\x9b\x2e\x55\xb1\xd3\x6e\xc6\x93\x1b\xbe\x6f\x16\xdd\xf7\xcf\xfa\x09\xd5\xf7\x2a\xff\x4d\x52\x2f\xdd\x0f\xa0\x59\xa7\x88\xd7\xa9\xe2\x9b\x66\x62\xb1\x56\xcb\xae\x66\x99\x89\x7f\x14\x8e\xcd\x2b\x77\xbb\xc8\x7b\x16\x70\x34\xb7\xdb\xfc\x53\xb5\xdd\x6f\x53\x07\x88\xa2\x8c\x89\x0f\x8b\x68\x27\xcf\xa6\x15\xeb\xc3\xcb\xe9\x2f\xd7\xaf\x0f\x6b\xb8\x5b\xcd\xce\x26\x5c\x19\x5f\x9a\xd8\xc6\x8e\x2c\x40\x12\x75\x85\x35\xcf\x3f\xe7\x0b\x2b\xae\x7f\x61\xee\x61\x1a\x69\x7a\xa0\x3c\x26\x5b\xb0\x7b\x9d\x13\xd9\x79\xf0\xbd\x2c\xba\xd1\x2c\xab\x55\x91\xf1\x4c\xbd\x71\x03\x6c\x54\x88\x99\x10\x26\x8f\x4b\x27\xf0\xda\xf1\xa8\x34\x01\x15\x1d\x6b\xca\x5a\xe6\x81\xe7\xcf\xb3\x57\x6f\xae\xe0\xf7\x43\x38\x09\x57\x0d\x73\x6e\x62\xab\xe8\x99\xab\x93\x4f\xbc\xaa\xeb\x84\x13\xaa\x2b\x4c\x3c\x53\x23\x33\x5c\xb0\xe5\x20\x72\x2d\x92\xbb\x56\x16\x63\x80\xd5\x66\xd7\xad\x80\x31\xb3\xec\x37\x92\xa8\x05\x39\x11\x2a\x81\xf8\x66\xca\xec\xc3\xf2\xd0\xe5\xcc\xaa\x75\x97\xa1\x7e\xd9\xc2\x7b\x50\xdd\x6a\x4a\x6d\xd5\xb1\x79\x69\xf4\x96\xd0\x42\x73\x94\x80\xba\x1c\xf1\x42\x62\xff\x89\x98\x04\xc3\x05\x3a\x0f\x57\x3e\x34\x7d\xa4\xad\xc2\x4c\xcb\xee\x36\x63\x95\x3b\xf8\x94\xdd\xad\x4f\x08\x18\x3a\xca\xa0\x09\x0d\x80\x9d\x09\xca\x05\xd6\xf9\xff\xfe\xef\xff\xf3\xf4\x84\x07\x7e\xd2\xb7\x1b\xfa\x52\x7e\x99\xe1\x65\x21\xa4\x82\xf4\xfc\x3f\x49\xee\xb9\x51\x7b\x93\x9f\xe4\x2b\xb1\xdf\x20\x06\x94\xdf\xa9\x9e\x1c\x1f\x89\xfe\x62\x9a\x90\xa8\x47\x37\x13\x83\x84\x85\x4e\x45\x1c\x12\x38\xc3\x23\xe3\xef\xfb\x6a\xf1\x31\x13\x5d\xc9\xf3\xf4\xcf\xfc\x2b\x85\x33\xaf\x9e\x9a\x4c\x89\x1d\x59\x05\x7a\x0e\x68\x73\x68\xf7\x8c\xa3\x46\x9d\x0f\x3c\x19\xce\x63\x2e\xe0\xd6\xec\x29\x0d\x90\x5d\x95\x92\xdd\x9e\x2d\xac\x18\x25\xac\xb5\x0b\x4a\x81\xdb\x17\x27\x32\xcf\x16\xd4\xe0\xae\x4b\xa3\x3a\xd0\x3c\x75\x57\x9c\xf6\x26\x99\x1d\x64\x79\xc5\x1f\xdb\xd1\xcd\x73\x1a\xb2\x0a\x1e\x91\xf7\xb5\x3b\x2b\xf4\x8c\xe8\xdb\x12\xa2\x15\xfd\x49\xe8\x08\x62\xa3\x3c\xbd\x87\x65\xc7\xd5\x3e\xc7\xbd\x23\xd2\xed\x16\x96\x2f\x93\xf3\x95\x56\x04\x99\xea\x85\x7e\x26\x94\xce\xbf\xaf\xe8\xcf\xc8\xc5\x9c\x1d\xd2\xc7\x8e\xe8\x9b\x7c\x5e\x22\xf9\x2d\x3e\x08\xfd\xe9\x14\xec\x69\x45\xe4\x14\xb2\x1f\x09\x4f\x49\xd5\x0b\x22\xe2\x2b\x51\x2f\x0f\xb9\x73\x95\xcf\x04\x57\x5a\x6d\xce\x36\xcf\xef\xf3\x1b\xf9\x49\xd3\xa5\x9e\xea\xaf\xe5\x4b\x92\x61\x41\x2f\xa0\x30\xa0\x77\xf0\x60\x9b\x75\x37\x5c\xd8\x77\x62\x1d\x98\x8d\x3b\x62\x39\x03\x47\xf9\x74\x31\xc8\x5f\x8a\xf0\xff\x92\x45\x7f\x4b\xcb\x41\xd7\x53\x33\xf1\x73\xe9\x5b\x3e\x49\x71\xef\x73\x26\x5f\x2e\xa7\x10\xcb\xda\x53\xf0\x07\x9a\x66\x1e\x0d\xe7\xfc\xd7\xa5\x12\x7e\x2a\x67\x48\x7f\x9d\x77\x80\x84\x97\x60\xa9\x5f\x3c\xf3\x7d\xf2\x6c\xb8\x16\x41\x56\xcd\xcc\xd6\x1c\x17\x6c\xb4\xd5\x90\x1f\x66\x2f\x68\xfe\xdb\xcc\x95\x3f\xe1\x9f\xe9\x66\x54\x8b\x5b\xdc\x70\x6d\x07\xcd\x84\x30\xd4\xd4\x24\x98\x34\x17\x42\x4a\x8b\xdb\x29\x60\x92\xf4\xea\x08\xf6\x9c\x12\x42\xd4\x8a\x2a\x66\x19\x65\x50\x33\xc4\x96\x69\x78\x3a\x32\xd9\x7f\x0c\x82\x9b\x7e\x8e\xfb\x19\x00\x49\x37\xf3\x09\x50\xd6\x9f\x79\x38\x1a\xf8\x10\x48\x55\xbc\x8e\xfe\x0c\x57\xcf\xaf\x0f\x2d\xed\x70\x81\x24\x33\x23\xae\x72\x51\x3a\xff\x17\x00\x81\x1b\xe1\x98\x0e\x51\x33\xae\x32\x6d\x2c\xaa\x0f\x13\xda\xe7\x73\xca\x26\xee\x89\x67\xd3\x15\xe6\xb9\xf2\x59\x32\x75\x96\xa9\xc4\xc5\x6a\x8e\xaa\x0c\xf3\x88\x71\xca\x84\x29\x96\x89\x70\x0c\xf2\x66\xa2\xc4\x9d\x18\x35\x84\x39\x58\xf3\x08\x6f\xb4\xe4\x1d\xcb\xeb\x21\x38\x0a\xc2\xe1\xaa\x0f\x94\x53\xce\x0d\xfc\xda\x38\x67\xc6\x4e\x52\x8e\x7e\xb2\xa3\xbb\xfc\x98\x04\xed\x34\xe4\x0b\x89\x1c\x7c\xb2\xbb\xae\x16\xaa\x4c\x9b\x2a\x24\xab\x5c\x64\xf3\x5b\x2d\x23\xeb\x0c\xdf\xd3\x03\x45\xb6\xcc\xcb\x43\xb0\xd4\x22\x67\x2e\x61\xa2\x48\xa7\x8e\xeb\xec\x39\x3e\xce\x99\xf1\xc1\x04\xfb\x1e\xa6\x4d\xdd\x24\x08\x63\x29\x40\xce\xf1\x31\x05\x22\x2a\x66\x55\x12\xf1\x29\x20\x8e\x1a\x76\x19\x3d\xd9\x30\x1b\x2d\xb9\x12\x6f\x61\xc2\xd4\x7e\x46\x39\xb6\x06\x66\xba\x2a\x37\x0a\x67\x0d\x4c\x74\xf1\xf3\x8e\x76\x7c\x01\x69\x68\x54\x82\x77\x12\x56\x81\x40\xe4\x3b\x7d\xf8\xcb\xd7\x1f\x3a\x5e\x06\x7f\x59\xf3\xcb\x1f\x3f\x90\xa4\xfe\xf0\x97\x6f\x3e\xe0\x96\x66\x54\x38\x5b\xb2\x92\x72\x5c\x03\x0a\x1a\xf4\xae\x2d\xaf\xab\x66\xdf\x09\xbf\x86\x4f\x4f\x1f\x3e\xc9\x52\x7c\xea\xe3\x2d\xee\x3c\xe8\x07\x3b\xbc\x70\x59\xf1\x0e\xaf\xf7\xdb\x4c\xc7\xd8\x09\x05\xb0\x5f\xae\xb8\xcd\x40\x96\x73\x93\xbf\xba\xdf\x3c\xdc\xaa\xe0\xc1\x52\xe7\x4d\x41\xf1\x07\xf9\xf5\x3d\x06\xc2\x43\xff\xd5\xb5\xd4\x04\xf7\x3b\x57\x12\x03\x80\xf9\x6f\x77\xd3\x74\x5b\xf6\xb3\x98\x2a\x59\x3c\x1a\x74\x39\xce\xd2\x5e\x78\x10\x5d\x37\x18\x41\x87\xe0\x6d\x89\x89\x31\xb8\xf7\xf8\x39\xc8\xbc\xab\xb2\x36\x2a\xa0\xa4\xd6\x63\x89\x82\x0e\xe6\x5a\x67\x4a\x8e\xa1\x2f\x9b\x26\x69\xcf\xd5\x61\x3f\xbf\xb0\x16\xe1\x27\x88\x81\x5d\xba\x7a\x96\x34\xe3\xf5\x02\x77\x01\xb8\x2e\xe1\xa1\xaa\x15\xac\x40\x7f\x61\x13\xbb\x46\x83\x6c\x5d\xe0\xc3\x92\x45\xf9\xa6\xfe\x0d\x0e\x37\x23\x45\xa5\x26\x9a\xbf\xdb\x12\xa2\x13\x28\xb6\xf9\xb8\x2d\x21\x3f\x79\x0a\x6c\xbe\xe0\xe6\x27\xa1\x12\x04\x11\x4b\xb6\xee\x93\x11\x11\x1a\xb1\x57\xaf\xea\xbe\x0f\xba\x20\x46\x17\xaa\xe6\xd2\x28\xb7\xe9\xbc\x90\xe1\x6e\x2d\x0b\x68\x83\x7e\xa4\x3f\x6e\x5e\x07\x26\x4b\xd6\x3f\x6e\x85\xba\x4f\x7f\x2c\x49\xce\x45\xdb\x74\xfe\xdc\x8e\xf3\x17\xcd\xa6\xf1\xe7\x3a\x7e\x0d\x01\x44\x17\xfd\xb0\x18\xf0\x66\x92\xed\x71\x5b\x77\x2f\x27\x0c\x4e\x1e\x81\x9c\x18\x8c\x64\x0c\xec\xf1\xe2\x4c\xe7\xb6\x23\x1d\x84\xf3\x8e\x05\x8e\x18\xd7\xa2\x66\x6d\x00\x75\xca\xf0\x49\xb0\x69\x3b\x11\xe1\x33\xc2\x7b\x0e\xe6\xda\x43\xdb\x10\xbe\xe9\x0f\xae\x3e\xb4\xee\xc3\x37\x1d\xd3\x8d\x7b\x09\x59\xfa\x7a\xcf\x95\xaa\x88\x41\x01\x17\x1e\x8a\x43\x9a\xc9\xba\xf2\x9c\x30\x53\xcc\x88\x54\xd4\xe0\x14\xb5\x9e\xea\xa6\xe1\x6c\x1e\x0c\xb8\xbf\x69\x52\x27\xa4\x21\x40\x1c\x9f\x13\x79\xca\x85\xcd\xe7\x11\xbb\x43\xcb\xcf\x06\xd5\xc2\x6b\xfd\x39\x0c\x16\x87\x0d\x6a\x0b\xcf\x53\xfd\xd2\xfc\x48\x7e\x1c\xca\x8d\x36\xf2\x86\x15\x6b\xfb\x0d\x8e\x08\xdc\x13\xcb\x8f\xa5\xdc\x70\x1a\x10\x82\x69\x31\x4f\xe3\xdb\x0a\xe8\xbc\x84\xda\x52\xbb\x15\xce\x9d\x97\x8b\x1c\xa6\xc9\xf0\x7b\xab\x59\x13\x9e\x17\xc1\xe8\x09\x84\xa3\x83\x58\xfd\x6c\xeb\x1d\x06\x48\x63\xaa\xe6\xaa\x37\xdd\xc8\x60\xa6\xe6\x65\x7f\x03\x77\x10\x18\x92\xf0\xe4\x8a\x5a\xbd\xfb\x36\x3c\xab\x89\xc0\x3d\x43\x1b\xcf\xf8\xc0\x2e\x94\xd8\xfd\x01\x3f\x84\xe4\xe9\x54\x0e\xd8\xf9\x09\x34\xc0\x7e\xb7\x45\x65\x74\xc4\x3d\xc3\xb6\xa4\x46\x71\xc8\x17\x26\x61\x0a\xe9\xfd\x8e\xa5\x7c\xa3\xad\xf8\x26\x0c\x67\x43\x11\x4d\xff\xc6\xa5\x6b\xfd\xa8\x49\xcf\x72\x6b\x46\xd2\xfe\xb5\xea\xa9\xf4\x7f\x7c\x30\x1c\x25\x61\x20\x0b\xa9\x29\xf0\xd3\xff\x8c\xa0\x86\x82\xb5\xcf\x13\xdd\x38\x10\xaa\x34\xe3\xd1\x42\xf3\xf5\xdc\x25\x54\x91\xa9\x71\x7a\x69\xc9\xd0\x5b\xd0\x70\x25\xa9\xd7\x24\xe4\x33\x21\xd0\xd9\x74\x97\x81\xb3\x68\x6a\xc0\xe4\xb6\xbe\x25\xc6\x1a\x97\x73\x35\xaa\xd6\xed\x7c\x85\x89\x37\xbe\x54\xc1\xa1\xc4\x68\x7f\xd8\x15\x30\xfd\x72\x97\x3d\xd3\x75\x29\x6c\xb1\xf7\xe6\xfc\x3c\x8b\x54\x08\x9a\xb0\x80\x9e\x59\xdf\xab\x2e\x83\xe9\x97\x98\x8c\x5f\xa9\x3d\xd7\xa6\x5a\xf4\xa9\x4b\x0f\x2d\xfa\x77\x6d\xb3\x92\xd8\x43\xce\x82\x9f\x8e\xcb\x6e\x8d\x68\x26\x0c\xb0\x24\x2a\xb5\x6d\xc0\xc7\x39\x12\x91\xd7\x19\x2e\x39\x30\xd4\x48\x7b\x1b\x0d\x43\x55\xb9\x3a\x21\x83\x18\x25\xae\x2a\x68\xca\x3f\xaf\x36\xb9\x65\x9f\xaa\xcf\x91\x00\xf1\xb4\xe1\x1d\x6f\xe3\xee\x0e\xb7\x35\x8c\x6f\x27\xf8\xb0\xcd\x6b\xb9\xb5\xac\xd8\x07\x87\xa5\x65\xf1\xdf\x85\x15\x55\xbf\x9e\xa8\x59\x6a\x1b\x90\x14\x20\xcf\xd4\xce\x06\xc2\xee\x6b\xdd\x80\x28\x05\x7d\x20\xa3\xf8\xaf\xaa\xbb\x7d\xd4\x3b\x24\x55\x44\xf6\x57\xd6\xf1\x50\x43\x92\x55\xcb\xa1\x1d\x4d\xdb\xe3\x3f\x3c\x2c\x9e\xc8\x26\x86\x31\xd5\xe8\x06\x8a\x13\x65\xe0\xe1\xf1\xc8\x54\xb4\xea\xe0\xed\xce\x28\xc3\x07\x05\x03\xd1\xf7\xec\xd7\x24\xd0\xd3\x05\x67\x99\x97\xc0\x83\xec\x09\x75\x41\x90\x3b\xad\x32\x18\x02\x14\x5e\x11\xf3\xb0\x8b\xda\x6e\x32\xda\x1a\x99\xca\x73\x74\x9c\xf0\x46\xc1\xaf\x61\x17\x4c\x90\x19\x56\xed\x44\x82\x78\x44\x74\xae\xcf\xf9\x0c\x11\x47\x6e\xa1\xd1\x81\x6e\x92\xf0\x41\xfd\x72\xd4\x68\x40\x99\x83\xa8\xfa\x01\x89\x9f\x9c\x1d\x63\xea\xe0\x45\x1c\x66\x4c\x5c\x84\x86\xb9\x7e\xd0\xa7\x34\x62\xd6\x06\xa6\x8f\x2d\xf6\xd9\x93\x78\x90\xa5\x58\xa5\xf3\xdf\x30\xc3\x45\xab\xd1\xaa\x32\x59\x7a\xad\x11\x95\x6b\x8a\x8f\xe2\x72\xe4\x9c\x70\x1f\xdd\xd2\xbf\xa7\xdb\xed\xd3\xa2\x78\x34\x31\xea\x80\x2d\x72\xc3\x1e\x98\xd8\xa9\x0e\x62\x40\x26\x83\x9a\x02\x2e\x73\x7a\xee\x18\x20\x5a\xa7\x9f\xf8\xf0\xe7\x83\x9a\xb9\x8e\xc2\xcf\x9c\x20\xaf\x5f\xbd\x8e\x0f\x80\x86\xc8\x9d\x37\xdc\xe1\x1d\x2d\x0e\x9b\xe1\x58\x06\x1c\x7a\x90\x35\xf0\x41\xbf\xb3\x83\xee\x0a\x45\xf9\x39\x22\xde\xdb\x03\x93\x22\x01\x0b\x0f\x4e\x49\xc0\x19\xfb\x69\x75\xdc\xf1\x04\xe0\x34\x6f\xec\x5b\xff\x77\xf2\xc7\x53\xcd\x4f\xa1\xc1\x7d\x1c\xf2\x4d\xf5\xb1\xa2\x02\x3f\xd3\x1f\x7c\xcf\x34\x6a\x40\xea\xa3\x04\x50\xbb\x9c\xfd\x55\x94\x6f\x63\xe5\x1c\xc6\x59\x26\xd4\xd0\x78\xa6\x12\x25\x50\x0c\xb5\xf6\x1b\xbe\x57\xf9\x28\xc7\x69\xb3\xd8\x43\xf6\xbe\x55\xdf\x97\xbf\xc1\x11\xa5\x21\xae\x6e\xad\xf1\xea\xc0\x33\x57\xbd\x22\xd5\x4c\x1a\x54\x1c\x87\x13\x5d\xa6\xa1\x9e\x75\x93\xf7\x08\x5b\x4a\xe9\x38\x3e\x05\x3c\x0c\x06\x8d\x04\xe5\x93\x35\x5d\xb9\x64\x0f\x2f\x0e\x0d\x61\xad\xef\x34\xa2\x99\xe4\xdb\xb5\xbf\x0a\xe6\xfe\xae\xe0\xe7\xb6\x92\x9b\x29\x0e\x88\x99\xcf\xd9\x70\x18\xeb\xad\x0a\x2f\x4f\x20\x74\x1c\x08\x00\xa5\x2d\xb1\xbc\x19\xb4\x01\x43\x4f\x6d\x80\x91\x82\xc9\x73\x97\x32\x42\x9b\xd4\x8f\x72\x44\x8d\x01\x0e\x4c\xe7\x94\x4c\xe3\x89\xa8\x74\x18\x8d\xc7\xe7\xc5\xe3\x41\x9e\x1e\x61\xfe\x20\xc4\x32\xa2\x91\x81\x1d\x70\x64\x03\xdc\xcd\x7c\x1d\x9d\x4e\x72\x17\x0c\xc1\x1c\x53\xcc\x5c\x55\x7f\x72\xb8\xa4\xa9\x30\xcc\x96\x36\x93\xa9\x82\xc7\x99\x7c\xf9\xac\x20\xbe\x93\xf2\xb3\xc1\x6f\x0f\xb6\x6e\x9a\x8f\x12\xe2\x6a\x8e\x4f\x9f\xb3\xe2\xb0\xae\x92\xc9\x01\x4c\x5f\xc7\xb9\x24\xc2\x54\x8b\x30\xdc\xf3\x0b\x4e\x98\xe8\xa2\x3a\x83\x9d\x5b\xbc\x32\xb6\x57\xf2\xb9\xea\xc6\x13\xd4\xa3\x5e\x47\xe3\x8a\xd4\xcf\x85\xf9\x82\xcf\x73\xd5\x9a\x72\xd1\x8a\xdd\xc6\x67\xbe\xf6\xbc\xb8\x66\xea\x59\x44\x21\xb1\x35\x6d\xa2\x33\xbc\x74\xce\x5c\x54\xbc\x92\x40\x10\xd8\xc8\x14\x76\xfb\x46\xb9\x81\xeb\xb6\x83\x83\x0a\x84\x4e\x0d\xaa\xe0\x48\x6d\x3d\x9b\x62\xb2\xe9\xe6\x4d\x09\x03\x4e\x51\x5b\xf5\x6d\xce\x51\xa1\xd3\x60\xe6\x88\x21\x29\x3f\xb1\x75\x46\xae\x5a\xf8\xcc\x80\xe4\x88\xb1\xcc\xb8\x06\x5f\x81\x26\x20\xa6\xa9\x3b\x54\x7f\xb4\x42\xb8\xb8\x49\xaf\xb4\x46\x36\x6a\x78\x09\x98\xbb\xca\x87\x41\x04\x99\xa7\x66\xe6\x2f\xbc\xcc\x11\x21\xec\x1f\x6c\x77\xf3\xcf\xf4\x1f\xbc\x0c\xf4\xa7\xaa\x8b\xf2\xd3\x3f\x4d\x28\x73\x21\x16\x79\x89\x8f\x46\xa6\x7a\xc2\xed\x71\xcf\x50\x2c\x58\x3f\xb0\xac\x83\xe9\x0c\xf9\xcb\xce\xec\x7f\x09\x65\xd4\x4f\x92\xcf\x84\xb6\xa2\xdd\x1e\x6f\x9c\x82\x11\xa9\xcd\x7e\x93\xeb\x9a\x53\xfc\x4a\xff\x17\x9f\x99\xe1\xd0\xc5\x4b\x99\x6f\xa4\xf5\xf3\xdc\x1c\x9d\xc7\x60\x4e\x56\xf0\xce\xcd\xf1\xe5\x38\x77\xad\x16\x7f\x26\x0c\xbe\x69\x25\x29\xf6\xaa\x26\xc4\x70\xb1\x73\x55\xcb\x07\xcd\x23\x0c\x7d\xbb\x60\x2e\x10\x34\x1e\x21\x0e\x58\x16\xec\xc4\x4a\x48\x5d\xb5\xc5\xe3\x4f\xb4\x93\xb9\xd3\x18\x76\xb1\xed\x45\x4c\xca\x7c\xe4\x31\x71\x19\xb4\xae\x22\x2f\x98\xb7\x81\x97\x2b\xb6\x65\x60\x78\x33\x00\xb4\x49\x39\xa7\x1d\x26\x96\xe8\x52\x2c\x8f\xbc\xc4\xfb\x40\x6b\x2e\xd6\xa3\x6c\x32\xe0\x7a\xc4\x2c\x51\xd9\xf6\xf0\xcf\x1e\x4f\x3b\xfb\x8c\xd1\x91\x9d\x7d\x4d\xcd\x3c\x05\x56\x4a\xb4\x5f\x0c\x42\x4e\xfc\x6a\x19\xcc\x07\x0c\xea\xd9\x40\xfe\xba\x2a\x48\xb2\xc2\x5a\xdc\x55\xef\x1f\xe3\x7a\x09\x9f\x60\xef\x73\xb0\xee\xc1\x7a\x02\x99\x5d\x28\x78\x38\xe8\x2f\x7d\xdc\x89\x6e\xaa\x65\xde\x67\x4e\xc3\xaa\x73\x80\xf8\x11\xa9\x77\xc0\x0e\x99\x23\xe1\x7c\x60\xd2\x2b\x5e\x37\x26\x9c\x7d\x9b\x8e\xd6\x23\x9e\x2d\x71\xea\x77\xb2\xdc\xbd\x46\xc5\x23\x44\x18\xcc\xd2\xa0\x3e\x4c\x58\x60\xfa\x6b\xab\xcf\xc3\xe7\x28\xa2\x1a\xa6\xde\xb4\x0e\x21\x4a\x88\x21\x1f\xa2\xe6\xb3\x49\x53\xde\xe7\x47\xca\xf5\x1d\xb9\x9b\x1c\xf1\x65\x0e\xac\xc4\xfd\x69\xd8\x44\x33\x3b\xe8\x2b\x4c\x94\x64\x02\xde\x8c\x9a\xf6\x2e\xd6\x47\xde\xc2\xd5\x59\xa8\xb1\xb4\xbb\x15\xba\xb4\xe3\x30\xc6\x7c\x99\xb2\x14\x0e\x5f\xb8\xcc\x7b\x5a\xfd\xe3\x5d\xad\x8a\x61\xee\x54\xb3\x66\xa2\xae\x21\x4b\xb0\x69\xf9\xe1\x81\x7b\x5a\xfb\xc6\x5a\x0b\x99\xe4\x8f\x65\xb9\x0b\x9a\x88\xbb\x1f\x78\xec\xe1\xa4\x8d\x4d\x65\x27\x28\x9a\x52\x59\x8b\x5e\x11\xf5\x26\x66\xba\x03\xab\xc3\x7b\xb8\xee\x43\x7c\xc3\x74\x65\xc6\x1d\xdd\xe3\xff\x3b\xde\x66\x76\x79\x83\x37\x37\x70\x81\xe3\x60\x98\xd3\xce\x02\xfa\x0f\xd7\x0b\x23\xec\x13\x55\x89\x4b\xc7\xc0\xb6\xd2\x07\xc5\x70\x5d\xb3\x02\xed\xe1\xee\xc5\x56\xfb\xe9\x84\xb5\x7e\xc0\xcd\x70\xb8\x38\x8f\xf2\xa9\x38\xc2\xf1\x78\x4e\x82\xe4\xc3\x05\x06\xee\x67\x51\x5d\xb1\xfb\x59\xd0\x41\xc1\xc5\x43\xf5\x9c\x4c\xd6\xa1\xf8\x1b\xd4\x22\x06\x4a\x12\x31\x36\x36\x05\x51\x8b\x25\x90\xe5\xd9\x2c\x62\x85\x5a\xb6\x3d\xe3\xe8\x24\x1a\xa0\x52\x1f\x9e\x19\x06\x26\xd1\xdc\x9b\x75\x13\x84\x1b\x13\x2f\x3a\x9c\x81\x61\xd7\x67\xf1\xec\xdc\x08\x83\xac\x33\xa9\xec\xf2\x80\x8f\x76\xb2\x9d\x32\xd3\xd0\xef\x6d\xf7\xd4\x67\xc8\x72\xe0\x99\x35\x58\xfd\xf9\xe5\x15\x74\xfd\xb4\xf1\xe8\xfc\x5e\x31\xbd\x4f\x7f\x5e\x97\x35\x42\x28\x73\xcc\x78\x25\x80\x8b\x05\xfb\xbe\x56\xb5\x06\x98\xbd\x29\xcd\x25\xa9\x2e\x36\x42\x2e\x43\xcf\x68\x63\x71\x45\xe7\x9f\x22\x32\x3c\xef\xf0\x6e\x57\x2e\x48\xfe\x9f\xf1\x15\x7f\x5b\xe3\x0d\x1e\xf7\x04\xc8\x9d\x96\xf7\x6e\x24\xb0\x4b\xe4\xab\x81\x60\x5a\x74\x4a\xc2\x9b\x30\x3d\xfb\x47\xd3\x33\x04\x9d\xf2\x01\xb2\x19\xbe\x4b\xda\x07\x5d\x17\x4f\x98\x8a\x8f\x89\x54\xed\xe6\xee\x72\x30\x3c\xd8\x87\x30\xc0\xaf\x34\xfd\xb9\xe4\x47\xab\x9a\x21\x22\xb4\xeb\x0b\x87\xcc\xea\xe0\x14\x83\xdf\xf7\x80\xdb\x14\x5c\x4a\xf8\x4b\x98\x47\xb0\x25\xa6\xa2\x85\xab\xd5\xc2\x4b\xe3\x00\xb7\x39\xea\xc6\x12\xc9\x64\x1b\x7e\x88\xe8\xda\xcd\x70\x9c\x82\xfb\xa2\xb3\x97\xe6\x88\x5b\xde\x97\x78\x02\x60\x9b\xdf\x72\x54\xb1\x0e\xaa\xf5\xae\xa4\x19\x2d\x3a\x7b\x53\x86\x5f\xbd\x22\xf9\x8a\x85\x76\x33\x9b\x1f\x2d\xc9\xb8\x6f\x5e\xe9\x6c\x9a\xe6\x09\x90\x6e\xd7\x88\x1f\xc4\x7b\xfd\x1c\x03\x89\x2a\x8d\x47\xf5\x5a\xbe\xc6\x20\x3b\x0d\x5c\xe8\x42\x18\x8e\x41\xe6\x4d\xc1\x6b\xf6\x82\xfe\x8c\xa5\x5e\xf7\x10\x8e\x89\xbe\xd8\xcb\x3b\x8e\x7f\x23\x06\x48\x9c\x41\xd8\x59\x6e\x96\x12\xcb\x88\x05\x1e\xe8\x02\xe5\x16\x88\x1d\x88\x24\x8e\x37\x3b\xbc\xa0\x02\x9d\x27\x78\x6c\x22\x90\x69\x78\xc5\xa3\xa1\x2f\xc2\x70\x06\xc3\x3e\xe1\x42\xdb\xfa\xf5\x46\x58\x45\xac\x26\x34\x9f\x12\x73\xf6\x88\x39\x00\x16\x3c\xcd\xc4\xc4\xf8\x84\x9d\xc4\x99\x65\x67\x64\xa2\x01\x08\x0f\x66\x20\x22\x6a\x88\xe1\x6e\xe0\xcb\x63\xaf\x6e\x60\x6f\x62\xc2\xc6\x3d\x52\xdf\x2b\x9e\x20\xf1\xba\x1a\x41\x78\x03\x18\x00\x99\x97\xf3\xf0\x20\x57\x70\x2f\xff\xbf\x8e\xc8\x47\x40\x80\xa3\x17\x8a\xd0\x51\x8d\x1f\x2b\xd2\x25\x13\x56\x13\x26\x83\x9b\x34\x9e\x2b\x16\x62\x03\x62\xc8\xdc\x14\xf1\xb0\x22\xec\xb4\xe5\x2a\x6f\x0b\x0b\x9a\xa6\x84\x99\x3d\x48\x41\x80\xc3\x20\x19\xf9\xa6\x6b\xac\x0a\x3a\x48\x08\xe4\x23\x5b\xcc\xd2\x7a\x33\x2b\x6a\xca\x68\x66\xea\xbd\x06\x8f\x69\xf1\x7e\xc7\xe4\x59\x68\xbd\xb5\x83\x21\x3f\xfe\xd3\xe5\xf9\xbb\xa3\xf4\xd3\xd3\x9b\x9b\x9b\xa7\x5c\xfc\x29\x49\xd4\xec\xd9\x5e\x70\x50\xb6\xff\x79\xf6\xf6\x28\x2d\xfb\xc5\x93\x59\x7a\x26\x54\xdb\x13\x43\xbd\xb7\xc2\x9d\x34\x2e\x81\x88\x40\xfc\x7e\x6a\xae\x3b\x46\x5f\x3f\x09\x03\x7f\x86\x1c\x08\xaf\x9e\xd9\x05\xea\x62\x8a\x7d\x60\x70\x7e\x2f\xda\x12\x66\x75\xf8\x08\x32\xe8\x30\xff\x38\x15\x8d\x67\x08\x52\x51\x3b\xda\x8d\x37\x0b\x7d\x7d\x65\x00\x62\x56\x24\x27\xb0\x1f\x71\x99\x58\x38\x77\x0a\x73\x08\x5a\xa2\x52\xac\x4b\x8d\x0e\x98\x79\x69\x0b\x51\x16\x3f\x0c\x0b\xc3\x18\x1e\x2f\x28\x3c\x4f\xff\xc4\xd7\x08\xbc\x50\x82\x5b\x9c\x65\xb8\x05\xe0\xd9\xb0\x30\x42\x02\x07\xf2\x0b\x0d\x40\x02\x1d\x9b\xfc\xe4\xf3\x9c\x0c\x35\xaa\x44\xc5\x6c\xb6\xc7\x23\x22\xec\xc4\x6e\xe0\x9a\x54\x37\x2e\x12\x5f\xe2\x4c\x67\xdb\xbc\x88\x1d\xfc\x91\x5a\xc8\xdb\x0d\xc7\xd4\x3c\xa4\xe2\x09\x30\x39\x45\x01\x7d\x04\x28\x53\x91\xd0\x35\xc1\xef\x5d\x10\xa6\x54\xe3\x5f\x97\xc3\x8c\x20\x82\x51\xd9\x23\x78\xcc\xd4\x5e\x14\xc5\x87\x5b\x35\xbf\x7b\x8c\xbe\xe9\xe9\x23\x8c\x9c\xb8\xdd\x46\xd4\x03\xa4\x23\x66\x6a\xa7\x0f\xc3\xd9\x88\x36\x79\xce\x4f\x69\xd3\x88\xbb\x51\xc0\x41\x1b\x23\xa6\x42\xc5\x8f\xb1\x68\xe6\x5b\x38\xc4\x3f\x89\xf5\xa7\x9d\xeb\x16\xc3\x0d\xb1\x0b\x4e\x5d\x5a\xcc\x8d\xda\x2e\x05\xdd\x8d\xb7\x28\x4f\x88\xec\xa3\x90\xa2\x32\x5f\x1b\xdb\x8a\x31\x08\x42\x6e\xb0\x6f\x9e\xb9\x01\x8d\x02\x8e\x84\x27\xbd\xd4\x6a\xce\xe3\xe2\xe4\x3e\xc8\x1c\x3e\x37\x35\xdc\xd9\xc4\xda\xca\x83\x85\x27\xf2\x15\xce\xd6\x6e\xd3\xdc\x5a\x4c\x96\x53\xfc\xd2\x58\x6d\xe1\xc8\x3c\x98\x0e\xca\x43\x4e\xd5\xe5\x59\x51\x40\x71\x31\x6c\x7f\xf5\xcc\x2b\x9e\xca\x33\x33\x58\x55\xf0\x45\xea\x07\x07\x51\x3b\x8f\x5d\xd7\xe5\xe5\x12\x0d\x6b\x12\x6a\xe4\x9a\x2c\xee\xfc\x5f\x83\x50\xe9\x2a\x7f\xd4\xac\x04\xb1\x2e\x84\x52\x69\x74\xf7\x3a\x35\x80\x71\x10\x11\x07\x35\x0c\x77\x12\x0c\x72\x3a\xdc\x49\x5c\x34\x0c\x79\x12\x14\xc5\x91\xe9\xd4\x0d\x93\xd7\x1d\xd1\x8a\x8c\xe3\x99\xf8\x91\x7e\x46\x48\x93\xe9\x45\x1b\xca\x1c\xf7\xae\xf2\x5d\x77\x8d\x45\x38\xb8\xcf\x08\x6e\x32\xd0\x77\x7c\x8e\xf8\x31\xd5\x17\x3f\x29\xc1\xec\xde\x77\xf3\x58\x54\xcb\xe5\x6c\xde\x12\xf7\xcd\x11\x44\xf0\x5a\x14\x13\x75\xfe\x9d\x5e\xe2\xb7\x80\xb0\xc9\x19\xb0\x42\x3e\x24\x51\x0d\x5f\x9f\xab\xd9\x94\x24\xc2\xde\x67\xf8\x48\xcd\x29\xe5\x88\xed\xcf\x3b\xc2\xf6\x63\xcb\x99\x49\x11\xe6\xfe\x33\xfe\x42\xec\x13\xdc\x4e\xf1\x7d\x0b\x0a\x5d\x72\x8a\x82\xf1\xa7\x4d\xb9\x1d\x82\xb0\xb9\x16\xeb\x28\xe1\x96\xbd\x3e\x11\x98\x65\x70\x04\x46\xe8\x50\x81\x1d\xf6\x20\x61\x8c\x03\x82\xb0\xb9\xf4\x10\x3a\x41\xa0\x31\x2f\xde\xbc\x93\x9f\x70\xa4\xd2\x58\x83\xf0\xa4\x62\x23\xad\xc4\xdc\xb3\x66\x53\x6e\x5a\x96\x27\xde\x75\xa2\xfc\xb2\x37\x5f\xf1\xcb\x41\x14\x6d\xbe\x84\x49\x02\xff\x75\xa9\xc4\x72\xfb\x62\x17\x6d\xf9\x74\x58\x8c\x26\x47\xa6\xfa\x12\x1f\x2e\x5d\x4d\x0a\xf8\x8f\x4b\xcb\x61\x2a\xf8\x3c\x18\xb9\x9f\x11\xb3\x49\x23\xbc\x7b\xd8\xa5\x5d\xc5\x1a\x75\x45\xd0\x41\x83\xc0\x0e\xff\x90\x00\x70\x07\xfe\x76\xe1\x58\x43\x5b\x05\xc4\x39\xea\xd6\xa9\x9b\x1f\x76\x4a\xed\x25\x84\x89\x3e\x60\x36\x8b\xfa\x1d\x95\x96\x13\xbd\xb4\xd5\x4e\x37\xcd\x0a\x4c\x2b\x02\x00\xc8\x4b\x56\x7b\x7e\xf1\x8d\x26\x82\x63\x56\x32\x83\xe3\x90\xbf\xda\x52\xfd\xd7\xf2\x06\x89\x54\x4f\xcc\x8a\x0b\xb1\x42\x7c\x4b\x2d\x51\x1e\x2c\x0f\x0a\x0f\x0b\xc5\x1a\x95\xf1\x2f\x1d\xd8\xfd\x85\xf7\x6b\xa4\x7c\x30\x42\x8b\xd0\x5d\x92\xb9\x22\x0e\x3a\x25\x63\x0f\x3a\x10\x51\x62\x4b\x1d\x53\x5f\xcb\x91\xcb\x3f\xbd\xf0\x0e\xd1\x42\x1f\x07\xbb\x90\x2f\x97\xc3\x0c\xb7\x70\x8d\x6f\xe5\x4b\x5e\xb1\x1d\x62\xd3\x38\x08\x10\xe5\x3d\x1d\xae\x75\x00\xef\x26\xe0\xe7\xf2\x11\xab\xdd\x1b\x3a\xce\x53\xb9\x76\xcf\xfb\x08\x53\xec\x6c\xf3\x6f\xd3\x3d\x05\x59\xf7\xdd\x18\x1a\x9b\xb8\xe6\x14\x51\x3c\xca\x8c\xb0\x9d\xaf\xf1\x6d\xa7\xe0\x1e\x3f\xde\x2e\xc0\x1e\xbf\x61\x60\x50\x33\xda\x68\xc2\x2f\x79\xa8\xf8\xae\x69\x02\x58\x8e\x08\xcd\xf2\x9a\xd2\x21\xcc\xf4\xa9\x60\xed\x84\xc1\x57\xc4\xb0\xae\x15\x3d\x85\xbb\x86\x20\x94\xb9\xe3\x0c\x18\xb5\x16\xaa\xab\xa5\x89\x7b\x88\xfe\x70\x0f\xc4\x86\x08\x41\x3d\x7a\x34\xb3\x61\x89\xee\x91\xd1\xd1\xec\x7a\xa3\xef\x89\xe1\xf8\xb1\xef\x24\xf9\xa5\x69\x57\x1f\x7c\x00\x7b\xa7\x7d\x8d\x82\xd7\x43\xd8\x67\x18\x17\x04\xf6\x00\xa0\x0f\x0c\xeb\x6b\x34\x74\x7c\xc5\x9b\x6e\xfc\xf6\xaa\xa8\x5a\xe4\x9d\x11\x18\xb7\x58\x04\x96\x99\xf9\x3b\x4b\x00\x6c\xb5\x3a\x89\x1e\xc5\x86\x1b\xb2\xb7\xa6\xf8\x49\x7d\xa5\xf4\x36\x9e\x5d\x65\xf9\x83\x63\x94\xf3\x33\xbe\xac\x67\x95\x6b\xde\x37\x48\x20\x92\x88\x04\x84\xdf\x17\xa5\x19\xfd\x4d\x10\xf5\x58\x35\xcb\x9c\xaa\x5f\x9a\x3e\x88\xac\x1c\xbd\x5f\x15\xf8\x67\x23\xe2\x7a\x64\x2a\xc3\x95\x63\x56\x26\x8c\xe8\x46\x71\xf8\x31\x85\x48\xbd\x0b\x3a\x0a\x6f\xc2\x7b\x5d\xec\x2f\x79\x57\xe7\x62\x90\xa4\x0e\x72\x8a\x22\x88\x02\x5f\x47\x8e\x24\xdd\xcc\x37\x13\x50\x8e\xb5\x58\xd8\xf9\x62\x78\x18\x92\x8d\x77\x7e\x10\xf8\x28\xaa\x81\xca\xdf\xb9\x84\x27\x92\xe4\x74\x43\xa2\xdc\x26\x12\xc8\x51\x11\xb3\xc1\x3f\x1c\x08\x15\x3d\x7e\x30\xe1\xcb\x63\x5a\x8c\xeb\xb8\x3b\xaa\xc5\xef\x35\xb8\x99\x0e\x87\x1c\x6a\x1d\x07\x71\x91\x5d\xd6\x54\x80\xe4\xdf\x63\x21\x13\x83\x06\x44\x26\x9a\x02\x57\xd3\xe7\x5e\x8b\xa9\xe1\x0d\x61\xea\xbf\x66\x77\x13\xbf\x13\x30\xec\xf5\x28\x92\x6f\xd4\xe9\x2f\x8b\xe8\x7b\xd0\x26\x21\xa2\x15\x43\x29\x7c\x14\x9e\x0b\x03\xbc\xb3\x48\x1c\xac\x2b\xec\xb0\xd3\xbb\x06\x77\xdc\x7a\xd7\x25\x61\xba\xe4\xee\xe5\xfe\x58\x5d\x07\xae\xff\xee\x0a\xda\x35\xec\x25\xd3\x18\xe7\x26\x19\x76\xf2\xce\x12\x21\x97\x11\xdb\xa1\xfc\x2b\x81\xbc\xa6\x2f\xcc\x58\x4a\xbf\x31\xe5\x24\xb8\x12\x9b\x3f\xaf\xf2\x61\xb1\xcb\xe6\x4b\xe4\x32\x4f\x68\xfd\xcc\x81\x9f\x94\xc9\x1d\xbc\x4b\xa1\x54\x7b\xe6\x9f\x35\xc8\xa2\xe0\x5d\x67\xfe\xe1\x04\x1f\xc7\xeb\x5b\x57\x4c\xaf\xb3\x2d\xf4\xe7\x20\xdd\x53\x4a\x98\x62\xea\x85\xbd\x07\x92\xdf\xe0\xf9\x26\x73\x86\xe5\xe3\x36\xf4\x0d\xbe\xb6\xd9\x94\xae\xa3\xe9\x7b\xfa\xe5\xbb\x17\xfb\x1b\xc6\x05\x5d\x19\x97\xae\xe2\xad\xbe\x15\xe2\x7b\x23\xef\x40\xc0\x13\x38\x48\xd5\xd3\x32\x58\x2b\xe1\x93\xb5\x76\x88\x1d\xdf\x0e\xa1\xe5\x4d\x3f\x3d\x57\xdf\x35\x37\x89\x1c\xaa\x33\xb8\x2f\xca\xcb\x04\x9a\x12\x37\x2a\x69\xcc\xb1\x68\xfc\xc8\x54\x22\x5b\x69\x84\xc1\x71\xfe\x20\x78\x10\xce\x14\x17\x36\xc8\x1e\x1a\x61\x86\x5b\x1d\x65\x6b\xb9\x55\x8c\xa3\xe9\x48\xad\x60\xd8\x7d\xb3\x62\xa8\x1a\xb5\x1b\x42\x7c\x4e\xc3\xdc\xcf\x51\x73\x47\xa6\xa3\x84\xfa\x48\x95\xa7\x12\x79\x57\x5a\xd1\x27\xf9\xad\x1f\xee\x61\x5c\xdf\x8f\x10\xe2\x73\xfa\xc1\xad\xc0\xe3\x4b\x04\xb8\x3b\xfa\x43\x12\xb7\x86\xd6\x8e\x6c\x66\x86\x5d\xf4\x41\x6d\xae\x82\x93\x1c\x76\x5a\xc5\x80\x33\xe1\x2b\x81\xf1\x91\x2a\x39\x62\x09\x31\xc1\x3c\x88\x39\xdd\x64\xe8\xcd\xfb\x89\x00\x5c\xeb\xb8\xa4\x03\x0d\x0c\xe5\x3c\xd8\xe4\xb9\x24\xfd\xf2\xcc\x1e\xb8\x2f\xa5\x0d\x9a\x79\xff\x91\x2c\x70\x16\x74\x52\x38\xbf\xf0\x50\x01\xeb\x67\x2b\x59\xc8\xab\x4b\x6e\xaf\xf2\x06\x0b\x5a\x1d\x57\xe6\x88\x39\xa0\x1c\x11\x1f\xc3\xd9\x8e\x0d\xf9\xb6\x40\x61\xce\x64\xfb\xc8\xb8\x59\x67\xc5\x03\x28\xbe\xfb\x0d\xed\xe4\x38\x58\x68\x13\x7a\xe5\x54\x77\x1a\xd9\x8f\xbb\xe2\xcf\x75\x79\xca\xc8\x21\xcc\x41\xa1\x67\x16\x6e\xf5\x31\x82\x78\xb4\x5b\xb5\xf0\x3a\xb4\xb5\x66\x62\x11\xa0\x02\x2a\xfc\xd6\x8d\xd2\xbd\x9c\xed\xa9\x01\x0c\x26\xa8\xa2\x47\x77\x11\x85\x2f\xe8\x00\xc8\xc6\xdd\x3d\x00\x59\x10\x57\x74\xea\x46\x40\x02\xee\xea\x88\x3e\x79\xfd\xf9\x1d\x01\xdd\xf8\xcc\x8e\x1c\x59\x2f\xf4\x1d\x90\xa2\x98\xdc\xff\x77\xf5\x6f\x20\x08\x01\x39\xa3\x77\x66\x8c\x18\xc0\xbe\x47\x5e\x91\x9e\xb2\xef\x09\xd4\xaa\xb3\xd9\x70\x97\x04\x36\x66\xc1\x4e\x09\xcc\x4c\xad\x2f\x30\x45\x52\xb3\x57\x3d\xe5\x7c\x55\x35\xad\x3b\x62\x73\xd7\x7d\x68\x1a\x1b\x87\x1f\x63\xab\xcc\xbe\xbd\x55\x4e\x87\x67\x24\x8e\x9f\xe6\x2d\xe2\x44\xa6\xc3\xdd\xbf\x3c\x58\xf4\x0b\xd6\xea\x43\xe2\x1e\x6b\xe6\xfd\x6f\xdf\x89\x68\xbe\xe4\xfe\x13\x4f\xc6\xf8\xb7\x62\xd2\xe1\xdb\x31\x77\xbe\xdb\x13\xbf\x57\x34\x7c\xb8\xaa\x93\x38\xaf\x2b\x63\x11\xed\x85\xec\x44\x2d\x01\x79\xc6\x6f\x69\x0e\xb6\xac\xe0\xe5\x84\x64\xdb\xd4\x95\x58\x8b\x9d\xc9\x17\x8d\x3d\x89\xfc\x47\x5e\xf2\x0f\x89\xaf\xad\x29\xec\xb0\x90\xf4\x4d\x8f\xc0\x8d\x57\xfc\xf7\xdb\xf4\x61\x91\xf8\xa1\x43\x07\xcc\xea\xb6\x85\x68\x3a\xe5\x3b\xc8\x0f\x5e\x99\x81\xf7\x5b\x6b\xcf\xe6\xf8\x1a\xd0\x4d\x68\x9a\xf7\x41\xb7\xb5\x93\xa8\x74\xdf\x4d\xb5\x68\x4e\x21\x30\x16\x28\xec\x8d\x73\x26\x3b\xfc\x74\x6d\xc1\x4f\xd7\x8a\x1e\xf2\x28\x48\x88\x16\x24\xcc\xd8\xb9\xa0\xef\x51\x72\x7c\x94\xfa\x74\x09\x1f\x19\x25\x71\x8c\xb8\x28\x21\x5f\x8c\x5a\xb1\x7b\x86\x30\xcd\xec\x5b\x7d\x8a\x59\xba\x46\xb5\xc7\x81\xbf\xc3\x2c\x31\x0f\x8e\x92\xf4\xc5\xee\x78\x24\xa2\xe5\x0d\xd3\x36\xcd\x8a\xdf\x96\x82\xae\x38\x1e\x9e\xf2\xeb\x71\x9d\xe6\x5c\x15\x55\x81\x30\x0e\x61\x0a\x6e\x3b\xfb\xbc\x8b\x4b\x63\x7f\x86\x09\xea\x11\x34\x02\x24\xf9\x3d\x5f\xac\xd5\xd7\x77\x02\x91\x4c\x0c\x77\xc8\x24\xb2\xf8\x14\xa4\xbc\xaa\x9e\xda\x1b\xea\x93\x30\xed\x1e\x3a\xc4\x7d\x1d\xe4\xb2\xc3\x22\x7b\xc7\x22\x36\x7a\xa3\x41\x30\xd9\x7b\xd1\xc5\x41\x4f\xcf\xb1\x1d\xbb\x3b\x0b\x05\xe7\x22\x07\x50\xd2\xd8\xeb\x5a\x52\x78\x98\x3b\x0e\x48\x5f\xb3\x1e\xb5\x6a\x06\x14\xbc\xb3\xdb\x79\xce\x23\x87\x27\xb5\x5e\xc7\x5b\xf6\x67\xd5\x31\xe8\xa5\x87\x70\xd5\x7c\x79\x57\x41\xff\x99\xde\x53\x6f\x06\x9d\x8c\x68\x9e\x81\xdc\x53\xc3\xa0\x8b\x93\x55\x7c\x79\x27\x71\xd2\xd6\x2b\xf7\x48\xfd\x54\x27\x6f\x11\x3c\xbf\x2d\x54\x70\xdd\xb0\xcd\xe5\x2b\xb3\x03\xbb\xa7\xca\x43\xbd\xbe\xb3\xce\x2f\x18\xc6\xaa\xea\xb3\xd5\xc2\x77\x9f\x9f\x0e\x69\xe7\x4c\xb8\xf9\x70\x2f\x17\xe2\xa5\x5f\xc7\x4a\xcb\xe9\xe2\x77\x4d\x30\x3a\xc4\xea\x8a\xa9\xea\x0f\xf5\xad\x2d\xbb\xdb\x7a\xc1\x8a\x3a\x7e\x69\x45\xef\xc5\xdf\x97\x72\x69\xf2\x68\x46\x69\xcf\x72\x8d\x27\x5b\xe2\x0a\xb9\x7b\x24\xaf\x4a\x3d\x5e\xe4\x7b\xf1\x61\xa0\x63\xfc\x29\x48\x3b\x4a\x1b\x67\xcb\xb3\xf5\xe4\xce\x86\x06\x63\x09\xe8\x7a\x30\xb7\x2d\xba\xd2\x97\x9f\x35\x82\xc0\x02\x24\x1c\x06\x23\x8a\x12\x31\x90\xbc\xf0\x0d\x44\x9e\xb8\xc7\x6c\xcd\xc3\x8f\xc1\xb0\xa9\x92\x9a\x00\xea\xa1\x8d\x48\xae\x4e\xc1\x56\x1c\x18\x50\xd8\xee\x1d\x2b\xf4\x28\xea\xc5\xfd\x63\x0c\xcf\x52\x84\xb0\xa5\x86\xd8\xab\x00\x4c\x1a\x42\xda\xfe\x84\xdf\x21\x6d\x93\x77\xaa\xb2\x55\xd3\x36\xb4\x3c\x12\x95\x50\xdf\xae\x7a\x65\x69\xdd\x44\x01\xa8\xf7\x6f\xb3\xbd\x7a\x87\x5a\x99\x33\x24\x13\x8f\xc4\x0e\x98\xbe\x14\x38\x0d\x2b\xc3\x4a\xdb\x85\xaa\xfa\xc1\x7a\x58\xa9\x63\xcb\x08\x4a\x6a\x99\x66\xce\xee\x42\x1a\x36\x03\xc0\xe7\x9a\x12\xc0\xe2\x8a\x8c\x43\xfd\xd1\x74\xed\x77\x19\x0f\x15\x6e\x9b\x92\x9c\xbe\x45\x72\x7a\xc5\xc9\xe3\x16\xac\x57\xae\xd8\xa0\x53\x87\xca\x71\xf8\xa7\x61\x99\x97\x1c\x25\x6a\x08\x6f\x33\xb7\x2e\xf3\xdd\x68\xde\x5e\x53\xe2\x68\xd6\x00\x39\x9e\x00\xc0\x1e\x9e\x85\xb0\x54\x55\x40\xe2\x0c\x4b\xbc\xa1\xa4\x43\xd0\x30\x38\x19\xc2\xd7\xcc\xf1\x1e\x28\xa1\xac\xc7\xb0\x57\x7a\xad\x35\xea\x55\x33\x67\x27\xe8\xce\xa0\xcf\xe5\x67\x00\x35\x6f\x9a\x9e\x1f\x77\xdf\x31\xd7\x08\xb3\x43\x99\xa6\x17\x96\xce\x5c\xe3\xe2\xe3\x68\xa6\x04\x7a\x3c\x55\x02\x7d\x78\xae\xb6\x1c\x7f\x9a\xda\x6a\xf7\x8b\x7e\x4f\x1b\xd4\x35\x78\x76\xc9\x71\xab\x2f\x5d\xc6\xa8\xc5\x51\xc9\x10\x43\x87\x85\xa7\x5a\x5e\x70\xf4\xf0\xc9\xa6\x4f\x38\xe7\xce\xb6\x47\x65\xc3\xc6\x47\xc5\xa7\x76\x0a\x9e\x62\xe4\x03\x6d\xbe\x5f\x7c\x2c\x7b\x76\x39\x5c\x67\xb0\x67\x08\xeb\xba\x30\xb0\xf4\x05\xc0\xd2\xd7\x04\x96\x5e\x41\x3d\x35\x51\x2b\x1d\x3a\xdb\xb2\xcf\x61\x97\x12\xd4\xf2\xea\x84\x56\x80\x93\x8b\x7c\xaa\x14\xd4\x56\x99\x0a\x0b\xba\x0b\x99\x7f\x0b\x6a\x38\x87\x66\x4b\xe5\x87\x63\x07\x32\x55\x1b\x07\x1c\x94\xd3\x6f\x71\xbb\x90\x17\x0a\x39\x04\x21\xf5\xe1\xbd\xa4\x04\xb0\x10\x88\x08\xd6\x68\x24\x4c\x30\xe0\xca\x4d\xe0\x57\x31\xa1\x14\x0a\xe6\x81\x85\x70\x11\xdc\x05\x47\x4b\x99\x02\xdc\xe5\xb2\x99\x0e\x42\x5a\xf3\x06\x68\x2d\x0f\xe1\xb4\xd1\x4e\xa6\x52\xc8\x8a\x48\xa3\xe2\x43\xa3\xef\xf6\x10\xce\xe1\x8a\x1f\x2e\x34\xf6\x6a\x0f\xa7\x29\x2c\xde\x91\xf4\xd7\x0f\xfe\x46\xd3\x3d\x6c\x2a\x60\xc2\x84\x83\xf5\x96\x14\x63\x1b\xf1\xc8\xb2\x7d\x5b\x5e\x14\x45\x4f\xd2\x8c\x6f\x81\xd4\xab\x69\x16\x90\xc3\x45\x03\xd5\x74\x98\xde\xb6\xe5\x8a\xa5\x7a\x71\xd1\x44\xe0\x0b\x78\x57\xbc\x47\xb2\x89\x02\xa1\xbf\xcc\x55\x83\x51\x06\x03\x8b\xed\xd4\x6c\x98\xf7\x07\x05\x99\x69\x1d\x61\xd4\x39\x1d\x19\xf8\x7c\x33\xd4\x1a\x3c\x2e\xad\x06\x5b\x02\x29\xe1\xda\xe5\x16\x70\x13\x96\x86\x10\x66\x52\xcd\xa0\x86\xb7\x10\xd0\x82\x59\x76\x2f\x41\x3a\xbd\x30\x34\xeb\xac\x9f\x10\x23\x7f\xe8\xa5\x61\x84\xb9\xaf\xed\x11\x48\x43\x83\x43\xef\xae\xda\x8b\x2f\x9f\xf9\xf4\xaa\x9f\x8b\x00\x53\x60\xd2\x11\xe3\xc8\x36\xff\xa4\x91\xcb\xfd\xe3\x08\x67\xfa\x0c\x42\xe0\x30\x77\x62\xb9\x6f\xf9\x45\x84\x43\x65\x4d\x21\xf6\xf8\x92\x08\xcc\xd3\xaf\xf1\x36\x0f\xed\x87\xd5\xa6\x21\x3a\x93\x6a\x3c\x0a\x79\x54\xe1\x89\xd6\x51\x75\x59\x88\x94\xc3\x07\x6b\xf2\x01\x92\x32\xb8\xe2\x69\x04\x0a\x0f\x6a\xce\x10\x34\xe3\xb7\xee\x9d\x9a\xce\x10\x17\x37\xcc\xec\xe8\x90\xa9\xad\xef\xa8\x86\xa0\x0c\xd4\xa9\xb2\xb1\x98\xef\x97\xd0\x0c\x61\x3d\xf2\x32\x40\x66\x18\x73\x5f\x5d\x07\x1f\x12\x98\x5c\x77\xaf\xd1\xb6\x65\x77\xef\xf2\x02\xfa\xce\x0b\xd3\x78\x81\xa7\x5f\x0b\xff\xff\xf2\x60\x7a\xd8\x01\xff\x6c\xfa\x81\xf6\xff\x2d\xcf\xa6\x0f\x6f\x13\xba\xb8\x2b\x13\xe6\x3f\xc7\xc3\x47\xd4\x0e\xd8\x7c\xf2\xbb\xd2\x33\xf8\x37\xc6\x24\x3a\xba\xce\x8d\x48\x35\x4a\x84\x24\x18\x09\xb1\x61\x0b\x92\xfc\x55\x87\xdd\x72\x88\xd2\x11\xd4\x77\xd8\x5e\xb0\x27\xa3\xd6\xa4\xc4\xf8\x75\xa6\xb8\x0b\x92\x32\xbe\x0c\x95\x74\xd5\x97\xa5\xf6\xda\x8a\x2a\x3f\x67\x50\x9a\x09\x0b\xd6\x5a\xda\x30\x6c\x3f\x74\xa1\x4a\x2c\x07\x5d\x1e\x90\xcb\xa8\xdb\x52\x4a\x42\x83\x99\x83\xac\x52\x64\xcd\x0a\x7a\x2f\x29\x61\x4c\x6c\x49\x91\x57\x89\x99\x7c\x48\xdc\x89\x42\xd3\xc7\x66\x48\x41\x27\xb5\x9a\x41\xe7\x82\x5a\x01\x35\x4d\xf1\x83\xde\x0c\x8d\xe9\x25\x15\x7e\x9f\x6c\xf9\xdf\xf5\x9a\xb2\x93\x48\xd7\x17\x1c\xe9\x5a\x52\xa0\x83\x2a\x60\x23\xcb\x2a\xa7\xd3\x77\x61\x7a\xf0\x50\x31\x72\xdd\x13\xc5\x13\x30\x81\x91\x50\xde\x72\xa0\xed\x6f\x35\x28\x5e\xf0\x60\x31\x3b\x04\xca\x33\x88\xbb\x0d\xf7\x97\xdf\x6f\xc1\xf5\x11\x2b\xd3\xf7\x88\x87\xc5\x6f\x95\xe2\xde\x9c\xc8\xcc\x4a\xcc\xad\xe5\x6d\x3d\x9d\x4c\xe6\x4f\x34\xd6\x27\xf8\x12\xbd\x2c\x78\xc1\x16\x7f\x01\x08\x46\x04\x00\x37\xa2\xbc\x97\x30\x1f\xd3\x2f\x81\xbb\xdc\x83\xd0\xc3\x80\xf4\xd8\xf4\xee\x24\xe5\xde\x73\xb0\xde\xa7\x15\x02\x78\x31\xf5\x29\x37\x85\x3a\xd2\x45\xe1\x4c\x66\xa3\x16\xcc\x5a\x08\x91\x98\xee\xe9\x4d\xb7\xb7\xae\x5f\xee\xef\xeb\xb9\x3e\xdd\x2b\x2f\x02\x0f\xc1\x24\xac\x93\xcd\x92\x84\x75\xb2\x1a\x70\xc3\xe4\x00\xe4\xde\x39\x82\xd8\xf2\x01\x98\x75\x39\x53\x0b\x22\xf5\x45\x7a\x79\xac\x39\xdd\xb6\xdf\xd9\x63\x40\x97\x67\x57\x17\x77\xa0\x36\x83\x2a\x8a\x02\x32\xc0\x53\xce\x52\x5c\x45\x56\x80\xb0\x6a\xa1\xa5\xfe\x23\xaa\xe5\x80\x8d\x97\xe0\x7e\x37\x0d\x77\x17\x17\x24\x2f\x5f\xd2\x91\xcd\x61\x27\xe1\x80\x21\x65\x66\xe9\x19\x71\x0a\x15\x9b\x0c\x5a\x6b\x6a\xb6\x36\xa7\xc5\x2e\x77\x79\x6b\x61\xe8\xf1\x06\x4a\xfa\xe8\xe8\xd1\x2c\x22\x06\x59\x2f\x8f\x64\x4b\x1c\x9a\xab\xb7\x97\xf4\xb9\x68\x6f\xe5\x4e\x5c\x47\xfa\xb1\xda\x31\x58\xc6\xbe\x3b\xc2\xaa\x52\x0a\x60\xff\x82\x14\xdb\xb9\x7c\x79\x5a\xb6\xd7\xd5\xc2\xe1\xcb\xc5\xf1\x19\xd4\x30\x94\x14\xd2\x02\x6d\x1a\x71\x23\x8d\x11\xf6\x9d\xa0\xe5\x68\x22\x46\xd8\xe8\x59\xb5\xc3\x81\x40\x7f\xac\x9e\x20\xa2\xdd\x90\x5b\x95\x0b\x6e\x9b\xe9\x11\xe7\x14\x43\x07\x0c\x94\xa7\xb4\x43\x06\x3b\x2e\x72\x9f\x33\xc8\x2c\xa2\xad\xe1\x41\x1a\xd7\xf3\x99\x86\x62\x61\x65\x01\xd3\x73\xd7\xa0\x27\xc3\xdc\xc4\x25\x22\xc8\x4c\xc8\xbd\x3d\x9c\x18\x57\xed\x1f\xca\x1c\x95\x88\x9e\x50\x1c\xcd\xeb\x84\x01\xd6\x1d\x46\x57\x41\xed\x03\xf6\x23\xae\xf8\x3e\x2e\x44\x54\x93\xa6\x12\x74\xb7\x8b\xaa\x12\x8c\x2f\x19\x15\x36\xdf\xed\xdc\x29\x16\xbc\x8d\x09\xb4\x0d\x40\xae\x85\xe0\x04\x10\xb4\x09\xba\x41\x3d\xe2\x12\x1a\x02\xb1\x67\xa8\x02\x0c\x4f\x42\x4d\x6e\x96\x4b\x7e\x9f\x88\xc3\x7a\x6b\x18\x32\xfe\xc9\xf1\x10\x5d\xfb\xea\xe8\x9c\xb1\x8e\x12\x3a\x3f\x1e\xd3\xa9\x7a\x3f\xbf\x47\x22\x0b\x59\x06\xde\xee\xa1\xdc\xe2\xfe\xbe\xdf\xd7\x22\x3e\x06\x59\xda\x10\x67\x85\x8d\x80\x99\x6a\x9b\xa6\xb7\x27\xba\x02\x4e\xea\x3d\x25\xd3\x11\xdb\xaf\xdd\x04\xf3\xfd\xe5\x22\x93\x77\x82\x82\x32\xb8\x3d\x5d\xc0\x75\x65\x5c\x88\xfa\x3d\x2e\x41\xfd\x3e\x00\x2e\x36\x3a\xc6\x87\x5c\xe2\x97\x10\x69\xd7\x63\xb6\x09\x56\x6c\xb4\x01\x4b\xda\x10\x6f\xc2\x39\x28\xe6\x1e\x31\x4e\xed\xc6\x75\x12\x35\x08\x32\x64\xa6\x7c\x6a\xc8\xbe\xf8\xd4\x90\x15\xf3\xa9\xda\xb1\x41\x0f\xba\x6e\x63\x0b\x71\x79\xf9\x36\x5e\x6d\x9f\x1b\x3c\x69\xc9\x07\xf5\x03\x8e\xef\xcf\x41\x86\x1f\xc0\x01\xf0\x49\x50\x42\x67\x33\x9c\x3f\x4d\x1d\xd6\xd1\xfd\x7d\x53\xf5\xe5\x37\x0f\x60\x45\xf1\xa0\xaf\x8a\xf9\x83\x27\xe1\xbe\xa9\xe0\x7f\x13\x6c\x9c\x6a\x71\x60\x7a\x9c\x2e\x23\x7a\x73\x3f\x95\xd8\x09\x55\x5b\xea\xf1\x7e\x12\x3c\x83\x3f\xc2\x68\x7f\x0a\x38\x7c\x0e\x4f\x00\xeb\x17\xfb\x72\xb5\x41\x86\x0f\x81\x08\xa7\xae\xf7\x56\xcd\x0b\x24\xfb\x0e\xca\xd3\x04\xf6\x54\x81\x7a\xb5\x58\xf7\xf0\xd2\xc0\x9b\x1a\xde\x56\x56\x44\x8f\x28\xd1\x3a\xaa\x4d\xaf\x3b\xa1\x44\xdd\x78\x8c\x54\x2b\x80\xa1\x3b\x65\xce\x19\x0f\x38\xd4\xdf\x0c\x07\x0c\x47\xc3\xea\xb7\x52\x62\x4b\x07\xc3\x3e\x23\xd1\x9c\x75\x0a\xfc\xe4\xf9\x25\x87\xc3\xc5\xa3\xf5\xa3\x6e\xed\x48\xee\xc8\xc3\x1e\x21\xc1\xd1\x20\x71\x58\x66\xf7\xa9\x6c\xa3\xd7\x96\xe2\xd4\x0c\x27\xaa\xf4\x2d\xee\x29\xdd\xec\xd0\x19\xe4\x99\xe4\xa8\xd0\x7b\xce\x73\x4c\xf5\x44\x61\x8b\x75\xe0\x30\xc5\x7c\x89\x27\x31\x05\x21\x3b\xb2\x4d\x59\xaf\x80\xa5\x7f\xe6\x9f\xc4\xed\xf0\x4f\x37\x41\xe2\x24\x0c\xf5\x1f\x7b\xfe\x3c\x37\xb7\x61\x68\x01\x29\xc5\xe1\xc2\xbd\x6c\x49\xb0\x32\xe1\x21\x70\x86\xdf\xd3\x1d\x54\xd8\xb1\xa0\x14\xe7\xdb\x2a\xd2\x96\x6a\x82\xb5\x7b\xfd\xe3\xdb\xf3\x01\xe4\x04\x2d\xd0\x9c\x09\xda\xa1\x39\x13\x94\x42\xae\xe0\xdd\x10\x70\xed\x3e\x3d\x02\x81\x3c\x38\x00\x41\x68\x6f\x6e\x03\x4c\x9e\xac\x48\x51\xbf\x20\xcc\x12\x9f\x34\x41\x7a\xf9\x1d\x03\x05\x0f\xa2\x0a\x94\xbd\x87\x3a\x6a\xb5\x0e\xdb\xac\xe5\xde\xd5\x13\x1d\x31\x16\x0b\x88\x8e\xb8\x63\x4c\x76\xcf\xa0\xd9\xf7\xae\x32\xab\x2c\x81\xbf\xd0\x24\x03\x35\x10\x5f\xb3\x41\x68\xd5\xae\x9b\x84\xb8\x95\x63\x5e\x4f\xf0\x2b\x5a\x3a\xdd\x7e\xbc\x5f\x04\xd6\xef\x40\xd6\xe4\x49\x09\x03\x5e\x2d\xdc\xc4\x98\x06\xfd\xd5\x89\x7f\x2a\x16\xca\xf6\xc1\x60\x36\xd5\xb2\x74\xaa\x79\x1d\xcd\x5b\x4a\x8b\x80\xd7\x7d\xbf\xeb\x2c\xf0\x03\x9e\xf3\x4c\xcf\xe9\xc7\x60\x10\x61\x55\x3a\x92\x51\x4d\xbb\x0a\xd7\x25\xc1\xbc\x48\xc2\xf4\x8c\x1b\xb4\x1e\x0e\x01\xb8\x9e\x0e\x43\x1a\xb7\x6a\x1d\xe1\xb4\x1d\xf2\x4a\x93\x42\x56\xc0\xb5\xce\x2c\xc0\x64\xcb\x0c\xa5\x87\x24\xc3\xe0\x90\x34\x13\xb0\xd9\xa2\x95\xa8\xb1\xfc\xe7\x8a\xed\x6f\x5c\x4e\xb8\xf7\x2c\xad\xe3\xf7\x6b\xf7\xe2\xcb\xaa\x9f\x1e\xde\x3f\xdc\x24\xd3\x64\x19\x13\x8f\x3d\xc5\x00\xe5\xa7\x72\xb1\x0f\xee\x51\x7f\x94\xdf\x7a\x71\xe1\xab\x69\xcc\x4c\x7c\x5f\xe3\xa1\xaf\x0b\x49\x09\x60\xa6\xc2\x94\x5b\xd7\x69\xde\x7a\xd5\x2e\xf5\x87\xdb\x77\xcd\x43\x96\x65\x28\x33\xa3\x33\xeb\x34\xf9\x99\x6d\xc4\x1f\x6f\x60\x59\x67\xb0\x70\x43\x2e\xe0\x16\x9b\x39\x37\x59\xf8\x23\x0b\xa4\xba\xcc\x3a\x78\xb5\x0f\xd3\x83\x86\x95\xc9\xae\xd5\x92\x0d\x2c\xf8\x9a\x2b\x75\x6f\x3c\x93\x40\xec\xf2\x69\xc8\x21\xc4\xa9\xfe\x8c\x60\xaa\x5a\x58\x3c\xc9\x12\xed\xfb\x1b\x49\xd3\x2a\x03\x73\x41\x93\x4e\xdc\xa3\x71\x4e\x04\xba\xd4\x94\x21\xa4\xb5\x0c\x20\x36\x49\x18\xce\x46\xc8\xfe\x85\x69\x08\xc1\x18\xd8\x74\x06\x63\x1a\x2e\xa3\x65\x35\x3b\x26\xe0\xbb\xd9\xa8\xb7\x4e\xd6\xd1\x15\x31\xe3\xc7\xfb\x8c\x68\x92\x5f\x64\xee\x3f\x0c\xde\xb7\xb6\xbb\x9f\xc0\x56\x27\x0a\x9a\xf1\x50\x9e\x3f\x6b\xcb\x3a\x88\xbb\x2a\xbf\x8a\xd1\x33\xaa\xf6\x2c\xc9\xd7\xfe\x59\x12\x36\x70\x3f\xf8\xa8\x9a\x7b\xe4\x0a\xb5\xb2\xc5\xae\x44\xef\x1a\x3c\xed\xd2\xb5\x8b\x67\xc3\xb2\xac\xd3\x8e\xc1\x38\xf3\x3f\xac\x62\x19\xa3\x3d\x07\xf6\xab\x3e\xc1\x25\xbf\x83\xf1\x3d\x13\xc5\xeb\x33\x19\xe9\x1f\x82\x37\xb2\xb4\x86\xe1\x7b\x35\x36\x5d\xd1\x5b\x0f\x61\x85\xfa\x0c\xcd\xb8\xbe\xc1\x0b\x65\xc1\x2b\x6c\x4d\xfd\x25\x1d\x9b\x7c\xf4\xe2\x57\x7d\x9c\xe3\x8b\xbb\xe5\x02\x3b\xea\x1a\xd8\xef\x01\x46\xc8\xba\x4e\x2f\xaa\x47\x12\x04\xd2\x91\xc7\x6b\x6d\x2d\xe9\x47\xd8\x0d\xac\x64\xf8\x18\xd9\x78\xb5\x07\xf8\x61\x4f\x1f\xe9\x2b\x35\xa0\x2d\x92\x5c\x75\xfa\xc6\x80\xbc\x0d\xf4\xd0\x3d\x9d\x43\xb8\xde\x37\xcd\xe6\x43\x92\xaf\x78\x48\xf4\x7f\x82\x67\x9a\xc5\x85\x07\x88\x4a\x9f\x89\xfc\xe4\xaf\xaf\xb9\xe6\xaf\x35\x26\x1c\x47\x29\xff\x7a\x8b\x84\x6d\x55\x33\x7d\xe6\x84\x35\x12\xf8\xdd\x76\xfc\x2c\xf0\xb3\xc8\x6f\xf1\xeb\x06\xbf\x6e\xca\xf2\xa3\x14\x06\xe1\xa1\xe2\x4d\x4d\xfc\x17\xa7\xdc\xe2\xf7\x2d\xbf\x09\xf1\x90\x1d\x1c\x25\xf6\x1c\xde\xde\xb0\x1f\x78\x61\x83\x9b\xd3\x74\xfb\x41\xe9\xdc\xaa\xa6\xca\xe7\x43\xb6\x0c\xb9\xd5\x24\x7c\x71\x44\x78\x6a\x5e\x93\xe4\xf3\x21\xce\x8b\x7e\x6d\x15\xca\x37\xa5\x72\x3f\x34\x51\x3e\x29\xad\xcd\x6f\x32\xdf\x2f\xfd\x42\xaa\xef\x95\x7e\xd1\xf4\x16\x6d\xb3\xe3\x80\xd2\x1f\xdc\x63\xf8\x3e\x1c\xfe\x29\xe5\x99\x61\x1f\x07\x3b\xe6\x68\x04\x1b\x7e\x0a\x9a\x95\xcb\x3b\x76\xca\x9e\x25\xf6\x0a\x46\x55\xef\xf6\x4e\x66\xf7\x4f\xb0\x08\x98\x8f\x3c\x27\x7e\x1c\xfc\x1e\xa6\x3c\x16\x4c\xab\x9b\xcd\x2b\x7d\x23\x99\xd5\xd5\xbf\x95\x8f\xff\xf1\x0f\x80\xd3\xe7\x3f\xff\x99\x9e\xbd\x78\x92\x96\x9f\x38\x50\x69\xe7\x5e\xa1\x57\x28\xfa\xf9\x32\x02\x64\x07\x72\x18\xd7\xeb\x4d\xa1\x18\xd7\xa3\xf1\xe4\xff\x05\x00\x00\xff\xff\xe5\xaf\x89\x64\x30\xbb\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xeb\x92\xdc\x46\xae\xe6\x7f\x3e\x05\xad\x09\x85\xac\x88\x56\x39\x3c\x3e\x7b\x09\x87\x65\xaf\x2e\xd6\xe5\x1c\xb5\xba\x8f\xba\x3d\xb3\xb3\x0e\x45\x99\x5d\x64\x57\xf3\xa8\x8a\xac\x21\x59\x6a\xf5\x4c\xcc\x1b\xec\x03\xec\xf3\xed\x93\x2c\xf0\x01\xc8\x44\x92\xac\x6e\xc9\x67\x62\xf5\x43\xcd\xca\x44\xde\x91\x48\x00\x09\x20\x8b\xdd\x6e\x59\x56\xfd\x2a\x7f\x9c\x3f\xc9\x77\x45\xdd\x6c\xaa\xbe\xcf\xfb\x6a\x73\xf9\xe8\xaa\xed\x87\xaa\xcc\x5f\xd6\x03\xfd\xee\x3e\xd6\xab\x2a\xcb\xae\xda\x6d\x45\xa0\xaf\xe8\x4f\x56\x16\xfd\xd5\x45\x5b\x74\x25\x25\x3c\xb7\xef\xac\xfa\xb4\xdb\xb4\x1d\x03\xfd\x2c\x5f\xd9\x55\xb5\xd9\x71\x19\xfa\x93\xf5\xf5\xba\x59\xd6\x0d\xfd\x3c\xa3\xaf\xfc\x75\x23\x29\xed\x7e\xb0\xa4\x93\xfd\x20\x69\xfb\x9d\x25\xfd\xb2\xcb\xba\x6a\x5d\x53\x6f\x3a\x4a\x7a\xa7\x9f\xd9\x75\x75\xd1\xd7\x03\xb7\xf4\x67\xf9\xca\x3e\x56\x5d\x5f\xb7\x5c\xfb\x9f\xe4\x2b\xdb\x15\x6b\x06\x38\xa5\x3f\xd9\x50\x6d\x77\x9b\x02\x05\xce\xf5\x33\xdb\x14\xcd\x7a\x2f\x30\x6f\xf4\x33\x5b\x75\x15\x65\x2d\x9b\xea\x9a\x52\x9f\xe1\xc7\x62\xb1\xc8\xf6\x34\x09\xcb\x5d\xd7\x5e\xd6\x9b\x6a\x59\x34\xe5\x72\x2b\xc3\xfc\x85\xd2\x73\x4d\xcf\x29\x3d\xe7\x74\x0c\xa1\x2a\x69\xa8\xcb\xa2\xd7\x71\xd0\x5c\xd2\xc8\x8b\x3e\x43\x55\x4d\xb1\xb5\xd2\xfc\x99\x55\xdb\xa2\xde\xf0\xac\xf1\x5f\xea\x77\xdf\x5f\xb7\x98\xda\x53\xfd\xa4\x39\x58\x0e\x37\xbb\x0a\x53\xf0\xe8\x9c\xbe\xb2\x55\xb1\x1b\x56\x57\x05\x77\x53\xbe\x32\x02\xda\xb5\x34\x17\x6d\x77\x03\x38\xfb\x91\xb5\xdd\xba\x68\xea\xbf\x15\x83\xcc\xcf\x89\xfb\x99\x6d\xeb\xae\x6b\x79\x6a\x8f\xf1\x91\xd1\xc8\x97\x5c\x0f\xa5\xbc\xa5\x49\x70\xb5\x70\xce\xb6\x5e\x77\x32\x8b\x9c\x79\x8c\x5f\x5c\x8b\xe4\x69\x4d\x92\x15\x6a\xbb\x6c\xbb\x0f\x9a\xfa\x82\x3f\x47\x55\x52\xe7\x34\x37\xed\x57\xd1\xd0\x7a\x68\xee\x31\x7e\x24\x00\x7d\x56\x94\x5b\x9a\xe1\x5d\xd1\x54\x3c\x75\x4f\xf8\x17\xcd\x17\xfd\xca\x8a\xd5\xaa\xdd\x37\xc3\xb2\xaf\x86\xa1\x6e\xd6\xbc\x06\x4f\x24\x29\x3f\xd3\xa4\xcc\xe5\x85\xb4\x9b\x76\x1f\x56\x99\xd2\xff\x42\x3f\xf3\x53\xf9\x29\x79\xae\x10\x32\x43\x49\x1e\x49\xbf\xbc\xac\xaa\x52\xc6\xd2\xe7\x2f\xe8\x3b\xdb\xed\x37\x1b\x9a\xcd\xbf\xee\xab\x7e\xe0\x42\xa7\xf4\x9b\xc6\x2f\xbf\xb3\xba\xef\xe9\x83\x92\x5f\xe3\x23\xa3\x25\x6d\x56\x18\xcc\x33\x7c\x64\xd9\xaf\x7d\x55\x74\xab\xab\xf7\x99\xfc\x45\x5f\xf9\x83\x51\xf2\xd0\x62\x33\x7e\x29\x6e\x49\x0b\xd6\x40\xb6\x6a\x4b\xfe\xf1\x8c\xfe\x50\xd5\x75\xd3\x0f\xc5\x66\xf3\x3e\xd3\x0f\x06\x93\x2f\x59\x80\xa1\x1e\x30\x0b\x9a\x98\x9f\x0d\xd5\xae\xe7\x15\xcc\x5f\xd4\x5d\x3f\x3c\x1a\x6a\xc2\xe1\x77\xfb\x26\x2b\xdb\xd5\x07\xda\x1d\xbc\xd3\xd1\xf2\xeb\xcb\x9c\x26\xeb\x01\xed\x8f\x6e\xdf\x34\x34\x3d\xf9\xcb\x96\xa6\x8c\x9a\xa9\xa9\xfd\xe7\x80\x3e\xca\x77\x9b\xaa\xe8\x09\xa4\x2a\xca\xfc\x87\x22\x1f\x8a\x6e\x5d\x0d\x8f\xef\x2d\x2f\x68\x57\x7e\xb8\x97\x5f\x75\xd5\xe5\xe3\x7b\xf7\xfb\x7b\x3f\xbe\xdc\x53\xb1\x4d\xdd\x54\xfd\x0f\xdf\x14\x3f\xe6\xab\x82\x72\x68\x1a\x6f\xf2\x8b\xea\x92\x37\x21\xb5\x95\x13\xf6\x37\x6b\xde\x80\x37\xc3\x15\x37\x48\x98\x40\x1f\x7d\xce\x14\xe0\xab\x8c\x17\x80\x28\xc4\xb2\xbc\x30\x6a\x87\x0e\x21\xb9\xa3\x05\x38\xbe\x39\xfb\xf7\x37\x47\xf9\x29\x91\xbc\x75\x57\xe1\x9b\xfe\xa3\x12\xdf\xe5\x34\xda\xf3\xfa\xf9\xd3\x45\x46\x65\x6d\x42\x9e\x17\x43\x71\xc1\x7d\x0f\xab\xcf\x99\xb2\x39\x43\x1e\xb6\x28\x13\x51\x10\xcc\x7e\x48\x96\x65\x6e\x83\x53\x1d\x4a\x15\x42\x1d\x6f\x99\x34\x50\x7a\x98\xd9\x53\x99\x33\xaa\x2a\x7f\xfd\xf6\xed\xc9\xf3\xa7\x79\xd5\xac\x69\x66\xf2\xeb\x7a\xb8\xca\xf7\xc3\xe5\x7f\x5f\xae\xab\xa6\xea\x8a\xcd\x72\x55\xf3\xa4\x74\x84\xb0\x39\xcd\x92\x0c\x71\x91\xf5\xfd\x86\x28\x17\xb0\xe0\xec\xec\x4d\x7e\xcc\x98\xb0\x2b\x86\x2b\x74\x64\xb8\xca\xfa\xbf\x6e\x78\xa2\x42\x83\xe7\x57\x55\x8e\xcd\x00\xa0\xf6\x72\x3c\x2f\x79\xa9\x7d\x5d\x64\x55\xd7\x2d\x89\xb0\x0e\x37\x3c\xcd\x5a\xe7\x21\x68\xa9\x8e\xb0\xbd\x69\x07\x5a\xc6\x1c\xe5\xa4\x8a\xba\xf9\x58\x6c\xea\x92\x26\x3b\x4e\x48\x5a\x16\x89\x65\x4b\xeb\xc6\xa5\x09\x33\xdb\x6b\x0c\xb5\x58\xd1\xb9\xd0\xe7\xf7\x16\xf7\x40\x88\xef\x3d\xba\xb7\xc8\x9a\x76\x29\x54\x82\x49\x76\x59\xf7\xc5\x05\x91\x6f\x39\x4e\x3a\xa3\x86\x7f\x61\xfc\x91\xae\x28\x44\x9e\x40\xf0\xdc\xf2\x11\x85\x93\x81\x91\xab\x20\x3a\x0e\x62\xa3\x64\xc6\x8f\xdd\x68\x52\x58\x5f\x21\x4b\x21\x61\x32\xe6\xcc\x16\xcc\xb0\xeb\xc9\x6e\xb7\xa9\x57\xd2\xf4\x4b\xc9\x8b\x88\xc6\x07\xb6\x4e\x8a\x87\x03\xa2\x58\x9e\x43\x17\xea\x35\x93\xad\x3c\xa1\xff\x28\x7f\x55\xd1\xce\xb9\xda\xaf\xe5\xd0\xda\xb4\xfb\xf2\x2b\x10\x14\x5b\xb9\x48\x4f\xf2\x77\x2d\x75\x18\xd8\x11\x00\x62\x13\x4f\x88\x30\x30\x8f\xd0\x55\xdb\x76\xe0\x89\xd3\x62\x35\x2d\xcf\x75\x4d\x99\x34\xd2\xbe\xf8\x48\x64\x71\x68\x65\x4b\x96\xb4\xe5\x56\x5c\x31\x51\xb0\x3d\x1d\xf4\xb2\x2d\x88\x8e\xc8\xd6\xb0\xb4\x14\x07\x01\xb5\xdd\xd3\x6e\xba\xa2\xca\x78\xe2\x99\x51\xa1\x2a\xe7\xfa\x89\x21\x51\x3d\xd8\xe5\xb4\x73\x5b\x3a\x54\x79\xa1\x9f\xe3\x43\x7f\xfb\xfa\xa9\x57\xc5\xe5\x25\xf5\xaa\xa7\x5d\xf1\x2a\x5f\x6d\x5a\xda\x52\xbf\xbc\x7b\xd3\xf3\x86\xb9\x5a\xee\xda\x0e\x0c\x0a\x65\x9d\xd2\x67\x48\x73\x13\xcd\x10\xcd\x7e\x7b\x41\xbf\xae\xaf\x6a\x22\xd4\x98\x76\x2e\xc1\xcc\x13\xa5\x52\x13\xfb\x9e\x96\xf0\x28\xa7\x2d\x4c\x23\xa0\x29\x03\x02\xf0\x18\x0c\xeb\x18\xfc\x92\x70\x6c\xdf\xd1\x76\xba\x1a\x86\x9d\xb5\xfc\xea\xfc\xfc\x54\x9a\x0e\xa9\xb7\xb5\x5d\x38\xcc\xc0\x1a\x6c\x98\x65\x6a\xf2\xb6\x59\x00\x49\xf6\xdd\x66\x84\x3f\x34\x56\xcb\x39\x30\x2f\xdc\x85\x6f\xf8\xbf\xb3\x38\x3d\x98\xe7\x9e\x98\xc1\x6b\x60\x13\xcd\x31\xd8\x18\xc2\xe9\x76\xc7\xd5\x3a\xa4\x3e\xd1\x84\x88\xc9\x00\x0d\xf9\xe0\x7b\x28\x13\x8c\xa6\x3b\xa3\xb7\x34\x5c\x25\xa2\x67\xc7\x34\x09\xa0\xa4\x48\xbd\xec\xda\x2d\xa5\xbe\xa0\x3f\x31\x21\x76\xfe\x98\xeb\x03\x4c\x51\x96\x44\xe3\xfb\xa3\xfc\xdd\x8b\x67\xf9\x7f\xf9\xee\x8f\x7f\x5c\xe4\xaf\x07\xde\x87\x8c\x9a\xff\xc1\x28\x55\x68\xc7\x23\x28\xd1\xab\x81\xb0\xee\x1e\xef\xab\x7b\xf9\x0f\xc8\xfd\x1f\xd5\xa7\x82\xf8\xc6\x6a\xb1\x6a\xb7\x3f\x32\x4d\xdd\x16\xb4\xf3\x39\x87\x90\x55\xb1\xf8\xac\x6a\x4a\xfa\x10\x2e\x4e\xb3\x1c\x2d\xd0\x6c\xc7\xd3\x09\x33\xbb\x5c\xb5\xcd\x65\xdd\xf1\x78\x7e\x6e\x80\x0a\xc6\xe6\xd2\x59\x8d\x1c\x63\x89\x68\xca\x88\x7c\xd4\x97\x37\x11\x14\x23\x7d\xcb\x89\xba\x9a\x99\xa0\xdc\x52\xd9\xf6\x30\xc7\x67\x82\x89\xbc\x68\x27\x34\xba\xce\xa6\xbb\x8f\xf3\xdd\x5e\x5e\xf2\x41\x6b\x47\x84\xb6\x70\x22\xa9\x72\x5a\x78\x10\xc2\xc4\x1d\x18\xf5\xe7\x8a\xc1\xcf\x9e\xbf\xcd\xab\x8f\x84\x6a\x4c\xf2\xba\xb6\xdc\xaf\x80\x5e\x0c\x7b\xc4\x94\x9a\xe8\x43\x4f\x1b\x63\x25\x87\x8a\xa3\x10\xdc\x35\x26\x43\x2b\x02\x22\xc2\x60\x94\x9a\xb8\xcb\x8f\x44\xf6\x3b\xd7\xc4\x4b\x4b\xd2\xde\x4f\x60\x27\x9d\x0a\x25\x78\xe4\x2b\x5a\x70\x42\x0a\xe9\x45\x2f\x9d\x92\x6c\xc2\x75\x42\xe2\x3d\x49\x2d\x45\x49\x7d\xb9\xb8\x01\xd1\xe9\x19\x17\xca\xea\xb2\xd8\x6f\x86\xd8\xaf\xd1\x09\x62\x2d\x9d\xb1\xe0\xe4\xf3\x66\x0b\x4c\x3a\x08\xe4\xe9\xc7\x65\x09\x0b\x1b\x62\x72\xe4\xa4\x61\x74\x15\xc9\xc4\x0e\x1d\xa2\x4d\x15\x96\x67\x19\xe5\x00\x5d\x2f\x13\x07\xd2\xfc\xd0\xec\x3b\x61\x7b\x72\x9c\xb3\x5c\xa3\x55\xc0\x7c\xc2\x7c\x5f\x16\x99\xf2\x4a\x4b\x15\xe1\x96\x1f\x6b\x08\x48\x01\x5d\xa5\x4a\x15\xeb\x98\xa8\xfd\x89\x01\x58\xf2\xea\x67\xcb\x86\xde\x9c\xf0\x20\xfb\x20\x20\xc9\x9c\xf3\x70\xd1\x02\xf3\x6f\xb4\x4a\x1f\x6b\xd0\x78\x45\x18\xcc\x0b\x61\x0d\x9a\xa6\xa6\xfa\xaa\x42\x0d\x54\xfe\x1b\xaa\x13\x65\x16\x2a\x1d\x28\xc3\x6e\x7c\x1f\x9f\xf5\x65\x0b\xc6\x01\x07\x09\x95\xb6\x69\x1d\x1d\xea\x79\x57\xaf\xaf\x88\xb0\xb6\xd7\x47\x32\x29\xd7\x57\x6d\xc5\xfb\xe7\xf5\xf3\xc7\xdf\x4a\x3f\xd6\x7c\xac\x84\x42\x7c\x20\x15\x7b\x42\x2e\x9a\x31\x45\x63\xe9\x42\x38\xd8\x01\x39\x91\x43\x04\x68\x2c\x10\x4e\xf8\x88\x40\x34\x94\x56\xf8\x3c\x25\x12\x11\x46\x4a\x9b\x50\x29\x0d\x0b\x51\x52\x5e\x7f\xb9\x6e\x21\xc4\x18\x6f\xcf\x27\x25\x89\xc8\xfd\xb0\x5c\xd7\xc3\xf2\x92\x29\x17\x57\xfc\x82\x2b\xe0\x83\x9b\x72\xf2\x07\x94\xf5\x20\x27\xea\x47\x92\x59\xf9\x7d\x7e\xff\xa3\x72\x8b\xdf\x31\x49\x5a\xd2\x26\xaa\x37\x58\x11\x15\x8d\xba\x4a\x98\x55\x13\xcb\x03\xc7\xd6\xef\x77\x38\xd7\x94\x39\x0c\x92\x40\xd9\x5e\x37\xbc\xf9\x40\x7a\x89\xcc\xd4\xab\x9a\x0e\x8c\x8b\xba\x29\xe8\x70\xb7\x5a\x40\xd2\xef\x13\x4a\xbc\x3d\x39\x07\xe0\xba\xbd\xd8\xd7\x9b\xd2\x00\x16\x99\x31\x90\xc4\x3e\xea\xe2\x7b\x96\xda\x92\x6a\xe9\xcb\xaa\xed\x98\x1b\xc1\x68\xac\xe0\x01\x36\xa8\x63\xf6\x02\xc9\x35\xcb\x32\x80\x45\xb9\xc0\xb1\xf0\x34\xd0\xea\x43\x4c\x63\x7e\x06\x68\x53\xf7\xcd\x83\x01\x3d\x5d\xed\xa9\x2d\x5a\x79\x4e\xa6\x82\x7d\xfe\xe8\x47\xfa\x3f\x63\xee\x48\x0e\x80\xf5\x74\xe2\x39\x33\x97\xcc\xbd\x6c\xc5\xa4\xab\x09\x8e\x87\x95\x36\x0c\x76\x63\xf5\xfd\x35\x14\xe8\xf7\x82\xb4\xac\x41\xd9\xd0\xb2\x56\x5f\xd1\x07\x4b\x6d\xeb\x0d\x16\xa1\x18\x54\xb4\x6a\x69\xde\x18\x41\x8e\x64\xcf\x5c\xd2\xd0\x98\x94\x0e\xc5\x87\x0a\xd2\x18\x1d\xf8\xbf\xb2\x6a\xe8\x7d\xb6\x17\xfe\xb3\xdd\x94\x41\xd6\x01\x62\x13\x61\xa9\x12\xcd\x46\x84\x09\x38\xdb\x13\x9f\xbd\xba\x5a\x06\xbd\x12\xcf\xc9\x50\x7d\xc2\xd1\x8f\xac\xa8\x66\x62\x84\xe7\xac\x6c\x7b\x83\xd5\xe2\x31\x1c\xdf\xc4\xc5\x22\xe6\x93\xb6\x09\xc9\xb1\x17\x2d\x4f\xda\xc7\x2a\x40\x3d\xf3\xa9\x69\x01\xaa\x8b\xd8\x64\xad\x2a\x55\x34\x50\x96\xe8\x36\x34\x57\x74\x1b\x7d\x06\x42\xa6\x4a\x31\xd0\x3b\x5a\x4e\x15\xea\x17\xb4\x2e\xd0\x18\x58\xcb\x44\x15\x6f\x64\x5b\xb8\x36\xb3\x5f\x55\x61\xf6\x3e\x33\xb8\x77\x69\x3e\x51\x14\x92\xfe\xa3\x52\x6a\x69\x8b\x6b\xca\x29\x28\x4e\x94\xa8\x44\x86\xe2\xaa\xda\x31\xef\xb1\xed\x81\x15\x1b\x16\xb2\x6f\x94\x75\x0e\xf8\xf1\x93\x90\x6b\x42\x18\x22\x72\x5f\x65\x7d\xcb\xfb\x6d\xf9\x85\x55\x3c\xad\x09\x13\x50\x3e\x3d\xea\x44\x5b\x46\x1c\x2e\x2f\x1f\x6d\xb2\x9b\xa3\x54\xa8\xba\x2a\x7a\x22\xe1\xc4\x29\x68\xb1\x72\x61\xc2\x2d\x2f\x3b\x89\x72\xd8\x32\xd0\xf0\x01\xc9\xa5\x64\xdb\x8d\xcf\x60\xee\xa1\x50\x39\x6d\x25\x70\x4e\xe0\x8b\x3c\xfb\x34\xd3\x26\x4d\xd8\xb6\x62\xce\x79\xb9\x15\xcd\x9a\xfc\xca\x8f\xab\x8c\x0e\xc3\x35\xed\x67\x43\xd8\xc7\xac\xf8\x58\x43\xc0\x50\x7c\x65\x80\x6a\xf0\x64\x58\x21\x2c\xe5\x27\xd3\x64\x12\x61\xb8\x86\x56\x88\xb6\xf6\x64\xfa\xe9\xc0\xa2\xec\x85\x91\x75\xe1\x10\xc0\xe8\xf5\x44\x2c\xe2\x24\x3e\xc9\x59\x25\xe9\xa1\x94\x69\x0d\xa3\x62\x78\xa6\x19\x3f\x5c\xfc\x78\xbf\xff\xe1\x9b\x8b\x1f\x03\x65\x5d\x5d\x55\xab\x0f\x82\x7e\x75\x73\xd1\x7e\x82\x48\x0b\x15\x09\x49\xd3\xbc\xc5\xee\x97\x39\x89\xb8\x1d\x24\x2a\xa2\x04\x54\x8c\xe6\x9d\x73\x93\x35\xa3\xbe\x30\xc1\xa0\x73\x6d\x85\x4d\x05\xfc\x8e\xf8\xf8\x84\x53\x19\x23\x41\xfe\x23\x4a\x62\x1c\x9b\x7a\x5b\x0f\x13\x94\x60\xfa\x52\x28\x6a\xa9\x96\xcc\xe6\x08\x75\xc5\x51\x12\x95\xa6\x6a\xe8\x50\x35\x34\xb9\x2e\x48\x84\xfa\x2e\x27\xd4\xd8\xd3\xe9\xc4\x9d\xa5\xf1\x10\x99\x2e\xf8\x54\x26\xf1\xa9\xe8\x97\xfb\x46\xa7\xab\x2a\x0d\x49\x5e\xd5\x38\x3c\xb8\x5d\x43\x65\x07\x95\x8a\x01\xf9\xd7\x61\x26\x1f\x2e\x54\xa9\x85\x52\x4c\xd0\xb9\x3f\x35\xf3\xac\xc5\xdc\x9a\x10\xbd\x6b\x2a\x91\x79\x31\x7e\x06\xe3\xe5\x23\xc1\x29\x2e\x0a\x49\x5f\x1f\x28\x05\xf3\x7c\xb1\x1f\x86\x96\x25\x92\x0d\xe3\x82\x94\xb1\x3e\x3f\x03\x20\x44\xac\x58\x1f\x16\x73\x3c\x4b\x2a\x54\xe1\x38\xee\xb1\x9f\x45\xdf\xcd\x82\x5c\x3a\x34\x3d\xfe\x02\x54\x29\x1a\xa4\xa2\xb9\x89\x4a\x0d\xf4\x81\x9b\x1b\xe6\x7b\xf2\x75\x57\x3d\x8c\x7d\x09\xfb\x00\x25\xb4\x3f\x52\xda\x6d\x91\x77\xc8\x14\xbd\xaa\x6d\x24\x3b\xcc\x54\x3b\x19\x51\xa3\x4b\xa7\x16\xf9\x8c\xed\x44\x33\x89\x9d\x2c\x31\xcb\x34\x08\x94\x5e\x8c\xda\x8a\x92\xe0\x74\xfa\x86\xb4\xc7\xf1\x50\x1a\xda\x76\xd9\x5f\x89\xcc\x6d\xdd\x23\x79\xbd\x59\x27\xca\x2a\xdc\x91\x00\xdf\xfe\x2b\x9f\x7c\x3c\xd0\xf7\x99\x2e\x45\xe5\xf6\x83\x22\xaa\xe5\xd8\x92\xc9\xb6\x08\xf0\xc6\xa4\xfd\xa9\xea\x58\xac\x03\x50\xb2\x56\x87\x26\x31\x1d\x43\xa0\x86\xf1\x54\x7f\xe7\xf7\xae\x26\x5f\xee\x37\x47\xf9\xb5\x1c\xf7\xb1\x4c\x10\x29\x95\x11\x60\xac\x94\xfb\x1c\x1a\x5e\x5b\x16\x34\xbe\x1b\xe8\xa9\xff\x42\x67\x52\x83\x9b\x81\x36\xa3\x0c\x29\x74\x8c\x0f\x02\x65\x99\xf8\x7d\xc6\x87\xfe\xdb\x11\x37\xcb\x87\x9a\xa6\x39\x8e\x0a\x59\x3f\xfb\x9b\x8f\x30\xe6\xd3\x19\xc6\xf7\x5d\x15\x2f\x40\xf0\x15\x06\x7f\x76\xf6\xea\xdc\x84\xdc\xb3\x57\xf9\x87\x4a\xeb\x7e\x35\x0c\xbb\xfe\x17\x68\x3b\x44\x75\xc1\x7a\x8e\xd3\xe2\x86\xb9\x4c\x49\xd6\x1f\xc8\x38\xaf\x8a\xad\x76\x92\x3f\xa5\x8a\x27\x74\xfe\x6a\x22\x7f\xd2\xb1\xec\xb4\x68\x19\xf8\xad\x9f\x13\x36\x5b\x10\x3f\xc8\x3c\x95\x5e\x89\xfc\x36\xd1\xfc\xfd\x96\x15\x9b\x1d\x89\x65\xcc\xf0\x38\x30\x28\xb9\x2e\x54\x3a\xcb\x01\x02\x44\xdf\x6f\x09\x41\x56\x90\x46\xa9\xc0\xd7\x8f\x96\x0f\x9d\xd2\x33\xad\xac\xa4\xfd\xff\xbb\x2a\xe4\x6f\x66\x8a\x7d\xbd\x7d\xfd\x37\x1b\x45\x52\x1d\xa7\x13\x2d\x25\x08\xb0\xa0\x11\x2a\x00\xe1\x20\x67\x76\x74\x60\x9d\x17\x25\x10\xcb\x9b\x54\xbd\x2d\x3e\xdd\x55\x70\xdb\xce\x94\x13\x2a\x17\x0b\x19\x31\xd3\x21\x26\xbb\x87\xc0\x59\xa9\x75\x10\x98\x16\x9e\x40\xea\x66\xb5\xd9\x97\x07\x3b\xd2\xef\x2f\x68\x23\x31\x2b\xfd\xe0\x7e\xff\x80\xab\x6c\x3e\xd0\xa1\xdd\x04\xf8\x5f\xe4\x77\x8e\xdf\xdf\xdb\xcd\x1c\xc9\xba\x2a\x5f\xe4\xe1\x8e\x8e\x78\x8f\x92\xcf\x0f\xc8\x09\x8b\x48\x7a\xbc\xec\x10\x90\x1f\x0a\x0b\x95\xed\xc2\xfe\x67\x2d\x05\xc4\x28\x42\xc0\x45\xbc\x4d\x5c\x32\x0f\xb0\x64\x9e\xbc\xf1\x9c\x37\xd3\x4b\x3b\x61\xc1\x25\x00\x42\x2e\x8f\x96\xd3\x72\xa3\xdd\x79\xb0\x38\x71\x3a\x33\xa5\x4f\xa6\x6a\xe6\x03\xe5\x07\xda\x60\x33\x15\x84\x7d\x77\xb0\xa0\xac\x3d\x0a\xd1\xc8\xcb\x31\xe1\x98\x96\x63\x28\x12\x0a\x37\x9b\x6a\xcd\xfa\x48\x6b\x37\x69\x4c\xd7\x99\x8e\x45\x01\xf3\xe8\x16\x27\x38\xac\x95\x5f\x56\x2f\xe2\x84\x25\x4a\x85\x4b\x56\xd4\x50\x55\x1d\x2e\x84\x9d\x88\xa9\xdd\xd0\x63\x62\xcb\xd2\x54\xbf\xe7\x53\x8a\x25\x2f\x61\xbe\xd2\xc5\x60\xfe\x03\x55\x55\x68\xe2\x70\xf5\x84\x8a\x4c\xd5\xef\xaa\x1f\x60\x5f\x58\xb5\xd7\x48\x4c\x2b\xd6\xca\x03\xd0\xa1\x6a\x83\xb8\x5c\x7d\xaa\xa1\xdc\x7d\x59\x7f\xac\x54\x60\x0e\x7a\x02\xe4\x2d\xb2\x0d\x91\x0e\x96\xcc\x64\x54\xc2\xa5\xb7\x1f\x79\x33\x72\x7b\x9c\x2b\xe5\x44\xd9\xab\x83\xe2\x75\x56\xd1\x1b\x17\x44\x55\x79\x44\xcc\x0e\x97\xa0\x7e\x62\x6f\x17\x9b\xeb\xe2\xa6\x87\x1a\xc9\xe8\x13\xab\xb5\xa5\x38\x13\x1f\x62\x85\xd6\xe8\x95\xbf\x3c\xa1\x0d\x67\x33\xc1\xb7\x00\x7c\xd2\x04\x8e\xe5\x1a\xc2\x33\x88\x8b\x2a\xa6\x3e\xba\x33\x5d\x0f\x26\x16\xfc\x59\x4c\x66\x09\x46\xb2\x5d\x45\xb8\x95\xd4\x73\x62\xa6\xec\x11\xb3\x89\xd4\x0c\xb3\x6d\x44\xbd\x65\xae\x89\x0b\xa6\x99\x45\x97\x9c\x26\x65\x4f\xf5\x3f\x12\xb6\xbf\xa6\x39\x64\x29\x32\x2a\x17\xf8\x20\xa3\x55\x31\xe5\xbf\xa4\x43\x35\x90\xf5\x03\x6d\x01\x9e\x69\x33\x01\xf8\x8b\x63\x5a\x72\xe4\x62\x8b\x61\x9a\xfa\xab\x7a\x97\xb7\xd0\x29\xfb\x29\x8c\x68\xeb\x18\x6d\xbe\xe6\xa8\x20\x56\xb0\x6e\xbd\x2b\x9a\xfe\xb2\x82\x92\x7d\x9b\x5f\xf2\x6d\xf2\x42\x9b\x66\xbe\x5d\xae\xfc\x0f\xb4\x2c\x12\x1a\x9a\xf6\x67\x0b\xd6\xce\x2d\x54\xda\xb4\xdc\xb9\x40\x93\x8b\x3e\x60\x56\x63\x4d\xbd\xf5\x81\xd1\x6c\x32\x05\x60\x9f\x93\x1b\x34\xeb\xcd\xc7\xca\x4f\xc4\xe5\xef\x1d\xb9\x9b\x75\xbd\x47\x90\xab\x97\x74\x99\x28\x45\xda\x15\x2d\x29\x2b\xa8\x93\xd1\x73\x51\x77\xab\x4e\x7b\xa4\xd2\x56\x78\x63\xf0\x5e\x19\x55\x08\x1d\x4e\x94\x98\x32\xb9\x81\x5f\x5e\x50\x17\x57\x57\xc9\xee\x3c\x47\x4e\x2e\x39\x93\x0d\x9a\xfd\xca\x4d\xbf\xcf\xe4\x0e\x7e\x19\x34\xf6\xcf\xe4\x4e\x5e\xd8\x5e\xd5\xc0\x0f\xb9\xa9\xe9\xf9\x1a\xc5\x8a\x88\x52\xfe\xd6\x92\x7c\x0a\x9b\xc6\xf4\x3f\x5a\xe2\x38\xa0\x78\xff\x57\xfa\x62\x41\xa0\xc9\x92\x8b\xc7\x91\x16\x05\xbc\x76\x3d\xf0\x0e\x3b\xa5\x8d\x41\x4c\xcf\x13\x4d\x21\x21\x1e\xd4\x01\x8a\x9d\x17\xf6\x4d\xeb\x51\x30\xd1\xe3\xad\x2d\x5f\x0a\x27\x4a\xb6\x17\xf6\x9d\xb1\x0e\x60\xbb\xc0\xe1\xc0\x4c\x3a\xee\x30\xdc\x91\xc0\xcc\x02\x2f\x9b\xe5\x2d\x1c\xfc\xae\x18\x88\x2c\x36\x22\xab\x09\x85\xf2\x45\x35\x3b\x54\x11\x6e\xba\xb9\x16\xb6\x0a\x91\xa9\x78\x9f\x45\x63\x15\xb3\x53\x99\xd3\x19\x2b\x89\xe9\x95\x41\xfe\x37\xfa\x54\x7d\x0f\xc8\x17\x3e\x54\x60\xc7\x1d\xb3\x5d\x0c\xc2\x70\xc6\xfd\xcc\x54\x43\x96\xaa\xc7\x14\xbd\x1f\xe7\xcf\xe5\xc3\x44\xff\x7d\x8d\x31\xd5\x24\x46\xec\x30\xef\xce\xb4\x46\x17\x22\x74\x5a\x2d\xab\xa2\x9a\xbe\x9b\x4a\xac\x52\x09\xf0\xd6\x2e\x8e\xc0\x03\xf0\xbd\x85\x93\x5c\x59\xf3\x0c\x91\xb6\x71\x97\x62\x7c\xd5\xc3\x62\x38\x81\x5d\x57\x17\x39\xeb\x82\x09\x6f\x48\x42\xd4\x71\x6e\x0b\x12\x2e\x3f\xd6\x45\x50\x3b\xd1\x62\xb1\xed\x8e\x1e\xa2\x2f\xd8\x6e\x07\xb7\xec\x53\xbb\x33\xbe\xb5\xd2\x8b\xa0\x37\xfa\x99\xed\x77\x7c\xb3\xe2\xc6\xfb\x0b\x12\xc2\x78\xd3\x7c\x27\xb4\x61\xe4\x56\x2c\xa8\x76\x04\xbc\x74\x52\x1c\x5f\x2f\xe8\xee\x99\xb1\x27\xd3\x1d\x54\x8e\x41\xa2\x02\x06\x14\x46\xad\x66\x30\x99\x72\xd1\x8b\xe1\xd3\xc1\x98\x5f\xb5\xd7\xf9\xa6\x6e\x3e\xf4\x3a\x9b\x4c\xc6\xbc\x00\x0b\x85\x15\xe1\xe0\x5e\x0c\x8a\xe4\x73\x6a\xbf\x64\x57\x50\xa3\x0d\x6e\x17\x55\x72\x19\xf7\x04\xc9\xb3\xb0\x51\x8c\xb7\xcb\xb2\xcb\x8a\x99\x64\xd0\x34\xbb\xd8\xa3\x51\xb6\x6d\xaf\xea\xd1\x48\x43\x38\x0d\x5a\x17\x85\xd2\x39\x0f\x10\xba\x24\x4f\xec\x3a\x11\x5b\x2a\xb3\x0b\x40\xeb\x00\x36\xe8\xb2\xde\x8a\x99\xe0\x2f\x76\x3d\x88\xf5\x09\xb2\x04\xb2\x61\x6d\x92\xf6\xde\x5f\x8a\xbc\x6d\xed\xf2\xd1\x88\xa1\x65\x1e\xd9\x99\x2f\x33\x80\x13\x3b\xe9\xec\x18\x3f\xb4\x02\xd3\xef\xdf\x81\x26\x99\x61\x81\xbf\x31\x92\x95\x0f\x04\xa2\xdd\x24\xac\xdd\x33\xbd\xaa\x08\xf9\x3c\xb5\x2e\xff\x2d\xee\xf6\x82\xea\x81\xa5\xf1\xe5\x08\x44\xa5\xf5\x04\x72\x96\x83\xb6\xb6\x0e\x72\xcf\xa3\xde\x4f\x36\x8b\x95\xbb\xa6\x69\xf0\x23\x57\xf4\x2e\x17\x66\xe1\xc3\x8a\x56\xb9\x28\x84\x29\x86\x98\xa3\x34\xb8\x65\x94\x2a\x9c\x3c\xa6\x8d\x9a\xa6\x18\xeb\xd7\x3c\xc2\x05\x75\x8e\x81\xc9\x45\xa5\x09\x63\x46\xc2\x59\x7f\x2a\x53\x4b\x1b\xa9\xee\x5c\xcd\x22\xb9\xf4\x41\x60\x79\x22\x74\x8d\x2f\x1e\xc4\xd0\x31\xe4\xab\xad\x63\x42\xfe\x2a\x33\x98\xf0\x04\x72\xd7\x11\xde\xd1\x01\x9e\x12\xca\x09\x69\x4c\xc8\x20\xa8\x60\x8b\xeb\xff\x48\xfd\x68\xdc\x5a\x15\x1f\x23\xf8\xb2\x94\xa0\x9f\xa2\xfd\xc1\x1c\xb4\x26\x2b\xcd\x0f\xb9\x42\xf9\x43\x1f\xe9\x87\x10\x44\x19\xeb\x73\x4d\x18\xe5\xdb\x60\x24\xdb\x16\x64\x66\x34\xca\xcd\x18\x5d\xaf\x1b\xb1\xbe\x08\xf7\x81\x09\x61\xca\x9f\x83\x52\x11\x3a\x88\x3a\xdc\xe8\xd4\x4f\xe3\xd6\x23\x1e\xfd\x9c\x2a\xd2\x65\x6c\xe9\x36\xfa\x2a\xa3\x1e\x01\xc7\xe3\xad\x6a\x09\xe4\x49\x95\x75\x0c\xe5\x21\x44\x1d\x14\x52\x97\x89\x9a\x1f\x1a\xfb\x2f\x51\xed\x33\x3b\xf0\x4f\xd0\xea\x27\x4d\x45\xad\x7e\xe8\xe4\x68\x87\x4d\x46\x39\xdd\x6a\x94\x01\xce\x44\x71\xd9\xf1\x1b\x8a\xcd\x81\xed\xe0\x56\x44\xda\xe1\xe9\xa1\x24\x30\x27\x8a\x09\x38\x95\x98\xf5\x85\xc9\x12\xec\x0d\x45\xf4\xe9\x27\xaa\xea\x74\xcd\x9f\x40\xb6\xa3\x49\x11\x58\xd8\x04\xd2\x59\x2f\x7c\xb1\xca\x8a\x5b\x9e\x07\xb9\xb3\x0f\xe6\x63\x93\x2b\xb9\x23\x15\xa8\xae\xea\xf5\x15\x8d\xab\xde\xf2\x55\x35\x30\xc9\xee\x43\xa3\xbc\xcb\xbf\x88\x44\xb5\xeb\x86\x75\x61\xdc\x82\xd8\x8b\x85\x33\xeb\x87\x7e\xe8\xda\x66\xfd\xe3\xf3\x96\x05\x51\x56\x11\xf1\xb9\xfa\xd3\x0f\xdf\x68\x3a\x91\x61\x5e\x42\x36\x2e\x7c\x59\x0f\xaf\xf6\x17\x0f\xfa\x7c\xcd\xd6\xae\xb8\xc6\x29\x9c\x0d\xac\x1a\x29\x88\x31\xdf\x75\x13\xa6\x05\x16\xb1\xb4\xc7\xfb\x76\x43\x1b\x24\x2d\xd2\x6e\xb7\xb2\xbc\x44\xc0\xb6\x02\x89\xfe\xc3\xae\xa1\x6a\x30\x73\x55\xa7\xf3\x43\x15\x2e\x02\x8a\xc7\xf5\xd1\x65\x33\x06\x32\x51\xbc\x28\x0b\xc7\xc0\xb8\xaa\x6d\x06\x77\x12\xb1\xd6\x25\x0f\xc5\xc0\x7b\x4c\x8b\x61\x21\x59\x8f\x35\xd5\xf9\x40\xb6\x40\x1d\x56\x9e\x8a\x52\x4f\x84\x09\xe3\x34\x6b\x53\xd8\x8f\x8a\x75\xea\x82\x5a\x0e\x7d\xf9\xf4\x31\x8d\x30\x58\xe9\xd0\x41\x20\xec\x68\x87\x2b\x4d\x93\xd1\x2b\x45\xb3\x11\x38\x9a\xa6\x73\x12\xa9\xda\x18\x26\xa1\x6b\x95\x50\x35\xeb\x85\xa7\x67\x62\x10\x25\x34\x4d\x50\x92\x64\x17\xa6\xd8\x9f\x49\xcf\x26\xed\xc6\x81\x5b\x73\x9f\x41\xd3\x30\xa6\x27\x98\x0e\x1a\x0b\xb4\x2d\xba\x52\x6f\x54\xb7\x82\x0c\xb6\xa4\x8d\x72\xd4\xdb\x56\x6f\xe4\x72\x4b\xc4\x9a\x90\xe0\x34\x54\xc9\x66\xe6\x4e\xc0\xf6\x51\xcc\x7b\xa0\xae\xf9\x6f\x79\x59\x10\x25\x18\xda\x0f\x84\x4c\xd3\x22\x48\x3f\x54\x28\x50\x18\x93\x5e\x94\xbe\x3c\x89\xe4\x61\x2c\xcf\xe8\xc5\xf6\x41\x12\xe3\x28\x8b\xd6\x1a\x4c\xac\x44\xd7\x04\xbb\x72\x36\x44\x29\x85\x92\x28\x21\x50\x3b\xa2\x40\x01\x88\x69\x6b\x18\x08\xfa\x60\xfe\xd0\xdf\x7e\x59\x92\xfa\xdd\x76\x21\xfa\xbd\x6f\x1c\x01\x15\x74\x58\xca\x54\x84\x41\x9e\x12\xcb\x01\x2b\xca\x27\x52\xe1\x39\x67\xf7\x6a\x41\xac\xf6\x01\x56\xe4\xa5\x26\x62\x0f\x00\x50\x26\xbc\x0f\x13\x81\x5f\x51\x4f\x61\xb5\xa8\xe9\x87\x1a\x48\x62\x0d\x08\xeb\x8c\x64\x5e\x89\x29\x48\xfe\xe4\xf4\x35\x1d\x19\xa1\x41\xab\xf4\xe7\x82\x98\x73\xe9\xc2\x75\xd0\x91\x30\xb2\x8d\x69\x6e\x10\x23\xa4\xb8\xa9\x64\x51\x12\x5b\x3c\x0c\x6a\x32\x20\x19\x4c\x9a\x2f\x73\x5c\xf5\x4e\x6f\x24\xad\xa1\x27\xe3\xd3\x2a\x0c\xf5\x2b\x9a\xd9\xa0\xbd\xe4\xad\xb5\xbb\x61\xfa\xef\x4c\xbf\x0a\x99\xa1\x6b\x50\xf0\x91\xcd\x19\x41\x42\x77\x92\xf3\x16\xee\x02\xfd\xb0\x0e\x2b\x05\xf1\x4b\xe9\xc9\xc8\xec\x62\x46\xa2\x32\x5b\x6c\x8e\xb2\xec\xac\x9e\x74\xcc\x77\xd1\x19\x46\xfc\x28\xd9\xdf\x42\x65\xfc\xa8\x1c\x2a\x9f\xce\x36\x1b\x30\x5a\x9a\x1e\xd1\x9b\x5c\x0e\x42\xb1\x9c\xe0\x56\x44\x60\x51\x8c\x70\xf6\xc8\x54\xcb\x75\xb5\x61\x4b\x62\x6d\x3d\xde\xaa\xea\xd0\x13\x1b\x03\x05\x72\xc2\x6d\x15\xb9\x5b\x99\x0a\xaf\xf8\xb3\xca\x08\x82\xb6\x1b\xcc\x0a\x44\x3b\x60\xe7\xf5\xb3\x27\x6f\xdf\x9e\x9c\xc7\x63\x9a\xf7\x41\x53\x12\x33\xf1\x55\xb0\xbe\x9b\xf4\xcb\x6c\xf0\xc2\x02\xa6\x10\xd1\x0a\x50\x4b\x1c\x82\xf3\x64\xca\x6a\xa7\xcf\x75\x0b\xda\xd3\x72\x5f\x8c\x96\x27\xfd\x2f\x0f\xad\x5f\xf6\x2b\xf3\x37\xef\x33\x53\x9f\x9f\xf0\xdf\xcc\xdf\x40\xb8\x4b\x1f\x6c\xbd\x78\x37\x14\xcd\xfc\xa9\x03\x6d\x39\xb9\x91\x00\x91\xde\x17\x10\xb6\x68\xee\x5b\x9c\x15\x97\x39\xee\xd0\x8f\x58\xc1\xda\x76\xd8\x30\x3c\xb9\xfb\xa6\xfe\xeb\x1e\x0c\x1a\x0b\x44\x44\x3c\xd8\xa8\xf3\xa2\xde\xc8\x81\xf2\xa7\xf0\x43\xd2\xf9\x6b\x64\x8a\xee\x1a\xa7\x5f\x3f\xf4\x3b\xb6\x89\xa5\xb3\xa1\x7f\x7c\x6f\x5f\xe7\xac\xaf\x63\x9b\xb0\x7b\x3f\x92\x04\xc3\x37\xeb\xb4\x7c\x04\xf1\xe3\xa4\x3a\x76\x47\x5b\x89\x72\x2f\x58\x17\x01\x6f\x35\x9d\x77\x0b\x73\xbc\x89\x46\x51\x26\xfe\x77\xb4\xc9\xbe\x6f\x71\x1c\x5f\xab\xdc\x4d\x73\x84\xbd\xfb\xb1\xd8\xec\x53\xfd\x0b\xb7\xce\x65\xfa\x87\x19\xec\xec\x63\x59\x98\x0f\xc1\x9b\x92\x33\x08\x1b\x7e\xc2\xa4\x0d\xb7\x3b\x4f\xb1\xdf\x25\xb3\x7e\x5f\x65\xe8\x89\xaa\xb4\xc7\x6e\x78\xc8\x33\x8b\x7a\xce\x83\x59\x3d\x52\x67\x56\xc3\x39\xcc\x14\x9b\x41\x94\xd9\xb9\x5b\x4d\x26\x2d\x18\x44\xe5\x31\x46\xef\x1c\x03\x05\xeb\x57\x5d\x0d\xaf\x00\x49\x67\x5f\xcc\xdc\xf9\x61\x86\xc4\xd8\xee\x19\xe1\x3d\x4d\xd1\x62\x5d\x0f\x24\xc4\xb3\xeb\x17\xac\xc8\x33\x22\x1b\x74\x92\xc1\x8b\x53\xbe\x2c\x65\x52\x94\x0f\x7d\x81\x85\x16\x8e\x59\x4d\xdd\x01\xfc\xa1\xbf\x67\x4a\x29\xa0\xf9\x90\xf2\x7d\x4a\xbb\xac\x9b\x9a\x37\xfe\x6b\xfa\x43\x87\xba\x88\x00\x29\x9a\x0a\x7f\x8b\x4a\x54\x65\x24\xf2\x77\xa8\x47\xed\xfa\x74\x55\xd4\xa0\xcf\xad\x8b\x1a\x9e\xab\x4e\x1e\xd3\x86\x84\xfc\x29\x12\xd4\x77\x93\x7a\x42\xab\xf0\x51\xd8\x21\xf1\xc1\x7c\x6d\x29\x5f\xb3\x04\xf8\xd0\x00\x4d\x7e\x0b\x70\xaa\x85\x18\xe5\xdb\x22\xe9\x0d\x9f\xde\x8e\xd3\xae\x60\x52\xce\x6a\x02\x5c\x53\x50\xe7\x4b\xbe\x4e\x28\x36\x7d\xae\x62\xa7\x5d\xba\x67\xd7\x7c\x95\x2d\x6a\xf5\x3f\xeb\x27\xb4\xea\xeb\xe2\x6f\x92\x7a\x16\x7e\x00\xcd\x7a\x45\xbc\x5e\x75\xea\x34\x13\xab\x2b\x35\x1a\x6b\x2f\x97\xe2\x7a\x85\x63\xf3\x3c\x5c\x5c\xf2\x9e\x05\x1c\xcd\xed\xb6\xf8\x54\x6f\xf7\xdb\x3c\x00\xa2\x28\x63\xe2\xfd\x32\xd9\xc9\x8b\x79\x9d\xfd\xf8\xde\xfb\xcb\x55\xf7\xe3\x1a\x6e\xd7\xe0\xb3\x75\xd8\x92\xef\x63\x6c\x63\x27\xc6\x25\x99\x7a\xd9\x9a\x53\x61\x70\xb3\x15\xaf\x42\x9f\x7b\x98\x46\x9a\x1e\xa8\x48\xc9\x16\x4c\x6a\x2f\x88\xec\xdc\xfb\x51\x16\xdd\x68\x96\xd5\xaa\xc8\x78\xac\x8e\xbe\x0e\x1b\x15\x62\x21\x84\x29\xe2\xd2\x33\x38\x04\x45\x54\x9a\x81\x4a\x8e\x35\x65\x2d\x0b\xe7\x54\xf4\xcd\xcb\xd7\xe7\x70\x29\x22\x9c\x14\x25\x9b\xfa\x4d\xb1\xc1\xf5\x22\xd4\xc9\x27\x5e\xdd\xf7\xc2\x09\x35\x35\x26\x9e\xa9\xd1\x8c\x1a\x4e\x24\x77\xad\x2c\xc5\x00\xab\xcd\x6e\x72\x01\x63\x16\xdf\xaf\x25\x51\x0b\x72\x22\x54\x02\xe9\xa5\x97\x99\x9e\x15\xde\x9b\xcd\xaa\x0d\xf7\xac\x71\xd9\xfc\x15\xab\x6e\x35\xa5\xb6\xea\x33\x7d\x69\xf4\x96\xd0\x42\x73\x94\x80\x86\x1c\x71\x70\x62\xd7\x8c\x94\x04\xc3\xbb\xba\xf0\x2b\xef\xad\x2a\x69\xab\x30\xd3\xb2\xbb\x59\xb2\x36\x1f\x7c\xca\xee\x26\x26\x38\x86\x8e\x32\x68\x42\x1d\x70\xb0\x6e\x39\xc5\x3a\xff\xdf\xff\xfd\x7f\x1e\x3d\xe3\x81\x3f\x1b\xba\x0d\x7d\x29\xbf\xcc\xf0\xb2\x10\x52\x41\x7e\xf2\x6f\x24\xf7\x5c\xab\x29\xcb\x2f\xf2\x95\xd9\x6f\x10\x03\xca\xef\x55\x05\x8f\x8f\x4c\x7f\x31\x4d\xc8\xd4\x59\x9c\x89\x41\xc6\x42\xa7\x22\x0e\x09\x9c\xfe\xc8\xf8\xeb\xbe\x5e\x7d\x58\x8a\xae\xe4\x71\xfe\xef\xfc\x2b\x87\x9f\xb0\x9e\x9a\x4c\x89\x03\x59\x05\x7a\x8e\x68\xb3\x37\xa9\xc6\x51\xa3\x7e\x0d\x91\x0c\x17\x29\x17\x70\x63\xa6\x9a\x06\xc8\x5e\x50\xd9\x6e\xcf\xc6\x5b\x8c\x12\xd6\xda\x29\xa5\xc0\xa3\x8c\x13\x99\x67\x73\x35\x84\x9b\xd8\xa4\x0e\x34\x4f\xdd\x15\x7f\xc0\x59\x66\x07\x59\x51\xf1\xc7\x26\x7a\x17\x05\x0d\x59\x05\x8f\xc4\xb1\x3b\x9c\x15\x7a\x46\x0c\x5d\x05\xd1\x8a\xfe\x64\x74\x04\xb1\xbd\x9f\x5e\xf1\xb2\x4f\xec\x50\xe0\x4a\x13\xe9\x76\xc1\xcb\xf7\xd4\xc5\x5a\x2b\x82\x4c\xf5\x54\x3f\x33\x4a\xe7\xdf\xe7\xf4\x67\xe2\xbd\xce\xbe\xee\x53\x1f\xf7\x4d\x71\x51\x21\xf9\x0d\x3e\x08\xfd\xe9\x14\x1c\x68\x45\xe4\x14\xb2\x1f\x19\x4f\x49\x3d\x08\x22\xe2\x2b\x53\x07\x12\xb9\xce\x95\xcf\x0c\xb7\x65\x5d\xc1\xe6\xd4\xef\x8a\x6b\xf9\x49\xd3\xa5\x4e\xf0\xaf\xe4\x4b\x92\x61\x9c\x2f\xa0\xb0\xcd\x0f\xf0\x60\x9b\x75\x37\x9c\xda\x77\x66\x1d\x58\x4c\x3b\x62\x39\x23\x1f\xfc\x7c\x35\xca\xbf\x14\xe1\xff\x05\x8b\xfe\x96\x56\x80\xae\xe7\x66\x3d\x18\xd2\xb7\x7c\x92\xe2\x4a\xe9\x58\xbe\x42\x4e\x29\x46\xbb\xcf\xc1\x1f\x68\x9a\x39\x4b\x9c\xf0\xdf\x90\x4a\xf8\xa9\x9c\x21\xfd\x0d\x8e\x07\x12\xb9\x82\xa5\x7e\x71\xfa\x8f\xc9\x8b\xf1\x5a\xb8\xac\x86\x99\xad\x0b\xdc\xdd\xd1\x56\x43\xbe\xcf\x5e\xd1\xfc\x77\xcb\x50\xfe\x19\xff\xcc\x37\x93\x5a\xc2\xe2\xfa\xb5\x1d\x35\xe3\x61\xa8\xa9\x59\x30\x69\xce\x43\x4a\x8b\xdb\x39\x60\x92\xf4\x9a\x04\xf6\x84\x12\x3c\x6a\x25\x15\xb3\x8c\x32\xaa\x19\x62\xcb\x3c\x3c\x1d\x99\xec\x9a\x06\xc1\x4d\x3f\xa7\xfd\x74\x40\xd2\xcd\x62\x06\x94\xf5\x67\x11\x8e\x06\x3e\x06\x52\x15\x6f\xa0\x3f\xe3\xd5\x8b\xeb\x43\x4b\x3b\x5e\x20\xc9\x5c\x12\x57\xb9\xaa\x82\x6b\x0d\x80\xc0\x8d\x70\xb8\x88\xa4\x99\x50\x99\x36\x96\xd4\x87\x09\x1d\x8a\x0b\xca\x26\xee\x89\x67\x33\x14\xe6\xb9\x8a\x59\x32\x75\x96\xa9\xc4\xc5\x6a\x4e\xaa\xf4\x79\xc4\x38\x2d\x85\x29\x96\x89\x08\x0c\xf2\x66\xa6\xc4\xad\x18\x35\x86\x39\x58\xf3\x04\x6f\xb4\xe4\x2d\xcb\x1b\x21\x38\xc0\xc2\xe1\xaa\x0f\x94\x53\xce\x0d\xfc\xda\x34\x67\xc1\xfe\x57\x81\x7e\xb2\x0f\xbd\xfc\x98\x05\xed\x35\x9a\x0c\x89\x1c\x7c\xb2\x87\xae\x96\xaa\x4c\x9b\x2b\x24\xab\x5c\x2e\x2f\x6e\xb4\x8c\xac\x33\xdc\x5a\x0f\x14\xd9\x32\x2f\x0f\xc1\x52\x8b\x1c\x87\x84\x99\x22\xbd\xfa\xc4\xb3\x53\xfa\x34\x67\xc1\x07\x13\x4c\x87\x98\x36\xf5\xb3\x20\x8c\xa5\x00\x39\xc1\xc7\x1c\x88\xa8\x98\x55\x49\xc4\xa7\x80\xf8\x80\xd8\x3d\xf7\x6c\xc3\x6c\x0f\x15\x4a\xbc\x81\x75\x54\xf7\x19\xe5\xd8\xd0\x98\xe9\xaa\xdc\x28\x1c\xb7\xb0\xfe\xc5\xcf\x5b\xda\x89\x05\xa4\xa1\x49\x09\xde\x49\x58\x05\x02\x91\xef\xfc\xfe\xaf\xdf\xbe\xef\x79\x19\xe2\x65\xcd\xaf\x7f\x7c\x4f\x92\xfa\xfd\x5f\xbf\x7b\x8f\x5b\x9a\x49\xe1\xe5\x25\x2b\x29\xa7\x35\xa0\xa0\x41\xef\xba\xea\x63\xdd\xee\x7b\xe1\xd7\xf0\x19\xe9\xc3\x27\x59\x8a\x4f\x43\xba\xc5\x83\x73\xfe\x68\x87\x97\x21\x2b\xdd\xe1\xcd\x7e\xbb\xd4\x31\xf6\x42\x01\xec\x57\x28\x6e\x33\xb0\x2c\xb8\xc9\xdf\xc2\x6f\x1e\x6e\x5d\xf2\x60\xa9\xf3\xa6\xa0\xf8\x83\xfc\xfa\x11\x03\xe1\xa1\xff\x16\x5a\x6a\xdd\xfd\xce\xb9\x84\x17\x60\xfe\x3b\xdc\x34\xdd\x54\xc3\x22\xa5\x4a\x16\xea\x06\x5d\x4e\xb3\xb4\x17\x11\x44\xd7\x0d\xf6\xd5\x1e\xbc\xab\x30\x31\x06\xf7\x0e\x3f\x47\x99\xb7\x55\xd6\x25\x05\x94\xd4\x46\x2c\x51\xd0\xd1\x5c\xeb\x4c\xc9\x31\xf4\x65\xd3\x24\xed\x85\x3a\xec\xe7\x17\xd6\x22\xfc\x04\x31\xb0\x97\xa1\x9e\x4b\x9a\xf1\x66\x85\xbb\x00\x5c\x97\xf0\x50\xd5\xc0\x56\xa0\xbf\xb0\x89\x5d\xab\xf1\xbb\x4e\xf1\x61\xc9\xa2\x7c\x53\xd7\x89\x80\x9b\x89\xa2\x52\x13\xcd\x95\xee\x12\xa2\x13\x28\xb6\xb9\xcf\x5d\x42\x7e\x8a\x14\xd8\xdc\xcc\xcd\x05\x43\x25\x08\x22\x96\x6c\x38\x28\x23\x22\x34\x62\x87\x61\xd5\x7d\x1f\xf4\x6e\x4c\x2e\x54\xcd\x5b\x52\x6e\xd3\x79\x21\xfd\x6e\xad\x4a\x68\x83\x7e\xa6\x3f\x61\x5e\x47\xd6\x50\xd6\x3f\x6e\x85\xba\x4f\x7f\x2c\x49\xce\x45\xdb\x74\xf1\xdc\x4e\xf3\x57\xed\xa6\x8d\xe7\x3a\x7e\x8d\x01\x44\x17\x7d\xbf\x1c\xf1\x66\x92\x1d\x71\x5b\x77\x2f\x27\x8c\x4e\x1e\x81\x9c\x19\x8c\x64\x8c\x4c\xfd\xd2\xcc\xe0\x11\x24\x1d\x84\x5f\x90\xc5\xa4\x98\xd6\xa2\x16\x73\x00\x0d\xca\xf0\x59\xb0\x79\x3b\x11\xe1\x33\xfc\x3d\x07\x73\xed\xde\x36\x84\x6f\xfa\xdd\xd5\x87\xd6\x7d\xf8\xa6\x63\xbe\xf1\x28\x21\x4b\x5f\xef\xb8\x52\x15\x31\xc8\x71\xe1\x5e\x1c\xd2\x4c\xd6\x95\x17\x84\x99\x62\x2a\xa4\xa2\x06\xa7\xa8\x5d\x56\x3f\x0f\x67\xf3\x60\xc0\xc3\x75\x9b\x07\x21\x0d\xb1\xe7\xf8\x9c\x28\x72\x2e\x6c\xee\x94\xd8\x1d\x5a\x7e\x31\xaa\x16\x0e\xf1\x8f\x61\x0b\x39\x6e\x50\x5b\x78\x9c\xeb\x97\xe6\x27\xf2\xe3\x58\x6e\xb4\x91\xb7\xac\x58\xdb\x6f\x70\x44\xe0\x9e\x58\x7e\x5c\xca\x0d\xa7\x01\x21\x4e\x17\xf3\x34\xb1\x2d\x47\xe7\x25\x8a\x97\xda\xad\x70\xee\x45\xb5\x2a\x60\xf5\x0c\x97\xba\x86\x35\xe1\x45\xe9\x46\x4f\x20\x1c\x78\xc4\xea\x67\x33\x72\x1f\x7b\x8d\xa9\x5a\xa8\xde\x74\x23\xa3\x99\xba\xa8\x86\x6b\x78\x9a\xc0\x90\x84\x27\x57\xd4\xea\xfd\xf7\xfe\xac\x26\x02\xf7\x0d\xda\xf8\x86\x0f\xec\x52\x89\xdd\x1f\xf0\x43\x48\x9e\x4e\xe5\x88\x9d\x9f\x41\x03\xec\x77\x5b\x54\x46\x47\xdc\x33\x6c\x2b\x6a\x14\x87\x7c\x69\x12\xa6\x90\xde\x1f\x58\xca\x37\xda\x8a\x6f\xc2\x70\x36\x14\xd1\xf4\xef\x42\xba\xd6\x8f\x9a\xf4\x2c\xb7\x66\x24\xed\x3f\x57\x3d\x95\xfe\x97\xf7\x86\xa3\x24\x0c\x2c\x3d\x35\x05\x7e\xc6\x9f\x09\xd4\x58\xb0\x8e\x79\xa2\x1b\x07\x42\x55\x66\x97\x5a\x6a\xbe\x9e\xbb\x84\x2a\x32\x35\x41\x2f\x2d\x19\x7a\x0b\xea\x57\x92\x7a\x4d\x42\x3e\x13\x02\x9d\xcd\x70\x19\xb8\x48\xa6\x06\x4c\x6e\x17\x5b\x62\xac\x09\x39\xe7\x93\x6a\xc3\xce\x57\x98\x74\xe3\x4b\x15\x1c\xa5\x8c\xf6\x87\x5d\x01\xd3\xaf\x70\xd9\x33\x5f\x97\xc2\x96\xfb\xe8\x29\xc0\xb3\x48\x85\xa0\x09\x73\xf4\xcc\xfa\x5e\xf7\x4b\x98\x7e\x89\x35\xfa\xb9\xda\x73\x6d\xea\xd5\x90\x87\x74\xef\x2c\xb0\xeb\xda\xb5\x84\x35\x0a\xce\x01\x74\x5c\xf6\x57\x08\x94\xc2\x00\x97\x44\xa5\xb6\x2d\xf8\xb8\x40\x22\x8a\x66\x89\x4b\x0e\x0c\x35\xd1\xde\x26\xc3\x50\x55\xae\x4e\xc8\x28\xfc\x49\xa8\x0a\x9a\xf2\xcf\xab\x4d\x6e\xd9\xe7\xea\x0b\x24\x40\x9c\x78\x78\xc7\xdb\xb8\xfb\xc3\x6d\x8d\x43\xe7\x09\x3e\x6c\x8b\x46\x6e\x2d\x6b\x76\xef\x61\x69\x59\x5c\x83\x61\x45\x35\x5c\xcd\xd4\x2c\xb5\x8d\x48\x0a\x90\x67\x6e\x67\x03\x61\xf7\x8d\x6e\x40\x94\x82\x3e\x90\x51\xfc\x37\xd5\xdd\x3e\x18\x02\x92\x2a\x22\xc7\x2b\xeb\x74\xa8\x9e\x64\x35\x72\x68\x27\xd3\xf6\xf5\x1f\xee\x97\x0f\x65\x13\xc3\x98\x6a\x72\x03\xc5\x89\x32\x70\x7f\x3c\x32\x15\xad\x7b\x38\xd2\x33\xca\xf0\x41\xc1\x40\xf4\xbd\xf8\x2d\x73\x7a\x3a\x77\x96\x45\x09\xdc\x65\xcf\xa8\x0b\x5c\xee\xbc\xca\x60\x0c\x50\x46\x45\xcc\xfd\x3e\x69\xbb\x5d\xd2\xd6\x58\xaa\x3c\x47\xc7\x09\x6f\x14\xfc\x1a\x77\xc1\x04\x99\x71\xd5\x41\x24\x48\x47\x44\xe7\xfa\x05\x9f\x21\xe2\x23\x2e\x34\xda\xe9\x26\x09\x1f\xd4\xe5\x47\x8d\x06\x94\x39\x48\xaa\x1f\x91\xf8\xd9\xd9\x31\xa6\x0e\x0e\xca\x3e\x63\xe6\x22\xd4\xe7\xc6\x41\x3f\xa7\x11\xb3\x36\x30\xff\xda\xc2\xaa\x3d\x4c\x07\x59\x89\xc1\x3b\xff\xf5\x19\x21\x10\x8e\x56\xb5\x94\xa5\xd7\x1a\x51\xb9\xa6\xc4\x00\x31\x47\xc1\xbf\xf7\xc1\x0d\xfd\x7b\xb4\xdd\x3e\x2a\xcb\x07\x33\xa3\x76\x6c\x51\x18\xf6\xc8\xc4\x4e\x75\x10\x23\x32\xe9\x6a\x72\x5c\xe6\xfc\xdc\x31\x40\xb2\x4e\xbf\xf0\xe1\xcf\x07\x35\x73\x1d\x65\x9c\x39\x41\xde\xb8\x7a\x3d\x1f\x00\x2d\x91\xbb\x68\xb8\xc3\x3b\x5a\x7c\x41\xfd\x58\x46\x1c\xba\xcb\x1a\xb9\xb7\xdf\xda\xc1\x70\x85\xa2\xfc\x1c\x11\xef\xed\x81\x49\x91\x58\x88\x07\xa7\xc4\x71\xc6\x71\x5a\x03\x77\x3c\x03\x38\xcf\x1b\xc7\xd6\xff\x99\xfc\xf1\x5c\xf3\x73\x68\x70\x17\x87\x7c\x5d\x7f\xa8\xa9\xc0\x9f\xe9\x0f\xbe\x17\x1a\x90\x20\x8f\x01\x08\xa8\x5d\xce\xfe\x2a\xc9\xb7\xb1\x72\x0e\xe3\x2c\x13\x6a\x68\x3c\x73\x09\x40\x28\x86\x5a\xfb\x0d\xdf\xab\x7c\x90\xe3\xb4\x5d\xed\x21\x7b\xdf\xa8\x5b\xcd\x7f\xc0\xc7\xa5\x25\xae\xee\x4a\x43\xe1\x81\x67\xae\x07\x45\xaa\x85\x34\xa8\x38\x0e\xff\xbc\xa5\x46\x91\xd6\x4d\x3e\x20\x22\x2a\xa5\xe3\xf8\x14\x70\x1f\x67\x1a\x09\xca\x27\x6b\xba\x72\xc9\x11\x5e\x5c\x25\x7c\xad\x6f\x35\x58\x9a\xe4\xdb\xb5\xbf\x0a\xe6\xf1\xae\xe0\xcf\x5d\x2d\x37\x53\x1c\x6b\xb3\xb8\x60\xc3\x61\xac\xb7\x2a\xbc\x22\x81\xd0\x71\x20\xb6\x94\xb6\xc4\xf2\xa6\x6b\x03\x86\x9e\xda\x00\x23\x05\x93\xe7\x3e\x67\x84\x36\xa9\x1f\xe5\x88\x1a\x03\x1c\x98\xce\x29\x4b\x0d\x55\xa2\xd2\x61\x32\x9e\x98\x97\x8e\x07\x79\x7a\x84\xc5\x83\x10\xcb\x88\x46\x46\x76\xc0\x89\x0d\x70\xbf\x88\x75\xf4\x3a\xc9\xbd\x1b\x82\xf9\xbc\x98\xb9\xaa\xfe\xe4\x48\x4c\x73\x11\x9e\x2d\x6d\x21\x53\x05\x67\x36\xf9\x8a\x59\x2e\x74\x94\xf2\xb3\xee\x77\x04\xbb\x6a\xdb\x0f\x12\x3d\xeb\x02\x9f\x31\x67\xcd\x11\x63\x25\x93\x63\xa3\xbe\x4a\x73\x49\x84\xa9\x57\x3e\x92\xf4\x53\x4e\x98\xe9\xa2\xfa\x99\x9d\x58\x28\x34\xb6\x57\x8a\xb9\xea\x21\xe4\xea\x51\x87\xa6\x69\x45\xea\xcc\xc2\x7c\xc1\xe7\x79\x81\xcd\x79\x7f\xa5\x1e\xe9\x8b\x58\x7b\x51\x7e\x64\xea\x59\x26\xd1\xb6\x35\x6d\xa6\x33\xbc\x74\xc1\x5c\x54\x1c\x9e\x40\x10\xd8\xc8\x14\x76\xfb\x46\xb9\x81\xeb\xb6\x83\x5d\x05\x42\xa7\x46\x55\x70\x10\xb8\x81\x4d\x31\xd9\x74\xf3\xba\x82\x01\xa7\xa8\xad\x86\xae\xe0\x80\xd3\xb9\x9b\x39\x62\x48\xaa\x4f\x6c\x9d\x51\xa8\x16\x7e\x69\x40\x72\xc4\x58\x66\x5a\x43\xac\x40\x13\x10\x2e\x35\x1c\xaa\x3f\x5b\x21\x5c\xdc\xe4\xe7\x5a\x23\x1b\x35\xbc\x00\xcc\x6d\xe5\x7d\x7c\x42\xe6\xa9\x99\xf9\xf3\x97\x39\x22\x84\xfd\x9d\xed\x6e\xfe\x91\xff\x9d\x97\x81\xfe\xd4\x4d\x59\x7d\xfa\x87\x09\x65\x21\x7a\x23\x2f\xf1\xd1\xc4\x54\x4f\xb8\x3d\xee\x19\x8a\xb9\xf5\x03\xcb\x3a\x9a\x4e\xcf\x5f\xf6\x66\xff\x4b\x28\xa3\x2e\x98\x7c\x26\x74\x35\xed\xf6\x74\xe3\x94\x8c\x48\xdd\xf2\x6f\x72\x5d\xf3\x1c\xbf\xf2\xff\xc5\x67\xa6\x1f\xba\x38\x40\xf3\x8d\xb4\x7e\x9e\x98\x0f\xf5\x14\x2c\xc8\x0a\xd1\x6f\x3a\xbd\x1c\xe7\xae\x35\xe2\xcf\x84\xc1\xb7\x9d\x24\xa5\x0e\xdb\x84\x18\x21\x2c\xaf\x6a\xf9\xa0\x79\x84\xa1\x6f\xef\xe6\x02\xf1\xe8\x11\x3d\x81\x65\xc1\x5e\xac\x84\xd4\x0b\x5c\x9c\x09\x45\x3b\x59\x04\x8d\x61\x9f\xda\x5e\xa4\xa4\x2c\x06\x35\x13\x6f\x44\xeb\x2a\xf2\xdc\xbc\x8d\x1c\x68\xb1\x2d\x9d\xe1\xcd\x08\xd0\x26\xe5\x84\x76\x98\x58\xa2\x4b\xb1\x22\x71\x40\x1f\x9c\xd6\x5c\xac\x47\xd9\x64\x20\xf4\x88\x59\xa2\xaa\x1b\xe0\xfa\x3d\x9d\x76\xf6\x19\xa3\x23\x7b\xf9\x2d\x35\xf3\x08\x58\x29\x81\x84\x31\x08\x39\xf1\xeb\x4b\x37\x1f\x30\xa8\x67\x03\xf9\x8f\x75\x49\x92\x15\xd6\xe2\xb6\x7a\xff\x98\xd6\x4b\xf8\x04\x7b\x9f\x83\x75\x8f\xd6\x13\xc8\x1c\xa2\xcc\xc3\xf7\xff\x32\x86\xb4\xe8\xe7\x5a\xe6\x7d\x16\x34\xac\x3a\x07\x08\x4d\x91\x47\xdf\x6e\xcf\x1c\x09\xe7\x03\x93\x5e\xf1\xba\x31\xe1\xec\xfb\x7c\xb2\x1e\xe9\x6c\x49\xbc\x80\x20\xcb\xdd\x69\x54\x3c\x41\x84\xd1\x2c\x8d\xea\xc3\x84\x39\xd3\x5f\x5b\x7d\x1e\x3e\x07\x28\xd5\x08\xf8\xa6\x75\xf0\x28\x21\x86\x7c\x08\xc8\xcf\x26\x4d\xc5\x50\x1c\x29\xd7\x77\x14\x6e\x72\xc4\x4d\xda\x59\x89\xc7\xd3\xb0\x4d\x66\x76\xd4\x57\x98\x28\xc9\x04\xbc\x9e\x34\x1d\xbd\xb7\x8f\xa2\x85\x6b\xb0\x50\x63\x69\x77\x2b\x74\x69\xc7\x11\x92\xf9\x32\xe5\x52\x38\x7c\xe1\x32\xef\x68\xf5\x8f\xb7\xb5\x2a\x86\xb9\x73\xcd\x9a\x89\xba\x46\x43\xc1\xa6\xe5\x37\x0d\xee\x68\xed\x3b\x6b\xcd\x33\xc9\x1f\xaa\x6a\xe7\x9a\x48\xbb\xef\x3c\xf6\x70\xd2\xa6\xa6\xb2\x33\x14\x4d\xa9\xac\x05\xc6\x48\x7a\x93\x32\xdd\xce\xea\xf0\x0e\xae\xfb\x10\xdf\x30\x5f\x99\x71\x47\x77\xb8\x16\x4f\xb7\x99\x5d\xde\xe0\x39\x0f\x5c\xe0\x04\x18\xe6\xb4\x97\x8e\xfe\xc3\xf5\xc2\x08\xfb\x4c\x55\xe2\xd2\x31\xb2\xad\x8c\xf1\x36\x42\xd7\xac\x40\x77\xb8\x7b\xa9\xd5\x7e\x3e\x63\xad\xef\xb8\x19\x8e\x44\x17\x51\x3e\x17\x47\x38\x1e\xcf\x33\x97\x7c\xb8\xc0\xc8\xfd\x2c\xa9\x2b\x75\x3f\x73\x1d\x14\x5c\x3c\x54\xcf\xb3\xd9\x3a\x14\x7f\x5d\x2d\x62\xa0\x24\xc1\x68\x53\x53\x10\xb5\x58\x02\x59\x5e\x2c\x12\x56\xa8\x63\xdb\x33\x0e\x7c\xa2\xb1\x2f\xf5\x4d\x9b\x71\xcc\x13\xcd\xbd\xbe\x6a\x5d\x24\x33\xf1\xa2\xc3\x19\xe8\xbb\xbe\x48\x67\xe7\x5a\x18\x64\x9d\x49\x65\x97\x47\x7c\x74\x90\xed\x94\x99\x86\x7e\x6f\xbb\xa7\x3e\x43\x96\x03\xcf\xac\x71\xf0\x4f\xce\xce\xa1\xeb\xa7\x8d\x47\xe7\xf7\x9a\xe9\x7d\xfe\xe7\xab\xaa\x41\x74\x66\x0e\x47\xaf\x04\x70\xb5\x62\xdf\xd7\xba\xd1\xd8\xb5\xd7\x95\xb9\x24\x35\xe5\x46\xc8\xa5\xf7\x8c\x36\x16\x57\x74\xfe\x39\x82\xce\xf3\x0e\xef\x77\xd5\x8a\xe4\xff\x05\x5f\xf1\x77\x0d\x9e\xf7\x09\xaf\x8b\xdc\x6a\x79\x1f\x46\x02\xbb\x44\xbe\x1a\x70\xd3\xa2\x53\xe2\x6f\xc2\xf4\xec\x9f\x4c\xcf\x18\x74\xce\x07\xc8\x66\xf8\x36\x69\x1f\x74\x5d\x3c\x61\x6a\x3e\x26\x72\xb5\x9b\xbb\xcd\xc1\xf0\x60\x1f\x7c\xec\x60\x69\xfa\x73\xc9\x8f\x56\xb5\x40\xb0\xe9\xd0\x17\x8e\xc6\xd5\xc3\x29\x06\xbf\xef\x00\xb7\x29\x38\x93\xc8\x9a\x30\x8f\x60\x4b\x4c\x45\x8b\x50\xab\x45\xae\xc6\x01\x6e\x73\xd4\x4f\x25\x92\xd9\x36\xe2\x10\xd1\xb5\xeb\xf1\x38\x05\xf7\x45\x67\x2f\xcd\x11\xb7\xbc\xaf\xf0\xba\xc0\xb6\xb8\xe1\x80\x65\x3d\x54\xeb\x7d\x45\x33\x5a\xf6\xf6\x5c\x0d\x3f\xa8\x45\xf2\x15\x0b\xed\x66\x36\x3f\x59\x92\x69\xdf\xa2\xd2\xd9\x34\xcd\x33\x20\xfd\xae\x15\x3f\x88\x77\xfa\x39\x05\x12\x55\x1a\x8f\xea\x95\x7c\x4d\x41\x76\x1a\x13\x31\x44\x47\x9c\x82\x5c\xb4\x25\xaf\xd9\x53\xfa\x33\x95\x7a\xc3\x1b\x3b\x26\xfa\x62\x2f\xef\x38\xb4\x8e\x18\x20\x71\x06\x61\x67\xb5\xb9\x94\x30\x49\x2c\xf0\x40\x17\x28\xb7\x40\xec\x40\x24\x21\xc2\xd9\xe1\x05\x15\xe8\x3c\xc1\x63\x13\x31\x52\xfd\x15\x8f\x46\xd5\xf0\xe1\x0c\xc6\x7d\xc2\x85\xb6\xf5\xeb\xb5\xb0\x8a\x58\x4d\x68\x3e\x25\x9c\xed\x11\x73\x00\x2c\x78\x9a\x89\x89\xf1\x09\x3b\x09\x61\xcb\xce\xc8\x44\x03\x10\x79\xcc\x40\x44\xd4\x10\xc3\x5d\xe7\xcb\x63\x0f\x7a\x60\x6f\x62\xc2\xa6\x3d\x52\xdf\x2b\x9e\x20\xf1\xba\x9a\x40\x44\x03\x18\x00\x99\x97\xf3\xf8\x20\x57\xf0\x28\xff\xbf\x4a\xc8\x87\x23\xc0\xc9\xe3\x47\xe8\xa8\x86\xa6\x15\xe9\x92\x09\xab\x09\x93\xee\x26\x8d\xe7\x8a\x85\x58\x47\x0c\x99\x9b\x22\x1e\x56\x84\x9d\xae\x5a\x17\x5d\x69\xf1\xd8\x94\x30\xb3\x07\x29\x08\xb0\x0f\xbf\x51\x6c\xfa\xd6\xaa\xa0\x83\x84\x40\x3e\xb0\xc5\x2c\xad\x37\xb3\xa2\xa6\x8c\x66\xa6\x3e\x6a\xf0\x98\x16\xef\x77\x4c\x9e\x85\xd6\x5b\x3b\x18\xf2\xd7\xff\x7a\x76\xf2\xf6\x28\xff\xf4\xe8\xfa\xfa\xfa\x11\x17\x7f\x44\x12\x35\x7b\xb6\x97\x1c\xef\xed\x7f\x1e\xbf\x39\xca\xab\x61\xf5\x70\x91\x1f\x0b\xd5\x8e\xc4\x50\xef\xad\x70\x27\x8d\x4b\x20\x22\x10\xbf\x9f\x9a\xeb\x8e\xd1\x87\x55\x7c\x4c\x51\xcf\x81\xf0\xea\x99\x5d\xa0\x2e\xa6\xd8\x07\xba\xf3\x7b\xd5\x55\x30\xab\xc3\x87\xcb\xa0\xc3\xfc\xc3\x5c\xa0\x9f\x31\x48\x4d\xed\x68\x37\x5e\xaf\xf4\x61\x97\x11\x88\x59\x91\x3c\x83\xfd\x48\xc8\xc4\xc2\x85\x53\x98\xa3\xdb\x12\x95\x62\x5d\x6a\x72\xc0\x5c\x54\xb6\x10\x55\xf9\xd3\xb8\x30\x8c\xe1\xf1\x38\xc3\xe3\xfc\x5f\xf9\x1a\x81\x17\x4a\x70\x8b\xb3\x0c\xb7\x00\xbc\x18\x17\x46\xb4\x61\x27\xbf\xd0\x00\x24\x86\xb2\xc9\x4f\x31\x2f\xc8\x50\x93\x4a\x54\xcc\x66\x7b\x3c\x22\xc2\x41\xec\x06\xae\x49\x75\xd3\x22\xe9\x25\xce\x7c\xb6\xcd\x8b\xd8\xc1\x1f\xa9\x85\xbc\xdd\x70\xcc\xcd\x43\x2e\x9e\x00\xb3\x53\xe4\xe8\x23\x40\x99\x8a\x78\xd7\x84\xb8\x77\x41\x98\x72\x0d\xad\x5d\x8d\x33\x5c\x70\xa4\x6a\x40\xf0\x98\xb9\xbd\x28\x8a\x8f\xb0\x6a\x71\xf7\x18\x7d\xd3\xd3\x47\x18\x39\x71\xbb\x4d\xa8\x07\x48\x47\xca\xd4\xce\x1f\x86\x8b\x09\x6d\x8a\x9c\x9f\xd2\xa6\x09\x77\xa3\x80\xa3\x36\x26\x4c\x85\x8a\x1f\x53\xd1\x2c\xb6\x70\x88\x7f\x12\xeb\x4f\x3b\xd7\x2d\x3c\x1c\x62\x17\x3c\x0f\x69\x29\x37\x6a\xbb\x14\x74\x37\xdd\xa2\x3c\x21\xb2\x8f\x3c\x45\x65\xbe\x36\xb5\x15\x63\x10\x84\xdc\x60\xdf\x3c\x73\x03\x9a\x04\x1c\xf1\x27\xbd\xd4\x6a\xce\xe3\xe2\xe4\x3e\xca\x1c\xbf\x64\x35\xde\xd9\xc4\xda\xca\x5b\x88\xcf\xe4\xcb\xcf\xd6\x6e\xd3\xde\x58\x4c\x96\xe7\xf8\xa5\x61\xe0\xfc\xc8\x22\x98\x0e\x2a\x42\xce\xd5\x15\x59\x51\x40\x71\x31\x6c\x7f\xf5\xcc\x2b\x1f\xc9\x0b\x36\x58\x55\xf0\x45\xea\x07\x07\x51\xbb\x48\x5d\xd7\xe5\x51\x14\x0d\x6b\xe2\x35\x72\xed\x32\xed\xfc\x5f\x5c\x14\x76\x95\x3f\x1a\x56\x82\x58\x17\xbc\x54\x9a\xdc\xbd\xce\x0d\x60\x1a\x44\x24\x40\x8d\xc3\x9d\xb8\x41\xce\x87\x3b\x49\x8b\xfa\x90\x27\xae\x28\x8e\xcc\xa0\x6e\x98\xbd\xee\x48\x56\x64\x1a\xcf\x24\x8e\xf4\x33\x42\x9a\xcc\x2f\xda\x58\xe6\xb8\x73\x95\x6f\xbb\x6b\x2c\xfd\xe0\x3e\x23\xb8\xc9\x48\xdf\xf1\x39\xe2\xc7\x5c\x5f\xe2\xa4\xb8\xd9\xbd\xeb\xe6\xb1\xac\x2f\x2f\x17\x17\x1d\x71\xdf\x1c\x41\x04\x0f\x51\x31\x51\xe7\xdf\xf9\x19\x7e\x0b\x08\x9b\x9c\x01\x2b\xe4\x43\x12\xd5\xf0\xf5\xb1\x9a\x4d\x49\x22\xec\x7d\xc6\xef\xdf\x3c\xa7\x1c\xb1\xfd\x79\x4b\xd8\xfe\xc4\x72\x16\x52\x84\xb9\xff\x25\x7f\x21\xf6\x09\x6e\xa7\xf8\xbe\x05\x85\xce\x38\x45\xc1\xf8\xd3\xa6\xdc\x0e\x41\xd8\x5c\x8b\x75\x94\x70\xcb\x51\x9f\x08\xcc\x32\x38\x02\x23\x74\xa8\xc1\x0e\x47\x10\x1f\xe3\x80\x20\x6c\x2e\x23\x84\x4e\x10\x68\xcc\xd3\xd7\x6f\xe5\x27\x1c\xa9\x34\x8c\x21\x3c\xa9\xd8\x48\x2b\x33\xf7\xac\xc5\x9c\x9b\x96\xe5\x89\x77\x9d\x28\xbf\xec\x39\x59\xfc\x0a\x10\x65\x57\x5c\xc2\x24\x81\xff\x86\x54\x62\xb9\x63\xb1\xd3\xae\x7a\x34\x2e\x46\x93\x23\x53\x7d\x86\x8f\x90\xae\x26\x05\xfc\x27\xa4\x15\x30\x15\x7c\xec\x46\x1e\x67\xc4\x6c\xd2\x08\xef\xee\xf7\x79\x5f\xb3\x46\x5d\x11\x74\xd4\x20\xb0\x23\xbe\x51\x00\xdc\x81\xbf\x9d\x1f\xab\xb7\x55\x40\x9c\xa3\xfe\x2a\x0f\xf3\xc3\x4e\xa9\x83\x84\x30\xd1\xb7\xd1\x16\x49\xbf\x93\xd2\x72\xa2\x57\xb6\xda\xf9\xa6\x5d\x83\x69\x45\x00\x00\x89\x3d\xb7\xe7\xc7\xe4\x68\x22\x38\x1c\x26\x33\x38\x01\xf9\xeb\x2d\xd5\xff\x51\x9e\x37\x91\xea\x89\x59\x09\x21\x56\x88\x6f\x69\x24\xca\x83\xe5\x41\xe1\x61\x51\x5e\x93\x32\xf1\x11\x05\xbb\xbf\x88\x7e\x8d\x94\x0f\x46\x68\xe5\xdd\x25\x99\x2b\xe2\xa0\x53\x32\x76\xd7\x81\x84\x12\x5b\xea\x94\xfa\x5a\x8e\x5c\xfe\xe9\x85\xb7\x47\x0b\x7d\x77\xec\x54\xbe\x42\x0e\x33\xdc\xc2\x35\xbe\x91\x2f\x79\x20\x77\x8c\x4d\xd3\x20\x40\x94\xf7\x68\xbc\xd6\x0e\x3e\x4c\xc0\x9f\xab\x07\xac\x76\x6f\xe9\x38\xcf\xe5\xda\xbd\x18\x12\x4c\xb1\xb3\x2d\x3e\x7b\xf7\x08\x64\x3d\x76\x63\x6c\x6c\x12\x9a\x53\x44\x89\x28\x33\xc1\x76\xbe\xc6\xb7\x9d\x82\x7b\xfc\x74\xbb\x00\x7b\xe2\x86\x81\x41\xcd\x64\xa3\x09\xbf\x14\xa1\xd2\xbb\xa6\x19\x60\x39\x22\x34\x2b\x6a\x4a\xc7\x30\xf3\xa7\x82\xb5\xe3\x83\xaf\x88\x61\x5d\x27\x7a\x8a\x70\x0d\x41\x28\x73\xcb\x19\x30\x69\xcd\xab\xab\xa5\x89\x3b\x88\xfe\x78\x0f\xa4\x86\x08\xae\x1e\x3d\x9a\xd9\xb0\x44\xf7\xc8\xe4\x68\x0e\xbd\xd1\xa7\xca\x70\xfc\xd8\x77\x96\xfd\xda\x76\xeb\xf7\x31\x36\x7e\xd0\xbe\x26\x71\xf1\x21\xec\x33\x4c\x88\x2f\x7b\x00\x30\xc6\x9c\x8d\x35\x1a\x3a\xbe\xe4\x4d\x37\x7d\xd6\x55\x54\x2d\xf2\x84\x09\x8c\x5b\x2c\x02\xcb\xc2\xfc\x9d\x25\xb6\xb6\x5a\x9d\x24\xef\x6d\xc3\x0d\x39\x5a\x53\xfc\xa2\xbe\x52\x7a\x1b\xcf\xae\xb2\xfc\xc1\xe1\xcf\xf9\x85\x60\xd6\xb3\xca\x35\xef\x6b\x24\x10\x49\x44\x02\x22\xfb\x8b\xd2\x8c\xfe\x66\x08\xa8\xac\x9a\x65\x4e\xd5\x2f\x4d\x1f\x05\x6d\x4e\x9e\xc6\x72\xfe\xd9\x08\xe6\x9e\x98\xca\x70\xe5\x98\x95\x19\x23\xba\x49\x88\x7f\x4c\x21\x52\x6f\x83\x4e\xc2\x9b\xf0\x5e\x17\xfb\x4b\xde\xd5\x85\x18\x24\xa9\x83\x9c\xa2\x08\x02\xcc\x37\x89\x23\x49\xbf\x88\xcd\x38\xca\x71\x25\x16\x76\xb1\x18\xde\x9c\x64\xe3\x9d\x9f\x04\x3e\x89\x6a\xa0\xf2\x77\x21\xe1\x89\x24\x39\xdf\x90\x28\xb7\x49\x04\x72\x54\xc4\x6c\xf0\x4f\x07\xa2\x50\x4f\xdf\x62\xf8\xf2\x98\x16\xd3\x3a\x6e\x8f\x6a\xf1\x7b\x0d\x6e\xe6\x23\x2d\x7b\xad\xe3\x28\xe4\x72\xc8\x9a\x8b\xbd\xfc\x7b\x2c\x64\x52\x50\x47\x64\x92\x29\x08\x35\x7d\xee\xb5\x98\x1a\xde\x10\xa6\xfe\xe7\xec\x6e\xd2\x27\x08\xc6\xbd\x9e\x04\x09\x4e\x3a\xfd\x65\xc1\x82\x0f\xda\x24\x24\xb4\x62\x2c\x85\x4f\xc2\x73\x61\x80\xb7\x16\x49\x83\x75\xf9\x0e\x07\xbd\xab\xbb\xe3\xd6\xbb\x2e\x09\xd3\x25\x77\x2f\x77\xc7\xea\x3a\x70\xfd\x77\x5b\xd0\xae\x71\x2f\x99\xc6\x04\x37\x49\xdf\xc9\x5b\x4b\x78\x2e\x23\xb5\x43\xf9\xcf\x04\xf2\x9a\xbf\x30\x63\x29\xfd\xda\x94\x93\xe0\x4a\x6c\xfe\xa2\xca\x87\xc5\x2e\x9b\x2f\x91\xcb\x22\xa1\x8d\x33\x07\x7e\x52\x26\x77\xf4\xe4\x85\x52\xed\x45\x7c\x31\x61\x99\x04\xef\x3a\x8e\x6f\x32\xc4\x38\x5e\xdf\x87\x62\x7a\x9d\x6d\xa1\x3f\x47\xe9\x91\x52\xc2\x14\x53\x2f\xec\x23\x90\xfc\x06\xcf\x37\x9b\x33\x2e\x9f\xb6\xa1\xcf\xfb\x75\xed\xa6\x0a\x1d\xcd\xdf\xd1\xaf\xd8\xbd\xd4\xdf\x30\x2d\x18\xca\x84\x74\x15\x6f\xf5\x19\x92\xd8\x1b\x79\x62\x02\x9e\xc0\x2e\x55\x4f\x4b\xb7\x56\xc2\x27\x6b\xed\x10\x3b\xbe\x1f\x43\xcb\x73\x81\x7a\xae\xbe\x6d\xaf\x33\x39\x54\x17\x70\x5f\x94\x47\x0f\x34\x25\x6d\x54\xd2\x98\x63\xd1\xf8\x91\xb9\x44\xb6\xd2\x08\x83\xd3\xfc\x51\xf0\x20\x9c\x29\x21\x6c\x90\xbd\x61\xc2\x0c\xb7\x3a\xca\x36\x72\xab\x98\x46\xd3\x91\x5a\xc1\xb0\xc7\x66\xc5\x50\x35\x69\xd7\x43\x7c\x4e\xc3\xdc\xcf\x49\x73\x47\xa6\xa3\x84\xfa\x48\x95\xa7\x12\x79\x57\x5a\xd1\xd7\xfe\xad\x1f\xe1\xcd\xdd\xd8\x0f\x0f\xf1\x39\xfd\xe0\x56\xe0\xf1\x25\x02\xdc\x2d\xfd\x21\x89\x5b\x43\x6b\x27\x36\x33\xe3\x2e\xc6\xa0\x36\xe7\xee\x24\x87\x9d\x56\x39\xe2\x4c\xf8\x4a\x60\x7a\xa4\x4a\x8e\x58\x42\xcc\x30\x0f\x62\x4e\x37\x1b\x7a\xf3\x6e\x22\x00\xd7\x3a\x2e\x19\x40\x9d\xa1\x5c\x04\x9b\x3d\x97\xa4\x5f\x91\xd9\x03\xf7\xa5\xb4\x41\x33\xef\x3e\x92\x05\xce\x82\x4e\x0a\xe7\xe7\x0f\x15\xb0\x7e\xb6\x92\xa5\x3c\xe8\x14\xf6\x2a\x6f\x30\xd7\xea\xb4\xb2\x40\xcc\x01\x15\x88\xf8\x14\xce\x76\xac\xe7\xdb\x9c\xc2\x9c\xc9\xf6\x91\x71\xb3\xc1\x8a\x07\x50\x7c\xf7\xeb\xed\xe4\x38\x58\x68\xeb\xbd\x72\xea\x5b\x8d\xec\xa7\x5d\x89\xe7\xba\xbc\x92\x14\x10\xe6\xa0\xd0\xb3\xf0\x5b\x7d\x8a\x20\x11\xed\xd6\x1d\xbc\x0e\x6d\xad\x99\x58\x38\x54\x40\x85\xdf\x87\x51\x86\x47\xb9\x23\x35\x80\xc1\x04\x55\xf4\xe0\x36\xa2\xf0\x05\x1d\x00\xd9\xb8\xbd\x07\x20\x0b\xe2\x8a\x4e\xdd\x70\x24\xe0\xb6\x8e\xe8\x6b\xda\x9f\xdf\x11\xd0\x8d\xcf\xec\xc8\x91\xf5\x42\x9f\x18\x29\xcb\xd9\xfd\x7f\x5b\xff\x46\x82\x10\x90\x33\x79\xc2\xc6\x88\x01\xec\x7b\xe4\x81\xea\x39\xfb\x1e\xa7\x56\x5d\x2c\xc6\xbb\xc4\xd9\x98\xb9\x9d\xe2\xcc\x4c\xad\x2f\x30\x45\x52\xb3\x57\x3d\xe5\x62\x55\x0d\xad\x3b\x62\x73\x37\x83\x37\x8d\x4d\xc3\x8f\xb1\x55\xe6\xd0\xdd\x28\xa7\xc3\x33\x92\xc6\x4f\x8b\x16\x71\x22\xd3\xe1\xee\x5f\xde\x42\xfa\x15\x6b\xf5\x3e\x0b\xef\x40\xf3\xfe\xb7\xef\x4c\x34\x5f\x72\xff\x89\xd7\x68\xe2\x33\x34\xf9\xf8\x59\x9a\x5b\x9f\x04\x4a\x9f\x42\x1a\xbf\x89\xd5\x4b\x9c\xd7\xb5\xb1\x88\xf6\xf8\x76\xa6\x96\x80\x3c\xe3\x37\x34\x07\x5b\x56\xf0\x72\x42\xb6\x6d\x9b\x5a\xac\xc5\x8e\xe5\x8b\xc6\x9e\x25\xfe\x23\x2f\xf8\x87\xc4\xd7\xd6\x14\x76\x58\xc8\x86\x76\x40\xe0\xc6\x73\xfe\xfb\x7d\x7e\xbf\xcc\xe2\xd0\xa1\x03\x66\x75\xdb\x4a\x34\x9d\xf2\xed\xf2\xdd\x03\x36\xf0\x7e\xeb\xec\x45\x9e\x58\x03\xba\x09\x4d\xf3\xde\x75\x5b\x3b\x89\x4a\xf7\xfd\x5c\x8b\xe6\x14\x02\x63\x81\xd2\x9e\x4f\x67\xb2\xc3\xaf\xe2\x96\xfc\x2a\xae\xe8\x21\x8f\x5c\x42\xb2\x20\x3e\x63\x17\x82\xbe\x27\xc9\xe9\x51\x1a\xd3\x25\x7c\x64\x92\xc4\x31\xe2\x92\x84\x62\x35\x69\xc5\xee\x19\x7c\x9a\xd9\xb7\xc6\x14\xb3\x74\x4d\x6a\x4f\x03\x7f\xfb\x2c\x31\x0f\x4e\x92\xf4\x31\xf0\x74\x24\xa2\xe5\xf5\x69\x9b\x76\xcd\xcf\x56\x41\x57\x9c\x0e\x4f\xf9\xf5\xb4\x4e\x73\xae\x4a\xaa\x40\x18\x07\x9f\x82\xdb\xce\xa1\xe8\xd3\xd2\xd8\x9f\x3e\x41\x3d\x82\x26\x80\x24\xbf\x17\xab\x2b\xf5\xf5\x9d\x41\x24\x13\xc3\x03\x32\x89\x2c\x3e\x07\x29\x0f\xb6\xe7\xf6\x3c\xfb\x2c\x4c\xb7\x87\x0e\x71\xdf\xb8\x5c\x76\x58\x64\xef\x58\xc4\x46\x6f\x35\x08\x26\x7b\x2f\x86\x38\xe8\xf9\x09\xb6\x63\x7f\x6b\x21\x77\x2e\x72\x00\x25\x8d\xbd\xae\x25\x85\x87\xb9\xe5\x80\x8c\x35\xeb\x51\xab\x66\x40\xee\x09\xdf\x3e\x72\x1e\x05\x3c\xa9\xf5\x3a\xde\xb2\x3f\xab\x8e\x51\x2f\x23\x44\xa8\xe6\xcb\xbb\x0a\xfa\xcf\xf4\x9e\x7a\x33\xea\x64\x42\xf3\x0c\xe4\x8e\x1a\x46\x5d\x9c\xad\xe2\xcb\x3b\x89\x93\xb6\x59\x87\xf7\xef\xe7\x3a\x79\x83\xe0\xf9\x5d\xa9\x82\xeb\x86\x6d\x2e\x5f\x9a\x1d\xd8\x1d\x55\x1e\xea\xf5\xad\x75\x7e\xc1\x30\xd6\xf5\xb0\x5c\xaf\x62\xf7\xf9\xe9\x90\xee\x82\x09\x37\x1f\xee\xd5\x4a\xbc\xf4\x9b\x54\x69\x39\x5f\xfc\xb6\x09\x46\x87\x58\x5d\x31\x57\xfd\xa1\xbe\x75\x55\x7f\xd3\xac\x58\x51\xc7\x2f\xad\xe8\xbd\xf8\xbb\x4a\x2e\x4d\x1e\x2c\x28\xed\x9b\x42\xe3\xc9\x56\xb8\x42\xee\x1f\xc8\x83\x55\x5f\xaf\x8a\xbd\xf8\x30\xd0\x31\xfe\x08\xa4\x1d\xa5\x8d\xb3\xe5\xd9\x7a\x78\x6b\x43\xa3\xb1\x38\xba\xee\xe6\xb6\x43\x57\x86\xea\xb3\x46\xe0\x2c\x40\xfc\x30\x18\x51\x94\x88\x81\xe4\xf9\xe7\x15\x79\xe2\xbe\x66\x6b\x1e\x7e\x0c\x86\x4d\x95\xd4\x04\x50\x0f\x6d\x44\x72\x0d\x0a\xb6\xf2\xc0\x80\x7c\xbb\xb7\xac\xd0\x83\xa4\x17\x77\x8f\xd1\x9f\xa5\x08\x61\x4b\x0d\xb1\x57\x01\x98\x34\x84\xb4\xfd\x05\xbf\x3d\x6d\x93\x17\xb0\x96\xeb\xb6\x6b\x69\x79\x24\x2a\xa1\xbe\x8a\xf5\xd2\xd2\xfa\x99\x02\x50\xef\xdf\x2c\xf7\xea\x1d\x6a\x65\x8e\x91\x4c\x3c\x12\x3b\x60\xc6\x52\xe0\x34\xac\x0c\x2b\x6d\x57\xaa\xea\x07\xeb\x61\xa5\x9e\x58\x86\x2b\xa9\x65\xda\x0b\x76\x17\xd2\xb0\x19\x00\x3e\xd1\x14\x07\x8b\x2b\x32\x0e\xf5\x47\xd3\xb5\xdf\x2d\x79\xa8\x70\xdb\x94\xe4\xfc\x0d\x92\xf3\x73\x4e\x9e\xb6\x60\xbd\x0a\xc5\x46\x9d\x3a\x54\x8e\xc3\x3f\x8d\xcb\xbc\xe0\x28\x51\x63\x78\x9b\xb9\xab\xaa\xd8\x4d\xe6\xed\x15\x25\x4e\x66\x0d\x90\xd3\x09\x00\xec\xe1\x59\xf0\xa5\xea\x12\x12\xa7\x2f\xf1\x9a\x92\x0e\x41\xc3\xe0\x64\x0c\xdf\x30\xc7\x7b\xa0\x84\xb2\x1e\xe3\x5e\xe9\xb5\xd6\xa4\x57\xed\x05\x3b\x41\xf7\x06\x7d\x22\x3f\x1d\xd4\x45\xdb\x0e\xfc\x6e\xfc\x8e\xb9\x46\x98\x1d\xca\x34\x3d\xb5\x74\xe6\x1a\x57\x1f\x26\x33\x25\xd0\xd3\xa9\x12\xe8\xc3\x73\xb5\xe5\xf8\xd3\xd4\x56\xb7\x5f\x0d\x7b\xda\xa0\xa1\xc1\xe3\x33\x8e\x5b\x7d\x16\x32\x26\x2d\x4e\x4a\x7a\x0c\x1d\x17\x9e\x6b\x79\xc5\xd1\xc3\x67\x9b\x7e\xc6\x39\xb7\xb6\x3d\x29\xeb\x1b\x9f\x14\x9f\xdb\x29\x78\xe5\x91\x0f\xb4\x8b\xfd\xea\x43\x35\xb0\xcb\xe1\xd5\x12\xf6\x0c\xbe\xae\x53\x03\xcb\x9f\x02\x2c\x7f\x45\x60\xf9\x39\xd4\x53\x33\xb5\xd2\xa1\xb3\xad\x86\x02\x76\x29\xae\x96\x97\xcf\x68\x05\x38\xb9\x2c\xe6\x4a\x41\x6d\xb5\x54\x61\x41\x77\x21\xf3\x6f\xae\x86\x13\x68\xb6\x54\x7e\x78\x12\x40\xe6\x6a\xe3\x80\x83\x72\xfa\xad\x6e\x56\xf2\xf8\x21\x87\x20\xa4\x3e\xbc\x93\x14\x07\x0b\x81\x88\x60\x8d\x46\xc2\x04\x03\xae\xdc\x04\x7e\x9e\x12\x4a\xa1\x60\x11\x58\x08\x17\xc1\x9d\x72\xb4\x94\x39\xc0\x5d\x21\x9b\xe9\x20\xa4\x35\x6f\x80\xd6\xf2\x18\x4e\x1b\xed\x65\x2a\x85\xac\x88\x34\x2a\x3e\x34\xfa\x6e\x0f\xe1\x1c\xae\xf8\xe1\x42\x63\xaf\xf6\x70\x9a\xc2\xe2\x89\xca\x78\xfd\x10\x6f\x34\xc3\x9b\xa9\x02\x26\x4c\x38\x58\x6f\x49\x31\xb6\x11\xef\x37\xdb\xb7\xe5\x25\x51\xf4\x24\xcd\xf8\x16\x48\xbd\x9a\x66\x01\x39\x42\x34\x50\x4d\x87\xe9\x6d\x57\xad\x59\xaa\x17\x17\x4d\x04\xbe\x80\x77\xc5\x3b\x24\x9b\x28\xe0\xfd\x65\xce\x5b\x8c\xd2\x0d\x2c\xb5\x53\xb3\x61\xde\x1d\x14\x64\xa1\x75\xf8\xa8\x73\x3a\x32\xf0\xf9\x66\xa8\x35\x7a\xb7\x5a\x0d\xb6\x04\x52\xc2\xb5\xcb\x2d\xe0\xc6\x97\x86\x10\x66\x52\xcd\xa8\x86\x37\x10\xd0\xdc\x2c\x87\xe7\x1f\x83\x5e\x18\x9a\x75\xd6\x4f\x88\x91\x3f\xf4\xd2\x30\xc2\xdc\x37\xf6\xbc\xa4\xa1\xc1\xa1\x27\x5d\xed\xc5\x97\xcf\x7c\xd5\x35\xce\x85\xc3\x14\x98\x74\xa4\x38\xb2\x2d\x3e\x69\xe4\xf2\xf8\x38\xc2\xb1\x3e\x83\xe0\x1c\xe6\x9e\x59\xee\x1b\x7e\x11\xe1\x50\x59\x53\x88\x7d\x7d\x46\x04\xe6\xd1\xb7\x78\x9b\x87\xf6\xc3\x7a\xd3\x12\x9d\xc9\x35\x1e\x85\x3c\xaa\xf0\x50\xeb\xa8\xfb\xa5\x47\xca\xf1\x83\x35\xc5\x08\x49\x19\x5c\xf1\x34\x01\x85\x07\x35\x67\x08\x9a\xf1\x33\xfa\x41\x4d\x67\x88\x8b\x1b\x66\x76\x74\x58\xaa\xad\xef\xa4\x06\x57\x06\xea\x54\xd9\x58\xcc\xf7\x4b\x68\x06\x5f\x8f\xbc\x0c\xb0\x34\x8c\xb9\xab\xae\x83\x0f\x09\xcc\xae\x7b\xd4\x68\xdb\xb2\x87\x27\x7f\x01\x7d\xeb\x85\x69\xba\xc0\xf3\x0f\x91\xff\x7f\x79\x8b\xdd\x77\x20\xbe\xc8\x7e\xa0\xfd\x7f\xca\x8b\xec\xe3\xdb\x84\x3e\xed\xca\x8c\xf9\xcf\x93\xf1\x23\x6a\x07\x6c\x3e\xf9\xc9\xea\x05\xfc\x1b\x53\x12\x9d\x5c\xe7\x26\xa4\x1a\x25\x3c\x09\x46\x42\x6a\xd8\x82\xa4\x78\xd5\x61\xb7\x1c\xa2\x74\x04\xf5\x1d\xb7\xe7\xf6\x64\xd2\x9a\x94\x98\xbe\xce\x94\x76\x41\x52\xa6\x97\xa1\x92\xae\xfa\xb2\xdc\x5e\x5b\x51\xe5\xe7\x02\x4a\x33\x61\xc1\x3a\x4b\x1b\x87\xed\x87\x2e\x54\x89\xe5\xa8\xcb\x23\x72\x99\x74\x5b\x4a\x49\x68\x30\x73\x90\x55\x8a\xac\x59\xae\xf7\x92\xe2\x63\x62\x4b\x8a\x3c\x78\xcc\xe4\x43\xe2\x4e\x94\x9a\x3e\x35\x43\x72\x9d\xd4\x6a\x46\x9d\x73\xb5\x02\x6a\x9e\xe2\xbb\xde\x8c\x8d\xe9\x25\x15\x7e\x9f\x6c\xf9\xdf\x0f\x9a\xb2\x93\x48\xd7\xa7\x1c\xe9\x5a\x52\xa0\x83\x2a\x61\x23\xcb\x2a\xa7\xe7\x6f\x7d\xba\x7b\x02\x19\xb9\xe1\xf1\xe3\x19\x18\x67\x24\x54\x74\x1c\x68\xfb\x7b\x0d\x8a\xe7\x9e\x42\x66\x87\x40\x79\x06\x71\xb7\xe1\xfe\xf2\xfb\x2d\xb8\x3e\x62\x65\xfa\x1e\xf1\xb0\xf8\xad\x52\xdc\x9b\x13\x99\x59\x8b\xb9\xb5\xbc\xad\xa7\x93\xc9\xfc\x89\xc6\xfa\x04\x5f\xa2\x97\x05\x4f\xd9\xe2\xcf\x81\x60\x44\x00\x08\x23\x2a\x06\x09\xf3\x31\xff\xc8\x78\xc8\x3d\x08\x3d\x0e\x48\x8f\x4d\x1f\x4e\x52\xee\x3d\x07\xeb\x7d\x54\x23\x80\x17\x53\x9f\x6a\x53\xaa\x23\x5d\x12\xce\x64\x31\x69\xc1\xac\x85\x10\x89\xe9\x8e\xde\xf4\x7b\xeb\xfa\xd9\xfe\xae\x9e\xeb\xd3\xbd\xf2\x22\xf0\x18\x4c\xc2\x3a\xd9\x2c\x49\x58\x27\xab\x01\x37\x4c\x01\x40\xee\x9d\x13\x88\x2d\x1f\x80\xcb\xbe\x60\x6a\x41\xa4\xbe\xcc\xcf\x9e\x68\x4e\xbf\x1d\x76\xf6\x18\xd0\xd9\xf1\xf9\xe9\x2d\xa8\xcd\xa0\x8a\xa2\x80\x74\x78\xca\x59\x8a\xab\xc8\x72\x08\xab\x16\x5a\xea\x3f\xa2\x5a\x0e\xd8\x78\x09\xee\xf7\xf3\x70\xb7\x71\x41\xf2\xf2\x25\x1d\xd9\x1c\x76\x12\x0e\x18\x52\x66\x91\x1f\x13\xa7\x50\xb3\xc9\xa0\xb5\xa6\x66\x6b\x17\xb4\xd8\xd5\xae\xe8\x2c\x0c\x3d\xde\x40\xc9\x1f\x1c\x3d\x58\x24\xc4\x60\x39\xc8\x23\xd9\x12\x87\xe6\xfc\xcd\x19\x7d\xae\xba\x1b\xb9\x13\xd7\x91\x7e\xa8\x77\x0c\xb6\x64\xdf\x1d\x61\x55\x29\x05\xb0\x7f\x42\x8a\xed\x5c\xbe\x3c\xad\xba\x8f\xf5\x2a\xe0\xcb\xe9\x93\x63\xa8\x61\x28\xc9\xd3\x02\x6d\x1a\x71\x23\x8d\x11\x8e\x9d\xa0\xe5\x68\x13\x46\xd8\xe8\x59\xbd\xc3\x81\x40\x7f\xac\x1e\x17\xd1\x6e\xcc\xad\xca\x05\xb7\xcd\xf4\x84\x73\x4a\xa1\x1d\x03\x15\x29\xed\x98\xc1\x4e\x8b\xdc\xe5\x0c\xb2\x48\x68\xab\x3f\x48\xd3\x7a\x3e\xd3\x50\xcc\x57\xe6\x98\x9e\xdb\x06\x3d\x1b\xe6\x26\x2d\x91\x40\x2e\x85\xdc\xdb\xc3\x89\x69\xd5\xf1\xa1\xcc\x49\x89\xe4\x09\xc5\xc9\xbc\xce\x18\x60\xdd\x62\x74\xe5\x6a\x1f\xb1\x1f\x69\xc5\x77\x71\x21\xa2\x9a\x34\x95\x60\xb8\x5d\x54\x95\x60\x7a\xc9\xa8\xb0\xc5\x6e\x17\x4e\x31\xf7\x36\x26\xd0\xd6\x81\x7c\x14\x82\xe3\x20\x68\x13\xf4\xa3\x7a\xc4\x25\xd4\x03\xb1\x67\xa8\x02\x8c\x4f\x42\x4d\x6e\x2f\x2f\xf9\x7d\x22\x0e\xeb\xad\x61\xc8\xf8\x27\xc7\x43\x0c\xed\xab\xa3\xf3\x92\x75\x94\xd0\xf9\xf1\x98\x9e\xab\xf7\xf3\x3b\x24\xb2\x90\x65\xe0\xdd\x1e\xca\x2d\xee\xef\xbb\x7d\x23\xe2\xa3\xcb\xd2\x86\x38\xcb\x37\x02\x66\xaa\x6b\xdb\xc1\x9e\xe8\x72\x9c\xd4\x3b\x4a\xa6\x23\x76\xb8\x0a\x13\xcc\xf7\x97\xab\xa5\xbc\x13\xe4\xca\xe0\xf6\x74\x05\xd7\x95\x69\x21\xea\xf7\xb4\x04\xf5\xfb\x00\xb8\xd8\xe8\x18\x1f\x72\x86\x5f\x42\xa4\x43\x8f\xd9\x26\x58\xb1\xd1\x06\x2c\x69\x63\xbc\xf1\x73\x50\x5e\x44\xc4\x78\x6e\x37\xae\xb3\xa8\x41\x90\x9e\x99\x8a\xa9\x9e\x7d\x89\xa9\x9e\x15\x8b\xa9\xda\xb1\x51\x0f\xfa\x7e\x63\x0b\x71\x76\xf6\x26\x5d\xed\x98\xeb\x9e\xb4\xe4\x83\xfa\x1e\xc7\xf7\xe7\x20\xc3\xf7\xe0\x00\xf8\xd0\x95\xd0\xd9\xf4\xf3\xa7\xa9\xe3\x3a\xfa\xbf\x6e\xea\xa1\xfa\xee\x1e\xac\x28\xee\x0d\x75\x79\x71\xef\xa1\xdf\x37\x35\xfc\x6f\xdc\xc6\xa9\x57\x07\xa6\x27\xe8\x32\x92\x37\xf7\x73\x89\x9d\x50\x77\x95\x1e\xef\xcf\xdc\x33\xf8\x13\x8c\x8e\xa7\x40\xc0\x67\x7f\x02\x58\xbf\xd8\x97\xab\x73\x19\x31\x04\x22\x9c\xba\xde\x59\x35\x4f\x91\x1c\x3b\x28\x4f\x13\xd8\x53\x05\xea\xd5\x62\xdd\xc3\x4b\x03\xaf\x1b\x78\x5b\x59\x11\x3d\xa2\x44\xeb\xa8\x36\xbd\xe1\x84\x12\x75\xe3\x13\xa4\x5a\x01\x0c\x3d\x28\x73\x8e\x79\xc0\x5e\x7f\x33\x1e\x30\x1c\x0d\xeb\xbf\x55\x12\x5b\xda\x0d\xfb\x98\x44\x73\xd6\x29\xf0\x93\xe7\x67\x1c\x0e\x17\x8f\xd6\x4f\xba\xb5\x23\xb9\xa3\xf0\x3d\x42\x42\xa0\x41\xe2\xb0\xcc\xee\x53\xcb\x8d\x5e\x5b\x8a\x53\x33\x9c\xa8\xf2\x37\xb8\xa7\x0c\xb3\x43\x67\x50\x64\x92\x93\x42\xef\x38\x2f\x30\xd5\x33\x85\x2d\xd6\x41\xc0\x14\xf3\x25\x9e\xc5\x14\x84\xec\x58\x6e\xaa\x66\x0d\x2c\xfd\x77\xfe\x49\xdc\x0e\xff\x0c\x13\x24\x4e\xc2\x50\xff\xb1\xe7\xcf\x63\x73\x1b\x86\x16\x90\x52\x02\x2e\xdc\xc9\x96\xb8\x95\xf1\x87\xc0\x31\x7e\xcf\x77\x50\x61\xa7\x82\x52\x9a\x6f\xab\x48\x5b\xaa\x75\x6b\xf7\xea\xe7\x37\x27\x23\xc8\x19\x5a\xa0\x39\x33\xb4\x43\x73\x66\x28\x85\x5c\xc1\x87\x21\xe0\xda\x7d\x7e\x04\x02\x79\x70\x00\x82\xd0\xd1\xdc\x06\x98\x3c\x5b\x91\xa2\x7e\x49\x98\x25\x3e\x69\x82\xf4\xf2\x3b\x05\x72\x0f\xa2\x0a\x94\xbd\x87\x3a\x69\xb5\xf1\x6d\x36\x72\xef\x1a\x89\x8e\x18\x8b\x39\xa2\x23\xee\x18\xb3\xdd\x33\x68\xf6\xbd\xab\xcd\x2a\x4b\xe0\x4f\x35\xc9\x40\x0d\x24\xd6\x6c\x10\x5a\x75\xe8\x26\x21\x6e\x1d\x98\xd7\x67\xf8\x95\x2c\x9d\x6e\x3f\xde\x2f\x02\x1b\x77\x20\x6b\xf2\xa4\x84\x01\xaf\x57\x61\x62\x4c\x83\xfe\xf2\x59\x7c\x2a\x16\xca\xf6\xd1\x60\x36\xf5\x65\x15\x54\xf3\x3a\x9a\x37\x94\x96\x00\x5f\x0d\xc3\xae\xb7\xc0\x0f\x78\xce\x33\x3f\xa1\x1f\xa3\x41\xf8\xaa\x74\x24\x93\x9a\x76\x35\xae\x4b\xdc\xbc\x48\xc2\xfc\x8c\x1b\xb4\x1e\x0e\x0e\x5c\x4f\x87\x31\x8d\x5b\x77\x81\x70\xda\x0e\x79\xa9\x49\x9e\x15\x08\xad\x33\x0b\x30\xdb\x32\x43\xe9\x21\xc9\x30\x38\x24\xcd\x04\x6c\xb1\xea\x24\x6a\x2c\xff\x39\x67\xfb\x9b\x90\xe3\xf7\x9e\xa5\xf5\xfc\x7e\xed\x5e\x7c\x59\xf5\x33\xc2\xc7\x87\x9b\x64\x9a\x2c\x63\xe6\xb1\xa7\x14\xa0\xfa\x54\xad\xf6\xee\x1e\xf5\x67\xf9\xad\x17\x17\xb1\x9a\xd6\xcc\xc4\xf7\x0d\x1e\xfa\x3a\x95\x14\x07\x33\x17\xa6\xdc\xba\x4e\xf3\x36\xa8\x76\x69\x38\xdc\x7e\x68\x1e\xb2\x2c\x43\x99\x19\x9d\x59\xa7\xc9\xcf\xe5\x46\xfc\xf1\x46\x96\x75\x06\x0b\x37\xe4\x12\x6e\xb1\xcb\xe0\x26\x0b\x7f\x64\x81\x54\x97\xd9\x00\xaf\xf6\x61\x7a\xd0\xb0\x32\x39\xb4\x5a\xb1\x81\x05\x5f\x73\xe5\xe1\x8d\x67\x12\x88\x43\x3e\x0d\xd9\x43\x3c\xd7\x9f\x09\x4c\xdd\x08\x8b\x27\x59\xa2\x7d\x7f\x2d\x69\x5a\xa5\x33\x17\x34\xe9\x24\x3c\x1a\x17\x44\xa0\x33\x4d\x19\x43\x5a\xcb\x00\x62\x93\x84\xf1\x6c\x78\xf6\xcf\xa7\x21\x04\xa3\xb3\xe9\x74\x63\x1a\x2f\xa3\x65\xb5\x3b\x26\xe0\xbb\xc5\xa4\xb7\x41\xd6\xd1\x15\x31\xe3\xc7\xbb\x8c\x68\xb2\x5f\x65\xee\xdf\x8f\xde\xb7\xb6\xbb\x1f\x67\xab\x93\x04\xcd\xb8\x2f\xcf\x9f\x75\x55\xe3\xe2\xae\xca\xaf\x72\xf2\x8c\xaa\x3d\x4b\xf2\x6d\x7c\x96\x84\x0d\xdc\x0f\x3e\xaa\x16\x1e\xb9\x42\xad\x6c\xb1\x2b\xd1\xbb\x46\x4f\xbb\xf4\xdd\xea\x9b\x71\x59\xd6\x69\xa7\x60\x9c\xf9\x2f\x56\xb1\x8c\xd1\x9e\x03\xfb\x4d\x9f\xe0\x92\xdf\x6e\x7c\xdf\x88\xe2\xf5\x1b\x19\xe9\x1f\xdc\x1b\x59\x5a\xc3\xf8\xbd\x1a\x9b\xae\xe4\xad\x07\x5f\xa1\x3e\x43\x33\xad\x6f\xf4\x42\x99\x7b\x85\xad\x6d\xbe\xa4\x63\xb3\x8f\x5e\xfc\xa6\x8f\x73\x7c\x71\xb7\x42\x60\x47\x5d\x03\xfb\x3d\xc2\x08\x59\xd7\xf9\x45\x8d\x48\x82\x40\x3a\xf2\x78\xad\xad\x25\xfd\xf0\xdd\xc0\x4a\xfa\xc7\xc8\xa6\xab\x3d\xc2\x0f\x7b\xfa\x48\x5f\xa9\x01\x6d\x91\xe4\xba\xd7\x37\x06\xe4\x6d\xa0\xfb\xe1\xe9\x1c\xc2\xf5\xa1\x6d\x37\xef\xb3\x62\xcd\x43\xa2\xff\x33\x3c\xd3\x2c\x2e\x3c\x40\x54\xfa\xcc\xe4\x27\x7f\x7d\xcb\x35\x7f\xab\x31\xe1\x38\x4a\xf9\xb7\x5b\x24\x6c\xeb\x86\xe9\x33\x27\x5c\x21\x81\xdf\x6d\xc7\xcf\x12\x3f\xcb\xe2\x06\xbf\xae\xf1\xeb\xba\xaa\x3e\x48\x61\x10\x1e\x2a\xde\x36\xc4\x7f\x71\xca\x0d\x7e\xdf\xf0\x9b\x10\xf7\xd9\xc1\x51\x62\xcf\xe1\xed\x0d\xfb\x81\x17\x36\xb8\x39\x4d\xb7\x1f\x94\xce\xad\x6a\xaa\x7c\xde\x67\xcb\x90\x1b\x4d\xc2\x17\x47\x84\xa7\xe6\x35\x49\x3e\xef\xe3\xbc\x18\xae\xac\x42\xf9\xa6\x54\xee\x87\x26\xca\x27\xa5\x75\xc5\xf5\x32\xf6\x4b\xbf\x90\x1a\x7b\xa5\x5f\x34\xbd\x65\xd7\xee\x38\xa0\xf4\xfb\xf0\x18\x7e\x0c\x87\xff\x9c\xf2\xcc\xb0\x8f\x83\x1d\x73\x34\x82\x0d\x3f\x05\xcd\xca\xe5\x1d\x3b\x65\x2f\x32\x7b\x05\xa3\x6e\x76\xfb\x20\xb3\xc7\x27\x58\x04\x2c\x46\x9e\x13\x3f\x0e\x7e\x0f\x53\x1e\x0b\xa6\xd5\x5d\x5e\xd4\xfa\x46\x32\xab\xab\xff\x56\x7d\xfd\xf7\xbf\x03\x9c\x3e\xff\xf1\x8f\xfc\xf8\xe9\xc3\xbc\xfa\xc4\x81\x4a\xfb\xf0\x0a\xbd\x42\xd1\xcf\x17\x09\x20\x3b\x90\xc3\xb8\x5e\x6f\x0a\xc5\xb8\x1e\x8d\x67\xff\x2f\x00\x00\xff\xff\x48\x33\x2b\x63\x8b\xbb\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4379,7 +4379,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 47920, mode: os.FileMode(420), modTime: time.Unix(1449769435, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 48011, mode: os.FileMode(420), modTime: time.Unix(1449791468, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/routers/admin/auths.go b/routers/admin/auths.go index baa5efe3d..659b8fcf6 100644 --- a/routers/admin/auths.go +++ b/routers/admin/auths.go @@ -45,10 +45,10 @@ type AuthSource struct { } var authSources = []AuthSource{ - {models.LoginNames[models.LDAP], models.LDAP}, - {models.LoginNames[models.DLDAP], models.DLDAP}, - {models.LoginNames[models.SMTP], models.SMTP}, - {models.LoginNames[models.PAM], models.PAM}, + {models.LoginNames[models.LOGIN_LDAP], models.LOGIN_LDAP}, + {models.LoginNames[models.LOGIN_DLDAP], models.LOGIN_DLDAP}, + {models.LoginNames[models.LOGIN_SMTP], models.LOGIN_SMTP}, + {models.LoginNames[models.LOGIN_PAM], models.LOGIN_PAM}, } func NewAuthSource(ctx *middleware.Context) { @@ -56,8 +56,8 @@ func NewAuthSource(ctx *middleware.Context) { ctx.Data["PageIsAdmin"] = true ctx.Data["PageIsAdminAuthentications"] = true - ctx.Data["type"] = models.LDAP - ctx.Data["CurTypeName"] = models.LoginNames[models.LDAP] + ctx.Data["type"] = models.LOGIN_LDAP + ctx.Data["CurTypeName"] = models.LoginNames[models.LOGIN_LDAP] ctx.Data["smtp_auth"] = "PLAIN" ctx.Data["is_active"] = true ctx.Data["AuthSources"] = authSources @@ -115,11 +115,11 @@ func NewAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) { var config core.Conversion switch models.LoginType(form.Type) { - case models.LDAP, models.DLDAP: + case models.LOGIN_LDAP, models.LOGIN_DLDAP: config = parseLDAPConfig(form) - case models.SMTP: + case models.LOGIN_SMTP: config = parseSMTPConfig(form) - case models.PAM: + case models.LOGIN_PAM: config = &models.PAMConfig{ ServiceName: form.PAMServiceName, } @@ -181,11 +181,11 @@ func EditAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) { var config core.Conversion switch models.LoginType(form.Type) { - case models.LDAP, models.DLDAP: + case models.LOGIN_LDAP, models.LOGIN_DLDAP: config = parseLDAPConfig(form) - case models.SMTP: + case models.LOGIN_SMTP: config = parseSMTPConfig(form) - case models.PAM: + case models.LOGIN_PAM: config = &models.PAMConfig{ ServiceName: form.PAMServiceName, } diff --git a/routers/admin/users.go b/routers/admin/users.go index 5e6c3a13c..ada0df590 100644 --- a/routers/admin/users.go +++ b/routers/admin/users.go @@ -90,7 +90,7 @@ func NewUserPost(ctx *middleware.Context, form auth.AdminCrateUserForm) { Email: form.Email, Passwd: form.Password, IsActive: true, - LoginType: models.PLAIN, + LoginType: models.LOGIN_PLAIN, } if len(form.LoginType) > 0 { diff --git a/routers/api/v1/admin/users.go b/routers/api/v1/admin/users.go index 1252ebbf4..1bd253681 100644 --- a/routers/api/v1/admin/users.go +++ b/routers/api/v1/admin/users.go @@ -43,7 +43,7 @@ func CreateUser(ctx *middleware.Context, form api.CreateUserOption) { Email: form.Email, Passwd: form.Password, IsActive: true, - LoginType: models.PLAIN, + LoginType: models.LOGIN_PLAIN, } parseLoginSource(ctx, u, form.SourceID, form.LoginName) diff --git a/templates/.VERSION b/templates/.VERSION index b91cc6bc2..9f1d7a82b 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.40.1210 Beta \ No newline at end of file +0.7.41.1210 Beta \ No newline at end of file diff --git a/templates/user/settings/password.tmpl b/templates/user/settings/password.tmpl index e29e807e9..644f4f931 100644 --- a/templates/user/settings/password.tmpl +++ b/templates/user/settings/password.tmpl @@ -9,6 +9,7 @@ {{.i18n.Tr "settings.change_password"}}
+ {{if .SignedUser.IsLocal}}
{{.CsrfTokenHtml}}
@@ -28,6 +29,11 @@
+ {{else}} +
+

{{$.i18n.Tr "settings.password_change_disabled"}}

+
+ {{end}}