From 6dfee30bf0a6faef3211eb9fd1587c4fd8e87eef Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 25 Sep 2015 20:35:56 -0400 Subject: [PATCH] #1602 Wrong commit order on issue page when pushing multiple commits --- README.md | 2 +- conf/app.ini | 2 ++ gogs.go | 2 +- models/action.go | 10 +++++++++- models/repo.go | 12 ++++-------- models/update.go | 10 ++-------- modules/bindata/bindata.go | 4 ++-- modules/setting/setting.go | 12 +++++++----- templates/.VERSION | 2 +- 9 files changed, 29 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 77ed8be2a..9d31775df 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](public/img/gogs-large-resize.png) -##### Current version: 0.6.14 Beta +##### Current version: 0.6.15 Beta diff --git a/conf/app.ini b/conf/app.ini index 1ea4bf68d..213d94511 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -17,6 +17,8 @@ SCRIPT_TYPE = bash EXPLORE_PAGING_NUM = 20 ; Number of issues that are showed in one page ISSUE_PAGING_NUM = 10 +; Number of maximum commits showed in one activity feed +FEED_MAX_COMMIT_NUM = 5 [ui.admin] ; Number of users that are showed in one page diff --git a/gogs.go b/gogs.go index ca19c2f1b..7244c35f6 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.14.0925 Beta" +const APP_VER = "0.6.15.0925 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/action.go b/models/action.go index 2e158cbf1..07e4da8f9 100644 --- a/models/action.go +++ b/models/action.go @@ -189,7 +189,11 @@ func issueIndexTrimRight(c rune) bool { // updateIssuesCommit checks if issues are manipulated by commit message. func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string, commits []*base.PushCommit) error { - for _, c := range commits { + // Commits are appended in the reverse order. + for i := len(commits) - 1; i >= 0; i-- { + c := commits[i] + fmt.Println(c) + refMarked := make(map[int64]bool) for _, ref := range IssueReferenceKeywordsPat.FindAllString(c.Message, -1) { ref = ref[strings.IndexByte(ref, byte(' '))+1:] @@ -350,6 +354,10 @@ func CommitRepoAction( } } + if len(commit.Commits) > setting.FeedMaxCommitNum { + commit.Commits = commit.Commits[:setting.FeedMaxCommitNum] + } + bs, err := json.Marshal(commit) if err != nil { return fmt.Errorf("Marshal: %v", err) diff --git a/models/repo.go b/models/repo.go index 34de3d14d..f3a32d687 100644 --- a/models/repo.go +++ b/models/repo.go @@ -777,19 +777,15 @@ func CountPublicRepositories() int64 { } // RepositoriesWithUsers returns number of repos in given page. -func RepositoriesWithUsers(page, pageSize int) ([]*Repository, error) { +func RepositoriesWithUsers(page, pageSize int) (_ []*Repository, err error) { repos := make([]*Repository, 0, pageSize) - if err := x.Limit(pageSize, (page-1)*pageSize).Asc("id").Find(&repos); err != nil { + if err = x.Limit(pageSize, (page-1)*pageSize).Asc("id").Find(&repos); err != nil { return nil, err } - for _, repo := range repos { - repo.Owner = &User{Id: repo.OwnerID} - has, err := x.Get(repo.Owner) - if err != nil { + for i := range repos { + if err = repos[i].GetOwner(); err != nil { return nil, err - } else if !has { - return nil, ErrUserNotExist{repo.OwnerID, ""} } } diff --git a/models/update.go b/models/update.go index f381d6fd0..2fd00ad7e 100644 --- a/models/update.go +++ b/models/update.go @@ -23,10 +23,6 @@ type UpdateTask struct { NewCommitId string } -const ( - MAX_COMMITS int = 5 -) - func AddUpdateTask(task *UpdateTask) error { _, err := x.Insert(task) return err @@ -147,10 +143,8 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName &base.PushCommit{commit.Id.String(), commit.Message(), commit.Author.Email, - commit.Author.Name}) - if len(commits) >= MAX_COMMITS { - break - } + commit.Author.Name, + }) } if err = CommitRepoAction(userId, ru.Id, userName, actEmail, diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index e2cd95fd7..41e2a1ac7 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -284,7 +284,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7a\xcb\x8f\xe3\xc6\x76\xfe\x9e\x7f\x45\x59\xfe\xf9\xe7\x71\x20\xa9\x5f\x9e\x87\xdb\xee\xc4\x6a\x89\x52\xf3\x8e\x5e\x26\xa5\x69\x8f\x07\x0d\x36\x9b\x2c\x49\x74\x53\xa4\x86\x45\x76\x8f\x8c\x2c\xae\x91\x45\x80\x6c\x13\x24\x9b\x20\x48\x16\x41\x80\x9b\x07\x72\x91\xcd\xbd\x09\xb2\x32\xb2\x9f\xf9\x1f\x2e\x7c\x93\xff\x22\xdf\x39\x45\x4a\x54\x4f\xbb\x91\x0b\x24\xb0\xd1\x22\xeb\x71\xaa\xea\xab\x73\xce\xf7\x55\x71\x3e\x14\x43\xf3\x85\x69\x0b\xfe\x33\x18\x75\xac\xee\x4b\x31\x39\xb3\x1c\xd1\xb5\xfa\xa6\xf1\xa1\x18\xf7\xcd\x96\x63\x8a\x41\xeb\xb9\x29\xda\x67\xad\x61\xcf\x74\xc4\x68\x28\xda\x23\xdb\x36\x9d\xf1\x68\xd8\xb1\x86\x3d\xd1\x9e\x3a\x93\xd1\x00\x85\xc3\xae\xd5\xd3\x3d\x8d\xcf\x45\x6b\xb5\x12\xb1\xb7\x94\x22\x5b\x78\x99\x50\x8b\xe4\x56\x89\x24\x16\xf2\x46\xa6\x6b\xb1\xf2\xe6\xa8\x08\xb3\x48\x1a\xad\xf1\xd8\x1d\xb6\x06\xa6\x38\x11\xbd\x64\xae\x8e\xf1\x57\xf4\xc2\x4c\x38\x32\xbd\x09\x7d\x09\x4b\xed\x85\x17\xa3\x39\xca\xc2\x99\x58\x27\xb9\x48\xf3\x58\x44\x89\xef\x45\xd1\xda\xb0\xa7\x43\x77\xea\x60\xf6\x27\x62\x1e\x66\x68\x6d\x86\xd9\x42\xa6\xa2\x16\xc8\x9b\x5a\x5d\xd4\x56\x69\x12\xd4\x44\x82\x82\x4c\xaa\x0c\x25\x81\x9c\x79\x79\x04\x5b\x4a\xb7\x61\x0b\x58\x3a\x4d\x00\xef\x86\xf1\x2a\x95\xab\x44\x85\x59\x92\xae\x2f\x0c\x7b\x34\x9a\x88\x13\xc3\x69\xdb\xd6\x78\xe2\x4e\x5e\x8e\xa9\xd9\x95\xa7\x16\x68\x97\x87\x17\x18\x6f\x98\x2f\xaf\x30\x5e\x32\x13\x9b\x7e\xa1\x54\x7a\xd5\x5e\x2a\x79\xe5\x32\x10\x61\x8c\xd5\x4b\x21\xdf\xac\xa2\x04\xa5\x04\x80\x61\x7e\x3d\xee\x8f\x6c\xd3\x1d\xb7\x7a\xc0\xd1\x1d\x4e\x07\x30\x7e\xb8\xbf\x63\x34\x54\x2a\xff\x69\x73\x6c\xc6\x72\x9c\xe9\x1d\x23\x07\xfb\x3c\xbf\xa6\x17\x2c\xc3\x78\x77\x96\xb9\x92\xe9\xc3\xf6\x08\xce\x5d\x73\x8f\xf7\xdf\x5f\xe8\x83\x26\x6c\x73\x3c\x7a\xd0\x44\x9c\x64\xd8\xdc\x87\x8d\x0c\x47\x13\xab\x6d\x3e\x68\x26\x49\xe7\x5e\x1c\x7e\xe7\x65\x21\x5c\xeb\x21\x5b\x23\xbb\xf7\x9e\x21\xe3\xd5\xd2\x4b\xaf\x83\xe4\x96\x11\x32\x63\xef\x2a\x92\x62\xe1\xa5\x81\x88\x42\xf4\xbb\x4a\xa5\x77\x8d\x0d\xcb\x64\xac\x60\xde\x30\x87\xad\xd3\xbe\xe9\x9e\xb5\xec\x8e\xdb\xb7\x86\xa6\x7b\x6a\x9b\xad\xe7\x30\x35\xf3\x22\x25\x61\x0d\xc0\xc2\xb9\x2f\x8c\xb1\x3d\x9a\x8c\xda\xa3\x3e\xaa\x16\x59\xb6\x32\x3a\xa3\x41\xcb\x1a\xe2\x8d\x7d\x76\x91\xa8\x8c\xdd\xca\x9d\xda\xd4\xe4\xa3\x47\x65\xfb\x4f\xd4\xf1\xde\xde\x47\x8f\x74\x73\xbc\x7c\xf4\xe8\x6c\x32\x19\xbb\xe3\x91\x3d\xf9\x44\xed\x19\xfc\xd2\xea\x74\xe0\xea\xc6\xa6\x02\x06\x8e\xf6\xf7\x09\x94\x4e\xa8\x78\x01\x8e\x73\x26\x66\xd2\xcb\x72\x00\x71\xbb\x90\x31\x41\x2d\xbc\x1b\x2f\x8c\xa8\xda\xe8\x58\x0e\x2f\x83\x9a\x95\x53\xc7\x73\x69\xec\xf0\xb0\x62\xaa\xdd\x19\x52\xbc\xc6\x84\x64\x11\x48\xcb\x24\x00\x98\xdd\x2e\x03\x50\x44\x8d\x36\x52\x1a\xb6\x47\xd3\x09\xfc\xa7\x3f\xea\x6d\xaa\x3e\x17\x3d\x19\xcb\xd4\xcb\xb0\x35\x99\x5c\xa9\x63\x94\xfc\x3f\xe1\x07\xd8\x9a\x6c\xb1\x97\x25\x7b\x73\x04\xfe\x9e\x9f\xab\x2c\x59\xee\x11\x64\x8a\x1b\x34\xb9\x5c\xf8\x32\xcd\x44\xc3\xf7\x4e\xb2\x34\x97\xa2\x11\xe4\x29\x6f\xf7\xc9\xb3\xa7\x4f\xf6\x17\xfb\xcb\x7d\x25\x1a\x84\xe9\xc9\x72\x4d\x3f\x4d\xf9\xc6\x5b\xae\x22\xd9\xf4\x93\xa5\xf1\x39\xec\x8c\x52\x31\x4b\x93\xa5\xf0\x44\x73\x35\x7b\x23\x66\x61\xc4\x51\x98\xa4\x19\x5c\x84\x6b\x90\x2f\xc4\x79\x18\x07\x94\xa1\x68\xb0\x70\x16\xfa\x7a\xae\x14\xa9\x8f\x82\x04\x56\x08\xc4\x19\xbc\x4d\x66\x22\x4b\x8a\xfe\xdc\x71\x95\x86\x37\xd4\xf8\x5a\xae\x3f\xd1\xeb\x4a\x56\x70\x18\x15\x89\xd5\xb5\xaf\x0e\x0e\x45\x03\xe0\x91\x55\x1e\xbd\x91\xe4\x59\xf1\x26\x97\xa2\x11\x27\xe8\xa6\xfe\x67\xbd\xd0\xb2\xec\x44\x15\x8a\x1e\x02\xa9\x8c\xb6\x69\x4f\x5c\x4a\xba\x80\xbb\x0a\xe1\x5e\x39\x8c\xf1\xdc\x7c\x79\x6f\x83\xc2\x22\x86\x9f\xae\x56\x88\xa7\x08\x7b\x1d\x51\x54\x65\x12\x08\xd2\xa2\xbc\x38\x00\x0a\x80\xdb\xd7\xb8\xd1\x7e\xa1\x79\x25\x85\x32\x04\x28\x25\x57\x03\x58\x94\xc1\xa9\x58\xbe\x91\x7e\x0e\x80\x0d\x67\xd2\x42\x10\xbb\xec\xef\xe3\xd6\x04\x3e\xa7\xa9\x21\x22\x88\x29\x68\xf5\xa0\xbd\x6f\xac\xb1\x50\xf9\x8a\x60\x2d\x03\x8d\xcb\xb6\x2e\xd4\xc7\x64\xc2\x78\xae\xa9\x03\x5b\x81\x2d\x89\x1b\x51\x32\x9f\x63\x1b\x39\xa7\xd5\x85\xef\xc5\xe2\x4a\x8a\xda\x22\x59\x4a\x9d\xf3\x8b\x74\x5b\x33\xfa\x2d\xe6\x2a\xca\x01\x84\x03\xb5\x40\xc4\x06\x5e\xe6\x21\x99\xcb\x8b\x0a\x6f\x2c\xd7\xea\x75\xc4\xcc\x01\x6f\x9a\xa7\x52\x69\x4b\x28\x0c\x33\x79\x84\x8a\x30\xfb\x58\x11\x0d\xa5\xc2\x5f\x24\xc4\x50\x9d\xd3\x92\x18\xb8\xaf\x71\x36\x72\x28\x94\x0e\x0e\x9f\x36\xf7\xf1\xdf\xc1\xf1\xd1\xd1\xfe\x13\xa3\xe0\x38\x72\x69\xa3\x20\xac\x34\x49\x32\x63\xdc\x72\x9c\xf3\x0e\xe3\xd2\xa5\x81\x2a\xc3\xc6\xd1\xba\x2e\x64\xc9\x67\x3a\x28\x69\x66\xa9\x7c\x9d\x87\x69\xb1\x44\xa4\x9c\x70\xb6\x6e\xcc\xf2\x28\xaa\x21\x92\xfb\x1b\x2e\xd3\xed\x4b\xb3\xe5\xfc\x79\x4f\x6b\x59\x18\x5c\xd5\x0c\xbd\x21\x82\x50\xe0\x50\x6b\x06\x57\x00\xa5\xe0\x0c\xca\x67\x7e\x9e\x86\x19\x58\xd0\x1a\x62\x1f\xfb\x7d\x04\x75\xfb\x79\x65\x4b\x3e\xf8\x40\x6b\x02\x2d\x19\x26\x23\xf1\xdc\x34\xc7\xe2\xe5\x68\x6a\x0b\x5e\x61\xa7\x35\x69\x09\xa7\xd5\x35\x3f\xf8\xc0\x70\xcc\xb6\x6d\x4e\x5c\xf8\x22\x0c\x7c\xf0\xe1\x97\xdd\x8e\x79\x6e\xe3\xff\xff\xff\x7b\x8f\xc8\x23\xf2\x2c\xa1\xcd\x84\xd7\xa7\x72\x29\x39\xbd\x07\x1e\x42\x03\x69\xc4\x1a\xba\xb6\x39\x30\x07\xa7\xc8\x2a\x9d\xd6\x4b\x07\xfd\x9f\x1a\xed\xd1\xe8\xb9\x65\x32\xf3\x57\x80\x75\xbd\x5b\xa9\x68\x6b\x8b\xea\x4d\xbf\x6a\x9b\x30\xf6\x53\x19\x84\x1a\x1b\x9b\xf4\x88\xa2\x30\x4e\xde\xac\x85\x97\x03\xeb\x38\x2b\x7d\x73\x21\xbd\x00\x13\x61\x15\x53\x30\x27\xbf\x80\xde\xa0\x97\x1c\x50\x93\x3d\xfa\xfa\xa5\xdb\x9a\x4e\xce\xcc\x21\xdc\x1c\xae\x3e\xda\xa8\x91\xaf\x1b\xe7\xe6\x29\x55\x35\xa8\xa0\xa0\x07\xb8\xcb\x85\xd1\x6a\x4f\xac\x17\xa6\xdb\xc6\x3e\x81\x48\xf0\x34\xb0\x86\xc8\x99\xb4\xb0\x83\x67\xfb\x30\xee\x98\x14\x2c\xe4\x16\x3f\xd9\x08\x31\xcb\xb3\x91\xf0\x7e\x24\x24\x3f\x89\x67\x61\xba\x14\xb2\xb1\x44\xa2\xe7\xf0\x48\xe5\x3c\x54\x99\xce\x95\xb0\xd9\xb3\x1c\x4a\xcb\x26\xb8\xa5\xef\xb2\x54\xb3\x07\x95\xad\xec\x24\x20\x63\x66\x8a\x28\x4a\x6e\x8b\xce\x18\x80\xbc\x85\x1d\x42\x00\x34\x4e\x09\xbe\x9f\xe4\x71\xc6\xce\xb9\xcd\xf9\x6c\xde\xe6\xf5\x57\x8c\xf2\x14\x97\x48\x39\x42\x85\x73\x66\x11\x4c\xf5\x26\x94\xb7\x30\xbb\xce\x16\x88\xe6\x26\x66\xf6\xd5\xd4\x82\x06\x72\xac\xde\x10\x3b\xfd\xc2\x32\xcf\x2b\x16\xda\x9e\x8f\x04\x03\xf6\xca\x3c\xcc\x45\x89\x55\xe8\x13\xb1\x95\x29\xa2\xdd\x6a\x9f\x99\x6e\xeb\x05\xfc\xcc\xae\xf4\x1a\x10\x06\xa4\x30\x66\xc5\x4e\x96\xed\x49\x51\x74\x5f\xba\x84\x41\xb5\x39\xa5\xf9\x40\x66\xe8\x75\xcc\x8c\x4d\x3c\x0c\x31\xb9\xc8\xaf\x88\x45\x28\x34\xc2\x4c\x69\x92\xd2\x72\x6c\xef\xe0\xc9\xe3\xd2\xe6\x43\xbe\xb0\x19\xe4\xa7\xda\x8e\x7e\x0a\xba\x4e\xc2\xbb\x81\xd5\xfb\xd7\x02\xf0\x87\xcb\x7c\x49\x14\x00\x24\xbf\x03\xaf\x63\x72\xd8\xf3\x14\x69\x62\x95\xe8\xb4\x98\xad\x57\x5b\x0e\x86\xaf\x58\x83\xe9\x80\xa2\x0d\xc0\x7e\x03\xa0\xce\xcc\x9d\xc8\x2d\xc4\x8e\xef\xad\x32\x7f\xe1\x89\x1b\x2f\x0a\x03\xed\xf3\xef\xb9\xce\x06\xea\xf1\x04\xd1\x0e\x1b\x44\xc3\x70\xe7\x5b\x79\xb5\x48\x92\x6b\x4a\x9d\x67\xf8\x15\x99\xa7\xae\xc5\xeb\x5c\x82\xa3\x23\x19\xcf\x41\x14\x5f\x4d\x4d\xe8\xd2\xbe\x39\xec\x71\x9a\x39\x28\x74\x8a\x8c\x42\xc4\x1c\xd4\xff\x52\x12\xaf\xc1\x2b\x90\x68\xb0\x0a\x65\x74\x4c\xf2\x74\xdb\x9d\x58\x03\x13\x2a\x82\x54\x1a\xe5\x06\xf6\xc8\x30\xe6\x74\x24\x2b\x0c\x4d\xb3\x73\x9e\x5b\x63\x77\xd2\x77\x5c\xf4\xa3\xc3\xcb\x76\x89\x5b\x91\xb8\x08\x89\xc9\xd7\x30\x81\xc5\x2d\xf5\x32\x31\xaa\x84\x6f\x69\x71\xf8\xbe\x74\xa6\x28\x22\x29\xa7\x17\xdf\xa9\x98\x3d\xcd\x67\x33\xe6\x4a\x5a\x22\x59\x07\x7e\x71\x2c\xa3\x3a\x76\x47\xae\xe8\x90\x02\x37\x0d\x99\x1b\x8b\xd3\x4a\x90\xc4\x1f\x83\xbe\x63\x2c\xe2\x96\x14\x2a\x57\x36\x91\x10\x87\x1d\xf7\x74\xda\xed\x92\x58\x32\x87\x1a\x20\x9a\x37\x65\x1b\x24\x6f\x30\xf0\x5a\x8b\x58\x0e\x69\x7d\x58\x72\xa6\xa7\x3f\x33\xdb\x13\x96\x8d\xe5\xc1\xe9\x13\x55\xba\xbc\x16\xa0\x24\xb7\x96\xec\xcb\x6a\x99\xad\x9a\x73\x7a\x26\x3f\x3e\x7e\xfc\xec\x29\xea\xbe\xfa\xaa\xa8\x78\xfd\x9a\x4b\x0f\x09\xe3\x61\x92\xc9\x3a\x4d\x98\xf9\x9c\xb4\x8d\xc4\x86\x68\x3f\xab\x7d\xfa\xe4\x31\x58\xc7\x19\x4c\xc6\x0e\x4a\xa2\x88\x38\x16\xb9\x30\x68\x22\xc0\xc9\xf5\xc0\x0d\xf6\x04\x7b\x40\xc7\x3b\xee\x8b\x81\x68\xfd\x29\xb6\x75\xb9\x84\x21\x2c\x83\xf4\x85\xdd\x6d\x8b\x27\x9f\xee\x7f\xd6\x14\x96\x1e\x48\xcf\xb7\xe4\x7d\xb5\x35\x04\x88\x78\x20\x2f\xba\x05\x09\x6c\xc6\x2b\x99\xb5\x22\x51\xcf\xcc\xfe\x88\xb4\x93\x76\x56\x2d\x78\x49\x06\x72\xce\xa6\xb3\x40\x10\xd2\x7e\x21\xa9\x37\x37\xd1\xc1\x7d\xd8\x4a\x9b\xe5\xd0\xb6\x03\x39\xff\xae\xc5\x9d\xf3\x22\xab\x45\xb5\x46\x62\x5c\x62\x2e\x68\xe7\xd2\x84\x0a\x6e\xd9\x06\xad\x66\x64\x5e\x61\x55\x4e\x26\xd5\x45\x37\xc5\x08\x09\x94\x96\x85\x42\x32\x8d\x91\x95\x8c\x66\x0d\xca\x94\xc0\xab\xd2\x51\x69\x27\xdf\x38\xb8\x4e\xac\xc2\x8f\x42\xac\xaa\xda\x90\x64\x85\x4b\x72\xd0\xea\x52\xfe\xd9\x4a\xf3\x7b\x24\xa2\x76\xf0\x87\x34\x62\xd1\x62\x2b\x12\xd9\xc5\xb4\x94\x0e\x02\x64\x1e\x08\x2e\xda\xd1\xc7\x47\x87\x87\x4d\x31\xa1\x45\x14\xfa\xeb\x5b\xca\xf8\x78\x94\xec\xb8\x9b\xc6\x58\x21\xad\xff\xb2\x46\x1e\x5e\x13\x5f\x70\xf5\x97\x15\xb9\xfe\xfb\x97\x42\x07\xa8\x30\xba\xf6\x68\xc0\x92\x68\xc0\xb3\xd8\x52\x2f\x13\xd2\xca\x53\xea\x36\x49\x83\x42\x47\x6d\x25\x94\xf1\xca\x27\xc2\xd8\x91\x73\x72\x89\xd8\xd7\xaa\x09\x51\x55\xe3\x79\x50\x29\xb7\xbc\x73\x1f\x50\x34\x36\x5a\x1d\x64\x3b\x66\x71\x5d\x52\x8a\xa8\xa2\xbe\x50\x66\xbd\x36\xa2\x13\x24\x89\xec\x59\xc9\x62\x3b\x16\x9f\xec\x43\x3b\xc1\xd2\x8b\x16\x11\xce\x93\xfd\xd2\x90\x9e\x8b\xd6\x62\x95\xb9\xc0\x40\x2c\x7d\xad\x3d\x12\x02\x51\x63\x87\x5e\xdc\xe1\x18\x7c\x9f\x61\xe1\xd7\x27\x99\xbf\xaa\x53\xe5\xc9\xf1\x93\xa3\xa7\x9f\xd5\x4b\x40\x4e\x96\x9e\xef\xa5\xf0\xda\xe0\xea\x64\xbf\xbe\x4a\x92\xc8\x25\xbe\x38\x41\x66\xa9\x87\x41\x24\xdd\x22\xe9\x9e\x68\x09\x51\x8e\x7c\x2c\x2e\xb7\x62\xf5\xe0\xe0\xf0\xe0\xe0\xb2\x08\x35\x96\x2d\x8a\x8e\xbf\xf7\x63\x4a\xa7\x82\x2d\xb6\x1a\xda\x42\x3f\xdf\x87\x2b\x78\xef\x85\xd5\xd9\x05\x76\x9c\x26\x37\x21\xc9\x2c\xd6\x30\x73\x84\x1e\xad\x5f\xe9\xe9\xa1\xc9\x31\xc7\xd4\xc2\xbb\xa1\xbd\x5f\x97\xad\xd6\x92\xee\x7a\x68\x78\x64\x33\x3d\xc3\xed\x11\x05\xa2\xb9\x39\x6f\x8a\x4b\x16\xb6\x45\xad\xba\xfc\x3f\x43\x91\x16\x7c\x0c\x6d\xd9\xc0\x6f\x23\x48\x89\xdd\xf6\xb8\x50\x04\x2a\x2e\x27\x0c\x3e\x45\xae\x2c\x67\x46\xca\xff\xb8\x1c\xef\xcb\x72\x8e\x6e\x46\x39\xed\x72\x03\x93\x5b\x5c\xa9\x15\x12\xbd\x5c\x09\xc6\x74\x8a\x25\xfb\x60\xde\x50\x6a\x51\x5a\x68\xde\x22\x1d\x85\x6e\x14\x5e\x4b\x57\x6b\x17\xf4\xb0\x34\x19\x51\xc2\x29\xf1\x82\xcf\xb2\xda\x29\xdc\xb9\x9a\xe8\x74\xda\xd0\x06\xa1\xdc\xa7\xb6\xf9\xbe\x78\x50\x38\x0b\xeb\xf1\x77\xfa\xb2\x3c\x28\x44\x03\x09\x59\x6d\xa5\xd4\x0d\xdb\xa9\x23\x7a\x08\xc7\x4d\x08\xed\x18\x79\x06\x9e\xd8\x37\x7a\x6d\xb7\x8c\x1e\xd6\x04\x30\xa2\x2b\xb6\x56\xa2\x70\x26\xd9\xce\x3d\xdd\x1d\xd3\x71\x48\x90\xf7\xad\xae\xb9\xdb\xdf\x78\x55\x08\x49\xf2\xea\x09\x51\x5e\xe4\xf9\x92\xd4\x69\x51\xce\x80\x6f\xcf\x5e\x3a\x67\x6b\xff\x7e\x0d\x31\x96\xdf\xf1\xef\xa2\x1e\x23\xda\x2f\xac\x36\x8d\x53\x50\xb1\x96\xa6\xee\x74\xdc\x1f\xb5\x3a\x6e\xf5\xbc\xa5\x35\xad\xe2\xeb\xcd\x30\x96\x4a\x16\x17\x73\x94\x43\x71\xae\x4c\x50\x50\x0b\xf2\x44\x2d\xf2\xa4\x86\x46\x18\xd9\x2b\x32\x73\x29\x87\x15\x8e\xa0\x3e\xd6\x4d\xfb\xac\x75\x2b\x64\xab\x1f\x37\xe7\xa9\x6e\xc0\xda\x55\x3f\xee\x19\x3d\xbb\x98\x8a\x83\xd3\x19\xcf\xb0\x6c\xb6\xa1\xc5\xb2\x49\xe5\x46\xcb\xcb\x32\xe4\x07\x50\x78\x46\x40\x9d\x2f\x24\xc3\xb1\x2d\x55\x4c\xb1\x92\xfd\x01\x72\xa0\xa3\x21\x51\x04\xe4\x25\x6d\xf7\x65\xe1\x08\xdb\xdd\x1f\xd3\x5d\x01\x91\x5d\xc5\xc8\x9d\x8e\x1a\x9e\x6d\xf5\xe5\xce\x39\xb5\x52\x41\x97\x3b\xb1\x24\x68\x96\xa4\xe0\xf9\xe4\x42\xc7\x21\x28\x61\x55\x04\x5a\xb8\x84\xbe\xdb\xfb\x76\x25\xe7\x7f\xa8\x1f\x57\xf1\xdc\xc0\x49\x76\x74\x6e\x76\xf8\xd0\x4e\xe7\xa9\x7b\x1b\x11\xf5\xbc\xd1\x6a\x1b\xc4\xcd\x5a\x91\xf2\xcb\xee\x5c\x8f\x0e\x07\xa7\xc6\xa0\xf5\x35\x8b\x6c\x58\xfa\xb4\xe8\x16\x6f\xb4\x27\xf5\x51\xac\x7e\xf2\x55\x94\x78\x77\x40\x82\xd6\xa4\xde\x44\xbc\x0e\xab\x5d\xe3\x15\xf9\x32\x81\xed\xac\xa4\x0f\x5e\x97\xfa\x8a\xa5\xe0\x45\x02\x8e\x0e\xfa\x6b\x81\xf4\xb3\xa2\x0b\x16\x02\x45\xde\x41\x10\xac\x8c\x24\x7e\x54\x1a\x01\x3b\x15\x0a\x0b\xcd\x11\x68\x74\x9d\x4c\xdb\xd6\x1a\x3a\x56\xbb\x2e\xa6\x71\xf8\xa6\xe3\x91\xfc\xb3\xf3\xab\x75\xf1\xd4\x6d\x3f\x3b\x3c\x2c\x7f\xbf\xd1\x0f\x8f\xf7\xeb\xa5\xe9\xcd\x83\xae\x3a\x3a\x3a\xfa\x6c\xf3\x30\xf4\xe2\xa4\x2e\x9e\x87\x38\x58\x48\xc8\x27\x27\x03\xbf\x17\x3f\x03\x68\xba\x70\xf3\xec\xa7\x09\x13\x20\xbf\x52\xaf\x82\x1c\x79\x33\xab\x5a\xdd\xbb\xa2\x73\x42\x05\x06\x25\x65\xe9\xef\xf3\x24\xf2\x70\x8c\x4c\xd2\xf9\xde\xea\x7a\xbe\x47\xe8\xed\x7d\x88\xa7\x06\xd2\xae\xca\x3c\xf2\x92\xee\xc8\x1e\xb4\x34\x97\x45\xc9\x5c\x5f\xe9\x6f\xef\xa2\x4a\x4e\xa3\xf6\x89\x26\xb3\x92\xd4\x88\x8d\xe9\x97\xd4\xb2\x8e\xfd\xf2\xbe\xe8\x4e\xf8\x97\x7d\x4b\x65\x06\xd5\xeb\xd1\x46\x28\xb9\xf2\xf8\xd6\x73\x89\x96\x21\x54\x0e\x5f\x9f\x96\xbe\x59\x76\xab\xb3\x93\xd4\x8c\xe2\xde\xa6\x28\xfd\xdf\x3c\x6a\xdc\x3d\x65\x70\x06\x2d\x17\x3e\x49\x91\xfa\x68\x99\x1d\x79\x95\xcf\xe9\xc1\x02\xf6\xf4\x7b\xee\xa5\xbc\x7e\x33\x4d\x93\x94\x1e\xda\x69\x48\x77\x23\x77\xd9\x5d\x5b\x30\xfa\x38\xdc\x92\xca\xe1\x57\xa3\x54\x3a\x25\x36\xbc\x74\x7d\x6b\x40\xdb\xd0\x2c\xca\x2f\xca\x6e\x9b\x0e\x0c\xc6\xdd\xd6\x54\xb8\x6d\xfa\xb9\x96\x9b\x3a\xef\x28\xba\xb5\x49\xe0\x16\xf0\x6e\x34\x15\x69\x92\xe1\xf9\x91\xba\x25\x0f\xe4\x10\x4c\x28\x31\xd0\x41\xa5\x90\x16\x9f\xbc\xcf\x57\xfd\x51\xcf\xb5\x47\x13\x2d\x9a\x8b\x54\x45\x81\xcc\x1f\x02\xb6\xd1\x4c\xc7\x1d\xec\x22\xcd\x66\xc7\x06\x63\xba\xaf\x83\x99\x6e\xc6\x9d\x12\x67\x46\x7a\x93\x48\xd4\x22\x9c\x65\x0f\xd9\x39\x7c\x06\xd1\xe3\xc5\x30\x28\xbe\xf8\x02\x6f\x75\x71\xf8\xf8\x49\x25\xc5\xb8\xce\x99\xd5\xe5\x6b\xfa\x67\xcc\x81\x73\xca\x83\xbc\xea\x00\x3a\x79\xfd\xfe\xba\x3a\x2d\xab\xff\xf2\xbd\x95\x99\x6f\x56\x61\xca\xb9\x03\x87\x2b\x4c\x87\x0c\xd0\x5c\x1e\x05\x32\x92\x74\xc7\x33\xa3\xab\x9f\x25\xa6\x4d\x2d\x76\xe1\x7a\xca\x93\xd9\xdc\xc3\x55\xb6\x39\xbe\x6f\x8f\xe3\xea\xae\xd9\xb2\x10\xb8\x5a\xdd\x52\x36\xd3\x9f\x03\x0b\x3c\x96\x20\x75\xe4\xdf\x7b\xa4\x88\x6d\x42\x0a\x0d\x71\xf2\x75\xc1\xe7\x03\xa7\xfa\x69\x61\x82\xfe\x88\xb5\x74\x63\x9b\xcf\x80\x15\x25\x0d\x23\x11\x86\x7b\xc8\x6a\x55\xdc\x14\x61\x01\x6d\x48\x2e\x9f\x23\x3b\xea\xd8\xcf\x83\xd5\x1d\xbf\xa7\x26\xd5\x8f\x3d\x78\xe7\xcb\x90\x8a\x70\x2f\x3e\xd7\x6c\x2e\x61\x39\x93\xdc\x41\x89\x0a\xab\x28\x3d\x74\x01\xb0\x3b\x81\x4e\xe8\xcd\x63\x0c\x17\xfa\x25\x74\xc5\x11\x95\xc4\x47\xad\x72\x59\xf0\x60\xc3\x3b\xb7\x07\x85\xf0\xff\x5d\x8f\x5e\xbc\xbb\x92\xb4\xef\xf6\x22\x3e\xd9\xb2\x73\x91\xf3\x5e\xd5\x0e\xaa\x27\xbe\x5a\xbd\x76\xb8\xf3\x7e\x41\x7b\x62\xd2\x25\x90\x53\x81\x6d\x93\x76\xef\x42\xb7\xbd\xbf\xdf\xc2\xb7\x7b\x8f\x2f\x76\xae\xd4\x8d\x8e\x4d\xb6\xb9\xdd\x29\xfa\x05\x74\x65\xf1\x06\xa4\xa2\xa7\x77\xcc\x37\xf2\xc7\xf4\xe7\xcb\xcd\xb7\x3a\xbe\xf7\xfb\x03\xa4\xde\x14\x82\xf7\x24\xcf\x66\xcf\x0c\xf2\x1a\x7d\xda\x4c\x93\xea\xb7\xc3\x34\x8f\x63\xca\x33\x54\xcc\xf7\x61\xcc\xfc\x61\x12\x84\xfc\xad\xba\x59\xb9\x4e\x2a\x22\xd1\xce\xe3\x6a\x6b\x76\x5d\xfe\x86\x02\xee\x4a\xa1\x8c\xf8\xe3\x74\x6b\xe2\xf2\xcd\xc8\x56\x98\xd1\x17\x9b\x80\x89\x25\xa4\xdc\xac\xf4\x4c\x9a\x39\x17\xba\x45\xe1\x85\xe1\xb4\xcf\xcc\xce\x94\xe5\xd7\x97\x3a\xd0\x0e\x16\x06\xef\x54\xf9\x81\x9b\xae\xb8\x23\xba\x4b\xa4\x7b\xc6\xc2\x0a\x7d\xdd\x75\x75\xb9\xcb\xe5\xf7\x19\x3a\xfc\x94\x3e\x04\xb5\xd2\x79\xae\x75\x20\xc5\x32\xf3\x1e\x7c\xe4\x63\x1c\x39\xc4\x4c\xf9\xd7\x1f\x97\xb0\xd6\x1a\x8d\x3c\x4e\x49\x44\x31\x4e\x8d\x46\xe6\xcd\x15\xd1\x25\x31\x39\xf3\x7d\x12\x6f\x18\x3d\xcc\x1a\xca\x5f\xb2\x7a\x0d\x12\x5f\x71\x01\x59\xdb\x3b\x68\x3e\x6d\x3e\x36\x5a\x76\x8f\x52\x8f\xc1\xca\x99\x6e\x47\xb7\x9f\xeb\xf5\xb7\x2a\x72\xf3\x12\x11\x9e\xbf\xcb\x2b\xa2\x3a\x60\x72\x07\x50\xde\x87\xfb\x97\x67\xbc\xc2\xc8\x17\x9c\xee\x7a\xd6\xc4\xed\x58\xdd\xee\x6e\x72\x7f\x18\x80\xb9\x5f\x5d\xbe\x37\x27\x07\x54\x88\x0f\xac\x9e\x08\xeb\x77\x59\xfd\xdc\x2f\xd6\x8e\x03\xd1\x66\xf9\xaf\xc2\x83\x67\x94\x5d\x5b\x43\x2e\x90\x71\x63\xea\xd4\xbf\x5b\x34\xda\x43\xfa\x7b\xf6\xbc\x1e\xc8\x46\xc7\xac\xcf\xd2\x46\xd7\xae\xc7\x51\x63\xd8\xaf\x47\x37\x8d\xfe\x8b\x7a\x9a\x37\xec\x69\xfd\x5b\xaf\xf1\xb3\x71\x5d\xaa\x86\xe9\xd4\x57\x59\xe3\xd4\xae\xaf\xa2\xc6\xb8\x5f\xbf\x9a\x37\x4e\x7b\x75\x0c\x6a\x4d\xf8\x93\x15\xd9\x36\x91\x9d\x43\xb5\xa8\xff\xf6\x9f\x7e\xfe\x9b\x7f\xff\xd3\xdf\xfc\xea\x1f\x7f\xfc\xf3\x3f\xae\xff\xf6\xd7\xdf\xff\xd7\xdf\xff\x59\xf1\xd2\x91\x79\xa6\xfc\x45\xbd\x9b\x7a\xf1\x0f\x7f\xe7\x85\xaa\x3e\x94\x38\xd3\x43\x9b\x05\xaa\xde\xf7\xb2\x9b\x50\xfe\xc7\xdf\xe4\xf5\xb7\x7f\xfd\xee\x8f\xde\x7d\xff\xee\xfb\xb7\xff\xfa\xf6\x57\x6f\x7f\x5d\xff\xf1\x2f\xfe\xf6\xc7\xbf\xfc\x87\xff\xfc\xc5\x5f\xd5\x4d\xb5\xf2\x7e\xf8\x65\x12\xd5\xc7\x90\xa9\xf9\x3c\xff\xe1\x17\x0a\x62\x46\x9c\xa6\x9e\x0a\xa9\x30\x52\xd7\x61\xfd\xed\x2f\xdf\xfd\xc9\xdb\x7f\x7b\xfb\x2f\x6f\xff\xf9\xdd\xcf\xb5\x8d\xba\x95\x79\x51\x48\xd2\x51\x4b\xaf\x80\xb7\x81\x82\x80\x84\x20\xce\x72\xd7\x48\x68\x0c\x14\xa5\x0a\x49\x52\xf1\xc2\x60\xa4\x18\x31\x83\xe1\xc2\xe3\x77\x0b\x83\x31\xe3\xc7\xc6\xe4\xdc\x60\xec\xf8\x1f\x84\x18\x0c\x20\x85\x5e\x6a\x30\x8a\x78\x8c\x23\x83\xa1\xa4\x4f\xfa\x37\x06\xe3\x49\x5f\xf3\x72\x83\x41\xc5\xe3\xb7\x9e\xc1\xc8\xd2\x28\xca\x60\x78\xf1\xc8\xbf\x06\xc3\x4c\x6f\x91\xc1\x58\xd3\xbf\x27\x99\x1b\x0c\x38\x9d\x45\x32\xec\x6c\x42\x19\x0c\x51\x77\x36\x3a\x77\xbb\x50\xab\xd0\x6e\xa7\xb6\xfe\x80\xb9\xc9\x01\xff\x1d\x00\x00\xff\xff\x2c\xe0\x3a\xc2\xba\x23\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7a\xcb\x8f\xe3\xc6\x76\xfe\x9e\x7f\x45\x59\xfe\xf9\xe7\x71\x20\xa9\x5f\x9e\x87\xdb\xee\xc4\x6a\x89\x52\xf3\x8e\x5e\x26\xa5\x19\x8f\x07\x0d\x36\x9b\x2c\x49\x74\x53\xa4\x86\x45\x76\xb7\x8c\x2c\xae\x91\x45\x80\x6c\x13\x24\x9b\x20\x48\x16\x41\x80\x9b\x07\x72\x91\xcd\xbd\x09\xb2\x32\xb2\x9f\xf9\x1f\x2e\x7c\x93\xff\x22\xdf\x39\x45\x4a\x54\x4f\xbb\x91\x0b\x24\xb0\xd1\x22\xeb\x71\xaa\xea\xab\x73\xce\xf7\x55\x71\x3e\x14\x43\xf3\x85\x69\x0b\xfe\x33\x18\x75\xac\xee\x2b\x31\x39\xb3\x1c\xd1\xb5\xfa\xa6\xf1\xa1\x18\xf7\xcd\x96\x63\x8a\x41\xeb\xb9\x29\xda\x67\xad\x61\xcf\x74\xc4\x68\x28\xda\x23\xdb\x36\x9d\xf1\x68\xd8\xb1\x86\x3d\xd1\x9e\x3a\x93\xd1\x00\x85\xc3\xae\xd5\xd3\x3d\x8d\xcf\x45\x6b\xb5\x12\xb1\xb7\x94\x22\x5b\x78\x99\x50\x8b\xe4\x46\x89\x24\x16\xf2\x5a\xa6\x6b\xb1\xf2\xe6\xa8\x08\xb3\x48\x1a\xad\xf1\xd8\x1d\xb6\x06\xa6\x38\x11\xbd\x64\xae\x8e\xf1\x57\xf4\xc2\x4c\x38\x32\xbd\x0e\x7d\x09\x4b\xed\x85\x17\xa3\x39\xca\xc2\x99\x58\x27\xb9\x48\xf3\x58\x44\x89\xef\x45\xd1\xda\xb0\xa7\x43\x77\xea\x60\xf6\x27\x62\x1e\x66\x68\x6d\x86\xd9\x42\xa6\xa2\x16\xc8\xeb\x5a\x5d\xd4\x56\x69\x12\xd4\x44\x82\x82\x4c\xaa\x0c\x25\x81\x9c\x79\x79\x04\x5b\x4a\xb7\x61\x0b\x58\x3a\x4d\x00\xef\x86\xf1\x3a\x95\xab\x44\x85\x59\x92\xae\xcf\x0d\x7b\x34\x9a\x88\x13\xc3\x69\xdb\xd6\x78\xe2\x4e\x5e\x8d\xa9\xd9\xa5\xa7\x16\x68\x97\x87\xe7\x18\x6f\x98\x2f\x2f\x31\x5e\x32\x13\x9b\x7e\xa1\x54\x7a\xd5\x5e\x2a\x79\xe5\x32\x10\x61\x8c\xd5\x4b\x21\x6f\x57\x51\x82\x52\x02\xc0\x30\xbf\x1e\xf7\x47\xb6\xe9\x8e\x5b\x3d\xe0\xe8\x0e\xa7\x03\x18\x3f\xdc\xdf\x31\x1a\x2a\x95\xff\xb4\x39\x36\x63\x39\xce\xf4\x8e\x91\x83\x5d\x23\x4b\xef\x36\x5c\xe6\x4b\xe1\x27\xcb\x65\x98\xa9\x3b\x46\x3c\x3f\x0b\xaf\xc3\x6c\x2d\x66\x52\x06\x46\xd7\x34\x3b\xee\xa0\xf5\xb5\xdb\x1e\x0d\x06\xd6\xa4\x30\xf8\x98\xd7\xdb\xf4\x82\x65\x18\xef\xae\x3a\x57\x32\x7d\x78\x7e\xb4\x3d\xbb\xd3\x7b\xbc\xff\x3e\x70\x0f\x9a\xb0\xcd\xf1\xe8\x41\x13\x71\x92\xc1\x59\x1e\x36\x32\x1c\x4d\xac\xb6\xf9\xa0\x99\x24\x9d\x7b\x71\xf8\x9d\x97\x85\x70\xd5\x87\x6c\x8d\xec\xde\x7b\x86\x8c\xd7\x4b\x2f\xbd\x0a\x92\x1b\x46\xc8\x8c\xbd\xcb\x48\x8a\x85\x97\x06\x22\x0a\xd1\xef\x32\x95\xde\x15\x1c\x20\x93\xb1\x82\x79\xc3\x1c\xb6\x4e\xfb\xa6\x7b\xd6\xb2\x3b\x6e\xdf\x1a\x9a\xee\xa9\x6d\xb6\x9e\xc3\xd4\xcc\x8b\x94\x84\x35\x00\x8b\x60\x39\x37\xc6\xf6\x68\x32\x6a\x8f\xfa\xa8\x5a\x64\xd9\xca\xe8\x8c\x06\x2d\x6b\x88\x37\x8e\x81\x45\xa2\x32\x76\x53\x77\x6a\x53\x93\x8f\x1e\x95\xed\x3f\x51\xc7\x7b\x7b\x1f\x3d\xd2\xcd\xf1\xf2\xd1\xa3\xb3\xc9\x64\xec\x8e\x47\xf6\xe4\x13\xb5\x67\xf0\x4b\xab\xd3\x41\xe8\x18\x9b\x0a\x18\x38\xda\xdf\x27\x50\x3a\xa1\xe2\x05\x38\xce\x19\x1c\xc3\xcb\x72\x00\x71\xb3\x90\x31\x41\x2d\xbc\x6b\x2f\x8c\xa8\xda\xe8\x58\x0e\x2f\x83\x9a\x95\x53\xc7\x73\x69\xec\xf0\xb0\x62\xaa\xdd\x19\x52\xfc\xc7\x84\x64\x11\x98\xcb\x24\x00\x98\xdd\x2e\x03\x50\x44\xa1\x36\x52\x1a\xb6\x47\xd3\x09\xfc\xa7\x3f\xea\x6d\xaa\x3e\x17\x3d\x19\xcb\xd4\xcb\xb0\x35\x99\x5c\xa9\x63\x94\xfc\x3f\xe1\x07\xd8\x9a\x6c\xb1\x97\x25\x7b\x73\x24\x92\x3d\x3f\x57\x59\xb2\xdc\x23\xc8\x14\x37\x68\x72\xb9\xf0\x65\x9a\x89\x86\xef\x9d\x64\x69\x2e\x45\x23\xc8\x53\xde\xee\x93\x67\x4f\x9f\xec\x2f\xf6\x97\xfb\x4a\x34\x08\xd3\x93\xe5\x9a\x7e\x9a\xf2\xd6\x5b\xae\x22\xd9\x44\xec\x18\x9f\xc3\xce\x28\x15\xb3\x34\x59\x0a\x4f\x34\x57\xb3\x5b\x31\x0b\x23\x8e\xea\x24\xcd\xe0\x22\x5c\x83\xfc\x23\x5e\x86\x71\x40\x19\x8f\x06\x0b\x67\xa1\xaf\xe7\x4a\x91\xff\x28\x48\x60\x85\x40\x9c\xc1\xdb\x64\x26\xb2\xa4\xe8\xcf\x1d\x57\x69\x78\x4d\x8d\xaf\xe4\xfa\x13\xbd\xae\x64\x05\x87\x51\x91\x58\x5d\xf9\xea\xe0\x50\x34\x00\x1e\x59\xe5\xd1\x1b\x49\x9e\x15\x6f\x72\x29\x1a\x71\x82\x6e\xea\x7f\xd6\x0b\x2d\xcb\x4e\x54\xa1\xe8\x21\x90\xca\x68\x9b\xf6\xc4\xa5\x24\x0e\xb8\xab\x10\xee\x95\xc3\x18\xcf\xcd\x57\xf7\x36\x28\x2c\x62\xf8\xe9\x6a\x85\x78\x8a\xb0\xd7\x11\x45\x55\x26\x81\x20\x2d\xca\x8b\x03\xa0\x00\xb8\x7d\x8d\x1b\xed\x17\x9a\x57\x52\x32\x43\x80\x52\x72\x35\x80\x45\x8c\x40\xc5\xf2\x56\xfa\x39\x00\x36\x9c\x49\x0b\x41\xec\xb2\xbf\x8f\x5b\x13\xf8\x9c\xa6\x9a\x88\x20\xa6\xa0\xd5\x83\xf6\xbe\xb1\xc6\x42\xe5\x2b\x82\xb5\x0c\x34\x2e\xdb\xba\x50\x1f\x93\x09\xe3\xb9\xa6\x22\x6c\x05\xb6\x24\x6e\x44\xc9\x7c\x8e\x6d\xe4\x9c\x56\x17\xbe\x17\x8b\x4b\x29\x6a\x8b\x64\x29\x35\x87\x14\xe9\xbb\x66\xf4\x5b\xcc\x7d\x94\x03\x08\x07\x6a\x81\x88\x0d\xbc\xcc\x03\x39\xc8\xf3\x0a\x0f\x2d\xd7\xea\x4d\xc4\x4c\x04\x6f\x9a\xa7\x52\x69\x4b\x28\x0c\x33\x79\x84\x8a\x30\xfb\x58\x11\xad\xa5\xc2\x5f\x24\xc4\x78\x9d\xd3\x92\x68\xb8\xaf\x71\x36\x72\x28\x94\x0e\x0e\x9f\x36\xf7\xf1\xdf\xc1\xf1\xd1\xd1\xfe\x13\xa3\xe0\x4c\x72\x69\xa3\x20\xc0\x34\x49\x32\x63\xdc\x72\x9c\x97\x1d\xc6\xa5\x4b\x03\x55\x86\x8d\xa3\x75\x5d\xc8\x92\x1f\x75\x50\xd2\xcc\x52\xf9\x26\x0f\xd3\x62\x89\x48\x39\xe1\x6c\xdd\x98\xe5\x51\x54\x43\x24\xf7\x37\xdc\xa8\xdb\x97\x66\xcb\xf9\xf3\x9e\xd6\xb2\x30\xb8\xac\x19\x7a\x43\x04\xa1\xc0\xa1\xd6\x0c\x2e\x01\x4a\xc1\x19\x94\xcf\xfc\x3c\x05\xcf\x9c\x1b\xd6\x10\xfb\xd8\xef\x23\xa8\xdb\xcf\x2b\x5b\xf2\xc1\x07\x5a\x63\x68\x09\x32\x19\x89\xe7\xa6\x39\x16\xaf\x46\x53\x5b\xf0\x0a\x3b\xad\x49\x4b\x38\xad\xae\xf9\xc1\x07\x86\x63\xb6\x6d\x73\xe2\xc2\x17\x61\xe0\x83\x0f\xbf\xec\x76\xcc\x97\x36\xfe\xff\xff\xbf\xf7\x88\x3c\x22\xcf\x12\xda\x4c\x78\x7d\x2a\x97\x92\xd3\x7b\xe0\x21\x34\x90\x46\xac\xa1\x6b\x9b\x03\x73\x70\x8a\xac\xd2\x69\xbd\x72\xd0\xff\xa9\xd1\x1e\x8d\x9e\x5b\x26\x2b\x89\x0a\xb0\xae\x77\x23\x15\x6d\x6d\x51\xbd\xe9\x57\x6d\x13\xc6\x7e\x2a\x83\x50\x63\x63\x93\xbe\x51\x14\xc6\xc9\xed\x5a\x78\x39\xb0\x8e\xb3\xd2\x37\x17\xd2\x0b\x30\x11\x56\x45\x05\x73\xf2\x0b\xe8\x0d\xfa\xcb\x01\x35\xd9\xa3\xaf\x5f\xb9\xad\xe9\xe4\xcc\x1c\xc2\xcd\xe1\xea\xa3\x8d\xba\xf9\xba\xf1\xd2\x3c\xa5\xaa\x06\x15\x14\xf4\x00\x77\x39\x37\x5a\xed\x89\xf5\xc2\x04\x5f\x77\x4c\x10\x09\x9e\x06\xd6\x10\x39\x93\x16\x76\xf0\x6c\x1f\xc6\x1d\x93\x82\x85\xdc\xe2\x27\x1b\x21\x66\x79\x36\x50\x00\x94\x90\xfc\x24\x9e\x85\xe9\x52\xc8\xc6\x12\x89\x9e\xc3\x23\x95\xf3\x50\x65\x3a\x57\xc2\x66\xcf\x72\x28\x2d\x9b\xe0\x96\xbe\xcb\xd2\xcf\x1e\x54\xb6\xb2\x93\x80\x8c\x99\x29\xa2\x28\xb9\x29\x3a\x63\x00\xf2\x16\x76\x08\x01\xd0\x38\x25\xf8\x7e\x92\xc7\x19\x3b\xe7\x36\xe7\xb3\x79\x9b\xd7\x5f\x31\xca\x53\x5c\x22\xe5\x08\x15\xce\x99\x45\x30\xd5\xeb\x50\xde\xc0\xec\x3a\x5b\x20\x9a\x9b\x98\xd9\x57\x53\x0b\x9a\xca\xb1\x7a\x43\xec\xf4\x0b\xcb\x7c\x59\xb1\xd0\xf6\x7c\x24\x18\xb0\x57\xe6\x61\x2e\x4a\xac\x42\x9f\x88\xad\x4c\x11\xed\x56\xfb\xcc\x74\x5b\x2f\xe0\x67\x76\xa5\xd7\x80\x30\x20\x85\x31\x2b\x76\xb2\x6c\x4f\x8a\xa2\xfb\xca\x25\x0c\xaa\xcd\x29\xcd\x07\x32\x43\xaf\x63\x66\x6c\xe2\x61\x88\xd3\x45\x7e\x49\x2c\x42\xa1\x01\x11\xa6\x49\x4a\xcb\xbb\xbd\x83\x27\x8f\x4b\x9b\x0f\xf9\xc2\x66\x90\x9f\x6a\x3b\xfa\x29\xe8\x3a\x09\xef\x06\x56\xef\x5f\x09\xc0\xcf\x72\x10\x09\x1b\x48\x7e\x07\x5e\xc7\xe4\xb0\xe7\x29\xd2\xc4\x2a\xd1\x69\x31\x5b\xaf\xb6\x1c\x0c\x5f\xb1\x06\xd3\x01\x45\x1b\x80\xfd\x06\x40\x9d\x99\x3b\x91\x5b\x88\x1d\xdf\x5b\x65\xfe\xc2\x13\xd7\x5e\x14\x06\xda\xe7\xdf\x73\x9d\x0d\xd4\xe3\x09\xa2\x1d\x36\x88\x86\xe1\xce\x37\xf2\x72\x91\x24\x57\x94\x3a\xcf\xf0\x2b\x32\x4f\x5d\x89\x37\xb9\x04\x47\x47\x32\x9e\x83\x28\xbe\x9a\x9a\xd0\xb9\x7d\x73\xd8\xe3\x34\x73\x50\xe8\x14\x19\x85\x88\x39\x9c\x26\x96\x92\x78\x0d\x5e\x81\x44\x83\x55\x28\xa3\x63\x92\xa7\xdb\xee\xc4\x1a\x98\x50\x11\x2c\x63\x91\x1b\xd8\x23\xc3\x98\xd3\x91\xac\x30\x34\xcd\xce\x79\x6e\x8d\xdd\x49\xdf\x71\xd1\x8f\x0e\x43\xdb\x25\x6e\x45\xe2\x22\x24\x26\x5f\xc3\x04\x16\xb7\xd4\xcb\xc4\xa8\x12\xbe\xa5\xc5\xe1\x5d\x29\x4e\xc2\x10\x74\x07\x29\xa7\x17\xdf\xa9\x98\x3d\xcd\x67\x33\xe6\x4a\x5a\x22\x59\x07\x7e\x71\x2c\xa3\x3a\x76\x47\xae\xe8\xd0\x03\x37\x0d\x99\x1b\x8b\xd3\x4f\x90\xc4\x1f\x83\xbe\x63\x2c\xe2\x86\x14\x2a\x57\x36\x91\x10\x87\x1d\xf7\x74\xda\xed\x92\x58\x32\x87\x1a\x20\x9a\x37\x65\x1b\x24\x6f\x30\xf0\x5a\x8b\x58\x0e\x69\x7d\xf8\x72\xa6\xa7\x3f\x33\xdb\x13\x96\x8d\xe5\x41\xec\x13\x55\xba\xbc\x16\xa0\x24\xb7\x96\xec\xcb\x6a\x99\xad\x9a\x73\x7a\x26\x3f\x3e\x7e\xfc\xec\x29\xea\xbe\xfa\xaa\xa8\x78\xf3\x86\x4b\x0f\x09\xe3\x61\x92\xc9\x3a\x4d\x98\xf9\x9c\xb4\x8d\xc4\x86\x68\x3f\xab\x7d\xfa\xe4\x31\x58\xc7\x19\x4c\xc6\x0e\x4a\xa2\x88\x38\x16\xb9\x30\x68\x22\xc0\xc9\xf5\xc0\x0d\xf6\x04\x7b\x40\xc7\x45\xee\x8b\x81\x68\xfd\xa9\xa4\xf3\x0b\x0c\x61\x19\xa4\x2f\xec\x6e\x5b\x3c\xf9\x74\xff\xb3\xa6\xb0\xf4\x40\x7a\xbe\x25\xef\xab\xad\x21\x40\xc4\x03\x79\xd1\x0d\x48\x60\x33\x5e\xc9\xac\x15\x89\x7a\x66\xf6\x47\xa4\x9d\xb4\xb3\x6a\xc1\x4b\x32\x90\x73\x36\x9d\x05\x82\x90\xf6\x0b\x49\xbd\xb9\x89\x0e\xee\xc3\x56\xda\x2c\x87\xb6\x1d\xc8\xf9\x77\x2d\xee\x9c\x3f\x59\x2d\xaa\x35\x12\xe3\x12\x73\x41\x3b\x97\x26\x54\x70\xcb\x36\x68\x35\x23\xf3\x0a\xab\x72\x32\xa9\x2e\xba\x29\x46\x48\xa0\xb4\x2c\x14\x92\x69\x8c\xac\x64\x34\x6b\x50\xa6\x04\x5e\x95\x8e\x4a\x3b\xf9\xc6\xc1\x75\x62\x15\x7e\x14\x62\x55\xd5\x86\x24\x2b\x5c\x92\x83\x56\x97\xf2\xcf\x56\x9a\xdf\x23\x11\xb5\x83\x3f\xa4\x11\x8b\x16\x5b\x91\xc8\x2e\xa6\xa5\x74\x10\x20\xf3\x40\x70\xd1\x8e\x3e\x3e\x3a\x3c\x6c\x8a\x09\x2d\xa2\xd0\x5f\xdf\x52\xc6\xc7\xa3\x64\xc7\xdd\x34\xc6\x0a\x69\xfd\x17\x35\xf2\xf0\x9a\xf8\x82\xab\xbf\xac\xc8\xf5\xdf\xbf\x10\x3a\x40\x85\xd1\xb5\x47\x03\x96\x44\x03\x9e\xc5\x96\x7a\x99\x90\x56\x9e\x52\x37\x49\x1a\x14\x3a\x6a\x2b\xa1\x8c\xd7\x3e\x11\xc6\x8e\x9c\x93\x4b\xc4\xbe\x56\x4d\x88\xaa\x1a\xcf\x83\x4a\xb9\xe5\x9d\xfb\x85\xa2\xb1\xd1\xea\x20\xdb\x31\x8b\xeb\x92\x52\x44\x15\xf5\x85\x32\xeb\xb5\x11\x9d\x20\x49\x64\xcf\x4a\x16\xdb\xb1\xf8\x64\x1f\xda\x09\x96\x5e\xb4\x88\x70\x9e\xec\x97\x86\xf4\x5c\xb4\x16\xab\xcc\x05\x06\x62\xe9\x6b\xed\x91\x10\x88\x1a\x3b\xf4\xe2\x0e\xc7\xe0\xfb\x0c\x0b\xbf\x3a\xc9\xfc\x55\x9d\x2a\x4f\x8e\x9f\x1c\x3d\xfd\xac\x5e\x02\x72\xb2\xf4\x7c\x2f\x85\xd7\x06\x97\x27\xfb\xf5\x55\x92\x44\x2e\xf1\xc5\x09\x32\x4b\x3d\x0c\x22\xe9\x16\x49\xf7\x44\x4b\x88\x72\xe4\x63\x71\xb1\x15\xab\x07\x07\x87\x07\x07\x17\x45\xa8\xb1\x6c\x51\x74\xfc\xbd\x1f\x53\x3a\x15\x6c\xb1\xd5\xd0\x16\xfa\xf9\x3e\x5c\xc1\x7b\x2f\xac\xce\x2e\xb0\xe3\x34\xb9\x0e\x49\x66\xb1\x86\x99\x23\xf4\x68\xfd\x4a\x4f\x0f\x4d\x8e\x39\xa6\x16\xde\x35\xed\xfd\xba\x6c\xb5\x96\x74\x77\x44\xc3\x23\x9b\xe9\x19\x6e\x8f\x28\x10\xcd\xcd\x79\x53\x5c\xb0\xb0\x2d\x6a\xd5\xc5\xff\x19\x8a\xb4\xe0\x63\x68\xcb\x06\x7e\x1b\x41\x4a\xec\xb6\xc7\x85\x22\x50\x71\x39\x61\xf0\x29\x72\x65\x39\x33\x52\xfe\xc7\xe5\x78\x5f\x96\x73\x74\x33\xca\x69\x17\x1b\x98\xdc\xe2\x8a\xae\x90\xe8\xe5\x4a\x30\xa6\x53\x2c\xd9\x07\xf3\x86\x52\x8b\xd2\x42\xf3\x16\xe9\x28\x74\xa3\xf0\x4a\xba\x5a\xbb\xa0\x87\xa5\xc9\x88\x12\x4e\x89\x17\x7c\x96\xd5\x4e\xe1\xce\xd5\x44\xa7\xd3\x86\x36\x08\xe5\x3e\xb5\xcd\xf7\xc5\x83\xc2\x59\x58\x8f\xbf\xd3\x97\xe5\x41\x21\x1a\x48\xc8\x6a\x2b\xa5\x6e\xd8\x4e\x1d\xd1\x43\x38\x6e\x42\x68\xc7\xc8\x33\xf0\xc4\xbe\xd1\x6b\xbb\x65\xf4\xb0\x26\x80\x11\x5d\xb1\xb5\x12\x85\x33\xc9\x76\xee\xe9\xee\x98\x8e\x43\x82\xbc\x6f\x75\xcd\xdd\xfe\xc6\xeb\x42\x48\x92\x57\x4f\x88\xf2\x22\xcf\x97\xa4\x4e\x8b\x72\x06\x7c\x7b\xf6\xd2\x39\x5b\xfb\xf7\x1b\x88\xb1\xfc\x8e\x7f\x17\xf5\x18\xd1\x7e\x61\xb5\x69\x9c\x82\x8a\xb5\x34\x75\xa7\xe3\xfe\xa8\xd5\x71\xab\xe7\x2d\xad\x69\x15\x5f\x97\x86\xb1\x54\xb2\xb8\x98\xa3\x1c\x8a\x73\x65\x82\x82\x5a\x90\x27\x6a\x91\x27\x35\x34\xc2\xc8\x5e\x91\x99\x4b\x39\xac\x70\x04\xf5\xb1\x6e\xda\x67\xad\x5b\x21\x5b\xfd\xb8\x39\x4f\x75\x03\xd6\xae\xfa\x71\xcf\xe8\xd9\xc5\x54\x1c\x9c\xce\x78\x86\x65\xb3\x0d\x2d\x96\x4d\x2a\x37\x5a\x5e\x96\x21\x3f\x80\xc2\x33\x02\xea\xe5\x42\x32\x1c\xdb\x52\xc5\x14\x2b\xd9\x1f\x20\x07\x3a\x1a\x12\x45\x40\x5e\xd0\x76\x5f\x14\x8e\xb0\xdd\xfd\x31\xdd\x15\x10\xd9\x55\x8c\xdc\xe9\xa8\xe1\xd9\x56\x5f\xec\x9c\x53\x2b\x15\x74\xb9\x13\x4b\x82\x66\x49\x0a\x9e\x4f\x2e\x74\x1c\x82\x12\x56\x45\xa0\x85\x4b\xe8\xbb\xbd\x6f\x57\x72\xfe\x87\xfa\x71\x15\xcf\x0d\x9c\x64\x47\x2f\xcd\x0e\x1f\xda\xe9\x3c\x75\x6f\x23\xa2\x9e\x5b\xad\xb6\x41\xdc\xac\x15\x29\xbf\xec\xce\xf5\xe8\x70\x70\x6a\xd0\xdd\x2b\x89\x6c\x58\xfa\xb4\xe8\x16\x6f\xb4\x27\xf5\x51\xac\x7e\xf2\x55\x94\x78\x77\x40\x82\xd6\xa4\xde\x44\xbc\x4e\x71\x69\x4b\xbe\x4c\x60\x3b\x2b\xe9\x83\xd7\xa5\xbe\x62\x29\x78\x91\x80\xa3\x83\xfe\x5a\x20\xfd\xac\xe8\x82\x85\x40\x91\x77\x10\x04\x2b\x23\x89\x1f\x95\x46\xc0\x4e\x85\xc2\x42\x73\x04\x1a\x5d\x4f\xd3\xb6\xb5\x86\x8e\xd5\xae\x8b\x69\x1c\xde\x76\x3c\x92\x7f\x76\x7e\xb9\x2e\x9e\xba\xed\x67\x87\x87\xe5\xef\x37\xfa\xe1\xf1\x7e\xbd\x34\xbd\x79\xd0\x55\x47\x47\x47\x9f\x6d\x1e\x86\x5e\x9c\xd4\xc5\xf3\x10\x07\x0b\x09\xf9\xe4\x64\xe0\xf7\xe2\x67\x00\x4d\x17\x6e\x9e\xfd\x34\x61\x02\xe4\x57\xea\x55\x90\x23\x6f\x66\x55\xab\x7b\x97\x74\x4e\xa8\xc0\xa0\xa4\x2c\xfd\x7d\x9e\x44\x1e\x8e\x91\x49\x3a\xdf\x5b\x5d\xcd\xf7\x08\xbd\xbd\x0f\xf1\xd4\x40\xda\x55\x99\x47\x5e\xd2\x1d\xd9\x83\x96\xe6\xb2\x28\x99\xeb\x4f\x04\xdb\xbb\xa8\x92\xd3\xa8\x7d\xa2\xc9\xac\x24\x35\x62\x63\xfa\x25\xb5\xac\x63\xbf\xbc\x2f\xba\x13\xfe\x65\xdf\x52\x99\x41\xf5\x7a\xb4\x11\x4a\xae\x3c\xbe\xf5\x5c\xa2\x65\x08\x95\xc3\xd7\xa7\xa5\x6f\x96\xdd\xea\xec\x24\x35\xa3\xb8\xb7\x29\x4a\xff\x37\x8f\x1a\x77\x4f\x19\x9c\x41\xcb\x85\x4f\x52\xa4\x3e\x5a\x66\x47\x5e\xe6\x73\x7a\xb0\x80\x3d\xfd\xbe\xf4\x52\x5e\xbf\x99\xa6\x49\x4a\x0f\xed\x34\xa4\xbb\x91\xbb\xec\xae\x2d\x18\x7d\x1c\x6e\x49\xe5\xf0\xab\x51\x2a\x9d\x12\x1b\x5e\xba\xbe\x35\xa0\x6d\x68\x16\xe5\xe7\x65\xb7\x4d\x07\x06\xe3\x6e\x6b\x2a\xdc\x36\xfd\x5c\xcb\x4d\x9d\x77\x14\xdd\xda\x24\x70\x0b\x78\x37\x9a\x8a\x34\xc9\xf0\xfc\x48\xdd\x90\x07\x72\x08\x26\x94\x18\xe8\xa0\x52\x48\x8b\x4f\xde\xe7\xab\xfe\xa8\xe7\xda\xa3\x89\x16\xcd\x45\xaa\xa2\x40\xe6\x0f\x01\xdb\x68\xa6\xe3\x0e\x76\x91\x66\xb3\x63\x83\x31\xdd\xd7\xc1\x4c\x37\xe3\x4e\x89\x33\x23\xbd\x49\x24\x6a\x11\xce\xb2\x87\xec\x1c\x3e\x83\xe8\xf1\x62\x18\x14\x5f\x7c\x81\xb7\xba\x38\x7c\xfc\xa4\x92\x62\x5c\xe7\xcc\xea\xf2\x35\xfd\x33\xe6\xc0\x39\xe5\x41\x5e\x75\x00\x9d\xbc\x7e\x7f\x5d\x9d\x96\xd5\x7f\xf5\xde\xca\xcc\xdb\x55\x98\x72\xee\xc0\xe1\x0a\xd3\x21\x03\x34\x97\x47\x81\x8c\x24\xdd\xf1\xcc\xe8\xea\x67\x89\x69\x53\x8b\x5d\xb8\x9e\xf2\x64\x36\xf7\x70\x95\x6d\x8e\xef\xdb\xe3\xb8\xba\x6b\xb6\x2c\x04\xae\x56\xb7\x94\xcd\xf4\xe7\xc5\x02\x8f\x25\x48\x1d\xf9\xf7\x1e\x29\x62\x9b\x90\x42\x43\x9c\x7c\x5d\xf0\xf9\xc0\xa9\x7e\x5a\x98\xa0\x3f\x62\x2d\xdd\xd8\xe6\x33\x60\x45\x49\xc3\x48\x84\xe1\x1e\xb2\x5a\x15\x37\x45\x58\x40\x1b\x92\xcb\xe7\xc8\x8e\x3a\xf6\xf3\x60\x75\xc7\xef\xa9\x49\xf5\x63\x0f\xde\xf9\x32\xa4\x22\xdc\x8b\xcf\x35\x9b\x4b\x58\xce\x24\x77\x50\xa2\xc2\x2a\x4a\x0f\x5d\x00\xec\x4e\xa0\x13\x7a\xf3\x18\xc3\x85\x7e\x09\x5d\x71\x44\x25\xf1\x51\xab\x5c\x16\x3c\xd8\xf0\xce\xed\x41\x21\xfc\x7f\xd7\xa3\x17\xef\xae\x24\xed\xbb\xbd\x88\x4f\xb6\xec\x5c\xe4\xbc\xd7\xb5\x83\xea\x89\xaf\x56\xaf\x1d\xee\xbc\x9f\xd3\x9e\x98\x74\x09\xe4\x54\x60\xdb\xa4\xdd\xbb\xd0\x6d\xef\xef\xb7\xf0\xed\xde\xe3\x8b\x9d\x2b\x75\xa3\x63\x93\x6d\x6e\x77\x8a\x7e\x01\x5d\x59\xdc\x82\x54\xf4\xf4\x8e\xf9\x46\xfe\x98\xfe\x7c\xb9\xf9\x56\xc7\xf7\x7e\x7f\x80\xd4\x9b\x42\xf0\x9e\xe4\xd9\xec\x99\x41\x5e\xa3\x4f\x9b\x69\x52\xfd\x76\x98\xe6\x71\x4c\x79\x86\x8a\xf9\x3e\x8c\x99\x3f\x4c\x82\x90\xbf\x7d\x37\x2b\xd7\x49\x45\x24\xda\x79\x5c\x6d\xcd\xae\xcb\xdf\x50\xc0\x5d\x29\x94\x11\x7f\xec\x6e\x4d\x5c\xbe\x19\xd9\x0a\x33\xfa\x62\x13\x30\xb1\x84\x94\x9b\x95\x9e\x49\x33\xe7\x42\xb7\x28\x3c\x37\x9c\xf6\x99\xd9\x99\xb2\xfc\xfa\x52\x07\xda\xc1\xc2\xe0\x9d\x2a\x3f\x98\xd3\x15\x77\x44\x77\x89\x74\xcf\x58\x58\xa1\xaf\xbb\xae\x2e\x77\xb9\xfc\x3e\x43\x87\x9f\xd2\x87\xa0\x56\x3a\xcf\xb5\x0e\xa4\x58\x66\xde\x83\x8f\x7c\x8c\x23\x87\x98\x29\xff\xea\xe3\x12\xd6\x5a\xa3\x91\xc7\x29\x89\x28\xc6\xa9\xd1\xc8\xbc\xb9\x22\xba\x24\x26\x67\xbe\x4f\xe2\x0d\xa3\x87\x59\x43\xf9\x4b\x56\xaf\x41\xe2\x2b\x2e\x20\x6b\x7b\x07\xcd\xa7\xcd\xc7\x46\xcb\xee\x51\xea\x31\x58\x39\xd3\xed\xe8\xf6\xf3\xbf\xfe\x56\x45\x6e\x5e\x22\xc2\xf3\x77\x79\x45\x54\x07\x4c\xee\x00\xca\xfb\x70\xff\xf2\x8c\xd7\x18\xf9\x9c\xd3\x5d\xcf\x9a\xb8\x1d\xab\xdb\xdd\x4d\xee\x0f\x03\x30\xf7\xab\xcb\xf7\xe6\xe4\x80\x0a\xf1\x81\xd5\x13\x61\xfd\x2e\xab\x9f\xfb\xc5\xda\x71\x20\xda\x2c\xff\x75\x78\xf0\x8c\xb2\x6b\x6b\xc8\x05\x32\x6e\x4c\x9d\xfa\x77\x8b\x46\x7b\x48\x7f\xcf\x9e\xd7\x03\xd9\xe8\x98\xf5\x59\xda\xe8\xda\xf5\x38\x6a\x0c\xfb\xf5\xe8\xba\xd1\x7f\x51\x4f\xf3\x86\x3d\xad\x7f\xeb\x35\x7e\x36\xae\x4b\xd5\x30\x9d\xfa\x2a\x6b\x9c\xda\xf5\x55\xd4\x18\xf7\xeb\x97\xf3\xc6\x69\xaf\x8e\x41\xad\x09\x7f\xb2\x22\xdb\x26\xb2\x73\xa8\x16\xf5\xdf\xfe\xd3\xcf\x7f\xf3\xef\x7f\xfa\x9b\x5f\xfd\xe3\x8f\x7f\xfe\xc7\xf5\xdf\xfe\xfa\xfb\xff\xfa\xfb\x3f\x2b\x5e\x3a\x32\xcf\x94\xbf\xa8\x77\x53\x2f\xfe\xe1\xef\xbc\x50\xd5\x87\x12\x67\x7a\x68\xb3\x40\xd5\xfb\x5e\x76\x1d\xca\xff\xf8\x9b\xbc\xfe\xf6\xaf\xdf\xfd\xd1\xbb\xef\xdf\x7d\xff\xf6\x5f\xdf\xfe\xea\xed\xaf\xeb\x3f\xfe\xc5\xdf\xfe\xf8\x97\xff\xf0\x9f\xbf\xf8\xab\xba\xa9\x56\xde\x0f\xbf\x4c\xa2\xfa\x18\x32\x35\x9f\xe7\x3f\xfc\x42\x41\xcc\x88\xd3\xd4\x53\x21\x15\x46\xea\x2a\xac\xbf\xfd\xe5\xbb\x3f\x79\xfb\x6f\x6f\xff\xe5\xed\x3f\xbf\xfb\xb9\xb6\x51\xb7\x32\x2f\x0a\x49\x3a\x6a\xe9\x15\xf0\x36\x50\x10\x90\x10\xc4\x59\xee\x0a\x09\x8d\x81\xa2\x54\x21\x49\x2a\x9e\x1b\x8c\x14\x23\x66\x30\x5c\x78\xfc\x6e\x61\x30\x66\xfc\xd8\x98\xbc\x34\x18\x3b\xfe\x07\x26\x06\x03\x48\xa1\x97\x1a\x8c\x22\x1e\xe3\xc8\x60\x28\xe9\x93\xfe\xb5\xc1\x78\xd2\xd7\xbc\xdc\x60\x50\xf1\xf8\xad\x67\x30\xb2\x34\x8a\x32\x18\x5e\x3c\xf2\xaf\xc1\x30\xd3\x5b\x64\x30\xd6\xf4\xef\x53\xe6\x06\x03\x4e\x67\x91\x0c\x3b\x9b\x50\x06\x43\xd4\x9d\x8d\x5e\xba\x5d\xa8\x55\x68\xb7\x53\x5b\x7f\xc0\xdc\xe4\x80\xff\x0e\x00\x00\xff\xff\x3c\x1a\x73\x21\x0a\x24\x00\x00") func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -299,7 +299,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 9146, mode: os.FileMode(420), modTime: time.Unix(1443222333, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 9226, mode: os.FileMode(420), modTime: time.Unix(1443227263, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 23c41b6e9..b817f10bc 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -91,12 +91,13 @@ var ( AnsiCharset string // UI settings. - ExplorePagingNum int - IssuePagingNum int - AdminUserPagingNum int - AdminRepoPagingNum int + ExplorePagingNum int + IssuePagingNum int + FeedMaxCommitNum int + AdminUserPagingNum int + AdminRepoPagingNum int AdminNoticePagingNum int - AdminOrgPagingNum int + AdminOrgPagingNum int // Markdown sttings. Markdown struct { @@ -370,6 +371,7 @@ func NewContext() { sec = Cfg.Section("ui") ExplorePagingNum = sec.Key("EXPLORE_PAGING_NUM").MustInt(20) IssuePagingNum = sec.Key("ISSUE_PAGING_NUM").MustInt(10) + FeedMaxCommitNum = sec.Key("FEED_MAX_COMMIT_NUM").MustInt(5) sec = Cfg.Section("ui.admin") AdminUserPagingNum = sec.Key("USER_PAGING_NUM").MustInt(50) diff --git a/templates/.VERSION b/templates/.VERSION index d42010e39..a38778a1e 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.14.0925 Beta \ No newline at end of file +0.6.15.0925 Beta \ No newline at end of file