diff --git a/README.md b/README.md index 3ffc0e6fd7..3703fdb1d7 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,6 @@ There are 5 ways to install Gogs: - Mail Service, modules design is inspired by [WeTalk](https://github.com/beego/wetalk). - System Monitor Status is inspired by [GoBlog](https://github.com/fuxiaohei/goblog). - Thanks [lavachen](http://www.lavachen.cn/) and [Rocker](http://weibo.com/rocker1989) for designing Logo. -- Thanks [gobuild.io](http://gobuild.io) for providing binary compile and download service. - Thanks [Crowdin](https://crowdin.com/project/gogs) for providing open source translation plan. ## Contributors diff --git a/README_ZH.md b/README_ZH.md index 8f13e1f383..cd72a0ce9e 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -67,7 +67,6 @@ Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自 - 基于 [Macaron](https://github.com/Unknwon/macaron) 的路由与中间件机制。 - 基于 [WeTalk](https://github.com/beego/wetalk) 修改的邮件服务和模块设计。 - 基于 [GoBlog](https://github.com/fuxiaohei/goblog) 修改的系统监视状态。 -- 感谢 [gobuild.io](http://gobuild.io) 提供二进制编译与下载服务。 - 感谢 [lavachen](http://www.lavachen.cn/) 和 [Rocker](http://weibo.com/rocker1989) 设计的 Logo。 - 感谢 [Crowdin](https://crowdin.com/project/gogs) 提供免费的开源项目本地化支持。 diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index f1d96887e2..23688ed384 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -413,6 +413,13 @@ issues.reopen_issue = Reopen issues.reopen_comment_issue = Reopen and comment issues.create_comment = Comment issues.closed_at = `closed at %[2]s` +issues.reopened_at = `reopened at %[2]s` +issues.poster = Poster +issues.admin = Admin +issues.owner = Owner +issues.not_signed_in = You must sign in to comment +issues.sign_up_for_free = Sign up for free +issues.sign_in_require_desc = to join this conversation. Already have an account? Sign in to comment issues.label_title = Label name issues.label_color = Label color issues.label_count = %d labels diff --git a/gogs.go b/gogs.go index 6b8407e84c..038a172d7b 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.4.0813 Beta" +const APP_VER = "0.6.4.0814 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/issue.go b/models/issue.go index 174e3102d9..7f16f936a3 100644 --- a/models/issue.go +++ b/models/issue.go @@ -1231,6 +1231,15 @@ const ( COMMENT_TYPE_PULL_REF ) +type CommentTag int + +const ( + COMMENT_TAG_NONE CommentTag = iota + COMMENT_TAG_POSTER + COMMENT_TAG_ADMIN + COMMENT_TAG_OWNER +) + // Comment represents a comment in commit and issue page. type Comment struct { ID int64 `xorm:"pk autoincr"` @@ -1245,6 +1254,9 @@ type Comment struct { Created time.Time `xorm:"CREATED"` Attachments []*Attachment `xorm:"-"` + + // For view issue page. + ShowTag CommentTag `xorm:"-"` } // HashTag returns unique hash tag for comment. diff --git a/models/repo.go b/models/repo.go index 8ae3cfe6f2..73ae6b54ac 100644 --- a/models/repo.go +++ b/models/repo.go @@ -247,8 +247,8 @@ func (repo *Repository) HasAccess(u *User) bool { return has } -func (repo *Repository) IsOwnedBy(u *User) bool { - return repo.OwnerID == u.Id +func (repo *Repository) IsOwnedBy(userID int64) bool { + return repo.OwnerID == userID } // DescriptionHtml does special handles to description and return HTML string. diff --git a/models/user.go b/models/user.go index a58bb634d9..f2151a7080 100644 --- a/models/user.go +++ b/models/user.go @@ -222,6 +222,25 @@ func (u *User) UploadAvatar(data []byte) error { return sess.Commit() } +// IsAdminOfRepo returns true if user has admin or higher access of repository. +func (u *User) IsAdminOfRepo(repo *Repository) bool { + if err := repo.GetOwner(); err != nil { + log.Error(3, "GetOwner: %v", err) + return false + } + + if repo.Owner.IsOrganization() { + has, err := HasAccess(u, repo, ACCESS_MODE_ADMIN) + if err != nil { + log.Error(3, "HasAccess: %v", err) + return false + } + return has + } + + return repo.IsOwnedBy(u.Id) +} + // IsOrganization returns true if user is actually a organization. func (u *User) IsOrganization() bool { return u.Type == ORGANIZATION diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 3901cf7d0d..202f486d8b 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -112,7 +112,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x5a\x4b\x8f\xe3\x56\x76\xde\xf3\x57\x5c\x97\xe3\xb8\x3b\x90\x54\x2f\xf7\xc3\x65\x57\x62\x95\x44\xa9\x38\xad\x97\x49\xa9\xcb\xed\x46\x81\xc5\x22\xaf\x24\x76\x51\xa4\x9a\x97\xac\x6a\x19\x59\x8c\x91\x45\x80\x2c\x93\x41\xb2\xc9\x22\x59\x04\x01\x92\x4c\x92\x41\x36\x33\x13\x64\x65\x64\xdf\xfd\x1f\x0c\xcf\xe4\x5f\xe4\x3b\xe7\x92\x12\x55\x5d\xee\xf1\x4c\x32\xb0\x51\x22\xef\xe3\xdc\x7b\xbe\x7b\x1e\xdf\xb9\xec\xf7\xc5\xc0\x7c\x6a\xda\x82\xff\xf4\x87\x6d\xab\xf3\x4c\x8c\x4f\x2d\x47\x74\xac\x9e\x69\xbc\x2f\x46\x3d\xb3\xe9\x98\xa2\xdf\x7c\x62\x8a\xd6\x69\x73\xd0\x35\x1d\x31\x1c\x88\xd6\xd0\xb6\x4d\x67\x34\x1c\xb4\xad\x41\x57\xb4\x26\xce\x78\xd8\x47\xe3\xa0\x63\x75\xf5\x4c\xe3\x13\xd1\x5c\x2e\x45\xec\x2d\xa4\xc8\xe6\x5e\x26\xd4\x3c\xb9\x51\x22\x89\x85\xbc\x96\xe9\x4a\x2c\xbd\x19\x3a\xc2\x2c\x92\x46\x73\x34\x72\x07\xcd\xbe\x29\x8e\x45\x37\x99\xa9\x23\xfc\x15\xdd\x30\x13\x8e\x4c\xaf\x43\x5f\x42\x52\x6b\xee\xc5\x18\x8e\xb6\x70\x2a\x56\x49\x2e\xd2\x3c\x16\x51\xe2\x7b\x51\xb4\x32\xec\xc9\xc0\x9d\x38\xd8\xfd\xb1\x98\x85\x19\x46\x9b\x61\x36\x97\xa9\xd8\x09\xe4\xf5\x4e\x4d\xec\x2c\xd3\x24\xd8\x11\x09\x1a\x32\xa9\x32\xb4\x04\x72\xea\xe5\x11\x64\x29\x3d\x86\x25\x40\x75\xda\x00\xde\x0d\xe3\x79\x2a\x97\x89\x0a\xb3\x24\x5d\x9d\x1b\xf6\x70\x38\x16\xc7\x86\xd3\xb2\xad\xd1\xd8\x1d\x3f\x1b\xd1\xb0\x4b\x4f\xcd\x31\x2e\x0f\xcf\xb1\xde\x20\x5f\x5c\x62\xbd\x64\x0a\x89\x2a\x97\x4a\xeb\xeb\xa5\x92\x75\x96\x81\x08\x63\xe8\x2d\x59\x65\xc3\x72\x9c\x89\xe9\x8e\x9a\x5d\xe0\xe6\x0e\x26\x7d\x08\xdb\xdf\x83\x28\x05\x65\x65\x7a\x6e\x8c\xec\xe1\x78\xd8\x1a\xf6\xd0\x3e\xcf\xb2\xa5\xd1\x1e\xf6\x9b\xd6\x00\x6f\xac\xee\x3c\x51\x19\xef\xc8\x9d\xd8\x34\xe4\x83\x7b\xe5\xf8\xfb\xea\x68\x77\xf7\x83\x7b\x7a\x38\x5e\x3e\xb8\x77\x3a\x1e\x8f\xdc\xd1\xd0\x1e\xdf\x57\xbb\x06\xbf\x34\xdb\x6d\xa0\x64\xac\x3b\x20\xe0\x70\x6f\x6f\x0f\x2a\xb4\x43\xe5\x5d\x46\x52\x38\xce\xa9\x98\x4a\x2f\xcb\xb1\xf9\x9b\xb9\x8c\x45\x9c\x40\x93\x6b\x2f\x8c\xa8\xdb\x68\x5b\x4e\xf3\xa4\x67\xba\x34\xec\x58\x4c\xbd\x48\x49\x03\xcf\xa5\xb0\x83\x83\x8a\xa8\x56\x7b\x40\x47\x1d\x93\xf6\xc5\x19\x2c\x92\x40\x1a\xc3\x4e\xa7\x67\x0d\xcc\x12\x70\x2d\xa4\x14\x6c\x0f\x27\x63\xd3\x76\x7b\xc3\xee\xba\xeb\x13\xd1\x95\xb1\x4c\xbd\x0c\x70\x66\x72\xa9\x8e\xd0\xf2\x07\xc2\x0f\x00\x67\x36\xdf\xcd\x92\xdd\x19\x6c\x66\xd7\xcf\x55\x96\x2c\x76\x09\x32\xc5\x03\x1a\xdc\x2e\x7c\x99\x66\xa2\xee\x7b\xc7\x59\x9a\x4b\x51\x0f\x72\x08\x0a\x93\xf8\xf8\xf1\xa3\x87\x7b\xf3\xbd\xc5\x9e\x12\x75\xc2\xf4\x78\xb1\xa2\x9f\x86\x7c\xe5\x2d\x96\x91\x6c\xf8\xc9\xc2\xf8\x04\x72\x86\xa9\x98\xa6\xc9\x42\x78\xa2\xb1\x9c\xbe\x12\xd3\x10\x8a\xc9\x57\xcb\x24\xcd\x70\xac\xdc\x03\x53\x13\x67\x61\x1c\x90\x71\xd3\x62\xe1\x34\xf4\xf5\x5e\x13\x60\x78\x2f\x48\x20\x85\x40\x9c\x26\xe9\x4c\x66\x22\x4b\x8a\xf9\x3c\x71\x99\x86\xd7\x34\xf8\x4a\xae\xee\x6b\xbd\x92\xa5\x8c\x95\x8a\xc4\xf2\xca\x57\xfb\x07\xa2\x0e\xf0\x48\x2a\xaf\x5e\x4f\xf2\xac\x78\x93\x0b\x51\x8f\x13\x4c\x53\x3f\x6c\x16\x46\x96\x93\xa8\x43\xd1\x43\x20\x95\xd1\x32\xed\xb1\x4b\xfe\x0a\xb8\xab\x10\xee\x96\xcb\x18\x4f\xcc\x67\x77\x0e\x28\x24\x62\xf9\xc9\x72\x09\xeb\x8f\x70\xd6\x11\xf9\x40\x26\x81\x20\x29\xe5\xc5\x01\x50\x00\xdc\xbe\xc6\x8d\xce\x0b\xc3\x2b\xde\xc7\x10\xa0\x95\x4c\x0d\x60\x91\xf3\x53\xb3\x7c\x25\xfd\x1c\x00\x1b\xce\xb8\x39\xb6\x5a\x2e\xdb\xfb\xa8\x39\x86\xcd\xe9\xa8\x12\x11\xc4\x38\xc5\x62\xd1\xee\x97\xd6\x48\xa8\x7c\x49\xb0\x1a\xe6\x80\x0d\x89\xdb\x36\x26\xd4\xc3\x66\xc2\x78\xa6\xa3\x0e\x8e\x02\x47\x12\xd7\xa3\x64\x36\xc3\x31\xe6\x70\x3d\x55\x13\xbe\x17\x8b\x4b\x29\x76\xe6\xc9\x42\xea\x70\x81\x83\x8a\x70\x88\x3b\x46\xaf\xc9\x61\x8e\xbc\x96\x70\xa0\x11\xf0\xd8\xc0\xcb\x3c\xc4\x01\x79\x5e\x09\x39\x8b\x95\x7a\x19\x71\xd0\x81\x35\xcd\x52\xa9\xb4\x24\x34\x86\x99\x3c\x44\x47\x98\x7d\xa8\x28\x82\xa5\xc2\x9f\x27\x14\xdc\xda\x27\x65\x4c\xe1\xb9\xc6\xe9\xd0\x21\x57\xda\x3f\x78\xd4\xd8\xc3\x7f\xfb\x47\x87\x87\x7b\x0f\x8d\x22\x3c\x92\x49\x1b\x45\xac\x4b\x93\x24\x33\x46\x4d\xc7\x39\x6b\x33\x2e\x1d\x5a\xa8\xb2\x6c\x1c\xad\x6a\x42\x96\xa1\x50\x3b\x25\xed\x2c\x95\x2f\xf3\x30\x2d\x54\x44\xc8\x09\xa7\xab\xfa\x34\x8f\xa2\x1d\x78\x72\x6f\x1d\x06\xf5\xf8\x52\x6c\xb9\x7f\x96\x6a\xe8\xa3\x10\xa4\x3f\x3b\x59\x23\xb8\x04\x1c\x5e\xb0\x08\xe3\x73\x8e\x64\x7e\x9e\x86\x19\x42\xa7\x35\xc0\x09\xf6\x7a\x70\xe7\xd6\x93\xca\x61\xbc\xf7\x9e\x4e\x24\x3a\xcf\x8c\x87\xe2\x89\x69\x8e\xc4\xb3\xe1\xc4\x16\xac\x5b\xbb\x39\x6e\x0a\xa7\xd9\x31\xdf\x7b\xcf\x70\xcc\x96\x6d\x8e\x5d\x58\x21\x04\xbc\xf7\xfe\x67\x9d\xb6\x79\x66\xe3\xff\x3f\xfc\xa3\x7b\x64\x0b\x79\x96\xd0\x31\xc2\xde\x53\xb9\x90\x1c\x86\x03\x0f\x4e\x81\x00\x62\x0d\x5c\xdb\xec\x9b\xfd\x13\xc4\x93\x76\xf3\x99\x83\xf9\x8f\x8c\xd6\x70\xf8\xc4\x32\x39\x5d\x54\x20\x75\xbd\x1b\xa9\xe8\x50\x8b\xee\xf5\xbc\xea\x98\x30\xf6\x53\x19\x84\x1a\x15\x9b\x92\x98\x22\x07\x4e\x5e\xad\x84\x97\x03\xe5\x38\x2b\xad\x72\x2e\xbd\x00\x1b\xe1\xd4\x07\x87\x20\xfb\xe2\x17\xc3\xa6\x24\xeb\x20\xfa\xdb\xc3\x2f\x9e\xb9\xcd\xc9\xf8\xd4\x1c\xc0\xc0\x61\xe4\xc3\x75\x0a\xfb\xa2\x7e\x66\x9e\x50\x57\x9d\x1a\x8a\xc4\x00\x43\x39\x37\x9a\xad\xb1\xf5\xd4\x74\x5b\x38\x21\xb7\x47\x4f\x7d\x6b\x80\x68\x49\x8a\xed\x3f\xde\x83\x70\xc7\x24\x37\x21\x83\xf8\xde\x41\xf0\x56\xde\x8d\x84\xdd\x23\x14\xf9\x49\x3c\x0d\xd3\x85\x90\xf5\x05\x42\x3c\x3b\x46\x2a\x67\xa1\xca\x74\x94\x84\xcc\xae\xe5\x50\x40\x36\x91\x55\x7a\x2e\xe7\x77\xbb\x5f\x39\xca\x76\x82\x74\xc7\x39\x22\x8a\x92\x9b\x62\x32\x16\x20\xdf\x67\x83\x10\x00\x8d\x83\x81\xef\x27\x79\x9c\x69\x03\x5a\x47\x7b\x16\x6f\xb3\xfe\x15\xa1\xbc\xc5\x05\x82\x8d\x50\xe1\x8c\xf3\x07\xb6\x7a\x1d\xca\x1b\x88\x5d\x65\x73\xf8\x71\x03\x3b\xfb\x7c\x62\xd9\xc8\x44\x56\x77\x80\x93\x7e\x6a\x99\x67\x15\x09\x2d\xcf\x47\x68\x41\xde\xca\x3c\xec\x45\x89\x65\xe8\x53\x4a\x2b\x83\x43\xab\xd9\x3a\x35\xdd\xe6\x53\xd8\x99\x5d\x99\xd5\x27\x0c\xa0\x8c\x0e\xe1\xa4\x7f\x31\x7e\x30\x1c\x83\x16\xb9\x84\x41\x75\x38\x05\xf8\x40\x66\x98\x75\xc4\xb9\x9a\x32\x30\x18\xc8\x3c\xbf\xa4\xfc\x41\xae\x11\x66\x4a\xa7\x27\x4d\x0c\x76\xf7\x1f\x3e\x28\x65\xbe\xcb\x16\xd6\x8b\x7c\xdf\xd8\xe1\xf7\x41\xd7\x4e\xf8\x34\xa0\xbd\x7f\x25\x00\x7f\xb8\xc8\x17\x14\xfc\x81\xe4\x57\xc8\xe8\xd8\x1c\xce\x3c\x45\x80\x58\x26\x3a\x20\x66\xab\xe5\x26\xfb\xc2\x56\xac\xfe\xa4\x4f\xde\x06\x60\xbf\x04\x50\xa7\x66\xc5\x73\x8d\xe7\x37\xf2\x72\x9e\x24\x57\x14\xf1\x4e\xf1\x2b\x32\x4f\x5d\x89\x97\xb9\x44\x6a\x8d\x64\x3c\x43\x7c\xff\x7c\x62\x82\xde\xf4\xcc\x41\x97\x63\xc4\x7e\x41\x2f\x64\x14\xc2\x61\xc0\xf7\x16\x92\xd2\x11\x8e\x14\x51\x02\x5b\x50\x46\xdb\x24\x33\xb5\xdd\xb1\xd5\x37\x91\xfc\x31\xe7\x01\x39\x36\x9b\x53\x18\x73\x2c\x91\x95\xc4\x4a\xa7\xe2\x3c\xb1\x46\xee\xb8\xe7\xb8\x98\x47\x74\x75\xb3\x3f\xb2\x62\x22\x51\x1a\xb7\x76\x05\x98\x93\x7c\x3a\xe5\x2c\x45\xbb\x24\xaf\xf4\x41\x29\x63\x19\xd5\x80\x8e\x5c\x12\xb3\x84\x99\x84\x9c\x95\x0a\x8a\x19\x24\xf1\x87\x48\x9c\x31\xf6\x71\x43\x7c\x8e\x3b\x1b\x08\x48\x83\xb6\x7b\x32\xe9\x74\x88\xa6\x98\x03\x4d\xdf\xc0\x01\xc9\xd9\x11\x35\x91\xfa\x56\x9a\xf1\xb1\x47\x69\x82\xeb\x4c\x4e\x7e\x64\xb6\xc6\xcc\xd7\x4a\xb2\x7b\x5f\x95\x16\xa7\x99\x1f\xf1\x9c\x05\x9b\x92\x5a\x64\xcb\xc6\x8c\x9e\xc9\x8c\x8e\x1e\x3c\x7e\x84\xbe\xcf\x3f\x2f\x3a\x5e\xbe\xe4\xd6\x03\x42\x69\x90\x64\xb2\x46\xfb\xe5\x44\x4a\xa4\x42\x02\x52\x7d\xcc\x3b\x1f\x3d\x7c\x80\x70\xef\xf4\xc7\x23\x07\x2d\x51\x44\xc9\x0d\xa1\x28\x68\xc0\xbf\xe8\xe4\x11\x9a\xed\x31\x50\x24\x4a\xce\x73\xb1\x10\xa9\x9f\xe2\x60\x16\x0b\x08\x82\x1a\x94\xd8\xed\x4e\x4b\x3c\xfc\x68\xef\xe3\x86\xb0\xf4\x42\x7a\xbf\x65\xc2\x55\x1b\x41\x40\x88\x17\xf2\xa2\x1b\xc4\xe0\xf5\x7a\x65\x4a\xab\x70\xc3\x53\xb3\x37\x24\xd2\xa2\xc3\x8c\x66\x9a\xc4\xbf\x38\x64\x12\x71\x0e\x42\x3a\x2e\xc4\xd4\xc6\xda\x38\x79\x0e\x4b\x69\x31\x0f\xd9\x4c\xa0\xb0\xb5\x2d\x71\x8b\xe3\x33\x4d\x53\x2b\xc4\xa5\x05\xf6\x82\x71\x2e\x6d\xa8\x08\xed\x1b\x9f\xd1\xa9\x90\x35\xac\xf2\xb8\xa4\xaa\x74\x43\x0c\x11\xbf\x48\x2d\x34\x92\x68\xac\xac\x64\x34\xad\x53\xa0\x02\x5e\x95\x89\x4a\x9b\xe9\xda\x44\x75\x5c\x13\x7e\x14\x42\xab\xea\x40\xca\xe7\x2e\xf1\x30\xab\x43\xee\xbf\xe1\xc4\x77\x70\x33\x6d\xdf\xef\x22\x67\xc5\x88\x0d\x3b\x63\x13\xd3\x1c\x36\x08\xe0\xf8\x60\x3a\x74\xa2\x0f\x0e\x0f\x0e\x1a\x62\x4c\x4a\x14\xc4\xe7\x05\x05\x5c\x3c\x4a\x36\xdc\xf5\x60\x68\x48\xfa\x5f\xec\x90\x85\xef\x88\x4f\xb9\xfb\xb3\x0a\x4f\xfe\xe3\x0b\x82\x61\x01\x0f\x31\x3a\x36\x8a\xc0\xe3\x62\x51\x98\xc8\x3a\xf3\x71\x3e\x58\x7a\x4a\xdd\x24\x69\x50\x10\x98\x0d\x77\x31\x9e\x27\x94\x41\xdf\x76\xdb\xa2\xa3\xa1\x83\xea\xdb\xfd\xad\x9e\x85\xa0\xe9\x5a\x24\xa4\x78\xd6\x7c\x81\xeb\xb5\xe1\x88\xd3\x5e\x19\x99\xbd\x65\xd8\xa8\x44\x67\xda\x9b\x41\x61\xb7\xa8\xa4\xee\x08\xe0\x4c\x2c\x76\x79\x0b\xbb\xf4\x27\x49\x11\x44\x8d\xf1\xf0\x89\x39\xf8\x81\x93\x7c\x1f\x18\xba\x19\x88\x7a\x6c\x70\x21\x93\x95\x06\x10\x06\x9a\x1f\x4b\xe4\xc7\x8c\xcf\x07\xfd\xa5\x38\x44\x46\x95\x00\xdd\x80\xe8\x2d\x19\xb5\x6a\xcc\x92\x64\xa6\xf1\xde\x05\xe7\x78\x21\xfd\x6c\x0d\x0e\xf7\xfc\x1f\xc1\xb9\xb9\xb9\x29\x04\x01\x26\xc5\xcb\xb0\x06\x84\x52\x18\x4f\x93\x86\xb6\x8a\x1f\x3c\x1c\x7b\x24\xce\x7f\x17\xc0\x05\x13\xd8\x52\x29\xd1\x80\x1d\xb0\x94\x3b\x11\x7e\xe7\xac\x02\xe0\x02\x90\x97\x2f\x7f\x47\x30\x50\x9f\xb9\xa4\x81\x4b\x2a\x70\xcc\x15\xdf\xfe\xf2\x2f\x7f\xfd\xf5\x4f\xee\xb4\x93\xd4\x5b\xce\x8b\x68\x5c\xec\xa3\xb1\xf7\x9b\xcc\xe4\xce\x39\xdb\xbb\xbf\x91\xe1\x65\xf2\x3b\x2a\x00\x12\x76\x27\xe2\xb0\x7c\x16\x5b\x59\xf7\x37\xec\xf4\xee\x29\x5b\xe6\xfc\xdc\x27\x92\xb5\x55\xfc\xc8\x45\x92\xae\x74\x8d\x81\x54\xb8\xc3\xc1\x83\x5a\x79\xe4\xad\x8b\x97\x62\xb0\xd1\x6c\x37\x47\x63\x66\xbe\xba\xa5\x2c\x39\x8a\xfe\xa2\x8e\xe9\xb6\x90\x52\x41\x2c\xaf\xbd\xa8\x42\x1e\xb6\x24\x3e\xdc\x43\xbd\x01\x49\x4f\x9b\xa4\xc8\xc3\xbd\x52\x90\xde\x0b\x7b\x5b\x75\x2f\x10\x10\xc3\x8b\x98\xaf\x27\x14\xf9\x74\xc0\xc3\x2c\x9e\x70\x04\x8e\x9c\x21\x5a\x5d\x1d\x67\xfe\xb2\x46\x9d\xc7\x47\x0f\x0f\x1f\x7d\x5c\x2b\xa3\xd8\xf1\xc2\xf3\xbd\x14\xa9\x26\xb8\x3c\xde\xab\x2d\x93\x24\x72\x89\x63\x1d\x83\xf1\xd4\xc2\x20\x92\x6e\xc1\x75\x8e\x35\xed\x2e\x57\x3e\x12\x17\x9b\xd2\x6e\x7f\xff\x60\x7f\xff\xa2\xc8\x8f\x4c\xf5\x95\xc2\x86\xee\xc6\x94\xfc\x69\x83\xad\x86\xb6\xa8\x36\xef\xc2\x15\x5c\xf1\xa9\xd5\xde\x06\x76\x94\x26\xd7\x21\x95\x26\xcc\xfb\x67\xc8\x97\xa4\xbf\xd2\xdb\xc3\x90\x23\x4e\x84\x73\xef\x9a\x02\xf6\xaa\x1c\xb5\x92\x74\xa9\x46\xcb\x83\x82\xe8\x1d\x6e\x0a\x7a\x94\x98\x8d\x59\x43\x5c\x70\x31\x58\xf4\xaa\x8b\xdf\x1b\x8a\xa4\xf0\x11\xea\xb1\x3a\x7e\xeb\x41\x4a\xa4\x72\x97\x1b\x45\xa0\xe2\x72\xc3\x28\x5f\x40\x70\xca\x9d\x51\x9d\x7c\x54\xae\xf7\x59\xb9\x47\x37\x23\x22\x72\xb1\x86\xc9\x2d\xee\x2e\x8b\xb2\xb6\xd4\x04\x6b\x3a\x85\xca\x3e\x08\x6f\x28\x75\x21\x57\xd4\x89\x05\x87\x08\xdd\x28\xbc\x92\xae\xe6\xfb\x98\x61\x69\x02\x49\x2c\xa1\xc4\x0b\x36\xcb\xae\x55\x98\x73\x95\x9d\x68\xf7\xd6\x02\xe1\xd2\x13\xdb\xac\xd0\x56\x33\x66\xbe\xa4\x28\x71\xf0\xfa\x5b\x73\xe9\x4e\xab\xac\x11\xa8\xf8\xd3\x52\x30\x9d\x3b\x36\x5b\x87\xf7\x10\x8e\x6b\x17\xda\x12\xf2\x18\xe4\x6e\xcf\xe8\xb6\xdc\xd2\x7b\x98\x8a\x43\x88\xee\xd8\x48\x89\xc2\xa9\x64\x39\x77\x4c\x77\x4c\xc7\xa1\x22\xb6\x67\x75\xcc\xed\xf9\xc6\xf3\xa2\xf8\x22\xab\x1e\x13\x4f\x8d\x3c\x5f\x52\x45\x57\xb4\x33\xe0\x9b\x9b\x0a\x4d\xb4\xb4\x7d\xbf\x44\x01\x93\xdf\xb2\xef\xa2\x1f\x2b\xda\x4f\xad\x16\xad\x53\xf0\x67\x5d\xce\xb9\x93\x51\x6f\xd8\x6c\xbb\xd5\x3b\x0a\x5d\x07\x2a\xbe\x47\x0e\x63\xa9\xa4\xbe\xf2\x61\xe2\xe3\xa3\x9e\x41\xc3\x4e\x90\x27\x6a\x9e\x27\x3b\x18\x84\x95\xbd\x82\x4e\x95\x25\xa4\x4a\xf2\xd4\x87\xde\x74\xce\xba\xd6\xa3\x2c\x1d\x37\x10\xd0\x79\x80\xce\x80\xfc\xb8\x6b\x74\xed\x62\x2b\xce\x70\x62\xf3\x0e\xcb\x61\x6b\x2e\x5b\x0e\xa9\x30\x1d\x2f\xcb\x10\x1f\xc0\xbb\x33\x02\xea\x6c\x2e\x19\x8e\x4d\xab\x62\x5e\x2c\xd9\x1e\xc0\xe1\xdb\x1a\x12\x45\x40\x5e\xd0\x71\x5f\x14\x86\xb0\x39\xfd\x11\xdd\xac\x11\x43\xad\x08\xb9\x35\x51\xc3\xb3\xe9\xbe\xd8\xba\xdb\xa9\x74\xd0\x55\x68\x2c\x09\x9a\x05\x55\xbd\x5c\xed\xd3\x15\x02\xaa\x47\x55\x38\x5a\xb8\xf0\x66\x72\xf7\xc5\x52\xce\xfe\x54\x3f\x2e\xe3\x99\xd1\xec\xf5\x86\x67\x66\x9b\xaf\xb8\x28\x43\xdd\x39\x88\xf8\xe2\x2b\x5d\xa1\x82\x6d\x4b\xac\xc9\xf1\x65\x7b\xaf\x87\x07\xfd\x13\xa3\xdf\xfc\x82\x0b\x53\xba\xb8\x3e\x28\xe6\xc5\xeb\xdb\x77\x9a\xa4\xb8\x66\xc9\x97\x51\xe2\xdd\x42\x09\x65\x1a\x4d\x27\xba\xec\x70\x95\x69\x3c\x27\x63\x26\xb4\x9d\xa5\xf4\xc1\xc6\xa5\xbe\x91\x2c\xd8\x2c\x21\x47\xf7\x62\x2b\x81\xf8\xb3\xa4\xfb\x48\x42\x45\xde\x82\x10\x5c\x1a\x51\xfc\xb0\x14\x82\xf4\x54\xd4\x45\x18\x0e\x4f\xa3\xaf\x01\x74\x6e\xcd\x81\x63\xb5\x6a\x62\x12\x87\xaf\xda\x1e\x15\x6d\x76\x7e\xb9\x2a\x9e\x3a\xad\xc7\x07\x07\xe5\xef\x97\xfa\xe1\xc1\x5e\xad\x14\xbd\x7e\xd0\x5d\x87\x87\x87\x1f\xaf\x1f\x06\x5e\x9c\xd4\xc4\x93\x30\x43\x66\x41\xd1\xe3\x64\x60\xe5\xc5\x4f\x1f\x95\x58\xb8\x7e\xf6\xd3\x84\x33\x20\xbf\xd2\xac\x22\x3b\xf2\x69\x12\xdd\x21\x95\xc9\xc9\xbd\x4b\xaa\xcf\x2b\x30\x28\x29\x4b\x83\x9f\x25\x91\x17\xcf\x1a\x49\x3a\xdb\x5d\x5e\xcd\x76\x09\xbd\xdd\xf7\xf1\x54\x27\xbe\x9a\x79\x64\x26\x9d\xa1\xdd\x6f\xea\x64\x06\x22\xac\x3f\x9e\x6c\xae\x6e\xcb\xa4\x56\xf0\xdb\x6a\x56\xa3\x74\x4c\xbf\x54\xe3\x6a\xe7\x2f\xaf\x57\x6f\xf9\x7f\x39\xb7\xac\xa7\x50\xab\x7a\x74\x10\x4a\x2e\x3d\xfe\x48\xb0\xc0\xc8\x10\xb5\x09\x7f\x6d\x28\x8d\xb3\x9c\x56\x63\x23\xd9\x31\x8a\x6b\xce\xa2\xf5\xff\xf3\x7e\xe0\xd6\xd5\x80\xbe\xff\x28\x15\x1f\xa7\x88\x7d\xa4\x66\x5b\x5e\xe6\x33\x7a\xb0\x80\x3d\xfd\x9e\x79\x29\xeb\x6f\xa6\x69\x92\xd2\x43\x2b\x0d\xe9\x42\xf1\x76\x7a\xd7\x12\x8c\x9e\xf9\xd4\x24\x9a\xc3\xaf\x46\x49\x75\x4a\x6c\x58\x75\x7d\xd5\x46\xc7\xd0\x28\xda\xcf\xcb\x69\xeb\x09\x0c\xc6\xed\xd1\xd4\xb8\x19\xfa\x89\x2e\x12\x75\xe0\x51\x74\xd5\x99\xc0\x2c\x60\xdd\x18\x2a\xd2\x24\xc3\xf3\x3d\x75\x43\x16\xc8\x2e\x98\x50\x64\xa0\xeb\x85\x82\x5b\xdc\x7f\x3b\x61\xf5\x86\x5d\xd7\x1e\x8e\x75\xa9\x5b\xc4\x2a\x72\xe4\x08\xb1\xb9\xe2\xcd\x74\x49\x81\x53\xa4\xdd\x6c\xc9\x60\x4c\xf7\xb4\x33\xd3\x87\x24\xa7\xc4\x99\x91\x5e\x47\x12\x35\x0f\xa7\xd9\xbb\xe4\x1c\x3c\x06\xeb\xf1\x62\x08\x14\x9f\x7e\x8a\xb7\x9a\x38\x78\xf0\xb0\x12\x63\x5c\xe7\xd4\xea\xf0\x57\xad\xc7\x9c\x04\x67\x14\x08\x59\xeb\x00\xa5\xd0\xea\x6d\xbd\xda\x4d\xab\xf7\xec\x2d\xcd\xcc\x57\xcb\x30\xe5\xd8\xb1\x52\xb4\x1d\x12\x40\x7b\xb9\x17\xc8\x48\xd2\xc5\xe8\x94\xee\x4b\x17\xd8\x36\x8d\xd8\x86\xeb\x11\x6f\x66\x7d\x79\x5d\x39\xe6\xf8\xae\x33\x8e\xab\xa7\x66\xcb\x82\xe1\x6a\x7a\x4b\xd1\x4c\x7f\x78\x2d\xf0\x58\x20\xab\x23\x00\xdf\xc1\x45\x6c\x13\x5c\x68\x60\xb6\xc6\x2e\x12\x7a\xdf\xa9\x7e\x89\x1b\x63\x3e\x7c\x2d\x5d\xcb\xe6\x9b\x9b\x0a\x95\x86\x90\x08\xcb\xbd\x4b\x6a\x95\xdd\x14\x6e\x01\x72\x48\x26\x9f\x23\x3a\x6a\xdf\xcf\x83\xe5\x2d\xbb\xa7\x21\xd5\x6f\xa3\x78\xe7\x4b\xc8\x0a\x73\x2f\xbe\x6e\xae\xbf\x59\x70\x24\xb9\x85\x12\x35\x56\x51\x7a\xd7\xb5\xdd\xf6\x06\xda\xa1\x37\x8b\xb1\x5c\xe8\x97\xd0\x15\x17\x4b\xc4\x3e\x76\x2a\x57\x7c\xef\x1c\x78\xeb\xce\xaf\x60\xfe\xbf\xed\x85\x09\x9f\xae\x24\xf2\xbb\xf9\x6e\x95\x6c\xd2\x73\x11\xf3\x9e\xef\xec\x57\xef\x69\x76\x6a\x3b\x07\x5b\xef\xe7\x74\x26\x26\x5d\xbe\x3a\x15\xd8\xd6\x61\xf7\x36\x74\x9b\xcf\x5d\x1b\xf8\xb6\x3f\x7b\x89\xad\x2f\x50\x46\xdb\x26\xd9\x3c\xee\x04\xf3\x02\xba\x68\x7c\x85\xa4\xa2\xb7\x77\xc4\x1f\xb0\x8e\xe8\xcf\x67\xeb\x4f\xdb\x7c\x59\xfe\x27\x08\xbd\x29\x18\xef\x71\x9e\x4d\x1f\x1b\x64\x35\x9c\x4f\x40\xae\xcf\xd9\x1f\xba\xd6\xd8\x6d\x5b\x9d\xce\xb6\xf7\xd3\xa5\x71\x3a\xcb\x35\x55\x22\x6b\xe7\xcc\x00\x14\x3f\xc4\x44\x31\xf3\x3f\x2c\x97\xdd\xa9\xd7\xbd\x19\xed\x50\x01\x40\x81\x17\x44\x34\xca\x26\x94\xe8\x38\x1d\x26\xf1\x3a\xe1\x85\x59\x5d\xf9\x0b\x66\x77\x41\xe2\x2b\x6e\x98\xf9\xbb\xfb\x8d\x47\x8d\x07\x44\x99\x9b\x76\x97\x36\xc0\x77\x3b\x58\x65\x2e\xbd\x88\x6e\xd8\xe9\xf6\xbd\xc1\x3b\x6e\x4c\x95\x7f\x75\xfe\x16\x35\x33\xf9\x0b\xa7\x2e\x0c\x36\x55\xed\x1c\x2c\x73\x43\x2f\x38\x46\x7d\xd4\xa8\x16\xb5\x07\x1f\xbd\x5b\x4b\x5a\xac\xaa\x67\x1e\xa7\xc4\xa6\xb8\x84\xa8\xd7\x33\x6f\xa6\x7e\x1b\x45\x49\x5a\xa1\xea\x5a\xcf\xe7\xe1\xfe\x63\x0a\x33\xcd\x01\x37\xc8\xb8\x3e\x71\x6a\x5f\xcd\xeb\xad\x01\xfd\x3d\x7d\x52\x0b\x64\xbd\x6d\xd6\xa6\x69\xbd\x63\xd7\xe2\xa8\x3e\xe8\xd5\xa2\xeb\x7a\xef\x69\x2d\xcd\xeb\xf6\xa4\xf6\xc2\xab\xff\x68\x54\x93\xaa\x6e\x3a\xb5\x65\x56\x3f\xb1\x6b\xcb\xa8\x3e\xea\xd5\x2e\x67\xf5\x93\x6e\x0d\x6b\x5a\x63\xfe\xd4\x49\xb2\x4d\x84\xa9\x50\xcd\x6b\xbf\xfa\xd7\x1f\x7f\xfb\x5f\x7f\xf5\xed\xcf\x7f\xfa\xdd\x5f\xff\x79\xed\x57\xbf\xf8\xfa\x7f\xfe\xf9\x27\xc5\x4b\x5b\xe6\x99\xf2\xe7\xb5\x4e\xea\xc5\xdf\xfc\xa3\x17\xaa\xda\x40\xa2\xba\x05\x49\x09\x54\xad\xe7\x65\xd7\xa1\xfc\xef\xbf\xcf\x6b\xaf\xff\xee\xcd\x9f\xbd\xf9\xfa\xcd\xd7\xaf\x7f\xf9\xfa\xe7\xaf\x7f\x51\xfb\xee\x6f\xfe\xe1\xbb\xbf\xfd\x97\x5f\xff\xdb\x4f\x6b\xa6\x5a\x7a\xdf\xfc\x2c\x89\x6a\x23\xf0\xb5\x7c\x96\x7f\xf3\x4f\x0a\x8f\x91\xba\x0a\x6b\xaf\x7f\xf6\xe6\x2f\x5e\xff\xe7\xeb\xff\x78\xfd\xef\x6f\x7e\xac\x67\xd6\xac\xcc\x8b\x42\x62\x4e\x9a\x79\x04\x0c\x3f\x31\x42\xe2\x41\xa8\x65\xae\xe0\xcf\x0c\x0f\x79\x8a\x24\xa6\x74\x6e\x30\x3e\x8c\x93\xc1\x20\xe1\xf1\xab\xb9\xc1\x48\xf1\x63\x7d\x7c\x66\x30\x62\xfc\x2f\x4f\x0c\x86\x8d\xe2\x63\x6a\x30\x76\x78\x8c\x23\x83\x01\xa4\x7f\x00\x72\x6d\x30\x8a\xf4\xed\x37\x37\x18\x4a\x3c\xbe\xf0\x0c\xc6\x93\x56\x51\x06\x83\x8a\x47\xfe\x35\x18\x5c\x7a\x8b\x0c\x46\x98\xfe\xe1\xca\xcc\x60\x98\x89\x8b\x67\x74\xe9\x44\x0e\x7c\x6e\x38\xa7\xc3\x33\xb7\x03\xb2\x06\xea\x72\x62\xeb\xcf\xdd\xeb\x40\xfd\xbf\x01\x00\x00\xff\xff\xf9\x37\x9f\xfe\x23\x24\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x5a\x4b\x8f\xe3\x56\x76\xde\xf3\x57\x5c\x97\xe3\xb8\x3b\x90\x54\x2f\xf7\xc3\x65\x57\x62\x95\x44\xa9\x38\xad\x97\x49\xa9\xcb\xed\x46\x81\xc5\x22\xaf\x24\x76\x51\xa4\x9a\x97\xac\x6a\x19\x59\x8c\x91\x45\x80\x2c\x93\x41\xb2\x09\x82\x64\x11\x04\x98\x3c\x90\x41\x36\x33\x13\x64\x65\x64\xdf\xfd\x1f\x0c\xcf\xe4\x5f\xe4\x3b\xe7\x92\x12\x55\x5d\xee\xf1\x4c\x32\xb0\x51\x22\xef\xe3\xdc\x7b\xbe\x7b\x1e\xdf\xb9\xec\xf7\xc5\xc0\x7c\x6a\xda\x82\xff\xf4\x87\x6d\xab\xf3\x4c\x8c\x4f\x2d\x47\x74\xac\x9e\x69\xbc\x2f\x46\x3d\xb3\xe9\x98\xa2\xdf\x7c\x62\x8a\xd6\x69\x73\xd0\x35\x1d\x31\x1c\x88\xd6\xd0\xb6\x4d\x67\x34\x1c\xb4\xad\x41\x57\xb4\x26\xce\x78\xd8\x47\xe3\xa0\x63\x75\xf5\x4c\xe3\x13\xd1\x5c\x2e\x45\xec\x2d\xa4\xc8\xe6\x5e\x26\xd4\x3c\xb9\x51\x22\x89\x85\xbc\x96\xe9\x4a\x2c\xbd\x19\x3a\xc2\x2c\x92\x46\x73\x34\x72\x07\xcd\xbe\x29\x8e\x45\x37\x99\xa9\x23\xfc\x15\xdd\x30\x13\x8e\x4c\xaf\x43\x5f\x42\x52\x6b\xee\xc5\x18\x8e\xb6\x70\x2a\x56\x49\x2e\xd2\x3c\x16\x51\xe2\x7b\x51\xb4\x32\xec\xc9\xc0\x9d\x38\xd8\xfd\xb1\x98\x85\x19\x46\x9b\x61\x36\x97\xa9\xd8\x09\xe4\xf5\x4e\x4d\xec\x2c\xd3\x24\xd8\x11\x09\x1a\x32\xa9\x32\xb4\x04\x72\xea\xe5\x11\x64\x29\x3d\x86\x25\x40\x75\xda\x00\xde\x0d\xe3\x79\x2a\x97\x89\x0a\xb3\x24\x5d\x9d\x1b\xf6\x70\x38\x16\xc7\x86\xd3\xb2\xad\xd1\xd8\x1d\x3f\x1b\xd1\xb0\x4b\x4f\xcd\x31\x2e\x0f\xcf\xb1\xde\x20\x5f\x5c\x62\xbd\x64\x0a\x89\x2a\x97\x4a\xeb\xeb\xa5\x92\x75\x96\x81\x08\x63\xe8\x2d\x59\x65\xc3\x72\x9c\x89\xe9\x8e\x9a\x5d\xe0\xe6\x0e\x26\x7d\x08\xdb\xdf\x83\x28\x05\x65\x65\x7a\x6e\x8c\xec\xe1\x78\xd8\x1a\xf6\xd0\x3e\xcf\xb2\xa5\xd1\x1e\xf6\x9b\xd6\x00\x6f\xac\xee\x3c\x51\x19\xef\xc8\x9d\xd8\x34\xe4\x83\x7b\xe5\xf8\xfb\xea\x68\x77\xf7\x83\x7b\x7a\x38\x5e\x3e\xb8\x77\x3a\x1e\x8f\xdc\xd1\xd0\x1e\xdf\x57\xbb\x06\xbf\x34\xdb\x6d\xa0\x64\xac\x3b\x20\xe0\x70\x6f\x6f\x0f\x2a\xb4\x43\xe5\x5d\x46\x52\x38\xce\xa9\x98\x4a\x2f\xcb\xb1\xf9\x9b\xb9\x8c\x45\x9c\x40\x93\x6b\x2f\x8c\xa8\xdb\x68\x5b\x4e\xf3\xa4\x67\xba\x34\xec\x58\x4c\xbd\x48\x49\x03\xcf\xa5\xb0\x83\x83\x8a\xa8\x56\x7b\x40\x47\x1d\x93\xf6\xc5\x19\x2c\x92\x40\x1a\xc3\x4e\xa7\x67\x0d\xcc\x12\x70\x2d\xa4\x14\x6c\x0f\x27\x63\xd3\x76\x7b\xc3\xee\xba\xeb\x13\xd1\x95\xb1\x4c\xbd\x0c\x70\x66\x72\xa9\x8e\xd0\xf2\x07\xc2\x0f\x00\x67\x36\xdf\xcd\x92\xdd\x19\x6c\x66\xd7\xcf\x55\x96\x2c\x76\x09\x32\xc5\x03\x1a\xdc\x2e\x7c\x99\x66\xa2\xee\x7b\xc7\x59\x9a\x4b\x51\x0f\x72\x08\x0a\x93\xf8\xf8\xf1\xa3\x87\x7b\xf3\xbd\xc5\x9e\x12\x75\xc2\xf4\x78\xb1\xa2\x9f\x86\x7c\xe5\x2d\x96\x91\x6c\xf8\xc9\xc2\xf8\x04\x72\x86\xa9\x98\xa6\xc9\x42\x78\xa2\xb1\x9c\xbe\x12\xd3\x10\x8a\xc9\x57\xcb\x24\xcd\x70\xac\xdc\x03\x53\x13\x67\x61\x1c\x90\x71\xd3\x62\xe1\x34\xf4\xf5\x5e\x13\x60\x78\x2f\x48\x20\x85\x40\x9c\x26\xe9\x4c\x66\x22\x4b\x8a\xf9\x3c\x71\x99\x86\xd7\x34\xf8\x4a\xae\xee\x6b\xbd\x92\xa5\x8c\x95\x8a\xc4\xf2\xca\x57\xfb\x07\xa2\x0e\xf0\x48\x2a\xaf\x5e\x4f\xf2\xac\x78\x93\x0b\x51\x8f\x13\x4c\x53\x3f\x6c\x16\x46\x96\x93\xa8\x43\xd1\x43\x20\x95\xd1\x32\xed\xb1\x4b\xfe\x0a\xb8\xab\x10\xee\x96\xcb\x18\x4f\xcc\x67\x77\x0e\x28\x24\x62\xf9\xc9\x72\x09\xeb\x8f\x70\xd6\x11\xf9\x40\x26\x81\x20\x29\xe5\xc5\x01\x50\x00\xdc\xbe\xc6\x8d\xce\x0b\xc3\x2b\xde\xc7\x10\xa0\x95\x4c\x0d\x60\x91\xf3\x53\xb3\x7c\x25\xfd\x1c\x00\x1b\xce\xb8\x39\xb6\x5a\x2e\xdb\xfb\xa8\x39\x86\xcd\xe9\xa8\x12\x11\xc4\x38\xc5\x62\xd1\xee\x97\xd6\x48\xa8\x7c\x49\xb0\x1a\xe6\x80\x0d\x89\xdb\x36\x26\xd4\xc3\x66\xc2\x78\xa6\xa3\x0e\x8e\x02\x47\x12\xd7\xa3\x64\x36\xc3\x31\xe6\x70\x3d\x55\x13\xbe\x17\x8b\x4b\x29\x76\xe6\xc9\x42\xea\x70\x81\x83\x8a\x70\x88\x3b\x46\xaf\xc9\x61\x8e\xbc\x96\x70\xa0\x11\xf0\xd8\xc0\xcb\x3c\xc4\x01\x79\x5e\x09\x39\x8b\x95\x7a\x19\x71\xd0\x81\x35\xcd\x52\xa9\xb4\x24\x34\x86\x99\x3c\x44\x47\x98\x7d\xa8\x28\x82\xa5\xc2\x9f\x27\x14\xdc\xda\x27\x65\x4c\xe1\xb9\xc6\xe9\xd0\x21\x57\xda\x3f\x78\xd4\xd8\xc3\x7f\xfb\x47\x87\x87\x7b\x0f\x8d\x22\x3c\x92\x49\x1b\x45\xac\x4b\x93\x24\x33\x46\x4d\xc7\x39\x6b\x33\x2e\x1d\x5a\xa8\xb2\x6c\x1c\xad\x6a\x42\x96\xa1\x50\x3b\x25\xed\x2c\x95\x2f\xf3\x30\x2d\x54\x44\xc8\x09\xa7\xab\xfa\x34\x8f\xa2\x1d\x78\x72\x6f\x1d\x06\xf5\xf8\x52\x6c\xb9\x7f\x96\x6a\xe8\xa3\x10\xa4\x3f\x3b\x59\x23\xb8\x04\x1c\x5e\xb0\x08\xe3\x73\x8e\x64\x7e\x9e\x86\x19\x42\xa7\x35\xc0\x09\xf6\x7a\x70\xe7\xd6\x93\xca\x61\xbc\xf7\x9e\x4e\x24\x3a\xcf\x8c\x87\xe2\x89\x69\x8e\xc4\xb3\xe1\xc4\x16\xac\x5b\xbb\x39\x6e\x0a\xa7\xd9\x31\xdf\x7b\xcf\x70\xcc\x96\x6d\x8e\x5d\x58\x21\x04\xbc\xf7\xfe\x67\x9d\xb6\x79\x66\xe3\xff\x3f\xfc\xa3\x7b\x64\x0b\x79\x96\xd0\x31\xc2\xde\x53\xb9\x90\x1c\x86\x03\x0f\x4e\x81\x00\x62\x0d\x5c\xdb\xec\x9b\xfd\x13\xc4\x93\x76\xf3\x99\x83\xf9\x8f\x8c\xd6\x70\xf8\xc4\x32\x39\x5d\x54\x20\x75\xbd\x1b\xa9\xe8\x50\x8b\xee\xf5\xbc\xea\x98\x30\xf6\x53\x19\x84\x1a\x15\x9b\x92\x98\x22\x07\x4e\x5e\xad\x84\x97\x03\xe5\x38\x2b\xad\x72\x2e\xbd\x00\x1b\xe1\xd4\x07\x87\x20\xfb\xe2\x17\xc3\xa6\x24\xeb\x20\xfa\xdb\xc3\x2f\x9e\xb9\xcd\xc9\xf8\xd4\x1c\xc0\xc0\x61\xe4\xc3\x75\x0a\xfb\xa2\x7e\x66\x9e\x50\x57\x9d\x1a\x8a\xc4\x00\x43\x39\x37\x9a\xad\xb1\xf5\xd4\x74\x5b\x38\x21\xb7\x47\x4f\x7d\x6b\x80\x68\x49\x8a\xed\x3f\xde\x83\x70\xc7\x24\x37\x21\x83\xf8\xde\x41\xf0\x56\xde\x8d\x84\xdd\x23\x14\xf9\x49\x3c\x0d\xd3\x85\x90\xf5\x05\x42\x3c\x3b\x46\x2a\x67\xa1\xca\x74\x94\x84\xcc\xae\xe5\x50\x40\x36\x91\x55\x7a\x2e\xe7\x77\xbb\x5f\x39\xca\x76\x82\x74\xc7\x39\x22\x8a\x92\x9b\x62\x32\x16\x20\xdf\x67\x83\x10\x00\x8d\x83\x81\xef\x27\x79\x9c\x69\x03\x5a\x47\x7b\x16\x6f\xb3\xfe\x15\xa1\xbc\xc5\x05\x82\x8d\x50\xe1\x8c\xf3\x07\xb6\x7a\x1d\xca\x1b\x88\x5d\x65\x73\xf8\x71\x03\x3b\xfb\x7c\x62\xd9\xc8\x44\x56\x77\x80\x93\x7e\x6a\x99\x67\x15\x09\x2d\xcf\x47\x68\x41\xde\xca\x3c\xec\x45\x89\x65\xe8\x53\x4a\x2b\x83\x43\xab\xd9\x3a\x35\xdd\xe6\x53\xd8\x99\x5d\x99\xd5\x27\x0c\xa0\x8c\x0e\xe1\xa4\x7f\x31\x7e\x30\x1c\x83\x16\xb9\x84\x41\x75\x38\x05\xf8\x40\x66\x98\x75\xc4\xb9\x9a\x32\x30\x18\xc8\x3c\xbf\xa4\xfc\x41\xae\x11\x66\x4a\xa7\x27\x4d\x0c\x76\xf7\x1f\x3e\x28\x65\xbe\xcb\x16\xd6\x8b\x7c\xdf\xd8\xe1\xf7\x41\xd7\x4e\xf8\x34\xa0\xbd\x7f\x25\x00\x7f\xb8\xc8\x17\x14\xfc\x81\xe4\x57\xc8\xe8\xd8\x1c\xce\x3c\x45\x80\x58\x26\x3a\x20\x66\xab\xe5\x26\xfb\xc2\x56\xac\xfe\xa4\x4f\xde\x06\x60\xbf\x04\x50\xa7\x66\xc5\x73\x8d\xe7\x37\xf2\x72\x9e\x24\x57\x14\xf1\x4e\xf1\x2b\x32\x4f\x5d\x89\x97\xb9\x44\x6a\x8d\x64\x3c\x43\x7c\xff\x7c\x62\x82\xde\xf4\xcc\x41\x97\x63\xc4\x7e\x41\x2f\x64\x14\xc2\x61\xc0\xf7\x16\x92\xd2\x11\x8e\x14\x51\x02\x5b\x50\x46\xdb\x24\x33\xb5\xdd\xb1\xd5\x37\x91\xfc\x31\xe7\x01\x39\x36\x9b\x53\x18\x73\x2c\x91\x95\xc4\x4a\xa7\xe2\x3c\xb1\x46\xee\xb8\xe7\xb8\x98\x47\x74\x75\xb3\x3f\xb2\x62\x22\x51\x1a\xb7\x76\x05\x98\x93\x7c\x3a\xe5\x2c\x45\xbb\x24\xaf\xf4\x41\x29\x63\x19\xd5\x80\x8e\x5c\x12\xb3\x84\x99\x84\x9c\x95\x0a\x8a\x19\x24\xf1\x87\x48\x9c\x31\xf6\x71\x43\x7c\x8e\x3b\x1b\x08\x48\x83\xb6\x7b\x32\xe9\x74\x88\xa6\x98\x03\x4d\xdf\xc0\x01\xc9\xd9\x11\x35\x91\xfa\x56\x9a\xf1\xb1\x47\x69\x82\xeb\x4c\x4e\x7e\x64\xb6\xc6\xcc\xd7\x4a\xb2\x7b\x5f\x95\x16\xa7\x99\x1f\xf1\x9c\x05\x9b\x92\x5a\x64\xcb\xc6\x8c\x9e\xc9\x8c\x8e\x1e\x3c\x7e\x84\xbe\xcf\x3f\x2f\x3a\x5e\xbe\xe4\xd6\x03\x42\x69\x90\x64\xb2\x46\xfb\xe5\x44\x4a\xa4\x42\x02\x52\x7d\xcc\x3b\x1f\x3d\x7c\x80\x70\xef\xf4\xc7\x23\x07\x2d\x51\x44\xc9\x0d\xa1\x28\x68\xc0\xbf\xe8\xe4\x11\x9a\xed\x31\x50\x24\x4a\xce\x73\xb1\x10\xa9\x9f\xe2\x60\x16\x0b\x08\x82\x1a\x94\xd8\xed\x4e\x4b\x3c\xfc\x68\xef\xe3\x86\xb0\xf4\x42\x7a\xbf\x65\xc2\x55\x1b\x41\x40\x88\x17\xf2\xa2\x1b\xc4\xe0\xf5\x7a\x65\x4a\xab\x70\xc3\x53\xb3\x37\x24\xd2\xa2\xc3\x8c\x66\x9a\xc4\xbf\x38\x64\x12\x71\x0e\x42\x3a\x2e\xc4\xd4\xc6\xda\x38\x79\x0e\x4b\x69\x31\x0f\xd9\x4c\xa0\xb0\xb5\x2d\x71\x8b\xe3\x33\x4d\x53\x2b\xc4\xa5\x05\xf6\x82\x71\x2e\x6d\xa8\x08\xed\x1b\x9f\xd1\xa9\x90\x35\xac\xf2\xb8\xa4\xaa\x74\x43\x0c\x11\xbf\x48\x2d\x34\x92\x68\xac\xac\x64\x34\xad\x53\xa0\x02\x5e\x95\x89\x4a\x9b\xe9\xda\x44\x75\x5c\x13\x7e\x14\x42\xab\xea\x40\xca\xe7\x2e\xf1\x30\xab\x43\xee\xbf\xe1\xc4\x77\x70\x33\x6d\xdf\xef\x22\x67\xc5\x88\x0d\x3b\x63\x13\xd3\x1c\x36\x08\xe0\xf8\x60\x3a\x74\xa2\x0f\x0e\x0f\x0e\x1a\x62\x4c\x4a\x14\xc4\xe7\x05\x05\x5c\x3c\x4a\x36\xdc\xf5\x60\x68\x48\xfa\x5f\xec\x90\x85\xef\x88\x4f\xb9\xfb\xb3\x0a\x4f\xfe\xe3\x0b\x82\x61\x01\x0f\x31\x3a\x36\x8a\xc0\xe3\x62\x51\x98\xc8\x3a\xf3\x71\x3e\x58\x7a\x4a\xdd\x24\x69\x50\x10\x98\x0d\x77\x31\x9e\x27\x94\x41\xdf\x76\xdb\xa2\xa3\xa1\x83\xea\xdb\xfd\xad\x9e\x85\xa0\xe9\x5a\x24\xa4\x78\xd6\x7c\x81\xeb\xb5\xe1\x88\xd3\x5e\x19\x99\xbd\x65\xd8\xa8\x44\x67\xda\x9b\x41\x61\xb7\xa8\xa4\xee\x08\xe0\x4c\x2c\x76\x79\x0b\xbb\xf4\x27\x49\x11\x44\x8d\xf1\xf0\x89\x39\xf8\x81\x93\x7c\x1f\x18\xba\x19\x88\x7a\x6c\x70\x21\x93\x95\x06\x10\x06\x9a\x1f\x4b\xe4\xc7\x8c\xcf\x07\xfd\xa5\x38\x44\x46\x95\x00\xdd\x80\xe8\x2d\x19\xb5\x6a\xcc\x92\x64\xa6\xf1\xde\x05\xe7\x78\x21\xfd\x6c\x0d\x0e\xf7\xfc\x1f\xc1\xb9\xb9\xb9\x29\x04\x01\x26\xc5\xcb\xb0\x06\x84\x52\x18\x4f\x93\x86\xb6\x8a\x1f\x3c\x1c\x7b\x24\xce\x7f\x17\xc0\x05\x13\xd8\x52\x29\xd1\x80\x1d\xb0\x94\x3b\x11\x7e\xe7\xac\x02\xe0\x02\x90\x97\x2f\x7f\x47\x30\x50\x9f\xb9\xa4\x81\x4b\x2a\x70\xcc\x15\xdf\xfe\xf2\x2f\x7f\xfd\xf5\x4f\xee\xb4\x93\xd4\x5b\xce\x8b\x68\x5c\xec\xa3\xb1\xf7\x9b\xcc\xe4\xce\x39\xdb\xbb\xbf\x91\xe1\x65\xf2\x3b\x2a\x00\x12\x76\x27\xe2\xb0\x7c\x16\x5b\x59\xf7\x37\xec\xf4\xee\x29\x5b\xe6\xfc\xdc\x27\x92\xb5\x55\xfc\xc8\x45\x92\xae\x74\x8d\x81\x54\xb8\xc3\xc1\x83\x5a\x79\xe4\xad\x8b\x97\x62\xb0\xd1\x6c\x37\x47\x63\x66\xbe\xba\xa5\x2c\x39\x8a\xfe\xa2\x8e\xe9\xb6\x90\x52\x41\x2c\xaf\xbd\xa8\x42\x1e\xb6\x24\x3e\xdc\x43\xbd\x01\x49\x4f\x9b\xa4\xc8\xc3\xbd\x52\x90\xde\x0b\x7b\x5b\x75\x2f\x10\x10\xc3\x8b\x98\xaf\x27\x14\xf9\x74\xc0\xc3\x2c\x9e\x70\x04\x8e\x9c\x21\x5a\x5d\x1d\x67\xfe\xb2\x46\x9d\xc7\x47\x0f\x0f\x1f\x7d\x5c\x2b\xa3\xd8\xf1\xc2\xf3\xbd\x14\xa9\x26\xb8\x3c\xde\xab\x2d\x93\x24\x72\x89\x63\x1d\x83\xf1\xd4\xc2\x20\x92\x6e\xc1\x75\x8e\x35\xed\x2e\x57\x3e\x12\x17\x9b\xd2\x6e\x7f\xff\x60\x7f\xff\xa2\xc8\x8f\x4c\xf5\x95\xc2\x86\xee\xc6\x94\xfc\x69\x83\xad\x86\xb6\xa8\x36\xef\xc2\x15\x5c\xf1\xa9\xd5\xde\x06\x76\x94\x26\xd7\x21\x95\x26\xcc\xfb\x67\xc8\x97\xa4\xbf\xd2\xdb\xc3\x90\x23\x4e\x84\x73\xef\x9a\x02\xf6\xaa\x1c\xb5\x92\x74\xa9\x46\xcb\x83\x82\xe8\x1d\x6e\x0a\x7a\x94\x98\x8d\x59\x43\x5c\x70\x31\x58\xf4\xaa\x8b\xdf\x1b\x8a\xa4\xf0\x11\xea\xb1\x3a\x7e\xeb\x41\x4a\xa4\x72\x97\x1b\x45\xa0\xe2\x72\xc3\x28\x5f\x40\x70\xca\x9d\x51\x9d\x7c\x54\xae\xf7\x59\xb9\x47\x37\x23\x22\x72\xb1\x86\xc9\x2d\xee\x2e\x8b\xb2\xb6\xd4\x04\x6b\x3a\x85\xca\x3e\x08\x6f\x28\x75\x21\x57\xd4\x89\x05\x87\x08\xdd\x28\xbc\x92\xae\xe6\xfb\x98\x61\x69\x02\x49\x2c\xa1\xc4\x0b\x36\xcb\xae\x55\x98\x73\x95\x9d\x68\xf7\xd6\x02\xe1\xd2\x13\xdb\xac\xd0\x56\x33\x66\xbe\xa4\x28\x71\xf0\xfa\x5b\x73\xe9\x4e\xab\xac\x11\xa8\xf8\xd3\x52\x30\x9d\x3b\x36\x5b\x87\xf7\x10\x8e\x6b\x17\xda\x12\xf2\x18\xe4\x6e\xcf\xe8\xb6\xdc\xd2\x7b\x98\x8a\x43\x88\xee\xd8\x48\x89\xc2\xa9\x64\x39\x77\x4c\x77\x4c\xc7\xa1\x22\xb6\x67\x75\xcc\xed\xf9\xc6\xf3\xa2\xf8\x22\xab\x1e\x13\x4f\x8d\x3c\x5f\x52\x45\x57\xb4\x33\xe0\x9b\x9b\x0a\x4d\xb4\xb4\x7d\xbf\x44\x01\x93\xdf\xb2\xef\xa2\x1f\x2b\xda\x4f\xad\x16\xad\x53\xf0\x67\x5d\xce\xb9\x93\x51\x6f\xd8\x6c\xbb\xd5\x3b\x0a\x5d\x07\x2a\xbe\x47\x0e\x63\xa9\xa4\xbe\xf2\x61\xe2\xe3\xa3\x9e\x41\xc3\x4e\x90\x27\x6a\x9e\x27\x3b\x18\x84\x95\xbd\x82\x4e\x95\x25\xa4\x4a\xf2\xd4\x87\xde\x74\xce\xba\xd6\xa3\x2c\x1d\x37\x10\xd0\x79\x80\xce\x80\xfc\xb8\x6b\x74\xed\x62\x2b\xce\x70\x62\xf3\x0e\xcb\x61\x6b\x2e\x5b\x0e\xa9\x30\x1d\x2f\xcb\x10\x1f\xc0\xbb\x33\x02\xea\x6c\x2e\x19\x8e\x4d\xab\x62\x5e\x2c\xd9\x1e\xc0\xe1\xdb\x1a\x12\x45\x40\x5e\xd0\x71\x5f\x14\x86\xb0\x39\xfd\x11\xdd\xac\x11\x43\xad\x08\xb9\x35\x51\xc3\xb3\xe9\xbe\xd8\xba\xdb\xa9\x74\xd0\x55\x68\x2c\x09\x9a\x05\x55\xbd\x5c\xed\xd3\x15\x02\xaa\x47\x55\x38\x5a\xb8\xf0\x66\x72\xf7\xc5\x52\xce\xfe\x54\x3f\x2e\xe3\x99\xd1\xec\xf5\x86\x67\x66\x9b\xaf\xb8\x28\x43\xdd\x39\x88\xf8\xe2\x2b\x5d\xa1\x82\x6d\x4b\xac\xc9\xf1\x65\x7b\xaf\x87\x07\xfd\x13\xa3\xdf\xfc\x82\x0b\x53\xba\xb8\x3e\x28\xe6\xc5\xeb\xdb\x77\x9a\xa4\xb8\x66\xc9\x97\x51\xe2\xdd\x42\x09\x65\x1a\x4d\x27\xba\xec\x70\x95\x69\x3c\x27\x63\x26\xb4\x9d\xa5\xf4\xc1\xc6\xa5\xbe\x91\x2c\xd8\x2c\x21\x47\xf7\x62\x2b\x81\xf8\xb3\xa4\xfb\x48\x42\x45\xde\x82\x10\x5c\x1a\x51\xfc\xb0\x14\x82\xf4\x54\xd4\x45\x18\x0e\x4f\xa3\xaf\x01\x74\x6e\xcd\x81\x63\xb5\x6a\x62\x12\x87\xaf\xda\x1e\x15\x6d\x76\x7e\xb9\x2a\x9e\x3a\xad\xc7\x07\x07\xe5\xef\x97\xfa\xe1\xc1\x5e\xad\x14\xbd\x7e\xd0\x5d\x87\x87\x87\x1f\xaf\x1f\x06\x5e\x9c\xd4\xc4\x93\x30\x43\x66\x41\xd1\xe3\x64\x60\xe5\xc5\x4f\x1f\x95\x58\xb8\x7e\xf6\xd3\x84\x33\x20\xbf\xd2\xac\x22\x3b\xf2\x69\x12\xdd\x21\x95\xc9\xc9\xbd\x4b\xaa\xcf\x2b\x30\x28\x29\x4b\x83\x9f\x25\x91\x17\xcf\x1a\x49\x3a\xdb\x5d\x5e\xcd\x76\x09\xbd\xdd\xf7\xf1\x54\x27\xbe\x9a\x79\x64\x26\x9d\xa1\xdd\x6f\xea\x64\x06\x22\xac\x3f\x9e\x6c\xae\x6e\xcb\xa4\x56\xf0\xdb\x6a\x56\xa3\x74\x4c\xbf\x54\xe3\x6a\xe7\x2f\xaf\x57\x6f\xf9\x7f\x39\xb7\xac\xa7\x50\xab\x7a\x74\x10\x4a\x2e\x3d\xfe\x48\xb0\xc0\xc8\x10\xb5\x09\x7f\x6d\x28\x8d\xb3\x9c\x56\x63\x23\xd9\x31\x8a\x6b\xce\xa2\xf5\xff\xf3\x7e\xe0\xd6\xd5\x80\xbe\xff\x28\x15\x1f\xa7\x88\x7d\xa4\x66\x5b\x5e\xe6\x33\x7a\xb0\x80\x3d\xfd\x9e\x79\x29\xeb\x6f\xa6\x69\x92\xd2\x43\x2b\x0d\xe9\x42\xf1\x76\x7a\xd7\x12\x8c\x9e\xf9\xd4\x24\x9a\xc3\xaf\x46\x49\x75\x4a\x6c\x58\x75\x7d\xd5\x46\xc7\xd0\x28\xda\xcf\xcb\x69\xeb\x09\x0c\xc6\xed\xd1\xd4\xb8\x19\xfa\x89\x2e\x12\x75\xe0\x51\x74\xd5\x99\xc0\x2c\x60\xdd\x18\x2a\xd2\x24\xc3\xf3\x3d\x75\x43\x16\xc8\x2e\x98\x50\x64\xa0\xeb\x85\x82\x5b\xdc\x7f\x3b\x61\xf5\x86\x5d\xd7\x1e\x8e\x75\xa9\x5b\xc4\x2a\x72\xe4\x08\xb1\xb9\xe2\xcd\x74\x49\x81\x53\xa4\xdd\x6c\xc9\x60\x4c\xf7\xb4\x33\xd3\x87\x24\xa7\xc4\x99\x91\x5e\x47\x12\x35\x0f\xa7\xd9\xbb\xe4\x1c\x3c\x06\xeb\xf1\x62\x08\x14\x9f\x7e\x8a\xb7\x9a\x38\x78\xf0\xb0\x12\x63\x5c\xe7\xd4\xea\xf0\x57\xad\xc7\x9c\x04\x67\x14\x08\x59\xeb\x00\xa5\xd0\xea\x6d\xbd\xda\x4d\xab\xf7\xec\x2d\xcd\xcc\x57\xcb\x30\xe5\xd8\xb1\x52\xb4\x1d\x12\x40\x7b\xb9\x17\xc8\x48\xd2\xc5\xe8\x94\xee\x4b\x17\xd8\x36\x8d\xd8\x86\xeb\x11\x6f\x66\x7d\x79\x5d\x39\xe6\xf8\xae\x33\x8e\xab\xa7\x66\xcb\x82\xe1\x6a\x7a\x4b\xd1\x4c\x7f\x78\x2d\xf0\x58\x20\xab\x23\x00\xdf\xc1\x45\x6c\x13\x5c\x68\x60\xb6\xc6\x2e\x12\x7a\xdf\xa9\x7e\x89\x1b\x63\x3e\x7c\x2d\x5d\xcb\xe6\x9b\x9b\x0a\x95\x86\x90\x08\xcb\xbd\x4b\x6a\x95\xdd\x14\x6e\x01\x72\x48\x26\x9f\x23\x3a\x6a\xdf\xcf\x83\xe5\x2d\xbb\xa7\x21\xd5\x6f\xa3\x78\xe7\x4b\xc8\x0a\x73\x2f\xbe\x6e\xae\xbf\x59\x70\x24\xb9\x85\x12\x35\x56\x51\x7a\xd7\xb5\xdd\xf6\x06\xda\xa1\x37\x8b\xb1\x5c\xe8\x97\xd0\x15\x17\x4b\xc4\x3e\x76\x2a\x57\x7c\xef\x1c\x78\xeb\xce\xaf\x60\xfe\xbf\xed\x85\x09\x9f\xae\x24\xf2\xbb\xf9\x6e\x95\x6c\xd2\x73\x11\xf3\x9e\xef\xec\x57\xef\x69\x76\x6a\x3b\x07\x5b\xef\xe7\x74\x26\x26\x5d\xbe\x3a\x15\xd8\xd6\x61\xf7\x36\x74\x9b\xcf\x5d\x1b\xf8\xb6\x3f\x7b\x89\xad\x2f\x50\x46\xdb\x26\xd9\x3c\xee\x04\xf3\x02\xba\x68\x7c\x85\xa4\xa2\xb7\x77\xc4\x1f\xb0\x8e\xe8\xcf\x67\xeb\x4f\xdb\x7c\x59\xfe\x27\x08\xbd\x29\x18\xef\x71\x9e\x4d\x1f\x1b\x64\x35\x9c\x4f\x40\xae\xcf\xd9\x1f\xba\xd6\xd8\x6d\x5b\x9d\xce\xb6\xf7\xd3\xa5\x71\x3a\xcb\x35\x55\x22\x6b\xe7\xcc\x00\x14\x3f\xc4\x44\x31\xf3\x3f\x2c\x97\xdd\xa9\xd7\xbd\x19\xed\x50\x01\x40\x81\x17\x44\x34\xca\x26\x94\xe8\x38\x1d\x26\xf1\x3a\xe1\x85\x59\x5d\xf9\x0b\x66\x77\x41\xe2\x2b\x6e\x98\xf9\xbb\xfb\x8d\x47\x8d\x07\x44\x99\x9b\x76\x97\x36\xc0\x77\x3b\x58\x65\x2e\xbd\x88\x6e\xd8\xe9\xf6\xbd\xc1\x3b\x6e\x4c\x95\x7f\x75\xfe\x16\x35\x33\xf9\x0b\xa7\x2e\x0c\x36\x55\xed\x1c\x2c\x73\x43\x2f\x38\x46\x7d\xd4\xa8\x16\xb5\x07\x1f\xbd\x5b\x4b\x5a\xac\xaa\x67\x1e\xa7\xc4\xa6\xb8\x84\xa8\xd7\x33\x6f\xa6\x7e\x1b\x45\x49\x5a\xa1\xea\x5a\xcf\xe7\xe1\xfe\x63\x0a\x33\xcd\x01\x37\xc8\xb8\x3e\x71\x6a\x5f\xcd\xeb\xad\x01\xfd\x3d\x7d\x52\x0b\x64\xbd\x6d\xd6\xa6\x69\xbd\x63\xd7\xe2\xa8\x3e\xe8\xd5\xa2\xeb\x7a\xef\x69\x2d\xcd\xeb\xf6\xa4\xf6\xc2\xab\xff\x68\x54\x93\xaa\x6e\x3a\xb5\x65\x56\x3f\xb1\x6b\xcb\xa8\x3e\xea\xd5\x2e\x67\xf5\x93\x6e\x0d\x6b\x5a\x63\xfe\xd4\x49\xb2\x4d\x84\xa9\x50\xcd\x6b\xbf\xfa\xb7\x1f\x7f\xfb\x5f\x7f\xf5\xed\xcf\xff\xf5\xbb\xbf\xfe\xf3\xda\xaf\x7e\xf1\xf5\xff\xfc\xf3\x4f\x8a\x97\xb6\xcc\x33\xe5\xcf\x6b\x9d\xd4\x8b\xbf\xf9\x27\x2f\x54\xb5\x81\x44\x75\x0b\x92\x12\xa8\x5a\xcf\xcb\xae\x43\xf9\xdf\xff\x90\xd7\x5e\xff\xfd\x9b\x3f\x7b\xf3\xf5\x9b\xaf\x5f\xff\xf2\xf5\xcf\x5f\xff\xa2\xf6\xdd\xdf\xfc\xe3\x77\x7f\xfb\x2f\xbf\xfe\xe9\xdf\xd5\x4c\xb5\xf4\xbe\xf9\x59\x12\xd5\x46\xe0\x6b\xf9\x2c\xff\xe6\xa7\x0a\x8f\x91\xba\x0a\x6b\xaf\x7f\xf6\xe6\x2f\x5e\xff\xe7\xeb\xff\x78\xfd\xef\x6f\x7e\xac\x67\xd6\xac\xcc\x8b\x42\x62\x4e\x9a\x79\x04\x0c\x3f\x31\x42\xe2\x41\xa8\x65\xae\xe0\xcf\x0c\x0f\x79\x8a\x24\xa6\x74\x6e\x30\x3e\x8c\x93\xc1\x20\xe1\xf1\xab\xb9\xc1\x48\xf1\x63\x7d\x7c\x66\x30\x62\xfc\x2f\x4f\x0c\x86\x8d\xe2\x63\x6a\x30\x76\x78\x8c\x23\x83\x01\xa4\x7f\x00\x72\x6d\x30\x8a\xf4\xed\x37\x37\x18\x4a\x3c\xbe\xf0\x0c\xc6\x93\x56\x51\x06\x83\x8a\x47\xfe\x35\x18\x5c\x7a\x8b\x0c\x46\x98\xfe\xe1\xca\xcc\x60\x98\x89\x8b\x67\x74\xe9\x44\x0e\x7c\x6e\x38\xa7\xc3\x33\xb7\x03\xb2\x06\xea\x72\x62\xeb\xcf\xdd\xeb\x40\xfd\xbf\x01\x00\x00\xff\xff\xbe\x02\x9b\x98\x23\x24\x00\x00") func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -127,7 +127,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 9251, mode: os.FileMode(420), modTime: time.Unix(1439472139, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 9251, mode: os.FileMode(420), modTime: time.Unix(1439479286, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -772,7 +772,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\x7b\x93\xdb\x48\x8e\xe7\xff\xfc\x14\x6c\x6f\xf8\xec\x8e\x28\xcb\xd1\x3d\x71\x8f\xe8\xb0\xdd\x57\x5d\xd5\x7e\xcc\xba\x5c\x5e\x57\xb9\xe7\xe6\x1c\x0e\x35\x25\xb2\x24\x8e\x25\x52\xcd\x47\xc9\x9a\x8d\x8d\xb8\xaf\x71\x5f\xef\x3e\xc9\x01\x3f\x00\xf9\x20\xa9\xb2\x3d\xbb\x71\xf7\x8f\x94\xcc\x44\xbe\x90\x48\x00\x89\x44\x66\x66\xbb\xdd\x3c\x2f\xda\x65\xfa\x34\x3d\x4d\x77\x59\x59\x6d\x8a\xb6\x4d\xdb\x62\x73\xf3\x68\x5d\xb7\x5d\x91\xa7\x2f\xca\x8e\xbe\x9b\xdb\x72\x59\x24\xc9\xba\xde\x16\x04\xfa\x92\xfe\x92\x3c\x6b\xd7\x8b\x3a\x6b\x72\x8a\x38\xb7\x70\x52\x7c\xde\x6d\xea\x86\x81\x7e\x95\x50\xb2\x2e\x36\x3b\xce\x43\x7f\x49\x5b\xae\xaa\x79\x59\xd1\xe7\x15\x85\xd2\x57\x55\xd2\xd6\xcb\x32\xdb\xcc\x83\x04\x44\x58\xfa\x4f\xe9\x8f\x55\x9e\x5e\x75\xc5\x2e\x7d\xd2\x6e\xb3\xcd\xe6\x59\xd6\x22\x4b\x57\xa4\xd9\x72\x59\xf7\x55\xf7\xe4\xb1\x24\x48\xe1\x75\xdf\x59\xe9\x97\x7d\x27\x71\xfd\xce\xa2\xde\xef\x92\xa6\x58\x95\xd4\xb1\x86\xa2\xde\x69\x30\xd9\x17\x8b\xb6\xec\xb8\xd1\x7f\x91\x50\x72\x5b\x34\x6d\x59\x73\x7b\x7e\x93\x50\xb2\xcb\x56\x0c\xf0\x96\xfe\x92\xae\xd8\xee\x36\x19\x32\x5c\x6b\x30\xd9\x64\xd5\xaa\x17\x98\xd7\x1a\x4c\x96\x4d\x41\x49\xf3\xaa\xd8\x53\xec\x19\x3e\x52\xfa\x98\xcd\x66\x49\x4f\x38\x9d\xef\x9a\xfa\xa6\xdc\x14\xf3\xac\xca\xe7\x5b\xc1\xda\x7b\x8a\x4f\x35\x3e\xa5\xf8\x94\xe3\xd1\x8d\x22\x27\x04\xcd\xb3\x56\xfb\x42\x43\x43\xf8\xca\xda\x04\x45\x55\xd9\xd6\x72\x73\x30\x29\xb6\x59\xb9\xe1\x41\x78\xc4\x01\x6a\x7c\xdb\xee\x6b\x0c\xd5\x5b\x0d\x12\x22\xe6\xdd\x61\x57\x00\x0f\x8f\xae\x29\x94\x2c\xb3\x5d\xb7\x5c\x67\xdc\x56\x09\x25\x04\xb4\xab\x09\x21\x75\x73\x00\x9c\x7d\x24\x75\xb3\xca\xaa\xf2\xef\x59\x27\x48\xba\x0c\x3e\x93\x6d\xd9\x34\x35\xe3\xf7\x02\x81\x84\x7a\x3c\xe7\x72\x28\xe6\x0d\x61\x22\x28\x85\x53\xb6\xe5\xaa\x11\x54\x72\xe2\x05\xbe\xb8\x14\x4e\xbb\xa9\x9b\x4f\x9a\xf0\x9c\x83\x83\xac\xd4\x08\x4d\x8d\xeb\xcf\x2a\x42\xbe\xa6\x5e\xe0\x23\x02\x68\x93\x2c\xdf\x12\x2a\x77\x59\x55\x30\x8e\x4e\xf9\x8b\xf0\x42\x5f\x89\xd2\xd4\xbc\x2d\xba\xae\xac\x56\x8c\xec\x53\x89\x4a\xaf\x34\x2a\x09\xd2\x5c\xdc\xa1\xee\xdd\x70\x52\xfc\x5f\xe9\x33\x7d\x2b\x9f\x92\x16\x64\x42\xa2\xcb\xc9\x3d\x69\xe7\x37\x45\x91\x4b\x5f\xda\xf4\x39\x85\x93\x5d\xbf\xd9\x10\xd6\xfe\xe8\x8b\xb6\xe3\x4c\x6f\xe9\x9b\xfa\x2f\xdf\x49\xd9\xb6\x14\xa0\xe8\x57\x08\x24\x34\x74\xd5\x12\x9d\x39\x43\x20\x49\x3e\xb4\x45\xd6\x2c\xd7\x1f\x13\xf9\x47\x5b\x39\xc0\xb4\x77\x6c\x50\x99\x90\x94\x88\xa4\x06\xab\x20\x59\xd6\x39\x7f\x9c\xd1\x1f\x15\x5d\x56\x6d\x47\x33\xee\x63\xa2\x01\x06\x93\x90\x0c\x40\x57\x76\xc0\x82\x46\x62\xfa\xb6\x3c\x82\xe9\xf3\xb2\x69\xbb\x47\x5d\x49\xc4\xfa\xae\xaf\x12\xee\x1f\xcd\xb6\x79\xbe\x30\x26\xf4\xa2\x26\x14\x21\xba\xa1\xfe\x5d\x1c\xae\xfe\xe5\xf5\x49\xfa\x96\x38\xd1\xaa\x29\x28\x9c\x52\x19\xf4\x47\x79\xfe\x34\x4b\x28\x97\xd5\x74\x9e\x75\xd9\x22\x6b\x0b\x8f\x56\x4e\x14\xea\x76\x69\xa0\x71\xe6\x6a\xe0\x60\x6d\x17\xf5\x77\x6a\x86\x50\x19\x3a\xaf\x5c\x19\x6f\x78\x72\x51\x3c\x33\x35\x64\x7e\xbb\x29\x38\x9e\x8a\x4a\x5f\xbd\x79\x73\x79\xfe\x4b\x5a\x54\xab\xb2\x2a\xd2\x7d\xd9\xad\xd3\xbe\xbb\xf9\x6f\xf3\x55\x51\x15\x0d\xf1\xb8\x65\x99\xd2\x9c\x6a\x88\x12\x52\x22\x6c\xe9\xdc\x2c\x69\xdb\x0d\xcd\x7d\xa0\xf7\xea\xea\x75\x7a\xc1\x28\xde\x65\xdd\x1a\x0d\xe9\xd6\x49\xfb\xc7\x86\x51\xe4\x2a\xbc\x5e\x17\x29\xa8\x0c\x40\xf5\x8d\xe1\x23\xcd\xb5\x8d\xb3\xa4\x68\x9a\x39\xb1\xa5\xee\x30\xd7\xcc\x5a\xde\x10\x52\x8a\x20\xd2\xa9\xea\x2e\x5d\x14\x29\xf2\xcc\x92\xc4\x1a\x6c\xd8\x3d\xdd\xed\x36\xe5\x52\xe6\xfa\x0b\x49\xf3\x88\x66\x09\xa2\x58\x0a\xe1\x80\x28\x4b\x0b\xd0\x45\xec\x99\xe7\x43\x1a\x31\x10\xe4\x5f\x17\xc4\x00\xd7\xfd\x4a\xd8\xde\xa6\xee\xf3\xef\x40\xa9\xd6\x7a\x4f\xa8\xe9\xbb\x9a\x1a\x0c\xec\x38\x00\x5f\xc5\x29\x51\x1c\x0b\xad\xa6\xd8\xd6\xc4\x57\x1c\xb1\x97\x44\x50\xfb\x92\x12\xa9\xa7\x6d\x76\x4b\xf3\xad\xab\xd3\x6e\x5d\xb6\x69\x4e\xc4\xb6\xe4\x82\x69\x6a\xf4\x24\x2e\x84\x2c\x88\x40\x85\x34\x2c\x2e\x1e\x03\x40\x6d\x7b\xa2\xa6\x35\x15\xc6\xc2\x88\x25\x27\x15\x39\xd5\x4e\x74\x89\xca\x01\x7d\x13\xe5\xd6\xc4\x95\x99\x6f\x9e\x23\xa0\xdf\x61\xf9\xd4\xaa\xec\xe6\x86\x5a\xd5\x12\x55\xbc\x4c\x97\x9b\x9a\x48\xea\xfd\xbb\xd7\x94\x79\xdd\x75\xbb\xf9\xae\x6e\x40\xc6\xd7\xd7\x6f\x69\x7a\x34\x9d\x8f\x0d\x70\xcd\x30\x55\xbf\x5d\xd0\xd7\x7e\x5d\x12\x13\xc8\x82\x01\x02\x2a\x36\x2c\xff\xaa\xb4\xae\x66\x18\xab\xbe\xd9\x0c\x86\x91\xaa\xb4\x94\x23\xcd\xe3\x26\x3c\xe6\x9f\x2b\xdf\x4a\x74\xb7\x25\x25\x61\x8f\x41\xa5\xae\x16\x90\x43\x44\x5b\xf5\x8e\xcb\x0d\x88\xeb\x52\x23\x3c\x45\x41\x76\xb9\x74\x91\x60\x94\x0a\x15\x24\xe0\xc2\x5b\xea\xb0\xce\xe6\xab\x0b\x42\x03\xa6\x34\x62\x6f\x9a\x7a\x4b\xb1\xcf\xe9\xcf\x47\xf8\xe6\x5f\x70\x79\x80\xc9\xf2\x9c\xd8\x4c\x7b\x92\xbe\x7b\x7e\x96\xfe\xe7\x3f\xfd\xf8\xe3\x2c\x7d\xd5\xf1\x84\x60\x1a\xf9\x1b\x8f\x2d\x05\x45\x94\x3a\x50\x9a\xb9\x1d\x0d\xff\x3d\x26\xf0\x7b\xe9\x13\xa4\xfe\xf7\xe2\x73\x46\x6a\x40\x31\x5b\xd6\xdb\x67\x3c\xb9\xb7\x59\x37\x4b\x38\x85\xa8\x46\xc9\xe9\xaa\xa8\x72\x0a\xa8\x40\xd6\xb4\x80\xeb\x68\x7a\x20\x9e\x45\x39\x99\x2f\xeb\xea\xa6\x6c\xb8\x43\xbf\x56\xd9\x82\x70\x62\x6a\x0b\xb1\x63\xa4\x98\xd4\x23\xa4\xd1\x44\x2e\x6f\x0e\x1e\x14\x5d\x7d\xc3\x91\x3a\xa0\x09\xab\x72\x05\x8b\x23\xa0\xd3\x61\xf9\x0a\xd1\x18\xb7\x4b\xea\x5e\x63\xf8\x6e\x3d\xc2\xeb\x9b\x9b\x0d\x31\x36\x63\x56\x5a\xc3\xa5\xc4\x0a\xdf\x0a\x41\x88\x18\x77\x50\xbc\xce\xcb\x16\x90\x67\xe7\x6f\xd2\xe2\x96\xa8\x8d\xc8\x81\x24\x65\xde\x2f\x41\x61\x0c\x7b\x92\xb2\x98\x20\xfc\x12\x67\x58\x0a\x7b\x0b\xe6\x2a\x37\x8d\x19\xc2\x92\x80\x68\x8a\xe6\x52\xde\x5c\x10\xd4\x98\x0a\x62\xd5\x5c\xb1\xee\x1a\xa6\x4d\x66\x18\xb5\x0e\xa3\xd4\x0e\xf3\xd2\x70\x57\x9b\x43\x0a\x7d\x01\x74\x21\x1a\x9d\xa9\x9e\xed\x2c\x51\x59\x65\x0a\xec\xfc\xb6\x84\xb2\xe7\x86\x0a\xa9\xa6\xcd\x32\x7b\xf8\x8d\x01\x58\x8b\x6c\x27\xf3\xba\x86\x5d\x72\xc5\xad\x53\xf4\xb8\x7d\x2d\x9a\x80\x1a\x58\x1b\x25\x62\xbc\x2d\xc1\x69\x14\x59\x68\x2b\x61\x0c\x55\x53\x55\x6d\x51\xa0\x04\xca\xff\x98\xca\x44\x9e\x99\x2a\x3f\xaa\x8f\x98\xdc\x25\x9d\x24\xcd\xeb\x94\x05\x01\xd8\x19\xe5\xb6\xae\x56\xda\x7d\xed\x73\xda\x94\xab\x35\xf1\x95\x7a\x7f\x22\x48\xdb\xaf\xeb\x82\x69\xe7\xd5\xf9\xd3\x1f\xa4\x1d\x2b\x66\x6e\x2e\x13\xb3\xc5\xac\xef\x6a\xa6\x53\x1d\x42\x69\x82\x13\x2f\x80\x1c\xa9\x59\x02\x34\x54\x6c\x4d\x75\x1b\x4b\x6b\x9d\x27\x61\x9a\x4e\x10\x0f\x23\xb9\x07\xca\xb1\x6a\x31\xf3\x55\x0d\xf5\xcc\xb4\x16\x66\xd5\xa4\xe9\xb7\xdd\x7c\x55\x76\xf3\x1b\x9e\xb0\x5c\xe6\x73\xce\xcb\x92\x83\x52\xd2\x07\x94\xf4\x20\xa5\x59\x4f\x3a\x67\xfe\x53\x7a\xff\x56\xc5\xf5\x9f\x78\x26\xce\xb3\x5b\x82\xc5\x60\xa8\xd2\xd7\x14\xa2\x2d\xd8\xea\x22\xaf\x89\xce\x19\xe7\x6d\xbf\x03\x47\x57\x09\x7d\x92\xee\x04\x30\xaf\xf7\xd5\xa6\xce\x72\xb0\x1c\x9a\x5d\x25\xd6\x46\x8b\xb2\xca\x48\xba\x58\x29\x60\x65\xf7\x89\x1a\xde\x5c\x5e\x03\x70\x55\x2f\xfa\x72\x93\x1b\xc0\x8c\x7a\x78\x9b\x6d\xca\x9c\xf5\x2c\x1d\xf7\x50\xa7\xb1\xa8\x52\xda\xb2\xac\x1b\x16\x87\xe8\x8d\x65\x3c\x22\x87\x1b\x96\x6f\x88\xa6\xbc\x0a\x8b\x7c\x4e\x64\x32\x1a\x68\xe0\xa1\x80\xb2\x40\x05\xc5\x94\x6d\xf5\xa0\x43\x4b\x97\x3d\xd5\x45\x83\xce\xd1\x94\xb1\x4d\x1f\x3d\xa3\xdf\x84\xc5\xb3\xf0\xbd\xd5\x18\xf1\x9c\x98\x4a\x62\x2f\xb3\x34\x6a\x6a\x44\xde\x8e\xba\x8c\x78\x83\xbe\x86\xed\x35\x12\x68\x7b\xa1\x57\x5e\x08\x6e\x68\x58\x8b\xef\x28\xf0\x80\x26\xf0\x6a\x83\x41\xc8\xa0\xbd\x90\x1a\x57\x13\xde\x98\x40\x4e\x64\xba\xdc\x50\xd7\x98\x77\x76\xd9\x27\x6a\x5b\xd6\x90\x12\x96\x7c\xe0\xc5\xf2\xc7\xa4\x17\x05\xa8\xde\xe4\x4e\xd9\x04\x4d\xd7\xcd\x70\x71\xe6\x81\x1c\xbd\xb6\xa4\x45\x2e\xd7\x73\xb7\xd4\x66\xa4\x74\xc5\x67\xc8\x3c\x24\xf9\x95\x37\x13\x3b\x27\x25\xdb\x03\x86\x8b\x3b\x71\x71\xf0\xa3\x45\xea\x0f\x4d\x11\x52\xd1\x17\x35\x63\xed\xb6\x70\x50\x67\x61\x6c\x9c\x81\xca\x22\x45\x4d\x8b\x8a\xd7\x50\x94\x24\x0b\x3d\x4d\x95\xc5\x1e\x2d\x45\x3e\xa8\x09\xe0\x63\x62\x15\x44\x45\x26\x1f\x88\x19\xd0\xba\xc4\xaf\x8d\xe7\x36\x38\x6e\x8d\xcc\x4b\x3a\xe5\x07\x5e\x0e\xae\x8b\x1d\x8b\xcc\x6d\x8b\x51\xdd\x10\x64\x7e\x50\xdd\xcb\x8d\xef\xcf\xc2\x69\x69\xc0\x89\x3f\x7d\x67\xc6\x85\x6f\x2c\xe2\x97\x92\x46\x12\xf9\x63\xc9\x21\x0b\x76\xd2\x91\x61\xa5\x68\x9a\xc3\x49\x1a\xc9\xa0\x35\xad\xcd\x17\x05\x09\x38\xcd\x96\xcf\x6c\x75\xc0\xa3\x96\x2d\x85\xe4\x61\x68\x00\x91\x4a\xce\xba\x19\x8a\x34\x6e\xa1\x30\x28\xad\xc5\x09\x7c\x88\xf3\x50\xea\x4f\xd4\x49\x08\xdb\x16\xac\xf3\xcd\xb7\xb2\xb6\x97\xaf\xf4\xa2\x48\x48\x31\x59\xd1\x7c\x34\x7a\x7b\xca\x4b\xb2\x15\x34\x54\x25\x37\x06\x28\xba\x90\x83\x2a\x84\xc5\xfc\x6c\x06\x15\x9a\xd8\x7b\xac\x57\x69\x6a\x8e\xd0\x4f\xb2\x86\x92\x67\xc6\x91\x45\xe0\x42\x3f\x69\x69\xb2\x7b\x24\x9e\xb2\x31\x24\x0d\xa1\x54\x4f\xf4\xdd\xe2\x0c\x3c\xe9\x9f\x2c\x9e\xdd\x6f\x9f\x3c\x5e\x3c\x73\xac\x71\xb9\x2e\x96\x9f\x64\x2d\x51\x56\x8b\xfa\x33\x16\x5c\x34\xf0\x8c\xe3\x8a\xa7\xc8\xfd\x3c\x5d\x53\x2a\x74\x72\x9a\xca\x94\x8d\x10\xcf\xa9\xd1\xa0\x51\x63\x78\xc6\xcf\xcc\x34\xe5\x84\x83\x11\x12\xe5\x46\x25\xd2\xb2\x84\x86\x91\xe7\x0e\xd6\xf4\x9e\x6e\x4f\x39\x96\x29\x17\x6c\xde\x93\x2e\xfa\xbb\x29\xb7\x65\x37\x22\x1d\xe6\x23\x99\x92\xa0\xae\xf3\x0d\x97\x28\x0b\xd8\x40\x5b\x88\x1b\x53\x31\x24\x37\x8d\x9c\xf6\x19\x2d\x6f\xfe\x94\x12\x09\xf5\x24\x85\xb8\x4f\xd4\x4c\x62\xc7\x19\x0b\x5e\x5a\x20\x64\xed\xbc\xaf\x14\xad\x45\x6e\xc4\xf4\xb2\x84\x90\xe0\x7a\x8d\xe4\x03\x28\xc3\xbc\xea\xb9\xe9\x43\x87\xf1\xef\x49\x29\xbe\x71\xd9\x98\x73\x73\x83\x4a\xd6\xc9\xb2\xc9\xc1\x23\xce\x56\x15\xb2\xbc\x02\x06\x18\x8e\x07\x9a\x16\x07\x7e\xf4\x68\x85\xf1\x89\x62\x30\x20\x8b\xbe\xeb\x6a\xd6\xb9\x37\x4c\x35\x92\xc7\x5a\x7d\x06\x40\x2c\x23\x7c\x79\x18\x90\x10\x4f\x32\x36\x85\xe9\xc0\x73\x6f\x24\xd4\xd5\xca\xa0\x77\x2a\xea\x1c\x58\x2e\xcb\xf5\xac\x3a\x18\x29\x13\x41\x70\x2b\xb8\xc2\x6e\xba\x2d\x0f\x9b\xe2\x7b\xdf\x1a\x37\x67\x90\xc3\x5a\x24\xd9\x83\xf9\xf4\x0e\xa9\x62\x1e\xb2\x59\x67\x92\x4b\x8d\x2c\x9e\x3e\x9a\x18\xbd\x48\xe7\x99\x41\x0c\x96\xd4\xc6\x1c\x88\xa6\x5e\x20\xf7\x6c\x50\x97\x5f\xee\x8c\x31\xd8\xc5\x4d\xf6\x02\xa8\xab\xeb\x79\xbb\x96\xa5\xa5\x35\x2f\xdd\x14\xd5\x2a\x32\x13\xc0\x44\x0c\xa2\xfb\x2f\x2c\xe6\x48\x81\xcf\x36\x1f\x93\x03\xec\x51\x7f\x25\x0e\x5f\xc1\xd2\x57\x27\x94\x20\x8b\x91\x0b\x04\x08\x94\x57\x46\x1f\x13\x16\x81\x6f\x06\x6a\x1d\x8b\x08\x8d\x0b\xf4\x0b\x24\xfd\x1a\x69\x6b\x36\x84\xc9\xdb\x09\x15\xf0\x5d\xe1\x2d\x9a\x08\xb9\x2e\xd2\x22\xfa\xda\x96\x3a\xb4\x9e\xfe\x54\x68\xe1\x2f\x69\xd9\xdc\xbe\xc7\xb2\x57\xd6\xb0\xbc\xe0\x7d\x9b\x1d\x58\xe9\x92\x68\xfd\x40\xc2\x75\x91\x6d\xb5\x95\x1c\x94\x22\x4e\x49\x9c\x69\x24\x07\x49\xca\x05\x56\x8d\x04\xea\x87\x75\x41\x74\x11\x15\xfb\x4e\xfd\x2f\xd4\x5c\xfa\xfb\xc8\x14\xf3\x7b\x92\x6d\x76\xeb\x0c\xf2\x3f\x00\x83\xd5\x81\x80\x30\xf0\x29\x40\x40\x0b\xfd\xb6\x68\xca\x25\x07\x39\xc3\xc3\x47\xf3\xef\x61\x70\xa2\x89\x42\x8a\x60\x5c\x58\x4e\x93\xe4\x1f\x2a\x90\xc3\xac\x24\x86\xe5\xb6\xe5\xdf\xad\x17\x51\x71\x1c\x4f\x3c\x87\x20\xa0\x92\x79\x28\x07\x04\xc1\xc8\xea\x59\x97\x32\x5f\xe8\x58\x05\x8c\x8a\xde\x66\x9f\xbf\x94\x71\x5b\x4f\xe4\x13\x56\xe0\x33\xd9\x84\xd7\x2e\xc6\xec\x80\xe0\xd9\xbe\x71\x14\x9a\x86\x9e\x41\xaa\x4f\x24\xd5\x2a\x07\xf6\x5e\xbe\x53\x7c\xff\x64\xc6\x73\x12\x21\xaa\x40\xa7\xce\x8c\x4e\xc2\x39\x67\xbe\x09\x45\x78\xe6\xa7\x5b\xa8\x1c\x3b\x72\x66\x35\xd2\x96\xfc\x8e\x71\x90\x46\x29\xeb\x04\x22\xa9\x99\xb7\xf8\xcf\x59\x46\xce\x59\xe9\xac\x42\xd5\xd2\x49\x4f\x93\x2f\x80\x10\xbb\xef\x7c\x9c\x6f\x30\xe1\x8e\x66\x27\x55\x60\x22\xf7\xe5\xd8\x90\x77\x24\x7f\x47\x53\x66\xa2\x00\x37\x93\x8e\x66\x94\xc1\x44\x26\xea\x79\x3e\xe2\x05\xe3\x8c\x0c\x46\xcb\x9e\xcd\xa6\x58\xb1\xa9\xc9\x2a\x8e\x6a\x53\x12\x22\x61\x20\x60\x21\x01\x79\x0c\xbb\xc1\x0a\xc7\x35\x54\xe2\xdd\x18\xc5\xcb\x27\x6a\x35\xa9\xe3\x14\xe4\x9c\xc1\x22\x4a\x9b\xa1\x92\x7c\xcb\xeb\x85\xb6\x67\xd6\xcc\x6b\x0b\xd1\x4e\xe2\xd1\x60\xc1\x8b\xa2\x0a\x54\x71\xbc\x78\xa2\x45\x5e\x70\x7d\xa9\x7c\x80\x7d\x63\xd1\xe1\x72\x7b\x5c\xb0\x16\xee\x80\x8e\x15\xeb\x16\x84\xc5\xe7\x12\x66\xbb\x17\x25\x9b\x83\xb0\x24\x74\x2b\x61\xa4\xcd\x92\x0d\x31\x03\x5e\x7a\x48\xaf\x44\x8f\xad\x6f\x79\xe5\xc6\xf5\x71\xaa\xe4\x13\x33\x9e\x76\x8a\xc7\x59\x17\x97\xb4\x98\xab\xf7\x45\x7e\x42\x22\x9e\x73\x50\x3b\xc1\x36\xb2\xcd\x3e\x3b\xb4\xb0\x91\x18\xc7\x61\x93\xa5\x64\x67\x76\x42\x0a\xc0\x0a\xad\x0a\xed\xd3\x34\xe3\x0c\x13\x2d\xf1\x4e\x16\x1e\x4e\x4c\xef\xb1\x3c\x04\xb7\x50\xab\x0b\xad\xba\x59\xec\x41\xc4\xaa\xac\xe1\xa5\x2d\x2f\x04\x59\xc7\x97\xe4\xa0\x20\x6c\x79\x28\xe7\x9f\xc8\x7b\xc2\xea\x11\x55\xc3\xca\x0a\xf1\x63\xc1\x35\xe9\x7f\x84\x59\x34\x29\xb0\x15\xf4\x54\xfe\x23\xd1\x8b\x4b\xc2\x21\xaf\xb3\xfc\xf2\x99\x65\x13\x8d\x8a\x19\x76\x25\x1e\x8b\xdf\xa4\xed\x68\x0a\x30\xa6\x6d\x9b\xee\xaf\xa2\x5f\xe9\x92\x99\x53\x31\xc5\x80\xa6\x76\x5d\xee\xd2\x1a\xc6\xc2\x10\x85\x9e\x6c\x03\x15\x93\xb0\x91\x17\xd0\xbb\xd9\x6a\xda\x64\x55\x7b\x53\xc0\x7c\xba\x4d\x6f\x78\x27\x68\xa6\x55\xb3\xc6\x2a\xdb\x75\x47\x6a\x96\x35\x0c\xaa\x0e\xa5\x05\xc6\x2e\x18\xa8\xb8\x6a\x82\xb9\x45\xcd\xda\x06\x60\xd5\x97\xd4\x5a\x1b\x98\xcc\x46\x28\x80\xd6\x18\x6d\x52\x58\x6b\x6e\x8b\x10\x11\x37\xff\x68\xcf\x03\xac\xab\x85\x58\xcc\xea\xf1\x30\x49\xa5\xb0\x56\x60\x8f\x69\x71\x88\x7b\xcf\x59\x1d\x05\xf0\x8e\xc7\x6d\xa1\xb5\xf0\xc4\xe0\xb9\x32\x28\x10\x56\x0a\xbf\x56\x48\xba\x0c\x4b\xbe\x05\x35\x71\xb9\x8e\x66\xe7\x35\x52\x52\x49\x19\x4d\xd0\xe4\x03\x57\x4d\xcb\xf8\x75\x56\xad\x0a\x36\x75\x51\x49\x2c\xf2\xf0\xad\x1a\xba\x44\x52\x83\x57\x8d\x84\xd9\x40\x6e\x59\x96\x34\x21\xeb\xed\x9d\x39\xcb\xca\x0c\x36\x6d\xf2\xb7\x9a\x74\x08\x58\x7a\xff\x4c\x21\xd6\x7e\xab\x24\xda\xdb\x19\xd8\x19\xb0\x3c\x28\xbb\x03\x36\x9d\x16\xa4\x03\xcb\x22\x8d\x62\x68\x99\x0b\xee\x00\xcb\xc5\x73\x0b\xd3\x78\x64\xcc\xf4\x78\x6a\x4b\x48\xe1\xc4\x8c\xf4\xdc\xc2\x09\xaf\x92\xb7\x33\x08\x07\x56\xa6\x61\x9c\x0e\x44\xc2\x83\xfb\xed\x03\x1e\x30\x4b\x9b\x05\xf0\xbb\xac\x23\xb6\x58\xc9\x12\x45\x38\x54\x98\x55\x93\x5d\x11\xe0\x2a\x02\x36\xc3\x8e\xae\xa0\xe2\x63\xe2\x37\x9a\x6d\x8f\x79\xca\x20\xaa\x2c\xa6\x55\x9d\xf7\x9f\x29\xa8\x16\x91\xd4\xb9\x59\xe8\x52\x15\xdb\x78\xb6\xe9\xd3\xc6\x7b\x40\x6d\xa2\x26\xa0\xd8\xfe\xa3\xe4\xfd\x34\x3d\x97\x80\x2d\x7a\xfb\x12\x7d\x2a\xf3\x24\xd9\x01\xef\xc1\xb6\xb8\x0e\x84\x6b\xb4\xba\x3f\x78\x1b\x74\x33\x94\xec\x84\x05\x29\x05\x84\x6b\x5b\x02\xd0\x02\x78\x0f\x35\x58\xb0\xb1\x71\x15\x2b\xb9\x2a\xd8\xee\xa0\xf5\x2e\xe7\x63\xb0\x7d\xb1\x48\xd9\xdc\x49\x84\x43\xeb\x22\xed\xe8\x36\xa3\x25\xd5\x6d\x99\x39\xcb\x0c\x8d\x16\x6f\xbc\xab\x14\x7d\xce\x9b\xee\xd8\xc9\x1c\x7b\x88\xf0\x7e\x84\x6e\x3d\xbc\xd6\x60\xd2\xef\x72\xb6\x69\xf9\x0e\xbf\x47\x84\xeb\x70\x9c\x1e\x58\x1b\xd1\x75\xcb\xe6\xb4\x19\x01\xcf\x53\x85\xe3\x96\x1d\x66\x36\x7d\x26\xbc\x3e\x74\x0a\xe5\x43\x90\xd0\xc8\x2f\x49\xba\x68\x35\x80\x99\xf0\x1e\xa0\x57\xf6\xf5\x80\x10\x92\x95\xe9\xba\xde\xa7\x9b\xb2\xfa\xd4\x2a\x7e\x9d\x3d\xc4\xd6\xc9\xe9\x39\x22\x08\x58\x2c\x35\xac\x56\x95\x55\x5f\xfc\x9c\x58\x48\x0c\xf1\x08\x8e\xfd\x14\x0a\x91\x8a\x43\x66\xa0\xfb\x27\x67\x88\x4e\x4f\x11\x3d\x09\xeb\xd7\xb9\x9a\x05\x3b\xba\xcc\x7e\x75\x63\xe7\xa6\x60\x05\x1b\xec\xf0\x85\x72\x21\xc2\x4f\x5d\xb7\x6a\x7b\xf4\xec\x87\xe3\x60\xa8\x50\x28\x1d\x2d\x07\xa1\x83\x29\x8d\xb1\x7d\x0a\x82\xe2\xe5\x21\x29\x4b\xda\x1e\xcc\xed\x79\xb9\x15\x57\xa0\xf7\x9a\x2a\x5b\xf6\x6e\x5d\x81\xe4\x19\xad\x94\x07\x9d\x09\x77\x0c\xde\x10\x2e\xa5\xfb\xc6\x47\x2d\xf1\xc4\xd4\x05\x41\x08\x84\x7d\xd4\xd8\x21\x65\x69\x01\x66\xfc\xfe\x02\x81\x19\xf9\x84\x1b\x29\xc2\x9b\x1d\x6b\xa9\x37\x91\x52\x78\xa6\x66\x7c\x97\xce\x98\x0d\xd2\xdf\x60\xcb\x6b\x68\x6d\x88\x56\x4a\x5a\xc2\x51\x6d\x7a\xd0\xa6\xd1\xdc\xb1\x7c\x7b\xea\x5b\xd8\x1d\x23\xf8\x99\x50\x7f\x06\xcb\xb0\xec\x8a\xf5\xad\xe8\x93\x5c\x15\xb6\xd4\xa4\x08\x42\x00\x16\x1c\xad\x5f\x67\x9c\x0a\x37\x62\x83\xb8\xf8\x16\x39\x00\x75\x2f\x8a\xd7\x93\x85\xed\x61\x87\x8c\x6d\xd7\xd0\xa0\x93\xe0\x1d\x58\xa2\x46\x2c\x2d\x62\x5f\xe0\x5e\x35\x36\x64\x3d\xd7\xa2\x15\xa4\x96\xc5\xfc\x1f\x21\x8b\xf1\xd6\xcb\x82\xad\x5b\x56\xa9\x32\x6b\x97\x2a\x2c\x3b\xa1\x36\x60\x0e\x14\xce\x3c\x91\x03\x13\x71\x13\x01\x16\x82\x98\x25\xd4\xa2\xe7\x91\x9d\x17\x16\xdb\xff\x6f\xb6\xdd\xa8\x42\x67\xdb\xf5\x4d\x1d\x90\x0d\xb7\x71\x20\x71\x46\x04\x44\x09\x90\xbf\x3a\xf4\x81\x54\xd5\xc1\x77\xc2\x95\xab\x11\x9d\x9e\xd1\x44\x51\x10\xc1\x4a\x04\xe0\xb0\xac\xe0\xc1\xe9\x02\x8e\x3b\xa2\xe0\xb7\x23\x33\x64\xcc\x5f\x4f\xb1\x82\x21\xac\x08\x2c\xeb\x03\x2c\xd0\x44\xfb\xd3\x15\xd1\x96\x11\x21\xdb\xae\xce\x0f\xe5\x20\x3b\x8e\x5e\x25\x3a\xd1\x65\xc3\xba\x5c\xad\xa9\x5f\xe5\x96\xb7\x1c\xc1\xb5\x6d\x5f\xcb\xaf\xea\xf8\x8b\x26\x5e\xbd\xaa\xd8\x86\xc3\x35\xcc\xd0\x19\xc7\x6d\x9f\xb4\x5d\x53\x57\xab\x67\xe7\x35\x2f\xb7\xd8\x12\xc2\xa2\xe2\xe7\x27\x8f\x35\x9e\x58\x06\x8f\x21\xbb\x63\xbe\x28\xbb\x97\xfd\xe2\x41\x9b\xae\x48\x37\x80\x00\x79\x92\xa5\xeb\xa6\xb8\x79\x7a\xef\x7e\x7b\xef\x99\xee\x33\x8b\x57\xd0\xbe\x72\x68\x79\xf2\x38\x7b\xc6\xda\x73\x5b\x6f\x48\xa9\x8d\xb3\xd4\xdb\xad\x8c\x2f\xb1\xbf\xad\x40\xa2\xfd\xd8\x9a\x2e\x2a\x60\xae\x68\x14\x3f\x54\xe0\xcc\xd1\xba\x1f\x1f\x1d\x36\x53\x93\x22\xfb\x82\x2a\x2a\x0c\x8c\x1d\xb7\xaa\x0b\x98\x26\xdb\x16\x52\x97\x0d\x02\x76\x9c\x0d\x03\xc9\xe6\x1a\x6f\xda\x30\xe3\x04\x34\x68\x94\x61\xf9\x29\x2b\xb5\x44\x34\x0d\x8e\xb3\x3a\x45\x70\x52\xc8\x48\x2b\xa0\x5f\xe6\xa9\x66\xca\x84\xc2\xe8\x8d\x20\x4c\xb0\x11\x0d\x7f\x67\x0c\x40\x7a\x1f\x4c\x7f\xe8\x2f\xa7\xc8\x40\xfa\x0b\x56\xdd\xda\x97\xd7\xba\xc6\x46\x02\x09\xaa\x40\x9f\x7e\x53\xeb\x9e\x44\x6a\x91\x68\x35\x29\xd0\x5d\x11\x91\x3b\x57\x47\x7f\x28\x85\x68\x13\xcb\xf6\xff\x9a\xe6\xb4\x04\xf7\xd3\xc9\x14\x52\x9d\x4c\xa7\x7e\x2e\x0c\x55\x54\xdd\xcd\x3b\x3a\x9f\x82\x69\xa4\xa5\x3a\x37\x0d\x31\x1f\x14\x50\x04\x17\x65\x95\xcb\xb4\x51\xaa\x57\xbf\x07\x47\xee\x24\x4c\x2b\x06\x82\x8d\x8f\x03\xfa\x1d\x20\xff\x2a\x2a\x3f\xa0\x0d\xe2\x56\x7d\x15\x70\x0b\x99\x8e\xf3\xae\x16\x5b\x97\x76\xf2\x2d\xad\x37\xe0\xf3\x74\x2a\x05\x5e\x73\x72\xab\x7e\x77\xba\x29\x6a\x59\x5e\x68\x24\x06\x1c\x80\x09\x92\x5a\x87\x08\x7c\xf9\xa5\xa7\x95\xa2\xfb\xd5\xea\xcd\x84\x31\xa0\xa9\x67\xfc\x61\x2d\xfb\xd7\xe9\xe9\xdb\x57\xb3\xc4\xd5\x67\x65\xfe\x9a\x91\xce\x24\x2d\xd8\xbb\x55\x2f\x93\xd2\x90\xbf\xb8\xdd\x12\xc9\x6e\x46\x36\xe4\x04\x39\xbb\x3e\x8d\xfa\x23\x7d\x89\xd3\x05\xc5\x45\x1b\x58\x02\xa4\x36\xb4\x64\xc8\x99\x5d\x4f\xbf\x23\xc4\x3a\x7b\x14\x4b\x84\xdd\x81\x79\x5d\xe0\xa9\x92\x09\x82\xf6\xe0\x56\x03\x17\x19\x82\xc4\x6a\x38\x65\xfd\xb6\x71\x73\xc5\x1a\xac\xb3\x25\x8c\x0d\x28\x01\x64\xb8\xb3\xf1\x8c\xda\xeb\x05\x5d\xd8\x68\x59\xa4\x0f\xe6\x67\x2a\x6c\x54\xf6\x5f\xb9\x5d\xa2\x99\x29\x8e\xc3\xa5\x19\x95\xb9\x2f\x36\xec\x49\xa7\x0d\xf2\x9b\x90\xba\x10\x8b\xb6\x20\x15\xc8\x6d\x3e\xb2\xe7\xa2\xd3\x24\x64\x6c\x43\xeb\x88\x15\x46\x10\x44\xc0\xd8\x75\x94\x15\x94\xb1\xfb\xb3\xd3\x37\x6f\x2e\xaf\x3d\x97\x67\xca\xaa\x72\x92\x45\xdf\x39\xff\x9b\x51\xbb\xcc\x0b\x07\xed\x83\x43\x56\x04\xe1\xfd\x80\x34\xc7\x31\xb8\x70\xe2\x5b\xe9\x14\x5c\xd5\x98\xcd\x35\xb7\x45\x72\xe4\x71\xfb\xf3\x63\x0b\x94\xe4\x03\x8b\xc7\x8f\x89\xd9\x18\x2f\xf9\x3f\x09\xcd\xb4\x81\x69\x1c\xd4\xec\x2d\xe8\xde\xdd\x94\x1a\x50\xe7\x23\xb3\x2d\xd8\x5e\x9f\x41\x03\x25\xdc\xd7\x60\xa4\x37\x29\x76\xd7\x4e\xd8\x0a\x55\x37\xa0\x41\x46\x6e\x5f\x95\x7f\xf4\x90\xef\xac\x7f\x92\xbe\xc2\x6e\x5d\x8b\x72\x23\xdc\xf6\x37\xf7\x21\xf1\x1c\x1a\xf8\x62\x06\x95\xd3\xd7\x93\x76\xc7\x9e\x6a\xc4\x6d\xdb\xa7\xf7\xfa\x32\x65\xa3\x06\x7b\x86\xdc\x7b\x46\xda\x22\xef\x52\xd3\xf0\x11\xc4\x33\x36\x4c\x7c\x32\x7b\xd7\xd0\xbf\x1e\x69\xe6\x48\xc9\x69\xf0\xa6\x44\xec\x44\x2b\x54\xb7\x16\x83\x45\x27\x96\xae\x34\xe8\x05\x73\x67\xa6\xee\x4f\x45\x88\x29\xdd\x91\xd0\x71\x3d\xa7\xbf\xa6\x84\x37\xa8\xc4\xf3\x89\x8a\x34\x38\x4d\xe1\x22\x7d\xbd\x57\x34\xde\x4b\x5e\x50\xcd\x56\x65\x47\x3a\x3d\x9f\xa1\xc0\x4a\x9b\x26\x0c\x31\x45\x1c\xc6\x90\x90\xc5\x4c\xe4\x35\x58\x64\x2c\xab\xb2\x9b\xb3\x9c\xde\x8a\x07\x3b\x15\x9b\x6d\x44\x07\x8a\x11\x2d\x1b\xc6\xe9\xbb\x5f\x4f\xcf\x2f\x7e\x9d\x6d\x73\x73\x68\x51\x7c\xaa\x27\x4b\x80\xd1\xbc\xb8\xc9\xfa\x8d\x99\xda\xd0\x61\x44\xa4\xbf\x20\x42\x8f\x4d\xd0\xaa\x88\xf0\x77\x2b\x22\x51\x0e\x52\xbc\xb2\x98\x87\xac\xf3\x7e\x7f\xc4\x00\x35\xdc\xc5\xf9\x76\x3b\xd4\xb0\x84\xbb\xcd\x51\xbc\xc5\x3f\x67\xe3\x62\xaa\x6e\x20\xd1\xe6\x67\xa2\xc7\x3a\xcc\x09\xdf\x9d\xeb\x10\x2f\xfc\x30\xf5\x38\x2d\xdb\xda\x28\x8b\x49\x9a\xd6\xc0\xc5\x26\xc5\xef\xa3\xc5\xa6\x2f\x34\xd8\x64\x79\xd9\x93\x72\x28\x78\x34\x1a\xb7\x9a\x74\x58\x2e\xf4\xb4\x49\x30\x2e\x0a\x31\x83\xf7\xf2\xdc\x96\x01\xbc\x6f\xce\x2a\xb6\x2e\xfd\x1c\x94\x6d\x04\xc0\x1d\xd5\x5c\xe2\x5e\x49\xa4\xf8\xa8\xc2\x21\x0e\xba\x76\x6c\x33\xb5\xed\xfa\x2c\xf4\x37\x4f\x64\x52\xd8\x4c\xd3\x29\x72\xe3\xe6\x1a\x3c\x97\xd9\x2d\x35\x9e\x64\x38\x18\x13\x60\x2a\x74\x26\x61\x6e\x96\x33\x3b\xde\x1d\xe6\x6c\xb9\x01\x07\xde\x1d\x12\xb8\x5c\x90\xfc\x9a\x43\x3c\x4a\x24\xf8\xe1\xa6\xdc\xc9\xd9\x2d\x4a\x28\x0b\xf1\x9b\x44\xe0\xf2\x9f\x13\x41\x8a\x1b\x21\x0c\x34\x0e\x74\x71\x02\xf1\xdd\x9f\xc1\x9e\x3a\x56\xcf\xc5\x92\xfc\xf4\xde\x7c\x41\x73\xf4\xd3\xbd\x40\x5d\xe7\xa3\x5f\xac\xa3\x7f\x47\x8a\xd4\x5e\xf7\x3b\xdf\x4b\x28\xb1\xef\xbf\xe0\xab\x67\x3f\x3c\xd9\x5c\xe5\x40\xa2\x5f\x6c\x90\x4d\xf4\x30\x10\x33\xa3\x84\x15\x52\x65\x1b\xa4\x8c\x86\x9c\xe3\x8f\x9e\x7b\x29\x2b\x8d\xa7\xe9\xbf\xf0\x57\xfa\x82\xbf\xb4\x2b\x3c\x8d\xdd\x1c\xc5\x08\x0f\x26\x76\xe8\x98\x06\x8e\xa3\xde\x9d\x7e\x4e\x8b\x37\x4b\x80\x7d\x75\x63\x31\x40\x76\x81\x4e\x76\x3d\x6f\xd9\xf3\xb8\x5b\x6d\x6f\x29\x06\xfe\xe4\x1c\xc9\x22\x2b\x28\xc1\x59\xeb\xa3\x32\x12\xc7\x2a\x94\x45\x74\x4d\x01\xf5\x8a\xfe\x34\x0d\x47\xc7\xba\x0c\xf6\x59\x01\x22\x92\xfb\x4f\xe9\x35\xc5\x28\x44\x11\x26\x25\x0a\x8a\xf4\xe1\x21\x22\x4c\xa3\x16\x1c\x97\x03\x44\xf2\x9b\xa2\xed\x08\x45\x58\xeb\xba\x8f\x84\xdb\x58\x76\xe2\x39\x88\x50\xa2\x7e\xad\x62\x83\x97\x60\x02\x0b\x67\x93\xb1\x97\xd8\xbb\x6c\x2f\x9f\x84\x69\x3d\x75\xf4\x52\x42\x12\x0d\xbf\x67\x01\x85\x77\xb4\x83\x87\x18\x57\x1a\x7e\x6b\xe1\xc4\x1a\x30\x1b\x37\xc4\x52\x06\x87\x9e\xd2\xe5\x20\xfd\x46\xd4\xfb\xe7\xac\xdc\x5b\x5c\x06\xfe\x95\x9a\x17\x87\x8b\xdf\xd2\xf4\x17\x63\xde\x85\x84\x5c\x4a\x2e\x0e\x46\xe7\x7c\xfc\xcf\xe2\xcc\x85\xf3\x92\xff\x5d\x2c\x11\x8c\xce\x1f\xfa\x4f\x14\xf3\x33\x39\x17\xc8\x7a\xbd\x9c\xb2\xf2\xd1\xb3\xe1\x58\x04\x49\x15\x0b\xc1\x05\x8c\xa8\x44\xfb\x48\x0f\x93\x97\x84\xff\x66\xee\xf2\x9f\xf1\xa7\x70\xc8\xa8\x14\x37\xb8\xe1\xd8\x0e\xaa\x09\x61\xa8\xaa\x49\x30\xa9\x2e\x84\x94\x1a\xb7\x53\xc0\xa4\x79\x56\x11\xec\x25\x45\x84\xa4\x15\x15\xcc\x3a\xd3\xa0\x64\xa8\x51\xd3\xf0\x24\x1a\xd8\x59\x1e\x8a\xa4\x06\xc7\xed\x0c\x80\xa4\x99\xd9\x04\x28\x2f\x76\x3d\x1c\x75\x7c\x08\xa4\x16\x0b\xc7\x10\x86\xa3\xe7\xc7\x87\x86\x76\x38\x40\x92\x38\xdf\x6d\xb2\x65\xe1\x1c\x7e\x01\x04\xa9\xcb\xe7\xf3\xa2\x6a\x5c\x61\x5a\x59\x54\x1e\x10\xda\x65\x0b\x4a\xbe\x9f\x03\x9b\x2e\x33\xe3\xca\x27\x09\xea\x2c\x91\x26\x17\x7b\x99\x5a\xc9\x51\x91\x61\x1a\x29\x08\x2c\x7c\xc4\x44\xfb\x86\x57\x4b\x1c\xe6\xc3\x18\x13\x39\xee\xa4\xa8\x21\xcc\xd1\x92\x47\x74\xa3\x39\xef\x18\x5e\x85\x50\x4d\x03\xfa\xc5\x38\x65\xc6\xee\xdd\x8e\xe3\x9d\x62\x53\x15\x5c\x6f\x0a\xb4\xd5\xf3\xb6\x24\x2c\x59\xb2\xba\x2a\x73\x5d\xf7\x4e\x65\x92\xd1\xca\xe7\x8b\x83\xe6\x91\xf1\xca\x79\xcb\xf6\x48\x96\x2d\xef\xcb\x42\x8c\x6a\x96\x0b\x17\x11\x66\xe1\x41\x46\xc1\x04\x21\xe1\xf4\xfe\x87\x1f\x3e\xb6\x5c\xb2\x33\x8b\x3d\xbe\xff\xe1\xc7\x8f\x24\x6b\xf1\xc7\xc2\xd6\x72\xef\x9a\xe2\xb6\xac\x7b\x9c\x21\xd5\xa0\xa7\x46\x78\x92\xbf\x61\xaf\xf1\x88\xa0\xdc\xd1\xac\x01\x3d\xe5\x2e\x29\xa6\xa7\xaa\xdf\x42\x4c\x52\xf3\x5b\xa1\x37\xfb\x72\xd9\xe5\x9b\x55\x46\xae\xf2\x77\xf7\xcd\xbb\xc3\xd4\x89\x32\x27\x55\x81\x3b\x65\x7a\xc3\x3f\xc9\x97\xef\xcf\xef\xae\xb2\x3a\xb0\x8f\x5d\xcb\x01\x33\x56\xb3\x9c\xa5\xee\x50\x74\xb3\x78\x1a\xd8\x61\x56\xb4\x3a\x4e\xd2\x86\xc4\x20\xea\x84\x85\x14\x03\x6f\x0a\xe0\xc6\xe0\xde\xe1\x73\x90\x38\x2c\x4c\x80\xa6\x4a\xd3\xb9\xad\xb1\x2a\xc1\xc2\x74\x41\xb7\x22\x4b\xf8\xde\x37\x63\x4a\xe6\xb0\x0d\x99\xe7\x31\x71\xfa\xb2\xde\xd4\x9e\x07\xe1\x6b\x08\x20\xeb\xf8\xfb\xf9\x40\x8e\x48\xb2\x47\x8b\x8e\x3d\xfa\x1c\xcf\x2e\x81\x2c\xf2\x92\xcb\xf9\x95\xfe\xe2\x84\xc1\x5e\x72\x9c\xe8\xdc\x48\xa5\x81\x70\x26\xb5\xd3\x6c\xe3\x52\x74\x47\x16\xa0\xce\x90\x30\x09\xe6\xd7\x9d\xba\x7b\x40\x54\x24\x1c\x11\xeb\x0e\x75\xa6\x60\xfd\xa2\xac\xe4\x48\x1f\x97\xcd\x26\x76\xa4\xca\x66\xb3\x96\x7c\x7c\x13\x74\xba\x6a\x6f\x3f\x92\x96\x7a\x37\x7e\x35\x60\xc4\xd6\x5b\x9c\x06\xc7\x24\xda\x65\x0d\x51\x0d\xb6\xb4\x54\xef\xe1\x18\xdd\x9f\x6b\xa7\xe1\xac\xa3\x06\xdc\xed\xeb\xd4\xe9\x86\xb8\x62\x80\x8d\x67\x59\xca\x99\xcd\x15\x1d\x5b\x51\x9a\x7f\xa6\xc5\xd2\xc4\xa3\xa5\x10\xad\x58\xdb\x54\x6d\xc0\xf2\x71\x63\x26\x4f\x27\x97\x03\xcd\xc6\x4b\x82\x20\x79\x42\x6c\x05\xa9\xd3\xa2\x6b\x08\x90\x7b\x85\xe0\x7e\x1b\xd5\x4d\x4b\x83\xbe\x98\xab\x72\x46\xed\xa4\xaf\x14\x5f\xc3\x26\x18\x8b\x1b\x16\xed\x38\x45\xdc\x23\x1a\xb5\xc5\x9a\x96\x58\xe2\x55\x2d\xd2\x38\xd0\x91\x69\xd8\xd5\x5f\x48\x8d\x69\x3a\xf4\x51\xf1\x03\xcd\x61\x12\x3b\x36\x61\xe1\xb0\x1c\x26\x4c\x18\x4a\xc2\x54\xdf\xe9\x73\xea\x31\x6b\xa5\xe9\x43\x3b\x6e\xfb\x7d\xdc\xc9\x42\xb6\xbc\xf9\x3f\x4c\x70\xe7\xc4\xb4\xa8\xb9\xd0\xbd\x96\x88\xc2\x35\xc6\x9f\x9f\x3a\x71\xee\xbe\x0f\x0e\x54\xdc\xa3\xed\xf6\x51\x9e\x3f\x98\xe8\x75\x40\xf4\xae\xdb\x83\x9d\x0b\x95\xa1\x03\xea\x0f\x4a\x0a\x38\xc8\x34\xee\x18\x20\x1a\xa7\xf7\xec\x34\x55\xb0\x21\x23\xcd\x3d\xde\x40\xde\xc1\xd8\xb5\x75\xba\x23\x5e\x4d\x68\x77\x16\x62\x36\x67\x8a\x1b\x69\xd8\x93\x81\xfb\x42\x90\x34\xf0\x76\xbf\xb3\x79\x86\x07\x9d\xb6\x6c\x1e\xdb\x1e\x41\x89\x9c\x54\x3f\x8a\x90\x80\xe7\x79\xa4\x3a\xbe\x37\x01\x38\xc5\xf5\x7c\xdd\xff\x91\x9c\x6f\xaa\xf2\x29\x12\xf8\x12\xef\x9b\xba\x6e\xc3\xe2\x66\x42\xdf\xf0\x4e\x92\x90\x4f\x0a\x0e\xbb\x01\x3f\x67\xe1\xb7\x07\x5b\xd7\xf5\x27\x39\xf0\xb7\x40\xd0\xa7\xac\xca\xce\x12\xf9\x3e\x81\x97\x71\xea\x22\x6b\xcb\x65\x78\xad\xc7\x2f\x1c\x31\xd1\xc4\x9c\xc7\xb8\x99\xff\x5d\x34\xe3\x73\x7c\xa5\xff\x93\x09\xc3\x81\xa8\x6b\xd1\xa5\x1d\xf0\xbc\x62\x07\x23\x97\xaa\xae\x1d\x41\x55\xea\x89\x32\xae\x4b\xbd\x24\xd8\xb2\x30\x6d\xc1\x76\x2e\x42\xc7\xb2\x18\x7d\x0c\x8d\x81\xbc\xf9\xe2\x5c\x29\x46\xde\x42\x53\x5e\x42\xb1\x33\xf3\x1d\x84\xe2\x9a\xe2\xfc\x24\xd9\xc4\xa1\xc1\x4b\x73\xb5\x1c\x83\xb9\x0d\x01\xef\x5e\x19\xdb\x0f\x79\xbb\xab\x12\xef\x09\xb8\x58\xb2\x2b\x26\x47\xc5\x7e\x9d\x44\xd7\x72\x3b\x82\x3f\x19\x85\x63\x1a\xd8\x3d\xe2\x83\x61\x56\x2f\xae\x9c\x81\x93\x35\xfb\xab\xb6\x62\x7f\x55\x67\x51\x71\x1c\x92\x8d\x84\xcc\x1d\x2c\xe4\xdd\xc9\xa1\xc9\xd8\xed\x09\xfb\xd3\x81\xe2\x79\x64\x4d\x45\x5a\x40\x3e\x03\x3f\x3b\xe0\x3e\x30\x5f\x0e\x00\x0d\x29\x97\xc4\x9f\x64\x77\x53\xb2\x65\x91\x9f\x6a\x17\xa8\xcd\xb2\x7f\xb2\xc8\x96\x9f\x5c\x8b\x98\xfd\x15\x4d\x07\x0f\xd1\x31\xda\xd9\x43\x65\x09\xf5\xe3\xc9\xee\xd9\x23\x98\x25\xe5\x32\x09\xf4\x42\x26\x78\x79\x13\x20\x04\xbb\xb4\xbc\xeb\x7a\x5b\xe6\x3d\x91\x37\x0f\xc6\xec\xc9\xe3\xdd\xb3\x38\x3f\x51\x04\x4c\xd5\x47\xcb\x18\x0c\x1c\xab\x2e\x25\x4e\xa6\xb1\x0b\x36\x7c\x81\x6f\xbc\x8b\x7b\x8b\x1a\x8e\xce\xa2\x80\x15\x05\xa4\x6e\xec\xe4\x0b\x1e\x52\x63\x9c\xd8\x16\x12\x2e\x23\xc2\x36\x92\x83\x61\xed\x6a\x1e\x90\x36\xb6\x2a\x8d\x66\x27\x8a\x92\x2d\xd0\x81\x41\xde\x7b\x1c\xbb\xa6\x59\x86\xe6\x78\xf3\xe2\x2d\xb9\x74\x62\x2b\xce\x81\xb2\x33\x80\xe7\x98\x62\x07\xcb\x73\xf4\xe7\x2c\x88\x3e\x9e\x61\xe0\x9a\x10\x95\x15\xbb\x26\x04\x0d\x14\x51\x73\xac\x9c\xb3\xc9\x32\x74\x03\x35\x28\x05\x07\x0b\x4a\xb8\x90\xcf\xf5\xb4\xab\x5e\xa4\x35\xf4\xe1\xd6\xd4\xfd\xba\x0e\xce\x5a\x89\xbf\x04\x26\x6b\xd8\x90\x59\xdc\xd7\xbd\xc8\x07\xc5\x8b\x4a\x8b\x81\x18\xb1\xc9\x67\xb2\x04\xe7\x76\xb6\x3d\xf1\x96\x4d\x49\x83\x0e\x91\xa1\x77\xb6\x5c\x5e\x5d\xe3\x36\x0c\xe2\x85\xc4\x68\x56\x4c\xaf\xe9\x5f\xd6\xb4\xb8\x67\xcf\x7a\xbe\x3a\x85\x1d\x9e\x56\x69\xbd\x5c\xb2\x9b\x53\x59\xe9\x69\xf3\x7d\x61\x1b\xf2\x55\xbe\x11\x97\xa7\xd0\x61\xcc\xf8\xae\xd8\xe2\x53\x5c\x8f\xc2\x4c\xa0\xdd\x15\x4b\x52\x4a\x66\xe9\x6b\x52\xd1\x2a\xdc\x29\x86\xb3\xad\xcc\x4b\xee\x34\xdd\xbb\x9e\xc0\x86\xce\xab\xcb\xd9\x58\x40\xba\xcb\x9b\x4c\x4a\xa2\xdf\x3b\x76\xab\x16\xfb\x07\x27\x90\x3a\x51\x6c\x6e\xc4\x45\x9e\x7d\x12\xa0\xca\xc9\x4d\x1f\xbc\x2f\x2a\x17\x20\xf0\xee\x02\x0a\x50\x67\x2f\xb8\x76\xe0\x5c\x28\xf7\x6c\x57\x34\xac\x8e\x98\x5b\x64\xe8\x11\x37\x6c\x13\xd6\x9a\xd6\xae\x57\xc2\x16\x30\x7c\x50\x5c\xe5\x10\xef\x09\xf3\x62\xd6\xf9\xcc\x70\x60\xfb\x4d\x3b\x39\xb8\xcb\x92\x8e\xf0\x85\x53\x27\x06\x22\xf2\x03\xa7\xf3\xf8\xf8\x45\xaf\xc3\x61\xce\xa6\x40\x28\xd7\x33\xd1\x22\x15\xc8\x8c\x20\xd9\x4c\x1e\x41\x78\xb3\x06\x80\xcc\xf7\x67\xc8\xc2\x14\xdc\xeb\x01\x2f\x23\x4a\xd4\x39\x85\x12\xc3\xfb\x0c\x84\x7c\xef\x98\x46\x01\x95\x47\xd7\x71\xa1\x87\x7a\x8e\xf7\x09\x1f\x42\x7d\xc6\xd4\xfb\xe4\x31\x82\x6e\xc1\xa8\x94\xc7\xb7\xff\x04\x14\xc7\x37\xbb\xd4\x84\x3f\x88\xbe\xa6\x58\x65\x4d\x6e\x87\x78\x94\xfa\xd9\x47\x05\x54\x1e\xfa\x68\x66\x1b\xd2\xc8\xb5\x08\x9a\xad\x04\xf2\x89\x2d\xf6\x44\x28\x7c\x77\x95\x2d\x42\x98\xf3\xe7\x32\xb5\xd8\xfd\x8d\x08\xbe\xdf\xf1\x1c\x90\x09\x65\xf5\xa0\xdb\x0f\xff\x7c\x75\xf9\xe6\x24\xfd\xfc\x68\xbf\xdf\x3f\xe2\xec\x8f\xfa\x66\xc3\x8e\x62\x39\x1f\x12\xfa\x1f\x17\xaf\x4f\xd2\xa2\x5b\x7e\x3f\x23\xed\x1d\x53\xc3\xab\xbd\xea\x3f\x83\x45\x2e\x93\x25\xaf\xec\xfe\xf1\x29\xb3\x93\xd3\xa4\x7a\xd3\x52\x78\xb6\x34\x64\xda\x3c\xec\x66\xcf\x54\x2a\x10\xbb\xa6\xd7\x18\x0b\x5a\x2b\xe1\x34\x39\x02\x3e\x01\x58\xb5\xe1\x7b\xcf\xe8\x10\xe5\x06\xf1\x2d\xfb\x1f\xf4\x9b\x5c\xe8\xd4\x38\x1a\xf5\x4e\x51\x56\xe4\x3f\x0f\x4b\xc2\x3e\x16\x2e\x96\x79\x9a\xfe\x99\x17\x7a\x8c\x52\xa1\x02\x4e\x32\x2a\x00\x70\x48\x4b\x98\x61\xa9\x9e\x8c\x2f\x86\x09\x7e\x47\xf1\xbc\xe8\xe0\x4a\x3b\x45\x1b\xd2\x72\xd7\x36\x3f\x9a\x36\x51\x49\xae\x51\x61\x8d\x70\x6f\x71\x8b\x89\xa8\x79\x30\x07\x58\x2e\xed\x87\xf3\x60\x28\x92\x74\x92\x79\x76\xaf\x93\x6c\xc4\xf1\x15\xf0\x4b\xf3\x4c\x35\x88\x91\x46\x17\xd4\xa0\x9a\xdd\xa8\x06\x71\xb2\x9b\x6b\x2f\xed\x8c\x0b\x1c\xef\xce\x5d\x5c\x2c\x82\x8c\x6a\xc0\x40\x62\x92\x61\x84\xb4\x1b\x52\xf3\xe6\xe1\x0c\x67\x61\x16\xf9\x56\x5e\x31\x08\x3c\x2a\xd9\x13\xc1\x76\xed\x47\xfe\xa4\xa1\x9a\x21\xa5\x9a\xbf\x94\xf8\x75\x0d\x12\x87\x37\x9e\x0d\x92\x79\x65\x21\x97\x31\x9e\x49\x28\xc4\xd6\x6e\x53\x1f\xcc\xe5\xf6\x1c\x5f\x7a\x96\x25\xec\x99\x07\xd3\x4e\x79\xc8\x40\x83\xaf\xe7\x71\x71\x7f\x0d\x6e\x35\x50\x35\xa0\x3a\xa4\x02\xc3\xfe\x38\xa1\xaa\x17\x59\x65\x26\x9a\x37\xe1\xb5\xe9\xa0\x86\xfe\xa5\xe7\xae\x86\x23\xfe\xa5\x71\xd6\xd0\xc7\x34\xc8\xfa\x15\x3e\xa6\x31\x92\xc6\x1e\xa4\xbe\xab\x5f\xe1\x44\x3a\xd5\xe9\xc0\x00\xa1\x64\x3c\x85\xf8\x89\x0c\x53\x86\x88\x3c\xec\x9b\xb7\x44\x84\x66\x07\x59\x1b\x14\x2d\x2c\x38\x83\x05\xdf\xd7\xac\x31\xa7\x5a\xe2\x51\x12\x20\xf7\x4b\x66\x89\xbc\xbc\xb9\x99\x2d\x9a\x7a\xdf\xb2\x13\x2b\xee\x2d\xe3\x7d\x76\xfe\x4e\xaf\xf0\x2d\x20\x6c\x72\x05\x51\x48\x40\x22\x65\x5f\x98\x22\x25\x20\x91\x2c\xda\x46\xf7\x46\x9d\x53\x0a\xae\x6a\xe2\x6b\xdc\xf8\xec\x89\xa4\xcc\x24\x0b\xb1\xf3\xfd\x9c\x43\x70\xbe\x85\x89\x84\x97\xe2\xc8\x74\xc5\x31\x0a\xc6\x41\x43\xb8\xb9\xf2\x61\x9b\x46\x4f\x03\x41\x0f\xf3\x5e\x7d\x20\x2c\x83\x23\x30\x22\x86\x12\x8a\x96\x07\x09\x9d\x02\x09\xc2\x70\xe9\x21\x14\x41\x98\xf4\xbf\xbc\x7a\x23\x9f\xd8\xe9\xd7\xb3\x51\xd8\xea\x7f\xce\x3e\x57\xe6\x3f\x30\x9b\xf2\x23\xb0\x34\xf1\xc7\x90\xf5\xa9\x5d\x24\x8b\x2f\x07\x91\x37\xd9\x0d\x6c\x95\xfc\xef\x62\x49\x99\xf3\xd9\xde\x36\xc5\xa3\x61\x36\x42\x8e\xa0\xfa\x0a\x01\x17\xaf\xb6\x46\xfe\x73\x71\x19\xdb\x15\x03\x1c\xde\xcf\x3d\x46\xcc\x1b\x81\xe8\xee\x3e\x09\xda\x92\x17\xe0\x4a\xa0\x83\x0a\x41\x1d\xfe\xba\x0f\xd0\x0e\xae\x56\x35\x88\x2e\x5b\x39\x57\xda\x6c\x25\x7b\x36\x3e\x0d\xaa\xbd\x9d\xcf\x8c\xf2\xf8\x3b\x3f\xcc\xa4\xe0\xbd\x4d\x28\x1d\x97\x17\x2e\x43\x27\x16\x8a\x64\xef\x15\x1c\xb1\x6b\xd7\xb3\xe1\x40\xb8\xbd\x23\xc5\x59\x8a\x6f\x07\x65\x9a\x0a\x93\xcb\x7c\x9b\x07\xca\x8a\x10\x50\x28\x56\x2e\xb2\xe6\x13\xdf\x66\x86\xad\x49\x2b\x60\xdf\xe8\x99\x3a\xfe\x0f\x47\x4c\x6f\xd1\x7b\x2b\xa1\x51\x85\xf1\xe6\x39\x72\x63\xcd\x64\xcc\xd4\x65\x60\xed\x4a\xce\x6f\xbe\x96\x90\x5c\x7f\x3b\xa4\x8c\xb1\x4f\x39\xa5\x3d\x1a\x8e\x5b\x00\xef\x10\xfd\x97\xe2\xff\xfc\xaf\xff\x4d\xec\x69\x57\x93\xb4\xc4\x69\x07\x3d\x68\xef\xc7\xdd\x5c\xe7\xfc\x9d\x87\x8f\xc0\xa3\x83\x86\x08\xfa\x53\x3d\x40\x40\xa1\x11\x8d\xf2\x85\x68\x46\xdf\x57\x6c\xa3\x8a\x89\x1c\xab\x1d\x4f\xe6\xb0\x8f\x0f\xcb\x30\xa2\x9a\xab\x8c\x70\x07\x7d\x6d\x70\x31\x68\x72\x7c\x4e\x89\x6e\x5a\xa4\x24\x1f\x68\x4d\xfd\xd1\x5f\x07\xe1\x06\x22\xba\x0a\x02\x4b\x1c\x0f\x63\x08\x7b\xc1\xe4\x37\xbe\xfd\x55\x96\x8c\x72\xf7\x0c\xb6\xa4\xcc\x41\x56\x8e\x67\xcb\xe1\x1d\x57\x48\x58\xd1\x83\xd6\x4e\xf0\xe8\xb5\x44\x38\x23\x33\x71\x8c\x2a\x3c\x1a\x44\x2b\x46\xdd\x94\x90\x63\xe7\xba\x1d\x13\x5d\x23\x0d\xe7\x2f\xb3\xff\x98\x1a\x98\x27\xba\x4f\xc0\x0e\x49\x1c\xe0\x9b\x01\xf8\x8a\x5d\x26\x3f\xb1\xf0\xbe\x42\x04\xcd\x6b\x44\xe0\xd6\x0b\xb8\x5c\xf1\x7f\x82\xb3\xc6\x6a\xa4\xe0\x58\x0d\x69\xfc\xe0\x3c\x73\x13\xdd\xdd\xe6\xdd\xd2\x70\xcf\x41\x74\x59\x1a\x17\x0e\x44\x4d\x6c\x11\x8d\x6e\xbf\xc0\xc8\x20\xf6\x2e\xe8\xc8\xb9\xf7\xc1\x06\x56\x3b\x3d\x2c\xc7\x65\x11\x97\x53\xf7\x05\x25\x19\xdc\xbd\xc0\x97\x14\x55\x7c\xed\xa0\x61\xd9\x55\x13\x4c\x99\xb5\xec\x1f\xf9\x6c\x3c\x5e\xd9\x82\x26\xcf\xcf\x02\xcf\x6e\x5f\x65\xdb\x06\x4a\x02\xf2\xf8\xe8\x74\x43\x0b\x84\x4d\xb4\x98\x41\x41\xac\xca\xfd\x7c\xc4\x3f\x76\x7c\x4f\xc9\xb7\x7b\xc8\x8e\xcb\xb8\xdb\x47\xf6\x1f\xdd\xba\x98\x3e\x83\xec\x92\xc7\x87\x91\x5d\xd2\xd4\xa9\xe4\x7f\xc7\x46\x02\x91\x94\x36\x63\x34\xb7\x8f\xee\x24\x68\x1e\x67\x88\x3e\x7e\x3f\xcc\xb7\xef\x27\x44\xb7\x72\x7c\x85\xb6\x17\xf7\x38\x50\xf4\xa2\x56\x39\x84\xb0\xc1\x2a\x3e\xad\x71\x6c\xf5\xe6\x15\xd7\x88\x67\x0c\xd7\x78\xa3\xc3\x19\xe8\xe9\x9d\x59\xe2\xa3\x1a\x61\x33\x9d\x79\xca\x1f\x6e\x30\x2b\x8e\x1c\xd2\x10\x73\xde\x97\x4f\x6a\x1c\xb1\x0f\xdf\x75\x64\x63\xd8\x4a\xe6\x35\xce\x4d\x28\x6c\xe4\x9d\x39\x42\x31\x1b\xef\xc1\xfc\x7b\x8e\x71\x4c\xdb\x60\x79\x0d\xb8\x37\x53\x0c\x84\xb2\xe1\xcf\x1b\x14\x78\x0d\x61\xf8\x92\x45\x86\x67\xb8\x1e\x73\x3d\x2e\x66\xee\x86\x8d\x66\x8f\x07\xe1\xde\x33\xbd\xa2\xc0\x0e\x00\x0e\xe2\x3d\xeb\x83\xa3\xc5\x4e\x0e\x61\x78\x20\xf9\x86\xba\x33\x99\x32\xcc\x1f\xd7\x11\x1f\x5e\xb1\x58\x67\x06\xbf\x40\xc0\xc5\x13\xd6\x96\x05\x0e\x17\x9c\x49\xc8\xa5\xe8\x5a\x4b\x6f\xda\xf1\x8d\x90\x5b\x54\x9e\xc2\x12\xea\x63\x55\xea\x29\xae\xd9\x3f\x9b\x06\xe5\xb0\xe3\x21\xcc\xdc\xb5\x02\x3c\x4c\x02\xa8\xea\xa6\xb6\x0a\x1a\xf2\x4f\xc3\xb2\xe4\x46\x49\x95\x9e\x6f\xea\x7d\x22\xa2\x73\xc6\x17\x7f\xa4\x72\xeb\x87\xc6\xc4\x4d\x92\x38\xd6\x51\xf4\xb4\x1d\xfa\x40\x6a\xba\x1c\xae\x1b\xa7\x0f\x0e\x1c\x40\x72\xb8\xa3\x06\x76\x89\x0f\x2b\xa0\xd0\x1a\xe0\x23\xce\x7a\x7d\x48\x1c\x33\x2d\x15\x0a\xac\xaf\x56\x34\xd1\xa8\xde\x10\xe2\x6b\x2a\xe6\x76\x8e\xaa\x3b\x31\xfb\x16\xce\x74\xb3\x1f\xb9\xf0\xc3\xad\xb5\x43\x2e\xbd\x75\xed\x70\x37\x2a\xfb\x76\x84\x10\x5f\xd3\x0e\xae\xe5\x31\x3c\x82\x78\x10\xef\x6a\x0f\x2d\x0e\xf5\x88\x7a\xb8\x7b\xd2\x0e\x9b\xe8\x3d\xf6\xaf\x03\x79\x8d\x1d\xc8\x7c\xa0\x7f\xb0\x79\x73\x2c\x38\x25\x45\x36\xc2\x26\x54\x04\xd9\x28\x9e\x3c\xa9\xf8\xe5\x29\xce\x23\x8d\x9c\x0e\x34\xd8\x02\xf6\x60\x53\x52\x48\xdb\xe5\x55\x3a\xe8\x58\x17\xaa\xd7\x49\xe2\x97\x05\xaf\xc0\xd9\x19\x43\xd1\xef\x42\x91\x01\x05\xcf\x46\x32\x97\x1b\xcd\xdc\x1c\x67\x56\x17\xd4\x3a\x2e\xcc\xb1\x6a\x40\x39\x16\x3d\x86\x33\xde\x19\x6a\x67\x81\xb1\x95\x99\xf2\x89\xe9\xac\xb2\xdb\x6a\x50\xdb\xec\x10\x6d\x00\xf3\xd9\x4a\x5e\x91\x45\xb3\xe6\xb8\xc4\x1e\x37\xc5\xcb\x6a\xb9\x26\xcc\x11\xcc\x51\xa3\xcc\x2c\x9c\xea\x63\x02\xf1\x64\xb7\x6a\x32\xb6\x85\xdb\x58\x33\xb3\x08\x48\x01\x05\xfe\xe4\x7a\xe9\xae\x5c\xf7\xdc\x00\x3b\x6c\x54\xd0\x83\xbb\x98\xc2\x37\x34\x00\x6c\xe3\xee\x16\x80\x2d\xc8\x65\x67\xd4\x8c\x80\x05\xdc\xd5\x10\xbd\x2b\xfd\xeb\x1b\x02\xbe\xf1\x95\x0d\x39\xb1\x56\xe8\x15\x3b\x79\x3e\x39\xff\xef\x6a\xdf\x60\xb9\x03\xe2\x8c\xee\x70\x1a\x10\x7c\xf4\x6e\x8d\x23\xfa\xc0\x17\xc2\x8a\xc5\x06\x98\xfa\x66\xa8\x38\xf3\x45\x55\x34\x84\x58\xca\x56\x5d\xe8\xbf\x11\x9f\xa6\x62\x8f\x82\xae\x39\xa8\x4a\xc2\x9d\x8b\x0f\x73\xf9\xab\x2a\x64\x11\x86\xbd\x4c\xb9\xd7\xeb\x03\xd0\xfe\xf1\xc8\xfb\x58\x72\x8f\xbf\x6c\x4f\xb7\xd1\x33\x4a\xe3\x2b\x96\xee\xbc\xde\x2a\xbe\xd6\x6b\x78\xbf\x5b\x2b\xc7\x71\x57\xa6\xcb\xd9\x55\xe9\x89\x77\xde\xb8\x3a\x10\x0e\xb6\x78\x1d\x62\xc9\x37\x9b\xd4\x55\x29\xfb\xfe\x17\x12\xe2\xcb\x6d\xd8\x14\xa3\x76\x18\x3e\x25\xee\xdd\xc5\x7d\xef\x60\x5c\x64\x1b\x93\x2a\x02\x12\x0e\xd2\x83\xeb\x96\xe0\x6f\xd9\xd8\x05\x52\xbe\x04\xb4\x04\x26\xcc\x3e\x68\x99\xb6\x03\x85\xf6\xed\x54\x8d\x73\xde\xa8\x4b\x75\x9b\xd2\xbd\x6a\xc3\x4c\x82\xef\x14\xc9\xf9\x4e\x11\x79\x38\xe1\x24\x88\x88\x70\x1e\x26\xec\xdc\xed\x0d\x51\x74\x2c\xf8\x7c\x3c\x4e\xae\xc5\x51\x7c\x5c\x2d\x8a\xc8\x96\xa3\x5a\xcc\x80\x1d\xc6\x89\x2f\x5d\x18\x63\xfe\xf3\x51\xe9\xf1\xa5\x06\x61\x92\xdc\x54\x16\x45\xe9\xe5\xec\x71\x4f\xc4\xa6\x1a\xc6\x6d\xea\x15\xdf\xb2\x06\x23\x64\xdc\x3d\xd5\x9d\xe3\x32\xcd\xa5\x2f\x2a\x02\x4e\xe1\x61\x0c\xf6\xb5\xba\xac\x8d\x73\x63\x0a\x86\x11\x7a\xc8\x7d\x04\x48\x6b\xea\x6c\xb9\x46\xff\x67\x53\x84\x64\x4b\x63\x47\x4c\xfa\x2c\xd3\x04\xa4\x5c\xa0\x9f\xda\x75\xf9\x93\x30\xfc\x2e\x0f\x5e\x27\x08\x52\xd9\x45\xb6\x9a\xeb\xbd\x0f\xb5\x1e\x73\x65\x7f\x59\x77\xc7\x43\x7a\x89\x19\xd7\xde\x99\x29\x90\x62\x7c\xe4\x44\xef\x95\xd0\x9c\xa2\x71\xdc\x21\xce\x7c\xc9\x2a\x18\xd5\x73\x21\xf3\x6b\xb5\xd6\xeb\x09\xac\xdd\x98\x6b\x83\x23\x92\xaf\x2a\x63\xd0\x4a\x0f\xe1\x8a\xf9\xf6\xa6\xc2\x7a\xc6\x67\xef\x60\x91\x8b\x1a\x19\xb1\x35\x03\xf9\x42\x09\x83\x26\x4e\x16\xf1\x0d\x8d\xe4\x17\x3d\x56\x4b\xf7\x02\xc2\x39\x5f\x9e\xd3\x2c\xf8\x94\x1f\xcb\xb0\x42\x5e\xa6\xa9\xab\xd8\x02\x37\x9d\xfd\xae\x96\xa1\x41\xbc\xe6\x9e\x2a\xfe\x58\xdb\x9a\xa2\x3d\x54\xcb\x39\x9e\xa3\x68\xd7\xba\x51\xf9\xae\x10\x5b\xf9\x83\x19\xc5\x3d\xce\xf4\xa8\x75\x81\x2d\xbd\xf6\x81\xdc\x2e\xf6\x70\x49\xf1\x78\x0e\x83\x44\xdc\x23\xf0\x44\xe4\x36\x05\x8e\xd4\xb3\xee\xfb\x3b\x2b\x1a\xf4\x25\x60\x88\x01\x6e\x1b\x34\xa5\x2b\xbe\xaa\x07\xc1\x26\x79\xd8\x0d\x26\x03\x9d\xfd\xe0\x15\xe1\x35\x9a\x8c\xb8\x87\x7c\xba\x9c\xaf\x43\xe2\x5b\xc6\xd5\xdd\x47\x05\x9a\x3d\x37\xa2\xc6\xa3\x23\x1d\x0a\xeb\xbd\x63\x84\x1e\x44\xad\xf8\x72\x1f\x43\x21\x24\x0f\x29\xf5\x3b\xbc\x66\xe7\x5e\x50\x7a\x8f\xef\x90\x29\xc8\xcd\x66\xf3\x55\xdd\xd4\x34\x3c\x72\x90\x51\x6f\x3b\x7b\x61\x71\xed\x44\x06\x98\xc0\x0f\xf3\x5e\x0f\x9f\x5a\x9e\x0b\x44\x93\xfe\xc0\x27\x51\x7d\xae\xae\xee\xb2\x8d\xe5\x61\x0b\xe4\x52\xed\xd6\xd7\x9c\x60\xb9\x4e\x2d\x21\xc8\xa9\x79\xea\x05\xfb\x7b\x22\x8b\x02\x5f\x6a\x4c\x00\x8b\x6d\x0e\x3e\x1d\x48\xe8\xea\x77\x73\xee\x2a\x0e\x96\x49\x74\xfa\x1a\xd1\xe9\x35\x47\x8f\x6b\xb0\x56\xb9\x6c\x83\x46\x1d\xcb\x77\xd3\x14\xa3\x3c\xcf\xf9\x24\xf4\x10\xde\x30\xb7\x2e\xb2\xdd\x08\x6f\x2f\x29\x72\x84\x35\x40\x8e\x11\x00\xd8\xe3\x58\x08\x73\x95\x39\x16\x56\x61\x8e\x57\x14\x75\x0c\x1a\x1e\x00\x43\x78\xbc\x33\x77\x24\x87\xca\xec\x61\xab\x74\xcf\x66\xd4\xaa\x7a\xf1\x37\xbc\xca\xa6\xd0\x97\xf2\x19\x40\x2d\xea\xba\xe3\xc7\x2f\x76\xac\x6e\x2d\x3f\x39\x34\xfd\x62\xf1\xac\x6e\x2d\x3f\x8d\x30\x25\xd0\x63\x54\x09\xf4\x71\x5c\x6d\xf9\x1a\x06\xaa\xab\xe9\x97\x5d\x4f\x13\xd4\x55\x78\x71\xc5\x57\x3a\x5c\xb9\x84\x51\x8d\xa3\x9c\x21\x85\x0e\x33\x4f\xd5\xbc\x24\x25\xa2\x98\xac\xfa\x8c\x53\xee\xac\x7b\x94\x37\xac\x7c\x94\x7d\x6a\xa6\xe0\x32\x4f\x36\x3a\x2f\xfa\xe5\xa7\xa2\x63\x9f\xf1\xf5\x1c\x3b\xcc\x61\x59\x6f\x0d\x2c\xfd\x05\x60\xe9\x4b\x02\x4b\xaf\xe5\x69\xb5\x71\xa9\x24\x74\xb6\x45\x97\xc1\x53\x20\x28\xe5\xc5\x19\x8d\x00\x47\xe7\xd9\x54\x2e\x58\x67\xe6\xaa\x65\xeb\x2c\x64\xc5\x27\x28\x41\x1f\x7d\x13\xc5\xfb\xd4\x81\x4c\x95\xc6\xcb\x00\x91\x7e\xcb\xc3\x52\x6e\xaa\xe4\x85\x01\xb5\xe1\x9d\xc4\x04\xb0\xb8\x50\x8c\x60\x8d\x47\x62\x53\x1c\x37\x8b\x11\xf8\x75\xcc\x28\x85\x83\x79\x60\x61\x5c\x04\xf7\x36\xeb\xdb\x49\xc0\x5d\x26\x93\xe9\x28\xa4\x55\x6f\x80\x56\xf3\x10\x4e\x2b\x6d\x05\x95\xc2\x56\x64\xa5\x26\xbe\xc5\x7a\x99\x97\x3d\x18\x0b\xd7\x62\xbb\xca\x0b\xcf\xc6\x0a\xec\x17\xdf\x32\x52\x30\xd1\x5e\xa1\xb3\x4a\x8c\xe9\x5b\xb8\xa7\xdb\xc2\x96\x06\x4b\x94\xda\xf4\x34\x2e\x7a\x58\x49\xe3\xec\xec\x94\x3b\x78\xac\xf1\xe1\xa1\x4b\x2d\x11\x8a\xa9\xb9\xac\xc4\x6f\x56\xa8\xe7\x8a\x00\xca\x75\x26\xb2\x93\xb4\x09\x33\x63\xd1\xe0\x5e\xfd\x8c\x0a\x78\x8d\xf5\x44\xd0\xb7\xa3\x77\xde\xda\x75\x4f\x5f\x79\xed\xad\xef\x4d\x80\x63\x6c\x74\xc7\xd8\x2d\xdb\x79\x88\xce\xe1\x6d\x51\xd9\x00\xbd\x0c\xae\x18\x8e\x40\xb1\xf3\x1d\xbe\xd2\x14\x6c\x3f\x1a\xca\xb1\xd1\x87\xd7\xe1\xd4\x91\x6f\x54\x42\x90\x27\x78\x52\x8f\xdd\xa1\xe5\xac\xd1\x14\x8a\xbc\x75\xd0\x30\xe4\xae\x0f\x06\xf4\x9d\x5b\x4b\x31\x2e\xa6\x6f\x35\xff\x7f\x72\xb1\x7b\xd8\x00\x7f\xbd\xfb\x91\xfa\xff\x43\xae\x77\x1f\x5a\x66\xdd\xfd\xee\xb8\xbf\x7a\x86\xc3\x01\xf1\x3c\x8e\x36\xae\xa2\xf9\x8c\x1c\xe1\x3c\x45\x44\xbc\x95\x8f\x28\x6f\xf6\x35\x8b\xaf\x58\x6d\x30\x45\x87\xf5\x05\xe7\x39\xa2\xda\x24\xc7\xf8\x16\xb2\xb8\x09\x12\x33\xde\x2d\x92\x78\xb5\x46\xa4\x7a\x93\x4e\xa1\xd6\xa3\x19\x4c\x12\xba\x45\x63\x71\xa3\xd7\xa3\x79\x52\xeb\xd4\x1e\x34\x39\x9e\xdc\x51\xab\x25\x93\x9c\xf4\xb5\xa3\x22\x93\xcc\x44\x01\x83\xae\x48\x4c\x78\x61\x83\xc4\xc8\x7d\xc6\x78\xe0\x43\x42\x1a\x3f\xf6\xc2\x08\x5a\xac\xc5\xc4\x55\x07\x85\x02\x68\x92\x57\x05\x6d\x19\xfa\xa7\x4a\x6c\xf8\x58\xb4\xc4\xe8\xbb\xbb\x78\x72\x57\x62\x16\xf0\x1f\x82\x97\x1b\x1b\x9f\xce\xdf\x58\xb5\x5d\xd7\x94\x8b\xbe\x9b\xbe\xa9\xdb\xa5\x8e\xa0\x6d\xdb\x9f\x69\x37\xfd\x02\x6c\xdb\x5b\xc1\x57\xfd\x97\xca\x1d\xbc\xa2\x34\x80\x93\x6b\x29\x52\x77\x61\xce\x73\x7c\x6b\xe2\x96\x79\xe4\xbc\xe5\x87\xe1\x2f\x88\xc5\xe4\xe9\xd5\xa9\xa6\xe0\x75\x5d\xb5\x8e\xe0\x11\xde\xa3\xa3\xc0\x90\xa3\xd7\x7a\x7d\x92\xe2\x15\x49\x01\x72\xf5\xc6\xef\x4e\x2e\x63\x96\xdb\xae\xaf\x5f\x5f\x51\x70\xd9\x1c\x64\xc3\x48\xc7\x85\x77\x0c\xf4\x4d\x5b\x7b\x02\xe5\xf4\xc2\xbd\x1a\x1c\x8c\xb4\x16\xc9\x2f\x92\xba\xf7\xf6\x7c\xe1\xd4\xfe\x5a\xdf\xdb\x53\x83\xa9\xd2\x2a\xbf\x17\xc1\xce\xbf\xbb\xd6\xca\x09\x8e\x22\x0f\xc8\x5e\x6f\x06\xd7\x11\x18\x09\xa3\xd8\x72\x0b\x41\xe3\x84\x52\x48\xef\xa1\xac\x8c\x2a\xf8\xca\x7b\xbc\xc3\xb2\x02\xa1\x72\x47\x5b\x27\xcf\x1a\xc6\xf7\xba\x85\x80\x73\x99\x7f\x76\x7d\x63\x54\xb0\xdb\x64\x1a\x67\x88\xee\x71\x8c\x32\x4d\xbb\x01\xdc\x75\x83\xa3\x18\x05\x6c\x31\xee\x6c\xde\xba\x18\x8f\x4d\xdf\x0a\x7b\xd7\x83\xe5\x01\xc8\xad\x6c\xad\x05\x10\xbf\xc9\x73\xaa\x21\xd0\xf4\x83\xd9\x0a\x30\xe4\x29\x1a\x3d\x78\x47\x39\x7a\x40\xd9\x72\xda\x7b\x90\x75\x2f\xab\x6d\xbc\xd7\xaa\x67\x8c\xde\x21\x92\x15\x2d\x03\x9f\x7a\xb4\x3c\x48\xd2\x8a\x38\x29\xac\x04\x12\x8a\x5f\x70\xbd\xf3\x81\x75\x43\x30\x9b\xdc\x97\x73\xb9\xd4\x2b\xc8\x03\x83\xff\x12\x6e\xbc\xe3\x4c\xd4\xee\x71\x0e\x6a\xf7\x11\x70\xd9\x04\x36\x7e\x7e\x85\x2f\x61\x21\xae\xc5\xec\x5a\xa6\x54\x64\x1d\x96\xb8\xe1\xf3\x36\x21\x0e\xf2\x85\x27\x0c\xf7\xe8\xed\x24\x69\x10\x64\x28\x94\x7c\x6c\x28\x08\x7c\x6c\x28\xd2\x7c\xac\x36\x6c\xd0\x82\xa9\x67\xfe\xc7\xa9\x7e\x67\xfe\x21\xfb\xa6\xdc\xa3\x01\xe9\x56\xb4\xc2\xbc\x87\xb7\x9d\xbf\x0f\x72\x28\x36\x43\xfc\x69\xec\xb0\x0c\x7d\x91\x78\x50\x84\x31\xcb\x68\xca\x94\xcb\x23\x88\x71\x0f\x93\x46\x17\xbe\x03\xfd\xf2\xc0\xb5\x8a\x95\xe8\x45\xf2\x21\x31\x7b\x66\xeb\x48\x39\x64\xb4\xd6\x30\x76\x69\x8f\x9e\xea\xd6\xe7\x21\xd5\xb7\xdd\x3d\x86\xfa\x0b\xa2\x7d\x0b\x27\xdf\xe1\x1e\x3e\xc0\xcd\x4e\xe7\x96\x25\x7e\x31\x7d\xfc\x54\xba\x82\xd9\xab\x13\xb0\x08\x8c\x1e\xa8\x80\x29\x40\xdf\xa7\x30\xc6\x20\x47\x9c\xd8\xbf\x7b\xbe\x51\xf3\xb7\x1c\x83\x82\x97\x77\xfa\x1a\xf6\x6e\xd7\xee\xe8\xd5\xc6\x28\x93\x3c\x16\xe9\x5e\x86\x1b\x67\xb6\xd3\x7a\x6e\x10\xed\xf4\xd1\xe4\x20\xfe\xd1\x17\x3d\x15\x2e\xcf\x39\xf2\xdd\x88\xf4\x99\xbe\xc6\xa7\x1b\x2b\x39\x56\x84\xd5\x30\x3b\x33\x3f\xb5\x83\x46\x58\x14\x53\x8c\x1b\xa5\x4f\xe5\x8e\xc5\xb2\x3e\x67\xc5\x83\x43\x31\x90\xcd\xbf\x21\x26\x44\x72\xc8\x99\x2f\xf0\x3d\xdd\x40\x85\x1d\x6b\x81\x71\xba\x11\x14\xd1\x79\x1d\x10\xd3\xcb\x5f\x5f\x5f\x0e\x20\x27\x26\xa8\xa6\x4c\x4c\xe8\xf8\xb9\xfe\x70\xfa\xca\x56\x8e\xeb\x02\xb6\x6f\xa6\x7b\x20\x90\x47\x3b\x20\x34\xe4\x77\x66\x41\x3c\x93\x05\x29\xb5\xe5\xd9\x4e\x66\x8c\xd2\x99\x7c\xc7\x40\xc1\x85\xb1\x02\x65\xf7\xc5\x8e\x6a\xad\xc2\x3a\x2b\xd9\x86\xf0\xfc\x40\x5c\x04\x02\x7e\x20\xae\xb6\x93\xcd\x33\x68\x5a\xb2\xde\x96\xb9\x2a\x8e\x02\xff\x56\xa3\x0c\xd4\x40\x7c\xc9\x06\xa1\x45\xbb\x66\x12\xe1\x96\x4e\x7b\x3b\xc3\x57\x34\x74\x3a\x11\x79\xbe\x08\xac\x9f\x86\xfc\xdc\x85\xe4\x30\xe0\xd5\xd2\x21\xc6\x0c\x4a\x2f\xce\xfc\x55\xba\xb0\x3d\x0d\x3a\xb3\x29\x6f\x0a\x67\xa9\xd2\xde\xbc\xa6\xb8\x08\x78\xcd\x0f\x86\xda\x81\x48\x79\x32\x94\x5f\xea\x1f\x74\x22\x2c\x4a\x7b\x32\x2a\x69\x57\xc2\x7a\x18\xe0\x45\x22\xa6\x31\x6e\xd0\xca\xb7\x03\x70\x65\xdc\x43\x76\x6b\x4f\x6e\x05\x33\xc4\xbf\x7f\xe3\xe5\xb3\xab\x9d\xe5\xf2\x64\xcd\x0c\xa5\x92\x8b\x61\x20\xb9\xcc\x5b\x60\xb6\x6c\xe4\x6e\x15\xfe\xbb\xe6\x7d\x5c\x97\x12\xce\x3d\x8b\x6b\x89\xf6\xf2\x5e\x0e\xdb\x68\xd0\xc3\x7b\xef\x02\x41\x93\x25\x4c\x5c\x60\x17\x03\x14\x9f\x8b\x65\x1f\x6c\x2b\xfc\x2a\xdf\x6a\xc7\xf3\xc5\xd4\xe6\x1c\xd8\x57\xb8\x62\xef\xad\xc4\x04\x30\x53\x17\x2c\x59\xd3\xe1\xe2\x68\xae\x8e\x47\xeb\x77\xd5\x63\xf9\xc3\x50\xe6\x71\x61\x5e\x0e\xf2\x39\xdf\xc8\xd9\x8b\x81\x13\x86\xc1\x86\x5a\x48\x18\x37\xff\x21\xd2\xd3\x5c\xda\x44\xc3\x2d\xa9\xde\x31\xcb\xda\xcd\x02\x58\xa8\xe2\xc1\x63\x06\xd2\x06\x49\xff\x92\x8b\x55\xf2\x41\x7c\x1a\x3e\x0e\xee\xbb\x36\xf3\x63\xe0\x46\x13\x9d\xff\xb9\x2f\x97\x12\xca\x21\x29\xcb\xc4\x1e\x44\x72\xa9\x62\x00\xfb\xb8\x6d\x96\x8f\xef\x87\x17\xda\xe9\xcd\x77\x0a\x60\xb7\xdd\xfd\x49\xef\x39\xd4\x76\xd8\x9d\x7b\xbf\xeb\x15\x89\xf2\x1d\x96\x2b\x66\x0f\x29\xba\xfd\xa7\xe0\xba\xbc\xe1\xb5\x7d\xc1\xed\x84\x75\xf5\x2d\x05\xb9\x3b\x3c\xb4\x7f\xf6\x3d\xc0\x0b\x8e\x4c\x33\x42\xe4\xec\xf4\xf0\x41\x14\x45\x15\x4e\x5e\xf3\x49\x1c\x8f\x27\xfa\xb8\x1b\x51\x51\x51\x23\x44\xe9\xb5\x70\x3f\xce\xfd\xc5\xb9\x38\x84\x27\x09\x65\xab\xf7\x62\xc9\x6b\x33\x3f\xba\x4b\x73\x93\x0f\x5d\x5d\x6f\x3e\x26\xd9\x8a\xfb\x44\xbf\x09\x6e\xa5\x16\x7f\x5d\xf8\xa4\x51\x30\x91\x4f\x0e\xfd\xc0\x05\xff\x40\xab\x54\x62\x20\xb8\x9c\xed\x87\x2d\x22\xe4\xbd\x72\x44\xac\x11\xc1\xd7\x99\xe3\x33\xc7\x67\x9e\x1d\xf0\xb5\xc7\xd7\xbe\x28\x3e\x49\x66\x70\x18\xca\x4e\xab\xbe\x35\x62\x0e\xf8\xe6\xdb\xc6\xf8\x53\xea\xd1\xbb\x07\xed\x03\x57\xc2\xc9\xf3\xe8\x88\xb7\x0f\x8a\x97\x87\x83\x9e\xfa\x37\x84\xee\xf3\xfe\xd8\x41\xa3\x10\xa2\x18\xae\x5e\xa3\x24\x78\x1f\x6c\x82\xd6\xb2\x5a\xa0\x84\x29\x96\xdb\xa1\x91\x12\xa4\xb8\x26\xdb\xcf\x7d\xbb\x34\x84\x58\xdf\x2a\x0d\x11\x7a\xf3\xa6\xde\xf1\xf5\x50\x1f\xdd\x1d\xf1\xfe\xce\xe1\x73\x4a\xd3\x6b\x32\x70\x67\x0f\x9f\xe0\xc3\x83\xde\x78\x24\x82\xcf\xb7\xcd\xdc\xe3\xa4\x65\xb5\xeb\xdd\xfa\x49\xaf\x52\x78\xd0\x29\x98\xbf\x6b\x43\x9c\x36\xf9\x02\x52\xb9\x65\x99\x5f\xfd\x5e\x40\x06\x60\x5d\xc6\xcf\x2d\x3f\xfc\xd7\x7f\x05\x38\x05\xff\xed\xdf\xd2\x8b\x5f\xbe\x4f\x8b\xcf\x7c\x29\x0d\xbf\x98\xf7\xb9\xdc\xf6\x5b\x83\xa2\xcf\xe7\x11\x20\x9f\x6a\x83\xfb\x9d\x9a\xb2\xf5\xe1\x15\xfe\xfa\xbf\x01\x00\x00\xff\xff\x67\xf5\xad\x0c\x6c\x92\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\x7b\x73\xdb\x48\x92\xe7\xff\xf8\x14\x68\x6f\xf8\xec\x8e\x90\xe9\xe8\x9e\xb8\x47\x74\xd8\xee\x53\x4b\xed\xc7\xac\x65\x69\x2d\xb9\xe7\xe6\x1c\x0e\x36\x48\x40\x24\x46\x24\xc0\xc6\x43\xb4\x66\x63\x23\xee\x6b\xdc\xd7\xbb\x4f\x72\x99\xbf\xcc\xac\x07\x00\xca\xf6\xec\xc6\xdd\x3f\x64\xa1\x2a\xeb\x95\x95\x95\x95\x99\x95\x55\x95\xed\x76\xf3\xbc\x68\x97\xe9\xf3\xf4\x38\xdd\x65\x65\xb5\x29\xda\x36\x6d\x8b\xcd\xf5\x93\x75\xdd\x76\x45\x9e\xbe\x2a\x3b\xfa\x6e\x6e\xcb\x65\x91\x24\xeb\x7a\x5b\x10\xe8\x6b\xfa\x4b\xf2\xac\x5d\x2f\xea\xac\xc9\x29\xe2\xd4\xc2\x49\xf1\x79\xb7\xa9\x1b\x06\xfa\x55\x42\xc9\xba\xd8\xec\x38\x0f\xfd\x25\x6d\xb9\xaa\xe6\x65\x45\x9f\x97\x14\x4a\xdf\x54\x49\x5b\x2f\xcb\x6c\x33\x0f\x12\x10\x61\xe9\x3f\xa5\x3f\x56\x79\x7a\xd9\x15\xbb\xf4\x59\xbb\xcd\x36\x9b\x17\x59\x8b\x2c\x5d\x91\x66\xcb\x65\xdd\x57\xdd\xb3\xa7\x92\x20\x85\xd7\x7d\x67\xa5\x9f\xf7\x9d\xc4\xf5\x3b\x8b\xfa\xb0\x4b\x9a\x62\x55\x52\xc7\x1a\x8a\x7a\xaf\xc1\x64\x5f\x2c\xda\xb2\xe3\x46\xff\x45\x42\xc9\x6d\xd1\xb4\x65\xcd\xed\xf9\x4d\x42\xc9\x2e\x5b\x31\xc0\x05\xfd\x25\x5d\xb1\xdd\x6d\x32\x64\xb8\xd2\x60\xb2\xc9\xaa\x55\x2f\x30\x6f\x35\x98\x2c\x9b\x82\x92\xe6\x55\xb1\xa7\xd8\x13\x7c\xa4\xf4\x31\x9b\xcd\x92\x9e\x70\x3a\xdf\x35\xf5\x75\xb9\x29\xe6\x59\x95\xcf\xb7\x82\xb5\x0f\x14\x9f\x6a\x7c\x4a\xf1\x29\xc7\xa3\x1b\x45\x4e\x08\x9a\x67\xad\xf6\x85\x86\x86\xf0\x95\xb5\x09\x8a\xaa\xb2\xad\xe5\xe6\x60\x52\x6c\xb3\x72\xc3\x83\xf0\x84\x03\xd4\xf8\xb6\xdd\xd7\x18\xaa\x0b\x0d\x12\x22\xe6\xdd\xdd\xae\x00\x1e\x9e\x5c\x51\x28\x59\x66\xbb\x6e\xb9\xce\xb8\xad\x12\x4a\x08\x68\x57\x13\x42\xea\xe6\x0e\x70\xf6\x91\xd4\xcd\x2a\xab\xca\xbf\x67\x9d\x20\xe9\x3c\xf8\x4c\xb6\x65\xd3\xd4\x8c\xdf\x33\x04\x12\xea\xf1\x9c\xcb\xa1\x98\x77\x84\x89\xa0\x14\x4e\xd9\x96\xab\x46\x50\xc9\x89\x67\xf8\xe2\x52\x38\xed\xba\x6e\x6e\x34\xe1\x25\x07\x07\x59\xa9\x11\x9a\x1a\xd7\x9f\x55\x84\x7c\x4d\x3d\xc3\x47\x04\xd0\x26\x59\xbe\x25\x54\xee\xb2\xaa\x60\x1c\x1d\xf3\x17\xe1\x85\xbe\x12\xa5\xa9\x79\x5b\x74\x5d\x59\xad\x18\xd9\xc7\x12\x95\x5e\x6a\x54\x12\xa4\xb9\xb8\xbb\xba\x77\xc3\x49\xf1\x7f\xa5\xcf\xf4\x42\x3e\x25\x2d\xc8\x84\x44\x97\x93\x7b\xd2\xce\xaf\x8b\x22\x97\xbe\xb4\xe9\x4b\x0a\x27\xbb\x7e\xb3\x21\xac\xfd\xd1\x17\x6d\xc7\x99\x2e\xe8\x9b\xfa\x2f\xdf\x49\xd9\xb6\x14\xa0\xe8\x37\x08\x24\x34\x74\xd5\x12\x9d\x39\x41\x20\x49\x3e\xb6\x45\xd6\x2c\xd7\x9f\x12\xf9\x47\x5b\x39\xc0\xb4\x77\x68\x50\x99\x90\x94\x88\xa4\x06\xab\x20\x59\xd6\x39\x7f\x9c\xd0\x1f\x15\x5d\x56\x6d\x47\x33\xee\x53\xa2\x01\x06\x93\x90\x0c\x40\x57\x76\xc0\x82\x46\x62\xfa\xb6\x3c\x82\xe9\xcb\xb2\x69\xbb\x27\x5d\x49\xc4\xfa\xbe\xaf\x12\xee\x1f\xcd\xb6\x79\xbe\x30\x26\xf4\xaa\x26\x14\x21\xba\xa1\xfe\x9d\xdd\x5d\xfe\xcb\xdb\xa3\xf4\x82\x38\xd1\xaa\x29\x28\x9c\x52\x19\xf4\x47\x79\xfe\x34\x4b\x28\x97\xd5\x74\x9a\x75\xd9\x22\x6b\x0b\x8f\x56\x4e\x14\xea\x76\x69\xa0\x71\xe6\x6a\xe0\x60\x6d\x17\xf5\x77\x6a\x86\x50\x19\x3a\xaf\x5c\x19\xef\x78\x72\x51\x3c\x33\x35\x64\xbe\xd8\x14\x1c\x4f\x45\xa5\x6f\xde\xbd\x3b\x3f\xfd\x25\x2d\xaa\x55\x59\x15\xe9\xbe\xec\xd6\x69\xdf\x5d\xff\xb7\xf9\xaa\xa8\x8a\x86\x78\xdc\xb2\x4c\x69\x4e\x35\x44\x09\x29\x11\xb6\x74\x6e\x96\xb4\xed\x86\xe6\x3e\xd0\x7b\x79\xf9\x36\x3d\x63\x14\xef\xb2\x6e\x8d\x86\x74\xeb\xa4\xfd\x63\xc3\x28\x72\x15\x5e\xad\x8b\x14\x54\x06\xa0\xfa\xda\xf0\x91\xe6\xda\xc6\x59\x52\x34\xcd\x9c\xd8\x52\x77\x37\xd7\xcc\x5a\xde\x10\x52\x8a\x20\xd2\xa9\xea\x2e\x5d\x14\x29\xf2\xcc\x92\xc4\x1a\x6c\xd8\x3d\xde\xed\x36\xe5\x52\xe6\xfa\x2b\x49\xf3\x88\xe6\x15\x44\xb1\x14\xc2\x01\x51\x96\x16\xa0\x8b\xd8\x33\xcf\x87\x34\x62\x20\xc8\xbf\x2e\x88\x01\xae\xfb\x95\xb0\xbd\x4d\xdd\xe7\xdf\x81\x52\xad\xf5\x9e\x50\xd3\xf7\x35\x35\x18\xd8\x71\x00\xbe\x8a\x63\xa2\x38\x5e\xb4\x9a\x62\x5b\x13\x5f\x71\xc4\x5e\x12\x41\xed\x4b\x4a\xa4\x9e\xb6\xd9\x2d\xcd\xb7\xae\x4e\xbb\x75\xd9\xa6\x39\x11\xdb\x92\x0b\xa6\xa9\xd1\xd3\x72\x21\x64\x41\x04\x2a\xa4\x61\x71\xf1\x18\x00\x6a\xdb\x13\x35\xad\xa9\x30\x5e\x8c\x78\xe5\xa4\x22\xa7\xda\x89\x2e\x51\x39\xa0\x6f\xa2\xdc\x9a\xb8\x32\xf3\xcd\x53\x04\xf4\x3b\x2c\x9f\x5a\x95\x5d\x5f\x53\xab\x5a\xa2\x8a\xd7\xe9\x72\x53\x13\x49\x7d\x78\xff\x96\x32\xaf\xbb\x6e\x37\xdf\xd5\x0d\xc8\xf8\xea\xea\x82\xa6\x47\xd3\xf9\xd8\x00\xd7\x0c\x53\xf5\xdb\x05\x7d\xed\xd7\x25\x31\x81\x2c\x18\x20\xa0\x62\xc3\xeb\x5f\x95\xd6\xd5\x0c\x63\xd5\x37\x9b\xc1\x30\x52\x95\x96\x72\xa0\x79\xdc\x84\xa7\xfc\x73\xe9\x5b\x89\xee\xb6\x24\x24\xec\x31\xa8\xd4\xd5\x02\xeb\x10\xd1\x56\xbd\xe3\x72\x03\xe2\x3a\xd7\x08\x4f\x51\x58\xbb\x5c\xba\xac\x60\x94\x0a\x11\x24\xe0\xc2\x5b\xea\xb0\xce\xe6\xcb\x33\x42\x03\xa6\x34\x62\xaf\x9b\x7a\x4b\xb1\x2f\xe9\xcf\x47\xf8\xe6\x9f\x71\x79\x80\xc9\xf2\x9c\xd8\x4c\x7b\x94\xbe\x7f\x79\x92\xfe\xe7\x3f\xfd\xf8\xe3\x2c\x7d\xd3\xf1\x84\x60\x1a\xf9\x1b\x8f\x2d\x05\x65\x29\x75\xa0\x34\x73\x3b\x1a\xfe\x07\x4c\xe0\x0f\xd2\x67\x48\xfd\xef\xc5\xe7\x8c\xc4\x80\x62\xb6\xac\xb7\x2f\x78\x72\x6f\xb3\x6e\x96\x70\x0a\x51\x8d\x92\xd3\x65\x51\xe5\x14\xd0\x05\x59\xd3\x02\xae\xa3\xe9\xc1\xf2\x2c\xc2\xc9\x7c\x59\x57\xd7\x65\xc3\x1d\xfa\xb5\xca\x16\x84\x13\x13\x5b\x88\x1d\x23\xc5\x56\x3d\x42\x1a\x4d\xe4\xf2\xfa\xce\x83\xa2\xab\xef\x38\x52\x07\x34\x61\x51\xae\xe0\xe5\x08\xe8\x74\x58\xbe\x44\x34\xc6\xed\x9c\xba\xd7\x18\xbe\x5b\x8f\xf0\xfa\xfa\x7a\x43\x8c\xcd\x98\x95\xd6\x70\x2e\xb1\xc2\xb7\x42\x10\x22\xc6\x1d\x04\xaf\xd3\xb2\x05\xe4\xc9\xe9\xbb\xb4\xb8\x25\x6a\x23\x72\xa0\x95\x32\xef\x97\xa0\x30\x86\x3d\x4a\x79\x99\x20\xfc\x12\x67\x58\x0a\x7b\x0b\xe6\x2a\x37\x8d\x19\xc2\x92\x80\x68\x8a\xe6\x52\xde\x5c\x10\xd4\x98\x08\x62\xd5\x5c\xb2\xec\x1a\xa6\x4d\x66\x18\xb5\x0e\xa3\xd4\x0e\xf3\xd2\x70\x57\x9b\xbb\x14\xf2\x02\xe8\x42\x24\x3a\x13\x3d\xdb\x59\xa2\x6b\x95\x09\xb0\xf3\xdb\x12\xc2\x9e\x1b\x2a\xa4\x9a\x34\xcb\xec\xe1\x37\x06\x60\x29\xb2\x9d\xcc\xeb\x1a\x76\xce\x15\xb7\x4e\xd0\xe3\xf6\xb5\x68\x02\x6a\x60\x69\x94\x88\xf1\xb6\x04\xa7\x51\x64\xa1\xad\x84\x31\x54\x4d\x55\xb5\x45\x81\x12\x28\xff\x53\x2a\x13\x79\x66\x2a\xfc\xa8\x3c\x62\xeb\x2e\xc9\x24\x69\x5e\xa7\xbc\x10\x80\x9d\x51\x6e\xeb\x6a\xa5\xdd\xd7\x3e\xa7\x4d\xb9\x5a\x13\x5f\xa9\xf7\x47\x82\xb4\xfd\xba\x2e\x98\x76\xde\x9c\x3e\xff\x41\xda\xb1\x62\xe6\xe6\x32\x31\x5b\xcc\xfa\xae\x66\x3a\xd5\x21\x94\x26\xb8\xe5\x05\x90\x23\x31\x4b\x80\x86\x82\xad\x89\x6e\xe3\xd5\x5a\xe7\x49\x98\xa6\x13\xc4\xc3\x48\xee\x81\x70\xac\x52\xcc\x7c\x55\x43\x3c\x33\xa9\x85\x59\x35\x49\xfa\x6d\x37\x5f\x95\xdd\xfc\x9a\x27\x2c\x97\xf9\x92\xf3\xf2\xca\x41\x29\xe9\x23\x4a\x7a\x94\xd2\xac\x27\x99\x33\xff\x29\x7d\x78\xab\xcb\xf5\x9f\x78\x26\xce\xb3\x5b\x82\xc5\x60\xa8\xd0\xd7\x14\x22\x2d\x98\x76\x91\xd7\x44\xe7\x8c\xf3\xb6\xdf\x81\xa3\xeb\x0a\x7d\x94\xee\x04\x30\xaf\xf7\xd5\xa6\xce\x72\xb0\x1c\x9a\x5d\x25\x74\xa3\x45\x59\x65\xb4\xba\x58\x29\x60\x65\x0f\x89\x1a\xde\x9d\x5f\x01\x70\x55\x2f\xfa\x72\x93\x1b\xc0\x8c\x7a\x78\x9b\x6d\xca\x9c\xe5\x2c\x1d\xf7\x50\xa6\xb1\xa8\x52\xda\xb2\xac\x1b\x5e\x0e\xd1\x1b\xcb\x78\x60\x1d\x6e\x78\x7d\x43\x34\xe5\x55\x58\xe4\x73\x4b\x26\xa3\x81\x06\x1e\x02\x28\x2f\xa8\xa0\x98\xb2\xad\x1e\x75\x68\xe9\xb2\xa7\xba\x68\xd0\x39\x9a\x32\xb6\xe9\x93\x17\xf4\x9b\xf0\xf2\x2c\x7c\x6f\x35\x46\x3c\x27\xa6\x92\xd8\xcb\x2c\x8d\x9a\x1a\x91\xb7\xa3\x2e\x23\xde\xa0\xaf\x61\x7b\x8d\x04\xda\x5e\xe8\x95\x15\xc1\x0d\x0d\x6b\xf1\x1d\x05\x1e\xd1\x04\x5e\x6d\x30\x08\x19\xa4\x17\x12\xe3\x6a\xc2\x1b\x13\xc8\x91\x4c\x97\x6b\xea\x1a\xf3\xce\x2e\xbb\xa1\xb6\x65\x0d\x09\x61\xc9\x47\x56\x96\x3f\x25\xbd\x08\x40\xf5\x26\x77\xc2\x26\x68\xba\x6e\x86\xca\x99\x07\x72\xf4\xda\x92\x14\xb9\x5c\xcf\x9d\xaa\xcd\x48\xe9\x8a\xcf\x58\xf3\x90\xe4\x35\x6f\x26\x76\x4e\x4a\xb6\x77\x18\x2e\xee\xc4\xd9\x9d\x1f\x2d\x12\x7f\x68\x8a\x90\x88\xbe\xa8\x19\x6b\xb7\x85\x83\x3a\x09\x63\xe3\x0c\x54\x16\x09\x6a\x5a\x54\xac\x43\x51\x92\x28\x7a\x9a\x2a\xca\x1e\xa9\x22\x1f\xd5\x04\xf0\x29\xb1\x0a\xa2\x22\x93\x8f\xc4\x0c\x48\x2f\xf1\xba\xf1\xdc\x06\xc7\xe9\xc8\xac\xd2\x29\x3f\xf0\xeb\xe0\xba\xd8\xf1\x92\xb9\x6d\x31\xaa\x1b\x82\xcc\xef\x54\xf6\x72\xe3\xfb\xb3\x70\x5a\x1a\x70\xe2\x4f\xdf\x99\x71\xe1\x1b\x8b\xf8\xa5\xa4\x91\x44\xfe\x78\xe5\x10\x85\x9d\x64\x64\x58\x29\x9a\xe6\xee\x28\x8d\xd6\xa0\x35\xe9\xe6\x8b\x82\x16\x38\xcd\x96\xcf\x4c\x3b\xe0\x51\xcb\x96\x42\xf2\x30\x34\x80\x48\x25\x67\xdd\x0c\x97\x34\x6e\xa1\x30\x28\xad\xc5\x2d\xf8\x58\xce\xc3\x55\x7f\xa2\x4e\x42\xd8\xb6\x60\x99\x6f\xbe\x15\xdd\x5e\xbe\xd2\xb3\x22\x21\xc1\x64\x45\xf3\xd1\xe8\xed\x39\xab\x64\x2b\x48\xa8\x4a\x6e\x0c\x50\x74\x21\x07\x55\x08\x8b\xf9\xd9\x0c\x2a\x34\xb1\xf7\xd0\x57\x69\x6a\x8e\xd0\x4f\x6b\x0d\x25\xcf\x8c\x23\xcb\x82\x0b\xf9\xa4\xa5\xc9\xee\x91\x78\xcc\xc6\x90\x34\x84\x52\x39\xd1\x77\x8b\x33\xf0\xa4\x7f\xb6\x78\xf1\xb0\x7d\xf6\x74\xf1\xc2\xb1\xc6\xe5\xba\x58\xde\x88\x2e\x51\x56\x8b\xfa\x33\x14\x2e\x1a\x78\xc6\x71\xc5\x53\xe4\x61\x9e\xae\x29\x15\x32\x39\x4d\x65\xca\x46\x88\xe7\xd4\x68\xd0\xa8\x31\x3c\xe3\x67\x66\x9a\x72\x8b\x83\x11\x12\xe5\x46\x25\xd2\xb2\x84\x86\x91\xe7\x0e\x74\x7a\x4f\xb7\xc7\x1c\xcb\x94\x0b\x36\xef\x49\x17\xfd\xdd\x94\xdb\xb2\x1b\x91\x0e\xf3\x91\x4c\x49\x50\xf5\x7c\xc3\x25\xca\x02\x36\xd0\x16\xe2\xc6\x54\x0c\xad\x9b\x46\x4e\xfb\x8c\xd4\x9b\x3f\xa5\x44\x42\x3d\xad\x42\xdc\x27\x6a\x26\xb1\xe3\x8c\x17\x5e\x52\x10\xb2\x76\xde\x57\x8a\xd6\x22\x37\x62\x7a\x5d\x62\x91\xe0\x7a\x8d\xe4\x03\x28\xc3\xbc\xca\xb9\xe9\x63\x87\xf1\xef\x49\x28\xbe\x76\xd9\x98\x73\x73\x83\x4a\x96\xc9\xb2\xc9\xc1\x23\xce\x56\x15\xa2\x5e\x01\x03\x0c\xc7\x03\x4d\xca\x81\x1f\x3d\xd2\x30\x6e\x28\x06\x03\xb2\xe8\xbb\xae\x66\x99\x7b\xc3\x54\x23\x79\xac\xd5\x27\x00\x84\x1a\xe1\xcb\xc3\x80\x84\x78\x92\xb1\x29\x4c\x06\x9e\x7b\x23\xa1\x6a\x2b\x83\xde\xe9\x52\xe7\xc0\x72\x51\xd7\xb3\xea\xce\x48\x99\x08\x82\x5b\xc1\x15\x76\xd3\x6d\x79\xdc\x14\xdf\xfb\xd6\xb8\x39\x83\x1c\xd6\x22\xc9\x1e\xcc\xa7\xf7\x48\x15\xf3\x90\xcd\x3a\x5b\xb9\xd4\xc8\xe2\xe9\xa3\x89\xd1\x8b\x74\x9e\x19\xc4\x60\x49\x6c\xcc\x81\x68\xea\x05\x72\xcf\x06\x75\x79\x75\x67\x8c\xc1\x2e\x6e\xb2\x5f\x80\xba\xba\x9e\xb7\x6b\x51\x2d\xad\x79\xe9\xa6\xa8\x56\x91\x99\x00\x26\x62\x10\xdd\x7f\xe1\x65\x8e\x04\xf8\x6c\xf3\x29\xb9\x83\x3d\xea\xaf\xc4\xe1\x2b\x58\xfa\xea\x84\x12\x44\x19\x39\x43\x80\x40\x59\x33\xfa\x94\xf0\x12\xf8\x6e\x20\xd6\xf1\x12\xa1\x71\x81\x7c\x81\xa4\x5f\x23\x69\xcd\x86\x30\xb9\x98\x10\x01\xdf\x17\xde\xa2\x89\x90\xeb\x22\x29\xd1\x57\xa6\xea\x90\x3e\x7d\x53\x68\xe1\xaf\x49\x6d\x6e\x3f\x40\xed\x15\x1d\x96\x15\xde\x8b\xec\x8e\x85\x2e\x89\xd6\x0f\x24\x5c\x15\xd9\x56\x5b\xc9\x41\x29\xe2\x98\x96\x33\x8d\xe4\x20\xad\x72\x81\x55\x23\x81\xf8\x61\x5d\x10\x59\x44\x97\x7d\x27\xfe\x17\x6a\x2e\xfd\x7d\x64\x8a\xf9\x3d\xc9\x36\xbb\x75\x86\xf5\x3f\x00\x83\xd5\x81\x80\x30\xf0\x29\x40\x40\x0b\xfd\xb6\x68\xca\x25\x07\x39\xc3\xe3\x27\xf3\xef\x61\x70\xa2\x89\x42\x82\x60\x5c\x58\x4e\x93\xe4\x1f\x2a\x90\xc3\x2c\x24\x86\xe5\xb6\xe5\xdf\xad\x17\x51\x71\x1c\x4f\x3c\x87\x20\x20\x92\x79\x28\x07\x84\x85\x91\xc5\xb3\x2e\x65\xbe\xd0\xb1\x08\x18\x15\xbd\xcd\x3e\x7f\x29\xe3\xb6\x9e\xc8\x27\xac\xc0\x67\xb2\x09\xaf\x5d\x8c\xd9\x01\xc1\xb3\x7d\xe3\x20\x34\x0d\x3d\x83\x54\x37\xb4\xaa\x55\x0e\xec\x83\x7c\xa7\xf8\xfe\xc9\x8c\xe7\xb4\x84\xa8\x00\x9d\x3a\x33\x3a\x2d\xce\x39\xf3\x4d\x08\xc2\x33\x3f\xdd\x42\xe1\xd8\x91\x33\x8b\x91\xa6\xf2\x3b\xc6\x41\x12\xa5\xe8\x09\x44\x52\x33\x6f\xf1\x9f\xf3\x1a\x39\x67\xa1\xb3\x0a\x45\x4b\xb7\x7a\xda\xfa\x02\x08\xb1\xfb\xce\xc7\xf9\x06\x13\xee\x60\x76\x12\x05\x26\x72\x9f\x8f\x0d\x79\x07\xf2\x77\x34\x65\x26\x0a\x70\x33\xe9\x60\x46\x19\x4c\x64\xa2\x9e\xe7\x23\x5e\x30\xce\xc8\x60\xa4\xf6\x6c\x36\xc5\x8a\x4d\x4d\x56\x71\x54\x9b\x92\x10\x2d\x06\x02\x16\x12\x90\xc7\xb0\x1b\xac\x70\x5c\x43\x21\xde\x8d\x51\xac\x3e\x51\xab\x49\x1c\xa7\x20\xe7\x0c\x94\x28\x6d\x86\xae\xe4\x5b\xd6\x17\xda\x9e\x59\x33\xeb\x16\x22\x9d\xc4\xa3\xc1\x0b\x2f\x8a\x2a\x50\xc5\xe1\xe2\x89\x16\x59\xe1\xfa\x52\xf9\x00\xfb\xc6\xa2\x43\x75\x7b\x5c\xb0\x16\xee\x80\x0e\x15\xeb\x14\xc2\xe2\x73\x09\xb3\xdd\xab\x92\xcd\x41\x50\x09\x9d\x26\x8c\xb4\x59\xb2\x21\x66\xc0\xaa\x87\xf4\x4a\xe4\xd8\xfa\x96\x35\x37\xae\x8f\x53\x25\x9f\x98\xf1\xb4\x53\x3c\xce\xaa\x5c\x92\x32\x57\xef\x8b\xfc\x88\x96\x78\xce\x41\xed\x04\xdb\xc8\x36\xfb\xec\xae\x85\x8d\xc4\x38\x0e\x9b\x2c\x25\x3b\xb3\x13\x12\x00\x56\x68\x55\x68\x9f\xa6\x19\x67\x98\x68\x89\x77\xf2\xe2\xe1\x96\xe9\x3d\xd4\x43\x70\x0b\xb5\xba\x90\xd6\xcd\xcb\x1e\x96\x58\x5d\x6b\x58\xb5\x65\x45\x90\x65\x7c\x49\x0e\x0a\xc2\x96\x87\x72\xfe\x89\xbc\x47\x2c\x1e\x51\x35\x2c\xac\x10\x3f\x16\x5c\x93\xfc\x47\x98\x45\x93\x02\x5b\x41\x4f\xe5\x3f\x11\xb9\xb8\x24\x1c\xb2\x9e\xe5\xd5\x67\x5e\x9b\x68\x54\xcc\xb0\x2b\xf1\x50\x7e\x93\xb6\xa3\x29\xc0\x98\xb6\x6d\xba\xbf\x8a\x7c\xa5\x2a\x33\xa7\x62\x8a\x01\x4d\xed\xba\xdc\xa5\x35\x8c\x85\x21\x0a\x3d\xd9\x06\x22\x26\x61\x23\x2f\x20\x77\xb3\xd5\xb4\xc9\xaa\xf6\xba\x80\xf9\x74\x9b\x5e\xf3\x4e\xd0\x4c\xab\x66\x89\x55\xb6\xeb\x0e\xd4\x2c\x3a\x0c\xaa\x0e\x57\x0b\x8c\x5d\x30\x50\x71\xd5\x04\x73\x8b\x9a\xb5\x0d\xc0\xaa\x2f\xa9\xb5\x36\x30\x99\x8d\x50\x00\xa9\x31\xda\xa4\xb0\xd6\xdc\x16\x21\x22\xae\xff\xd1\x9e\x07\x58\x57\x0b\xb1\x98\xd5\xe3\x61\x92\x4a\x61\xad\xc0\x1e\xd3\xe2\x2e\xee\x3d\x67\x75\x14\xc0\x3b\x1e\xb7\x85\xd6\xc2\x13\x83\xe7\xca\xa0\x40\x58\x29\xbc\xae\x90\x74\x19\x54\xbe\x05\x35\x71\xb9\x8e\x66\xe7\x15\x52\x52\x49\x19\x4d\xd0\xe4\x23\x57\x4d\x6a\xfc\x3a\xab\x56\x05\x9b\xba\xa8\x24\x5e\xf2\xf0\xad\x12\xba\x44\x52\x83\x57\x8d\x84\xd9\x40\x6e\x59\x96\x34\x21\xeb\xed\xbd\x39\xcb\xca\x0c\x36\x6d\xf2\xb7\x9a\x64\x08\x58\x7a\xff\x4c\x21\x96\x7e\xab\x24\xda\xdb\x19\xd8\x19\xa0\x1e\x94\xdd\x1d\x36\x9d\x16\x24\x03\x8b\x92\x46\x31\xa4\xe6\x82\x3b\xc0\x72\xf1\xd2\xc2\x34\x1e\x19\x33\x3d\x9e\xda\x12\x52\x38\x31\x23\xbd\xb4\x70\xc2\x5a\xf2\x76\x86\xc5\x81\x85\x69\x18\xa7\x83\x25\xe1\xd1\xc3\xf6\x11\x0f\x98\xa5\xcd\x02\xf8\x5d\xd6\x11\x5b\xac\x44\x45\x11\x0e\x15\x66\xd5\x64\x57\x04\xb8\x8a\x80\xcd\xb0\xa3\x2b\xa8\xf8\x94\xf8\x8d\x66\xdb\x63\x9e\x32\x88\x2a\x8b\x69\x55\xe6\xfd\x67\x0a\xaa\x45\x24\x75\x6e\x16\xaa\xaa\x62\x1b\xcf\x36\x7d\xda\x78\x0f\xa8\x4d\xd4\x04\x14\xdb\x7f\x94\xbc\x9f\xa7\xa7\x12\x30\xa5\xb7\x2f\xd1\xa7\x32\x4f\x92\x1d\xf0\x1e\x6c\x8b\xeb\x40\xb8\x46\xab\xfb\x83\xb7\x41\x37\xc3\x95\x9d\xb0\x20\xa5\x80\x70\x6d\x4b\x00\x52\x00\xef\xa1\x06\x0a\x1b\x1b\x57\xa1\xc9\x55\xc1\x76\x07\xe9\xbb\x9c\x8f\xc1\xf6\xc5\x22\x65\x73\x27\x11\x0e\xe9\x45\xda\xd1\x6d\x46\x2a\xd5\x6d\x99\x39\xcb\x0c\x8d\x16\x6f\xbc\xeb\x2a\xfa\x92\x37\xdd\xb1\x93\x39\xf6\x10\xe1\xfd\x08\xdd\x7a\x78\xab\xc1\xa4\xdf\xe5\x6c\xd3\xf2\x1d\xfe\x80\x08\xd7\xe1\x38\x3d\xb0\x36\xa2\xeb\x96\xcd\x49\x33\x02\x9e\xa7\x0a\xc7\x2d\xbb\x9b\xd9\xf4\x99\xf0\xfa\xd0\x29\x94\x0f\x41\x42\x23\xbf\x24\xa9\xd2\x6a\x00\x33\xe1\x3d\x40\xaf\xec\xeb\x01\x21\xb4\x56\xa6\xeb\x7a\x9f\x6e\xca\xea\xa6\x55\xfc\x3a\x7b\x88\xe9\xc9\xe9\x29\x22\x08\x58\x2c\x35\x2c\x56\x95\x55\x5f\xfc\x9c\x58\x48\x0c\xf1\x08\x8e\xfd\x14\x0a\x59\x15\x87\xcc\x40\xf7\x4f\x4e\x10\x9d\x1e\x23\x7a\x12\xd6\xeb\xb9\x9a\x05\x3b\xba\xcc\x7e\x75\x63\xe7\xba\x60\x01\x1b\xec\xf0\x95\x72\x21\xc2\x4f\x5d\xb7\x6a\x7b\xf4\xec\x87\xe3\x60\xa8\x50\x28\x1d\x2d\x07\xa1\x83\x29\x8d\xb1\x7d\x0a\x82\x62\xf5\x90\x84\x25\x6d\x0f\xe6\xf6\xbc\xdc\x8a\x2b\xd0\x07\x4d\x95\x2d\x7b\xa7\x57\x20\x79\x46\x9a\xf2\xa0\x33\xe1\x8e\xc1\x3b\xc2\xa5\x74\xdf\xf8\xa8\x25\x1e\x99\xb8\x20\x08\xc1\x62\x1f\x35\x76\x48\x59\x5a\x80\x19\xbf\xbf\x40\x60\x46\x3e\xe1\x46\x8a\xf0\x66\xc7\x5a\xea\x4d\x24\x14\x9e\xa8\x19\xdf\xa5\x33\x66\x83\xf4\x77\xd8\xf2\x1a\x5a\x1b\x22\x4d\x49\x4b\x38\x28\x4d\x0f\xda\x34\x9a\x3b\x96\x6f\x4f\x7d\x0b\xbb\x63\x04\x3f\x13\xea\xcf\x60\x19\x96\x5d\xb1\xbe\x15\x79\x92\xab\xc2\x96\x9a\x14\x41\x08\x80\xc2\xd1\x7a\x3d\xe3\x58\xb8\x11\x1b\xc4\xc5\xb7\xc8\x01\xa8\x7b\x51\xac\x4f\x16\xb6\x87\x1d\x32\xb6\x5d\x43\x83\x4e\x0b\xef\xc0\x12\x35\x62\x69\x11\xfb\x02\xf7\xaa\xb1\x21\xeb\xb9\x16\x69\x90\x5a\x16\xf3\x7f\x84\x2c\xc6\x5b\x2f\x0b\xb6\x6e\x59\xa5\xca\xac\x5d\xaa\xb0\xec\x84\xda\x80\x39\x50\x38\xf3\x44\x0e\x4c\xc4\x4d\x04\x58\x08\x62\x96\x50\x8b\x9e\x47\x76\x5e\x58\x6c\xff\xbf\xd9\x76\xa3\x0a\x9d\x6d\xd7\x37\x75\x40\x36\xdc\xc6\xc1\x8a\x33\x22\x20\x4a\xc0\xfa\xab\x43\x1f\xac\xaa\x3a\xf8\x6e\x71\xe5\x6a\x44\xa6\x67\x34\x51\x14\x96\x60\x25\x02\x70\x58\x16\xf0\xe0\x74\x01\xc7\x1d\x11\xf0\xdb\x91\x19\x32\xe6\xaf\xc7\xd0\x60\x08\x2b\x02\xcb\xf2\x00\x2f\x68\x22\xfd\xa9\x46\xb4\x65\x44\xc8\xb6\xab\xf3\x43\xb9\x93\x1d\x47\x2f\x12\x1d\xa9\xda\xb0\x2e\x57\x6b\xea\x57\xb9\xe5\x2d\x47\x70\x6d\xdb\xd7\xf2\x5a\x1d\x7f\xd1\xc4\xab\x57\x15\xdb\x70\xb8\x86\x19\x3a\xe3\xb8\xed\xb3\xb6\x6b\xea\x6a\xf5\xe2\xb4\x66\x75\x8b\x2d\x21\xbc\x54\xfc\xfc\xec\xa9\xc6\x13\xcb\xe0\x31\x64\x77\xcc\x57\x65\xf7\xba\x5f\x3c\x6a\xd3\x15\xc9\x06\x58\x40\x9e\x65\xe9\xba\x29\xae\x9f\x3f\x78\xd8\x3e\x78\xa1\xfb\xcc\xe2\x15\xb4\xaf\x1c\x5a\x9e\x3d\xcd\x5e\xb0\xf4\xdc\xd6\x1b\x12\x6a\xe3\x2c\xf5\x76\x2b\xe3\x4b\xec\x6f\x2b\x90\x68\x3f\xb6\xa6\x8b\x0a\x98\x2b\x1a\xc5\x0f\x15\x38\x73\xb4\xee\xc7\x47\x87\xcd\xc4\xa4\xc8\xbe\xa0\x82\x0a\x03\x63\xc7\xad\xea\x02\xa6\xc9\xb6\x85\xd4\x65\xc3\x02\x3b\xce\x86\x81\x64\x73\x8d\x37\x6d\x98\x71\x02\x12\x34\xca\xb0\xfc\x94\x95\x5a\x22\x92\x06\xc7\x59\x9d\xb2\x70\x52\xc8\x48\x2b\xa0\x5f\xe6\xa9\x66\xca\x84\xc0\xe8\x8d\x20\x4c\xb0\x11\x0d\x7f\x67\x0c\x40\x7a\x1f\x4c\x7f\xc8\x2f\xc7\xc8\x40\xf2\x0b\xb4\x6e\xed\xcb\x5b\xd5\xb1\x91\x40\x0b\x55\x20\x4f\xbf\xab\x75\x4f\x22\xb5\x48\xb4\x9a\x04\xe8\xae\x88\xc8\x9d\xab\xa3\x3f\x94\x42\xb4\x09\xb5\xfd\xbf\xa6\x39\xa9\xe0\x7e\x3a\x99\x40\xaa\x93\xe9\xd8\xcf\x85\xa1\x88\xaa\xbb\x79\x07\xe7\x53\x30\x8d\xb4\x54\xe7\xa6\x21\xe6\x83\x02\x82\xe0\xa2\xac\x72\x99\x36\x4a\xf5\xea\xf7\xe0\xc8\x9d\x16\xd3\x8a\x81\x60\xe3\xe3\x80\x7e\x07\xc8\xbf\x8c\xca\x0f\x68\x83\xb8\x55\x5f\x05\xdc\x42\xa6\xe3\xbc\xab\xc5\xd6\xa5\x9d\xbc\x20\x7d\x03\x3e\x4f\xc7\x52\xe0\x15\x27\xb7\xea\x77\xa7\x9b\xa2\x96\xe5\x95\x46\x62\xc0\x01\x98\x20\xa9\x75\x88\xc0\x97\x57\x3d\xad\x14\xdd\xaf\x56\x6f\x26\x8c\x01\x4d\x3d\xe3\x0f\x6b\xd9\xbf\x4e\x8f\x2f\xde\xcc\x12\x57\x9f\x95\xf9\x6b\x46\x32\x93\xb4\x60\xef\xb4\x5e\x26\xa5\x21\x7f\x71\xbb\x25\x92\xdd\x8c\x6c\xc8\x09\x72\x76\x7d\x1a\xf5\x47\xfa\x12\xa7\x0b\x8a\x8b\x36\xb0\x04\x48\x6d\x68\xc9\x90\x33\xbb\x9e\x7e\x47\x88\x75\xf6\x28\x5e\x11\x76\x77\xcc\xeb\x02\x4f\x95\x4c\x10\xb4\x07\xb7\x1a\xb8\xc8\x10\x24\xb4\xe1\x94\xe5\xdb\xc6\xcd\x15\x6b\xb0\xce\x96\x30\x36\xa0\x04\x90\xe1\xce\xc6\x33\x6a\xaf\x5f\xe8\xc2\x46\x8b\x92\x3e\x98\x9f\xa9\xb0\x51\xd9\x7f\xe5\x76\x89\x64\xa6\x38\x0e\x55\x33\x2a\x73\x5f\x6c\xd8\x93\x4e\x1b\xe4\x37\x21\x55\x11\x8b\xb6\x20\x15\xc8\x6d\x3e\xb2\xe7\xa2\x93\x24\x64\x6c\x43\xeb\x88\x15\x46\x10\x44\xc0\xd8\x75\x14\x0d\xca\xd8\xfd\xc9\xf1\xbb\x77\xe7\x57\x9e\xcb\x33\x65\x55\x39\xad\x45\xdf\x39\xff\x9b\x51\xbb\xcc\x0b\x07\xed\x83\x43\x56\x04\xe1\xfd\x80\x34\xc7\x21\xb8\x70\xe2\x5b\xe9\x14\x5c\xd5\x98\xcd\x35\xb7\x45\x72\xe4\x71\xfb\xf3\x43\x0a\x4a\xf2\x91\x97\xc7\x4f\x89\xd9\x18\xcf\xf9\x3f\x09\xcd\xb4\x81\x69\x1c\xd4\xec\x2d\xe8\xde\xdd\x94\x1a\x50\xe7\x23\xb3\x2d\xd8\x5e\x9f\x41\x02\x25\xdc\xd7\x60\xa4\xd7\x29\x76\xd7\x8e\xd8\x0a\x55\x37\xa0\x41\x46\x6e\x5f\x95\x7f\xf4\x58\xdf\x59\xfe\x24\x79\x85\xdd\xba\x16\xe5\x46\xb8\xed\x6f\xee\x43\xe2\x39\x34\xf0\xc5\x0c\x2a\xa7\xaf\x67\xed\x8e\x3d\xd5\x88\xdb\xb6\xcf\x1f\xf4\x65\xca\x46\x0d\xf6\x0c\x79\xf0\x82\xa4\x45\xde\xa5\xa6\xe1\x23\x88\x17\x6c\x98\xb8\x31\x7b\xd7\xd0\xbf\x1e\x69\xe6\x48\xc9\x69\xf0\xa6\x44\xec\x44\x2b\x54\xb6\x16\x83\x45\x27\x96\xae\x34\xe8\x05\x73\x67\xa6\xee\x9b\x22\xc4\x94\xee\x48\xe8\xb8\x9e\xd2\x5f\x53\xc2\x1b\x54\xe2\xf9\x44\x45\x1a\x9c\xa6\x70\x91\xbe\xde\x4b\x1a\xef\x25\x2b\x54\xb3\x55\xd9\x91\x4c\xcf\x67\x28\xa0\x69\xd3\x84\x21\xa6\x88\xc3\x18\x12\xb2\x98\x89\xbc\x06\x8b\x8c\x65\x55\x76\x73\x5e\xa7\xb7\xe2\xc1\x4e\xc5\x66\x1b\x91\x81\x62\x44\xcb\x86\x71\xfa\xfe\xd7\xe3\xd3\xb3\x5f\x67\xdb\xdc\x1c\x5a\x14\x9f\xea\xc9\x12\x60\x34\x2f\xae\xb3\x7e\x63\xa6\x36\x74\x18\x11\xe9\x2f\x88\xd0\x63\x13\xa4\x15\x11\xfe\x6e\x65\x49\x94\x83\x14\x6f\x2c\xe6\x31\xcb\xbc\xdf\x1f\x30\x40\x0d\x77\x71\xbe\xdd\x0e\x35\x2c\xe1\x7e\x73\x14\x6f\xf1\xcf\xd9\xb8\x98\xaa\x1b\x48\xb4\xf9\x99\xe8\xb1\x0e\x73\xc2\x77\xe7\x3a\xc4\x0b\x3f\x4c\x3d\x4c\xcb\xa6\x1b\x65\x31\x49\x93\x0e\x5c\x6c\x52\xfc\x3e\x59\x6c\xfa\x42\x83\x4d\x96\x97\x3d\x09\x87\x82\x47\xa3\x71\xab\x49\x87\xe5\x4c\x4f\x9b\x04\xe3\xa2\x10\x33\x78\x2f\xcf\x4d\x0d\xe0\x7d\x73\x16\xb1\x55\xf5\x73\x50\xb6\x11\x00\x77\x54\x73\x89\x7b\x23\x91\xe2\xa3\x0a\x87\x38\xc8\xda\xb1\xcd\xd4\xb6\xeb\xb3\xd0\xdf\x3c\x91\x49\x61\x33\x4d\xa7\xc8\xb5\x9b\x6b\xf0\x5c\x66\xb7\xd4\x78\x92\xe1\x60\x4c\x80\xa9\xd0\x99\x84\xb9\x59\xce\xec\x78\x77\x37\x67\xcb\x0d\x38\xf0\xee\x2e\x81\xcb\x05\xad\x5f\x73\x2c\x8f\x12\x09\x7e\xb8\x29\x77\x72\x76\x8b\x12\xca\x42\xfc\x26\x11\x38\xff\xe7\x44\x90\xe2\x46\x08\x03\x8d\x03\x5d\x9c\x40\x7c\xf7\x67\xb0\xa7\x8e\xc5\x73\xb1\x24\x3f\x7f\x30\x5f\xd0\x1c\xbd\x79\x10\x88\xeb\x7c\xf4\x8b\x65\xf4\xef\x48\x90\xda\xeb\x7e\xe7\x07\x09\x25\xf6\xfd\x17\x7c\xf5\xec\x87\x27\x9b\xab\x1c\x48\xf4\x8b\x0d\xb2\x89\x1e\x06\x62\x66\x94\xb0\x40\xaa\x6c\x83\x84\xd1\x90\x73\xfc\xd1\x73\x2f\x45\xd3\x78\x9e\xfe\x0b\x7f\xa5\xaf\xf8\x4b\xbb\xc2\xd3\xd8\xcd\x51\x8c\xf0\x60\x62\x87\x8e\x69\xe0\x38\xea\xdd\xe9\xe7\xb4\x78\xb3\x04\xd8\x57\x37\x16\x03\x64\x17\xe8\x64\xd7\xf3\x96\x3d\x8f\xbb\xd5\x76\x41\x31\xf0\x27\xe7\x48\x5e\xb2\x82\x12\x9c\xb5\x3e\x2a\x23\x71\xac\x42\x59\x44\xd7\x14\x10\xaf\xe8\x4f\xd3\x70\x74\xac\xcb\x60\x9f\x15\x20\x22\xb9\xff\x94\x5e\x51\x8c\x42\x14\x61\x52\xa2\xa0\x48\x1f\x1e\x22\xc2\x34\x6a\xc1\x71\x39\x40\x24\xbf\x29\xda\x8e\x50\x04\x5d\xd7\x7d\x24\xdc\xc6\xb2\x13\xcf\x41\x84\x12\xf5\x6b\x15\x1b\xbc\x04\x13\x58\x38\x9b\x8c\xbd\xc4\xde\x67\x7b\xf9\x24\x4c\xeb\xa9\xa3\xd7\x12\x92\x68\xf8\x3d\x0b\x28\xbc\xa3\x1d\x3c\x96\x71\xa5\xe1\x0b\x0b\x27\xd6\x80\xd9\xb8\x21\x96\x32\x38\xf4\x94\x2e\x07\xe9\xd7\x22\xde\xbf\x64\xe1\xde\xe2\x32\xf0\xaf\xd4\xbc\x38\x5c\xfc\x96\xa6\xbf\x18\xf3\xce\x24\xe4\x52\x72\x71\x30\x3a\xe5\xe3\x7f\x16\x67\x2e\x9c\xe7\xfc\xef\x62\x89\x60\x74\xfe\xd0\x7f\xa2\x98\x9f\xc9\xb9\x40\x96\xeb\xe5\x94\x95\x8f\x9e\x0d\xc7\x22\x48\xaa\x78\x11\x5c\xc0\x88\x4a\xb4\x8f\xf4\x30\x79\x49\xf8\x6f\xe6\x2e\xff\x09\x7f\x0a\x87\x8c\x4a\x71\x83\x1b\x8e\xed\xa0\x9a\x10\x86\xaa\x9a\x04\x93\xea\x42\x48\xa9\x71\x3b\x05\x4c\x92\x67\x15\xc1\x9e\x53\x44\x48\x5a\x51\xc1\x2c\x33\x0d\x4a\x86\x18\x35\x0d\x4f\x4b\x03\x3b\xcb\x43\x90\xd4\xe0\xb8\x9d\x01\x90\x34\x33\x9b\x00\x65\x65\xd7\xc3\x51\xc7\x87\x40\x6a\xb1\x70\x0c\x61\x38\x7a\x7e\x7c\x68\x68\x87\x03\x24\x89\xf3\xdd\x26\x5b\x16\xce\xe1\x17\x40\x58\x75\xf9\x7c\x5e\x54\x8d\x2b\x4c\x2b\x8b\xca\x03\x42\xbb\x6c\x41\xc9\x0f\x73\x60\xd3\x65\x66\x5c\xf9\x24\x41\x9d\x25\xd2\xe4\x62\x2f\x53\x2b\x39\x2a\x32\x4c\x23\x01\x81\x17\x1f\x31\xd1\xbe\x63\x6d\x89\xc3\x7c\x18\x63\x22\xc7\xbd\x14\x35\x84\x39\x58\xf2\x88\x6e\x34\xe7\x3d\xc3\xab\x10\x2a\x69\x40\xbe\x18\xa7\xcc\xd8\xbd\xdb\x71\xbc\x63\x6c\xaa\x82\xeb\x4d\x81\xb6\x7a\xde\x96\x16\x4b\x5e\x59\x5d\x95\xb9\xea\xbd\x53\x99\x64\xb4\xf2\xf9\xe2\x4e\xf3\xc8\x78\xe5\xbc\x65\x7b\x20\xcb\x96\xf7\x65\xb1\x8c\x6a\x96\x33\x17\x11\x66\xe1\x41\x46\xc1\x04\x21\xe1\xf4\xe1\xc7\x1f\x3e\xb5\x5c\xb2\x33\x8b\x3d\x7d\xf8\xf1\xc7\x4f\xb4\xd6\xe2\x8f\x17\x5b\xcb\xbd\x6b\x8a\xdb\xb2\xee\x71\x86\x54\x83\x9e\x1a\xe1\x49\xfe\x8e\xbd\xc6\x23\x82\x72\x47\xb3\x06\xf4\x94\xbb\xa4\x98\x9e\xaa\x7e\x8b\x65\x92\x9a\xdf\x0a\xbd\xd9\x97\xcb\x2e\xdf\x2c\x32\x72\x95\xbf\xbb\x6f\xde\x1d\xa6\x4e\x94\x39\x89\x0a\xdc\x29\x93\x1b\xfe\x49\xbe\x7c\x7f\x7e\x77\x95\xd5\x81\x7d\xec\x4a\x0e\x98\xb1\x98\xe5\x2c\x75\x77\x45\x37\x8b\xa7\x81\x1d\x66\x45\xab\xe3\x24\x6d\x48\x0c\xa2\x4e\x58\x48\x31\xf0\xa6\x00\x6e\x0c\xee\x3d\x3e\x07\x89\xc3\xc2\x04\x68\xaa\x34\x9d\xdb\x1a\xab\x2b\x58\x98\x2e\xe8\x56\x64\x09\xdf\xfb\x66\x4c\x49\xab\x5c\x31\xf6\xf9\xed\x05\xed\x6a\x3d\x31\x7f\x81\x80\x45\xcb\x11\x1f\x75\x6b\x74\x14\x14\x29\xd3\x6e\xcc\xba\xb9\x3b\xc3\xae\xa2\x2c\x1c\x72\x5a\xef\x65\x3d\xc0\x90\x39\x9a\x93\xd8\x47\x52\x30\x26\xbe\x39\x97\xf3\x36\x09\x47\x45\xa0\x65\x35\x37\x87\x4a\x95\x0c\xa9\x4c\x76\x1a\x10\x01\x8f\x88\x83\x8f\xc3\x88\x3f\xcf\x61\xdf\xff\xc8\xcc\x7c\x39\x6a\x5c\x38\xb1\x84\x43\xda\x84\xf0\x1c\x3c\x4e\x5f\xd6\x9b\xda\x73\x78\x7c\x0d\x01\xc4\x4a\xf2\x30\x1f\xac\xd2\x92\xec\x89\x4e\x67\x16\x28\x2a\xe6\x5d\x02\x59\xe4\x25\x97\xf3\x2b\xfd\xc5\x09\x83\x9d\xfa\x38\xd1\x39\xe9\x4a\x03\xe1\xaa\x6b\x67\x05\xc7\xa5\xe8\x7e\x37\x40\x9d\x99\x66\x12\xcc\x6b\xf5\xba\x37\x43\x63\x20\xeb\x0d\xb4\x3a\x75\x55\x61\xe9\xad\xac\xe4\xc0\x24\x97\xcd\x1b\x18\x48\x95\xad\x7c\x2d\xf9\xf0\x16\xf3\x74\xd5\xde\x3a\x27\x2d\xf5\x87\x24\xd4\x3c\x14\xdb\xc6\x71\xd6\x1e\x2c\x6a\x97\x11\xf5\xc8\x86\xa1\x4a\x95\x1c\xa3\xbb\x9f\xed\x34\x9c\x75\xd4\x80\xbb\x7d\x9d\x3a\xc9\x1b\x17\x38\xb0\x69\x32\x4b\x39\xb3\x39\xfa\x83\x82\x35\xff\x4c\x8b\x25\xb6\x46\x8a\x66\xbf\x01\x07\x85\x85\x5d\x3e\xae\xcd\xa0\xec\xa4\x9e\x40\x6e\xf4\xeb\x6c\x90\x3c\x21\x14\x04\xa9\xd3\x82\xc1\x10\x20\xf7\xe2\xd6\xc3\x36\xaa\x9b\x14\xaf\x9e\xa6\x98\x5e\xd9\x50\xa7\xf4\x95\xe2\x6b\xd8\x04\x5b\x40\x86\x45\x3b\x3e\x1c\xf7\x88\x46\x6d\xb1\xa6\x49\x29\x3e\xeb\x22\xeb\x04\x1a\x08\x0d\xbb\x7a\x63\xa9\xa9\x52\x87\x3e\x2a\x7e\x20\x97\x4d\x62\xc7\x26\x2c\xdc\xc1\xc3\x84\x09\x33\x54\x98\xea\x3b\x7d\x4a\x3d\x66\x99\x3f\x7d\x6c\x87\x99\xbf\x8f\x3b\x59\x88\x43\x01\xff\x87\x09\xee\x14\x9e\x16\x35\x17\xba\xd7\x12\x51\xb8\xc6\xf8\xd3\x69\x47\xce\x99\xfa\xd1\x1d\x15\xf7\x64\xbb\x7d\x92\xe7\x8f\x26\x7a\x1d\x10\xbd\xeb\xf6\x60\x5f\x48\x25\x94\x01\xf5\x07\x25\x05\x1c\x64\x1a\x77\x0c\x10\x8d\xd3\x07\x76\x49\x2b\xd8\x4c\x94\xe6\x1e\x6f\x20\xef\x60\xec\xda\x3a\xdd\xd1\xda\x43\x68\x77\xf6\x77\x36\x16\x8b\x93\x6e\xd8\x93\x81\x73\x48\x90\x34\x38\x4b\x70\x6f\xf3\x0c\x0f\x3a\x6d\xd9\xf8\xb8\x3d\x80\x12\xb9\x07\xe0\x20\x42\x02\x9e\xe7\x91\xea\xf8\xde\x04\xe0\x14\xd7\xf3\x75\xff\x47\x72\xbe\xa9\xca\xa7\x48\xe0\x4b\xbc\x6f\xea\x32\x13\x8b\x9b\x09\x7d\xc3\xf7\x4b\x42\x3e\x29\x38\x4a\x08\xfc\x9c\x84\xdf\x1e\x6c\x5d\xd7\x37\x72\x9c\x72\x81\xa0\x4f\x59\x95\x9d\x25\xf2\x6d\x0d\xaf\xe3\xd4\x45\xd6\x96\xcb\xf0\xd2\x94\x5f\x38\x62\xa2\x89\x39\x8f\x71\x33\xff\xbb\xe8\x1d\xa7\xf8\x4a\xff\x27\x13\x86\x03\x51\xc7\xad\x73\x3b\x3e\x7b\xc9\xee\x5b\x2e\x55\x1d\x67\x82\xaa\xd4\xcf\x67\x5c\x97\xfa\xa0\xb0\xdd\x66\x7a\x7f\xc0\x39\x60\x1d\xca\x62\xf4\x31\x34\xb5\xf2\xd6\x96\x73\x54\x19\xf9\x62\x4d\xf9\x60\xc5\xae\xe2\xf7\x10\x8a\x6b\x8a\xf3\x42\x65\x03\x92\x06\xcf\xcd\x91\x75\x0c\xe6\xb6\x5b\xbc\xf3\x6a\x6c\x9d\xe5\xcd\xc4\x4a\x7c\x53\xe0\xc0\xca\x8e\xae\x1c\x15\x7b\xcd\x12\x5d\xcb\xdd\x13\xfe\xdc\x19\xa4\x46\xec\xcd\xf1\xb1\x3b\xab\x17\x17\xfa\xc0\x85\x9d\xbd\x81\x5b\xb1\x6e\xab\x2b\xae\xb8\x65\x89\x64\x99\x39\xd1\x8d\xf7\x7e\x87\x06\x79\xb7\xe3\xee\xcf\x5e\x8a\x5f\x97\x35\x15\x69\x01\xf9\x0c\xbc\x18\x81\xfb\xc0\x38\x3c\x00\x34\xa4\x9c\x13\x7f\x92\xbd\x63\xc9\x96\x45\x5e\xc0\x5d\xa0\x94\xc8\xee\xd4\x22\x5b\xde\xb8\x16\x31\xfb\x2b\x9a\x0e\xfe\xb7\x63\xb4\xb3\xff\xcf\x12\xe2\xc7\xb3\xdd\x8b\x27\x90\x94\xe5\xaa\x0e\xf4\x42\x26\x78\x79\x1d\x20\x04\x7b\xe0\xbc\xa7\x7d\x5b\xe6\x3d\x91\x37\x0f\xc6\xec\xd9\xd3\xdd\x8b\x38\x3f\x51\x04\x36\x02\x0e\x96\x31\x18\x38\x16\x5d\x4a\x9c\xfb\x63\x07\x77\x78\x5a\x5f\xfb\x03\x04\x2d\x6a\x38\x38\x8b\x02\x56\x14\x90\xba\xb1\x93\x2f\xf8\x9f\x8d\x71\x62\x3a\x05\xae\x7a\x82\x5e\xe1\x60\x58\xba\x9a\x07\xa4\x8d\x8d\x60\xa3\xd9\x89\xa2\x64\x83\x79\xb0\xdd\xe1\xfd\xb9\x5d\xd3\x2c\x43\x73\xb8\x79\xf1\x86\x67\x3a\xb1\xd1\xe9\x40\xd9\xd5\xc2\x73\x4c\xb1\x32\xe6\x39\xfa\x73\x12\x44\x1f\xce\x30\x70\xfc\x88\xca\x8a\x1d\x3f\x82\x06\xca\x52\x73\xa8\x9c\x93\xc9\x32\x74\x7b\x3a\x28\x05\xc7\x36\x4a\x38\xe8\xcf\xf5\x2c\xb1\x5e\x53\x36\xf4\x90\xd7\xd4\xfd\xba\x0e\x4e\xb2\x89\x37\x0a\x26\x6b\xd8\x90\x59\xdc\xd7\xbd\xac\x0f\x8a\x17\x5d\x2d\x06\xcb\x88\x4d\x3e\x5b\x4b\x70\x2a\x6a\xdb\x13\x6f\xd9\x94\x34\xe8\x58\x32\xf4\x46\x9c\xf3\xcb\x2b\xdc\x35\x42\xbc\x90\x18\xcd\x8a\xe9\x35\xfd\xcb\x9a\x94\x5f\x3e\xb7\xc0\x17\xd3\xb0\x3b\xd9\x2a\xad\x97\x4b\x76\x22\x2b\x2b\x3d\xcb\xbf\x2f\xcc\xdd\xa1\xca\x37\xe2\x50\x16\xba\xe3\x19\xdf\x95\x9d\x8e\x14\x97\xcf\x30\x13\x68\x77\xc5\x92\x84\x92\x59\xfa\x96\x44\xb4\x0a\x37\xb6\xa5\xa6\x77\xde\xbb\x31\xe2\x7a\x82\x1d\x0a\x56\x2e\x67\xe3\x05\xd2\x5d\x8d\x65\xab\x24\xfa\xbd\x63\xa7\x75\xb1\x2e\x71\x02\x89\x13\xc5\xe6\x5a\x0e\x20\xb0\xc7\x07\x44\x39\xb9\x47\x85\x77\x9d\xe5\x7a\x09\xde\xbb\x41\x01\xea\x4a\x07\xc7\x19\x9c\xba\xe5\x9e\xed\x8a\x86\xc5\x11\x73\x3a\x0d\xfd\x0d\x87\x6d\x82\xae\x69\xed\x7a\x23\x6c\x01\xc3\x07\xc1\x55\x8e\x48\x1f\x31\x2f\x66\x99\xcf\xcc\x32\xb6\x9b\xb7\x93\x63\xd1\xbc\xd2\x11\xbe\x70\xa6\xc7\x40\x64\xfd\xc0\xd9\x47\x3e\xdc\xd2\xeb\x70\x98\x2b\x2f\x10\xca\xf5\x4c\xb4\x48\x17\x64\x46\x90\x6c\xd5\x8f\x20\xbc\xd1\x08\x40\xe6\x59\x35\x64\x61\x0a\xee\xe5\x80\xd7\x11\x25\xea\x9c\x42\x89\xe1\x6d\x11\x42\xbe\xf7\x4c\xa3\x80\xca\xa3\xcb\xce\xd0\x43\x3d\x25\xfd\x8c\x8f\xf8\xbe\x60\xea\x7d\xf6\x14\x41\xa7\x30\x2a\xe5\xf1\xdd\x4a\x01\xc5\xf1\xbd\x39\x35\xe1\x0f\x4b\x5f\x53\xac\xb2\x26\xb7\x23\x52\x4a\xfd\xec\x01\x04\x2a\x0f\x3d\x60\xb3\x0d\x49\xe4\x5a\x04\xcd\x56\x02\xb9\xe1\xfd\x10\x22\x14\xbe\x19\xcc\x94\x10\xe6\xfc\xb9\x4c\x2d\x76\x2e\x24\x82\xef\x77\x3c\x07\x64\x42\x59\x3d\xe8\xf6\xe3\x3f\x5f\x9e\xbf\x3b\x4a\x3f\x3f\xd9\xef\xf7\x4f\x38\xfb\x93\xbe\xd9\xb0\x1b\x5e\xce\x47\xb0\xfe\xc7\xd9\xdb\xa3\xb4\xe8\x96\xdf\xcf\x48\x7a\xc7\xd4\xf0\x62\xaf\x7a\x27\x41\xc9\x65\xb2\x64\xcd\xee\x1f\x9f\x32\x3b\x39\xab\xab\xf7\x58\x85\x27\x77\x43\xa6\xcd\xc3\x6e\xd6\x62\xa5\x02\xb1\x1a\x7b\x89\xb1\x20\x5d\x09\x67\xf5\x11\xf0\x09\xc0\xaa\x0d\xdf\x07\x46\x87\x08\x37\x88\x6f\xd9\xbb\xa3\xdf\xe4\x42\xa7\xc6\xd1\xa8\x77\x8a\xb2\x22\xff\x79\x58\x12\x76\x09\x71\x6d\xcf\xf3\xf4\xcf\xac\xe8\x31\x4a\x85\x0a\x38\xc9\xa8\x00\xc0\x21\x2d\x61\x86\xa5\x7a\xef\x40\x31\x4c\xf0\xfb\xb5\xa7\x45\x07\x47\xe5\x29\xda\x90\x96\xbb\xb6\xf9\xd1\xb4\x89\x4a\xeb\x1a\x15\xd6\x08\xf7\x16\xa7\xa3\x88\x9a\x07\x73\x80\xd7\xa5\xfd\x70\x1e\x0c\x97\x24\x9d\x64\x9e\xdd\xeb\x24\x1b\x71\x7c\x05\xfc\xd2\x3c\x53\x09\x62\x24\xd1\x05\x35\xa8\x64\x37\xaa\x41\x5c\x18\xe7\xda\x4b\x3b\x41\x04\xb7\xc6\x53\x17\x17\x2f\x41\x46\x35\x60\x20\x31\xc9\x30\x42\xda\x0d\x89\x79\xf3\x70\x86\xf3\x62\x16\x9b\x14\x19\x04\xfe\xaa\xec\xe7\x61\x3e\x11\x23\x6f\xdd\x50\xcc\x90\x52\xcd\x1b\x4d\xbc\xe6\x06\x89\xc3\xfb\xe4\x06\xc9\xac\x59\xc8\x55\x97\x27\x12\x0a\xb1\xb5\xdb\xd4\x77\xe6\xd0\x7c\x8a\x2f\x3d\x29\x14\xf6\xcc\x83\x69\xa7\x3c\x64\x20\xc1\xd7\xf3\xb8\xb8\xbf\x06\x77\x46\xa8\x18\x50\xdd\xa5\x02\xc3\xde\x4e\xa1\xa8\x17\x59\x65\x26\x9a\x37\xe1\x13\xeb\xa0\x86\xde\xbb\xa7\xae\x86\x03\xde\xbb\x71\xd6\xd0\x83\x37\xc8\xfa\x15\x1e\xbc\x31\x92\xc6\xfe\xb9\xbe\xab\x5f\xe1\xa2\x3b\xd5\xe9\xc0\x00\xa1\x64\x3c\x85\xf8\x89\x0c\x53\x86\x88\x3c\xec\x9b\xb7\x44\x84\x66\x07\xd1\x0d\x8a\x16\x16\x9c\x81\xc2\xf7\x35\x3a\xe6\x54\x4b\x3c\x4a\x02\xe4\x7e\xc9\x2c\x91\x97\xd7\xd7\xb3\x45\x53\xef\x5b\x76\x11\xc6\xad\x70\xec\xc5\xc0\xdf\xe9\x25\xbe\x05\x84\x4d\xae\x20\x0a\x09\x48\xa4\xec\xba\x53\xa4\x04\x24\x92\x97\xb6\xd1\xad\x5c\xa7\x94\x82\x8b\xb0\xf8\x92\x3c\x3e\xd9\x23\x29\x33\xc9\x42\xec\x7c\x3f\xe7\x10\x5c\x9b\x61\x22\x61\x55\x1c\x99\x2e\x39\x46\xc1\x38\x68\x08\x37\x47\x49\x6c\x82\xe9\x59\x2b\xc8\x61\xde\x67\x12\x84\x65\x70\x04\x46\xc4\x50\x42\xd0\xf2\x20\xa1\xcb\x25\x41\x18\x2e\x3d\x84\x22\x08\x93\xfe\x97\x37\xef\xe4\x13\x7e\x14\x7a\xf2\x0c\x8e\x14\x2f\xd9\xa3\xcd\xbc\x33\x66\x53\x5e\x1a\x96\x26\xde\x2e\xa2\x9f\xda\x35\xbd\xf8\x72\x10\x79\x93\x5d\xc3\x56\xc9\xff\x2e\x96\x84\x39\x9f\xed\xa2\x29\x9e\x0c\xb3\x11\x72\x04\xd5\x97\x08\xb8\x78\xb5\x35\xf2\x9f\x8b\xcb\xd8\xae\x18\xe0\xf0\x61\xee\x31\x62\xbe\x1e\x44\x77\x0f\x69\xa1\x2d\x59\x01\x57\x02\x1d\x54\x08\xea\xf0\x97\xa9\x80\x76\x70\x71\xad\x41\x74\xd9\xca\x39\x2a\x67\x2b\xd9\xb3\xf1\x69\x10\xed\xed\xf4\x6b\x94\xc7\xdf\xa8\x62\x26\x05\xef\xcb\x43\xe9\xb8\x1a\x72\x19\xba\x08\x51\x24\xfb\x06\xe1\x00\x63\xbb\x9e\x0d\x07\xc2\xed\x1d\x29\xce\x52\x7c\x3b\x28\x93\x54\x98\x5c\xe6\xdb\x3c\x10\x56\x84\x80\xc2\x65\xe5\x2c\x6b\x6e\xf8\xae\x38\xec\x4f\x59\x01\xfb\x46\x4f\x2c\xf2\x7f\x38\x62\x7a\x47\xe1\x85\x84\x46\x15\xc6\xae\x09\xc8\x0d\x9d\xc9\x98\xa9\xcb\xc0\xd2\x95\x9c\x8e\x7d\x2b\x21\xb9\x5c\x78\x48\x19\x63\x8f\x7d\x4a\x7b\x32\x1c\xb7\x00\xde\x21\xfa\x2f\xc5\xff\xf9\x5f\xff\x9b\xd8\xd3\xae\xa6\xd5\x12\x67\x49\xf4\x1a\x03\x3f\xee\xe6\x98\xe8\x6f\x94\x7c\x02\x1e\x1d\x34\x44\xd0\x9f\xea\xf1\x0c\x0a\x8d\x68\x94\xaf\x9b\x33\xfa\xbe\x64\x1b\x55\x4c\xe4\xd0\x76\x3c\x99\xc3\x3e\x3e\x2c\xc3\x88\x6a\xae\x6b\x84\x3b\x46\x6d\x83\x8b\x41\x93\xc3\x89\x4a\x74\xd3\x4b\x4a\xf2\x91\x74\xea\x4f\xfe\xb2\x0d\x37\x10\xd1\x45\x1b\x50\x71\x3c\x8c\x21\xec\x15\x93\xdf\xf8\x6e\x5d\x51\x19\xe5\x66\x1f\x6c\x49\x99\xfb\xb1\x1c\x7e\x97\xa3\x51\xae\x90\xb0\xa2\x47\xad\x9d\x8f\xd2\x4b\x9f\x70\x02\x69\xe2\x90\x5a\x78\xf0\x8a\x34\x46\xdd\x94\x90\x43\xfd\xba\x1d\x13\x5d\xd2\x0d\xd7\x3a\xb3\xff\x98\x18\x98\x27\xba\x4f\xc0\xee\x5e\x1c\xe0\x7b\x17\xf8\x02\x63\x26\x3f\xb1\xf0\xbe\x41\x04\xcd\x6b\x44\xe0\x4e\x11\x38\xb4\xf1\x7f\x82\x93\xdc\x6a\xa4\xe0\x58\x0d\x69\xfc\xe0\xb4\x78\x13\xdd\x8c\xe7\x9d\xfe\x70\x8b\x44\x74\x15\x1d\x17\x0e\x44\x4d\x6c\x11\x8d\xee\x16\xc1\xc8\x20\xf6\x3e\xe8\xc8\x75\xfa\xd1\x06\x56\x3b\x3d\x8a\xc8\x65\x11\x97\x53\xe7\x10\x25\x19\xdc\x6c\x51\x45\xbb\xd8\xed\xcc\x57\x13\x4c\x99\xb5\xec\x1f\xf9\x6c\x3c\x5e\xd9\x82\x26\xcf\xcf\x02\xcf\x4e\x75\x65\xdb\x06\x42\x02\xf2\xf8\xe8\x74\x43\x0a\xc2\x26\x52\x66\x50\x10\x8b\x72\x3f\x1f\xf0\x3e\x1e\xdf\x02\xf3\xed\xfe\xc7\xe3\x32\xee\xf7\x40\xfe\x47\xb7\x2e\xa6\x4f\x78\xbb\xe4\xf1\x51\x6f\x97\x34\x75\xe6\xfb\xdf\xb1\x91\x40\x24\xa5\xcd\x18\xcd\xed\x83\x3b\x09\x9a\xc7\x19\xa2\x0f\xdf\xbe\xf3\xed\xfb\x09\xd1\x9d\x27\x5f\x21\xed\xc5\x3d\x0e\x04\xbd\xa8\x55\x0e\x21\x6c\xb0\x8a\xcf\xc2\x1c\xd2\xde\xbc\xe0\x1a\xf1\x8c\xa1\x8e\x37\x3a\xfa\x82\x9e\xde\x9b\x25\x3e\x08\x13\x36\xd3\x99\xa7\xfc\xd1\x11\xb3\xe2\xc8\x11\x18\x31\xe7\x7d\xf9\x1c\xcc\x01\xfb\xf0\x7d\x07\x62\x86\xad\x64\x5e\xe3\x9c\xb0\xc2\x46\xde\x9b\x23\x5c\x66\xe3\x3d\x98\x7f\xcf\x21\x99\x69\x1b\x2c\xeb\x80\x7b\x33\xc5\x60\x51\x36\xfc\x79\x83\x02\xeb\x10\x86\x2f\x51\x32\x3c\xc3\xf5\x98\xeb\x71\xed\x75\x37\x6c\x34\x7b\x3c\x08\xf7\x9e\xe9\x05\x10\x76\xbc\x72\x10\xef\x59\x1f\x1c\x2d\x76\x72\xc4\xc5\x03\xc9\x37\xc4\x9d\xc9\x94\x61\xfe\xb8\x8e\xd8\x9b\xc9\x62\x9d\x19\xfc\x0c\x01\x17\x4f\x58\x5b\x16\x38\xba\x71\x22\x21\x97\xa2\xba\x96\xde\x63\xe4\x1b\x21\x77\xd4\x3c\x87\x25\xd4\xc7\xea\xaa\xa7\xb8\x66\xef\x77\x1a\x94\xbb\x1d\x0f\x61\xe6\x2e\x6d\xe0\x61\x12\x40\x15\x37\xb5\x55\x90\x90\x7f\x1a\x96\x25\xf7\x75\xea\xea\xf9\xae\xde\x27\xb2\x74\xce\xe0\x21\x25\x77\xaa\x68\x4c\xdc\x24\x89\x63\x19\x45\xcf\x32\xa2\x0f\x24\xa6\xcb\xd1\xc5\x71\xfa\xe0\x38\x07\x56\x0e\x77\x90\xc3\xae\x48\x62\x01\x14\x52\x03\x3c\xf0\x59\xae\x0f\x89\x63\xa6\xa5\x42\x80\xf5\xd5\x8a\x24\x1a\xd5\x1b\x42\x7c\x4d\xc5\xdc\xce\x51\x75\x47\x66\xdf\xc2\x89\x79\xf6\xd2\x17\x7e\xb8\xb5\x76\xc8\x95\xc2\xae\x1d\xee\xbe\x6a\xdf\x8e\x10\xe2\x6b\xda\xc1\xb5\x3c\x85\x47\x10\x0f\xe2\x7d\xed\x21\xe5\x50\x2f\x00\x08\x77\x4f\xda\x61\x13\xfd\x79\x88\xab\x60\xbd\xc6\x0e\x64\x3e\x90\x3f\xd8\xbc\x39\x5e\x38\x25\x45\x36\xc2\x26\x44\x04\xd9\x28\x9e\x3c\x07\xfa\xe5\x29\xce\x23\x8d\x9c\x0e\x34\xd8\x02\xf6\x60\x53\xab\x90\xb6\xcb\x8b\x74\x90\xb1\xce\x54\xae\x93\xc4\x2f\x2f\xbc\x02\x67\x27\x38\x45\xbe\x0b\x97\x0c\x08\x78\x36\x92\xb9\xdc\x17\xe7\xe6\x38\xb3\xba\xa0\xd6\x71\x61\x8e\x55\x03\xca\xb1\xe8\x31\x9c\xf1\xce\x50\x3a\x0b\x8c\xad\xcc\x94\x8f\x4c\x66\x95\xdd\x56\x83\xda\x66\x77\xd1\x06\x30\x9f\x5c\x65\x8d\x2c\x9a\x35\x87\x57\xec\x71\x53\xfc\x5a\x2d\x97\xb0\x39\x82\x39\x68\x94\x99\x85\x53\x7d\x4c\x20\x9e\xec\x56\x4d\xc6\xb6\x70\x1b\x6b\x66\x16\x01\x29\xa0\xc0\x9f\x5c\x2f\xdd\x85\xf6\x9e\x1b\x60\x87\x8d\x0a\x7a\x74\x1f\x53\xf8\x86\x06\x80\x6d\xdc\xdf\x02\xb0\x05\xb9\x4a\x8e\x9a\x11\xb0\x80\xfb\x1a\xa2\x37\xd1\x7f\x7d\x43\xc0\x37\xbe\xb2\x21\x47\xd6\x0a\xbd\xc0\x28\xcf\x27\xe7\xff\x7d\xed\x1b\xa8\x3b\x20\xce\xe8\x86\xac\x01\xc1\x47\xaf\x02\x39\xa2\x0f\x7c\x21\xac\x58\x6c\x80\xa9\x6f\x86\x2e\x67\xbe\xa8\x8a\x86\x10\xaa\x6c\xd5\x85\xfe\x1b\xf1\x59\x35\xf6\x28\xe8\x9a\x3b\x15\x49\xb8\x73\xf1\x51\x39\x7f\x11\x88\x28\x61\xd8\xcb\x94\x5b\xd3\x3e\x02\xed\x9f\x0e\xbc\x3e\x26\xaf\x24\xc8\xf6\x74\x1b\x3d\x52\x35\xbe\xc0\xea\xde\xcb\xc3\xe2\x4b\xd3\x86\xb7\xe7\xb5\x72\xd8\x79\x65\xb2\x9c\x5d\x44\x9f\x78\xe7\x8d\xcb\x3b\xc2\xc1\x16\x6f\x6f\x2c\xf9\xde\x98\xba\x2a\x65\xdf\xff\x4c\x42\x7c\x75\x10\x9b\x62\xd4\x0e\xc3\x67\xf0\xbd\x33\xbe\xef\x1d\x8c\x8b\x6c\x63\x52\x41\x40\xc2\x41\x7a\x70\x99\x15\xfc\x2d\x1b\xbb\x9e\xcb\x97\x80\x96\xc0\x84\xd9\x07\x2d\xd3\x76\xa0\xd0\xbe\x9d\xaa\x71\xce\x1b\x75\xa9\x6e\x53\xba\x37\x83\x98\x49\xf0\x8d\x2d\x39\xdf\xd8\x22\xcf\x52\x1c\x05\x11\x11\xce\xc3\x84\x9d\xbb\x1b\x23\x8a\x8e\x17\x3e\x1f\x8f\x73\x81\x71\x14\x1f\x06\x8c\x22\xb2\xe5\xa8\x16\x33\x60\x87\x71\xe2\x4b\x17\xc6\xd8\xe9\x84\xa8\xf4\xf8\xca\x88\x30\x49\xee\x81\x8b\xa2\xf4\xea\xfb\xb8\x27\x62\x53\x0d\xe3\x36\xf5\x8a\xef\xb0\x83\x11\x32\xee\x9e\xca\xce\x71\x99\xe6\xd2\x17\x15\x01\xa7\xf0\x30\x06\xfb\x5a\x5d\xd6\xc6\xb9\x31\x05\xc3\x08\xbd\x42\x60\x04\x48\x3a\x75\xb6\x5c\xa3\xff\xb3\x29\x42\x32\xd5\xd8\x11\x93\x3e\x7a\x35\x01\x29\xcf\x13\xa4\xf6\x18\xc1\x24\x0c\xbf\x7a\x84\xb7\x1f\x82\x54\x76\x91\xad\xe6\x7a\xab\x46\xad\x87\x88\xd9\x5f\xd6\xdd\xa0\x91\x9e\x63\xc6\xb5\xf7\x66\x0a\x56\x31\x3e\xd0\xa3\xb7\x76\x68\x4e\x91\x38\xee\x59\xce\x7c\xc9\xba\x30\xaa\xe7\x42\xe6\x75\xb5\xd6\xcb\x09\x2c\xdd\x98\x6b\x83\x23\x92\xaf\x2a\x63\xd0\x4a\x0f\xe1\x8a\xf9\xf6\xa6\xc2\x7a\xc6\x27\x1b\x61\x91\x8b\x1a\x19\xb1\x35\x03\xf9\x42\x09\x83\x26\x4e\x16\xf1\x0d\x8d\xe4\xf7\x52\x56\x4b\xf7\xbe\xc4\x29\x5f\x4d\xd4\x2c\xf8\x0c\x25\xaf\x61\x85\xbc\xfb\x53\x57\xb1\x05\x6e\x3a\xfb\x7d\x2d\x43\x83\x58\xe7\x9e\x2a\xfe\x50\xdb\x9a\xa2\xbd\xab\x96\x73\x3c\xf6\xd1\xae\x75\xa3\xf2\x7d\x21\xb6\xf2\x47\x33\x8a\x7b\x9a\xe9\x41\xf6\x02\x5b\x7a\xed\x23\xb9\xbb\xed\xf1\x92\xe2\xf1\xd8\x08\x2d\x71\x4f\xc0\x13\x91\xdb\x04\x38\x12\xcf\xba\xef\xef\xad\x68\xd0\x97\x80\x21\x06\xb8\x6d\xd0\x94\xae\xf8\xaa\x1e\x04\x9b\xe4\x61\x37\x98\x0c\x74\xf6\x83\x57\x84\x97\x94\x32\xe2\x1e\xf3\xd9\x7d\xbe\x6c\x8a\xef\x70\x57\x77\x1f\x5d\xd0\xec\x31\x17\x35\x1e\x1d\xe8\x50\x58\xef\x3d\x23\xf4\x28\x6a\xc5\x97\xfb\x18\x2e\x42\xf2\x4c\x55\xbf\xc3\x5b\x81\xee\x7d\xaa\x0f\xf8\x0e\x99\x82\xdc\x1b\x37\x5f\xd5\x4d\x4d\xc3\x23\xc7\x44\xf5\x2e\xb9\x57\x16\xd7\x4e\x64\x80\x09\xfc\x6e\xde\xeb\xd1\x5e\xcb\x73\x86\x68\x92\x1f\xf8\x9c\xaf\xcf\xd5\xd5\x5d\xb6\xb1\x3c\x6c\x81\x5c\xaa\xdd\xfa\x8a\x13\x2c\xd7\xb1\x25\x04\x39\x35\x4f\xbd\x60\x7f\x4f\x64\x51\xe0\x73\x8d\x09\x60\xb1\xcd\xc1\x67\x2f\x09\x5d\xfd\x6e\xce\x5d\xc5\xb1\x3d\x89\x4e\xdf\x22\x3a\xbd\xe2\xe8\x71\x0d\xd6\x2a\x97\x6d\xd0\xa8\x43\xf9\xf8\x20\xd5\x30\xcf\x4b\x3e\x6f\x35\x84\x37\xcc\xad\x8b\x6c\x37\xc2\xdb\x6b\x8a\x1c\x61\x0d\x90\x63\x04\x00\xf6\x30\x16\xc2\x5c\x65\x0e\xc5\x2a\xcc\xf1\x86\xa2\x0e\x41\xc3\x03\x60\x08\x8f\x57\xfc\x0e\xe4\xd0\x35\x7b\xd8\x2a\xdd\xb3\x19\xb5\xaa\x5e\xfc\x0d\x6f\xde\x29\xf4\xb9\x7c\x06\x50\x8b\xba\xee\xf8\x69\x91\x1d\x8b\x5b\xcb\x1b\x87\xa6\x5f\x2c\x9e\xc5\xad\xe5\xcd\x08\x53\x02\x3d\x46\x95\x40\x1f\xc6\xd5\x96\x2f\xb9\xa0\xba\x9a\x7e\xd9\xf5\x34\x41\x5d\x85\x67\x97\x7c\x61\xc6\xa5\x4b\x18\xd5\x38\xca\x19\x52\xe8\x30\xf3\x54\xcd\x4b\x12\x22\x8a\xc9\xaa\x4f\x38\xe5\xde\xba\x47\x79\xc3\xca\x47\xd9\xa7\x66\x0a\xae\x4a\x65\xa3\xf3\xa2\x5f\xde\x14\x1d\xfb\x8c\xaf\xe7\xd8\x61\x0e\xcb\xba\x30\xb0\xf4\x17\x80\xa5\xaf\x09\x2c\xbd\x92\x87\xeb\xc6\xa5\xd2\xa2\xb3\x2d\xba\x0c\x9e\x02\x41\x29\xaf\x4e\x68\x04\x38\x3a\xcf\xa6\x72\xc1\x3a\x33\x57\x29\x5b\x67\x21\x0b\x3e\x41\x09\xfa\xa4\x9e\x08\xde\xc7\x0e\x64\xaa\x34\x56\x03\x64\xf5\x5b\xde\x2d\xe5\x1e\x50\x56\x0c\xa8\x0d\xef\x25\x26\x80\xc5\x75\x6d\x04\x6b\x3c\x12\x9b\xe2\xb8\xb7\x8d\xc0\xaf\x62\x46\x29\x1c\xcc\x03\x0b\xe3\x22\xb8\x8b\xac\x6f\x27\x01\x77\x99\x4c\xa6\x83\x90\x56\xbd\x01\x5a\xcd\x43\x38\xad\xb4\x15\x54\x0a\x5b\x11\x4d\x4d\x7c\x8b\xf5\xaa\x34\x7b\x8e\x17\xae\xc5\x76\x51\x1a\x1e\xe5\x15\xd8\x2f\xbe\x14\xa5\x60\x22\xbd\x42\x66\x95\x18\x93\xb7\x70\x0b\xba\x85\x2d\x2d\x3a\xc2\x2a\x71\xd1\xb3\x55\x1a\x67\x67\xa7\xdc\xb1\x6e\x8d\x0f\x0f\x5d\x6a\x89\x10\x4c\xcd\x65\x25\x7e\x11\x44\x3d\x57\x04\x50\x2e\x8b\x91\x9d\xa4\x4d\x98\x19\x4a\x83\x7b\x53\x35\x2a\xe0\x2d\xf4\x89\xa0\x6f\x07\x6f\x14\xb6\xcb\xb4\xbe\xf2\x52\x61\xdf\x9b\x00\xc7\xd8\xe8\x8e\xb1\x5b\xb6\xf3\x10\x9d\xc3\xbb\xb8\xb2\x01\x7a\x19\x5c\x31\x1c\x81\x62\xe7\x3b\x7c\x03\x2b\xd8\x7e\x34\x94\x63\xa3\x0f\x6f\xef\xa9\x23\xdf\xa8\x84\x20\x4f\xf0\x60\x21\xbb\x43\xcb\x59\xa3\x29\x14\x79\xeb\xa0\x61\xc8\x5d\xce\x0c\xe8\x7b\xb7\x96\x62\x5c\x4c\xdf\x19\xff\xff\xe4\xda\xfc\xb0\x01\xfe\xf2\xfc\x03\xf5\xff\x87\x5c\x9e\x3f\xb4\xcc\xba\xdb\xf3\x71\x3b\xf8\x0c\x87\x03\xe2\x79\x1c\x6d\x5c\x45\xf3\x19\x39\xc2\x79\x8a\x88\x78\x2b\x1f\x51\xde\xec\x6b\x16\x5f\xb1\xda\x60\x8a\x0e\xeb\x0b\xce\x73\x44\xb5\x49\x8e\xf1\x1d\x6f\x71\x13\x24\x66\xbc\x5b\x24\xf1\x6a\x8d\x48\xf5\x9e\xa2\x42\xad\x47\x33\x98\x24\x74\x8b\xc6\xe2\x46\x6f\x73\xf3\xa4\xd6\xa9\x3d\x68\x72\x3c\xb9\xa3\x56\x4b\x26\x39\xe9\x6b\x47\x45\x26\x99\x89\x02\x06\x5d\x91\x98\xf0\x3a\x0c\x89\x91\xdb\xa2\xf1\x7c\x8a\x84\x34\x7e\xec\x85\x11\xb4\x58\x8b\x89\xab\x0e\x0a\x05\xd0\x24\xaf\x0a\xda\x32\xf4\x4f\x95\xd8\xf0\x29\x6e\x89\xd1\x57\x8d\xf1\xa0\xb1\xc4\x2c\xe0\x3f\x04\x2f\x37\x36\x3e\x9d\xbe\xb3\x6a\xbb\xae\x29\x17\x7d\x37\x7d\x0f\xba\x4b\x1d\x41\xdb\xb6\x3f\xd3\x6e\xfa\x05\xd8\xb6\xb7\x82\x2f\xfb\x2f\x95\x3b\x78\xa3\x6a\x00\x27\x97\x7e\xa4\xee\x3a\xa2\x97\xf8\xd6\xc4\x2d\xf3\xc8\x79\xcb\xcf\xee\x9f\x11\x8b\xc9\xd3\xcb\x63\x4d\xc1\xdb\xc5\x6a\x1d\xc1\x13\xc7\x07\x47\x81\x21\x47\x6f\x21\xfb\x24\xc5\x2b\x92\x02\xe4\xea\x7d\xea\x9d\x5c\x75\x2d\x77\x89\x5f\xbd\xbd\xa4\xe0\xb2\xb9\x93\x0d\x23\x1d\x17\xde\x31\xd0\x17\x83\xed\x81\x99\xe3\x33\xf7\x26\x73\x30\xd2\x5a\x24\xbf\xf7\xea\x5e\x33\xf4\x85\x53\xfb\x6b\x7d\xcd\x50\x0d\xa6\x4a\xab\xfc\x1a\x07\x3b\xff\xee\x5a\x2b\x27\x38\x8a\x3c\x20\x7b\xbd\x77\x5d\x47\x60\xb4\x18\xc5\x96\x5b\x2c\x34\x6e\x51\x0a\xe9\x3d\x5c\x2b\xa3\x0a\xbe\xf2\x96\xf4\xb0\xac\x60\x51\xb9\xa7\xad\x93\x67\x0d\xe3\x5b\xf3\x42\xc0\xb9\xcc\x3f\xbb\x1c\x33\x2a\xd8\x6d\x32\x8d\x33\x44\xb7\x64\x46\x99\xa6\xdd\x00\xee\xbb\x1f\x53\x8c\x02\xa6\x8c\x3b\x9b\xb7\x2a\xe3\xb1\xe9\x5b\x61\xef\x7b\x0e\x3e\x00\xb9\x95\xad\xb5\x00\xe2\x37\x79\xac\x36\x04\x9a\x7e\x8e\x5c\x01\x86\x3c\x45\xa3\x07\xaf\x54\x47\xcf\x53\x5b\x4e\x7b\x6d\xb3\xee\x45\xdb\xc6\x6b\xb8\x7a\xc6\xe8\x3d\x22\x59\xd0\x32\xf0\xa9\x27\xe1\x83\x24\xad\x88\x93\xc2\x4a\xb0\x42\xf1\xfb\xb8\xf7\x3e\x5f\x6f\x08\x66\x93\xfb\x72\x2e\x57\xa6\x05\x79\x60\xf0\x5f\xc2\x8d\x77\x9c\x89\xda\x3d\xce\x41\xed\x3e\x00\x2e\x9b\xc0\xc6\xcf\x2f\xf1\x25\x2c\xc4\xb5\x98\x5d\xcb\x94\x8a\xac\xc3\x12\x37\x7c\x3c\x28\xc4\x41\xbe\xf0\x84\xe1\x9e\x14\x9e\x24\x0d\x82\x0c\x17\x25\x1f\x1b\x2e\x04\x3e\x36\x5c\xd2\x7c\xac\x36\x6c\xd0\x82\xb6\xdd\xd8\x40\x5c\x5e\xbe\x8d\x47\xdb\xa7\xfa\x9d\xf9\xc7\xec\x9b\xf2\x80\xaf\xb5\x59\x91\x86\xf9\x00\x2f\x67\x7f\x1f\xe4\x50\x6c\x86\xf8\xd3\xd8\x61\x19\xfa\xde\xf3\xa0\x08\x63\x96\xd1\x94\x29\x97\x07\x10\xe3\x9e\x7d\x8d\xae\xd3\x07\xfa\xe5\xf9\x70\x5d\x56\xa2\xf7\xde\x87\xc4\xec\x99\xad\x23\xe5\x90\xd1\x5a\xc3\xd8\xa5\x3d\x7a\x08\x5d\x1f\xdf\x54\xdf\x76\xf7\xd4\xec\x2f\x88\xf6\x2d\x9c\x7c\xe5\x7c\xf8\xbc\x39\x3b\x9d\x5b\x96\xf8\x3d\xfa\xf1\x43\xf4\x0a\x66\x6f\x7a\xc0\x22\x30\x7a\xfe\x03\xa6\x00\x7d\xfd\xc3\x18\x83\x1c\x71\x62\xff\xee\xf9\x46\xcd\xdf\x72\x0c\x0a\x5e\xde\xe9\x5b\xd8\xbb\x5d\xbb\xa3\x37\x31\xa3\x4c\xf2\x14\xa7\x7b\x77\x6f\x9c\xd9\x4e\xeb\xb9\x41\xb4\xd3\x47\x93\x83\xf8\x47\x5f\xf4\x54\xb8\x3c\x96\xc9\x37\x4f\xd2\x67\xfa\x16\x9f\x6e\xac\xe4\x58\x11\xb4\x61\x76\x66\x7e\x6e\x07\x8d\xa0\x14\x53\x8c\x1b\xa5\x9b\x72\xc7\xcb\xb2\x3e\x16\xc6\x83\x43\x31\x58\x9b\x7f\x43\x4c\x88\xe4\x90\x33\x9f\xe1\x7b\xba\x81\x0a\x3b\x96\x02\xe3\x74\x23\x28\xa2\xf3\x3a\x20\xa6\xd7\xbf\xbe\x3d\x1f\x40\x4e\x4c\x50\x4d\x99\x98\xd0\x9a\x32\x31\x7d\x65\x2b\xc7\x75\x01\xdb\x37\xd3\x3d\x10\xc8\x83\x1d\x10\x1a\xf2\x3b\xb3\x20\x9e\xc9\x82\x94\xda\xf2\x6c\x27\x33\x46\xe9\x4c\xbe\x63\xa0\xe0\x3a\x5e\x81\xb2\xdb\x78\x47\xb5\x56\x61\x9d\x95\x6c\x43\x78\x7e\x20\x2e\x02\x01\x3f\x10\x57\xdb\xc9\xe6\x19\x34\xa9\xac\xb7\x65\xae\x82\xa3\xc0\x5f\x68\x94\x81\x1a\x88\x2f\xd9\x20\xb4\x68\xd7\x4c\x22\xdc\xd2\x49\x6f\x27\xf8\x8a\x86\x4e\x27\x22\xcf\x17\x81\xf5\xd3\x90\x1f\x13\x91\x1c\x06\xbc\x5a\x3a\xc4\x98\x41\xe9\xd5\x89\xbf\xa8\x18\xb6\xa7\x41\x67\x36\xe5\x75\xe1\x2c\x55\xda\x9b\xb7\x14\x17\x01\xaf\xf9\x39\x56\x3b\x10\x29\x0f\xb2\x9e\xd3\xc7\xa0\x13\x61\x51\xda\x93\x51\x49\xbb\x12\xd6\xc3\x00\x2f\x12\x31\x8d\x71\x83\x56\xbe\x1d\x80\x2b\xe3\x1e\xb2\x5b\x7b\xd0\x2c\x98\x21\xfe\x75\x21\xbf\x3e\xbb\xda\x79\x5d\x9e\xac\x99\xa1\x74\xe5\x62\x18\xac\x5c\xe6\x2d\x30\x5b\x36\x72\xb7\x0a\xff\x5d\xf1\x3e\xae\x4b\x09\xe7\x9e\xc5\xb5\x44\x7b\x79\x2f\x87\x6d\x34\xe8\xe1\xbd\x77\x81\xa0\xc9\x12\x26\xae\x07\x8c\x01\x8a\xcf\xc5\xb2\x0f\xb6\x15\x7e\x95\x6f\xb5\xe3\xf9\x62\x6a\x73\x0e\xec\x2b\x5c\x60\x78\x21\x31\x01\xcc\xd4\x05\x4b\xd6\x74\xb8\x38\x9a\xab\xe3\xc1\xfa\x5d\xf5\x50\x7f\x18\xca\x3c\x2e\xcc\xcb\x41\x3e\xe7\x1b\x39\x7b\x31\x70\xc2\x30\xd8\x50\x0a\x09\xe3\xe6\x3f\x44\x72\x9a\x4b\x9b\x68\xb8\x25\xd5\x3b\x66\x59\xbb\x59\x00\x0b\x51\x3c\x78\x2a\x42\xda\x20\xe9\x5f\x72\xb1\x4a\x3e\x8a\x4f\xc3\xa7\xc1\x6d\xe2\x66\x7e\x0c\xdc\x68\xa2\xf3\x3f\x0f\xe5\xca\x47\x39\x24\x65\x99\xd8\x83\x48\xae\xac\x0c\x60\x9f\xb6\xcd\xf2\xe9\xc3\xf0\x96\x3f\xbd\x0e\x50\x01\xec\x0a\xc0\x3f\xe9\x2d\x92\xda\x0e\xbb\xd1\xf0\x77\xbd\x42\x50\xbe\xc3\x72\xc5\xec\x21\x45\xb7\xff\x14\xdc\x21\x38\xbc\x14\x31\xb8\xfb\xb1\xae\xbe\xa5\x20\x77\x87\x87\xf6\xcf\xbe\x07\x78\xc1\x91\x69\x46\x88\x9c\x9d\x1e\x3e\x37\xa3\xa8\xc2\xc9\x6b\x3e\x89\xe3\xf1\x44\x1f\xf7\x23\x2a\x2a\x6a\x84\x28\xbd\x16\xee\xc7\xb9\xbf\x96\x18\x87\xf0\x24\xa1\x6c\xf5\x5e\x2c\x79\xcb\xe7\x47\x77\x25\x71\xf2\xb1\xab\xeb\xcd\xa7\x24\x5b\x71\x9f\xe8\x37\xc1\x9d\xdf\xe2\xaf\x0b\x9f\x34\x0a\x26\xf2\xc9\xa1\x1f\xb8\xe0\x1f\x48\x4b\x25\x06\x82\xcb\xd9\x7e\xd8\x22\x42\x5e\x83\x47\xc4\x1a\x11\x7c\x59\x3c\x3e\x73\x7c\xe6\xd9\x1d\xbe\xf6\xf8\xda\x17\xc5\x8d\x64\x06\x87\xa1\xec\xa4\xf5\xad\x11\x73\x87\x6f\xbe\x6d\x8c\x3f\xa5\x1e\xbd\x7b\xd0\x3e\x70\x25\x9c\x3c\x3e\x8f\x78\xfb\xa0\x78\x79\x96\xe9\xb9\x7f\xa1\xe9\x21\xef\x8f\xdd\x69\x14\x42\x14\xc3\xd5\x6b\x94\x04\x1f\x82\x4d\x90\x2e\xab\x05\x4a\x98\x62\xb9\x1d\x1a\x29\x41\x8a\x6b\xb2\xfd\xdc\xb7\x4b\x43\x88\xf5\xad\xd2\x10\xa1\x37\x6f\xea\x1d\x5f\x0f\xf5\xc9\xdd\xc0\xef\x6f\x74\x3e\xa5\x34\xbd\x26\x03\x77\xf6\xf0\x09\x3e\x3c\x97\x8e\x27\x38\xf8\x7c\xdb\xcc\x3d\xfd\x5a\x56\xbb\xde\xe9\x4f\x7a\x95\xc2\xa3\x4e\xc1\xfc\x5d\x1b\xe2\xb4\xc9\xd7\xbb\xca\x1d\xd6\xfc\xa6\xfa\x02\x6b\x00\xf4\x32\x7e\xcc\xfa\xf1\xbf\xfe\x2b\xc0\x29\xf8\x6f\xff\x96\x9e\xfd\xf2\x7d\x5a\x7c\xe6\x4b\x69\xf8\x3d\xc2\xcf\xe5\xb6\xdf\x1a\x14\x7d\xbe\x8c\x00\xf9\x54\x1b\xdc\xef\xd4\x94\xad\xcf\xda\xf0\xd7\xff\x0d\x00\x00\xff\xff\xc8\xcc\xca\x07\xca\x93\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -787,7 +787,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 37484, mode: os.FileMode(420), modTime: time.Unix(1439477372, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 37834, mode: os.FileMode(420), modTime: time.Unix(1439489839, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/middleware/auth.go b/modules/middleware/auth.go index 2a02d27607..db643ccf28 100644 --- a/modules/middleware/auth.go +++ b/modules/middleware/auth.go @@ -5,12 +5,16 @@ package middleware import ( + "fmt" "net/url" "github.com/Unknwon/macaron" "github.com/macaron-contrib/csrf" + "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/auth" + "github.com/gogits/gogs/modules/base" + "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/setting" ) @@ -21,6 +25,41 @@ type ToggleOptions struct { DisableCsrf bool } +// AutoSignIn reads cookie and try to auto-login. +func AutoSignIn(ctx *Context) (bool, error) { + uname := ctx.GetCookie(setting.CookieUserName) + if len(uname) == 0 { + return false, nil + } + + isSucceed := false + defer func() { + if !isSucceed { + log.Trace("auto-login cookie cleared: %s", uname) + ctx.SetCookie(setting.CookieUserName, "", -1, setting.AppSubUrl) + ctx.SetCookie(setting.CookieRememberName, "", -1, setting.AppSubUrl) + } + }() + + u, err := models.GetUserByName(uname) + if err != nil { + if !models.IsErrUserNotExist(err) { + return false, fmt.Errorf("GetUserByName: %v", err) + } + return false, nil + } + + if val, _ := ctx.GetSuperSecureCookie( + base.EncodeMd5(u.Rands+u.Passwd), setting.CookieRememberName); val != u.Name { + return false, nil + } + + isSucceed = true + ctx.Session.Set("uid", u.Id) + ctx.Session.Set("uname", u.Name) + return true, nil +} + func Toggle(options *ToggleOptions) macaron.Handler { return func(ctx *Context) { // Cannot view any page before installation. diff --git a/modules/middleware/context.go b/modules/middleware/context.go index 2995d5788e..d4bc8f0351 100644 --- a/modules/middleware/context.go +++ b/modules/middleware/context.go @@ -197,6 +197,14 @@ func Contexter() macaron.Handler { ctx.Data["PageStartTime"] = time.Now() + // Check auto-signin. + if sess.Get("uid") == nil { + if _, err := AutoSignIn(ctx); err != nil { + ctx.Handle(500, "AutoSignIn", err) + return + } + } + // Get user from session if logined. ctx.User, ctx.IsBasicAuth = auth.SignedInUser(ctx.Req.Request, ctx.Session) diff --git a/public/css/gogs.min.css b/public/css/gogs.min.css index 9aa5008875..f1e2f8f7d8 100644 --- a/public/css/gogs.min.css +++ b/public/css/gogs.min.css @@ -1 +1 @@ -@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('embedded-opentype'),url(../fonts/octicons.woff?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('woff'),url(../fonts/octicons.ttf?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('truetype'),url(../fonts/octicons.svg?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6#octicons)format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-alignment-align:before{content:'\f08a'}.octicon-alignment-aligned-to:before{content:'\f08e'}.octicon-alignment-unalign:before{content:'\f08b'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beer:before{content:'\f069'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hourglass:before{content:'\f09e'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-jump-down:before{content:'\f072'}.octicon-jump-left:before{content:'\f0a5'}.octicon-jump-right:before{content:'\f0a6'}.octicon-jump-up:before{content:'\f073'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-microscope:before{content:'\f089'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-move-down:before{content:'\f0a8'}.octicon-move-left:before{content:'\f074'}.octicon-move-right:before{content:'\f0a9'}.octicon-move-up:before{content:'\f0a7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-playback-fast-forward:before{content:'\f0bd'}.octicon-playback-pause:before{content:'\f0bb'}.octicon-playback-play:before{content:'\f0bf'}.octicon-playback-rewind:before{content:'\f0bc'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-podium:before{content:'\f0af'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-puzzle:before{content:'\f0c0'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-split:before{content:'\f0c6'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-steps:before{content:'\f0c7'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .top.menu a.item.brand{padding-left:0}.following.bar .brand .ui.mini.image{width:30px}.following.bar .top.menu .dropdown.item.active,.following.bar .top.menu .dropdown.item:hover,.following.bar .top.menu a.item:hover{background-color:transparent}.following.bar .top.menu a.item:hover{color:rgba(0,0,0,.45)}.following.bar .top.menu .menu{z-index:900}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .avatar>.ui.image{margin-right:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.right{text-align:right}.ui .text.small{font-size:.75em}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}footer{margin-top:40px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.mega-octicon.icon,.octicon.icon{font-family:octicons}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:120px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:120px}.install form label{text-align:right;width:40%!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:41%}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.repository.new.fork form{margin:auto;width:800px!important}.repository.new.fork form .ui.message{text-align:center}.repository.new.fork form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help{margin-left:260px!important}.repository.new.fork form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i{margin-right:0!important}.repository.new.fork form input,.repository.new.fork form textarea{width:50%!important}.repository{padding-top:15px;padding-bottom:120px}.repository .head .column{padding-top:5px!important;padding-bottom:5px!important}.repository .head .ui.compact.menu{margin-left:1rem}.repository .head .ui.header{margin-top:0}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .ui.huge.breadcrumb{font-weight:300;font-size:1.7rem}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .ui.avatar.image{border-radius:0}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .menu .clickable .name{padding-left:15px!important}.repository .page.buttons{padding-top:15px}.repository .issue.list{list-style:none;padding-top:15px}.repository .issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.repository .issue.list>.item .title:hover{color:#000}.repository .issue.list>.item .comment{padding-right:10px;color:#666}.repository .issue.list>.item .desc{padding-top:5px;color:#999}.repository .issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.repository .issue.list>.item .desc a.milestone:hover{color:#000!important}.repository .issue.list>.item .desc .assignee{margin-top:-10px}.repository.new.issue .comment.form .comment .avatar{width:3em}.repository.new.issue .comment.form .content{margin-left:4em}.repository.new.issue .comment.form .content .markdown{font-size:14px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository.view.issue .title{padding-bottom:0!important}.repository.view.issue .title h1{font-weight:300;font-size:3rem;margin-bottom:5px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .comment-list:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:96px;width:2px;background-color:#f3f3f3;z-index:-1}.repository.view.issue .comment-list .comment .avatar{width:3em}.repository.view.issue .comment-list .comment .content{margin-left:4em}.repository.view.issue .comment-list .comment .content .header{font-weight:400;padding:auto 15px;color:#767676;background-color:#f7f7f7;border-bottom:1px solid #eee;border-top-left-radius:3px;border-top-right-radius:3px}.repository.view.issue .comment-list .comment .content .header .text{max-width:78%;padding-top:10px;padding-bottom:10px}.repository.view.issue .comment-list .comment .content .markdown{font-size:14px}.repository.view.issue .comment-list .comment .content .no-content{color:#767676;font-style:italic}.repository.view.issue .comment-list .comment .content>.bottom.segment{background:#f3f4f5}.repository.view.issue .comment-list .comment .content>.bottom.segment .ui.image{max-height:150px}.repository.view.issue .comment-list .comment .ui.form .field:first-child{clear:none}.repository.view.issue .comment-list .comment .ui.form .tab.segment{border:none;padding:0;padding-top:10px}.repository.view.issue .comment-list .comment .ui.form textarea{height:200px}.repository.view.issue .comment-list .event{position:relative;margin:15px 0 15px 79px;padding-left:25px}.repository.view.issue .comment-list .event .octicon{width:30px;float:left;margin-left:-36px;text-align:center}.repository.view.issue .comment-list .event .octicon.octicon-circle-slash{font-size:30px;color:#bd2c00}.repository.view.issue .comment-list .event .octicon.octicon-primitive-dot{font-size:35px;color:#6cc644}.repository.view.issue .ui.segment.metas{margin-top:-3px}.repository .comment.form .ui.comments{margin-top:-12px;max-width:100%}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository .filter.dropdown .menu .items{max-height:300px;overflow-y:auto}.repository .filter.dropdown .menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.repository .filter.dropdown .menu .items .item.active{font-weight:700}.repository .filter.dropdown .menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.ui.comments .dropzone{width:100%;margin-bottom:10px;border:2px dashed #0087F7;box-shadow:none!important}.ui.comments .dropzone .dz-error-message{top:140px}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px} \ No newline at end of file +@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('embedded-opentype'),url(../fonts/octicons.woff?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('woff'),url(../fonts/octicons.ttf?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('truetype'),url(../fonts/octicons.svg?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6#octicons)format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-alignment-align:before{content:'\f08a'}.octicon-alignment-aligned-to:before{content:'\f08e'}.octicon-alignment-unalign:before{content:'\f08b'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beer:before{content:'\f069'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hourglass:before{content:'\f09e'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-jump-down:before{content:'\f072'}.octicon-jump-left:before{content:'\f0a5'}.octicon-jump-right:before{content:'\f0a6'}.octicon-jump-up:before{content:'\f073'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-microscope:before{content:'\f089'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-move-down:before{content:'\f0a8'}.octicon-move-left:before{content:'\f074'}.octicon-move-right:before{content:'\f0a9'}.octicon-move-up:before{content:'\f0a7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-playback-fast-forward:before{content:'\f0bd'}.octicon-playback-pause:before{content:'\f0bb'}.octicon-playback-play:before{content:'\f0bf'}.octicon-playback-rewind:before{content:'\f0bc'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-podium:before{content:'\f0af'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-puzzle:before{content:'\f0c0'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-split:before{content:'\f0c6'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-steps:before{content:'\f0c7'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .top.menu a.item.brand{padding-left:0}.following.bar .brand .ui.mini.image{width:30px}.following.bar .top.menu .dropdown.item.active,.following.bar .top.menu .dropdown.item:hover,.following.bar .top.menu a.item:hover{background-color:transparent}.following.bar .top.menu a.item:hover{color:rgba(0,0,0,.45)}.following.bar .top.menu .menu{z-index:900}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .avatar>.ui.image{margin-right:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.right{text-align:right}.ui .text.small{font-size:.75em}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}footer{margin-top:40px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.mega-octicon.icon,.octicon.icon{font-family:octicons}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:120px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:120px}.install form label{text-align:right;width:40%!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:41%}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.repository.new.fork form{margin:auto;width:800px!important}.repository.new.fork form .ui.message{text-align:center}.repository.new.fork form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help{margin-left:260px!important}.repository.new.fork form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i{margin-right:0!important}.repository.new.fork form input,.repository.new.fork form textarea{width:50%!important}.repository{padding-top:15px;padding-bottom:120px}.repository .head .column{padding-top:5px!important;padding-bottom:5px!important}.repository .head .ui.compact.menu{margin-left:1rem}.repository .head .ui.header{margin-top:0}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .ui.huge.breadcrumb{font-weight:300;font-size:1.7rem}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .ui.avatar.image{border-radius:0}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .menu .clickable .name{padding-left:15px!important}.repository .page.buttons{padding-top:15px}.repository .issue.list{list-style:none;padding-top:15px}.repository .issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.repository .issue.list>.item .title:hover{color:#000}.repository .issue.list>.item .comment{padding-right:10px;color:#666}.repository .issue.list>.item .desc{padding-top:5px;color:#999}.repository .issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.repository .issue.list>.item .desc a.milestone:hover{color:#000!important}.repository .issue.list>.item .desc .assignee{margin-top:-10px}.repository.new.issue .comment.form .comment .avatar{width:3em}.repository.new.issue .comment.form .content{margin-left:4em}.repository.new.issue .comment.form .content .markdown{font-size:14px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository.view.issue .title{padding-bottom:0!important}.repository.view.issue .title h1{font-weight:300;font-size:3rem;margin-bottom:5px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .comment-list:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:96px;width:2px;background-color:#f3f3f3;z-index:-1}.repository.view.issue .comment-list .comment .avatar{width:3em}.repository.view.issue .comment-list .comment .tag{color:#767676;margin-top:3px;padding:2px 5px;font-size:12px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.repository.view.issue .comment-list .comment .content{margin-left:4em}.repository.view.issue .comment-list .comment .content .header{font-weight:400;padding:auto 15px;color:#767676;background-color:#f7f7f7;border-bottom:1px solid #eee;border-top-left-radius:3px;border-top-right-radius:3px}.repository.view.issue .comment-list .comment .content .header .text{max-width:78%;padding-top:10px;padding-bottom:10px}.repository.view.issue .comment-list .comment .content .markdown{font-size:14px}.repository.view.issue .comment-list .comment .content .no-content{color:#767676;font-style:italic}.repository.view.issue .comment-list .comment .content>.bottom.segment{background:#f3f4f5}.repository.view.issue .comment-list .comment .content>.bottom.segment .ui.image{max-height:150px}.repository.view.issue .comment-list .comment .ui.form .field:first-child{clear:none}.repository.view.issue .comment-list .comment .ui.form .tab.segment{border:none;padding:0;padding-top:10px}.repository.view.issue .comment-list .comment .ui.form textarea{height:200px}.repository.view.issue .comment-list .event{position:relative;margin:15px 0 15px 79px;padding-left:25px}.repository.view.issue .comment-list .event .octicon{width:30px;float:left;margin-left:-36px;text-align:center}.repository.view.issue .comment-list .event .octicon.octicon-circle-slash{font-size:30px;color:#bd2c00}.repository.view.issue .comment-list .event .octicon.octicon-primitive-dot{font-size:35px;color:#6cc644}.repository.view.issue .ui.segment.metas{margin-top:-3px}.repository .comment.form .ui.comments{margin-top:-12px;max-width:100%}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository .filter.dropdown .menu .items{max-height:300px;overflow-y:auto}.repository .filter.dropdown .menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.repository .filter.dropdown .menu .items .item.active{font-weight:700}.repository .filter.dropdown .menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.ui.comments .dropzone{width:100%;margin-bottom:10px;border:2px dashed #0087F7;box-shadow:none!important}.ui.comments .dropzone .dz-error-message{top:140px}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px} \ No newline at end of file diff --git a/public/less/_repository.less b/public/less/_repository.less index 47f8fc1504..426be0c972 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -180,6 +180,14 @@ .avatar { width: @comment-avatar-width; } + .tag { + color: #767676; + margin-top: 3px; + padding: 2px 5px; + font-size: 12px; + border: 1px solid rgba(0,0,0,0.1); + border-radius: 3px; + } .content { margin-left: 4em; .header { diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 49f788e4a9..c4903a929f 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -427,7 +427,7 @@ func ViewIssue(ctx *middleware.Context) { ctx.Data["Title"] = issue.Name if err = issue.GetPoster(); err != nil { - ctx.Handle(500, "GetPoster: %v", err) + ctx.Handle(500, "GetPoster", err) return } issue.RenderedContent = string(base.RenderMarkdown([]byte(issue.Content), ctx.Repo.RepoLink)) @@ -441,7 +441,7 @@ func ViewIssue(ctx *middleware.Context) { if ctx.IsSigned { // Update issue-user. if err = issue.ReadBy(ctx.User.Id); err != nil { - ctx.Handle(500, "ReadBy: %v", err) + ctx.Handle(500, "ReadBy", err) return } @@ -475,10 +475,35 @@ func ViewIssue(ctx *middleware.Context) { } } + var ( + repo = ctx.Repo.Repository + tag models.CommentTag + ok bool + marked = make(map[int64]models.CommentTag) + comment *models.Comment + ) // Render comments. - for i := range issue.Comments { - if issue.Comments[i].Type == models.COMMENT_TYPE_COMMENT { - issue.Comments[i].RenderedContent = string(base.RenderMarkdown([]byte(issue.Comments[i].Content), ctx.Repo.RepoLink)) + for _, comment = range issue.Comments { + if comment.Type == models.COMMENT_TYPE_COMMENT { + comment.RenderedContent = string(base.RenderMarkdown([]byte(comment.Content), ctx.Repo.RepoLink)) + + // Check tag. + tag, ok = marked[comment.PosterID] + if ok { + comment.ShowTag = tag + continue + } + + if repo.IsOwnedBy(comment.PosterID) || + (repo.Owner.IsOrganization() && repo.Owner.IsOwnedBy(comment.PosterID)) { + comment.ShowTag = models.COMMENT_TAG_OWNER + } else if comment.Poster.IsAdminOfRepo(repo) { + comment.ShowTag = models.COMMENT_TAG_ADMIN + } else if comment.PosterID == issue.PosterID { + comment.ShowTag = models.COMMENT_TAG_POSTER + } + + marked[comment.PosterID] = comment.ShowTag } } diff --git a/routers/user/auth.go b/routers/user/auth.go index 4b29a29ec8..61e572f9bc 100644 --- a/routers/user/auth.go +++ b/routers/user/auth.go @@ -42,49 +42,22 @@ func SignIn(ctx *middleware.Context) { } // Check auto-login. - uname := ctx.GetCookie(setting.CookieUserName) - if len(uname) == 0 { - ctx.HTML(200, SIGNIN) - return - } - - isSucceed := false - defer func() { - if !isSucceed { - log.Trace("auto-login cookie cleared: %s", uname) - ctx.SetCookie(setting.CookieUserName, "", -1, setting.AppSubUrl) - ctx.SetCookie(setting.CookieRememberName, "", -1, setting.AppSubUrl) - return - } - }() - - u, err := models.GetUserByName(uname) + isSucceed, err := middleware.AutoSignIn(ctx) if err != nil { - if !models.IsErrUserNotExist(err) { - ctx.Handle(500, "GetUserByName", err) - } else { - ctx.HTML(200, SIGNIN) + ctx.Handle(500, "AutoSignIn", err) + return + } + + if isSucceed { + if redirectTo, _ := url.QueryUnescape(ctx.GetCookie("redirect_to")); len(redirectTo) > 0 { + ctx.SetCookie("redirect_to", "", -1, setting.AppSubUrl) + ctx.Redirect(redirectTo) } + ctx.Redirect(setting.AppSubUrl + "/") return } - if val, _ := ctx.GetSuperSecureCookie( - base.EncodeMd5(u.Rands+u.Passwd), setting.CookieRememberName); val != u.Name { - ctx.HTML(200, SIGNIN) - return - } - - isSucceed = true - - ctx.Session.Set("uid", u.Id) - ctx.Session.Set("uname", u.Name) - if redirectTo, _ := url.QueryUnescape(ctx.GetCookie("redirect_to")); len(redirectTo) > 0 { - ctx.SetCookie("redirect_to", "", -1, setting.AppSubUrl) - ctx.Redirect(redirectTo) - return - } - - ctx.Redirect(setting.AppSubUrl + "/") + ctx.HTML(200, SIGNIN) } func SignInPost(ctx *middleware.Context, form auth.SignInForm) { diff --git a/templates/.VERSION b/templates/.VERSION index 4d7844225d..6824b8df90 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.4.0813 Beta \ No newline at end of file +0.6.4.0814 Beta \ No newline at end of file diff --git a/templates/repo/issue/view_content.tmpl b/templates/repo/issue/view_content.tmpl index 564b937fa9..e6e4e1a720 100644 --- a/templates/repo/issue/view_content.tmpl +++ b/templates/repo/issue/view_content.tmpl @@ -22,8 +22,8 @@
- - + +
@@ -63,6 +63,17 @@
{{.Poster.Name}} {{$.i18n.Tr "repo.issues.commented_at" .HashTag $createdStr | Safe}}
+ {{if gt .ShowTag 0}} +
+ {{if eq .ShowTag 1}} + {{$.i18n.Tr "repo.issues.poster"}} + {{else if eq .ShowTag 2}} + {{$.i18n.Tr "repo.issues.admin"}} + {{else if eq .ShowTag 3}} + {{$.i18n.Tr "repo.issues.owner"}} + {{end}} +
+ {{end}}
@@ -89,7 +100,7 @@ - {{.Poster.Name}} {{$.i18n.Tr "repo.issues.closed_at" .EventTag $createdStr | Safe}} + {{.Poster.Name}} {{$.i18n.Tr "repo.issues.reopened_at" .EventTag $createdStr | Safe}}
{{else if eq .Type 2}}
@@ -103,6 +114,7 @@ {{end}} + {{if .IsSigned}}
+ {{else}} +
+ {{.i18n.Tr "repo.issues.sign_up_for_free"}} + {{.i18n.Tr "repo.issues.sign_in_require_desc" "/user/login" | Safe}} +
+ {{end}}