diff --git a/conf/app.ini b/conf/app.ini index 27773a8a0..a34466d12 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -52,34 +52,6 @@ FILE_MAX_SIZE = 3 ; Maximum number of files per upload MAX_FILES = 5 -[ui] -; Number of repositories that are showed in one explore page -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 -; Value of "theme-color" meta tag, used by Android >= 5.0 -; An invalid color like "none" or "disable" will have the default style -; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android -THEME_COLOR_META_TAG = `#ff5343` -; Max size in bytes of files to be displayed (default is 8MB) -MAX_DISPLAY_FILE_SIZE = 8388608 - -[ui.admin] -; Number of users that are showed in one page -USER_PAGING_NUM = 50 -; Number of repos that are showed in one page -REPO_PAGING_NUM = 50 -; Number of notices that are showed in one page -NOTICE_PAGING_NUM = 25 -; Number of organization that are showed in one page -ORG_PAGING_NUM = 50 - -[ui.user] -; Number of repos that are showed in one page -REPO_PAGING_NUM = 15 - [markdown] ; Enable hard line break extension ENABLE_HARD_LINE_BREAK = false @@ -392,6 +364,34 @@ DEFAULT_INTERVAL = 8 ; Max number of items will response in a page MAX_RESPONSE_ITEMS = 50 +[ui] +; Number of repositories that are showed in one explore page +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 +; Value of "theme-color" meta tag, used by Android >= 5.0 +; An invalid color like "none" or "disable" will have the default style +; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android +THEME_COLOR_META_TAG = `#ff5343` +; Max size in bytes of files to be displayed (default is 8MB) +MAX_DISPLAY_FILE_SIZE = 8388608 + +[ui.admin] +; Number of users that are showed in one page +USER_PAGING_NUM = 50 +; Number of repos that are showed in one page +REPO_PAGING_NUM = 50 +; Number of notices that are showed in one page +NOTICE_PAGING_NUM = 25 +; Number of organization that are showed in one page +ORG_PAGING_NUM = 50 + +[ui.user] +; Number of repos that are showed in one page +REPO_PAGING_NUM = 15 + [i18n] LANGS = en-US,zh-CN,zh-HK,zh-TW,de-DE,fr-FR,nl-NL,lv-LV,ru-RU,ja-JP,es-ES,pt-BR,pl-PL,bg-BG,it-IT,fi-FI,tr-TR,cs-CZ,sr-SP,sv-SE,ko-KR,gl-ES NAMES = English,简体中文,繁體中文(香港),繁體中文(台湾),Deutsch,Français,Nederlands,Latviešu,Русский,日本語,Español,Português do Brasil,Polski,български,Italiano,Suomalainen,Türkçe,čeština,Српски,Svenska,한국어,Galego diff --git a/models/attachment.go b/models/attachment.go new file mode 100644 index 000000000..a270b7512 --- /dev/null +++ b/models/attachment.go @@ -0,0 +1,175 @@ +// Copyright 2017 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package models + +import ( + "fmt" + "io" + "mime/multipart" + "os" + "path" + "time" + + "github.com/go-xorm/xorm" + gouuid "github.com/satori/go.uuid" + + "github.com/gogits/gogs/modules/setting" +) + +// Attachment represent a attachment of issue/comment/release. +type Attachment struct { + ID int64 `xorm:"pk autoincr"` + UUID string `xorm:"uuid UNIQUE"` + IssueID int64 `xorm:"INDEX"` + CommentID int64 + ReleaseID int64 `xorm:"INDEX"` + Name string + + Created time.Time `xorm:"-"` + CreatedUnix int64 +} + +func (a *Attachment) BeforeInsert() { + a.CreatedUnix = time.Now().Unix() +} + +func (a *Attachment) AfterSet(colName string, _ xorm.Cell) { + switch colName { + case "created_unix": + a.Created = time.Unix(a.CreatedUnix, 0).Local() + } +} + +// AttachmentLocalPath returns where attachment is stored in local file system based on given UUID. +func AttachmentLocalPath(uuid string) string { + return path.Join(setting.AttachmentPath, uuid[0:1], uuid[1:2], uuid) +} + +// LocalPath returns where attachment is stored in local file system. +func (attach *Attachment) LocalPath() string { + return AttachmentLocalPath(attach.UUID) +} + +// NewAttachment creates a new attachment object. +func NewAttachment(name string, buf []byte, file multipart.File) (_ *Attachment, err error) { + attach := &Attachment{ + UUID: gouuid.NewV4().String(), + Name: name, + } + + localPath := attach.LocalPath() + if err = os.MkdirAll(path.Dir(localPath), os.ModePerm); err != nil { + return nil, fmt.Errorf("MkdirAll: %v", err) + } + + fw, err := os.Create(localPath) + if err != nil { + return nil, fmt.Errorf("Create: %v", err) + } + defer fw.Close() + + if _, err = fw.Write(buf); err != nil { + return nil, fmt.Errorf("Write: %v", err) + } else if _, err = io.Copy(fw, file); err != nil { + return nil, fmt.Errorf("Copy: %v", err) + } + + if _, err := x.Insert(attach); err != nil { + return nil, err + } + + return attach, nil +} + +func getAttachmentByUUID(e Engine, uuid string) (*Attachment, error) { + attach := &Attachment{UUID: uuid} + has, err := x.Get(attach) + if err != nil { + return nil, err + } else if !has { + return nil, ErrAttachmentNotExist{0, uuid} + } + return attach, nil +} + +func getAttachmentsByUUIDs(e Engine, uuids []string) ([]*Attachment, error) { + if len(uuids) == 0 { + return []*Attachment{}, nil + } + + // Silently drop invalid uuids. + attachments := make([]*Attachment, 0, len(uuids)) + return attachments, e.In("uuid", uuids).Find(&attachments) +} + +// GetAttachmentByUUID returns attachment by given UUID. +func GetAttachmentByUUID(uuid string) (*Attachment, error) { + return getAttachmentByUUID(x, uuid) +} + +func getAttachmentsByIssueID(e Engine, issueID int64) ([]*Attachment, error) { + attachments := make([]*Attachment, 0, 10) + return attachments, e.Where("issue_id = ? AND comment_id = 0", issueID).Find(&attachments) +} + +// GetAttachmentsByIssueID returns all attachments of an issue. +func GetAttachmentsByIssueID(issueID int64) ([]*Attachment, error) { + return getAttachmentsByIssueID(x, issueID) +} + +func getAttachmentsByCommentID(e Engine, commentID int64) ([]*Attachment, error) { + attachments := make([]*Attachment, 0, 10) + return attachments, e.Where("comment_id=?", commentID).Find(&attachments) +} + +// GetAttachmentsByCommentID returns all attachments if comment by given ID. +func GetAttachmentsByCommentID(commentID int64) ([]*Attachment, error) { + return getAttachmentsByCommentID(x, commentID) +} + +// DeleteAttachment deletes the given attachment and optionally the associated file. +func DeleteAttachment(a *Attachment, remove bool) error { + _, err := DeleteAttachments([]*Attachment{a}, remove) + return err +} + +// DeleteAttachments deletes the given attachments and optionally the associated files. +func DeleteAttachments(attachments []*Attachment, remove bool) (int, error) { + for i, a := range attachments { + if remove { + if err := os.Remove(a.LocalPath()); err != nil { + return i, err + } + } + + if _, err := x.Delete(a); err != nil { + return i, err + } + } + + return len(attachments), nil +} + +// DeleteAttachmentsByIssue deletes all attachments associated with the given issue. +func DeleteAttachmentsByIssue(issueId int64, remove bool) (int, error) { + attachments, err := GetAttachmentsByIssueID(issueId) + + if err != nil { + return 0, err + } + + return DeleteAttachments(attachments, remove) +} + +// DeleteAttachmentsByComment deletes all attachments associated with the given comment. +func DeleteAttachmentsByComment(commentId int64, remove bool) (int, error) { + attachments, err := GetAttachmentsByCommentID(commentId) + + if err != nil { + return 0, err + } + + return DeleteAttachments(attachments, remove) +} diff --git a/models/issue_comment.go b/models/comment.go similarity index 100% rename from models/issue_comment.go rename to models/comment.go diff --git a/models/issue.go b/models/issue.go index dbe01f6f4..0997f3bbc 100644 --- a/models/issue.go +++ b/models/issue.go @@ -7,17 +7,12 @@ package models import ( "errors" "fmt" - "io" - "mime/multipart" - "os" - "path" "strings" "time" "github.com/Unknwon/com" "github.com/go-xorm/xorm" api "github.com/gogits/go-gogs-client" - gouuid "github.com/satori/go.uuid" log "gopkg.in/clog.v1" "github.com/gogits/gogs/modules/base" @@ -1332,500 +1327,3 @@ func updateIssueUsersByMentions(e Engine, issueID int64, uids []int64) error { } return nil } - -// _____ .__.__ __ -// / \ |__| | ____ _______/ |_ ____ ____ ____ -// / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \ -// / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/ -// \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ > -// \/ \/ \/ \/ \/ - -// Milestone represents a milestone of repository. -type Milestone struct { - ID int64 `xorm:"pk autoincr"` - RepoID int64 `xorm:"INDEX"` - Name string - Content string `xorm:"TEXT"` - RenderedContent string `xorm:"-"` - IsClosed bool - NumIssues int - NumClosedIssues int - NumOpenIssues int `xorm:"-"` - Completeness int // Percentage(1-100). - IsOverDue bool `xorm:"-"` - - DeadlineString string `xorm:"-"` - Deadline time.Time `xorm:"-"` - DeadlineUnix int64 - ClosedDate time.Time `xorm:"-"` - ClosedDateUnix int64 -} - -func (m *Milestone) BeforeInsert() { - m.DeadlineUnix = m.Deadline.Unix() -} - -func (m *Milestone) BeforeUpdate() { - if m.NumIssues > 0 { - m.Completeness = m.NumClosedIssues * 100 / m.NumIssues - } else { - m.Completeness = 0 - } - - m.DeadlineUnix = m.Deadline.Unix() - m.ClosedDateUnix = m.ClosedDate.Unix() -} - -func (m *Milestone) AfterSet(colName string, _ xorm.Cell) { - switch colName { - case "num_closed_issues": - m.NumOpenIssues = m.NumIssues - m.NumClosedIssues - - case "deadline_unix": - m.Deadline = time.Unix(m.DeadlineUnix, 0).Local() - if m.Deadline.Year() == 9999 { - return - } - - m.DeadlineString = m.Deadline.Format("2006-01-02") - if time.Now().Local().After(m.Deadline) { - m.IsOverDue = true - } - - case "closed_date_unix": - m.ClosedDate = time.Unix(m.ClosedDateUnix, 0).Local() - } -} - -// State returns string representation of milestone status. -func (m *Milestone) State() api.StateType { - if m.IsClosed { - return api.STATE_CLOSED - } - return api.STATE_OPEN -} - -func (m *Milestone) ChangeStatus(isClosed bool) error { - return ChangeMilestoneStatus(m, isClosed) -} - -func (m *Milestone) APIFormat() *api.Milestone { - apiMilestone := &api.Milestone{ - ID: m.ID, - State: m.State(), - Title: m.Name, - Description: m.Content, - OpenIssues: m.NumOpenIssues, - ClosedIssues: m.NumClosedIssues, - } - if m.IsClosed { - apiMilestone.Closed = &m.ClosedDate - } - if m.Deadline.Year() < 9999 { - apiMilestone.Deadline = &m.Deadline - } - return apiMilestone -} - -// NewMilestone creates new milestone of repository. -func NewMilestone(m *Milestone) (err error) { - sess := x.NewSession() - defer sessionRelease(sess) - if err = sess.Begin(); err != nil { - return err - } - - if _, err = sess.Insert(m); err != nil { - return err - } - - if _, err = sess.Exec("UPDATE `repository` SET num_milestones = num_milestones + 1 WHERE id = ?", m.RepoID); err != nil { - return err - } - return sess.Commit() -} - -func getMilestoneByRepoID(e Engine, repoID, id int64) (*Milestone, error) { - m := &Milestone{ - ID: id, - RepoID: repoID, - } - has, err := e.Get(m) - if err != nil { - return nil, err - } else if !has { - return nil, ErrMilestoneNotExist{id, repoID} - } - return m, nil -} - -// GetWebhookByRepoID returns the milestone in a repository. -func GetMilestoneByRepoID(repoID, id int64) (*Milestone, error) { - return getMilestoneByRepoID(x, repoID, id) -} - -// GetMilestonesByRepoID returns all milestones of a repository. -func GetMilestonesByRepoID(repoID int64) ([]*Milestone, error) { - miles := make([]*Milestone, 0, 10) - return miles, x.Where("repo_id = ?", repoID).Find(&miles) -} - -// GetMilestones returns a list of milestones of given repository and status. -func GetMilestones(repoID int64, page int, isClosed bool) ([]*Milestone, error) { - miles := make([]*Milestone, 0, setting.UI.IssuePagingNum) - sess := x.Where("repo_id = ? AND is_closed = ?", repoID, isClosed) - if page > 0 { - sess = sess.Limit(setting.UI.IssuePagingNum, (page-1)*setting.UI.IssuePagingNum) - } - return miles, sess.Find(&miles) -} - -func updateMilestone(e Engine, m *Milestone) error { - _, err := e.Id(m.ID).AllCols().Update(m) - return err -} - -// UpdateMilestone updates information of given milestone. -func UpdateMilestone(m *Milestone) error { - return updateMilestone(x, m) -} - -func countRepoMilestones(e Engine, repoID int64) int64 { - count, _ := e.Where("repo_id=?", repoID).Count(new(Milestone)) - return count -} - -// CountRepoMilestones returns number of milestones in given repository. -func CountRepoMilestones(repoID int64) int64 { - return countRepoMilestones(x, repoID) -} - -func countRepoClosedMilestones(e Engine, repoID int64) int64 { - closed, _ := e.Where("repo_id=? AND is_closed=?", repoID, true).Count(new(Milestone)) - return closed -} - -// CountRepoClosedMilestones returns number of closed milestones in given repository. -func CountRepoClosedMilestones(repoID int64) int64 { - return countRepoClosedMilestones(x, repoID) -} - -// MilestoneStats returns number of open and closed milestones of given repository. -func MilestoneStats(repoID int64) (open int64, closed int64) { - open, _ = x.Where("repo_id=? AND is_closed=?", repoID, false).Count(new(Milestone)) - return open, CountRepoClosedMilestones(repoID) -} - -// ChangeMilestoneStatus changes the milestone open/closed status. -// If milestone passes with changed values, those values will be -// updated to database as well. -func ChangeMilestoneStatus(m *Milestone, isClosed bool) (err error) { - repo, err := GetRepositoryByID(m.RepoID) - if err != nil { - return err - } - - sess := x.NewSession() - defer sessionRelease(sess) - if err = sess.Begin(); err != nil { - return err - } - - m.IsClosed = isClosed - if err = updateMilestone(sess, m); err != nil { - return err - } - - repo.NumMilestones = int(countRepoMilestones(sess, repo.ID)) - repo.NumClosedMilestones = int(countRepoClosedMilestones(sess, repo.ID)) - if _, err = sess.Id(repo.ID).AllCols().Update(repo); err != nil { - return err - } - return sess.Commit() -} - -func changeMilestoneIssueStats(e *xorm.Session, issue *Issue) error { - if issue.MilestoneID == 0 { - return nil - } - - m, err := getMilestoneByRepoID(e, issue.RepoID, issue.MilestoneID) - if err != nil { - return err - } - - if issue.IsClosed { - m.NumOpenIssues-- - m.NumClosedIssues++ - } else { - m.NumOpenIssues++ - m.NumClosedIssues-- - } - - return updateMilestone(e, m) -} - -// ChangeMilestoneIssueStats updates the open/closed issues counter and progress -// for the milestone associated with the given issue. -func ChangeMilestoneIssueStats(issue *Issue) (err error) { - sess := x.NewSession() - defer sessionRelease(sess) - if err = sess.Begin(); err != nil { - return err - } - - if err = changeMilestoneIssueStats(sess, issue); err != nil { - return err - } - - return sess.Commit() -} - -func changeMilestoneAssign(e *xorm.Session, issue *Issue, oldMilestoneID int64) error { - if oldMilestoneID > 0 { - m, err := getMilestoneByRepoID(e, issue.RepoID, oldMilestoneID) - if err != nil { - return err - } - - m.NumIssues-- - if issue.IsClosed { - m.NumClosedIssues-- - } - - if err = updateMilestone(e, m); err != nil { - return err - } else if _, err = e.Exec("UPDATE `issue_user` SET milestone_id = 0 WHERE issue_id = ?", issue.ID); err != nil { - return err - } - } - - if issue.MilestoneID > 0 { - m, err := getMilestoneByRepoID(e, issue.RepoID, issue.MilestoneID) - if err != nil { - return err - } - - m.NumIssues++ - if issue.IsClosed { - m.NumClosedIssues++ - } - - if err = updateMilestone(e, m); err != nil { - return err - } else if _, err = e.Exec("UPDATE `issue_user` SET milestone_id = ? WHERE issue_id = ?", m.ID, issue.ID); err != nil { - return err - } - } - - return updateIssue(e, issue) -} - -// ChangeMilestoneAssign changes assignment of milestone for issue. -func ChangeMilestoneAssign(issue *Issue, oldMilestoneID int64) (err error) { - sess := x.NewSession() - defer sess.Close() - if err = sess.Begin(); err != nil { - return err - } - - if err = changeMilestoneAssign(sess, issue, oldMilestoneID); err != nil { - return err - } - return sess.Commit() -} - -// DeleteMilestoneOfRepoByID deletes a milestone from a repository. -func DeleteMilestoneOfRepoByID(repoID, id int64) error { - m, err := GetMilestoneByRepoID(repoID, id) - if err != nil { - if IsErrMilestoneNotExist(err) { - return nil - } - return err - } - - repo, err := GetRepositoryByID(m.RepoID) - if err != nil { - return err - } - - sess := x.NewSession() - defer sessionRelease(sess) - if err = sess.Begin(); err != nil { - return err - } - - if _, err = sess.Id(m.ID).Delete(new(Milestone)); err != nil { - return err - } - - repo.NumMilestones = int(countRepoMilestones(sess, repo.ID)) - repo.NumClosedMilestones = int(countRepoClosedMilestones(sess, repo.ID)) - if _, err = sess.Id(repo.ID).AllCols().Update(repo); err != nil { - return err - } - - if _, err = sess.Exec("UPDATE `issue` SET milestone_id = 0 WHERE milestone_id = ?", m.ID); err != nil { - return err - } else if _, err = sess.Exec("UPDATE `issue_user` SET milestone_id = 0 WHERE milestone_id = ?", m.ID); err != nil { - return err - } - return sess.Commit() -} - -// Attachment represent a attachment of issue/comment/release. -type Attachment struct { - ID int64 `xorm:"pk autoincr"` - UUID string `xorm:"uuid UNIQUE"` - IssueID int64 `xorm:"INDEX"` - CommentID int64 - ReleaseID int64 `xorm:"INDEX"` - Name string - - Created time.Time `xorm:"-"` - CreatedUnix int64 -} - -func (a *Attachment) BeforeInsert() { - a.CreatedUnix = time.Now().Unix() -} - -func (a *Attachment) AfterSet(colName string, _ xorm.Cell) { - switch colName { - case "created_unix": - a.Created = time.Unix(a.CreatedUnix, 0).Local() - } -} - -// AttachmentLocalPath returns where attachment is stored in local file system based on given UUID. -func AttachmentLocalPath(uuid string) string { - return path.Join(setting.AttachmentPath, uuid[0:1], uuid[1:2], uuid) -} - -// LocalPath returns where attachment is stored in local file system. -func (attach *Attachment) LocalPath() string { - return AttachmentLocalPath(attach.UUID) -} - -// NewAttachment creates a new attachment object. -func NewAttachment(name string, buf []byte, file multipart.File) (_ *Attachment, err error) { - attach := &Attachment{ - UUID: gouuid.NewV4().String(), - Name: name, - } - - localPath := attach.LocalPath() - if err = os.MkdirAll(path.Dir(localPath), os.ModePerm); err != nil { - return nil, fmt.Errorf("MkdirAll: %v", err) - } - - fw, err := os.Create(localPath) - if err != nil { - return nil, fmt.Errorf("Create: %v", err) - } - defer fw.Close() - - if _, err = fw.Write(buf); err != nil { - return nil, fmt.Errorf("Write: %v", err) - } else if _, err = io.Copy(fw, file); err != nil { - return nil, fmt.Errorf("Copy: %v", err) - } - - if _, err := x.Insert(attach); err != nil { - return nil, err - } - - return attach, nil -} - -func getAttachmentByUUID(e Engine, uuid string) (*Attachment, error) { - attach := &Attachment{UUID: uuid} - has, err := x.Get(attach) - if err != nil { - return nil, err - } else if !has { - return nil, ErrAttachmentNotExist{0, uuid} - } - return attach, nil -} - -func getAttachmentsByUUIDs(e Engine, uuids []string) ([]*Attachment, error) { - if len(uuids) == 0 { - return []*Attachment{}, nil - } - - // Silently drop invalid uuids. - attachments := make([]*Attachment, 0, len(uuids)) - return attachments, e.In("uuid", uuids).Find(&attachments) -} - -// GetAttachmentByUUID returns attachment by given UUID. -func GetAttachmentByUUID(uuid string) (*Attachment, error) { - return getAttachmentByUUID(x, uuid) -} - -func getAttachmentsByIssueID(e Engine, issueID int64) ([]*Attachment, error) { - attachments := make([]*Attachment, 0, 10) - return attachments, e.Where("issue_id = ? AND comment_id = 0", issueID).Find(&attachments) -} - -// GetAttachmentsByIssueID returns all attachments of an issue. -func GetAttachmentsByIssueID(issueID int64) ([]*Attachment, error) { - return getAttachmentsByIssueID(x, issueID) -} - -func getAttachmentsByCommentID(e Engine, commentID int64) ([]*Attachment, error) { - attachments := make([]*Attachment, 0, 10) - return attachments, e.Where("comment_id=?", commentID).Find(&attachments) -} - -// GetAttachmentsByCommentID returns all attachments if comment by given ID. -func GetAttachmentsByCommentID(commentID int64) ([]*Attachment, error) { - return getAttachmentsByCommentID(x, commentID) -} - -// DeleteAttachment deletes the given attachment and optionally the associated file. -func DeleteAttachment(a *Attachment, remove bool) error { - _, err := DeleteAttachments([]*Attachment{a}, remove) - return err -} - -// DeleteAttachments deletes the given attachments and optionally the associated files. -func DeleteAttachments(attachments []*Attachment, remove bool) (int, error) { - for i, a := range attachments { - if remove { - if err := os.Remove(a.LocalPath()); err != nil { - return i, err - } - } - - if _, err := x.Delete(a); err != nil { - return i, err - } - } - - return len(attachments), nil -} - -// DeleteAttachmentsByIssue deletes all attachments associated with the given issue. -func DeleteAttachmentsByIssue(issueId int64, remove bool) (int, error) { - attachments, err := GetAttachmentsByIssueID(issueId) - - if err != nil { - return 0, err - } - - return DeleteAttachments(attachments, remove) -} - -// DeleteAttachmentsByComment deletes all attachments associated with the given comment. -func DeleteAttachmentsByComment(commentId int64, remove bool) (int, error) { - attachments, err := GetAttachmentsByCommentID(commentId) - - if err != nil { - return 0, err - } - - return DeleteAttachments(attachments, remove) -} diff --git a/models/milestone.go b/models/milestone.go new file mode 100644 index 000000000..8607887b7 --- /dev/null +++ b/models/milestone.go @@ -0,0 +1,349 @@ +// Copyright 2017 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package models + +import ( + "time" + + "github.com/go-xorm/xorm" + + api "github.com/gogits/go-gogs-client" + + "github.com/gogits/gogs/modules/setting" +) + +// Milestone represents a milestone of repository. +type Milestone struct { + ID int64 `xorm:"pk autoincr"` + RepoID int64 `xorm:"INDEX"` + Name string + Content string `xorm:"TEXT"` + RenderedContent string `xorm:"-"` + IsClosed bool + NumIssues int + NumClosedIssues int + NumOpenIssues int `xorm:"-"` + Completeness int // Percentage(1-100). + IsOverDue bool `xorm:"-"` + + DeadlineString string `xorm:"-"` + Deadline time.Time `xorm:"-"` + DeadlineUnix int64 + ClosedDate time.Time `xorm:"-"` + ClosedDateUnix int64 +} + +func (m *Milestone) BeforeInsert() { + m.DeadlineUnix = m.Deadline.Unix() +} + +func (m *Milestone) BeforeUpdate() { + if m.NumIssues > 0 { + m.Completeness = m.NumClosedIssues * 100 / m.NumIssues + } else { + m.Completeness = 0 + } + + m.DeadlineUnix = m.Deadline.Unix() + m.ClosedDateUnix = m.ClosedDate.Unix() +} + +func (m *Milestone) AfterSet(colName string, _ xorm.Cell) { + switch colName { + case "num_closed_issues": + m.NumOpenIssues = m.NumIssues - m.NumClosedIssues + + case "deadline_unix": + m.Deadline = time.Unix(m.DeadlineUnix, 0).Local() + if m.Deadline.Year() == 9999 { + return + } + + m.DeadlineString = m.Deadline.Format("2006-01-02") + if time.Now().Local().After(m.Deadline) { + m.IsOverDue = true + } + + case "closed_date_unix": + m.ClosedDate = time.Unix(m.ClosedDateUnix, 0).Local() + } +} + +// State returns string representation of milestone status. +func (m *Milestone) State() api.StateType { + if m.IsClosed { + return api.STATE_CLOSED + } + return api.STATE_OPEN +} + +func (m *Milestone) ChangeStatus(isClosed bool) error { + return ChangeMilestoneStatus(m, isClosed) +} + +func (m *Milestone) APIFormat() *api.Milestone { + apiMilestone := &api.Milestone{ + ID: m.ID, + State: m.State(), + Title: m.Name, + Description: m.Content, + OpenIssues: m.NumOpenIssues, + ClosedIssues: m.NumClosedIssues, + } + if m.IsClosed { + apiMilestone.Closed = &m.ClosedDate + } + if m.Deadline.Year() < 9999 { + apiMilestone.Deadline = &m.Deadline + } + return apiMilestone +} + +// NewMilestone creates new milestone of repository. +func NewMilestone(m *Milestone) (err error) { + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + if _, err = sess.Insert(m); err != nil { + return err + } + + if _, err = sess.Exec("UPDATE `repository` SET num_milestones = num_milestones + 1 WHERE id = ?", m.RepoID); err != nil { + return err + } + return sess.Commit() +} + +func getMilestoneByRepoID(e Engine, repoID, id int64) (*Milestone, error) { + m := &Milestone{ + ID: id, + RepoID: repoID, + } + has, err := e.Get(m) + if err != nil { + return nil, err + } else if !has { + return nil, ErrMilestoneNotExist{id, repoID} + } + return m, nil +} + +// GetWebhookByRepoID returns the milestone in a repository. +func GetMilestoneByRepoID(repoID, id int64) (*Milestone, error) { + return getMilestoneByRepoID(x, repoID, id) +} + +// GetMilestonesByRepoID returns all milestones of a repository. +func GetMilestonesByRepoID(repoID int64) ([]*Milestone, error) { + miles := make([]*Milestone, 0, 10) + return miles, x.Where("repo_id = ?", repoID).Find(&miles) +} + +// GetMilestones returns a list of milestones of given repository and status. +func GetMilestones(repoID int64, page int, isClosed bool) ([]*Milestone, error) { + miles := make([]*Milestone, 0, setting.UI.IssuePagingNum) + sess := x.Where("repo_id = ? AND is_closed = ?", repoID, isClosed) + if page > 0 { + sess = sess.Limit(setting.UI.IssuePagingNum, (page-1)*setting.UI.IssuePagingNum) + } + return miles, sess.Find(&miles) +} + +func updateMilestone(e Engine, m *Milestone) error { + _, err := e.Id(m.ID).AllCols().Update(m) + return err +} + +// UpdateMilestone updates information of given milestone. +func UpdateMilestone(m *Milestone) error { + return updateMilestone(x, m) +} + +func countRepoMilestones(e Engine, repoID int64) int64 { + count, _ := e.Where("repo_id=?", repoID).Count(new(Milestone)) + return count +} + +// CountRepoMilestones returns number of milestones in given repository. +func CountRepoMilestones(repoID int64) int64 { + return countRepoMilestones(x, repoID) +} + +func countRepoClosedMilestones(e Engine, repoID int64) int64 { + closed, _ := e.Where("repo_id=? AND is_closed=?", repoID, true).Count(new(Milestone)) + return closed +} + +// CountRepoClosedMilestones returns number of closed milestones in given repository. +func CountRepoClosedMilestones(repoID int64) int64 { + return countRepoClosedMilestones(x, repoID) +} + +// MilestoneStats returns number of open and closed milestones of given repository. +func MilestoneStats(repoID int64) (open int64, closed int64) { + open, _ = x.Where("repo_id=? AND is_closed=?", repoID, false).Count(new(Milestone)) + return open, CountRepoClosedMilestones(repoID) +} + +// ChangeMilestoneStatus changes the milestone open/closed status. +// If milestone passes with changed values, those values will be +// updated to database as well. +func ChangeMilestoneStatus(m *Milestone, isClosed bool) (err error) { + repo, err := GetRepositoryByID(m.RepoID) + if err != nil { + return err + } + + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + m.IsClosed = isClosed + if err = updateMilestone(sess, m); err != nil { + return err + } + + repo.NumMilestones = int(countRepoMilestones(sess, repo.ID)) + repo.NumClosedMilestones = int(countRepoClosedMilestones(sess, repo.ID)) + if _, err = sess.Id(repo.ID).AllCols().Update(repo); err != nil { + return err + } + return sess.Commit() +} + +func changeMilestoneIssueStats(e *xorm.Session, issue *Issue) error { + if issue.MilestoneID == 0 { + return nil + } + + m, err := getMilestoneByRepoID(e, issue.RepoID, issue.MilestoneID) + if err != nil { + return err + } + + if issue.IsClosed { + m.NumOpenIssues-- + m.NumClosedIssues++ + } else { + m.NumOpenIssues++ + m.NumClosedIssues-- + } + + return updateMilestone(e, m) +} + +// ChangeMilestoneIssueStats updates the open/closed issues counter and progress +// for the milestone associated with the given issue. +func ChangeMilestoneIssueStats(issue *Issue) (err error) { + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + if err = changeMilestoneIssueStats(sess, issue); err != nil { + return err + } + + return sess.Commit() +} + +func changeMilestoneAssign(e *xorm.Session, issue *Issue, oldMilestoneID int64) error { + if oldMilestoneID > 0 { + m, err := getMilestoneByRepoID(e, issue.RepoID, oldMilestoneID) + if err != nil { + return err + } + + m.NumIssues-- + if issue.IsClosed { + m.NumClosedIssues-- + } + + if err = updateMilestone(e, m); err != nil { + return err + } else if _, err = e.Exec("UPDATE `issue_user` SET milestone_id = 0 WHERE issue_id = ?", issue.ID); err != nil { + return err + } + } + + if issue.MilestoneID > 0 { + m, err := getMilestoneByRepoID(e, issue.RepoID, issue.MilestoneID) + if err != nil { + return err + } + + m.NumIssues++ + if issue.IsClosed { + m.NumClosedIssues++ + } + + if err = updateMilestone(e, m); err != nil { + return err + } else if _, err = e.Exec("UPDATE `issue_user` SET milestone_id = ? WHERE issue_id = ?", m.ID, issue.ID); err != nil { + return err + } + } + + return updateIssue(e, issue) +} + +// ChangeMilestoneAssign changes assignment of milestone for issue. +func ChangeMilestoneAssign(issue *Issue, oldMilestoneID int64) (err error) { + sess := x.NewSession() + defer sess.Close() + if err = sess.Begin(); err != nil { + return err + } + + if err = changeMilestoneAssign(sess, issue, oldMilestoneID); err != nil { + return err + } + return sess.Commit() +} + +// DeleteMilestoneOfRepoByID deletes a milestone from a repository. +func DeleteMilestoneOfRepoByID(repoID, id int64) error { + m, err := GetMilestoneByRepoID(repoID, id) + if err != nil { + if IsErrMilestoneNotExist(err) { + return nil + } + return err + } + + repo, err := GetRepositoryByID(m.RepoID) + if err != nil { + return err + } + + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + if _, err = sess.Id(m.ID).Delete(new(Milestone)); err != nil { + return err + } + + repo.NumMilestones = int(countRepoMilestones(sess, repo.ID)) + repo.NumClosedMilestones = int(countRepoClosedMilestones(sess, repo.ID)) + if _, err = sess.Id(repo.ID).AllCols().Update(repo); err != nil { + return err + } + + if _, err = sess.Exec("UPDATE `issue` SET milestone_id = 0 WHERE milestone_id = ?", m.ID); err != nil { + return err + } else if _, err = sess.Exec("UPDATE `issue_user` SET milestone_id = 0 WHERE milestone_id = ?", m.ID); err != nil { + return err + } + return sess.Commit() +} diff --git a/models/repo_mirror.go b/models/mirror.go similarity index 100% rename from models/repo_mirror.go rename to models/mirror.go diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index a140d6a32..047bc819a 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -291,7 +291,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7b\xed\x8f\xe4\x48\x9a\xd7\xf7\xf8\x2b\x62\x6a\x59\xa6\x1b\x39\x33\xab\xaa\x5f\xa6\xa6\x6b\x73\xb5\xee\x4c\x67\x96\xaf\xf3\x6d\x6c\x67\xf7\xf4\xb4\x4a\xee\x28\x3b\x32\x33\xb6\xec\x08\x8f\x23\x5c\xd5\x39\x42\xa7\x5d\xf1\x81\x17\x09\xf1\x01\x38\x84\x74\x42\xec\x07\x38\xe9\xe0\xe0\x4e\x80\xb4\x0b\x0b\x7c\x18\xee\x7b\xcf\xff\x70\xcc\x71\x08\x74\xff\x02\x7a\x9e\xb0\x33\x9d\x35\x35\xcd\x9c\x04\x33\x52\xa5\xed\x88\x78\x22\xe2\x79\xfd\x3d\x4f\x44\xff\x88\x7e\xf4\xd1\x47\x74\xe6\xbd\xf4\x02\x8a\x7f\xa6\xf3\xa1\x3f\x7a\x4d\xa3\x0b\x3f\xa4\x23\x7f\xe2\x41\x3b\xb1\xbd\x16\x13\xcf\x0d\x3d\x3a\x75\x5f\x78\x74\x70\xe1\xce\xc6\x5e\x48\xe7\x33\x3a\x98\x07\x81\x17\x2e\xe6\xb3\xa1\x3f\x1b\xd3\xc1\x32\x8c\xe6\x53\x3a\x98\xcf\x46\xfe\xf8\x2e\x05\x7f\x44\x5f\xcf\x97\xd4\x0d\x3c\xba\x70\x07\x2f\xdc\x31\x8c\x58\x04\xf3\x97\xfe\xd0\x0b\x9c\x83\x09\xe6\xaf\x80\xf2\xe2\x35\x9d\x8f\xa8\x1f\x21\x0d\x72\x4e\xdd\xa2\xa0\x92\xe5\x9c\x9a\x0d\x33\x54\x6f\xd4\xad\xa6\x4a\x52\x7e\xc3\xcb\x2d\x2d\xd8\x9a\x53\x23\x4c\xc6\x89\xbb\x58\xc4\x33\x77\xea\xd1\x3e\x1d\xab\xb5\x7e\x46\xc7\x8a\x8e\x85\xa1\x21\x2f\x6f\x44\xc2\xc9\x39\x8d\x36\xdc\x52\x52\x2b\x6a\x36\x9c\xea\xad\x36\x3c\xa7\x95\xe6\xa5\x25\x5e\x56\x52\xe3\x60\x12\x2c\x67\xf1\x32\xf4\x02\xda\xa7\x6b\x61\xc8\x39\xf5\x84\xd9\xf0\x92\x1e\xa5\xfc\xe6\xc8\xa1\x47\x45\xa9\xd2\x23\xaa\x4a\x7a\x64\xb8\x36\x47\xd8\x7f\x3a\x1f\xc2\xe4\x29\xbf\x21\xe4\x4d\xc9\x0b\xa5\x85\x51\xe5\xf6\x92\x9c\xd3\x40\x29\x43\x0b\x66\x36\x74\xa5\x4a\xaa\x8d\x2a\x85\x5c\xd3\x5d\x1f\xc1\xf5\xc7\x9a\xa6\xcc\x30\x87\xa6\x7c\xc5\xaa\xcc\x50\xa1\xe9\xd1\xef\xf6\x7e\x02\x8b\x83\x35\xff\xb4\xb7\x56\x6b\xdd\x69\x0f\x39\x22\xc1\x7c\x1e\xd1\x7e\xbd\x33\x9d\x94\xa2\x30\xd4\x6c\x0b\x4e\x35\x2f\x6f\x78\x49\x75\x55\x14\xaa\x34\xda\xa1\x5a\xe5\xdc\x88\x9c\x6b\x9a\xa8\x2a\x4b\xe9\x15\xa7\x47\x7a\x73\x44\xc2\x41\xe0\x2f\xa2\x38\x7a\xbd\x80\xa5\x5f\x31\xbd\x21\xe7\x74\x58\x2f\xc1\x9d\x85\x3e\x4d\x36\xac\xd4\xdc\xe0\xc2\x99\xa4\x95\x2c\x79\xa2\xd6\x52\x7c\xc5\xd3\xa6\x8d\x40\xc7\x78\x70\xe1\x06\xa1\x67\xd7\x33\x52\x65\xc2\x6b\x11\x49\x7e\xbb\xdf\xe9\x96\x1a\x05\x93\x17\xa5\xb8\x61\x86\x93\xd1\x3c\x18\x78\xf1\x22\xf0\x5f\xba\x11\xac\x60\xc5\x32\x0d\xa2\x1a\x67\xea\x8a\x65\x34\x67\xef\x44\x5e\xe5\x34\x29\x39\x33\x42\x49\x9a\x89\x5c\x18\x90\x5f\x8b\x62\xc1\x4b\x94\xa1\x43\x3b\x27\x34\xe7\x4c\x6a\x2a\x95\xed\x49\xa6\xee\xe7\xf1\x20\xf0\xdc\xc8\x9f\xcf\xe2\x89\x3f\xf5\x23\xda\xa7\x9d\x13\x72\x4e\xa7\xa2\x2c\x41\x16\x5b\x99\xd0\x2f\x2b\x5e\x71\x9a\x71\xb9\x36\x1b\x87\x0a\x09\xd3\x69\x4e\xc5\x8a\xe6\xfb\x5e\x20\x31\x6d\x58\x69\x34\xdd\x30\xb9\x16\x72\x4d\xa6\x7e\x10\xcc\x83\xf8\xb3\xa5\xb7\xf4\xe2\x89\x37\x1b\x47\x17\xb4\x4f\x4f\x8e\x8f\x8f\xc9\x39\x5d\x30\x93\x6c\x28\xa8\xc7\x07\xe8\x17\x55\x96\xd1\x92\x7f\x59\x41\xb7\x62\x37\xe2\x9e\xb9\x16\xcb\xc9\x24\x0e\xbc\xcf\x96\x5e\x18\x7d\xdf\x8c\x25\x5f\xf1\xb2\xe4\x29\x9d\x88\x84\x4b\xcd\x35\x70\xbb\xc8\x58\xc2\x29\x33\xa8\xf2\x46\x15\x8d\xf6\x67\x42\x83\x62\xcf\xc0\x20\xf2\x4a\x1b\x9a\xe3\xf4\x2b\x91\xd5\x56\x22\x24\x4d\x94\x5c\xf5\x32\x4b\x0c\xb4\x3d\xa9\xb4\x51\x79\xaf\xfd\x99\x2c\x02\x6f\xe4\x05\x81\x37\x8c\x27\xfe\xc0\x9b\x85\x5e\x48\xfb\xd4\x2d\x58\xb2\xe1\xcd\x3a\xe8\x69\xf7\xd8\x01\xde\xd7\xef\xa0\x63\x42\xb3\xab\x8c\x53\x76\x25\x32\x61\x50\x2d\x84\x34\xbc\x64\x89\xa1\xb7\xc2\x6c\x0e\x8c\x83\x5e\x6d\xe9\x45\x14\x2d\x68\x51\x2a\xa3\x12\x95\x91\xa1\x1f\xba\xcf\x27\x5e\x0c\x5f\xe3\x31\x4a\xb5\x51\x1d\x4f\xde\x25\x9c\x8b\x75\xc9\x0c\x6f\xeb\xcc\xd5\x96\x66\x2a\x61\x19\x1a\x25\xf1\x66\x48\x6c\x32\x1f\xb8\x93\x78\xe1\x46\x17\xf1\xd4\x1f\x07\xa8\x34\x3b\xc2\x6d\x93\xee\xf2\x14\x7e\xc1\xb2\x27\x42\xa3\x3e\x22\xdb\xf8\x3b\xc3\xa5\x16\x4a\xea\x9d\xb3\x02\x63\xdb\xb0\x1b\x60\xb7\xe4\xf4\xb6\x64\x85\x06\xc6\x82\x00\x06\x2a\xe5\xb5\x16\x5a\x7a\x5d\x72\x4e\x43\x5e\x30\x5c\x6c\x8b\x16\xf2\x83\xd1\x44\xe5\x39\xeb\xd2\x48\xed\x69\xe1\xb4\xb6\x83\xaa\xcc\x7e\x8c\x43\x7f\x0e\x12\x2d\x2a\xd3\x8c\x23\x13\x7f\xe6\xc5\xaf\x02\x77\x11\x7b\x9f\x47\xde\x2c\xf4\xe7\x33\x10\x54\xd7\xbc\x33\x4e\x37\x4f\x9d\x6e\xce\xca\xeb\x54\xdd\x4a\x78\xb3\x3f\xd7\xa9\x43\xce\xe9\x4b\x96\x89\xd4\xee\x2f\x57\x29\xaf\xb7\x86\x7b\x62\xb4\x28\xf9\x8d\xe0\xb7\xd4\x5d\xf8\x94\x69\xad\x12\xc1\x0c\x4f\xed\x8a\xcd\x86\xe7\x0e\xd5\x55\xb2\xa1\x4c\x53\x56\x88\xde\xcd\x49\xaf\x99\xe5\x60\xaf\x37\x2c\xab\xac\x94\x71\xad\xba\x0b\xaa\x8c\x74\x0d\xbb\x02\x76\x01\x7f\x70\x76\x7a\xab\xe4\xc7\x36\x0a\x80\xf9\x00\x1b\x0f\x39\x4f\x53\xc5\x35\x74\x41\x6d\x06\xe5\x7c\xe9\x7b\xaf\x50\xbc\x10\x98\xd0\x49\xc3\xbe\x9b\x75\x1c\xca\xb5\x2a\x32\xc5\xd2\xcb\xbd\x16\xb5\x54\x06\xe7\xb1\x1d\x74\xb7\x56\x99\x21\xed\x53\x53\x56\xdc\x9a\xfb\x06\x94\xcd\xf0\xbc\x50\x25\x2b\x45\xb6\x45\x47\xbf\x1b\x43\x1f\x34\xae\x1d\x03\xc1\x9a\x1b\x4d\x93\x8c\x33\xc9\x53\xd8\x39\x84\x1d\xdc\x2a\x3a\x4d\x34\xfe\x87\x24\xf2\xa6\x0b\x54\x48\x88\x2b\xcc\xb0\x9e\xc9\x8b\x5e\x4d\x0f\xdc\x2c\x2c\x09\x1c\x7e\x2d\x14\x56\x72\xca\xb2\x4c\xdd\xf2\xb4\xf6\xb3\xb6\x2f\x4f\x1d\xca\xbb\xeb\x2e\x15\x39\x5b\xf3\xde\xcf\x0b\xbe\xfe\x9b\xf6\xb1\x90\xeb\x2e\x9d\x70\x10\x26\xcf\x0b\xb3\xad\xfd\x27\x12\xa1\x4c\xd6\xbb\x86\x29\x88\x3b\x99\xcc\x5f\x79\x43\x8c\x15\x21\x7a\xf9\x69\xed\x9d\xb5\xf8\x0a\x63\x2a\x67\x8d\xff\x10\x92\x4e\x9f\x13\xcb\x70\xf7\xf3\x38\xf4\xbf\x00\xe7\xfe\xa8\x35\x46\x56\xf9\x15\x2f\x1b\xcb\xd1\xd6\x89\xe3\x62\xd1\x67\xc3\x50\x10\xd3\x13\x42\xde\x54\x02\x04\x32\xdb\x0d\x38\xf0\x0c\xbb\x7d\x83\x4a\xf0\x14\x66\x56\x12\xf4\xa1\xc8\x80\xf7\x80\x0f\x88\xf7\xf9\x62\x32\x0f\xbc\x78\x81\xe0\x23\x9e\x2d\xa7\xb4\x4f\x4f\x8f\x0f\x88\x0a\xad\xab\xef\x27\x87\x64\xfc\x30\x5c\xde\x21\x72\x72\x48\x64\x17\xae\x54\x9e\x0b\xa3\xef\x10\x61\x89\x11\x37\xe0\x92\x56\x9c\xa7\x64\xe4\x79\x43\x64\xce\x60\x3e\x9d\xfa\x51\x4d\xf0\x89\x35\xb8\x0a\xf9\x79\x04\x16\xc4\x3b\x89\xca\x54\x79\x44\x73\x6e\x18\x35\x6c\xed\x40\xb0\x43\x95\x71\x65\x5a\x2a\x91\xd2\x9f\xf6\xe9\x93\x2e\xac\xc4\x95\x54\xc8\x1b\xb4\x57\x1c\x44\x33\x71\xcd\xe9\x91\x54\x92\x5b\xb0\x92\x5a\xaf\x7b\x44\x6f\x45\x96\x59\x1b\x06\x13\x6a\x14\x53\x9b\x6d\x06\xba\x3c\x05\xd6\x09\xb9\x52\xcf\xe8\xc6\x98\x42\x3f\xeb\xf5\x52\x7e\xc3\x33\x55\xf0\x52\x77\xd7\x4a\xad\x33\xde\x4d\x54\xde\xbb\xe5\x57\xbd\xaa\x48\x99\xe1\xba\x77\x7a\x7c\xf2\xb8\x77\x72\xd2\x0b\x2d\xe8\xe8\xac\x54\xd9\x69\x6d\xa0\x23\x64\x67\xb0\x29\x55\xce\x3b\x8f\x3e\xc5\xc6\x7a\xf9\x24\xba\xf0\xa6\x5e\x3c\x98\x4f\xe6\x41\x3c\xf5\x22\x37\x8e\xdc\x31\xed\xd3\xb7\x3f\x5a\xad\x9e\x3c\x7a\xfc\xe8\xad\xd5\x1a\xab\x65\x42\xd2\xab\xad\xe1\x7a\xaf\x38\x56\xcf\x53\xa1\x8b\x8c\x6d\x79\xba\xb7\x32\xa1\xe9\xd9\xf4\xf9\x43\x54\xa7\xa1\x1f\x2e\x26\xee\x6b\xeb\x02\x6a\x6d\x3c\x7b\x74\x76\xf6\xf4\xf8\x0c\x15\xac\xcb\xd2\x5c\xc8\x43\x35\x03\x48\xf1\x61\x85\x00\x80\x78\xa8\x0f\x4f\x8e\xbf\xab\xa9\x1f\x24\x11\x78\x8b\xf9\x07\x49\x48\x65\x44\xf2\x7f\x51\xcc\xd9\x3c\xf2\x07\x77\xd5\xfb\xc9\x01\x19\x55\xae\x99\x14\x5f\x59\x10\xf5\x21\x5a\xf3\x60\xfc\x9d\xf5\x20\x87\x80\x1d\xf7\xd8\xe1\x5f\x71\x77\x27\x60\xd0\x8d\xef\x6d\xf9\xd9\x0d\x2b\x53\x1b\xd6\xae\x4a\xce\xae\xf7\xfe\xbc\x89\xcd\x17\x6e\x00\x00\x63\xe6\xc5\xcf\x03\xcf\x7d\xd1\x8a\xf7\x4d\x04\xb6\xd8\x84\x2e\x83\x49\x27\x4c\x40\xef\xee\x71\x8a\x4c\xc3\x24\xd7\x9a\xde\x6e\xb8\xa4\x25\x97\x29\x47\x24\x3e\x6d\xa2\xc1\x39\xe2\x5c\xfe\x8e\xe5\x45\xc6\x01\xfa\x3b\x39\x5b\x4b\x6e\x88\xcd\x71\xe2\x65\x30\x89\xc3\x01\x28\xac\x75\x81\x3f\x24\xfc\x5f\xf1\x7a\x26\x9e\xf6\x20\x90\xd9\x75\xb4\xa6\xfc\x41\x31\xdf\x92\x68\x02\x7e\x4f\xb5\x42\x1e\xd3\xbb\x70\x76\x4f\xe0\x47\x9d\x3f\x8c\xf9\xdf\x17\xee\x09\x79\x63\x33\x87\x4b\xb2\x08\xe6\xd1\x7c\x30\x9f\xd0\x3e\xba\x00\x32\x9c\x4f\x5d\x1f\xd0\x10\xc2\xa6\x8d\xd2\x06\xb3\x0f\x60\x08\xed\xd3\x1f\x3f\x68\xfa\x3f\x04\x67\xf1\xe3\x07\xb6\xfb\x43\xfd\xec\xc7\x0f\x10\xa2\x2d\xe6\x41\xf4\x50\xf7\x08\xbe\xb8\xc3\x21\x24\x56\xc7\x5d\xfc\x9f\xec\x3a\x40\x88\xa8\x91\x2c\x2f\x73\xa1\x71\x73\x20\x8f\x4a\x8a\x77\x54\xab\xe4\x9a\x1b\xb2\x9c\xf9\x9f\xc7\xe1\x7c\xf0\xc2\x8b\xe2\x85\x17\x4c\xfd\x30\xb4\x30\xed\xe9\xd3\xa7\x20\x10\x44\x75\x0f\x86\xd3\x2f\x1e\x82\x2a\xe0\x70\x0c\xad\xb7\xaa\xbc\x06\x83\x7e\xd0\x00\x92\x30\xbc\xa0\xd6\x77\x3d\xa4\x2c\x49\xb8\xd6\xa0\x09\xb7\xfc\x0a\xb3\x27\x91\x70\x80\x28\xbe\xa4\xb9\xd2\x86\x26\x0c\xd0\xf4\x56\x55\x34\x55\x60\x93\x54\x72\x1b\x63\x13\xc0\xe7\x87\x5e\x14\xd1\x0c\x0c\x76\x33\xc3\x4b\x0a\xf9\x8a\xcc\xb6\x00\x57\xb6\xaa\x2a\x71\xde\x3a\x3f\x93\x80\x68\x84\x46\x82\x98\x90\x02\xec\x66\xda\x62\x5d\x68\xec\x12\x8b\x49\x3f\xc4\xea\x1d\x4b\xbf\xcb\xed\x3d\xcc\x86\x49\x57\x9c\x99\xaa\xe4\x56\xf7\x61\x4a\x76\xc3\x44\x06\xcd\x3b\x38\x0d\xdd\xf6\x96\xf5\x6a\xc3\x31\xe9\xad\x34\xa7\x57\x95\xc8\x8c\x90\xed\xd5\x2b\xd8\x80\xe9\x92\x30\x72\x83\x08\x86\xc6\xa1\x17\xbc\xc4\x9c\xb9\xa1\x30\x54\x39\x13\xb2\x4e\xdf\xd1\x51\xf3\x77\x85\xd2\xd6\x4d\x00\xa9\x24\x03\x67\xb1\x0c\x26\x04\xc6\xef\x94\x6c\xaf\x40\xa0\x0c\xaa\x34\x0d\x5e\xf8\x01\x44\x6a\x4d\x3a\x3d\x05\x67\xc5\x0d\xc8\xdd\xa6\x16\x2b\xc8\x83\xee\xd9\x07\x24\x42\x5c\x6a\xaa\x24\x8e\x9f\xf8\x61\xe4\xcd\xe2\x8b\x79\x18\xb5\x94\xf4\x70\x19\x3f\x98\x4a\xbd\x98\x1f\x3f\x68\x56\x86\x3b\xda\x97\x03\xd4\x0a\x69\xa4\xa2\xe4\x09\xa0\xcc\x83\xfc\xff\xe3\xdf\xed\x75\xb5\xde\x7c\xec\xd0\xab\xca\xa0\xf2\xd9\x88\xad\x50\x22\x1f\xf7\x36\x2a\xe7\xbd\xb5\x30\xb6\x57\x17\xe7\x45\x4d\xb1\x88\x11\xc5\x5f\xd3\x45\x55\x85\x24\x9a\xef\x00\xea\xb6\xf1\x25\xa0\x0e\x98\xa6\x16\xd5\x55\x26\x92\x6b\x7a\xcd\xb7\xb4\x42\x6b\xd0\x7a\xd3\xb9\xe6\xdb\x35\x97\x90\x09\xb4\x96\x56\x97\x4e\xf6\xb4\x76\x3b\xb0\xcb\x78\xe1\xbd\x8e\x23\xc8\x54\x77\x4b\x69\xf0\x71\x8b\xe4\xc1\x5e\xf7\xdf\x3f\xa6\x4c\xa6\x34\xe3\xe0\x40\x79\x96\xd1\x95\x90\x29\x85\xf4\xe6\x76\x23\x92\x0d\x46\x17\xd8\x0d\xcb\xb2\xdd\x5c\x63\x60\xb5\x85\xc9\x7b\x3a\x68\xbe\xa9\x48\x60\xd3\xb7\xb5\x2a\xa3\xc5\xf2\xe4\x9a\xe6\x42\x22\x54\x83\xbd\x22\xb2\x40\x87\x9b\xa8\xb2\xe4\xba\x50\x32\x85\xdd\x23\xec\x9d\xfa\x33\x7f\xba\x9c\xe2\x8e\x00\x39\xc4\x83\x0b\x6f\xd0\x8e\x3f\x8d\x89\x0d\x86\x33\x00\xef\x00\xc1\x9a\xfa\x10\x64\x2c\x64\x3e\x1a\x61\xdc\xaa\xcb\x43\x76\x58\x63\x70\xc1\x7c\x19\x79\x41\x3c\x99\x8f\xdb\xc5\x0f\x2e\x39\xc6\x03\x6d\x78\xa1\x9f\x91\x73\xfa\xd7\x68\x17\xeb\x3f\x34\xe1\xa5\xa1\x9d\x84\xf5\x21\xeb\xa0\x9d\xb4\x2a\x31\xa4\xf7\xcf\x3e\x79\x7a\xbc\x39\xce\x8f\x35\xed\x80\x6f\xee\xe7\x5b\xf8\xe9\xd6\x81\x0c\xb0\x1a\x39\x27\xe7\x74\x5e\xd2\x55\xa9\x72\xca\x68\xb7\x58\xbd\x6b\xa2\x16\xc0\x35\x9e\xda\x16\x70\x43\xaf\x84\x4c\xd5\xad\x9d\x4c\xac\x2c\x03\x6d\x2a\xf3\x20\x55\xe4\x1c\x7d\xc7\x4a\x95\x6b\x6e\x80\x9f\x76\x3c\x0e\xac\xab\x3a\xc0\xd4\x87\x76\xd9\xaa\xe0\x52\xeb\x8c\x16\xd7\x89\x3e\x39\xa5\x1d\x21\x91\x2a\xce\xde\x01\x99\xda\x37\x9e\xd3\x8e\x54\xd7\x7c\xab\x7f\xd8\xa8\x6b\xbe\x6d\x06\x41\x83\x86\x87\x94\x6b\x32\xf0\x82\x08\x41\x1e\xed\x37\xb5\x0a\x04\xb0\xbd\x66\x1a\x02\x62\xbc\xaf\x43\x4d\x91\x9c\xd3\x65\x01\xb9\x48\x06\x78\x17\x4b\x25\x3c\x2f\x32\xd8\x14\x28\xa5\x36\xcc\x88\xc4\xf2\x0d\x2b\x07\x07\x46\x81\x2c\x00\x35\xbf\xdd\xf0\x92\xd7\x19\x9d\xa6\xfc\x1d\x4f\x2a\xc3\x53\x70\x94\x91\x3f\xb8\x6b\xa2\xed\xa4\x10\xa2\x95\x5b\x14\x98\xeb\x61\x41\x73\xe8\x46\x6e\x3b\x01\xb4\xf5\xd0\x0c\x64\x82\xe5\x30\x5c\xe5\xf8\x0b\x7f\xd1\xd4\xfa\x1a\xbc\x84\xdf\x5a\x20\x89\x59\x95\xc6\x7a\xe9\x0a\x3d\xb7\xec\x64\x6a\xbd\xe6\xa9\x05\xba\x0e\x4d\x98\xc4\xb2\x20\x78\x15\x9b\x2d\xd4\x49\xd4\x11\x99\xb8\x58\xe8\x05\x28\x07\x8c\x83\x1e\x84\xbc\x01\xc6\x5d\xee\xf2\x15\x5c\x3a\x86\xd1\xce\x40\x49\x53\xaa\xac\xe3\x02\xea\xea\xcc\x4b\xb1\x16\x92\x6e\x38\x4b\x79\x79\x60\xf3\x18\xf6\x14\x2d\x4a\xae\xb9\x34\xc4\x1d\x0c\xbc\x30\x8c\x07\xf3\x59\x14\xcc\x27\x31\xe6\x9b\xf1\x3c\xf0\xc7\x18\x12\x88\xe5\x15\x40\xc4\x1d\x9a\xcb\xd6\xaa\x14\x66\x93\x6b\x14\x8e\xd9\x70\x51\x1e\x18\xb6\xad\xb8\xd1\x07\xe0\x2e\x3b\x27\x30\x57\xda\x94\x9d\xd0\xb8\x1f\x92\x37\x5a\x6f\xba\xf5\x90\xf8\x9a\x6f\x63\xf0\x05\xfa\x92\x78\xc3\xd3\x27\x4f\x4e\x3e\x45\x20\xfd\x94\x78\x83\x61\xe8\x52\x5a\xbf\x05\xf8\x8c\x6f\xc7\x8f\xcf\xc8\x70\xf7\x7a\x72\x7c\xfa\x98\x90\x37\x20\xa7\x2b\xa6\xf9\x65\xab\x6c\x9c\x6f\xf5\x97\x19\x16\x8e\x95\x36\xeb\x92\x6b\xcb\x61\xfd\x65\x26\x0c\x7f\x74\xe4\xa0\x77\x07\x09\x24\x4a\x4a\x9e\x20\x5f\x22\x31\x7c\x6e\xdd\xd2\x74\x1b\x7e\x36\x69\x15\xbf\x9e\x37\x05\x5b\x24\x4b\xea\x50\x75\x72\xfa\x09\x06\xab\x93\x67\x8f\x1e\x1d\x3f\x25\x75\x2d\x1c\xdc\x06\xa9\x4b\xd9\xa5\x52\x86\x2c\xdc\x30\x7c\x35\x6c\xca\xb4\x07\x2b\x92\xd9\xd6\xa1\xbc\xa9\x74\xd7\xb9\xa2\x43\x8f\x4a\xfe\x65\x25\xca\x5a\x2b\x6e\x78\x29\x56\xdb\xce\xaa\xca\xb2\x23\x12\x86\x93\x5d\xdd\xdb\xf6\x6f\xc8\x36\x5b\x43\xd1\x1c\x19\x91\x5e\x1d\x61\xe6\x4a\xd9\x95\x56\x59\x65\xf6\xa6\x22\x71\xf3\x58\xf1\x00\xf0\x53\xa3\x2f\xd2\x2e\x7b\xc0\x26\xba\xe9\x15\x21\x6f\xea\x44\x0d\x80\x6a\x52\x95\xc2\x6c\x2f\x89\x3f\x0b\x23\x77\x32\x89\x27\xf3\x03\xbf\xfc\xd1\x47\xf6\xc0\xc2\x9e\x6b\x44\x73\xfa\xc2\xf3\x16\xf4\xf5\x7c\x19\x50\x64\x07\x98\x16\x0d\xdd\x91\xf7\xd1\x47\x24\xf4\x06\x81\x17\x81\x8f\xa7\x7d\xfa\xd1\x8f\x7e\x36\x1a\x7a\xaf\x02\xef\x55\xf0\xd7\xff\xc6\x03\xb0\xb8\xca\x28\x30\x16\x01\x29\x43\xce\x11\x01\xa4\x6c\xab\xc9\x64\x3e\xf6\x67\x71\xe0\x4d\xbd\xe9\x73\x2f\x88\x87\xee\x6b\x80\xd7\x9f\x90\xc1\x7c\xfe\xc2\xf7\xf0\x00\xa1\x25\x85\x98\xdd\x72\x0d\xa6\x53\x37\xef\xc6\xb5\xfb\x60\x71\x38\x15\x96\x91\x01\xbf\xe1\xa5\x06\xbf\xaa\xde\x6d\x29\xab\xcc\x86\x4b\xd3\xd8\xbe\x35\xa8\xdd\x81\x06\x9e\x62\xc0\x0b\x09\xbc\x97\x5e\x10\x7a\xf1\x22\x98\x7f\xfe\x3a\x76\x97\xd1\x85\x37\x8b\xfc\x81\xad\x81\xd7\x9a\xf0\x79\xe7\x95\xf7\x1c\x9a\x3a\xf0\xa1\xc6\xfd\x22\xe1\x97\xc4\x1d\x44\xfe\x4b\x48\xc7\x87\x5e\x3c\x81\xa7\xa9\x3f\x5b\x46\x58\x8c\x39\x39\x3b\x26\x81\x17\x02\xf0\x46\x1d\xfa\xde\x4e\xe7\x74\x89\xab\x69\x30\xb2\x92\x2b\x51\xe6\x94\x77\x72\x26\x32\xf4\x14\x25\x5f\x0b\x6d\x6c\xf0\x22\x81\x37\x06\xb4\x14\xc4\xde\xd4\xf5\x27\x31\x9e\x23\x05\xd3\x03\x18\xc9\xad\xb7\xb0\x75\x29\x3b\x98\x97\xa8\x5a\xa8\x10\x0d\xb6\x61\x49\xa2\x2a\x69\x01\xf7\x3e\xc6\x22\xf9\x3b\xe5\xdc\x7a\x89\x58\xf8\xd6\x62\x8d\x51\xdb\x28\x8a\x45\x47\x26\xb7\x66\x23\xe4\xba\x4b\x02\xef\xb3\xa5\x1f\x78\x71\xe8\x8f\x67\xfe\x2c\x7e\xe9\x7b\xaf\x5a\x14\xa6\xb0\x1b\x48\xd0\x57\xb5\x4c\x1a\xe7\x0b\x09\xf9\xe8\x75\x0c\xbb\x69\x77\x87\x08\x9a\x72\xc3\x44\xb6\xaf\xab\xac\x85\xd9\x54\x57\x58\x4c\x59\xab\xb5\x30\x1a\x75\xbd\x67\xcb\x51\xbd\x93\xa7\x4f\x1a\x9a\x1f\x92\xea\x6e\x92\xef\xeb\x3b\xff\x3e\x26\xd4\xe9\x77\xc2\x0a\x93\x6c\x18\xc5\xda\x91\x55\xaf\xef\x48\xa9\xa6\x3d\x70\x17\xd1\xe0\xc2\x6d\x0a\x9f\xe4\xcd\x2d\xbf\xda\x28\x75\x0d\xde\xee\x42\xa9\x6b\x6a\x98\xbe\xfe\xc0\x89\x47\xdd\x1d\x92\x63\x75\xdf\x39\xc7\xfd\x47\x1b\x43\x9e\x09\x40\xd9\x46\xe4\x1c\x00\x80\x90\x54\xf3\x44\xc9\x54\x93\xa1\x07\x1a\x18\xc4\x91\x3f\xf5\xe6\xcb\xa8\x2e\xa2\x61\xec\xa1\x42\xa2\x9b\xe0\x2d\x28\x03\x5b\x09\x5f\xf8\x8b\x38\x9a\x84\xf1\x4b\x2f\xf0\x47\xaf\x5b\xfc\xd8\x57\x37\x36\x42\x23\x70\x16\x72\xa5\xca\xdc\xf2\x44\x48\x5b\xe3\xc4\xe2\xc6\xdd\x42\x20\x79\x03\xda\x0d\xb9\xf3\xbe\x36\xdc\x90\x7d\x5e\xad\x56\x08\x2a\x30\x1e\xa9\x15\xa6\x8d\x92\x67\x0e\xbd\xe6\xbc\x80\x14\x91\x69\xf8\x2b\x74\x9d\x26\xd2\x14\xeb\xdc\xd7\x52\xdd\xd2\xdb\x0d\x33\xb6\xb1\x4b\x42\x6f\x36\x8c\x9f\x2f\x47\x23\x00\x8d\xde\xcc\x32\xa8\x39\xc5\xd9\x17\xc1\x84\xa4\x68\x6a\xf6\x64\x34\x5c\x3e\xff\x1d\x6f\x60\xf3\x90\xe6\x94\x14\xf3\x10\x54\x60\x9b\xbf\x00\xec\xcc\x51\x33\x75\x6e\x8a\xee\x1a\x9e\x41\x2b\x9f\x3d\x39\xfb\x84\x9c\xd3\xcf\x3e\xab\x1b\xbe\xfc\x12\xbf\x3e\x7e\x8a\xf5\x25\x65\xb8\xd3\xd4\xe1\x11\x05\x72\x99\xd6\xb5\x8b\xa3\xc7\x4f\x9f\x1c\x39\x34\x9c\x46\x8b\xd0\x96\x1b\xaf\x38\x56\x2e\xbb\x74\x89\xb9\x05\xa6\x8d\xd1\x24\xa4\x4a\xda\xb1\x4f\xce\x3e\x01\x06\x94\x3c\x51\x79\xce\x65\xca\x53\xac\x0a\x07\xa3\x01\x7d\xfa\xf8\xf8\xd3\x2e\xf5\xeb\x63\xdb\xc3\xc3\xcd\x3d\x21\x61\xec\x44\x2c\xbb\x65\x5b\xbd\x9b\xaf\x8e\x8f\x2d\xa8\x7e\xe1\x4d\xe6\x00\x32\xad\x66\xdb\x18\x04\x78\x19\x7d\x29\x03\x2b\x15\x20\x2f\x2e\x4d\x77\x7f\xd2\x04\x63\x80\xc8\xc0\xd6\x99\x76\xfd\xc1\x50\x0e\x09\x1e\x80\x1c\x44\xd5\x36\x5d\xea\x12\xe8\x87\x99\xa5\x75\xf9\xe8\xda\xd0\xb1\xd9\xa0\x8a\xdb\x6b\xa3\x6e\xd5\xde\x71\x97\xce\x65\xb6\xc5\x18\x6a\x36\x40\x59\x95\x54\xf3\x6c\xd5\x01\xff\xc5\xd3\xf6\x40\x6d\x55\xbc\x51\x6f\xeb\xed\x68\x92\x09\x2e\x4d\xbb\x1f\x00\x83\x18\x40\xb3\x3f\x02\x57\xb2\xcf\x4f\xee\x01\xd2\x56\xbb\x3f\x84\xa4\xeb\x1e\x7b\x28\x8d\xfa\x65\x13\x8e\x34\x2d\xb9\xd6\x0e\x4a\xf3\xc9\xa3\xd3\xd3\x2e\x8d\x60\x0f\x35\xe8\xc4\xa2\x15\x93\x94\xa3\xd6\xee\x3a\xab\x12\xb7\xff\xf6\x08\xd4\xfb\x88\xfe\x04\x9b\x7f\xd6\x4a\x6a\x7e\xfa\x96\x5a\xeb\x24\xa3\x60\x3e\xad\x0f\x25\x60\x11\xfb\x70\x88\x41\xa2\x60\x5a\xdf\xaa\x32\xad\x81\x50\x1b\x03\x01\x63\x0c\x7f\x67\x7a\x1b\x93\x67\x78\x50\x95\x19\x5e\x4a\x66\xc4\x0d\xaf\x89\xa3\xc1\x2a\x69\x00\xa4\x36\xe5\xc8\x68\x0a\x08\x35\x82\x00\x0f\xf1\xb2\x75\x4c\x98\xb0\x64\x73\x88\xfd\x78\xae\xca\xad\xc5\x51\xa9\xd0\x47\xb8\x2f\xf8\x8a\x3d\x8f\x0e\x8f\xfc\xeb\xce\xc4\x1d\xba\x8b\x08\x43\xb5\xfd\xd2\xc0\xaa\xba\xbd\xc6\x6a\xe3\x81\x2d\x6d\xdc\xb0\xac\xe5\x12\x0f\x28\x3e\x3d\x26\xfe\x2c\xf2\x82\x97\x2e\xc4\xa2\xa7\xc7\x0d\x21\xbb\x16\x8b\xce\x5a\x6b\xa9\xf1\x27\x02\x0c\x05\x42\xb1\xb2\x20\xe7\x14\x07\x3c\xa3\xd2\x96\x54\xfa\x26\x29\x1c\x68\xec\x3f\x7b\xfa\xe8\x93\x4f\x9d\x86\xc3\xfd\x9c\x25\xac\x54\xd2\x49\xaf\xfa\xc7\x4e\xa1\x54\x86\x90\xba\x7f\x72\x7c\xec\x88\x34\xe3\x71\xed\xc1\xfb\x16\x27\x34\x33\x3f\xa3\x6f\xf7\xf0\xf5\xe4\xe4\xf4\xe4\xe4\x6d\x63\xb6\x80\x4d\xb0\x14\x78\x3f\x4f\x21\x17\xab\x59\xda\xb0\xf7\x3e\x7e\x36\x37\x4e\xda\x0c\x5d\x94\xea\x46\x00\x86\x42\x80\xb2\xa6\xaa\x80\x7d\x6b\xbb\x2c\x55\x6e\x9f\xa1\x69\xda\x93\x4e\xb9\x6d\x7a\x6d\xb9\x21\xe7\x98\x02\x3e\xa3\xf5\xca\xf6\x09\x61\x7d\xce\xf6\x16\x51\x6b\xdd\xaa\xdf\xfe\x7f\xe3\x1e\xc0\xff\x67\x74\xad\x3a\xfa\xcb\xac\x93\x96\x10\x22\x7b\xf8\x91\xa6\x5a\x36\x0b\xd6\xa6\x14\x72\xdd\xac\x0c\x72\x80\x67\xcd\x7c\x3f\x6b\xd6\x18\x1b\x70\x8c\x6f\x77\x6c\x8a\xeb\xcb\x3c\x35\xfe\x6e\x76\x82\xc5\x6a\xbb\xe5\x44\xa9\x6b\x61\x6f\x0a\x34\x80\xb6\xc6\xb1\x22\xce\xc4\x35\x8f\x2d\x9c\x21\xe7\xe0\xb6\x21\xa2\x81\xdf\x6a\xf8\x05\xf9\x20\x00\xa0\x5a\x8d\xdb\xee\xd2\xba\x1f\x4b\x30\xf4\x06\xcb\xc0\xfb\x2e\x5c\xd1\xdc\xd4\xf3\x1f\x8c\x45\x40\x52\x1b\x28\xa0\x54\x4b\x65\x7f\x44\xdb\x2c\x7d\x3c\x40\x1c\xb1\x33\x9d\x03\x22\x67\x4f\x1f\x1f\x1f\x93\xf1\x20\x6e\xac\x06\x81\x05\xed\xd7\x0d\x7b\x2a\x99\x58\x71\xa4\x73\xcf\xf0\xd0\xc3\xaa\x74\x3c\xf1\x47\xde\xe1\x78\xf2\xa6\x10\x89\xa9\x4a\xf4\x10\xbb\x9a\x98\x3d\x27\xd6\xbb\x33\x50\x48\x6e\x6f\x98\x61\xa5\x26\xee\x4b\x37\x72\x83\x78\xb9\x98\xcc\xdd\xe1\xc1\x59\x70\xd3\xe3\x9c\x0e\x36\x42\x72\xcd\xeb\x23\x2b\x4c\x23\x37\x4a\x69\x4e\x8f\xd2\x4a\xe9\x4d\xa5\x8e\xc8\x39\x58\x08\x6b\x0e\x49\xec\x50\xaa\x55\x55\x26\xdc\xc1\x63\x42\x0b\x49\x9f\xf5\x7a\x89\xec\xae\x4b\xdb\x01\x61\xa9\x7d\xec\x91\x71\x50\x2f\x25\x9c\x2f\x83\x01\x26\x2c\x75\x37\xbc\x80\x24\xb4\x2d\x7c\xef\x62\xfd\x4a\x95\xc9\xee\x1c\x1a\xcb\x55\x42\x52\xb5\x5a\xe1\x29\x4f\x8e\xc5\xed\x26\xb6\x36\xa4\x5b\x92\x1e\xf1\x14\x6b\x60\x0d\x23\x68\xa6\xd4\x75\x55\xc0\x16\x35\x1d\xce\xc2\x3a\x99\x4f\x14\x40\x81\xba\xcb\xfe\x02\x02\x39\xb7\x20\x04\x03\x86\x76\xa8\xe6\x7c\x87\xb8\x6f\x6f\x6f\xbb\x99\xb8\x6a\xb6\xa8\xca\xf5\x0f\x58\x3f\x2e\xeb\xee\x06\x80\xa5\xe3\x9a\x0e\xc8\x3e\x15\xfa\x8a\x65\x80\x38\x6a\x25\x1c\x79\x43\x2f\x70\x23\x6f\x18\xef\xf6\x57\x83\x66\x66\x0c\x4b\x36\x39\x97\xe6\xb2\x55\x68\xdf\x7f\xd5\x08\x43\x38\xaa\x7b\xda\x6d\x8a\x44\x78\xda\xf9\x16\x48\xbc\xad\xa7\xb8\x73\xff\x00\x2f\x69\xed\x89\xdc\x19\x68\xb5\x66\xdf\xfc\xf6\x20\xc7\x6e\x35\x90\x73\x3a\x97\xb8\xbd\x5c\xb5\xaf\x14\x6c\x0b\xae\x3f\x70\x93\xe0\xee\x15\x81\xfb\x3b\xb5\x4e\x73\xdb\x77\x06\x0e\xd7\xfa\xe8\x74\xfa\x9c\xb4\xae\x0e\x3c\xae\x87\x7d\xff\xb5\x81\xc3\xf1\x27\xc7\xdf\xb9\x46\x00\xa6\x0a\xcc\x0e\x0b\x9e\x88\x95\xbd\x3b\xb0\x8b\xf0\xc0\xb8\x55\x95\x65\x5b\xaa\x2a\x53\x54\xa0\x77\x78\xaa\x7d\x48\x35\x18\x0d\x4e\x4e\x4e\x1f\x35\x44\x58\xd6\x80\x50\x9e\x36\x77\x58\x40\x6c\xee\x2c\xf4\x07\x0e\x5d\x4a\xf1\x6e\xc8\x00\x21\x07\xd5\xd5\xb6\x7e\x1a\x0d\xce\x4e\x4f\x9b\xdf\x2f\xec\xc3\x93\x63\xa7\x21\xbd\x7b\xb0\x4d\x8f\x1e\x3d\xfa\x74\xf7\x30\x63\x52\x39\xf4\x85\x30\xc9\x86\x4b\x87\x86\x86\xe5\x45\xfd\x33\x15\x59\x26\x76\xcf\x49\xa9\x30\xae\xe3\x2b\x8c\xaa\x63\x7e\xde\x1c\xeb\x37\xf9\x0c\xbb\x82\x5c\xaa\xc5\x86\xc6\x4e\x20\x31\x55\x19\x93\x6b\x30\x8f\x5e\x71\xbd\xee\x01\xf7\x7a\x3f\x2a\xae\xd7\x9d\x44\x49\x6d\x18\x68\xc9\x68\x1e\x4c\x5d\x0c\xd1\x4d\xcd\x1a\xb2\x09\x03\x59\x1d\x1e\xd0\x63\x7d\xb1\xd4\xe4\x4d\xa6\xd6\x97\xe4\xb0\xec\x39\xa8\xab\x8d\x40\x4d\x65\xbc\x06\x22\x75\x30\x6f\x07\xf0\xa6\x43\x83\x61\x55\x9e\x33\xf4\x99\xcd\xa1\x69\x5e\x65\x46\x14\xcd\xed\xa4\x5a\x3d\x9b\x61\x0e\xea\xc9\x11\xa9\x6b\x54\xf5\xd7\xff\x97\x19\xd9\x3d\xc9\x58\x03\x52\xa2\x92\x25\x58\x3f\xf3\xe5\x4a\xc1\xef\x2b\x56\x4a\xf8\xf5\xca\x52\x95\xf0\x30\x62\x86\x65\x77\x36\x6c\x47\x91\x89\xf7\xd2\x03\xc4\x86\xaf\xa4\x41\x6d\x3b\x76\x59\xff\x23\xb3\x2d\x72\xb7\x5b\x7f\x07\xfd\xce\x5a\xb7\x79\xf0\x56\xdd\x86\x97\xc2\x34\xf4\x76\x94\x90\x2f\x77\xc9\xc0\xc7\x1f\x40\xa3\xf6\x97\xd6\x3d\x69\xca\x2a\xa3\x72\xf4\xd5\x99\x5a\xd3\x52\x19\x10\xcb\x03\x7d\x0b\x9a\x8a\xa6\xaa\xc0\x81\x40\xce\x57\x23\xac\x87\x64\x32\x1f\xc7\xc1\x3c\xb2\x29\xc7\x2e\x3c\xaf\xc1\xfb\x20\x91\x94\x89\x6c\x4b\x86\xae\x3f\x79\xfd\x9d\x7e\x3b\xf7\xa1\x37\x62\x85\xe0\x1c\xf2\xc9\xcc\xde\x04\x3b\xe0\xe5\xe9\x59\x7d\x9f\xe9\x84\xfe\xe4\x27\xf4\xf4\xcc\xa1\xa7\x4f\x9e\xb6\x1c\x4b\x1c\x5e\xf8\x23\x3c\x2c\x3c\xab\xe9\xa2\x6f\xdf\x3b\x99\x16\x61\x1c\x34\xf1\x67\xb6\xc8\x75\x8c\xff\x81\xac\xdf\x15\xa2\x44\x6f\xb1\x6d\x74\xde\xa2\xc1\x07\x29\xcf\xb8\xe1\x94\xad\x0c\x2f\x69\xce\xde\x61\x97\xfa\x3a\x4a\x53\x28\xdc\x15\x4b\x33\x96\x5c\x7f\x47\x1a\xf8\xf5\x07\x89\xe3\x55\x5d\x54\x59\x06\x13\x62\x8f\x89\x21\x11\x29\x55\xfb\x8a\x45\x59\x49\x09\x32\x80\xcf\x58\xa4\x41\xef\x29\x54\x2a\x12\x96\x65\xdb\x7b\xae\xb4\x05\x95\x6c\xf7\xc6\x34\x19\x0f\x35\x6c\xc9\xa6\x8b\xb7\x9e\xdd\x28\xc6\x04\x7c\x9f\x01\x9d\xd3\x25\x1e\xab\xd7\x97\x67\xb5\x5d\x49\xd7\x9e\xb5\xc7\xf5\xc7\x4b\x12\x0e\x2e\xbc\xe1\x12\x43\xd8\xcf\xec\xa5\xb7\x93\xe3\x9c\x60\xd5\x73\x77\xe7\x6e\xc3\x59\x66\x36\xf6\xc8\xae\x26\x53\xf2\x42\xc5\xf6\x7b\x8c\xdf\xef\xa3\x74\xfa\x78\x43\xf6\xf5\xa0\xa7\xc7\x10\xd1\xdc\x72\x5d\xd9\xd0\x0a\xce\x1e\xfd\x88\x4c\xe9\xc7\x6b\x61\xe8\x4a\x27\xd7\x1f\x37\x9e\xa3\xd3\xa9\x64\x09\x61\x09\xb9\xd6\xe9\x18\xb6\xd6\xe0\x7d\xc0\x37\xa2\x07\x55\x72\xe7\x23\x85\xe9\xe8\x24\x47\x98\x94\xaa\x44\xe3\x07\x20\xd6\x3b\xe9\x7e\xd2\x7d\x42\xdc\x60\x1c\x5a\x93\x1b\xe0\xa1\x63\xeb\x36\x21\x9e\x24\x69\x23\x92\x86\x3d\xb8\x97\x18\x77\x07\x6d\xfa\xf2\x2e\x77\x51\x28\xf7\x6f\x95\xbc\x59\x0b\x04\x12\x75\x81\x43\xd3\x8d\x58\x6f\x32\xb1\xde\xa0\x79\xb0\x14\x01\xa5\x4c\x69\xc9\x73\x75\x63\x2f\x6e\xcb\x35\xd7\x3b\x00\x36\xf4\x47\xa3\xf8\xc2\x1f\x5f\x4c\xfc\xf1\x45\x74\x50\xe2\x6c\xc7\x5c\xb0\x0e\xbd\x83\x03\x40\xb9\x6d\x21\x00\x8f\x52\xb1\x5a\x61\x11\x15\xf5\x7c\xec\x47\x96\x74\xdb\x6e\xbe\x43\x35\xd9\xb0\x92\x25\x06\xa0\x2b\x92\xcc\xda\x67\x3c\x1f\xa6\x89\x97\xce\xdd\x41\xe4\x05\x18\xe5\xef\x21\x6e\x61\x82\xde\xa8\x5b\xf9\x01\x5a\x0d\x4e\xb0\xfe\xfb\x03\x9a\xb2\x4e\x5a\x7a\xc2\xd6\x6b\xc8\x8d\xc5\x0d\xa8\x09\x38\xc1\xbf\x8a\x9a\xac\x93\x5a\x49\xc6\x83\x78\xaf\x27\xf3\x5d\x51\xea\x9e\x4a\x27\x48\xb9\x5b\x7f\xbf\x24\xf6\x8a\xb2\x87\xfa\x7d\x5c\x5f\x45\xb7\x37\x68\xc8\x60\x32\x9f\x79\xf5\xf3\x62\x39\x99\xd4\x8f\xe3\x81\xad\x00\x90\x37\xd6\x08\x2f\x5b\xc7\x8f\xed\x32\xc2\x46\x55\xa5\xa6\x57\xdc\xdc\x72\x5e\x57\x3c\xad\x05\x0e\xbd\x91\xbb\x9c\x44\x71\xab\xa0\x70\x06\x60\xb6\xc0\x1b\x9a\x87\x8c\x17\x86\xe7\xda\x82\x69\x7b\xa4\x6e\xf1\x33\xb3\xc5\x53\xe0\xbe\xfd\x17\x24\xa1\x17\xfb\x91\x37\x0d\x9b\xab\x66\xe2\xe4\x4c\x5e\x92\x89\x3b\x03\x96\x50\x2e\x3b\xcb\xd0\xf9\x6a\xd3\x19\xcc\xe0\xef\xc5\x0b\xf8\x1b\xbd\x72\x52\xde\x19\x7a\xce\xaa\xec\x8c\x02\x47\x66\x9d\xd9\xc4\xc9\x6e\x3a\x93\x97\x4e\x59\x75\x82\xa5\xf3\x73\xd6\xf9\x9d\x85\xc3\x75\xc7\x0b\x9d\xc2\x74\x9e\x07\x4e\x91\x75\x16\x13\xe7\x6a\xdd\x79\x3e\x76\x84\xe9\xf8\x91\xb3\x12\x9d\x91\xef\x98\xb2\x13\x05\x4e\xa2\x3b\x83\x2f\x1c\x5d\x76\xc2\x85\xa3\x6f\x3a\xa1\xe7\x5c\xab\xce\x8b\xc0\x59\x67\x1d\x2f\xc4\x83\x34\x58\x8b\x27\xd7\x99\xd0\x1b\xe7\xcf\xff\xcd\x2f\xfe\xec\x3f\xff\xc3\x3f\xfb\xf5\x1f\x7d\xfb\x7b\x7f\xdb\xf9\xf3\xdf\xfc\xf2\x2f\xfe\xd5\x3f\xb2\x2f\x7f\xf9\xdb\xbf\xf3\x17\xff\xf2\x9f\x7e\xfb\xeb\x7f\xfb\x97\xbf\xfd\xbb\x77\x1b\xfe\xfb\x3f\xf8\xe3\x6f\x7f\xf3\x5f\xa0\x61\xc8\x2b\xa3\x93\x8d\x33\x2a\x99\xfc\xfa\x0f\x98\xd0\xce\x0c\x72\x9d\x8c\xc9\x54\x3b\x13\x66\x6e\x04\xff\xd3\x5f\x55\xce\xfb\x7f\xfe\xcd\xdf\xfa\xe6\x97\xdf\xfc\xf2\xfd\x7f\x7c\xff\xeb\xf7\xbf\x71\xbe\xfd\x27\xff\xe2\xdb\xdf\xff\xd7\xff\xe3\x0f\xff\x99\xe3\xe9\x82\x7d\xfd\x27\x2a\x73\x16\xaa\x34\xd5\xba\xfa\xfa\x0f\x35\x4d\x15\x7d\x5e\x32\x2d\xe0\x63\xa6\xaf\x85\xf3\xfe\x4f\xbe\xf9\x7b\xef\xff\xd3\xfb\x7f\xf7\xfe\x8f\xbf\xf9\x85\xa5\xe1\xf8\x86\x65\x02\x20\x64\x58\xa9\x9c\x65\x4c\x48\x2e\x9d\xe8\xeb\xdf\x96\xd7\x5f\xff\x01\x77\xfe\xdb\xdf\xe7\x7f\xfa\x2b\x23\x24\x73\xde\xff\xea\x9b\x5f\xbc\xff\xaf\xf5\xa0\xf0\x86\x4b\x7d\xcd\x9c\xff\xfd\x8f\x7f\xff\x7f\xfe\x87\x3f\xfa\x5f\xbf\xf7\xef\x9d\x31\xcb\xf8\x5a\x11\x0b\xc7\x52\xb4\x10\xf0\xeb\xa0\x96\x85\x48\xae\x79\x69\x45\xd8\x85\x8f\x80\x20\x2f\x09\xca\x10\x65\x49\x50\x90\xb4\x4f\xbf\xda\x10\x94\x26\x3e\x76\xa2\x57\x04\xff\xee\xde\x50\xba\xf8\x4f\x69\x08\x8a\x18\x1c\x52\x49\x50\xce\xb4\x4f\x65\x46\x50\xd8\xb4\x4f\xb3\x1b\x82\x12\xa7\x7d\x5a\x56\x04\xc5\x4e\xfb\xf4\xe7\x8c\xa0\xec\x61\x4e\x4d\x50\x01\x68\x9f\xe2\x2f\x41\x45\x80\xb7\x8c\xa0\x36\xd0\x3e\xbd\x5a\x13\x54\x09\x48\x58\x0c\x41\xbd\x80\x09\x05\x41\xe5\x40\xcf\x4b\x50\x43\x00\x40\xc2\x2f\x41\x4d\xa1\x7d\xaa\x4b\x82\xea\x02\x8f\x37\x04\x75\x86\xf6\xe9\xb5\x22\xa8\x38\x90\x21\x67\x04\x31\x42\x73\x53\x2f\x67\x45\x81\x37\x4b\x54\xcb\x43\x27\x19\xc3\x02\x1b\xba\x95\xae\x51\x79\xd6\x17\x52\x90\x37\xbb\x1e\xdd\x7a\xd8\x25\x21\x6f\x14\x40\xcb\x4b\x12\x5e\xcc\x5f\xc5\xa3\xf9\x3c\xf2\x82\xf8\x79\x60\x8f\xe7\x5b\x6e\x3b\xdc\xa8\x5b\x7a\xc3\xcb\xba\xd8\x72\x17\xf1\x63\x10\x07\x9f\x36\x56\xcd\x3f\x46\x58\x29\x65\x78\x79\x40\xf7\xa5\x17\xd4\x57\xeb\x1a\x80\x06\x54\xb1\x72\xd2\xbe\x17\x61\xaf\x37\xd4\x55\x9d\xef\x21\x15\x79\xd3\xc5\xc4\x8d\xbc\x18\x8b\x18\x75\x41\x04\xa9\xfe\x9f\x00\x00\x00\xff\xff\xd4\xd5\xf3\x86\x8d\x36\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7b\xdd\x8f\xe4\xc8\x96\xd7\x7b\xfc\x15\x31\x75\xb9\x4c\x37\x72\x66\x7d\x74\x57\x4d\x4d\xd7\xcd\xab\x71\x67\x3a\xb3\xbc\x9d\x5f\x63\x3b\xbb\xa7\xa7\x55\x72\x47\xd9\x91\xe9\x98\xb2\x1d\x9e\x88\xc8\xaa\xce\x11\x5a\xdd\x2b\x1e\xf8\x90\x10\x0f\xc0\x22\xa4\x15\xe2\x3e\xc0\x4a\x0b\x0b\xbb\x02\xa4\x7b\xe1\x02\x0f\xc3\xbe\xf7\xfc\x0f\xcb\x2c\x8b\x40\xfb\x2f\xa0\x73\xc2\xce\x74\x76\xd7\x34\xb3\x12\xcc\x48\x95\xb6\x23\xe2\x44\xc4\xf9\xfc\x9d\x13\xd1\x3f\xa1\x1f\x7d\xf4\x11\x9d\x7a\xcf\xbd\x80\xe2\x9f\xc9\x6c\xe0\x0f\x5f\xd2\xe8\xd2\x0f\xe9\xd0\x1f\x7b\xd0\x4e\x6c\xaf\xf9\xd8\x73\x43\x8f\x4e\xdc\x67\x1e\xed\x5f\xba\xd3\x91\x17\xd2\xd9\x94\xf6\x67\x41\xe0\x85\xf3\xd9\x74\xe0\x4f\x47\xb4\xbf\x08\xa3\xd9\x84\xf6\x67\xd3\xa1\x3f\x7a\x97\x82\x3f\xa4\x2f\x67\x0b\xea\x06\x1e\x9d\xbb\xfd\x67\xee\x08\x46\xcc\x83\xd9\x73\x7f\xe0\x05\xce\xde\x04\xb3\x17\x40\x79\xfe\x92\xce\x86\xd4\x8f\x90\x06\xb9\xa0\x6e\x55\xd1\x92\x15\x9c\x9a\x8c\x19\xaa\x33\x79\xa7\xa9\x2c\x29\xbf\xe5\x6a\x43\x2b\xb6\xe2\xd4\x08\x93\x73\xe2\xce\xe7\xf1\xd4\x9d\x78\xb4\x47\x47\x72\xa5\x9f\xd0\x91\xa4\x23\x61\x68\xc8\xd5\xad\x48\x38\xb9\xa0\x51\xc6\x2d\x25\xb9\xa4\x26\xe3\x54\x6f\xb4\xe1\x05\x5d\x6b\xae\x2c\x71\xb5\x2e\x35\x0e\x26\xc1\x62\x1a\x2f\x42\x2f\xa0\x3d\xba\x12\x86\x5c\x50\x4f\x98\x8c\x2b\x7a\x90\xf2\xdb\x03\x87\x1e\x54\x4a\xa6\x07\x54\x2a\x7a\x60\xb8\x36\x07\xd8\x7f\x32\x1b\xc0\xe4\x29\xbf\x25\xe4\x95\xe2\x95\xd4\xc2\x48\xb5\xb9\x22\x17\x34\x90\xd2\xd0\x8a\x99\x8c\x2e\xa5\xa2\xda\x48\x25\xca\x15\xdd\xf6\x11\x5c\x7f\xac\x69\xca\x0c\x73\x68\xca\x97\x6c\x9d\x1b\x2a\x34\x3d\xf8\xdd\xc3\x9f\xc1\xe2\x60\xcd\x3f\x3f\x5c\xc9\x95\xee\xb4\x87\x1c\x90\x60\x36\x8b\x68\xaf\xde\x99\x4e\x94\xa8\x0c\x35\x9b\x8a\x53\xcd\xd5\x2d\x57\x54\xaf\xab\x4a\x2a\xa3\x1d\xaa\x65\xc1\x8d\x28\xb8\xa6\x89\x5c\xe7\x29\xbd\xe6\xf4\x40\x67\x07\x24\xec\x07\xfe\x3c\x8a\xa3\x97\x73\x58\xfa\x35\xd3\x19\xb9\xa0\x83\x7a\x09\xee\x34\xf4\x69\x92\x31\xa5\xb9\xc1\x85\xb3\x92\xae\x4b\xc5\x13\xb9\x2a\xc5\x37\x3c\x6d\xda\x08\x74\x8c\xfb\x97\x6e\x10\x7a\x76\x3d\x43\xa9\x12\x5e\x8b\xa8\xe4\x77\xbb\x9d\x6e\xa8\x91\x30\x79\xa5\xc4\x2d\x33\x9c\x0c\x67\x41\xdf\x8b\xe7\x81\xff\xdc\x8d\x60\x05\x4b\x96\x6b\x10\xd5\x28\x97\xd7\x2c\xa7\x05\x7b\x23\x8a\x75\x41\x13\xc5\x99\x11\xb2\xa4\xb9\x28\x84\x01\xf9\xb5\x28\x56\x5c\xa1\x0c\x1d\xda\x39\xa6\x05\x67\xa5\xa6\xa5\xb4\x3d\xc9\xc4\xfd\x22\xee\x07\x9e\x1b\xf9\xb3\x69\x3c\xf6\x27\x7e\x44\x7b\xb4\x73\x4c\x2e\xe8\x44\x28\x05\xb2\xd8\x94\x09\xfd\x7a\xcd\xd7\x9c\xe6\xbc\x5c\x99\xcc\xa1\xa2\x84\xe9\x34\xa7\x62\x49\x8b\x5d\x2f\x90\x98\x36\x4c\x19\x4d\x33\x56\xae\x44\xb9\x22\x13\x3f\x08\x66\x41\xfc\xf9\xc2\x5b\x78\xf1\xd8\x9b\x8e\xa2\x4b\xda\xa3\xc7\x47\x47\x47\xe4\x82\xce\x99\x49\x32\x0a\xea\xf1\x01\xfa\xd5\x3a\xcf\xa9\xe2\x5f\xaf\xa1\x5b\xb5\x1d\x71\xcf\x5c\xf3\xc5\x78\x1c\x07\xde\xe7\x0b\x2f\x8c\x7e\x68\x46\xc5\x97\x5c\x29\x9e\xd2\xb1\x48\x78\xa9\xb9\x06\x6e\x57\x39\x4b\x38\x65\x06\x55\xde\xc8\xaa\xd1\xfe\x5c\x68\x50\xec\x29\x18\x44\xb1\xd6\x86\x16\x38\xfd\x52\xe4\xb5\x95\x88\x92\x26\xb2\x5c\x1e\xe6\x96\x18\x68\x7b\xb2\xd6\x46\x16\x87\xed\xcf\x64\x1e\x78\x43\x2f\x08\xbc\x41\x3c\xf6\xfb\xde\x34\xf4\x42\xda\xa3\x6e\xc5\x92\x8c\x37\xeb\xa0\x27\xdd\x23\x07\x78\x5f\xbf\x83\x8e\x09\xcd\xae\x73\x4e\xd9\xb5\xc8\x85\x41\xb5\x10\xa5\xe1\x8a\x25\x86\xde\x09\x93\xed\x19\x07\xbd\xde\xd0\xcb\x28\x9a\xd3\x4a\x49\x23\x13\x99\x93\x81\x1f\xba\x4f\xc7\x5e\x0c\x5f\xe3\x11\x4a\xb5\x51\x1d\xaf\x7c\x97\x70\x21\x56\x8a\x19\xde\xd6\x99\xeb\x0d\xcd\x65\xc2\x72\x34\x4a\xe2\x4d\x91\xd8\x78\xd6\x77\xc7\xf1\xdc\x8d\x2e\xe3\x89\x3f\x0a\x50\x69\xb6\x84\xdb\x26\xdd\xe5\x29\xfc\x82\x65\x8f\x85\x46\x7d\x44\xb6\xf1\x37\x86\x97\x5a\xc8\x52\x6f\x9d\x15\x18\x5b\xc6\x6e\x81\xdd\x25\xa7\x77\x8a\x55\x1a\x18\x0b\x02\xe8\xcb\x94\xd7\x5a\x68\xe9\x75\xc9\x05\x0d\x79\xc5\x70\xb1\x2d\x5a\xc8\x0f\x46\x13\x59\x14\xac\x4b\x23\xb9\xa3\x85\xd3\xda\x0e\x72\x6d\x76\x63\x1c\xfa\x15\x48\xb4\x5a\x9b\x66\x1c\x19\xfb\x53\x2f\x7e\x11\xb8\xf3\xd8\xfb\x22\xf2\xa6\xa1\x3f\x9b\x82\xa0\xba\xe6\x8d\x71\xba\x45\xea\x74\x0b\xa6\x6e\x52\x79\x57\xc2\x9b\xfd\xb9\x49\x1d\x72\x41\x9f\xb3\x5c\xa4\x76\x7f\x85\x4c\x79\xbd\x35\xdc\x13\xa3\x95\xe2\xb7\x82\xdf\x51\x77\xee\x53\xa6\xb5\x4c\x04\x33\x3c\xb5\x2b\x36\x19\x2f\x1c\xaa\xd7\x49\x46\x99\xa6\xac\x12\x87\xb7\xc7\x87\xcd\x2c\x7b\x7b\xbd\x65\xf9\xda\x4a\x19\xd7\xaa\xbb\xa0\xca\x48\xd7\xb0\x6b\x60\x17\xf0\x07\x67\xa7\x77\xb2\xfc\xd8\x46\x01\x30\x1f\x60\xe3\x3e\xe7\x69\x2a\xb9\x86\x2e\xa8\xcd\xa0\x9c\xcf\x7d\xef\x05\x8a\x17\x02\x13\x3a\x69\xd8\x77\xb3\x8e\x7d\xb9\xae\xab\x5c\xb2\xf4\x6a\xa7\x45\x2d\x95\xc1\x79\x6c\x07\xdd\xad\x55\x66\x40\x7b\xd4\xa8\x35\xb7\xe6\x9e\x81\xb2\x19\x5e\x54\x52\x31\x25\xf2\x0d\x3a\xfa\xed\x18\xfa\xa0\x71\xed\x18\x08\x56\xdc\x68\x9a\xe4\x9c\x95\x3c\x85\x9d\x43\xd8\xc1\xad\xa2\xd3\x44\xe3\x7f\x48\x22\x6f\x32\x47\x85\x84\xb8\xc2\x0c\x3b\x34\x45\x75\x58\xd3\x03\x37\x0b\x4b\x02\x87\x5f\x0b\x85\x29\x4e\x59\x9e\xcb\x3b\x9e\xd6\x7e\xd6\xf6\xe5\xa9\x43\x79\x77\xd5\xa5\xa2\x60\x2b\x7e\xf8\x55\xc5\x57\x7f\xd3\x3e\x56\xe5\xaa\x4b\xc7\x1c\x84\xc9\x8b\xca\x6c\x6a\xff\x89\x44\x28\x2b\xeb\x5d\xc3\x14\xc4\x1d\x8f\x67\x2f\xbc\x01\xc6\x8a\x10\xbd\xfc\xa4\xf6\xce\x5a\x7c\x83\x31\x95\xb3\xc6\x7f\x88\x92\x4e\x9e\x12\xcb\x70\xf7\x8b\x38\xf4\xbf\x04\xe7\xfe\xa8\x35\xa6\x5c\x17\xd7\x5c\x35\x96\xa3\xad\x13\xc7\xc5\xa2\xcf\x86\xa1\x20\xa6\x53\x42\x5e\x35\xa2\x6a\x89\x25\x63\x2a\xb5\x56\x70\xad\x38\xbb\xd9\x89\xbf\x31\xe5\x4b\x37\x00\x7f\x34\xf5\xe2\xa7\x81\xe7\x3e\x6b\xb9\x87\xc6\x60\xad\x2b\xa3\x8b\x60\xdc\x09\x93\x8c\x17\xf7\xf1\x90\x69\x98\xe4\x46\xd3\xbb\x8c\x97\x54\xf1\x32\xe5\x18\xb8\x27\x8d\xf2\x5c\x60\x58\xe4\x6f\x58\x51\xe5\x1c\x90\x82\x53\xb0\x55\xc9\x0d\xb1\x90\x28\x5e\x04\xe3\x38\xec\x5f\x7a\x93\x9a\x63\x3f\xc6\x5b\x5c\xf3\x7a\x26\x9e\x1e\x82\xde\xdb\x75\xb4\xa6\xfc\x51\x2e\xc2\x92\x68\xfc\xc3\xa1\x6c\x59\x08\xd3\x5b\xed\xbf\xc7\x4f\xa0\xd0\xf6\x5d\xc4\x0f\x79\x07\x42\x5e\x59\xa0\x71\x45\xe6\xc1\x2c\x9a\xf5\x67\x63\xda\xa3\x99\x31\x15\x19\xcc\x26\xae\x0f\xce\x13\xbd\x6c\x26\xb5\x41\xb0\x02\x0c\xa1\x3d\xfa\xd3\x07\x4d\xff\x87\xfa\xc9\xe1\xe1\x4f\x1f\xd8\xee\x0f\xf5\x93\x9f\x3e\x40\x8f\x3e\x9f\x05\xd1\x43\x7d\x48\xf0\xc5\x1d\x0c\x00\x87\x1d\x75\xf1\x7f\xb2\xed\x00\x1a\x55\x07\x3e\xae\x0a\xa1\x71\x73\x20\x8f\x75\x29\xde\x50\x2d\x93\x1b\x6e\xc8\x62\xea\x7f\x11\x87\xb3\xfe\x33\x2f\x8a\xe7\x5e\x30\xf1\xc3\xd0\x7a\xf5\xb3\xb3\x33\x10\x08\x06\x81\x07\x83\xc9\x97\x0f\x41\x15\x70\x38\x5a\xe2\x9d\x54\x37\x5c\x69\xfa\xa0\xf1\x5f\x61\x78\x49\xd7\x55\xca\x0c\x7f\x48\x59\x92\x70\xad\x41\x13\xee\xf8\x35\x82\x2d\x91\x70\xf0\x68\x7e\x49\x0b\xa9\x0d\x4d\x18\x04\xdf\x8d\x5c\xd3\x54\xd2\x52\x1a\x5a\x72\x6b\x92\x09\x84\x73\x8e\x7e\xab\xf1\x06\xe8\xfc\x60\xb0\x9b\x1b\xae\x28\xc0\x9b\x32\xdf\x80\x77\xdb\xc8\xb5\xc2\x79\x6b\x38\x57\x82\x03\x14\x1a\x09\x22\x7e\x85\x28\xcd\xb4\x0d\x8d\xd0\xd8\x25\x36\x84\x7d\x88\xd5\x5b\x96\xbe\xcf\xed\x5d\x54\x86\x49\x97\x9c\x99\xb5\xe2\x56\xf7\x61\x4a\x76\xcb\x44\x0e\xcd\xdb\xe8\x0b\xdd\x76\x96\xf5\x22\xe3\x88\x91\xd7\x9a\xd3\xeb\xb5\xc8\x8d\x28\xdb\xab\x97\xb0\x01\xd3\x25\x61\xe4\x06\x11\x0c\x8d\x43\x2f\x78\x8e\x10\xbb\xa1\x30\x90\x05\x13\x65\x8d\xf6\xd1\x7f\xf1\x37\x95\xd4\x3c\xa5\x35\xa9\x24\x97\x25\x07\x41\x11\x18\xbf\x55\xb2\x9d\x02\x81\x32\x48\x65\x1a\xf7\xf2\x23\x88\xd4\x9a\x74\x72\x02\x58\x88\x1b\x90\xbb\x45\x22\x4b\x80\x4d\xf7\xec\x03\x70\x13\x2f\x21\x07\xc1\xf1\x63\x3f\x8c\xbc\x69\x7c\x39\x0b\xa3\x96\x92\xee\x2f\xe3\x47\x53\xa9\x17\xf3\xd3\x07\xcd\xca\x70\x47\xbb\xec\x41\x2e\x91\x46\x2a\x14\x4f\x20\x28\xed\xa5\x0b\x1f\xff\xee\x61\x57\xeb\xec\x63\x87\x5e\xaf\x0d\x2a\x1f\x06\x69\x23\x51\x22\x1f\x1f\x66\xb2\xe0\x87\x2b\x61\x6c\xaf\x2e\xce\x8b\x9a\x62\x03\x0c\xb9\xa0\xfd\x4c\x4a\x6d\xb5\x33\x11\x55\x06\xfa\x6f\x64\x93\x45\xa0\x6d\x20\xff\x64\x59\xf2\x04\xe0\xb8\x26\x3b\x31\xc6\x7d\x7f\x7e\xe9\x05\xe0\x30\x18\xd7\xc7\x27\xe7\x9d\xc4\x28\x07\x9f\x3f\x3d\xd9\x3e\x9f\x9c\x9e\xed\xbe\x9f\x9c\x77\x56\x49\xf1\x99\xac\x78\xa9\x75\xd6\x4d\x64\xe1\x50\xa6\x92\xa5\x5c\xab\x93\xd3\xb3\xed\xf3\xf1\xc9\x39\xaa\x66\xbd\x67\x34\x23\xc8\x07\xf8\x36\xd6\x6e\x1a\x3f\x07\xaa\x8a\x88\xbb\x5a\x5f\xe7\x22\xb9\xa1\x37\x7c\x43\xd7\x68\xa9\x5a\x67\x9d\x1b\xbe\x59\xf1\x12\x40\x4d\x8b\x6d\x75\x16\xb8\xa3\xb5\xe5\xae\x65\xd1\x33\xef\x65\x1c\x01\xe8\xde\xb2\xa9\x09\xf5\x2d\x92\x7b\x72\xd8\x7d\xff\x98\xb2\x32\xa5\x39\x07\xe7\xce\xf3\x9c\x2e\x45\x99\x52\x40\x6a\x77\x99\x48\x32\x0a\x7a\x08\xbb\x61\x79\xbe\x9d\x6b\x04\x6a\x60\x23\xfe\x8e\x0e\xba\x96\x54\x24\xb0\xe9\xbb\xda\xcc\xd0\x9b\xf0\xe4\x86\x16\xa2\xc4\x90\x0a\x7b\xc5\x50\x8c\xc1\x20\x91\x4a\x71\x5d\xc9\x32\x85\xdd\x63\x04\x9f\xf8\x53\x7f\xb2\x98\xe0\x8e\x20\x24\xc7\xfd\x4b\xaf\xdf\x8e\x8d\x8d\xf9\xf7\x07\x53\xc0\x21\x25\x58\x4c\x9d\xea\x02\xf8\x22\xb3\xe1\x10\x63\x6a\x9d\xe9\xda\x61\x8d\x33\x08\x66\x8b\xc8\x0b\xe2\xf1\x6c\xd4\xce\xe3\x78\xc9\x31\x56\x69\xc3\x2b\xfd\x84\x5c\xd0\xbf\x46\xbb\x98\xca\xd2\x84\x2b\x43\x3b\x09\xeb\x01\x80\xa2\x9d\x74\xad\x30\xc5\xeb\x9d\x7f\x72\x76\x94\x1d\x15\x47\x9a\x76\x20\x6e\xf4\x8a\x0d\xfc\x74\xeb\x20\x0b\x5a\x42\x2e\xc8\x05\x9d\x29\xba\x54\xb2\xa0\x8c\x76\xab\xe5\x9b\x26\xa2\x82\xa2\xf2\xd4\xb6\x80\x1a\xbf\x10\x65\x2a\xef\xec\x64\x62\x69\x19\x68\x51\xd9\x83\x54\x92\x0b\xf4\x6b\x4b\xa9\x56\xdc\x00\x3f\xed\x78\x1c\x58\x27\xa8\xc0\xd4\x87\x76\xd9\x56\x4d\x73\x5a\xdd\x24\xfa\xf8\x84\x76\x20\x3d\xe2\xca\xe0\xec\x1d\x90\xa9\x7d\xe3\x05\xed\x94\xf2\x86\x6f\xf4\x8f\x1b\x75\xc3\x37\xcd\x20\x68\xd0\xf0\x90\x72\x4d\xfa\x5e\x10\x21\x0c\xa2\xbd\x26\xed\x82\xc8\xaa\x0f\x9b\x69\x08\x88\xf1\xbe\x0e\x35\x45\x72\x41\x17\x15\xc0\xaa\x9c\xdf\xf2\x1c\xb3\x3e\x5e\x54\x39\x6c\x0a\x94\x52\x1b\x66\x44\x62\xf9\x86\x49\xd0\x9e\x51\x20\x0b\x40\xcd\xef\x32\xae\x78\x0d\x4e\x35\xe5\x6f\x78\xb2\x36\x3c\x05\x27\x1e\xf9\xfd\x77\xdc\xc7\xa0\x8d\x6f\xc1\x5b\xb8\x55\x85\xb0\x15\x6b\x33\x03\x37\x72\xdb\x58\xd6\x96\x76\x72\x90\x09\x66\xf6\xb8\xca\xd1\x97\xfe\xbc\x71\x38\x0d\x96\xc3\x6f\x2d\x00\xc7\xac\x4a\x63\xe9\x67\x89\x51\xa5\xec\xe4\x72\xb5\xe2\x29\x96\x01\xb4\x43\x13\x56\x62\x85\x03\x3c\x9e\xad\xd2\xf0\x37\x55\x2e\x15\x3f\x20\x63\x17\x6b\x56\xf1\xdc\x1d\x01\xe3\xa0\x07\x21\xaf\x80\x71\x57\x36\xd7\x59\x5b\xa2\x2e\x86\xf8\x4e\x5f\x96\x46\xc9\xbc\xe3\x02\x22\xec\xcc\x94\x58\x89\x92\x66\x9c\xa5\x5c\xed\xd9\x3c\x86\x64\x09\xe9\x90\xe6\xa5\x21\x6e\xbf\xef\x85\x61\xdc\x9f\x4d\xa3\x60\x36\x8e\x11\x3a\xc7\xb3\xc0\x1f\x61\xb8\x22\x96\x57\x00\x5f\xb7\x48\x33\x5f\x49\x25\x4c\x56\x68\x14\x8e\xc9\xb8\x50\x7b\x86\x6d\x8b\x07\xf4\x01\xb8\xf2\xce\x31\xcc\x95\x36\x19\x34\x1a\xf7\x43\xf2\x0a\x7c\x68\x3d\x24\xbe\xe1\x9b\x18\x7c\x81\xbe\x22\xde\xe0\xe4\xf4\xf4\xf8\x53\x88\x71\xa7\x67\xc4\xeb\x0f\x42\x97\xd2\xfa\x2d\xc0\x67\x7c\x3b\x7a\x7c\x4e\x06\xdb\xd7\xe3\xa3\x93\xc7\x84\xbc\x02\x39\x5d\x33\xcd\xaf\x5a\x15\xb0\x62\xa3\xbf\xce\xb1\x06\x26\xb5\x59\x29\xae\x2d\x87\xf5\xd7\xb9\x30\xfc\xd1\x81\x83\x91\x07\x24\x50\xc7\x09\x58\x6b\x24\x06\x4f\xad\x5b\x9a\x6c\xc2\xcf\xc7\xad\x3c\xfe\x69\x53\x7b\x42\xb2\xa4\x0e\xa3\xc7\x27\x9f\x60\x20\x3d\x7e\xf2\xe8\xd1\xd1\x19\xa9\xcb\x7a\xe0\x36\x48\x5d\x95\x53\x52\x1a\x32\x77\xc3\xf0\xc5\xa0\xa9\x38\xed\xad\xa8\xcc\x37\x0e\xe5\x4d\xd1\xce\xb2\x0a\x16\xad\xf8\xd7\x6b\xa1\x6a\xad\xb8\xe5\x4a\x2c\x37\x9d\xe5\x3a\xcf\x0f\x48\x18\x8e\xb7\x25\x3c\xdb\xbf\x21\xdb\x6c\x0d\x45\x73\x60\x44\x7a\x7d\xe0\x60\x4c\x65\xd7\x5a\xe6\x6b\xb3\x33\x95\x12\x37\x8f\xc9\x1b\x00\xb3\x1a\x19\x92\x76\x06\x07\x9b\xe8\xa6\xd7\x84\xbc\x62\x69\x21\x30\xa9\x69\xdc\xae\xe2\xab\x75\xce\x14\x7d\x00\x1a\x8d\xad\x0f\xad\x46\xb7\x42\x9e\x54\x2b\x56\x8a\x6f\x98\x0d\xbf\x5b\xdf\xeb\x8d\x16\x63\x37\x88\x67\xc1\x68\x5b\xee\x6a\x55\x2e\x34\x4f\xd6\x4a\x98\xcd\x15\xf1\xa7\x61\xe4\x8e\xc7\xf1\x78\xb6\xe7\xf8\x3f\xfa\xc8\x16\x77\x6d\x0d\x38\x9a\xd1\x67\x9e\x37\xa7\x2f\x67\x8b\x80\x22\xbf\xc1\x76\x69\xe8\x0e\xbd\x8f\x3e\x22\xa1\xd7\x0f\xbc\x08\x82\x08\xed\xd1\x8f\x7e\xf2\xd9\x70\xe0\xbd\x08\xbc\x17\xc1\x5f\xff\x1b\x0f\xc0\xa4\xd7\x46\x82\x35\x0a\xc8\x97\x0a\x8e\xf0\x27\x65\x1b\x4d\xc6\xb3\x91\x3f\x8d\x03\x6f\xe2\x4d\x9e\x7a\x41\x3c\x70\x5f\x02\x54\xf8\x84\xf4\x67\xb3\x67\xbe\x87\xc5\xd6\x96\x98\x63\x76\xc7\x35\xd8\x66\xdd\xbc\x1d\xd7\xee\x83\x85\xb4\x54\x58\x49\x05\x90\x38\x6b\x70\xdc\xf2\xcd\x86\xb2\xb5\xc9\x78\x69\x1a\xe7\x62\x2d\x76\x5b\xfc\xc5\x8a\x2f\xbc\x90\xc0\x7b\xee\x05\xa1\x17\xcf\x83\xd9\x17\x2f\x63\x77\x11\x5d\x7a\xd3\xc8\xef\xdb\x7a\x61\xad\x6a\x5f\x74\x5e\x78\x4f\xa1\xa9\x03\x1f\xea\xa4\x47\x24\xfc\x8a\xb8\xfd\xc8\x7f\xee\xc5\xfd\xd9\xc0\x8b\xc7\xf0\x34\xf1\xa7\x8b\x08\x13\xd7\xe3\xf3\x23\x12\x78\x21\x64\x1d\xa8\xa4\x3f\xd8\xe9\x82\x2e\x70\x35\x4d\x82\x20\xcb\xa5\x50\x05\xe5\x9d\x82\x89\x1c\x5d\x91\xe2\x2b\xa1\x8d\x8d\x8e\x24\xf0\x46\x00\x15\x83\xd8\x9b\xb8\xfe\x38\xc6\x9a\x7b\x30\xd9\xc3\xd0\xdc\xba\x23\x9b\xc3\xdb\xc1\x5c\xa1\xee\xa2\x4e\x35\x9a\xc4\x92\x44\xae\x4b\x9b\x6d\xb4\x15\xc9\x0f\xa3\x77\x4a\x5f\xf5\x12\xb1\x48\xa8\xc5\x0a\x61\x81\x91\x14\x0b\x34\xac\xdc\x98\x4c\x94\xab\x2e\x09\xbc\xcf\x17\x7e\xe0\xc5\xa1\x3f\x9a\xfa\xd3\xf8\xb9\xef\xbd\x68\x51\x98\xc0\x6e\x4a\x59\x07\xe1\x56\xa6\x3e\x9d\x45\xfe\xf0\x65\x0c\xbb\x69\x77\x87\x10\x9d\x72\xc3\x44\xfe\x04\x33\x4a\x48\x5e\x56\xc2\x64\xeb\x6b\x40\x00\x60\x45\xc2\x68\x34\xa6\x43\xa1\xf5\x9a\xeb\xc3\xe3\xb3\xd3\x86\xe6\x87\xa4\xba\x9d\xe4\x87\xfa\xce\x7e\x88\x09\x75\xed\x21\x61\x95\x49\x32\x06\x79\x9b\x48\xad\x7a\xbd\x27\xa5\x9a\x76\xdf\x9d\x47\xfd\x4b\xb7\x29\x12\x91\x57\x77\xfc\x3a\x93\xf2\x06\x8c\xfe\x52\xca\x1b\x6a\x98\xbe\xf9\x40\x75\xb8\xee\x4e\x75\x26\xe5\x7d\x35\xe1\xfb\xcb\xc0\x03\x9e\x0b\x48\x31\x8c\x28\x38\x20\x0c\x51\x52\xcd\x13\x59\xa6\x9a\x0c\x3c\xd0\xc0\x20\x8e\xfc\x89\x37\x5b\x44\x58\x60\x81\xc4\x13\x34\x45\x94\xe8\x26\x78\x0b\x2b\xc1\x56\xc2\x67\xfe\x3c\x8e\xc6\x61\xfc\xdc\x0b\xfc\xe1\xcb\x16\x3f\xa6\xdb\x12\x4e\x26\x34\x22\x73\x51\x2e\xa5\x2a\x2c\x4f\x44\x69\xeb\x41\x10\xa6\xc9\x1c\x8f\x7d\xe2\xe9\x62\x82\xcb\xc4\xa2\x8e\xc8\xb9\xba\x6a\xd5\xd1\x1a\xb2\x4f\xd7\xcb\x25\xa2\x16\x0c\x78\x72\x89\x39\x73\xc9\x73\x87\xde\x70\x5e\x41\x7e\xcc\x34\xfc\x15\xba\xce\x91\x69\x8a\x35\xc1\x9b\x52\xde\xd1\xbb\x8c\x19\xdb\xd8\x25\xa1\x37\x1d\xc4\x4f\x17\xc3\x21\xa0\x52\x6f\x6a\x19\xd4\x54\xbc\x53\xa1\xab\x9c\x6d\x6c\x56\x88\xa6\x66\x4f\x91\xc2\xc5\xd3\xdf\xf1\xfa\x36\x09\x6b\x4e\x94\x30\x09\x43\x05\xb6\xc9\x1b\xe0\xda\x02\x35\x53\x17\xa6\xea\xae\xe0\x19\xb4\xf2\xc9\xe9\xf9\x27\xe4\x82\x7e\xfe\x79\xdd\xf0\xf5\xd7\xf8\xf5\xf1\x19\x30\x79\x2a\x0d\x77\x9a\x9a\x25\xc2\x4c\x5e\xa6\x75\xe1\xe6\xe0\xf1\xd9\xe9\x81\x43\xc3\x49\x34\x0f\xe9\x9d\xc8\x73\x2c\xdd\x69\x9e\x76\xe9\x02\x93\x17\xcc\x99\xa3\x71\x48\x65\x69\xc7\x9e\x9e\x7f\x02\x0c\x50\x3c\x91\x45\xc1\xcb\x94\xa7\x58\x41\x0b\x86\x7d\x7a\xf6\xf8\xe8\xd3\x2e\xf5\xeb\x23\xae\xfd\x83\xa0\x1d\x21\x61\xec\x44\x2c\xbf\x63\x1b\xbd\x9d\xaf\x0e\xc0\xad\xa0\x74\xe9\x8d\x67\x80\x62\xad\x66\xdb\x20\x07\x80\x1c\x7d\x29\x03\x2b\x15\x20\x2f\x5e\x9a\xee\xae\x2a\x0f\x63\x30\xa1\xb4\x45\xb6\x6d\x7f\x30\x94\x7d\x82\x7b\x28\x0a\x61\xbb\xcd\xc7\xba\x04\xfa\x61\x5a\x6d\x5d\x3e\xba\x36\x74\x6c\x36\x6a\xdb\x2c\xb5\x05\xeb\x65\x7b\xc7\x5d\x3a\x2b\xf3\x0d\x06\x69\x93\x01\x65\xa9\xa8\xe6\xf9\xb2\x03\xfe\x8b\xa7\xed\x81\xda\xaa\x78\xa3\xde\xd6\xdb\xd1\x24\x17\xbc\x34\xed\x7e\x80\x3c\x62\x40\xe5\xfe\x10\x5c\xc9\x2e\x01\xba\x07\xa9\x5b\xed\xfe\x10\x54\xaf\x7b\xec\xb0\x3a\xea\x97\xcd\x68\xd2\x54\x71\xad\x1d\x94\xe6\xe9\xa3\x93\x93\x2e\x8d\x60\x0f\x35\xaa\xc5\x8a\x1d\x2b\x29\x47\xad\xdd\x76\x96\x0a\xb7\xff\xfa\x00\xd4\xfb\x80\xfe\x0c\x9b\x3f\x6b\x65\x4d\x3f\x7f\x4d\xad\x75\x92\x61\x30\x9b\xd4\x05\x5c\x58\xc4\x2e\x1c\x62\x90\xa8\x98\xd6\x77\x52\xa5\x35\xd2\x6a\x83\x2c\x60\x8c\xe1\x6f\xcc\x61\x66\x8a\x1c\x8b\xfa\xb9\xe1\xaa\x64\x46\xdc\xf2\x9a\x38\x1a\xac\x2c\x0d\xa0\xe0\xa6\x16\x1b\x4d\x00\x02\x47\x10\xe0\x21\x5e\xb6\x80\x49\xc2\x92\x6c\x1f\x5c\xf2\x42\xaa\x8d\x05\x6a\xa9\xd0\x07\xb8\x2f\xf8\x8a\x3d\x0f\xf6\x8f\x47\xeb\xce\xc4\x1d\xb8\xf3\x08\x43\xb5\xfd\xd2\xe0\xb6\xba\xbd\x06\x83\xa3\xbe\xad\xeb\xdc\xb2\xbc\xe5\x12\xf7\x28\x9e\x1d\x11\x7f\x1a\x79\xc1\x73\x17\x62\xd1\xd9\x51\x43\xc8\xae\xc5\xc2\xbf\xd6\x5a\x76\x85\x10\xd4\xf0\x46\x16\xe4\x82\xe2\x80\x27\xb4\xb4\xf5\xa4\x9e\x49\x2a\x07\x1a\x7b\x4f\xce\x1e\x7d\xf2\xa9\xd3\x70\xb8\x57\xb0\x84\x29\x59\x3a\xe9\x75\xef\xc8\xa9\xa4\xcc\x11\xb3\xf7\x8e\x8f\x8e\x1c\x91\xe6\x3c\xae\x3d\x78\xcf\xe2\x84\x66\xe6\x27\xf4\xf5\x0e\x1f\x1f\x1f\x9f\x1c\x1f\xbf\x6e\xcc\x16\xb0\x09\xd6\x41\xef\xe7\x29\x24\x7b\x35\x4b\x1b\xf6\xde\xc7\xcf\xe6\x74\xbe\xcd\xd0\xb9\x92\xb7\x02\x30\x14\x02\x94\x15\x95\x95\x45\xa0\x17\x75\x97\x27\x68\x9a\xf6\x54\xa8\xdc\x34\xbd\x36\xdc\x90\x0b\xcc\x31\x9f\xd0\x7a\x65\xbb\x8c\xb3\x3e\x93\x78\x8d\xb0\xb8\x6e\xd5\xaf\xff\xbf\x71\x0f\xf2\x8b\x27\x74\x25\x3b\xfa\xeb\xbc\x93\x2a\x08\x91\x87\xf8\x91\xa6\xba\x6c\x16\xac\x8d\x12\xe5\xaa\x59\x19\x24\x19\x4f\x9a\xf9\x3e\x6b\xd6\x18\x1b\x70\x8c\xaf\xb7\x6c\x8a\xeb\x8b\x0f\x35\xc0\x6f\x76\x82\x95\x7a\xbb\xe5\x44\xca\x1b\x61\x4f\x55\x1b\x40\x5b\xe3\x58\x11\xe7\xe2\x86\xc7\x16\xce\x90\x0b\x70\xdb\x10\xd1\xc0\x6f\x35\xfc\x82\x84\x13\x00\x50\xad\xc6\x6d\x77\x69\xdd\x8f\x25\x18\x7a\xfd\x45\xe0\xbd\x0f\x57\x34\x37\xf5\xfc\x7b\x63\x11\x90\xd4\x06\x0a\x28\xd5\x52\xd9\x1d\x67\x35\x4b\x1f\xf5\x11\x47\x6c\x4d\x67\x8f\xc8\xf9\xd9\xe3\xa3\x23\x32\xea\xc7\x8d\xd5\x20\xb0\xa0\xbd\xba\x61\x47\x25\x17\x4b\x8e\x74\xee\x19\x1e\x7a\x58\x92\x8f\xc7\xfe\xd0\xdb\x1f\x4f\x5e\x55\x22\x31\x6b\x85\x1e\x62\x5b\x74\xb3\x67\x6a\x7a\x7b\x5e\x04\xd9\xf3\x2d\x33\x4c\x69\xe2\x3e\x77\x23\x37\x88\x17\xf3\xf1\xcc\x1d\xec\x9d\x9b\x35\x3d\x2e\x68\x3f\x13\x25\xd7\xbc\x4e\xac\x30\x4f\xb5\x55\xcf\x83\x74\x2d\x75\xb6\x96\x07\xe4\x02\x2c\x84\x35\x27\x44\x76\x28\xd5\x72\xad\x12\xee\x50\x90\x97\x85\xa4\x4f\x0e\x0f\x93\xb2\xbb\x52\xb6\x03\xc2\x52\xfb\x78\x48\x46\x41\xbd\x94\x70\xb6\x08\xfa\x98\xb0\xd4\xdd\xf0\xb2\x86\xd0\xb6\xea\xbf\x8d\xf5\x4b\xa9\x92\xed\x99\x1d\xd6\xc3\x44\x49\xe5\x72\x89\x47\x5c\x05\x56\xf6\x9b\xd8\xda\x90\x6e\x49\x7a\xc8\x53\x2c\xb2\x35\x8c\xa0\xb9\x94\x37\xeb\x0a\xb6\xa8\xe9\x60\x1a\xd6\xd5\x82\x44\x02\x14\xa8\xbb\xec\x0e\x6b\xc9\x85\x05\x21\x18\x30\xb4\x43\x35\xe7\x5b\xc4\x7d\x77\x77\xd7\xcd\xc5\x75\xb3\x45\xa9\x56\x3f\x62\xfd\xb8\xac\x77\x37\x00\x2c\x1d\xd5\x74\x40\xf6\xa9\xd0\xd7\x2c\x07\xc4\x51\x2b\xe1\xd0\x1b\x78\x81\x1b\x79\x83\x78\xbb\xbf\x1a\x34\x33\x63\x58\x92\x15\xbc\x34\x57\xad\x53\x86\xdd\x57\x8d\x30\x84\xa3\xba\xa7\xdd\xa6\x0a\x85\x49\xf3\x6b\x20\xf1\xba\x9e\xe2\x9d\xb3\x5a\xbc\xd0\xb2\x23\xf2\xce\x40\xab\x35\xbb\xe6\xd7\x7b\x49\x7c\xab\x81\x5c\xd0\x59\x89\xdb\x2b\x64\xfb\xf8\x75\x53\x71\xfd\x81\x53\xd7\x77\x8f\x53\xef\xef\x84\xe7\xa5\xef\x9f\xaf\xee\xaf\xf5\xd1\xc9\xe4\x29\x69\x1d\xb3\x3e\xae\x87\xfd\xf0\x11\xeb\xfe\xf8\xe3\xa3\xf7\x8e\x5c\xc1\x54\x81\xd9\x61\xc5\x13\xb1\x14\xdc\x16\x04\xeb\x08\x0f\x8c\x5b\xae\xf3\x7c\x43\xe5\xda\x54\x6b\xd0\xbb\x14\x70\xd4\x3e\xd5\x60\xd8\x3f\x3e\x3e\x79\xd4\x10\x61\x79\x03\x42\x79\xda\x9c\xf7\x83\xd8\xdc\x69\xe8\xf7\x1d\xba\x28\xc5\x9b\x01\x03\x84\x1c\xac\xaf\x37\xf5\xd3\xb0\x7f\x7e\x72\xd2\xfc\x7e\x69\x1f\x4e\x8f\x9c\x86\xf4\xf6\xc1\x36\x3d\x7a\xf4\xe8\xd3\xed\xc3\x94\x95\xd2\xa1\xcf\x84\x49\x32\x5e\x3a\x34\x34\xac\xa8\xea\x9f\x89\xc8\x73\xb1\x7d\x4e\x94\xc4\xb8\x8e\xaf\x30\xaa\x8e\xf9\x28\xcc\x76\x3e\xc3\xae\x21\x97\x6a\xb1\xa1\xb1\x13\x48\x4c\x65\xce\xca\x15\x98\xc7\x61\x75\xb3\x3a\x04\xee\x1d\xfe\xa4\xba\x59\x75\x12\x59\x6a\xc3\x40\x4b\x86\xb3\x60\xe2\x62\x88\x6e\x8a\xe2\x90\x4d\x18\xc8\xea\x34\x88\x08\x0b\x98\x4a\x93\x57\xb9\x5c\x5d\x91\x77\x8e\x65\xea\x72\x26\x50\x93\x39\xaf\x81\x48\x1d\xcc\xdb\x01\xbc\xe9\xd0\x60\x58\x59\x14\x0c\x7d\x66\x73\x62\x5c\xac\x73\x23\xaa\xe6\x26\x47\xad\x9e\xcd\x30\x07\xf5\xe4\x80\xd4\x45\xb0\xfa\xeb\xff\xcb\x8c\xec\x9e\x64\xac\x01\x29\x91\x62\x09\x16\xe8\xfc\x72\x29\xe1\xf7\x05\x53\x25\xfc\x7a\x4a\x49\x05\x0f\x43\x66\x58\xfe\xce\x86\xed\x28\x32\xf6\x9e\x7b\x80\xd8\xf0\x95\x34\xa8\x6d\xcb\x2e\xeb\x7f\xca\x7c\x83\xdc\xed\xd6\xdf\x41\xbf\xf3\xd6\xcd\x07\xbc\x81\x94\x71\x25\x4c\x43\x6f\x4b\x09\xf9\xf2\x2e\x19\xf8\xf8\x23\x68\xd4\xfe\xd2\xba\x27\x4d\xd9\xda\xc8\x02\x7d\x75\x2e\x57\x54\x49\x03\x62\x79\xa0\xef\x40\x53\xd1\x54\x25\x38\x10\xc8\xf9\x6a\x84\xf5\x90\x8c\x67\xa3\x38\x98\x45\x36\xe5\xd8\x86\xe7\x15\x78\x1f\x24\x92\x32\x91\x6f\xc8\xc0\xf5\xc7\x2f\xdf\xeb\xb7\x75\x1f\x3a\x13\x4b\x04\xe7\x90\x4f\xe6\xf6\xd6\xcc\x1e\x2f\x4f\xce\xeb\xbb\x1f\xc7\xf4\x67\x3f\xa3\x27\xe7\x0e\x3d\x39\x3d\x6b\x39\x96\x38\xbc\xf4\x87\x78\x52\x7a\x5e\xd3\x45\xdf\xbe\x73\x32\x2d\xc2\x38\x68\xec\x4f\x6d\x91\xeb\x08\xff\x03\x59\xbf\xa9\x84\x42\x6f\xb1\x69\x74\xde\xa2\xc1\x07\x29\xcf\xb9\xe1\x94\x2d\x0d\x57\xb4\x60\x6f\xb0\xcb\x43\x24\xb3\x2d\x14\x6e\xab\xb1\x39\x4b\x6e\xde\x93\x06\x7e\xfd\x51\xe2\x78\x51\x17\x55\x16\xc1\x98\xd8\x33\x72\x48\x44\x94\x6c\xdf\x2f\x51\xeb\xb2\x04\x19\xc0\x67\x2c\xd2\xa0\xf7\x14\x32\x15\x09\xcb\xf3\xcd\x3d\xd7\x7f\x82\x75\xd9\xee\x8d\x69\x32\x9e\x9a\xd8\x92\x4d\x17\x6f\x88\xba\x51\x8c\x09\xf8\x2e\x03\xba\xa0\x0b\xbc\x53\x50\x5f\x34\xd4\x76\x25\x5d\x7b\xd1\x20\xae\x3f\x5e\x91\xb0\x7f\xe9\x0d\x16\x18\xc2\x3e\xb3\x17\x84\x8e\x8f\x0a\x82\x55\xcf\xed\xfd\xa4\x8c\xb3\xdc\x64\xf6\x4c\xb0\x26\xa3\x78\x25\x63\xfb\x3d\xc6\xef\xf7\x51\x3a\x79\x9c\x91\x5d\x3d\xe8\xec\x08\x22\x9a\xab\x56\x6b\x1b\x5a\xc1\xd9\xa3\x1f\x29\x53\xfa\xf1\x4a\x18\xba\xd4\xc9\xcd\xc7\x8d\xe7\xe8\x74\xd6\xa5\x82\xb0\x84\x5c\xeb\x74\x0c\x5b\x69\xf0\x3e\xe0\x1b\xd1\x83\xca\x72\xeb\x23\x85\xe9\xe8\xa4\x40\x98\x94\xca\x44\xe3\x07\x20\x76\x78\xdc\xfd\xa4\x7b\x4a\xdc\x60\x14\x5a\x93\xeb\xe3\xa9\x66\xeb\xe6\x15\x1e\x55\x69\x23\x92\x86\x3d\xb8\x97\x18\x77\x07\x6d\xfa\xea\x5d\xee\xa2\x50\xee\xdf\x2a\x79\xb5\x12\xa6\x55\x75\xd7\x34\x13\xab\x2c\x17\xab\x0c\xcd\x83\xa5\x08\x28\xcb\x94\x2a\x5e\xc8\x5b\x7b\xc9\xb5\x5c\xf1\x5d\xad\x7d\xe0\x0f\x87\xf1\xa5\x3f\xba\x1c\xfb\xa3\xcb\x68\xaf\xc4\xd9\x8e\xb9\x60\x1d\x7a\x0b\x07\x80\x72\xdb\x42\x00\x1e\xa5\x62\xb9\xc4\x22\x2a\xea\xf9\xc8\x8f\x2c\xe9\xb6\xdd\xbc\x47\x35\xc9\x98\x62\x89\x01\xe8\x8a\x24\xf3\xf6\x21\xd2\x87\x69\xe2\x05\x5d\xb7\x1f\xd9\x33\xfa\xd3\x7b\x88\x5b\x98\xa0\x33\x79\x57\x7e\x80\x56\x83\x13\xac\xff\xfe\x80\xa6\xac\x92\x96\x9e\xb0\xd5\x0a\x72\x63\x71\x0b\x6a\x02\x4e\xf0\xaf\xa2\x26\xab\xa4\x56\x92\x51\x3f\xde\xe9\xc9\x6c\x5b\x94\xba\xa7\xd2\x09\x52\xee\xd6\xdf\xaf\x88\xbd\xce\xe9\xa1\x7e\x1f\xd5\xd7\x76\xed\xf5\x21\xd2\x1f\xcf\xa6\x5e\xfd\x3c\x5f\x8c\xc7\xf5\xe3\xa8\x6f\x2b\x00\xe4\x95\x35\xc2\xab\xd6\xf9\x66\xbb\x8c\x90\xc9\xb5\xd2\xf4\x9a\x9b\x3b\xce\xeb\x8a\xa7\xb5\xc0\x81\x37\x74\x17\xe3\x28\x6e\x15\x14\xce\x01\xcc\x56\xe2\xea\x3d\xc6\x0b\xc3\x0b\x6d\xc1\xb4\x3d\xb3\xb7\xf8\x99\xd9\xe2\x29\x70\xdf\xde\xb6\x0f\xbd\xd8\x8f\xbc\x89\x95\x1f\x21\xaf\xd6\x48\x6b\x57\x87\xdd\xbb\x33\xbb\xbd\xcd\x06\x02\xb5\xda\x21\x4b\x3c\x23\xcf\x81\xe5\x48\xda\xfb\x62\x3e\x9e\x05\x5e\xbc\x57\x9f\x3d\x39\xda\x23\x6a\xcb\xeb\x3f\x44\x0e\xc9\xf8\x61\xb8\x78\x87\xc8\xf1\x3e\x91\xed\x45\x6e\x59\x14\xc2\xe8\x77\x88\xb0\xc4\x88\x5b\x61\x36\x74\xc9\x79\x4a\x86\x9e\x37\xc0\x6b\x83\xfd\xd9\x64\xe2\x47\x35\xc1\xd3\xed\xf1\xac\x5c\xd2\x03\x93\xf1\x82\x77\x12\x99\x4b\x75\x40\x0b\x6e\x18\x35\x6c\x85\x87\x72\x78\x99\xd2\x2d\x53\x25\x45\x4a\x7f\xde\xa3\xa7\x78\x1b\xc7\x05\x8d\xc6\x8a\x3d\xc5\x41\x98\xc6\xd1\x83\x52\x96\xf5\x51\x60\x73\x44\x68\xa5\x60\x2f\xce\xb4\x2e\x69\x69\xb3\xc9\xb7\xe7\x12\x00\x0b\x77\xa7\x12\x29\xbf\xe5\xb9\xac\xb8\xd2\xdd\x95\x94\x2b\x5b\x6c\x3b\xbc\xe3\xd7\x87\xd6\x8b\xeb\xc3\x93\xa3\xe3\xc7\x87\xc7\xc7\x87\xa1\x05\xc0\x9d\xa5\x54\x9d\xd6\x06\x3a\xa2\xec\xf4\x33\x25\x0b\xde\x79\xf4\x29\x36\xd6\xcb\x27\xd1\xa5\x37\xf1\xe2\xfe\x6c\x3c\x0b\xe2\x89\x17\xb9\x71\xe4\x8e\x68\x8f\xbe\xfe\xc9\x72\x79\xfa\xe8\xf1\xa3\xd7\xed\x00\x2f\x4a\x7a\xbd\x31\x5c\xef\x0c\xd9\x66\x63\xbb\x42\xf7\x83\x76\xea\x3d\x79\x5a\x87\x57\x3f\x9c\x8f\x5d\x5b\x9d\x6c\x12\x88\xf3\x47\xe7\xe7\x67\x47\xe7\xa8\x60\xdd\xed\x29\xe5\x4e\x98\xf5\x99\xe4\x07\x14\x62\x11\x7a\xc1\xbe\x3e\x9c\x1e\xbd\xaf\xa9\x1f\x24\x11\x78\xf3\xd9\x07\x49\x94\xd2\x88\xe4\xff\xa2\x98\xd3\x59\xe4\xf7\xdf\x55\xef\xd3\x3d\x32\xed\x03\xd5\x0f\xd2\x9a\x05\xa3\xf7\xd6\x83\x1c\x02\x76\xdc\x63\x87\x7f\xc5\xdd\x1d\x43\xde\x25\x8e\xcf\xcb\x2b\x32\x76\xa7\xe0\xe3\x28\x2f\x3b\x8b\xd0\xf9\x26\xeb\xf4\xa7\xf0\xf7\xf2\x19\xfc\x8d\x5e\x38\x29\xef\x0c\x3c\x67\xa9\x3a\xc3\xc0\x29\xf3\xce\x74\xec\xe4\xb7\x9d\xf1\x73\x47\xad\x3b\xc1\xc2\xf9\x8a\x75\x7e\x67\xee\x70\xdd\xf1\x42\xa7\x32\x9d\xa7\x81\x53\xe5\x9d\xf9\xd8\xb9\x5e\x75\x9e\x8e\x1c\x61\x3a\x7e\xe4\x2c\x45\x67\xe8\x3b\x46\x75\xa2\xc0\x49\x74\xa7\xff\xa5\xa3\x55\x27\x9c\x3b\xfa\xb6\x13\x7a\xce\x8d\xec\x3c\x0b\x9c\x55\xde\xf1\x42\x3c\x7a\x87\xb5\x78\xe5\x2a\x17\x3a\x73\xfe\xfc\xdf\xfc\xe2\xcf\xfe\xf3\x3f\xfc\xb3\x5f\xff\xd1\xf7\xbf\xf7\xb7\x9d\x3f\xff\xcd\x2f\xff\xe2\x5f\xfd\x23\xfb\xf2\x97\xbf\xfd\x3b\x7f\xf1\x2f\xff\xe9\xf7\xbf\xfe\xb7\x7f\xf9\xdb\xbf\xfb\x6e\xc3\x7f\xff\x07\x7f\xfc\xfd\x6f\xfe\x0b\x34\x0c\xf8\xda\xe8\x24\x73\x86\x8a\x95\xdf\xfe\x01\x13\xda\x99\xf2\x94\xab\x9c\x95\xa9\x76\xc6\xcc\xdc\x0a\xfe\xa7\xbf\x5a\x3b\x6f\xff\xf9\x77\x7f\xeb\xbb\x5f\x7e\xf7\xcb\xb7\xff\xf1\xed\xaf\xdf\xfe\xc6\xf9\xfe\x9f\xfc\x8b\xef\x7f\xff\x5f\xff\x8f\x3f\xfc\x67\x8e\xa7\x2b\xf6\xed\x9f\xc8\xdc\x99\x4b\x65\xd6\xab\xf5\xb7\x7f\xa8\x69\x2a\xe9\x53\xc5\xb4\x80\x8f\xb9\xbe\x11\xce\xdb\x3f\xf9\xee\xef\xbd\xfd\x4f\x6f\xff\xdd\xdb\x3f\xfe\xee\x17\x96\x86\xe3\x1b\x96\x0b\xc8\x09\xc3\xb5\x2c\x58\xce\x44\xc9\x4b\x27\xfa\xf6\xb7\xea\xe6\xdb\x3f\xe0\xce\x7f\xfb\xfb\xfc\x4f\x7f\x65\x44\xc9\x9c\xb7\xbf\xfa\xee\x17\x6f\xff\x6b\x3d\x28\xbc\xe5\xa5\xbe\x61\xce\xff\xfe\xc7\xbf\xff\x3f\xff\xc3\x1f\xfd\xaf\xdf\xfb\xf7\xce\x88\xe5\x7c\x25\x89\xcd\xaf\x52\x0c\x79\x60\xe2\x10\x67\x2a\x91\xdc\x70\x65\x45\xd8\x85\x8f\x90\x12\x5e\x11\x94\x21\xca\x92\xa0\x20\x69\x8f\x7e\x93\x11\x94\x26\x3e\x76\xa2\x17\x04\xff\x6e\xdf\x50\xba\xf8\xef\x88\x08\x8a\x18\x10\x86\x22\x28\x67\xda\xa3\x65\x4e\x50\xd8\xb4\x47\xf3\x5b\x82\x12\xa7\x3d\xaa\xd6\x04\xc5\x4e\x7b\xf4\x2b\x46\x50\xf6\x30\xa7\x26\xa8\x00\xb4\x47\xf1\x97\xa0\x22\xc0\x5b\x4e\x50\x1b\x68\x8f\x5e\xaf\x08\xaa\x04\xed\x51\x61\x08\xea\x05\x4c\x28\x08\x2a\x07\x42\x29\x82\x1a\x02\x19\x21\xfc\x12\xd4\x14\xda\xa3\x5a\x11\x54\x17\x78\xbc\x25\xa8\x33\xb4\x47\x6f\x24\x41\xc5\xa1\x3d\xba\xca\x09\x82\xfe\xe6\xde\x71\xc1\xaa\x0a\xef\xa2\xc9\x16\xe4\x4a\x72\x86\x15\x73\xc4\x09\x5d\x23\x8b\xbc\x27\x4a\x41\x5e\x6d\x7b\x74\xeb\x61\x57\x84\xbc\x92\x90\x2b\x5e\x91\xf0\x72\xf6\x22\x1e\xce\x66\x91\x17\xc4\x4f\x03\x7b\xa1\xa7\x85\xc3\xc2\x4c\xde\xd1\x5b\xae\xea\xea\xe9\xbb\x29\x3c\xa2\x72\x00\x29\x23\xd9\xfc\x4b\x8c\xa5\x94\x86\xab\x3d\xba\xcf\xbd\xa0\xbe\x28\xdc\x64\x5c\x40\x15\x4b\xa1\xed\x9b\x54\xf6\x42\x54\x5d\xa6\xfd\x01\x52\x91\x37\x99\x8f\xdd\xc8\x8b\xb1\x2a\x59\x57\x38\x91\xea\xff\x09\x00\x00\xff\xff\x90\xb1\x8b\x07\x8a\x37\x00\x00") func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -306,7 +306,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 13965, mode: os.FileMode(420), modTime: time.Unix(1486702354, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 14218, mode: os.FileMode(420), modTime: time.Unix(1486763394, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4326,7 +4326,7 @@ func confLocaleLocale_bgBgIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 86638, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 86638, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4346,7 +4346,7 @@ func confLocaleLocale_csCzIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_cs-CZ.ini", size: 60516, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_cs-CZ.ini", size: 60516, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4366,7 +4366,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 60727, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 60727, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4386,7 +4386,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 56786, mode: os.FileMode(420), modTime: time.Unix(1485914159, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 56786, mode: os.FileMode(420), modTime: time.Unix(1486762330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4406,7 +4406,7 @@ func confLocaleLocale_esEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 61689, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 61689, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4426,7 +4426,7 @@ func confLocaleLocale_fiFiIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fi-FI.ini", size: 57901, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fi-FI.ini", size: 57901, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4446,7 +4446,7 @@ func confLocaleLocale_frFrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 61569, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 61569, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4466,7 +4466,7 @@ func confLocaleLocale_glEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_gl-ES.ini", size: 60632, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_gl-ES.ini", size: 60632, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4486,7 +4486,7 @@ func confLocaleLocale_itItIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 58699, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 58699, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4506,7 +4506,7 @@ func confLocaleLocale_jaJpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 65969, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 65969, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4526,7 +4526,7 @@ func confLocaleLocale_koKrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ko-KR.ini", size: 61693, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ko-KR.ini", size: 61693, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4546,7 +4546,7 @@ func confLocaleLocale_lvLvIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 61719, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 61719, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4566,7 +4566,7 @@ func confLocaleLocale_nlNlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 57445, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 57445, mode: os.FileMode(420), modTime: time.Unix(1486762193, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4586,7 +4586,7 @@ func confLocaleLocale_plPlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 59314, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 59314, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4606,7 +4606,7 @@ func confLocaleLocale_ptBrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 59760, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 59760, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4626,7 +4626,7 @@ func confLocaleLocale_ruRuIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 87239, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 87239, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4646,7 +4646,7 @@ func confLocaleLocale_srSpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_sr-SP.ini", size: 79498, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_sr-SP.ini", size: 79498, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4666,7 +4666,7 @@ func confLocaleLocale_svSeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_sv-SE.ini", size: 57676, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_sv-SE.ini", size: 57676, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4686,7 +4686,7 @@ func confLocaleLocale_trTrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_tr-TR.ini", size: 59173, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_tr-TR.ini", size: 59173, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4706,7 +4706,7 @@ func confLocaleLocale_zhCnIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 54130, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 54130, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4726,7 +4726,7 @@ func confLocaleLocale_zhHkIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 54131, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 54131, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4746,7 +4746,7 @@ func confLocaleLocale_zhTwIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 53711, mode: os.FileMode(438), modTime: time.Unix(1486674224, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 53711, mode: os.FileMode(420), modTime: time.Unix(1486713598, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 8f6885c11..ebebab6fd 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -144,25 +144,6 @@ var ( RepoRootPath string ScriptType string - // UI settings - UI struct { - ExplorePagingNum int - IssuePagingNum int - FeedMaxCommitNum int - ThemeColorMetaTag string - MaxDisplayFileSize int64 - - Admin struct { - UserPagingNum int - RepoPagingNum int - NoticePagingNum int - OrgPagingNum int - } `ini:"ui.admin"` - User struct { - RepoPagingNum int - } `ini:"ui.user"` - } - // Markdown sttings Markdown struct { EnableHardLineBreak bool @@ -253,6 +234,25 @@ var ( MaxResponseItems int } + // UI settings + UI struct { + ExplorePagingNum int + IssuePagingNum int + FeedMaxCommitNum int + ThemeColorMetaTag string + MaxDisplayFileSize int64 + + Admin struct { + UserPagingNum int + RepoPagingNum int + NoticePagingNum int + OrgPagingNum int + } `ini:"ui.admin"` + User struct { + RepoPagingNum int + } `ini:"ui.user"` + } + // I18n settings Langs, Names []string dateLangs map[string]string @@ -569,8 +569,6 @@ func NewContext() { if err = Cfg.Section("http").MapTo(&HTTP); err != nil { log.Fatal(4, "Fail to map HTTP settings: %v", err) - } else if err = Cfg.Section("ui").MapTo(&UI); err != nil { - log.Fatal(4, "Fail to map UI settings: %v", err) } else if err = Cfg.Section("markdown").MapTo(&Markdown); err != nil { log.Fatal(4, "Fail to map Markdown settings: %v", err) } else if err = Cfg.Section("admin").MapTo(&Admin); err != nil { @@ -583,6 +581,8 @@ func NewContext() { log.Fatal(4, "Fail to map Mirror settings: %v", err) } else if err = Cfg.Section("api").MapTo(&API); err != nil { log.Fatal(4, "Fail to map API settings: %v", err) + } else if err = Cfg.Section("ui").MapTo(&UI); err != nil { + log.Fatal(4, "Fail to map UI settings: %v", err) } if Mirror.DefaultInterval <= 0 {