From 362d64df0483700ac435c4b05709265378887a4e Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 11 Sep 2015 13:32:33 -0400 Subject: [PATCH] #1620 add allowed domains for SMTP auth --- conf/locale/locale_en-US.ini | 2 ++ models/login.go | 24 ++++++++++++++++++------ modules/auth/auth_form.go | 1 + modules/bindata/bindata.go | 4 ++-- routers/admin/auths.go | 11 ++++++----- templates/admin/auth/edit.tmpl | 5 +++++ templates/admin/auth/new.tmpl | 5 +++++ 7 files changed, 39 insertions(+), 13 deletions(-) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index b3e12ffe1..2989fd2e9 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -829,6 +829,8 @@ auths.ms_ad_sa = Ms Ad SA auths.smtp_auth = SMTP Authentication Type auths.smtphost = SMTP Host auths.smtpport = SMTP Port +auths.allowed_domains = Allowed Domains +auths.allowed_domains_helper = Leave it empty to not restrict any domains. Multiple domains should be separated by comma ','. auths.enable_tls = Enable TLS Encryption auths.skip_tls_verify = Skip TLS Verify auths.pam_service_name = PAM Service Name diff --git a/models/login.go b/models/login.go index 33f0f2706..bcff4f9ac 100644 --- a/models/login.go +++ b/models/login.go @@ -67,11 +67,12 @@ func (cfg *LDAPConfig) ToDB() ([]byte, error) { } type SMTPConfig struct { - Auth string - Host string - Port int - TLS bool - SkipVerify bool + Auth string + Host string + Port int + AllowedDomains string `xorm:"TEXT"` + TLS bool + SkipVerify bool } func (cfg *SMTPConfig) FromDB(bs []byte) error { @@ -383,6 +384,16 @@ func SMTPAuth(a smtp.Auth, cfg *SMTPConfig) error { // 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) { + // Verify allowed domains. + if len(cfg.AllowedDomains) > 0 { + idx := strings.Index(name, "@") + if idx == -1 { + return nil, ErrUserNotExist{0, name} + } else if !com.IsSliceContainsStr(strings.Split(cfg.AllowedDomains, ","), name[idx+1:]) { + return nil, ErrUserNotExist{0, name} + } + } + var auth smtp.Auth if cfg.Auth == SMTP_PLAIN { auth = smtp.PlainAuth("", name, passwd, cfg.Host) @@ -394,7 +405,8 @@ func LoginUserSMTPSource(u *User, name, passwd string, sourceId int64, cfg *SMTP if err := SMTPAuth(auth, cfg); err != nil { if strings.Contains(err.Error(), "Username and Password not accepted") { - return nil, ErrUserNotExist{u.Id, u.Name} + fmt.Println(err) + return nil, ErrUserNotExist{0, name} } return nil, err } diff --git a/modules/auth/auth_form.go b/modules/auth/auth_form.go index 83f8f4ebd..d18e9fd6f 100644 --- a/modules/auth/auth_form.go +++ b/modules/auth/auth_form.go @@ -28,6 +28,7 @@ type AuthenticationForm struct { SMTPAuth string SMTPHost string SMTPPort int + AllowedDomains string TLS bool SkipVerify bool AllowAutoRegister bool diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 934a609d0..a0215066a 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\xc4\xbd\xeb\x72\xdc\xc8\x8e\x27\xfe\x9d\x4f\xc1\xee\x09\xff\xdd\x1d\x21\x97\xa3\xbb\xff\x7b\x89\x0e\xdb\xbd\xb2\xd4\xbe\xcc\x58\x96\xc6\x52\x9f\xb3\x67\x1d\x8e\x6a\x56\x91\xaa\xe2\x71\x15\x59\x4d\xb2\x2c\xeb\x4c\x4c\xc4\xbe\xc6\xbe\xde\x3e\xc9\x02\x3f\x00\x79\x23\x4b\xb2\xcf\x99\xd8\xfd\x22\xb1\x32\x91\x37\x24\x12\x09\x20\x91\xc8\x62\xb7\x9b\x97\x55\xbf\xcc\x9f\xe6\xc7\xf9\xae\xa8\x9b\x4d\xd5\xf7\x79\x5f\x6d\xae\x1f\xad\xdb\x7e\xa8\xca\xfc\x65\x3d\xd0\xef\xee\x53\xbd\xac\xb2\x6c\xdd\x6e\x2b\x02\x7d\x45\xff\xb2\xb2\xe8\xd7\x8b\xb6\xe8\x4a\x4a\x38\xb5\xef\xac\xfa\xbc\xdb\xb4\x1d\x03\xfd\x2a\x5f\xd9\xba\xda\xec\xb8\x0c\xfd\xcb\xfa\x7a\xd5\xcc\xeb\x86\x7e\x5e\xd2\x57\xfe\xba\xc9\xfa\x76\x59\x17\x9b\x79\x90\x81\x04\xcb\xff\x39\xff\xb1\x29\xf3\xcb\xa1\xda\xe5\x4f\xfa\x6d\xb1\xd9\x3c\x2b\x7a\x14\x19\xaa\xbc\x58\x2e\xdb\x7d\x33\x3c\x79\x2c\x19\x52\x79\xbb\x1f\xac\xf6\xf3\xfd\x20\x69\xfb\x9d\x25\xfd\xb6\xcb\xba\x6a\x55\xd3\xc0\x3a\x4a\x7a\xa7\x9f\xd9\x4d\xb5\xe8\xeb\x81\x3b\xfd\x67\xf9\xca\x3e\x55\x5d\x5f\xb7\xdc\x9f\x3f\xc9\x57\xb6\x2b\x56\x0c\x70\x41\xff\xb2\xa1\xda\xee\x36\x05\x0a\x5c\xe9\x67\xb6\x29\x9a\xd5\x5e\x60\xde\xe8\x67\xb6\xec\x2a\xca\x9a\x37\xd5\x0d\xa5\x9e\xe0\xc7\x6c\x36\xcb\xf6\x84\xcf\xf9\xae\x6b\xaf\xeb\x4d\x35\x2f\x9a\x72\xbe\x15\x8c\xfd\x46\xe9\xb9\xa6\xe7\x94\x9e\x73\x3a\x86\x50\x95\x84\x9c\x79\xd1\xeb\x38\x68\x5a\x08\x57\x45\x9f\xa1\xaa\xa6\xd8\x5a\x69\xfe\xcc\xaa\x6d\x51\x6f\x78\x02\x1e\xf1\x07\x75\xbc\xef\x6f\x5a\x4c\xd3\x85\x7e\x12\x12\xe6\xc3\xed\xae\x02\x0e\x1e\x5d\xd1\x57\xb6\x2c\x76\xc3\x72\x5d\x70\x3f\xe5\x2b\x23\xa0\x5d\x4b\xc8\x68\xbb\x5b\xc0\xd9\x8f\xac\xed\x56\x45\x53\xff\xad\x18\x04\x41\xe7\xc1\xcf\x6c\x5b\x77\x5d\xcb\xb8\x3d\xc3\x47\x46\x43\x9f\x73\x3d\x94\xf2\x96\xb0\x10\xd4\xc2\x39\xdb\x7a\xd5\x09\x1a\x39\xf3\x0c\xbf\xb8\x16\xce\xbb\x6e\xbb\x8f\x9a\xf1\x82\x3f\x93\xa2\xd4\x09\xcd\x8d\xdb\x2f\x1a\x42\xbc\xe6\x9e\xe1\x47\x04\xd0\x67\x45\xb9\x25\x54\xee\x8a\xa6\x62\x1c\x1d\xf3\x2f\xc2\x0b\xfd\xca\x94\x9e\xe6\x7d\x35\x0c\x75\xb3\x62\x64\x1f\x4b\x52\x7e\xa9\x49\x59\x90\xe7\xd2\x6e\xdb\xbd\x9b\x4e\x4a\xff\x0b\xfd\xcc\x2f\xe4\xa7\xe4\x05\x85\x90\xe9\x4a\xf2\x48\xfa\xf9\x75\x55\x95\x32\x96\x3e\x7f\x41\xdf\xd9\x6e\xbf\xd9\x10\xd6\xfe\xd8\x57\xfd\xc0\x85\x2e\xe8\x37\x8d\x5f\x7e\x67\x75\xdf\xd3\x07\x25\xbf\xc6\x47\x46\x53\xd7\x2c\x31\x98\x13\x7c\x64\xd9\xfb\xbe\x2a\xba\xe5\xfa\x43\x26\xff\xd1\x57\xfe\x60\xda\x3b\x34\xa9\x4c\x48\x4a\x44\xd2\x82\x35\x90\x2d\xdb\x92\x7f\x9c\xd0\x3f\xaa\xba\x6e\xfa\x81\x56\xdb\x87\x4c\x3f\x18\x4c\xbe\x64\x02\x86\x7a\x00\x16\x34\x11\x4b\xb7\xe7\x19\xcc\x5f\xd4\x5d\x3f\x3c\x1a\x6a\x22\xd6\x77\xfb\x26\xe3\xf1\xd1\x4a\x9b\x97\x0b\x63\x40\x2f\x5b\x42\x11\x92\x3b\x1a\xdf\xd9\xed\xe5\xbf\xbe\x39\xca\x2f\x88\x0b\xad\xba\x8a\xbe\x73\xaa\x83\xfe\x51\x99\x9f\x66\x19\x95\xb2\x96\x4e\x8b\xa1\x58\x14\x7d\xe5\xd1\xca\x99\x42\xdd\x2e\x0f\x34\xce\x1c\x0d\xdc\xab\x1f\xa2\xf1\x4e\xad\x10\xaa\x43\xd7\x95\xab\xe3\x2d\x2f\x2e\x4a\x67\x86\x86\xc2\x17\x9b\x8a\xd3\xa9\xaa\xfc\xf5\xdb\xb7\xe7\xa7\xcf\xf3\xaa\x59\xd5\x4d\x95\xdf\xd4\xc3\x3a\xdf\x0f\xd7\xff\x75\xbe\xaa\x9a\xaa\x23\xfe\xb6\xac\x73\x5a\x53\x1d\x51\x42\x4e\x84\x2d\x83\x9b\x65\x7d\xbf\xa1\xb5\x0f\xf4\x5e\x5e\xbe\xc9\xcf\x18\xc5\xbb\x62\x58\xa3\x23\xc3\x3a\xeb\xff\xd8\x30\x8a\x5c\x83\x57\xeb\x2a\x07\x95\x01\xa8\xbd\x36\x7c\xe4\xa5\xf6\x71\x96\x55\x5d\x37\x27\x96\x34\xdc\xce\xb5\xb0\xd6\x97\x42\x4a\x15\x44\x3a\x4d\x3b\xe4\x8b\x2a\x47\x99\x59\x96\x59\x87\x0d\xbb\xc7\xbb\xdd\xa6\x5e\xca\x5a\x7f\x29\x79\x1e\xd1\xbc\x7b\x28\x96\x42\x38\x20\xca\xf2\x02\x74\x11\x6b\xe6\xf5\x90\x47\x0c\x04\xe5\xd7\x15\x31\xc0\xf5\x7e\x25\x6c\x6f\xd3\xee\xcb\x6f\x40\xa9\xd6\x7b\x4f\xa8\xf9\xbb\x96\x3a\x0c\xec\x38\x00\xdf\xc4\x31\x51\x1c\x6f\x58\x5d\xb5\x6d\x89\xaf\x38\x62\xaf\x89\xa0\x6e\x6a\xca\xa4\x91\xf6\xc5\x27\x5a\x6f\x43\x9b\x0f\xeb\xba\xcf\x4b\x22\xb6\x25\x57\x4c\x4b\x63\x4f\x5b\x85\x90\x05\x11\xa8\x90\x86\xa5\xc5\x73\x00\xa8\xed\x9e\xa8\x69\x4d\x95\xf1\x46\xc4\xbb\x26\x55\x39\xd5\x4f\x0c\x89\xea\x01\x7d\x13\xe5\xb6\xc4\x95\x99\x6f\x9e\xe2\x43\x7f\x87\xf5\x53\xaf\x8a\xeb\x6b\xea\x55\x4f\x54\xf1\x2a\x5f\x6e\x5a\x22\xa9\xdf\xde\xbd\xe9\x99\x60\xd6\xf3\x5d\xdb\x61\x8b\xa3\xac\x0b\xfa\x74\x69\x01\xa2\x19\xa2\xd9\x6f\x17\xf4\xeb\x66\x5d\x13\x07\x00\xda\xb9\x04\xef\xe4\x94\x4a\x4d\xec\x7b\x9a\xc2\xa3\x9c\x48\x98\x46\x40\x28\x03\x01\xf0\x18\xca\xba\x2f\x16\x34\xf7\x0c\x7e\x4d\x5b\xd6\xbe\x23\xb2\x5a\x0f\xc3\xce\x5a\x7e\x75\x75\x75\x21\x4d\xbb\xd4\xbb\xda\x2e\x02\xca\xc0\x1c\x6c\x78\xd3\x6d\xf2\xb6\x99\x81\x48\xf6\xdd\x26\xa1\x1f\x1a\xab\xe5\x1c\xc0\x0b\x77\xe1\x31\xff\xb9\xf4\xe8\x01\x9e\x7b\x92\x4c\x6e\x40\x4d\x84\xe3\x0a\x1b\x20\x11\x75\xbb\xe3\x7a\x03\xaa\x3e\xd7\x04\x4f\xca\xd8\x34\x5d\xbe\x6c\x9d\x94\x0b\xb9\x27\x60\xff\x5b\x1a\xb0\xb2\x91\xcb\x33\x42\x03\x78\x09\x52\xaf\xbb\x76\x4b\xa9\x2f\xe8\x9f\x4f\xf0\xdd\x3f\xe3\xfa\x00\x53\x94\x25\xf1\xb7\xfe\x28\x7f\xf7\xe2\x24\xff\x4f\x3f\xfd\xf8\xe3\x2c\x7f\x3d\xf0\x4a\x64\xe2\xfc\x2b\x13\x15\x7d\xca\x1e\xee\x40\x89\x65\x0c\x44\x77\xdf\xf2\xca\xfa\x36\x7f\x82\xdc\xff\x56\x7d\x2e\x48\xf6\xa8\x66\xcb\x76\xfb\x8c\xb9\xca\xb6\x18\x66\x19\xe7\x10\xb9\x2a\x1d\x5f\x56\x4d\x49\x1f\x2a\x09\x68\x5e\xc0\xee\x34\x3f\x90\x0b\x44\x22\x9a\x2f\xdb\xe6\xba\xee\x78\x40\xbf\x36\xa0\x06\x93\x95\x68\x1f\x40\x8e\x6d\xb7\x84\x34\xe2\x20\xf5\xf5\xad\x07\xc5\x50\xdf\x72\xa2\x4e\x68\x26\x54\x37\x57\x31\xd2\x61\xf9\x52\x88\x91\xe7\xed\x9c\x86\xd7\x19\xbe\x7b\x8f\xf0\xf6\xfa\x7a\x43\x1c\xd5\xb8\xa4\xb6\x70\x2e\xa9\xc2\x30\x43\x10\x22\xc6\x1d\xa4\xbd\x53\x25\xe2\x93\xd3\xb7\x79\xf5\x89\xa8\x8d\xc8\x81\xb6\xe8\x72\xbf\x04\x85\x31\xec\x51\xce\xfb\x13\xe1\x97\xd6\xc6\x52\xf8\x6a\xc0\x24\xb8\x6b\xcc\x89\x96\x04\x44\xbc\x41\x17\xc5\x9c\x24\x94\x4f\xc4\x41\xbb\xa0\x89\x97\x96\xa4\xbd\x1f\xc1\x8e\x3a\xe5\x4a\xf0\xc8\x97\x34\xe3\x44\x15\xd2\x8b\x5e\x3a\x25\xd9\x44\xee\x44\xc7\x7b\x92\xa2\x8b\x92\xfa\xb2\xb8\x05\xdf\xe9\x99\x18\xca\xea\xba\xd8\x6f\x06\xdf\x2f\x99\xb8\xce\x64\x32\x6b\xe9\x92\x05\xf9\x30\x6f\xb2\xc0\xa8\x83\xa0\x9e\x3e\x2d\x4b\x64\xd8\x6c\x6e\x73\x08\x50\xa0\x57\x11\x6f\x4d\x0e\xef\x67\x99\x6e\xde\x26\xcd\xcf\x3f\xd5\x90\x7c\x1d\x09\x21\xd7\x44\x7b\xe6\x35\x7f\x62\x00\x16\xa9\xfb\xc9\xb2\xae\x63\xe7\xdc\x70\xef\x24\x5f\xc1\x03\x77\x01\x2d\xb0\x68\x4e\x98\xfb\x54\x83\xf5\xea\x24\xa2\xaf\x34\x93\x68\x9a\x9a\xea\xab\x0a\x35\x50\xf9\xc7\x54\x27\xca\xcc\x54\x1a\x54\x01\xcd\x04\x11\x12\xd2\xf2\xb2\xcd\x79\x67\x04\x7f\xa7\xd2\x36\xd4\x46\x87\xaf\x63\xce\xbb\x7a\xb5\x26\x7e\xd7\xde\x1c\x09\xd2\x6e\xd6\x6d\xc5\x34\xfd\xfa\xf4\xe9\x0f\xd2\x8f\x15\x73\x7b\x57\x88\xf7\x89\x62\x4f\x13\x4e\x18\x55\xd2\x92\x2e\xb8\xfd\x16\x90\x23\xb9\x53\x80\x52\x49\xdf\x64\xd9\xb1\xf8\xa2\xeb\x37\xcc\xd3\x85\xeb\x61\xa4\x74\xa2\x2d\xa8\x58\x37\x5f\xb5\x90\x57\x4d\x8c\xe3\xbd\x8b\xd4\x9e\x7e\x98\xaf\xea\x61\x7e\xcd\x8c\x84\xeb\x7c\xc1\x65\x79\x2b\xa5\x9c\xfc\x21\x65\x3d\xcc\x89\x1b\x91\x10\x5e\xfe\x9c\x3f\xf8\xa4\xf2\xcb\x4f\xcc\x21\xe6\x44\xd3\xf5\x06\x93\xa1\x52\x70\x57\x89\xf8\x64\xaa\x56\xd9\xd2\xfa\x63\x9c\xf7\xfb\x1d\x76\x1a\x15\x59\x8e\xf2\x9d\x00\x96\xed\x4d\xc3\x6b\x01\xac\x90\x56\x7d\x0d\x45\x71\x51\x37\x05\x6d\xb7\x56\x0b\x58\xec\x03\xa2\x86\xb7\xe7\x57\x00\x5c\xb5\x8b\x7d\xbd\x29\x0d\x60\x46\x23\xfc\x54\x6c\xea\x92\x05\x4f\x9d\xf7\x50\xc8\xb3\xa4\x5a\xfa\xb2\x6c\x3b\x96\x0f\x30\x1a\x2b\x78\x40\x30\xe9\x78\xc3\x47\x32\x95\x55\x58\x94\x73\x32\x04\xa3\x81\x26\x1e\x12\x39\x4b\x18\xa0\x98\xba\x6f\x1e\x0e\xe8\xe9\x72\x4f\x6d\xd1\xa4\x73\x32\x15\xec\xf3\x47\xcf\xe8\x6f\xc6\xf2\x8a\xf0\xe3\xd5\x18\xf1\x9c\x99\x4b\xe6\x5e\x56\x69\xd4\xd5\x88\xbc\x1d\x75\x19\xf1\x06\x63\x0d\xfb\x6b\x24\xd0\xef\x85\x5e\x59\x2b\xde\xd0\xb4\x56\xdf\xd0\xc7\x43\x5a\xc0\xab\x0d\x26\xa1\x80\x38\x47\x72\x6d\x4b\x78\x63\x02\x39\x92\xe5\x72\x4d\x43\x63\xce\x36\x14\x1f\xa9\x6f\x05\x8b\x0f\xd9\x7b\xb6\x1c\x7c\xc8\xf6\x22\x11\xb6\x9b\xd2\x49\xdf\xa0\xe9\xb6\x4b\xb5\x55\x0f\xe4\xe8\xb5\x27\xb1\x7a\xb9\x9e\x3b\xbb\x03\x23\x65\xa8\x3e\x63\x2f\x46\x96\x37\x43\x30\xb1\x73\x56\xb6\xbd\xc5\x74\xf1\x20\xce\x6e\xfd\x6c\x91\x3c\x48\x4b\x84\x74\x96\x45\xcb\x58\xfb\x54\x39\xa8\x93\x30\x35\x2e\x40\x75\x91\xe4\xaa\x55\xc5\x4a\x25\x65\x89\xe6\xab\xb9\xa2\xfd\xf6\x19\x98\x98\x1a\x4d\xc0\xeb\x68\x3e\x55\x81\x9b\xd1\xc4\x40\x3b\xb4\x96\x89\x23\xde\xca\xba\x08\xda\xcc\xde\xab\x41\xe5\x43\x66\x70\xef\xe2\x7c\xe2\x26\xa4\xe9\x79\x4b\xc3\xdc\x66\xd7\x2c\x0e\x50\x92\x95\xa1\xf8\x0d\x7e\x5d\xed\x58\x16\xd8\xf6\x20\x8b\x0d\x41\x96\xb7\x2a\xcd\x3a\x02\xf9\x45\x58\x35\x51\x0c\x31\xb8\x6f\xcc\x54\xf3\x95\x55\x3c\xaf\x89\x14\x50\x3e\xde\x7a\xc4\x04\x42\x42\x27\x6c\x3e\x5d\x77\x7b\x94\x47\x9b\xd8\xba\xe8\x89\x7d\xd3\xce\xad\xc5\xca\x99\xe9\x5b\x3c\xed\xc5\x52\xd6\x0c\xcc\x36\xa0\x72\x29\xd9\x76\xe9\x9e\xc8\x3d\x14\x0e\xa7\xad\x38\x49\x06\x72\x4a\x28\xce\x4c\xb4\x49\x08\xdb\x56\x2c\xcc\xce\xb7\x62\x2d\x91\x5f\xf9\x59\x95\x91\xc4\xb5\xa2\x05\x6d\x04\xfb\x94\x95\xdc\x15\x64\x7e\xa5\x57\x06\xa8\x86\x90\x05\x2b\x84\xa5\xfc\x62\xe6\x29\xe2\x0c\x37\xb0\x00\xd0\xda\x1e\xa1\x9f\x36\x2b\xca\x9e\x19\x4b\x97\x1d\x1b\x82\x57\x4f\xdc\xc2\x23\xf1\x38\x67\x3b\x53\x08\xa5\x02\xb0\x1f\x16\x17\x60\xae\xf1\x64\xf1\xec\x41\xff\xe4\xf1\xe2\x99\xe3\xad\xcb\x75\xb5\xfc\x28\xf4\x57\x37\x8b\xf6\x33\x54\x58\x9a\x78\xc6\x71\xc3\x6b\xec\x41\x99\xaf\x29\x17\x5a\x0e\xf1\x02\x2a\x46\x88\xe7\xdc\x68\xd2\xa8\x33\xcc\x32\x66\x66\xe8\x73\xbb\x8b\x11\x12\x95\x46\x23\xd2\xb3\x8c\xa6\x91\x17\x1f\xd6\x81\xa7\xdb\x63\x4e\x65\xca\xc5\x3e\xe1\x49\x17\xe3\xdd\xd4\xdb\x7a\x18\x91\x0e\x33\xa2\x42\x49\x50\x2d\x27\x86\x4b\xd4\x05\x6c\xa0\x2f\xc4\xce\xa9\x1a\xda\x78\x8d\x9c\x6e\x0a\xd2\x7e\x7e\xca\x89\x84\xf6\xb4\x8d\xf1\x98\xa8\x9b\xc4\xcf\x0b\xde\xb9\x49\xf3\x29\xfa\xf9\xbe\x51\xb4\x56\xa5\x11\xd3\xab\x1a\xbb\x0c\xb7\x6b\x24\x1f\x40\x19\xe6\x55\x80\xcf\xbf\x73\x18\xff\x9e\xa4\xfd\x6b\x57\x8c\x59\x3f\x77\xa8\x66\x61\xb3\x98\x9c\x3c\x62\x8d\x4d\x25\x0a\x2b\x30\xc0\x70\x3c\xd1\xa4\xf5\xf8\xd9\x23\xd5\xe9\x23\xa5\x60\x42\x16\xfb\x61\x68\x59\x99\xd8\x30\xd5\x48\x19\xeb\xf5\x09\x00\xa1\x1f\xf9\xfa\x30\x21\x21\x9e\x64\x6e\x2a\x13\xee\xe7\xde\xe4\xaa\x6a\x58\x32\x3a\xdd\x2b\x1d\x58\x29\x06\x90\xa2\xb9\x35\x52\x26\x82\xe0\x5e\x70\x83\xc3\x74\x5f\xbe\xeb\xaa\xef\x7d\x6f\xdc\x9a\x41\x09\xeb\x91\x14\x0f\xd6\xd3\x3b\xe4\x8a\xc1\xcd\x56\x9d\x6d\x7d\x6a\xb6\xf2\xf4\xd1\xc5\xe8\x45\x3e\xaf\x0c\x62\xb0\x24\x77\x96\x40\x34\x8d\x02\xa5\x67\x49\x5b\x5e\x8f\x1b\x63\x70\x88\xbb\xec\x77\xb0\xa1\x6d\xe7\xfd\x5a\x74\x66\xeb\x1e\xe9\xdb\xcd\x2a\x32\xbc\xc0\xe0\x0e\xa2\xfb\xcf\xbc\x4f\x92\x66\x52\x6c\x3e\x64\xb7\xb0\xf0\xfd\x85\x38\x7c\x03\xdb\x69\x9b\x51\x86\x68\x59\x67\xf8\x20\x50\x56\xf9\x3e\x64\xbc\x87\xbe\x4d\xe4\x42\xde\x22\x34\x2d\x10\x50\x90\xf5\x6b\x24\xee\xd9\x14\x66\x17\x13\x32\xe4\xbb\xca\xdb\x88\xf1\xe5\x86\x78\x79\xf9\xea\xca\x74\xb8\xcb\x57\xf9\xc7\x4a\x2b\x7f\x35\x0c\xbb\xfe\x37\xe8\xf3\xa2\x9c\xb3\x26\x7f\x51\xdc\xb2\xd4\x26\xc9\xfa\x03\x19\x57\x55\xb1\xd5\x5e\xf2\xa7\x54\x71\x4c\xdb\x99\x26\xf2\x27\xed\x72\x81\x9d\x28\x83\xfc\x62\x43\x10\x61\x46\xe5\x06\xa7\x3f\x54\x6a\x80\xfe\x7d\x64\xdc\xfa\x3d\x2b\x36\xbb\x75\x01\x01\x22\x00\x83\x1d\x87\x80\x30\xf1\x39\x40\x40\x0b\xfb\x6d\xd5\xd5\x4b\x68\x5b\x54\xe0\xbb\x47\xf3\xef\x61\xc2\xa3\x85\x42\x92\x64\x5c\x59\x49\x8b\xe4\xef\xaa\x90\xbf\x59\xca\x0c\xeb\xed\xeb\xbf\xd9\x28\xa2\xea\x38\x9d\x78\x0e\x41\x40\xa6\xf3\x50\x0e\x08\x1b\x23\xcb\x77\x03\x9b\x75\x28\x81\x64\xc8\xa8\xea\x6d\xf1\xf9\xbe\x82\xdb\x76\xa2\x9c\xb0\x02\x5f\xc8\x16\xbc\x0e\x31\x66\x07\x04\xcf\x86\x9b\x83\xd0\x34\xf5\x0c\xd2\x7c\xa4\x5d\xad\x71\x60\xbf\xc9\xef\x1c\xbf\x7f\xb6\xe3\x08\xda\x42\x54\x02\xcf\xdd\xc1\x04\x6d\xce\x25\xf3\x4d\x48\xd2\x33\xbf\xdc\x42\xe9\xda\x91\x33\x34\x6c\x55\x7c\x1c\xe3\x60\xb5\x1a\x8a\x06\x91\xd4\xcc\x9f\xa1\xcc\x79\x8f\x9c\xb3\xd4\xda\x84\xb2\xa9\xdb\x3d\x6d\x7f\x01\x84\x58\xd2\xe7\xe3\x72\xc9\x82\x3b\x58\x9c\x44\x81\x89\xd2\xe7\x63\xd3\xe8\x81\xf2\x03\x2d\x99\x89\x0a\xdc\x4a\x3a\x58\x50\x26\x13\x85\x68\xe4\xe5\x88\x17\x8c\x0b\x32\x18\xe9\x4d\x9b\x4d\xb5\x62\x1b\x9a\x35\x1c\xb5\xa6\x24\x44\x9b\x81\x80\x85\x04\xe4\x31\xec\x26\x2b\x9c\xd7\x50\x0b\x70\x73\x14\xeb\x5f\xd4\x6b\x92\xe7\xe9\x93\x4b\x06\x5a\x98\x76\x43\x77\xf2\x2d\x2b\x1c\xfd\x9e\x59\x33\x2b\x27\x22\x9d\xc4\xb3\xc1\x1b\x2f\xaa\xaa\xd0\xc4\xe1\xea\x89\x16\x59\x63\xbb\xaf\x7e\x80\x7d\x65\xd5\xa1\xbe\x3e\xae\x58\x2b\x77\x40\x87\xaa\x75\x1a\x65\xf5\xb9\x86\x3d\xf2\x65\xcd\x76\x2e\xe8\x94\x4e\x95\x46\xde\x2c\xdb\x10\x33\x60\xdd\x45\x46\x25\x72\x6c\xfb\x89\x55\x3f\x6e\x8f\x73\xa5\x9c\xd8\x27\x75\x50\x3c\xcf\xaa\x9d\x92\x36\xd8\xde\x54\xe5\x11\x6d\xf1\x5c\x82\xfa\x09\xb6\x51\x6c\x6e\x8a\xdb\x1e\x46\x16\xe3\x38\x6c\x8b\x95\xe2\xcc\x4e\x48\x00\x58\xa1\x57\xa1\xc5\x9f\x56\x9c\x61\x82\x4d\xd7\xbc\x79\xb8\x6d\xfa\x06\xfa\x25\xb8\x85\x9a\x6d\x48\x6d\xe7\x6d\xcf\x19\xb0\x09\x9c\x75\x63\xd6\x24\x59\xc6\x97\xec\xa0\x22\x1c\x22\x29\xe7\x9f\x28\x7b\xc4\xe2\x11\x35\xc3\xc2\x0a\xf1\x63\xc1\x35\xc9\x7f\x84\x59\x74\x29\x30\x36\xec\xa9\xfe\x47\x22\x17\xd7\x84\x43\xd6\xb3\xbc\xfe\xcd\x7b\x13\xcd\x8a\x59\xac\x25\x1d\xda\x73\xd6\x0f\xb4\x04\x18\xd3\x76\xf0\xf9\x17\x91\xaf\x54\xe7\xe6\x5c\x2c\x31\xa0\xa9\x5f\xd7\xbb\xbc\x85\x15\x34\x44\xa1\x27\xdb\x40\xc4\x64\xdb\x7c\x05\xb9\x9b\xcd\xc1\x5d\xd1\xf4\xd7\x15\xec\xc2\xdb\xfc\x9a\xcf\xd6\x66\xda\x34\x4b\xac\x72\x00\x7a\xa0\x65\xd1\x61\xd0\x74\xb8\x5b\x60\xee\x82\x89\x8a\x9b\x96\x83\x02\xd8\x1e\xd1\x07\x60\xd5\xd7\xd4\x5b\x1f\x98\xcc\x46\x28\x80\xd4\x18\x1d\xfb\x58\x6f\x3e\x55\x21\x22\xae\xff\xde\x91\x07\x58\x57\xd3\xb7\x9c\x17\xc4\xd3\x24\x8d\xc2\xdc\x81\x53\xbb\xc5\x6d\x3c\x7a\x2e\xea\x28\x80\xcf\x90\x3e\x55\xda\x0a\x2f\x0c\x5e\x2b\x49\x85\x30\x73\x78\x5d\x21\x1b\x0a\xa8\x7c\x0b\xea\xe2\x72\x1d\xad\xce\x2b\xe4\xe4\x92\x33\x5a\xa0\xd9\x7b\x6e\x9a\xd4\xf8\x75\xd1\xac\xaa\xb9\xb3\x31\x9f\xe0\xb7\x4a\xe8\x6a\x33\x1e\x72\x33\x2c\xb3\xe5\xdf\x8a\x88\x19\xf9\xce\x92\x75\x63\x16\x9f\x3e\xfb\x6b\x4b\x32\x04\x4c\xc5\xff\x4c\x5f\x2c\xfd\x36\x59\x74\x5a\x96\xd8\x19\xa0\x1e\xd4\xc3\x2d\x8e\xf1\x16\x24\x03\x8b\x92\x46\x29\xa4\xe6\x82\x3b\xc0\xf4\xf1\xc2\xbe\x69\x3e\x0a\x66\x7a\xbc\xb4\xe5\x4b\xe1\xc4\x0e\xf5\xc2\xbe\x33\xd6\x92\xb7\x33\x6c\x0e\x2c\x4c\xc3\xea\x1e\x6c\x09\x0f\x1f\xf4\x0f\x79\xc2\x2c\x6f\x16\xc0\xef\x8a\x81\xd8\x62\x23\x2a\x8a\x70\xa8\xb0\xa8\x66\xbb\x2a\xc0\x55\x04\x6c\x86\x33\x72\x41\xc5\x87\xcc\x1f\xdd\xdb\xa9\xfd\x94\x45\x55\x59\x4c\xaf\x32\xef\xbf\xd0\xa7\x5a\x44\x72\xe7\xb4\xa2\xaa\x2a\x0e\x46\xed\x34\xab\x8f\x0f\xb7\xfa\x4c\x6d\x48\xb1\x01\x49\xc9\xfb\x69\x7e\x2a\x1f\xa6\xf4\xee\x6b\x8c\xa9\x2e\xb3\x6c\x07\xbc\x07\x8e\x06\x3a\x11\xae\xd3\xea\x50\xe2\x8d\xd8\x5d\xba\xb3\x13\x16\xa4\x16\x10\xae\x9d\x75\x40\x0a\xe0\x53\xe9\x40\x61\x63\xeb\x2c\x34\xb9\x26\x38\xc7\xe1\xd3\x09\xd6\x3f\x09\xec\xa6\x5a\xe4\x6c\x2f\x25\xc2\x21\xbd\x48\x07\xba\x2d\x48\xa5\xfa\x54\x17\xce\x32\x43\xb3\xc5\xae\x0c\xba\x8b\xbe\x60\x37\x06\x9c\x0d\x8f\xfd\x6d\xf8\xa0\x45\xcf\x2e\xde\xe8\x67\xb6\xdf\x95\x6c\xd3\xf2\x03\xfe\x0d\x09\x6e\xc0\x71\x7e\x60\xae\xc4\xd0\xad\x98\x93\x66\x04\xbc\xcc\x15\x8e\x7b\x76\x3b\xb3\xe5\x33\xe1\x47\xa3\x4b\xa8\x4c\x41\xbc\xed\x01\x2c\x46\x72\x05\x99\x72\x3c\x89\xe1\xd3\xce\x98\xaf\xdb\x9b\x7c\x53\x37\x1f\x7b\xc5\xa6\xb3\x7e\x38\xad\x98\xa5\xa6\xba\xd9\x8b\x7f\x85\x7c\x8e\xdd\x39\x2a\xd9\xea\xd2\x15\xae\xa7\x2a\x27\x72\x7e\x74\x8c\xe4\x49\x58\xaf\xbc\x6a\x11\x1c\x7c\x07\x27\xbd\xd7\x15\x4b\xcd\xe0\x71\x76\x34\x45\x83\x6e\xdb\x5e\x0d\x8a\x9e\xa7\x70\x1a\xac\x0f\x0a\xa5\x53\xe0\x20\x74\x86\x8e\xed\x40\x0c\x4b\x2c\xb3\x23\x2c\xeb\x0f\x16\xec\xbc\xde\x8a\xb7\xd4\x6f\x76\xc0\x85\xe9\x72\xca\x02\xb2\x67\xa4\xfe\x26\x83\x09\xcf\x11\xde\xb6\x76\x7c\x66\xcc\xd1\x32\x8f\x4c\x06\x10\x84\x60\x07\x8f\x3a\x9b\x92\x8b\x56\x60\x26\xf1\x7b\xa8\xc6\x68\x22\x3c\x5e\x11\x3a\x70\xfc\xa2\xdd\x44\x92\xde\x89\x1a\xf7\x5d\x3e\x63\x36\xc8\x7f\x8b\x83\x30\x77\x0c\xcb\xfa\xf6\x3c\x01\x51\x7d\x3c\x82\x9c\x14\xa8\xad\xad\x83\xc2\x74\xd2\xfb\xd1\xd2\xb1\x72\x37\x84\x85\x70\xe0\x4a\xec\xe5\x0c\x47\x64\x7c\xfe\xc6\x86\x4b\x9c\xaa\xc1\x9d\x40\x28\xab\xc1\x91\x9c\x54\x41\xa8\x82\xbe\xd1\x7b\x35\xe3\x58\x98\x11\x1b\xd4\xc5\x59\xcb\x01\xa8\xbf\x56\xac\x4e\x56\x76\x36\x1f\xf2\xb5\x5d\x47\xe4\x41\xfb\x6e\x62\x88\x1a\x71\xb4\x88\x7b\x81\x79\xb5\x38\x68\xf6\x4c\x8b\x14\x48\xad\x8b\xd9\x3f\xbe\x2c\xc5\x1b\x2f\x2b\x36\x6e\x59\xa3\xca\xab\x5d\xae\x70\x6c\xd7\x49\xfa\x21\x7c\x4c\x87\x7b\xaa\x29\x09\x80\x0d\x47\xf9\xfd\x30\x61\x56\xc3\x68\x54\x0a\x31\x76\x5c\x37\x72\xd0\xef\x8e\xba\x22\x7e\x92\x9f\x82\xc1\xd0\xbc\x89\x9d\xd7\xd8\xcb\x2f\x69\xe3\x7e\xc2\x7f\x4d\x4c\xc4\x32\xb8\x98\xde\xbf\xc9\xa8\x4b\xa0\xc6\xca\x99\x5e\x4a\x4c\x73\xdc\x63\x80\x85\x20\x66\xe5\xb5\xe4\x79\x64\xc3\x86\x35\xfa\xff\x99\xdd\x3a\x6a\xd0\xd9\xad\x7d\x57\x93\x35\xc1\x7d\x4c\x76\xd3\xd1\xea\xa0\x0c\xc8\x16\x4a\xd7\x81\xc4\xa0\x94\xed\x04\x07\x6e\x46\xf4\x15\x46\x13\x25\x41\xbc\x50\x92\xc0\xb6\xc2\xc2\x2b\x3c\x65\xe0\xe6\x25\xca\x4b\x3f\x32\xb1\xc6\xb3\x7f\x0c\xed\x8c\xb0\x22\xb0\x2c\xeb\xf0\x66\x2d\x92\xad\x6a\x7b\x5b\x46\x84\x9c\x49\x3b\xaf\xa5\xd1\xb1\xd3\x91\xaa\x44\xeb\x7a\xb5\xa6\x71\xd5\x5b\x3e\x8f\x05\x4d\xd9\xa1\x9f\xd7\x58\xf9\x17\x71\x95\x76\xd5\xb0\x7d\x8a\x5b\x10\x37\x25\xb7\xe9\x3c\xe9\x87\xae\x6d\x56\xcf\x4e\x5b\x56\x25\xd9\xca\xc3\x1b\xe3\x2f\x4f\x1e\x6b\x3a\x71\x4e\x9e\x43\x76\xdc\x7d\x59\x0f\xaf\xf6\x8b\x87\x7d\xbe\x22\xb9\x07\xdb\xe5\x93\x22\x5f\x77\xd5\xf5\xd3\x6f\x1f\xf4\xdf\x3e\xd3\x43\x78\xf1\x21\xbb\x69\x1c\x5a\x9e\x3c\x2e\x9e\xb1\x66\xd0\xb7\x1b\x5a\x2a\x71\x91\x76\xbb\x95\xf9\xa5\x5d\x60\x2b\x90\xe8\x3f\xce\xed\xab\x06\x98\xa3\x6e\x0a\x7e\xa8\xc2\x99\xa3\x75\x3f\x3f\x3a\x6d\x26\x02\x46\xb6\x13\x15\xc2\x18\x18\xc7\x91\xcd\x10\xec\x1d\x6c\x37\xc9\x5d\x31\x08\x0f\xe3\x62\x98\x48\x36\x45\x79\xb3\x8d\x19\x5e\xa0\x1d\xa0\x0e\x2b\x4f\x45\xa9\x27\x22\x45\x71\x9a\xb5\x29\xf2\x03\x7d\x19\x69\x05\xf4\xcb\x1b\x86\x99\x69\x21\x0c\x7b\x03\x0f\x13\x6c\xb2\xd4\x95\xbb\xc9\xe8\x95\xb7\xd9\x08\x02\xee\xa6\x38\xf1\xec\x2d\x85\x99\x62\x70\xd6\x8b\x90\xb3\x89\x13\x8e\x70\x37\x21\x49\xd2\x3e\x98\x77\x7f\x21\x67\x1b\xb5\xeb\x07\x6e\xcd\x7d\x01\x73\xc3\x98\x8e\x81\x0e\x1a\x0b\xec\x25\x3a\x53\x6f\xd4\x3a\x82\x0c\x92\x46\x02\x4d\xe8\x6d\xab\xa7\x49\xb9\x25\x62\x4e\x48\xf5\x19\xaa\x68\x31\x73\x27\xe0\x72\x27\xee\x2b\x30\xb8\xfc\x97\xbc\x2c\x88\x13\x0c\xed\x47\x22\xa6\x71\x11\xa4\x1f\x2a\xe4\x38\x8c\xe9\x1f\xca\x5f\x8e\x3d\x7b\x48\x35\x12\x3d\xbc\x3d\xc8\x62\x02\xce\xa2\xb5\x3a\xb7\x1e\xb1\x16\x55\x90\xfb\x17\x75\x53\x0a\x27\x51\x46\xa0\x7e\x32\x8e\x03\x90\x98\xd5\x30\x10\x4c\xba\xfc\xa1\xbf\xc3\x69\x89\xea\x0f\x96\x0b\x31\xf0\x7d\x13\x30\x50\x21\x87\xb9\xa0\xc2\x0d\xf2\x82\xd4\x4b\xf8\xee\x1d\x4b\x85\x57\x9c\xdd\xab\xe3\xaa\x9e\x81\x5b\x91\x97\x9a\x88\x35\x00\x40\x41\x78\xef\x10\x81\x5f\xde\xd2\x60\xb5\xa8\x7f\x83\x7a\xe5\x61\x0e\x88\xea\x8c\x65\xae\xc5\xdf\x21\x3f\xbe\x78\x4d\x7b\x86\x6b\xd0\x2a\xfd\xb5\x20\x71\x5a\xba\x70\xe3\xac\x1c\x4c\x6c\x29\xcf\x75\x7a\x80\x14\x37\xa3\x2a\x4a\x62\x89\xbb\x41\x8d\x06\x24\x83\x89\xf3\x05\xc7\x55\x1f\x58\x7e\xa4\x35\xf4\x24\xdd\xad\xdc\x50\xbf\x21\xcc\x3a\xfb\x23\x2f\xad\xdd\x2d\xf3\xff\xc0\xb5\xa9\x10\x0c\xdd\x80\x83\x27\x3e\x55\x04\x09\xeb\x47\xce\x4b\xb8\x73\xfc\xc3\x3a\xac\x1c\x24\x9c\xca\x90\x8d\x4c\x4e\xa6\x67\x2a\x93\xc5\xa6\x38\xcb\xce\xea\x89\xc7\x7c\x1f\x9f\x61\xc2\xf7\xba\xf9\x1d\x5c\x26\x1c\x55\x40\xca\x17\x93\xcd\x3a\x8a\x96\xa6\x13\x7e\x93\xcb\x46\x28\xde\x01\xdc\x8a\xa8\x18\x4a\x11\x81\x1b\x2c\xd5\x72\x53\x6d\xd8\x7f\x55\x5b\xf7\x27\xe4\x3a\xf4\xe8\x7c\x5c\x81\x02\xed\xb4\xf2\x72\xae\xa0\x22\x34\xdd\x59\x65\x04\x41\xcb\x0d\x47\xe2\xa2\xde\xdb\x7e\x7d\x72\xfc\xf6\xed\xf9\x95\xdf\xa6\x79\x1d\x34\x25\x09\x13\xdf\x38\xef\xb2\x51\xbf\xcc\xc7\xcc\x4d\x60\x0c\xe1\xbd\xdc\xb4\xc4\x21\xb8\x90\x4d\x59\xed\xf4\xb9\x6a\xc1\x7b\x5a\xee\x8b\xf1\xf2\xa8\xff\xe5\xa1\xf9\xcb\xde\xb3\x7c\xf3\x21\x33\x03\xf8\x39\xff\xcf\xc2\x33\x84\xe0\xdc\x06\x4b\xcf\x1f\xef\x78\xef\x72\xea\x40\x5b\x8e\xce\x14\xc0\xa4\xf7\x05\xf4\x23\xc2\x7d\x8b\xbd\xe2\x3a\xc7\xd1\xef\x11\x9b\x48\xdb\x0e\x0b\x86\x91\xbb\x6f\xea\x3f\xf6\x10\xd0\x58\x3b\x22\xe6\xc1\x4e\x8b\x8b\x7a\x23\x1b\xca\x9f\xdc\x0f\x49\xe7\xaf\xc4\x03\x3a\x68\x9c\x7e\x3d\xe9\x77\xec\x87\x49\x7b\x43\xff\xf4\xdb\x7d\x9d\xb3\xc5\x8d\xfd\x9e\xbe\x7d\x46\xba\x0c\xbb\x50\xd0\xf4\x11\xc4\xb3\xa0\x3a\xbe\x57\xe3\xeb\xfc\x4e\xd5\x56\xea\x2f\xd6\xd1\xa7\x62\xb3\x8f\x8d\x19\xbc\x6e\xb8\x4c\xff\x7d\x86\xa2\x6a\xd1\x4d\xef\xe4\x20\xcf\x7c\xa0\x39\x0f\x8e\xd0\x48\x9d\x18\x8a\xaa\x8f\x62\x92\x1b\xc4\x96\x9b\x07\xa8\xe0\x75\x89\x56\xab\x10\xdd\x7a\xe6\xe6\x96\x7f\xbf\xec\x6a\x38\x72\x4b\x3a\xdf\xc0\xca\x83\xdb\x57\x2e\xd1\xb7\x7b\x49\x44\x43\x63\x9a\xad\xea\x81\x94\x56\xbe\x75\x05\xb7\xdf\x8c\xd6\x1c\x6d\x03\xb8\xbb\x25\x5f\x96\x32\x2a\xca\x3b\xa6\xc0\xc2\x06\xc5\x72\x9a\x92\x0f\x7f\xe8\xef\x89\x52\x0a\x68\x37\xc7\xf8\x38\xa1\x25\xa5\xbd\xe6\x55\xf3\x9a\xfe\xd1\x8e\x28\xf2\x73\x3c\xc7\x22\x1c\xa2\x12\xb5\x90\x88\x1a\xeb\xea\x51\xc7\x2f\x9d\x15\xf5\xf8\x0a\xe6\x45\x3d\x85\xd5\x24\x0d\xb4\x21\x21\x7f\x8e\x04\xbd\xb0\x45\x3d\xa1\x59\xf8\x24\xb2\x84\x5c\xe1\x7a\x6d\x29\xdf\xb1\xfe\xf4\xfd\x01\x43\x6d\x7a\xda\xf9\xf5\xf6\xda\xb4\x86\xbb\xcd\xb6\xec\x0a\x33\x67\x23\x7c\xae\xee\x52\x91\x93\x40\xa6\x17\xca\xec\xfa\x8f\xbb\x51\x26\xf7\x7f\xc2\xdc\xc3\xcb\xca\x8c\x08\x45\xbc\xba\xe0\x69\xb8\xa0\xd5\xf1\xed\x33\xc1\x99\x2d\x2d\xab\x55\xa7\xe0\x4c\xef\xb4\x05\x73\xa0\x10\x33\x5c\x55\x98\x9b\xfa\xc8\xbe\x24\xac\x9a\xa9\x3d\x64\x1a\x2a\xe2\x84\x2a\x8d\x14\xc1\xf5\x87\xc7\x2f\x5f\x5f\xe1\xf2\x03\xcd\x18\x9c\xd5\xed\x86\x07\x3b\xa2\xce\x5c\x9d\x76\xe0\x06\x10\xf3\x5d\x7d\x2d\x89\x5a\x8e\x13\xa1\xf7\xc5\x67\x13\xe6\x16\x53\x84\x37\x65\x32\x59\x9a\xb6\xde\x75\xa1\x5e\xbb\x15\x8f\xab\x0f\xec\x3f\x1e\x2f\x75\x5c\xe9\x0b\x30\x1d\x3a\x6d\x31\x63\x2e\x79\x67\xd9\xdd\xce\xd9\x66\x8a\xcd\x64\x77\x9b\xc1\xb5\x89\xf6\xdd\x39\xc4\x12\x49\x04\x6b\xdf\xd4\x3b\xb9\x71\x4a\x19\x75\x25\x0e\xce\xf8\x38\xff\x97\x4c\x50\xe8\x66\x18\x84\x82\x6b\xa8\x9c\x41\x5b\xc8\x2f\xe0\xb4\x03\xab\x8a\x72\x62\xf3\xf4\xdb\xf9\x82\x38\xc5\xc7\x6f\x03\xd5\x91\x2f\xac\xb2\xbe\xf8\x0d\x49\xb0\x37\xea\x57\xf0\x9b\x7c\x65\xf6\xfb\xcf\xf8\xb5\x67\x87\x59\x71\x62\xe0\x8f\x4c\x7f\xf1\xc1\x47\xa6\xd7\x18\x99\x25\x66\xac\x3e\xe8\x7c\x92\xea\x10\xf2\xaf\x3f\xf6\x3c\x4a\xd1\x7a\x9f\xe6\xff\xca\xbf\xf2\x97\xfc\x4b\x87\xc2\x6c\xc1\xad\x71\x50\x4d\xc2\x28\x42\x07\x50\xf0\x3d\x75\xc3\xf6\x3c\x41\xbc\xc6\x02\xec\xab\xbb\x98\x01\xf2\x1d\x8a\x6c\xb7\x67\xd7\x18\x9e\x77\x6b\xed\x82\x52\x70\x21\x85\x13\x79\xf7\x0d\x6a\x70\xa7\x62\x51\x1d\x99\x63\x35\xca\x62\x86\xae\x82\x58\x4b\xff\x34\x0f\x97\x5e\x87\x02\xe7\x20\x02\x44\x24\xf7\xff\xe5\x57\x94\xa2\x10\x55\x98\x95\x29\x28\xf2\xd3\xeb\x8f\x7c\x59\x72\x7c\x49\x72\x53\x2c\x2a\x24\xbf\xc1\x07\x2d\x04\xe2\x9c\x03\x21\x0e\xd6\x18\xf7\x23\xe3\x9e\xd7\x83\x38\xfe\xe2\x2b\x53\xb7\x74\x39\x01\x93\xcf\x0c\xe7\x0b\x5d\xc1\x3e\x9a\xef\x8a\x1b\xf9\x49\xf8\xd7\x5b\x94\xaf\xe4\x4b\x92\xe1\xf1\x2b\xa0\x70\xf8\x75\xf0\x90\x53\x94\xb2\x2f\xec\x3b\xb3\x0e\xcc\xc6\x1d\xb1\x9c\xe4\x12\x67\xbe\x4c\xf2\xaf\x45\xdb\x7a\xc1\xba\x96\xa5\x15\xe0\x8a\xb9\xf9\x50\xb9\xf4\x2d\xb1\x14\xb1\xba\x9f\xc9\x97\xcb\x29\xc5\xbd\xef\x14\x7b\x8a\xa6\x99\x07\xf6\x39\xff\x77\xa9\x44\x46\xba\xaa\xe8\xbf\xf3\x66\x96\x3b\xce\xac\x66\xc9\xad\x51\x9f\x3c\x4b\xe7\x22\xc8\x6a\x78\x83\x5e\xe0\xb4\x83\x56\x04\xf2\xc3\xec\x25\xe1\xbf\x9b\xbb\xf2\x27\xfc\x33\xdf\x8c\x6a\x71\x93\x1b\xce\x6d\xd2\x4c\x08\x43\x4d\x4d\x82\x49\x73\x21\xa4\xb4\xb8\x9d\x02\x26\xd1\xba\x89\x60\xcf\x29\x21\x24\xad\xa8\x62\x16\x0a\x93\x9a\x21\x27\x4e\xc3\xd3\x86\xc3\x77\x5d\x20\x29\xeb\xe7\xb8\x9f\x01\x90\x74\xb3\x98\x00\x65\x83\x85\x87\xa3\x81\xa7\x40\x6a\x53\x73\x6c\x22\x9d\x3d\x3f\x3f\x34\xb5\xe9\x04\x49\xe6\x9c\x24\x91\x65\xe5\xfc\xf5\x01\x84\xbd\x9c\xef\x1b\x47\xcd\xb8\xca\xb4\xb1\xa8\x3e\x20\x74\x28\x16\x94\xfd\xa0\x04\x36\x5d\x61\xc6\x95\xcf\x12\xd4\x59\x26\x2d\x2e\xf6\xf1\xb6\x9a\xa3\x2a\xc3\x3c\x12\x3b\xe6\x22\x48\x09\x22\x9c\x50\xb5\x99\x28\x71\x27\x45\xa5\x30\x07\x6b\x1e\xd1\x8d\x96\xbc\x63\x7a\x3d\x04\x5f\x24\x3e\x5c\xf5\x81\x72\x2a\xf7\x40\xda\x19\xe7\xcc\xf8\x56\x87\xe3\x9f\xc7\x70\x85\x00\x0f\x9d\x02\xed\x35\xee\x00\x6d\xbd\xbc\x4f\xbb\xae\x96\x6a\xbd\x98\x2a\x24\xb3\x5c\xce\x17\xb7\x5a\x46\xe6\x19\x77\xd7\x0e\x14\xd9\xb2\x37\x05\x36\x65\x2d\x72\xe6\x12\x26\x8a\xf4\x7a\xf7\x95\x2f\x9f\x8e\x73\x66\x2c\x11\xc3\xdb\x82\x79\x53\x3f\x09\xc2\x54\x0a\x90\x73\x7c\x4c\x81\x88\x4d\x4f\xb5\x72\xde\x05\xc4\x61\xdc\x8e\x02\x27\x1b\x66\x17\x12\x57\xe2\x0d\x1c\x4a\xba\x2f\x28\xc7\xde\x96\xcc\x57\xc5\x84\x7b\xd6\xc2\x17\x13\x3f\xef\x68\xc7\x17\x90\x86\x46\x25\x78\x25\x61\x16\x08\x44\xbe\xf3\x07\xef\x7f\xf8\xd0\xf3\x34\x78\xeb\xf8\xfb\x1f\x3f\x90\x94\xf3\xe0\xfd\x4f\x1f\x60\x16\x1f\x15\x9e\x5f\xb3\x55\x68\x5c\x03\x0a\x1a\xf4\xae\xab\x3e\xd5\xed\x1e\x1b\xb0\x7e\x7a\xfe\xf0\x59\xa6\xe2\xf3\x10\x2f\x71\x77\x07\x37\x59\xe1\xa5\xcb\x8a\x57\x78\xb3\xdf\xce\x75\x8c\xbd\x70\x00\xfb\xe5\x8a\x1b\x06\xe6\x05\x37\xf9\xbb\xfb\xcd\xc3\xad\x4b\x1e\x2c\x75\xde\x84\xbb\x7f\x92\x5f\xcf\x30\x10\x1e\xfa\xef\xae\xa5\x36\x30\xa8\x5f\xc9\x35\x62\x96\x85\x9d\x69\xff\xb6\x1a\x66\x31\x57\xb2\x58\x09\xe8\x72\x9c\xa5\xbd\x88\x41\xd4\x23\x15\x39\x06\xde\x55\x40\x8c\xc1\xbd\xc3\xcf\x24\x33\xad\x4c\x80\xa6\x6a\x53\x56\xeb\xa9\xe4\x24\xc9\x17\x5c\x2b\xa6\x64\x1b\xfa\x3a\x34\x49\x97\x5c\x1d\xf6\xf3\x2b\x6b\x11\x79\x82\xe4\xcc\x6b\x57\xcf\x35\x61\xbc\x59\xc2\xf8\x0a\xfb\x34\x0f\x55\x7d\x12\x05\xfa\x2b\x9b\xd8\xb5\x1a\xe9\xe5\x02\x1f\x96\x2c\xb7\x31\xd5\x81\xdc\xd1\x66\x64\x19\xd2\x44\xbb\x9f\x43\x52\x3c\x29\x35\xe0\xd8\x76\x27\x87\x8f\x28\x38\x29\x02\xad\x9b\xb9\xf9\xa1\xab\xa0\x4f\xcc\x92\x7d\xad\x64\x44\x44\x46\x7c\x0d\x51\x8d\x8d\x07\xaf\x4c\x45\x27\x58\xc1\xcd\x19\x9d\xd2\x70\xb5\x56\x25\x2c\x08\xbf\xd2\x3f\x87\xd7\xc4\x7f\xc4\xfa\xc7\xad\x50\xf7\xe9\x9f\x25\xc9\xbe\x68\x8b\xce\xef\xdb\x71\xfe\xb2\xdd\xb4\x7e\x5f\xc7\xaf\x14\x40\x8c\x7f\x0f\xca\x44\x36\x93\x6c\x4f\xdb\xba\x7a\x41\xb8\xf1\xce\x23\x90\x13\x83\x91\x8c\xc4\x3b\x2a\xce\x74\x17\x23\xa4\x83\xb8\x1e\x61\x17\xcf\xc7\xb5\xa8\x8f\x11\x40\x9d\xf5\x71\x12\x6c\xca\xcc\x2c\x52\x46\x68\x56\x66\x99\x3d\x3c\x94\xe7\x83\xd5\xc0\xd2\xac\x35\x1f\x36\x2c\x4f\x37\xed\x2d\xcc\xd2\xd3\x7b\x4e\xb0\x44\x09\xe2\x15\xb5\x2b\x88\xf4\xc4\x4b\x43\x75\x09\x4e\x51\xe7\x94\x7e\x1a\xce\x06\x6a\xc0\xc3\x4d\x9b\x3b\x2d\x0c\x61\x88\x78\x23\x28\x72\x2e\x6c\x97\xab\x40\xfe\x5a\x7e\x96\x54\x8b\x7b\xb4\x4f\xe1\x1e\x96\x36\xa8\x2d\x3c\xcd\xf5\x4b\xf3\x75\x8b\x73\x8a\xe3\x0b\xfc\xd6\x4e\x28\x0c\xf1\xe6\xae\xea\xf7\x1b\xec\x01\x38\x79\x93\x1f\xd7\x72\x66\x64\x40\x7c\xfa\xbf\x12\x7b\x81\xb5\x15\x30\x72\xe4\x9a\x2b\x00\xe7\x2e\xaa\x65\x01\x4f\xd0\x42\x59\xf3\x9a\x96\x64\x30\x7a\x02\xe1\xf0\x01\x56\x3f\xbb\xd6\x86\xd1\x79\x98\x6d\xb9\xea\xcd\x94\x91\x60\x6a\x51\x0d\x37\x3c\x75\x72\x34\xcf\xc8\x15\x9b\x43\xff\x73\xb8\x19\x13\x07\x7b\x8c\x36\x1e\xf3\x8e\x5c\x2a\x37\xfb\x27\xfc\x10\x9e\xa6\xa8\x4c\xe4\xf5\x50\xed\x55\x10\x2c\x68\x9b\x54\xa6\x38\x1c\x38\x6d\x2b\x6a\x14\xbb\x78\x69\x2a\xa4\xf0\xd6\x27\x7c\x13\xca\x98\x27\xbe\x89\x88\xf9\xe8\x5d\xd3\x7f\x72\xe9\x5a\x3f\x6a\xd2\xcd\xda\x9a\x91\xb4\x7f\xac\x7a\x2a\xfd\xff\x7f\x30\x1a\x25\x69\x7f\x1e\xb2\x4b\xd0\xa7\xff\x19\x41\xa5\x9a\xb3\xcf\x13\x83\x29\x08\xaa\x32\x57\xbd\x52\xf3\x75\x63\x25\x52\x11\xd4\x38\x6f\x7c\xc9\xd0\x73\xa5\x70\x26\xa9\xd7\xa4\xc5\xf3\x5a\x57\x6c\xba\xe3\x95\x59\x84\x1a\x48\xb1\x9d\x6f\x89\xa9\xc6\xe5\x5c\x8d\xaa\x75\x8b\x5b\x61\xe2\xb5\x2d\x55\x70\xd8\x1e\x5a\x1f\x76\xa8\x46\xbf\x9c\xc9\x7e\xba\x2e\x85\x2d\xf7\xde\x7b\x9a\xb1\x48\x85\x60\x91\x0a\x58\x96\x5b\xbe\x45\x33\x87\x55\x1a\xdd\x08\x63\x21\xb0\xdd\xd1\x06\xce\x10\x8f\x92\xd1\x8b\x29\x29\xe9\x4a\x50\x2d\x0c\xbe\x87\x6a\x7e\x38\xdc\x5d\xb7\xad\x50\xb9\x77\xc0\x0b\x92\x4f\x9f\x36\x35\x87\x81\xb1\xa5\x65\xa6\x89\x83\x4d\x4e\x85\x6c\x0a\x8d\x56\x84\xa3\x56\xee\xd3\xc3\x85\xa4\x1e\xa2\x09\x4d\x97\x3c\x26\x37\x5e\x79\x81\x81\x29\x30\x85\x78\xd5\x31\xc8\x9e\xd0\x73\x83\xdc\x69\x5d\x37\x05\x28\xbd\x05\xe1\x41\x1f\xb5\xdd\xce\x69\xca\xe7\xaa\x88\x10\x9b\x64\x02\xc0\xaf\xb4\x0b\x26\x81\xa7\x55\x3b\x59\x36\x1e\x11\x6d\x49\x0b\xe6\x8d\x72\x09\x52\x78\x4f\x60\x54\x23\xd4\xa9\x7b\xbf\x1e\x2f\xea\xbe\x16\x55\x9f\xb0\xae\x49\xec\x98\x34\x82\xfb\x85\x61\xc6\xc4\xa9\x4f\x98\xeb\x07\x7d\x4a\x23\x66\x33\x56\xfe\x9d\x85\xfd\xf9\x3e\x1e\x64\x25\xce\xac\xfc\x3f\xcc\x70\x71\x21\xb4\xaa\xb9\xac\x10\xad\x11\x95\x6b\x8a\x8f\x97\x70\xe4\x6e\xe7\x3d\xbc\xa5\xea\x1e\x6d\xb7\x8f\xca\xf2\xe1\xc4\xa8\x83\x1d\xdd\x0d\x3b\x71\xc6\x51\xe5\x39\x59\xfe\x41\x4d\x81\x78\x34\x8d\x3b\x06\x88\xe6\xe9\x37\xde\xd9\x2a\x3e\x4f\xc9\x4b\x8f\x37\xec\xdd\xc1\xdc\xf5\xcc\xd6\xda\x1d\xa1\xdd\x1d\xf0\xf3\x12\x93\x5b\x5f\xe1\x48\x12\xc1\x32\xc8\x4a\x2e\xa7\xde\xd9\x3d\xc3\x83\xca\x24\xcc\x92\xb6\x07\x50\x22\xa1\xba\x0e\x22\x24\x10\xe8\x3c\x52\x9d\x50\x37\x01\x38\x25\xd2\xf9\xb6\xff\x23\xc5\xba\xa9\xc6\xa7\x48\xe0\x3e\xc1\x6e\x2a\xde\xa0\xa5\xcd\x84\xbe\x71\x99\x40\xbe\x7c\x56\x10\xdc\x42\xf7\xce\xe0\xb7\x07\x5b\xb7\xed\x47\x09\xf0\xb1\xc0\xa7\xcf\x59\xd5\x83\x65\x72\x40\xb5\x57\x71\x2e\x89\x4b\xf5\x32\x8c\x6b\xf8\x9c\x13\x26\xba\x58\xf2\x1c\x77\xf3\xbf\x89\x29\xed\x14\xbf\xf2\xff\xc1\x84\xe1\x40\xf4\x26\xc0\xb9\x05\x74\xb9\xe4\xfb\x00\x2e\x57\x9d\xb6\x83\xa6\xd4\xc7\x7c\xdc\x96\x7a\x35\xf3\x01\xc5\x97\xf9\xe9\x4f\xf9\xe7\xc7\x97\x06\x67\xbe\x76\x77\xed\x88\x4f\x32\xf4\xf3\xdc\x6e\x2e\x8d\xc1\xdc\xc1\x9d\xbf\xad\x14\x1f\x33\xb2\x3b\x51\x23\xde\xc8\xb8\xb1\xc4\x37\x9b\x38\x29\xbe\x26\x45\x74\xe7\x22\xb8\xa9\xa2\x08\xe5\x15\xce\x39\x7d\xd0\x3d\xc4\xc4\xc4\x9d\x45\x96\x36\x7a\x39\xa6\xd5\xbb\x57\xe2\xb2\x2f\x0a\x6e\xe1\x94\xce\x1e\xa7\xd2\xc9\x49\xb3\xb9\x21\xfa\x60\x1b\xe2\xf3\x6f\x5d\x45\x5e\x30\xbd\xc9\xb5\x15\x60\x3a\x38\xf9\x4c\x00\x0d\x29\xe7\xc4\x3f\xc4\x7b\x4c\x8a\x15\xd1\xb5\xaf\x21\x30\xbc\x88\xc7\xc7\xa2\x58\x7e\x74\x3d\x62\xf6\x54\x75\x03\x2e\x5c\x8d\xd1\xce\x1e\xdf\xb4\x80\xe6\x3f\x50\x33\x8f\x20\x63\x48\xcc\x39\x0c\x42\xd6\x5f\x7d\x1d\xe0\x03\x4e\x70\xec\xd4\xf6\xa9\x2e\xf7\x44\x7d\x3c\x17\x77\xd5\xfb\x63\x5c\x2f\xad\x78\x1c\xb8\x1e\xac\x3b\x99\x4f\x16\x38\x6a\xc4\x7f\xe0\x8b\x8e\xb8\x71\x77\xed\x2f\x92\xf6\x53\x2d\x33\x13\x72\x4a\xba\xe2\x00\x17\x42\x73\x7f\xa3\x2a\x64\x55\xc2\x87\xe0\x86\x23\x9e\xb2\x26\x4a\xfd\x9c\x8f\xe6\x23\xc6\x96\xdc\xd2\x73\x92\xd7\xbd\x8e\x40\x23\x42\x48\xb0\x94\xd4\x07\x84\x05\xee\x3a\x36\xfb\x3c\x7c\x0e\x9a\x75\x2b\xda\x99\xc9\xb5\x21\x49\xd4\xcd\x72\xb3\x87\xe3\x21\x33\x23\x16\x86\x8f\x94\x07\x1f\x39\x63\xa0\xdc\x4d\x0a\x3c\xbb\x3c\x0f\x6c\x23\xcc\x26\x7d\xc5\x89\xb5\x20\xe0\xf5\xa8\x69\x7f\x65\xea\xc8\x7b\xc2\x38\x17\x01\x96\x4d\xd9\x01\xa8\x29\xab\x1d\x47\xd2\x63\x4f\xd0\x6b\xd9\x6d\x85\xe7\xdf\xd3\xea\x8f\x77\xb5\x2a\x0e\x3c\x53\xcd\x9a\x5b\x99\xde\x41\xc6\xa2\xe5\xb8\xaa\xf7\xb4\xf6\x93\xb5\x16\x6e\x59\x1f\xab\x6a\x17\x34\x11\x77\x3f\x70\xb3\x07\xf3\x8c\x3d\x74\x26\x38\x9a\xde\x2e\xb3\xeb\xa8\x07\x98\x78\xb0\x13\x06\xde\x1f\xb6\x9b\xdd\x73\xf5\x66\xbc\x40\xcc\x72\x87\x60\xc0\xb0\xde\x39\x18\xb6\x5c\xcc\x03\xce\x0d\x47\x47\x63\xc9\x13\x55\x89\x03\x65\xe2\x96\xe2\xef\xa7\xba\xae\x59\x81\xee\x70\xf7\x62\x1f\xb9\x7c\xc2\x37\xce\x81\xb2\x03\x72\x48\xac\xb9\xb8\x9d\xf3\x78\x4e\x82\xe4\xc3\x05\x12\x67\xef\xa8\xae\xd8\xd9\x3b\xe8\xa0\x50\xd1\xa1\x7a\x4e\x26\xeb\x50\xca\x0b\xa7\x96\xaf\xa1\xd7\xb8\x70\x3c\xd7\xd8\x48\x1a\xc8\x3a\xbd\xf1\xab\xb9\x37\xeb\x36\x88\xcc\x21\x1e\xe8\xd8\x8b\xc2\x8e\xcc\xe2\xb1\xde\x88\x78\xa2\x78\x51\x61\x25\x91\x62\x6c\x6f\x31\x51\x06\xaa\xe2\x76\x4f\x5b\xe7\xa6\xfe\x08\x03\x0f\x11\xa6\x84\x2e\x3d\xbf\xbc\x82\x55\x87\x16\x00\xed\xa3\x2b\xe6\xbb\xf9\x9f\xd7\x55\x83\xc8\x7d\x1c\x41\x54\x19\xd1\x72\xc9\x17\x47\xea\x46\x83\x9b\xdd\x54\xe6\xce\xdb\x94\x1b\x61\x5b\xe1\xfd\x22\x93\x1e\xc4\xba\x93\x23\x4a\x28\xaf\xb4\x7e\x57\x2d\x49\x26\x9e\xf1\x69\x4d\xd7\x20\xa6\x77\x6e\x06\xe1\x3b\x1d\x50\xdc\x48\xe0\x09\xc2\x46\xa0\x00\x2d\x8a\x92\xd0\xa8\xa9\x7b\xf0\x08\x3d\x29\xe8\x94\x14\x6c\x18\xbe\x4b\x06\x06\x7f\x15\x2f\xd2\x9a\xd9\x75\xae\x2e\x10\x77\x39\xe7\x1f\xec\x43\x18\x5c\x4e\x9a\xbe\x47\x14\x4e\xab\x9a\x79\x7d\xdc\x94\xf0\x09\x90\x7e\xd7\x8a\x5f\xdf\x3b\xfd\x1c\x03\x89\xb6\xc4\x3d\x79\x25\x5f\x63\x90\x9d\x46\xad\x71\xf1\x6b\xc6\x20\x8b\xb6\x64\xfd\xe7\x39\xfd\x1b\x0b\xd1\x2e\xc2\xb5\x49\xd2\x20\xce\x1d\xdf\x94\x96\xc3\x51\xce\x20\x74\x57\x9b\x6b\xb9\xf5\xce\x16\x17\xa8\x7b\x62\xc0\x62\x6f\x52\x09\x8a\xc8\x8e\x4c\xa8\x40\xef\x38\xc1\x7d\x1f\xa1\x9e\x42\xeb\x94\x5e\x8a\x0c\x6f\xb9\xa5\x7d\x82\xb1\xdd\xfa\xf5\x5a\x64\x10\x4c\x03\x94\x5b\x89\xcb\x75\xc4\x5b\x0b\xeb\x85\x76\xfc\x65\x1b\xd0\x4e\x62\x71\xf1\xcd\x14\x22\x6a\x04\x92\x30\x10\x91\x61\x25\x98\x70\xe0\x4c\x6a\x57\x4d\x41\x6c\x40\xd8\xb8\x47\xea\x88\xcb\x08\x12\x17\xdc\x11\x84\x3f\x9c\x03\x90\x5d\x79\x49\xf7\x19\x05\xf7\xba\xc2\xab\x68\x3d\x04\x1c\x25\x0a\x3d\x8e\x8e\x6a\x84\x2d\xb1\x4e\x32\xa7\x30\xe3\x64\x60\x04\x64\x5c\xb1\xcf\x5d\xb0\xba\x79\x9b\x26\xe1\x48\xa4\xe8\xae\x5a\x15\x5d\x69\xe1\x35\x94\xd3\xf0\x75\x02\x70\x94\xf0\xfa\x64\xb1\x21\xe5\x5b\xab\x20\xce\x48\x20\x1f\xd9\x9b\x87\xe6\x9b\x65\x1c\xb3\x37\xb0\xb4\x58\x0a\x1b\xe3\xcb\x5b\xc4\x5c\xf6\x3b\xe6\x37\xc2\xbc\xac\x1d\x0c\xf9\xbb\x7f\xbe\x3c\x7f\x7b\x94\x7f\x7e\x74\x73\x73\xf3\x88\x8b\x3f\xda\x77\x1b\xbe\xe6\x54\x72\xf8\x8e\xff\x7e\xf6\xe6\x28\xaf\x86\xe5\xf7\x33\x52\xd4\xc1\x86\xfc\xea\x56\xe7\x42\x98\xd3\x99\xba\x58\x74\xfc\xfb\xd9\x93\xae\x18\x0d\xee\x1c\x46\x7d\x0a\x37\x48\x9e\x3d\xf3\x59\xd0\xc9\x14\xdf\x05\xaf\x1c\x56\xcb\xae\xc2\x91\x3f\x3e\x82\x8c\x0d\xe9\x04\x53\xd7\xb6\x53\x90\x9a\xda\xd1\x6e\xbc\x5e\x6a\x70\xe9\x04\xc4\x4e\xb8\x4e\x70\xb6\xe5\x32\x31\x71\x6e\x5b\xe1\x08\x5d\xfd\xba\xdd\x6f\xca\x98\x63\x12\xce\x74\x22\xaa\xf2\x97\xb4\x30\xfc\xe9\x10\x89\xf6\x69\xfe\xcf\x6c\x29\xe2\x89\x12\xda\xe2\x2c\xa3\x2d\x00\xcf\xd2\xc2\x08\x99\x16\x08\xc6\x34\x00\x09\x05\x67\x82\xb9\xcf\x73\xc2\xf9\xa8\x12\xd5\xdf\xd8\x57\x60\xc8\xb7\x4e\x9f\x03\xad\x49\x75\xe3\x22\xb1\x9d\x6e\x3a\xdb\xf0\x22\x3e\x7a\x12\xa1\xba\x58\x99\x11\x6b\x0a\x0f\xb9\x38\x13\x4e\xa2\x28\xe0\x8f\x00\x65\x2e\x12\x7a\x37\xfa\xb5\x0b\xc6\x94\x6b\x8c\xc0\x2a\xcd\xf0\x86\xde\xd3\x6a\xc0\xad\xe2\xa9\xb5\x28\x1a\xb5\x9b\x35\xbf\x7a\x8c\xbf\xe9\x0e\x27\x92\x89\xdc\xc1\x88\xb8\x07\x58\x47\x2c\x73\xdd\xa4\xbb\x58\x2a\x6e\x29\x6f\xf2\xa2\x8c\xf2\xa6\xd1\x76\xad\x80\x49\x1b\xa3\x5d\x52\xa5\xe3\xb1\xcc\xef\x5b\x38\x24\x10\x88\x67\xca\x5c\x47\x69\xd1\x3e\x70\x91\xed\xd4\xa5\xc5\xe2\x95\xad\x52\xf0\xdd\x78\x89\x32\x42\x64\x1d\x85\x1c\x95\x05\xb5\xf8\x1c\x9b\x41\x70\xff\x92\x7d\xcd\xcd\x2f\x7b\x74\xfb\x34\x14\xa1\xa5\x56\xbb\x49\x24\x37\x9e\x92\xcc\x34\x9a\x7e\xba\xb2\x49\x56\x93\x87\x3e\x4e\xe4\x2b\xc4\xd6\x6e\xd3\xde\xda\x05\xdd\x53\xfc\xd2\xa8\x1e\xe1\xc8\x3c\x98\x0e\xca\x43\x06\xc6\x97\x76\x1e\x57\xf7\x97\x20\xbe\xa3\x8a\xb8\x0d\xeb\xbb\x28\x4a\x30\xa1\x1a\x13\x19\xbc\x27\xba\x37\x71\xc7\xd3\x41\xa5\xb7\x51\x4f\x5d\x0b\x07\x6e\xa3\xc6\x45\xc3\x1b\xa9\x41\xd1\x2f\xb8\x91\x1a\x23\x69\x7c\xdf\xd4\x0f\xf5\x0b\xae\x9c\x4e\x0d\x7a\x2c\xd7\x4e\x21\x7e\xa2\xc0\x94\x74\x5b\x86\x63\xfb\x82\xab\xa7\x89\x66\xfb\x25\x02\xee\x54\x4f\x3c\x4a\x02\xe4\xde\x67\xf1\x2d\xeb\xeb\xeb\xd9\xa2\x6b\x6f\x7a\xbe\xdf\x89\xd0\xf4\xcc\x65\xf9\x77\x7e\x89\xdf\x02\xc2\xc7\xd7\x20\x0a\xf9\x90\x44\xf5\x92\x79\xaa\x27\x62\x92\x88\xb3\xc3\x34\x04\xf7\x29\xe5\xc8\x39\xe2\x5b\xd2\xc4\x8e\x2d\x67\x26\x45\x68\xa3\xbb\x99\xf3\x17\x6e\xa6\xc2\xfa\xcc\xc6\x52\x14\xba\xe4\x14\x05\xe3\x4f\x43\xb8\xed\x4a\x70\xd0\x92\x93\x56\x11\x5f\xbd\xe5\x08\x84\x65\x70\x04\x46\xc4\x50\x43\x3e\xf5\x20\xe1\x0d\x34\x82\x30\x5c\x7a\x08\x45\x10\x16\xfd\xf3\xd7\x6f\xe5\x27\xbc\xae\x35\x4a\x0c\xdc\xae\xf9\xc0\x37\x33\x5f\xee\xd9\x94\x4f\xb7\xe5\x89\xc7\xbc\x98\x39\xec\x91\x22\xfc\x72\x10\x65\x57\x5c\xe3\x18\x88\xff\xbb\x54\x92\x81\x7d\xb1\x8b\xae\x7a\x94\x16\x23\xe4\x08\xaa\x2f\xf1\xe1\xd2\xf5\x18\x87\xff\xb9\xb4\x02\x6e\x07\x4f\x83\x91\x7b\x8c\xd8\xf9\x36\xd1\xdd\x83\x3e\xef\x6b\xb6\x9d\x2a\x81\x26\x0d\x82\x3a\x7c\xe0\x53\xd0\x0e\x9e\xed\x31\x08\xda\xa1\xdd\x25\x53\xda\xac\x1b\xb9\xe7\x66\x79\x50\x5b\x2d\x52\x55\x54\xc6\x47\x3f\x35\x6b\xb0\xbf\x0f\x40\xf9\xd8\xfd\x97\xe1\x35\x03\x16\x05\xf8\xda\x3d\x9b\x83\xfa\xf5\x2c\x9d\x08\x67\xce\x54\x9c\xe5\xf8\xed\xa0\x4c\x32\x64\x72\x99\x6f\xcb\x40\x38\x14\x02\x0a\xb7\x95\xb3\xa2\xfb\xc8\x81\xe1\xe1\x14\x65\x15\xdc\x74\x1a\x5d\x88\xff\x87\x33\xa6\x0f\x12\x5c\xc8\xd7\xa8\xc1\xd8\x91\x19\xa5\x61\x0f\x30\x66\xea\x0a\xb0\x34\x2b\x22\xd9\x1b\xf9\x92\xa7\x95\x52\xca\x18\x5f\xb7\xa6\xbc\x47\xe9\xbc\x05\xf0\x0e\xd1\x7f\xae\xfe\xf7\xff\xfc\x5f\x6c\x2e\x6d\x69\xb7\x44\x6c\x04\x0d\x39\xe8\xe7\xdd\x2e\x47\xf9\x67\x2d\x1e\x81\x47\x07\x1d\x11\xf4\xe7\x1a\x6e\x80\xbe\x46\x34\xca\xb1\xe5\x8d\xbe\xd9\x35\x2c\x21\x72\x28\x89\x9e\xcc\x71\xf4\x98\xd6\x61\x44\x35\xd7\x3d\xc2\x85\x3c\xb3\xc9\xc5\xa4\x49\xcc\x21\x25\xba\xe9\x2d\x25\x7b\xdf\x76\xab\x0f\x3e\x30\xa6\x9b\x88\x28\x28\x26\x34\x43\x0f\x63\x08\x7b\xc9\xe4\x37\x7e\x59\x48\x34\x6d\x89\xc2\x0b\x57\x26\xbb\x8d\x39\xb3\x1b\x33\x12\x29\x4f\x8f\xa4\xa3\xb7\xc4\x70\x8f\xc6\x8c\x90\x26\xaf\x95\x99\x9e\x95\xf2\x2d\x0e\xfe\xe0\x60\x86\xfc\xce\x12\xd3\x89\x9c\x72\xbd\x46\x02\x2d\x40\x24\x20\x50\x27\x6e\xaf\xf0\xff\x0c\xe1\xd1\xd4\x52\xc6\xa9\xfa\xa5\xe9\x49\x08\xb6\x28\x14\x7c\x70\xc3\x07\xa1\x19\xa3\xf8\xee\x5c\x39\xb0\x32\x71\x4c\x3e\x0a\xd8\x09\x14\x22\xf5\x2e\xe8\xe8\xb6\xe6\xc3\x0d\x8e\x46\x34\xc0\x0f\x0c\xce\xec\x52\xd4\x88\x10\x87\xb9\x45\xb8\xc8\x26\xf2\x71\xec\x67\xbe\x99\x80\xb6\xd7\x72\x86\xee\x8b\xe1\xcd\x93\x05\x51\xf9\x2f\x02\xcf\x87\x04\x75\xdf\x07\xbb\x39\xca\xf8\xe4\x7c\x43\x92\xfc\x26\xd2\xc7\x50\x11\xcb\x5c\xbf\x1c\xb8\xaa\x38\x0e\xad\xfa\xf5\x97\x15\xc7\x75\xdc\x7d\x5d\xf1\xef\x3d\xbe\x9d\x0e\x9b\x16\x1a\x9d\x92\xf8\x69\x2e\x6b\x2a\x90\xda\xdf\x73\x98\x1a\x83\x06\xa2\x4c\x84\x02\x57\xd3\x97\x1a\xed\xf5\x8c\x96\x28\xf5\x1f\x3b\xa2\x8d\x03\x8a\xa6\xbd\x1e\x85\xf8\x8a\x3a\xfd\x75\xa1\xbe\x0e\x9e\x75\x46\xbc\x22\x55\xc2\x46\x57\xf5\x31\xc0\x3b\x8b\xc4\x17\xf7\xc3\x0e\x3b\xb3\x5b\x70\x76\xa6\x96\x78\xb9\xb2\x2f\xb6\xe4\xfb\xef\xed\x1f\x38\x9c\xb8\xeb\x02\x7f\xda\x4b\xe6\x31\xce\x83\x3f\xec\xe4\x9d\x25\xc2\x7d\x30\x3e\xdf\xfe\x47\x2e\xf5\x4f\x1f\x00\xb0\x92\x76\x63\xb6\x29\xec\x9a\x86\x3f\xaf\xf1\xb3\x90\x6f\xf8\x12\x2d\xc0\x33\x5a\x8f\xb9\x3d\x1e\xc7\x1a\xd2\x4e\x73\x80\x12\xe1\xda\x33\x3d\xef\xb2\x78\x3e\x49\xba\x67\x79\xf0\xa0\xd5\x13\x3d\x0f\x24\xbf\x21\x8f\x4c\xe6\xa4\xe5\xe3\x36\x62\x87\x75\x4b\x75\x67\x30\x67\xf8\x70\xe9\x84\xb5\x65\x85\xfb\xdd\x27\xf2\xe5\x72\x54\x19\xd2\xa0\xc0\xbe\x13\x12\xf0\x15\x97\x4c\x82\x54\xdd\xed\x14\xd7\x7c\xc5\x95\x26\xe5\x76\xc7\x53\x58\xe4\xce\x1c\x47\xd3\x24\x80\x2a\x0f\x6a\xaf\x20\xc2\xfe\x9c\xd6\x25\x8f\x5f\xe8\xae\xf9\xb6\xbd\xc9\x64\xcb\x9c\xc1\x6f\x5e\x02\x94\x6a\x4a\xdc\x25\x49\x63\x21\x42\x23\xc5\xe4\x72\x0d\x5f\x63\x89\x8c\xf3\x93\x3b\xdf\xd8\x31\xdc\x6d\x6f\x8b\x37\xcc\x12\x22\x6e\x55\xe0\x9a\x2d\x0b\xde\x21\x71\xcc\xb4\x56\x48\x98\xbe\x59\x11\x15\xa3\x76\x43\x88\x2f\x69\x98\xfb\x39\x6a\xee\xc8\x0c\x50\x88\x3f\xa7\x96\x31\x89\xb1\x25\xad\xc8\x03\x3f\xae\x1f\xee\xf5\x28\xdf\x8f\x10\xe2\x4b\xfa\xc1\xad\xc0\x13\x19\x93\x78\x57\x7f\x48\x7b\xd3\x70\x7a\xd1\x49\x7b\xda\x45\x7f\xe9\xf9\x2a\xd8\xa7\xe1\xdd\x51\x26\x72\x07\xdb\x7b\xc7\x1b\xa6\xe4\xc8\x29\xec\x84\x68\x20\x4e\x38\x93\x41\x76\xee\x5f\xe2\x70\xf9\xe6\x92\x0e\x34\x70\xaf\xf1\x60\x93\xbb\x8e\xf4\xcb\x8b\x72\x90\xad\xce\x54\x9e\x93\xcc\xfb\x37\x5c\x81\xb3\xf0\x32\x22\xd7\x85\x5b\x06\x04\x3b\x9b\xc9\x52\x82\xaf\xbb\x35\xce\xac\x2e\x68\x75\x5c\x99\x63\xd5\x80\x72\x2c\x7a\x0c\x67\xbc\x33\x94\xca\x02\x6b\x28\x33\xe5\x23\x93\x55\xdd\xd9\x3f\xa0\xb6\xc5\x6d\xe4\x5d\x03\x27\xda\x6d\xfc\xf6\xe6\x1d\x06\x94\x71\x57\xfc\xae\x2d\x11\xcd\x1d\xc1\x1c\xb4\x9a\xcc\xc2\xa5\x3e\x26\x10\x4f\x76\xab\x0e\xde\xf0\x36\xd7\xcc\x2c\x02\x52\x40\x85\x3f\xbb\x51\xba\xe7\xe5\x3c\x37\xc0\xf1\x2e\x55\xf4\xf0\x2e\xa6\xf0\x15\x1d\x00\xdb\xb8\xbb\x07\x60\x0b\x72\x07\x8a\xba\x11\xb0\x80\xbb\x3a\xa2\xef\xc2\x7d\x79\x47\xc0\x37\xbe\xb0\x23\x47\xd6\x0b\x8d\x06\x5c\x96\x93\xeb\xff\xae\xfe\x25\x6a\x0e\x88\x33\x0a\x37\x9d\x10\x7c\xf4\x68\xb1\x23\xfa\xc0\xcf\xcc\xaa\x85\x47\x83\xfa\xbd\xe9\x76\xe6\xab\x6a\x68\x0a\xa1\x6b\x36\x43\xe8\x1b\x17\x07\xa4\x60\xb7\xac\xa1\xbb\x55\x91\x84\x07\x17\xc7\xc3\xf0\x2e\x31\xa2\x7c\xe1\x8c\x56\x42\x90\xbf\x07\xda\x3f\x1c\x78\x18\x5d\xde\x2c\x94\x73\xaa\x3e\x7a\x43\x7b\x1c\x0d\xfa\xce\x48\xdc\x71\x04\xf2\x34\x14\x7d\x2f\xc1\x99\x56\x26\xcb\xd9\xb3\x70\x99\xba\x02\x31\x63\xbd\x25\x1c\x6c\xf1\x42\xe7\x92\xa3\xb0\xb6\x4d\x2d\x4e\x27\x67\xf2\x45\x63\xcf\xd8\x56\xa2\x86\x12\x0e\x70\xe6\x6f\x72\x0e\xed\x00\x29\xe2\x8a\xff\xff\x9c\x3f\x28\x33\x3f\x5e\xd8\x03\xd9\x2c\xa4\xa2\x81\x7c\x07\xf9\x41\xac\x68\x78\x9f\x77\x16\xfd\xda\xd7\x80\xbe\xc1\xea\xb8\x0f\xfa\xaa\x3d\x43\xa5\xfb\x7e\xaa\xc5\x39\x9f\x65\xe6\x7a\x92\xeb\x1e\x39\x66\xb6\xc1\x41\x43\x4b\x0e\x1a\x2a\xcf\x46\x1e\x05\x09\xd1\x2c\x84\x19\x3b\x17\x9e\x31\x4a\x8e\xb7\x42\x9f\x8e\x70\x20\x71\x12\xc7\x00\x89\x12\x8a\xe5\xa8\x15\xb3\x39\x87\x69\xe6\xd5\xe6\x53\xcc\xbf\x2d\xaa\x3d\x0e\xd1\x17\x66\x89\x53\x60\x94\xa4\x4f\xd3\xc5\x23\x11\x33\x68\x98\xb6\x69\x57\x1c\x22\xde\x1e\x22\x0d\x86\xa7\xd2\x74\x5c\xa7\x39\x38\x47\x55\xe0\xfe\x5f\x98\x82\xa3\xa8\xa1\xe8\xe3\xd2\x58\x94\x61\x82\xde\x9d\x1e\x01\x92\x76\x5d\x2c\xd7\x18\xff\x6c\x8a\x90\x4c\x49\x76\xc4\xa4\xaf\x74\x4f\x40\xca\xf3\x81\xb9\x3d\x16\x38\x09\xc3\xcf\x34\xe3\x6d\xc6\x20\x97\x2f\x0c\x34\x73\x8d\x62\xd8\x6a\xec\x21\xbe\x3d\xe0\x22\x16\xe6\xe7\x58\x83\xfd\x9d\x85\x82\x7d\x8d\x6f\xde\x6b\x94\x44\x2d\x29\x32\xc8\x1d\x1b\x9c\xaf\x59\xb7\x4a\xf5\xd1\x28\xbc\xf6\xd6\x7b\xc9\x81\xe5\x1d\x73\xe2\x70\x44\xf2\x45\x75\x24\xbd\xf4\x10\xae\x9a\xaf\xef\x2a\xec\x68\x1c\xba\x84\x7a\x93\x74\x32\x62\x74\x06\x72\x4f\x0d\x49\x17\x27\xab\xf8\x8a\x4e\xf2\x7b\xa6\xab\xa5\x7b\x85\xf1\x94\xa3\xe3\x76\x0b\x0e\x92\xc2\xbb\x5a\xb5\xb4\x0b\x4e\x91\x2d\x6e\xba\xf8\x5d\x3d\x43\x87\x58\x0b\x9f\xaa\xfe\x50\xdf\xba\xaa\xbf\x6d\x96\x73\x3c\xc6\xd9\xaf\xf5\x6c\xf1\x5d\x25\xe6\xed\x87\x33\x4a\x7b\x5c\x68\xfc\xab\x0a\xa7\x70\xfd\x43\x89\xa2\xfe\xdd\x92\xd2\xe1\xf2\x4b\x9b\xde\x23\xf0\x44\x94\x36\x91\x8e\x04\xb6\xe1\xfb\x3b\x1b\x4a\xc6\x12\x30\xc4\x00\xb7\x1d\xba\xc2\x8f\x79\x7f\xc1\x08\x82\x73\xed\x70\x18\x4c\x06\xba\xfa\xc1\x2b\xc2\x37\x40\x18\x71\xdf\xb1\x8f\x02\xc7\x3b\x66\x07\x0c\x75\x6c\xd2\x2d\xce\x1e\x5b\xd5\xd3\xa6\x03\x03\x0a\xdb\xbd\x63\x86\x1e\x46\xbd\xb8\x7f\x8c\xe1\x26\x24\xcf\x5b\xef\x77\xec\x84\x9b\xbb\x77\xad\x7f\xc3\xef\x90\x29\x48\x5c\xf6\xf9\xaa\xed\x5a\x9a\x1e\x89\x03\xa3\xb1\xda\x5f\x5a\x5a\x3f\x51\x00\x56\xeb\xdb\xf9\x5e\x63\xf7\x58\x99\x33\x24\x93\x44\xc1\x81\x7c\x7c\x29\x6c\xd1\x56\x86\x6d\x91\x4b\xb5\x60\x63\xcf\xb6\x52\xc7\x96\x11\x94\xd4\x32\xed\x82\xbd\xeb\xf5\x1e\x23\x80\xcf\x35\x25\x80\xc5\xc9\x04\x07\x57\x21\x74\xed\x77\x73\x1e\x2a\xa2\x40\x48\x72\xfe\x06\xc9\xf9\x15\x27\x8f\x5b\xb0\x5e\xb9\x62\x49\xa7\x0e\x95\xe3\x0b\xf7\x69\x99\x17\x7c\x2f\x3f\x85\x37\xcc\xad\xab\x62\x37\xc2\xdb\x2b\x4a\x1c\x61\x0d\x90\x63\x04\x00\xf6\x30\x16\xc2\x52\x75\x09\x55\x2b\x2c\xf1\x9a\x92\x0e\x41\xe3\xd0\x3e\x85\x6f\x58\x3e\x3c\x50\x42\xf7\xec\xb4\x57\x7a\xcc\x32\xea\x55\xbb\xf8\x2b\xde\xca\x57\xe8\x73\xf9\x19\x40\x2d\xda\x76\xe0\x97\x3b\x77\x2c\x6e\xc1\x99\x4a\xd0\xf4\xdc\xd2\x59\xdc\x5a\x7e\x1c\x61\x4a\xa0\xc7\xa8\x12\xe8\xc3\xb8\xda\x72\xbc\x3c\x6a\xab\xdb\x2f\x87\x3d\x2d\x50\xd7\xe0\xd9\x25\xc7\xd9\xbb\x74\x19\xa3\x16\x47\x25\x43\x0a\x4d\x0b\x4f\xb5\xbc\x24\x21\xa2\x9a\x6c\xfa\x84\x73\xee\x6c\x7b\x54\x36\x6c\x7c\x54\x7c\x6a\xa5\xe0\x25\x12\xb6\xa2\x2f\xf6\xcb\x8f\xd5\xc0\x37\x74\xd6\x73\x1c\x0a\x87\x75\x5d\x18\x58\xfe\x1c\x60\xf9\x2b\x02\xcb\xaf\xe4\xc1\xfb\x71\xad\xb4\xe9\x6c\xab\xa1\xc0\xe1\x7e\x50\xcb\xcb\x13\x9a\x01\x4e\x2e\x8b\xa9\x52\xb0\xd7\xcc\x55\xca\xd6\x55\xc8\x82\x4f\x50\x83\x3e\xc5\x2f\x82\xf7\xb1\x03\x99\xaa\x8d\x15\x03\xd9\xfd\x96\xb7\x4b\x79\x91\x83\x55\x05\xea\xc3\x3b\x49\x09\x60\x11\x53\x9b\x60\x8d\x47\xe2\x1c\x1b\xc1\xb5\x09\xfc\x2a\x66\x94\xc2\xc1\x3c\xb0\x30\x2e\x82\xbb\xe0\xab\xc0\x53\x80\xbb\x42\x16\xd3\x41\x48\x6b\xde\x00\xad\xe5\x14\x4e\x1b\xed\x05\x95\xc2\x56\x44\x77\x13\x57\x77\x0d\x4d\x4d\x34\x07\xb7\x22\x78\xba\x5b\x60\x6a\x4e\x53\xd8\x7b\x1f\x62\x56\x30\x91\x5e\x21\xb3\x4a\x8a\xc9\x5b\x78\x64\xcc\xbe\x2d\x2f\x8a\x5b\x22\x69\xd1\xab\xd0\x9a\x66\x37\x49\x5d\xfc\x25\x4d\x0f\xe3\x6b\x68\x8d\x10\x4c\xcd\xcb\x24\x79\xd4\x4c\xbd\x4d\x04\x52\x82\x44\xca\xa1\xd2\x26\x2c\x0d\xad\xc1\xc4\xf0\xa4\x86\x37\xd0\x28\x82\xd1\x1d\x7c\xb2\xc7\x02\x02\x7f\xe1\xab\x3d\x7e\x3c\x01\x96\x71\x3a\x1d\xe3\xb7\xee\xe7\x21\x42\xd3\x78\xc2\x45\x82\x60\x06\x57\x1c\x47\xa0\x38\xae\x0e\x1f\x99\x0e\x8e\x22\x0d\xe9\x38\xf4\xc3\xeb\xf8\xea\x7d\x37\xaa\x21\x28\x03\x1b\x98\x10\x05\xfb\x3c\xca\xdd\xcb\x29\x14\x79\x8b\xa1\x61\xc8\xbd\x7e\x04\xe8\x3b\x8f\x9b\x62\x5c\x4c\x3f\xca\xf6\x7f\xe5\x5d\xba\xb0\x03\xfe\x75\xba\x03\xed\xff\x87\xbc\x4e\x97\x5a\x6b\xdd\xf3\x74\x78\x7e\x6b\x86\xdb\x2a\xf1\x4a\x8e\x0e\xb3\xa2\x15\x8d\x12\xe1\x4a\x45\x42\x7c\xac\x8f\x24\x6f\x0a\x36\x2b\xb0\x58\x72\xb0\x48\xd3\xf6\x82\x0b\x46\x51\x6b\x52\x62\x1c\xa7\x3a\xee\x82\xa4\x8c\x4f\x90\x24\x5d\xed\x11\xb9\x06\x28\xad\xd4\xa2\x34\x83\x51\x42\x8f\x6d\x2c\x2d\x8d\xa7\x09\x03\x93\xae\xed\xa4\xcb\xc9\xea\x8e\xba\x2d\xa5\x24\xf4\x81\x5d\x5e\x52\x06\xa2\x59\x41\xef\x25\x25\x0c\x56\x27\x29\xf2\x58\x13\x9e\x24\x95\x2f\x4d\x1f\x3b\x61\x04\x9d\xd4\x6a\x92\xce\x05\xb5\x02\x6a\x9a\x41\x05\xbd\x49\x3d\x49\x25\x15\xb7\x78\xd8\xed\xb5\x1f\x34\x65\xa7\x0f\x3a\x73\x08\x3a\x49\x81\x8e\x5f\xc2\x1f\x8d\x55\xfa\xd3\xb7\x61\x7a\xf0\x7e\x13\x72\xdd\xcb\x4d\x13\x30\x81\x8b\x44\xd1\x71\x04\xbc\x9f\x35\x5a\x48\xf0\x8e\x13\xdf\xb8\x91\x07\x21\x76\x1b\xee\x2f\x87\x25\x86\x79\x9d\x2d\x94\xbc\xb5\x15\x78\xb5\x05\x87\x8d\xc4\x26\x56\xe2\xda\x28\xaf\x0c\x28\x32\x79\x1b\xd3\x18\x3d\xd8\xbe\x34\xae\xe8\x73\x76\xea\x09\x40\x4a\x7b\x05\xd7\x8f\xa8\x18\x86\xae\x5e\xec\xf9\xcc\x4e\x7d\x13\x78\x51\x89\x23\x84\xcb\x1b\xc1\xf6\x7b\xf3\xd1\xbf\xd4\xaf\xc3\xb0\xc9\xeb\xd4\x09\x9c\xc4\x09\xb2\x6e\x49\x94\x20\xab\x02\x26\x6f\x07\x20\x07\x61\x11\xc4\x96\x99\xfb\xbc\x2f\x78\x79\x12\x6f\x2c\xf3\xcb\x63\xcd\xe9\xb7\xc3\xce\x82\x4a\x5f\x9e\x5d\x5d\xdc\x41\x4b\x0c\xaa\x34\x01\xc8\x80\x30\x38\x4b\x89\x03\x59\x01\x85\xe8\xab\x6c\x83\x3c\x83\x25\x2f\x92\x5d\xbd\xb9\xa4\xcf\x65\x77\x2b\xc7\x5f\x5a\xc7\xc7\x7a\xc7\x60\xfa\xae\x29\x57\x45\x29\x80\xfd\x13\x52\x8c\x08\xf9\x9c\x84\xb4\xcc\x7a\xe9\xa6\xe2\xe2\xf8\x0c\x8a\x27\x25\x85\x64\xad\x4d\x23\x16\x8a\x3c\xd5\x1f\xbe\x04\x47\x03\x6d\x89\x13\xf9\x17\xfc\x6d\x69\xf2\x83\x9e\xec\x93\xbc\xeb\xad\x9e\x20\xf8\x44\x2a\x27\xe8\x33\x6f\x3a\x11\xa3\xfd\x36\x86\x0e\xb6\x5d\xcf\x34\x12\xef\xe1\xa4\xc8\x7d\x1e\xc4\xb3\x88\x4d\x84\x52\x45\xf2\xfc\xe7\x97\x79\x7c\x84\x95\x05\xfb\xef\x5d\x83\x9e\xbc\x07\x1f\x97\x88\x20\xe7\xc2\xb9\xec\x35\x84\xb8\x6a\xff\xfa\xc5\xa8\x44\xf4\x2e\xc2\x08\xaf\x13\x9e\x14\x77\x78\x4f\x04\xb5\xc7\xce\xca\x49\x77\xee\x73\x58\x16\x63\x8c\x19\x41\xdc\xe9\x83\x1a\x41\xe2\x43\x08\x85\x2d\x76\x3b\xc7\x90\x83\x07\x2f\x40\xb6\x01\xc8\x27\x59\xca\x01\x04\x2d\x82\x3e\xa9\x47\xae\xf6\x84\x40\x7c\xc3\x47\x01\x52\xa6\xae\xc9\xed\xf5\x35\x47\xfd\xe1\xd0\x71\x1a\x7a\x02\x41\x80\xce\xd8\x57\xd6\x4a\xca\x85\xb5\x39\x5b\x65\x60\xe5\xe0\x31\x9d\xea\x2d\xb6\x77\x48\x64\xf1\xd6\xc0\xbb\xbd\x7b\x78\xf6\xdd\x1e\x4a\x7c\x17\x66\x69\x43\x9c\x15\x36\x02\xb9\xa0\x23\x75\xdb\x42\xb2\x07\x42\xc1\x3b\x4a\xa6\xdd\x62\x58\x3b\x04\xf3\x51\xc7\x72\x2e\xb1\xa8\x83\x32\x38\x68\x59\xc2\xe3\x79\x5c\x88\xfa\x3d\x2e\x41\xfd\x3e\x00\x2e\xc7\xf1\xb6\xa5\x5e\xe2\x97\xb0\x3f\xd7\x63\x76\xee\x53\x6a\xb4\x01\x4b\x5a\x4a\x37\x21\x0e\xca\x85\x27\x8c\x53\x3b\x9c\x99\x24\x0d\x82\x0c\xe5\x02\x9f\x1a\xee\xc4\x3e\x35\x94\x2a\x7c\xaa\x76\x2c\xe9\x41\xdf\x6f\x6c\x22\x2e\x2f\xdf\xc4\xb3\xed\x73\x83\xb7\x31\xd8\x4b\xe8\x5b\x8e\x21\xb9\x22\xcd\xfe\xdb\x9c\xef\x71\x7d\x1f\x94\x50\x6c\x86\xf8\xd3\xd4\xb4\x8e\xfe\x8f\x4d\x3d\x54\x3f\x25\x55\x18\x03\x8f\x96\x4c\xbd\x3c\x80\x18\x63\xde\xf1\x4b\x7a\xb9\xdc\x7e\xad\xbb\xca\xf6\xcc\x93\xe0\x5d\xbb\x11\x31\xfb\x0d\xc0\x91\x72\xc8\xfc\xad\x63\xec\xfd\xdf\x05\x19\x73\xda\x83\x07\x79\xf6\x8b\x1d\xf2\xde\x59\x35\xcf\x91\xec\x7b\x28\x91\x2f\x2d\x12\xa6\x3a\x5b\x5b\xff\x10\xc8\xf2\x75\x03\xff\x7c\x2b\x82\xa1\xe0\x12\x35\x82\x07\x71\xff\xdf\x06\x57\xaa\x0d\xcc\x5e\x35\x85\x25\x66\xf4\x00\x2a\x4c\x30\xfa\xfe\xa9\x31\x06\xb9\x0d\xc6\xae\xf0\xf3\x8d\x1e\x3b\xc8\x8d\x31\x38\xc4\xe7\x6f\x70\xce\xe0\xfa\x4d\x1b\x83\x17\xc2\xa2\x42\xef\x38\xcf\x09\x6d\x13\x85\xed\x22\xa9\x9b\x44\xbb\xa8\x35\x39\x89\x7f\xec\xab\x3d\x55\x5e\x35\x2b\x90\xce\xbf\xf2\xcf\xfc\x0d\x7e\xba\xb9\x92\x1b\x58\xb0\x42\xb0\xdf\xf7\x53\xbb\x93\x05\x63\x04\xa5\xb8\x59\xba\x57\x56\x08\x90\x1c\x72\xe6\x33\xfc\x9e\xee\xa0\xc2\x8e\x05\xf1\x38\xdf\x08\x8a\xe8\xbc\x0d\x88\xe9\xd5\xaf\x6f\xce\x13\xc8\x89\x05\xaa\x39\x13\x0b\x5a\x73\x26\x96\xaf\x1c\xa1\xb9\x21\xe0\xd8\x6c\x7a\x04\x02\x79\x70\x00\x42\x43\xfe\x8c\x1c\xc4\x33\x59\x91\x52\x5b\x59\xec\x64\xc5\x28\x9d\xc9\xef\x18\x28\x78\x3d\x45\xa0\xec\xf1\x94\x51\xab\x4d\xd8\x66\x23\xc7\x3f\x9e\x1f\x88\xb3\x46\xc0\x0f\xc4\xd9\x79\xb2\x7b\x06\xbd\xeb\xda\x4f\x75\xa9\x8f\xcd\x08\xfc\x85\x26\x19\xa8\x81\xf8\x9a\x0d\x42\xab\x76\xdd\x24\xc2\xad\x9d\x44\x79\x82\x5f\xd1\xd4\xe9\x42\xe4\xf5\x22\xb0\x7e\x19\xf2\x23\xa9\x52\xc2\x80\x57\x4b\x87\x18\x33\xe4\xbd\x3c\xf1\xef\xca\xc0\xe6\x97\x0c\x66\x53\x5f\x57\xce\x42\xa8\xa3\x79\x43\x69\x11\xf0\x7a\x18\x76\xbd\xdd\xaa\xc5\x2b\x28\xf9\x39\xfd\x48\x06\x11\x56\xa5\x23\x19\xd5\xb4\xab\x61\xb5\x0d\xf0\x22\x09\xd3\x18\x37\x68\xe5\xdb\x01\xb8\x32\xee\x94\xdd\xda\x3b\xed\xc1\x0a\xf1\xef\x2b\xfb\xfd\xd9\xb5\xce\xfb\xf2\x64\xcb\x0c\xa5\x3b\x17\xc3\x60\xe7\x32\xbf\x8d\xd9\xb2\x93\x08\x5f\xfc\xef\x8a\xcf\xcf\x5d\x4e\xb8\xf6\x2c\xad\x27\xda\x2b\xf7\x72\x2f\x49\x3f\x3d\xbc\xf7\xf3\x10\x34\x59\xc6\x44\x94\xef\x18\xa0\xfa\x5c\x2d\xf7\xc1\x71\xce\xaf\xf2\x5b\xed\xa7\xbe\x9a\xd6\xdc\x34\xf7\x0d\x22\xbc\x5f\x48\x4a\x00\x33\x15\xe6\xcf\xba\x0e\x67\x53\x73\x3a\x3d\xd8\xbe\x6b\x1e\xaa\x1b\x43\x99\xef\x8b\x79\x97\xc8\xcf\xf9\x46\xae\xa9\x24\xee\x30\x06\x1b\x4a\x21\x61\x1a\x42\x05\x05\xae\x47\x96\x37\xd1\x71\xcb\x6a\x77\xcc\xb2\x76\xb3\x00\x16\x22\x7d\xf0\x24\xa2\xf4\x41\xf2\xef\x73\x76\xcb\xde\x8b\x2f\xc9\x87\xe4\xf1\x27\x33\xfb\x06\x0e\x4d\xd1\x55\xa9\x07\xbd\x5e\x92\x6a\x82\xe8\x60\xf2\xab\x1c\x3d\xeb\x62\xe1\x59\x7f\xf0\xe1\x59\xa3\xe7\x58\xd3\xe8\xf1\x2e\x9a\x37\x6a\x65\x0f\x31\x79\x29\x20\xe8\xc1\xe3\xbe\x5b\x3e\x7e\x10\x06\xea\x66\xeb\x5e\x1c\x03\x37\xaa\x52\x46\x67\x11\xcf\x7f\xd7\x28\xe3\xf2\x3b\xac\x57\x4c\x58\x52\x35\x87\xcc\x75\x61\xc0\xb5\x86\x34\x62\xaf\x21\x2a\x8a\x9c\x1a\x56\xa8\x81\x78\xc7\xf5\x25\x41\xd8\x83\x40\xf3\x6d\xf3\x35\x1d\x9b\x0c\x2b\xfa\xbb\xc6\x7f\xfd\xea\x6e\xb9\xf0\x45\x8a\x7d\xfb\x9d\xd0\x82\xcc\xe8\xf4\x74\x7a\xf2\xc0\x7d\x7c\xbe\xa8\xe5\x67\x91\x7e\xdc\x3d\x8d\x31\x65\xa4\xd3\xa8\xc1\x9f\x7f\x0c\x22\xf5\xe2\x8e\xa6\x64\xd4\xbd\x46\xa4\x94\xf8\xc8\x3f\xba\xf7\x6d\xb2\xf7\x1c\x94\xf5\x43\x56\xac\x78\x4c\xf4\x37\xc3\xb3\x52\xe2\x2d\x0e\x1a\xa5\xcf\x4c\x7e\xf2\xd7\x0f\x5c\xf1\x0f\xa4\xe4\x13\xd3\x44\x58\xd4\x1f\xb6\x48\xd8\x92\xba\x4b\xac\x88\x13\xd6\x48\xe0\xf7\xcc\xf0\xb3\xc4\xcf\xb2\xb8\xc5\xaf\x1b\xfc\xba\xa9\xaa\x8f\x52\x18\x5c\x95\x8a\x93\xc2\xbc\x46\xca\x2d\x7e\x73\x9c\x4f\xfe\x29\xed\x68\x48\x73\xfb\x81\x60\xac\xdc\x9c\xa6\xdb\x0f\x4a\x97\x57\xa8\x9f\xfa\x07\xa9\x1f\xf0\x59\xec\xad\x26\xe1\x8b\x52\xb8\x79\x4d\x92\xcf\x07\x60\x8d\xa4\xa9\x6b\x85\xf2\x4d\xa9\xdc\x0f\x4d\x94\x4f\x4a\xeb\x8a\x9b\xb9\xef\x97\x7e\x21\xd5\xf7\x4a\xbf\x08\xbd\x65\xd7\xee\x38\x30\xe3\x07\xf7\x48\x9c\x7f\x1e\xe8\x94\xf2\x34\xf8\x0c\xa2\xf1\xf1\x05\x4f\x7e\x89\x4b\xde\xab\xe4\xeb\x8f\xb3\xcc\x02\xa6\xd6\xcd\x6e\xef\x74\x46\x1f\xd5\x57\xc0\x7c\x04\x1b\x71\x19\xe6\x37\x3f\xe4\x41\x24\x9a\xdd\xf9\x02\xfb\x1e\x74\xd1\xbe\xfe\x5b\xf5\xdd\xbf\xfd\x1b\xc0\xe9\xf3\xdf\xff\x3d\x3f\x7b\xfe\x7d\x5e\x7d\xe6\x78\x5c\x7d\xbe\x2d\x3e\xd7\xdb\xfd\xd6\xa0\xe8\xe7\x8b\x08\x90\x2f\x3d\xc2\xf9\x53\x0f\x4d\xf4\xc9\x5a\x9c\x94\xfc\x9f\x00\x00\x00\xff\xff\x84\x42\x73\xc5\xe4\xa6\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\xbd\xeb\x72\xdc\xc8\x8e\x27\xfe\x9d\x4f\xc1\xee\x09\xff\xdd\x1d\x21\x97\xa3\xbb\xff\x7b\x89\x0e\xdb\xbd\xb2\xd4\xbe\xcc\x58\x96\xc6\x52\x9f\xb3\x67\x1d\x8e\x6a\x56\x91\xaa\xe2\x71\x15\x59\x4d\xb2\x2c\xeb\x4c\x4c\xc4\xbe\xc6\xbe\xde\x3e\xc9\x02\x3f\x00\x79\x23\x4b\xb2\xcf\x99\xd8\xfd\x22\xb1\x32\x91\x37\x24\x12\x09\x20\x91\xc8\x62\xb7\x9b\x97\x55\xbf\xcc\x9f\xe6\xc7\xf9\xae\xa8\x9b\x4d\xd5\xf7\x79\x5f\x6d\xae\x1f\xad\xdb\x7e\xa8\xca\xfc\x65\x3d\xd0\xef\xee\x53\xbd\xac\xb2\x6c\xdd\x6e\x2b\x02\x7d\x45\xff\xb2\xb2\xe8\xd7\x8b\xb6\xe8\x4a\x4a\x38\xb5\xef\xac\xfa\xbc\xdb\xb4\x1d\x03\xfd\x2a\x5f\xd9\xba\xda\xec\xb8\x0c\xfd\xcb\xfa\x7a\xd5\xcc\xeb\x86\x7e\x5e\xd2\x57\xfe\xba\xc9\xfa\x76\x59\x17\x9b\x79\x90\x81\x04\xcb\xff\x39\xff\xb1\x29\xf3\xcb\xa1\xda\xe5\x4f\xfa\x6d\xb1\xd9\x3c\x2b\x7a\x14\x19\xaa\xbc\x58\x2e\xdb\x7d\x33\x3c\x79\x2c\x19\x52\x79\xbb\x1f\xac\xf6\xf3\xfd\x20\x69\xfb\x9d\x25\xfd\xb6\xcb\xba\x6a\x55\xd3\xc0\x3a\x4a\x7a\xa7\x9f\xd9\x4d\xb5\xe8\xeb\x81\x3b\xfd\x67\xf9\xca\x3e\x55\x5d\x5f\xb7\xdc\x9f\x3f\xc9\x57\xb6\x2b\x56\x0c\x70\x41\xff\xb2\xa1\xda\xee\x36\x05\x0a\x5c\xe9\x67\xb6\x29\x9a\xd5\x5e\x60\xde\xe8\x67\xb6\xec\x2a\xca\x9a\x37\xd5\x0d\xa5\x9e\xe0\xc7\x6c\x36\xcb\xf6\x84\xcf\xf9\xae\x6b\xaf\xeb\x4d\x35\x2f\x9a\x72\xbe\x15\x8c\xfd\x46\xe9\xb9\xa6\xe7\x94\x9e\x73\x3a\x86\x50\x95\x84\x9c\x79\xd1\xeb\x38\x68\x5a\x08\x57\x45\x9f\xa1\xaa\xa6\xd8\x5a\x69\xfe\xcc\xaa\x6d\x51\x6f\x78\x02\x1e\xf1\x07\x75\xbc\xef\x6f\x5a\x4c\xd3\x85\x7e\x12\x12\xe6\xc3\xed\xae\x02\x0e\x1e\x5d\xd1\x57\xb6\x2c\x76\xc3\x72\x5d\x70\x3f\xe5\x2b\x23\xa0\x5d\x4b\xc8\x68\xbb\x5b\xc0\xd9\x8f\xac\xed\x56\x45\x53\xff\xad\x18\x04\x41\xe7\xc1\xcf\x6c\x5b\x77\x5d\xcb\xb8\x3d\xc3\x47\x46\x43\x9f\x73\x3d\x94\xf2\x96\xb0\x10\xd4\xc2\x39\xdb\x7a\xd5\x09\x1a\x39\xf3\x0c\xbf\xb8\x16\xce\xbb\x6e\xbb\x8f\x9a\xf1\x82\x3f\x93\xa2\xd4\x09\xcd\x8d\xdb\x2f\x1a\x42\xbc\xe6\x9e\xe1\x47\x04\xd0\x67\x45\xb9\x25\x54\xee\x8a\xa6\x62\x1c\x1d\xf3\x2f\xc2\x0b\xfd\xca\x94\x9e\xe6\x7d\x35\x0c\x75\xb3\x62\x64\x1f\x4b\x52\x7e\xa9\x49\x59\x90\xe7\xd2\x6e\xdb\xbd\x9b\x4e\x4a\xff\x0b\xfd\xcc\x2f\xe4\xa7\xe4\x05\x85\x90\xe9\x4a\xf2\x48\xfa\xf9\x75\x55\x95\x32\x96\x3e\x7f\x41\xdf\xd9\x6e\xbf\xd9\x10\xd6\xfe\xd8\x57\xfd\xc0\x85\x2e\xe8\x37\x8d\x5f\x7e\x67\x75\xdf\xd3\x07\x25\xbf\xc6\x47\x46\x53\xd7\x2c\x31\x98\x13\x7c\x64\xd9\xfb\xbe\x2a\xba\xe5\xfa\x43\x26\xff\xd1\x57\xfe\x60\xda\x3b\x34\xa9\x4c\x48\x4a\x44\xd2\x82\x35\x90\x2d\xdb\x92\x7f\x9c\xd0\x3f\xaa\xba\x6e\xfa\x81\x56\xdb\x87\x4c\x3f\x18\x4c\xbe\x64\x02\x86\x7a\x00\x16\x34\x11\x4b\xb7\xe7\x19\xcc\x5f\xd4\x5d\x3f\x3c\x1a\x6a\x22\xd6\x77\xfb\x26\xe3\xf1\xd1\x4a\x9b\x97\x0b\x63\x40\x2f\x5b\x42\x11\x92\x3b\x1a\xdf\xd9\xed\xe5\xbf\xbe\x39\xca\x2f\x88\x0b\xad\xba\x8a\xbe\x73\xaa\x83\xfe\x51\x99\x9f\x66\x19\x95\xb2\x96\x4e\x8b\xa1\x58\x14\x7d\xe5\xd1\xca\x99\x42\xdd\x2e\x0f\x34\xce\x1c\x0d\xdc\xab\x1f\xa2\xf1\x4e\xad\x10\xaa\x43\xd7\x95\xab\xe3\x2d\x2f\x2e\x4a\x67\x86\x86\xc2\x17\x9b\x8a\xd3\xa9\xaa\xfc\xf5\xdb\xb7\xe7\xa7\xcf\xf3\xaa\x59\xd5\x4d\x95\xdf\xd4\xc3\x3a\xdf\x0f\xd7\xff\x75\xbe\xaa\x9a\xaa\x23\xfe\xb6\xac\x73\x5a\x53\x1d\x51\x42\x4e\x84\x2d\x83\x9b\x65\x7d\xbf\xa1\xb5\x0f\xf4\x5e\x5e\xbe\xc9\xcf\x18\xc5\xbb\x62\x58\xa3\x23\xc3\x3a\xeb\xff\xd8\x30\x8a\x5c\x83\x57\xeb\x2a\x07\x95\x01\xa8\xbd\x36\x7c\xe4\xa5\xf6\x71\x96\x55\x5d\x37\x27\x96\x34\xdc\xce\xb5\xb0\xd6\x97\x42\x4a\x15\x44\x3a\x4d\x3b\xe4\x8b\x2a\x47\x99\x59\x96\x59\x87\x0d\xbb\xc7\xbb\xdd\xa6\x5e\xca\x5a\x7f\x29\x79\x1e\xd1\xbc\x7b\x28\x96\x42\x38\x20\xca\xf2\x02\x74\x11\x6b\xe6\xf5\x90\x47\x0c\x04\xe5\xd7\x15\x31\xc0\xf5\x7e\x25\x6c\x6f\xd3\xee\xcb\x6f\x40\xa9\xd6\x7b\x4f\xa8\xf9\xbb\x96\x3a\x0c\xec\x38\x00\xdf\xc4\x31\x51\x1c\x6f\x58\x5d\xb5\x6d\x89\xaf\x38\x62\xaf\x89\xa0\x6e\x6a\xca\xa4\x91\xf6\xc5\x27\x5a\x6f\x43\x9b\x0f\xeb\xba\xcf\x4b\x22\xb6\x25\x57\x4c\x4b\x63\x4f\x5b\x85\x90\x05\x11\xa8\x90\x86\xa5\xc5\x73\x00\xa8\xed\x9e\xa8\x69\x4d\x95\xf1\x46\xc4\xbb\x26\x55\x39\xd5\x4f\x0c\x89\xea\x01\x7d\x13\xe5\xb6\xc4\x95\x99\x6f\x9e\xe2\x43\x7f\x87\xf5\x53\xaf\x8a\xeb\x6b\xea\x55\x4f\x54\xf1\x2a\x5f\x6e\x5a\x22\xa9\xdf\xde\xbd\xe9\x99\x60\xd6\xf3\x5d\xdb\x61\x8b\xa3\xac\x0b\xfa\x74\x69\x01\xa2\x19\xa2\xd9\x6f\x17\xf4\xeb\x66\x5d\x13\x07\x00\xda\xb9\x04\xef\xe4\x94\x4a\x4d\xec\x7b\x9a\xc2\xa3\x9c\x48\x98\x46\x40\x28\x03\x01\xf0\x18\xca\xba\x2f\x16\x34\xf7\x0c\x7e\x4d\x5b\xd6\xbe\x23\xb2\x5a\x0f\xc3\xce\x5a\x7e\x75\x75\x75\x21\x4d\xbb\xd4\xbb\xda\x2e\x02\xca\xc0\x1c\x6c\x78\xd3\x6d\xf2\xb6\x99\x81\x48\xf6\xdd\x26\xa1\x1f\x1a\xab\xe5\x1c\xc0\x0b\x77\xe1\x31\xff\xb9\xf4\xe8\x01\x9e\x7b\x92\x4c\x6e\x40\x4d\x84\xe3\x0a\x1b\x20\x11\x75\xbb\xe3\x7a\x03\xaa\x3e\xd7\x04\x4f\xca\xd8\x34\x5d\xbe\x6c\x9d\x94\x0b\xb9\x27\x60\xff\x5b\x1a\xb0\xb2\x91\xcb\x33\x42\x03\x78\x09\x52\xaf\xbb\x76\x4b\xa9\x2f\xe8\x9f\x4f\xf0\xdd\x3f\xe3\xfa\x00\x53\x94\x25\xf1\xb7\xfe\x28\x7f\xf7\xe2\x24\xff\x4f\x3f\xfd\xf8\xe3\x2c\x7f\x3d\xf0\x4a\x64\xe2\xfc\x2b\x13\x15\x7d\xca\x1e\xee\x40\x89\x65\x0c\x44\x77\xdf\xf2\xca\xfa\x36\x7f\x82\xdc\xff\x56\x7d\x2e\x48\xf6\xa8\x66\xcb\x76\xfb\x8c\xb9\xca\xb6\x18\x66\x19\xe7\x10\xb9\x2a\x1d\x5f\x56\x4d\x49\x1f\x2a\x09\x68\x5e\xc0\xee\x34\x3f\x90\x0b\x44\x22\x9a\x2f\xdb\xe6\xba\xee\x78\x40\xbf\x36\xa0\x06\x93\x95\x68\x1f\x40\x8e\x6d\xb7\x84\x34\xe2\x20\xf5\xf5\xad\x07\xc5\x50\xdf\x72\xa2\x4e\x68\x26\x54\x37\x57\x31\xd2\x61\xf9\x52\x88\x91\xe7\xed\x9c\x86\xd7\x19\xbe\x7b\x8f\xf0\xf6\xfa\x7a\x43\x1c\xd5\xb8\xa4\xb6\x70\x2e\xa9\xc2\x30\x43\x10\x22\xc6\x1d\xa4\xbd\x53\x25\xe2\x93\xd3\xb7\x79\xf5\x89\xa8\x8d\xc8\x81\xb6\xe8\x72\xbf\x04\x85\x31\xec\x51\xce\xfb\x13\xe1\x97\xd6\xc6\x52\xf8\x6a\xc0\x24\xb8\x6b\xcc\x89\x96\x04\x44\xbc\x41\x17\xc5\x9c\x24\x94\x4f\xc4\x41\xbb\xa0\x89\x97\x96\xa4\xbd\x1f\xc1\x8e\x3a\xe5\x4a\xf0\xc8\x97\x34\xe3\x44\x15\xd2\x8b\x5e\x3a\x25\xd9\x44\xee\x44\xc7\x7b\x92\xa2\x8b\x92\xfa\xb2\xb8\x05\xdf\xe9\x99\x18\xca\xea\xba\xd8\x6f\x06\xdf\x2f\x99\xb8\xce\x64\x32\x6b\xe9\x92\x05\xf9\x30\x6f\xb2\xc0\xa8\x83\xa0\x9e\x3e\x2d\x4b\x64\xd8\x6c\x6e\x73\x08\x50\xa0\x57\x11\x6f\x4d\x0e\xef\x67\x99\x6e\xde\x26\xcd\xcf\x3f\xd5\x90\x7c\x1d\x09\x21\xd7\x44\x7b\xe6\x35\x7f\x62\x00\x16\xa9\xfb\xc9\xb2\xae\x63\xe7\xdc\x70\xef\x24\x5f\xc1\x03\x77\x01\x2d\xb0\x68\x4e\x98\xfb\x54\x83\xf5\xea\x24\xa2\xaf\x34\x93\x68\x9a\x9a\xea\xab\x0a\x35\x50\xf9\xc7\x54\x27\xca\xcc\x54\x1a\x54\x01\xcd\x04\x11\x12\xd2\xf2\xb2\xcd\x79\x67\x04\x7f\xa7\xd2\x36\xd4\x46\x87\xaf\x63\xce\xbb\x7a\xb5\x26\x7e\xd7\xde\x1c\x09\xd2\x6e\xd6\x6d\xc5\x34\xfd\xfa\xf4\xe9\x0f\xd2\x8f\x15\x73\x7b\x57\x88\xf7\x89\x62\x4f\x13\x4e\x18\x55\xd2\x92\x2e\xb8\xfd\x16\x90\x23\xb9\x53\x80\x52\x49\xdf\x64\xd9\xb1\xf8\xa2\xeb\x37\xcc\xd3\x85\xeb\x61\xa4\x74\xa2\x2d\xa8\x58\x37\x5f\xb5\x90\x57\x4d\x8c\xe3\xbd\x8b\xd4\x9e\x7e\x98\xaf\xea\x61\x7e\xcd\x8c\x84\xeb\x7c\xc1\x65\x79\x2b\xa5\x9c\xfc\x21\x65\x3d\xcc\x89\x1b\x91\x10\x5e\xfe\x9c\x3f\xf8\xa4\xf2\xcb\x4f\xcc\x21\xe6\x44\xd3\xf5\x06\x93\xa1\x52\x70\x57\x89\xf8\x64\xaa\x56\xd9\xd2\xfa\x63\x9c\xf7\xfb\x1d\x76\x1a\x15\x59\x8e\xf2\x9d\x00\x96\xed\x4d\xc3\x6b\x01\xac\x90\x56\x7d\x0d\x45\x71\x51\x37\x05\x6d\xb7\x56\x0b\x58\xec\x03\xa2\x86\xb7\xe7\x57\x00\x5c\xb5\x8b\x7d\xbd\x29\x0d\x60\x46\x23\xfc\x54\x6c\xea\x92\x05\x4f\x9d\xf7\x50\xc8\xb3\xa4\x5a\xfa\xb2\x6c\x3b\x96\x0f\x30\x1a\x2b\x78\x40\x30\xe9\x78\xc3\x47\x32\x95\x55\x58\x94\x73\x32\x04\xa3\x81\x26\x1e\x12\x39\x4b\x18\xa0\x98\xba\x6f\x1e\x0e\xe8\xe9\x72\x4f\x6d\xd1\xa4\x73\x32\x15\xec\xf3\x47\xcf\xe8\x6f\xc6\xf2\x8a\xf0\xe3\xd5\x18\xf1\x9c\x99\x4b\xe6\x5e\x56\x69\xd4\xd5\x88\xbc\x1d\x75\x19\xf1\x06\x63\x0d\xfb\x6b\x24\xd0\xef\x85\x5e\x59\x2b\xde\xd0\xb4\x56\xdf\xd0\xc7\x43\x5a\xc0\xab\x0d\x26\xa1\x80\x38\x47\x72\x6d\x4b\x78\x63\x02\x39\x92\xe5\x72\x4d\x43\x63\xce\x36\x14\x1f\xa9\x6f\x05\x8b\x0f\xd9\x7b\xb6\x1c\x7c\xc8\xf6\x22\x11\xb6\x9b\xd2\x49\xdf\xa0\xe9\xb6\x4b\xb5\x55\x0f\xe4\xe8\xb5\x27\xb1\x7a\xb9\x9e\x3b\xbb\x03\x23\x65\xa8\x3e\x63\x2f\x46\x96\x37\x43\x30\xb1\x73\x56\xb6\xbd\xc5\x74\xf1\x20\xce\x6e\xfd\x6c\x91\x3c\x48\x4b\x84\x74\x96\x45\xcb\x58\xfb\x54\x39\xa8\x93\x30\x35\x2e\x40\x75\x91\xe4\xaa\x55\xc5\x4a\x25\x65\x89\xe6\xab\xb9\xa2\xfd\xf6\x19\x98\x98\x1a\x4d\xc0\xeb\x68\x3e\x55\x81\x9b\xd1\xc4\x40\x3b\xb4\x96\x89\x23\xde\xca\xba\x08\xda\xcc\xde\xab\x41\xe5\x43\x66\x70\xef\xe2\x7c\xe2\x26\xa4\xe9\x79\x4b\xc3\xdc\x66\xd7\x2c\x0e\x50\x92\x95\xa1\xf8\x0d\x7e\x5d\xed\x58\x16\xd8\xf6\x20\x8b\x0d\x41\x96\xb7\x2a\xcd\x3a\x02\xf9\x45\x58\x35\x51\x0c\x31\xb8\x6f\xcc\x54\xf3\x95\x55\x3c\xaf\x89\x14\x50\x3e\xde\x7a\xc4\x04\x42\x42\x27\x6c\x3e\x5d\x77\x7b\x94\x47\x9b\xd8\xba\xe8\x89\x7d\xd3\xce\xad\xc5\xca\x99\xe9\x5b\x3c\xed\xc5\x52\xd6\x0c\xcc\x36\xa0\x72\x29\xd9\x76\xe9\x9e\xc8\x3d\x14\x0e\xa7\xad\x38\x49\x06\x72\x4a\x28\xce\x4c\xb4\x49\x08\xdb\x56\x2c\xcc\xce\xb7\x62\x2d\x91\x5f\xf9\x59\x95\x91\xc4\xb5\xa2\x05\x6d\x04\xfb\x94\x95\xdc\x15\x64\x7e\xa5\x57\x06\xa8\x86\x90\x05\x2b\x84\xa5\xfc\x62\xe6\x29\xe2\x0c\x37\xb0\x00\xd0\xda\x1e\xa1\x9f\x36\x2b\xca\x9e\x19\x4b\x97\x1d\x1b\x82\x57\x4f\xdc\xc2\x23\xf1\x38\x67\x3b\x53\x08\xa5\x02\xb0\x1f\x16\x17\x60\xae\xf1\x64\xf1\xec\x41\xff\xe4\xf1\xe2\x99\xe3\xad\xcb\x75\xb5\xfc\x28\xf4\x57\x37\x8b\xf6\x33\x54\x58\x9a\x78\xc6\x71\xc3\x6b\xec\x41\x99\xaf\x29\x17\x5a\x0e\xf1\x02\x2a\x46\x88\xe7\xdc\x68\xd2\xa8\x33\xcc\x32\x66\x66\xe8\x73\xbb\x8b\x11\x12\x95\x46\x23\xd2\xb3\x8c\xa6\x91\x17\x1f\xd6\x81\xa7\xdb\x63\x4e\x65\xca\xc5\x3e\xe1\x49\x17\xe3\xdd\xd4\xdb\x7a\x18\x91\x0e\x33\xa2\x42\x49\x50\x2d\x27\x86\x4b\xd4\x05\x6c\xa0\x2f\xc4\xce\xa9\x1a\xda\x78\x8d\x9c\x6e\x0a\xd2\x7e\x7e\xca\x89\x84\xf6\xb4\x8d\xf1\x98\xa8\x9b\xc4\xcf\x0b\xde\xb9\x49\xf3\x29\xfa\xf9\xbe\x51\xb4\x56\xa5\x11\xd3\xab\x1a\xbb\x0c\xb7\x6b\x24\x1f\x40\x19\xe6\x55\x80\xcf\xbf\x73\x18\xff\x9e\xa4\xfd\x6b\x57\x8c\x59\x3f\x77\xa8\x66\x61\xb3\x98\x9c\x3c\x62\x8d\x4d\x25\x0a\x2b\x30\xc0\x70\x3c\xd1\xa4\xf5\xf8\xd9\x23\xd5\xe9\x23\xa5\x60\x42\x16\xfb\x61\x68\x59\x99\xd8\x30\xd5\x48\x19\xeb\xf5\x09\x00\xa1\x1f\xf9\xfa\x30\x21\x21\x9e\x64\x6e\x2a\x13\xee\xe7\xde\xe4\xaa\x6a\x58\x32\x3a\xdd\x2b\x1d\x58\x29\x06\x90\xa2\xb9\x35\x52\x26\x82\xe0\x5e\x70\x83\xc3\x74\x5f\xbe\xeb\xaa\xef\x7d\x6f\xdc\x9a\x41\x09\xeb\x91\x14\x0f\xd6\xd3\x3b\xe4\x8a\xc1\xcd\x56\x9d\x6d\x7d\x6a\xb6\xf2\xf4\xd1\xc5\xe8\x45\x3e\xaf\x0c\x62\xb0\x24\x77\x96\x40\x34\x8d\x02\xa5\x67\x49\x5b\x5e\x8f\x1b\x63\x70\x88\xbb\xec\x77\xb0\xa1\x6d\xe7\xfd\x5a\x74\x66\xeb\x1e\xe9\xdb\xcd\x2a\x32\xbc\xc0\xe0\x0e\xa2\xfb\xcf\xbc\x4f\x92\x66\x52\x6c\x3e\x64\xb7\xb0\xf0\xfd\x85\x38\x7c\x03\xdb\x69\x9b\x51\x86\x68\x59\x67\xf8\x20\x50\x56\xf9\x3e\x64\xbc\x87\xbe\x4d\xe4\x42\xde\x22\x34\x2d\x10\x50\x90\xf5\x6b\x24\xee\xd9\x14\x66\x17\x13\x32\xe4\xbb\xca\xdb\x88\xf1\xe5\x86\x78\x79\xf9\xea\xca\x74\xb8\xcb\x57\xf9\xc7\x4a\x2b\x7f\x35\x0c\xbb\xfe\x37\xe8\xf3\xa2\x9c\xb3\x26\x7f\x51\xdc\xb2\xd4\x26\xc9\xfa\x03\x19\x57\x55\xb1\xd5\x5e\xf2\xa7\x54\x71\x4c\xdb\x99\x26\xf2\x27\xed\x72\x81\x9d\x28\x83\xfc\x62\x43\x10\x61\x46\xe5\x06\xa7\x3f\x54\x6a\x80\xfe\x7d\x64\xdc\xfa\x3d\x2b\x36\xbb\x75\x01\x01\x22\x00\x83\x1d\x87\x80\x30\xf1\x39\x40\x40\x0b\xfb\x6d\xd5\xd5\x4b\x68\x5b\x54\xe0\xbb\x47\xf3\xef\x61\xc2\xa3\x85\x42\x92\x64\x5c\x59\x49\x8b\xe4\xef\xaa\x90\xbf\x59\xca\x0c\xeb\xed\xeb\xbf\xd9\x28\xa2\xea\x38\x9d\x78\x0e\x41\x40\xa6\xf3\x50\x0e\x08\x1b\x23\xcb\x77\x03\x9b\x75\x28\x81\x64\xc8\xa8\xea\x6d\xf1\xf9\xbe\x82\xdb\x76\xa2\x9c\xb0\x02\x5f\xc8\x16\xbc\x0e\x31\x66\x07\x04\xcf\x86\x9b\x83\xd0\x34\xf5\x0c\xd2\x7c\xa4\x5d\xad\x71\x60\xbf\xc9\xef\x1c\xbf\x7f\xb6\xe3\x08\xda\x42\x54\x02\xcf\xdd\xc1\x04\x6d\xce\x25\xf3\x4d\x48\xd2\x33\xbf\xdc\x42\xe9\xda\x91\x33\x34\x6c\x55\x7c\x1c\xe3\x60\xb5\x1a\x8a\x06\x91\xd4\xcc\x9f\xa1\xcc\x79\x8f\x9c\xb3\xd4\xda\x84\xb2\xa9\xdb\x3d\x6d\x7f\x01\x84\x58\xd2\xe7\xe3\x72\xc9\x82\x3b\x58\x9c\x44\x81\x89\xd2\xe7\x63\xd3\xe8\x81\xf2\x03\x2d\x99\x89\x0a\xdc\x4a\x3a\x58\x50\x26\x13\x85\x68\xe4\xe5\x88\x17\x8c\x0b\x32\x18\xe9\x4d\x9b\x4d\xb5\x62\x1b\x9a\x35\x1c\xb5\xa6\x24\x44\x9b\x81\x80\x85\x04\xe4\x31\xec\x26\x2b\x9c\xd7\x50\x0b\x70\x73\x14\xeb\x5f\xd4\x6b\x92\xe7\xe9\x93\x4b\x06\x5a\x98\x76\x43\x77\xf2\x2d\x2b\x1c\xfd\x9e\x59\x33\x2b\x27\x22\x9d\xc4\xb3\xc1\x1b\x2f\xaa\xaa\xd0\xc4\xe1\xea\x89\x16\x59\x63\xbb\xaf\x7e\x80\x7d\x65\xd5\xa1\xbe\x3e\xae\x58\x2b\x77\x40\x87\xaa\x75\x1a\x65\xf5\xb9\x86\x3d\xf2\x65\xcd\x76\x2e\xe8\x94\x4e\x95\x46\xde\x2c\xdb\x10\x33\x60\xdd\x45\x46\x25\x72\x6c\xfb\x89\x55\x3f\x6e\x8f\x73\xa5\x9c\xd8\x27\x75\x50\x3c\xcf\xaa\x9d\x92\x36\xd8\xde\x54\xe5\x11\x6d\xf1\x5c\x82\xfa\x09\xb6\x51\x6c\x6e\x8a\xdb\x1e\x46\x16\xe3\x38\x6c\x8b\x95\xe2\xcc\x4e\x48\x00\x58\xa1\x57\xa1\xc5\x9f\x56\x9c\x61\x82\x4d\xd7\xbc\x79\xb8\x6d\xfa\x06\xfa\x25\xb8\x85\x9a\x6d\x48\x6d\xe7\x6d\xcf\x19\xb0\x09\x9c\x75\x63\xd6\x24\x59\xc6\x97\xec\xa0\x22\x1c\x22\x29\xe7\x9f\x28\x7b\xc4\xe2\x11\x35\xc3\xc2\x0a\xf1\x63\xc1\x35\xc9\x7f\x84\x59\x74\x29\x30\x36\xec\xa9\xfe\x47\x22\x17\xd7\x84\x43\xd6\xb3\xbc\xfe\xcd\x7b\x13\xcd\x8a\x59\xac\x25\x1d\xda\x73\xd6\x0f\xb4\x04\x18\xd3\x76\xf0\xf9\x17\x91\xaf\x54\xe7\xe6\x5c\x2c\x31\xa0\xa9\x5f\xd7\xbb\xbc\x85\x15\x34\x44\xa1\x27\xdb\x40\xc4\x64\xdb\x7c\x05\xb9\x9b\xcd\xc1\x5d\xd1\xf4\xd7\x15\xec\xc2\xdb\xfc\x9a\xcf\xd6\x66\xda\x34\x4b\xac\x72\x00\x7a\xa0\x65\xd1\x61\xd0\x74\xb8\x5b\x60\xee\x82\x89\x8a\x9b\x96\x83\x02\xd8\x1e\xd1\x07\x60\xd5\xd7\xd4\x5b\x1f\x98\xcc\x46\x28\x80\xd4\x18\x1d\xfb\x58\x6f\x3e\x55\x21\x22\xae\xff\xde\x91\x07\x58\x57\xd3\xb7\x9c\x17\xc4\xd3\x24\x8d\xc2\xdc\x81\x53\xbb\xc5\x6d\x3c\x7a\x2e\xea\x28\x80\xcf\x90\x3e\x55\xda\x0a\x2f\x0c\x5e\x2b\x49\x85\x30\x73\x78\x5d\x21\x1b\x0a\xa8\x7c\x0b\xea\xe2\x72\x1d\xad\xce\x2b\xe4\xe4\x92\x33\x5a\xa0\xd9\x7b\x6e\x9a\xd4\xf8\x75\xd1\xac\xaa\xb9\xb3\x31\x9f\xe0\xb7\x4a\xe8\x6a\x33\x1e\x72\x33\x2c\xb3\xe5\xdf\x8a\x88\x19\xf9\xce\x92\x75\x63\x16\x9f\x3e\xfb\x6b\x4b\x32\x04\x4c\xc5\xff\x4c\x5f\x2c\xfd\x36\x59\x74\x5a\x96\xd8\x19\xa0\x1e\xd4\xc3\x2d\x8e\xf1\x16\x24\x03\x8b\x92\x46\x29\xa4\xe6\x82\x3b\xc0\xf4\xf1\xc2\xbe\x69\x3e\x0a\x66\x7a\xbc\xb4\xe5\x4b\xe1\xc4\x0e\xf5\xc2\xbe\x33\xd6\x92\xb7\x33\x6c\x0e\x2c\x4c\xc3\xea\x1e\x6c\x09\x0f\x1f\xf4\x0f\x79\xc2\x2c\x6f\x16\xc0\xef\x8a\x81\xd8\x62\x23\x2a\x8a\x70\xa8\xb0\xa8\x66\xbb\x2a\xc0\x55\x04\x6c\x86\x33\x72\x41\xc5\x87\xcc\x1f\xdd\xdb\xa9\xfd\x94\x45\x55\x59\x4c\xaf\x32\xef\xbf\xd0\xa7\x5a\x44\x72\xe7\xb4\xa2\xaa\x2a\x0e\x46\xed\x34\xab\x8f\x0f\xb7\xfa\x4c\x6d\x48\xb1\x01\x49\xc9\xfb\x69\x7e\x2a\x1f\xa6\xf4\xee\x6b\x8c\xa9\x2e\xb3\x6c\x07\xbc\x07\x8e\x06\x3a\x11\xae\xd3\xea\x50\xe2\x8d\xd8\x5d\xba\xb3\x13\x16\xa4\x16\x10\xae\x9d\x75\x40\x0a\xe0\x53\xe9\x40\x61\x63\xeb\x2c\x34\xb9\x26\x38\xc7\xe1\xd3\x09\xd6\x3f\x09\xec\xa6\x5a\xe4\x6c\x2f\x25\xc2\x21\xbd\x48\x07\xba\x2d\x48\xa5\xfa\x54\x17\xce\x32\x43\xb3\xc5\xae\x0c\xba\x8b\xbe\x60\x37\x06\x9c\x0d\x8f\xfd\x6d\xf8\xa0\x45\xcf\x2e\xde\xe8\x67\xb6\xdf\x95\x6c\xd3\xf2\x03\xfe\x0d\x09\x6e\xc0\x71\x7e\x60\xae\xc4\xd0\xad\x98\x93\x66\x04\xbc\xcc\x15\x8e\x7b\x76\x3b\xb3\xe5\x33\xe1\x47\xa3\x4b\xa8\x4c\x41\xbc\xed\x01\x2c\x46\x72\x05\x99\x72\x3c\x89\xe1\xd3\xce\x98\xaf\xdb\x9b\x7c\x53\x37\x1f\x7b\xc5\xa6\xb3\x7e\x38\xad\x98\xa5\xa6\xba\xd9\x8b\x7f\x85\x7c\x8e\xdd\x39\x2a\xd9\xea\xd2\x15\xae\xa7\x2a\x27\x72\x7e\x74\x8c\xe4\x49\x58\xaf\xbc\x6a\x11\x1c\x7c\x07\x27\xbd\xd7\x15\x4b\xcd\xe0\x71\x76\x34\x45\x83\x6e\xdb\x5e\x0d\x8a\x9e\xa7\x70\x1a\xac\x0f\x0a\xa5\x53\xe0\x20\x74\x86\x8e\xed\x40\x0c\x4b\x2c\xb3\x23\x2c\xeb\x0f\x16\xec\xbc\xde\x8a\xb7\xd4\x6f\x76\xc0\x85\xe9\x72\xca\x02\xb2\x67\xa4\xfe\x26\x83\x09\xcf\x11\xde\xb6\x76\x7c\x66\xcc\xd1\x32\x8f\x4c\x06\x10\x84\x60\x07\x8f\x3a\x9b\x92\x8b\x56\x60\x26\xf1\x7b\xa8\xc6\x68\x22\x3c\x5e\x11\x3a\x70\xfc\xa2\xdd\x44\x92\xde\x89\x1a\xf7\x5d\x3e\x63\x36\xc8\x7f\x8b\x83\x30\x77\x0c\xcb\xfa\xf6\x3c\x01\x51\x7d\x3c\x82\x9c\x14\xa8\xad\xad\x83\xc2\x74\xd2\xfb\xd1\xd2\xb1\x72\x37\x84\x85\x70\xe0\x4a\xec\xe5\x0c\x47\x64\x7c\xfe\xc6\x86\x4b\x9c\xaa\xc1\x9d\x40\x28\xab\xc1\x91\x9c\x54\x41\xa8\x82\xbe\xd1\x7b\x35\xe3\x58\x98\x11\x1b\xd4\xc5\x59\xcb\x01\xa8\xbf\x56\xac\x4e\x56\x76\x36\x1f\xf2\xb5\x5d\x47\xe4\x41\xfb\x6e\x62\x88\x1a\x71\xb4\x88\x7b\x81\x79\xb5\x38\x68\xf6\x4c\x8b\x14\x48\xad\x8b\xd9\x3f\xbe\x2c\xc5\x1b\x2f\x2b\x36\x6e\x59\xa3\xca\xab\x5d\xae\x70\x6c\xd7\x49\xfa\x21\x7c\x4c\x87\x7b\xaa\x29\x09\x80\x0d\x47\xf9\xfd\x30\x61\x56\xc3\x68\x54\x0a\x31\x76\x5c\x37\x72\xd0\xef\x8e\xba\x22\x7e\x92\x9f\x82\xc1\xd0\xbc\x89\x9d\xd7\xd8\xcb\x2f\x69\xe3\x7e\xc2\x7f\x4d\x4c\xc4\x32\xb8\x98\xde\xbf\xc9\xa8\x4b\xa0\xc6\xca\x99\x5e\x4a\x4c\x73\xdc\x63\x80\x85\x20\x66\xe5\xb5\xe4\x79\x64\xc3\x86\x35\xfa\xff\x99\xdd\x3a\x6a\xd0\xd9\xad\x7d\x57\x93\x35\xc1\x7d\x4c\x76\xd3\xd1\xea\xa0\x0c\xc8\x16\x4a\xd7\x81\xc4\xa0\x94\xed\x04\x07\x6e\x46\xf4\x15\x46\x13\x25\x41\xbc\x50\x92\xc0\xb6\xc2\xc2\x2b\x3c\x65\xe0\xe6\x25\xca\x4b\x3f\x32\xb1\xc6\xb3\x7f\x0c\xed\x8c\xb0\x22\xb0\x2c\xeb\xf0\x66\x2d\x92\xad\x6a\x7b\x5b\x46\x84\x9c\x49\x3b\xaf\xa5\xd1\xb1\xd3\x91\xaa\x44\xeb\x7a\xb5\xa6\x71\xd5\x5b\x3e\x8f\x05\x4d\xd9\xa1\x9f\xd7\x58\xf9\x17\x71\x95\x76\xd5\xb0\x7d\x8a\x5b\x10\x37\x25\xb7\xe9\x3c\xe9\x87\xae\x6d\x56\xcf\x4e\x5b\x56\x25\xd9\xca\xc3\x1b\xe3\x2f\x4f\x1e\x6b\x3a\x71\x4e\x9e\x43\x76\xdc\x7d\x59\x0f\xaf\xf6\x8b\x87\x7d\xbe\x22\xb9\x07\xdb\xe5\x93\x22\x5f\x77\xd5\xf5\xd3\x6f\x1f\xf4\xdf\x3e\xd3\x43\x78\xf1\x21\xbb\x69\x1c\x5a\x9e\x3c\x2e\x9e\xb1\x66\xd0\xb7\x1b\x5a\x2a\x71\x91\x76\xbb\x95\xf9\xa5\x5d\x60\x2b\x90\xe8\x3f\xce\xed\xab\x06\x98\xa3\x6e\x0a\x7e\xa8\xc2\x99\xa3\x75\x3f\x3f\x3a\x6d\x26\x02\x46\xb6\x13\x15\xc2\x18\x18\xc7\x91\xcd\x10\xec\x1d\x6c\x37\xc9\x5d\x31\x08\x0f\xe3\x62\x98\x48\x36\x45\x79\xb3\x8d\x19\x5e\xa0\x1d\xa0\x0e\x2b\x4f\x45\xa9\x27\x22\x45\x71\x9a\xb5\x29\xf2\x03\x7d\x19\x69\x05\xf4\xcb\x1b\x86\x99\x69\x21\x0c\x7b\x03\x0f\x13\x6c\xb2\xd4\x95\xbb\xc9\xe8\x95\xb7\xd9\x08\x02\xee\xa6\x38\xf1\xec\x2d\x85\x99\x62\x70\xd6\x8b\x90\xb3\x89\x13\x8e\x70\x37\x21\x49\xd2\x3e\x98\x77\x7f\x21\x67\x1b\xb5\xeb\x07\x6e\xcd\x7d\x01\x73\xc3\x98\x8e\x81\x0e\x1a\x0b\xec\x25\x3a\x53\x6f\xd4\x3a\x82\x0c\x92\x46\x02\x4d\xe8\x6d\xab\xa7\x49\xb9\x25\x62\x4e\x48\xf5\x19\xaa\x68\x31\x73\x27\xe0\x72\x27\xee\x2b\x30\xb8\xfc\x97\xbc\x2c\x88\x13\x0c\xed\x47\x22\xa6\x71\x11\xa4\x1f\x2a\xe4\x38\x8c\xe9\x1f\xca\x5f\x8e\x3d\x7b\x48\x35\x12\x3d\xbc\x3d\xc8\x62\x02\xce\xa2\xb5\x3a\xb7\x1e\xb1\x16\x55\x90\xfb\x17\x75\x53\x0a\x27\x51\x46\xa0\x7e\x32\x8e\x03\x90\x98\xd5\x30\x10\x4c\xba\xfc\xa1\xbf\xc3\x69\x89\xea\x0f\x96\x0b\x31\xf0\x7d\x13\x30\x50\x21\x87\xb9\xa0\xc2\x0d\xf2\x82\xd4\x4b\xf8\xee\x1d\x4b\x85\x57\x9c\xdd\xab\xe3\xaa\x9e\x81\x5b\x91\x97\x9a\x88\x35\x00\x40\x41\x78\xef\x10\x81\x5f\xde\xd2\x60\xb5\xa8\x7f\x83\x7a\xe5\x61\x0e\x88\xea\x8c\x65\xae\xc5\xdf\x21\x3f\xbe\x78\x4d\x7b\x86\x6b\xd0\x2a\xfd\xb5\x20\x71\x5a\xba\x70\xe3\xac\x1c\x4c\x6c\x29\xcf\x75\x7a\x80\x14\x37\xa3\x2a\x4a\x62\x89\xbb\x41\x8d\x06\x24\x83\x89\xf3\x05\xc7\x55\x1f\x58\x7e\xa4\x35\xf4\x24\xdd\xad\xdc\x50\xbf\x21\xcc\x3a\xfb\x23\x2f\xad\xdd\x2d\xf3\xff\xc0\xb5\xa9\x10\x0c\xdd\x80\x83\x27\x3e\x55\x04\x09\xeb\x47\xce\x4b\xb8\x73\xfc\xc3\x3a\xac\x1c\x24\x9c\xca\x90\x8d\x4c\x4e\xa6\x67\x2a\x93\xc5\xa6\x38\xcb\xce\xea\x89\xc7\x7c\x1f\x9f\x61\xc2\xf7\xba\xf9\x1d\x5c\x26\x1c\x55\x40\xca\x17\x93\xcd\x3a\x8a\x96\xa6\x13\x7e\x93\xcb\x46\x28\xde\x01\xdc\x8a\xa8\x18\x4a\x11\x81\x1b\x2c\xd5\x72\x53\x6d\xd8\x7f\x55\x5b\xf7\x27\xe4\x3a\xf4\xe8\x7c\x5c\x81\x02\xed\xb4\xf2\x72\xae\xa0\x22\x34\xdd\x59\x65\x04\x41\xcb\x0d\x47\xe2\xa2\xde\xdb\x7e\x7d\x72\xfc\xf6\xed\xf9\x95\xdf\xa6\x79\x1d\x34\x25\x09\x13\xdf\x38\xef\xb2\x51\xbf\xcc\xc7\xcc\x4d\x60\x0c\xe1\xbd\xdc\xb4\xc4\x21\xb8\x90\x4d\x59\xed\xf4\xb9\x6a\xc1\x7b\x5a\xee\x8b\xf1\xf2\xa8\xff\xe5\xa1\xf9\xcb\xde\xb3\x7c\xf3\x21\x33\x03\xf8\x39\xff\xcf\xc2\x33\x84\xe0\xdc\x06\x4b\xcf\x1f\xef\x78\xef\x72\xea\x40\x5b\x8e\xce\x14\xc0\xa4\xf7\x05\xf4\x23\xc2\x7d\x8b\xbd\xe2\x3a\xc7\xd1\xef\x11\x9b\x48\xdb\x0e\x0b\x86\x91\xbb\x6f\xea\x3f\xf6\x10\xd0\x58\x3b\x22\xe6\xc1\x4e\x8b\x8b\x7a\x23\x1b\xca\x9f\xdc\x0f\x49\xe7\xaf\xc4\x03\x3a\x68\x9c\x7e\x3d\xe9\x77\xec\x87\x49\x7b\x43\xff\xf4\xdb\x7d\x9d\xb3\xc5\x8d\xfd\x9e\xbe\x7d\x46\xba\x0c\xbb\x50\xd0\xf4\x11\xc4\xb3\xa0\x3a\xbe\x57\xe3\xeb\xfc\x4e\xd5\x56\xea\x2f\xd6\xd1\xa7\x62\xb3\x8f\x8d\x19\xbc\x6e\xb8\x4c\xff\x7d\x86\xa2\x6a\xd1\x4d\xef\xe4\x20\xcf\x7c\xa0\x39\x0f\x8e\xd0\x48\x9d\x18\x8a\xaa\x8f\x62\x92\x1b\xc4\x96\x9b\x07\xa8\xe0\x75\x89\x56\xab\x10\xdd\x7a\xe6\xe6\x96\x7f\xbf\xec\x6a\x38\x72\x4b\x3a\xdf\xc0\xca\x83\xdb\x57\x2e\xd1\xb7\x7b\x49\x44\x43\x63\x9a\xad\xea\x81\x94\x56\xbe\x75\x05\xb7\xdf\x8c\xd6\x1c\x6d\x03\xb8\xbb\x25\x5f\x96\x32\x2a\xca\x3b\xa6\xc0\xc2\x06\xc5\x72\x9a\x92\x0f\x7f\xe8\xef\x89\x52\x0a\x68\x37\xc7\xf8\x38\xa1\x25\xa5\xbd\xe6\x55\xf3\x9a\xfe\xd1\x8e\x28\xf2\x73\x3c\xc7\x22\x1c\xa2\x12\xb5\x90\x88\x1a\xeb\xea\x51\xc7\x2f\x9d\x15\xf5\xf8\x0a\xe6\x45\x3d\x85\xd5\x24\x0d\xb4\x21\x21\x7f\x8e\x04\xbd\xb0\x45\x3d\xa1\x59\xf8\x24\xb2\x84\x5c\xe1\x7a\x6d\x29\xdf\xb1\xfe\xf4\xfd\x01\x43\x6d\x7a\xda\xf9\xf5\xf6\xda\xb4\x86\xbb\xcd\xb6\xec\x0a\x33\x67\x23\x7c\xae\xee\x52\x91\x93\x40\xa6\x17\xca\xec\xfa\x8f\xbb\x51\x26\xf7\x7f\xc2\xdc\xc3\xcb\xca\x8c\x08\x45\xbc\xba\xe0\x69\xb8\xa0\xd5\xf1\xed\x33\xc1\x99\x2d\x2d\xab\x55\xa7\xe0\x4c\xef\xb4\x05\x73\xa0\x10\x33\x5c\x55\x98\x9b\xfa\xc8\xbe\x24\xac\x9a\xa9\x3d\x64\x1a\x2a\xe2\x84\x2a\x8d\x14\xc1\xf5\x87\xc7\x2f\x5f\x5f\xe1\xf2\x03\xcd\x18\x9c\xd5\xed\x86\x07\x3b\xa2\xce\x5c\x9d\x76\xe0\x06\x10\xf3\x5d\x7d\x2d\x89\x5a\x8e\x13\xa1\xf7\xc5\x67\x13\xe6\x16\x53\x84\x37\x65\x32\x59\x9a\xb6\xde\x75\xa1\x5e\xbb\x15\x8f\xab\x0f\xec\x3f\x1e\x2f\x75\x5c\xe9\x0b\x30\x1d\x3a\x6d\x31\x63\x2e\x79\x67\xd9\xdd\xce\xd9\x66\x8a\xcd\x64\x77\x9b\xc1\xb5\x89\xf6\xdd\x39\xc4\x12\x49\x04\x6b\xdf\xd4\x3b\xb9\x71\x4a\x19\x75\x25\x0e\xce\xf8\x38\xff\x97\x4c\x50\xe8\x66\x18\x84\x82\x6b\xa8\x9c\x41\x5b\xc8\x2f\xe0\xb4\x03\xab\x8a\x72\x62\xf3\xf4\xdb\xf9\x82\x38\xc5\xc7\x6f\x03\xd5\x91\x2f\xac\xb2\xbe\xf8\x0d\x49\xb0\x37\xea\x57\xf0\x9b\x7c\x65\xf6\xfb\xcf\xf8\xb5\x67\x87\x59\x71\x62\xe0\x8f\x4c\x7f\xf1\xc1\x47\xa6\xd7\x18\x99\x25\x66\xac\x3e\xe8\x7c\x92\xea\x10\xf2\xaf\x3f\xf6\x3c\x4a\xd1\x7a\x9f\xe6\xff\xca\xbf\xf2\x97\xfc\x4b\x87\xc2\x6c\xc1\xad\x71\x50\x4d\xc2\x28\x42\x07\x50\xf0\x3d\x75\xc3\xf6\x3c\x41\xbc\xc6\x02\xec\xab\xbb\x98\x01\xf2\x1d\x8a\x6c\xb7\x67\xd7\x18\x9e\x77\x6b\xed\x82\x52\x70\x21\x85\x13\x79\xf7\x0d\x6a\x70\xa7\x62\x51\x1d\x99\x63\x35\xca\x62\x86\xae\x82\x58\x4b\xff\x34\x0f\x97\x5e\x87\x02\xe7\x20\x02\x44\x24\xf7\xff\xe5\x57\x94\xa2\x10\x55\x98\x95\x29\x28\xf2\xd3\xeb\x8f\x7c\x59\x72\x7c\x49\x72\x53\x2c\x2a\x24\xbf\xc1\x07\x2d\x04\xe2\x9c\x03\x21\x0e\xd6\x18\xf7\x23\xe3\x9e\xd7\x83\x38\xfe\xe2\x2b\x53\xb7\x74\x39\x01\x93\xcf\x0c\xe7\x0b\x5d\xc1\x3e\x9a\xef\x8a\x1b\xf9\x49\xf8\xd7\x5b\x94\xaf\xe4\x4b\x92\xe1\xf1\x2b\xa0\x70\xf8\x75\xf0\x90\x53\x94\xb2\x2f\xec\x3b\xb3\x0e\xcc\xc6\x1d\xb1\x9c\xe4\x12\x67\xbe\x4c\xf2\xaf\x45\xdb\x7a\xc1\xba\x96\xa5\x15\xe0\x8a\xb9\xf9\x50\xb9\xf4\x2d\xb1\x14\xb1\xba\x9f\xc9\x97\xcb\x29\xc5\xbd\xef\x14\x7b\x8a\xa6\x99\x07\xf6\x39\xff\x77\xa9\x44\x46\xba\xaa\xe8\xbf\xf3\x66\x96\x3b\xce\xac\x66\xc9\xad\x51\x9f\x3c\x4b\xe7\x22\xc8\x6a\x78\x83\x5e\xe0\xb4\x83\x56\x04\xf2\xc3\xec\x25\xe1\xbf\x9b\xbb\xf2\x27\xfc\x33\xdf\x8c\x6a\x71\x93\x1b\xce\x6d\xd2\x4c\x08\x43\x4d\x4d\x82\x49\x73\x21\xa4\xb4\xb8\x9d\x02\x26\xd1\xba\x89\x60\xcf\x29\x21\x24\xad\xa8\x62\x16\x0a\x93\x9a\x21\x27\x4e\xc3\xd3\x86\xc3\x77\x5d\x20\x29\xeb\xe7\xb8\x9f\x01\x90\x74\xb3\x98\x00\x65\x83\x85\x87\xa3\x81\xa7\x40\x6a\x53\x73\x6c\x22\x9d\x3d\x3f\x3f\x34\xb5\xe9\x04\x49\xe6\x9c\x24\x91\x65\xe5\xfc\xf5\x01\x84\xbd\x9c\xef\x1b\x47\xcd\xb8\xca\xb4\xb1\xa8\x3e\x20\x74\x28\x16\x94\xfd\xa0\x04\x36\x5d\x61\xc6\x95\xcf\x12\xd4\x59\x26\x2d\x2e\xf6\xf1\xb6\x9a\xa3\x2a\xc3\x3c\x12\x3b\xe6\x22\x48\x09\x22\x9c\x50\xb5\x99\x28\x71\x27\x45\xa5\x30\x07\x6b\x1e\xd1\x8d\x96\xbc\x63\x7a\x3d\x04\x5f\x24\x3e\x5c\xf5\x81\x72\x2a\xf7\x40\xda\x19\xe7\xcc\xf8\x56\x87\xe3\x9f\xc7\x70\x85\x00\x0f\x9d\x02\xed\x35\xee\x00\x6d\xbd\xbc\x4f\xbb\xae\x96\x6a\xbd\x98\x2a\x24\xb3\x5c\xce\x17\xb7\x5a\x46\xe6\x19\x77\xd7\x0e\x14\xd9\xb2\x37\x05\x36\x65\x2d\x72\xe6\x12\x26\x8a\xf4\x7a\xf7\x95\x2f\x9f\x8e\x73\x66\x2c\x11\xc3\xdb\x82\x79\x53\x3f\x09\xc2\x54\x0a\x90\x73\x7c\x4c\x81\x88\x4d\x4f\xb5\x72\xde\x05\xc4\x61\xdc\x8e\x02\x27\x1b\x66\x17\x12\x57\xe2\x0d\x1c\x4a\xba\x2f\x28\xc7\xde\x96\xcc\x57\xc5\x84\x7b\xd6\xc2\x17\x13\x3f\xef\x68\xc7\x17\x90\x86\x46\x25\x78\x25\x61\x16\x08\x44\xbe\xf3\x07\xef\x7f\xf8\xd0\xf3\x34\x78\xeb\xf8\xfb\x1f\x3f\x90\x94\xf3\xe0\xfd\x4f\x1f\x60\x16\x1f\x15\x9e\x5f\xb3\x55\x68\x5c\x03\x0a\x1a\xf4\xae\xab\x3e\xd5\xed\x1e\x1b\xb0\x7e\x7a\xfe\xf0\x59\xa6\xe2\xf3\x10\x2f\x71\x77\x07\x37\x59\xe1\xa5\xcb\x8a\x57\x78\xb3\xdf\xce\x75\x8c\xbd\x70\x00\xfb\xe5\x8a\x1b\x06\xe6\x05\x37\xf9\xbb\xfb\xcd\xc3\xad\x4b\x1e\x2c\x75\xde\x84\xbb\x7f\x92\x5f\xcf\x30\x10\x1e\xfa\xef\xae\xa5\x36\x30\xa8\x5f\xc9\x35\x62\x96\x85\x9d\x69\xff\xb6\x1a\x66\x31\x57\xb2\x58\x09\xe8\x72\x9c\xa5\xbd\x88\x41\xd4\x23\x15\x39\x06\xde\x55\x40\x8c\xc1\xbd\xc3\xcf\x24\x33\xad\x4c\x80\xa6\x6a\x53\x56\xeb\xa9\xe4\x24\xc9\x17\x5c\x2b\xa6\x64\x1b\xfa\x3a\x34\x49\x97\x5c\x1d\xf6\xf3\x2b\x6b\x11\x79\x82\xe4\xcc\x6b\x57\xcf\x35\x61\xbc\x59\xc2\xf8\x0a\xfb\x34\x0f\x55\x7d\x12\x05\xfa\x2b\x9b\xd8\xb5\x1a\xe9\xe5\x02\x1f\x96\x2c\xb7\x31\xd5\x81\xdc\xd1\x66\x64\x19\xd2\x44\xbb\x9f\x43\x52\x3c\x29\x35\xe0\xd8\x76\x27\x87\x8f\x28\x38\x29\x02\xad\x9b\xb9\xf9\xa1\xab\xa0\x4f\xcc\x92\x7d\xad\x64\x44\x44\x46\x7c\x0d\x51\x8d\x8d\x07\xaf\x4c\x45\x27\x58\xc1\xcd\x19\x9d\xd2\x70\xb5\x56\x25\x2c\x08\xbf\xd2\x3f\x87\xd7\xc4\x7f\xc4\xfa\xc7\xad\x50\xf7\xe9\x9f\x25\xc9\xbe\x68\x8b\xce\xef\xdb\x71\xfe\xb2\xdd\xb4\x7e\x5f\xc7\xaf\x14\x40\x8c\x7f\x0f\xca\x44\x36\x93\x6c\x4f\xdb\xba\x7a\x41\xb8\xf1\xce\x23\x90\x13\x83\x91\x8c\xc4\x3b\x2a\xce\x74\x17\x23\xa4\x83\xb8\x1e\x61\x17\xcf\xc7\xb5\xa8\x8f\x11\x40\x9d\xf5\x71\x12\x6c\xca\xcc\x2c\x52\x46\x68\x56\x66\x99\x3d\x3c\x94\xe7\x83\xd5\xc0\xd2\xac\x35\x1f\x36\x2c\x4f\x37\xed\x2d\xcc\xd2\xd3\x7b\x4e\xb0\x44\x09\xe2\x15\xb5\x2b\x88\xf4\xc4\x4b\x43\x75\x09\x4e\x51\xe7\x94\x7e\x1a\xce\x06\x6a\xc0\xc3\x4d\x9b\x3b\x2d\x0c\x61\x88\x78\x23\x28\x72\x2e\x6c\x97\xab\x40\xfe\x5a\x7e\x96\x54\x8b\x7b\xb4\x4f\xe1\x1e\x96\x36\xa8\x2d\x3c\xcd\xf5\x4b\xf3\x75\x8b\x73\x8a\xe3\x0b\xfc\xd6\x4e\x28\x0c\xf1\xe6\xae\xea\xf7\x1b\xec\x01\x38\x79\x93\x1f\xd7\x72\x66\x64\x40\x7c\xfa\xbf\x12\x7b\x81\xb5\x15\x30\x72\xe4\x9a\x2b\x00\xe7\x2e\xaa\x65\x01\x4f\xd0\x42\x59\xf3\x9a\x96\x64\x30\x7a\x02\xe1\xf0\x01\x56\x3f\xbb\xd6\x86\xd1\x79\x98\x6d\xb9\xea\xcd\x94\x91\x60\x6a\x51\x0d\x37\x3c\x75\x72\x34\xcf\xc8\x15\x9b\x43\xff\x73\xb8\x19\x13\x07\x7b\x8c\x36\x1e\xf3\x8e\x5c\x2a\x37\xfb\x27\xfc\x10\x9e\xa6\xa8\x4c\xe4\xf5\x50\xed\x55\x10\x2c\x68\x9b\x54\xa6\x38\x1c\x38\x6d\x2b\x6a\x14\xbb\x78\x69\x2a\xa4\xf0\xd6\x27\x7c\x13\xca\x98\x27\xbe\x89\x88\xf9\xe8\x5d\xd3\x7f\x72\xe9\x5a\x3f\x6a\xd2\xcd\xda\x9a\x91\xb4\x7f\xac\x7a\x2a\xfd\xff\x7f\x30\x1a\x25\x69\x7f\x1e\xb2\x4b\xd0\xa7\xff\x19\x41\xa5\x9a\xb3\xcf\x13\x83\x29\x08\xaa\x32\x57\xbd\x52\xf3\x75\x63\x25\x52\x11\xd4\x38\x6f\x7c\xc9\xd0\x73\xa5\x70\x26\xa9\xd7\xa4\xc5\xf3\x5a\x57\x6c\xba\xe3\x95\x59\x84\x1a\x48\xb1\x9d\x6f\x89\xa9\xc6\xe5\x5c\x8d\xaa\x75\x8b\x5b\x61\xe2\xb5\x2d\x55\x70\xd8\x1e\x5a\x1f\x76\xa8\x46\xbf\x9c\xc9\x7e\xba\x2e\x85\x2d\xf7\xde\x7b\x9a\xb1\x48\x85\x60\x91\x0a\x58\x96\x5b\xbe\x45\x33\x87\x55\x1a\xdd\x08\x63\x21\xb0\xdd\xd1\x06\xce\x10\x8f\x92\xd1\x8b\x29\x29\xe9\x4a\x50\x2d\x0c\xbe\x87\x6a\x7e\x38\xdc\x5d\xb7\xad\x50\xb9\x77\xc0\x0b\x92\x4f\x9f\x36\x35\x87\x81\xb1\xa5\x65\xa6\x89\x83\x4d\x4e\x85\x6c\x0a\x8d\x56\x84\xa3\x56\xee\xd3\xc3\x85\xa4\x1e\xa2\x09\x4d\x97\x3c\x26\x37\x5e\x79\x81\x81\x29\x30\x85\x78\xd5\x31\xc8\x9e\xd0\x73\x83\xdc\x69\x5d\x37\x05\x28\xbd\x05\xe1\x41\x1f\xb5\xdd\xce\x69\xca\xe7\xaa\x88\x10\x9b\x64\x02\xc0\xaf\xb4\x0b\x26\x81\xa7\x55\x3b\x59\x36\x1e\x11\x6d\x49\x0b\xe6\x8d\x72\x09\x52\x78\x4f\x60\x54\x23\xd4\xa9\x7b\xbf\x1e\x2f\xea\xbe\x16\x55\x9f\xb0\xae\x49\xec\x98\x34\x82\xfb\x85\x61\xc6\xc4\xa9\x4f\x98\xeb\x07\x7d\x4a\x23\x66\x33\x56\xfe\x9d\x85\xfd\xf9\x3e\x1e\x64\x25\xce\xac\xfc\x3f\xcc\x70\x71\x21\xb4\xaa\xb9\xac\x10\xad\x11\x95\x6b\x8a\x8f\x97\x70\xe4\x6e\xe7\x3d\xbc\xa5\xea\x1e\x6d\xb7\x8f\xca\xf2\xe1\xc4\xa8\x83\x1d\xdd\x0d\x3b\x71\xc6\x51\xe5\x39\x59\xfe\x41\x4d\x81\x78\x34\x8d\x3b\x06\x88\xe6\xe9\x37\xde\xd9\x2a\x3e\x4f\xc9\x4b\x8f\x37\xec\xdd\xc1\xdc\xf5\xcc\xd6\xda\x1d\xa1\xdd\x1d\xf0\xf3\x12\x93\x5b\x5f\xe1\x48\x12\xc1\x32\xc8\x4a\x2e\xa7\xde\xd9\x3d\xc3\x83\xca\x24\xcc\x92\xb6\x07\x50\x22\xa1\xba\x0e\x22\x24\x10\xe8\x3c\x52\x9d\x50\x37\x01\x38\x25\xd2\xf9\xb6\xff\x23\xc5\xba\xa9\xc6\xa7\x48\xe0\x3e\xc1\x6e\x2a\xde\xa0\xa5\xcd\x84\xbe\x71\x99\x40\xbe\x7c\x56\x10\xdc\x42\xf7\xce\xe0\xb7\x07\x5b\xb7\xed\x47\x09\xf0\xb1\xc0\xa7\xcf\x59\xd5\x83\x65\x72\x40\xb5\x57\x71\x2e\x89\x4b\xf5\x32\x8c\x6b\xf8\x9c\x13\x26\xba\x58\xf2\x1c\x77\xf3\xbf\x89\x29\xed\x14\xbf\xf2\xff\xc1\x84\xe1\x40\xf4\x26\xc0\xb9\x05\x74\xb9\xe4\xfb\x00\x2e\x57\x9d\xb6\x83\xa6\xd4\xc7\x7c\xdc\x96\x7a\x35\xf3\x01\xc5\x97\xf9\xe9\x4f\xf9\xe7\xc7\x97\x06\x67\xbe\x76\x77\xed\x88\x4f\x32\xf4\xf3\xdc\x6e\x2e\x8d\xc1\xdc\xc1\x9d\xbf\xad\x14\x1f\x33\xb2\x3b\x51\x23\xde\xc8\xb8\xb1\xc4\x37\x9b\x38\x29\xbe\x26\x45\x74\xe7\x22\xb8\xa9\xa2\x08\xe5\x15\xce\x39\x7d\xd0\x3d\xc4\xc4\xc4\x9d\x45\x96\x36\x7a\x39\xa6\xd5\xbb\x57\xe2\xb2\x2f\x0a\x6e\xe1\x94\xce\x1e\xa7\xd2\xc9\x49\xb3\xb9\x21\xfa\x60\x1b\xe2\xf3\x6f\x5d\x45\x5e\x30\xbd\xc9\xb5\x15\x60\x3a\x38\xf9\x4c\x00\x0d\x29\xe7\xc4\x3f\xc4\x7b\x4c\x8a\x15\xd1\xb5\xaf\x21\x30\xbc\x88\xc7\xc7\xa2\x58\x7e\x74\x3d\x62\xf6\x54\x75\x03\x2e\x5c\x8d\xd1\xce\x1e\xdf\xb4\x80\xe6\x3f\x50\x33\x8f\x20\x63\x48\xcc\x39\x0c\x42\xd6\x5f\x7d\x1d\xe0\x03\x4e\x70\xec\xd4\xf6\xa9\x2e\xf7\x44\x7d\x3c\x17\x77\xd5\xfb\x63\x5c\x2f\xad\x78\x1c\xb8\x1e\xac\x3b\x99\x4f\x16\x38\x6a\xc4\x7f\xe0\x8b\x8e\xb8\x71\x77\xed\x2f\x92\xf6\x53\x2d\x33\x13\x72\x4a\xba\xe2\x00\x17\x42\x73\x7f\xa3\x2a\x64\x55\xc2\x87\xe0\x86\x23\x9e\xb2\x26\x4a\xfd\x9c\x8f\xe6\x23\xc6\x96\xdc\xd2\x73\x92\xd7\xbd\x8e\x40\x23\x42\x48\xb0\x94\xd4\x07\x84\x05\xee\x3a\x36\xfb\x3c\x7c\x0e\x9a\x75\x2b\xda\x99\xc9\xb5\x21\x49\xd4\xcd\x72\xb3\x87\xe3\x21\x33\x23\x16\x86\x8f\x94\x07\x1f\x39\x63\xa0\xdc\x4d\x0a\x3c\xbb\x3c\x0f\x6c\x23\xcc\x26\x7d\xc5\x89\xb5\x20\xe0\xf5\xa8\x69\x7f\x65\xea\xc8\x7b\xc2\x38\x17\x01\x96\x4d\xd9\x01\xa8\x29\xab\x1d\x47\xd2\x63\x4f\xd0\x6b\xd9\x6d\x85\xe7\xdf\xd3\xea\x8f\x77\xb5\x2a\x0e\x3c\x53\xcd\x9a\x5b\x99\xde\x41\xc6\xa2\xe5\xb8\xaa\xf7\xb4\xf6\x93\xb5\x16\x6e\x59\x1f\xab\x6a\x17\x34\x11\x77\x3f\x70\xb3\x07\xf3\x8c\x3d\x74\x26\x38\x9a\xde\x2e\xb3\xeb\xa8\x07\x98\x78\xb0\x13\x06\xde\x1f\xb6\x9b\xdd\x73\xf5\x66\xbc\x40\xcc\x72\x87\x60\xc0\xb0\xde\x39\x18\xb6\x5c\xcc\x03\xce\x0d\x47\x47\x63\xc9\x13\x55\x89\x03\x65\xe2\x96\xe2\xef\xa7\xba\xae\x59\x81\xee\x70\xf7\x62\x1f\xb9\x7c\xc2\x37\xce\x81\xb2\x03\x72\x48\xac\xb9\xb8\x9d\xf3\x78\x4e\x82\xe4\xc3\x05\x12\x67\xef\xa8\xae\xd8\xd9\x3b\xe8\xa0\x50\xd1\xa1\x7a\x4e\x26\xeb\x50\xca\x0b\xa7\x96\xaf\xa1\xd7\xb8\x70\x3c\xd7\xd8\x48\x1a\xc8\x3a\xbd\xf1\xab\xb9\x37\xeb\x36\x88\xcc\x21\x1e\xe8\xd8\x8b\xc2\x8e\xcc\xe2\xb1\xde\x88\x78\xa2\x78\x51\x61\x25\x91\x62\x6c\x6f\x31\x51\x06\xaa\xe2\x76\x4f\x5b\xe7\xa6\xfe\x08\x03\x0f\x11\xa6\x84\x2e\x3d\xbf\xbc\x82\x55\x87\x16\x00\xed\xa3\x2b\xe6\xbb\xf9\x9f\xd7\x55\x83\xc8\x7d\x1c\x41\x54\x19\xd1\x72\xc9\x17\x47\xea\x46\x83\x9b\xdd\x54\xe6\xce\xdb\x94\x1b\x61\x5b\xe1\xfd\x22\x93\x1e\xc4\xba\x93\x23\x4a\x28\xaf\xb4\x7e\x57\x2d\x49\x26\x9e\xf1\x69\x4d\xd7\x20\xa6\x77\x6e\x06\xe1\x3b\x1d\x50\xdc\x48\xe0\x09\xc2\x46\xa0\x00\x2d\x8a\x92\xd0\xa8\xa9\x7b\xf0\x08\x3d\x29\xe8\x94\x14\x6c\x18\xbe\x4b\x06\x06\x7f\x15\x2f\xd2\x9a\xd9\x75\xae\x2e\x10\x77\x39\xe7\x1f\xec\x43\x18\x5c\x4e\x9a\xbe\x47\x14\x4e\xab\x9a\x79\x7d\xdc\x94\xf0\x09\x90\x7e\xd7\x8a\x5f\xdf\x3b\xfd\x1c\x03\x89\xb6\xc4\x3d\x79\x25\x5f\x63\x90\x9d\x46\xad\x71\xf1\x6b\xc6\x20\x8b\xb6\x64\xfd\xe7\x39\xfd\x1b\x0b\xd1\x2e\xc2\xb5\x49\xd2\x20\xce\x1d\xdf\x94\x96\xc3\x51\xce\x20\x74\x57\x9b\x6b\xb9\xf5\xce\x16\x17\xa8\x7b\x62\xc0\x62\x6f\x52\x09\x8a\xc8\x8e\x4c\xa8\x40\xef\x38\xc1\x7d\x1f\xa1\x9e\x42\xeb\x94\x5e\x8a\x0c\x6f\xb9\xa5\x7d\x82\xb1\xdd\xfa\xf5\x5a\x64\x10\x4c\x03\x94\x5b\x89\xcb\x75\xc4\x5b\x0b\xeb\x85\x76\xfc\x65\x1b\xd0\x4e\x62\x71\xf1\xcd\x14\x22\x6a\x04\x92\x30\x10\x91\x61\x25\x98\x70\xe0\x4c\x6a\x57\x4d\x41\x6c\x40\xd8\xb8\x47\xea\x88\xcb\x08\x12\x17\xdc\x11\x84\x3f\x9c\x03\x90\x5d\x79\x49\xf7\x19\x05\xf7\xba\xc2\xab\x68\x3d\x04\x1c\x25\x0a\x3d\x8e\x8e\x6a\x84\x2d\xb1\x4e\x32\xa7\x30\xe3\x64\x60\x04\x64\x5c\xb1\xcf\x5d\xb0\xba\x79\x9b\x26\xe1\x48\xa4\xe8\xae\x5a\x15\x5d\x69\xe1\x35\x94\xd3\xf0\x75\x02\x70\x94\xf0\xfa\x64\xb1\x21\xe5\x5b\xab\x20\xce\x48\x20\x1f\xd9\x9b\x87\xe6\x9b\x65\x1c\xb3\x37\xb0\xb4\x58\x0a\x1b\xe3\xcb\x5b\xc4\x5c\xf6\x3b\xe6\x37\xc2\xbc\xac\x1d\x0c\xf9\xbb\x7f\xbe\x3c\x7f\x7b\x94\x7f\x7e\x74\x73\x73\xf3\x88\x8b\x3f\xda\x77\x1b\xbe\xe6\x54\x72\xf8\x8e\xff\x7e\xf6\xe6\x28\xaf\x86\xe5\xf7\x33\x52\xd4\xc1\x86\xfc\xea\x56\xe7\x42\x98\xd3\x99\xba\x58\x74\xfc\xfb\xd9\x93\xae\x18\x0d\xee\x1c\x46\x7d\x0a\x37\x48\x9e\x3d\xf3\x59\xd0\xc9\x14\xdf\x05\xaf\x1c\x56\xcb\xae\xc2\x91\x3f\x3e\x82\x8c\x0d\xe9\x04\x53\xd7\xb6\x53\x90\x9a\xda\xd1\x6e\xbc\x5e\x6a\x70\xe9\x04\xc4\x4e\xb8\x4e\x70\xb6\xe5\x32\x31\x71\x6e\x5b\xe1\x08\x5d\xfd\xba\xdd\x6f\xca\x98\x63\x12\xce\x74\x22\xaa\xf2\x97\xb4\x30\xfc\xe9\x10\x89\xf6\x69\xfe\xcf\x6c\x29\xe2\x89\x12\xda\xe2\x2c\xa3\x2d\x00\xcf\xd2\xc2\x08\x99\x16\x08\xc6\x34\x00\x09\x05\x67\x82\xb9\xcf\x73\xc2\xf9\xa8\x12\xd5\xdf\xd8\x57\x60\xc8\xb7\x4e\x9f\x03\xad\x49\x75\xe3\x22\xb1\x9d\x6e\x3a\xdb\xf0\x22\x3e\x7a\x12\xa1\xba\x58\x99\x11\x6b\x0a\x0f\xb9\x38\x13\x4e\xa2\x28\xe0\x8f\x00\x65\x2e\x12\x7a\x37\xfa\xb5\x0b\xc6\x94\x6b\x8c\xc0\x2a\xcd\xf0\x86\xde\xd3\x6a\xc0\xad\xe2\xa9\xb5\x28\x1a\xb5\x9b\x35\xbf\x7a\x8c\xbf\xe9\x0e\x27\x92\x89\xdc\xc1\x88\xb8\x07\x58\x47\x2c\x73\xdd\xa4\xbb\x58\x2a\x6e\x29\x6f\xf2\xa2\x8c\xf2\xa6\xd1\x76\xad\x80\x49\x1b\xa3\x5d\x52\xa5\xe3\xb1\xcc\xef\x5b\x38\x24\x10\x88\x67\xca\x5c\x47\x69\xd1\x3e\x70\x91\xed\xd4\xa5\xc5\xe2\x95\xad\x52\xf0\xdd\x78\x89\x32\x42\x64\x1d\x85\x1c\x95\x05\xb5\xf8\x1c\x9b\x41\x70\xff\x92\x7d\xcd\xcd\x2f\x7b\x74\xfb\x34\x14\xa1\xa5\x56\xbb\x49\x24\x37\x9e\x92\xcc\x34\x9a\x7e\xba\xb2\x49\x56\x93\x87\x3e\x4e\xe4\x2b\xc4\xd6\x6e\xd3\xde\xda\x05\xdd\x53\xfc\xd2\xa8\x1e\xe1\xc8\x3c\x98\x0e\xca\x43\x06\xc6\x97\x76\x1e\x57\xf7\x97\x20\xbe\xa3\x8a\xb8\x0d\xeb\xbb\x28\x4a\x30\xa1\x1a\x13\x19\xbc\x27\xba\x37\x71\xc7\xd3\x41\xa5\xb7\x51\x4f\x5d\x0b\x07\x6e\xa3\xc6\x45\xc3\x1b\xa9\x41\xd1\x2f\xb8\x91\x1a\x23\x69\x7c\xdf\xd4\x0f\xf5\x0b\xae\x9c\x4e\x0d\x7a\x2c\xd7\x4e\x21\x7e\xa2\xc0\x94\x74\x5b\x86\x63\xfb\x82\xab\xa7\x89\x66\xfb\x25\x02\xee\x54\x4f\x3c\x4a\x02\xe4\xde\x67\xf1\x2d\xeb\xeb\xeb\xd9\xa2\x6b\x6f\x7a\xbe\xdf\x89\xd0\xf4\xcc\x65\xf9\x77\x7e\x89\xdf\x02\xc2\xc7\xd7\x20\x0a\xf9\x90\x44\xf5\x92\x79\xaa\x27\x62\x92\x88\xb3\xc3\x34\x04\xf7\x29\xe5\xc8\x39\xe2\x5b\xd2\xc4\x8e\x2d\x67\x26\x45\x68\xa3\xbb\x99\xf3\x17\x6e\xa6\xc2\xfa\xcc\xc6\x52\x14\xba\xe4\x14\x05\xe3\x4f\x43\xb8\xed\x4a\x70\xd0\x92\x93\x56\x11\x5f\xbd\xe5\x08\x84\x65\x70\x04\x46\xc4\x50\x43\x3e\xf5\x20\xe1\x0d\x34\x82\x30\x5c\x7a\x08\x45\x10\x16\xfd\xf3\xd7\x6f\xe5\x27\xbc\xae\x35\x4a\x0c\xdc\xae\xf9\xc0\x37\x33\x5f\xee\xd9\x94\x4f\xb7\xe5\x89\xc7\xbc\x98\x39\xec\x91\x22\xfc\x72\x10\x65\x57\x5c\xe3\x18\x88\xff\xbb\x54\x92\x81\x7d\xb1\x8b\xae\x7a\x94\x16\x23\xe4\x08\xaa\x2f\xf1\xe1\xd2\xf5\x18\x87\xff\xb9\xb4\x02\x6e\x07\x4f\x83\x91\x7b\x8c\xd8\xf9\x36\xd1\xdd\x83\x3e\xef\x6b\xb6\x9d\x2a\x81\x26\x0d\x82\x3a\x7c\xe0\x53\xd0\x0e\x9e\xed\x31\x08\xda\xa1\xdd\x25\x53\xda\xac\x1b\xb9\xe7\x66\x79\x50\x5b\x2d\x52\x55\x54\xc6\x47\x3f\x35\x6b\xb0\xbf\x0f\x40\xf9\xd8\xfd\x97\xe1\x35\x03\x16\x05\xf8\xda\x3d\x9b\x83\xfa\xf5\x2c\x9d\x08\x67\xce\x54\x9c\xe5\xf8\xed\xa0\x4c\x32\x64\x72\x99\x6f\xcb\x40\x38\x14\x02\x0a\xb7\x95\xb3\xa2\xfb\xc8\x81\xe1\xe1\x14\x65\x15\xdc\x74\x1a\x5d\x88\xff\x87\x33\xa6\x0f\x12\x5c\xc8\xd7\xa8\xc1\xd8\x91\x19\xa5\x61\x0f\x30\x66\xea\x0a\xb0\x34\x2b\x22\xd9\x1b\xf9\x92\xa7\x95\x52\xca\x18\x5f\xb7\xa6\xbc\x47\xe9\xbc\x05\xf0\x0e\xd1\x7f\xae\xfe\xf7\xff\xfc\x5f\x6c\x2e\x6d\x69\xb7\x44\x6c\x04\x0d\x39\xe8\xe7\xdd\x2e\x47\xf9\x67\x2d\x1e\x81\x47\x07\x1d\x11\xf4\xe7\x1a\x6e\x80\xbe\x46\x34\xca\xb1\xe5\x8d\xbe\xd9\x35\x2c\x21\x72\x28\x89\x9e\xcc\x71\xf4\x98\xd6\x61\x44\x35\xd7\x3d\xc2\x85\x3c\xb3\xc9\xc5\xa4\x49\xcc\x21\x25\xba\xe9\x2d\x25\x7b\xdf\x76\xab\x0f\x3e\x30\xa6\x9b\x88\x28\x28\x26\x34\x43\x0f\x63\x08\x7b\xc9\xe4\x37\x7e\x59\x48\x34\x6d\x89\xc2\x0b\x57\x26\xbb\x8d\x39\xb3\x1b\x33\x12\x29\x4f\x8f\xa4\xa3\xb7\xc4\x70\x8f\xc6\x8c\x90\x26\xaf\x95\x99\x9e\x95\xf2\x2d\x0e\xfe\xe0\x60\x86\xfc\xce\x12\xd3\x89\x9c\x72\xbd\x46\x02\x2d\x40\x24\x20\x50\x27\x6e\xaf\xf0\xff\x0c\xe1\xd1\xd4\x52\xc6\xa9\xfa\xa5\xe9\x49\x08\xb6\x28\x14\x7c\x70\xc3\x07\xa1\x19\xa3\xf8\xee\x5c\x39\xb0\x32\x71\x4c\x3e\x0a\xd8\x09\x14\x22\xf5\x2e\xe8\xe8\xb6\xe6\xc3\x0d\x8e\x46\x34\xc0\x0f\x0c\xce\xec\x52\xd4\x88\x10\x87\xb9\x45\xb8\xc8\x26\xf2\x71\xec\x67\xbe\x99\x80\xb6\xd7\x72\x86\xee\x8b\xe1\xcd\x93\x05\x51\xf9\x2f\x02\xcf\x87\x04\x75\xdf\x07\xbb\x39\xca\xf8\xe4\x7c\x43\x92\xfc\x26\xd2\xc7\x50\x11\xcb\x5c\xbf\x1c\xb8\xaa\x38\x0e\xad\xfa\xf5\x97\x15\xc7\x75\xdc\x7d\x5d\xf1\xef\x3d\xbe\x9d\x0e\x9b\x16\x1a\x9d\x92\xf8\x69\x2e\x6b\x2a\x90\xda\xdf\x73\x98\x1a\x83\x06\xa2\x4c\x84\x02\x57\xd3\x97\x1a\xed\xf5\x8c\x96\x28\xf5\x1f\x3b\xa2\x8d\x03\x8a\xa6\xbd\x1e\x85\xf8\x8a\x3a\xfd\x75\xa1\xbe\x0e\x9e\x75\x46\xbc\x22\x55\xc2\x46\x57\xf5\x31\xc0\x3b\x8b\xc4\x17\xf7\xc3\x0e\x3b\xb3\x5b\x70\x76\xa6\x96\x78\xb9\xb2\x2f\xb6\xe4\xfb\xef\xed\x1f\x38\x9c\xb8\xeb\x02\x7f\xda\x4b\xe6\x31\xce\x83\x3f\xec\xe4\x9d\x25\xc2\x7d\x30\x3e\xdf\xfe\x47\x2e\xf5\x4f\x1f\x00\xb0\x92\x76\x63\xb6\x29\xec\x9a\x86\x3f\xaf\xf1\xb3\x90\x6f\xf8\x12\x2d\xc0\x33\x5a\x8f\xb9\x3d\x1e\xc7\x1a\xd2\x4e\x73\x80\x12\xe1\xda\x33\x3d\xef\xb2\x78\x3e\x49\xba\x67\x79\xf0\xa0\xd5\x13\x3d\x0f\x24\xbf\x21\x8f\x4c\xe6\xa4\xe5\xe3\x36\x62\x87\x75\x4b\x75\x67\x30\x67\xf8\x70\xe9\x84\xb5\x65\x85\xfb\xdd\x27\xf2\xe5\x72\x54\x19\xd2\xa0\xc0\xbe\x13\x12\xf0\x15\x97\x4c\x82\x54\xdd\xed\x14\xd7\x7c\xc5\x95\x26\xe5\x76\xc7\x53\x58\xe4\xce\x1c\x47\xd3\x24\x80\x2a\x0f\x6a\xaf\x20\xc2\xfe\x9c\xd6\x25\x8f\x5f\xe8\xae\xf9\xb6\xbd\xc9\x64\xcb\x9c\xc1\x6f\x5e\x02\x94\x6a\x4a\xdc\x25\x49\x63\x21\x42\x23\xc5\xe4\x72\x0d\x5f\x63\x89\x8c\xf3\x93\x3b\xdf\xd8\x31\xdc\x6d\x6f\x8b\x37\xcc\x12\x22\x6e\x55\xe0\x9a\x2d\x0b\xde\x21\x71\xcc\xb4\x56\x48\x98\xbe\x59\x11\x15\xa3\x76\x43\x88\x2f\x69\x98\xfb\x39\x6a\xee\xc8\x0c\x50\x88\x3f\xa7\x96\x31\x89\xb1\x25\xad\xc8\x03\x3f\xae\x1f\xee\xf5\x28\xdf\x8f\x10\xe2\x4b\xfa\xc1\xad\xc0\x13\x19\x93\x78\x57\x7f\x48\x7b\xd3\x70\x7a\xd1\x49\x7b\xda\x45\x7f\xe9\xf9\x2a\xd8\xa7\xe1\xdd\x51\x26\x72\x07\xdb\x7b\xc7\x1b\xa6\xe4\xc8\x29\xec\x84\x68\x20\x4e\x38\x93\x41\x76\xee\x5f\xe2\x70\xf9\xe6\x92\x0e\x34\x70\xaf\xf1\x60\x93\xbb\x8e\xf4\xcb\x8b\x72\x90\xad\xce\x54\x9e\x93\xcc\xfb\x37\x5c\x81\xb3\xf0\x32\x22\xd7\x85\x5b\x06\x04\x3b\x9b\xc9\x52\x82\xaf\xbb\x35\xce\xac\x2e\x68\x75\x5c\x99\x63\xd5\x80\x72\x2c\x7a\x0c\x67\xbc\x33\x94\xca\x02\x6b\x28\x33\xe5\x23\x93\x55\xdd\xd9\x3f\xa0\xb6\xc5\x6d\xe4\x5d\x03\x27\xda\x6d\xfc\xf6\xe6\x1d\x06\x94\x71\x57\xfc\xae\x2d\x11\xcd\x1d\xc1\x1c\xb4\x9a\xcc\xc2\xa5\x3e\x26\x10\x4f\x76\xab\x0e\xde\xf0\x36\xd7\xcc\x2c\x02\x52\x40\x85\x3f\xbb\x51\xba\xe7\xe5\x3c\x37\xc0\xf1\x2e\x55\xf4\xf0\x2e\xa6\xf0\x15\x1d\x00\xdb\xb8\xbb\x07\x60\x0b\x72\x07\x8a\xba\x11\xb0\x80\xbb\x3a\xa2\xef\xc2\x7d\x79\x47\xc0\x37\xbe\xb0\x23\x47\xd6\x0b\x8d\x06\x5c\x96\x93\xeb\xff\xae\xfe\x25\x6a\x0e\x88\x33\x0a\x37\x9d\x10\x7c\xf4\x68\xb1\x23\xfa\xc0\xcf\xcc\xaa\x85\x47\x83\xfa\xbd\xe9\x76\xe6\xab\x6a\x68\x0a\xa1\x6b\x36\x43\xe8\x1b\x17\x07\xa4\x60\xb7\xac\xa1\xbb\x55\x91\x84\x07\x17\xc7\xc3\xf0\x2e\x31\xa2\x7c\xe1\x8c\x56\x42\x90\xbf\x07\xda\x3f\x1c\x78\x18\x5d\xde\x2c\x94\x73\xaa\x3e\x7a\x43\x7b\x1c\x0d\xfa\xce\x48\xdc\x71\x04\xf2\x34\x14\x7d\x2f\xc1\x99\x56\x26\xcb\xd9\xb3\x70\x99\xba\x02\x31\x63\xbd\x25\x1c\x6c\xf1\x42\xe7\x92\xa3\xb0\xb6\x4d\x2d\x4e\x27\x67\xf2\x45\x63\xcf\xd8\x56\xa2\x86\x12\x0e\x70\xe6\x6f\x72\x0e\xed\x00\x29\xe2\x8a\xff\xff\x9c\x3f\x28\x33\x3f\x5e\xd8\x03\xd9\x2c\xa4\xa2\x81\x7c\x07\xf9\x41\xac\x68\x78\x9f\x77\x16\xfd\xda\xd7\x80\xbe\xc1\xea\xb8\x0f\xfa\xaa\x3d\x43\xa5\xfb\x7e\xaa\xc5\x39\x9f\x65\xe6\x7a\x92\xeb\x1e\x39\x66\xb6\xc1\x41\x43\x4b\x0e\x1a\x2a\xcf\x46\x1e\x05\x09\xd1\x2c\x84\x19\x3b\x17\x9e\x31\x4a\x8e\xb7\x42\x9f\x8e\x70\x20\x71\x12\xc7\x00\x89\x12\x8a\xe5\xa8\x15\xb3\x39\x87\x69\xe6\xd5\xe6\x53\xcc\xbf\x2d\xaa\x3d\x0e\xd1\x17\x66\x89\x53\x60\x94\xa4\x4f\xd3\xc5\x23\x11\x33\x68\x98\xb6\x69\x57\x1c\x22\xde\x1e\x22\x0d\x86\xa7\xd2\x74\x5c\xa7\x39\x38\x47\x55\xe0\xfe\x5f\x98\x82\xa3\xa8\xa1\xe8\xe3\xd2\x58\x94\x61\x82\xde\x9d\x1e\x01\x92\x76\x5d\x2c\xd7\x18\xff\x6c\x8a\x90\x4c\x49\x76\xc4\xa4\xaf\x74\x4f\x40\xca\xf3\x81\xb9\x3d\x16\x38\x09\xc3\xcf\x34\xe3\x6d\xc6\x20\x97\x2f\x0c\x34\x73\x8d\x62\xd8\x6a\xec\x21\xbe\x3d\xe0\x22\x16\xe6\xe7\x58\x83\xfd\x9d\x85\x82\x7d\x8d\x6f\xde\x6b\x94\x44\x2d\x29\x32\xc8\x1d\x1b\x9c\xaf\x59\xb7\x4a\xf5\xd1\x28\xbc\xf6\xd6\x7b\xc9\x81\xe5\x1d\x73\xe2\x70\x44\xf2\x45\x75\x24\xbd\xf4\x10\xae\x9a\xaf\xef\x2a\xec\x68\x1c\xba\x84\x7a\x93\x74\x32\x62\x74\x06\x72\x4f\x0d\x49\x17\x27\xab\xf8\x8a\x4e\xf2\x7b\xa6\xab\xa5\x7b\x85\xf1\x94\xa3\xe3\x76\x0b\x0e\x92\xc2\xbb\x5a\xb5\xb4\x0b\x4e\x91\x2d\x6e\xba\xf8\x5d\x3d\x43\x87\x58\x0b\x9f\xaa\xfe\x50\xdf\xba\xaa\xbf\x6d\x96\x73\x3c\xc6\xd9\xaf\xf5\x6c\xf1\x5d\x25\xe6\xed\x87\x33\x4a\x7b\x5c\x68\xfc\xab\x0a\xa7\x70\xfd\x43\x89\xa2\xfe\xdd\x92\xd2\xe1\xf2\x4b\x9b\xde\x23\xf0\x44\x94\x36\x91\x8e\x04\xb6\xe1\xfb\x3b\x1b\x4a\xc6\x12\x30\xc4\x00\xb7\x1d\xba\xc2\x8f\x79\x7f\xc1\x08\x82\x73\xed\x70\x18\x4c\x06\xba\xfa\xc1\x2b\xc2\x37\x40\x18\x71\xdf\xb1\x8f\x02\xc7\x3b\x66\x07\x0c\x75\x6c\xd2\x2d\xce\x1e\x5b\xd5\xd3\xa6\x03\x03\x0a\xdb\xbd\x63\x86\x1e\x46\xbd\xb8\x7f\x8c\xe1\x26\x24\xcf\x5b\xef\x77\xec\x84\x9b\xbb\x77\xad\x7f\xc3\xef\x90\x29\x48\x5c\xf6\xf9\xaa\xed\x5a\x9a\x1e\x89\x03\xa3\xb1\xda\x5f\x5a\x5a\x3f\x51\x00\x56\xeb\xdb\xf9\x5e\x63\xf7\x58\x99\x33\x24\x93\x44\xc1\x81\x7c\x7c\x29\x6c\xd1\x56\x86\x6d\x91\x4b\xb5\x60\x63\xcf\xb6\x52\xc7\x96\x11\x94\xd4\x32\xed\x82\xbd\xeb\xf5\x1e\x23\x80\xcf\x35\x25\x80\xc5\xc9\x04\x07\x57\x21\x74\xed\x77\x73\x1e\x2a\xa2\x40\x48\x72\xfe\x06\xc9\xf9\x15\x27\x8f\x5b\xb0\x5e\xb9\x62\x49\xa7\x0e\x95\xe3\x0b\xf7\x69\x99\x17\x7c\x2f\x3f\x85\x37\xcc\xad\xab\x62\x37\xc2\xdb\x2b\x4a\x1c\x61\x0d\x90\x63\x04\x00\xf6\x30\x16\xc2\x52\x75\x09\x55\x2b\x2c\xf1\x9a\x92\x0e\x41\xe3\xd0\x3e\x85\x6f\x58\x3e\x3c\x50\x42\xf7\xec\xb4\x57\x7a\xcc\x32\xea\x55\xbb\xf8\x2b\xde\xca\x57\xe8\x73\xf9\x19\x40\x2d\xda\x76\xe0\x97\x3b\x77\x2c\x6e\xc1\x99\x4a\xd0\xf4\xdc\xd2\x59\xdc\x5a\x7e\x1c\x61\x4a\xa0\xc7\xa8\x12\xe8\xc3\xb8\xda\x72\xbc\x3c\x6a\xab\xdb\x2f\x87\x3d\x2d\x50\xd7\xe0\xd9\x25\xc7\xd9\xbb\x74\x19\xa3\x16\x47\x25\x43\x0a\x4d\x0b\x4f\xb5\xbc\x24\x21\xa2\x9a\x6c\xfa\x84\x73\xee\x6c\x7b\x54\x36\x6c\x7c\x54\x7c\x6a\xa5\xe0\x25\x12\xb6\xa2\x2f\xf6\xcb\x8f\xd5\xc0\x37\x74\xd6\x73\x1c\x0a\x87\x75\x5d\x18\x58\xfe\x1c\x60\xf9\x2b\x02\xcb\xaf\xe4\xc1\xfb\x71\xad\xb4\xe9\x6c\xab\xa1\xc0\xe1\x7e\x50\xcb\xcb\x13\x9a\x01\x4e\x2e\x8b\xa9\x52\xb0\xd7\xcc\x55\xca\xd6\x55\xc8\x82\x4f\x50\x83\x3e\xc5\x2f\x82\xf7\xb1\x03\x99\xaa\x8d\x15\x03\xd9\xfd\x96\xb7\x4b\x79\x91\x83\x55\x05\xea\xc3\x3b\x49\x09\x60\x11\x53\x9b\x60\x8d\x47\xe2\x1c\x1b\xc1\xb5\x09\xfc\x2a\x66\x94\xc2\xc1\x3c\xb0\x30\x2e\x82\xbb\xe0\xab\xc0\x53\x80\xbb\x42\x16\xd3\x41\x48\x6b\xde\x00\xad\xe5\x14\x4e\x1b\xed\x05\x95\xc2\x56\x44\x77\x13\x57\x77\x0d\x4d\x4d\x34\x07\xb7\x22\x78\xba\x5b\x60\x6a\x4e\x53\xd8\x7b\x1f\x62\x56\x30\x91\x5e\x21\xb3\x4a\x8a\xc9\x5b\x78\x64\xcc\xbe\x2d\x2f\x8a\x5b\x22\x69\xd1\xab\xd0\x9a\x66\x37\x49\x5d\xfc\x25\x4d\x0f\xe3\x6b\x68\x8d\x10\x4c\xcd\xcb\x24\x79\xd4\x4c\xbd\x4d\x04\x52\x82\x44\xca\xa1\xd2\x26\x2c\x0d\xad\xc1\xc4\xf0\xa4\x86\x37\xd0\x28\x82\xd1\x1d\x7c\xb2\xc7\x02\x02\x7f\xe1\xab\x3d\x7e\x3c\x01\x96\x71\x3a\x1d\xe3\xb7\xee\xe7\x21\x42\xd3\x78\xc2\x45\x82\x60\x06\x57\x1c\x47\xa0\x38\xae\x0e\x1f\x99\x0e\x8e\x22\x0d\xe9\x38\xf4\xc3\xeb\xf8\xea\x7d\x37\xaa\x21\x28\x03\x1b\x98\x10\x05\xfb\x3c\xca\xdd\xcb\x29\x14\x79\x8b\xa1\x61\xc8\xbd\x7e\x04\xe8\x3b\x8f\x9b\x62\x5c\x4c\x3f\xca\xf6\x7f\xe5\x5d\xba\xb0\x03\xfe\x75\xba\x03\xed\xff\x87\xbc\x4e\x97\x5a\x6b\xdd\xf3\x74\x78\x7e\x6b\x86\xdb\x2a\xf1\x4a\x8e\x0e\xb3\xa2\x15\x8d\x12\xe1\x4a\x45\x42\x7c\xac\x8f\x24\x6f\x0a\x36\x2b\xb0\x58\x72\xb0\x48\xd3\xf6\x82\x0b\x46\x51\x6b\x52\x62\x1c\xa7\x3a\xee\x82\xa4\x8c\x4f\x90\x24\x5d\xed\x11\xb9\x06\x28\xad\xd4\xa2\x34\x83\x51\x42\x8f\x6d\x2c\x2d\x8d\xa7\x09\x03\x93\xae\xed\xa4\xcb\xc9\xea\x8e\xba\x2d\xa5\x24\xf4\x81\x5d\x5e\x52\x06\xa2\x59\x41\xef\x25\x25\x0c\x56\x27\x29\xf2\x58\x13\x9e\x24\x95\x2f\x4d\x1f\x3b\x61\x04\x9d\xd4\x6a\x92\xce\x05\xb5\x02\x6a\x9a\x41\x05\xbd\x49\x3d\x49\x25\x15\xb7\x78\xd8\xed\xb5\x1f\x34\x65\xa7\x0f\x3a\x73\x08\x3a\x49\x81\x8e\x5f\xc2\x1f\x8d\x55\xfa\xd3\xb7\x61\x7a\xf0\x7e\x13\x72\xdd\xcb\x4d\x13\x30\x81\x8b\x44\xd1\x71\x04\xbc\x9f\x35\x5a\x48\xf0\x8e\x13\xdf\xb8\x91\x07\x21\x76\x1b\xee\x2f\x87\x25\x86\x79\x9d\x2d\x94\xbc\xb5\x15\x78\xb5\x05\x87\x8d\xc4\x26\x56\xe2\xda\x28\xaf\x0c\x28\x32\x79\x1b\xd3\x18\x3d\xd8\xbe\x34\xae\xe8\x73\x76\xea\x09\x40\x4a\x7b\x05\xd7\x8f\xa8\x18\x86\xae\x5e\xec\xf9\xcc\x4e\x7d\x13\x78\x51\x89\x23\x84\xcb\x1b\xc1\xf6\x7b\xf3\xd1\xbf\xd4\xaf\xc3\xb0\xc9\xeb\xd4\x09\x9c\xc4\x09\xb2\x6e\x49\x94\x20\xab\x02\x26\x6f\x07\x20\x07\x61\x11\xc4\x96\x99\xfb\xbc\x2f\x78\x79\x12\x6f\x2c\xf3\xcb\x63\xcd\xe9\xb7\xc3\xce\x82\x4a\x5f\x9e\x5d\x5d\xdc\x41\x4b\x0c\xaa\x34\x01\xc8\x80\x30\x38\x4b\x89\x03\x59\x01\x85\xa8\x43\x88\x7a\x2b\xab\xf6\x09\x97\x12\x21\xb6\x7e\x1a\xce\xd3\x03\x0e\x3c\xd9\xd6\x2c\x17\x6b\x06\x7b\x74\x83\xb6\xa3\x9a\xc3\x8b\xb3\x73\xb1\x94\x99\xe5\x67\xfb\xcd\x50\xb3\x87\x92\xb5\xa6\x5e\x32\xfc\x84\x74\xb5\x2b\x3a\x0b\xc8\x88\xf8\x27\xf9\xc3\xa3\x87\xb3\x68\xf5\xcd\x07\x79\xac\x4b\xde\x4d\xbb\x7a\x73\x49\x9f\xcb\xee\x56\x0e\xe9\x74\xa4\x1f\xeb\x1d\x83\xe9\xeb\xab\x3c\x60\x4a\x01\xec\x9f\x90\x62\x4b\x85\x4f\x73\x48\x17\xae\x97\x8e\x60\x2e\x8e\xcf\xa0\x1e\x53\x52\xb8\xf8\xb4\x69\x44\x6c\xe9\xaa\x55\xad\x61\xdb\xb4\x13\x34\x1d\x2d\xf1\xcb\x95\xec\xbe\xbe\x1f\x03\x3f\x3b\xca\x9e\xd3\x3b\x43\x60\x18\x22\x23\x95\x66\xf4\x31\x3a\xc5\xf4\x48\x2a\x88\xa1\x03\xe1\xc0\xb3\xb6\xc4\xc7\x39\x29\x72\x9f\x9f\xf3\x2c\x62\x66\xa1\xec\x93\x3c\x52\xfa\x65\x7e\x29\x61\x65\x81\x94\x70\xd7\xa0\x27\x6f\xeb\xc7\x25\x22\xc8\xb9\xf0\x57\x7b\xb3\x21\xae\xda\xbf\xd1\x31\x2a\x11\xbd\xde\x30\xc2\xeb\x84\xbf\xc7\x1d\x3e\x1e\x41\xed\xb1\x4b\x75\xd2\x9d\xfb\xdc\xaa\xc5\x64\x64\xa6\x1a\x77\x46\xa2\xa6\x9a\xf8\xa8\x44\x61\x8b\xdd\xce\x6d\x1b\xc1\xb3\x1c\x20\xdb\x00\xe4\x93\x30\x9c\x00\x82\x16\x41\x9f\xd4\x23\x17\x90\x42\x20\xbe\x87\xa4\x00\xe9\xd6\xa3\xc9\xed\xf5\x35\xc7\x26\xe2\x00\x77\x1a\x20\x03\xa1\x8a\xce\xd8\xa3\xd7\x4a\xca\xb5\xba\x39\xdb\x8e\x60\x8b\xe1\x31\x9d\xea\x5d\xbb\x77\x48\x64\x21\xdc\xc0\xbb\xbd\x7b\x1e\xf7\xdd\x1e\xa6\x86\x2e\xcc\xd2\x86\x38\x2b\x6c\x04\xd2\x4b\xd7\xb6\x83\x05\x8e\x0f\x44\x97\x77\x94\x4c\x7b\xda\xb0\x76\x08\xe6\x03\x99\xe5\x5c\x22\x66\x07\x65\x70\x1c\xb4\x84\x5f\xf6\xb8\x10\xf5\x7b\x5c\x82\xfa\x7d\x00\x5c\x9c\x06\x6c\xe3\xbf\xc4\x2f\x61\xd2\xae\xc7\xec\x82\xa8\xd4\x68\x03\x96\xb4\x94\x6e\x42\x1c\x94\x0b\x4f\x18\xa7\x76\x84\x34\x49\x1a\x04\x19\x4a\x2f\x3e\x35\x94\x17\x7c\x6a\x28\xfb\xf8\x54\xed\x58\xd2\x83\xbe\xdf\xd8\x44\x5c\x5e\xbe\x89\x67\xdb\xe7\x06\x2f\x78\xb0\x2f\xd3\xb7\x1c\xe9\x72\x45\xfb\xc1\xb7\x39\xdf\x36\xfb\x3e\x28\xa1\xd8\x0c\xf1\xa7\xa9\x69\x1d\xfd\x1f\x9b\x7a\xa8\x7e\x4a\xaa\x30\x06\x1e\x2d\x99\x7a\x79\x00\x31\xc6\xbc\xe3\xf7\xfe\x72\xb9\xa3\x5b\x77\x95\xed\xec\x27\xc1\xeb\x7b\x23\x62\xf6\x1b\x80\x23\xe5\x90\xf9\x5b\xc7\xf8\x8e\x42\x17\x64\xcc\x49\x52\x18\xe4\x71\x32\x76\x1b\x7c\x67\xd5\x3c\x47\xb2\xef\xa1\xc4\xe7\xb4\x78\x9d\xea\x12\x6e\xfd\x43\xb8\xcd\xd7\x0d\x6e\x11\x58\x11\x0c\x05\x57\xbd\x11\xe2\x88\xfb\xff\x36\xb8\xf8\x6d\x60\xf6\xf6\x2a\xec\x45\xa3\x67\x5a\x61\x28\xd2\x57\x5a\x8d\x31\xc8\x9d\x35\x76\xd8\x9f\x6f\xf4\x70\x44\xee\xb5\xc1\x6d\x3f\x7f\x83\xd3\x10\xd7\x6f\xda\x18\xbc\xa8\x18\x15\x7a\xc7\x79\x4e\xb4\x9c\x28\x6c\xd7\x5d\xdd\x24\xda\x75\xb2\xc9\x49\xfc\x63\x5f\xed\xa9\xf2\xaa\x59\x81\x74\xfe\x95\x7f\x92\x08\xc2\x3f\xdd\x5c\xc9\x3d\x31\xd8\x4a\xd8\x3b\xfd\xa9\xdd\x1c\x83\xc9\x84\x52\xdc\x2c\xdd\x2b\x2b\x04\x48\x0e\x39\xf3\x19\x7e\x4f\x77\x50\x61\xc7\xea\x42\x9c\x6f\x04\x45\x74\xde\x06\xc4\xf4\xea\xd7\x37\xe7\x09\xe4\xc4\x02\xd5\x9c\x89\x05\xad\x39\x13\xcb\x57\x0e\xfa\xdc\x10\x70\xb8\x37\x3d\x02\x81\x3c\x38\x00\xa1\x21\x7f\x92\x0f\xe2\x99\xac\x48\xa9\xad\x2c\x76\xb2\x62\x94\xce\xe4\x77\x0c\x14\xbc\xf1\x22\x50\xf6\xc4\xcb\xa8\xd5\x26\x6c\xb3\x91\x43\x2a\xcf\x0f\xc4\xa5\x24\xe0\x07\xe2\x92\x3d\xd9\x3d\x83\xde\x75\xed\xa7\xba\xd4\x27\x71\x04\xfe\x42\x93\x0c\xd4\x40\x7c\xcd\x06\xa1\x55\xbb\x6e\x12\xe1\xd6\x4e\xa2\x3c\xc1\xaf\x68\xea\x74\x21\xf2\x7a\x11\x58\xbf\x0c\xf9\x29\x57\x29\x61\xc0\xab\xa5\x43\x8c\x99\x1b\x5f\x9e\xf8\xd7\x6f\x60\x99\x4c\x06\xb3\xa9\xaf\x2b\x67\xc7\xd4\xd1\xbc\xa1\xb4\x08\x78\x3d\x0c\xbb\xde\xee\xfe\xe2\xad\x96\xfc\x9c\x7e\x24\x83\x08\xab\xd2\x91\x8c\x6a\xda\xd5\xb0\x2d\x07\x78\x91\x84\x69\x8c\x1b\xb4\xf2\xed\x00\x5c\x19\x77\xca\x6e\xed\x35\xf9\x60\x85\xf8\x57\xa0\xfd\xfe\xec\x5a\xe7\x7d\x79\xb2\x65\x86\xd2\x9d\x8b\x61\xb0\x73\x99\x77\xc9\x6c\xd9\x49\x1c\x32\xfe\x77\xc5\xa7\xfc\x2e\x27\x5c\x7b\x96\xd6\x13\xed\x95\x7b\xb9\x3d\xa5\x9f\x1e\xde\x7b\xa3\x08\x9a\x2c\x63\x22\x16\x79\x0c\x50\x7d\xae\x96\xfb\xe0\xd0\xe9\x57\xf9\xad\x56\x5e\x5f\x4d\x6b\xce\xa4\xfb\x06\x71\xe8\x2f\x24\x25\x80\x99\x0a\x46\x68\x5d\x87\x4b\xac\xb9\xc6\x1e\x6c\xdf\x35\x0f\x05\x93\xa1\xcc\x43\xc7\x7c\x60\xe4\xe7\x7c\x23\x97\x69\x12\xa7\x1d\x83\x0d\xa5\x90\x30\x0d\x01\x8d\x02\x07\x29\xcb\x9b\xe8\xb8\x65\xb5\x3b\x66\x59\xbb\x59\x00\x0b\x91\x3e\x78\xb8\x51\xfa\x20\xf9\xf7\xb9\xe4\x65\xef\xc5\xe3\xe5\x43\xf2\x44\x95\x19\xa7\x03\xb7\xab\xe8\x42\xd7\x83\x5e\xaf\x72\x35\x41\x0c\x33\xf9\x55\x8e\x1e\x9f\xb1\x20\xb2\x3f\xf8\x20\xb2\xd1\xa3\xb1\x69\x8c\x7b\x17\x73\x1c\xb5\xb2\x1f\x9b\xbc\x67\x10\xf4\xe0\x71\xdf\x2d\x1f\x3f\x08\xc3\x89\xb3\x0d\x32\x8e\xd4\x1b\x55\x29\xa3\xb3\xb8\xec\xbf\x6b\x2c\x74\xf9\x1d\xd6\x2b\x86\x36\xa9\x9a\x03\xfb\xba\x60\xe5\x5a\x43\x1a\x57\xd8\x10\x15\xc5\x77\x0d\x2b\xd4\x70\xc1\xe3\xfa\x92\x50\xf1\x41\x38\xfc\xb6\xf9\x9a\x8e\x4d\x06\x3f\xfd\x5d\xa3\xd4\x7e\x75\xb7\x5c\x90\x25\xc5\xbe\xfd\x4e\x68\x41\x66\x74\x7a\x3a\x3d\x79\x20\x6a\x00\x5f\x27\xf3\xb3\x48\x3f\xee\x9e\xc6\x98\x32\xd2\x69\xd4\x10\xd5\x3f\x06\xf1\x84\x71\x93\x54\x32\xea\x5e\xe3\x66\x4a\x14\xe7\x1f\xdd\x2b\x3c\xd9\x7b\x0e\x1d\xfb\x21\x2b\x56\x3c\x26\xfa\x9b\xe1\xf1\x2b\xf1\x69\x07\x8d\xd2\x67\x26\x3f\xf9\xeb\x07\xae\xf8\x07\x52\xf2\x89\x69\x22\x78\xeb\x0f\x5b\x24\x6c\x49\xdd\x25\x56\xc4\x09\x6b\x24\xf0\xab\x6b\xf8\x59\xe2\x67\x59\xdc\xe2\xd7\x0d\x7e\xdd\x54\xd5\x47\x29\x0c\xae\x4a\xc5\x49\x61\x5e\x23\xe5\x16\xbf\x39\x1a\x29\xff\x94\x76\x34\xf0\xba\xfd\x40\xc8\x58\x6e\x4e\xd3\xed\x07\xa5\xcb\x5b\xd9\x4f\xfd\xb3\xd9\x0f\xf8\xc4\xf8\x56\x93\xf0\x45\x29\xdc\xbc\x26\xc9\xe7\x03\xb0\x46\xd2\xd4\xb5\x42\xf9\xa6\x54\xee\x87\x26\xca\x27\xa5\x75\xc5\xcd\xdc\xf7\x4b\xbf\x90\xea\x7b\xa5\x5f\x84\xde\xb2\x6b\x77\x1c\x3e\xf2\x83\x7b\xca\xce\x3f\x62\x74\x4a\x79\x1a\x22\x07\x31\x03\xf9\x1a\x2a\xbf\x17\x26\xaf\x6a\xf2\x25\xcd\x59\x66\x61\x5d\xeb\x66\xb7\x77\x3a\xa3\x8f\x3d\x2c\x60\x3e\xce\x8e\x38\x36\xf3\xcb\x24\xf2\x6c\x13\xcd\xee\x7c\x81\x7d\x0f\xba\x68\x5f\xff\xad\xfa\xee\xdf\xfe\x0d\xe0\xf4\xf9\xef\xff\x9e\x9f\x3d\xff\x3e\xaf\x3e\x73\xd4\xb0\x3e\xdf\x16\x9f\xeb\xed\x7e\x6b\x50\xf4\xf3\x45\x04\xc8\x57\x33\xe1\xa2\xaa\x47\x3b\xfa\xb0\x2e\xce\x73\xfe\x4f\x00\x00\x00\xff\xff\x7b\x05\x70\x16\x8a\xa7\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: 42724, mode: os.FileMode(420), modTime: time.Unix(1441986383, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 42890, mode: os.FileMode(420), modTime: time.Unix(1441992331, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/routers/admin/auths.go b/routers/admin/auths.go index 5e9d3be14..ef47b86b9 100644 --- a/routers/admin/auths.go +++ b/routers/admin/auths.go @@ -88,11 +88,12 @@ func parseLDAPConfig(form auth.AuthenticationForm) *models.LDAPConfig { func parseSMTPConfig(form auth.AuthenticationForm) *models.SMTPConfig { return &models.SMTPConfig{ - Auth: form.SMTPAuth, - Host: form.SMTPHost, - Port: form.SMTPPort, - TLS: form.TLS, - SkipVerify: form.SkipVerify, + Auth: form.SMTPAuth, + Host: form.SMTPHost, + Port: form.SMTPPort, + AllowedDomains: form.AllowedDomains, + TLS: form.TLS, + SkipVerify: form.SkipVerify, } } diff --git a/templates/admin/auth/edit.tmpl b/templates/admin/auth/edit.tmpl index 7de07ff26..f2d21d8b2 100644 --- a/templates/admin/auth/edit.tmpl +++ b/templates/admin/auth/edit.tmpl @@ -101,6 +101,11 @@ +
+ + +

{{.i18n.Tr "admin.auths.allowed_domains_helper"}}

+
{{end}} diff --git a/templates/admin/auth/new.tmpl b/templates/admin/auth/new.tmpl index 06bcb8dfa..e7edccf6a 100644 --- a/templates/admin/auth/new.tmpl +++ b/templates/admin/auth/new.tmpl @@ -103,6 +103,11 @@ +
+ + +

{{.i18n.Tr "admin.auths.allowed_domains_helper"}}

+