diff --git a/README.md b/README.md index 08af17f94..7b4b310b6 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true) -##### Current tip version: 0.9.75 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions) +##### Current tip version: 0.9.76 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions) | Web | UI | Preview | |:-------------:|:-------:|:-------:| diff --git a/cmd/serve.go b/cmd/serve.go index ccbddeacf..a7503ca9b 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -113,7 +113,7 @@ func handleUpdateTask(uuid string, user, repoUser *models.User, reponame string, // Ask for running deliver hook and test pull request tasks. reqURL := setting.LocalURL + repoUser.Name + "/" + reponame + "/tasks/trigger?branch=" + - strings.TrimPrefix(task.RefName, "refs/heads/") + "&secret=" + base.EncodeMD5(repoUser.Salt) + strings.TrimPrefix(task.RefName, "refs/heads/") + "&secret=" + base.EncodeMD5(repoUser.Salt) + "&pusher=" + com.ToStr(user.ID) log.GitLogger.Trace("Trigger task: %s", reqURL) resp, err := httplib.Head(reqURL).SetTLSClientConfig(&tls.Config{ diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 9632f4b2b..ceb977976 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -666,6 +666,8 @@ settings.event_send_everything = I need everything. settings.event_choose = Let me choose what I need. settings.event_create = Create settings.event_create_desc = Branch, or tag created +settings.event_pull_request = Pull Request +settings.event_pull_request_desc = Pull request opened, closed, reopened, edited, assigned, unassigned, label updated, label cleared, or synchronized. settings.event_push = Push settings.event_push_desc = Git push to a repository settings.active = Active diff --git a/gogs.go b/gogs.go index 00498ed9a..9a86c5cb6 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.9.75.0813" +const APP_VER = "0.9.76.0814" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/action.go b/models/action.go index 5bfa5b75b..584543d9c 100644 --- a/models/action.go +++ b/models/action.go @@ -169,7 +169,7 @@ func (a *Action) GetIssueTitle() string { log.Error(4, "GetIssueByIndex: %v", err) return "500 when get issue" } - return issue.Name + return issue.Title } func (a *Action) GetIssueContent() string { @@ -513,11 +513,11 @@ func CommitRepoAction( payloadRepo := repo.ComposePayload() - pusher_email, pusher_name := "", "" + var pusherEmail, pusherName string pusher, err := GetUserByName(userName) if err == nil { - pusher_email = pusher.Email - pusher_name = pusher.DisplayName() + pusherEmail = pusher.Email + pusherName = pusher.DisplayName() } payloadSender := &api.PayloadUser{ UserName: pusher.Name, @@ -527,7 +527,7 @@ func CommitRepoAction( switch opType { case ACTION_COMMIT_REPO: // Push - p := &api.PushPayload{ + if err = PrepareWebhooks(repo, HOOK_EVENT_PUSH, &api.PushPayload{ Ref: refFullName, Before: oldCommitID, After: newCommitID, @@ -535,13 +535,12 @@ func CommitRepoAction( Commits: commit.ToApiPayloadCommits(repo.FullLink()), Repo: payloadRepo, Pusher: &api.PayloadAuthor{ - Name: pusher_name, - Email: pusher_email, + Name: pusherName, + Email: pusherEmail, UserName: userName, }, Sender: payloadSender, - } - if err = PrepareWebhooks(repo, HOOK_EVENT_PUSH, p); err != nil { + }); err != nil { return fmt.Errorf("PrepareWebhooks: %v", err) } @@ -603,7 +602,7 @@ func mergePullRequestAction(e Engine, actUser *User, repo *Repository, pull *Iss ActUserName: actUser.Name, ActEmail: actUser.Email, OpType: ACTION_MERGE_PULL_REQUEST, - Content: fmt.Sprintf("%d|%s", pull.Index, pull.Name), + Content: fmt.Sprintf("%d|%s", pull.Index, pull.Title), RepoID: repo.ID, RepoUserName: repo.Owner.Name, RepoName: repo.Name, diff --git a/models/issue.go b/models/issue.go index 3d7e862c3..9d9d3db0a 100644 --- a/models/issue.go +++ b/models/issue.go @@ -16,6 +16,7 @@ import ( "github.com/Unknwon/com" "github.com/go-xorm/xorm" + api "github.com/gogits/go-gogs-client" gouuid "github.com/satori/go.uuid" "github.com/gogits/gogs/modules/base" @@ -31,10 +32,10 @@ var ( // Issue represents an issue or pull request of repository. type Issue struct { - ID int64 `xorm:"pk autoincr"` - RepoID int64 `xorm:"INDEX UNIQUE(repo_index)"` - Index int64 `xorm:"UNIQUE(repo_index)"` // Index in one repository. - Name string + ID int64 `xorm:"pk autoincr"` + RepoID int64 `xorm:"INDEX UNIQUE(repo_index)"` + Index int64 `xorm:"UNIQUE(repo_index)"` // Index in one repository. + Title string `xorm:"name"` Repo *Repository `xorm:"-"` PosterID int64 Poster *User `xorm:"-"` @@ -73,19 +74,6 @@ func (i *Issue) BeforeUpdate() { i.DeadlineUnix = i.Deadline.Unix() } -func (issue *Issue) loadAttributes(e Engine) (err error) { - issue.Repo, err = getRepositoryByID(e, issue.RepoID) - if err != nil { - return fmt.Errorf("getRepositoryByID: %v", err) - } - - return nil -} - -func (issue *Issue) LoadAttributes() error { - return issue.loadAttributes(x) -} - func (i *Issue) AfterSet(colName string, _ xorm.Cell) { var err error switch colName { @@ -110,7 +98,7 @@ func (i *Issue) AfterSet(colName string, _ xorm.Cell) { if err != nil { if IsErrUserNotExist(err) { i.PosterID = -1 - i.Poster = NewFakeUser() + i.Poster = NewGhostUser() } else { log.Error(3, "GetUserByID[%d]: %v", i.ID, err) } @@ -146,17 +134,80 @@ func (i *Issue) AfterSet(colName string, _ xorm.Cell) { } } -// HashTag returns unique hash tag for issue. -func (i *Issue) HashTag() string { - return "issue-" + com.ToStr(i.ID) +func (issue *Issue) loadAttributes(e Engine) (err error) { + if issue.Repo == nil { + issue.Repo, err = getRepositoryByID(e, issue.RepoID) + if err != nil { + return fmt.Errorf("getRepositoryByID [%d]: %v", issue.RepoID, err) + } + } + + if issue.IsPull && issue.PullRequest == nil { + // It is possible pull request is not yet created. + issue.PullRequest, err = getPullRequestByIssueID(e, issue.ID) + if err != nil && !IsErrPullRequestNotExist(err) { + return fmt.Errorf("getPullRequestByIssueID [%d]: %v", issue.ID, err) + } + } + + return nil +} + +func (issue *Issue) LoadAttributes() error { + return issue.loadAttributes(x) } // State returns string representation of issue status. -func (i *Issue) State() string { +func (i *Issue) State() api.StateType { if i.IsClosed { - return "closed" + return api.STATE_CLOSED } - return "open" + return api.STATE_OPEN +} + +// This method assumes some fields assigned with values: +// Required - Poster, Labels, +// Optional - Milestone, Assignee, PullRequest +func (issue *Issue) APIFormat() *api.Issue { + apiLabels := make([]*api.Label, len(issue.Labels)) + for i := range issue.Labels { + apiLabels[i] = issue.Labels[i].APIFormat() + } + + apiIssue := &api.Issue{ + ID: issue.ID, + Index: issue.Index, + State: issue.State(), + Title: issue.Title, + Body: issue.Content, + User: issue.Poster.APIFormat(), + Labels: apiLabels, + Comments: issue.NumComments, + Created: issue.Created, + Updated: issue.Updated, + } + + if issue.Milestone != nil { + apiIssue.Milestone = issue.Milestone.APIFormat() + } + if issue.Assignee != nil { + apiIssue.Assignee = issue.Assignee.APIFormat() + } + if issue.IsPull { + apiIssue.PullRequest = &api.PullRequestMeta{ + HasMerged: issue.PullRequest.HasMerged, + } + if issue.PullRequest.HasMerged { + apiIssue.PullRequest.Merged = &issue.PullRequest.Merged + } + } + + return apiIssue +} + +// HashTag returns unique hash tag for issue. +func (i *Issue) HashTag() string { + return "issue-" + com.ToStr(i.ID) } func (issue *Issue) FullLink() string { @@ -183,23 +234,37 @@ func (i *Issue) HasLabel(labelID int64) bool { return i.hasLabel(x, labelID) } +func (issue *Issue) sendLabelUpdatedWebhook(doer *User) { + var err error + if issue.IsPull { + issue.PullRequest.Issue = issue + err = PrepareWebhooks(issue.Repo, HOOK_EVENT_PULL_REQUEST, &api.PullRequestPayload{ + Action: api.HOOK_ISSUE_LABEL_UPDATED, + Index: issue.Index, + PullRequest: issue.PullRequest.APIFormat(), + Repository: issue.Repo.APIFormat(nil), + Sender: doer.APIFormat(), + }) + } + if err != nil { + log.Error(4, "PrepareWebhooks [is_pull: %v]: %v", issue.IsPull, err) + } else { + go HookQueue.Add(issue.RepoID) + } +} + func (i *Issue) addLabel(e *xorm.Session, label *Label) error { return newIssueLabel(e, i, label) } // AddLabel adds a new label to the issue. -func (i *Issue) AddLabel(label *Label) (err error) { - sess := x.NewSession() - defer sessionRelease(sess) - if err = sess.Begin(); err != nil { +func (issue *Issue) AddLabel(doer *User, label *Label) error { + if err := NewIssueLabel(issue, label); err != nil { return err } - if err = i.addLabel(sess, label); err != nil { - return err - } - - return sess.Commit() + issue.sendLabelUpdatedWebhook(doer) + return nil } func (issue *Issue) addLabels(e *xorm.Session, labels []*Label) error { @@ -207,8 +272,13 @@ func (issue *Issue) addLabels(e *xorm.Session, labels []*Label) error { } // AddLabels adds a list of new labels to the issue. -func (issue *Issue) AddLabels(labels []*Label) error { - return NewIssueLabels(issue, labels) +func (issue *Issue) AddLabels(doer *User, labels []*Label) error { + if err := NewIssueLabels(issue, labels); err != nil { + return err + } + + issue.sendLabelUpdatedWebhook(doer) + return nil } func (issue *Issue) getLabels(e Engine) (err error) { @@ -228,8 +298,13 @@ func (issue *Issue) removeLabel(e *xorm.Session, label *Label) error { } // RemoveLabel removes a label from issue by given ID. -func (issue *Issue) RemoveLabel(label *Label) (err error) { - return DeleteIssueLabel(issue, label) +func (issue *Issue) RemoveLabel(doer *User, label *Label) error { + if err := DeleteIssueLabel(issue, label); err != nil { + return err + } + + issue.sendLabelUpdatedWebhook(doer) + return nil } func (issue *Issue) clearLabels(e *xorm.Session) (err error) { @@ -246,7 +321,7 @@ func (issue *Issue) clearLabels(e *xorm.Session) (err error) { return nil } -func (issue *Issue) ClearLabels() (err error) { +func (issue *Issue) ClearLabels(doer *User) (err error) { sess := x.NewSession() defer sessionRelease(sess) if err = sess.Begin(); err != nil { @@ -257,7 +332,27 @@ func (issue *Issue) ClearLabels() (err error) { return err } - return sess.Commit() + if err = sess.Commit(); err != nil { + return fmt.Errorf("Commit: %v", err) + } + + if issue.IsPull { + issue.PullRequest.Issue = issue + err = PrepareWebhooks(issue.Repo, HOOK_EVENT_PULL_REQUEST, &api.PullRequestPayload{ + Action: api.HOOK_ISSUE_LABEL_CLEARED, + Index: issue.Index, + PullRequest: issue.PullRequest.APIFormat(), + Repository: issue.Repo.APIFormat(nil), + Sender: doer.APIFormat(), + }) + } + if err != nil { + log.Error(4, "PrepareWebhooks [is_pull: %v]: %v", issue.IsPull, err) + } else { + go HookQueue.Add(issue.RepoID) + } + + return nil } // ReplaceLabels removes all current labels and add new labels to the issue. @@ -294,6 +389,16 @@ func (i *Issue) ReadBy(uid int64) error { return UpdateIssueUserByRead(uid, i.ID) } +func updateIssueCols(e Engine, issue *Issue, cols ...string) error { + _, err := e.Id(issue.ID).Cols(cols...).Update(issue) + return err +} + +// UpdateIssueCols only updates values of specific columns for given issue. +func UpdateIssueCols(issue *Issue, cols ...string) error { + return updateIssueCols(x, issue, cols...) +} + func (i *Issue) changeStatus(e *xorm.Session, doer *User, repo *Repository, isClosed bool) (err error) { // Nothing should be performed if current status is same as target status if i.IsClosed == isClosed { @@ -336,32 +441,149 @@ func (i *Issue) changeStatus(e *xorm.Session, doer *User, repo *Repository, isCl } // ChangeStatus changes issue status to open or closed. -func (i *Issue) ChangeStatus(doer *User, repo *Repository, isClosed bool) (err error) { +func (issue *Issue) ChangeStatus(doer *User, repo *Repository, isClosed bool) (err error) { sess := x.NewSession() defer sessionRelease(sess) if err = sess.Begin(); err != nil { return err } - if err = i.changeStatus(sess, doer, repo, isClosed); err != nil { + if err = issue.changeStatus(sess, doer, repo, isClosed); err != nil { return err } - return sess.Commit() + if err = sess.Commit(); err != nil { + return fmt.Errorf("Commit: %v", err) + } + + if issue.IsPull { + // Merge pull request calls issue.changeStatus so we need to handle separately. + issue.PullRequest.Issue = issue + apiPullRequest := &api.PullRequestPayload{ + Index: issue.Index, + PullRequest: issue.PullRequest.APIFormat(), + Repository: repo.APIFormat(nil), + Sender: doer.APIFormat(), + } + if isClosed { + apiPullRequest.Action = api.HOOK_ISSUE_CLOSED + } else { + apiPullRequest.Action = api.HOOK_ISSUE_REOPENED + } + err = PrepareWebhooks(repo, HOOK_EVENT_PULL_REQUEST, apiPullRequest) + } + if err != nil { + log.Error(4, "PrepareWebhooks [is_pull: %v, is_closed: %v]: %v", issue.IsPull, isClosed, err) + } else { + go HookQueue.Add(repo.ID) + } + + return nil +} + +func (issue *Issue) ChangeTitle(doer *User, title string) (err error) { + oldTitle := issue.Title + issue.Title = title + if err = UpdateIssueCols(issue, "name"); err != nil { + return fmt.Errorf("UpdateIssueCols: %v", err) + } + + if issue.IsPull { + issue.PullRequest.Issue = issue + err = PrepareWebhooks(issue.Repo, HOOK_EVENT_PULL_REQUEST, &api.PullRequestPayload{ + Action: api.HOOK_ISSUE_EDITED, + Index: issue.Index, + Changes: &api.ChangesPayload{ + Title: &api.ChangesFromPayload{ + From: oldTitle, + }, + }, + PullRequest: issue.PullRequest.APIFormat(), + Repository: issue.Repo.APIFormat(nil), + Sender: doer.APIFormat(), + }) + } + if err != nil { + log.Error(4, "PrepareWebhooks [is_pull: %v]: %v", issue.IsPull, err) + } else { + go HookQueue.Add(issue.RepoID) + } + + return nil } -func (i *Issue) GetPullRequest() (err error) { - if i.PullRequest != nil { +func (issue *Issue) ChangeContent(doer *User, content string) (err error) { + oldContent := issue.Content + issue.Content = content + if err = UpdateIssueCols(issue, "content"); err != nil { + return fmt.Errorf("UpdateIssueCols: %v", err) + } + + if issue.IsPull { + issue.PullRequest.Issue = issue + err = PrepareWebhooks(issue.Repo, HOOK_EVENT_PULL_REQUEST, &api.PullRequestPayload{ + Action: api.HOOK_ISSUE_EDITED, + Index: issue.Index, + Changes: &api.ChangesPayload{ + Body: &api.ChangesFromPayload{ + From: oldContent, + }, + }, + PullRequest: issue.PullRequest.APIFormat(), + Repository: issue.Repo.APIFormat(nil), + Sender: doer.APIFormat(), + }) + } + if err != nil { + log.Error(4, "PrepareWebhooks [is_pull: %v]: %v", issue.IsPull, err) + } else { + go HookQueue.Add(issue.RepoID) + } + + return nil +} + +func (issue *Issue) ChangeAssignee(doer *User, assigneeID int64) (err error) { + issue.AssigneeID = assigneeID + if err = UpdateIssueUserByAssignee(issue); err != nil { + return fmt.Errorf("UpdateIssueUserByAssignee: %v", err) + } + + issue.Assignee, err = GetUserByID(issue.AssigneeID) + if err != nil && !IsErrUserNotExist(err) { + log.Error(4, "GetUserByID [assignee_id: %v]: %v", issue.AssigneeID, err) return nil } - i.PullRequest, err = GetPullRequestByIssueID(i.ID) - return err + // Error not nil here means user does not exist, which is remove assignee. + isRemoveAssignee := err != nil + if issue.IsPull { + issue.PullRequest.Issue = issue + apiPullRequest := &api.PullRequestPayload{ + Index: issue.Index, + PullRequest: issue.PullRequest.APIFormat(), + Repository: issue.Repo.APIFormat(nil), + Sender: doer.APIFormat(), + } + if isRemoveAssignee { + apiPullRequest.Action = api.HOOK_ISSUE_UNASSIGNED + } else { + apiPullRequest.Action = api.HOOK_ISSUE_ASSIGNED + } + err = PrepareWebhooks(issue.Repo, HOOK_EVENT_PULL_REQUEST, apiPullRequest) + } + if err != nil { + log.Error(4, "PrepareWebhooks [is_pull: %v, remove_assignee: %v]: %v", issue.IsPull, isRemoveAssignee, err) + } else { + go HookQueue.Add(issue.RepoID) + } + + return nil } // It's caller's responsibility to create action. func newIssue(e *xorm.Session, repo *Repository, issue *Issue, labelIDs []int64, uuids []string, isPull bool) (err error) { - issue.Name = strings.TrimSpace(issue.Name) + issue.Title = strings.TrimSpace(issue.Title) issue.Index = repo.NextIssueIndex() if issue.AssigneeID > 0 { @@ -462,7 +684,7 @@ func NewIssue(repo *Repository, issue *Issue, labelIDs []int64, uuids []string) ActUserName: issue.Poster.Name, ActEmail: issue.Poster.Email, OpType: ACTION_CREATE_ISSUE, - Content: fmt.Sprintf("%d|%s", issue.Index, issue.Name), + Content: fmt.Sprintf("%d|%s", issue.Index, issue.Title), RepoID: repo.ID, RepoUserName: repo.Owner.Name, RepoName: repo.Name, @@ -518,10 +740,9 @@ func GetIssueByIndex(repoID, index int64) (*Issue, error) { return issue, issue.LoadAttributes() } -// GetIssueByID returns an issue by given ID. -func GetIssueByID(id int64) (*Issue, error) { +func getIssueByID(e Engine, id int64) (*Issue, error) { issue := new(Issue) - has, err := x.Id(id).Get(issue) + has, err := e.Id(id).Get(issue) if err != nil { return nil, err } else if !has { @@ -530,6 +751,11 @@ func GetIssueByID(id int64) (*Issue, error) { return issue, issue.LoadAttributes() } +// GetIssueByID returns an issue by given ID. +func GetIssueByID(id int64) (*Issue, error) { + return getIssueByID(x, id) +} + type IssuesOptions struct { UserID int64 AssigneeID int64 @@ -970,12 +1196,6 @@ func UpdateIssue(issue *Issue) error { return updateIssue(x, issue) } -// updateIssueCols only updates values of specific columns for given issue. -func updateIssueCols(e Engine, issue *Issue, cols ...string) error { - _, err := e.Id(issue.ID).Cols(cols...).Update(issue) - return err -} - func updateIssueUsersByStatus(e Engine, issueID int64, isClosed bool) error { _, err := e.Exec("UPDATE `issue_user` SET is_closed=? WHERE issue_id=?", isClosed, issueID) return err @@ -987,13 +1207,13 @@ func UpdateIssueUsersByStatus(issueID int64, isClosed bool) error { } func updateIssueUserByAssignee(e *xorm.Session, issue *Issue) (err error) { - if _, err = e.Exec("UPDATE `issue_user` SET is_assigned=? WHERE issue_id=?", false, issue.ID); err != nil { + if _, err = e.Exec("UPDATE `issue_user` SET is_assigned = ? WHERE issue_id = ?", false, issue.ID); err != nil { return err } // Assignee ID equals to 0 means clear assignee. if issue.AssigneeID > 0 { - if _, err = e.Exec("UPDATE `issue_user` SET is_assigned=? WHERE uid=? AND issue_id=?", true, issue.AssigneeID, issue.ID); err != nil { + if _, err = e.Exec("UPDATE `issue_user` SET is_assigned = ? WHERE uid = ? AND issue_id = ?", true, issue.AssigneeID, issue.ID); err != nil { return err } } @@ -1112,11 +1332,29 @@ func (m *Milestone) AfterSet(colName string, _ xorm.Cell) { } // State returns string representation of milestone status. -func (m *Milestone) State() string { +func (m *Milestone) State() api.StateType { if m.IsClosed { - return "closed" + return api.STATE_CLOSED + } + return api.STATE_OPEN +} + +func (m *Milestone) APIFormat() *api.Milestone { + apiMilestone := &api.Milestone{ + ID: m.ID, + State: m.State(), + Title: m.Name, + Description: m.Content, + OpenIssues: m.NumOpenIssues, + ClosedIssues: m.NumClosedIssues, + } + if m.IsClosed { + apiMilestone.Closed = &m.ClosedDate + } + if m.Deadline.Year() < 9999 { + apiMilestone.Deadline = &m.Deadline } - return "open" + return apiMilestone } // NewMilestone creates new milestone of repository. diff --git a/models/issue_comment.go b/models/issue_comment.go index e9857b421..919406093 100644 --- a/models/issue_comment.go +++ b/models/issue_comment.go @@ -86,7 +86,7 @@ func (c *Comment) AfterSet(colName string, _ xorm.Cell) { if err != nil { if IsErrUserNotExist(err) { c.PosterID = -1 - c.Poster = NewFakeUser() + c.Poster = NewGhostUser() } else { log.Error(3, "GetUserByID[%d]: %v", c.ID, err) } diff --git a/models/issue_label.go b/models/issue_label.go index ed9b61601..a3015b02c 100644 --- a/models/issue_label.go +++ b/models/issue_label.go @@ -12,6 +12,8 @@ import ( "github.com/go-xorm/xorm" + api "github.com/gogits/go-gogs-client" + "github.com/gogits/gogs/modules/base" ) @@ -27,9 +29,17 @@ type Label struct { IsChecked bool `xorm:"-"` } +func (label *Label) APIFormat() *api.Label { + return &api.Label{ + ID: label.ID, + Name: label.Name, + Color: label.Color, + } +} + // CalOpenIssues calculates the open issues of label. -func (m *Label) CalOpenIssues() { - m.NumOpenIssues = m.NumIssues - m.NumClosedIssues +func (label *Label) CalOpenIssues() { + label.NumOpenIssues = label.NumIssues - label.NumClosedIssues } // ForegroundColor calculates the text color for labels based diff --git a/models/issue_mail.go b/models/issue_mail.go index 5441a4546..02548bc3e 100644 --- a/models/issue_mail.go +++ b/models/issue_mail.go @@ -15,7 +15,7 @@ import ( ) func (issue *Issue) MailSubject() string { - return fmt.Sprintf("[%s] %s (#%d)", issue.Repo.Name, issue.Name, issue.Index) + return fmt.Sprintf("[%s] %s (#%d)", issue.Repo.Name, issue.Title, issue.Index) } // mailIssueCommentToParticipants can be used for both new issue creation and comment. diff --git a/models/pull.go b/models/pull.go index 1710bff6b..4a2a37670 100644 --- a/models/pull.go +++ b/models/pull.go @@ -68,7 +68,7 @@ func (pr *PullRequest) BeforeUpdate() { pr.MergedUnix = pr.Merged.Unix() } -// Note: don't try to get Pull because will end up recursive querying. +// Note: don't try to get Issue because will end up recursive querying. func (pr *PullRequest) AfterSet(colName string, _ xorm.Cell) { switch colName { case "merged_unix": @@ -80,6 +80,62 @@ func (pr *PullRequest) AfterSet(colName string, _ xorm.Cell) { } } +// Note: don't try to get Issue because will end up recursive querying. +func (pr *PullRequest) loadAttributes(e Engine) (err error) { + if pr.HasMerged && pr.Merger == nil { + pr.Merger, err = getUserByID(e, pr.MergerID) + if IsErrUserNotExist(err) { + pr.MergerID = -1 + pr.Merger = NewGhostUser() + } else if err != nil { + return fmt.Errorf("getUserByID [%d]: %v", pr.MergerID, err) + } + } + + return nil +} + +func (pr *PullRequest) LoadAttributes() error { + return pr.loadAttributes(x) +} + +func (pr *PullRequest) LoadIssue() (err error) { + pr.Issue, err = GetIssueByID(pr.IssueID) + return err +} + +// This method assumes following fields have been assigned with valid values: +// Required - Issue +// Optional - Merger +func (pr *PullRequest) APIFormat() *api.PullRequest { + apiIssue := pr.Issue.APIFormat() + apiPullRequest := &api.PullRequest{ + ID: pr.ID, + Index: pr.Index, + State: apiIssue.State, + Title: apiIssue.Title, + Body: apiIssue.Body, + User: apiIssue.User, + Labels: apiIssue.Labels, + Milestone: apiIssue.Milestone, + Assignee: apiIssue.Assignee, + Comments: apiIssue.Comments, + HasMerged: pr.HasMerged, + } + + if pr.Status != PULL_REQUEST_STATUS_CHECKING { + mergeable := pr.Status != PULL_REQUEST_STATUS_CONFLICT + apiPullRequest.Mergeable = &mergeable + } + if pr.HasMerged { + apiPullRequest.Merged = &pr.Merged + apiPullRequest.MergedCommitID = &pr.MergedCommitID + apiPullRequest.MergedBy = pr.Merger.APIFormat() + } + + return apiPullRequest +} + func (pr *PullRequest) getHeadRepo(e Engine) (err error) { pr.HeadRepo, err = getRepositoryByID(e, pr.HeadRepoID) if err != nil && !IsErrRepoNotExist(err) { @@ -88,7 +144,7 @@ func (pr *PullRequest) getHeadRepo(e Engine) (err error) { return nil } -func (pr *PullRequest) GetHeadRepo() (err error) { +func (pr *PullRequest) GetHeadRepo() error { return pr.getHeadRepo(x) } @@ -104,21 +160,6 @@ func (pr *PullRequest) GetBaseRepo() (err error) { return nil } -func (pr *PullRequest) GetMerger() (err error) { - if !pr.HasMerged || pr.Merger != nil { - return nil - } - - pr.Merger, err = GetUserByID(pr.MergerID) - if IsErrUserNotExist(err) { - pr.MergerID = -1 - pr.Merger = NewFakeUser() - } else if err != nil { - return fmt.Errorf("GetUserByID: %v", err) - } - return nil -} - // IsChecking returns true if this pull request is still checking conflict. func (pr *PullRequest) IsChecking() bool { return pr.Status == PULL_REQUEST_STATUS_CHECKING @@ -130,6 +171,7 @@ func (pr *PullRequest) CanAutoMerge() bool { } // Merge merges pull request to base repository. +// FIXME: add repoWorkingPull make sure two merges does not happen at same time. func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error) { if err = pr.GetHeadRepo(); err != nil { return fmt.Errorf("GetHeadRepo: %v", err) @@ -137,6 +179,11 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error return fmt.Errorf("GetBaseRepo: %v", err) } + defer func() { + go HookQueue.Add(pr.BaseRepo.ID) + go AddTestPullRequestTask(doer, pr.BaseRepo.ID, pr.BaseBranch, false) + }() + sess := x.NewSession() defer sessionRelease(sess) if err = sess.Begin(); err != nil { @@ -152,21 +199,6 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error if err != nil { return fmt.Errorf("OpenRepository: %v", err) } - pr.MergedCommitID, err = headGitRepo.GetBranchCommitID(pr.HeadBranch) - if err != nil { - return fmt.Errorf("GetBranchCommitID: %v", err) - } - - if err = mergePullRequestAction(sess, doer, pr.Issue.Repo, pr.Issue); err != nil { - return fmt.Errorf("mergePullRequestAction: %v", err) - } - - pr.HasMerged = true - pr.Merged = time.Now() - pr.MergerID = doer.ID - if _, err = sess.Id(pr.ID).AllCols().Update(pr); err != nil { - return fmt.Errorf("update pull request: %v", err) - } // Clone base repo. tmpBasePath := path.Join(setting.AppDataPath, "tmp/repos", com.ToStr(time.Now().Nanosecond())+".git") @@ -222,15 +254,59 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error return fmt.Errorf("git push: %s", stderr) } + pr.MergedCommitID, err = headGitRepo.GetBranchCommitID(pr.HeadBranch) + if err != nil { + return fmt.Errorf("GetBranchCommit: %v", err) + } + + pr.HasMerged = true + pr.Merged = time.Now() + pr.MergerID = doer.ID + if _, err = sess.Id(pr.ID).AllCols().Update(pr); err != nil { + return fmt.Errorf("update pull request: %v", err) + } + if err = sess.Commit(); err != nil { return fmt.Errorf("Commit: %v", err) } - // Compose commit repository action + if err = MergePullRequestAction(doer, pr.Issue.Repo, pr.Issue); err != nil { + log.Error(4, "MergePullRequestAction [%d]: %v", pr.ID, err) + } + + // Reload pull request information. + if err = pr.LoadAttributes(); err != nil { + log.Error(4, "LoadAttributes: %v", err) + return nil + } + if err = PrepareWebhooks(pr.Issue.Repo, HOOK_EVENT_PULL_REQUEST, &api.PullRequestPayload{ + Action: api.HOOK_ISSUE_CLOSED, + Index: pr.Index, + PullRequest: pr.APIFormat(), + Repository: pr.Issue.Repo.APIFormat(nil), + Sender: doer.APIFormat(), + }); err != nil { + log.Error(4, "PrepareWebhooks: %v", err) + return nil + } + l, err := headGitRepo.CommitsBetweenIDs(pr.MergedCommitID, pr.MergeBase) if err != nil { - return fmt.Errorf("CommitsBetween: %v", err) + log.Error(4, "CommitsBetweenIDs: %v", err) + return nil + } + + // TODO: when squash commits, no need to append merge commit. + // It is possible that head branch is not fully sync with base branch for merge commits, + // so we need to get latest head commit and append merge commit manully + // to avoid strange diff commits produced. + mergeCommit, err := baseGitRepo.GetBranchCommit(pr.BaseBranch) + if err != nil { + log.Error(4, "GetBranchCommit: %v", err) + return nil } + l.PushFront(mergeCommit) + p := &api.PushPayload{ Ref: "refs/heads/" + pr.BaseBranch, Before: pr.MergeBase, @@ -252,8 +328,6 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error if err = PrepareWebhooks(pr.BaseRepo, HOOK_EVENT_PUSH, p); err != nil { return fmt.Errorf("PrepareWebhooks: %v", err) } - go HookQueue.Add(pr.BaseRepo.ID) - go AddTestPullRequestTask(pr.BaseRepo.ID, pr.BaseBranch) return nil } @@ -331,19 +405,6 @@ func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []str return fmt.Errorf("newIssue: %v", err) } - // Notify watchers. - act := &Action{ - ActUserID: pull.Poster.ID, - ActUserName: pull.Poster.Name, - ActEmail: pull.Poster.Email, - OpType: ACTION_CREATE_PULL_REQUEST, - Content: fmt.Sprintf("%d|%s", pull.Index, pull.Name), - RepoID: repo.ID, - RepoUserName: repo.Owner.Name, - RepoName: repo.Name, - IsPrivate: repo.IsPrivate, - } - pr.Index = pull.Index if err = repo.SavePatch(pr.Index, patch); err != nil { return fmt.Errorf("SavePatch: %v", err) @@ -353,6 +414,7 @@ func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []str if err = pr.testPatch(); err != nil { return fmt.Errorf("testPatch: %v", err) } + // No conflict appears after test means mergeable. if pr.Status == PULL_REQUEST_STATUS_CHECKING { pr.Status = PULL_REQUEST_STATUS_MERGEABLE } @@ -366,12 +428,35 @@ func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []str return fmt.Errorf("Commit: %v", err) } - if err = NotifyWatchers(act); err != nil { + if err = NotifyWatchers(&Action{ + ActUserID: pull.Poster.ID, + ActUserName: pull.Poster.Name, + ActEmail: pull.Poster.Email, + OpType: ACTION_CREATE_PULL_REQUEST, + Content: fmt.Sprintf("%d|%s", pull.Index, pull.Title), + RepoID: repo.ID, + RepoUserName: repo.Owner.Name, + RepoName: repo.Name, + IsPrivate: repo.IsPrivate, + }); err != nil { log.Error(4, "NotifyWatchers: %v", err) } else if err = pull.MailParticipants(); err != nil { log.Error(4, "MailParticipants: %v", err) } + pr.Issue = pull + pull.PullRequest = pr + if err = PrepareWebhooks(repo, HOOK_EVENT_PULL_REQUEST, &api.PullRequestPayload{ + Action: api.HOOK_ISSUE_OPENED, + Index: pull.Index, + PullRequest: pr.APIFormat(), + Repository: repo.APIFormat(nil), + Sender: pull.Poster.APIFormat(), + }); err != nil { + log.Error(4, "PrepareWebhooks: %v", err) + } + go HookQueue.Add(repo.ID) + return nil } @@ -395,9 +480,9 @@ func GetUnmergedPullRequest(headRepoID, baseRepoID int64, headBranch, baseBranch // by given head information (repo and branch). func GetUnmergedPullRequestsByHeadInfo(repoID int64, branch string) ([]*PullRequest, error) { prs := make([]*PullRequest, 0, 2) - return prs, x.Where("head_repo_id=? AND head_branch=? AND has_merged=? AND issue.is_closed=?", + return prs, x.Where("head_repo_id = ? AND head_branch = ? AND has_merged = ? AND issue.is_closed = ?", repoID, branch, false, false). - Join("INNER", "issue", "issue.id=pull_request.issue_id").Find(&prs) + Join("INNER", "issue", "issue.id = pull_request.issue_id").Find(&prs) } // GetUnmergedPullRequestsByBaseInfo returnss all pull requests that are open and has not been merged @@ -409,30 +494,38 @@ func GetUnmergedPullRequestsByBaseInfo(repoID int64, branch string) ([]*PullRequ Join("INNER", "issue", "issue.id=pull_request.issue_id").Find(&prs) } -// GetPullRequestByID returns a pull request by given ID. -func GetPullRequestByID(id int64) (*PullRequest, error) { +func getPullRequestByID(e Engine, id int64) (*PullRequest, error) { pr := new(PullRequest) - has, err := x.Id(id).Get(pr) + has, err := e.Id(id).Get(pr) if err != nil { return nil, err } else if !has { return nil, ErrPullRequestNotExist{id, 0, 0, 0, "", ""} } - return pr, nil + return pr, pr.loadAttributes(e) } -// GetPullRequestByIssueID returns pull request by given issue ID. -func GetPullRequestByIssueID(issueID int64) (*PullRequest, error) { +// GetPullRequestByID returns a pull request by given ID. +func GetPullRequestByID(id int64) (*PullRequest, error) { + return getPullRequestByID(x, id) +} + +func getPullRequestByIssueID(e Engine, issueID int64) (*PullRequest, error) { pr := &PullRequest{ IssueID: issueID, } - has, err := x.Get(pr) + has, err := e.Get(pr) if err != nil { return nil, err } else if !has { return nil, ErrPullRequestNotExist{0, issueID, 0, 0, "", ""} } - return pr, nil + return pr, pr.loadAttributes(e) +} + +// GetPullRequestByIssueID returns pull request by given issue ID. +func GetPullRequestByIssueID(issueID int64) (*PullRequest, error) { + return getPullRequestByIssueID(x, issueID) } // Update updates all fields of pull request. @@ -536,6 +629,37 @@ func (pr *PullRequest) AddToTaskQueue() { }) } +type PullRequestList []*PullRequest + +func (prs PullRequestList) loadAttributes(e Engine) error { + if len(prs) == 0 { + return nil + } + + // Load issues. + issueIDs := make([]int64, 0, len(prs)) + for i := range prs { + issueIDs = append(issueIDs, prs[i].IssueID) + } + issues := make([]*Issue, 0, len(issueIDs)) + if err := e.Where("id > 0").In("id", issueIDs).Find(&issues); err != nil { + return fmt.Errorf("find issues: %v", err) + } + + set := make(map[int64]*Issue) + for i := range issues { + set[issues[i].ID] = issues[i] + } + for i := range prs { + prs[i].Issue = set[prs[i].IssueID] + } + return nil +} + +func (prs PullRequestList) LoadAttributes() error { + return prs.loadAttributes(x) +} + func addHeadRepoTasks(prs []*PullRequest) { for _, pr := range prs { log.Trace("addHeadRepoTasks[%d]: composing new test task", pr.ID) @@ -553,19 +677,47 @@ func addHeadRepoTasks(prs []*PullRequest) { // AddTestPullRequestTask adds new test tasks by given head/base repository and head/base branch, // and generate new patch for testing as needed. -func AddTestPullRequestTask(repoID int64, branch string) { - log.Trace("AddTestPullRequestTask[head_repo_id: %d, head_branch: %s]: finding pull requests", repoID, branch) +func AddTestPullRequestTask(doer *User, repoID int64, branch string, isSync bool) { + log.Trace("AddTestPullRequestTask [head_repo_id: %d, head_branch: %s]: finding pull requests", repoID, branch) prs, err := GetUnmergedPullRequestsByHeadInfo(repoID, branch) if err != nil { - log.Error(4, "Find pull requests[head_repo_id: %d, head_branch: %s]: %v", repoID, branch, err) + log.Error(4, "Find pull requests [head_repo_id: %d, head_branch: %s]: %v", repoID, branch, err) return } + + if isSync { + if err = PullRequestList(prs).LoadAttributes(); err != nil { + log.Error(4, "PullRequestList.LoadAttributes: %v", err) + } + + if err == nil { + for _, pr := range prs { + pr.Issue.PullRequest = pr + if err = pr.Issue.LoadAttributes(); err != nil { + log.Error(4, "LoadAttributes: %v", err) + continue + } + if err = PrepareWebhooks(pr.Issue.Repo, HOOK_EVENT_PULL_REQUEST, &api.PullRequestPayload{ + Action: api.HOOK_ISSUE_SYNCHRONIZED, + Index: pr.Issue.Index, + PullRequest: pr.Issue.PullRequest.APIFormat(), + Repository: pr.Issue.Repo.APIFormat(nil), + Sender: doer.APIFormat(), + }); err != nil { + log.Error(4, "PrepareWebhooks [pull_id: %v]: %v", pr.ID, err) + continue + } + go HookQueue.Add(pr.Issue.Repo.ID) + } + } + } + addHeadRepoTasks(prs) - log.Trace("AddTestPullRequestTask[base_repo_id: %d, base_branch: %s]: finding pull requests", repoID, branch) + log.Trace("AddTestPullRequestTask [base_repo_id: %d, base_branch: %s]: finding pull requests", repoID, branch) prs, err = GetUnmergedPullRequestsByBaseInfo(repoID, branch) if err != nil { - log.Error(4, "Find pull requests[base_repo_id: %d, base_branch: %s]: %v", repoID, branch, err) + log.Error(4, "Find pull requests [base_repo_id: %d, base_branch: %s]: %v", repoID, branch, err) return } for _, pr := range prs { diff --git a/models/repo.go b/models/repo.go index afa8d23b2..ef8cd3437 100644 --- a/models/repo.go +++ b/models/repo.go @@ -216,6 +216,48 @@ func (repo *Repository) AfterSet(colName string, _ xorm.Cell) { } } +// MustOwner always returns a valid *User object to avoid +// conceptually impossible error handling. +// It creates a fake object that contains error deftail +// when error occurs. +func (repo *Repository) MustOwner() *User { + return repo.mustOwner(x) +} + +func (repo *Repository) FullName() string { + return repo.MustOwner().Name + "/" + repo.Name +} + +func (repo *Repository) FullLink() string { + return setting.AppUrl + repo.FullName() +} + +// Arguments that are allowed to be nil: permission +func (repo *Repository) APIFormat(permission *api.Permission) *api.Repository { + cloneLink := repo.CloneLink() + return &api.Repository{ + ID: repo.ID, + Owner: repo.Owner.APIFormat(), + Name: repo.Name, + FullName: repo.FullName(), + Description: repo.Description, + Private: repo.IsPrivate, + Fork: repo.IsFork, + HTMLURL: repo.FullLink(), + SSHURL: cloneLink.SSH, + CloneURL: cloneLink.HTTPS, + Website: repo.Website, + Stars: repo.NumStars, + Forks: repo.NumForks, + Watchers: repo.NumWatches, + OpenIssues: repo.NumOpenIssues, + DefaultBranch: repo.DefaultBranch, + Created: repo.Created, + Updated: repo.Updated, + Permissions: permission, + } +} + func (repo *Repository) getOwner(e Engine) (err error) { if repo.Owner != nil { return nil @@ -240,14 +282,6 @@ func (repo *Repository) mustOwner(e Engine) *User { return repo.Owner } -// MustOwner always returns a valid *User object to avoid -// conceptually impossible error handling. -// It creates a fake object that contains error deftail -// when error occurs. -func (repo *Repository) MustOwner() *User { - return repo.mustOwner(x) -} - // ComposeMetas composes a map of metas for rendering external issue tracker URL. func (repo *Repository) ComposeMetas() map[string]string { if !repo.EnableExternalTracker { @@ -357,10 +391,6 @@ func (repo *Repository) ComposeCompareURL(oldCommitID, newCommitID string) strin return fmt.Sprintf("%s/%s/compare/%s...%s", repo.MustOwner().Name, repo.Name, oldCommitID, newCommitID) } -func (repo *Repository) FullLink() string { - return setting.AppUrl + repo.MustOwner().Name + "/" + repo.Name -} - func (repo *Repository) HasAccess(u *User) bool { has, _ := HasAccess(u, repo, ACCESS_MODE_READ) return has diff --git a/models/user.go b/models/user.go index d08b1cc8f..7ec5e12b2 100644 --- a/models/user.go +++ b/models/user.go @@ -25,6 +25,7 @@ import ( "github.com/nfnt/resize" "github.com/gogits/git-module" + api "github.com/gogits/go-gogs-client" "github.com/gogits/gogs/modules/avatar" "github.com/gogits/gogs/modules/base" @@ -130,6 +131,16 @@ func (u *User) AfterSet(colName string, _ xorm.Cell) { } } +func (u *User) APIFormat() *api.User { + return &api.User{ + ID: u.ID, + UserName: u.Name, + FullName: u.FullName, + Email: u.Email, + AvatarUrl: u.AvatarLink(), + } +} + // returns true if user login type is LOGIN_PLAIN. func (u *User) IsLocal() bool { return u.LoginType <= LOGIN_PLAIN @@ -468,12 +479,12 @@ func GetUserSalt() string { return base.GetRandomString(10) } -// NewFakeUser creates and returns a fake user for someone has deleted his/her account. -func NewFakeUser() *User { +// NewGhostUser creates and returns a fake user for someone has deleted his/her account. +func NewGhostUser() *User { return &User{ ID: -1, - Name: "Someone", - LowerName: "someone", + Name: "Ghost", + LowerName: "ghost", } } diff --git a/models/webhook.go b/models/webhook.go index 79d60da3a..ad4ac189b 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -58,8 +58,9 @@ func IsValidHookContentType(name string) bool { } type HookEvents struct { - Create bool `json:"create"` - Push bool `json:"push"` + Create bool `json:"create"` + Push bool `json:"push"` + PullRequest bool `json:"pull_request"` } // HookEvent represents events that will delivery hook. @@ -157,6 +158,12 @@ func (w *Webhook) HasPushEvent() bool { (w.ChooseEvents && w.HookEvents.Push) } +// HasPullRequestEvent returns true if hook enabled pull request event. +func (w *Webhook) HasPullRequestEvent() bool { + return w.SendEverything || + (w.ChooseEvents && w.HookEvents.PullRequest) +} + func (w *Webhook) EventsArray() []string { events := make([]string, 0, 2) if w.HasCreateEvent() { @@ -309,8 +316,9 @@ func IsValidHookTaskType(name string) bool { type HookEventType string const ( - HOOK_EVENT_CREATE HookEventType = "create" - HOOK_EVENT_PUSH HookEventType = "push" + HOOK_EVENT_CREATE HookEventType = "create" + HOOK_EVENT_PUSH HookEventType = "push" + HOOK_EVENT_PULL_REQUEST HookEventType = "pull_request" ) // HookRequest represents hook task request information. @@ -422,17 +430,13 @@ func UpdateHookTask(t *HookTask) error { // PrepareWebhooks adds new webhooks to task queue for given payload. func PrepareWebhooks(repo *Repository, event HookEventType, p api.Payloader) error { - if err := repo.GetOwner(); err != nil { - return fmt.Errorf("GetOwner: %v", err) - } - ws, err := GetActiveWebhooksByRepoID(repo.ID) if err != nil { return fmt.Errorf("GetActiveWebhooksByRepoID: %v", err) } // check if repo belongs to org and append additional webhooks - if repo.Owner.IsOrganization() { + if repo.MustOwner().IsOrganization() { // get hooks for org orgws, err := GetActiveWebhooksByOrgID(repo.OwnerID) if err != nil { @@ -456,6 +460,10 @@ func PrepareWebhooks(repo *Repository, event HookEventType, p api.Payloader) err if !w.HasPushEvent() { continue } + case HOOK_EVENT_PULL_REQUEST: + if !w.HasPullRequestEvent() { + continue + } } // Use separate objects so modifcations won't be made on payload on non-Gogs type hooks. @@ -477,7 +485,7 @@ func PrepareWebhooks(repo *Repository, event HookEventType, p api.Payloader) err URL: w.URL, Payloader: payloader, ContentType: w.ContentType, - EventType: HOOK_EVENT_PUSH, + EventType: event, IsSSL: w.IsSSL, }); err != nil { return fmt.Errorf("CreateHookTask: %v", err) diff --git a/models/webhook_slack.go b/models/webhook_slack.go index e41bbbc79..5578c816a 100644 --- a/models/webhook_slack.go +++ b/models/webhook_slack.go @@ -12,6 +12,8 @@ import ( "github.com/gogits/git-module" api "github.com/gogits/go-gogs-client" + + "github.com/gogits/gogs/modules/setting" ) type SlackMeta struct { @@ -34,6 +36,7 @@ type SlackPayload struct { type SlackAttachment struct { Fallback string `json:"fallback"` Color string `json:"color"` + Title string `json:"title"` Text string `json:"text"` } @@ -49,13 +52,20 @@ func (p *SlackPayload) JSONPayload() ([]byte, error) { // see: https://api.slack.com/docs/formatting func SlackTextFormatter(s string) string { - // take only first line of commit - first := strings.Split(s, "\n")[0] // replace & < > - first = strings.Replace(first, "&", "&", -1) - first = strings.Replace(first, "<", "<", -1) - first = strings.Replace(first, ">", ">", -1) - return first + s = strings.Replace(s, "&", "&", -1) + s = strings.Replace(s, "<", "<", -1) + s = strings.Replace(s, ">", ">", -1) + return s +} + +func SlackShortTextFormatter(s string) string { + s = strings.Split(s, "\n")[0] + // replace & < > + s = strings.Replace(s, "&", "&", -1) + s = strings.Replace(s, "<", "<", -1) + s = strings.Replace(s, ">", ">", -1) + return s } func SlackLinkFormatter(url string, text string) string { @@ -104,24 +114,70 @@ func getSlackPushPayload(p *api.PushPayload, slack *SlackMeta) (*SlackPayload, e var attachmentText string // for each commit, generate attachment text for i, commit := range p.Commits { - attachmentText += fmt.Sprintf("%s: %s - %s", SlackLinkFormatter(commit.URL, commit.ID[:7]), SlackTextFormatter(commit.Message), SlackTextFormatter(commit.Author.Name)) + attachmentText += fmt.Sprintf("%s: %s - %s", SlackLinkFormatter(commit.URL, commit.ID[:7]), SlackShortTextFormatter(commit.Message), SlackTextFormatter(commit.Author.Name)) // add linebreak to each commit but the last if i < len(p.Commits)-1 { attachmentText += "\n" } } - slackAttachments := []SlackAttachment{{ - Color: slack.Color, - Text: attachmentText, - }} + return &SlackPayload{ + Channel: slack.Channel, + Text: text, + Username: slack.Username, + IconURL: slack.IconURL, + Attachments: []SlackAttachment{{ + Color: slack.Color, + Text: attachmentText, + }}, + }, nil +} + +func getSlackPullRequestPayload(p *api.PullRequestPayload, slack *SlackMeta) (*SlackPayload, error) { + senderLink := SlackLinkFormatter(setting.AppUrl+p.Sender.UserName, p.Sender.UserName) + titleLink := SlackLinkFormatter(fmt.Sprintf("%s/%d", setting.AppUrl+p.Repository.FullName+"/pulls", p.Index), + fmt.Sprintf("#%d %s", p.Index, p.PullRequest.Title)) + var text, title, attachmentText string + switch p.Action { + case api.HOOK_ISSUE_OPENED: + text = fmt.Sprintf("[%s] Pull request submitted by %s", p.Repository.FullName, senderLink) + title = titleLink + attachmentText = SlackTextFormatter(p.PullRequest.Body) + case api.HOOK_ISSUE_CLOSED: + if p.PullRequest.HasMerged { + text = fmt.Sprintf("[%s] Pull request merged: %s by %s", p.Repository.FullName, titleLink, senderLink) + } else { + text = fmt.Sprintf("[%s] Pull request closed: %s by %s", p.Repository.FullName, titleLink, senderLink) + } + case api.HOOK_ISSUE_REOPENED: + text = fmt.Sprintf("[%s] Pull request re-opened: %s by %s", p.Repository.FullName, titleLink, senderLink) + case api.HOOK_ISSUE_EDITED: + text = fmt.Sprintf("[%s] Pull request edited: %s by %s", p.Repository.FullName, titleLink, senderLink) + attachmentText = SlackTextFormatter(p.PullRequest.Body) + case api.HOOK_ISSUE_ASSIGNED: + text = fmt.Sprintf("[%s] Pull request assigned to %s: %s by %s", p.Repository.FullName, + SlackLinkFormatter(setting.AppUrl+p.PullRequest.Assignee.UserName, p.PullRequest.Assignee.UserName), + titleLink, senderLink) + case api.HOOK_ISSUE_UNASSIGNED: + text = fmt.Sprintf("[%s] Pull request unassigned: %s by %s", p.Repository.FullName, titleLink, senderLink) + case api.HOOK_ISSUE_LABEL_UPDATED: + text = fmt.Sprintf("[%s] Pull request labels updated: %s by %s", p.Repository.FullName, titleLink, senderLink) + case api.HOOK_ISSUE_LABEL_CLEARED: + text = fmt.Sprintf("[%s] Pull request labels cleared: %s by %s", p.Repository.FullName, titleLink, senderLink) + case api.HOOK_ISSUE_SYNCHRONIZED: + text = fmt.Sprintf("[%s] Pull request synchronized: %s by %s", p.Repository.FullName, titleLink, senderLink) + } return &SlackPayload{ - Channel: slack.Channel, - Text: text, - Username: slack.Username, - IconURL: slack.IconURL, - Attachments: slackAttachments, + Channel: slack.Channel, + Text: text, + Username: slack.Username, + IconURL: slack.IconURL, + Attachments: []SlackAttachment{{ + Color: slack.Color, + Title: title, + Text: attachmentText, + }}, }, nil } @@ -138,6 +194,8 @@ func GetSlackPayload(p api.Payloader, event HookEventType, meta string) (*SlackP return getSlackCreatePayload(p.(*api.CreatePayload), slack) case HOOK_EVENT_PUSH: return getSlackPushPayload(p.(*api.PushPayload), slack) + case HOOK_EVENT_PULL_REQUEST: + return getSlackPullRequestPayload(p.(*api.PullRequestPayload), slack) } return s, nil diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index e9ef2a236..179bc8916 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -113,10 +113,11 @@ func (f *RepoSettingForm) Validate(ctx *macaron.Context, errs binding.Errors) bi // \/ \/ \/ \/ \/ \/ type WebhookForm struct { - Events string - Create bool - Push bool - Active bool + Events string + Create bool + Push bool + PullRequest bool + Active bool } func (f WebhookForm) PushOnly() bool { diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 79988856f..38e982396 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -301,7 +301,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 12337, mode: os.FileMode(420), modTime: time.Unix(1470952001, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 12337, mode: os.FileMode(420), modTime: time.Unix(1470994320, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4346,7 +4346,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xfb\x92\xdb\x46\x92\x2f\xfc\x3f\x9e\x02\xd6\x84\x42\x52\x84\x44\x87\xc7\xfb\x5d\xc2\xe1\xcb\xd7\x6a\x59\x97\x5d\xb5\xd4\xab\x6e\x7b\xbe\x39\x0e\x05\x0d\x92\x68\x12\x2b\x12\xe0\x00\xa0\x5a\x3d\x13\xf3\x06\xe7\x01\xce\xf3\x9d\x27\x39\x99\xbf\xcc\xac\xca\x02\xc0\x6e\xc9\xb3\xfa\x43\x0d\x56\x65\xdd\xb3\xb2\xf2\x56\x59\xc5\x7e\x3f\x5f\x95\xdd\x32\xff\x21\x3f\xc9\xf7\x45\x55\x6f\xcb\xae\xcb\xbb\x72\x7b\xf5\x64\xd3\x74\x7d\xb9\xca\x5f\x54\x3d\xfd\x6e\x3f\x56\xcb\x32\xcb\x36\xcd\xae\x24\xd0\x97\xf4\x27\x5b\x15\xdd\x66\xd1\x14\xed\x8a\x12\x9e\xd9\x77\x56\x7e\xda\x6f\x9b\x96\x81\x7e\x96\xaf\x6c\x53\x6e\xf7\x5c\x86\xfe\x64\x5d\xb5\xae\xe7\x55\x4d\x3f\x2f\xe8\x2b\x7f\x55\x4b\x4a\x73\xe8\x2d\xe9\xed\xa1\x97\xb4\xc3\xde\x92\x7e\xd9\x67\x6d\xb9\xae\xa8\x37\x2d\x25\xbd\xd3\xcf\xec\xba\x5c\x74\x55\xcf\x2d\xfd\x45\xbe\xb2\x8f\x65\xdb\x55\x0d\xd7\xfe\xab\x7c\x65\xfb\x62\xcd\x00\xe7\xf4\x27\xeb\xcb\xdd\x7e\x5b\xa0\xc0\xa5\x7e\x66\xdb\xa2\x5e\x1f\x04\xe6\xb5\x7e\x66\xcb\xb6\xa4\xac\x79\x5d\x5e\x53\xea\x29\x7e\xcc\x66\xb3\xec\x40\x93\x30\xdf\xb7\xcd\x55\xb5\x2d\xe7\x45\xbd\x9a\xef\x64\x98\xbf\x50\x7a\xae\xe9\x39\xa5\xe7\x9c\x8e\x21\x94\x2b\x1a\xea\xbc\xe8\x74\x1c\x34\x97\x34\xf2\xa2\xcb\x50\x55\x5d\xec\xac\x34\x7f\x66\xe5\xae\xa8\xb6\x3c\x6b\xfc\x97\xfa\xdd\x75\xd7\x0d\xa6\xf6\x5c\x3f\x69\x0e\xe6\xfd\xcd\xbe\xc4\x14\x3c\xb9\xa4\xaf\x6c\x59\xec\xfb\xe5\xa6\xe0\x6e\xca\x57\x46\x40\xfb\x86\xe6\xa2\x69\x6f\x00\x67\x3f\xb2\xa6\x5d\x17\x75\xf5\xf7\xa2\x97\xf9\x79\xeb\x7e\x66\xbb\xaa\x6d\x1b\x9e\xda\x33\x7c\x64\x34\xf2\x39\xd7\x43\x29\x6f\x68\x12\x5c\x2d\x9c\xb3\xab\xd6\xad\xcc\x22\x67\x9e\xe1\x17\xd7\x22\x79\x5a\x93\x64\x85\xda\xae\x9a\xf6\x83\xa6\x3e\xe7\xcf\x41\x95\xd4\x39\xcd\x4d\xfb\x55\xd4\xb4\x1e\x9a\x7b\x86\x1f\x09\x40\x97\x15\xab\x1d\xcd\xf0\xbe\xa8\x4b\x9e\xba\x13\xfe\x45\xf3\x45\xbf\xb2\x62\xb9\x6c\x0e\x75\x3f\xef\xca\xbe\xaf\xea\x35\xaf\xc1\x89\x24\xe5\x17\x9a\x94\xb9\xbc\x90\x76\xd3\x1c\xc2\x2a\x53\xfa\x5f\xe9\x67\x7e\x2e\x3f\x25\xcf\x15\x42\x66\x28\x49\x4d\xf6\xd5\xc7\xaa\xaf\x4a\x69\xcc\x7e\x64\xfb\xc3\x76\x4b\xf3\xf9\xb7\x43\xd9\xf5\x9c\x75\x4e\xbf\x69\x06\xe4\x77\x56\x75\xdd\x01\x25\x5e\xe1\x23\xa3\x45\xad\x97\x18\xce\x29\x3e\xb2\xec\xb7\xaa\xee\xfa\x62\xbb\x7d\x9f\xe9\x07\x03\xcb\x97\xcc\x53\x5f\xf5\xe8\xac\x26\xe6\x17\x7d\xb9\xef\x78\xa2\xf3\xe7\x55\xdb\xf5\x4f\xfa\x8a\x50\xed\xdd\xa1\xce\x56\xcd\xf2\x03\x21\x31\x6f\x48\x6c\xa5\x57\x57\x39\x8d\xe9\x01\xa1\x71\x7b\xa8\x6b\x1a\x45\xfe\xa2\xa1\x91\x51\x33\xd5\xaa\xcc\x9f\x01\xfa\x71\xbe\xdf\x96\x45\x47\x20\x65\xb1\xca\xbf\x2f\xf2\xbe\x68\xd7\x65\xff\xc3\xbd\xf9\x82\x36\xcf\x87\x7b\xf9\xa6\x2d\xaf\x7e\xb8\x77\xbf\xbb\xf7\xe3\x8b\x03\x15\xdb\x56\x75\xd9\x7d\xff\x75\xf1\x63\xbe\x2c\x28\x87\xc6\x7a\x93\x2f\xca\x2b\xde\x2b\xd4\x56\x4e\x48\x5a\xaf\x79\x9f\xdc\xf4\x1b\x6e\x90\x16\x8c\x3e\xba\x9c\x37\xea\x57\x19\xcf\x12\x6d\xe4\xf9\x6a\x61\x44\x09\x1d\x42\x72\x4b\xb3\x74\x76\x73\xf1\x9f\xaf\x1f\xe7\xe7\x44\x99\xd6\x6d\x89\x6f\xfa\x8f\x4a\x7c\x9b\xd3\x68\x2f\xab\x67\x4f\x67\x19\x95\xb5\x09\x79\x56\xf4\xc5\x82\xfb\x1e\x16\x89\x33\x65\x0f\x85\x3c\xec\x24\xa6\x75\xa0\x6b\x5d\x8f\xdd\xa9\x3b\x73\x72\x1f\x52\x1d\xba\x79\x43\x1d\x6f\x78\x07\x53\x7a\x98\xd9\x73\x99\x33\xaa\x2a\x7f\xf5\xe6\xcd\xdb\x67\x4f\xf3\xb2\x5e\xd3\xcc\xe4\xd7\x55\xbf\xc9\x0f\xfd\xd5\xff\x3b\x5f\x97\x75\xd9\x16\xdb\xf9\xb2\xe2\x49\x69\x09\xaf\x72\x9a\x25\x19\xe2\x2c\xeb\xba\x2d\x11\x98\x15\xb7\x72\x71\xf1\x3a\x3f\xa3\x4f\xea\x0c\x95\xe5\x8e\xf4\x9b\xac\xfb\xdb\x96\x27\x2a\x34\x78\xb9\x29\x73\xe0\x2c\x80\x9a\xab\xe1\xbc\xe4\x2b\xed\xeb\x2c\xff\x7e\xd1\xfe\xe8\xfa\x57\x2c\xba\x66\x7b\xe8\xb5\xe4\xf5\xa6\xac\xb1\x50\x84\x4a\x6d\x4f\xd4\xca\x68\xff\x2c\x2b\xdb\x76\x4e\x74\xb3\xbf\xe1\xe5\xd1\xbe\x1c\x6b\x45\x2a\x23\x54\xae\x9b\x9e\x96\x3f\x47\x39\xa9\xa2\xaa\x3f\x16\xdb\x6a\x45\x8b\x14\x27\x32\x2d\x8b\xc4\x55\x43\xeb\xcd\xa5\x09\xa3\x9b\x6b\x4c\x11\x6d\x30\x22\xeb\xf9\xbd\xd9\x3d\xd0\xd9\x7b\x4f\xee\xcd\xb2\xba\x99\x0b\x11\x60\x8a\xbc\xaa\xba\x62\x41\xd4\x59\x4e\x8b\xd6\x88\xdd\x5f\x19\xef\xa4\x2b\x0a\x91\x27\x10\xbc\x26\x7c\x02\x81\xf0\x33\x52\x16\x44\xa6\x41\x4b\x94\x8a\xf8\xb1\x1b\xc9\x09\x78\x21\x54\x27\x24\x8c\xc6\x9c\xd9\x42\x1b\x56\x9e\xec\xf7\xdb\x6a\x29\x4d\xbf\x90\xbc\x88\xa0\x7c\x1e\xeb\xa4\x78\x38\x20\x98\xe5\x39\x34\xa3\x5e\x33\x55\xca\x13\xf2\x8e\xf2\x9b\x92\x76\xdc\xe6\xb0\x96\x33\x69\xdb\x1c\x56\x5f\xe1\x70\xb0\x95\x8b\x24\x38\x7f\xd7\x50\x87\x81\x55\x01\x20\x36\x71\x42\x04\x85\x59\x80\xb6\xdc\x35\x3d\x4f\x9c\x16\x63\x32\x77\x5d\x51\x26\x8d\xb4\x2b\x3e\xd2\xe1\xd6\x37\xb2\x95\x57\xb4\x55\x97\x5c\xf1\x2c\x23\xb2\x32\xd7\xed\x44\xf4\x47\xb6\x94\xa5\xa5\xb8\x0b\xa8\xdd\x81\x76\xe1\x86\x2a\xe3\x89\x67\x3e\x84\xaa\x9c\xea\x27\x86\x44\xf5\x80\x3a\xd0\x8e\x6f\xe8\xcc\xe4\x85\x7e\x86\x0f\xfd\xed\xeb\xa7\x5e\x15\x57\x57\xd4\xab\x8e\x76\xd3\xcb\x7c\xb9\x6d\x68\x2b\xfe\xf2\xee\x75\xc7\x1b\x6d\x33\xdf\x37\x2d\xf8\x0f\xca\x3a\xa7\xcf\x90\xe6\x26\x9a\x21\xea\xc3\x6e\x41\xbf\xae\x37\xd5\x72\x23\xd3\xce\x25\x78\x7f\x50\x2a\x35\x71\xe8\x68\x09\x1f\xe7\xb4\xb5\x68\x04\x34\x65\x40\x00\x1e\x83\x61\x1d\x83\x5f\x11\x8e\x1d\x5a\xda\x4e\x9b\xbe\xdf\x5b\xcb\x2f\x2f\x2f\xcf\xa5\xe9\x90\x7a\x5b\xdb\x85\xc3\x0c\xac\xc1\x96\x39\xa2\x3a\x6f\xea\x19\x90\xe4\xd0\x6e\x07\xf8\x43\x63\xb5\x9c\x23\xf3\xc2\x5d\xf8\x9a\xff\xbb\x88\xd3\x83\x79\xee\x88\xd7\xbb\x06\x36\xd1\x1c\x83\x4b\x99\x65\xdb\x66\x3d\x6f\x69\x35\x0c\x99\x5e\x37\x6b\x41\xa0\x24\x23\xb6\xf4\xcc\x50\x82\x67\xe3\xba\x65\xae\x8d\x20\x41\xb0\x78\x91\x69\x93\x34\x7b\xee\xa7\xdb\x25\x6f\x35\x21\x6e\x0d\xb4\x1d\xf2\xc1\x27\x51\x26\x88\x93\x3b\xd3\x77\x34\x7f\x4a\xcd\x2f\xce\x68\x56\x41\xd2\x91\x7a\xd5\x36\x3b\x4a\x7d\x4e\x7f\x62\x42\xec\xe3\x19\xd7\x07\x98\x62\xb5\xa2\xc3\xa6\x7b\x9c\xbf\x7b\x7e\x9a\xff\x5f\xdf\xfe\xf9\xcf\xb3\xfc\x55\xcf\x1b\x9b\x71\xfd\xbf\x18\x47\x0b\x9d\x89\x08\x4a\x04\xb0\x27\x34\xbe\xc7\x1b\xf5\x5e\xfe\x3d\x72\xff\xbf\xf2\x53\x41\x7c\x66\x39\x5b\x36\xbb\x1f\x99\xb8\xef\x0a\x22\x25\x9c\x43\xd8\xaf\xdb\xe2\xa2\xac\x57\xf4\x21\x5c\x9f\x66\x39\xe2\xa2\xd9\x8e\x07\x14\xe6\x77\xbe\x6c\xea\xab\xaa\xe5\xf1\xfc\x5c\x03\xb7\x8c\x2d\xce\x4f\x25\xc7\x58\x28\x9a\x32\xa2\x47\xd5\xd5\x4d\x04\xc5\x48\xdf\x70\xa2\xa2\x47\x26\x38\x3c\x57\x52\x1f\xe6\xf8\x42\x50\x9b\xb1\xe0\x2d\x8d\xae\xb5\xe9\xee\xe2\x7c\x37\x57\x57\x7c\xe2\xdb\x59\xa5\x2d\xbc\x95\x54\x39\xb6\x3c\x08\xa1\xf6\x1e\x8c\xfd\x33\xdd\x12\xa7\xcf\xde\xe4\xe5\x47\xc2\x5d\xa6\xa1\x6d\xb3\x3a\x2c\x81\xaf\x0c\xfb\x98\x49\x3f\x11\x9c\x8e\x76\xda\xb2\x54\x64\x09\x24\x87\xbb\xc6\x74\x6d\x49\x40\x44\x69\x8c\xf4\x13\x37\xfa\x91\xce\x91\xd6\x35\xf1\xc2\x92\xb4\xf7\x23\xd8\x51\xa7\x42\x09\x1e\xf9\x92\x16\x9c\x90\x42\x7a\xd1\x49\xa7\x24\x9b\x36\x0f\xed\x8a\x03\x49\x39\xc5\x8a\xfa\xb2\xb8\x01\x15\xeb\x18\x17\x56\xe5\x55\x71\xd8\xd2\x6a\x5f\x95\xb4\x7e\xc4\x2e\xaf\xe6\xda\xd6\xb6\x69\x3e\xa0\x31\x9d\xaa\xe7\x06\x90\x9f\x68\xa5\xaf\x01\x71\xac\x64\xe8\xac\x96\x0f\x60\xa1\x53\xda\x02\xed\x34\x3e\xde\x63\x7e\xb3\xa7\x69\xd6\xc9\xd4\x95\xce\xf9\xbc\xa5\x9c\x9a\x28\xc8\x42\x07\x1d\xe7\x72\x70\x8c\xda\xec\x5c\xb0\x70\xe8\xf3\x26\x0b\x8c\x26\x15\x08\xdf\x0d\xcb\xd2\xce\xa9\x89\x43\x94\xe3\x96\xb7\x98\x48\x5f\x76\xf2\x12\x81\x2e\x31\xce\x79\x94\x75\x74\xe0\x26\xf2\xa4\xf9\xa1\xd9\x77\xc2\x33\xe6\x60\x36\xb8\x46\xab\x80\x99\xac\xe9\xbe\xcc\x32\x65\x34\xe7\x2a\xa6\xce\x3f\x56\x10\x02\xc3\x16\x93\x2a\x55\x74\xe5\x19\xfe\x95\x01\x58\xba\xec\x26\xcb\x86\xde\xbc\xe5\x41\x76\x41\x08\x14\x3c\xe1\xe1\xa2\x05\x66\x7e\x09\xb3\x3e\x56\x38\xe8\x14\xc9\x31\x2f\x0b\xe6\xcf\xa8\x69\x6a\xaa\x2b\x4b\xd4\x40\xe5\xbf\xa6\x3a\x51\x66\xa6\x12\x90\x0a\x25\xc6\x34\x33\xc3\xb3\x6a\xc0\x3d\xe1\x34\xa5\xd2\x36\xad\x03\xce\x26\x6f\xab\xf5\x86\x4e\x97\xe6\xfa\xb1\x4c\xca\xf5\xa6\x29\x79\xcf\xbf\x7a\xf6\xc3\x37\xd2\x8f\x35\x9f\xad\xa1\x10\x9f\xca\xc5\x81\x36\x04\xcd\x98\x6e\x3d\xe9\x42\xe0\x6e\x00\x39\x92\xb5\x04\x68\x28\xf4\x8e\x98\xa9\x40\xe8\x94\xbe\xf9\x3c\x25\x6c\x11\x46\x4a\x9b\xe0\x2c\x0d\x0b\x21\x55\x41\x69\xbe\x6e\x20\xa8\x99\x60\xc4\xec\x42\xd6\x93\xd8\x35\x5f\x57\xfd\xfc\x8a\xa9\x2d\x57\xfc\x9c\x2b\x60\xee\x85\x72\xf2\x07\x94\xf5\x20\x27\x8a\x4d\xd2\xe7\xea\xbb\xfc\xfe\x47\x65\xb5\xbf\x65\x32\xca\x5b\xb1\xda\x62\x45\x54\xfc\x6b\x4b\xe1\xa4\x4d\xf5\x10\xd8\xd6\xee\xb0\xc7\xe1\xae\x1c\x72\x10\xa3\x56\xcd\x75\xcd\x04\x03\xc7\x05\x91\xc6\x6a\x59\xd1\x21\xb7\xa8\xea\x82\x4e\x47\xab\x05\xc7\xd0\x7d\x42\x89\x37\x6f\x2f\x01\xb8\x6e\x16\x87\x6a\xbb\x32\x80\x59\x66\x5c\x34\xf1\xd0\xba\xf8\x5e\x1e\xb1\xa4\x4a\xfa\xb2\x6c\x5a\x3e\x7f\x31\x1a\x2b\x78\x84\x17\xe4\xc3\x5b\x98\xf7\x8a\x05\x41\xc0\xa2\x5c\x60\xdb\x78\x1a\x68\xf5\x97\x1b\x65\xea\x80\x36\x55\x57\x3f\xe8\xd1\xd3\xe5\x81\xda\xa2\x95\xe7\x64\x2a\xd8\xe5\x4f\x7e\xa4\xff\x33\x66\x11\xe5\xd0\x5a\x8f\x27\x9e\x33\x73\xc9\x3c\xc8\x56\x4c\xba\x9a\xe0\x78\x58\x69\xc3\x60\x37\x56\xdf\x5f\x43\x81\xee\x20\x48\xcb\x5a\xa2\x2d\x2d\x6b\xf9\x15\x7d\xb0\xc8\xbb\xde\x62\x11\x8a\x5e\xe5\xd2\x86\xe6\x8d\x11\xe4\xb1\xec\x99\x2b\x1a\x1a\x93\xff\xbe\xf8\x50\x42\x94\x8d\x73\x3e\xc5\xfd\x1c\x9d\xb7\xec\x37\xd6\x99\xbd\xcf\x0e\xc2\xb9\x37\xdb\x55\x90\x2e\xb1\x1b\x88\x1a\x95\x89\xca\x27\xc2\x04\x44\xef\x48\x42\x59\x6e\xe6\x41\xe1\xc6\x13\xd9\x97\x9f\xc0\xe3\x20\x2b\xea\xdf\x78\x97\x70\x56\xb6\xbb\xc1\x12\xf3\xc0\xcf\x6e\xe2\x0a\xb3\x42\xa2\xdb\x34\xd7\xd0\x5e\x05\x88\x0b\x4a\x81\xde\x2a\xe1\xef\x59\xeb\xb5\x6c\xb6\x84\xef\x0d\xaf\xca\xc7\x08\x7f\xea\x53\xd3\xca\xa9\x5d\x12\x46\xb4\xd9\x54\x5b\x43\x59\xa2\x20\xd2\x5c\x51\x10\x75\x19\x28\xa5\x6a\x16\x41\x50\x09\x5f\x54\x2f\x32\xa3\x85\x87\xda\xc5\x5a\x7e\x55\x0b\xe7\xed\xfb\x49\x73\xac\x5a\xc7\xf7\x99\xc1\x25\x7d\x12\x72\x2b\x93\xce\x6a\x9f\xa2\x05\xf6\x5e\xe0\x83\x4a\x13\x41\xdb\xbc\x77\x7a\xbf\xb9\xe1\x96\xe9\xff\xa0\x9b\x52\x9a\x16\x79\xb0\x4d\xb9\x67\x76\x6d\xd7\x01\x29\xb7\xac\x20\xb9\x51\xf1\x25\xa0\xe7\x4f\x72\x5a\x10\xbe\x12\x8d\xfd\x2a\xeb\x1a\xde\xee\xf3\x2f\xac\xe2\x69\x45\x88\x88\xf2\xe9\x49\x2b\x0a\x49\x92\x32\x78\x30\xb4\xc7\x6f\x1e\xa7\x82\xed\x86\xc4\xf7\x45\x49\xa7\xbe\x16\x5b\xcd\x4c\x31\xc1\x08\x44\xe2\x34\x76\x2c\x94\xa8\xd8\x63\x52\xb2\x19\xb1\x00\xdc\x43\x21\xb2\xda\x4a\x60\x36\xc1\x4a\x7a\x8e\x73\xa2\x4d\x9a\xb0\x5d\xc9\xd2\xcb\x7c\x27\xca\x4b\xf9\x95\x9f\x95\x19\x9d\xc5\x6b\xec\x23\x41\xf4\x1f\x58\x69\xb5\x86\x90\xa7\x98\xcf\x00\x65\xef\x4f\x01\x85\xb0\x94\x9f\x4c\x59\x4c\x74\xe9\x1a\x4a\x44\xe6\x84\x86\xd3\x4f\xe7\x25\x65\xcf\xec\x54\x11\x06\x05\xbc\x71\x47\xb4\x2a\x4e\xe2\x49\xce\x5a\x5f\x0f\xa5\x7c\x7e\x18\x15\xc3\x33\xc9\xfa\x7e\xf1\xe3\xfd\xee\xfb\xaf\x17\x3f\x06\xc2\xbe\xdc\x94\xcb\x0f\x82\x9c\x55\xbd\x68\x3e\x41\xad\x00\xf5\x56\x49\xb5\xd2\x66\xbd\xbf\xca\x37\x94\x0b\xa9\x96\x08\x11\x15\xa3\x79\xe7\xdc\x64\xcd\xa8\x2f\x4c\xaf\x66\xa2\x4e\x2c\x05\xfb\x23\x3e\x42\xaf\xc8\x18\x89\xd3\xc7\x50\x92\x0a\x6d\xaa\x05\x9d\x69\x44\x9a\x20\x09\xbf\xc6\xdf\x73\x4d\x2e\x57\x03\x08\xc7\x28\xb4\x81\x90\xb2\x16\x2e\x14\xe0\x4e\x02\x34\x8e\x4f\x51\x26\xa2\x0b\xaf\x2c\xe6\x6f\x5b\xed\xaa\x7e\x84\x8a\x4c\x56\x0b\x45\x69\x55\x7f\xda\xda\x60\x0c\x71\x76\xe9\x70\xa2\x6a\x88\x97\x30\xf4\xbc\x2e\x48\x7c\xfe\x36\xa7\x36\x0e\x3d\x4b\x88\xac\x94\xea\xe9\x74\x2a\x98\x19\x21\xd1\xb9\xe8\xe6\x87\x5a\x97\x89\x18\x64\x45\xce\x97\x15\xce\x4c\x6e\xd7\xb6\x90\x83\x4a\x25\xb6\xfc\x61\x58\xc1\x47\x33\x55\x84\xa2\x14\x9f\x63\xdc\x9f\x8a\xc5\x8b\x62\x0a\x17\x88\x62\xd7\xa5\xcc\x10\xc6\xcf\x60\x8c\x36\x24\x34\xc7\xc9\x22\xc9\xfb\x03\xf3\xd5\xbc\xbe\x8b\x43\xdf\x37\x2c\x3c\x6e\x19\x07\xa5\x8c\xf5\xf9\x14\x80\x10\xaf\x63\x7d\x37\xb2\x2c\xe9\x2c\xa9\xfc\x0b\x2e\xa4\x03\x1d\x11\x53\x06\x0b\xf1\xe9\xd0\xf4\xd4\x0f\x50\x2b\xd1\x3a\x16\xf5\x4d\x54\x68\xa1\x0f\xdc\x5c\x3f\xdd\x93\x87\x6d\xf9\x28\xf6\x25\xec\x3f\x94\xd0\xfe\x48\x69\xb7\x35\xdf\x21\x53\x54\xe6\xb6\x81\xed\xcc\x5c\xaa\x2e\x33\xa0\x46\x9b\x4e\x2d\xf2\x79\x97\x11\x25\x27\x2e\x7a\x85\x59\xa6\x41\xa0\xf4\x6c\xd0\x56\x14\xda\xc7\xd3\xd7\xa7\x3d\x8e\xc7\x6a\xdf\x34\x73\x3a\xf9\xa0\x6f\xb1\xee\xe5\xdb\xb2\x5e\x27\x8a\x4a\x98\xbf\x80\x6f\xff\x37\x2b\x17\xeb\x39\x24\x4c\xb7\x01\xdf\x34\xf5\x13\xa4\x05\x11\xc5\x4a\xab\x6a\xdb\x1a\xe4\x6a\xda\xe6\xb0\xde\xa8\x96\x2a\xfb\x8d\x67\xed\x7d\xa6\xeb\x5a\xba\x3a\x15\xeb\x2d\xc7\xd6\x5f\xf6\x76\x80\x37\x46\xf7\xd7\xb2\x65\x71\x1e\x40\xc9\xc2\x1f\x5b\x91\x74\x42\x02\x49\x8f\x9c\xd1\x3b\x4f\x80\x34\xf9\xea\xb0\x7d\x9c\x5f\x0b\xcb\x14\xcb\x04\x55\x82\x32\x53\x8c\xe2\x62\xf7\xa3\xe1\x35\xab\x82\xc6\x77\x03\x6b\xc6\x5f\xe9\xd8\xad\x61\x41\x6a\x32\xca\x90\x42\x67\xf8\x20\x50\xd6\x85\xbc\xcf\xf8\x38\x7e\x33\x90\x08\xf8\xdc\xd6\x34\xc7\x95\x22\xeb\x67\x6f\x21\x0b\x63\x3e\x9f\x10\x1e\xde\x95\xd1\x50\x86\xaf\x30\xf8\x8b\x8b\x97\x97\xa6\xdc\xb8\x78\x99\x7f\x28\xb5\xee\x97\x7d\xbf\xef\x7e\x81\xda\x4c\x74\x60\xac\x30\x3b\x2f\x6e\x98\x53\x97\x64\xfd\x81\x8c\xcb\xb2\xd8\x69\x27\xf9\x53\xaa\x38\x21\x26\x42\x13\xf9\x93\x38\x0f\xa7\x8e\xcd\xc0\xb3\xfe\x9c\x88\x2a\xb2\x8b\x82\xdc\x58\xaa\xe9\xec\xf7\x91\x0a\xf9\xf7\xac\xd8\xee\x49\xb4\x65\xfe\xcf\x81\x41\x5b\xba\x50\x09\x37\x07\x08\x76\xcd\x61\x47\x08\xb2\x84\x16\x82\x0a\x3c\x7c\x32\x7f\xe4\xb4\xe7\x69\x65\x2b\x22\x26\x7f\xa8\x42\xfe\x16\x94\x8f\xf5\x76\xd5\xdf\x6d\x14\x49\x75\x9c\x4e\x84\x99\x20\xc0\xc6\x47\xa8\x00\x84\xa3\x85\x59\xfa\x9e\x95\xa7\x94\x40\x62\x43\x52\xf5\xae\xf8\x74\x57\xc1\x5d\x33\x51\x4e\x48\x66\x2c\x64\x94\x51\x87\x98\xec\x1e\x02\x67\xed\xe8\x51\x60\x5a\x78\x02\xa9\xea\xe5\xf6\xb0\x3a\xda\x91\xee\xb0\xa0\x8d\xc4\xe2\xc8\x83\xfb\xdd\x03\xae\xb2\xfe\x40\x9c\x47\x1d\xe0\x7f\x91\xdf\x39\x7e\x7f\x67\x16\xdc\x39\x55\x2b\x32\x5a\x1e\x6c\xb9\xc4\x40\xad\xf8\x30\x82\xac\x35\x8b\x74\xcc\xcb\x5f\x01\xf9\xa1\xa8\x52\xf9\x38\xec\x7f\xd6\x4e\x41\x14\x25\x04\x9c\x45\xab\xf3\x9c\x19\x99\x39\xcb\x35\xb5\x17\x44\x98\xf8\xda\x71\x0d\x56\x07\x10\x33\xb1\x09\x8c\xcb\x0d\x76\xe7\xd1\xe2\xc4\xae\x4d\x94\x7e\x3b\xb6\x57\x1c\x29\xdf\xd3\x06\x9b\xa8\x20\xec\xbb\xa3\x05\x65\xed\x51\xe8\xd0\x41\xdc\x4c\x08\xc7\xb8\x1c\x43\xcd\xe2\x2c\x85\x09\xf7\x6b\xe3\xc5\xb6\x30\xcf\xa9\x94\xcd\x1a\x2b\x42\xbf\x16\xd6\x7f\x27\x6b\xab\xee\x43\x69\xfd\x8e\xc5\xca\xee\xc0\xe7\x16\x8b\xa0\xc2\x06\xa6\x33\xca\x1c\x09\xaa\x2a\xd1\xc4\xf1\xea\x09\x9f\x98\x34\xdf\x55\x3f\xc0\xbe\xb0\x6a\xaf\x9a\x19\x57\xac\x95\x07\xa0\x63\xd5\x06\xbd\x41\xf9\xa9\x82\x66\xfe\x45\xf5\xb1\x54\xcd\x41\x50\x98\x20\x6f\x96\x6d\x69\xff\xb3\x04\x29\xa3\x12\x79\xa1\xf9\xc8\x3b\x8a\xdb\xe3\x5c\x29\x27\x9a\x7a\x1d\x14\x23\x89\xea\x20\x60\x2e\x2c\x57\x8f\xd9\x74\xd9\x83\x31\xc0\x06\x2d\xb6\xd7\xc5\x4d\x07\x7d\x9a\x11\x19\x36\x72\x48\x71\xa6\x20\xc4\x1c\xad\xd1\x2b\x6f\x4a\xa3\x5d\x63\x33\xc1\x36\x21\x3e\x2e\x02\x0f\x73\x0d\x2d\x02\x28\x84\x6a\xe8\x3e\xba\x83\x59\x4f\x17\xd6\x80\xb0\xe8\xcf\xb2\x94\x64\xbb\x8a\x60\xdb\x56\x62\x3f\x51\xf6\x31\x33\x8e\xd4\x0c\x33\x72\x44\x82\x65\xae\x2b\xf0\xe9\xe8\x92\x53\x29\x1d\xa8\xfe\x27\x22\x80\x54\x34\x87\x2c\xcf\x46\x2d\x0b\x9f\x46\xb4\x2a\x66\x0a\x92\x74\xd1\x4d\x74\x7d\xb5\xdd\xf2\x4c\x9b\xbf\x47\x22\x10\x20\x17\xfb\x04\xd3\xd4\x6d\xaa\x7d\xde\xc0\x20\xe0\xa7\x30\xa2\xad\x63\xbd\xd9\xe8\x55\x42\xc0\x61\xc3\x48\x5b\xd4\xdd\x55\x09\x0b\xc9\x2e\xbf\x62\x9f\x84\x99\x36\xcd\x9c\xbc\xf8\x77\x1c\x69\x59\x64\x45\x34\xed\x0f\x08\xac\x9d\x5b\xa8\xb4\x69\xb1\xc0\x41\x0d\x8f\x3e\x60\x56\x63\x4d\x9d\xf5\x81\xd1\x6c\x34\x05\x60\xa8\x13\x7b\xea\xe4\x3c\x5c\x25\x2a\x08\x69\x1f\x98\x76\xc7\xb8\x33\xf1\x9f\x98\x2f\x28\x73\xb9\x49\x76\xc5\x25\x72\x72\xc9\x19\x6d\x8c\xec\x37\xc6\xfb\xf7\x99\xb0\x99\xf3\x60\xe6\x38\x15\xb6\x53\x78\x46\x24\x66\xff\xd5\xd0\x41\x0b\x9d\xfd\xbf\xd3\x17\x14\xfc\x59\x62\xb8\x1d\xe8\x47\xd4\x73\x85\x71\xf2\x9c\x50\x89\xce\x7a\x75\x5f\xb9\x21\x01\x1c\xfb\x09\xea\x93\xe7\xf6\x9d\xb1\x73\x40\x0b\xe4\xba\xd0\xaf\x44\x1f\x23\x85\x44\x59\xf7\xdc\xbe\x35\x35\x24\xd1\xb6\x08\x29\xbf\xe8\x67\xc6\x02\xff\x6e\x06\xfa\xcb\xcc\x2c\x6c\x3c\x8e\xea\xf2\xa1\xca\xf8\x6f\x79\x33\x07\xbf\x2f\x7a\xa2\x3c\xb5\x08\x48\x42\x04\x7c\x51\xcd\x0e\x55\x04\xd7\x02\xae\x25\xfb\xcd\xdc\x7a\xde\x67\xd1\xf9\xc7\xfc\x7e\xa6\xf4\xd3\x61\xfa\xc5\x6a\x93\xe9\xae\xee\x94\xb1\xfc\x0f\xfa\x54\x65\x0f\x28\x06\x3e\x54\x5a\x87\x91\xdf\x2c\xb3\xf0\x15\x72\x3f\x33\x55\x9e\xa5\x9a\x33\xc5\xa9\x1f\xf2\x67\xf2\x61\x72\xff\xa1\xc2\x18\x2b\x62\xbf\xf7\x58\x38\xe7\xba\xa4\x2b\x19\x06\xa1\x9e\x6b\x5e\xf2\x1f\x89\x8d\x52\x09\xb8\x09\x33\xb4\xe1\xec\x64\x9b\x89\x13\x1f\x59\xeb\x0d\xb9\xb2\x76\x46\x44\x36\x8d\xb1\x2c\x4c\x60\xd7\xe5\xc2\x2c\x4b\xfb\xb2\xd5\x71\xee\x0a\x92\xf0\x3e\x56\x45\xd0\x39\x39\x9e\x26\x1c\xba\xa6\x34\x4a\x04\x2d\xb0\xf0\xa2\xc3\x33\x96\xc6\x16\x98\x55\x29\x82\xff\x54\x6b\x25\x86\x9d\x1a\xec\x0e\x7b\x1e\xd9\x99\xf8\x9c\x3d\xae\xe0\x42\x31\xf6\x19\xe4\x26\xd4\xc0\xf5\x5a\x3f\xb3\xc3\x9e\x2d\x46\x6e\x2e\x7f\x41\x42\x98\xcb\x34\xdf\x09\x52\x98\x55\x2b\x16\x74\x46\x02\xbe\x72\x92\x15\x9b\x4d\x74\x1f\x4f\xf8\x02\xea\x96\x5e\x0d\x41\xa2\x86\x05\x34\x4a\x07\x8e\x85\x12\x2b\x3e\xa6\x96\xce\xb9\x9c\xd5\xb9\xdb\xaa\xfe\xd0\xe9\x4a\xf1\x3c\x79\xa1\x12\x9a\x30\xc2\xf7\x43\x29\x76\x15\x7c\x8e\x3d\xcf\xd4\xe2\xa8\xf6\xc7\xc5\x8d\xa9\x0a\xc4\x42\xa9\xa8\xcf\x76\x4f\x48\x32\xc7\x4d\x9d\x43\x1b\xa7\x99\x38\xcd\x74\x07\x0b\x6b\xa4\x68\x34\x0f\xf9\xa9\x58\x5d\x75\x77\x2d\x37\x4d\xd3\xa9\x6a\x36\xd2\x3d\x4e\x83\xe6\x45\xc9\x9e\x2e\x4b\xac\x47\x56\xed\xc4\xac\xbf\xd8\xe1\xba\x97\xe6\x6a\xa7\x88\xd0\xba\xb5\x4e\xd5\x7e\x71\x62\x75\x8a\x75\xd7\xc6\x04\xea\x32\xaf\x76\xe2\x33\xfa\x8b\xd9\x7e\xb1\xe0\x41\x60\x40\xf6\x2c\xed\xcf\x10\x4b\xb4\x5d\xb3\x5e\xdc\x81\x2c\x86\x0a\xde\x1c\x26\xcb\x1f\x28\x52\xb3\x4d\xd8\x35\x1b\x47\xc8\xe7\xc9\x73\xf9\x6f\x60\xb8\x0c\x3a\x01\xde\x63\xf3\x01\x88\x8a\xd1\x09\xe4\x24\x57\x6c\x6d\x1d\xe5\x88\x07\xbd\x1f\xed\x18\x2b\x77\xcd\xfe\x66\x6e\xe0\x8a\xe3\xab\x99\xf9\x70\xb1\x1a\x57\xac\xa0\x70\xb6\x11\x87\xa3\x1a\x26\x54\xa9\xc2\x11\x15\x6d\xf4\x5f\x25\x29\xb1\x66\x11\x29\xba\x20\x49\x9c\x08\xe1\x64\xa3\x87\x78\xaa\x86\x7c\x75\x56\x4d\xe8\x6b\x69\x1e\x2c\x9e\x02\xef\x5b\xc2\x15\x62\xf8\x53\x4a\x3c\xa2\xbd\x09\x9d\x05\x99\x6d\xe0\x8f\x11\xc9\x2b\x8d\x5b\xab\xe2\x73\x0b\x5f\x96\x12\x14\x47\xb4\x03\x98\x2b\xd6\x64\xdb\x08\x96\x2b\xf8\x1f\xfa\x48\x3f\x84\x2a\xca\x58\x9f\x69\xc2\x20\xdf\x06\x23\xd9\xb6\x20\x13\xa3\x61\xf7\xb1\x8f\x65\x38\x38\xaa\x5a\xdc\x61\x82\xb1\x33\xa1\x4e\xf9\x33\x90\x2b\x42\x07\x51\xb6\x1b\xb1\xfa\x69\xd8\x7a\xc4\xa3\x9f\x53\x35\xbd\x8c\x2d\xdd\x45\x5f\x65\xd4\x23\xe0\x78\x34\x19\xaf\x80\x3c\xa9\x16\x8d\xa1\x3c\x84\xe8\x69\x42\xea\x3c\x31\x22\xc0\x1e\xf0\x25\x86\x03\xe6\x3f\xfe\x1b\x6c\x06\x49\x53\xd1\x66\x10\x3a\x39\xd8\x61\xa3\x51\x8e\xb7\x1a\x65\x80\x15\x52\x5c\x76\x0c\x8d\x62\x73\xe0\x6b\xb8\x15\x91\x60\x78\x7a\x28\x09\xdc\x8f\x62\x02\x8e\x26\xf6\x2b\x83\x53\x1a\x3c\x51\x45\x9c\xe9\x46\x0a\xe9\x74\xcd\x4f\x20\xaf\xd1\xa4\x08\x2c\x38\x43\x62\x26\x98\xd3\xb7\xbd\x4e\x5c\x34\xcd\x83\x38\x24\x04\x07\xc1\x91\x39\xf0\xb1\x0a\x49\x9b\x6a\xbd\xa1\x71\x55\x3b\xb6\xc3\x03\x93\xcc\xd8\x1b\x65\x58\xfe\x45\x24\xaa\x59\xd7\xac\xa4\xe2\x16\xc4\x23\x30\x28\x98\xbf\xef\xfa\xb6\xa9\xd7\x3f\x3e\x6b\x58\xb8\x64\xdd\x0d\x1f\xae\x3f\x7d\xff\xb5\xa6\x13\x19\xe6\x25\x64\xf7\xd1\x17\x55\xff\xf2\xb0\x78\xd0\xe5\x6b\xf6\x83\x86\x91\xa8\x70\xde\xd1\xea\x81\x21\xee\x9a\xd7\x75\x98\x16\xf8\x4a\xd3\x1e\xef\x9a\x2d\x6d\x90\xb4\x48\xb3\xdb\xc9\xf2\x12\x01\xdb\x09\x24\xfa\x0f\xa7\x8d\xb2\xc6\xcc\x95\xad\xce\x0f\x55\x38\x0b\x28\x1e\xd7\x47\x97\xcd\x38\xd4\x44\x23\xa2\x3c\x22\x03\xc3\xa4\x5c\xf7\xee\x20\x82\x3a\xc4\x4a\x81\xff\x18\x97\xc2\x3a\xb2\x7e\x69\xac\x8b\x81\xd8\xc2\x55\x58\x71\x2a\x49\xfd\x10\x3e\x8c\xd3\xac\x45\xe1\x40\x4a\x56\x75\x0b\x62\x39\xe4\xe5\xb3\xc7\x14\xb5\xe0\xdc\x43\xf7\x80\xae\x83\xfd\xad\x14\x4d\xc6\xae\xf4\xcc\x06\xe0\x28\x9a\xce\x48\xa4\x69\x43\x98\x84\xaa\x95\x42\xd3\xac\x17\x9e\x9a\x89\x7f\x9a\x50\x34\x41\x48\x92\xad\x98\x5e\x7f\x26\x35\x1b\xb5\x1b\x07\x6e\xcd\x7d\x06\x45\xc3\x98\x4e\x30\x1d\x34\x16\xe8\x4f\x74\xa1\x5e\xab\xb6\x04\x19\xec\x29\x1d\xe5\xbc\x37\x8d\x5a\xdd\x72\x4b\xc4\x9a\x90\x60\xd7\x97\xc9\x56\xe6\x4e\xc0\xb7\x55\x3c\x97\xa0\x80\xf9\x7f\xf2\x55\x41\x74\xa0\x6f\x3e\x10\x2a\x8d\x8b\x20\xfd\x58\xa1\x40\x5f\x4c\x38\x52\xea\x72\x12\x89\xc3\x50\x5c\x52\xa3\xf9\x51\x02\xe3\xe8\x8a\xd6\x1a\xbc\xc7\x44\x7b\x84\xfb\x06\xec\x63\xb3\x12\x3a\xa2\x64\x40\x5d\xa4\xc2\xfe\x27\x8e\xad\x66\x20\x08\xa4\xfc\xa1\xbf\xfd\xb2\x24\xf5\xbb\xcd\x42\xd4\xfb\x50\x3b\xf2\x29\xe8\x30\x97\xa9\x08\x83\x3c\x27\x86\x03\x4e\xad\x27\x52\xe1\x25\x67\x77\xea\x21\xae\xbe\x07\x56\xe4\x85\x26\x62\x0f\x00\x50\x26\xbc\x0b\x13\x81\x5f\x51\xf1\x61\xb5\xa8\x57\x8b\xfa\xab\x62\x0d\x08\xeb\x8c\x60\x6e\xc4\xcb\x25\x3f\x39\x7f\x45\x07\x46\x68\xd0\x2a\xfd\xb9\x58\x6e\x74\x01\xaf\x45\xeb\x01\x5f\x98\xed\x76\x48\x71\x83\x24\x21\xc5\xcd\x91\x1f\x25\xb1\xc5\xc3\xa0\x46\x03\x92\xc1\xa4\xf9\x32\xc7\x65\xe7\x34\x41\xd2\x1a\x7a\x32\x3c\xab\xc2\x50\xbf\xa2\x99\x0d\xfa\x48\xde\x5a\xfb\x1b\xa6\xfe\xce\xab\xad\x90\x19\xba\x06\xfd\x1e\xb8\xd3\x11\x24\x2c\xca\x39\x6f\xe1\x36\xd0\x0f\xeb\xb0\x52\x10\xbf\x94\x9e\x8c\x4c\x2e\x66\x24\x2a\x93\xc5\xa6\x28\xcb\xde\xea\x49\xc7\x7c\x17\x9d\x61\xc4\x8f\x8a\x83\x5b\xa8\x8c\x1f\x95\x43\xe5\xf3\xc9\x66\x03\x46\x4b\xd3\x03\x7a\x93\xcb\x31\x28\x5e\x19\xf0\x30\x15\x11\x4b\x30\xc2\xf9\x9b\x53\x2d\xd7\xe5\x76\x4b\xfb\x41\x5b\x8f\xc6\x4e\x1d\x7a\xe2\xbf\xa0\x40\x4e\xbe\x2d\x23\x6f\x2b\x53\xe1\x55\x79\x56\x19\x41\xd0\x76\x83\xeb\x80\x28\x1f\xec\xb4\x3e\x3d\x79\xf3\xe6\xed\x65\x3c\xa4\x79\x1f\xd4\x2b\x62\x25\xbe\x0a\x8e\x85\xa3\x7e\x99\x7b\x61\x58\xc0\x14\x22\x3a\x38\x6a\x89\x63\x70\x9e\x4c\x39\xd7\x8a\x75\x03\xda\xd3\x70\x5f\x8c\x96\x27\xfd\x5f\x1d\x5b\xbf\xec\x37\xe6\x6e\xde\x67\xa6\x10\x7f\xcb\x7f\x33\x6f\x53\x70\xb6\x18\x6c\xbd\x68\xb2\x89\xd7\x38\xa8\x03\xcd\x6a\x64\x63\x00\x91\x3e\x14\x10\xb5\x68\xee\x1b\x9c\x15\x57\x39\xec\xe4\x8f\x59\x65\xda\xb4\xd8\x30\x3c\xb9\x87\xba\xfa\xdb\x01\xec\x19\xcc\xdb\xb3\x8c\xfd\x55\x17\xd5\x56\x0e\x94\x5f\xc3\x0f\x49\xe7\xaf\xc1\x55\x03\xd7\x38\xfd\xfa\xbe\xdb\xb3\xbb\x2f\x9d\x0d\xdd\x0f\xf7\x0e\x55\xce\x5a\x44\xf6\x5c\xbb\xf7\x23\xc9\x2f\x6c\xf0\xa6\xe5\x23\x88\x1f\x47\xd5\xf1\x6d\xc2\xa5\x28\x1f\x83\x2b\x0a\xf0\x56\xd3\x79\xb7\x30\xbf\x9b\x68\x3c\x65\xe2\xff\x40\x9b\x7c\x75\x31\x8e\xe3\xa1\x4a\xdd\x34\x47\xd8\xbb\x1f\x8b\xed\x21\x55\xc1\x70\xeb\x5c\xa6\x7b\x94\xe1\x1e\x45\x2c\x0b\xd7\x24\x5c\x86\xe5\x0c\xc2\x86\x9f\x30\x69\xfd\xed\x97\xea\xf8\xda\x2c\x33\x7e\x5f\x65\xe8\x89\x2a\xa9\x87\xb7\x28\x91\x67\x17\x1c\x38\x0f\xb7\x1c\x90\x3a\xb1\x1a\xee\x42\x54\xb1\xed\x45\x41\x9d\xbb\xd5\x64\xd2\x82\x41\x78\xc5\xee\x8d\x9a\x02\x03\x05\xeb\x96\x6d\x85\x4b\x1a\x92\xce\x57\x69\x73\x77\x8d\x16\x89\xeb\xaa\x27\x61\x9d\x5d\x0d\x43\xe3\x17\x84\xfc\x34\x4f\xb3\x90\x95\xdb\xc5\xdc\x2e\x23\xfa\x41\x47\x1a\x6e\xe3\xca\x97\xa5\x8c\x8a\xf3\xe9\x2f\xb0\xd0\xc8\x31\xcb\xa9\x5b\x81\x3f\xf4\xf7\x44\x29\x05\xb4\x26\xd9\x54\xd2\xcc\xab\xba\x62\x0a\xf0\x8a\xfe\xd0\xe9\x2e\x92\x40\x8a\xaf\xc2\xe7\xa2\x12\xd5\xf6\x88\x18\x1e\xea\x51\xe7\x41\x5d\x1e\xf5\x1a\x74\x0b\xa4\x17\x02\x54\xed\x8f\xf9\x43\x42\xfe\x14\x09\x7a\x07\x97\x28\xe0\xa1\x16\xd5\x33\xfd\x4d\x12\x6d\xde\x1d\x43\x23\x57\xb2\x9e\xf4\x6d\xb1\xfc\xc0\xc4\x85\x70\xa6\x6c\x49\x2a\x80\xc7\x54\xc1\xe7\x5f\x4e\x88\xb6\xa6\x09\x10\x0b\x83\xba\x23\x49\x31\xab\xbc\x62\x09\xe2\xa3\x70\x62\x72\x7b\xf7\x95\xa5\x3c\x64\xd1\xf3\x91\x01\x9a\xe0\x18\xe0\x54\xfd\x31\xc8\xb7\x7e\xaa\xb9\x50\xed\xe5\xb4\x21\xf9\x14\x61\xfd\x04\xac\x77\x34\x5d\x2b\xb6\x49\x15\xdb\x2e\x57\x79\xd7\xcc\xf0\xd9\x35\x1b\xb7\xc5\xe2\xf0\x17\xfd\x84\xc1\x61\x5d\xfc\x5d\x52\x2f\xc2\x0f\x60\x78\xa7\x38\xdf\xa9\xf5\x80\xe6\x7e\xb9\x51\x9f\xb4\xe6\x6a\x2e\xb7\xfa\x70\x62\x5f\x06\x2b\x28\x93\x0b\xc0\xd1\x6a\xee\x8a\x4f\xd5\xee\xb0\xcb\x03\x20\x8a\xf2\x26\xb8\x9f\xda\x35\x66\xd3\xd6\x89\xa1\x25\xfc\xcb\x8d\x14\xc3\x1a\x6e\xb7\x55\xb0\xf3\xd9\x9c\x4d\x7c\x46\x53\x12\x77\x93\x4c\xef\x67\xdb\x3d\xd7\x70\x41\x5b\x2e\xba\xfa\xdc\xe3\xe4\xd9\x14\x50\x45\x4a\x31\xe1\x73\xbc\x20\x8a\x77\xef\x47\x59\x74\x23\x97\x56\xab\xa2\xff\x99\x5e\x11\x77\xf8\xaf\x10\x33\xa1\x89\x11\x97\x4e\x71\xd7\x2c\xa2\xd2\x04\x54\x72\xa2\x2a\x57\x5b\xb8\xfb\x6a\x5f\xbf\x78\x75\x89\xdb\x6a\x84\x93\xa2\xdd\xd3\x2b\x79\xec\x8e\x3d\x0b\x75\xf2\x61\x5b\x75\x9d\x30\x61\x75\x85\x89\x67\x42\x38\xa1\xff\x13\x95\x81\x56\x96\x62\x80\xd5\x16\x7d\xc1\xd9\x3d\x4c\x1d\xc1\x5f\x49\xa2\x16\xe4\x44\xe8\x22\x52\x4b\x9e\x79\xb6\x15\xfe\xa2\xa4\x55\x1b\x8c\xb6\x71\xd9\xbc\xbd\x56\xb7\x9a\x12\x7a\xbd\x6d\xdf\x5c\x65\x42\xab\x2d\x5d\x29\xf7\x55\x38\x02\x70\xd1\x8d\xaf\xbb\xa4\xb4\x1f\xb7\xf2\x0b\xbf\xee\xde\x65\x93\x36\x0a\x73\x4b\xfb\x9b\x39\x5b\x12\xc0\x20\xed\x6f\x62\x82\xe3\x24\x29\x83\xa6\xd3\x01\x07\x6f\x97\x73\xac\xf2\xff\xfe\x9f\xff\xeb\xc9\x29\x0f\xfb\xb4\x6f\xb7\xf4\xa5\x8c\x3a\xc3\xcb\x32\x48\x05\xf9\xdb\xff\x20\x81\xeb\x5a\x5d\x5b\x7e\x91\xaf\xcc\x7e\x83\x14\x50\x7e\xa7\xba\x7d\x7c\x64\xfa\x8b\x29\x42\xa6\x41\x06\x98\x14\x64\x2c\xed\x2a\xda\x90\xa4\xeb\xcf\xaa\xbf\x1d\xaa\xe5\x87\xb9\xa8\x68\x7e\xc8\xff\x93\x7f\xe5\xb8\xb8\xae\xc7\x35\x53\xfe\x40\xc6\x81\x9c\x83\xb3\xc0\xfb\x89\xe3\x8c\xd3\xbb\x22\x91\xec\x17\x29\xfb\x71\x63\x84\xd7\x00\xf9\x36\x5c\xb6\x3f\xb0\x33\x17\x23\x84\xb5\x76\x4e\x29\xb8\x59\xc8\x89\x42\xcf\x43\x0d\x58\xd9\x51\x1d\x68\x9e\xba\x2b\x17\x4d\x27\xb9\x2c\x64\x39\x1f\xde\x1d\xdf\xf9\xa2\x21\xab\xc4\x93\xa9\x5f\xe6\x29\x5f\xd4\x0b\x67\x93\x9e\x49\x7d\x5b\x42\xa6\xa3\x3f\x19\x1d\x79\xec\xff\xa7\x56\x6b\xbe\x6c\xdd\x17\x30\xef\x22\xdd\x6c\xd6\x6c\xf4\x2e\xd6\x5a\x11\x84\xb9\xa7\xfa\x99\x51\x3a\xff\xbe\xa4\x3f\xa3\x98\x07\x1c\x21\x61\x1c\x19\x61\x5b\x2c\x4a\x24\xbf\xc6\x07\x21\x3f\x9d\xba\x3d\xad\x88\x9c\x41\xf6\x23\xe3\x29\xa9\x7a\x41\x44\x7c\x65\x7a\x29\x47\xec\xdc\xf2\x99\xc1\x52\xd7\x16\x6c\x6d\x7e\x57\x5c\xcb\x4f\x9a\x2e\x8d\x94\xf1\x52\xbe\x24\x19\xf7\x11\x04\x14\xd7\x11\x02\x3c\xf8\x75\xdd\x0d\xe7\xf6\x2d\x59\xec\x5d\xba\x65\x26\xce\x96\xc1\x2c\x42\x94\x91\x4b\x86\xb0\xa0\x7c\xf9\xa2\xce\xac\xd3\xb3\x71\xe7\x2d\x67\x70\x4d\x21\x5f\x0e\xf2\xaf\x44\x53\xf1\x9c\xf5\x14\x96\x56\xe0\x24\xc8\xcd\x03\x31\xa4\xef\xf8\xec\x45\xdf\xce\xe4\x2b\xe4\xac\xc4\x8b\xf8\x19\x78\x18\x4d\xb3\xfb\x27\x6f\xf9\x6f\x48\x25\x9c\x56\x36\x96\xfe\x86\xfb\x19\x12\x25\x85\x55\x14\x58\x4b\x97\x3c\x1b\xae\x9f\xcb\xaa\x79\xb2\x16\xb0\x35\xd2\xf6\x44\xbe\xcf\x5e\xd2\x9a\xb5\xf3\x50\xfe\x94\x7f\xe6\xdb\x51\x2d\x01\x21\x3c\x3e\x0c\x9a\xf1\x30\xd4\xd4\x24\x98\x34\xe7\x21\xa5\xc5\xdd\x14\x30\xdf\xa2\x4c\x60\xdf\xf2\xb5\x4a\x87\x8e\x49\xc5\x2c\x50\x0d\x6a\x86\x8c\x35\x0d\x4f\x87\x2c\x5f\x11\x84\x94\xa9\x9f\xe3\x7e\x3a\x20\xe9\x66\x31\x01\xca\xca\xbe\x08\x47\x03\x1f\x02\xa9\x36\x3a\xd0\xac\xe1\xea\xc5\xf5\xa1\xa5\x1d\x2e\x90\x64\xce\x89\xf3\x5d\x96\xe1\xb6\x12\x80\xc0\xbf\xf0\xbd\xa1\xa4\x99\x50\x99\x36\x96\xd4\x87\x09\xed\x8b\x05\x65\x13\xbf\xc5\xb3\x19\x0a\xf3\x5c\xc5\x2c\x99\x3a\xcb\x54\x82\x64\x35\x27\x55\xfa\x3c\x62\xb5\xe6\xc2\xb8\xcb\x44\x04\x26\x7e\x3b\x51\xe2\x56\x8c\x1a\xc2\x1c\xad\x79\x84\x37\x5a\xf2\x96\xe5\x8d\x10\x1c\x25\xe4\x78\xd5\x47\xca\x29\xaf\x07\x0e\x6f\x9c\x33\xe3\x7b\x70\x81\xe6\x72\x40\x07\xf9\x31\x09\xda\x69\xe4\x22\x12\x8b\x98\x1b\x08\x5d\x5d\xa9\xe6\x6f\xaa\x90\xac\xf2\x8a\x3d\x04\xa4\x8c\xac\x33\xae\x44\x1f\x29\xb2\x63\xee\x1f\x52\xb0\x16\x39\x0b\x09\x13\x45\x3a\x0d\xd0\xc0\x11\x12\xc6\x39\x33\x08\x8f\xbd\xd2\xa6\x6e\x12\x84\xb1\x14\x20\x6f\xf1\x31\x05\x22\xfa\x70\xd5\x68\xf1\xc9\x21\x97\x52\xcc\x22\x3f\xd9\x30\x3b\xa3\x85\x12\xaf\xe1\x9a\xd6\x7e\x46\x39\x76\x56\x66\xba\x2a\xe6\x8f\xb3\x06\x1e\xc4\xf8\x79\x4b\x3b\xb1\x80\x34\x34\x2a\xc1\x3b\x09\xab\x40\x20\xf2\x9d\xdf\xff\xed\x9b\xf7\x1d\x2f\x43\xb4\x2b\xfd\xf6\xe7\xf7\xdd\xbd\x1f\xef\xff\xf6\xed\x7b\x18\x94\x46\x85\xe7\x57\xac\x51\x1d\xd7\x80\x82\x06\xbd\x6f\xcb\x8f\x55\x73\xe8\x84\xc7\xc3\x67\xa4\x0f\x9f\x64\x29\x3e\xf5\xe9\x16\x0f\x81\x1d\x06\x3b\x7c\x15\xb2\xd2\x1d\x5e\x1f\x76\x73\x1d\x63\x27\x14\xc0\x7e\x85\xe2\x36\x03\xf3\x82\x9b\xfc\x3d\xfc\x8e\xc3\xfd\x13\xeb\x50\xee\x63\xa4\xbf\x5b\x31\xf3\x00\x11\x68\x17\x4a\xe1\x44\x2d\x82\xc1\x34\x68\xca\xb8\x95\x53\xd7\x6a\xb1\x9f\x42\x37\x1b\x67\xc9\xba\x94\x40\x19\xcc\xee\x07\x8b\xda\x4d\xd9\xcf\x52\x92\x86\x1f\x36\xde\x34\xcb\x3a\x15\x40\x74\xd1\xe1\xe0\xed\xc1\xdb\x12\xb3\x6a\x70\xef\xf0\x73\x90\x79\x5b\x65\x6d\x52\x40\xe9\x74\x44\x31\x05\x1d\x2c\x94\x4e\xb3\x9c\x61\x34\xc7\xd5\x8a\x11\x8a\x10\xe4\x5e\x98\x6e\xfc\xfa\x11\xc8\x92\x4c\xba\xb4\x17\xea\xb0\x9f\x5f\x58\x8b\x30\x23\xc4\x31\x5f\x85\x7a\x54\xe7\xb1\x92\xd5\x91\xa1\xaa\x73\xb0\x40\x7f\x61\x13\xfb\x46\x03\xcd\x9d\xe3\x23\xb6\x6c\x57\x5e\xc1\x60\x9d\xba\x9f\x01\xcd\x13\x05\xad\x26\x5a\x38\x00\xbb\xe6\xa1\x52\x49\x62\xe7\xd5\x2b\xa2\xb0\xef\x12\xb6\xb1\xfb\xa6\xe1\x5a\xcd\x37\xbe\xd5\x17\x59\x6b\x2c\x57\xd0\x56\xfd\x4c\x7f\x42\xe7\x06\x9e\x5b\xd6\x36\x1b\x6f\x88\x6c\xd2\x1f\x4b\x92\x33\xd1\x36\x5c\x3c\xb3\xd3\x7c\x1a\x6c\x13\xcf\x74\xfc\x1a\x02\x88\xd2\xfc\xfe\x6a\xc0\x97\x49\x76\x44\x4d\xdd\xb9\x88\x3d\x91\x9e\x3a\x02\x39\x31\x18\xc9\x18\xb8\x3c\xa6\x99\xe1\x46\x91\x74\x10\xf7\x8a\x2c\x96\xc9\xb8\x16\xf5\xee\x03\x68\xd0\xda\x4f\x82\x4d\xbb\xb3\x08\x8f\xe1\x0d\x32\xcc\xb1\x7b\x17\x16\x76\x48\x70\x36\x1a\xad\xfb\xb8\x49\x66\xba\xf1\x28\x51\x4b\x5f\xef\xb0\xfd\x3a\x32\xb9\x2f\xda\xbe\x5a\x56\xfb\x22\x90\xca\x73\x97\x62\x90\x45\xdf\x17\xcb\x0d\x6f\x6b\xcf\x74\xfd\x2e\x77\xe8\xd4\x24\xc6\xf8\x88\xe1\x40\x86\x25\x88\xdf\x27\x4a\x87\x18\x06\xbe\x74\x48\xe4\x2a\x7e\xcf\x44\xa8\x73\xf2\x81\x17\xee\x34\x93\x4d\x0e\x05\xed\x09\xf1\xb7\x52\x21\x88\x53\xd4\xb9\xad\x9b\x86\xb3\x55\x32\xe0\xfe\xba\xc9\x83\xc8\x89\x08\x8c\x7c\x82\x15\x39\x17\xb6\x9b\xa7\x30\xcb\x6b\xf9\xd9\xa0\x5a\x84\x4c\xf8\x01\x1e\xab\xc3\x06\xb5\x85\x1f\x72\xfd\xd2\xfc\x44\x1a\x1e\x4a\xc1\x36\xf2\x86\x95\x84\x87\x2d\x56\x04\xe6\x76\xf9\x71\x25\x86\x62\x03\x42\x18\x3c\xe6\xb6\x62\x5b\xee\x10\x91\x20\x79\xea\xfc\xc3\xb9\x8b\x72\x59\x70\x58\x17\xf4\x99\xc7\xba\xe1\xb0\x7c\x71\xf4\x04\xc2\xe1\x74\xac\x7e\xf6\xaf\xf7\xf1\x07\x79\xc5\x42\xf5\xa6\xe9\x19\xcc\xd4\xa2\xec\xaf\x71\x8f\x06\xde\x38\x3c\xb9\x62\x9d\xe8\xbe\xf3\x5c\x04\x51\xcf\xaf\xd1\xc6\xd7\xcc\x4a\xac\x94\x92\xfe\x09\x3f\x84\x9e\xea\x54\x0e\x04\x8d\x09\x34\x00\x35\xb2\x45\xbd\x06\x0e\xd3\x88\x77\x25\x0b\xcd\xdc\xd0\xca\x64\x5f\xa1\xeb\xdf\xb3\xce\xc2\x08\x37\xbe\x09\x61\xd9\xdb\x46\xd3\xbf\x0d\xe9\x5a\x3f\x6a\x52\x2e\xc3\x9a\x91\xb4\x7f\xad\x7a\x2a\xfd\x6f\xef\x0d\x47\x69\xab\xcc\x3d\xb9\x06\x7e\xc6\x9f\x09\xd4\x50\xe4\x8f\x79\x62\x59\x00\x42\x95\xe6\xe1\xbb\xd2\x7c\x3d\xd4\x09\x55\x64\x6a\x82\x8e\x5d\x32\xd4\x98\xec\x57\x92\x7a\xbd\x2f\x5b\x26\x53\x3a\x9b\xc1\xa6\x3a\x4b\xa6\x06\xec\x77\x1b\x5b\x62\xac\x09\x39\x97\xa3\x6a\x03\x5d\x52\x98\x94\x2c\x49\x15\x1c\xcc\x8f\xf6\x87\x59\xd2\xe9\x57\xb0\x99\x4d\xd7\xa5\xb0\xab\x43\xbc\x3c\xc2\xb3\x48\x85\xa0\xd7\x73\xd4\xd6\xfa\x5e\x75\x73\xf8\xcf\xc9\x3d\x83\x4b\x75\x8a\x23\x72\xd4\xe7\x21\x9d\x9a\x93\xdb\x1b\x12\x5e\x6a\x2d\xc1\xba\x42\x44\xcb\x2b\xfa\xbd\x41\x28\x1d\x06\xb8\x2a\x39\x08\x06\x38\xcc\x40\x22\x8a\x7a\x0e\x13\x11\x86\x9a\x68\xa2\x93\x61\xa8\x5a\x5a\x27\x64\x10\x20\x27\x54\x05\xad\xff\xe7\xd5\x26\xce\x0a\x53\xf5\x05\x12\x20\xb7\x9b\x78\xc7\xdb\xb8\xbb\xe3\x6d\x0d\x23\x53\x0a\x3e\xec\x8a\x5a\x8c\xbf\x15\xdf\x7b\x62\x39\x5e\x6e\x51\xc3\x15\xad\xdf\x4c\xd4\x2c\xb5\x0d\x48\x0a\x90\x67\x6a\x67\x03\x61\x0f\xb5\x6e\x40\x94\x82\x76\x93\x51\xfc\x77\xd5\x44\x3f\xe8\x03\x92\x2a\x22\x47\xcb\x7f\x3a\x54\x4f\xb2\x6a\x61\x29\x92\x69\x7b\xf8\xa7\xfb\xab\x47\xb2\x89\xe1\x92\x36\xb2\xdf\x71\xa2\x0c\xdc\x1f\xde\x4c\x45\xab\x0e\x31\x07\x18\x65\xf8\xa0\x60\x20\xfa\x9e\xfd\x9e\x39\xad\xa3\x3b\xcb\xa2\x6e\xc0\x65\x4f\x28\x32\x5c\xee\xb4\x32\x63\x08\xb0\x8a\x2a\xa2\xfb\x5d\xd2\x76\x33\xa7\xad\x31\x57\x49\x93\x8e\x13\xde\x28\xfc\x6b\xd8\x03\x93\xb0\x86\x35\x07\x71\x23\x1d\x10\x31\x1d\x0b\x3e\x42\xe4\x36\xbd\x90\x68\xa7\x68\x25\x74\xd0\xab\x50\xea\x7a\xa1\xcc\x40\x52\xfd\x80\xc2\x4f\x4e\x8e\x71\x9c\xb8\x7d\xed\x33\x26\xcc\xc9\x3e\x37\x8e\xf9\x19\x0d\x98\xd5\x94\xf9\x43\x8b\x15\xf8\x28\x1d\x64\x29\xd7\x02\xf8\xaf\xcf\x08\x91\x92\xb4\xaa\xb9\xac\xbc\xd6\x88\xca\x35\x25\x46\xee\x79\x1c\x2e\x2f\x3f\xb8\xa1\x7f\x4f\x76\xbb\x27\xab\xd5\x83\x89\x51\x3b\x9e\x2d\x0c\x7b\xe0\xa8\xa8\xca\x91\x01\x95\x74\x35\x39\x16\x78\x7a\xee\x18\x20\x59\x27\xbe\x20\x51\xf0\x39\xcd\x4c\xc7\x2a\xce\x9c\xe0\x6e\x5c\xbd\x8e\xe9\x7f\x43\xd4\x2e\xba\x3f\xf1\x86\x16\xcf\x4e\x3f\x96\x81\xf8\xe0\xb2\x06\x77\xf7\x6f\xed\x60\xb0\x07\x29\x3b\x47\xb4\x7b\x77\x64\x52\x24\x62\xe8\xd1\x29\x71\x6c\x7b\x9c\xd6\xc0\xba\x4f\x00\x4e\x33\xee\xb1\xf5\xff\x4e\xe6\x7d\xaa\xf9\x29\x34\xb8\x83\x7d\xcf\xae\xab\x0f\x15\x15\xf8\x0b\xfd\xc1\xf7\x4c\xa3\x2d\xe4\x31\xba\x02\xb5\xcb\xd9\x5f\x25\xf9\x36\x56\xce\x81\x85\x81\xe8\x34\x54\xb1\xb9\x84\xe9\x14\x77\xb7\xc3\x96\x8d\x44\x1f\xe4\x34\x6d\x96\x07\xc8\xf5\x37\x7a\x3f\xe9\xbf\x70\x59\xa8\x21\xa6\x6e\xa3\xf1\x1d\xc1\x32\x57\xbd\x22\xd5\x4c\x1a\x54\x1c\xc7\xcd\xc5\xb9\x86\x52\xd7\x4d\xde\x23\xde\x30\xa5\xe3\xf4\x14\x70\x1f\x6c\x1d\x09\xca\x26\x6b\xba\x32\xc9\x11\x5e\xae\x9b\xf8\x5a\xdf\x68\x34\x3d\xc9\x37\x9f\x09\x15\xfa\xa3\x11\xe3\x2f\x88\x20\x5a\x30\x7f\xcc\x0e\x7d\xec\x7c\x8d\xf5\x56\x4d\x5c\x24\x10\x3a\x0e\x04\x1f\xd3\x96\x58\x18\x76\x6d\xc0\x5d\x56\x1b\x60\xa4\x60\xea\xdc\xe5\x8c\xd0\xa6\x51\x40\x39\x22\xc6\x00\x07\xa6\x73\xca\x5c\x83\xba\xa8\xe8\x9a\x8c\x27\xe6\x0d\xc7\x23\x5e\x6e\x09\x88\xba\xc3\x4d\x43\xf1\xbd\x8f\x65\x39\xff\xc6\xb8\x04\xef\x09\x87\x65\xe7\xbe\x09\x63\xca\x52\x97\xf2\xa5\x21\x8c\x0e\xef\xf7\xb2\xed\x11\x33\x27\xac\xd0\x5c\xcf\xd0\x78\x12\x03\x91\x50\xd5\xc0\x9d\x3b\x71\xe5\xee\x5c\x1d\x9d\x2e\x73\xe7\x26\xd1\x2e\x2e\x99\xdb\xb1\xfe\xe4\x58\x5e\x53\x81\xd6\x2d\x6d\x26\x8b\x85\x3b\x8f\xf2\x15\xb3\x5c\xf0\x31\x65\xa8\xdd\xef\x23\x60\x33\xf1\x07\xd3\x20\x1b\xc7\x80\x24\x06\xad\x62\xd2\x31\x20\x44\x3c\x17\x97\xa2\x63\x20\x24\xca\x95\x57\xb8\x62\xcb\x26\x69\xfd\x8e\xc0\x9b\xa6\xf9\x20\xa1\xe7\x16\xf8\x8c\x39\x6b\x8e\x39\x2d\x99\x1c\x5d\xf9\x65\x9a\x4b\xd2\x5d\xb5\xf4\xa1\xe6\x9f\x72\xc2\xc4\xe4\xe9\x65\xc6\xb7\x16\x47\xf0\x22\x19\x8e\x5e\x40\x73\xf5\xe8\x95\xb8\x71\x45\x7a\x59\x8a\x59\xa6\xcf\xbb\x6a\x38\x75\xc5\x30\x8d\x62\x30\x8b\xb5\x17\xab\x8f\x7c\xb2\xac\x92\x70\xfc\x9a\x36\xd1\x19\x46\xaa\xe0\x90\x2c\xb1\x37\x41\x2c\xbb\x9b\xae\x2f\x77\x6e\x7c\xac\x4b\x65\x6f\x25\x0e\x1c\xac\xe4\x94\xcf\x46\x8e\x95\x48\x10\x28\x94\x42\x97\x9f\xc6\xd0\x96\x36\x00\x4f\x40\x35\xa4\xf2\xcf\x06\x8a\x2d\xc3\xa1\x60\x8e\x83\xdb\x00\x7e\x4d\xa2\x7a\x2e\x78\x86\xc4\xf1\x43\x4c\x2a\xec\xb8\x82\xa0\xeb\x34\x79\x37\x69\xdc\x28\x62\x16\xdd\x1c\xca\xb9\x34\x98\x16\x51\x77\xc2\x03\xac\x6c\x8f\x4c\x0c\x60\xe6\x0a\x33\x98\xa1\x2d\x3b\x4a\x5f\x97\x70\x97\xbe\xa5\xae\x30\xb8\xa9\xba\xc2\xfc\x1d\xa9\x40\x13\x30\x27\x81\xf7\x0a\x33\x09\xc3\x63\x7e\xa9\x35\xf2\x6c\x3c\x07\xcc\xb8\xbc\xb4\xdd\xf5\x37\x12\xff\x79\xba\x82\x37\xc5\x0e\x77\x61\x18\xea\xbb\x5b\xeb\x98\x59\x5c\x1b\x22\xd3\xf2\x75\x3b\x38\xe2\xe1\xc4\x32\x27\xee\xe7\x6d\x63\xf5\x31\x59\x59\x4a\x64\x71\xc6\x1b\x4e\x85\x7a\xff\x83\xbd\xe2\xfe\x99\xff\x83\x77\x0f\xfd\xa9\x88\x94\x7c\xfa\xa7\xa9\x19\x42\xc4\x5a\xde\x99\x8f\x47\x3e\xbc\x22\xbf\xf0\x24\xa0\x98\x43\x19\x08\x61\x03\x8c\xf1\x12\x53\x67\x17\x03\x68\xa7\xeb\xd5\x6f\x66\x73\xda\x8a\x4e\xa7\x94\x12\xaf\x78\xff\xb7\xf3\xbf\x8b\x69\xf4\x19\x7e\xe5\xff\x83\xd9\xc0\x00\x82\x87\x3c\x10\x89\x84\xd5\x07\x9d\x38\xc9\x69\x44\x05\xb9\xa6\x2b\xfa\xf1\x22\x44\x39\xec\x52\xe7\xa3\xf4\xf0\x89\xa1\x0a\xe5\x9e\x6f\x51\xcb\x95\x47\xb9\xdd\xed\xc8\x31\xeb\x58\xfa\xa0\x6d\xe9\xf3\x4b\x8e\x19\xbf\x3e\x6c\x49\x1a\x70\xfe\x67\xc3\x02\xc3\x65\xb1\x7a\x94\x6f\x84\xff\x12\x4f\x0e\x07\xe7\x43\x5d\x8e\xae\x05\x4f\x34\x8d\xd2\xd4\x72\xc4\x5c\xb9\x2d\x35\x6c\x45\x0e\xf0\x0e\x27\xf8\x13\x0d\x2d\x91\xfa\xb5\x27\x0d\xbb\xd9\xd0\x3e\x40\xf5\x34\xd5\x0b\xb1\x08\x85\x3e\x88\x7b\xfb\x44\x0f\xa2\x75\xcb\x1c\xdc\x55\x2d\x35\x38\x42\x05\x5a\x6e\x61\x0c\x7c\x12\xa3\x28\x23\x50\x16\xfb\x4e\xba\x04\xdb\x73\x7a\x5b\xd9\x6f\x07\x89\x80\xc1\x5e\x44\xfa\xf9\xd6\x62\x68\x8c\xc1\x82\x46\x24\x06\xce\x48\x27\x85\xe7\x42\xf1\x00\x1b\x42\x17\x29\x0d\xda\xc2\x0c\x7d\x88\xd1\xaf\x91\x00\xc1\x13\xe0\x56\x48\x37\xd1\xbd\xc1\x32\x31\x4e\x48\x58\x7d\x20\x9e\x70\xf6\xd5\x95\xc3\x61\x5c\x3f\xe2\xeb\x44\x1f\xab\xd5\x81\x68\x10\x77\xe6\xb6\x7a\xff\x9c\xd6\x4b\xf3\x08\x17\xc5\xa3\x75\x0f\x06\x84\x1d\x1e\xde\x6a\x41\xec\x93\xab\x18\xd2\x67\x72\x44\x4c\x7c\x82\x99\x47\x77\x12\x42\xf3\xe4\x31\x38\x87\x17\x82\x44\xc2\x01\x7e\xc8\x0d\x45\xc3\xd2\xef\x46\xc7\xb2\xda\x65\x7e\x6e\xb9\x4e\x1c\x84\xac\xde\x9b\x04\xb3\x05\x7d\x4b\x07\xbd\x44\x07\x42\x21\x1c\xbe\xac\x21\x8c\x8a\x9d\xba\xd1\x1b\x12\xec\x9d\x36\xc9\xc0\x4e\xd6\x3f\xb1\xbf\x3c\x8f\xcc\x13\x67\x8f\x2f\x20\x36\x02\x37\xcc\xe4\xf4\xfe\x98\xdb\x18\x49\x72\xef\x3c\x69\xb2\x0e\x03\x9d\xb0\x19\x30\x94\xe1\x3d\xfd\x48\x30\x07\x11\x3b\xd0\xb5\x29\x7a\x74\x64\xa2\x6c\x00\x49\x78\x9d\x3f\x32\x5b\xc7\x27\x2a\x12\xa2\x3b\xaf\xcd\x1c\xaf\xef\xcf\x47\x09\x9b\xbb\xdc\xe2\x45\x16\xa6\x95\xfa\xf6\x8f\x29\x84\xfd\x10\xc5\x5f\x1c\x4f\x11\xb1\xe7\x2c\x4d\xf9\x63\x95\xc8\x1f\x07\xf3\xbf\xc4\x19\x71\xf7\xa0\xbc\x6d\xb6\x3b\xde\x57\xf8\xc2\xca\x04\x9c\xd8\x2d\x0d\xe3\xca\x20\x6e\xf3\xf9\xb9\xe7\x17\x17\xd8\x46\x7e\x25\xca\x15\x41\x8b\x61\xa5\x47\x31\xe5\x0e\xa1\xff\x18\x6b\x3e\x5d\x99\x89\x46\x77\x04\x87\x18\xef\x7e\xb3\x44\xe3\x49\x2d\x58\xa3\x03\x0c\x0b\xfa\x73\x47\x97\x71\x7f\xce\x08\xee\x44\x55\x93\x27\x42\x8c\x83\x14\xba\x66\x05\xda\xe3\xdd\x4b\xaf\x5e\xe5\x13\x57\xae\x9c\xc0\xc0\x21\x43\x13\x8b\x3b\xdf\x65\xe6\xf1\x24\x96\xf7\xa3\x05\x06\x77\x88\x93\xba\xd2\x3b\xc4\x63\x7c\x19\x34\x6c\x17\x89\xc7\x12\x60\xd3\x7a\x03\xb3\xef\xd8\xc4\x90\x26\x8b\x25\x36\x00\x09\xc0\xcf\xf8\x18\x6f\x6e\x6c\x24\x34\xba\x97\x83\xe3\x45\xcc\xe1\xf1\x38\xc0\xd9\x5b\x2e\x1e\x5b\xa7\x44\x25\x76\x6c\xe6\x4e\x27\x67\x4d\x6f\x06\xba\x79\x13\x57\x55\x09\x0f\x9f\x3a\x05\xaa\xef\x2a\xce\xc7\x99\x2b\x81\xa8\x80\xf1\x0e\x04\x1b\xb5\x16\xa3\x89\x4f\x82\x04\xa6\xd7\x20\xd4\x99\x56\x2e\x81\x83\x91\xf4\x65\x67\x89\xf4\xc2\x6c\x3c\x22\xca\x69\xdc\x69\x7d\xb2\x6f\x18\xe5\x4b\x73\xaf\x37\x8d\x63\xab\xee\x6e\x80\x11\xef\x5a\xc4\x7b\x45\x52\x15\xf6\x07\x5a\x80\xa0\xb5\x53\x55\x00\x0c\x37\xbb\x03\x4d\x0e\xb4\x74\x90\xf8\xf5\x1d\xa0\xb7\x17\x97\x30\xe2\xd2\xa2\x11\xcb\xb2\xe6\x13\x3e\xff\x0b\x89\x88\x78\x98\x81\x9f\xe3\x51\xf2\xb9\x5c\x72\x64\x88\xaa\xd6\xb0\xf5\xd7\xa5\x5d\xd9\xad\x57\x7a\xde\xf9\xb8\x21\x26\xa0\x8b\x31\x37\xc7\x1b\x39\x70\x76\xda\x97\xcb\xea\x8a\xb8\xda\xd7\xb4\x56\xb5\x44\x81\x37\xff\x93\x5b\x6f\xa6\x85\x91\xc0\x7d\x9e\x6d\xbe\xfe\x90\x96\x4c\xbf\x3f\xf4\x24\x1c\x4d\xcf\x10\x74\xea\x8e\xac\xcd\xf0\x6d\x7a\x5c\x9c\x0a\x72\xf6\x57\x7c\xc8\xe4\xea\xde\xfd\x39\xfb\x60\xd4\x07\xff\x6c\x80\x34\xfd\xb9\x94\x5d\xab\x9a\xe1\x9d\x89\xd0\x17\x8e\x58\xd9\xe1\xd2\x28\x7e\xdf\x01\x6e\x53\x70\x21\xd1\xa5\xe1\x91\xc7\x17\x06\x14\x2d\x42\xad\xf6\x68\x05\x58\x36\x9b\xa3\x6e\xac\x4f\x99\x6c\x23\x0e\x11\x5d\xbb\x1e\x8e\x53\x70\x5f\x8c\xb1\xd2\x1c\x09\x8d\x87\x12\x8f\x21\xed\x8a\x1b\x79\x19\x81\x6d\xa6\x1d\x9d\x9e\xf5\xaa\xb3\x67\xfe\xf8\xbd\xd0\x4d\x73\xcd\xea\x58\xbb\xdb\x35\x5a\x92\x71\xdf\xa2\x35\xd1\x4c\x88\x13\x20\xdd\xbe\x91\xeb\x81\xef\xf4\x73\x0c\x24\x46\x12\x1e\xd5\x4b\xf9\x1a\x83\xec\x35\x94\x6f\x08\xea\x3b\x06\x59\x34\x2b\x5e\xb3\xa7\xf4\x67\xac\xb3\x0b\x6f\x13\x9a\xe2\x0e\x7b\x79\xcf\xa1\xf1\xc4\xe7\x95\x33\x08\x3b\xcb\xed\x95\xc4\x05\x64\x01\x13\x56\x1e\x31\xef\xf3\x05\x5b\x79\x1d\x84\x2f\x84\xa2\x02\x9d\x27\x44\x34\x40\x9c\x70\x6f\xbb\xd7\x17\x88\x7c\xb0\x9f\x61\x9f\xe0\x47\x65\xfd\x7a\x25\xc2\x01\x56\x13\x36\x2d\x09\x25\xff\x98\x85\x6b\x36\x06\x99\x63\xa2\x29\xa4\xf6\x12\xc6\x9d\xc3\x2c\x11\x0d\x40\xac\x4d\x03\x11\xe9\x4a\xee\x97\xb8\xbb\xae\x91\xa7\xe6\x38\x2b\x3c\x61\xe3\x1e\xe9\xdd\x64\x9e\x20\xb9\x95\x3c\x82\x88\x6e\x93\x00\xb2\x28\x20\x43\x1e\x49\xc1\xa3\xf6\xf2\x65\x42\x3e\x1c\x01\x4e\x1e\x8d\x44\x47\x35\x3c\xbb\x28\x59\x98\xb0\x9a\x4e\xc5\xb9\x48\xf0\x5c\xb1\xde\xc9\x11\x43\x7e\xe5\x89\xce\x5f\x51\x49\x90\xa0\x5b\xb4\x2b\x8b\x40\xaa\x84\x99\xef\x57\x82\x00\xfb\xe0\x54\xc5\xb6\x6b\xac\x0a\x3a\x48\x08\xe4\x03\x5f\xd2\xa0\xf5\x86\xec\xa0\xca\x2f\x16\xe3\xa2\x6d\x86\x69\xf1\x61\xcf\xe4\x59\x68\xbd\xb5\x83\x21\x3f\xfc\xf7\x8b\xb7\x6f\x1e\xe7\x9f\x9e\x5c\x5f\x5f\x3f\xe1\xe2\x4f\x0e\xed\x96\xe3\xbe\xac\x38\xc2\xe9\xff\x7f\xf6\xfa\x71\x5e\xf6\xcb\x47\xb3\xfc\x4c\xa8\x76\x24\x86\xea\x90\x00\x67\x23\x58\xf7\x89\x40\xfc\x71\x6a\xae\x3b\x46\xb5\xa0\x3e\x14\xb6\x67\xee\x78\xf5\xcc\x15\x5d\x17\x53\x5c\xd2\x1d\xa3\xb0\x6c\x4b\x78\x72\xe3\xc3\x65\x10\xd7\xf0\x61\x2a\x16\xde\x10\xa4\xa2\x76\xb4\x1b\xaf\x96\xfa\xb0\xdd\x00\xc4\x9c\x17\x4f\xe1\xb6\x18\x15\xb4\xbc\x70\xe1\x14\x66\x8d\x2b\x51\x29\xb6\x92\x25\x07\xcc\xa2\xb4\x85\x28\x57\x3f\x0d\x0b\xe3\xce\x16\xde\x65\xfa\x21\xff\x77\x36\x10\xf3\x42\x09\x6e\x71\x96\xe1\x16\x80\x67\xc3\xc2\x88\xb8\xef\xa4\x1f\x1a\x80\xbc\x23\x60\xd2\x57\xcc\x0b\x12\xd8\xa8\x12\x55\x86\xb1\x0b\x38\x11\xe1\xa0\x1c\x03\xae\x49\x75\xe3\x22\xa9\x79\x7e\x3a\xdb\xe6\x45\xae\x6b\x3d\xd6\x8b\x5c\x66\xbb\x9e\x9a\x87\x5c\x2e\xac\x4d\x4e\x91\xa3\x8f\x00\x55\x15\xd6\x58\xf8\x15\xc2\x94\xeb\xb3\x16\xe5\x30\xc3\x3d\x20\x58\xf6\x08\xad\x36\xb5\x17\x45\xd7\x13\x56\x2d\xee\x1e\xa3\x6f\x7a\xfa\x08\x23\x27\x61\x29\x12\xea\x01\xd2\x91\xca\x0b\xd3\x87\xe1\x6c\x44\x9b\x22\xe7\xa7\xb4\x69\xc4\xdd\x28\xe0\xa0\x8d\x11\x53\xa1\x92\xdd\x58\x18\x89\x2d\x1c\xe3\x9f\xe4\xc2\x81\x9d\xeb\x16\xde\x15\xb1\x7d\x9e\x85\xb4\x94\x1b\xb5\x5d\x0a\xba\x9b\x6e\x51\x9e\x10\xd9\x47\x9e\xa2\x32\x5f\x9b\xba\x2c\x33\x08\x1c\x96\xd9\xce\x60\x77\x55\x47\xe1\xb8\xfc\x49\x2f\xb5\x5a\x70\x15\x09\x02\x33\xc8\x1c\xbe\xe4\x39\xdc\xd9\xc4\xda\xca\x53\xcf\xa7\xf2\xe5\x67\x6b\xbf\x6d\x6e\x2c\x62\xd9\x33\xfc\xd2\x28\xac\x7e\x64\x11\x4c\x07\x15\x21\xa7\xea\x8a\xac\x28\xa0\x50\x3b\x24\x32\x56\x61\x3f\x91\x97\xeb\xb0\xa4\xac\x13\xa6\x3a\xed\x2e\x31\x42\x9c\x42\x37\x9f\x86\x77\x91\x37\xd1\x34\xf0\x97\x9b\x1a\xdc\x56\xf5\x03\xf8\xab\x7b\x8d\x44\x65\x90\x9a\xd5\x28\xa1\x1b\x5e\xea\x4f\x5c\x6b\xa6\x46\x31\x8e\xb4\x15\xa0\x86\x11\xc1\xe2\x48\x8f\x46\x04\xf3\x45\x7d\x58\x30\x57\x14\xe7\x66\x98\x84\x49\x5b\x72\xb2\x2c\xe3\xa0\x5f\x71\xa8\x9f\x11\xf7\x6b\x7a\xe5\x86\x82\xc7\x9d\x4b\x7d\x9b\x2b\xc9\xca\x0f\xee\x33\x22\x80\x0d\x44\xf3\xcf\x91\x41\xa6\xfa\x12\x27\xc5\xcd\xee\x5d\x8e\x25\xab\xea\xea\x6a\xb6\x68\x89\x05\xe7\x30\x5b\x78\xef\x91\x29\x3b\xff\xce\x2f\xf0\x5b\x40\xd8\xa1\x18\x58\x21\x1f\x92\xa8\x77\x26\x7e\x50\xa7\x58\x49\x84\x37\xe7\xf0\xfd\xbb\x67\x94\x23\x9e\x9d\x6f\x1a\xc4\x4b\x95\x9c\x99\x14\xc1\x23\x63\xfc\x85\x00\x61\xe1\x91\x31\x14\xba\xe0\x14\x07\xd6\xed\xb7\xc4\xbd\xea\x63\x8b\x17\xfc\x03\x17\x6f\x1d\xc4\xa1\x26\x39\xb6\x5c\x19\xcc\x2f\xf2\xd3\x43\x71\x95\xe1\x72\x85\x29\x30\xf9\xce\x90\xf8\xd0\x0a\xeb\x1d\x55\x9b\xc0\x50\x83\x23\x30\x42\xab\x0a\xbc\x75\x04\xf1\x01\x85\x08\xc2\xd6\x24\x42\xe8\x44\x83\x60\x3d\x7d\xf5\x46\x7e\xe2\xf2\xb0\x86\x0d\xc6\xed\x61\x76\xe5\x95\x2c\x0d\x16\xbc\xdf\x23\x1c\xa8\x5c\xde\x25\x38\xce\xcb\x5d\xb2\x39\x3d\x4a\x14\xc3\x70\x7f\x58\xea\xe0\x7b\xc6\x3b\xa2\x05\xc1\x53\xf8\x82\x15\x97\xfa\x36\x6a\x69\x0f\x3e\xf0\x1d\xe3\xe8\x3c\x49\x35\x70\x11\x85\xb2\x09\x31\x19\x9f\xab\xcd\xec\xca\xf4\x6c\xea\xea\xb4\xe5\xc9\x8d\x77\xd1\x35\xcb\x2e\x55\x90\x00\xb1\x6a\x8b\x2b\x78\xd6\xf1\xdf\x90\x4a\x03\x8b\xc5\xce\xdb\xf2\xc9\xb0\x18\x2d\x9e\xa0\xd4\x05\x3e\x42\xba\x7a\xc6\xf1\x9f\x90\x56\x6c\xc4\x2b\x23\xae\x4c\x5c\x31\xf3\xac\xa6\xfd\x75\xbf\xcb\xbb\x8a\x95\xe9\xba\x11\x07\x0d\x62\x17\xc4\x47\x89\xb0\x47\x70\x07\xde\x8f\xd5\xbb\xdc\x21\xe6\x61\xb7\xc9\xc3\xfc\x70\x98\x88\x5e\xe2\x99\xe9\xbb\xb5\xb3\xa4\xdf\x49\x69\x61\x5f\x4a\xc3\x46\x3c\x7e\xcc\x1c\x3a\xa2\x01\x49\x18\x5a\xf6\x24\x69\x69\x22\x38\xf4\x36\x73\x73\x61\x93\x57\x3b\xaa\xff\xa3\xbc\xa3\x26\xd5\x13\x67\x16\xe2\xad\x11\x93\x56\x4b\xc8\x27\xcb\x83\x76\xc7\x82\xc9\x27\x65\xe2\xab\x49\x66\x52\x8d\xb1\x06\x28\x1f\x5c\xdf\xd2\x87\x30\x60\x16\x90\xe3\x4f\xca\xd8\x5d\x07\x92\x13\xc7\x52\xc7\xa7\x8c\xe5\xa4\xde\x36\x0e\x2d\x74\x3b\x9f\xcb\x57\xc8\x61\xe9\x42\x58\xe4\xd7\xf2\xc5\xba\xc3\x31\x36\x8d\x23\x02\x52\xde\x93\xe1\x5a\x3b\xf8\x30\x01\x7f\x29\x1f\xb0\x85\xa2\x21\xde\x25\x17\xef\xb1\xa2\x4f\x30\xc5\xd4\x8d\xf1\x49\xe2\x27\x38\xbe\x62\x37\x86\x3e\x93\xa1\x39\x45\x94\x88\x32\x23\x6c\x67\x6f\x34\xdb\x29\x70\x47\x4b\xb7\x0b\xb0\x27\x6e\x18\xf8\x85\x8e\x36\x9a\x30\x87\x11\x2a\x35\x33\x4d\x00\xcb\x51\xa8\x59\x51\x3d\x3d\x84\x99\x3e\xfd\xac\x9d\xa1\xff\x19\x02\x3c\xb3\x26\x26\x58\x6c\x08\x65\x6e\x39\xeb\x46\xad\x79\xb3\x87\x34\x71\xc7\xe1\x36\xdc\x03\xa9\x37\x9b\xab\x47\x59\x10\xa6\xa0\xba\x47\x46\x2c\xc8\xa8\x2e\xf5\xfe\x75\xfb\xca\xf0\x20\x3c\x43\xa6\xfd\xd7\xbb\x4e\x38\x98\xed\x3b\xcb\x7e\x6b\xda\xf5\xfb\xf8\xe2\x4d\xd0\x82\x27\x8a\x6c\xe8\x42\x18\x26\x44\xa8\x3f\x02\x18\xa3\xd6\xc7\x1a\x0d\x81\x5f\xf0\x36\x1d\xbf\xfa\x2f\x9a\x28\x79\xe5\x0c\x5e\x9d\x16\xc0\x6d\x66\x51\x4b\xe4\xb1\x0d\x75\xb7\xf4\xcd\x49\x30\x91\xe8\xc4\xf7\x8b\xde\x5e\x56\x07\x62\x0e\x78\xc1\x1f\xfc\x1e\x4a\xc5\x86\x2b\x3a\x76\xc4\x19\xe4\x15\x12\x70\x0e\xb1\x3f\x08\x3f\xc5\x22\x3a\x45\xfa\x9b\xe1\xbd\x08\x55\xbc\x73\xaa\x7e\x69\xfa\xe0\x4d\x8a\xe4\x0d\x09\x17\x65\x05\xaf\xbb\x24\x3e\xa2\x5c\x39\x66\x65\xc2\x7b\x3c\x3c\x18\xa4\x9d\x90\x29\x44\xea\x6d\xd0\x49\x74\x34\xa6\x0e\x72\xef\x80\xd7\xbf\x10\x4f\x5c\xbd\xb2\xae\x48\x85\x17\x67\xea\xe4\x86\x66\x37\x8b\xcd\x38\x5a\xb3\x11\xd7\xf2\x58\x0c\x2f\x88\xb3\xd7\xea\x4f\x02\x9f\x44\x26\x52\xf5\x44\x21\xd1\x0d\x25\x39\xdf\x92\xa4\xbb\x4d\xf4\x15\xa8\x88\x25\x84\x9f\x8e\xbc\x99\x31\x7e\x61\xe9\xcb\xe3\x52\x8d\xeb\xb8\x3d\x32\x95\xf3\xee\x1b\x3b\xf5\xdd\xe2\xe7\x39\xfd\x56\x83\x57\xca\x0e\x1e\x6d\x08\x59\x53\xaf\x37\xfc\x11\xf7\xc7\x14\xd4\x91\xa5\x64\x0a\x42\x4d\x9f\x6b\x90\x55\xaf\x4a\xc2\xd4\x7f\xcd\xa9\x32\x7d\x93\x68\xd8\xeb\xd1\x03\x03\x49\xa7\xbf\xec\xa1\x81\xa3\x0e\x0c\x09\xad\x18\x2a\x29\x46\xd1\x3d\x31\xc0\x5b\x8b\xa4\xb1\x3e\x7d\x87\x83\x5a\xda\x39\x10\xa8\xcd\x51\xa2\x7c\x8a\x69\xea\xee\x50\x9f\x47\x0c\xcf\xb7\xc5\xfc\x1c\xf6\x92\x69\x4c\x08\x5c\xe0\x3b\x79\x6b\x09\xcf\x97\x34\x03\x23\xe6\x1f\x8f\x03\x3a\x6d\x4f\x64\x25\xc6\xb5\xe9\x6e\xc1\xc7\xd8\xfc\x45\x8d\x18\x0b\xa4\x36\x5f\x22\xb1\x46\x42\x1b\x67\x0e\x1c\xa8\x4c\xee\xe0\x0d\x2c\xa5\xda\xb3\xf8\x84\xd2\x3c\x89\xfd\x79\x16\x1f\x69\x8a\x61\x40\xbf\x0b\xc5\xd4\xb5\xd0\x02\x87\x0f\xd2\x23\xa5\xc4\x1d\x84\xbd\x04\xe2\x8c\x40\xf2\x1b\x5c\xe2\x64\xce\xb0\x7c\xda\x86\xbe\x3c\xdc\x36\xdb\x32\x74\x34\x7f\xd7\xb0\x73\xa8\x81\xa4\xd7\xf6\xd3\x82\xa1\x4c\x48\x57\xc1\xdf\x02\x31\x86\x74\x79\x73\x0a\xb1\x39\x5c\xaa\x9e\x96\x6e\xad\x84\xb3\xd6\xda\x21\xa8\x7c\x37\x84\x96\x97\x8c\xf5\x5c\x7d\xc3\xaf\x22\xe1\x50\x9d\x21\x2e\x80\xbc\xe9\xa4\x29\x69\xa3\x92\xc6\x3c\x8e\x86\x9f\xce\xc5\x79\x5d\x03\x14\x8f\xf3\x07\x01\x00\x71\xa6\x84\xd0\x7f\xf6\xa8\x19\xb3\xe8\x1a\x7d\xa2\x16\xa3\x6b\x1a\x11\x4f\x6a\x05\x8b\x1f\x9b\x95\x1b\x1a\x49\xbb\x1e\xe2\x73\x1a\x86\xf7\xfd\xb0\xb9\xc7\xa6\xc2\x85\x66\x4d\x75\xcb\x12\xb6\x5f\x5a\x91\xb7\xe2\x43\x3f\xe4\xa5\xcd\xa4\x1f\x1e\xe2\x73\xfa\xc1\xad\xe0\xa6\xb3\x88\x7c\xb7\xf4\xa7\x58\xd9\xbb\x1c\x89\x43\xd2\xb0\x8b\x31\x34\xdd\xa5\x3b\xc9\xe1\xd4\xb5\x1a\x70\x26\x6c\x31\x19\x1f\xa9\x92\x23\x3e\x38\x13\xcc\x83\x38\x58\x4e\x46\xee\xbe\x9b\x08\xe0\x4a\x39\x97\x0c\xa0\xce\x75\x32\x82\x4d\x9e\x4b\xd2\xaf\xc8\xec\x81\xfb\x52\xda\xa0\x99\x77\x1f\xc9\x02\x67\x31\xab\x85\xf3\xf3\x87\x0a\x58\x3f\x5b\xc9\x15\x20\xa2\x63\x07\x6f\x30\xd7\xea\xb8\xb2\x40\xcc\x01\x15\x88\xf8\x18\xce\x76\xac\xe7\xdb\x9c\x3d\x81\xc9\xf6\x63\xe3\x66\x83\x23\x1b\xa0\xd8\x34\xee\x1d\x47\x39\xb0\x42\xb3\x1b\xbc\xac\x7f\x5c\x44\x1a\x77\x25\x9e\xeb\xf2\x6c\x62\x40\x98\xa3\x62\xd2\xcc\x6f\xf5\x31\x82\x44\xb4\x5b\xb7\xb8\x6d\x6f\x6b\xcd\xc4\xc2\xa1\x02\x2a\xfc\x2e\x8c\x92\x15\x16\x03\x6a\x00\x7f\x12\xaa\xe8\xc1\x6d\x44\xe1\x0b\x3a\x00\xb2\x71\x7b\x0f\x40\x16\x24\xbe\x0b\x75\xc3\x91\x80\xdb\x3a\x22\x7b\xfe\x0b\x3a\x02\xba\xf1\x99\x1d\x79\x6c\xbd\xd0\x07\xd0\x56\xab\xc9\xfd\x7f\x5b\xff\x06\x82\x10\x90\x33\x79\xa1\xcf\x88\x01\xfc\xac\x20\xa9\x4d\xfa\x59\x39\x85\xf3\x6c\x36\xdc\x25\xce\x51\xcc\xed\x14\xe7\x93\x6a\x7d\x81\x4b\x98\xfa\xee\xeb\x29\x17\xab\xaa\x69\xdd\xf1\xb2\x47\xdd\x7b\xff\xfe\x34\x88\x28\xbb\x29\xf7\xed\x8d\x72\x3a\x3c\x23\x69\x0c\xd4\x18\x90\x52\x64\x3a\xb8\x46\xc8\xf3\x88\xbf\x61\xad\xde\x67\xfc\xd4\x30\x5e\x96\xe6\xfd\x6f\xdf\x99\xe8\xca\xc4\x3c\x8c\xb7\xf2\xe2\x23\x79\xf9\xf0\xd1\xbc\x5b\x5f\x3c\x4c\xdf\xc4\x1c\x3e\x92\xd9\x49\x98\xf8\xb5\xb1\x88\xeb\x83\xde\x39\x53\x57\x52\x9e\x71\xdc\x45\x62\xd5\x37\x27\x64\xbb\xa6\xae\xc4\x6b\xed\x4c\xbe\x2a\x7e\xf1\xd0\x5f\x9c\x7c\xce\x3f\xe4\x79\x0e\x4d\xe1\x7b\x72\x59\xdf\xf4\x08\xbe\x7c\xc9\x7f\xbf\xcb\xef\xaf\xb2\x38\x74\x68\xb5\x59\x41\xb7\x14\xdd\xa8\x7c\xbb\x7c\xf7\xbc\x1e\xae\x7d\xb7\xf6\x5e\x60\xac\x01\xdd\x84\x0e\xfe\xe0\xba\xad\x9d\x44\xa5\x87\x6e\xaa\x45\xbb\x0d\x09\x5f\x0a\xd6\xff\x2f\x4c\x3b\xc3\x0f\xe7\xaf\xf8\xe1\x7c\xd1\x5c\x3e\x76\x09\xc9\x82\xf8\x8c\x7d\x78\x32\x26\x49\x4e\x8f\xd2\x98\x2e\x21\xa0\x93\x24\x8e\xf4\x9a\x24\x14\xcb\x51\x2b\x66\x81\xf1\x69\xe6\x3c\x1c\x53\xcc\x8d\x38\xa9\x3d\x7d\x37\xc4\x67\x89\xbf\x7c\x92\x24\x77\x33\x06\x23\x11\xbd\xb0\x4f\xdb\x36\x6b\x7e\x12\x1a\xda\xe5\x74\x78\xca\xaf\xa7\x75\xda\xad\xe2\xa4\x0a\x04\x57\xf2\x29\x30\x06\xf7\x45\x97\x96\xc6\xfe\xf4\x09\x7a\x15\x76\x04\x18\xa3\xf8\x10\xf1\x99\x40\x24\x13\xc3\x03\x32\x89\x2c\x3e\x05\xd9\x5d\x57\x12\x9a\xf7\x02\x1f\x93\x30\xed\x01\x5a\xc7\x43\xed\x72\xf9\xa6\x3e\x47\x85\xc0\xd3\x2a\x8d\x06\xb2\xe6\x6b\xfb\xe1\x19\x95\xfc\x2d\xb6\x63\x77\x6b\x21\x77\x2e\xb2\x37\xb7\x3e\xdd\xa2\x25\x9d\x9f\xfe\xf4\x01\x19\x6b\xd6\xa3\x56\xbd\xa4\xdc\xc3\xfc\x5d\xe4\x3c\x0a\x44\x10\x51\x6f\x05\xcb\xfe\xac\x3a\x06\xbd\x8c\x10\xa1\x9a\x2f\xef\x2a\xe8\x3f\xd3\x7b\xea\xcd\xa0\x93\x09\xcd\x33\x90\x3b\x6a\x18\x74\x71\xb2\x8a\x2f\xef\x24\x4e\xda\x7a\x2d\xa7\xce\x91\x4e\xde\xe0\xed\x9d\x76\xa5\x82\xeb\x96\x5d\x52\x5f\x98\x9b\xdc\x1d\x55\x1e\xeb\xf5\xad\x75\x7e\xc1\x30\xd6\x55\x3f\x5f\x2f\x63\xf7\xf9\xdd\xb1\x76\xc1\x84\x9b\x0f\xf7\x72\x29\xd1\x69\xea\x54\x69\x39\x5d\xfc\xb6\x09\x46\x87\x58\x5d\x31\x55\xfd\xb1\xbe\xb5\x65\x77\x53\x2f\x59\x51\xc7\xcf\xb4\xa9\xcb\xc0\xbb\x52\xcc\x2c\x0f\x66\x94\xf6\x75\xa1\x31\xe1\x4b\x18\xd7\xbb\x07\x12\x8f\xf8\xe1\xb2\xc0\xcd\xbe\xef\xe8\x28\xae\x9f\x80\xb4\xa3\xb4\x71\xb6\x3c\x5b\x8f\x6e\x6d\x68\x30\x16\x47\xd7\xdd\xdc\xb6\xe8\x4a\x5f\x7e\xd6\x08\x9c\x83\x8c\x1f\x06\x23\x8a\x12\x31\x90\xbc\xc1\x83\xcb\xf9\x43\x76\x76\xe2\x97\xe4\xd8\x93\x4b\x3d\x24\xf5\xd0\x46\x34\xf6\xa0\x60\x5b\x1d\x19\x90\x6f\xf7\x96\x15\x7a\x90\xf4\xe2\xcb\xc6\xc8\xef\x4a\x8c\x36\xc2\x3b\x24\xeb\x3b\x13\x7f\x68\x3b\x4c\x55\xfc\xaf\x6e\x87\xd6\xf5\x6a\xf4\xf8\xa8\x63\x0f\x10\x59\x9f\xe6\xae\xaf\x70\x4c\x5c\x48\xa4\xfd\x5f\xf0\xdb\x93\x6b\x7d\x5d\x75\xdd\xb4\x0d\x61\x9c\x84\x3e\xd6\x57\x42\x5f\x58\x5a\x37\x51\x00\x16\x8b\x9b\xf9\x41\x23\x3d\x58\x99\x33\x24\x13\xdb\xc7\x61\x12\x62\x29\x30\x4f\x56\x86\xf5\xd0\x4b\xb5\x5e\x80\x9b\xb2\x52\x27\x96\xe1\x4a\x6a\x99\x66\xc1\xd7\xa5\x34\x02\x16\x80\xdf\x6a\x8a\x83\x85\x9d\xb0\xb4\xf7\x6c\xe7\x3c\x54\x04\x40\x90\x64\x7b\x0d\xf7\x92\x93\xc7\x2d\x58\xaf\x42\xb1\x41\xa7\x8e\x95\xbb\x6a\xcb\x51\x99\xe7\x1c\x90\x7d\x08\x6f\x33\xb7\x29\x8b\xfd\x68\xde\x5e\x52\xe2\x68\xd6\x00\x39\x9e\x00\xc0\x1e\x9f\x05\x5f\xaa\x5a\x41\x88\xf6\x25\x5e\xad\xb6\xc7\xda\xa8\xe0\x5d\x34\x84\xaf\x99\x89\x3f\x52\x42\xb9\xa9\x61\xaf\xd4\xb6\x37\xea\x55\xb3\xe0\x80\x26\x9d\x41\xbf\x95\x9f\x0e\x6a\xd1\x34\x3d\xc9\x72\x04\x4a\x6c\x24\x1c\x4d\x65\x9a\x9e\x5a\x3a\x33\xc2\xcb\x0f\xa3\x99\x12\xe8\xf1\x54\x09\xf4\xf1\xb9\xda\xf1\xb3\x18\xd4\x56\x7b\x58\xf6\x07\xa2\x39\xa1\xc1\xb3\x0b\x7e\x4e\xe3\x22\x64\x8c\x5a\x1c\x95\xf4\x18\x3a\x2c\x3c\xd5\xf2\x92\x1f\x35\x99\x6c\xfa\x94\x73\x6e\x6d\x7b\x54\xd6\x37\x3e\x2a\x3e\xb5\x53\xf0\xf4\x35\x13\xa5\xc5\x61\xf9\xa1\xec\xf9\x2a\xf8\x66\x0e\xa7\x0e\x5f\xd7\xb9\x81\xe5\x4f\x01\x96\xbf\x24\xb0\xfc\x12\x1a\xb7\x89\x5a\xe9\x1c\xdd\x95\x7d\x01\x27\x24\x57\xcb\x8b\x53\x5a\x01\x49\x9e\x2a\x05\x4d\xdc\x5c\xe5\x1f\xdd\x85\xcc\x92\xba\x1a\xde\x42\x59\xa7\x22\xd1\x49\x00\x99\xaa\x8d\xa3\x1a\xcb\x81\xbe\xbc\x59\x6e\xc5\xff\xe5\x53\xcf\x7d\x78\x27\x29\x0e\x16\x32\x1e\xc1\x1a\x8d\x84\x1f\x0a\x82\xa2\x10\xf8\x65\x4a\x28\x85\x82\x45\x60\x21\x5c\x04\x77\xce\xbe\x3b\x53\x80\xfb\x42\x36\xd3\x51\x48\x6b\xde\x00\xad\xe5\x21\x9c\x36\xda\xc9\x54\x0a\x59\x11\x01\x5b\x6e\x4d\xe9\x4b\x86\x84\x73\xf0\x73\xc0\xa5\x29\x7b\xc7\x90\xd3\x14\x16\x8f\x72\x47\x8b\x4a\x34\xd2\x86\x47\xea\x05\x4c\xe4\x0a\x48\x13\x92\x62\x9c\x30\xaf\xc4\x89\x7d\x5b\x5e\x12\xc4\x45\xd2\xe2\x01\x4a\x7f\x35\xcd\x82\x6b\x85\x90\xe3\x9a\x0e\x67\xeb\xb6\x5c\xb3\xa2\x42\xae\x61\x23\x88\x15\xee\xd3\xbc\x43\xb2\x49\x37\xfe\x86\xd4\x65\x83\x51\xba\x81\xa5\x4e\x89\x36\xcc\xbb\x03\x7c\xcd\xb4\x0e\x1f\xde\x56\x47\x06\xd1\xc5\xbc\xf2\x52\xb5\x83\x79\xe7\x09\xa4\xbc\x22\x23\x86\xcd\xad\x2f\x0d\xb9\xd2\x04\xb5\x41\x0d\xaf\x21\x73\xba\x59\x0e\xcf\x61\x07\x55\x37\x8c\x05\xac\x72\x91\x6b\x1d\x50\xb5\xc3\xed\xf6\x50\xdb\x73\xdb\x86\x06\xc7\xde\xb9\xb7\x37\xf0\x3e\xf3\xa9\xfb\x38\x17\x0e\x53\xe0\xd7\x92\xe2\xc8\xae\xf8\xa4\x4f\xaa\xc4\x37\x9b\xce\xf4\x75\x26\x77\xfb\xf4\xd4\x72\x5f\xf3\x43\x4d\xc7\xca\x9a\x8e\xef\xe1\x05\x11\x98\x27\xdf\xe0\xb5\x42\xda\x0f\xeb\x6d\xb3\x28\xd8\x89\x45\x9e\xdf\xc2\x5b\x4f\x8f\xb4\x8e\xaa\x9b\x7b\xa4\x1c\x3e\xe1\x57\x0c\x90\x94\x46\xbf\xa9\x16\x34\x28\x11\xf4\xc7\x05\x0c\x40\xae\x51\x01\xca\xb5\xa4\x28\x9e\x14\x42\x50\x0c\xce\x10\x0c\x6d\x5a\xe7\x05\x60\x38\x0f\x7b\x3b\xdf\x8a\x99\xab\x63\xf8\xa8\x06\x57\x06\xca\x65\xd9\x93\xcc\xf6\x49\x14\x22\x5f\x8f\xbc\x75\x34\x37\x64\xbb\xab\xae\xa3\x4f\x23\x4d\xa2\x4c\xd4\xef\x1b\xc6\x08\xe9\x37\xe4\xbc\xd5\x7c\x9c\xe2\x06\xc2\x78\xf2\xc5\xe6\xa8\x75\x74\x3d\x95\x20\x9f\xdc\xdf\x78\x35\xb9\x61\xce\x94\x79\x5e\x44\xcb\x67\x11\xcb\x5f\x34\x0f\xb1\x21\x62\x78\x77\x76\xdb\x8d\x91\x27\xe8\x48\x50\x9d\xa4\xef\x00\xc7\x36\x11\x1f\x9a\x23\xed\x47\x1b\x29\x02\xcb\xf9\xe6\xbd\x76\x2c\xed\x80\xd8\xf1\x9a\xd6\xfb\x56\xa5\xca\xcd\xa4\x2b\x13\xee\x53\x27\xc3\x17\x69\x8f\xf8\x06\x53\xad\x72\xfb\x76\x40\xdd\x13\xe3\x76\x42\xe5\x51\xc2\x53\x6f\x24\xa4\x6e\x3e\x48\x8a\x86\x1f\xb3\xf9\x88\x0a\x16\x84\x7b\xd8\x9e\xdb\xce\x49\x6b\x52\x62\xfc\xd4\x65\xda\x05\x49\x19\x9b\x86\x25\x5d\xb5\x87\xb9\xbd\x1f\xa7\xaa\xe0\x19\x54\x88\xc2\xbd\xb5\x96\x36\x7c\x8a\x08\x9a\x61\xa5\xb3\x83\x2e\x0f\x28\x6d\xd2\x6d\x29\x25\x01\x42\xed\xa2\xba\x12\x73\xcd\x72\xbd\x97\x14\xff\x66\x87\xa4\x94\x88\xd0\xc3\x94\x47\x62\xf5\xac\x34\x7d\xec\x94\xe5\x3a\xa9\xd5\x0c\x3a\xe7\x6a\x05\xd4\xf4\x61\xe1\x7a\xd3\x95\x24\x47\xf0\x23\x91\xb4\x73\xfb\x66\xd9\x6c\x71\x5a\x4a\x1a\x6f\x5a\xa4\x29\xec\xf0\x96\x86\xa4\xe2\x42\x31\x5f\x29\xe9\x7a\x4d\xd9\xcb\xab\x1d\xe7\xfc\x6a\x87\xa4\x40\x7b\xb7\x82\xbf\x34\x2b\xeb\x9e\xbd\xf1\xe9\x76\x52\x59\xee\xb9\xfe\x9e\x82\x71\xee\x55\x45\xcb\x8f\x86\x7c\xa7\x61\x74\xad\x0e\x04\xfe\x6d\x5a\xf1\x73\xde\x6f\xb9\xbf\xfc\x7a\x1d\x0c\x6f\x6c\x86\x38\x20\x84\x26\x3f\x11\x0f\x8f\x03\x22\x49\x6b\x71\xe1\x97\x47\x8d\x75\xe2\x99\x0d\xd2\xe8\xe0\x60\x7f\xd4\xcc\xf2\x94\xbd\x2b\x1d\x08\x46\x04\x80\x30\xa2\xa2\x97\x30\x4a\xe5\xd4\xa5\xb6\x3c\xe4\x1e\x85\x1e\x3e\xae\x03\x02\x11\x0e\x6c\xee\x3d\x3f\x2c\xf0\xa4\x42\xcc\x4f\xa6\x54\xe5\x76\xa5\x37\x34\x93\x70\x51\xb3\x51\x0b\xe6\x67\x85\xe0\x8d\x77\xf4\xa6\x3b\x58\xd7\x2f\x0e\x77\xf5\x9c\x50\x01\x21\xd2\xf0\xf7\x28\x58\xc7\xd2\xa0\x3e\xb2\xfd\xbc\x64\xfd\x71\xcc\xe2\xa5\x52\xbc\x90\xcb\x27\x9f\x0c\x6f\x24\x90\xa4\x4d\xb2\x04\x92\xb4\x9a\x61\xda\x0b\x00\x62\xf0\x4f\x20\x76\x7c\xd6\xce\xbb\x82\x09\x13\x9d\x2a\xab\xfc\xe2\xc4\x90\x7e\xd7\xef\xed\x25\xc5\x8b\xb3\xcb\xf3\x5b\x76\x11\x83\x2a\x86\x03\xd2\xa1\x39\x67\x29\xaa\x23\xcb\xe1\xbb\x85\x37\x90\x1d\xa3\xca\x19\x38\xd7\xc9\xd6\xe9\xa6\xe1\x6e\xe3\xd5\xe4\xc5\x72\xe2\x0e\x38\xce\x35\x2e\x05\x49\x99\x59\x7e\x46\xfc\x4c\xc5\xbe\x9a\xd6\x9a\xfa\x0b\xf2\xa3\x63\xe5\xbe\x68\xed\x45\x1e\x3c\x21\x97\x3f\x78\xfc\x60\x96\xd0\x9d\x79\x8f\xc7\xb6\x34\x4c\xd8\xe5\xeb\x0b\xfa\x5c\xb6\x37\xe2\x8c\xa0\x23\xfd\x50\xed\x19\x6c\xce\x77\xca\x84\xa1\xa6\x14\xc0\xfe\x8a\x14\xdb\xf8\x6c\xb5\x2e\xdb\x8f\x1c\xbb\x52\xf1\xe7\xfc\xe4\x0c\xca\x22\x4a\xf2\x64\x47\x9b\x46\xa0\x6a\x63\xd7\x63\x27\x68\x39\x9a\x84\x5d\x37\xd2\x59\xed\x71\xf6\xd0\x1f\xab\xc7\xc5\xd0\x1d\xf2\xd4\xe2\x59\x60\x33\x3d\xe2\xef\x52\xe8\x84\xcd\x0b\x54\x7d\x28\x07\xa4\x65\xee\xba\xa0\x34\x4b\xe8\xb8\x3f\xb4\xd3\x7a\x3e\xd3\x45\xcf\x57\xe6\x18\xac\xdb\x46\x3d\x19\x8d\x28\x2d\x91\x40\xce\xe5\x68\xb1\x17\xaf\xd3\xaa\x83\xd7\xc4\xb8\x44\xf2\xf6\xf5\x68\x62\x27\x5c\xdf\x6e\x71\x77\x53\x94\x03\xd7\x55\x85\xfb\x69\x47\xaa\x16\xfe\x0b\x30\x84\xe1\xf0\xb7\x50\xe3\xa4\x1a\x9a\x23\x8b\x17\x03\xae\xf1\xf3\x06\x62\x50\x76\x71\xc5\x84\x97\xc7\xa9\xaa\x3c\x97\x1b\xe6\x80\xe7\x4a\xbb\x71\x17\xeb\x25\xda\x69\x53\xa1\x06\x03\xb3\xaa\x50\x53\x3b\xb3\xc2\x16\xfb\x7d\x38\xba\xdd\xeb\xea\xd8\x40\x0e\xe4\xa3\x90\x3e\x07\xf1\xab\x06\x78\x73\x40\x72\x69\xda\x03\xf1\xdd\x69\x05\x18\x1e\xe9\x9a\xdc\x5c\x5d\xf1\x43\x93\xfc\xde\x8a\x86\x19\xe5\x9f\x1c\x0b\x3a\xb4\xaf\xa1\x00\xe6\xac\xd3\x85\x8e\x94\xc7\xf4\x4c\xe3\x03\xbc\x43\x22\x0b\xa5\x06\xde\x1e\xb0\x94\xdc\xdf\x77\x87\x5a\xc4\x6d\x97\xa5\x0d\x71\x96\x6f\x04\x1c\x64\xdb\x34\xbd\xbd\xb4\xea\xd8\xc7\x77\x94\x4c\xbc\x42\xbf\x09\x13\xcc\x26\xec\xe5\x5c\x1e\x7c\x74\x65\x60\x40\x5f\xca\x9d\xab\x51\x21\xea\xf7\xb8\x04\xf5\xfb\x08\xb8\xb8\x69\x19\xf3\x75\x81\x5f\x72\x5c\x84\x1e\x23\x26\xa0\x6c\x0b\x1b\xb0\xa4\x0d\xf1\x06\x73\x10\x2a\xee\x36\x0e\x35\x2e\x5e\x4e\xe3\x05\x43\x8d\xb9\x45\x97\xc9\xac\x6e\x3f\xd7\x28\x9f\x73\x7d\x0f\x57\x38\xdf\x3e\x7f\xaa\xc1\x3f\x05\xf3\x7c\xb1\x23\x68\xc0\x59\x9e\x99\x73\xc9\x5b\xb8\x82\x58\xee\x6b\xfc\x1a\x01\x25\x2b\x37\x9a\x4a\x02\xe0\x3b\x8f\x08\x4e\xa2\x40\xff\x51\xde\x48\x50\x92\x09\xc0\x35\x37\x17\xc0\xe8\x57\xfe\xf0\x01\x65\x3d\x91\xac\x07\x8f\x46\x65\x58\x9a\xde\x1d\x76\x72\xc9\xb4\xfa\x7b\x29\xaf\x46\x30\x37\x20\x19\x68\xed\x82\xad\x31\xa7\x9c\x71\x5b\xd1\x6e\xa2\x54\x17\xd6\x6e\xb5\x88\x4b\xf7\xcc\x3c\x26\x26\xd7\x8f\x20\x3d\xfb\x1f\x53\x3d\x13\x1d\x53\xbd\xf0\x10\x53\x15\xab\xfc\x16\xa2\xd4\xae\xdb\xda\x2e\xba\xb8\x78\x9d\x6e\xd5\x98\xeb\x5e\xb4\x67\x76\xf1\x1e\x3f\x7a\xc5\x8f\x63\xdc\xcb\xf9\x52\xf3\x23\x57\x42\xa7\xda\x4f\xaa\xa6\x0e\xeb\xe8\xfe\xb6\xad\xfa\xf2\xdb\x7b\xf0\x82\xba\xd7\x57\xab\xc5\xbd\x47\x09\xd5\xab\x70\xe5\xce\x91\xbd\x6a\x79\x64\x7e\x82\xe6\x8e\x15\x53\x5b\x17\xc3\xf2\x9d\xbc\xa2\xa5\x5c\xa6\xba\x6f\xa7\x53\x6b\xf4\x28\x72\x13\x81\x1a\x79\x4e\xc2\xfa\xc5\xb7\x4b\x5b\x97\x11\x23\x73\xe3\xbe\xea\x3b\xab\xe6\x29\x92\x63\x07\xe5\x35\x2f\x7b\xdd\x4b\x2f\xb2\x59\xf7\xf0\xa0\xd7\xab\x5a\xee\xa7\x6a\x11\x8c\x24\x68\x22\xcf\xb8\xff\x5e\xf9\x38\xec\xff\x08\x5b\x6d\x14\xb7\x63\xad\x32\x54\xcb\x62\x4f\xbc\x75\x11\x59\xa9\x53\x49\x08\x07\x82\xc4\x57\xe0\x0b\x90\xf3\xad\xba\x11\x48\x0c\x06\x5c\x83\xa4\x8d\xfc\xb1\xec\xe2\x60\x89\x33\x89\xa2\x57\x52\xe8\x1d\xe7\x05\x51\xcd\x17\xb6\xd2\x16\x9b\x25\xac\xbc\xc5\x3e\x98\x5c\x79\x84\x18\x9a\x6f\xcb\x7a\x0d\xb4\xfb\x4f\xfe\x49\x5c\x30\xff\x0c\x33\x24\x41\x0d\xa0\xbc\xe6\xcb\x7b\x3f\x58\x98\x03\xe8\xb0\x29\x25\xac\xed\x9d\xec\xaa\x5f\x1b\x7f\x26\x9f\xe1\xf7\x74\x0f\x15\xf6\x28\xf9\xd5\x7c\x5b\x47\xda\x24\x8d\x5b\xbd\x97\x3f\xbf\x7e\x3b\x80\x9c\xd8\xdd\x9a\x33\x41\x0d\x34\x67\x62\xef\x43\xe5\x0d\x22\xaa\x92\x18\x94\xdd\xa0\xa2\xd8\x2d\x06\x17\x40\xe6\xe1\xb1\xf1\xe7\x5c\x00\x0f\x80\xf1\xed\x0a\x2e\x81\x7d\xc7\x49\xcc\xdb\xe2\xed\xf1\x51\xe9\x4e\x5f\x3c\x8c\xe0\xf1\x75\x07\x0d\x1d\xc4\x85\x67\x61\x92\xc5\x6b\x27\xcc\x31\x3c\x75\xa6\xa7\x58\x20\xc7\x33\x6c\xf9\x62\xa7\x8a\x2e\x7a\xb0\x4c\x4d\xd6\x24\x90\xc5\x8a\xb0\x5f\x6e\xbe\x02\xf4\x44\x7e\xa7\x40\x30\xe6\x7e\x2c\xb6\x01\xea\x95\x26\x8c\x5a\xad\x7d\x9b\xb5\xf8\x6a\x38\x42\x27\x1e\xa6\x8e\xd0\xc9\x1d\xae\xe9\x83\x5c\xa1\xf9\x8a\x6f\x65\xae\x9c\x02\x7f\xae\x49\x06\x6a\x20\xb1\x66\x83\xd0\xaa\x43\x3f\x69\x73\x55\x41\xf0\x3a\xc5\xaf\x04\xbb\x94\x46\xf0\xa6\x16\xd8\x48\x26\x58\x57\x2e\x25\x0c\x78\xbd\x0c\x33\x63\x36\xaa\x17\xa7\x61\x6e\xc4\x9c\x35\x18\xcc\xb6\xba\x2a\x83\xf1\x4b\x47\xf3\x9a\xd2\x12\xe0\x4d\xdf\xef\x3b\x0b\xa6\x83\x77\xfc\xf3\xb7\xf4\x63\x30\x08\x5f\x95\x8e\x24\xd6\x14\x66\xa6\x82\x45\xd2\x4d\x8c\x24\x4c\x4f\xb9\x41\xeb\x89\xe4\xc0\xf5\x48\x1a\x52\xe2\x75\xab\x57\xa8\xe2\x2e\x7e\xa1\x49\x83\x19\xbd\x2a\x57\xb8\x11\xbe\x9a\x87\x12\x3a\xaf\xcf\x2d\x87\xe3\x24\x40\xfd\x18\xe6\xb7\xea\x63\xc7\x59\x45\x3f\xd9\x69\x86\xb2\xfe\x20\xa8\x02\x6b\xae\x10\xbc\xdd\xf5\x4a\x62\x2b\xdc\xd4\x7d\xf1\x29\x7f\x69\xf9\xbe\x06\xb6\x91\xa0\x34\x73\xf1\xe0\x65\x08\x12\xa5\x5e\x23\x01\xe7\x78\xc1\x17\xe7\xd7\x5b\x09\x2a\xf0\xe8\x68\x71\x0e\xc6\xd2\xd2\x31\xa2\x1a\x5f\xab\xe8\x34\xa6\xa6\xb5\x71\x99\xe9\xda\x2c\x92\x41\xa8\x43\x1e\x3f\x7b\xe8\xde\x4b\x4f\x0a\x12\x46\x16\xed\x5a\xcd\x96\x27\xed\xfa\x20\x6f\xc2\xfa\xaa\x2b\x0e\x48\x53\xba\x13\xe2\xac\xb2\x10\x35\x83\x33\x42\xc0\xd9\x9d\x33\x81\x46\xec\x6d\x95\xac\x27\x4a\xc0\xfb\xdd\x15\x38\x85\x37\x7c\xf4\x99\x9c\x28\x82\xc7\xaf\x62\x09\x3c\x96\x75\x6b\x01\x35\xcf\x0a\x38\x8d\x74\x0c\xec\x65\x97\x80\x42\x2c\xb3\x4c\xa2\x10\x43\x29\x63\xc8\x30\x60\x0c\xcd\x6d\x79\xb6\x6c\x25\x84\x29\xff\xb9\x64\x9f\xd1\x90\xe3\x4f\x27\x4b\xeb\x88\xf6\xad\x0e\x12\xb1\x41\x3f\x23\x7c\x7c\xfe\x57\x76\xa9\x65\x4c\x3c\x19\x9c\x02\x94\x9f\xca\xe5\xc1\x39\xca\xfc\x2c\xbf\xd5\x32\x1d\xab\x69\xec\x6a\xd3\xa1\xc6\x73\xd1\xe7\x92\xe2\x60\xa6\xde\x94\xb2\xae\x43\x02\x32\x49\xe8\x68\xfb\xa1\x79\x9b\xef\xcc\x5c\xbf\xcd\xa3\x5a\x9f\x66\xd9\xca\xad\xf3\x81\x37\xb8\xc1\x22\x18\xc8\x0a\xc1\x1f\xe6\x21\x18\x04\xa2\x82\x08\xa4\x06\x86\x08\xf0\xea\xd3\xac\xcc\x18\x9b\xfc\x42\xab\x25\x3b\x05\xb2\x1f\x03\x88\x2a\x9e\x06\x3f\xd9\xc6\x92\x34\x64\x0f\xf1\x4c\x7f\x26\x30\x55\x2d\x32\xa9\x64\x89\x79\xf5\x95\xa4\x69\x95\xce\xc5\xdd\xf4\x3a\xe1\xe9\xf1\xa0\x3c\xba\xd0\x94\x21\xa4\xb5\x0c\x20\x76\x42\x1b\xce\x86\x17\x79\x7c\x1a\x62\x32\xbb\x7b\x08\x6e\x4c\xc3\x65\xb4\xac\x66\xcf\x1c\xc4\x7e\x36\xea\x6d\x50\xce\xe8\x8a\x98\xc3\xfe\x5d\x8e\x9f\xd9\x6f\x32\xf7\xef\xed\xe2\xb9\x5a\x19\xcd\xb8\xef\x1c\xea\x92\x38\x58\xf2\xb4\x74\xd6\x96\xb5\x7b\xf0\x40\x7e\x25\x85\x92\xa7\x25\xbf\x89\x4f\x48\xf2\xa5\xac\xa3\x4f\x73\x87\xd7\x8e\x51\x2b\xdf\x32\x11\x4b\xf2\xe0\x19\xce\xae\x5d\x7e\x3d\x2c\xcb\x96\xc7\x14\x8c\x33\xff\xcd\x2a\x96\x31\xda\xbb\xd0\xbf\xeb\x5b\xcc\xf2\xdb\x8d\xef\x6b\x31\x8f\x7d\x2d\x23\xfd\x93\x7b\x2c\x39\x7d\xc8\xda\x9e\x84\xfe\x82\x0a\x06\xef\x57\xc7\x07\xa1\xbf\xa4\x13\x32\x8c\xe1\x03\xa7\xb6\x66\xc9\xe3\x80\xbe\x42\x7d\xb7\xf4\xc8\xa0\x46\xd5\xc9\xd8\xbe\xb8\x36\x1d\xe1\xb0\xba\x30\xd0\x2f\xef\xde\xe0\x39\x6f\xf7\xde\x79\x53\x7f\xc9\xbc\x4d\x3e\xe2\xf8\xbb\x3e\x36\xf9\xc5\xdd\x0a\xa1\xc2\x15\x4f\xed\xf7\x60\xd7\x08\xee\x4f\x23\x7e\xdc\x48\x88\x1f\xc8\x11\x3b\x22\xbe\xd3\x0f\xdf\x0d\x60\xbb\x7f\xb9\x7b\xbc\x23\x06\x7b\xc8\x9e\xf2\xd5\x57\x57\x41\x7f\x25\xb9\xea\xf4\xd1\x3c\x51\x06\xdf\x0f\x4f\xc1\x12\x3d\xe8\x9b\x66\xfb\x3e\x2b\xd6\x3c\x24\xfa\x3f\xe3\x1d\xac\x57\x73\xb1\x99\xe9\x33\x93\x9f\xfc\xf5\x0d\xd7\xfc\x8d\x86\xc2\xe5\xe7\x05\xbe\xd9\x21\x61\x57\xd5\x7c\x86\x71\xc2\x06\x09\x1b\x8e\x8f\xc7\x3f\x57\xf8\xb9\x2a\x6e\xf0\xeb\x1a\xbf\xae\xcb\xf2\x83\x14\x06\x71\xa6\xe2\x4d\x4d\x42\x12\xa7\xdc\xe0\xf7\x0d\x3f\x72\x88\xc7\x0b\x96\x08\xb9\x8b\xb7\x24\xed\x07\x5e\x8c\xac\x61\x49\x43\xba\xfd\xa0\x74\x6e\x55\x53\xe5\xf3\x3e\xbb\x47\xde\x68\x12\xbe\xf8\x89\x33\x6a\x5e\x93\xe4\xf3\x3e\xce\xd4\x7e\x63\x15\xca\x37\xa5\x72\x3f\x34\x51\x3e\x29\xad\x2d\xae\xe7\xb1\x5f\xfa\x85\xd4\xd8\x2b\xfd\xa2\xe9\x5d\xb5\xcd\x9e\x9f\x93\x79\x9f\xd9\x33\x6f\xf1\x7d\xb7\x67\x94\x67\x1e\xca\x1c\xd3\x8a\xb5\xf6\xf6\xcc\xf4\x61\xcf\xc1\x56\x66\x99\x3d\xeb\x58\xd5\xfb\x43\x50\xc4\xc6\x27\x45\x05\x2c\x06\xdc\x95\xfb\x99\x04\x35\xcb\xa0\xe6\xe5\x38\x5a\x0b\x30\x4c\x50\xf0\xb2\xa6\x25\x7f\xf8\x8f\x7f\x00\x9e\xbe\xff\xf9\xcf\xfc\xec\xe9\xa3\xbc\xfc\xc4\xb1\xef\xbb\x7c\xa7\x4e\x48\x06\x46\xbf\x9f\x27\x90\x1c\x1a\x06\xd7\xe6\xd4\xeb\x45\xae\xcd\xa1\xf9\xec\xff\x04\x00\x00\xff\xff\x5d\xfa\xe7\x42\x63\xcd\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xfb\x72\xdc\x46\x92\x2f\xfc\x3f\x9e\x02\xd6\x84\x42\x52\x04\xd5\x0e\x8f\xf7\xbb\x84\xc3\x97\x8f\xa2\xac\xcb\xae\x28\x71\x45\xda\xf3\xcd\x71\x28\xda\x60\x37\xd8\x8d\x55\x37\xd0\x03\xa0\x49\x71\x26\xe6\x0d\xce\x03\x9c\xe7\x3b\x4f\x72\x32\x7f\x99\x59\x95\x05\xa0\x49\xc9\xb3\xfa\x43\x44\x57\x65\xdd\xb3\xb2\xf2\x56\x59\xc5\x6e\x37\x5f\x96\xdd\x22\xff\x21\x3f\xce\x77\x45\x55\x6f\xca\xae\xcb\xbb\x72\x73\xf5\x74\xdd\x74\x7d\xb9\xcc\x5f\x56\x3d\xfd\x6e\xaf\xab\x45\x99\x65\xeb\x66\x5b\x12\xe8\x2b\xfa\x93\x2d\x8b\x6e\x7d\xd9\x14\xed\x92\x12\x9e\xdb\x77\x56\x7e\xda\x6d\x9a\x96\x81\x7e\x96\xaf\x6c\x5d\x6e\x76\x5c\x86\xfe\x64\x5d\xb5\xaa\xe7\x55\x4d\x3f\xcf\xe9\x2b\x7f\x5d\x4b\x4a\xb3\xef\x2d\xe9\xdd\xbe\x97\xb4\xfd\xce\x92\x7e\xd9\x65\x6d\xb9\xaa\xa8\x37\x2d\x25\xbd\xd7\xcf\xec\xa6\xbc\xec\xaa\x9e\x5b\xfa\x8b\x7c\x65\xd7\x65\xdb\x55\x0d\xd7\xfe\xab\x7c\x65\xbb\x62\xc5\x00\x67\xf4\x27\xeb\xcb\xed\x6e\x53\xa0\xc0\x85\x7e\x66\x9b\xa2\x5e\xed\x05\xe6\x8d\x7e\x66\x8b\xb6\xa4\xac\x79\x5d\xde\x50\xea\x09\x7e\xcc\x66\xb3\x6c\x4f\x93\x30\xdf\xb5\xcd\x55\xb5\x29\xe7\x45\xbd\x9c\x6f\x65\x98\xbf\x50\x7a\xae\xe9\x39\xa5\xe7\x9c\x8e\x21\x94\x4b\x1a\xea\xbc\xe8\x74\x1c\x34\x97\x34\xf2\xa2\xcb\x50\x55\x5d\x6c\xad\x34\x7f\x66\xe5\xb6\xa8\x36\x3c\x6b\xfc\x97\xfa\xdd\x75\x37\x0d\xa6\xf6\x4c\x3f\x69\x0e\xe6\xfd\xed\xae\xc4\x14\x3c\xbd\xa0\xaf\x6c\x51\xec\xfa\xc5\xba\xe0\x6e\xca\x57\x46\x40\xbb\x86\xe6\xa2\x69\x6f\x01\x67\x3f\xb2\xa6\x5d\x15\x75\xf5\xf7\xa2\x97\xf9\x79\xe7\x7e\x66\xdb\xaa\x6d\x1b\x9e\xda\x53\x7c\x64\x34\xf2\x39\xd7\x43\x29\x6f\x69\x12\x5c\x2d\x9c\xb3\xad\x56\xad\xcc\x22\x67\x9e\xe2\x17\xd7\x22\x79\x5a\x93\x64\x85\xda\xae\x9a\xf6\xa3\xa6\xbe\xe0\xcf\x41\x95\xd4\x39\xcd\x4d\xfb\x55\xd4\xb4\x1e\x9a\x7b\x8a\x1f\x09\x40\x97\x15\xcb\x2d\xcd\xf0\xae\xa8\x4b\x9e\xba\x63\xfe\x45\xf3\x45\xbf\xb2\x62\xb1\x68\xf6\x75\x3f\xef\xca\xbe\xaf\xea\x15\xaf\xc1\xb1\x24\xe5\xe7\x9a\x94\xb9\xbc\x90\x76\xdb\xec\xc3\x2a\x53\xfa\x5f\xe9\x67\x7e\x26\x3f\x25\xcf\x15\x42\x66\x28\x49\x4d\xf6\xd5\x75\xd5\x57\xa5\x34\x66\x3f\xb2\xdd\x7e\xb3\xa1\xf9\xfc\xdb\xbe\xec\x7a\xce\x3a\xa3\xdf\x34\x03\xf2\x3b\xab\xba\x6e\x8f\x12\xaf\xf1\x91\xd1\xa2\xd6\x0b\x0c\xe7\x04\x1f\x59\xf6\x5b\x55\x77\x7d\xb1\xd9\x7c\xc8\xf4\x83\x81\xe5\x4b\xe6\xa9\xaf\x7a\x74\x56\x13\xf3\xf3\xbe\xdc\x75\x3c\xd1\xf9\x8b\xaa\xed\xfa\xa7\x7d\x45\xa8\xf6\x7e\x5f\x67\xcb\x66\xf1\x91\x90\x98\x37\x24\xb6\xd2\xeb\xab\x9c\xc6\xf4\x88\xd0\xb8\xdd\xd7\x35\x8d\x22\x7f\xd9\xd0\xc8\xa8\x99\x6a\x59\xe6\xcf\x01\x7d\x94\xef\x36\x65\xd1\x11\x48\x59\x2c\xf3\xef\x8b\xbc\x2f\xda\x55\xd9\xff\xf0\x60\x7e\x49\x9b\xe7\xe3\x83\x7c\xdd\x96\x57\x3f\x3c\x78\xd8\x3d\xf8\xf1\xe5\x9e\x8a\x6d\xaa\xba\xec\xbe\xff\xba\xf8\x31\x5f\x14\x94\x43\x63\xbd\xcd\x2f\xcb\x2b\xde\x2b\xd4\x56\x4e\x48\x5a\xaf\x78\x9f\xdc\xf6\x6b\x6e\x90\x16\x8c\x3e\xba\x9c\x37\xea\x57\x19\xcf\x12\x6d\xe4\xf9\xf2\xd2\x88\x12\x3a\x84\xe4\x96\x66\xe9\xf4\xf6\xfc\x3f\xdf\x1c\xe5\x67\x44\x99\x56\x6d\x89\x6f\xfa\x8f\x4a\x7c\x9b\xd3\x68\x2f\xaa\xe7\xcf\x66\x19\x95\xb5\x09\x79\x5e\xf4\xc5\x25\xf7\x3d\x2c\x12\x67\xca\x1e\x0a\x79\xd8\x49\x4c\xeb\x40\xd7\xba\x1e\xbb\x53\x77\xe6\xe4\x3e\xa4\x3a\x74\xf3\x86\x3a\xde\xf2\x0e\xa6\xf4\x30\xb3\x67\x32\x67\x54\x55\xfe\xfa\xed\xdb\x77\xcf\x9f\xe5\x65\xbd\xa2\x99\xc9\x6f\xaa\x7e\x9d\xef\xfb\xab\xff\x77\xbe\x2a\xeb\xb2\x2d\x36\xf3\x45\xc5\x93\xd2\x12\x5e\xe5\x34\x4b\x32\xc4\x59\xd6\x75\x1b\x22\x30\x4b\x6e\xe5\xfc\xfc\x4d\x7e\x4a\x9f\xd4\x19\x2a\xcb\x1d\xe9\xd7\x59\xf7\xb7\x0d\x4f\x54\x68\xf0\x62\x5d\xe6\xc0\x59\x00\x35\x57\xc3\x79\xc9\x97\xda\xd7\x59\xfe\xfd\x65\xfb\xa3\xeb\x5f\x71\xd9\x35\x9b\x7d\xaf\x25\x6f\xd6\x65\x8d\x85\x22\x54\x6a\x7b\xa2\x56\x46\xfb\x67\x59\xd9\xb6\x73\xa2\x9b\xfd\x2d\x2f\x8f\xf6\xe5\x50\x2b\x52\x19\xa1\x72\xdd\xf4\xb4\xfc\x39\xca\x49\x15\x55\x7d\x5d\x6c\xaa\x25\x2d\x52\x9c\xc8\xb4\x2c\x12\x97\x0d\xad\x37\x97\x26\x8c\x6e\x6e\x30\x45\xb4\xc1\x88\xac\xe7\x0f\x66\x0f\x40\x67\x1f\x3c\x7d\x30\xcb\xea\x66\x2e\x44\x80\x29\xf2\xb2\xea\x8a\x4b\xa2\xce\x72\x5a\xb4\x46\xec\xfe\xca\x78\x27\x5d\x51\x88\x3c\x81\xe0\x35\xe1\x13\x08\x84\x9f\x91\xb2\x20\x32\x0d\x5a\xa2\x54\xc4\x8f\xdd\x48\x4e\xc0\x0b\xa1\x3a\x21\x61\x34\xe6\xcc\x16\xda\xb0\xf2\x78\xb7\xdb\x54\x0b\x69\xfa\xa5\xe4\x45\x04\xe5\xf3\x58\x27\xc5\xc3\x01\xc1\x2c\xcf\xa1\x19\xf5\x9a\xa9\x52\x9e\x90\x77\x94\x5f\x97\xb4\xe3\xd6\xfb\x95\x9c\x49\x9b\x66\xbf\xfc\x0a\x87\x83\xad\x5c\x24\xc1\xf9\xfb\x86\x3a\x0c\xac\x0a\x00\xb1\x89\x63\x22\x28\xcc\x02\xb4\xe5\xb6\xe9\x79\xe2\xb4\x18\x93\xb9\x9b\x8a\x32\x69\xa4\x5d\x71\x4d\x87\x5b\xdf\xc8\x56\x5e\xd2\x56\x5d\x70\xc5\xb3\x8c\xc8\xca\x5c\xb7\x13\xd1\x1f\xd9\x52\x96\x96\xe2\x2e\xa0\xb6\x7b\xda\x85\x6b\xaa\x8c\x27\x9e\xf9\x10\xaa\x72\xaa\x9f\x18\x12\xd5\x03\xea\x40\x3b\xbe\xa1\x33\x93\x17\xfa\x39\x3e\xf4\xb7\xaf\x9f\x7a\x55\x5c\x5d\x51\xaf\x3a\xda\x4d\xaf\xf2\xc5\xa6\xa1\xad\xf8\xcb\xfb\x37\x1d\x6f\xb4\xf5\x7c\xd7\xb4\xe0\x3f\x28\xeb\x8c\x3e\x43\x9a\x9b\x68\x86\xa8\xf7\xdb\x4b\xfa\x75\xb3\xae\x16\x6b\x99\x76\x2e\xc1\xfb\x83\x52\xa9\x89\x7d\x47\x4b\x78\x94\xd3\xd6\xa2\x11\xd0\x94\x01\x01\x78\x0c\x86\x75\x0c\x7e\x45\x38\xb6\x6f\x69\x3b\xad\xfb\x7e\x67\x2d\xbf\xba\xb8\x38\x93\xa6\x43\xea\x5d\x6d\x17\x0e\x33\xb0\x06\x1b\xe6\x88\xea\xbc\xa9\x67\x40\x92\x7d\xbb\x19\xe0\x0f\x8d\xd5\x72\x0e\xcc\x0b\x77\xe1\x6b\xfe\xef\x3c\x4e\x0f\xe6\xb9\x23\x5e\xef\x06\xd8\x44\x73\x0c\x2e\x65\x96\x6d\x9a\xd5\xbc\xa5\xd5\x30\x64\x7a\xd3\xac\x04\x81\x92\x8c\xd8\xd2\x73\x43\x09\x9e\x8d\x9b\x96\xb9\x36\x82\x04\xc1\xe2\x45\xa6\x4d\xd2\xec\xb8\x9f\x6e\x97\xbc\xd3\x84\xb8\x35\xd0\x76\xc8\x07\x9f\x44\x99\x20\x4e\xee\x4c\xdf\xd2\xfc\x29\x35\x3f\x3f\xa5\x59\x05\x49\x47\xea\x55\xdb\x6c\x29\xf5\x05\xfd\x89\x09\xb1\x8f\xa7\x5c\x1f\x60\x8a\xe5\x92\x0e\x9b\xee\x28\x7f\xff\xe2\x24\xff\xbf\xbe\xfd\xf3\x9f\x67\xf9\xeb\x9e\x37\x36\xe3\xfa\x7f\x31\x8e\x16\x3a\x13\x11\x94\x08\x60\x4f\x68\xfc\x80\x37\xea\x83\xfc\x7b\xe4\xfe\x7f\xe5\xa7\x82\xf8\xcc\x72\xb6\x68\xb6\x3f\x32\x71\xdf\x16\x44\x4a\x38\x87\xb0\x5f\xb7\xc5\x79\x59\x2f\xe9\x43\xb8\x3e\xcd\x72\xc4\x45\xb3\x1d\x0f\x28\xcc\xef\x7c\xd1\xd4\x57\x55\xcb\xe3\xf9\xb9\x06\x6e\x19\x5b\x9c\x9f\x48\x8e\xb1\x50\x34\x65\x44\x8f\xaa\xab\xdb\x08\x8a\x91\xbe\xe5\x44\x45\x8f\x4c\x70\x78\xae\xa4\x3e\xcc\xf1\xb9\xa0\x36\x63\xc1\x3b\x1a\x5d\x6b\xd3\xdd\xc5\xf9\x6e\xae\xae\xf8\xc4\xb7\xb3\x4a\x5b\x78\x27\xa9\x72\x6c\x79\x10\x42\xed\x1d\x18\xfb\xe7\xba\x25\x4e\x9e\xbf\xcd\xcb\x6b\xc2\x5d\xa6\xa1\x6d\xb3\xdc\x2f\x80\xaf\x0c\x7b\xc4\xa4\x9f\x08\x4e\x47\x3b\x6d\x51\x2a\xb2\x04\x92\xc3\x5d\x63\xba\xb6\x20\x20\xa2\x34\x46\xfa\x89\x1b\xbd\xa6\x73\xa4\x75\x4d\xbc\xb4\x24\xed\xfd\x08\x76\xd4\xa9\x50\x82\x47\xbe\xa0\x05\x27\xa4\x90\x5e\x74\xd2\x29\xc9\xa6\xcd\x43\xbb\x62\x4f\x52\x4e\xb1\xa4\xbe\x5c\xde\x82\x8a\x75\x8c\x0b\xcb\xf2\xaa\xd8\x6f\x68\xb5\xaf\x4a\x5a\x3f\x62\x97\x97\x73\x6d\x6b\xd3\x34\x1f\xd1\x98\x4e\xd5\x0b\x03\xc8\x8f\xb5\xd2\x37\x80\x38\x54\x32\x74\x56\xcb\x07\xb0\xd0\x29\x6d\x81\x76\x1a\x1f\xef\x31\xbf\xd9\xd1\x34\xeb\x64\xea\x4a\xe7\x7c\xde\x52\x4e\x4d\x14\xe4\x52\x07\x1d\xe7\x72\x70\x8c\xda\xec\x9c\xb3\x70\xe8\xf3\x26\x0b\x8c\x26\x15\x08\xdf\x0d\xcb\xd2\xce\xa9\x89\x43\x94\xe3\x96\xb7\x98\x48\x5f\x76\xf2\x12\x81\x2e\x31\xce\x79\x94\x75\x74\xe0\x26\xf2\xa4\xf9\xa1\xd9\xf7\xc2\x33\xe6\x60\x36\xb8\x46\xab\x80\x99\xac\xe9\xbe\xcc\x32\x65\x34\xe7\x2a\xa6\xce\xaf\x2b\x08\x81\x61\x8b\x49\x95\x2a\xba\xf2\x0c\xff\xca\x00\x2c\x5d\x76\x93\x65\x43\x6f\xde\xf1\x20\xbb\x20\x04\x0a\x9e\xf0\x70\xd1\x02\x33\xbf\x84\x59\xd7\x15\x0e\x3a\x45\x72\xcc\xcb\x25\xf3\x67\xd4\x34\x35\xd5\x95\x25\x6a\xa0\xf2\x5f\x53\x9d\x28\x33\x53\x09\x48\x85\x12\x63\x9a\x99\xe1\x59\x36\xe0\x9e\x70\x9a\x52\x69\x9b\xd6\x01\x67\x93\xb7\xd5\x6a\x4d\xa7\x4b\x73\x73\x24\x93\x72\xb3\x6e\x4a\xde\xf3\xaf\x9f\xff\xf0\x8d\xf4\x63\xc5\x67\x6b\x28\xc4\xa7\x72\xb1\xa7\x0d\x41\x33\xa6\x5b\x4f\xba\x10\xb8\x1b\x40\x8e\x64\x2d\x01\x1a\x0a\xbd\x23\x66\x2a\x10\x3a\xa5\x6f\x3e\x4f\x09\x5b\x84\x91\xd2\x26\x38\x4b\xc3\x42\x48\x55\x50\x9a\xaf\x1a\x08\x6a\x26\x18\x31\xbb\x90\xf5\x24\x76\xcd\x57\x55\x3f\xbf\x62\x6a\xcb\x15\xbf\xe0\x0a\x98\x7b\xa1\x9c\xfc\x11\x65\x3d\xca\x89\x62\x93\xf4\xb9\xfc\x2e\x7f\x78\xad\xac\xf6\xb7\x4c\x46\x79\x2b\x56\x1b\xac\x88\x8a\x7f\x6d\x29\x9c\xb4\xa9\x1e\x02\xdb\xda\xed\x77\x38\xdc\x95\x43\x0e\x62\xd4\xb2\xb9\xa9\x99\x60\xe0\xb8\x20\xd2\x58\x2d\x2a\x3a\xe4\x2e\xab\xba\xa0\xd3\xd1\x6a\xc1\x31\xf4\x90\x50\xe2\xed\xbb\x0b\x00\xae\x9a\xcb\x7d\xb5\x59\x1a\xc0\x2c\x33\x2e\x9a\x78\x68\x5d\x7c\x2f\x8f\x58\x52\x25\x7d\x59\x34\x2d\x9f\xbf\x18\x8d\x15\x3c\xc0\x0b\xf2\xe1\x2d\xcc\x7b\xc5\x82\x20\x60\x51\x2e\xb0\x6d\x3c\x0d\xb4\xfa\x8b\xb5\x32\x75\x40\x9b\xaa\xab\x1f\xf5\xe8\xe9\x62\x4f\x6d\xd1\xca\x73\x32\x15\xec\xf2\xa7\x3f\xd2\xff\x19\xb3\x88\x72\x68\xad\xc6\x13\xcf\x99\xb9\x64\xee\x65\x2b\x26\x5d\x4d\x70\x3c\xac\xb4\x61\xb0\x1b\xab\xef\xaf\xa1\x40\xb7\x17\xa4\x65\x2d\xd1\x86\x96\xb5\xfc\x8a\x3e\x58\xe4\x5d\x6d\xb0\x08\x45\xaf\x72\x69\x43\xf3\xc6\x08\x72\x24\x7b\xe6\x8a\x86\xc6\xe4\xbf\x2f\x3e\x96\x10\x65\xe3\x9c\x4f\x71\x3f\x07\xe7\x2d\xfb\x8d\x75\x66\x1f\xb2\xbd\x70\xee\xcd\x66\x19\xa4\x4b\xec\x06\xa2\x46\x65\xa2\xf2\x89\x30\x01\xd1\x3b\x92\x50\x16\xeb\x79\x50\xb8\xf1\x44\xf6\xe5\x27\xf0\x38\xc8\x8a\xfa\x37\xde\x25\x9c\x95\x6d\x6f\xb1\xc4\x3c\xf0\xd3\xdb\xb8\xc2\xac\x90\xe8\xd6\xcd\x0d\xb4\x57\x01\xe2\x9c\x52\xa0\xb7\x4a\xf8\x7b\xd6\x7a\x2d\x9a\x0d\xe1\x7b\xc3\xab\x72\x1d\xe1\x4f\x7c\x6a\x5a\x39\xb5\x4b\xc2\x88\x36\x9b\x6a\x6b\x28\x4b\x14\x44\x9a\x2b\x0a\xa2\x2e\x03\xa5\x54\xcd\x22\x08\x2a\xe1\x8b\xea\x45\x66\xb4\xf0\x50\xbb\x58\xcb\xaf\x6b\xe1\xbc\x7d\x3f\x69\x8e\x55\xeb\xf8\x21\x33\xb8\xa4\x4f\x42\x6e\x65\xd2\x59\xed\x53\xb4\xc0\xde\x73\x7c\x50\x69\x22\x68\xeb\x0f\x4e\xef\x37\x37\xdc\x32\xfd\x1f\x74\x53\x4a\xd3\x22\x0f\xb6\x2e\x77\xcc\xae\x6d\x3b\x20\xe5\x86\x15\x24\xb7\x2a\xbe\x04\xf4\xfc\x49\x4e\x0b\xc2\x57\xa2\xb1\x5f\x65\x5d\xc3\xdb\x7d\xfe\x85\x55\x3c\xab\x08\x11\x51\x3e\x3d\x69\x45\x21\x49\x52\x06\x0f\x86\xf6\xf8\xed\x51\x2a\xd8\xae\x49\x7c\xbf\x2c\xe9\xd4\xd7\x62\xcb\x99\x29\x26\x18\x81\x48\x9c\xc6\x8e\x85\x12\x15\x7b\x4c\x4a\x36\x23\x16\x80\x7b\x28\x44\x56\x5b\x09\xcc\x26\x58\x49\xcf\x71\x4e\xb4\x49\x13\xb6\x2d\x59\x7a\x99\x6f\x45\x79\x29\xbf\xf2\xd3\x32\xa3\xb3\x78\x85\x7d\x24\x88\xfe\x03\x2b\xad\x56\x10\xf2\x14\xf3\x19\xa0\xec\xfd\x29\xa0\x10\x96\xf2\x93\x29\x8b\x89\x2e\xdd\x40\x89\xc8\x9c\xd0\x70\xfa\xe9\xbc\xa4\xec\x99\x9d\x2a\xc2\xa0\x80\x37\xee\x88\x56\xc5\x49\x3c\xce\x59\xeb\xeb\xa1\x94\xcf\x0f\xa3\x62\x78\x26\x59\xdf\x5f\xfe\xf8\xb0\xfb\xfe\xeb\xcb\x1f\x03\x61\x5f\xac\xcb\xc5\x47\x41\xce\xaa\xbe\x6c\x3e\x41\xad\x00\xf5\x56\x49\xb5\xd2\x66\x7d\xb8\xcc\xd7\x94\x0b\xa9\x96\x08\x11\x15\xa3\x79\xe7\xdc\x64\xcd\xa8\x2f\x4c\xaf\x66\xa2\x4e\x2c\x05\xfb\x23\x3e\x42\xaf\xc8\x18\x89\xd3\xc7\x50\x92\x0a\xad\xab\x4b\x3a\xd3\x88\x34\x41\x12\x7e\x83\xbf\x67\x9a\x5c\x2e\x07\x10\x8e\x51\x68\x03\x21\x65\x2d\x5c\x28\xc0\x9d\x04\x68\x1c\x9f\xa2\x4c\x44\x17\x5e\x59\xcc\xdf\xa6\xda\x56\xfd\x08\x15\x99\xac\x16\x8a\xd2\xaa\xfe\xb4\xb5\xc1\x18\xe2\xec\xd2\xe1\x44\xd5\x10\x2f\x61\xe8\x79\x53\x90\xf8\xfc\x6d\x4e\x6d\xec\x7b\x96\x10\x59\x29\xd5\xd3\xe9\x54\x30\x33\x42\xa2\x73\xd1\xcd\xf7\xb5\x2e\x13\x31\xc8\x8a\x9c\xaf\x2a\x9c\x99\xdc\xae\x6d\x21\x07\x95\x4a\x6c\xf9\xe3\xb0\x82\x4f\x66\xaa\x08\x45\x29\x3e\xc7\xb8\x3f\x15\x8b\x17\xc5\x14\x2e\x10\xc5\xae\x4b\x99\x21\x8c\x9f\xc1\x18\x6d\x48\x68\x8e\x93\x45\x92\xf7\x47\xe6\xab\x79\x7d\x2f\xf7\x7d\xdf\xb0\xf0\xb8\x61\x1c\x94\x32\xd6\xe7\x13\x00\x42\xbc\x8e\xf5\xdd\xca\xb2\xa4\xb3\xa4\xf2\x2f\xb8\x90\x0e\x74\x44\x4c\x19\x2c\xc4\xa7\x43\xd3\x53\x3f\x40\x2d\x45\xeb\x58\xd4\xb7\x51\xa1\x85\x3e\x70\x73\xfd\x74\x4f\x1e\xb7\xe5\x93\xd8\x97\xb0\xff\x50\x42\xfb\x23\xa5\xdd\xd6\x7c\x8f\x4c\x51\x99\xdb\x06\xb6\x33\x73\xa1\xba\xcc\x80\x1a\x6d\x3a\xb5\xc8\xe7\x5d\x46\x94\x9c\xb8\xe8\x25\x66\x99\x06\x81\xd2\xb3\x41\x5b\x51\x68\x1f\x4f\x5f\x9f\xf6\x38\x1e\xab\x7d\xd3\xcc\xe9\xe4\x83\xbe\xc5\xba\x97\x6f\xca\x7a\x95\x28\x2a\x61\xfe\x02\xbe\xfd\xdf\xac\x5c\xac\xe7\x90\x30\xdd\x06\x7c\xdb\xd4\x4f\x91\x16\x44\x14\x2b\xad\xaa\x6d\x6b\x90\xab\x69\x9b\xfd\x6a\xad\x5a\xaa\xec\x37\x9e\xb5\x0f\x99\xae\x6b\xe9\xea\x54\xac\xb7\x1c\x5b\x7f\xd9\xdb\x01\xde\x18\xdd\x5f\xcb\x96\xc5\x79\x00\x25\x0b\x7f\x68\x45\xd2\x09\x09\x24\x3d\x72\x46\xef\x3d\x01\xd2\xe4\xab\xfd\xe6\x28\xbf\x11\x96\x29\x96\x09\xaa\x04\x65\xa6\x18\xc5\xc5\xee\x47\xc3\x6b\x96\x05\x8d\xef\x16\xd6\x8c\xbf\xd2\xb1\x5b\xc3\x82\xd4\x64\x94\x21\x85\x4e\xf1\x41\xa0\xac\x0b\xf9\x90\xf1\x71\xfc\x76\x20\x11\xf0\xb9\xad\x69\x8e\x2b\x45\xd6\xcf\xde\x42\x16\xc6\x7c\x36\x21\x3c\xbc\x2f\xa3\xa1\x0c\x5f\x61\xf0\xe7\xe7\xaf\x2e\x4c\xb9\x71\xfe\x2a\xff\x58\x6a\xdd\xaf\xfa\x7e\xd7\xfd\x02\xb5\x99\xe8\xc0\x58\x61\x76\x56\xdc\x32\xa7\x2e\xc9\xfa\x03\x19\x17\x65\xb1\xd5\x4e\xf2\xa7\x54\x71\x4c\x4c\x84\x26\xf2\x27\x71\x1e\x4e\x1d\x9b\x81\x67\xfd\x39\x11\x55\x64\x17\x05\xb9\xb1\x54\xd3\xd9\xef\x23\x15\xf2\xef\x59\xb1\xd9\x91\x68\xcb\xfc\x9f\x03\x83\xb6\xf4\x52\x25\xdc\x1c\x20\xd8\x35\xfb\x2d\x21\xc8\x02\x5a\x08\x2a\xf0\xf8\xe9\xfc\x89\xd3\x9e\xa7\x95\x2d\x89\x98\xfc\xa1\x0a\xf9\x5b\x50\x3e\xd6\xdb\x55\x7f\xb7\x51\x24\xd5\x71\x3a\x11\x66\x82\x00\x1b\x1f\xa1\x02\x10\x8e\x16\x66\xe9\x7b\x56\x9e\x52\x02\x89\x0d\x49\xd5\xdb\xe2\xd3\x7d\x05\xb7\xcd\x44\x39\x21\x99\xb1\x90\x51\x46\x1d\x62\xb2\x7b\x08\x9c\xb5\xa3\x07\x81\x69\xe1\x09\xa4\xaa\x17\x9b\xfd\xf2\x60\x47\xba\xfd\x25\x6d\x24\x16\x47\x1e\x3d\xec\x1e\x71\x95\xf5\x47\xe2\x3c\xea\x00\xff\x8b\xfc\xce\xf1\xfb\x3b\xb3\xe0\xce\xa9\x5a\x91\xd1\xf2\x60\xcb\x25\x06\x6a\xc9\x87\x11\x64\xad\x59\xa4\x63\x5e\xfe\x0a\xc8\x0f\x45\x95\xca\xc7\x61\xff\xb3\x76\x0a\xa2\x28\x21\xe0\x2c\x5a\x9d\xe7\xcc\xc8\xcc\x59\xae\xa9\xbd\x20\xc2\xc4\xd7\x8e\x6b\xb0\x3a\x80\x98\x89\x4d\x60\x5c\x6e\xb0\x3b\x0f\x16\x27\x76\x6d\xa2\xf4\xbb\xb1\xbd\xe2\x40\xf9\x9e\x36\xd8\x44\x05\x61\xdf\x1d\x2c\x28\x6b\x8f\x42\xfb\x0e\xe2\x66\x42\x38\xc6\xe5\x18\x6a\x16\x67\x29\x4c\xb8\x5f\x1b\x2f\xb6\x85\x79\x4e\xa5\x6c\xd6\x58\x11\xfa\xb5\xb0\xfe\x3b\x59\x5b\x75\x1f\x4a\xeb\xb7\x2c\x56\x76\x7b\x3e\xb7\x58\x04\x15\x36\x30\x9d\x51\xe6\x48\x50\x55\x89\x26\x0e\x57\x4f\xf8\xc4\xa4\xf9\xbe\xfa\x01\xf6\x85\x55\x7b\xd5\xcc\xb8\x62\xad\x3c\x00\x1d\xaa\x36\xe8\x0d\xca\x4f\x15\x34\xf3\x2f\xab\xeb\x52\x35\x07\x41\x61\x82\xbc\x59\xb6\xa1\xfd\xcf\x12\xa4\x8c\x4a\xe4\x85\xe6\x9a\x77\x14\xb7\xc7\xb9\x52\x4e\x34\xf5\x3a\x28\x46\x12\xd5\x41\xc0\x5c\x58\x2e\x8f\xd8\x74\xd9\x83\x31\xc0\x06\x2d\x36\x37\xc5\x6d\x07\x7d\x9a\x11\x19\x36\x72\x48\x71\xa6\x20\xc4\x1c\xad\xd0\x2b\x6f\x4a\xa3\x5d\x63\x33\xc1\x36\x21\x3e\x2e\x02\x0f\x73\x03\x2d\x02\x28\x84\x6a\xe8\xae\xdd\xc1\xac\xa7\x0b\x6b\x40\x58\xf4\x67\x59\x4a\xb2\x5d\x45\xb0\x6d\x2b\xb1\x9f\x28\x7b\xc4\x8c\x23\x35\xc3\x8c\x1c\x91\x60\x99\xeb\x0a\x7c\x3a\xba\xe4\x54\x4a\x7b\xaa\xff\xa9\x08\x20\x15\xcd\x21\xcb\xb3\x51\xcb\xc2\xa7\x11\xad\x8a\x99\x82\x24\x5d\x74\x13\x5d\x5f\x6d\x36\x3c\xd3\xe6\xef\x91\x08\x04\xc8\xc5\x3e\xc1\x34\x75\xeb\x6a\x97\x37\x30\x08\xf8\x29\x8c\x68\xeb\x58\x6f\x36\x7a\x95\x10\x70\xd8\x30\xd2\x16\x75\x77\x55\xc2\x42\xb2\xcd\xaf\xd8\x27\x61\xa6\x4d\x33\x27\x2f\xfe\x1d\x07\x5a\x16\x59\x11\x4d\xfb\x03\x02\x6b\xe7\x16\x2a\x6d\x5a\x2c\x70\x50\xc3\xa3\x0f\x98\xd5\x58\x53\x67\x7d\x60\x34\x1b\x4d\x01\x18\xea\xc4\x9e\x3a\x39\x0f\x57\x89\x0a\x42\xda\x07\xa6\xdd\x33\xee\x4c\xfc\x27\xe6\x97\x94\xb9\x58\x27\xbb\xe2\x02\x39\xb9\xe4\x8c\x36\x46\xf6\x1b\xe3\xfd\x87\x4c\xd8\xcc\x79\x30\x73\x9c\x08\xdb\x29\x3c\x23\x12\xb3\xff\x6a\xe8\xa0\x85\xce\xfe\xdf\xe9\x0b\x0a\xfe\x2c\x31\xdc\x0e\xf4\x23\xea\xb9\xc2\x38\x79\x46\xa8\x44\x67\xbd\xba\xaf\xdc\x92\x00\x8e\xfd\x04\xf5\xc9\x0b\xfb\xce\xd8\x39\xa0\x05\x72\x9d\xeb\x57\xa2\x8f\x91\x42\xa2\xac\x7b\x61\xdf\x9a\x1a\x92\x68\x5b\x84\x94\x5f\xf4\x33\x63\x81\x7f\x3b\x03\xfd\x65\x66\x16\x36\x1e\x47\x75\xf9\x50\x65\xfc\xb7\xbc\x99\x83\xdf\x15\x3d\x51\x9e\x5a\x04\x24\x21\x02\xbe\xa8\x66\x87\x2a\x82\x6b\x01\xd7\x92\xfd\x66\x6e\x3d\x1f\xb2\xe8\xfc\x63\x7e\x3f\x53\xfa\xe9\x30\xfd\x62\xb5\xc9\x74\x57\x77\xca\x58\xfe\x07\x7d\xaa\xb2\x07\x14\x03\x1f\x2a\xad\xc3\xc8\x6f\x96\x59\xf8\x0a\xb9\x9f\x99\x2a\xcf\x52\xcd\x99\xe2\xd4\x0f\xf9\x73\xf9\x30\xb9\x7f\x5f\x61\x8c\x15\xb1\xdf\x3b\x2c\x9c\x73\x5d\xd2\x95\x0c\x83\x50\xcf\x35\x2f\xf9\x8f\xc4\x46\xa9\x04\xdc\x84\x19\xda\x70\x76\xb2\xcd\xc4\x89\x8f\xac\xf5\x86\x5c\x59\x3b\x23\x22\x9b\xc6\x58\x16\x26\xb0\x9b\xf2\xd2\x2c\x4b\xbb\xb2\xd5\x71\x6e\x0b\x92\xf0\xae\xab\x22\xe8\x9c\x1c\x4f\x13\x0e\x5d\x53\x1a\x25\x82\x16\x58\x78\xd1\xe1\x19\x4b\x63\x0b\xcc\xaa\x14\xc1\x7f\xaa\xb5\x12\xc3\x4e\x0d\x76\x87\x3d\x8f\xec\x4c\x7c\xc1\x1e\x57\x70\xa1\x18\xfb\x0c\x72\x13\x6a\xe0\x7a\xa3\x9f\xd9\x7e\xc7\x16\x23\x37\x97\xbf\x20\x21\xcc\x65\x9a\xef\x04\x29\xcc\xaa\x15\x0b\x3a\x23\x01\x5f\x3a\xc9\x8a\xcd\x26\xba\x8f\x27\x7c\x01\x75\x4b\x2f\x87\x20\x51\xc3\x02\x1a\xa5\x03\xc7\x42\x89\x15\x1f\x53\x4b\xe7\x5c\xce\xea\xdc\x4d\x55\x7f\xec\x74\xa5\x78\x9e\xbc\x50\x09\x4d\x18\xe1\xfb\xbe\x14\xbb\x0a\x3e\xc7\x9e\x67\x6a\x71\x54\xfb\xe3\xe5\xad\xa9\x0a\xc4\x42\xa9\xa8\xcf\x76\x4f\x48\x32\x87\x4d\x9d\x43\x1b\xa7\x99\x38\xcd\x74\x07\x0b\x6b\xa4\x68\x34\x0f\xf9\x89\x58\x5d\x75\x77\x2d\xd6\x4d\xd3\xa9\x6a\x36\xd2\x3d\x4e\x83\xe6\x45\xc9\x9e\x2e\x4b\xac\x47\x56\xed\xd8\xac\xbf\xd8\xe1\xba\x97\xe6\x6a\xa7\x88\xd0\xba\xb5\x4e\xd4\x7e\x71\x6c\x75\x8a\x75\xd7\xc6\x04\xea\x32\xaf\xb6\xe2\x33\xfa\x8b\xd9\x7e\xb1\xe0\x41\x60\x40\xf6\x2c\xed\xcf\x10\x4b\xb4\x5d\xb3\x5e\xdc\x83\x2c\x86\x0a\xde\x1c\x26\xcb\x1f\x28\x52\xb3\x49\xd8\x35\x1b\x47\xc8\xe7\xc9\x73\xf9\x6f\x61\xb8\x0c\x3a\x01\xde\x63\xf3\x01\x88\x8a\xd1\x09\xe4\x24\x57\x6c\x6d\x1d\xe4\x88\x07\xbd\x1f\xed\x18\x2b\x77\xc3\xfe\x66\x6e\xe0\x8a\xe3\xcb\x99\xf9\x70\xb1\x1a\x57\xac\xa0\x70\xb6\x11\x87\xa3\x1a\x26\x54\xa9\xc2\x11\x15\x6d\xf4\x5f\x25\x29\xb1\x66\x11\x29\xba\x20\x49\x1c\x0b\xe1\x64\xa3\x87\x78\xaa\x86\x7c\x75\x56\x4d\xe8\x6b\x69\x1e\x2c\x9e\x02\xef\x5a\xc2\x15\x62\xf8\x53\x4a\x3c\xa2\xbd\x09\x9d\x05\x99\x6d\xe0\x8f\x11\xc9\x2b\x8d\x5b\xab\xe2\x73\x0b\x5f\x96\x12\x14\x47\xb4\x03\x98\x2b\xd6\x64\xdb\x08\x96\x2b\xf8\x1f\xfa\x48\x3f\x84\x2a\xca\x58\x9f\x6b\xc2\x20\xdf\x06\x23\xd9\xb6\x20\x13\xa3\x61\xf7\xb1\xeb\x32\x1c\x1c\x55\x2d\xee\x30\xc1\xd8\x99\x50\xa7\xfc\x39\xc8\x15\xa1\x83\x28\xdb\x8d\x58\xfd\x34\x6c\x3d\xe2\xd1\xcf\xa9\x9a\x5e\xc6\x96\xee\xa2\xaf\x32\xea\x11\x70\x3c\x9a\x8c\x97\x40\x9e\x54\x8b\xc6\x50\x1e\x42\xf4\x34\x21\x75\x9e\x18\x11\x60\x0f\xf8\x12\xc3\x01\xf3\x1f\xff\x0d\x36\x83\xa4\xa9\x68\x33\x08\x9d\x1c\xec\xb0\xd1\x28\xc7\x5b\x8d\x32\xc0\x0a\x29\x2e\x3b\x86\x46\xb1\x39\xf0\x35\xdc\x8a\x48\x30\x3c\x3d\x94\x04\xee\x47\x31\x01\x47\x13\xfb\x95\xc1\x29\x0d\x9e\xa8\x22\xce\x74\x23\x85\x74\xba\xe6\xc7\x90\xd7\x68\x52\x04\x16\x9c\x21\x31\x13\xcc\xe9\xdb\x5e\x27\x2e\x9a\xe6\x41\x1c\x12\x82\x83\xe0\xc8\x1c\x78\xa4\x42\xd2\xba\x5a\xad\x69\x5c\xd5\x96\xed\xf0\xc0\x24\x33\xf6\x46\x19\x96\x7f\x11\x89\x6a\x56\x35\x2b\xa9\xb8\x05\xf1\x08\x0c\x0a\xe6\xef\xbb\xbe\x6d\xea\xd5\x8f\xcf\x1b\x16\x2e\x59\x77\xc3\x87\xeb\x4f\xdf\x7f\xad\xe9\x44\x86\x79\x09\xd9\x7d\xf4\x65\xd5\xbf\xda\x5f\x3e\xea\xf2\x15\xfb\x41\xc3\x48\x54\x38\xef\x68\xf5\xc0\x10\x77\xcd\x9b\x3a\x4c\x0b\x7c\xa5\x69\x8f\x77\xcd\x86\x36\x48\x5a\xa4\xd9\x6e\x65\x79\x89\x80\x6d\x05\x12\xfd\x87\xd3\x46\x59\x63\xe6\xca\x56\xe7\x87\x2a\x9c\x05\x14\x8f\xeb\xa3\xcb\x66\x1c\x6a\xa2\x11\x51\x1e\x91\x81\x61\x52\xae\x7b\x77\x10\x41\x1d\x62\xa5\xc0\x7f\x8c\x4b\x61\x1d\x59\xbf\x34\xd6\xc5\x40\x6c\xe1\x2a\xac\x38\x95\xa4\x7e\x08\x1f\xc6\x69\xd6\xa2\x70\x20\x25\xab\xba\x05\xb1\x1c\xf2\xf2\xd9\x63\x8a\x5a\x70\xee\xa1\x7b\x40\xd7\xc1\xfe\x56\x8a\x26\x63\x57\x7a\x66\x03\x70\x14\x4d\x67\x24\xd2\xb4\x21\x4c\x42\xd5\x4a\xa1\x69\xd6\x0b\x4f\xcd\xc4\x3f\x4d\x28\x9a\x20\x24\xc9\x56\x4c\xaf\x3f\x93\x9a\x8d\xda\x8d\x03\xb7\xe6\x3e\x83\xa2\x61\x4c\xc7\x98\x0e\x1a\x0b\xf4\x27\xba\x50\x6f\x54\x5b\x82\x0c\xf6\x94\x8e\x72\xde\xdb\x46\xad\x6e\xb9\x25\x62\x4d\x48\xb0\xeb\xcb\x64\x2b\x73\x27\xe0\xdb\x2a\x9e\x4b\x50\xc0\xfc\x3f\xf9\xb2\x20\x3a\xd0\x37\x1f\x09\x95\xc6\x45\x90\x7e\xa8\x50\xa0\x2f\x26\x1c\x29\x75\x39\x8e\xc4\x61\x28\x2e\xa9\xd1\xfc\x20\x81\x71\x74\x45\x6b\x0d\xde\x63\xa2\x3d\xc2\x7d\x03\xf6\xb1\x59\x0a\x1d\x51\x32\xa0\x2e\x52\x61\xff\x13\xc7\x56\x33\x10\x04\x52\xfe\xd0\xdf\x7e\x59\x92\xfa\xdd\x66\x21\xea\xbd\xaf\x1d\xf9\x14\x74\x98\xcb\x54\x84\x41\x9e\x11\xc3\x01\xa7\xd6\x63\xa9\xf0\x82\xb3\x3b\xf5\x10\x57\xdf\x03\x2b\xf2\x52\x13\xb1\x07\x00\x28\x13\xde\x85\x89\xc0\xaf\xa8\xf8\xb0\x5a\xd4\xab\x45\xfd\x55\xb1\x06\x84\x75\x46\x30\xd7\xe2\xe5\x92\x1f\x9f\xbd\xa6\x03\x23\x34\x68\x95\xfe\x5c\x2c\xd6\xba\x80\x37\xa2\xf5\x80\x2f\xcc\x66\x33\xa4\xb8\x41\x92\x90\xe2\xe6\xc8\x8f\x92\xd8\xe2\x61\x50\xa3\x01\xc9\x60\xd2\x7c\x99\xe3\xb2\x73\x9a\x20\x69\x0d\x3d\x19\x9e\x55\x61\xa8\x5f\xd1\xcc\x06\x7d\x24\x6f\xad\xdd\x2d\x53\x7f\xe7\xd5\x56\xc8\x0c\xdd\x80\x7e\x0f\xdc\xe9\x08\x12\x16\xe5\x9c\xb7\x70\x1b\xe8\x87\x75\x58\x29\x88\x5f\x4a\x4f\x46\x26\x17\x33\x12\x95\xc9\x62\x53\x94\x65\x67\xf5\xa4\x63\xbe\x8f\xce\x30\xe2\x47\xc5\xc1\x1d\x54\xc6\x8f\xca\xa1\xf2\xd9\x64\xb3\x01\xa3\xa5\xe9\x01\xbd\xc9\xe5\x18\x14\xaf\x0c\x78\x98\x8a\x88\x25\x18\xe1\xfc\xcd\xa9\x96\x9b\x72\xb3\xa1\xfd\xa0\xad\x47\x63\xa7\x0e\x3d\xf1\x5f\x50\x20\x27\xdf\x96\x91\xb7\x95\xa9\xf0\xaa\x3c\xab\x8c\x20\x68\xbb\xc1\x75\x40\x94\x0f\x76\x5a\x9f\x1c\xbf\x7d\xfb\xee\x22\x1e\xd2\xbc\x0f\xea\x25\xb1\x12\x5f\x05\xc7\xc2\x51\xbf\xcc\xbd\x30\x2c\x60\x0a\x11\x1d\x1c\xb5\xc4\x21\x38\x4f\xa6\x9c\x6b\xc5\xaa\x01\xed\x69\xb8\x2f\x46\xcb\x93\xfe\x2f\x0f\xad\x5f\xf6\x1b\x73\x37\x1f\x32\x53\x88\xbf\xe3\xbf\x99\xb7\x29\x38\x5b\x0c\xb6\x5e\x34\xd9\xc4\x6b\x1c\xd4\x81\x66\x39\xb2\x31\x80\x48\xef\x0b\x88\x5a\x34\xf7\x0d\xce\x8a\xab\x1c\x76\xf2\x23\x56\x99\x36\x2d\x36\x0c\x4f\xee\xbe\xae\xfe\xb6\x07\x7b\x06\xf3\xf6\x2c\x63\x7f\xd5\xcb\x6a\x23\x07\xca\xaf\xe1\x87\xa4\xf3\xd7\xe0\xaa\x81\x6b\x9c\x7e\x7d\xdf\xed\xd8\xdd\x97\xce\x86\xee\x87\x07\xfb\x2a\x67\x2d\x22\x7b\xae\x3d\xf8\x91\xe4\x17\x36\x78\xd3\xf2\x11\xc4\x8f\xa3\xea\xf8\x36\xe1\x42\x94\x8f\xc1\x15\x05\x78\xab\xe9\xbc\x5b\x98\xdf\x4d\x34\x9e\x32\xf1\x7f\xa0\x4d\xbe\xba\x18\xc7\xf1\x58\xa5\x6e\x9a\x23\xec\xdd\xeb\x62\xb3\x4f\x55\x30\xdc\x3a\x97\xe9\x9e\x64\xb8\x47\x11\xcb\xc2\x35\x09\x97\x61\x39\x83\xb0\xe1\x27\x4c\x5a\x7f\xf7\xa5\x3a\xbe\x36\xcb\x8c\xdf\x57\x19\x7a\xa2\x4a\xea\xe1\x2d\x4a\xe4\xd9\x05\x07\xce\xc3\x2d\x07\xa4\x4e\xac\x86\xbb\x10\x55\x6c\x7a\x51\x50\xe7\x6e\x35\x99\xb4\x60\x10\x5e\xb1\x7b\xab\xa6\xc0\x40\xc1\xba\x45\x5b\xe1\x92\x86\xa4\xf3\x55\xda\xdc\x5d\xa3\x45\xe2\xaa\xea\x49\x58\x67\x57\xc3\xd0\xf8\x39\x21\x3f\xcd\xd3\x2c\x64\xe5\x76\x31\xb7\xcb\x88\x7e\xd0\x91\x86\xdb\xb8\xf2\x65\x29\xa3\xe2\x7c\xfa\x0b\x2c\x34\x72\xcc\x72\xea\x56\xe0\x0f\xfd\x3d\x51\x4a\x01\xad\x49\x36\x95\x34\xf3\xaa\xae\x98\x02\xbc\xa6\x3f\x74\xba\x8b\x24\x90\xe2\xab\xf0\xb9\xa8\x44\xb5\x3d\x22\x86\x87\x7a\xd4\x79\x50\x97\x47\xbd\x06\xdd\x02\xe9\x85\x00\x55\xfb\x63\xfe\x90\x90\x3f\x43\x82\xde\xc1\x25\x0a\xb8\xaf\x45\xf5\x4c\x7f\x93\x44\x9b\x77\xc7\xd0\xc8\x95\xac\xa7\x7d\x5b\x2c\x3e\x32\x71\x21\x9c\x29\x5b\x92\x0a\xe0\x31\x55\xf0\xf9\x97\x13\xa2\xad\x68\x02\xc4\xc2\xa0\xee\x48\x52\xcc\x2a\xaf\x58\x82\xb8\x16\x4e\x4c\x6e\xef\xbe\xb6\x94\xc7\x2c\x7a\x3e\x31\x40\x13\x1c\x03\x9c\xaa\x3f\x06\xf9\xd6\x4f\x35\x17\xaa\xbd\x9c\x36\x24\x9f\x22\xac\x9f\x80\xf5\x8e\xa6\x6b\xc9\x36\xa9\x62\xd3\xe5\x2a\xef\x9a\x19\x3e\xbb\x61\xe3\xb6\x58\x1c\xfe\xa2\x9f\x30\x38\xac\x8a\xbf\x4b\xea\x79\xf8\x01\x0c\xef\x14\xe7\x3b\xb5\x1e\xd0\xdc\x2f\xd6\xea\x93\xd6\x5c\xcd\xe5\x56\x1f\x4e\xec\x8b\x60\x05\x65\x72\x01\x38\x5a\xcd\x6d\xf1\xa9\xda\xee\xb7\x79\x00\x44\x51\xde\x04\x0f\x53\xbb\xc6\x6c\xda\x3a\x31\xb4\x84\x7f\xb9\x91\x62\x58\xc3\xdd\xb6\x0a\x76\x3e\x9b\xb3\x89\xcf\x68\x4a\xe2\x6e\x92\xe9\xfd\x6c\xbb\xe7\x1a\x2e\x68\xcb\x45\x57\x9f\x7b\x98\x3c\x9b\x02\xaa\x48\x29\x26\x7c\x8e\x2f\x89\xe2\x3d\xf8\x51\x16\xdd\xc8\xa5\xd5\xaa\xe8\x7f\xaa\x57\xc4\x1d\xfe\x2b\xc4\x4c\x68\x62\xc4\xa5\x13\xdc\x35\x8b\xa8\x34\x01\x95\x9c\xa8\xca\xd5\x16\xee\xbe\xda\xd7\x2f\x5f\x5f\xe0\xb6\x1a\xe1\xa4\x68\xf7\xf4\x4a\x1e\xbb\x63\xcf\x42\x9d\x7c\xd8\x56\x5d\x27\x4c\x58\x5d\x61\xe2\x99\x10\x4e\xe8\xff\x44\x65\xa0\x95\xa5\x18\x60\xb5\x45\x5f\x70\x76\x0f\x53\x47\xf0\xd7\x92\xa8\x05\x39\x11\xba\x88\xd4\x92\x67\x9e\x6d\x85\xbf\x28\x69\xd5\x06\xa3\x6d\x5c\x36\x6f\xaf\xd5\xad\xa6\x84\x5e\x6f\xdb\x37\x57\x99\xd0\x6a\x4b\x57\xca\x7d\x15\x8e\x00\x5c\x74\xe3\xeb\x2e\x29\xed\xc7\xad\xfc\xc2\xaf\xbb\x77\xd9\xa4\x8d\xc2\xdc\xd2\xee\x76\xce\x96\x04\x30\x48\xbb\xdb\x98\xe0\x38\x49\xca\xa0\xe9\x74\xc0\xc1\xdb\xe5\x0c\xab\xfc\xbf\xff\xe7\xff\x7a\x7a\xc2\xc3\x3e\xe9\xdb\x0d\x7d\x29\xa3\xce\xf0\xb2\x0c\x52\x41\xfe\xee\x3f\x48\xe0\xba\x51\xd7\x96\x5f\xe4\x2b\xb3\xdf\x20\x05\x94\xdf\xa9\x6e\x1f\x1f\x99\xfe\x62\x8a\x90\x69\x90\x01\x26\x05\x19\x4b\xbb\x8a\x36\x24\xe9\xfa\xb3\xea\x6f\xfb\x6a\xf1\x71\x2e\x2a\x9a\x1f\xf2\xff\xe4\x5f\x39\x2e\xae\xeb\x71\xcd\x94\x3f\x90\x71\x20\xe7\xe0\x2c\xf0\x7e\xe2\x38\xe3\xf4\xae\x48\x24\xfb\x45\xca\x7e\xdc\x1a\xe1\x35\x40\xbe\x0d\x97\xed\xf6\xec\xcc\xc5\x08\x61\xad\x9d\x51\x0a\x6e\x16\x72\xa2\xd0\xf3\x50\x03\x56\x76\x54\x07\x9a\xa7\xee\xca\x45\xd3\x49\x2e\x0b\x59\xce\x87\x77\xcb\x77\xbe\x68\xc8\x2a\xf1\x64\xea\x97\x79\xc2\x17\xf5\xc2\xd9\xa4\x67\x52\xdf\x96\x90\xe9\xe8\x4f\x46\x47\x1e\xfb\xff\xa9\xd5\x9a\x2f\x5b\xf7\x05\xcc\xbb\x48\x37\x9b\x35\x1b\xbd\x8b\x95\x56\x04\x61\xee\x99\x7e\x66\x94\xce\xbf\x2f\xe8\xcf\x28\xe6\x01\x47\x48\x18\x47\x46\xd8\x14\x97\x25\x92\xdf\xe0\x83\x90\x9f\x4e\xdd\x9e\x56\x44\xce\x20\xfb\x91\xf1\x94\x54\xbd\x20\x22\xbe\x32\xbd\x94\x23\x76\x6e\xf9\xcc\x60\xa9\x6b\x0b\xb6\x36\xbf\x2f\x6e\xe4\x27\x4d\x97\x46\xca\x78\x25\x5f\x92\x8c\xfb\x08\x02\x8a\xeb\x08\x01\x1e\xfc\xba\xee\x86\x33\xfb\x96\x2c\xf6\x2e\xdd\x30\x13\x67\xcb\x60\x16\x21\xca\xc8\x25\x43\x58\x50\xbe\x7c\x51\x67\xd6\xe9\xd9\xb8\xf3\x96\x33\xb8\xa6\x90\x2f\x06\xf9\x57\xa2\xa9\x78\xc1\x7a\x0a\x4b\x2b\x70\x12\xe4\xe6\x81\x18\xd2\xb7\x7c\xf6\xa2\x6f\xa7\xf2\x15\x72\x96\xe2\x45\xfc\x1c\x3c\x8c\xa6\xd9\xfd\x93\x77\xfc\x37\xa4\x12\x4e\x2b\x1b\x4b\x7f\xc3\xfd\x0c\x89\x92\xc2\x2a\x0a\xac\xa5\x4b\x9e\x0d\xd7\xcf\x65\xd5\x3c\x59\x97\xb0\x35\xd2\xf6\x44\xbe\xcf\x5e\xd0\x9a\xb5\xf3\x50\xfe\x84\x7f\xe6\x9b\x51\x2d\x01\x21\x3c\x3e\x0c\x9a\xf1\x30\xd4\xd4\x24\x98\x34\xe7\x21\xa5\xc5\xed\x14\x30\xdf\xa2\x4c\x60\xdf\xf1\xb5\x4a\x87\x8e\x49\xc5\x2c\x50\x0d\x6a\x86\x8c\x35\x0d\x4f\x87\x2c\x5f\x11\x84\x94\xa9\x9f\xe3\x7e\x3a\x20\xe9\x66\x31\x01\xca\xca\xbe\x08\x47\x03\x1f\x02\xa9\x36\x3a\xd0\xac\xe1\xea\xc5\xf5\xa1\xa5\x1d\x2e\x90\x64\xce\x89\xf3\x5d\x94\xe1\xb6\x12\x80\xc0\xbf\xf0\xbd\xa1\xa4\x99\x50\x99\x36\x96\xd4\x87\x09\xed\x8b\x4b\xca\x26\x7e\x8b\x67\x33\x14\xe6\xb9\x8a\x59\x32\x75\x96\xa9\x04\xc9\x6a\x4e\xaa\xf4\x79\xc4\x6a\xcd\x85\x71\x97\x89\x08\x4c\xfc\x66\xa2\xc4\x9d\x18\x35\x84\x39\x58\xf3\x08\x6f\xb4\xe4\x1d\xcb\x1b\x21\x38\x4a\xc8\xe1\xaa\x0f\x94\x53\x5e\x0f\x1c\xde\x38\x67\xc6\xf7\xe0\x02\xcd\xe5\x80\x0e\xf2\x63\x12\xb4\xd3\xc8\x45\x24\x16\x31\x37\x10\xba\xba\x54\xcd\xdf\x54\x21\x59\xe5\x25\x7b\x08\x48\x19\x59\x67\x5c\x89\x3e\x50\x64\xcb\xdc\x3f\xa4\x60\x2d\x72\x1a\x12\x26\x8a\x74\x1a\xa0\x81\x23\x24\x8c\x73\x66\x10\x1e\x7b\xa5\x4d\xdd\x24\x08\x63\x29\x40\xde\xe1\x63\x0a\x44\xf4\xe1\xaa\xd1\xe2\x93\x43\x2e\xa5\x98\x45\x7e\xb2\x61\x76\x46\x0b\x25\xde\xc0\x35\xad\xfd\x8c\x72\xec\xac\xcc\x74\x55\xcc\x1f\xa7\x0d\x3c\x88\xf1\xf3\x8e\x76\x62\x01\x69\x68\x54\x82\x77\x12\x56\x81\x40\xe4\x3b\x7f\xf8\xdb\x37\x1f\x3a\x5e\x86\x68\x57\xfa\xed\xcf\x1f\xba\x07\x3f\x3e\xfc\xed\xdb\x0f\x30\x28\x8d\x0a\xcf\xaf\x58\xa3\x3a\xae\x01\x05\x0d\x7a\xd7\x96\xd7\x55\xb3\xef\x84\xc7\xc3\x67\xa4\x0f\x9f\x64\x29\x3e\xf5\xe9\x16\x0f\x81\x1d\x06\x3b\x7c\x19\xb2\xd2\x1d\x5e\xef\xb7\x73\x1d\x63\x27\x14\xc0\x7e\x85\xe2\x36\x03\xf3\x82\x9b\xfc\x3d\xfc\x8e\xc3\xfd\x13\xeb\x50\x1e\x62\xa4\xbf\x5b\x31\xf3\x00\x11\x68\x17\x4a\xe1\x58\x2d\x82\xc1\x34\x68\xca\xb8\xa5\x53\xd7\x6a\xb1\x9f\x42\x37\x1b\x67\xc9\xba\x90\x40\x19\xcc\xee\x07\x8b\xda\x6d\xd9\xcf\x52\x92\x86\x1f\x36\xde\x34\xcb\x3a\x15\x40\x74\xd1\xe1\xe0\xed\xc1\xdb\x12\xb3\x6a\x70\xef\xf1\x73\x90\x79\x57\x65\x6d\x52\x40\xe9\x74\x44\x31\x05\x1d\x2c\x94\x4e\xb3\x9c\x61\x34\xc7\xd5\x92\x11\x8a\x10\xe4\x41\x98\x6e\xfc\xfa\x11\xc8\x92\x4c\xba\xb4\x17\xea\xb0\x9f\x5f\x58\x8b\x30\x23\xc4\x31\x5f\x85\x7a\x54\xe7\xb1\x94\xd5\x91\xa1\xaa\x73\xb0\x40\x7f\x61\x13\xbb\x46\x03\xcd\x9d\xe1\x23\xb6\x6c\x57\x5e\xc1\x60\x9d\xb8\x9f\x01\xcd\x13\x05\xad\x26\x5a\x38\x00\xbb\xe6\xa1\x52\x49\x62\xe7\xd5\x2b\xa2\xb0\xef\x12\xb6\xb1\xfb\xa6\xe1\x5a\xcd\x37\xbe\xd5\x17\x59\x6b\x2c\x97\xd0\x56\xfd\x4c\x7f\x42\xe7\x06\x9e\x5b\xd6\x36\x1b\x6f\x88\x6c\xd2\x1f\x4b\x92\x33\xd1\x36\x5c\x3c\xb3\xd3\x7c\x1a\x6c\x13\xcf\x74\xfc\x1a\x02\x88\xd2\xfc\xe1\x72\xc0\x97\x49\x76\x44\x4d\xdd\xb9\x88\x3d\x91\x9e\x3a\x02\x39\x31\x18\xc9\x18\xb8\x3c\xa6\x99\xe1\x46\x91\x74\x10\xf7\x8a\x2c\x96\xc9\xb8\x16\xf5\xee\x03\x68\xd0\xda\x4f\x82\x4d\xbb\xb3\x08\x8f\xe1\x0d\x32\xcc\xb1\x7b\x17\x16\x76\x48\x70\x36\x1a\xad\xfb\xb0\x49\x66\xba\xf1\x28\x51\x4b\x5f\xef\xb1\xfd\x3a\x32\xb9\x2b\xda\xbe\x5a\x54\xbb\x22\x90\xca\x33\x97\x62\x90\x45\xdf\x17\x8b\x35\x6f\x6b\xcf\x74\xfd\x2e\x77\xe8\xd4\x24\xc6\xf8\x88\xe1\x40\x86\x25\x88\xdf\x27\x4a\x87\x18\x06\xbe\x74\x48\xe4\x2a\x7e\xcf\x44\xa8\x73\xf2\x81\x17\xee\x34\x93\x4d\x0e\x05\xed\x09\xf1\xb7\x52\x21\x88\x53\xd4\xb9\xad\x9b\x86\xb3\x55\x32\xe0\xfe\xa6\xc9\x83\xc8\x89\x08\x8c\x7c\x82\x15\x39\x17\xb6\x9b\xa7\x30\xcb\x6b\xf9\xd9\xa0\x5a\x84\x4c\xf8\x01\x1e\xab\xc3\x06\xb5\x85\x1f\x72\xfd\xd2\xfc\x44\x1a\x1e\x4a\xc1\x36\xf2\x86\x95\x84\xfb\x0d\x56\x04\xe6\x76\xf9\x71\x25\x86\x62\x03\x42\x18\x3c\xe6\xb6\x62\x5b\xee\x10\x91\x20\x79\xea\xfc\xc3\xb9\x97\xe5\xa2\xe0\xb0\x2e\xe8\x33\x8f\x75\xcd\x61\xf9\xe2\xe8\x09\x84\xc3\xe9\x58\xfd\xec\x5f\xef\xe3\x0f\xf2\x8a\x85\xea\x4d\xd3\x33\x98\xa9\xcb\xb2\xbf\xc1\x3d\x1a\x78\xe3\xf0\xe4\x8a\x75\xa2\xfb\xce\x73\x11\x44\x3d\xbf\x46\x1b\x5f\x33\x2b\xb1\x54\x4a\xfa\x27\xfc\x10\x7a\xaa\x53\x39\x10\x34\x26\xd0\x00\xd4\xc8\x16\xf5\x06\x38\x4c\x23\xde\x96\x2c\x34\x73\x43\x4b\x93\x7d\x85\xae\x7f\xcf\x3a\x0b\x23\xdc\xf8\x26\x84\x65\x6f\x1b\x4d\xff\x36\xa4\x6b\xfd\xa8\x49\xb9\x0c\x6b\x46\xd2\xfe\xb5\xea\xa9\xf4\xbf\x7d\x30\x1c\xa5\xad\x32\xf7\xe4\x1a\xf8\x19\x7f\x26\x50\x43\x91\x3f\xe6\x89\x65\x01\x08\x55\x9a\x87\xef\x52\xf3\xf5\x50\x27\x54\x91\xa9\x09\x3a\x76\xc9\x50\x63\xb2\x5f\x49\xea\xf5\xae\x6c\x99\x4c\xe9\x6c\x06\x9b\xea\x2c\x99\x1a\xb0\xdf\x6d\x6c\x89\xb1\x26\xe4\x5c\x8c\xaa\x0d\x74\x49\x61\x52\xb2\x24\x55\x70\x30\x3f\xda\x1f\x66\x49\xa7\x5f\xc1\x66\x36\x5d\x97\xc2\x2e\xf7\xf1\xf2\x08\xcf\x22\x15\x82\x5e\xcf\x51\x5b\xeb\x7b\xd5\xcd\xe1\x3f\x27\xf7\x0c\x2e\xd4\x29\x8e\xc8\x51\x9f\x87\x74\x6a\x4e\x6e\x6f\x48\x78\xa9\x95\x04\xeb\x0a\x11\x2d\xaf\xe8\xf7\x1a\xa1\x74\x18\xe0\xaa\xe4\x20\x18\xe0\x30\x03\x89\x28\xea\x39\x4c\x44\x18\x6a\xa2\x89\x4e\x86\xa1\x6a\x69\x9d\x90\x41\x80\x9c\x50\x15\xb4\xfe\x9f\x57\x9b\x38\x2b\x4c\xd5\x17\x48\x80\xdc\x6e\xe2\x1d\x6f\xe3\xee\x0e\xb7\x35\x8c\x4c\x29\xf8\xb0\x2d\x6a\x31\xfe\x56\x7c\xef\x89\xe5\x78\xb9\x45\x0d\x57\xb4\x7e\x3d\x51\xb3\xd4\x36\x20\x29\x40\x9e\xa9\x9d\x0d\x84\xdd\xd7\xba\x01\x51\x0a\xda\x4d\x46\xf1\xdf\x55\x13\xfd\xa8\x0f\x48\xaa\x88\x1c\x2d\xff\xe9\x50\x3d\xc9\xaa\x85\xa5\x48\xa6\xed\xf1\x9f\x1e\x2e\x9f\xc8\x26\x86\x4b\xda\xc8\x7e\xc7\x89\x32\x70\x7f\x78\x33\x15\xad\x3a\xc4\x1c\x60\x94\xe1\x83\x82\x81\xe8\x7b\xf6\x7b\xe6\xb4\x8e\xee\x2c\x8b\xba\x01\x97\x3d\xa1\xc8\x70\xb9\xd3\xca\x8c\x21\xc0\x32\xaa\x88\x1e\x76\x49\xdb\xcd\x9c\xb6\xc6\x5c\x25\x4d\x3a\x4e\x78\xa3\xf0\xaf\x61\x0f\x4c\xc2\x1a\xd6\x1c\xc4\x8d\x74\x40\xc4\x74\x5c\xf2\x11\x22\xb7\xe9\x85\x44\x3b\x45\x2b\xa1\x83\x5e\x85\x52\xd7\x0b\x65\x06\x92\xea\x07\x14\x7e\x72\x72\x8c\xe3\xc4\xed\x6b\x9f\x31\x61\x4e\xf6\xb9\x71\xcc\xcf\x69\xc0\xac\xa6\xcc\x1f\x5b\xac\xc0\x27\xe9\x20\x4b\xb9\x16\xc0\x7f\x7d\x46\x88\x94\xa4\x55\xcd\x65\xe5\xb5\x46\x54\xae\x29\x31\x72\xcf\x51\xb8\xbc\xfc\xe8\x96\xfe\x3d\xdd\x6e\x9f\x2e\x97\x8f\x26\x46\xed\x78\xb6\x30\xec\x81\xa3\xa2\x2a\x47\x06\x54\xd2\xd5\xe4\x58\xe0\xe9\xb9\x63\x80\x64\x9d\xf8\x82\x44\xc1\xe7\x34\x33\x1d\xcb\x38\x73\x82\xbb\x71\xf5\x3a\xa6\xff\x0d\x51\xbb\xe8\xfe\xc4\x1b\x5a\x3c\x3b\xfd\x58\x06\xe2\x83\xcb\x1a\xdc\xdd\xbf\xb3\x83\xc1\x1e\xa4\xec\x1c\xd1\xee\xed\x81\x49\x91\x88\xa1\x07\xa7\xc4\xb1\xed\x71\x5a\x03\xeb\x3e\x01\x38\xcd\xb8\xc7\xd6\xff\x3b\x99\xf7\xa9\xe6\xa7\xd0\xe0\x1e\xf6\x3d\xbb\xa9\x3e\x56\x54\xe0\x2f\xf4\x07\xdf\x33\x8d\xb6\x90\xc7\xe8\x0a\xd4\x2e\x67\x7f\x95\xe4\xdb\x58\x39\x07\x16\x06\xa2\xd3\x50\xc5\xe6\x12\xa6\x53\xdc\xdd\xf6\x1b\x36\x12\x7d\x94\xd3\xb4\x59\xec\x21\xd7\xdf\xea\xfd\xa4\xff\xc2\x65\xa1\x86\x98\xba\xb5\xc6\x77\x04\xcb\x5c\xf5\x8a\x54\x33\x69\x50\x71\x1c\x37\x17\xe7\x1a\x4a\x5d\x37\x79\x8f\x78\xc3\x94\x8e\xd3\x53\xc0\x7d\xb0\x75\x24\x28\x9b\xac\xe9\xca\x24\x47\x78\xb9\x6e\xe2\x6b\x7d\xab\xd1\xf4\x24\xdf\x7c\x26\x54\xe8\x8f\x46\x8c\xbf\x20\x82\x68\xc1\xfc\x31\x3b\xf4\xb1\xf3\x35\xd6\x5b\x35\x71\x91\x40\xe8\x38\x10\x7c\x4c\x5b\x62\x61\xd8\xb5\x01\x77\x59\x6d\x80\x91\x82\xa9\x73\x97\x33\x42\x9b\x46\x01\xe5\x88\x18\x03\x1c\x98\xce\x29\x73\x0d\xea\xa2\xa2\x6b\x32\x9e\x98\x37\x1c\x8f\x78\xb9\x25\x20\xea\x0e\x37\x0d\xc5\xf7\x3e\x16\xe5\xfc\x1b\xe3\x12\xbc\x27\x1c\x96\x9d\xfb\x26\x8c\x29\x4b\x5d\xca\x97\x86\x30\x3a\xbc\xdf\xcb\xb6\x47\xcc\x9c\xb0\x42\x73\x3d\x43\xe3\x49\x0c\x44\x42\x55\x03\x77\xee\xc4\x95\xbb\x73\x75\x74\xba\xcc\x9d\x9b\x44\xbb\xb8\x64\x6e\xc7\xfa\x93\x63\x79\x4d\x05\x5a\xb7\xb4\x99\x2c\x16\xee\x3c\xca\x57\xcc\x72\xc1\xc7\x94\xa1\x76\xbf\x0f\x80\xcd\xc4\x1f\x4c\x83\x6c\x1c\x02\x92\x18\xb4\x8a\x49\x87\x80\x10\xf1\x5c\x5c\x8a\x0e\x81\x90\x28\x57\x5e\xe1\x8a\x2d\x9b\xa4\xf5\x3b\x02\xaf\x9b\xe6\xa3\x84\x9e\xbb\xc4\x67\xcc\x59\x71\xcc\x69\xc9\xe4\xe8\xca\xaf\xd2\x5c\x92\xee\xaa\x85\x0f\x35\xff\x8c\x13\x26\x26\x4f\x2f\x33\xbe\xb3\x38\x82\xe7\xc9\x70\xf4\x02\x9a\xab\x47\xaf\xc4\x8d\x2b\xd2\xcb\x52\xcc\x32\x7d\xde\x55\xc3\xa9\x2b\x86\x69\x14\x83\x59\xac\xbd\x58\x5e\xf3\xc9\xb2\x4c\xc2\xf1\x6b\xda\x44\x67\x18\xa9\x82\x43\xb2\xc4\xde\x04\xb1\xec\x6e\xbb\xbe\xdc\xba\xf1\xb1\x2e\x95\xbd\x95\x38\x70\xb0\x92\x53\x3e\x1b\x39\x56\x22\x41\xa0\x50\x0a\x5d\x7e\x1a\x43\x5b\xda\x00\x3c\x01\xd5\x90\xca\x3f\x1b\x28\xb6\x0c\x87\x82\x39\x0c\x6e\x03\xf8\x35\x89\xea\x79\xc9\x33\x24\x8e\x1f\x62\x52\x61\xc7\x15\x04\x5d\xa7\xc9\xbb\x4d\xe3\x46\x11\xb3\xe8\xe6\x50\xce\xa5\xc1\xb4\x88\xba\x13\x1e\x60\x65\x7b\x60\x62\x00\x33\x57\x98\xc1\x0c\x6d\xd8\x51\xfa\xa6\x84\xbb\xf4\x1d\x75\x85\xc1\x4d\xd5\x15\xe6\xef\x40\x05\x9a\x80\x39\x09\xbc\x57\x98\x49\x18\x1e\xf3\x0b\xad\x91\x67\xe3\x05\x60\xc6\xe5\xa5\xed\xae\xbf\x95\xf8\xcf\xd3\x15\xbc\x2d\xb6\xb8\x0b\xc3\x50\xdf\xdd\x59\xc7\xcc\xe2\xda\x10\x99\x96\xaf\xbb\xc1\x11\x0f\x27\x96\x39\x76\x3f\xef\x1a\xab\x8f\xc9\xca\x52\x22\x8b\x33\xde\x70\x2a\xd4\xfb\x1f\xec\x15\xf7\xcf\xfc\x1f\xbc\x7b\xe8\x4f\x45\xa4\xe4\xd3\x3f\x4d\xcd\x10\x22\xd6\xf2\xce\x3c\x1a\xf9\xf0\x8a\xfc\xc2\x93\x80\x62\x0e\x65\x20\x84\x0d\x30\xc6\x4b\x4c\x9d\x5d\x0c\xa0\x9d\xae\x57\xbf\x99\xcd\x69\x2b\x3a\x9d\x52\x4a\xbc\xe4\xfd\xdf\xce\xff\x2e\xa6\xd1\xe7\xf8\x95\xff\x0f\x66\x03\x03\x08\x1e\xf2\x40\x24\x12\x56\x1f\x74\xe2\x24\xa7\x11\x15\xe4\x9a\xae\xe8\xc7\x8b\x10\xe5\xb0\x4b\x9d\x8f\xd2\xc3\x27\x86\x2a\x94\x7b\xbe\x45\x2d\x57\x1e\xe5\x76\xb7\x23\xc7\xac\x63\xe9\x83\xb6\xa5\xcf\x2f\x38\x66\xfc\x6a\xbf\x21\x69\xc0\xf9\x9f\x0d\x0b\x0c\x97\xc5\xea\x51\xbe\x11\xfe\x4b\x3c\x39\x1c\x9c\x0f\x75\x39\xba\x16\x3c\xd1\x34\x4a\x53\xcb\x11\x73\xe5\xb6\xd4\xb0\x15\x39\xc0\x3b\x9c\xe0\x4f\x35\xb4\x44\xea\xd7\x9e\x34\xec\x66\x43\xfb\x00\xd5\xd3\x54\x2f\xc4\x22\x14\xfa\x20\xee\xed\x13\x3d\x88\xd6\x2d\x73\x70\x57\xb5\xd4\xe0\x08\x15\x68\xb9\x85\x31\xf0\x49\x8c\xa2\x8c\x40\x59\xec\x3b\xe9\x12\x6c\xcf\xe9\x6d\x65\xbf\x1d\x24\x02\x06\x7b\x11\xe9\xe7\x3b\x8b\xa1\x31\x06\x0b\x1a\x91\x18\x38\x23\x9d\x14\x9e\x0b\xc5\x03\x6c\x08\x5d\xa4\x34\x68\x0b\x33\xf4\x21\x46\xbf\x46\x02\x04\x4f\x80\x5b\x21\xdd\x44\xf7\x06\xcb\xc4\x38\x21\x61\xf5\x81\x78\xc2\xd9\x57\x57\x0e\x87\x71\xfd\x88\xaf\x13\x5d\x57\xcb\x3d\xd1\x20\xee\xcc\x5d\xf5\xfe\x39\xad\x97\xe6\x11\x2e\x8a\x07\xeb\x1e\x0c\x08\x3b\x3c\xbc\xd5\x82\xd8\x27\x57\x31\xa4\xcf\xe4\x88\x98\xf8\x04\x33\x8f\xee\x24\x84\xe6\xc9\x63\x70\x0e\x2f\x04\x89\x84\x03\xfc\x90\x1b\x8a\x86\xa5\xdf\x8d\x8e\x65\xb5\xcb\xfc\xdc\x72\x9d\x38\x08\x59\xbd\x37\x09\x66\x0b\xfa\x8e\x0e\x7a\x89\x0e\x84\x42\x38\x7c\x59\x43\x18\x15\x3b\x75\xa3\x37\x24\xd8\x3b\x6d\x92\x81\x9d\xac\x7f\x62\x7f\x79\x1e\x99\x27\xce\x1e\x5f\x40\x6c\x04\x6e\x98\xc9\xe9\xc3\x31\xb7\x31\x92\xe4\xde\x7b\xd2\x64\x1d\x06\x3a\x61\x33\x60\x28\xc3\x7b\xfa\x91\x60\x0e\x22\x76\xa0\x6b\x53\xf4\xe8\xc0\x44\xd9\x00\x92\xf0\x3a\x7f\x64\xb6\x0e\x4f\x54\x24\x44\xf7\x5e\x9b\x39\x5c\xdf\x9f\x0f\x12\x36\x77\xb9\xc5\x8b\x2c\x4c\x2b\xf5\xed\x1f\x53\x08\xfb\x21\x8a\xbf\x38\x9e\x22\x62\xcf\x59\x9a\xf2\x23\x95\xc8\x8f\x82\xf9\x5f\xe2\x8c\xb8\x7b\x50\xde\x36\xdb\x1d\xee\x2b\x7c\x61\x65\x02\x8e\xed\x96\x86\x71\x65\x10\xb7\xf9\xfc\xdc\xf1\x8b\x0b\x6c\x23\xbf\x12\xe5\x8a\xa0\xc5\xb0\xd2\x83\x98\x72\x8f\xd0\x7f\x88\x35\x9f\xae\xcc\x44\xa3\x7b\x82\x43\x8c\x77\xbf\x59\xa2\xf1\xa4\x16\xac\xd1\x01\x86\x05\xfd\xb9\xa3\xcb\xb8\x3f\x67\x04\x77\xa2\xaa\xc9\x13\x21\xc6\x41\x0a\x5d\xb3\x02\xed\xe1\xee\xa5\x57\xaf\xf2\x89\x2b\x57\x4e\x60\xe0\x90\xa1\x89\xc5\x9d\xef\x32\xf3\x78\x12\xcb\xfb\xc1\x02\x83\x3b\xc4\x49\x5d\xe9\x1d\xe2\x31\xbe\x0c\x1a\xb6\x8b\xc4\x63\x09\xb0\x69\xbd\x81\xd9\x77\x6c\x62\x48\x93\xc5\x12\x1b\x80\x04\xe0\x67\x7c\x8c\x37\x37\xd6\x12\x1a\xdd\xcb\xc1\xf1\x22\xe6\xf0\x78\x1c\xe0\xec\x1d\x17\x8f\xad\x53\xa2\x12\x3b\x34\x73\x27\x93\xb3\xa6\x37\x03\xdd\xbc\x89\xab\xaa\x84\x87\x4f\x9d\x02\xd5\x77\x15\xe7\xe3\xcc\x95\x40\x54\xc0\x78\x07\x82\x8d\x5a\x97\xa3\x89\x4f\x82\x04\xa6\xd7\x20\xd4\x99\x56\x2e\x81\x83\x91\xf4\x65\x67\x89\xf4\xc2\x6c\x3c\x22\xca\x69\xdc\x69\x7d\xb2\x6f\x18\xe5\x4b\x73\x6f\xd6\x8d\x63\xab\xee\x6f\x80\x11\xef\x46\xc4\x7b\x45\x52\x15\xf6\x07\x5a\x80\xa0\xb5\x53\x55\x00\x0c\x37\xdb\x3d\x4d\x0e\xb4\x74\x90\xf8\xf5\x1d\xa0\x77\xe7\x17\x30\xe2\xd2\xa2\x11\xcb\xb2\xe2\x13\x3e\xff\x0b\x89\x88\x78\x98\x81\x9f\xe3\x51\xf2\xb9\x58\x70\x64\x88\xaa\xd6\xb0\xf5\x37\xa5\x5d\xd9\xad\x97\x7a\xde\xf9\xb8\x21\x26\xa0\x8b\x31\x37\xc7\x1b\x39\x70\x76\xda\x95\x8b\xea\x8a\xb8\xda\x37\xb4\x56\xb5\x44\x81\x37\xff\x93\x3b\x6f\xa6\x85\x91\xc0\x7d\x9e\x6d\xbe\xfe\x90\x96\x4c\xbf\x3f\xf4\x24\x1c\x4d\xcf\x10\x74\xea\x8e\xac\xcd\xf0\x5d\x7a\x5c\x9c\x0a\x72\xf6\x57\x7c\xc8\xe4\xea\xde\xfd\x39\xfb\x60\xd4\x07\xff\x6c\x80\x34\xfd\xb9\x94\x5d\xab\x9a\xe1\x9d\x89\xd0\x17\x8e\x58\xd9\xe1\xd2\x28\x7e\xdf\x03\x6e\x53\x70\x2e\xd1\xa5\xe1\x91\xc7\x17\x06\x14\x2d\x42\xad\xf6\x68\x05\x58\x36\x9b\xa3\x6e\xac\x4f\x99\x6c\x23\x0e\x11\x5d\xbb\x19\x8e\x53\x70\x5f\x8c\xb1\xd2\x1c\x09\x8d\xfb\x12\x8f\x21\x6d\x8b\x5b\x79\x19\x81\x6d\xa6\x1d\x9d\x9e\xf5\xb2\xb3\x67\xfe\xf8\xbd\xd0\x75\x73\xc3\xea\x58\xbb\xdb\x35\x5a\x92\x71\xdf\xa2\x35\xd1\x4c\x88\x13\x20\xdd\xae\x91\xeb\x81\xef\xf5\x73\x0c\x24\x46\x12\x1e\xd5\x2b\xf9\x1a\x83\xec\x34\x94\x6f\x08\xea\x3b\x06\xb9\x6c\x96\xbc\x66\xcf\xe8\xcf\x58\x67\x17\xde\x26\x34\xc5\x1d\xf6\xf2\x8e\x43\xe3\x89\xcf\x2b\x67\x10\x76\x96\x9b\x2b\x89\x0b\xc8\x02\x26\xac\x3c\x62\xde\xe7\x0b\xb6\xf2\x3a\x08\x5f\x08\x45\x05\x3a\x4f\x88\x68\x80\x38\xe1\xde\x76\xaf\x2f\x10\xf9\x60\x3f\xc3\x3e\xc1\x8f\xca\xfa\xf5\x5a\x84\x03\xac\x26\x6c\x5a\x12\x4a\xfe\x88\x85\x6b\x36\x06\x99\x63\xa2\x29\xa4\x76\x12\xc6\x9d\xc3\x2c\x11\x0d\x40\xac\x4d\x03\x11\xe9\x4a\xee\x97\xb8\xbb\xae\x91\xa7\xe6\x38\x2b\x3c\x61\xe3\x1e\xe9\xdd\x64\x9e\x20\xb9\x95\x3c\x82\x88\x6e\x93\x00\xb2\x28\x20\x43\x1e\x49\xc1\xa3\xf6\xf2\x55\x42\x3e\x1c\x01\x4e\x1e\x8d\x44\x47\x35\x3c\xbb\x28\x59\x98\xb0\x9a\x4e\xc5\xb9\x48\xf0\x5c\xb1\xde\xc9\x11\x43\x7e\xe5\x89\xce\x5f\x51\x49\x90\xa0\x5b\xb4\x4b\x8b\x40\xaa\x84\x99\xef\x57\x82\x00\xfb\xe0\x54\xc5\xa6\x6b\xac\x0a\x3a\x48\x08\xe4\x23\x5f\xd2\xa0\xf5\x86\xec\xa0\xca\x2f\x16\xe3\xa2\x6d\x86\x69\xf1\x7e\xc7\xe4\x59\x68\xbd\xb5\x83\x21\x3f\xfe\xf7\xf3\x77\x6f\x8f\xf2\x4f\x4f\x6f\x6e\x6e\x9e\x72\xf1\xa7\xfb\x76\xc3\x71\x5f\x96\x1c\xe1\xf4\xff\x3f\x7d\x73\x94\x97\xfd\xe2\xc9\x2c\x3f\x15\xaa\x1d\x89\xa1\x3a\x24\xc0\xd9\x08\xd6\x7d\x22\x10\x7f\x9c\x9a\xeb\x8e\x51\x2d\xa8\x0f\x85\xed\x99\x3b\x5e\x3d\x73\x45\xd7\xc5\x14\x97\x74\xc7\x28\x2c\xda\x12\x9e\xdc\xf8\x70\x19\xc4\x35\x7c\x9c\x8a\x85\x37\x04\xa9\xa8\x1d\xed\xc6\xeb\x85\x3e\x6c\x37\x00\x31\xe7\xc5\x13\xb8\x2d\x46\x05\x2d\x2f\x5c\x38\x85\x59\xe3\x4a\x54\x8a\xad\x64\xc9\x01\x73\x59\xda\x42\x94\xcb\x9f\x86\x85\x71\x67\x0b\xef\x32\xfd\x90\xff\x3b\x1b\x88\x79\xa1\x04\xb7\x38\xcb\x70\x0b\xc0\xb3\x61\x61\x44\xdc\x77\xd2\x0f\x0d\x40\xde\x11\x30\xe9\x2b\xe6\x05\x09\x6c\x54\x89\x2a\xc3\xd8\x05\x9c\x88\x70\x50\x8e\x01\xd7\xa4\xba\x71\x91\xd4\x3c\x3f\x9d\x6d\xf3\x22\xd7\xb5\x8e\xf4\x22\x97\xd9\xae\xc7\xf3\x90\xb8\x7f\x24\x8e\x1f\x77\x80\x86\xab\xc1\xde\x69\x43\xdc\x80\x8f\xc4\xb9\x79\x79\x94\x9b\x63\xf0\x91\x1a\xe1\x8e\xec\xea\x0a\x7d\xed\xeb\xf8\x2d\x4e\x99\x2a\x10\xd9\x4f\x38\x01\xf0\x4f\x8e\xa7\x74\x4b\x23\xa1\x59\xac\xfe\x3e\x31\x29\x38\x4c\xe5\xca\xdd\xe4\x22\x3b\x0a\x0f\x50\x55\xc2\x8d\xc5\x77\x21\xad\xb9\x3e\xcc\x51\x0e\x33\xdc\x13\x88\x65\x8f\xe0\x70\x53\xd4\x44\xb4\x55\x01\xef\xe2\xfe\x37\x0a\xad\xe7\xa7\xb0\xa2\x12\x58\x23\xa1\x7f\x20\x7e\xa9\xc4\x33\x7d\x9c\xcf\x46\xd4\x35\xf2\xae\x4a\x5d\x47\xfc\x99\x02\x0e\xda\x18\xb1\x45\xba\x14\x63\x71\x2a\xb6\x70\x88\x03\x94\x2b\x13\xc6\x99\x58\x80\x5a\x44\x27\x7a\x1e\xd2\x52\x7e\xda\xe8\x0c\x4e\x8e\x94\xc8\xf0\x84\x08\x25\xf0\x67\x02\x73\xe6\xa9\xd3\x35\x83\xc0\xe5\x9a\x2d\x25\x76\xdb\x76\x14\x50\xcc\xf3\x2a\x52\xab\x85\x87\x91\x30\x36\x83\xcc\xe1\x5b\xa4\x43\xda\x44\xcc\xb9\x3c\x56\x7d\x22\x5f\x7e\xb6\x76\x9b\xe6\xd6\x62\xae\x3d\xc7\x2f\x8d\x23\xeb\x47\x16\xc1\x74\x50\x11\x72\xaa\xae\xc8\x4c\x03\x0a\xb5\x43\xa6\x64\x25\xfc\x53\x79\x7b\x0f\x4b\xca\x5a\x6d\xaa\xd3\x6e\x43\x23\x48\x2b\xac\x0b\x69\x80\x1a\x79\xd5\x4d\x43\x97\xb9\xa9\xc1\x7d\x5b\x3f\x80\xbf\xba\xf7\x54\x54\x8a\xaa\x59\x11\x14\xba\xe1\xf5\x16\x89\x73\xd0\xd4\x28\xc6\xb1\xc2\x02\xd4\x30\xa6\x59\x1c\xe9\xc1\x98\x66\xbe\xa8\x0f\x6c\xe6\x8a\xe2\xe4\x0f\x93\x30\x69\x0d\x4f\x96\x65\x1c\xb6\x2c\x0e\xf5\x33\x22\x97\x4d\xaf\xdc\x50\x74\xba\x77\xa9\xef\x72\x86\x59\xfa\xc1\x7d\x46\x0c\xb3\x81\x72\xe1\x73\xa4\xa8\xa9\xbe\xc4\x49\x71\xb3\x7b\x9f\x6b\xcc\xb2\xba\xba\x9a\x5d\xb6\x24\x44\x70\xa0\x30\xbc\x58\xc9\x67\x13\xff\xce\xcf\xf1\x5b\x40\xd8\x25\x1a\x58\x21\x1f\x92\xa8\xb7\x3e\x7e\x50\xb7\x5e\x49\x84\x3f\xea\xf0\x05\xbf\xe7\x94\x23\xbe\xa9\x6f\x1b\x44\x7c\x95\x9c\x99\x14\xc1\x33\x69\xfc\x85\x10\x67\xe1\x99\x34\x14\x3a\xe7\x14\x07\xd6\xed\x36\xc4\x7f\xeb\x73\x91\xe7\xfc\x03\x57\x87\x1d\xc4\xbe\x26\x49\xbc\x5c\x1a\xcc\x2f\xf2\xd3\x43\x71\x95\xe1\x7a\x88\xa9\x60\xf9\xd6\x93\x78\x01\x8b\xf0\x10\x95\xb3\xc0\x50\x83\x23\x30\x42\xab\x0a\xd2\x41\x04\xf1\x21\x91\x08\xc2\xd6\x24\x42\xe8\x44\x83\x60\x3d\x7b\xfd\x56\x7e\xe2\xfa\xb3\x06\x3e\xc6\xfd\x67\x76\x46\x96\x2c\x0d\x77\xbc\xdb\x21\xa0\xa9\x5c\x3f\x26\x38\xce\xcb\x5d\xb2\xb9\x6d\x4a\x1c\xc6\x70\x03\x5a\xea\xe0\x9b\xd2\x5b\xa2\x05\xc1\xd7\xf9\x9c\x55\xaf\xfa\xba\x6b\x69\x4f\x56\xf0\x2d\xe9\xe8\xfe\x49\x35\x70\x11\x85\xb2\x09\x31\x2d\x05\x57\x9b\xd9\xa5\xef\xd9\xd4\xe5\x6f\xcb\x93\x3b\xfb\xa2\x2d\x97\x5d\xaa\x20\x01\x62\xd9\x16\x57\xf0\x0d\xe4\xbf\x21\x95\x06\x16\x8b\x9d\xb5\xe5\xd3\x61\x31\x5a\x3c\x41\xa9\x73\x7c\x84\x74\xf5\xed\xe3\x3f\x21\xad\x58\x8b\x5f\x49\x5c\x99\xb8\x62\xe6\x1b\x4e\xfb\xeb\x61\x97\x77\x15\x9b\x03\x74\x23\x0e\x1a\xc4\x2e\x88\xcf\x2a\x61\x8f\xe0\x16\xbf\x1f\xab\x77\x1a\x44\xd4\xc6\x6e\x9d\x87\xf9\xe1\x40\x17\xbd\x44\x64\xd3\x97\x77\x67\x49\xbf\x93\xd2\xc2\xbe\x94\x86\x8d\x78\xbe\x99\x65\x0c\xc4\x33\x92\x40\xba\xec\x0b\xd3\xd2\x44\x70\xf0\x70\xe6\x47\xc3\x26\xaf\xb6\x54\xff\xb5\xbc\x04\x27\xd5\x13\x6f\x19\x22\xc6\x11\x9b\x59\x4b\xd0\x2a\xcb\x83\x7e\xca\xc2\xe1\x27\x65\xe2\xbb\x4f\x66\x14\x8e\xd1\x12\x28\x1f\x7c\xdf\xc2\x07\x61\x60\x26\x96\x23\x68\xca\xd8\x5d\x07\x92\x13\xc7\x52\xc7\xa7\x8c\xe5\xa4\xfe\x42\x0e\x2d\x74\x3b\x9f\xc9\x57\xc8\x61\xf9\x48\x98\xfc\x37\xf2\xc5\xda\xcf\x31\x36\x8d\x63\x1a\x52\xde\xd3\xe1\x5a\x3b\xf8\x30\x01\x7f\x29\x1f\xb1\x8d\xa5\x21\xde\x25\x17\xff\xb7\xa2\x4f\x30\xc5\x14\xa6\xf1\x51\xe5\xa7\x38\xbe\x62\x37\x86\x5e\x9f\xa1\x39\x45\x94\x88\x32\x23\x6c\x67\x7f\x3a\xdb\x29\x70\xa8\x4b\xb7\x0b\xb0\x27\x6e\x18\x78\xb6\x8e\x36\x9a\x30\x87\x11\x2a\x35\x94\x4d\x00\xcb\x51\xa8\x59\x51\xc1\x3e\x84\x99\x3e\xfd\xac\x9d\xa1\x07\x1d\x42\x54\xb3\x2e\x29\xd8\x9c\x08\x65\xee\x38\xeb\x46\xad\x79\xc3\x8d\x34\x71\xcf\xe1\x36\xdc\x03\xa9\x3f\x9e\xab\x47\x59\x10\xa6\xa0\xba\x47\x46\x2c\xc8\xa8\x2e\xf5\x5f\x76\xfb\xca\xf0\x20\x3c\xa4\xa6\xfd\xd7\xdb\x5a\x38\x98\xed\x3b\xcb\x7e\x6b\xda\xd5\x87\xf8\x66\x4f\xd0\xe3\x27\xaa\x78\x68\x73\x18\x26\xc4\xd8\x3f\x00\x18\xe3\xee\xc7\x1a\x0d\x81\x5f\xf2\x36\x4d\x35\xf0\x0c\x20\xba\x34\x79\xa7\x0d\x7e\xa9\x16\x82\x6e\x66\x71\x57\xe4\xb9\x10\x75\x18\xf5\xcd\x49\x38\x94\xe8\x86\xf8\x8b\xde\xbf\x56\x17\x68\x0e\xd9\xc1\x1f\xfc\xa2\x4b\xc5\xa6\x37\x3a\x76\xc4\x9d\xe5\x35\x12\x70\x0e\xb1\x47\x0b\x3f\x26\x23\x5a\x51\xfa\x9b\xe1\xc5\x0b\x35\x1d\x70\xaa\x7e\x69\xfa\xe0\x55\x8d\xe4\x15\x0c\x17\x27\x06\xef\xd3\x24\x5e\xae\x5c\x39\x66\x65\xc2\xff\x3d\x3c\x79\xa4\x9d\x90\x29\x44\xea\x5d\xd0\x49\x7c\x37\xa6\x0e\x72\x73\x82\xd7\xbf\x10\x5f\x62\xbd\x74\xaf\x48\x85\x37\x73\xea\xe4\x8e\x69\x37\x8b\xcd\x38\x5a\xb3\x16\xe7\xf8\x58\x0c\x6f\xa0\xb3\xdf\xed\x4f\x02\x9f\xc4\x56\x52\x05\x4b\x21\xf1\x19\x25\x39\xdf\x90\xa4\xbb\x49\x34\x2e\xa8\x88\x25\x84\x9f\x0e\xbc\xfa\x31\x7e\x23\xea\xcb\x23\x6b\x8d\xeb\xb8\x3b\xb6\x96\xf3\x4f\x1c\xbb\x25\xde\xe1\xa9\x3a\xfd\xda\x84\x57\x2b\x0f\x9e\x9d\x08\x59\x53\xef\x4f\xfc\x11\x07\xce\x14\xd4\x91\xa5\x64\x0a\x42\x4d\x9f\x6b\x52\x56\xbf\x50\xc2\xd4\x7f\xcd\x2d\x34\x7d\x55\x69\xd8\xeb\xd1\x13\x09\x49\xa7\xbf\xec\xa9\x84\x83\x2e\x18\x09\xad\x18\x2a\x29\x46\xf1\x49\x31\xc0\x3b\x8b\xa4\xd1\x4a\x7d\x87\x83\x62\xdd\xb9\x40\xa8\xd5\x54\xe2\x94\x8a\x71\xed\xfe\x60\xa5\x07\x4c\xe7\x77\x45\x2d\x1d\xf6\x92\x69\x4c\x08\xbd\xe0\x3b\x79\x67\x09\xcf\x97\x34\x03\x33\xec\x1f\x8f\x64\x3a\x6d\x11\x65\x25\xc6\x8d\x69\x9f\xc1\xc7\xd8\xfc\x45\x8d\x18\x0b\xa4\x36\x5f\x22\xb1\x46\x42\x1b\x67\x0e\x1c\xa8\x4c\xee\xe0\x15\x2f\xa5\xda\xb3\xf8\x08\xd4\x3c\x89\x5e\x7a\x1a\x9f\x99\x8a\x81\x4c\xbf\x0b\xc5\xd4\x39\xd2\x42\x9f\x0f\xd2\x23\xa5\xc4\x2d\x8a\x9d\x84\x12\x8d\x40\xf2\x1b\x5c\xe2\x64\xce\xb0\x7c\xda\x86\xbe\x9d\xdc\x36\x9b\x32\x74\x34\x7f\xdf\xb0\x7b\xab\x81\xa4\x81\x07\xd2\x82\xa1\x4c\x48\x57\xc1\xdf\x42\x49\x86\x74\x79\x35\x0b\xd1\x45\x5c\xaa\x9e\x96\x6e\xad\x84\xb3\xd6\xda\x21\xa8\x7c\x37\x84\x96\xb7\x98\xf5\x5c\x7d\xcb\xef\x3a\xe1\x50\x9d\x21\xb2\x81\xbc\x4a\xa5\x29\x69\xa3\x92\xc6\x3c\x8e\x06\xd0\xce\xc5\xfd\x5e\x43\x2c\x8f\xf3\x07\x21\x0c\x71\xa6\x84\xe0\x85\xf6\x2c\x1b\xb3\xe8\x1a\x3f\xa3\x16\xb3\x71\x1a\xd3\x4f\x6a\x05\x8b\x1f\x9b\x95\x3b\x26\x49\xbb\x1e\xe2\x73\x1a\xc6\xfd\x81\x61\x73\x47\xa6\xc2\x85\x66\x4d\x75\xcb\xf2\xf0\x80\xb4\x22\xaf\xdd\x87\x7e\xc8\x5b\xa1\x49\x3f\x3c\xc4\xe7\xf4\x83\x5b\xc1\x5d\x6d\x11\xf9\xee\xe8\x4f\xb1\xb4\x97\x45\x12\x97\xaa\x61\x17\x63\x70\xbd\x0b\x77\x92\xc3\x2d\x6d\x39\xe0\x4c\xd8\xe6\x33\x3e\x52\x25\x47\xbc\x88\x26\x98\x07\x71\x11\x9d\x8c\x3d\x7e\x3f\x11\xc0\xa5\x78\x2e\x19\x40\x9d\xf3\x67\x04\x9b\x3c\x97\xa4\x5f\x91\xd9\x03\xf7\xa5\xb4\x41\x33\xef\x3f\x92\x05\xce\xa2\x6e\x0b\xe7\xe7\x0f\x15\xb0\x7e\xb6\x92\x4b\x40\x44\xd7\x14\xde\x60\xae\xd5\x71\x65\x81\x98\x03\x2a\x10\xf1\x31\x9c\xed\x58\xcf\xb7\x39\x7b\x42\x09\xb3\x89\x0d\xd5\x5c\xf1\x00\xc5\xc6\x7d\xef\xfa\xca\xa1\x21\x1a\x7f\x9f\xb6\xba\xf3\x7e\xdc\xb8\x2b\xf1\x5c\x97\x87\x1f\x03\xc2\x1c\x14\x93\x66\x7e\xab\x8f\x11\x24\xa2\xdd\xaa\x45\xbc\x00\x5b\x6b\x26\x16\x0e\x15\x50\xe1\x77\x61\x94\xac\xb0\x18\x50\x03\x78\xc4\x50\x45\x8f\xee\x22\x0a\x5f\xd0\x01\x90\x8d\xbb\x7b\x00\xb2\x20\x11\x6a\xa8\x1b\x8e\x04\xdc\xd5\x11\xd9\xf3\x5f\xd0\x11\xd0\x8d\xcf\xec\xc8\x91\xf5\x42\x9f\x70\x5b\x2e\x27\xf7\xff\x5d\xfd\x1b\x08\x42\x40\xce\xe4\x8d\x41\x23\x06\xf0\x14\x83\xa4\x36\xe9\x29\xe6\x14\xce\xb3\xd9\x70\x97\x38\x57\x37\xb7\x53\x9c\x57\xad\xf5\x05\x4e\x6d\x7a\xfb\x40\x4f\xb9\x58\x55\x4d\xeb\x8e\xb7\x49\xea\xde\xdf\x50\x48\xc3\xa0\xb2\xa3\x75\xdf\xde\x2a\xa7\xc3\x33\x92\x46\x71\x8d\x21\x35\x45\xa6\x83\x73\x87\x3c\xf0\xf8\x1b\xd6\xea\x43\xc6\x8f\x25\xe3\x6d\x6c\xde\xff\xf6\x9d\x89\xae\x4c\x0c\xdc\x78\xed\x2f\x3e\xf3\x97\x0f\x9f\xfd\xbb\xf3\xcd\xc6\xf4\x55\xcf\xe1\x33\x9f\x9d\x04\xba\x5f\x19\x8b\xb8\xda\xeb\xad\x39\x75\x86\xe5\x19\xc7\x6d\x2a\x56\x7d\x73\x42\xb6\x6d\xea\x4a\xfc\xee\x4e\xe5\xab\xe2\x37\x1b\xfd\xd5\xcf\x17\xfc\x43\x1e\x18\xd1\x14\xbe\xe9\x97\xf5\x4d\x8f\xf0\xd1\x17\xfc\xf7\xbb\xfc\xe1\x32\x8b\x43\x87\x56\x9b\x15\x74\x0b\xd1\x8d\xca\xb7\xcb\x77\x0f\x04\xe2\xe2\x7a\x6b\x2f\x1e\xc6\x1a\xd0\x4d\xe8\xe0\xf7\xae\xdb\xda\x49\x54\xba\xef\xa6\x5a\xb4\xfb\x9c\xf0\x06\x61\xfd\xff\xa5\x69\x67\xf8\xe9\xff\x25\x3f\xfd\x2f\x9a\xcb\x23\x97\x90\x2c\x88\xcf\xd8\x85\x47\x6f\x92\xe4\xf4\x28\x8d\xe9\x12\xc4\x3a\x49\xe2\x58\xb5\x49\x42\xb1\x18\xb5\x62\x16\x18\x9f\x66\xee\xcf\x31\xc5\x1c\xa1\x93\xda\xd3\x97\x4f\x7c\x96\x78\xfc\x27\x49\x72\xbb\x64\x30\x12\xd1\x0b\xfb\xb4\x4d\xb3\xe2\x47\xad\xa1\x5d\x4e\x87\xa7\xfc\x7a\x5a\xa7\xdd\x8b\x4e\xaa\x40\x78\x28\x9f\x02\x63\x70\x5f\x74\x69\x69\xec\x4f\x9f\xa0\x97\x79\x47\x80\x31\x0e\x11\x11\x9f\x09\x44\x32\x31\x3c\x20\x93\xc8\xe2\x53\x90\xdd\x4d\x25\xc1\x85\xcf\xf1\x31\x09\xd3\xee\xa1\x75\xdc\xd7\x2e\x97\xdd\x0c\x38\xae\x05\x1e\x87\x69\x34\x14\x37\x07\x1e\x08\x0f\xc1\xe4\xef\xb0\x1d\xbb\x3b\x0b\xb9\x73\x91\xfd\xd1\xf5\xf1\x19\x2d\xe9\x6e\x1a\x4c\x1f\x90\xb1\x66\x3d\x6a\xd5\xcf\xab\x88\xf2\x61\x17\x39\x8f\x02\x31\x50\xd4\x5b\xc1\xb2\x3f\xab\x8e\x41\x2f\x23\x44\xa8\xe6\xcb\xbb\x0a\xfa\xcf\xf4\x9e\x7a\x33\xe8\x64\x42\xf3\x0c\xe4\x9e\x1a\x06\x5d\x9c\xac\xe2\xcb\x3b\x89\x93\xb6\x5e\xc9\xa9\x73\xa0\x93\xb7\x78\x3d\xa8\x5d\xaa\xe0\xba\x61\xa7\xda\x97\xe6\xe8\x77\x4f\x95\x87\x7a\x7d\x67\x9d\x5f\x30\x8c\x55\xd5\xcf\x57\x8b\xd8\x7d\x7e\x39\xad\xbd\x64\xc2\xcd\x87\x7b\xb9\x90\xf8\x3a\x75\xaa\xb4\x9c\x2e\x7e\xd7\x04\xa3\x43\xac\xae\x98\xaa\xfe\x50\xdf\xda\x92\xdd\x73\x58\x51\xc7\x0f\xcd\xa9\xcb\xc0\xfb\x52\xcc\x2c\x8f\x66\x94\xf6\x75\xa1\x51\xed\x4b\x18\xd7\xbb\x47\x12\x51\xf9\xf1\xa2\xc0\xdd\xc4\xef\xe8\x28\xae\x9f\x82\xb4\xa3\xb4\x71\xb6\x3c\x5b\x4f\xee\x6c\x68\x30\x16\x47\xd7\xdd\xdc\xb6\xe8\x4a\x5f\x7e\xd6\x08\x9c\x83\x8c\x1f\x06\x23\x8a\x12\x31\x90\xbc\xc1\x93\xd1\xf9\x63\x76\xd7\xe2\xb7\xf0\xd8\x17\x4d\x7d\x3c\xf5\xd0\x46\x3c\xf9\xa0\x60\x5b\x1e\x18\x90\x6f\xf7\x8e\x15\x7a\x94\xf4\xe2\xcb\xc6\xc8\x2f\x63\x8c\x36\xc2\x7b\x24\xeb\x4b\x19\x7f\x68\x3b\x4c\x55\xfc\xaf\x6e\x87\xd6\xf5\x6a\xf4\x7c\xaa\x63\x0f\xf0\x36\x00\xcd\x5d\x5f\xe1\x98\x38\x97\xb7\x02\x7e\xc1\x6f\x4f\xae\xf5\x7d\xd8\x55\xd3\x36\x84\x71\x12\xbc\x59\xdf\x39\x7d\x69\x69\xdd\x44\x01\x58\x2c\x6e\xe7\x7b\x8d\x55\x61\x65\x4e\x91\x4c\x6c\x1f\x07\x7a\x88\xa5\xc0\x3c\x59\x19\xd6\x43\x2f\xd4\x7a\x01\x6e\xca\x4a\x1d\x5b\x86\x2b\xa9\x65\x9a\x4b\xbe\xf0\xa5\x31\xbc\x00\xfc\x4e\x53\x1c\x2c\xec\x84\xa5\xbd\xc8\x3b\xe7\xa1\x22\x84\x83\x24\xdb\x7b\xbe\x17\x9c\x3c\x6e\xc1\x7a\x15\x8a\x0d\x3a\x75\xa8\xdc\x55\x5b\x8e\xca\xbc\xe0\x90\xf2\x43\x78\x9b\xb9\x75\x59\xec\x46\xf3\xf6\x8a\x12\x47\xb3\x06\xc8\xf1\x04\x00\xf6\xf0\x2c\xf8\x52\xd5\x12\x42\xb4\x2f\xf1\x7a\xb9\x39\xd4\x46\x05\xef\xa2\x21\x7c\xcd\x4c\xfc\x81\x12\xca\x4d\x0d\x7b\xa5\xb6\xbd\x51\xaf\x9a\x4b\x0e\xc9\xd2\x19\xf4\x3b\xf9\xe9\xa0\x2e\x9b\xa6\x27\x59\x8e\x40\x89\x8d\x84\xab\xac\x4c\xd3\x33\x4b\x67\x46\x78\xf1\x71\x34\x53\x02\x3d\x9e\x2a\x81\x3e\x3c\x57\x5b\x7e\xd8\x83\xda\x6a\xf7\x8b\x7e\x4f\x34\x27\x34\x78\x7a\xce\x0f\x82\x9c\x87\x8c\x51\x8b\xa3\x92\x1e\x43\x87\x85\xa7\x5a\x5e\xf0\xb3\x2c\x93\x4d\x9f\x70\xce\x9d\x6d\x8f\xca\xfa\xc6\x47\xc5\xa7\x76\x0a\x1e\xef\x66\xa2\x74\xb9\x5f\x7c\x2c\x7b\xbe\xcc\xbe\x9e\xc3\xa9\xc3\xd7\x75\x66\x60\xf9\x33\x80\xe5\xaf\x08\x2c\xbf\x80\xc6\x6d\xa2\x56\x3a\x47\xb7\x65\x5f\xc0\x09\xc9\xd5\xf2\xf2\x84\x56\x40\x92\xa7\x4a\x41\x13\x37\x57\xf9\x47\x77\x21\xb3\xa4\xae\x86\x77\x50\xd6\xa9\x48\x74\x1c\x40\xa6\x6a\xe3\xb8\xcc\x72\xa0\x2f\x6e\x17\x1b\xf1\x7f\xf9\xd4\x73\x1f\xde\x4b\x8a\x83\x85\x8c\x47\xb0\x46\x23\xe1\x87\x82\xb0\x2e\x04\x7e\x91\x12\x4a\xa1\x60\x11\x58\x08\x17\xc1\x9d\xb1\xef\xce\x14\xe0\xae\x90\xcd\x74\x10\xd2\x9a\x37\x40\x6b\x79\x08\xa7\x8d\x76\x32\x95\x42\x56\x44\xc0\x96\x7b\x5f\xfa\x16\x23\xe1\x1c\xfc\x1c\x70\xed\xcb\x5e\x62\xe4\x34\x85\xc5\xb3\xe2\xd1\xa2\x12\x8d\xb4\xe1\x99\x7d\x01\x13\xb9\x02\xd2\x84\xa4\x18\x27\xcc\x2b\x71\x6c\xdf\x96\x97\x84\xa1\x91\xb4\x78\x80\xd2\x5f\x4d\xb3\xf0\x60\x21\x68\xba\xa6\xc3\x5d\xbc\x2d\x57\xac\xa8\x90\x8b\xe4\x08\xc3\x85\x1b\x41\xef\x91\x6c\xd2\x8d\xbf\xe3\x75\xd1\x60\x94\x6e\x60\xa9\x53\xa2\x0d\xf3\xfe\x10\x65\x33\xad\xc3\x07\xe8\xd5\x91\x41\x74\x31\xaf\xbc\x54\xed\x60\xde\x79\x02\x29\xef\xe0\x88\x61\x73\xe3\x4b\x43\xae\x34\x41\x6d\x50\xc3\x1b\xc8\x9c\x6e\x96\xc3\x83\xde\x41\xd5\x0d\x63\x01\xab\x5c\xe4\x62\x0a\x54\xed\x70\xbb\xdd\xd7\xf6\x60\xb8\xa1\xc1\xa1\x97\xfa\xed\x15\xbf\xcf\x7c\xac\x3f\xce\x85\xc3\x14\xf8\xb5\xa4\x38\xb2\x2d\x3e\xe9\xa3\x30\xf1\xd5\xa9\x53\x7d\x5f\xca\xdd\x9f\x3d\xb1\xdc\x37\xfc\xd4\xd4\xa1\xb2\xa6\xe3\x7b\x7c\x4e\x04\xe6\xe9\x37\x78\x6f\x91\xf6\xc3\x6a\xd3\x5c\x16\xec\xc4\x22\x0f\x88\xe1\xb5\xaa\x27\x5a\x47\xd5\xcd\x3d\x52\x0e\x1f\x21\x2c\x06\x48\x4a\xa3\x5f\x57\x97\x34\x28\x11\xf4\xc7\x05\x0c\x40\x2e\x82\x01\xca\xb5\xa4\x28\x9e\x14\x42\x58\x0f\xce\x10\x0c\x6d\x5a\xe7\x05\x60\x38\x0f\x7b\x3b\xdf\xeb\x99\xab\x63\xf8\xa8\x06\x57\x06\xca\x65\xd9\x93\xcc\xf6\x49\x1c\x25\x5f\x8f\xbc\xd6\x34\x37\x64\xbb\xaf\xae\x83\x8f\x3b\x4d\xa2\x4c\xd4\xef\x1b\xc6\x08\xe9\x37\xe4\xbc\xd3\x7c\x9c\xe2\x06\x02\x91\xf2\xd5\xec\xa8\x75\x74\x3d\x95\x30\xa5\xdc\xdf\x78\xb9\xba\x61\xce\x94\x79\x5e\xc4\xfb\x67\x11\xcb\x5f\x95\x0f\xd1\x2d\x62\x80\x7a\x76\xdb\x8d\xb1\x33\xe8\x48\x50\x9d\xa4\xef\x00\x47\x67\x11\x1f\x9a\x03\xed\x47\x1b\x29\x42\xe3\xf9\xe6\xbd\x76\x2c\xed\x80\xd8\xf1\x9a\xd6\xfb\x56\xa5\xca\xcd\xa4\x2b\x13\xee\x53\xc7\xc3\x37\x75\x0f\xf8\x06\x53\xad\x72\x7f\x78\x40\xdd\x13\xe3\x76\x42\xe5\x51\xc2\x53\x6f\x24\xa4\x6e\x3e\x48\x8a\x86\x1f\xb3\xf9\x88\x0a\x16\x84\x7b\xd8\x9e\xdb\xce\x49\x6b\x52\x62\xfc\x58\x67\xda\x05\x49\x19\x9b\x86\x25\x5d\xb5\x87\xb9\xbd\x80\xa7\xaa\xe0\x19\x54\x88\xc2\xbd\xb5\x96\x36\x7c\x4c\x09\x9a\x61\xa5\xb3\x83\x2e\x0f\x28\x6d\xd2\x6d\x29\x25\x21\x4e\xed\xaa\xbd\x12\x73\xcd\x72\xbd\x97\x14\xff\xea\x88\xa4\x94\x88\x31\xc4\x94\x47\xa2\x0d\x2d\x35\x7d\xec\x94\xe5\x3a\xa9\xd5\x0c\x3a\xe7\x6a\x05\xd4\xf4\x61\xe1\x7a\xd3\x95\x24\x47\xf0\x33\x97\xb4\x73\xfb\x66\xd1\x6c\x70\x5a\x4a\x1a\x6f\x5a\xa4\x29\xec\xf0\x96\x86\xa4\xe2\x4a\x34\x5f\x29\xe9\x7a\x4d\xd9\xc9\xbb\x23\x67\xfc\xee\x88\xa4\x40\x7b\xb7\x84\xbf\x34\x2b\xeb\x9e\xbf\xf5\xe9\x76\x52\x59\xee\x99\xfe\x9e\x82\x71\xee\x55\x45\xcb\xcf\x9e\x7c\xa7\x81\x80\xad\x0e\x84\x2e\x6e\x5a\xf1\x73\xde\x6d\xb8\xbf\xfc\xfe\x1e\x0c\x6f\x6c\x86\xd8\x23\x08\x28\x3f\x72\x0f\x8f\x03\x22\x49\x2b\x71\xe1\x97\x67\x99\x75\xe2\x99\x0d\xd2\xf8\xe6\x60\x7f\xd4\xcc\xf2\x8c\xbd\x2b\x1d\x08\x46\x04\x80\x30\xa2\xa2\x97\x40\x50\xe5\xd4\xb5\xbc\x3c\xe4\x1e\x84\x1e\x3e\x0f\x04\x02\x11\x0e\x6c\xee\x3d\x5f\xe5\x7a\x5a\x21\x6a\x29\x53\xaa\x72\xb3\xd4\x3b\xa6\x49\xc0\xab\xd9\xa8\x05\xf3\xb3\x42\xf8\xc9\x7b\x7a\xd3\xed\xad\xeb\xe7\xfb\xfb\x7a\x4e\xa8\x80\x20\x6f\xf8\x7b\x10\xac\x63\x69\x50\x9f\x09\x7f\x51\xb2\xfe\x38\x66\xf1\x52\x29\x5e\xc8\xe5\x93\x4f\x86\x37\x12\x0a\xd3\x26\x59\x42\x61\x5a\xcd\x30\xed\x05\x00\x31\xf8\x27\x10\x5b\x3e\x6b\xe7\x5d\xc1\x84\x89\x4e\x95\x65\x7e\x7e\x6c\x48\xbf\xed\x77\xf6\x16\xe4\xf9\xe9\xc5\xd9\x1d\xbb\x88\x41\x15\xc3\x01\xe9\xd0\x9c\xb3\x14\xd5\x91\xe5\xf0\xdd\x02\x34\xc8\x8e\x51\xe5\x0c\x9c\xeb\x64\xeb\x74\xd3\x70\x77\xf1\x6a\xf2\xe6\x3a\x71\x07\x1c\xa9\x1b\x97\x82\xa4\xcc\x2c\x3f\x25\x7e\xa6\x62\x5f\x4d\x6b\x4d\xfd\x05\xf9\xd9\xb4\x72\x57\xb4\xf6\xa6\x10\x1e\xc1\xcb\x1f\x1d\x3d\x9a\x25\x74\x67\xde\xe3\xb9\x30\x0d\x74\x76\xf1\xe6\x9c\x3e\x17\xed\xad\x38\x23\xe8\x48\x3f\x56\x3b\x06\x9b\xf3\x9d\x32\x61\xa8\x29\x05\xb0\xbf\x22\xc5\x36\x3e\x5b\xad\xcb\xf6\x9a\xa3\x6f\x2a\xfe\x9c\x1d\x9f\x42\x59\x44\x49\x9e\xec\x68\xd3\x08\xb5\x6d\xec\x7a\xec\x04\x2d\x47\x93\xb0\xeb\x46\x3a\xab\x1d\xce\x1e\xfa\x63\xf5\xb8\x28\xc0\x43\x9e\x5a\x3c\x0b\x6c\xa6\x47\xfc\x5d\x0a\x9d\xb0\x79\x81\xaa\x0f\xe5\x80\xb4\xcc\x7d\x17\x94\x66\x09\x1d\xf7\x87\x76\x5a\xcf\x67\xba\xe8\xf9\xca\x1c\x83\x75\xd7\xa8\x27\xe3\x29\xa5\x25\x12\xc8\xb9\x1c\x2d\xf6\x66\x77\x5a\x75\xf0\x9a\x18\x97\x48\x5e\xef\x1e\x4d\xec\x84\xeb\xdb\x1d\xee\x6e\x8a\x72\xe0\xba\xaa\x70\x3f\xed\x40\xd5\xc2\x7f\x01\x86\x30\x1c\xfe\x16\x6a\x9c\x54\x43\x73\x64\xf1\x62\xc8\x38\x7e\xa0\x41\x0c\xca\x2e\x32\x9a\xf0\xf2\x38\x55\x95\xe7\x72\xc3\x1c\xf0\x5c\x69\x37\xee\x63\xbd\x44\x3b\x6d\x2a\xd4\x60\x60\x56\x15\x6a\x6a\x67\x56\xd8\x62\xb7\x0b\x47\xb7\x7b\x1f\x1e\x1b\xc8\x81\x5c\x0b\xe9\x73\x10\xbf\x6a\x88\x3a\x07\x24\xd7\xbe\x3d\x10\xdf\xfe\x56\x80\xe1\x91\xae\xc9\xcd\xd5\x15\x3f\x95\xc9\x2f\xc6\x68\xa0\x54\xfe\xc9\xd1\xac\x43\xfb\x1a\xcc\x60\xce\x3a\x5d\xe8\x48\x79\x4c\xcf\x35\xc2\xc1\x7b\x24\xb2\x50\x6a\xe0\xed\x1e\x4b\xc9\xfd\x7d\xbf\xaf\x45\xdc\x76\x59\xda\x10\x67\xf9\x46\xc0\x41\xb6\x4d\xd3\xdb\x5b\xb1\x8e\x7d\x7c\x4f\xc9\xc4\x2b\xf4\xeb\x30\xc1\x6c\xc2\x5e\xcc\xe5\xc9\x4a\x57\x06\x06\xf4\x85\xdc\xb9\x1a\x15\xa2\x7e\x8f\x4b\x50\xbf\x0f\x80\x8b\x9b\x96\x31\x5f\xe7\xf8\x25\xc7\x45\xe8\x31\xa2\x1a\xca\xb6\xb0\x01\x4b\xda\x10\x6f\x30\x07\xa1\xe2\x6e\xed\x50\xe3\xfc\xd5\x34\x5e\x30\xd4\x98\x5b\x74\x99\xcc\xea\xf6\x73\x8d\x53\x3a\xd7\x17\x7d\x85\xf3\xed\xf3\x67\x1a\xbe\x54\x30\xcf\x17\x3b\x80\x06\x9c\xe5\x99\x39\x97\xbc\x81\x2b\x88\xe5\xbe\xc1\xaf\x11\x50\xb2\x72\xa3\xa9\x24\x00\xbe\xf3\x88\xf0\x2a\x0a\xf4\x1f\xe5\xad\x84\x55\x99\x00\x5c\x71\x73\x01\x8c\x7e\xe5\x8f\x1f\x51\xd6\x53\xc9\x7a\xf4\x64\x54\x86\xa5\xe9\xed\x7e\x2b\x97\x4c\xab\xbf\x97\xf2\xee\x05\x73\x03\x92\x81\xd6\xce\xd9\x1a\x73\xc2\x19\x77\x15\xed\x26\x4a\x75\x61\xed\x96\x97\x71\xe9\x9e\x9b\xc7\xc4\xe4\xfa\x11\xa4\x67\xff\x63\xaa\x67\xa2\x63\xaa\x17\x1e\x62\xaa\x62\x95\xdf\x42\x94\xda\x75\x1b\xdb\x45\xe7\xe7\x6f\xd2\xad\x1a\x73\xdd\x9b\xfc\xcc\x2e\x3e\xe0\x67\xbb\xf8\x79\x8f\x07\x39\x5f\x6a\x7e\xe2\x4a\xe8\x54\xfb\x49\xd5\xd4\x61\x1d\xdd\xdf\x36\x55\x5f\x7e\xfb\x00\x5e\x50\x0f\xfa\x6a\x79\xf9\xe0\x49\x42\xf5\x2a\x5c\xb9\x73\x64\xaf\x5a\x1c\x98\x9f\xa0\xb9\x63\xc5\xd4\xc6\x45\xe1\x7c\x2f\xef\x80\x29\x97\xa9\xee\xdb\xe9\xd4\x1a\x3d\x8a\xdc\x44\xa0\x46\x9e\x93\xb0\x7e\xf1\xed\xd2\xd6\x65\xc4\xd8\xe2\xb8\xaf\xfa\xde\xaa\x79\x86\xe4\xd8\x41\x79\x8f\xcc\xde\x27\xd3\x8b\x6c\xd6\x3d\x3c\x49\xf6\xba\x96\xfb\xa9\x5a\x04\x23\x09\x9a\xc8\x53\xee\xbf\x57\x3e\x0e\xfb\x3f\xc2\x56\x1b\xc5\xdd\x58\xab\x0c\xd5\xa2\xd8\x11\x6f\x5d\x44\x56\xea\x44\x12\xc2\x81\x20\xf1\x15\xf8\x02\xe4\x7c\xa3\x6e\x04\x12\x83\x01\xd7\x20\x69\x23\x5f\x97\x5d\x1c\x2c\x71\x26\x51\xf4\x4a\x0a\xbd\xe7\xbc\x20\xaa\xf9\xc2\x56\xda\xa2\xcb\x84\x95\xb7\xd8\x07\x93\x2b\x8f\x20\x49\xf3\x4d\x59\xaf\x80\x76\xff\xc9\x3f\x89\x0b\xe6\x9f\x61\x86\x24\xa8\x01\x94\xd7\x7c\x79\xef\x07\x0b\x73\x00\x1d\x36\xa5\x84\xb5\xbd\x97\x5d\xf5\x6b\xe3\xcf\xe4\x53\xfc\x9e\xee\xa1\xc2\x1e\x24\xbf\x9a\x6f\xeb\x48\x9b\xa4\x71\xab\xf7\xea\xe7\x37\xef\x06\x90\x13\xbb\x5b\x73\x26\xa8\x81\xe6\x4c\xec\x7d\xa8\xbc\x41\x44\x55\x12\x83\xb2\x1b\x54\x14\xbb\xc5\xe0\x02\xc8\x3c\x3c\x97\xfe\x82\x0b\xe0\x09\x33\xbe\x5d\xc1\x25\xb0\xef\x38\x89\x79\x5b\xbc\x9e\x3e\x2a\xdd\xe9\x9b\x8d\x11\x3c\xbe\x4f\xa1\xc1\x8f\xb8\xf0\x2c\x4c\xb2\x78\xed\x84\x39\x86\xa7\xce\xf4\x14\x0b\xe4\x78\x86\x2d\x5f\xec\x54\xd1\x45\x0f\x96\xa9\xc9\x9a\x04\xb2\x58\x12\xf6\xcb\xcd\x57\x80\x1e\xcb\xef\x14\x08\xc6\xdc\xeb\x62\x13\xa0\x5e\x6b\xc2\xa8\xd5\xda\xb7\x59\x8b\xaf\x86\x23\x74\xe2\x61\xea\x08\x9d\xdc\xe1\x9a\x3e\xc8\x15\x9a\xaf\xf8\x56\xe6\xca\x29\xf0\x67\x9a\x64\xa0\x06\x12\x6b\x36\x08\xad\x3a\xf4\x93\x36\x57\x15\x04\xaf\x13\xfc\x4a\xb0\x4b\x69\x04\x6f\x6a\x81\x8d\x64\x82\x75\xe5\x52\xc2\x80\x57\x8b\x30\x33\x66\xa3\x7a\x79\x12\xe6\x46\xcc\x59\x83\xc1\x6c\xaa\xab\x32\x18\xbf\x74\x34\x6f\x28\x2d\x01\x5e\xf7\xfd\xae\xb3\x70\x40\x1c\xb9\xef\x3c\x7f\x47\x3f\x06\x83\xf0\x55\xe9\x48\x62\x4d\x61\x66\x2a\x58\x24\xdd\xc4\x48\xc2\xf4\x94\x1b\xb4\x9e\x48\x0e\x5c\x8f\xa4\x21\x25\x5e\xb5\x7a\x85\x2a\xee\xe2\x97\x9a\x34\x98\xd1\xab\x72\x89\x1b\xe1\xcb\x79\x28\xa1\xf3\xfa\xc2\x72\x38\x4e\x02\xd4\x8f\x61\x7e\xab\x3e\x76\x9c\x55\xf4\x93\x9d\x66\x28\xeb\x0f\x82\x2a\xb0\xe6\x0a\xe1\xe7\x5d\xaf\x24\xb6\xc2\x6d\xdd\x17\x9f\xf2\x57\x96\xef\x6b\x60\x1b\x09\x4a\x33\x17\x0f\x5e\x86\x20\x51\xea\x0d\x12\x70\x8e\x17\x7c\x71\x7e\xb5\x91\xa0\x02\x4f\x0e\x16\xe7\x60\x2c\x2d\x1d\x23\xaa\xf1\xb5\x8a\x4e\x62\x6a\x5a\x1b\x97\x99\xae\xcd\x22\x19\x84\x3a\xe4\xf9\xb6\xc7\xee\xc5\xf7\xa4\x20\x61\x64\xd1\xae\xd4\x6c\x79\xdc\xae\xf6\xf2\xaa\xad\xaf\xba\xe2\x80\x34\xa5\x3b\x21\x4e\x2b\x0b\x51\x33\x38\x23\x04\x9c\xdd\x39\x13\x68\x44\x0f\x57\xc9\x7a\xa2\x04\xbc\xdf\x5d\x81\x13\x78\xc3\x47\x9f\xc9\x89\x22\x08\xe5\x14\x4b\x20\x8a\xd3\x9d\x05\xd4\x3c\x2b\xe0\x34\xd2\x31\xb0\x97\x5d\x02\x0a\xb1\xcc\x32\x89\x42\x0c\xa5\x8c\x21\xc3\x80\x31\x34\xb7\xe5\xd9\xa2\x95\x20\xac\xfc\xe7\x82\x7d\x46\x43\x8e\x3f\x9d\x2c\xad\x23\xda\xb7\xdc\x4b\xc4\x06\xfd\x8c\xf0\xf1\x01\x63\xd9\xa5\x96\x31\xf1\xe8\x71\x0a\x50\x7e\x2a\x17\x7b\xe7\x28\xf3\xb3\xfc\x56\xcb\x74\xac\xa6\xb1\xab\x4d\xfb\x1a\x0f\x5e\x9f\x49\x8a\x83\x99\x7a\x15\xcb\xba\x0e\x09\xc8\x24\xa1\x83\xed\x87\xe6\x6d\xbe\x33\x73\xfd\x36\x8f\x6a\x7d\x5c\x66\x23\xb7\xce\x07\xde\xe0\x06\x8b\x60\x20\x4b\x04\x7f\x98\x87\x60\x10\x88\x0a\x22\x90\x1a\x18\x22\xc0\xab\x4f\xb3\x32\x63\x6c\xf2\x0b\xad\x96\xec\x14\xc8\x7e\x0c\x20\xaa\x78\xdc\xfc\x78\x13\x4b\xd2\x90\x3d\xc4\x73\xfd\x99\xc0\x54\xb5\xc8\xa4\x92\x25\xe6\xd5\xd7\x92\xa6\x55\x3a\x17\x77\xd3\xeb\x84\xc7\xd3\x83\xf2\xe8\x5c\x53\x86\x90\xd6\x32\x80\xd8\x09\x6d\x38\x1b\x5e\xe4\xf1\x69\x88\x2a\xed\xee\x21\xb8\x31\x0d\x97\xd1\xb2\x9a\x1d\x73\x10\xbb\xd9\xa8\xb7\x41\x39\xa3\x2b\x62\x0e\xfb\xf7\x39\x7e\x66\xbf\xc9\xdc\x7f\xb0\x8b\xe7\x6a\x65\x34\xe3\xbe\x73\xa8\x4b\xe2\x60\xc9\xe3\xd8\x59\x5b\xd6\xee\xc9\x06\xf9\x95\x14\x4a\x1e\xc7\xfc\x26\x3e\x82\xc9\x97\xb2\x0e\x3e\x2e\x1e\xde\x6b\x46\xad\x7c\xcb\x44\x2c\xc9\x83\x87\x44\xbb\x76\xf1\xf5\xb0\x2c\x5b\x1e\x53\x30\xce\xfc\x37\xab\x58\xc6\x68\x2f\x5b\xff\xae\xaf\x49\xcb\x6f\x37\xbe\xaf\xc5\x3c\xf6\xb5\x8c\xf4\x4f\xee\xb9\xe7\xf4\x29\x6e\x7b\xd4\xfa\x0b\x2a\x18\xbc\xc0\x1d\x9f\xb4\xfe\x92\x4e\xc8\x30\x86\x4f\xb4\xda\x9a\x25\xcf\x1b\xfa\x0a\xf5\xe5\xd5\x03\x83\x1a\x55\x27\x63\xfb\xe2\xda\x74\x84\xc3\xea\xc2\x40\xbf\xbc\x7b\x83\x07\xc9\xdd\x8b\xed\x4d\xfd\x25\xf3\x36\xf9\x0c\xe5\xef\xfa\x5c\xe6\x17\x77\x2b\x04\x3b\x57\x3c\xb5\xdf\x83\x5d\x23\xb8\x3f\x8d\xf8\x71\x23\x21\x7e\x20\x47\xec\x88\xf8\x4e\x3f\x7c\x37\x80\xed\xfe\xed\xf1\xf1\x8e\x18\xec\x21\x7b\x8c\x58\xdf\x8d\x05\xfd\x95\xe4\xaa\xd3\x67\xff\x44\x19\xfc\x30\x3c\x66\x4b\xf4\xa0\x6f\x9a\xcd\x87\xac\x58\xf1\x90\xe8\xff\x8c\x77\xb0\x5e\xcd\xc5\x66\xa6\xcf\x4c\x7e\xf2\xd7\x37\x5c\xf3\x37\x1a\xcc\x97\x1f\x48\xf8\x66\x8b\x84\x6d\x55\xf3\x19\xc6\x09\x6b\x24\xac\x39\x3e\x1e\xff\x5c\xe2\xe7\xb2\xb8\xc5\xaf\x1b\xfc\xba\x29\xcb\x8f\x52\x18\xc4\x99\x8a\x37\x35\x09\x49\x9c\x72\x8b\xdf\xb7\xfc\x4c\x23\x9e\x5f\x58\x20\x68\x30\x5e\xc3\xb4\x1f\x78\xf3\xb2\x86\x25\x0d\xe9\xf6\x83\xd2\xb9\x55\x4d\x95\xcf\x87\xec\x1e\x79\xab\x49\xf8\xe2\x47\xda\xa8\x79\x4d\x92\xcf\x87\x38\x53\xfb\xb5\x55\x28\xdf\x94\xca\xfd\xd0\x44\xf9\xa4\xb4\xb6\xb8\x99\xc7\x7e\xe9\x17\x52\x63\xaf\xf4\x8b\xa6\x77\xd9\x36\x3b\x7e\x10\xe7\x43\x66\x0f\xd5\xc5\x17\xea\x9e\x53\x9e\x79\x28\x73\x4c\x2b\xd6\xda\xdb\x43\xd9\xfb\x1d\x07\x5b\x99\x65\xf6\x30\x65\x55\xef\xf6\x41\x11\x1b\x1f\x45\x15\xb0\x18\x32\x58\xee\x67\x12\xd4\x2c\x83\x9a\x97\xe3\x68\x5d\x82\x61\x82\x82\x97\x35\x2d\xf9\xe3\x7f\xfc\x03\xf0\xf4\xfd\xcf\x7f\xe6\xa7\xcf\x9e\xe4\xe5\x27\x8e\xde\xdf\xe5\x5b\x75\x42\x32\x30\xfa\xfd\x22\x81\xe4\xd0\x30\xb8\x36\xa7\x5e\x2f\x72\x6d\x0e\xcd\x67\xff\x27\x00\x00\xff\xff\x67\x1b\x06\x20\x25\xce\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4361,7 +4361,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 52579, mode: os.FileMode(420), modTime: time.Unix(1470959628, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 52773, mode: os.FileMode(420), modTime: time.Unix(1471166949, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/css/gogs.css b/public/css/gogs.css index 487001adc..1eb6472f0 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2064,6 +2064,14 @@ footer .ui.language .menu { margin-left: 5px; margin-top: -3px; } +.repository.settings.webhook .events .column { + padding-bottom: 0; +} +.repository.settings.webhook .events .help { + font-size: 13px; + margin-left: 26px; + padding-top: 0; +} .user-cards .list { padding: 0; } diff --git a/public/less/_repository.less b/public/less/_repository.less index 0eea2d778..6a378ee39 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -1090,6 +1090,19 @@ } } } + + &.webhook { + .events { + .column { + padding-bottom: 0; + } + .help { + font-size: 13px; + margin-left: 26px; + padding-top: 0; + } + } + } } } // End of .repository diff --git a/routers/api/v1/convert/convert.go b/routers/api/v1/convert/convert.go index cda1d86b4..c3ca9fd5d 100644 --- a/routers/api/v1/convert/convert.go +++ b/routers/api/v1/convert/convert.go @@ -13,7 +13,6 @@ import ( api "github.com/gogits/go-gogs-client" "github.com/gogits/gogs/models" - "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/setting" ) @@ -48,16 +47,16 @@ func ToRepository(owner *models.User, repo *models.Repository, permission api.Pe Description: repo.Description, Private: repo.IsPrivate, Fork: repo.IsFork, - HtmlUrl: setting.AppUrl + owner.Name + "/" + repo.Name, - CloneUrl: cl.HTTPS, - SshUrl: cl.SSH, + HTMLURL: setting.AppUrl + owner.Name + "/" + repo.Name, + CloneURL: cl.HTTPS, + SSHURL: cl.SSH, OpenIssues: repo.NumOpenIssues, Stars: repo.NumStars, Forks: repo.NumForks, Watchers: repo.NumWatches, Created: repo.Created, Updated: repo.Updated, - Permissions: permission, + Permissions: &permission, } } @@ -183,7 +182,7 @@ func ToIssue(issue *models.Issue) *api.Issue { ID: issue.ID, Index: issue.Index, State: issue.State(), - Title: issue.Name, + Title: issue.Title, Body: issue.Content, User: ToUser(issue.Poster), Labels: apiLabels, @@ -194,15 +193,11 @@ func ToIssue(issue *models.Issue) *api.Issue { Updated: issue.Updated, } if issue.IsPull { - if err := issue.GetPullRequest(); err != nil { - log.Error(4, "GetPullRequest", err) - } else { - apiIssue.PullRequest = &api.PullRequestMeta{ - HasMerged: issue.PullRequest.HasMerged, - } - if issue.PullRequest.HasMerged { - apiIssue.PullRequest.Merged = &issue.PullRequest.Merged - } + apiIssue.PullRequest = &api.PullRequestMeta{ + HasMerged: issue.PullRequest.HasMerged, + } + if issue.PullRequest.HasMerged { + apiIssue.PullRequest.Merged = &issue.PullRequest.Merged } } diff --git a/routers/api/v1/repo/issue.go b/routers/api/v1/repo/issue.go index b105b6816..90dc6e78e 100644 --- a/routers/api/v1/repo/issue.go +++ b/routers/api/v1/repo/issue.go @@ -52,7 +52,7 @@ func GetIssue(ctx *context.APIContext) { func CreateIssue(ctx *context.APIContext, form api.CreateIssueOption) { issue := &models.Issue{ RepoID: ctx.Repo.Repository.ID, - Name: form.Title, + Title: form.Title, PosterID: ctx.User.ID, Poster: ctx.User, Content: form.Body, @@ -115,7 +115,7 @@ func EditIssue(ctx *context.APIContext, form api.EditIssueOption) { } if len(form.Title) > 0 { - issue.Name = form.Title + issue.Title = form.Title } if form.Body != nil { issue.Content = *form.Body diff --git a/routers/api/v1/repo/issue_label.go b/routers/api/v1/repo/issue_label.go index e7cc63cde..b471d4a08 100644 --- a/routers/api/v1/repo/issue_label.go +++ b/routers/api/v1/repo/issue_label.go @@ -52,7 +52,7 @@ func AddIssueLabels(ctx *context.APIContext, form api.IssueLabelsOption) { return } - if err = issue.AddLabels(labels); err != nil { + if err = issue.AddLabels(ctx.User, labels); err != nil { ctx.Error(500, "AddLabels", err) return } @@ -160,7 +160,7 @@ func ClearIssueLabels(ctx *context.APIContext) { return } - if err := issue.ClearLabels(); err != nil { + if err := issue.ClearLabels(ctx.User); err != nil { ctx.Error(500, "ClearLabels", err) return } diff --git a/routers/repo/http.go b/routers/repo/http.go index d6abc7745..0615143e3 100644 --- a/routers/repo/http.go +++ b/routers/repo/http.go @@ -206,7 +206,7 @@ func HTTP(ctx *context.Context) { RepoName: reponame, }); err == nil { go models.HookQueue.Add(repo.ID) - go models.AddTestPullRequestTask(repo.ID, strings.TrimPrefix(refName, "refs/heads/")) + go models.AddTestPullRequestTask(authUser, repo.ID, strings.TrimPrefix(refName, "refs/heads/"), true) } } diff --git a/routers/repo/issue.go b/routers/repo/issue.go index c422b031c..f3c0f19a8 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -424,7 +424,7 @@ func NewIssuePost(ctx *context.Context, form auth.CreateIssueForm) { issue := &models.Issue{ RepoID: repo.ID, - Name: form.Title, + Title: form.Title, PosterID: ctx.User.ID, Poster: ctx.User, MilestoneID: milestoneID, @@ -500,7 +500,7 @@ func ViewIssue(ctx *context.Context) { } return } - ctx.Data["Title"] = issue.Name + ctx.Data["Title"] = issue.Title // Make sure type and URL matches. if ctx.Params(":type") == "issues" && issue.IsPull { @@ -517,12 +517,6 @@ func ViewIssue(ctx *context.Context) { return } ctx.Data["PageIsPullList"] = true - - if err = issue.GetPullRequest(); err != nil { - ctx.Handle(500, "GetPullRequest", err) - return - } - ctx.Data["PageIsPullConversation"] = true } else { MustEnableIssues(ctx) @@ -668,19 +662,19 @@ func UpdateIssueTitle(ctx *context.Context) { return } - issue.Name = ctx.QueryTrim("title") - if len(issue.Name) == 0 { + title := ctx.QueryTrim("title") + if len(title) == 0 { ctx.Error(204) return } - if err := models.UpdateIssue(issue); err != nil { - ctx.Handle(500, "UpdateIssue", err) + if err := issue.ChangeTitle(ctx.User, title); err != nil { + ctx.Handle(500, "ChangeTitle", err) return } ctx.JSON(200, map[string]interface{}{ - "title": issue.Name, + "title": issue.Title, }) } @@ -695,9 +689,9 @@ func UpdateIssueContent(ctx *context.Context) { return } - issue.Content = ctx.Query("content") - if err := models.UpdateIssue(issue); err != nil { - ctx.Handle(500, "UpdateIssue", err) + content := ctx.Query("content") + if err := issue.ChangeContent(ctx.User, content); err != nil { + ctx.Handle(500, "ChangeContent", err) return } @@ -713,7 +707,7 @@ func UpdateIssueLabel(ctx *context.Context) { } if ctx.Query("action") == "clear" { - if err := issue.ClearLabels(); err != nil { + if err := issue.ClearLabels(ctx.User); err != nil { ctx.Handle(500, "ClearLabels", err) return } @@ -730,12 +724,12 @@ func UpdateIssueLabel(ctx *context.Context) { } if isAttach && !issue.HasLabel(label.ID) { - if err = issue.AddLabel(label); err != nil { + if err = issue.AddLabel(ctx.User, label); err != nil { ctx.Handle(500, "AddLabel", err) return } } else if !isAttach && issue.HasLabel(label.ID) { - if err = issue.RemoveLabel(label); err != nil { + if err = issue.RemoveLabel(ctx.User, label); err != nil { ctx.Handle(500, "RemoveLabel", err) return } @@ -780,18 +774,16 @@ func UpdateIssueAssignee(ctx *context.Context) { return } - aid := ctx.QueryInt64("id") - if issue.AssigneeID == aid { + assigneeID := ctx.QueryInt64("id") + if issue.AssigneeID == assigneeID { ctx.JSON(200, map[string]interface{}{ "ok": true, }) return } - // Not check for invalid assignee id and give responsibility to owners. - issue.AssigneeID = aid - if err := models.UpdateIssueUserByAssignee(issue); err != nil { - ctx.Handle(500, "UpdateIssueUserByAssignee", err) + if err := issue.ChangeAssignee(ctx.User, assigneeID); err != nil { + ctx.Handle(500, "ChangeAssignee", err) return } @@ -806,12 +798,6 @@ func NewComment(ctx *context.Context, form auth.CreateCommentForm) { ctx.HandleError("GetIssueByIndex", models.IsErrIssueNotExist, err, 404) return } - if issue.IsPull { - if err = issue.GetPullRequest(); err != nil { - ctx.Handle(500, "GetPullRequest", err) - return - } - } var attachments []string if setting.AttachmentEnabled { diff --git a/routers/repo/pull.go b/routers/repo/pull.go index 77ee4bd34..822d77c71 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -148,7 +148,7 @@ func checkPullInfo(ctx *context.Context) *models.Issue { } return nil } - ctx.Data["Title"] = issue.Name + ctx.Data["Title"] = issue.Title ctx.Data["Issue"] = issue if !issue.IsPull { @@ -156,10 +156,7 @@ func checkPullInfo(ctx *context.Context) *models.Issue { return nil } - if err = issue.GetPullRequest(); err != nil { - ctx.Handle(500, "GetPullRequest", err) - return nil - } else if err = issue.GetHeadRepo(); err != nil { + if err = issue.GetHeadRepo(); err != nil { ctx.Handle(500, "GetHeadRepo", err) return nil } @@ -177,17 +174,10 @@ func checkPullInfo(ctx *context.Context) *models.Issue { func PrepareMergedViewPullInfo(ctx *context.Context, pull *models.Issue) { ctx.Data["HasMerged"] = true - - var err error - - if err = pull.GetMerger(); err != nil { - ctx.Handle(500, "GetMerger", err) - return - } - ctx.Data["HeadTarget"] = pull.HeadUserName + "/" + pull.HeadBranch ctx.Data["BaseTarget"] = ctx.Repo.Owner.Name + "/" + pull.BaseBranch + var err error ctx.Data["NumCommits"], err = ctx.Repo.GitRepo.CommitsCountBetween(pull.MergeBase, pull.MergedCommitID) if err != nil { ctx.Handle(500, "Repo.GitRepo.CommitsCountBetween", err) @@ -252,6 +242,7 @@ func PrepareViewPullInfo(ctx *context.Context, pull *models.Issue) *git.PullRequ } func ViewPullCommits(ctx *context.Context) { + ctx.Data["PageIsPullList"] = true ctx.Data["PageIsPullCommits"] = true pull := checkPullInfo(ctx) @@ -302,6 +293,7 @@ func ViewPullCommits(ctx *context.Context) { } func ViewPullFiles(ctx *context.Context) { + ctx.Data["PageIsPullList"] = true ctx.Data["PageIsPullFiles"] = true pull := checkPullInfo(ctx) @@ -679,7 +671,7 @@ func CompareAndPullRequestPost(ctx *context.Context, form auth.CreateIssueForm) pullIssue := &models.Issue{ RepoID: repo.ID, Index: repo.NextIssueIndex(), - Name: form.Title, + Title: form.Title, PosterID: ctx.User.ID, Poster: ctx.User, MilestoneID: milestoneID, @@ -711,11 +703,12 @@ func CompareAndPullRequestPost(ctx *context.Context, form auth.CreateIssueForm) } func TriggerTask(ctx *context.Context) { + pusherID := ctx.QueryInt64("pusher") branch := ctx.Query("branch") secret := ctx.Query("secret") - if len(branch) == 0 || len(secret) == 0 { + if len(branch) == 0 || len(secret) == 0 || pusherID <= 0 { ctx.Error(404) - log.Trace("TriggerTask: branch or secret is empty") + log.Trace("TriggerTask: branch or secret is empty, or pusher ID is not valid") return } owner, repo := parseOwnerAndRepo(ctx) @@ -728,9 +721,19 @@ func TriggerTask(ctx *context.Context) { return } - log.Trace("TriggerTask [%d].(new request): %s", repo.ID, branch) + pusher, err := models.GetUserByID(pusherID) + if err != nil { + if models.IsErrUserNotExist(err) { + ctx.Error(404) + } else { + ctx.Handle(500, "GetUserByID", err) + } + return + } + + log.Trace("TriggerTask '%s/%s' by %s", repo.Name, branch, pusher.Name) go models.HookQueue.Add(repo.ID) - go models.AddTestPullRequestTask(repo.ID, branch) + go models.AddTestPullRequestTask(pusher, repo.ID, branch, true) ctx.Status(202) } diff --git a/routers/repo/release.go b/routers/repo/release.go index a00bd944c..d612a1cec 100644 --- a/routers/repo/release.go +++ b/routers/repo/release.go @@ -77,7 +77,7 @@ func Releases(ctx *context.Context) { r.Publisher, err = models.GetUserByID(r.PublisherID) if err != nil { if models.IsErrUserNotExist(err) { - r.Publisher = models.NewFakeUser() + r.Publisher = models.NewGhostUser() } else { ctx.Handle(500, "GetUserByID", err) return @@ -126,7 +126,7 @@ func Releases(ctx *context.Context) { r.Publisher, err = models.GetUserByID(r.PublisherID) if err != nil { if models.IsErrUserNotExist(err) { - r.Publisher = models.NewFakeUser() + r.Publisher = models.NewGhostUser() } else { ctx.Handle(500, "GetUserByID", err) return diff --git a/routers/repo/webhook.go b/routers/repo/webhook.go index 8b0153e68..9b4c33e4b 100644 --- a/routers/repo/webhook.go +++ b/routers/repo/webhook.go @@ -108,8 +108,9 @@ func ParseHookEvent(form auth.WebhookForm) *models.HookEvent { SendEverything: form.SendEverything(), ChooseEvents: form.ChooseEvents(), HookEvents: models.HookEvents{ - Create: form.Create, - Push: form.Push, + Create: form.Create, + Push: form.Push, + PullRequest: form.PullRequest, }, } } diff --git a/templates/.VERSION b/templates/.VERSION index 56e398c5f..5e537303e 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.9.75.0813 \ No newline at end of file +0.9.76.0814 \ No newline at end of file diff --git a/templates/repo/issue/list.tmpl b/templates/repo/issue/list.tmpl index f4208cd86..d00c9aea2 100644 --- a/templates/repo/issue/list.tmpl +++ b/templates/repo/issue/list.tmpl @@ -102,7 +102,7 @@ {{ $timeStr:= TimeSince .Created $.Lang }}
  • #{{.Index}}
    - {{.Name}} + {{.Title}} {{range .Labels}} {{.Name}} diff --git a/templates/repo/issue/view_title.tmpl b/templates/repo/issue/view_title.tmpl index 28d29d9b3..e7c50d1d6 100644 --- a/templates/repo/issue/view_title.tmpl +++ b/templates/repo/issue/view_title.tmpl @@ -1,9 +1,9 @@

    - #{{.Issue.Index}} {{.Issue.Name}} + #{{.Issue.Index}} {{.Issue.Title}}

    {{if .IsIssueOwner}} diff --git a/templates/repo/settings/hook_settings.tmpl b/templates/repo/settings/hook_settings.tmpl index 76d3ac293..e0c687dba 100644 --- a/templates/repo/settings/hook_settings.tmpl +++ b/templates/repo/settings/hook_settings.tmpl @@ -42,6 +42,16 @@
    + +
    +
    +
    + + + {{.i18n.Tr "repo.settings.event_pull_request_desc"}} +
    +
    +