diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 0709304fb4..ebbfd96d7e 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -368,10 +368,14 @@ commits.newer = Newer issues.new = New Issue issues.new.labels = Labels +issues.new.no_label = No Label issues.new.clear_labels = Clear labels issues.new.milestone = Milestone +issues.new.no_milestone = No Milestone +issues.new.clear_milestone = Clear milestone +issues.new.open_milestone = Open Milestones +issues.new.closed_milestone = Closed Milestones issues.new.assignee = Assignee -issues.new.no_label = No Label issues.create = Create Issue issues.new_label = New Label issues.new_label_placeholder = Label name... diff --git a/models/error.go b/models/error.go index 70285b3a34..91acd9cb11 100644 --- a/models/error.go +++ b/models/error.go @@ -267,7 +267,8 @@ func (err ErrLabelNotExist) Error() string { // \/ \/ \/ \/ \/ type ErrMilestoneNotExist struct { - ID int64 + ID int64 + RepoID int64 } func IsErrMilestoneNotExist(err error) bool { @@ -276,5 +277,5 @@ func IsErrMilestoneNotExist(err error) bool { } func (err ErrMilestoneNotExist) Error() string { - return fmt.Sprintf("milestone does not exist [id: %d]", err.ID) + return fmt.Sprintf("milestone does not exist [id: %d, repo_id: %d]", err.ID, err.RepoID) } diff --git a/models/issue.go b/models/issue.go index de8a4f5346..3e88bc1ad6 100644 --- a/models/issue.go +++ b/models/issue.go @@ -164,16 +164,13 @@ func NewIssue(issue *Issue, labelIDs []int64) (err error) { } } - if err = sess.Commit(); err != nil { - return err - } - if issue.MilestoneID > 0 { - // FIXES(280): Update milestone counter. - return ChangeMilestoneAssign(0, issue.MilestoneID, issue) + if err = changeMilestoneAssign(sess, 0, issue); err != nil { + return err + } } - return + return sess.Commit() } // GetIssueByRef returns an Issue specified by a GFM reference. @@ -497,15 +494,14 @@ func GetUserIssueStats(uid int64, filterMode int) *IssueStats { return stats } +func updateIssue(e Engine, issue *Issue) error { + _, err := e.Id(issue.ID).AllCols().Update(issue) + return err +} + // UpdateIssue updates information of issue. func UpdateIssue(issue *Issue) error { - _, err := x.Id(issue.ID).AllCols().Update(issue) - - if err != nil { - return err - } - - return err + return updateIssue(x, issue) } // UpdateIssueUserByStatus updates issue-user pairs by issue status. @@ -712,7 +708,7 @@ func NewIssueLabel(issueID, labelID int64) error { func getIssueLabels(e Engine, issueID int64) ([]*IssueLabel, error) { issueLabels := make([]*IssueLabel, 0, 10) - return issueLabels, e.Where("issue_id=?", issueID).Find(&issueLabels) + return issueLabels, e.Where("issue_id=?", issueID).Asc("label_id").Find(&issueLabels) } // GetIssueLabels returns all issue-label relations of given issue by ID. @@ -802,14 +798,30 @@ func NewMilestone(m *Milestone) (err error) { return sess.Commit() } -// GetMilestoneByID returns the milestone of given ID. -func GetMilestoneByID(id int64) (*Milestone, error) { +func getMilestoneByID(e Engine, id int64) (*Milestone, error) { m := &Milestone{ID: id} has, err := x.Get(m) if err != nil { return nil, err } else if !has { - return nil, ErrMilestoneNotExist{id} + return nil, ErrMilestoneNotExist{id, 0} + } + return m, nil +} + +// GetMilestoneByID returns the milestone of given ID. +func GetMilestoneByID(id int64) (*Milestone, error) { + return getMilestoneByID(x, id) +} + +// GetRepoMilestoneByID returns the milestone of given ID and repository. +func GetRepoMilestoneByID(repoID, milestoneID int64) (*Milestone, error) { + m := &Milestone{ID: milestoneID, RepoID: repoID} + has, err := x.Get(m) + if err != nil { + return nil, err + } else if !has { + return nil, ErrMilestoneNotExist{milestoneID, repoID} } return m, nil } @@ -915,16 +927,9 @@ func ChangeMilestoneIssueStats(issue *Issue) error { return UpdateMilestone(m) } -// ChangeMilestoneAssign changes assignment of milestone for issue. -func ChangeMilestoneAssign(oldMid, mid int64, issue *Issue) (err error) { - sess := x.NewSession() - defer sess.Close() - if err = sess.Begin(); err != nil { - return err - } - +func changeMilestoneAssign(e *xorm.Session, oldMid int64, issue *Issue) error { if oldMid > 0 { - m, err := GetMilestoneByID(oldMid) + m, err := getMilestoneByID(e, oldMid) if err != nil { return err } @@ -934,20 +939,15 @@ func ChangeMilestoneAssign(oldMid, mid int64, issue *Issue) (err error) { m.NumClosedIssues-- } - if _, err = sess.Id(m.ID).AllCols().Update(m); err != nil { - sess.Rollback() + if err = updateMilestone(e, m); err != nil { return err - } - - rawSql := "UPDATE `issue_user` SET milestone_id = 0 WHERE issue_id = ?" - if _, err = sess.Exec(rawSql, issue.ID); err != nil { - sess.Rollback() + } else if _, err = e.Exec("UPDATE `issue_user` SET milestone_id=0 WHERE issue_id=?", issue.ID); err != nil { return err } } - if mid > 0 { - m, err := GetMilestoneByID(mid) + if issue.MilestoneID > 0 { + m, err := GetMilestoneByID(issue.MilestoneID) if err != nil { return err } @@ -961,16 +961,26 @@ func ChangeMilestoneAssign(oldMid, mid int64, issue *Issue) (err error) { return ErrWrongIssueCounter } - if _, err = sess.Id(m.ID).AllCols().Update(m); err != nil { - sess.Rollback() + 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 } + } - rawSql := "UPDATE `issue_user` SET milestone_id = ? WHERE issue_id = ?" - if _, err = sess.Exec(rawSql, m.ID, issue.ID); err != nil { - sess.Rollback() - return err - } + return nil +} + +// ChangeMilestoneAssign changes assignment of milestone for issue. +func ChangeMilestoneAssign(oldMid int64, issue *Issue) (err error) { + sess := x.NewSession() + defer sess.Close() + if err = sess.Begin(); err != nil { + return err + } + + if err = changeMilestoneAssign(sess, oldMid, issue); err != nil { + return err } return sess.Commit() diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index fc13cbef01..3bd8d83ea1 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -772,7 +772,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xeb\x72\xdc\x46\xb2\xe6\x7f\x3c\x05\xac\x0d\xad\xec\x08\xaa\x15\xb6\x63\x2f\xe1\x90\xe4\xa5\x49\xeb\x32\x47\x14\x75\x44\x6a\x66\x67\x15\x0a\x0c\xba\x01\x76\x63\xd4\x0d\xb4\x71\x61\x9b\xf3\x6b\x5f\x63\x5f\x6f\x9f\x64\x33\xbf\xcc\xac\x0b\x80\xa6\xe4\x39\x27\xf6\xfc\x21\xab\xab\xb2\x6e\x59\x59\x79\xab\xac\x42\xbe\xdf\x67\x45\xd9\xad\xd2\x67\xe9\x69\xba\xcf\xab\x7a\x5b\x76\x5d\xda\x95\xdb\x9b\xc7\x9b\xa6\xeb\xcb\x22\x7d\x59\xf5\xf4\xbb\xbd\xad\x56\x65\x92\x6c\x9a\x5d\x49\xa0\xaf\xe8\x5f\x52\xe4\xdd\x66\xd9\xe4\x6d\x41\x19\xe7\x96\x4e\xca\xdf\xf7\xdb\xa6\x65\xa0\x5f\x25\x95\x6c\xca\xed\x9e\xeb\xd0\xbf\xa4\xab\xd6\x75\x56\xd5\xf4\xf3\x8a\x52\xe9\xeb\x3a\xe9\x9a\x55\x95\x6f\xb3\xa0\x00\x19\x56\xfe\x53\xfa\x43\x5d\xa4\x57\x7d\xb9\x4f\x9f\x76\xbb\x7c\xbb\x7d\x9e\x77\xa8\xd2\x97\x69\xbe\x5a\x35\x43\xdd\x3f\x7d\x22\x05\xd2\x78\x33\xf4\xd6\xfa\xe5\xd0\x4b\xde\xb0\xb7\xac\x0f\xfb\xa4\x2d\xd7\x15\x4d\xac\xa5\xac\xf7\x9a\x4c\x0e\xe5\xb2\xab\x7a\x1e\xf4\x5f\x24\x95\xdc\x96\x6d\x57\x35\x3c\x9e\x3f\x4b\x2a\xd9\xe7\x6b\x06\x78\x47\xff\x92\xbe\xdc\xed\xb7\x39\x2a\x5c\x6b\x32\xd9\xe6\xf5\x7a\x10\x98\x37\x9a\x4c\x92\x81\x30\x57\xe7\xc0\xd9\x07\x4d\x26\xe5\x2e\xaf\xb6\x8c\x9f\xc7\x9c\xa0\x76\xbb\xee\xd0\x00\x8b\xef\x34\x49\x63\xcc\xfa\xbb\x7d\x89\x21\x3e\xbe\xa6\x54\xb2\xca\xf7\xfd\x6a\x93\x53\xce\x99\xa4\x12\x02\xda\x37\x34\xd6\xa6\xbd\x03\x9c\xfd\x48\x9a\x76\x9d\xd7\xd5\x3f\xf2\x5e\xc6\x7f\x19\xfc\x4c\x76\x55\xdb\x36\x3c\xf5\x0b\x24\x92\xba\x3c\x64\xdc\x0e\xe5\xbc\x2d\x0f\x61\x2b\x5c\xb2\xab\xd6\xad\xcc\x92\x0b\x2f\xf0\x8b\x5b\xe1\xb2\x9b\xa6\xfd\xac\x05\x2f\x38\x39\xaa\x4a\x83\xd0\xd2\xb8\xff\xbc\x26\xbc\x68\xe9\x05\x7e\x44\x00\x5d\x92\x17\xbb\xaa\xce\xf6\x79\x5d\x32\x8e\x4e\xf9\x17\xe1\x85\x7e\x25\xba\xdc\x59\x57\xf6\x7d\x55\xaf\x3b\x2e\x96\xac\xf4\x4a\xb3\x92\xa0\xcc\xe5\xf1\x78\xba\xec\xa6\x2c\x0b\x19\x51\x97\xbe\xa0\x74\xb2\x1f\xb6\x5b\x9a\xfb\x6f\x43\xd9\xf5\x0c\xff\x8e\x7e\xd3\x2c\xe4\x77\x52\x75\x1d\x25\x28\xfb\x35\x12\x09\x2d\x40\xbd\xc2\x90\xce\x90\x48\x92\x8f\x5d\x99\xb7\xab\xcd\xa7\x44\xfe\xa3\x47\x4e\x2c\x16\x8b\xa3\x4b\xc3\xe4\xa0\xa4\x20\x3d\x58\x07\xc9\xaa\x29\xf8\xc7\x19\xfd\xa3\xa6\xab\xba\xeb\x89\xa4\x3f\x25\x9a\x60\x30\x49\x09\x1a\xfb\xaa\xdf\x96\x3e\x13\xfb\xa3\xe3\x75\x48\x5f\x54\x6d\xd7\x3f\xee\x2b\x22\xb9\xf7\x43\x9d\xf0\xfc\x88\x9c\xb3\x62\x69\xbb\xfc\x65\x43\xd8\x41\x76\x4b\xf3\xbb\xb8\xbb\xfa\xd7\x37\x27\xe9\x3b\xda\xea\xeb\xb6\xa4\x74\x4a\x6d\xd0\x3f\xaa\xf3\xe3\x22\xa1\x5a\xd6\xd3\x79\xde\xe7\xcb\xbc\x2b\x3d\x5a\xb9\x50\x68\xd4\x95\x81\x52\x99\x6d\x80\x45\x74\x7d\x34\xdf\x39\x3a\xa7\x36\x74\x77\xb8\x36\xde\xf2\x16\xa1\x7c\xe6\x1a\xa8\xfc\x6e\x5b\x72\x3e\x35\x95\xbe\x7e\xfb\xf6\xf2\xfc\x97\xb4\xac\xd7\x55\x5d\xa6\x87\xaa\xdf\xa4\x43\x7f\xf3\xdf\xb3\x75\x59\x97\x2d\x31\x91\x55\x95\xd2\xce\x68\x89\x08\x52\x22\x4f\x99\xdc\x22\xe9\xba\x6d\xb6\x13\xf4\x5e\x5d\xbd\x49\x2f\x18\xc5\xfb\xbc\xdf\x60\x20\xfd\x26\xe9\x7e\xdb\x32\x8a\x5c\x87\xd7\x9b\x32\xbd\xa9\x68\xd6\x00\x6a\x6e\x0c\x1f\x69\xa1\x63\x5c\x24\x65\xdb\x66\xb4\xef\xfb\xbb\x4c\x2b\x6b\x7b\x63\x48\x69\x82\x48\xa7\x6e\xfa\x74\x59\xa6\xa8\xb3\x48\x12\x1b\xb0\x61\xf7\x74\xbf\xdf\x56\x2b\xd9\xb1\x2f\xa5\xcc\x23\x9a\x59\xb4\x62\x29\x84\x03\xa2\xac\x2c\x40\x17\xf1\xbf\xbb\x66\x68\xd3\x88\x0d\xa0\xfe\xa6\x24\xbe\xbc\x19\x68\xcb\xe5\xc4\x53\xb7\xcd\x50\x7c\x03\x4a\xb5\xd1\x7b\x42\x4d\xdf\x37\x34\x60\x60\xc7\x01\xf8\x2e\x4e\x89\xe2\x58\x2a\xb4\xe5\xae\x21\xee\xe0\x88\xbd\x22\x82\x3a\x54\x54\x48\x33\xed\xf2\x5b\xda\x6f\x7d\x93\xf6\x9b\xaa\x4b\x0b\x22\xb6\x15\x37\x4c\x5b\x63\x20\x7e\x2c\x64\x41\x04\x2a\xa4\x61\x79\xf1\x1a\x00\x6a\x37\x10\x35\x6d\xa8\x31\xe6\xf6\x2c\x9a\xa8\xc9\xb9\x71\x62\x4a\xd4\x0e\xe8\x9b\x28\xb7\x21\xde\xca\xdc\xef\x1c\x09\xfd\x1d\xb6\x4f\xa3\xca\x6f\x6e\x68\x54\x1d\x51\xc5\xab\x74\xb5\x6d\x88\xa4\x3e\xbc\x7f\x43\x95\x37\x7d\xbf\xcf\xf6\x4d\x0b\x32\xbe\xbe\x7e\x47\xdb\xa3\xed\x7d\x6e\x80\x6b\x86\xa9\x87\xdd\x92\x7e\x1d\x36\x15\x31\x81\x3c\x58\x20\xa0\x62\xcb\x02\xa6\x4e\x9b\x7a\x81\xb5\x1a\xda\xed\x68\x19\xa9\x4b\x2b\x39\x32\x3c\x1e\xc2\x13\xfe\x73\xe5\x47\x89\xe9\x76\x24\x85\x0f\x58\x54\x9a\x6a\x09\x69\x42\xb4\xd5\xec\xb9\xdd\x80\xb8\x2e\x35\xc3\x53\x14\x24\x90\x2b\x17\x39\x44\xa5\x90\xf1\x01\x2f\xdd\xd1\x84\x75\x37\x5f\x5d\x10\x1a\xb0\xa5\x91\x7b\xd3\x36\x3b\xca\x7d\x41\xff\x7c\x86\x1f\xfe\x05\xb7\x07\x98\xbc\x28\x88\xcd\x74\x27\xe9\xfb\x17\x67\xe9\x7f\xf9\xf1\x87\x1f\x16\xe9\xeb\x9e\x37\x04\xd3\xc8\xdf\x79\x6d\x29\x29\x02\xd1\x81\xd2\xce\xed\x69\xf9\x1f\x30\x81\x3f\x48\x9f\xa2\xf4\x7f\x94\xbf\xe7\x24\x67\xcb\xc5\xaa\xd9\x3d\xe7\xcd\xbd\xcb\xfb\x45\xc2\x25\x44\x35\x4a\x4e\x57\x65\x5d\x50\x42\xc5\xaa\x96\x05\x5c\x47\xcb\x03\x21\x2b\xd2\x3f\x5b\x35\xf5\x4d\xd5\xf2\x84\x7e\xad\xf3\x25\xe1\xc4\xf4\x02\x62\xc7\x28\x31\xd9\x45\x48\xa3\x8d\x5c\xdd\xdc\x79\x50\x4c\xf5\x2d\x67\xea\x82\x26\xac\x2b\x51\xa3\xaa\x32\x39\x2c\x5f\x21\x1b\xeb\x76\x49\xd3\x6b\x0d\xdf\x9d\x47\x78\x73\x73\xb3\x25\xc6\x66\xcc\x4a\x7b\xb8\x94\x5c\xe1\x5b\x21\x08\x11\xe3\x1e\x9a\xcd\x79\xd5\x01\xf2\xec\xfc\x6d\x5a\xde\x12\xb5\x11\x39\xec\xdb\xa6\x18\x56\xa0\x30\x86\x3d\x49\x59\x4c\x10\x7e\x89\x33\xac\x84\xbd\x05\x7b\x95\x87\xc6\x0c\x61\x45\x40\xb4\x45\x0b\x69\x2f\x13\x04\xb5\xa6\x48\x58\x37\x57\xac\x1c\x86\x65\xb3\x15\x26\xa3\xc3\x2a\x75\xe3\xba\xb4\xdc\xf5\xf6\x2e\x85\xd4\x07\x5d\xac\xda\x32\xd0\xed\xba\x45\xa2\xb2\xca\x34\xc4\xec\xb6\x22\xa5\x22\x58\x2a\x94\x9a\xba\xc8\xec\xe1\xcf\x0c\xc0\x6a\x5a\x37\x5b\xd7\x0d\xec\x92\x3b\xe6\x12\x9a\x3b\x75\xce\xe3\xeb\x30\x04\xf4\xc0\xea\x1e\x11\xe3\x6d\x05\x4e\xa3\xc8\xc2\x58\x09\x63\xe8\x9a\xba\xea\xca\x12\x2d\x50\xfd\x27\xd4\x26\xea\x2c\x54\x85\x51\x55\xc4\xe4\xee\x5f\x9b\x21\x2d\x9a\x94\x05\x01\xd8\x19\xd5\xb6\xa9\xd6\x3a\x7d\x9d\x73\xda\x56\xeb\x0d\xf1\x95\xe6\x70\x22\x48\x3b\x6c\x9a\x92\x69\xe7\xf5\xf9\xb3\xef\x65\x1c\x6b\x66\x6e\xae\x12\xb3\xc5\x7c\xe8\x1b\xa6\x53\x5d\x42\x19\x82\x13\x2f\x80\x9c\x28\x4b\x02\x34\x56\x4f\x4d\x01\x9b\x4a\x6b\xdd\x27\x61\x99\x6e\x10\x0f\x23\xb5\x47\x2a\xae\x6a\x31\xd9\xba\x81\x66\x66\x5a\x0b\xb3\x6a\x52\xa5\xbb\x3e\x5b\x57\x7d\x76\xc3\x1b\x96\xdb\x7c\xc1\x75\x59\x72\x50\x49\xfa\x88\x8a\x1e\xa5\xb4\xeb\x49\x73\x2c\x7e\x4a\x1f\xde\xaa\xb8\xfe\x91\x77\x62\x96\xdf\x12\x2c\x16\x03\x08\x6e\x89\xc2\x45\x5b\x30\xf5\xbd\x68\x88\xce\x19\xe7\xdd\xb0\x07\x47\x57\x09\x7d\x92\xee\x05\xb0\x68\x0e\xf5\xb6\xc9\x0b\xb0\x1c\xda\x5d\x15\x8c\x8f\x65\x55\xe7\x24\x5d\xac\x15\xb0\xb2\x87\x44\x0d\x6f\x2f\xaf\x01\xb8\x6e\x96\x43\xb5\x2d\x0c\x60\x41\x33\xbc\xcd\xb7\x55\xc1\x7a\x96\xae\x7b\xa8\xd3\x58\x56\x25\x63\x59\x35\x2d\x8b\x43\xcc\xc6\x2a\x1e\x91\xc3\x2d\xcb\x37\x64\x53\x5d\x85\x45\x3d\x27\x32\x19\x0d\xb4\xf0\x50\x40\x59\xa0\x82\x62\xaa\xae\x7e\xd4\x63\xa4\xab\x81\xfa\xa2\x45\xe7\x6c\xaa\xd8\xa5\x8f\x9f\xd3\xdf\x84\xc5\xb3\xf0\xbd\xf5\x14\xf1\x5c\x98\x4a\xe1\x20\xbb\x34\x1a\x6a\x44\xde\x8e\xba\x8c\x78\x83\xb9\x86\xe3\x35\x12\xe8\x06\xa1\x57\xb6\xb4\xb6\xb4\xac\xe5\x37\x94\x78\x44\x1b\x78\xbd\xc5\x22\xe4\xd0\x5e\x48\x8d\x6b\x08\x6f\x4c\x20\x27\xb2\x5d\x6e\x68\x6a\xcc\x3b\xfb\xfc\x33\x8d\x2d\x6f\x49\x09\x4b\x3e\xb2\x35\xfa\x29\x19\x44\x01\x6a\xb6\x85\x53\x36\x41\xd3\x4d\x3b\x36\xb1\x3c\x90\xa3\xd7\x8e\xb4\xc8\xd5\x26\x73\xb6\x2c\x23\xa5\x2f\x7f\x87\xcc\x43\x91\x37\x6d\x99\xd8\xb9\x28\xd9\xdd\x61\xb9\x78\x12\x17\x77\x7e\xb5\x48\xfd\xa1\x2d\x42\x2a\xfa\xb2\x61\xac\xdd\x96\x0e\xea\x2c\xcc\x8d\x2b\x50\x5b\xa4\xa8\x69\x53\xb1\x25\x44\x45\x62\xae\x69\xa9\x98\x6c\x64\x8a\x7c\x54\x1b\xfb\x53\x62\x1d\x44\x4d\x26\x1f\x89\x19\x90\x5d\x22\xec\x25\x63\x6b\xcc\x16\x87\x86\x22\x3c\x87\x0d\x33\xe5\x07\x5e\x0e\x6e\xca\x3d\x8b\xcc\x5d\x87\x55\xdd\x12\x64\x71\xa7\xba\x97\x5b\xdf\x9f\x85\xd3\xd2\x82\x13\x7f\xfa\xc6\xac\xf7\x3f\xd8\xc4\x2f\x15\xad\x24\xea\xc7\x92\x83\xe5\x35\x6d\xb5\x3d\xb0\x4f\x9b\xe4\xee\x24\x8d\x64\xd0\x26\xef\x88\xfb\x92\x80\xd3\x6a\xc5\xc2\xac\x03\x5e\xb5\x7c\x25\x24\x0f\x4b\x1e\x44\x2a\x35\x9b\x76\x2c\xd2\x78\x84\xc2\xa0\xb4\x17\x27\xf0\x21\xce\x43\xa9\x3f\xd3\x27\x21\x6c\x57\xb2\xce\x97\xed\xc4\x42\x97\x5f\xe9\x45\x99\x90\x62\xb2\xa6\xfd\x68\xf4\xf6\x8c\x4d\xb2\x35\x34\x54\x25\x37\x06\x28\xfb\x90\x83\x2a\x84\xe5\xfc\x6c\x1e\x0b\xda\xd8\x07\xd8\xab\xb4\x35\x27\xe8\x27\x59\x43\xc5\x0b\xe3\xc8\x22\x70\xa1\x9f\x74\xb4\xd9\x3d\x12\x4f\x53\x5a\xfd\x34\x84\x52\x3d\xd1\x4f\x8b\x2b\xf0\xa6\x7f\xba\x7c\xfe\xb0\x7b\xfa\x64\xf9\xdc\xb1\xc6\xd5\xa6\x5c\x7d\x16\x5b\xa2\xaa\x97\xcd\xef\x30\xb8\x68\xe1\x19\xc7\x35\x6f\x91\x87\x45\xba\xa1\x52\xe8\xe4\xb4\x95\xa9\x1a\x21\x9e\x4b\xa3\x45\xa3\xc1\xf0\x8e\x5f\x98\xef\xc7\x09\x07\x23\x24\xaa\x8d\x4e\x64\x64\x64\xe6\x63\xef\x70\x56\x40\xb7\xa7\x9c\xcb\x94\x0b\x36\xef\x49\x17\xf3\xdd\x56\xbb\xaa\x9f\x90\x0e\xf3\x91\x5c\x49\x50\xed\x7c\xc3\x25\xda\x02\x36\x30\x16\xe2\xc6\xd4\x0c\xc9\x4d\x23\xa7\x43\x4e\xe6\xcd\x8f\x29\x91\xd0\x40\x52\x88\xe7\x44\xc3\x24\x76\x9c\xb3\xe0\x25\x03\x21\xef\xb2\xa1\x56\xb4\x96\x85\x11\xd3\xab\x0a\x42\x82\xfb\x35\x92\x0f\xa0\x0c\xf3\xaa\xe7\xa6\xdf\x3a\x8c\x7f\x47\x4a\xf1\x8d\xab\xc6\x9c\x9b\x07\x54\xb1\x4e\x96\xcf\x2e\x1e\x71\xb6\xba\x14\xf3\x0a\x18\x60\x38\x5e\x68\x32\x0e\xfc\xea\x91\x85\xf1\x99\x72\xb0\x20\xcb\xa1\xef\x1b\xd6\xb9\xb7\x4c\x35\x52\xc7\x46\x7d\x06\x40\x98\x11\xbe\x3d\x2c\x48\x88\x27\x59\x9b\xd2\x74\xe0\xcc\x7b\xe1\xd4\x5a\x19\xcd\x4e\x45\x9d\x03\x2b\xc4\x5c\xcf\xeb\x3b\x23\x65\x22\x08\x1e\x05\x77\xd8\xcf\x8f\xe5\xdb\xb6\xfc\xce\x8f\xc6\xed\x19\xd4\xb0\x11\x49\xf5\x60\x3f\xbd\x47\x29\xa8\xc4\xed\x3a\x93\x5c\xea\x64\xf1\xf4\xd1\xc6\xe8\x45\x39\xef\x0c\x62\xb0\xa4\x36\x16\x40\x34\xcd\x02\xb5\x17\xa3\xbe\xbc\xb9\x33\xc5\x60\x1f\x0f\xd9\x0b\xa0\xbe\x69\xb2\x6e\x23\xa6\xa5\x0d\x2f\xdd\x96\xf5\x3a\x72\x13\xc0\x07\x0b\xa2\xfb\xaf\x2c\xe6\x48\x81\xcf\xb7\x9f\x92\x3b\xf8\xa3\xfe\x4a\x1c\xbe\x86\xbf\xae\x49\xa8\x40\x8c\x91\x0b\x24\x08\x94\x2d\xa3\x4f\x09\x8b\xc0\xb7\x23\xb5\x8e\x45\x84\xe6\x05\xfa\x05\x8a\x7e\x8d\xb4\x35\x5b\xc2\xe4\xdd\x8c\x0a\xf8\xbe\xf4\x7e\x49\xa4\xdc\x14\xc9\x88\xbe\x36\x53\x87\xec\xe9\xcf\xa5\x36\xfe\x8a\xcc\xe6\xee\x03\xcc\x5e\xb1\x61\xd9\xe0\x7d\x97\xdf\xb1\xd2\x25\xd9\xfa\x03\x05\xd7\x65\xbe\xd3\x51\x72\x52\x9a\x38\x25\x71\xa6\x99\x9c\x24\x29\x17\x78\x35\x12\xa8\x1f\x36\x05\xd1\x45\x54\xec\x3b\xf5\xbf\x54\xa7\xe7\xdf\x26\xae\x98\xbf\x25\xf9\x76\xbf\xc9\x21\xff\x03\x30\x78\x1d\x08\x08\x0b\x9f\x02\x04\xb4\x30\xec\xca\xb6\x5a\x71\x92\x2b\x7c\xfb\x38\xfb\x0e\x0e\x27\xda\x28\xa4\x08\xc6\x8d\x15\xb4\x49\xfe\xa9\x06\x39\xcd\x4a\x62\xd8\x6e\x57\xfd\xc3\x66\x11\x35\xc7\xf9\xc4\x73\x08\x02\x2a\x99\x87\x72\x40\x10\x8c\xac\x9e\xf5\x29\xf3\x85\x9e\x55\xc0\xa8\xe9\x5d\xfe\xfb\x97\x2a\xee\x9a\x99\x7a\xc2\x0a\x7c\x25\xdb\xf0\x3a\xc5\x98\x1d\x10\x3c\xfb\x37\x8e\x42\xd3\xd2\x33\x48\xfd\x99\xa4\x5a\xed\xc0\x3e\xc8\xef\x14\xbf\x7f\x32\x17\x38\x89\x10\x55\xa0\x53\xe7\x0c\x27\xe1\x5c\x30\xdf\x84\x22\xbc\xf0\xdb\x2d\x54\x8e\x1d\x39\xb3\x1a\x69\x26\xbf\x63\x1c\xa4\x51\x8a\x9d\x40\x24\xb5\xf0\x7e\xfb\x8c\x65\x64\xc6\x4a\x67\x1d\xaa\x96\x4e\x7a\x9a\x7c\x01\x84\xf8\x7d\xb3\x69\xbd\xd1\x86\x3b\x5a\x9d\x54\x81\x99\xda\x97\x53\x47\xde\x91\xfa\x3d\x6d\x99\x99\x06\xdc\x4e\x3a\x5a\x51\x16\x13\x95\x68\xe6\xc5\x84\x17\x4c\x2b\x32\x18\x99\x3d\xdb\x6d\xb9\x66\x57\x93\x75\x1c\xf5\xa6\x24\x44\xc2\x40\xc0\x42\x02\xf2\x18\x76\x8b\x15\xae\x6b\xa8\xc4\xbb\x35\x8a\xcd\x27\x1a\x35\xa9\xe3\x94\xe4\x9a\x81\x11\xa5\xc3\x50\x49\xbe\x63\x7b\xa1\x1b\x98\x35\xb3\x6d\x21\xda\x49\xbc\x1a\x2c\x78\xd1\x54\x89\x2e\x8e\x37\x4f\xb4\xc8\x06\xd7\x97\xda\x07\xd8\x1f\x6c\x3a\x34\xb7\xa7\x0d\x6b\xe3\x0e\xe8\x58\xb3\xce\x20\x2c\x7f\xaf\xe0\xb6\x7b\x59\xb1\x3b\x08\x26\xa1\xb3\x84\x51\xb6\x48\xb6\xc4\x0c\xd8\xf4\x90\x59\x89\x1e\xdb\xdc\xb2\xe5\xc6\xfd\x71\xa9\xd4\x13\x37\x9e\x4e\x8a\xd7\x59\x8d\x4b\x32\xe6\x9a\x43\x59\x9c\x90\x88\xe7\x1a\x34\x4e\xb0\x8d\x7c\x7b\xc8\xef\x3a\xf8\x48\x8c\xe3\xb0\xcb\x52\xaa\x33\x3b\x21\x05\x60\x8d\x51\x85\xfe\x69\xda\x71\x86\x89\x8e\x78\x27\x0b\x0f\x27\xa6\x0f\x30\x0f\xc1\x2d\xd4\xeb\x42\x56\x37\x8b\x3d\x88\x58\x95\x35\x6c\xda\xb2\x21\xc8\x3a\xbe\x14\x07\x0d\xe1\xc8\x43\x39\xff\x4c\xdd\x13\x56\x8f\xa8\x1b\x56\x56\x88\x1f\x0b\xae\x49\xff\x23\xcc\x62\x48\x81\xaf\x60\xa0\xf6\x1f\x8b\x5e\x5c\x11\x0e\xd9\xce\xf2\xe6\x33\xcb\x26\x5a\x15\x73\xec\x4a\x3e\x8c\xdf\xa4\xeb\x69\x0b\x30\xa6\xed\xb0\xed\xaf\xa2\x5f\xa9\xc9\xcc\xa5\xd8\x62\x40\x53\xb7\xa9\xf6\x69\x03\x67\x61\x88\x42\x4f\xb6\x81\x8a\x49\xd8\x28\x4a\xe8\xdd\xec\x35\x6d\xf3\xba\xbb\x29\xe1\x3e\xdd\xa5\x37\x7c\x12\xb4\xd0\xae\x59\x63\x95\x43\xb7\x23\x3d\x8b\x0d\x83\xae\x43\x69\x81\xb5\x0b\x16\x2a\xee\x9a\x60\x6e\xd1\xb3\x8e\x01\x58\xf5\x2d\x75\x36\x06\x26\xb3\x09\x0a\xa0\x35\x46\x87\x14\x36\x9a\xdb\x32\x44\xc4\xcd\x3f\x3b\xf3\x00\xeb\xea\x21\x16\xb7\x7a\xbc\x4c\xd2\x29\xbc\x15\x38\x63\x5a\xde\xc5\xb3\xe7\xaa\x8e\x02\xf8\xc4\xe3\xb6\xd4\x5e\x78\x63\xf0\x5e\x19\x35\x08\x2f\x85\xb7\x15\x92\x3e\x87\xc9\xb7\xa4\x21\xae\x36\xd1\xee\xbc\x46\x49\x2a\x25\x93\x0d\x9a\x7c\xe4\xae\xc9\x8c\xdf\xe4\xf5\xba\x64\x57\x17\xb5\xc4\x22\x0f\xbf\x55\x43\x97\x4c\x1a\xf0\xba\x95\x34\x3b\xc8\xad\xca\x8a\x36\x64\xb3\xbb\xb7\x66\x55\x9b\xc3\xa6\x4b\xfe\xde\x90\x0e\x01\x4f\xef\x9f\x28\xc5\xda\x6f\x9d\x44\x67\x3b\x23\x3f\x03\xcc\x83\xaa\xbf\xc3\xa1\xd3\x92\x74\x60\x31\xd2\x28\x87\xcc\x5c\x70\x07\x78\x2e\x5e\x58\x9a\xd6\x23\x67\xa6\xc7\x5b\x5b\x52\x0a\x27\x6e\xa4\x17\x96\x4e\xd8\x4a\xde\x2d\x20\x1c\x58\x99\x86\x73\x3a\x10\x09\x8f\x1e\x76\x8f\x78\xc1\xac\x6c\x11\xc0\xef\xf3\x9e\xd8\x62\x2d\x26\x8a\x70\xa8\xb0\xaa\x16\xbb\x26\xc0\x55\x04\x6c\x81\x13\x5d\x41\xc5\xa7\x84\x6c\x49\x1c\x01\xd2\xd4\x24\x35\x7b\x7c\xa9\x2c\xa6\x53\x9d\xf7\x5f\x28\xa9\x1e\x91\xd4\xc5\x31\xa8\xa9\x8a\x63\x3c\x3b\xf4\xe9\xe2\x33\xa0\x2e\x51\x17\x50\xec\xff\x51\xf2\x7e\x96\x9e\x4b\xc2\x8c\xde\xa1\xc2\x9c\xaa\x22\x49\xf6\xc0\x7b\x16\x8c\x56\x16\xc2\x0d\x5a\xfe\x07\x3e\xe8\x76\x2c\xd9\x09\x0b\xd2\x0a\x08\xd7\x8e\x04\xa0\x05\xf0\x19\x6a\x60\xb0\xb1\x73\x15\x96\x5c\x1d\x1c\x77\x90\xbd\xcb\xf5\x18\xec\x50\x2e\x53\x76\x77\x12\xe1\x90\x5d\xa4\x13\xdd\xe5\x64\x52\xdd\x56\xb9\xf3\xcc\xd0\x6a\xf1\xc1\xbb\x4a\xd1\x17\x7c\xe8\x8e\x93\xcc\x69\x08\x06\x9f\x47\xe8\xd1\xc3\x1b\x4d\x26\xc3\xbe\x60\x9f\x96\x9f\xf0\x07\x64\xb8\x09\xc7\xe5\x81\xb7\x11\x53\xb7\x6a\x4e\x9b\x11\xf0\x22\x55\x38\x1e\xd9\xdd\xc2\xb6\xcf\x4c\xec\x86\x6e\xa1\x62\x0c\x12\x3a\xf9\xa5\x48\x8d\x56\x03\x58\x08\xef\x01\x7a\xe5\x5c\x0f\x08\x21\x59\x99\x6e\x9a\x43\xba\xad\xea\xcf\x9d\xe2\xd7\xf9\x43\xcc\x4e\x4e\xcf\x91\x41\xc0\xe2\xa9\x61\xb5\xaa\xaa\x87\xf2\xe7\xc4\x52\xe2\x88\x47\x72\x1a\xa7\x50\x8a\x54\x1c\x33\x03\x3d\x3f\x39\x43\x76\x7a\x8a\xec\x59\x58\x6f\xe7\x6a\x15\x9c\xe8\x32\xfb\xd5\x83\x9d\x9b\x92\x15\x6c\xb0\xc3\x97\xca\x85\x08\x3f\x4d\xd3\xa9\xef\xd1\xb3\x1f\xce\x83\xa3\x42\xa1\x74\xb5\x1c\x84\x2e\xa6\x0c\xc6\xce\x29\x08\x8a\xcd\x43\x52\x96\x74\x3c\xd8\xdb\x59\xb5\x93\x58\x9b\x0f\x5a\x2a\x47\xf6\xce\xae\x40\xf1\x82\x2c\xe5\xd1\x64\xc2\x13\x83\xb7\x84\x4b\x99\xbe\xf1\x51\x2b\x3c\x31\x75\x41\x10\x02\x61\x1f\x0d\x76\x4c\x59\xda\x80\x39\xbf\xbf\x40\x60\x46\x3e\xe1\x41\x8a\xf0\x66\xc7\x5a\x9a\x6d\xa4\x14\x9e\xa9\x1b\xdf\x95\x33\x66\x83\xf2\xb7\x38\xf2\x1a\x7b\x1b\x22\x4b\x49\x5b\x38\xaa\x4d\x8f\xc6\x34\xd9\x3b\x56\xef\x40\x73\x0b\xa7\x63\x04\xbf\x10\xea\xcf\xe1\x19\x96\x53\xb1\xa1\x13\x7d\x92\xbb\xc2\x91\x9a\x34\x41\x08\x80\xc1\xd1\x79\x3b\xe3\x54\xb8\x11\x3b\xc4\x25\x42\xc8\x01\x68\x90\x50\x6c\x4f\x96\x76\x86\x1d\x32\xb6\x7d\x4b\x8b\x4e\x82\x77\xe4\x89\x9a\xb0\xb4\x88\x7d\x81\x7b\x35\x38\x90\xf5\x5c\x8b\x2c\x48\x6d\x8b\xf9\x3f\x52\x96\xe3\xbd\x97\x25\x7b\xb7\xac\x53\x65\xd6\xae\x54\x58\x76\x42\x63\xc0\x1e\x28\x9d\x7b\xa2\x00\x26\xe2\x21\x02\x2c\x04\x31\x4f\xa8\x65\x67\x91\x9f\x17\x1e\xdb\xff\x30\xdf\x6e\xd4\xa1\xf3\xed\xfa\xa1\x8e\xc8\x86\xc7\x38\x92\x38\x13\x02\xa2\x02\xc8\x5f\x5d\xfa\x40\xaa\xea\xe2\x3b\xe1\xca\xdd\x88\x4e\xcf\x68\xa2\x2c\x88\x60\x25\x02\x70\x58\x56\xf0\x10\x74\x81\xc0\x1d\x51\xf0\xbb\x89\x1b\x32\xe6\xaf\xa7\xb0\x60\x08\x2b\x02\xcb\xfa\x00\x0b\x34\xd1\xfe\xd4\x22\xda\x31\x22\xe4\xd8\xd5\xc5\xa1\xdc\xc9\x89\xa3\x57\x89\x4e\xd4\x6c\xd8\x54\xeb\x0d\xcd\xab\xda\xf1\x91\x23\xb8\xb6\x9d\x6b\x79\xab\x8e\x7f\xd1\xc6\x6b\xd6\x35\xfb\x70\xb8\x87\x05\x26\xe3\xb8\xed\xd3\xae\x6f\x9b\x7a\xfd\xfc\xbc\x61\x73\x8b\x3d\x21\x2c\x2a\x7e\x7e\xfa\x44\xf3\x89\x65\xf0\x1a\x72\xbc\xe3\xcb\xaa\x7f\x35\x2c\x1f\x75\xe9\x9a\x74\x03\x08\x90\xa7\x79\xba\x69\xcb\x9b\x67\x0f\x1e\x76\x0f\x9e\xeb\x39\xb3\x44\x05\x1d\x6a\x87\x96\xa7\x4f\xf2\xe7\xac\x3d\x77\xcd\x96\x94\xda\xb8\x4a\xb3\xdb\xc9\xfa\x12\xfb\xdb\x09\x24\xc6\x8f\xa3\xe9\xb2\x06\xe6\xca\x56\xf1\x43\x0d\x2e\x1c\xad\xfb\xf5\xd1\x65\x33\x35\x29\xf2\x2f\xa8\xa2\xc2\xc0\x38\x71\xab\xfb\x80\x69\xb2\x6f\x21\x75\xd5\x20\x60\xa7\xd5\xb0\x90\xec\xae\xf1\xae\x0d\x73\x4e\x40\x83\x46\x1b\x56\x9f\xaa\xd2\x48\x44\xd3\xe0\x3c\xeb\x53\x04\x27\xa5\x8c\xb4\x02\xfa\x65\x9e\x6a\xae\x4c\x28\x8c\xde\x09\xc2\x04\x1b\xd1\xf0\x37\xc6\x00\x64\xf6\xc1\xf6\x87\xfe\x72\x8a\x0a\xa4\xbf\xc0\xea\xd6\xb9\xbc\x51\x1b\x1b\x05\x24\xa8\x02\x7d\xfa\x6d\xa3\x67\x12\xa9\x65\x62\xd4\xa4\x40\xf7\x65\x44\xee\xdc\x1d\xfd\x43\x2b\x44\x9b\x30\xdb\xff\x5b\x5a\x90\x09\xee\xb7\x93\x29\xa4\xba\x99\x4e\xfd\x5e\x18\xab\xa8\x7a\x9a\x77\x74\x3f\x05\xdb\x48\x5b\x75\x61\x1a\xe2\x3e\x28\xa1\x08\x2e\xab\xba\x90\x6d\xa3\x54\xaf\x71\x0f\x8e\xdc\x49\x98\xd6\x0c\x04\x1f\x1f\x27\xf4\x77\x80\xfc\xab\xa8\xfd\x80\x36\x88\x5b\x0d\x75\xc0\x2d\x64\x3b\x66\x7d\x23\xbe\x2e\x9d\xe4\x3b\xb2\x37\x10\xf3\x74\x2a\x0d\x5e\x73\x71\xa7\x71\x77\x7a\x28\x6a\x55\x5e\x6a\x26\x16\x1c\x80\x09\x8a\x3a\x87\x08\xfc\xf2\xa6\xa7\xb5\xa2\xe7\xd5\x1a\xcd\x84\x35\xa0\xad\x67\xfc\x61\x23\xe7\xd7\xe9\xe9\xbb\xd7\x8b\xc4\xf5\x67\x6d\xfe\x9a\x93\xce\x24\x23\x38\x38\xab\x97\x49\x69\xcc\x5f\xdc\x69\x89\x54\x37\x27\x1b\x6a\x82\x9c\xdd\x9c\x26\xf3\x91\xb9\xc4\xe5\x82\xe2\xb2\x0b\x3c\x01\xd2\x1b\x46\x32\xe6\xcc\x6e\xa6\xdf\x10\x62\x9d\x3f\x8a\x25\xc2\xfe\x8e\x79\x5d\x10\xa9\x92\x0b\x82\x0e\xe0\x56\xa3\x10\x19\x82\x84\x35\x9c\xb2\x7e\xdb\xba\xbd\x62\x03\xd6\xdd\x12\xe6\x06\x94\x00\x32\xdc\xdb\x7a\x46\xe3\xf5\x82\x2e\x1c\xb4\x18\xe9\xa3\xfd\x99\x0a\x1b\x95\xf3\x57\x1e\x97\x68\x66\x8a\xe3\xd0\x34\xa3\x36\x0f\xe5\x96\x23\xe9\x74\x40\xfe\x10\x52\x0d\xb1\xe8\x08\x52\x81\xdc\xe1\x23\x47\x2e\x3a\x4d\x42\xd6\x36\xf4\x8e\x58\x63\x04\x41\x04\x8c\x53\x47\xb1\xa0\x8c\xdd\x9f\x9d\xbe\x7d\x7b\x79\xed\xb9\x3c\x53\x56\x5d\x90\x2c\xfa\xc6\xc5\xdf\x4c\xc6\x65\x51\x38\x18\x1f\x02\xb2\x22\x08\x1f\x07\xa4\x35\x8e\xc1\x85\x1b\xdf\x5a\xa7\xe4\xba\xc1\x6e\x6e\x78\x2c\x52\xa3\x88\xc7\x5f\x1c\x33\x50\x92\x8f\x2c\x1e\x3f\x25\xe6\x63\xbc\xe4\xff\x49\xe8\xa6\x0d\x5c\xe3\xa0\x66\xef\x41\xf7\xe1\xa6\x34\x80\xa6\x98\xb8\x6d\xc1\xf6\x86\x1c\x1a\x28\xe1\xbe\x01\x23\xbd\x49\x71\xba\x76\xc2\x5e\xa8\xa6\x05\x0d\x32\x72\x87\xba\xfa\x6d\x80\x7c\x67\xfd\x93\xf4\x15\x0e\xeb\x5a\x56\x5b\xe1\xb6\x7f\x76\x3f\x24\x9f\x53\xa3\x58\xcc\xa0\x73\xfa\xf5\xb4\xdb\x73\xa4\x1a\x71\xdb\xee\xd9\x83\xa1\x4a\xd9\xa9\xc1\x91\x21\x0f\x9e\x93\xb6\xc8\xa7\xd4\xb4\x7c\x04\xf1\x9c\x1d\x13\x9f\xcd\xdf\x35\x8e\x92\x47\x99\x05\x52\x72\x19\xa2\x29\x91\x3b\x33\x0a\xd5\xad\xc5\x61\xd1\x8b\xa7\x2b\x0d\x66\xc1\xdc\x99\xa9\xfb\x73\x19\x62\x4a\x4f\x24\x74\x5d\xcf\xe9\x5f\x5b\x21\x1a\x54\xf2\xf9\xca\x42\x1a\x5c\x57\x70\x99\xbe\xdf\x2b\x5a\xef\x15\x1b\x54\x8b\x75\xd5\x93\x4e\xcf\x57\x3b\x60\x69\xd3\x86\x21\xa6\x88\xdb\x0e\x92\xb2\x9c\x99\xba\x06\x8b\x8a\x55\x5d\xf5\x19\xcb\xe9\x9d\x44\xb0\x53\xb3\xf9\x56\x74\xa0\x18\xd1\x72\x60\x9c\xbe\xff\xf5\xf4\xfc\xe2\xd7\xc5\xae\xb0\x80\x16\xc5\xa7\x46\xb2\x04\x18\x2d\xca\x9b\x7c\xd8\x9a\xab\x0d\x13\x46\x46\xfa\x0b\x32\xf4\xf2\x03\x59\x45\x84\xbf\x5b\x11\x89\x72\x1d\xe2\xb5\xe5\x7c\xcb\x3a\xef\x77\x47\x1c\x50\xe3\x53\x9c\x3f\xee\x87\x1a\xb7\x70\xbf\x3b\x8a\x8f\xf8\x33\x76\x2e\xa6\x1a\x06\x12\x1d\x7e\x26\x7a\x39\xc3\x82\xf0\xdd\xed\x0c\x89\xc2\x0f\x4b\x8f\xd3\xb2\xd9\x46\x79\x4c\xd2\x64\x03\x97\xdb\x14\x7f\x1f\x2f\xb7\x43\xa9\xc9\x36\x2f\xaa\x81\x94\x43\xc1\xa3\xd1\xb8\xf5\xa4\xcb\x72\xa1\x77\x46\x82\x75\x51\x88\x05\xa2\x97\x33\x33\x03\xf8\xdc\x9c\x55\x6c\x35\xfd\x1c\x94\x1d\x04\x20\x1c\xd5\x42\xe2\x5e\x4b\xa6\xc4\xa8\x22\x20\x0e\xba\x76\xec\x33\xb5\xe3\xfa\x3c\x8c\x37\x4f\x64\x53\xd8\x4e\xd3\x2d\x72\xe3\xf6\x1a\x22\x97\x39\x2c\x35\xde\x64\xb8\xde\x12\x60\x2a\x0c\x26\x61\x6e\x56\x30\x3b\xde\xdf\x65\xec\xb9\x01\x07\xde\xdf\x25\x08\xb9\x20\xf9\x95\x41\x3c\x4a\x26\xf8\xe1\xb6\xda\xcb\xe5\x28\x2a\xa8\x4a\x89\x9b\x44\xe2\xf2\x5f\x12\x41\x8a\x5b\x21\x2c\x34\x6e\x4c\x71\x01\xf1\xdd\x9f\xc1\x9e\x7a\x56\xcf\xc5\x93\xfc\xec\x41\xb6\xa4\x3d\xfa\xf9\x41\xa0\xae\xf3\xdd\x2a\xd6\xd1\xbf\x21\x45\xea\xa0\xe7\x9d\x1f\x24\x95\xd8\xef\xbf\xe0\xd7\xc0\x71\x78\x72\xb8\xca\x89\x44\x7f\xb1\x43\x36\xd1\x2b\x3d\xcc\x8c\x12\x56\x48\x95\x6d\x90\x32\x1a\x72\x8e\xdf\x06\x9e\xa5\x58\x1a\xcf\xd2\x7f\xe5\x5f\xe9\x4b\xfe\xa5\x53\xe1\x6d\xec\xf6\x28\x56\x78\xb4\xb1\xc3\xc0\x34\x70\x1c\x8d\xee\xf4\x7b\x5a\xa2\x59\x02\xec\x6b\x18\x8b\x01\x72\x08\x74\xb2\x1f\xf8\xc8\x9e\xd7\xdd\x7a\x7b\x47\x39\x88\x27\xe7\x4c\x16\x59\x41\x0b\xce\x5b\x1f\xb5\x91\x38\x56\xa1\x2c\xa2\x6f\x4b\xa8\x57\xf4\x4f\xcb\x32\x02\xce\xfa\x1c\xfe\x59\x01\x22\x92\xfb\xcf\xe9\x35\xe5\x28\x44\x19\x16\x25\x0a\x8a\xf2\xf1\x25\x22\x6c\xa3\x0e\x1c\x97\x13\x44\xf2\xdb\xb2\xeb\x09\x45\xb0\x75\xdd\x8f\x84\xc7\x58\xf5\x12\x39\x88\x54\xa2\x71\xad\xe2\x83\x97\x64\x02\x0f\x67\x9b\x73\x94\xd8\xfb\xfc\x20\x3f\x09\xd3\x7a\xeb\xe8\x95\xa4\x24\x1b\x71\xcf\x02\x8a\xe8\x68\x07\x0f\x31\xae\x34\xfc\xce\xd2\x89\x0d\x60\x31\x1d\x88\x95\x8c\x2e\x3d\xa5\xab\x51\xf9\x8d\xa8\xf7\x2f\x58\xb9\xb7\xbc\x1c\xfc\x2b\xb5\x28\x0e\x97\xbf\xa3\xed\x2f\xce\xbc\x0b\x49\xb9\x92\x42\x02\x8c\xce\xf9\x7e\x9d\xe5\x59\x08\xe7\x25\xff\x77\xb9\x44\x30\xba\x7f\xe8\x7f\xa2\x98\xe7\x5c\x35\xe4\xe4\x96\x95\xcf\x5e\x8c\xd7\x22\x28\x5a\x11\x82\xdb\xcc\x01\x9c\xf1\x4f\x61\x81\x11\x98\x5b\xbd\x70\xf1\x42\x00\xe2\xa5\x1c\x5d\x0e\xcd\x4b\x93\x61\x71\xdd\x48\x1f\xb2\xc5\x30\x0c\x2b\x56\x8b\xdd\x6d\x88\xf1\xe8\x7d\x45\x9a\x5a\x54\xd3\x15\x66\xfb\x6d\xbe\x2a\x5d\xc0\x2b\x80\x20\x75\xf8\x7e\x5a\xd4\x8d\x6b\x4c\x3b\x8b\xda\x23\x55\x96\x03\x09\x96\x54\xfc\x90\xf8\x15\xfd\x72\x95\xb7\xec\xe1\x75\x45\x67\xfc\xb3\xb0\x42\x22\x2e\x8e\xb2\xb4\x96\xa3\x26\xc3\x32\x12\x90\xcc\x7c\xc5\x45\xf9\x96\xad\x05\x4e\xf3\x65\x84\x99\x1a\xf7\x22\x7c\x0c\x73\xb4\xe5\xdd\x91\x9a\xf7\xac\x96\x42\xa8\xa4\x85\x7c\x9d\x96\x2c\x38\xbc\xd9\xed\xf8\x53\x1c\x2a\x62\xd7\xcf\x81\x4a\x07\x1c\x0f\xc6\x81\x8e\xbe\xcb\x42\xed\xbe\xb9\x4a\xb2\x5a\x45\xb6\xbc\xd3\x3a\xb2\x5e\x05\x1f\x59\x1e\xa9\xb2\xe3\x73\x49\x88\x11\xad\x72\xe1\x32\xc2\x2a\xbc\xc8\x68\x98\x20\x24\x9d\x3e\xfc\xf8\xfd\xa7\x8e\x5b\x76\x6e\xa1\x27\x0f\x3f\xfe\xf0\x89\x64\x0d\xfe\xb1\xb0\xb1\xda\xfb\xb6\xbc\xad\x9a\x01\x77\x28\x35\xe9\xa9\x11\x91\xd4\x6f\x39\x6a\x5a\xb3\x64\xd9\xcd\x22\xf1\x64\x19\x97\xaf\x9a\x6d\xe3\xc9\x16\xbf\xc6\x00\x62\xfa\x3c\x2c\x46\x3b\x53\x8a\x41\xb6\x6e\x31\x1e\xe2\x48\xaa\x1e\x2d\x88\x40\x96\x45\xc5\xed\xfc\x4a\xff\xe2\x82\xd1\xf1\x5b\x5c\xe8\x22\xef\x64\x80\x88\xbf\xb3\x0b\x40\xd3\x56\xf4\x10\x0b\xa0\xce\xf6\x9a\x05\xf3\xaa\xba\x3a\x5c\x49\x72\xca\x26\x82\xaa\xa6\xe7\xcf\xcc\x92\xab\x5a\x6e\x41\x71\xdb\xec\x95\x44\xa9\x9c\xcf\x69\xcb\xc7\xcf\x8d\xe6\xbb\xf6\x26\xb7\x8c\xd4\x47\x3e\xab\xcd\x17\x3b\xbc\x70\x81\x16\x22\x62\x9f\xb7\x65\x26\xa7\x00\x2a\x2a\x38\x47\x8f\x34\xba\x79\x38\x9b\xa8\x01\xf7\x87\x26\x75\xe2\x94\xe5\x33\x3c\xa5\x79\xca\x95\x2d\x7a\x17\xde\x7b\xad\xbf\xd0\x66\x69\x97\x93\xf6\x48\x4a\x7e\x67\x6e\x33\xf9\x71\x63\x5e\x22\x27\x55\x03\x61\xe0\x99\x47\x50\x3c\xc3\xe9\x82\xd2\x79\x6e\x37\x06\x28\x44\xe7\xe1\xc4\xc3\x2e\xea\x9b\xb4\xa9\xa1\xcc\x54\x9e\xd1\x38\xe9\x57\x8a\x5f\xe3\x21\xb0\x64\x9b\xeb\xdb\x5a\x1e\xcd\x88\x56\x6d\xb9\x21\xad\x54\x02\x51\x85\x81\x07\x6a\x05\x2d\xbb\x86\x58\xa8\xff\x41\x97\x3e\x6a\x7e\x24\x6c\x66\xb1\x63\x1b\x16\x31\x9e\x61\xc1\x8c\x6d\x19\x96\xfa\x49\x9f\xd3\x8c\x59\x90\xa7\xdf\xda\x0d\xc5\xef\xe2\x49\x96\x72\x4a\xc8\xff\xc3\x02\x77\xb5\x46\x9b\xca\x84\xee\xb5\x45\x34\xae\x39\xfe\xca\xc9\x89\x8b\x90\x7c\x74\x47\xcd\x3d\xde\xed\x1e\x17\xc5\xa3\x99\x59\x07\x44\xef\xa6\x3d\x72\xf6\x2a\xdb\x1d\x51\x7f\xd0\x52\xc0\x41\xe6\x71\xc7\x00\xd1\x3a\x7d\xe0\x38\x93\x92\x6d\xbf\xb4\xf0\x78\x03\x79\x07\x6b\xd7\x35\xe9\xbe\x6c\xf6\x84\x76\xe7\x54\x63\x0f\x90\x44\xde\x85\x33\x19\x9d\xf8\x06\x45\xa3\x00\xe1\x7b\x87\x67\x78\xd0\x6d\xcb\x1e\x85\xdd\x11\x94\xc8\xe5\xde\xa3\x08\x09\x78\x9e\x47\xaa\xe3\x7b\x33\x80\x73\x5c\xcf\xf7\xfd\xef\xc9\xf9\xe6\x3a\x9f\x23\x81\x2f\xf1\xbe\xb9\x77\x06\x2c\x6f\x21\xf4\x8d\x80\x0e\x49\xf9\xa2\xe0\x7e\x10\xf0\x73\x16\xfe\xf6\x60\x9b\xa6\xf9\x2c\x77\xa4\x96\x48\xfa\x92\x75\xd5\x5b\x21\x5f\xc1\x7e\x15\x97\x2e\xf3\xae\x5a\x85\x0f\x24\xfc\xc2\x19\x33\x43\x2c\x78\x8d\xdb\xec\x1f\xa2\x4c\x9d\xe3\x57\xfa\xbf\x98\x30\x1c\x88\x46\x63\x5c\xda\x9d\xb8\x2b\x8e\xc9\x70\xa5\x7a\x1a\x1e\x74\xa5\x87\xf7\xd3\xbe\xf4\x60\x99\x8d\xb1\x79\xa7\x9f\x8b\xaa\x38\x56\xc5\xe8\x63\xec\x3f\x61\x7f\xb5\x3b\x7d\x9e\x04\x58\xcc\x05\x56\xc4\xf1\x9f\xf7\x10\x8a\x1b\x8a\x0b\x2d\x63\xab\x50\x93\x97\x16\x9d\x36\x05\x73\x3e\x54\x1f\x91\x16\xbb\x5c\xf8\x84\xa0\x96\x03\x67\x44\xa5\x71\xf4\x1a\x67\xc5\xa1\x70\x44\xd7\x72\xa1\xdc\x5f\x26\x41\x64\x3b\x1c\xee\x7c\x97\xc6\xfa\xc5\x5b\x1b\x88\x4b\xe5\x10\xbf\x4e\x5c\x56\x1a\x5f\x27\xb1\x16\xe2\x7b\xcd\xdd\x5d\x2c\x3e\xd0\x19\x7b\xd9\xdc\x31\x9a\xbf\x50\x25\xc1\x1a\x36\x54\x94\x05\xe4\x33\x0a\x4d\x02\xee\x03\x8f\xcf\x08\xd0\x90\x72\x49\xfc\x49\x0e\x84\xa4\x5a\x1e\x85\xf6\x49\x14\x29\xdc\x60\xea\x72\x5e\xe6\xab\xcf\x6e\x44\xcc\xfe\xca\xb6\x47\x50\xdd\x14\xed\x7c\xa8\xbf\x82\xfa\xf1\x74\xff\xfc\x31\x3c\x39\x72\xff\x1e\xb3\x90\x0d\x5e\xdd\x04\x08\xc1\xc1\x16\x1f\x54\xdd\x56\xc5\x40\xe4\xcd\x8b\xb1\x78\xfa\x64\xff\x3c\xae\x4f\x14\x01\xef\xde\xd1\x36\x46\x0b\xc7\xaa\x4b\x85\xcb\x3c\x1c\xb5\x8a\xf0\xc9\x1b\x1f\x15\xdc\xa1\x87\xa3\xbb\x28\x60\x45\x01\xa9\x1b\x3b\xf9\x42\x50\xc9\x14\x27\xe6\x75\xc7\x2b\x2c\xf0\xbc\x3b\x18\xd6\xae\xb2\x80\xb4\x71\xba\x63\x34\x3b\xd3\x94\x9c\x1a\x8d\x7c\x98\x3e\x48\xd3\x0d\xcd\x2a\xb4\xc7\x87\x17\x9f\x62\xa4\x33\xa7\x17\x0e\x94\xcf\x4f\x3d\xc7\x14\xd7\x41\x51\x60\x3e\x67\x41\xf6\xf1\x0a\xa3\xd3\xdc\xa8\xad\xf8\x34\x37\x18\xa0\x88\x9a\x63\xed\x9c\xcd\xb6\xa1\x67\x4e\x41\x2b\x88\xc5\xae\x10\x75\x9b\xe9\x05\x41\x89\x23\x4b\xc7\x61\xaf\x5a\x7a\xd8\x34\xc1\xf5\x14\x39\x62\xc6\x66\x0d\x07\xb2\x88\xe7\x7a\x10\xf9\xa0\x78\x51\x69\x31\x12\x23\xb6\xf9\x4c\x96\xe0\xaa\xc3\x6e\x20\xde\xb2\xad\x68\xd1\x21\x32\xf4\x99\x8b\xcb\xab\x6b\x3c\x20\x40\xbc\x90\x18\xcd\x9a\xe9\x35\xfd\xcb\x86\xec\x41\x0e\x46\xe6\xd7\x26\x38\x46\x64\x9d\x36\xab\x15\x47\x86\x54\xb5\x5e\xd0\x3d\x94\x76\x86\x59\x17\x5b\x89\x12\x09\x63\x6c\x8c\xef\x8a\xfb\x32\xc5\x8b\x12\xcc\x04\xba\x7d\xb9\x22\xa5\x64\x91\xbe\x21\x15\x8d\x9f\x29\x90\x87\x2c\xc0\x30\xef\xf5\x76\xba\x99\xc0\xed\xc8\xa6\xe8\x62\x2a\x20\xdd\x7b\x37\x26\x25\x31\xef\x3d\x47\xa2\x8a\xc9\xcc\x05\xa4\x4e\x94\xdb\x1b\x89\x2a\xe6\x63\x5c\xa8\x72\xf2\x38\x02\x1f\x25\xc9\x9d\x71\x76\xc8\xa2\x01\x8d\x8f\xc1\x69\x38\xae\xd2\xf1\xcc\xf6\x65\xcb\xea\x88\x45\x92\x85\x41\x44\xe3\x31\xc1\xd6\xb4\x71\xbd\x16\xb6\x80\xe5\x83\xe2\x2a\xf7\x1e\x4f\x98\x17\xb3\xce\x67\x11\x0a\xe6\xa2\xdf\xcb\x5d\x47\x96\x74\x84\x2f\x04\xea\x1b\x88\xc8\x0f\x5c\x68\xe2\x88\xf5\x41\x97\xc3\xe2\xf3\x80\x50\xee\x67\x66\x44\x2a\x90\x19\x41\x72\xfe\x36\x81\xf0\x91\x12\x00\xb2\x70\x89\x31\x0b\x53\x70\xaf\x07\xbc\x8a\x28\x51\xf7\x14\x5a\x0c\xaf\x80\x0b\xf9\xde\xb3\x8d\x02\x2a\x8f\x5e\x30\xc2\x0c\xf5\xea\xe3\x53\xbe\xb7\xf7\x9c\xa9\xf7\xe9\x13\x24\x9d\xc1\xa8\x94\xc7\x0f\xa6\x04\x14\xc7\x8f\x61\x34\x84\x3f\x88\xbe\xb6\x5c\xe7\x6d\x61\xf7\x1e\x94\xfa\xf9\x58\x1f\x54\x1e\x86\xb5\xe5\x5b\xd2\xc8\xb5\x09\xda\xad\x04\xf2\x99\x9d\x9c\x44\x28\xfc\xdc\x8f\x19\x21\xcc\xf9\x0b\xd9\x5a\x1c\x31\x44\x04\x3f\xec\x79\x0f\xc8\x86\xb2\x7e\x30\xed\x6f\xff\x74\x75\xf9\xf6\x24\xfd\xfd\xf1\xe1\x70\x78\xcc\xd5\x1f\x0f\xed\x96\x63\x6b\x0a\xbe\x57\xf1\x3f\x2f\xde\x9c\xa4\x65\xbf\xfa\x6e\x41\xda\x3b\xb6\x86\x57\x7b\x35\xe4\x00\x46\x2e\x93\x25\x5b\x76\xff\xfc\x96\xd9\xcb\x05\x3c\x7d\x9c\x26\xbc\x8e\x17\x32\x6d\x5e\x76\x73\x81\x29\x15\x88\x2b\xcc\x6b\x8c\x25\xd9\x4a\xb8\x80\x8b\x84\x2f\x00\x56\x6d\xf9\x3e\x30\x3a\x44\xb9\x41\x7e\xc7\x47\xb6\xc3\xb6\x10\x3a\x35\x8e\x46\xb3\x53\x94\x95\xc5\xcf\xe3\x96\xe0\xfa\xc7\x5b\x1c\xcf\xd2\x3f\xb1\xa1\xc7\x28\x15\x2a\xe0\x22\xa3\x02\x00\x87\xb4\x84\x1d\x96\xea\x65\xe2\x72\x5c\xe0\x0f\x61\xce\xcb\x1e\xd1\x87\x73\xb4\x21\x23\x77\x63\xf3\xab\x69\x1b\x95\xe4\x1a\x35\xd6\x0a\xf7\x96\x48\x82\x88\x9a\x47\x7b\x80\xe5\xd2\x61\xbc\x0f\xc6\x22\x49\x37\x99\x67\xf7\xba\xc9\x26\x1c\x5f\x01\xbf\xb4\xcf\x54\x83\x98\x68\x74\x41\x0f\xaa\xd9\x4d\x7a\x90\xb8\xa4\x4c\x67\x69\xd7\x02\x10\xab\x74\xee\xf2\x62\x11\x64\x54\x03\x06\x12\x93\x0c\x23\xa4\xdb\x92\x9a\x97\x85\x3b\x9c\x85\x59\x14\x8e\x76\xc5\x20\x08\x42\xe3\xc3\x5b\x3b\xe8\x9c\x84\xe0\x85\x6a\x86\xb4\x6a\x21\x26\x12\x0a\x33\x2a\x1c\x3f\x12\x35\x2a\x66\xcb\x42\x5e\xa1\x3b\x93\x54\x88\xad\xfd\xb6\xb9\xb3\x28\xc5\x73\xfc\xd2\xf0\xff\x70\x66\x1e\x4c\x27\xe5\x21\x03\x0d\xbe\xc9\xe2\xe6\xfe\x1a\x5c\x04\x57\x35\xa0\xbe\x4b\x05\x86\x43\x18\x42\x55\x2f\xf2\xca\xcc\x0c\x6f\x26\xd0\xcd\x41\x8d\x43\xf2\xce\x5d\x0f\x47\x42\xf2\xe2\xaa\x61\x58\x5e\x50\xf5\x2b\xc2\xf2\x62\x24\x4d\x83\xee\xfc\x54\xbf\x22\xee\x6e\x6e\xd2\x81\x03\x42\xc9\x78\x0e\xf1\x33\x15\xe6\x1c\x11\x45\x38\x37\xef\x89\x08\xdd\x0e\x62\x1b\x94\x1d\x3c\x38\x23\x83\xef\x6b\x6c\xcc\xb9\x91\x78\x94\x04\xc8\xfd\x92\x5b\xa2\xa8\x6e\x6e\x16\xcb\xb6\x39\x74\x1c\xf7\x87\xa7\x9e\xf8\x68\x92\x7f\xa7\x57\xf8\x2d\x20\xec\x72\x05\x51\x48\x42\x32\xe5\x28\x8d\x32\x25\x21\x99\x2c\xda\x26\x4f\xed\x9c\x53\x09\x5e\xb7\xe1\x97\xaf\x38\x5c\x5f\x4a\x16\x52\x85\xd8\xf9\x21\xe3\x14\xe2\x15\xe1\x22\x61\x53\x1c\x95\xae\x38\x47\xc1\x38\x69\x08\xb7\xe8\x27\xf6\xad\xda\x05\x0a\xe8\x61\x3e\x10\x0a\x84\x65\x70\x04\x46\xc4\x50\x41\xd1\xf2\x20\x61\x1c\x15\x41\x18\x2e\x3d\x84\x22\x08\x9b\xfe\x97\xd7\x6f\xe5\x27\x0e\x47\xf5\x3a\x09\x4e\x47\x5f\x70\x98\x8a\x1d\xb9\x2e\xe6\x8e\x5e\xad\x4c\x8e\xb0\xc5\x3e\xb5\x17\x34\xf1\xcb\x41\x14\x6d\x7e\x03\x5f\x25\xff\x77\xb9\xa4\xcc\xf9\x6a\xef\xda\xf2\xf1\xb8\x1a\x21\x47\x50\x7d\x85\x84\xcb\x57\x5f\x23\xff\x73\x79\x39\xfb\x15\x03\x1c\x3e\x2c\x3c\x46\xec\x00\x97\xe8\xee\x21\x09\xda\x8a\x0d\x70\x25\xd0\x51\x87\xa0\x0e\xff\x42\x02\x68\x07\xaf\x51\x1a\x44\x9f\xaf\x5d\xf4\x61\xbe\x96\x33\x1b\x5f\x06\xd5\xde\xae\xb4\x45\x75\xfc\x33\x09\xe6\x52\xf0\x07\xf4\x54\x8e\xf7\xde\x56\xe1\xb9\x3f\x65\xf2\x81\x3f\x6e\x25\x75\x9b\xc5\x78\x21\xdc\xd9\x91\xe2\x2c\xc5\x6f\x07\x65\x9a\x0a\x93\x4b\xb6\x2b\x02\x65\x45\x08\x28\x14\x2b\x17\x79\xfb\x99\x1f\x80\xc2\x69\x96\x35\x70\x68\xf5\x1a\x12\xff\x0f\x57\x4c\x1f\x1e\x7b\x27\xa9\x49\x87\xf1\x79\x2b\x6a\xc3\x66\x32\x66\xea\x2a\xb0\x76\x25\x57\xde\xde\x48\x4a\x5e\x0c\x1d\x53\xc6\x34\x0c\x97\xca\x1e\x8f\xd7\x2d\x80\x77\x88\xfe\x4b\xf9\x7f\xff\xf7\xff\x21\xf6\xb4\x6f\x48\x5a\x22\x40\x5c\xef\x26\xfb\x75\xb7\x68\x23\xff\x4c\xdc\x63\xf0\xe8\x60\x20\x82\xfe\x54\x63\xae\x29\x35\xa1\x51\x7e\x43\xca\xe8\xfb\x8a\x7d\x54\x31\x91\xc3\xda\xf1\x64\x0e\xff\xf8\xb8\x0d\x23\xaa\x4c\x65\x84\xbb\x1b\x69\x8b\x8b\x45\x93\x1b\x47\x4a\x74\xf3\x22\x25\xf9\x48\x36\xf5\x27\x7f\x83\xde\x2d\x44\x74\x7b\x1e\x26\x8e\x87\x31\x84\xbd\x64\xf2\x9b\x3e\x98\x29\x26\xa3\x3c\xd7\x81\x23\x29\x8b\x29\x94\x1b\xad\x72\xdf\xc1\x35\x12\x76\xf4\xa8\xb3\x4b\x0f\xfa\x92\x0b\xae\x15\xcc\xdc\x3c\x09\x6f\x53\x90\xc5\xa8\x87\x12\x72\x53\x57\x8f\x63\xa2\xf7\x73\x11\x2f\x63\xfe\x1f\x53\x03\x8b\x44\xcf\x09\x38\x86\x83\x13\x7c\x99\x9a\x5f\x25\x65\xf2\x13\x0f\xef\x6b\x64\xd0\xbe\x46\x06\x1e\x0a\x40\x94\x0a\xff\x4f\x70\x3d\x53\x9d\x14\x9c\xab\x29\xcd\x1f\x5d\x01\x6d\xa3\xe7\xae\x7c\x24\x0f\xae\x86\x47\xef\x4b\x71\xe3\x40\xd4\xcc\x11\xd1\xe4\xc1\x00\xac\x0c\x72\xef\x83\x8e\xe2\x21\x1f\x6d\xe1\xb5\xd3\xfb\x45\xdc\x16\x71\x39\x3d\xf1\x56\x92\xc1\x75\x75\x7e\xd7\xa5\xe6\x97\xda\x0c\xcb\xae\x9b\x60\xcb\x6c\xe4\xfc\xc8\x57\xe3\xf5\xca\x97\xb4\x79\x7e\x16\x78\x8e\x94\xa9\xba\x2e\x50\x12\x50\xc7\x67\xa7\x5b\x32\x10\xb6\x91\x31\x83\x86\x58\x95\xfb\xf9\x48\x48\xe1\xf4\x69\x87\x3f\x1e\x54\x38\x6d\xe3\xfe\xb0\xc2\x7f\xf6\xe8\x62\xfe\xda\xa6\x2b\x9e\xde\xdf\x74\x45\x73\x17\x39\xff\x0d\x07\x09\x44\x52\x3a\x8c\xc9\xde\x3e\x7a\x92\xa0\x75\x9c\x23\xfa\xf8\x93\x1a\x7f\xfc\x3c\x21\x7a\xc8\xe0\x2b\xb4\xbd\x78\xc6\x81\xa2\x17\x8d\xca\x21\x84\x1d\x56\x71\x80\xfb\x31\xeb\xcd\x2b\xae\x11\xcf\x18\xdb\x78\x93\x78\x76\xcc\xf4\xde\x2a\x71\x74\x7b\x38\x4c\xe7\x9e\xf2\xf1\xe0\xe6\xc5\x91\xb8\x76\x71\xe7\x7d\x39\xb8\xfd\x88\x7f\xf8\xbe\x28\xf7\xf1\x28\x99\xd7\xb8\x47\x6f\xc3\x41\xde\x5b\x23\x14\xb3\xf1\x19\xcc\xbf\x25\xf2\x7d\xde\x07\xcb\x36\xe0\xc1\x5c\x31\x10\xca\x86\x3f\xef\x50\x60\x1b\xc2\xf0\x25\x46\x86\x67\xb8\x1e\x73\x03\xde\xb2\xed\xc7\x83\xe6\x88\x07\xe1\xde\x0b\xbd\xd5\x6d\x77\xa6\x46\xf9\x9e\xf5\x21\xd0\x62\x2f\x71\xeb\x1e\x48\x7e\x43\xdd\x99\x2d\x19\xd7\x8f\xfb\x88\xe3\xfd\x2d\xd7\xb9\xc1\x2f\x90\x70\xf9\x84\xb5\x55\x89\x78\xec\x33\x49\xb9\x12\xb5\xb5\xf4\x71\x12\x3f\x08\x79\x78\xe2\x19\x3c\xa1\x3e\x57\xa5\x9e\xe2\x9a\x43\x5a\x69\x51\xee\xf6\xbc\x84\xb9\xbb\x89\xcd\xcb\x24\x80\xaa\x6e\xea\xa8\xa0\x21\xff\x34\x6e\x4b\x1e\xe1\x53\xe9\xf9\xb6\x39\x24\x22\x3a\x17\xfc\x56\x42\x2a\x0f\x25\x68\x4e\x3c\x24\xc9\x63\x1d\x45\x2f\x28\x61\x0e\xa4\xa6\xcb\x7d\xa4\x69\xf9\x28\x46\x1b\x92\xc3\x45\x67\xdb\xbb\x27\xac\x80\x42\x6b\x40\x58\x2d\xeb\xf5\x21\x71\x2c\xb4\x55\x28\xb0\xbe\x5b\xd1\x44\xa3\x7e\x43\x88\xaf\xe9\x98\xc7\x39\xe9\xee\xc4\xfc\x5b\xb8\x06\xcb\xa1\xb7\xc2\x0f\x77\x36\x0e\x79\x27\xd4\x8d\xc3\x3d\x42\xeb\xc7\x11\x42\x7c\xcd\x38\xb8\x97\x27\x88\x08\xe2\x45\xbc\x6f\x3c\x64\x1c\xea\xad\xde\xf0\xf4\xa4\x1b\x0f\xd1\x07\x39\x5f\x07\xf2\x1a\x27\x90\xc5\x48\xff\x60\xf7\xe6\x54\x70\x4a\x89\x1c\x84\xcd\xa8\x08\x72\x50\x3c\x7b\xb9\xeb\xcb\x5b\x9c\x57\x1a\x35\x1d\x68\x70\x04\xec\xc1\xe6\xa4\x90\x8e\xcb\xab\x74\xd0\xb1\x2e\x54\xaf\x93\xc2\x2f\x0b\x5e\x81\xb3\x6b\x59\xa2\xdf\x85\x22\x03\x0a\x9e\xad\x64\x21\x8f\x40\xb9\x3d\xce\xac\x2e\xe8\x75\xda\x98\x63\xd5\x80\x72\x2c\x7a\x0a\x67\xbc\x33\xd4\xce\x02\x67\x2b\x33\xe5\x13\xd3\x59\xe5\xb4\xd5\xa0\x76\xf9\x5d\x74\x00\xcc\xd7\xd1\xd8\x22\x8b\x76\xcd\x71\x89\x3d\x1d\x8a\x97\xd5\xf2\xb2\x92\x23\x98\xa3\x4e\x99\x45\xb8\xd5\xa7\x04\xe2\xc9\x6e\xdd\xe6\xec\x0b\xb7\xb5\x66\x66\x11\x90\x02\x1a\xfc\xc9\xcd\xd2\xbd\x52\xed\xb9\x01\x4e\xd8\xa8\xa1\x47\xf7\x31\x85\x3f\x30\x00\xb0\x8d\xfb\x47\x00\xb6\x20\xef\x43\xd1\x30\x02\x16\x70\xdf\x40\xf4\x79\xe9\xaf\x1f\x08\xf8\xc6\x57\x0e\xe4\xc4\x46\xa1\xaf\x92\x14\xc5\xec\xfe\xbf\x6f\x7c\x23\x73\x07\xc4\x19\x3d\x7b\x33\x22\xf8\xe8\x53\x1f\x8e\xe8\x83\x58\x08\x6b\x16\x07\x60\x1a\x9b\xa1\xe2\xcc\x37\x55\xd3\x12\xc2\x94\xad\xfb\x30\x7e\x23\xbe\x80\xc2\x11\x05\x7d\x7b\xa7\x2a\x09\x4f\x2e\xbe\xff\xe2\x6f\xf7\x8b\x11\x86\xb3\x4c\x79\x0a\xe9\x23\xd0\xfe\xe9\xc8\x37\x7b\xe4\xe9\x73\x39\x9e\xee\xa2\xef\xc7\x4c\x5f\xa5\xb9\xf7\x45\xa0\xf8\x25\xa4\xf1\x93\x58\x9d\xdc\x60\x5c\x9b\x2e\x67\xaf\x4b\x27\x3e\x78\xe3\xea\x8e\x70\xb0\xc3\x83\xfa\x2b\x7e\x0c\xa2\xa9\x2b\x39\xf7\xbf\x90\x14\xbf\x07\xc2\xae\x18\xf5\xc3\xf0\xc5\x5a\x1f\x61\xec\x67\x07\xe7\x22\xfb\x98\x54\x11\x90\x74\x50\x1e\xbc\x50\x83\x78\xcb\xd6\xde\xdc\xf1\x2d\x60\x24\x70\x61\x0e\xc1\xc8\x74\x1c\x68\x74\xe8\xe6\x7a\xcc\xf8\xa0\x2e\xd5\x63\x4a\xf7\x21\x10\x66\x12\xfc\x0c\x43\xc1\xcf\x30\xc8\x5b\xf3\x27\x41\x46\x84\xf3\xb0\x60\xef\x2e\xbc\x47\xd9\xb1\xe0\xf3\xf9\xb8\xec\x13\x67\xf1\x0d\x9f\x28\x23\x5f\x4d\x7a\x31\x07\x76\x98\x27\xb1\x74\x61\x0e\x3b\x13\xf9\xc0\x2e\x6a\x3d\xbe\x07\x1e\x16\xc9\xe3\x4e\x51\x96\xbe\x67\x1d\xcf\x44\x7c\xaa\x61\xde\xb6\x59\xf3\xc3\x54\x70\x42\xc6\xd3\x53\xdd\x39\x6e\xd3\x42\xfa\xa2\x26\x10\x14\x1e\xe6\xe0\x5c\xab\xcf\xbb\xb8\x36\xb6\x60\x98\xa1\xf7\x82\x27\x80\x64\x53\xe7\xab\x0d\xe6\xbf\x98\x23\x24\x33\x8d\x1d\x31\xe9\x97\x6c\x66\x20\xe5\xcd\xf1\xd4\x5e\x18\x9f\x85\xe1\x4f\x99\xe0\x41\xf7\xa0\x94\x43\x64\xeb\x4c\xaf\xca\x37\x7a\x33\x90\xe3\x65\xdd\xb5\xf8\xf4\x12\x3b\xae\xbb\xb7\x52\x20\xc5\xf8\x96\x82\x5e\xc5\xd7\x9a\xa2\x71\xdc\x23\xce\x7c\xcb\x2a\x18\x35\x72\x21\xf7\xb6\x5a\xe7\xf5\x04\xd6\x6e\x2c\xb4\xc1\x11\xc9\x57\xb5\x31\x1a\xa5\x87\x70\xcd\xfc\xf1\xa1\xc2\x7b\xc6\xd7\x95\xe0\x91\x8b\x06\x19\xb1\x35\x03\xf9\x42\x0b\xa3\x21\xce\x36\xf1\x07\x06\xc9\x1f\x41\x58\xaf\xdc\xa3\xf1\xe7\xfc\xde\x48\xbb\xe4\x8b\x51\x2c\xc3\x4a\xf9\x98\x47\x53\xc7\x1e\xb8\xf9\xea\xf7\x8d\x0c\x03\x62\x9b\x7b\xae\xf9\x63\x63\x6b\xcb\xee\xae\x5e\x65\x78\xc1\xbf\xdb\xe8\x41\xe5\xfb\x52\x7c\xe5\x8f\x16\x94\xf7\x24\xd7\xdb\xa9\x25\x8e\xf4\xba\x47\xf2\x20\xd3\xb7\x2b\xca\xc7\x17\x04\x48\xc4\x3d\x06\x4f\x44\x6d\x53\xe0\x48\x3d\xeb\xbf\xbb\xb7\xa3\xd1\x5c\x02\x86\x18\xe0\xb6\xc5\x50\xfa\xf2\xab\x66\x10\x1c\x92\x87\xd3\x60\x32\xd0\xdd\x0f\x5e\x11\xbe\x3c\xc8\x88\xfb\x96\x2f\xe4\xf2\x0b\x32\xfc\x30\xb3\x86\xfb\xa8\x40\xb3\x2f\x34\xa8\xf3\xe8\xc8\x84\xc2\x7e\xef\x59\xa1\x47\xd1\x28\xbe\x3c\xc7\x50\x08\xc9\xb7\x67\x86\x3d\x3e\x00\xe6\x3e\x3a\xf3\x01\xbf\x43\xa6\x20\x8f\x41\x65\xeb\xa6\x6d\x68\x79\xe0\x22\xb6\x07\xa2\x5e\x5a\x5e\x37\x53\x01\x2e\xf0\xbb\x6c\xd0\xfb\x7a\x56\xe7\x02\xd9\xa4\x3f\xf0\xe5\x3d\x5f\xab\x6f\xfa\x7c\x6b\x75\xd8\x03\xb9\x52\xbf\xf5\x35\x17\x58\xad\x53\x2b\x08\x6a\x6a\x9d\x66\xc9\xf1\x9e\xa8\xa2\xc0\x97\x9a\x13\xc0\xe2\x98\x83\x2f\x94\x11\xba\x86\x7d\xc6\x53\xc5\x5d\x24\xc9\x4e\xdf\x20\x3b\xbd\xe6\xec\x69\x0f\x36\x2a\x57\x6d\x34\xa8\x63\xf5\x6e\xda\x72\x52\xe7\x05\x5f\x1e\x1d\xc3\x1b\xe6\x36\x65\xbe\x9f\xe0\xed\x15\x65\x4e\xb0\x06\xc8\x29\x02\x00\x7b\x1c\x0b\x61\xad\xaa\x80\x61\x15\xd6\x78\x4d\x59\xc7\xa0\x11\x01\x30\x86\xc7\xa7\xb9\x8e\xd4\x50\x99\x3d\x1e\x95\x9e\xd9\x4c\x46\xd5\x2c\xff\x8e\x0f\x59\x29\xf4\xa5\xfc\x0c\xa0\x96\x4d\xd3\xf3\xf7\x02\xf6\xac\x6e\xad\x3e\x3b\x34\xfd\x62\xf9\xac\x6e\xad\x3e\x4f\x30\x25\xd0\x53\x54\x09\xf4\x71\x5c\xed\xf8\xe6\x3a\xf5\xd5\x0e\xab\x7e\xa0\x0d\xea\x3a\xbc\xb8\xe2\x5b\xf0\x57\xae\x60\xd2\xe3\xa4\x66\x48\xa1\xe3\xca\x73\x3d\xaf\x48\x89\x28\x67\xbb\x3e\xe3\x92\x7b\xfb\x9e\xd4\x0d\x3b\x9f\x54\x9f\xdb\x29\x78\xff\x90\x9d\xce\xcb\x61\xf5\xb9\xec\x39\x66\x7c\x93\xe1\x84\x39\x6c\xeb\x9d\x81\xa5\xbf\x00\x2c\x7d\x45\x60\xe9\xb5\x7c\x8d\x6a\xda\x2a\x09\x9d\x5d\xd9\xe7\x88\x14\x08\x5a\x79\x79\x46\x2b\xc0\xd9\x45\x3e\x57\x0b\xde\x99\x4c\xb5\x6c\xdd\x85\xac\xf8\x04\x2d\xe8\x77\xb2\x44\xf1\x3e\x75\x20\x73\xad\xb1\x19\x20\xd2\x6f\x75\xb7\x92\xc7\xfd\xd8\x30\xa0\x31\xbc\x97\x9c\x00\x16\x6f\x30\x11\xac\xf1\x48\x1c\x8a\xe3\x31\x26\x02\xbf\x8e\x19\xa5\x70\x30\x0f\x2c\x8c\x8b\xe0\xde\xe5\x43\x37\x0b\xb8\xcf\x65\x33\x1d\x85\xb4\xee\x0d\xd0\x7a\x1e\xc3\x69\xa7\x9d\xa0\x52\xd8\x8a\x58\x6a\x12\x5b\xac\xef\x1f\xd9\x97\x32\x11\x5a\x6c\xaf\x1f\xe1\x7b\x99\x02\xfb\xc5\xcf\xbf\x28\x98\x68\xaf\xd0\x59\x25\xc7\xf4\x2d\x3c\x6d\x6c\x69\x2b\x83\x27\x4a\x7d\x7a\x9a\x17\x7d\x8b\x46\xf3\xec\xee\x94\xbb\xab\xaa\xf9\xe1\xa5\x4b\x6d\x11\x8a\xa9\x85\xac\xc4\xcf\xfc\x6b\xe4\x8a\x00\xca\x0b\x10\x72\x92\xb4\x0d\x2b\xc3\x68\x70\x1f\x4a\x8c\x1a\x78\x03\x7b\x22\x98\xdb\xd1\x67\x42\xed\x85\x9c\xaf\x7c\x29\xd4\xcf\x26\xc0\x31\x0e\xba\x63\xec\x56\x5d\x16\xa2\x73\xfc\xc0\x4e\x3e\x42\x2f\x83\x2b\x86\x23\x50\x9c\x7c\x87\x1f\xb6\x09\x8e\x1f\x0d\xe5\x38\xe8\xc3\x07\xb5\x34\x90\x6f\xd2\x42\x50\x27\xf8\x0a\x19\x87\x43\xcb\x5d\xa3\x39\x14\x79\xef\xa0\x61\xc8\xbd\xb8\x0a\xe8\x7b\x8f\x96\x62\x5c\xcc\x3f\x04\xfd\xff\xe5\x2d\xec\x70\x00\xfe\x45\xec\x23\xfd\xff\xbb\xbc\x88\x3d\xf6\xcc\xba\x27\xb1\xf1\xe4\xef\x02\x97\x03\xe2\x7d\x1c\x1d\x5c\x45\xfb\x19\x35\xc2\x7d\x8a\x8c\xf8\x28\x1f\x59\xde\xed\x6b\x1e\x5f\xf1\xda\x60\x8b\x8e\xfb\x0b\xee\x73\x44\xbd\x49\x8d\xe9\xc3\x4d\xf1\x10\x24\x67\x7a\x5a\x24\xf9\xea\x8d\x48\xf5\xf1\x91\x52\xbd\x47\x0b\xb8\x24\xf4\x88\xc6\xf2\x26\x1f\xdc\xe5\x4d\xad\x5b\x7b\x34\xe4\x78\x73\x47\xa3\x96\x4a\x72\xd3\xd7\xae\x8a\xcc\x32\x13\x05\x0c\xa6\x22\x39\xe1\x1d\x7f\xc9\x91\x27\x60\xf1\x4d\x04\x49\x69\xfe\x34\x0a\x23\x18\xb1\x36\x13\x77\x1d\x34\x0a\xa0\x59\x5e\x15\x8c\x65\x1c\x9f\x2a\xb9\xe1\xf7\x75\x25\x47\x3f\x55\x8a\xaf\x94\x4a\xce\x12\xf1\x43\x88\x72\x63\xe7\xd3\xf9\x5b\xeb\xb6\xef\xdb\x6a\x39\xf4\xf3\x8f\x1b\xbb\xd2\x09\xb4\x1d\xfb\x33\xed\xa6\x5f\x80\xed\x06\x6b\xf8\x6a\xf8\x52\xbb\xa3\x0f\xcf\x8c\xe0\xe4\x25\x83\xd4\xbd\x31\xf2\x02\xbf\xb5\x70\xc7\x3c\x32\xeb\xf8\x8b\xd8\x17\xc4\x62\x8a\xf4\xea\x54\x4b\xf0\x41\x52\xf5\x8e\xe0\xbb\xa5\x47\x57\x81\x21\x27\x1f\x38\xf5\x45\x8a\x57\x14\x05\xc8\xd5\x47\x92\x7b\x79\xbf\x56\x1e\x08\xbe\x7e\x73\x45\xc9\x55\x7b\x27\x07\x46\xba\x2e\x7c\x62\xa0\x9f\x01\xb5\xaf\x46\x9c\x5e\xb8\x0f\xad\x06\x2b\xad\x4d\xf2\x47\x1c\xb3\xe0\xfb\xe4\xda\x38\x8d\xbf\xd1\x4f\x94\xa9\xc3\x54\x69\x95\x9f\xd8\xe7\xe0\xdf\x7d\x67\xed\x04\x57\x91\x47\x64\xaf\x8f\x29\xeb\x0a\x4c\x84\x51\xec\xb9\x85\xa0\x71\x42\x29\xa4\xf7\x50\x56\x46\x1d\x7c\xe5\xd3\xc7\x61\x5b\x81\x50\xb9\x67\xac\xb3\x77\x0d\xe3\xa7\xb0\x42\xc0\x4c\xf6\x9f\xbd\x78\x17\x35\xec\x0e\x99\xa6\x15\xa2\xa7\xef\xa2\x4a\xf3\x61\x00\xf7\x3d\x7a\x27\x4e\x01\x33\xc6\x9d\xcf\x5b\x8d\xf1\xd8\xf5\xad\xb0\xf7\x7d\xe3\x39\x00\xb9\x95\xa3\xb5\x00\xc2\xbe\x4e\x1f\x00\xcd\x7f\x63\x58\x01\xc6\x3c\x45\xb3\x47\x9f\x9e\x8d\xbe\x39\x6b\x35\xed\x13\x7a\xcd\x20\xd6\x36\x3e\x71\xa9\x77\x8c\xde\x23\x93\x15\x2d\x03\x9f\xfb\xce\x73\x50\xa4\x1d\x71\x51\xd8\x09\x24\x14\x7f\xf4\xf2\xde\x6f\x52\x1b\x82\xd9\xe5\xbe\xca\xe4\x1d\xa4\xa0\x0e\x1c\xfe\x2b\x84\xf1\x4e\x2b\xd1\xb8\xa7\x35\x68\xdc\x47\xc0\xe5\x10\xd8\xf8\xf9\x15\x7e\x09\x0b\x71\x23\xe6\xd0\x32\xa5\x22\x9b\xb0\xe4\x8d\xbf\x08\x12\xe2\xa0\x58\x7a\xc2\x70\xdf\x09\x9d\x25\x0d\xff\x9d\xf5\xb0\x5b\xfe\x42\x7a\x20\x08\x7c\x6e\x28\xd2\x7c\x6e\xf8\x21\x76\x9f\x3b\xf7\x65\xf4\x69\xa9\x3f\x99\xff\x96\x63\x53\x1e\xec\xe5\x63\xf1\xdd\x03\x7c\x0e\xf7\xbb\xa0\x46\xf8\x55\xf5\x38\x77\xdc\x86\x7e\xc4\x75\xd4\x84\x31\xcb\x68\xcb\x54\xab\x23\x88\x71\xdf\x72\x8c\xde\xc8\x06\xfa\xe5\x9b\xc0\x2a\x56\xa2\x8f\x38\x8f\x89\xd9\x33\x5b\x47\xca\x21\xa3\xb5\x81\x71\x48\x7b\xf4\x75\x63\xfd\xa2\x9e\xc6\xb6\xbb\xef\x47\xfe\x82\x6c\x3f\xc2\xd9\x4f\x17\x8f\xbf\x59\xcc\x41\xe7\x56\x25\xfe\xc8\xf4\xf4\xeb\xd2\x0a\x66\x0f\xf5\xc3\x23\x30\x79\xd3\x1f\xae\x00\x7d\xd2\xdf\x18\x83\x5c\x71\xe2\xf8\xee\x6c\xab\xee\x6f\xb9\x06\x85\x28\xef\xf4\x0d\xfc\xdd\x6e\xdc\xd1\x87\xee\xa2\x4a\xf2\x7d\x3d\xf7\x31\xad\x69\x65\xbb\xad\xe7\x16\xd1\x6e\x1f\xcd\x2e\xe2\x6f\x43\x39\x50\xe3\xf2\x05\x3c\x7e\x4e\x8e\x7e\xa6\x6f\xf0\xd3\xad\x95\x5c\x2b\x82\x35\xcc\xc1\xcc\xcf\xec\xa2\x11\x8c\x62\xca\x71\xab\xf4\xb9\xda\xb3\x58\xd6\x2f\x00\xf1\xe2\x50\x0e\x64\xf3\x9f\x91\x13\x22\x39\xe4\xcc\x17\xf8\x3d\x3f\x40\x85\x9d\x6a\x81\x71\xb9\x11\x14\xd1\x79\x13\x10\xd3\xab\x5f\xdf\x5c\x8e\x20\x67\x36\xa8\x96\xcc\x6c\xe8\xf8\x0b\xe7\xe1\xf6\x95\xa3\x1c\x37\x05\x1c\xdf\xcc\xcf\x40\x20\x8f\x4e\x40\x68\xc8\x9f\xcc\x82\x78\x66\x1b\x52\x6a\x2b\xf2\xbd\xec\x18\xa5\x33\xf9\x1d\x03\x05\x6f\x6c\x0a\x94\x3d\xb1\x39\xe9\xb5\x0e\xfb\xac\xe5\x18\xc2\xf3\x03\x09\x11\x08\xf8\x81\x84\xda\xce\x0e\xcf\xa0\xc9\x64\xbd\xad\x0a\x55\x1c\x05\xfe\x9d\x66\x19\xa8\x81\xf8\x96\x0d\x42\x9b\x76\xc3\x24\xc2\xad\x9c\xf6\x76\x86\x5f\xd1\xd2\xe9\x46\xe4\xfd\x22\xb0\x7e\x1b\xf2\x17\x02\xa4\x86\x01\xaf\x57\x0e\x31\xe6\x50\x7a\x79\xe6\x5f\x1f\x85\xef\x69\x34\x99\x6d\x75\x53\x3a\x4f\x95\xce\xe6\x0d\xe5\x45\xc0\x1b\xfe\xc6\xa2\x5d\x88\x94\xaf\x2c\xf2\xc7\xcd\x47\x93\x08\x9b\xd2\x99\x4c\x5a\xda\x57\xf0\x1e\x06\x78\x91\x8c\x79\x8c\x1b\xb4\xf2\xed\x00\x5c\x19\xf7\x98\xdd\xda\x57\x8a\x82\x1d\xe2\x3f\x19\xe2\xe5\xb3\xeb\x9d\xe5\xf2\x6c\xcf\x0c\xa5\x92\x8b\x61\x20\xb9\x2c\x5a\x60\xb1\x6a\xe5\x6d\x15\xfe\x77\xcd\xe7\xb8\xae\x24\xdc\x7b\x96\xd7\x11\xed\x15\x83\x5c\xb6\xd1\xa4\x87\xf7\xd1\x05\x82\x26\x2b\x98\x79\xf3\x2c\x06\x28\x7f\x2f\x57\x43\x70\xac\xf0\xab\xfc\x56\x3f\x9e\x6f\xa6\xb1\xe0\xc0\xa1\xc6\xab\x6c\xef\x24\x27\x80\x99\x7b\x60\xc9\x86\x8e\x10\x47\x0b\x75\x3c\xda\xbf\xeb\x1e\xe6\x0f\x43\x59\xc4\x85\x45\x39\xc8\xcf\x6c\x2b\x77\x2f\x46\x41\x18\x06\x1b\x6a\x21\x61\x5e\xf6\x7d\xa4\xa7\xb9\xb2\x99\x81\x5b\x51\x83\xef\xef\xef\x17\x01\x2c\x54\xf1\xe0\xfd\x77\x19\x83\x94\x7f\x29\xc4\x2a\xf9\x28\x31\x0d\x9f\x46\x4f\x04\x9b\xfb\x31\x08\xa3\x89\xee\xff\x3c\x94\x77\xec\xe4\x92\x94\x55\xe2\x08\x22\x79\x87\x2f\x80\x7d\xd2\xb5\xab\x27\x0f\xc3\xd7\xef\xd8\x23\xe4\x01\xf8\xb5\x3c\x2e\xfc\x51\x9f\xc6\xd3\x71\xc0\xa9\x41\x6d\xfe\x4d\x5f\xd5\x93\xdf\x61\xbb\xe2\xf6\x90\xa6\xbb\xff\xe4\x5a\xff\x5b\xa2\xc1\x16\xbe\x09\xcd\xc0\xe7\x02\xfe\x48\x43\xee\x0d\x0f\x9d\x9f\xfd\x1e\xe1\x05\x57\xa6\x19\x21\x72\x77\x7a\xfc\x0d\x09\x45\x15\x6e\x5e\xf3\x4d\x1c\x8f\x27\xfa\x71\x3f\xa2\xa2\xa6\x26\x88\xd2\x67\xe1\x7e\xc8\xfc\x5b\xa3\xb8\x84\x27\x05\x55\xa7\xef\x62\xc9\x07\x3a\x7e\x70\xef\x8c\x26\x1f\xfb\xa6\xd9\x7e\x4a\xf2\x35\xcf\x89\xfe\x26\x78\xc8\x57\xe2\x75\x11\x93\x46\xc9\x44\x7e\x72\xea\x7b\x6e\xf8\x7b\xb2\x52\x89\x81\xe0\x71\xb6\xef\x77\xc8\x90\x4f\x3c\x23\x63\x83\x0c\x7e\x01\x1a\x3f\x0b\xfc\x2c\xf2\x3b\xfc\x3a\xe0\xd7\xa1\x2c\x3f\x4b\x65\x70\x18\xaa\x4e\x56\xdf\x06\x39\x77\xf8\xcd\xaf\x8d\xe1\xfb\xfa\xe8\x47\xdf\x1e\xb4\x1f\x78\x12\x4e\xbe\x28\x8d\x7c\xfb\x41\xf9\xf2\xad\x95\x67\xfe\xb3\x2b\x0f\xf9\x7c\xec\x4e\xb3\x90\xa2\x1c\xee\x5e\xb3\x24\xf9\x10\x6c\x82\x6c\x59\x6d\x50\xd2\x94\xcb\xe3\xd0\x4c\x49\x52\x5e\x9b\x1f\x32\x3f\x2e\x4d\x21\xd7\x8f\x4a\x53\xc9\xff\x0b\x00\x00\xff\xff\x24\xf9\x51\x8c\x17\x8e\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xeb\x92\xdc\x46\xae\xe6\x7f\x3e\x05\xad\x0d\xad\xec\x88\x56\x29\x6c\xc7\x5e\xc2\x21\xc9\xdb\xee\xb6\x2e\x73\xd4\x6a\x1d\x75\x6b\x66\x67\x15\x0a\x0e\xab\xc8\xae\xe2\xa8\x8a\x2c\xf3\xd2\xe5\x9e\x5f\xfb\x1a\xfb\x7a\xfb\x24\x0b\x7c\x00\xf2\x42\xb2\x5a\xf2\x9c\x13\x7b\xfe\x54\x25\x33\x91\x37\x24\x12\x09\x20\x91\x99\xf9\x7e\x9f\x15\x65\xb7\x4a\x9f\xa5\xa7\xe9\x3e\xaf\xea\x6d\xd9\x75\x69\x57\x6e\x6f\x1e\x6f\x9a\xae\x2f\x8b\xf4\x65\xd5\xd3\x77\x7b\x5b\xad\xca\x24\xd9\x34\xbb\x92\x40\x5f\xd1\x5f\x52\xe4\xdd\x66\xd9\xe4\x6d\x41\x11\xe7\x16\x4e\xca\xdf\xf7\xdb\xa6\x65\xa0\x5f\x25\x94\x6c\xca\xed\x9e\xf3\xd0\x5f\xd2\x55\xeb\x3a\xab\x6a\xfa\xbc\xa2\x50\xfa\xba\x4e\xba\x66\x55\xe5\xdb\x2c\x48\x40\x84\xa5\xff\x94\xfe\x50\x17\xe9\x55\x5f\xee\xd3\xa7\xdd\x2e\xdf\x6e\x9f\xe7\x1d\xb2\xf4\x65\x9a\xaf\x56\xcd\x50\xf7\x4f\x9f\x48\x82\x14\xde\x0c\xbd\x95\x7e\x39\xf4\x12\x37\xec\x2d\xea\xc3\x3e\x69\xcb\x75\x45\x1d\x6b\x29\xea\xbd\x06\x93\x43\xb9\xec\xaa\x9e\x1b\xfd\x17\x09\x25\xb7\x65\xdb\x55\x0d\xb7\xe7\xcf\x12\x4a\xf6\xf9\x9a\x01\xde\xd1\x5f\xd2\x97\xbb\xfd\x36\x47\x86\x6b\x0d\x26\xdb\xbc\x5e\x0f\x02\xf3\x46\x83\x49\x32\x10\xe6\xea\x1c\x38\xfb\xa0\xc1\xa4\xdc\xe5\xd5\x96\xf1\xf3\x98\x03\x54\x6e\xd7\x1d\x1a\x60\xf1\x9d\x06\xa9\x8d\x59\x7f\xb7\x2f\xd1\xc4\xc7\xd7\x14\x4a\x56\xf9\xbe\x5f\x6d\x72\x8a\x39\x93\x50\x42\x40\xfb\x86\xda\xda\xb4\x77\x80\xb3\x8f\xa4\x69\xd7\x79\x5d\xfd\x23\xef\xa5\xfd\x97\xc1\x67\xb2\xab\xda\xb6\xe1\xae\x5f\x20\x90\xd4\xe5\x21\xe3\x72\x28\xe6\x6d\x79\x08\x4b\xe1\x94\x5d\xb5\x6e\xa5\x97\x9c\x78\x81\x2f\x2e\x85\xd3\x6e\x9a\xf6\xb3\x26\xbc\xe0\xe0\x28\x2b\x35\x42\x53\xe3\xfa\xf3\x9a\xf0\xa2\xa9\x17\xf8\x88\x00\xba\x24\x2f\x76\x55\x9d\xed\xf3\xba\x64\x1c\x9d\xf2\x17\xe1\x85\xbe\x12\x1d\xee\xac\x2b\xfb\xbe\xaa\xd7\x1d\x27\x4b\x54\x7a\xa5\x51\x49\x90\xe6\xe2\xb8\x3d\x5d\x76\x53\x96\x85\xb4\xa8\x4b\x5f\x50\x38\xd9\x0f\xdb\x2d\xf5\xfd\xb7\xa1\xec\x7a\x86\x7f\x47\xdf\xd4\x0b\xf9\x4e\xaa\xae\xa3\x00\x45\xbf\x46\x20\xa1\x01\xa8\x57\x68\xd2\x19\x02\x49\xf2\xb1\x2b\xf3\x76\xb5\xf9\x94\xc8\x3f\x6a\xe4\xc0\x62\xb1\x38\x3a\x34\x4c\x0e\x4a\x0a\x52\x83\x55\x90\xac\x9a\x82\x3f\xce\xe8\x8f\x8a\xae\xea\xae\x27\x92\xfe\x94\x68\x80\xc1\x24\x24\x68\xec\xab\x7e\x5b\xfa\x48\xcc\x8f\x8e\xc7\x21\x7d\x51\xb5\x5d\xff\xb8\xaf\x88\xe4\xde\x0f\x75\xc2\xfd\x23\x72\xce\x8a\xa5\xcd\xf2\x97\x0d\x61\x07\xd1\x2d\xf5\xef\xe2\xee\xea\x5f\xdf\x9c\xa4\xef\x68\xaa\xaf\xdb\x92\xc2\x29\x95\x41\x7f\x94\xe7\xc7\x45\x42\xb9\xac\xa6\xf3\xbc\xcf\x97\x79\x57\x7a\xb4\x72\xa2\xd0\xa8\x4b\x03\xa5\x32\xdb\x00\x8b\xe8\xfa\xa8\xbf\x73\x74\x4e\x65\xe8\xec\x70\x65\xbc\xe5\x29\x42\xf1\xcc\x35\x90\xf9\xdd\xb6\xe4\x78\x2a\x2a\x7d\xfd\xf6\xed\xe5\xf9\x2f\x69\x59\xaf\xab\xba\x4c\x0f\x55\xbf\x49\x87\xfe\xe6\xbf\x67\xeb\xb2\x2e\x5b\x62\x22\xab\x2a\xa5\x99\xd1\x12\x11\xa4\x44\x9e\xd2\xb9\x45\xd2\x75\xdb\x6c\x27\xe8\xbd\xba\x7a\x93\x5e\x30\x8a\xf7\x79\xbf\x41\x43\xfa\x4d\xd2\xfd\xb6\x65\x14\xb9\x0a\xaf\x37\x65\x7a\x53\x51\xaf\x01\xd4\xdc\x18\x3e\xd2\x42\xdb\xb8\x48\xca\xb6\xcd\x68\xde\xf7\x77\x99\x66\xd6\xf2\xc6\x90\x52\x04\x91\x4e\xdd\xf4\xe9\xb2\x4c\x91\x67\x91\x24\xd6\x60\xc3\xee\xe9\x7e\xbf\xad\x56\x32\x63\x5f\x4a\x9a\x47\x34\xb3\x68\xc5\x52\x08\x07\x44\x59\x5a\x80\x2e\xe2\x7f\x77\xcd\xd0\xa6\x11\x1b\x40\xfe\x4d\x49\x7c\x79\x33\xd0\x94\xcb\x89\xa7\x6e\x9b\xa1\xf8\x06\x94\x6a\xad\xf7\x84\x9a\xbe\x6f\xa8\xc1\xc0\x8e\x03\xf0\x55\x9c\x12\xc5\xf1\xaa\xd0\x96\xbb\x86\xb8\x83\x23\xf6\x8a\x08\xea\x50\x51\x22\xf5\xb4\xcb\x6f\x69\xbe\xf5\x4d\xda\x6f\xaa\x2e\x2d\x88\xd8\x56\x5c\x30\x4d\x8d\x81\xf8\xb1\x90\x05\x11\xa8\x90\x86\xc5\xc5\x63\x00\xa8\xdd\x40\xd4\xb4\xa1\xc2\x98\xdb\xf3\xd2\x44\x45\xce\xb5\x13\x5d\xa2\x72\x40\xdf\x44\xb9\x0d\xf1\x56\xe6\x7e\xe7\x08\xe8\x77\x58\x3e\xb5\x2a\xbf\xb9\xa1\x56\x75\x44\x15\xaf\xd2\xd5\xb6\x21\x92\xfa\xf0\xfe\x0d\x65\xde\xf4\xfd\x3e\xdb\x37\x2d\xc8\xf8\xfa\xfa\x1d\x4d\x8f\xb6\xf7\xb1\x01\xae\x19\xa6\x1e\x76\x4b\xfa\x3a\x6c\x2a\x62\x02\x79\x30\x40\x40\xc5\x96\x17\x98\x3a\x6d\xea\x05\xc6\x6a\x68\xb7\xa3\x61\xa4\x2a\x2d\xe5\x48\xf3\xb8\x09\x4f\xf8\xe7\xca\xb7\x12\xdd\xed\x68\x15\x3e\x60\x50\xa9\xab\x25\x56\x13\xa2\xad\x66\xcf\xe5\x06\xc4\x75\xa9\x11\x9e\xa2\xb0\x02\xb9\x74\x59\x87\x28\x15\x6b\x7c\xc0\x4b\x77\xd4\x61\x9d\xcd\x57\x17\x84\x06\x4c\x69\xc4\xde\xb4\xcd\x8e\x62\x5f\xd0\x9f\x8f\xf0\xcd\xbf\xe0\xf2\x00\x93\x17\x05\xb1\x99\xee\x24\x7d\xff\xe2\x2c\xfd\x2f\x3f\xfe\xf0\xc3\x22\x7d\xdd\xf3\x84\x60\x1a\xf9\x3b\x8f\x2d\x05\x65\x41\x74\xa0\x34\x73\x7b\x1a\xfe\x07\x4c\xe0\x0f\xd2\xa7\x48\xfd\x1f\xe5\xef\x39\xad\xb3\xe5\x62\xd5\xec\x9e\xf3\xe4\xde\xe5\xfd\x22\xe1\x14\xa2\x1a\x25\xa7\xab\xb2\x2e\x28\xa0\xcb\xaa\xa6\x05\x5c\x47\xd3\x83\x45\x56\x56\xff\x6c\xd5\xd4\x37\x55\xcb\x1d\xfa\xb5\xce\x97\x84\x13\x93\x0b\x88\x1d\x23\xc5\xd6\x2e\x42\x1a\x4d\xe4\xea\xe6\xce\x83\xa2\xab\x6f\x39\x52\x07\x34\x61\x59\x89\x0a\x55\x91\xc9\x61\xf9\x0a\xd1\x18\xb7\x4b\xea\x5e\x6b\xf8\xee\x3c\xc2\x9b\x9b\x9b\x2d\x31\x36\x63\x56\x5a\xc3\xa5\xc4\x0a\xdf\x0a\x41\x88\x18\xf7\x90\x6c\xce\xab\x0e\x90\x67\xe7\x6f\xd3\xf2\x96\xa8\x8d\xc8\x61\xdf\x36\xc5\xb0\x02\x85\x31\xec\x49\xca\xcb\x04\xe1\x97\x38\xc3\x4a\xd8\x5b\x30\x57\xb9\x69\xcc\x10\x56\x04\x44\x53\xb4\x90\xf2\x32\x41\x50\x6b\x82\x84\x55\x73\xc5\xc2\x61\x98\x36\x9b\x61\xd2\x3a\x8c\x52\x37\xce\x4b\xc3\x5d\x6f\xef\x52\xac\xfa\xa0\x8b\x55\x5b\x06\xb2\x5d\xb7\x48\x74\xad\x32\x09\x31\xbb\xad\x48\xa8\x08\x86\x0a\xa9\x26\x2e\x32\x7b\xf8\x33\x03\xb0\x98\xd6\xcd\xe6\x75\x0d\xbb\xe4\x8a\x39\x85\xfa\x4e\x95\x73\xfb\x3a\x34\x01\x35\xb0\xb8\x47\xc4\x78\x5b\x81\xd3\x28\xb2\xd0\x56\xc2\x18\xaa\xa6\xaa\xba\xb2\x44\x09\x94\xff\x09\x95\x89\x3c\x0b\x15\x61\x54\x14\xb1\x75\xf7\xaf\xcd\x90\x16\x4d\xca\x0b\x01\xd8\x19\xe5\xb6\xae\xd6\xda\x7d\xed\x73\xda\x56\xeb\x0d\xf1\x95\xe6\x70\x22\x48\x3b\x6c\x9a\x92\x69\xe7\xf5\xf9\xb3\xef\xa5\x1d\x6b\x66\x6e\x2e\x13\xb3\xc5\x7c\xe8\x1b\xa6\x53\x1d\x42\x69\x82\x5b\x5e\x00\x39\x11\x96\x04\x68\x2c\x9e\x9a\x00\x36\x5d\xad\x75\x9e\x84\x69\x3a\x41\x3c\x8c\xe4\x1e\x89\xb8\x2a\xc5\x64\xeb\x06\x92\x99\x49\x2d\xcc\xaa\x49\x94\xee\xfa\x6c\x5d\xf5\xd9\x0d\x4f\x58\x2e\xf3\x05\xe7\xe5\x95\x83\x52\xd2\x47\x94\xf4\x28\xa5\x59\x4f\x92\x63\xf1\x53\xfa\xf0\x56\x97\xeb\x1f\x79\x26\x66\xf9\x2d\xc1\x62\x30\x80\xe0\x96\x28\x5c\xa4\x05\x13\xdf\x8b\x86\xe8\x9c\x71\xde\x0d\x7b\x70\x74\x5d\xa1\x4f\xd2\xbd\x00\x16\xcd\xa1\xde\x36\x79\x01\x96\x43\xb3\xab\x82\xf2\xb1\xac\xea\x9c\x56\x17\x2b\x05\xac\xec\x21\x51\xc3\xdb\xcb\x6b\x00\xae\x9b\xe5\x50\x6d\x0b\x03\x58\x50\x0f\x6f\xf3\x6d\x55\xb0\x9c\xa5\xe3\x1e\xca\x34\x16\x55\x49\x5b\x56\x4d\xcb\xcb\x21\x7a\x63\x19\x8f\xac\xc3\x2d\xaf\x6f\x88\xa6\xbc\x0a\x8b\x7c\x6e\xc9\x64\x34\xd0\xc0\x43\x00\xe5\x05\x15\x14\x53\x75\xf5\xa3\x1e\x2d\x5d\x0d\x54\x17\x0d\x3a\x47\x53\xc6\x2e\x7d\xfc\x9c\x7e\x13\x5e\x9e\x85\xef\xad\xa7\x88\xe7\xc4\x54\x12\x07\x99\xa5\x51\x53\x23\xf2\x76\xd4\x65\xc4\x1b\xf4\x35\x6c\xaf\x91\x40\x37\x08\xbd\xb2\xa6\xb5\xa5\x61\x2d\xbf\xa1\xc0\x23\x9a\xc0\xeb\x2d\x06\x21\x87\xf4\x42\x62\x5c\x43\x78\x63\x02\x39\x91\xe9\x72\x43\x5d\x63\xde\xd9\xe7\x9f\xa9\x6d\x79\x4b\x42\x58\xf2\x91\xb5\xd1\x4f\xc9\x20\x02\x50\xb3\x2d\x9c\xb0\x09\x9a\x6e\xda\xb1\x8a\xe5\x81\x1c\xbd\x76\x24\x45\xae\x36\x99\xd3\x65\x19\x29\x7d\xf9\x3b\xd6\x3c\x24\x79\xd5\x96\x89\x9d\x93\x92\xdd\x1d\x86\x8b\x3b\x71\x71\xe7\x47\x8b\xc4\x1f\x9a\x22\x24\xa2\x2f\x1b\xc6\xda\x6d\xe9\xa0\xce\xc2\xd8\x38\x03\x95\x45\x82\x9a\x16\x15\x6b\x42\x94\x24\xea\x9a\xa6\x8a\xca\x46\xaa\xc8\x47\xd5\xb1\x3f\x25\x56\x41\x54\x64\xf2\x91\x98\x01\xe9\x25\xc2\x5e\x32\xd6\xc6\x6c\x70\xa8\x29\xc2\x73\x58\x31\x53\x7e\xe0\xd7\xc1\x4d\xb9\xe7\x25\x73\xd7\x61\x54\xb7\x04\x59\xdc\xa9\xec\xe5\xc6\xf7\x67\xe1\xb4\x34\xe0\xc4\x9f\xbe\x31\xed\xfd\x0f\x16\xf1\x4b\x45\x23\x89\xfc\xf1\xca\xc1\xeb\x35\x4d\xb5\x3d\xb0\x4f\x93\xe4\xee\x24\x8d\xd6\xa0\x4d\xde\x11\xf7\xa5\x05\x4e\xb3\x15\x0b\xd3\x0e\x78\xd4\xf2\x95\x90\x3c\x34\x79\x10\xa9\xe4\x6c\xda\xf1\x92\xc6\x2d\x14\x06\xa5\xb5\xb8\x05\x1f\xcb\x79\xb8\xea\xcf\xd4\x49\x08\xdb\x95\x2c\xf3\x65\x3b\xd1\xd0\xe5\x2b\xbd\x28\x13\x12\x4c\xd6\x34\x1f\x8d\xde\x9e\xb1\x4a\xb6\x86\x84\xaa\xe4\xc6\x00\x65\x1f\x72\x50\x85\xb0\x98\x9f\xcd\x62\x41\x13\xfb\x00\x7d\x95\xa6\xe6\x04\xfd\xb4\xd6\x50\xf2\xc2\x38\xb2\x2c\xb8\x90\x4f\x3a\x9a\xec\x1e\x89\xa7\x29\x8d\x7e\x1a\x42\xa9\x9c\xe8\xbb\xc5\x19\x78\xd2\x3f\x5d\x3e\x7f\xd8\x3d\x7d\xb2\x7c\xee\x58\xe3\x6a\x53\xae\x3e\x8b\x2e\x51\xd5\xcb\xe6\x77\x28\x5c\x34\xf0\x8c\xe3\x9a\xa7\xc8\xc3\x22\xdd\x50\x2a\x64\x72\x9a\xca\x94\x8d\x10\xcf\xa9\xd1\xa0\x51\x63\x78\xc6\x2f\xcc\xf6\xe3\x16\x07\x23\x24\xca\x8d\x4a\xa4\x65\xa4\xe6\x63\xee\x70\x54\x40\xb7\xa7\x1c\xcb\x94\x0b\x36\xef\x49\x17\xfd\xdd\x56\xbb\xaa\x9f\x90\x0e\xf3\x91\x5c\x49\x50\xf5\x7c\xc3\x25\xca\x02\x36\xd0\x16\xe2\xc6\x54\x0c\xad\x9b\x46\x4e\x87\x9c\xd4\x9b\x1f\x53\x22\xa1\x81\x56\x21\xee\x13\x35\x93\xd8\x71\xce\x0b\x2f\x29\x08\x79\x97\x0d\xb5\xa2\xb5\x2c\x8c\x98\x5e\x55\x58\x24\xb8\x5e\x23\xf9\x00\xca\x30\xaf\x72\x6e\xfa\xad\xc3\xf8\x77\x24\x14\xdf\xb8\x6c\xcc\xb9\xb9\x41\x15\xcb\x64\xf9\xec\xe0\x11\x67\xab\x4b\x51\xaf\x80\x01\x86\xe3\x81\x26\xe5\xc0\x8f\x1e\x69\x18\x9f\x29\x06\x03\xb2\x1c\xfa\xbe\x61\x99\x7b\xcb\x54\x23\x79\xac\xd5\x67\x00\x84\x1a\xe1\xcb\xc3\x80\x84\x78\x92\xb1\x29\x4d\x06\xce\xbc\x15\x4e\xb5\x95\x51\xef\x74\xa9\x73\x60\x85\xa8\xeb\x79\x7d\x67\xa4\x4c\x04\xc1\xad\xe0\x0a\xfb\xf9\xb6\x7c\xdb\x96\xdf\xf9\xd6\xb8\x39\x83\x1c\xd6\x22\xc9\x1e\xcc\xa7\xf7\x48\x05\x95\xb8\x59\x67\x2b\x97\x1a\x59\x3c\x7d\xb4\x31\x7a\x91\xce\x33\x83\x18\x2c\x89\x8d\x05\x10\x4d\xbd\x40\xee\xc5\xa8\x2e\xaf\xee\x4c\x31\xd8\xc7\x4d\xf6\x0b\x50\xdf\x34\x59\xb7\x11\xd5\xd2\x9a\x97\x6e\xcb\x7a\x1d\x99\x09\x60\x83\x05\xd1\xfd\x57\x5e\xe6\x48\x80\xcf\xb7\x9f\x92\x3b\xd8\xa3\xfe\x4a\x1c\xbe\x86\xbd\xae\x49\x28\x41\x94\x91\x0b\x04\x08\x94\x35\xa3\x4f\x09\x2f\x81\x6f\x47\x62\x1d\x2f\x11\x1a\x17\xc8\x17\x48\xfa\x35\x92\xd6\x6c\x08\x93\x77\x33\x22\xe0\xfb\xd2\xdb\x25\x11\x72\x5d\x24\x25\xfa\xda\x54\x1d\xd2\xa7\x3f\x97\x5a\xf8\x2b\x52\x9b\xbb\x0f\x50\x7b\x45\x87\x65\x85\xf7\x5d\x7e\xc7\x42\x97\x44\xeb\x07\x12\xae\xcb\x7c\xa7\xad\xe4\xa0\x14\x71\x4a\xcb\x99\x46\x72\x90\x56\xb9\xc0\xaa\x91\x40\xfc\xb0\x2e\x88\x2c\xa2\xcb\xbe\x13\xff\x4b\x35\x7a\xfe\x6d\x62\x8a\xf9\x5b\x92\x6f\xf7\x9b\x1c\xeb\x7f\x00\x06\xab\x03\x01\x61\xe0\x53\x80\x80\x16\x86\x5d\xd9\x56\x2b\x0e\x72\x86\x6f\x1f\x67\xdf\xc1\xe0\x44\x13\x85\x04\xc1\xb8\xb0\x82\x26\xc9\x3f\x55\x20\x87\x59\x48\x0c\xcb\xed\xaa\x7f\x58\x2f\xa2\xe2\x38\x9e\x78\x0e\x41\x40\x24\xf3\x50\x0e\x08\x0b\x23\x8b\x67\x7d\xca\x7c\xa1\x67\x11\x30\x2a\x7a\x97\xff\xfe\xa5\x8c\xbb\x66\x26\x9f\xb0\x02\x9f\xc9\x26\xbc\x76\x31\x66\x07\x04\xcf\xf6\x8d\xa3\xd0\x34\xf4\x0c\x52\x7f\xa6\x55\xad\x76\x60\x1f\xe4\x3b\xc5\xf7\x4f\x66\x02\xa7\x25\x44\x05\xe8\xd4\x19\xc3\x69\x71\x2e\x98\x6f\x42\x10\x5e\xf8\xe9\x16\x0a\xc7\x8e\x9c\x59\x8c\x34\x95\xdf\x31\x0e\x92\x28\x45\x4f\x20\x92\x5a\x78\xbb\x7d\xc6\x6b\x64\xc6\x42\x67\x1d\x8a\x96\x6e\xf5\xb4\xf5\x05\x10\x62\xf7\xcd\xa6\xf9\x46\x13\xee\x68\x76\x12\x05\x66\x72\x5f\x4e\x0d\x79\x47\xf2\xf7\x34\x65\x66\x0a\x70\x33\xe9\x68\x46\x19\x4c\x64\xa2\x9e\x17\x13\x5e\x30\xcd\xc8\x60\xa4\xf6\x6c\xb7\xe5\x9a\x4d\x4d\x56\x71\x54\x9b\x92\x10\x2d\x06\x02\x16\x12\x90\xc7\xb0\x1b\xac\x70\x5c\x43\x21\xde\x8d\x51\xac\x3e\x51\xab\x49\x1c\xa7\x20\xe7\x0c\x94\x28\x6d\x86\xae\xe4\x3b\xd6\x17\xba\x81\x59\x33\xeb\x16\x22\x9d\xc4\xa3\xc1\x0b\x2f\x8a\x2a\x51\xc5\xf1\xe2\x89\x16\x59\xe1\xfa\x52\xf9\x00\xfb\x83\x45\x87\xea\xf6\xb4\x60\x2d\xdc\x01\x1d\x2b\xd6\x29\x84\xe5\xef\x15\xcc\x76\x2f\x2b\x36\x07\x41\x25\x74\x9a\x30\xd2\x16\xc9\x96\x98\x01\xab\x1e\xd2\x2b\x91\x63\x9b\x5b\xd6\xdc\xb8\x3e\x4e\x95\x7c\x62\xc6\xd3\x4e\xf1\x38\xab\x72\x49\xca\x5c\x73\x28\x8b\x13\x5a\xe2\x39\x07\xb5\x13\x6c\x23\xdf\x1e\xf2\xbb\x0e\x36\x12\xe3\x38\x6c\xb2\x94\xec\xcc\x4e\x48\x00\x58\xa3\x55\xa1\x7d\x9a\x66\x9c\x61\xa2\x23\xde\xc9\x8b\x87\x5b\xa6\x0f\x50\x0f\xc1\x2d\xd4\xea\x42\x5a\x37\x2f\x7b\x58\x62\x75\xad\x61\xd5\x96\x15\x41\x96\xf1\x25\x39\x28\x08\x5b\x1e\xca\xf9\x67\xf2\x9e\xb0\x78\x44\xd5\xb0\xb0\x42\xfc\x58\x70\x4d\xf2\x1f\x61\x16\x4d\x0a\x6c\x05\x03\x95\xff\x58\xe4\xe2\x8a\x70\xc8\x7a\x96\x57\x9f\x79\x6d\xa2\x51\x31\xc3\xae\xc4\x43\xf9\x4d\xba\x9e\xa6\x00\x63\xda\x36\xdb\xfe\x2a\xf2\x95\xaa\xcc\x9c\x8a\x29\x06\x34\x75\x9b\x6a\x9f\x36\x30\x16\x86\x28\xf4\x64\x1b\x88\x98\x84\x8d\xa2\x84\xdc\xcd\x56\xd3\x36\xaf\xbb\x9b\x12\xe6\xd3\x5d\x7a\xc3\x3b\x41\x0b\xad\x9a\x25\x56\xd9\x74\x3b\x52\xb3\xe8\x30\xa8\x3a\x5c\x2d\x30\x76\xc1\x40\xc5\x55\x13\xcc\x2d\x6a\xd6\x36\x00\xab\xbe\xa4\xce\xda\xc0\x64\x36\x41\x01\xa4\xc6\x68\x93\xc2\x5a\x73\x5b\x86\x88\xb8\xf9\x67\x7b\x1e\x60\x5d\x2d\xc4\x62\x56\x8f\x87\x49\x2a\x85\xb5\x02\x7b\x4c\xcb\xbb\xb8\xf7\x9c\xd5\x51\x00\xef\x78\xdc\x96\x5a\x0b\x4f\x0c\x9e\x2b\xa3\x02\x61\xa5\xf0\xba\x42\xd2\xe7\x50\xf9\x96\xd4\xc4\xd5\x26\x9a\x9d\xd7\x48\x49\x25\x65\x32\x41\x93\x8f\x5c\x35\xa9\xf1\x9b\xbc\x5e\x97\x6c\xea\xa2\x92\x78\xc9\xc3\xb7\x4a\xe8\x12\x49\x0d\x5e\xb7\x12\x66\x03\xb9\x65\x59\xd1\x84\x6c\x76\xf7\xe6\xac\x6a\x33\xd8\x74\xc9\xdf\x1b\x92\x21\x60\xe9\xfd\x13\x85\x58\xfa\xad\x93\x68\x6f\x67\x64\x67\x80\x7a\x50\xf5\x77\xd8\x74\x5a\x92\x0c\x2c\x4a\x1a\xc5\x90\x9a\x0b\xee\x00\xcb\xc5\x0b\x0b\xd3\x78\xe4\xcc\xf4\x78\x6a\x4b\x48\xe1\xc4\x8c\xf4\xc2\xc2\x09\x6b\xc9\xbb\x05\x16\x07\x16\xa6\x61\x9c\x0e\x96\x84\x47\x0f\xbb\x47\x3c\x60\x96\xb6\x08\xe0\xf7\x79\x4f\x6c\xb1\x16\x15\x45\x38\x54\x98\x55\x93\x5d\x11\xe0\x2a\x02\xb6\xc0\x8e\xae\xa0\xe2\x53\x42\xba\x24\xb6\x00\xa9\x6b\x12\x9a\xdd\xbe\x54\x16\xd3\xa9\xcc\xfb\x2f\x14\x54\x8b\x48\xea\xfc\x18\x54\x55\xc5\x36\x9e\x6d\xfa\x74\xf1\x1e\x50\x97\xa8\x09\x28\xb6\xff\x28\x79\x3f\x4b\xcf\x25\x60\x4a\xef\x50\xa1\x4f\x55\x91\x24\x7b\xe0\x3d\x0b\x5a\x2b\x03\xe1\x1a\x2d\xff\x81\x0d\xba\x1d\xaf\xec\x84\x05\x29\x05\x84\x6b\x5b\x02\x90\x02\x78\x0f\x35\x50\xd8\xd8\xb8\x0a\x4d\xae\x0e\xb6\x3b\x48\xdf\xe5\x7c\x0c\x76\x28\x97\x29\x9b\x3b\x89\x70\x48\x2f\xd2\x8e\xee\x72\x52\xa9\x6e\xab\xdc\x59\x66\x68\xb4\x78\xe3\x5d\x57\xd1\x17\xbc\xe9\x8e\x9d\xcc\xa9\x0b\x06\xef\x47\xe8\xd6\xc3\x1b\x0d\x26\xc3\xbe\x60\x9b\x96\xef\xf0\x07\x44\xb8\x0e\xc7\xe9\x81\xb5\x11\x5d\xb7\x6c\x4e\x9a\x11\xf0\x22\x55\x38\x6e\xd9\xdd\xc2\xa6\xcf\x8c\xef\x86\x4e\xa1\x62\x0c\x12\x1a\xf9\x25\x49\x95\x56\x03\x58\x08\xef\x01\x7a\x65\x5f\x0f\x08\xa1\xb5\x32\xdd\x34\x87\x74\x5b\xd5\x9f\x3b\xc5\xaf\xb3\x87\x98\x9e\x9c\x9e\x23\x82\x80\xc5\x52\xc3\x62\x55\x55\x0f\xe5\xcf\x89\x85\xc4\x10\x8f\xe0\xd4\x4f\xa1\x94\x55\x71\xcc\x0c\x74\xff\xe4\x0c\xd1\xe9\x29\xa2\x67\x61\xbd\x9e\xab\x59\xb0\xa3\xcb\xec\x57\x37\x76\x6e\x4a\x16\xb0\xc1\x0e\x5f\x2a\x17\x22\xfc\x34\x4d\xa7\xb6\x47\xcf\x7e\x38\x0e\x86\x0a\x85\xd2\xd1\x72\x10\x3a\x98\xd2\x18\xdb\xa7\x20\x28\x56\x0f\x49\x58\xd2\xf6\x60\x6e\x67\xd5\x4e\x7c\x6d\x3e\x68\xaa\x6c\xd9\x3b\xbd\x02\xc9\x0b\xd2\x94\x47\x9d\x09\x77\x0c\xde\x12\x2e\xa5\xfb\xc6\x47\x2d\xf1\xc4\xc4\x05\x41\x08\x16\xfb\xa8\xb1\x63\xca\xd2\x02\xcc\xf8\xfd\x05\x02\x33\xf2\x09\x37\x52\x84\x37\x3b\xd6\xd2\x6c\x23\xa1\xf0\x4c\xcd\xf8\x2e\x9d\x31\x1b\xa4\xbf\xc5\x96\xd7\xd8\xda\x10\x69\x4a\x5a\xc2\x51\x69\x7a\xd4\xa6\xc9\xdc\xb1\x7c\x07\xea\x5b\xd8\x1d\x23\xf8\x85\x50\x7f\x0e\xcb\xb0\xec\x8a\x0d\x9d\xc8\x93\x5c\x15\xb6\xd4\xa4\x08\x42\x00\x14\x8e\xce\xeb\x19\xa7\xc2\x8d\xd8\x20\x2e\x1e\x42\x0e\x40\x9d\x84\x62\x7d\xb2\xb4\x3d\xec\x90\xb1\xed\x5b\x1a\x74\x5a\x78\x47\x96\xa8\x09\x4b\x8b\xd8\x17\xb8\x57\x83\x0d\x59\xcf\xb5\x48\x83\xd4\xb2\x98\xff\x23\x64\x31\xde\x7a\x59\xb2\x75\xcb\x2a\x55\x66\xed\x52\x85\x65\x27\xd4\x06\xcc\x81\xd2\x99\x27\x0a\x60\x22\x6e\x22\xc0\x42\x10\xb3\x84\x5a\x74\x16\xd9\x79\x61\xb1\xfd\x0f\xb3\xed\x46\x15\x3a\xdb\xae\x6f\xea\x88\x6c\xb8\x8d\xa3\x15\x67\x42\x40\x94\x80\xf5\x57\x87\x3e\x58\x55\x75\xf0\xdd\xe2\xca\xd5\x88\x4c\xcf\x68\xa2\x28\x2c\xc1\x4a\x04\xe0\xb0\x2c\xe0\xc1\xe9\x02\x8e\x3b\x22\xe0\x77\x13\x33\x64\xcc\x5f\x4f\xa1\xc1\x10\x56\x04\x96\xe5\x01\x5e\xd0\x44\xfa\x53\x8d\x68\xc7\x88\x90\x6d\x57\xe7\x87\x72\x27\x3b\x8e\x5e\x24\x3a\x51\xb5\x61\x53\xad\x37\xd4\xaf\x6a\xc7\x5b\x8e\xe0\xda\xb6\xaf\xe5\xb5\x3a\xfe\xa2\x89\xd7\xac\x6b\xb6\xe1\x70\x0d\x0b\x74\xc6\x71\xdb\xa7\x5d\xdf\x36\xf5\xfa\xf9\x79\xc3\xea\x16\x5b\x42\x78\xa9\xf8\xf9\xe9\x13\x8d\x27\x96\xc1\x63\xc8\xfe\x8e\x2f\xab\xfe\xd5\xb0\x7c\xd4\xa5\x6b\x92\x0d\xb0\x80\x3c\xcd\xd3\x4d\x5b\xde\x3c\x7b\xf0\xb0\x7b\xf0\x5c\xf7\x99\xc5\x2b\xe8\x50\x3b\xb4\x3c\x7d\x92\x3f\x67\xe9\xb9\x6b\xb6\x24\xd4\xc6\x59\x9a\xdd\x4e\xc6\x97\xd8\xdf\x4e\x20\xd1\x7e\x6c\x4d\x97\x35\x30\x57\xb6\x8a\x1f\x2a\x70\xe1\x68\xdd\x8f\x8f\x0e\x9b\x89\x49\x91\x7d\x41\x05\x15\x06\xc6\x8e\x5b\xdd\x07\x4c\x93\x6d\x0b\xa9\xcb\x86\x05\x76\x9a\x0d\x03\xc9\xe6\x1a\x6f\xda\x30\xe3\x04\x24\x68\x94\x61\xf9\x29\x2b\xb5\x44\x24\x0d\x8e\xb3\x3a\x65\xe1\xa4\x90\x91\x56\x40\xbf\xcc\x53\xcd\x94\x09\x81\xd1\x1b\x41\x98\x60\x23\x1a\xfe\xc6\x18\x80\xf4\x3e\x98\xfe\x90\x5f\x4e\x91\x81\xe4\x17\x68\xdd\xda\x97\x37\xaa\x63\x23\x81\x16\xaa\x40\x9e\x7e\xdb\xe8\x9e\x44\x6a\x91\x68\x35\x09\xd0\x7d\x19\x91\x3b\x57\x47\x7f\x28\x85\x68\x13\x6a\xfb\x7f\x4b\x0b\x52\xc1\xfd\x74\x32\x81\x54\x27\xd3\xa9\x9f\x0b\x63\x11\x55\x77\xf3\x8e\xce\xa7\x60\x1a\x69\xa9\xce\x4d\x43\xcc\x07\x25\x04\xc1\x65\x55\x17\x32\x6d\x94\xea\xd5\xef\xc1\x91\x3b\x2d\xa6\x35\x03\xc1\xc6\xc7\x01\xfd\x0e\x90\x7f\x15\x95\x1f\xd0\x06\x71\xab\xa1\x0e\xb8\x85\x4c\xc7\xac\x6f\xc4\xd6\xa5\x9d\x7c\x47\xfa\x06\x7c\x9e\x4e\xa5\xc0\x6b\x4e\xee\xd4\xef\x4e\x37\x45\x2d\xcb\x4b\x8d\xc4\x80\x03\x30\x41\x52\xe7\x10\x81\x2f\xaf\x7a\x5a\x29\xba\x5f\xad\xde\x4c\x18\x03\x9a\x7a\xc6\x1f\x36\xb2\x7f\x9d\x9e\xbe\x7b\xbd\x48\x5c\x7d\x56\xe6\xaf\x39\xc9\x4c\xd2\x82\x83\xd3\x7a\x99\x94\xc6\xfc\xc5\xed\x96\x48\x76\x33\xb2\x21\x27\xc8\xd9\xf5\x69\xd2\x1f\xe9\x4b\x9c\x2e\x28\x2e\xbb\xc0\x12\x20\xb5\xa1\x25\x63\xce\xec\x7a\xfa\x0d\x21\xd6\xd9\xa3\x78\x45\xd8\xdf\x31\xaf\x0b\x3c\x55\x72\x41\xd0\x01\xdc\x6a\xe4\x22\x43\x90\xd0\x86\x53\x96\x6f\x5b\x37\x57\xac\xc1\x3a\x5b\xc2\xd8\x80\x12\x40\x86\x7b\x1b\xcf\xa8\xbd\x7e\xa1\x0b\x1b\x2d\x4a\xfa\x68\x7e\xa6\xc2\x46\x65\xff\x95\xdb\x25\x92\x99\xe2\x38\x54\xcd\xa8\xcc\x43\xb9\x65\x4f\x3a\x6d\x90\xdf\x84\x54\x45\x2c\xda\x82\x54\x20\xb7\xf9\xc8\x9e\x8b\x4e\x92\x90\xb1\x0d\xad\x23\x56\x18\x41\x10\x01\x63\xd7\x51\x34\x28\x63\xf7\x67\xa7\x6f\xdf\x5e\x5e\x7b\x2e\xcf\x94\x55\x17\xb4\x16\x7d\xe3\xfc\x6f\x26\xed\x32\x2f\x1c\xb4\x0f\x0e\x59\x11\x84\xf7\x03\xd2\x1c\xc7\xe0\xc2\x89\x6f\xa5\x53\x70\xdd\x60\x36\x37\xdc\x16\xc9\x51\xc4\xed\x2f\x8e\x29\x28\xc9\x47\x5e\x1e\x3f\x25\x66\x63\xbc\xe4\xff\x24\x34\xd3\x06\xa6\x71\x50\xb3\xb7\xa0\x7b\x77\x53\x6a\x40\x53\x4c\xcc\xb6\x60\x7b\x43\x0e\x09\x94\x70\xdf\x80\x91\xde\xa4\xd8\x5d\x3b\x61\x2b\x54\xd3\x82\x06\x19\xb9\x43\x5d\xfd\x36\x60\x7d\x67\xf9\x93\xe4\x15\x76\xeb\x5a\x56\x5b\xe1\xb6\x7f\x76\x1f\x12\xcf\xa1\x91\x2f\x66\x50\x39\x7d\x3d\xed\xf6\xec\xa9\x46\xdc\xb6\x7b\xf6\x60\xa8\x52\x36\x6a\xb0\x67\xc8\x83\xe7\x24\x2d\xf2\x2e\x35\x0d\x1f\x41\x3c\x67\xc3\xc4\x67\xb3\x77\x8d\xbd\xe4\x91\x66\x8e\x94\x9c\x06\x6f\x4a\xc4\xce\xb4\x42\x65\x6b\x31\x58\xf4\x62\xe9\x4a\x83\x5e\x30\x77\x66\xea\xfe\x5c\x86\x98\xd2\x1d\x09\x1d\xd7\x73\xfa\x6b\x2b\x78\x83\x4a\x3c\x1f\x59\x48\x83\xe3\x0a\x2e\xd2\xd7\x7b\x45\xe3\xbd\x62\x85\x6a\xb1\xae\x7a\x92\xe9\xf9\x68\x07\x34\x6d\x9a\x30\xc4\x14\x71\xda\x41\x42\x16\x33\x93\xd7\x60\x91\xb1\xaa\xab\x3e\xe3\x75\x7a\x27\x1e\xec\x54\x6c\xbe\x15\x19\x28\x46\xb4\x6c\x18\xa7\xef\x7f\x3d\x3d\xbf\xf8\x75\xb1\x2b\xcc\xa1\x45\xf1\xa9\x9e\x2c\x01\x46\x8b\xf2\x26\x1f\xb6\x66\x6a\x43\x87\x11\x91\xfe\x82\x08\x3d\xfc\x40\x5a\x11\xe1\xef\x56\x96\x44\x39\x0e\xf1\xda\x62\xbe\x65\x99\xf7\xbb\x23\x06\xa8\xf1\x2e\xce\x1f\xb7\x43\x8d\x4b\xb8\xdf\x1c\xc5\x5b\xfc\x19\x1b\x17\x53\x75\x03\x89\x36\x3f\x13\x3d\x9c\x61\x4e\xf8\xee\x74\x86\x78\xe1\x87\xa9\xc7\x69\xd9\x74\xa3\x3c\x26\x69\xd2\x81\xcb\x6d\x8a\xdf\xc7\xcb\xed\x50\x6a\xb0\xcd\x8b\x6a\x20\xe1\x50\xf0\x68\x34\x6e\x35\xe9\xb0\x5c\xe8\x99\x91\x60\x5c\x14\x62\x01\xef\xe5\xcc\xd4\x00\xde\x37\x67\x11\x5b\x55\x3f\x07\x65\x1b\x01\x70\x47\x35\x97\xb8\xd7\x12\x29\x3e\xaa\x70\x88\x83\xac\x1d\xdb\x4c\x6d\xbb\x3e\x0f\xfd\xcd\x13\x99\x14\x36\xd3\x74\x8a\xdc\xb8\xb9\x06\xcf\x65\x76\x4b\x8d\x27\x19\x8e\xb7\x04\x98\x0a\x9d\x49\x98\x9b\x15\xcc\x8e\xf7\x77\x19\x5b\x6e\xc0\x81\xf7\x77\x09\x5c\x2e\x68\xfd\xca\xb0\x3c\x4a\x24\xf8\xe1\xb6\xda\xcb\xe1\x28\x4a\xa8\x4a\xf1\x9b\x44\xe0\xf2\x5f\x12\x41\x8a\x1b\x21\x0c\x34\x4e\x4c\x71\x02\xf1\xdd\x9f\xc1\x9e\x7a\x16\xcf\xc5\x92\xfc\xec\x41\xb6\xa4\x39\xfa\xf9\x41\x20\xae\xf3\xd9\x2a\x96\xd1\xbf\x21\x41\xea\xa0\xfb\x9d\x1f\x24\x94\xd8\xf7\x5f\xf0\x35\xb0\x1f\x9e\x6c\xae\x72\x20\xd1\x2f\x36\xc8\x26\x7a\xa4\x87\x99\x51\xc2\x02\xa9\xb2\x0d\x12\x46\x43\xce\xf1\xdb\xc0\xbd\x14\x4d\xe3\x59\xfa\xaf\xfc\x95\xbe\xe4\x2f\xed\x0a\x4f\x63\x37\x47\x31\xc2\xa3\x89\x1d\x3a\xa6\x81\xe3\xa8\x77\xa7\x9f\xd3\xe2\xcd\x12\x60\x5f\xdd\x58\x0c\x90\x5d\xa0\x93\xfd\xc0\x5b\xf6\x3c\xee\x56\xdb\x3b\x8a\x81\x3f\x39\x47\xf2\x92\x15\x94\xe0\xac\xf5\x51\x19\x89\x63\x15\xca\x22\xfa\xb6\x84\x78\x45\x7f\x9a\x96\x11\x70\xd6\xe7\xb0\xcf\x0a\x10\x91\xdc\x7f\x4e\xaf\x29\x46\x21\xca\x30\x29\x51\x50\xa4\x8f\x0f\x11\x61\x1a\x75\xe0\xb8\x1c\x20\x92\xdf\x96\x5d\x4f\x28\x82\xae\xeb\x3e\x12\x6e\x63\xd5\x8b\xe7\x20\x42\x89\xfa\xb5\x8a\x0d\x5e\x82\x09\x2c\x9c\x6d\xce\x5e\x62\xef\xf3\x83\x7c\x12\xa6\xf5\xd4\xd1\x2b\x09\x49\x34\xfc\x9e\x05\x14\xde\xd1\x0e\x1e\xcb\xb8\xd2\xf0\x3b\x0b\x27\xd6\x80\xc5\xb4\x21\x96\x32\x3a\xf4\x94\xae\x46\xe9\x37\x22\xde\xbf\x60\xe1\xde\xe2\x72\xf0\xaf\xd4\xbc\x38\x5c\xfc\x8e\xa6\xbf\x18\xf3\x2e\x24\xe4\x52\x0a\x71\x30\x3a\xe7\xf3\x75\x16\x67\x2e\x9c\x97\xfc\xef\x62\x89\x60\x74\xfe\xd0\x7f\xa2\x98\xe7\x58\x55\xe4\xe4\x94\x95\x8f\x5e\x8c\xc7\x22\x48\xaa\x79\x11\x5c\xc2\x88\x4a\xb4\x8f\xf4\x30\x79\x45\xf8\x6f\x33\x97\xff\x8c\x3f\x85\x43\x46\xa5\xb8\xc1\x0d\xc7\x76\x54\x4d\x08\x43\x55\xcd\x82\x49\x75\x21\xa4\xd4\xb8\x9b\x03\x26\xc9\xb3\x8e\x60\x2f\x29\x22\x24\xad\xa8\x60\x96\x99\x46\x25\x43\x8c\x9a\x87\xa7\xa5\x81\x9d\xe5\x21\x48\x6a\xd0\x92\xd5\xc2\xe0\x26\xf0\x18\xdb\x1e\x9f\x34\x14\x63\x84\x4a\x62\xb6\xdf\xe6\xab\xd2\x39\xe8\x02\x08\xab\x24\x9f\xa7\x8b\xaa\x71\x85\x69\x65\x51\x79\x40\x40\x9f\x2f\x29\xf9\x61\x81\xde\xbb\xcc\xdc\x37\x9f\x24\x5d\xb5\x44\x9a\x0c\xec\x15\x6a\x25\x47\x45\x86\x69\xb4\xa0\xf3\x62\x21\x26\xd5\xb7\xac\xdd\x70\x98\x0f\x4f\xcc\xe4\xb8\x97\x02\xc6\x30\x47\x4b\x9e\x8c\xb3\xe6\xbc\x67\x38\x14\x42\x25\x03\xc8\x03\xd3\x94\x05\xbb\x63\x3b\x0e\x75\x8a\x4d\x50\x70\xa9\x39\x50\xa9\x80\xfd\xd7\xd8\x31\xd3\x57\x59\xa8\x9e\x3a\x97\x49\x46\xab\xc8\x96\x77\x9a\x47\xc6\xab\xe0\x2d\xd6\x23\x59\x76\xbc\x8f\x8a\x65\x4f\xb3\x5c\xb8\x88\x30\x0b\x0f\x32\x0a\x26\x08\x09\xa7\x0f\x3f\x7e\xff\xa9\xe3\x92\x9d\x19\xeb\xc9\xc3\x8f\x3f\x7c\xa2\xb5\x11\x7f\xbc\x38\x5a\xee\x7d\x5b\xde\x56\xcd\x80\x33\x9f\x1a\xf4\xd4\x08\xcf\xef\xb7\xec\xe5\xad\x51\x32\xec\xa6\x41\x79\xb2\x8c\xd3\x57\xcd\xb6\xf1\x64\x8b\xaf\x31\x80\xa8\x6a\x0f\x8b\x11\xab\x90\x64\x90\xad\x1b\x8c\x87\xd8\x42\xab\x47\x03\x22\x90\x65\x51\x71\x39\xbf\xd2\x5f\x9c\x30\xda\x2e\x8c\x13\x9d\xa7\xa0\x34\x10\xfe\x82\x76\x60\x69\x5a\x8a\x6e\xba\x01\xd4\xe9\x8a\xb3\x60\x5e\xb5\x50\x03\x31\xad\xf4\x32\x89\x20\x5a\xea\x7e\x39\x2f\x21\x55\x2d\xa7\xb6\xb8\x6c\xb6\xa2\x22\x55\xf6\x13\xb5\xe4\xe3\xfb\x5c\xf3\x55\x7b\x13\x81\xb4\xd4\x7b\x6a\xab\x8e\x1a\x1b\xe8\x70\xe0\x17\x4b\xda\x3e\x6f\xcb\x4c\x76\x2d\x74\x69\xe3\x18\xdd\x82\xe9\xe6\xe1\xac\xa3\x06\xdc\x1f\x9a\xd4\x2d\xff\x2c\x4f\xc0\xb2\x9b\xa7\x9c\xd9\xbc\x8d\xb1\xdb\xa0\xf9\x17\x5a\x2c\xcd\x72\x92\x76\x49\x29\xe9\xcc\xcc\x27\x1f\x37\x66\xd5\x72\xac\x37\x58\xbc\x3c\xf3\x08\x92\x67\x38\x5d\x90\x3a\xcf\xed\xc6\x00\x85\xe7\xf9\x0f\xbb\xa8\x6e\x92\xfe\x86\x32\xd3\xf5\x97\xda\x49\x5f\x29\xbe\xc6\x4d\xd0\x35\x66\x52\xb4\x95\x3c\xea\x11\x8d\xda\x72\x43\x52\xb4\x38\xce\x0a\x03\x0f\xc4\x20\x1a\x76\x75\x09\x51\x7b\x89\x0e\x7d\x54\xfc\x68\xb1\x99\xc5\x8e\x4d\x58\xf8\xa4\x86\x09\x33\xba\x70\x98\xea\x3b\x7d\x4e\x3d\x66\xc1\x23\xfd\xd6\x4e\x54\x7e\x17\x77\xb2\x94\x5d\x4d\xfe\x0f\x13\xdc\x51\x20\x2d\x2a\x13\xba\xd7\x12\x51\xb8\xc6\xf8\x23\x32\x27\xce\xa3\xf3\xd1\x1d\x15\xf7\x78\xb7\x7b\x5c\x14\x8f\x66\x7a\x1d\x10\xbd\xeb\xf6\xc8\x38\xad\x6c\x77\x44\xfd\x41\x49\x01\x07\x99\xc7\x1d\x03\x44\xe3\xf4\x81\xfd\x62\x4a\xd6\x55\xd3\xc2\xe3\x0d\xe4\x1d\x8c\x5d\xd7\xa4\xfb\xb2\xd9\x13\xda\x9d\x11\x90\x2d\x56\xe2\x29\x18\xf6\x64\xb4\x43\x1d\x24\x8d\x1c\x9a\xef\x6d\x9e\xe1\x41\xa7\x2d\x5b\x40\x76\x47\x50\x22\x87\x91\x8f\x22\x24\xe0\x79\x1e\xa9\x8e\xef\xcd\x00\xce\x71\x3d\x5f\xf7\xbf\x27\xe7\x9b\xab\x7c\x8e\x04\xbe\xc4\xfb\xe6\xee\x45\xb0\xb8\x85\xd0\x37\x1c\x50\x24\xe4\x93\x82\xf3\x4c\xc0\xcf\x59\xf8\xed\xc1\x36\x4d\xf3\x59\xce\x74\x2d\x11\xf4\x29\xeb\xaa\xb7\x44\x3e\x32\xfe\x2a\x4e\x5d\xe6\x5d\xb5\x0a\x2f\x74\xf8\x85\x23\x66\x9a\x58\xf0\x18\xb7\xd9\x3f\x44\x98\x3a\xc7\x57\xfa\xbf\x98\x30\x1c\x88\x7a\x8f\x5c\xda\x19\xbe\x2b\xf6\x21\x71\xa9\xba\x7b\x1f\x54\xa5\xce\x06\xd3\xba\x74\x23\x9c\x95\xc7\x79\x23\xa5\xf3\x02\x39\x96\xc5\xe8\x63\x6c\xef\x61\xfb\xba\xdb\x2d\x9f\x38\x84\xcc\x39\x82\xc4\xfe\xaa\xf7\x10\x8a\x6b\x8a\x73\x85\x63\x2d\x56\x83\x97\xe6\x4d\x37\x05\x73\x36\x5f\xef\x41\x17\x9b\x88\x78\x47\xa3\x96\x0d\x72\x78\xd1\xb1\xb7\x1d\x47\xc5\xae\x7b\x44\xd7\x72\x00\xde\x1f\x7e\x81\x27\x3e\x36\x08\xf8\xec\x8f\xd5\x8b\xbb\x41\xe0\x47\xcb\x2e\x89\x9d\x98\xd8\xd4\x1f\x50\x7c\x43\xc4\x56\x9c\xbb\xb3\x63\xbc\x01\x35\xb6\x0a\xba\x6d\x3f\x7f\x00\x4c\x9c\x4b\xac\xa9\x48\x0b\xc8\x67\xe4\x4a\x05\xdc\x07\x16\xaa\x11\xa0\x21\xe5\x92\xf8\x93\x6c\x60\x49\xb6\x3c\x72\x45\x14\xaf\x57\x98\xed\xd4\x44\xbe\xcc\x57\x9f\x5d\x8b\x98\xfd\x95\x6d\x0f\x27\xc0\x29\xda\xd9\x09\x61\x05\xf1\xe3\xe9\xfe\xf9\x63\x58\x9e\xe4\xbe\x00\xf4\x42\x26\x78\x75\x13\x20\x04\x1b\x71\xbc\xb1\x76\x5b\x15\x03\x91\x37\x0f\xc6\xe2\xe9\x93\xfd\xf3\x38\x3f\x51\x04\xac\x91\x47\xcb\x18\x0d\x1c\x8b\x2e\x15\x0e\x1f\xb1\x97\x2d\xdc\x3d\x6f\xbc\x17\x73\x87\x1a\x8e\xce\xa2\x80\x15\x05\xa4\x6e\xec\xe4\x0b\x4e\x30\x53\x9c\xd8\x2e\x01\x6e\x8d\xc1\x4e\x81\x83\x61\xe9\x2a\x0b\x48\x1b\xbb\x51\x46\xb3\x33\x45\xc9\x2e\xd7\xc8\xe6\xea\x9d\x4a\x5d\xd3\x2c\x43\x7b\xbc\x79\xf1\xae\x4b\x3a\xb3\xdb\xe2\x40\x79\xbf\xd7\x73\x4c\x31\x75\x14\x05\xfa\x73\x16\x44\x1f\xcf\x30\xda\x7d\x8e\xca\x8a\x77\x9f\x83\x06\xca\x52\x73\xac\x9c\xb3\xd9\x32\x74\x8f\x2c\x28\x05\xbe\xe3\x15\xbc\x84\x33\x3d\xd0\x28\x7e\x6f\xe9\xd8\x4d\x57\x53\x0f\x9b\x26\x38\x4e\x23\x5b\xe2\x98\xac\x61\x43\x16\x71\x5f\x0f\xb2\x3e\x28\x5e\x74\xb5\x18\x2d\x23\x36\xf9\x6c\x2d\xc1\xd1\x8c\xdd\x40\xbc\x65\x5b\xd1\xa0\x63\xc9\xd0\x6b\x39\x2e\xaf\xae\x71\xe1\x01\xf1\x42\x62\x34\x6b\xa6\xd7\xf4\x2f\x1b\xd2\x07\xd9\x79\x9a\x6f\xc7\x60\x9f\x96\x75\xda\xac\x56\xec\xc9\x52\xd5\x7a\xa0\xf8\x50\xda\x9e\x6b\x5d\x6c\xc5\xab\x25\xf4\x09\x32\xbe\x2b\xe6\xd6\x14\x37\x60\x30\x13\xe8\xf6\xe5\x8a\x84\x92\x45\xfa\x86\x44\x34\xbe\x56\x41\x2e\xde\x00\xc3\xbc\xd7\x3a\xeb\x7a\x02\x33\x29\xab\xa2\x8b\xe9\x02\xe9\xee\xe7\xb1\x55\x12\xfd\xde\xb3\xe7\xac\xa8\xcc\x9c\x40\xe2\x44\xb9\xbd\x11\x2f\x68\xde\x76\x86\x28\x27\x97\x39\xf0\xd6\x97\x9c\x71\x67\x03\x32\x0a\x50\x7f\x1e\xec\xde\xe3\xe8\x1f\xf7\x6c\x5f\xb6\x2c\x8e\x98\xe7\x5b\xe8\xf4\x34\x6e\x13\x74\x4d\x6b\xd7\x6b\x61\x0b\x18\x3e\x08\xae\x72\x4e\xf3\x84\x79\x31\xcb\x7c\xe6\x51\x61\x5b\x0a\x7b\x39\x9b\xc9\x2b\x1d\xe1\x0b\x07\x0b\x0c\x44\xd6\x0f\x1c\xc0\x62\x0f\xfb\x41\x87\xc3\xfc\x09\x81\x50\xae\x67\xa6\x45\xba\x20\x33\x82\x64\xbf\x70\x02\xe1\x3d\x3b\x00\x64\xee\x1d\x63\x16\xa6\xe0\x5e\x0e\x78\x15\x51\xa2\xce\x29\x94\x18\x1e\x59\x17\xf2\xbd\x67\x1a\x05\x54\x1e\xdd\xb8\x84\x1e\xea\x51\xcd\xa7\x7c\xce\xf0\x39\x53\xef\xd3\x27\x08\x3a\x85\x51\x29\x8f\x2f\x78\x09\x28\x8e\x2f\xef\x68\x08\x7f\x58\xfa\xda\x72\x9d\xb7\x85\x9d\xd3\x50\xea\x67\x37\x04\x50\x79\xe8\x86\x97\x6f\x49\x22\xd7\x22\x68\xb6\x12\xc8\x67\x36\xca\x12\xa1\xf0\xf5\x44\xa6\x84\x30\xe7\x2f\x64\x6a\xb1\x87\x13\x11\xfc\xb0\xe7\x39\x20\x13\xca\xea\x41\xb7\xbf\xfd\xd3\xd5\xe5\xdb\x93\xf4\xf7\xc7\x87\xc3\xe1\x31\x67\x7f\x3c\xb4\x5b\xf6\x05\x2a\xf8\x1c\xc8\xff\xbc\x78\x73\x92\x96\xfd\xea\xbb\x05\x49\xef\x98\x1a\x5e\xec\x55\x17\x09\x28\xb9\x4c\x96\xac\xd9\xfd\xf3\x53\x66\x2f\x07\x06\xf5\x32\x9d\xf0\xf8\x60\xc8\xb4\x79\xd8\xcd\x04\xa6\x54\x20\xa6\x30\x2f\x31\x96\xa4\x2b\xe1\xc0\x30\x02\x3e\x01\x58\xb5\xe1\xfb\xc0\xe8\x10\xe1\x06\xf1\x1d\x6f\x31\x0f\xdb\x42\xe8\xd4\x38\x1a\xf5\x4e\x51\x56\x16\x3f\x8f\x4b\xc2\x56\x05\xee\x0e\x79\x96\xfe\x89\x15\x3d\x46\xa9\x50\x01\x27\x19\x15\x00\x38\xa4\x25\xcc\xb0\x54\x0f\x3f\x97\xe3\x04\xbf\x69\x74\x5e\xf6\xf0\x96\x9c\xa3\x0d\x69\xb9\x6b\x9b\x1f\x4d\x9b\xa8\xb4\xae\x51\x61\xad\x70\x6f\xf1\x7c\x88\xa8\x79\x34\x07\x78\x5d\x3a\x8c\xe7\xc1\x78\x49\xd2\x49\xe6\xd9\xbd\x4e\xb2\x09\xc7\x57\xc0\x2f\xcd\x33\x95\x20\x26\x12\x5d\x50\x83\x4a\x76\x93\x1a\xc4\x8f\x2a\xd3\x5e\xda\x31\x06\xf8\x56\x9d\xbb\xb8\x78\x09\x32\xaa\x01\x03\x89\x49\x86\x11\xd2\x6d\x49\xcc\xcb\xc2\x19\xce\x8b\x59\xe4\x3e\x77\xc5\x20\x70\x9a\xe3\xcd\x66\xdb\x98\x9d\xb8\x0c\x86\x62\x86\x94\x6a\x2e\x31\xe2\xba\x33\x4a\x1c\x5f\x6a\x35\x4a\x66\xcd\x42\x6e\xcd\x3b\x93\x50\x88\xad\xfd\xb6\xb9\x33\xaf\xca\x73\x7c\xe9\x71\x85\xb0\x67\x1e\x4c\x3b\xe5\x21\x03\x09\xbe\xc9\xe2\xe2\xfe\x1a\x1c\x5c\x57\x31\xa0\xbe\x4b\x05\x86\x5d\x2e\x42\x51\x2f\xb2\xca\xcc\x34\x6f\xc6\x31\xcf\x41\x8d\x5d\x08\xcf\x5d\x0d\x47\x5c\x08\xe3\xac\xa1\x1b\x61\x90\xf5\x2b\xdc\x08\x63\x24\x4d\x9d\x04\x7d\x57\xbf\xc2\x4f\x70\xae\xd3\x81\x01\x42\xc9\x78\x0e\xf1\x33\x19\xe6\x0c\x11\x45\xd8\x37\x6f\x89\x08\xcd\x0e\xa2\x1b\x94\x1d\x2c\x38\x23\x85\xef\x6b\x74\xcc\xb9\x96\x78\x94\x04\xc8\xfd\x92\x59\xa2\xa8\x6e\x6e\x16\xcb\xb6\x39\x74\xec\xa7\x88\xab\xa9\x78\x2b\x95\xbf\xd3\x2b\x7c\x0b\x08\x9b\x5c\x41\x14\x12\x90\x48\xd9\xfa\xa3\x48\x09\x48\x24\x2f\x6d\x93\xab\x81\xce\x29\x05\xb7\xf1\xf0\x4d\x5d\x7c\xbc\x40\x52\x16\x92\x85\xd8\xf9\x21\xe3\x10\xfc\x2b\x61\x22\x61\x55\x1c\x99\xae\x38\x46\xc1\x38\x68\x08\x37\x6f\x2d\xb6\xad\xda\x81\x0f\xc8\x61\xde\x71\x0b\x84\x65\x70\x04\x46\xc4\x50\x41\xd0\xf2\x20\xa1\xdf\x17\x41\x18\x2e\x3d\x84\x22\x08\x93\xfe\x97\xd7\x6f\xe5\x13\x9b\xb9\x7a\xfc\x05\xbb\xb9\x2f\xd8\xad\xc6\xb6\x88\x17\x73\x5b\xc5\x96\x26\x5b\xee\xa2\x9f\xda\x8d\x9f\xf8\x72\x10\x45\x9b\xdf\xc0\x56\xc9\xff\x2e\x96\x84\x39\x9f\xed\x5d\x5b\x3e\x1e\x67\x23\xe4\x08\xaa\xaf\x10\x70\xf1\x6a\x6b\xe4\x3f\x17\x97\xb3\x5d\x31\xc0\xe1\xc3\xc2\x63\xc4\x36\x9c\x89\xee\x1e\xd2\x42\x5b\xb1\x02\xae\x04\x3a\xaa\x10\xd4\xe1\x6f\x74\x00\xed\xe0\xf6\x4c\x83\xe8\xf3\xb5\xf3\x96\xcc\xd7\xb2\x67\xe3\xd3\x20\xda\xdb\x11\xbc\x28\x8f\xbf\xd6\xc1\x4c\x0a\xde\xa1\x80\xd2\x71\x3f\xdd\x2a\xf4\x53\xa0\x48\x76\x50\xc0\x29\xaa\x6e\xb3\x18\x0f\x84\xdb\x3b\x52\x9c\xa5\xf8\x76\x50\x26\xa9\x30\xb9\x64\xbb\x22\x10\x56\x84\x80\xc2\x65\xe5\x22\x6f\x3f\xf3\x85\x55\xd8\xcd\xb2\x02\x0e\xad\x1e\x9b\xe2\xff\x70\xc4\xf4\xa2\xb4\x77\x12\x9a\x54\x18\xef\xb7\x22\x37\x74\x26\x63\xa6\x2e\x03\x4b\x57\x72\x44\xef\x8d\x84\xe4\x86\xd3\x31\x65\x4c\xdd\x86\x29\xed\xf1\x78\xdc\x02\x78\x87\xe8\xbf\x94\xff\xf7\x7f\xff\x1f\x62\x4f\xfb\x86\x56\x4b\x38\xb4\xeb\x59\x6a\x3f\xee\xe6\x1d\xe5\xaf\xb5\x7b\x0c\x1e\x1d\x34\x44\xd0\x9f\xaa\x8f\x38\x85\x26\x34\xca\x77\x5e\x19\x7d\x5f\xb1\x8d\x2a\x26\x72\x68\x3b\x9e\xcc\x61\x1f\x1f\x97\x61\x44\x95\xe9\x1a\xe1\xce\x72\xda\xe0\x62\xd0\xe4\x84\x94\x12\xdd\xfc\x92\x92\x7c\x24\x9d\xfa\x93\x3f\xf1\xef\x06\x22\x3a\xed\x0f\x15\xc7\xc3\x18\xc2\x5e\x32\xf9\x4d\x2f\xf8\x14\x95\x51\xae\x17\xc1\x96\x94\xf9\x40\xca\x09\x5c\x39\x9f\xe1\x0a\x09\x2b\x7a\xd4\xd9\x21\x0d\xbd\x79\x06\xc7\x20\x66\x4e\xca\x84\xa7\x3f\x48\x63\xd4\x4d\x09\x39\x59\xac\xdb\x31\xd1\x7d\xbf\xf0\xef\x31\xfb\x8f\x89\x81\x45\xa2\xfb\x04\xec\x73\xc2\x01\x3e\xfc\xcd\xb7\xa8\x32\xf9\x89\x85\xf7\x35\x22\x68\x5e\x23\x02\x17\x1b\xc0\xab\x86\xff\x13\x1c\x27\x55\x23\x05\xc7\x6a\x48\xe3\x47\x47\x56\xdb\xe8\x7a\x2e\xef\x79\x84\xa3\xec\xd1\x7d\x58\x5c\x38\x10\x35\xb3\x45\x34\xb9\xe0\x00\x23\x83\xd8\xfb\xa0\x23\xff\xcd\x47\x5b\x58\xed\xf4\x3c\x14\x97\x45\x5c\x4e\x77\xbc\x95\x64\x70\xbc\x9e\xef\xa1\xa9\xf9\x66\x39\xc3\xb2\xab\x26\x98\x32\x1b\xd9\x3f\xf2\xd9\x78\xbc\xf2\x25\x4d\x9e\x9f\x05\x9e\x3d\x7b\xaa\xae\x0b\x84\x04\xe4\xf1\xd1\xe9\x96\x14\x84\x6d\xa4\xcc\xa0\x20\x16\xe5\x7e\x3e\xe2\x02\x39\xbd\x8a\xe2\x8f\x3b\x41\x4e\xcb\xb8\xdf\x0d\xf2\x9f\xdd\xba\x98\x3f\x66\xea\x92\xa7\xe7\x4d\x5d\xd2\xdc\xc1\xd3\x7f\xc3\x46\x02\x91\x94\x36\x63\x32\xb7\x8f\xee\x24\x68\x1e\x67\x88\x3e\x7e\x05\xc8\x1f\xdf\x4f\x88\x2e\x5e\xf8\x0a\x69\x2f\xee\x71\x20\xe8\x45\xad\x72\x08\x61\x83\x55\xec\x90\x7f\x4c\x7b\xf3\x82\x6b\xc4\x33\xc6\x3a\xde\xc4\xff\x1e\x3d\xbd\x37\x4b\xec\x8d\x1f\x36\xd3\x99\xa7\xbc\xff\xba\x59\x71\xc4\x0f\x5f\xcc\x79\x5f\x76\xc6\x3f\x62\x1f\xbe\xcf\x2b\x7f\xdc\x4a\xe6\x35\xee\x92\xde\xb0\x91\xf7\xe6\x08\x97\xd9\x78\x0f\xe6\xdf\xe2\xa9\x3f\x6f\x83\x65\x1d\xf0\x60\xa6\x18\x2c\xca\x86\x3f\x6f\x50\x60\x1d\xc2\xf0\x25\x4a\x86\x67\xb8\x1e\x73\x03\xee\xde\xed\xc7\x8d\x66\x8f\x07\xe1\xde\x0b\x3d\x85\x6e\x67\xbc\x46\xf1\x9e\xf5\xc1\xd1\x62\x2f\x7e\xf6\x1e\x48\xbe\x21\xee\xcc\xa6\x8c\xf3\xc7\x75\xc4\xe7\x13\x2c\xd6\x99\xc1\x2f\x10\x70\xf1\x84\xb5\x55\x09\xff\xf1\x33\x09\xb9\x14\xd5\xb5\xf4\x32\x15\xdf\x08\xb9\x28\xe3\x19\x2c\xa1\x3e\x56\x57\x3d\xc5\x35\xbb\xe0\xd2\xa0\xdc\xed\x79\x08\x73\x77\x72\x9c\x87\x49\x00\x55\xdc\xd4\x56\x41\x42\xfe\x69\x5c\x96\x5c\x1a\xa8\xab\xe7\xdb\xe6\x90\xc8\xd2\xb9\xe0\xbb\x1d\x52\xb9\xd8\x41\x63\xe2\x26\x49\x1c\xcb\x28\x7a\xa0\x0a\x7d\x20\x31\x5d\xce\x4f\x4d\xd3\x47\x3e\xe5\x58\x39\x9c\x37\xb9\xdd\xd3\xc2\x02\x28\xa4\x06\xb8\x01\xb3\x5c\x1f\x12\xc7\x42\x4b\x85\x00\xeb\xab\x15\x49\x34\xaa\x37\x84\xf8\x9a\x8a\xb9\x9d\x93\xea\x4e\xcc\xbe\x85\x63\xbb\xec\x2a\x2c\xfc\x70\x67\xed\x90\x7b\x4d\x5d\x3b\xdc\xa5\xb9\xbe\x1d\x21\xc4\xd7\xb4\x83\x6b\x79\x02\x8f\x20\x1e\xc4\xfb\xda\x43\xca\xa1\x9e\x42\x0e\x77\x4f\xba\x71\x13\xbd\x53\xf6\x75\xb0\x5e\x63\x07\xb2\x18\xc9\x1f\x6c\xde\x9c\x2e\x9c\x92\x22\x1b\x61\x33\x22\x82\x6c\x14\xcf\x1e\x46\xfb\xf2\x14\xe7\x91\x46\x4e\x07\x1a\x6c\x01\x7b\xb0\xb9\x55\x48\xdb\xe5\x45\x3a\xc8\x58\x17\x2a\xd7\x49\xe2\x97\x17\x5e\x81\xb3\x63\x64\x22\xdf\x85\x4b\x06\x04\x3c\x1b\xc9\x42\x2e\xad\x72\x73\x9c\x59\x5d\x50\xeb\xb4\x30\xc7\xaa\x01\xe5\x58\xf4\x14\xce\x78\x67\x28\x9d\x05\xc6\x56\x66\xca\x27\x26\xb3\xca\x6e\xab\x41\xed\xf2\xbb\x68\x03\x98\x8f\xcf\xb1\x46\x16\xcd\x9a\xe3\x2b\xf6\xb4\x29\x7e\xad\x96\x9b\xa0\x1c\xc1\x1c\x35\xca\x2c\xc2\xa9\x3e\x25\x10\x4f\x76\xeb\x36\x67\x5b\xb8\x8d\x35\x33\x8b\x80\x14\x50\xe0\x4f\xae\x97\xee\x56\x6d\xcf\x0d\xb0\xc3\x46\x05\x3d\xba\x8f\x29\xfc\x81\x06\x80\x6d\xdc\xdf\x02\xb0\x05\xb9\xcf\x8a\x9a\x11\xb0\x80\xfb\x1a\xa2\xd7\x61\x7f\x7d\x43\xc0\x37\xbe\xb2\x21\x27\xd6\x0a\xbd\x45\xa5\x28\x66\xe7\xff\x7d\xed\x1b\xa9\x3b\x20\xce\xe8\x9a\x9e\x11\xc1\x47\x4f\x93\x38\xa2\x0f\x7c\x21\xac\x58\x6c\x80\xa9\x6f\x86\x2e\x67\xbe\xa8\x9a\x86\x10\xaa\x6c\xdd\x87\xfe\x1b\xf1\x81\x19\xf6\x28\xe8\xdb\x3b\x15\x49\xb8\x73\xf1\x79\x1d\x7f\x1b\x81\x28\x61\xd8\xcb\x94\xab\x9b\x3e\x02\xed\x9f\x8e\xbc\x31\x24\x57\xb5\xcb\xf6\x74\x17\xbd\x77\x33\xbd\x45\xe7\xde\x1b\x8c\xe2\x9b\x9b\xc6\x57\x78\x75\x72\xe2\x72\x6d\xb2\x9c\xdd\x86\x9d\x78\xe7\x8d\xab\x3b\xc2\xc1\x0e\x0f\x00\xac\xf8\xf2\x8a\xa6\xae\x64\xdf\xff\x42\x42\x7c\x7f\x09\x9b\x62\xd4\x0e\xc3\x07\x81\xbd\x87\xb1\xef\x1d\x8c\x8b\x6c\x63\x52\x41\x40\xc2\x41\x7a\x70\xa3\x0e\xfc\x2d\x5b\xbb\x23\xc8\x97\x80\x96\xc0\x84\x39\x04\x2d\xd3\x76\xa0\xd0\xa1\x9b\xab\x31\xe3\x8d\xba\x54\xb7\x29\xdd\xc3\x25\xcc\x24\xf8\xda\x88\x82\xaf\x8d\x90\xbb\xf1\x4f\x82\x88\x08\xe7\x61\xc2\xde\x1d\xd0\x8f\xa2\xe3\x85\xcf\xc7\xe3\x70\x52\x1c\xc5\x27\x92\xa2\x88\x7c\x35\xa9\xc5\x0c\xd8\x61\x9c\xf8\xd2\x85\x31\x6c\x4c\xe4\x0d\xbb\xa8\xf4\xf8\xdc\x7a\x98\x24\x97\x51\x45\x51\x7a\xff\x76\xdc\x13\xb1\xa9\x86\x71\xdb\x66\xcd\x17\x69\xc1\x08\x19\x77\x4f\x65\xe7\xb8\x4c\x73\xe9\x8b\x8a\x80\x53\x78\x18\x83\x7d\xad\x3e\xef\xe2\xdc\x98\x82\x61\x84\x9e\x63\x9e\x00\x92\x4e\x9d\xaf\x36\xe8\xff\x62\x8e\x90\x4c\x35\x76\xc4\xa4\x2f\xef\xcc\x40\xca\x1d\xe9\xa9\xdd\x88\x3e\x0b\xc3\x4f\xaf\xe0\x02\xfa\x20\x95\x5d\x64\xeb\x4c\x8f\xf6\x37\x7a\x92\x91\xfd\x65\xdd\x31\xfe\xf4\x12\x33\xae\xbb\x37\x53\xb0\x8a\xf1\x29\x05\xbd\x3a\x40\x73\x8a\xc4\x71\xcf\x72\xe6\x4b\xd6\x85\x51\x3d\x17\x72\xaf\xab\x75\x5e\x4e\x60\xe9\xc6\x5c\x1b\x1c\x91\x7c\x55\x19\xa3\x56\x7a\x08\x57\xcc\x1f\x6f\x2a\xac\x67\x7c\xbc\x0a\x16\xb9\xa8\x91\x11\x5b\x33\x90\x2f\x94\x30\x6a\xe2\x6c\x11\x7f\xa0\x91\xfc\x68\xc3\x7a\xe5\x2e\xb9\x3f\xe7\xfb\x51\xda\x25\x1f\xe4\xe2\x35\xac\x94\xc7\x47\x9a\x3a\xb6\xc0\xcd\x67\xbf\xaf\x65\x68\x10\xeb\xdc\x73\xc5\x1f\x6b\x5b\x5b\x76\x77\xf5\x2a\xc3\x8b\x03\xdd\x46\x37\x2a\xdf\x97\x62\x2b\x7f\xb4\xa0\xb8\x27\xb9\x9e\xa6\x2d\xb1\xa5\xd7\x3d\x92\x0b\xa4\xbe\x5d\x51\x3c\x5e\x3c\xa0\x25\xee\x31\x78\x22\x72\x9b\x00\x47\xe2\x59\xff\xdd\xbd\x15\x8d\xfa\x12\x30\xc4\x00\xb7\x2d\x9a\xd2\x97\x5f\xd5\x83\x60\x93\x3c\xec\x06\x93\x81\xce\x7e\xf0\x8a\xf0\xa6\x44\x46\xdc\xb7\x7c\x80\x98\x6f\xbc\xe1\x8b\xa4\xd5\xdd\x47\x17\x34\x7b\x51\x42\x8d\x47\x47\x3a\x14\xd6\x7b\xcf\x08\x3d\x8a\x5a\xf1\xe5\x3e\x86\x8b\x90\xbc\x95\x33\xec\xf1\x60\x99\x7b\x24\xe7\x03\xbe\x43\xa6\x20\x97\x57\x65\xeb\xa6\x6d\x68\x78\xe4\xac\x9a\x5e\x68\xf5\xd2\xe2\xba\x99\x0c\x30\x81\xdf\x65\x83\x9e\x2f\xb4\x3c\x17\x88\x26\xf9\x81\x0f\x1b\xfa\x5c\x7d\xd3\xe7\x5b\xcb\xc3\x16\xc8\x95\xda\xad\xaf\x39\xc1\x72\x9d\x5a\x42\x90\x53\xf3\x34\x4b\xf6\xf7\x44\x16\x05\xbe\xd4\x98\x00\x16\xdb\x1c\x7c\xa0\x8c\xd0\x35\xec\x33\xee\x2a\xce\x22\x49\x74\xfa\x06\xd1\xe9\x35\x47\x4f\x6b\xb0\x56\xb9\x6c\xa3\x46\x1d\xcb\x77\xd3\x96\x93\x3c\x2f\xf8\xb0\xeb\x18\xde\x30\xb7\x29\xf3\xfd\x04\x6f\xaf\x28\x72\x82\x35\x40\x4e\x11\x00\xd8\xe3\x58\x08\x73\x55\x05\x14\xab\x30\xc7\x6b\x8a\x3a\x06\x0d\x0f\x80\x31\x3c\x9e\x12\x3b\x92\x43\xd7\xec\x71\xab\x74\xcf\x66\xd2\xaa\x66\xf9\x77\x3c\xbc\xa5\xd0\x97\xf2\x19\x40\x2d\x9b\xa6\xe7\xf7\x0d\xf6\x2c\x6e\xad\x3e\x3b\x34\xfd\x62\xf1\x2c\x6e\xad\x3e\x4f\x30\x25\xd0\x53\x54\x09\xf4\x71\x5c\xed\xf8\xa4\x3d\xd5\xd5\x0e\xab\x7e\xa0\x09\xea\x2a\xbc\xb8\xe2\x53\xfb\x57\x2e\x61\x52\xe3\x24\x67\x48\xa1\xe3\xcc\x73\x35\xaf\x48\x88\x28\x67\xab\x3e\xe3\x94\x7b\xeb\x9e\xe4\x0d\x2b\x9f\x64\x9f\x9b\x29\xb8\xaf\x91\x8d\xce\xcb\x61\xf5\xb9\xec\xd9\x67\x7c\x93\x61\x87\x39\x2c\xeb\x9d\x81\xa5\xbf\x00\x2c\x7d\x45\x60\xe9\xb5\xbc\x9e\x35\x2d\x95\x16\x9d\x5d\xd9\xe7\xf0\x14\x08\x4a\x79\x79\x46\x23\xc0\xd1\x45\x3e\x97\x0b\xd6\x99\x4c\xa5\x6c\x9d\x85\x2c\xf8\x04\x25\xe8\xbb\x5e\x22\x78\x9f\x3a\x90\xb9\xd2\x58\x0d\x90\xd5\x6f\x75\xb7\x92\xcb\x08\x59\x31\xa0\x36\xbc\x97\x98\x00\x16\x77\x46\x11\xac\xf1\x48\x6c\x8a\xe3\xf2\x28\x02\xbf\x8e\x19\xa5\x70\x30\x0f\x2c\x8c\x8b\xe0\xde\xe5\x43\x37\x0b\xb8\xcf\x65\x32\x1d\x85\xb4\xea\x0d\xd0\x6a\x1e\xc3\x69\xa5\x9d\xa0\x52\xd8\x8a\x68\x6a\xe2\x5b\xac\xf7\x35\xd9\xcb\x9e\x70\x2d\xb6\xdb\x9a\xf0\xbe\xa7\xc0\x7e\xf1\xb9\x1a\x05\x13\xe9\x15\x32\xab\xc4\x98\xbc\x85\xab\x98\x2d\x6c\x69\xb0\x44\xa9\x4d\x4f\xe3\xa2\xb7\x73\x34\xce\xce\x4e\xb9\xb3\xaa\x1a\x1f\x1e\xba\xd4\x12\x21\x98\x9a\xcb\x4a\xfc\x2c\x81\x7a\xae\x08\xa0\xdc\x58\x21\x3b\x49\xdb\x30\x33\x94\x06\xf7\xb0\x63\x54\xc0\x1b\xe8\x13\x41\xdf\x8e\x5e\x6b\x6a\x37\xfa\x7c\xe5\xcd\xa6\xbe\x37\x01\x8e\xb1\xd1\x1d\x63\xb7\xea\xb2\x10\x9d\xe3\x0b\x81\xf2\x11\x7a\x19\x5c\x31\x1c\x81\x62\xe7\x3b\x7c\x88\x27\xd8\x7e\x34\x94\x63\xa3\x0f\x0f\x80\xa9\x23\xdf\xa4\x84\x20\x4f\xf0\x6a\x1a\xbb\x43\xcb\x59\xa3\x39\x14\x79\xeb\xa0\x61\xc8\xdd\x10\x0b\xe8\x7b\xb7\x96\x62\x5c\xcc\x5f\x5c\xfd\xff\xe5\xee\xee\xb0\x01\xfe\x06\xef\x23\xf5\xff\xbb\xdc\xe0\x3d\xb6\xcc\xba\x2b\xbc\x71\x45\xf1\x02\x87\x03\xe2\x79\x1c\x6d\x5c\x45\xf3\x19\x39\xc2\x79\x8a\x88\x78\x2b\x1f\x51\xde\xec\x6b\x16\x5f\xb1\xda\x60\x8a\x8e\xeb\x0b\xce\x73\x44\xb5\x49\x8e\xe9\x45\x53\x71\x13\x24\x66\xba\x5b\x24\xf1\x6a\x8d\x48\xf5\xb2\x94\x52\xad\x47\x0b\x98\x24\x74\x8b\xc6\xe2\x26\x0f\x04\xf3\xa4\xd6\xa9\x3d\x6a\x72\x3c\xb9\xa3\x56\x4b\x26\x39\xe9\x6b\x47\x45\x66\x99\x89\x02\x06\x5d\x91\x98\xf0\x8c\xbf\xc4\xc8\x95\xb5\x78\xc3\x41\x42\x1a\x3f\xf5\xc2\x08\x5a\xac\xc5\xc4\x55\x07\x85\x02\x68\x96\x57\x05\x6d\x19\xfb\xa7\x4a\x6c\xf8\x1e\xb0\xc4\xe8\xd3\xaa\x78\x55\x55\x62\x96\xf0\x1f\x82\x97\x1b\x1b\x9f\xce\xdf\x5a\xb5\x7d\xdf\x56\xcb\xa1\x9f\xbf\x8c\xd9\xa5\x4e\xa0\x6d\xdb\x9f\x69\x37\xfd\x02\x6c\x37\x58\xc1\x57\xc3\x97\xca\x1d\x3d\x94\x33\x82\x93\x9b\x0c\x52\x77\x27\xca\x0b\x7c\x6b\xe2\x8e\x79\x64\xd6\xf1\x0b\xde\x17\xc4\x62\x8a\xf4\xea\x54\x53\xf0\x80\xaa\x5a\x47\xf0\xce\xea\xd1\x51\x60\xc8\xc9\x83\xac\x3e\x49\xf1\x8a\xa4\x00\xb9\x7a\xa9\x73\x2f\xf7\xed\xca\x85\xc6\xd7\x6f\xae\x28\xb8\x6a\xef\x64\xc3\x48\xc7\x85\x77\x0c\xf4\xd9\x52\x7b\xe5\xe2\xf4\xc2\x3d\x0c\x1b\x8c\xb4\x16\xc9\x8f\x4e\x66\xc1\x7b\xea\x5a\x38\xb5\xbf\xd1\x27\xd5\xd4\x60\xaa\xb4\xca\x4f\x02\xb0\xf3\xef\xbe\xb3\x72\x82\xa3\xc8\x23\xb2\xd7\xcb\x9f\x75\x04\x26\x8b\x51\x6c\xb9\xc5\x42\xe3\x16\xa5\x90\xde\xc3\xb5\x32\xaa\xe0\x2b\xaf\x6a\x0e\xcb\x0a\x16\x95\x7b\xda\x3a\x7b\xd6\x30\xbe\xba\x2b\x04\xcc\x64\xfe\xd9\x0d\x7d\x51\xc1\x6e\x93\x69\x9a\x21\xba\xaa\x2f\xca\x34\xef\x06\x70\xdf\x25\x7d\x62\x14\x30\x65\xdc\xd9\xbc\x55\x19\x8f\x4d\xdf\x0a\x7b\xdf\x9b\xd4\x01\xc8\xad\x6c\xad\x05\x10\xf6\x9a\x7e\x00\x34\xff\x26\xb2\x02\x8c\x79\x8a\x46\x8f\x9e\xca\x8d\xde\xc8\xb5\x9c\xf6\xe4\x5f\x33\x88\xb6\x8d\x27\x39\xf5\x8c\xd1\x7b\x44\xb2\xa0\x65\xe0\x73\xef\x52\x07\x49\x5a\x11\x27\x85\x95\x60\x85\xe2\x47\x3a\xef\x7d\x43\xdb\x10\xcc\x26\xf7\x55\x26\xf7\x36\x05\x79\x60\xf0\x5f\xc1\x8d\x77\x9a\x89\xda\x3d\xcd\x41\xed\x3e\x02\x2e\x9b\xc0\xc6\xcf\xaf\xf0\x25\x2c\xc4\xb5\x98\x5d\xcb\x94\x8a\xac\xc3\x12\x37\x7e\xc1\x24\xc4\x41\xb1\xf4\x84\xe1\xde\x35\x9d\x25\x0d\xff\x2e\x7c\x58\x2d\xbf\xe8\x1e\x2c\x04\x3e\x36\x5c\xd2\x7c\x6c\xf8\x70\xbc\x8f\x9d\x7b\xc9\x7d\x9a\xea\x77\xe6\xbf\x65\xdf\x94\x07\x7b\x79\xdc\xbe\x7b\x80\xe7\x7b\xbf\x0b\x72\x84\xaf\xc0\xc7\xb1\xe3\x32\xf4\xd1\xd9\x51\x11\xc6\x2c\xa3\x29\x53\xad\x8e\x20\xc6\xbd\x3d\x19\xdd\xe9\x0d\xf4\xcb\x1b\xc6\xba\xac\x44\x8f\x4e\x8f\x89\xd9\x33\x5b\x47\xca\x21\xa3\xb5\x86\xb1\x4b\x7b\xf4\x1a\xb3\xbe\x00\xa8\xbe\xed\xee\xbd\xcb\x5f\x10\xed\x5b\x38\xfb\xd4\xf2\xf8\x8d\x65\x76\x3a\xb7\x2c\xf1\xa3\xd8\xd3\xd7\xb0\x15\xcc\x1e\x16\x80\x45\x60\xf2\x06\x01\x4c\x01\xfa\x04\x81\x31\x06\x39\xe2\xc4\xfe\xdd\xd9\x56\xcd\xdf\x72\x0c\x0a\x5e\xde\xe9\x1b\xd8\xbb\x5d\xbb\xa3\x87\xf9\xa2\x4c\xf2\x1e\xa0\x7b\xfc\x6b\x9a\xd9\x4e\xeb\xb9\x41\xb4\xd3\x47\xb3\x83\xf8\xdb\x50\x0e\x54\xb8\xbc\xd8\xc7\xd7\xdf\xd1\x67\xfa\x06\x9f\x6e\xac\xe4\x58\x11\xb4\x61\x76\x66\x7e\x66\x07\x8d\xa0\x14\x53\x8c\x1b\xa5\xcf\xd5\x9e\x97\x65\x7d\xb1\x88\x07\x87\x62\xb0\x36\xff\x19\x31\x21\x92\x43\xce\x7c\x81\xef\xf9\x06\x2a\xec\x54\x0a\x8c\xd3\x8d\xa0\x88\xce\x9b\x80\x98\x5e\xfd\xfa\xe6\x72\x04\x39\x33\x41\x35\x65\x66\x42\xc7\x2f\xb2\x87\xd3\x57\xb6\x72\x5c\x17\xb0\x7d\x33\xdf\x03\x81\x3c\xda\x01\xa1\x21\xbf\x33\x0b\xe2\x99\x2d\x48\xa9\xad\xc8\xf7\x32\x63\x94\xce\xe4\x3b\x06\x0a\xee\x04\x15\x28\xbb\x12\x74\x52\x6b\x1d\xd6\x59\xcb\x36\x84\xe7\x07\xe2\x22\x10\xf0\x03\x71\xb5\x9d\x6d\x9e\x41\x93\xca\x7a\x5b\x15\x2a\x38\x0a\xfc\x3b\x8d\x32\x50\x03\xf1\x25\x1b\x84\x16\xed\x9a\x49\x84\x5b\x39\xe9\xed\x0c\x5f\xd1\xd0\xe9\x44\xe4\xf9\x22\xb0\x7e\x1a\xf2\x8b\x06\x92\xc3\x80\xd7\x2b\x87\x18\x33\x28\xbd\x3c\xf3\xb7\xa5\xc2\xf6\x34\xea\xcc\xb6\xba\x29\x9d\xa5\x4a\x7b\xf3\x86\xe2\x22\xe0\x0d\xbf\x09\x69\x07\x22\xe5\x55\x48\x7e\x8c\x7d\xd4\x89\xb0\x28\xed\xc9\xa4\xa4\x7d\x05\xeb\x61\x80\x17\x89\x98\xc7\xb8\x41\x2b\xdf\x0e\xc0\x95\x71\x8f\xd9\xad\xbd\xaa\x14\xcc\x10\xff\xc4\x89\x5f\x9f\x5d\xed\xbc\x2e\xcf\xd6\xcc\x50\xba\x72\x31\x0c\x56\x2e\xf3\x16\x58\xac\x5a\xb9\x5b\x85\xff\xae\x79\x1f\xd7\xa5\x84\x73\xcf\xe2\x3a\xa2\xbd\x62\x90\xc3\x36\x1a\xf4\xf0\xde\xbb\x40\xd0\x64\x09\x33\x77\x9e\xc5\x00\xe5\xef\xe5\x6a\x08\xb6\x15\x7e\x95\x6f\xb5\xe3\xf9\x62\x1a\x73\x0e\x1c\x6a\xdc\xca\xf6\x4e\x62\x02\x98\xb9\x0b\x96\xac\xe9\x70\x71\x34\x57\xc7\xa3\xf5\xbb\xea\xa1\xfe\x30\x94\x79\x5c\x98\x97\x83\x7c\x66\x5b\x39\x7b\x31\x72\xc2\x30\xd8\x50\x0a\x09\xe3\xb2\xef\x23\x39\xcd\xa5\xcd\x34\xdc\x92\x9a\x3d\xb3\xac\xfd\x22\x80\x85\x28\x1e\xdc\x57\x2f\x6d\x90\xf4\x2f\xb9\x58\x25\x1f\xc5\xa7\xe1\xd3\xe8\x4a\x63\x33\x3f\x06\x6e\x34\xd1\xf9\x9f\x87\x72\x8f\x9d\x1c\x92\xb2\x4c\xec\x41\x24\xf7\xf0\x05\xb0\x4f\xba\x76\xf5\xe4\x61\x78\xfb\x1d\x5b\x84\x3c\x00\xdf\x96\xc7\x89\x3f\xea\xd5\x78\xda\x0e\x18\x35\xa8\xcc\xbf\xe9\xad\x7a\xf2\x1d\x96\x2b\x66\x0f\x29\xba\xfb\x4f\xae\xf4\xbf\x25\xea\x6c\xe1\x8b\xd0\x08\x3c\x6f\xf0\x47\x0a\x72\x77\x78\x68\xff\xec\x7b\x84\x17\x1c\x99\x66\x84\xc8\xd9\xe9\xf1\x9b\x17\x8a\x2a\x9c\xbc\xe6\x93\x38\x1e\x4f\xf4\x71\x3f\xa2\xa2\xa2\x26\x88\xd2\x6b\xe1\x7e\xc8\xfc\xdd\xa8\x38\x84\x27\x09\x55\xa7\xf7\x62\xc9\x83\x22\x3f\xb8\x7b\x51\x93\x8f\x7d\xd3\x6c\x3f\x25\xf9\x9a\xfb\x44\xbf\x09\x2e\x1e\x16\x7f\x5d\xf8\xa4\x51\x30\x91\x4f\x0e\x7d\xcf\x05\x7f\x4f\x5a\x2a\x31\x10\x5c\xce\xf6\xfd\x0e\x11\xf2\x24\x35\x22\x36\x88\xe0\x1b\xab\xf1\x59\xe0\xb3\xc8\xef\xf0\x75\xc0\xd7\xa1\x2c\x3f\x4b\x66\x70\x18\xca\x4e\x5a\xdf\x06\x31\x77\xf8\xe6\xdb\xc6\xf8\x53\xea\xd1\xbb\x07\xed\x03\x57\xc2\xc9\x0b\xd8\x88\xb7\x0f\x8a\x97\xb7\x61\x9e\xf9\x67\x62\x1e\xf2\xfe\xd8\x9d\x46\x21\x44\x31\x5c\xbd\x46\x49\xf0\x21\xd8\x04\xe9\xb2\x5a\xa0\x84\x29\x96\xdb\xa1\x91\x12\xa4\xb8\x36\x3f\x64\xbe\x5d\x1a\x42\xac\x6f\x95\x86\x92\xff\x17\x00\x00\xff\xff\xf1\x31\x50\x1a\xc7\x8e\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -787,7 +787,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 36375, mode: os.FileMode(420), modTime: time.Unix(1439188430, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 36551, mode: os.FileMode(420), modTime: time.Unix(1439198919, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/css/gogs.min.css b/public/css/gogs.min.css index 3aaab60701..8db6ea28ab 100644 --- a/public/css/gogs.min.css +++ b/public/css/gogs.min.css @@ -1 +1 @@ -@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('embedded-opentype'),url(../fonts/octicons.woff?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('woff'),url(../fonts/octicons.ttf?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('truetype'),url(../fonts/octicons.svg?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6#octicons)format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-alignment-align:before{content:'\f08a'}.octicon-alignment-aligned-to:before{content:'\f08e'}.octicon-alignment-unalign:before{content:'\f08b'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beer:before{content:'\f069'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hourglass:before{content:'\f09e'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-jump-down:before{content:'\f072'}.octicon-jump-left:before{content:'\f0a5'}.octicon-jump-right:before{content:'\f0a6'}.octicon-jump-up:before{content:'\f073'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-microscope:before{content:'\f089'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-move-down:before{content:'\f0a8'}.octicon-move-left:before{content:'\f074'}.octicon-move-right:before{content:'\f0a9'}.octicon-move-up:before{content:'\f0a7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-playback-fast-forward:before{content:'\f0bd'}.octicon-playback-pause:before{content:'\f0bb'}.octicon-playback-play:before{content:'\f0bf'}.octicon-playback-rewind:before{content:'\f0bc'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-podium:before{content:'\f0af'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-puzzle:before{content:'\f0c0'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-split:before{content:'\f0c6'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-steps:before{content:'\f0c7'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%;padding:5px 0}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .brand{float:left;margin-top:5px;margin-right:5px}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .user.avatar{padding:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.right{text-align:right}.ui .message{text-align:center}footer{margin-top:40px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none!important}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:120px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:120px}.install form label{text-align:right;width:40%!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:41%}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.repository.new.fork form{margin:auto;width:800px!important}.repository.new.fork form .ui.message{text-align:center}.repository.new.fork form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help{margin-left:260px!important}.repository.new.fork form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i{margin-right:0!important}.repository.new.fork form input,.repository.new.fork form textarea{width:50%!important}.repository{padding-top:15px;padding-bottom:120px}.repository .head{height:40px;background-color:#FCFCFC}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .fork-flag,.repository .head a{font-weight:300}.repository .head .ui.label{margin-top:5px;vertical-align:top}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .head .num{font-weight:700}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .menu .clickable .name{padding-left:15px!important}.repository .page.buttons{padding-top:15px}.repository .issue.list{list-style:none;padding-top:15px}.repository .issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.repository .issue.list>.item .title:hover{color:#000}.repository .issue.list>.item .comment{padding-right:10px;color:#666}.repository .issue.list>.item .desc{padding-top:5px;color:#999}.repository .issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.repository .issue.list>.item .desc a.milestone:hover{color:#000!important}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository .comment.form .ui.comments{margin-top:-12px;max-width:750px!important}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository .filter.dropdown .menu .items{max-height:300px;overflow-y:auto}.repository .filter.dropdown .menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.repository .filter.dropdown .menu .items .item.active{font-weight:700}.repository .filter.dropdown .menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px} \ No newline at end of file +@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('embedded-opentype'),url(../fonts/octicons.woff?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('woff'),url(../fonts/octicons.ttf?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('truetype'),url(../fonts/octicons.svg?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6#octicons)format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-alignment-align:before{content:'\f08a'}.octicon-alignment-aligned-to:before{content:'\f08e'}.octicon-alignment-unalign:before{content:'\f08b'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beer:before{content:'\f069'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hourglass:before{content:'\f09e'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-jump-down:before{content:'\f072'}.octicon-jump-left:before{content:'\f0a5'}.octicon-jump-right:before{content:'\f0a6'}.octicon-jump-up:before{content:'\f073'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-microscope:before{content:'\f089'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-move-down:before{content:'\f0a8'}.octicon-move-left:before{content:'\f074'}.octicon-move-right:before{content:'\f0a9'}.octicon-move-up:before{content:'\f0a7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-playback-fast-forward:before{content:'\f0bd'}.octicon-playback-pause:before{content:'\f0bb'}.octicon-playback-play:before{content:'\f0bf'}.octicon-playback-rewind:before{content:'\f0bc'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-podium:before{content:'\f0af'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-puzzle:before{content:'\f0c0'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-split:before{content:'\f0c6'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-steps:before{content:'\f0c7'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%;padding:5px 0}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .brand{float:left;margin-top:5px;margin-right:5px}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .user.avatar{padding:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.right{text-align:right}.ui .message{text-align:center}footer{margin-top:40px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:120px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:120px}.install form label{text-align:right;width:40%!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:41%}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.repository.new.fork form{margin:auto;width:800px!important}.repository.new.fork form .ui.message{text-align:center}.repository.new.fork form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help{margin-left:260px!important}.repository.new.fork form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i{margin-right:0!important}.repository.new.fork form input,.repository.new.fork form textarea{width:50%!important}.repository{padding-top:15px;padding-bottom:120px}.repository .head{height:40px;background-color:#FCFCFC}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .fork-flag,.repository .head a{font-weight:300}.repository .head .ui.label{margin-top:5px;vertical-align:top}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .head .num{font-weight:700}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .menu .clickable .name{padding-left:15px!important}.repository .page.buttons{padding-top:15px}.repository .issue.list{list-style:none;padding-top:15px}.repository .issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.repository .issue.list>.item .title:hover{color:#000}.repository .issue.list>.item .comment{padding-right:10px;color:#666}.repository .issue.list>.item .desc{padding-top:5px;color:#999}.repository .issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.repository .issue.list>.item .desc a.milestone:hover{color:#000!important}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository .comment.form .ui.comments{margin-top:-12px;max-width:750px!important}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository .filter.dropdown .menu .items{max-height:300px;overflow-y:auto}.repository .filter.dropdown .menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.repository .filter.dropdown .menu .items .item.active{font-weight:700}.repository .filter.dropdown .menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px} \ No newline at end of file diff --git a/public/js/gogs.js b/public/js/gogs.js index 3228076571..413bc43853 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -2,6 +2,94 @@ var csrf; +function initCommentForm() { + if ($('.comment.form').length == 0) { + return + } + + var $form = $('.comment.form'); + $form.find('.tabular.menu .item').tab(); + $form.find('.tabular.menu .item[data-tab="preview"]').click(function () { + var $this = $(this); + $.post($this.data('url'), { + "_csrf": csrf, + "mode": "gfm", + "context": $this.data('context'), + "text": $form.find('.tab.segment[data-tab="write"] textarea').val() + }, + function (data) { + $form.find('.tab.segment[data-tab="preview"]').html(data); + } + ); + }); + + // Labels + var $list = $('.ui.labels.list'); + var $no_select = $list.find('.no-select'); + $('.select-label .menu .item:not(.no-select)').click(function () { + if ($(this).hasClass('checked')) { + $(this).removeClass('checked') + $(this).find('.octicon').removeClass('octicon-check') + } else { + $(this).addClass('checked') + $(this).find('.octicon').addClass('octicon-check') + } + + var label_ids = ""; + $(this).parent().find('.item').each(function () { + if ($(this).hasClass('checked')) { + label_ids += $(this).data('id') + ","; + $($(this).data('id-selector')).removeClass('hide'); + } else { + $($(this).data('id-selector')).addClass('hide'); + } + }); + if (label_ids.length == 0) { + $no_select.removeClass('hide'); + } else { + $no_select.addClass('hide'); + } + $($(this).parent().data('id')).val(label_ids); + return false; + }); + $('.select-label .menu .no-select.item').click(function () { + $(this).parent().find('.item').each(function () { + $(this).removeClass('checked'); + $(this).find('.octicon').removeClass('octicon-check'); + }); + + $list.find('.item').each(function () { + $(this).addClass('hide'); + }); + $no_select.removeClass('hide'); + $($(this).parent().data('id')).val(''); + }); + + var $milestone_menu = $('.select-milestone .menu'); + var $milestone_list = $('.ui.select-milestone.list') + // Milestones + $milestone_menu.find('.item:not(.no-select)').click(function () { + $(this).parent().find('.item').each(function () { + $(this).removeClass('selected active') + }); + + $(this).addClass('selected active'); + $milestone_list.find('.selected').html('' + + $(this).text() + ''); + $('.ui.select-milestone.list .no-select').addClass('hide'); + $('#milestone_id').val($(this).data('id')); + }); + $milestone_menu.find('.no-select.item').click(function () { + $(this).parent().find('.item:not(.no-select)').each(function () { + $(this).removeClass('selected active') + }); + + $milestone_list.find('.selected').html(''); + $milestone_list.find('.no-select').removeClass('hide'); + $('#milestone_id').val(''); + }); +} + function initInstall() { if ($('.install').length == 0) { return; @@ -133,66 +221,6 @@ $(document).ready(function () { }); $('.poping.up').popup(); - // Comment form - if ($('.comment.form').length > 0) { - var $form = $(this); - $form.find('.tabular.menu .item').tab(); - $form.find('.tabular.menu .item[data-tab="preview"]').click(function () { - var $this = $(this); - $.post($this.data('url'), { - "_csrf": csrf, - "mode": "gfm", - "context": $this.data('context'), - "text": $form.find('.tab.segment[data-tab="write"] textarea').val() - }, - function (data) { - $form.find('.tab.segment[data-tab="preview"]').html(data); - } - ); - }); - - // Labels - var $list = $('.ui.labels.list'); - var $no_select = $list.find('.no-select'); - $('.select-label .item:not(.no-select)').click(function () { - if ($(this).hasClass('checked')) { - $(this).removeClass('checked') - $(this).find('.octicon').removeClass('octicon-check') - } else { - $(this).addClass('checked') - $(this).find('.octicon').addClass('octicon-check') - } - - var label_ids = ""; - $(this).parent().find('.item').each(function () { - if ($(this).hasClass('checked')) { - label_ids += $(this).data('id') + ","; - $($(this).data('id-selector')).removeClass('hide'); - } else { - $($(this).data('id-selector')).addClass('hide'); - } - }); - if (label_ids.length == 0) { - $no_select.removeClass('hide'); - } else { - $no_select.addClass('hide'); - } - $($(this).parent().data('id')).val(label_ids); - return false; - }); - $('.select-label .no-select.item').click(function () { - $(this).parent().find('.item').each(function () { - $(this).removeClass('checked'); - $(this).find('.octicon').removeClass('octicon-check'); - }); - - $list.find('.item').each(function () { - $(this).addClass('hide'); - }); - $no_select.removeClass('hide'); - $($(this).parent().data('id')).val(''); - }); - } // Helpers. $('.delete-button').click(function () { @@ -211,6 +239,7 @@ $(document).ready(function () { return false; }); + initCommentForm(); initInstall(); initRepository(); }); \ No newline at end of file diff --git a/public/less/_base.less b/public/less/_base.less index f5d9671324..f39c8a6607 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -102,7 +102,7 @@ footer { } .hide { - display: none!important; + display: none; } .center { text-align: center; diff --git a/public/less/_repository.less b/public/less/_repository.less index db9bc22763..21fe650b51 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -29,18 +29,27 @@ font-weight: bold; } } - .metas .ui.list { - .label.color { - padding: 0 8px; - margin-right: 5px; + .metas { + .menu { + max-height: 300px; + overflow-x: auto; } - a { - padding-top: 5px; - padding-right: 10px; - .text { - color: #444; - &:hover { - color: #000; + .ui.list { + .hide { + display: none!important; + } + .label.color { + padding: 0 8px; + margin-right: 5px; + } + a { + padding-top: 5px; + padding-right: 10px; + .text { + color: #444; + &:hover { + color: #000; + } } } } diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 28dac229ec..b7abf0f589 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -190,19 +190,21 @@ func NewIssue(ctx *middleware.Context) { ctx.Handle(500, "GetLabelsByRepoID: %v", err) return } - } - // // Get all milestones. - // ctx.Data["OpenMilestones"], err = models.GetMilestones(repo.ID, -1, false) - // if err != nil { - // ctx.Handle(500, "GetMilestones.1: %v", err) - // return - // } - // ctx.Data["ClosedMilestones"], err = models.GetMilestones(repo.ID, -1, true) - // if err != nil { - // ctx.Handle(500, "GetMilestones.2: %v", err) - // return - // } + ctx.Data["OpenMilestones"], err = models.GetMilestones(repo.ID, -1, false) + if err != nil { + ctx.Handle(500, "GetMilestones: %v", err) + return + } + ctx.Data["ClosedMilestones"], err = models.GetMilestones(repo.ID, -1, true) + if err != nil { + ctx.Handle(500, "GetMilestones: %v", err) + return + } + + // ctx.Data["AssigneeID"] = 0 + // ctx.Data["Assignees"], err = repo.GetCollaborators() + } // us, err := repo.GetCollaborators() // if err != nil { @@ -222,8 +224,9 @@ func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { ctx.Data["AttachmentAllowedTypes"] = setting.AttachmentAllowedTypes var ( - repo = ctx.Repo.Repository - labelIDs []int64 + repo = ctx.Repo.Repository + labelIDs []int64 + milestoneID int64 ) if ctx.User.IsAdmin { // Check labels. @@ -244,6 +247,25 @@ func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { ctx.Data["HasSelectedLabel"] = hasSelected ctx.Data["label_ids"] = form.LabelIDs ctx.Data["Labels"] = labels + + // Check milestone. + milestoneID = form.MilestoneID + ctx.Data["OpenMilestones"], err = models.GetMilestones(repo.ID, -1, false) + if err != nil { + ctx.Handle(500, "GetMilestones: %v", err) + return + } + ctx.Data["ClosedMilestones"], err = models.GetMilestones(repo.ID, -1, true) + if err != nil { + ctx.Handle(500, "GetMilestones: %v", err) + return + } + ctx.Data["Milestone"], err = models.GetRepoMilestoneByID(repo.ID, milestoneID) + if err != nil { + ctx.Handle(500, "GetRepoMilestoneByID: %v", err) + return + } + ctx.Data["milestone_id"] = milestoneID } if ctx.HasError() { @@ -252,11 +274,11 @@ func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { } issue := &models.Issue{ - RepoID: ctx.Repo.Repository.ID, - Index: int64(repo.NumIssues) + 1, - Name: form.Title, - PosterID: ctx.User.Id, - // MilestoneID: form.MilestoneID, + RepoID: ctx.Repo.Repository.ID, + Index: int64(repo.NumIssues) + 1, + Name: form.Title, + PosterID: ctx.User.Id, + MilestoneID: milestoneID, // AssigneeID: form.AssigneeID, Content: form.Content, } @@ -683,7 +705,7 @@ func UpdateIssueMilestone(ctx *middleware.Context) { // Not check for invalid milestone id and give responsibility to owners. issue.MilestoneID = mid - if err = models.ChangeMilestoneAssign(oldMid, mid, issue); err != nil { + if err = models.ChangeMilestoneAssign(oldMid, issue); err != nil { ctx.Handle(500, "issue.UpdateIssueMilestone(ChangeMilestoneAssign)", err) return } else if err = models.UpdateIssue(issue); err != nil { diff --git a/templates/repo/issue/new_form.tmpl b/templates/repo/issue/new_form.tmpl index 1b74f14292..6d31a01e60 100644 --- a/templates/repo/issue/new_form.tmpl +++ b/templates/repo/issue/new_form.tmpl @@ -38,16 +38,16 @@ {{if .IsRepositoryAdmin}} -
+