From 0fbb8c8826771e92e890fb1c72b356d3e62c7b01 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 24 Oct 2015 03:36:47 -0400 Subject: [PATCH] New push to head repo of head branch: regenerate patch and retest apply --- cmd/serve.go | 44 ++-- cmd/update.go | 8 +- cmd/web.go | 4 +- conf/locale/locale_en-US.ini | 1 + gogs.go | 2 +- models/issue.go | 13 +- models/pull.go | 345 ++++++++++++++++++++----- models/repo.go | 30 ++- models/update.go | 23 +- models/webhook.go | 75 +++--- modules/bindata/bindata.go | 4 +- modules/setting/setting.go | 4 + public/css/gogs.css | 5 +- public/less/_base.less | 3 + routers/install.go | 1 + routers/repo/http.go | 5 +- routers/repo/pull.go | 33 +++ routers/repo/setting.go | 14 +- templates/.VERSION | 2 +- templates/repo/issue/view_content.tmpl | 13 +- 20 files changed, 475 insertions(+), 154 deletions(-) diff --git a/cmd/serve.go b/cmd/serve.go index 34ebe9fbd1..5f0362744b 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -200,32 +200,34 @@ func runServ(c *cli.Context) { } if requestedMode == models.ACCESS_MODE_WRITE { - tasks, err := models.GetUpdateTasksByUuid(uuid) + task, err := models.GetUpdateTaskByUUID(uuid) if err != nil { - log.GitLogger.Fatal(2, "GetUpdateTasksByUuid: %v", err) + log.GitLogger.Fatal(2, "GetUpdateTaskByUUID: %v", err) } - for _, task := range tasks { - err = models.Update(task.RefName, task.OldCommitId, task.NewCommitId, - user.Name, repoUserName, repoName, user.Id) - if err != nil { - log.GitLogger.Error(2, "Failed to update: %v", err) + if err = models.Update(task.RefName, task.OldCommitID, task.NewCommitID, + user.Name, repoUserName, repoName, user.Id); err != nil { + log.GitLogger.Error(2, "Update: %v", err) + } + + if err = models.DeleteUpdateTaskByUUID(uuid); err != nil { + log.GitLogger.Fatal(2, "DeleteUpdateTaskByUUID: %v", err) + } + + // Ask for running deliver hook and test pull request tasks. + reqURL := setting.AppUrl + repoUserName + "/" + repoName + "/tasks/trigger?branch=" + + strings.TrimPrefix(task.RefName, "refs/heads/") + log.GitLogger.Trace("Trigger task: %s", reqURL) + + resp, err := httplib.Head(reqURL).Response() + if err == nil { + resp.Body.Close() + if resp.StatusCode/100 != 2 { + log.GitLogger.Error(2, "Fail to trigger task: not 2xx response code") } + } else { + log.GitLogger.Error(2, "Fail to trigger task: %v", err) } - - if err = models.DelUpdateTasksByUuid(uuid); err != nil { - log.GitLogger.Fatal(2, "DelUpdateTasksByUuid: %v", err) - } - } - - // Send deliver hook request. - reqURL := setting.AppUrl + repoUserName + "/" + repoName + "/hooks/trigger" - resp, err := httplib.Head(reqURL).Response() - if err == nil { - resp.Body.Close() - log.GitLogger.Trace("Trigger hook: %s", reqURL) - } else { - log.GitLogger.Error(2, "Fail to trigger hook: %v", err) } // Update user key activity. diff --git a/cmd/update.go b/cmd/update.go index c9eaeccf7b..64093b8177 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -45,13 +45,13 @@ func runUpdate(c *cli.Context) { uuid := os.Getenv("uuid") task := models.UpdateTask{ - Uuid: uuid, + UUID: uuid, RefName: args[0], - OldCommitId: args[1], - NewCommitId: args[2], + OldCommitID: args[1], + NewCommitID: args[2], } if err := models.AddUpdateTask(&task); err != nil { - log.GitLogger.Fatal(2, err.Error()) + log.GitLogger.Fatal(2, "AddUpdateTask: %v", err) } } diff --git a/cmd/web.go b/cmd/web.go index 2397653534..7e18b938c2 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -545,8 +545,8 @@ func runWeb(ctx *cli.Context) { }, ignSignIn, middleware.RepoAssignment(true, true), middleware.RepoRef()) m.Group("/:reponame", func() { - m.Any("/*", ignSignInAndCsrf, repo.Http) - m.Head("/hooks/trigger", repo.TriggerHook) + m.Any("/*", ignSignInAndCsrf, repo.HTTP) + m.Head("/tasks/trigger", repo.TriggerTask) }) }) // ***** END: Repository ***** diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 29d0b27882..1ad0b668f3 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -498,6 +498,7 @@ pulls.reopen_to_merge = Please reopen this pull request to perform merge operati pulls.merged = Merged pulls.has_merged = This pull request has been merged successfully! pulls.data_broken = Data of this pull request has been broken due to deletion of fork information. +pulls.is_checking = The conflit checking is still in progress, please refresh page in few moments. pulls.can_auto_merge_desc = You can perform auto-merge operation on this pull request. pulls.cannot_auto_merge_desc = You can't perform auto-merge operation because there are conflicts between commits. pulls.cannot_auto_merge_helper = Please use command line tool to solve it. diff --git a/gogs.go b/gogs.go index 60a5b24899..705b360856 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.16.1023 Beta" +const APP_VER = "0.6.17.1024 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/issue.go b/models/issue.go index 0b14c5838a..1cefa42f5a 100644 --- a/models/issue.go +++ b/models/issue.go @@ -813,23 +813,22 @@ func GetRepoIssueStats(repoID, uid int64, filterMode int, isPull bool) (numOpen return numOpen, numClosed } -// updateIssue updates all fields of given issue. func updateIssue(e Engine, issue *Issue) error { _, err := e.Id(issue.ID).AllCols().Update(issue) return err } -// updateIssueCols update specific fields of given issue. +// UpdateIssue updates all fields of given issue. +func UpdateIssue(issue *Issue) error { + return updateIssue(x, issue) +} + +// updateIssueCols updates specific fields of given issue. func updateIssueCols(e Engine, issue *Issue, cols ...string) error { _, err := e.Id(issue.ID).Cols(cols...).Update(issue) return err } -// UpdateIssue updates information of issue. -func UpdateIssue(issue *Issue) error { - return updateIssue(x, issue) -} - 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 diff --git a/models/pull.go b/models/pull.go index 142739b77f..d8bff01998 100644 --- a/models/pull.go +++ b/models/pull.go @@ -6,7 +6,6 @@ package models import ( "fmt" - "io/ioutil" "os" "path" "strings" @@ -18,6 +17,7 @@ import ( "github.com/gogits/gogs/modules/git" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/process" + "github.com/gogits/gogs/modules/setting" ) type PullRequestType int @@ -45,45 +45,25 @@ type PullRequest struct { Issue *Issue `xorm:"-"` Index int64 - HeadRepoID int64 - HeadRepo *Repository `xorm:"-"` - BaseRepoID int64 - HeadUserName string - HeadBranch string - BaseBranch string - MergeBase string `xorm:"VARCHAR(40)"` - MergedCommitID string `xorm:"VARCHAR(40)"` + HeadRepoID int64 + HeadRepo *Repository `xorm:"-"` + BaseRepoID int64 + BaseRepo *Repository `xorm:"-"` + HeadUserName string + HeadBranch string + BaseBranch string + MergeBase string `xorm:"VARCHAR(40)"` - HasMerged bool - Merged time.Time - MergerID int64 - Merger *User `xorm:"-"` + HasMerged bool + MergedCommitID string `xorm:"VARCHAR(40)"` + Merged time.Time + MergerID int64 + Merger *User `xorm:"-"` } // Note: don't try to get Pull because will end up recursive querying. func (pr *PullRequest) AfterSet(colName string, _ xorm.Cell) { - var err error switch colName { - case "head_repo_id": - // FIXME: shouldn't show error if it's known that head repository has been removed. - pr.HeadRepo, err = GetRepositoryByID(pr.HeadRepoID) - if err != nil { - log.Error(3, "GetRepositoryByID[%d]: %v", pr.ID, err) - } - case "merger_id": - if !pr.HasMerged { - return - } - - pr.Merger, err = GetUserByID(pr.MergerID) - if err != nil { - if IsErrUserNotExist(err) { - pr.MergerID = -1 - pr.Merger = NewFakeUser() - } else { - log.Error(3, "GetUserByID[%d]: %v", pr.ID, err) - } - } case "merged": if !pr.HasMerged { return @@ -93,6 +73,46 @@ func (pr *PullRequest) AfterSet(colName string, _ xorm.Cell) { } } +func (pr *PullRequest) GetHeadRepo() (err error) { + pr.HeadRepo, err = GetRepositoryByID(pr.HeadRepoID) + if err != nil && !IsErrRepoNotExist(err) { + return fmt.Errorf("GetRepositoryByID (head): %v", err) + } + return nil +} + +func (pr *PullRequest) GetBaseRepo() (err error) { + if pr.BaseRepo != nil { + return nil + } + + pr.BaseRepo, err = GetRepositoryByID(pr.BaseRepoID) + if err != nil { + return fmt.Errorf("GetRepositoryByID (base): %v", err) + } + 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 +} + // CanAutoMerge returns true if this pull request can be merged automatically. func (pr *PullRequest) CanAutoMerge() bool { return pr.Status == PULL_REQUEST_STATUS_MERGEABLE @@ -107,7 +127,11 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error } if err = pr.Issue.changeStatus(sess, doer, true); err != nil { - return fmt.Errorf("Pull.changeStatus: %v", err) + return fmt.Errorf("Issue.changeStatus: %v", err) + } + + if err = pr.GetHeadRepo(); err != nil { + return fmt.Errorf("GetHeadRepo: %v", err) } headRepoPath := RepoPath(pr.HeadUserName, pr.HeadRepo.Name) @@ -150,11 +174,26 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error return fmt.Errorf("git checkout: %s", stderr) } - // Pull commits. + // Add head repo remote. if _, stderr, err = process.ExecDir(-1, tmpBasePath, - fmt.Sprintf("PullRequest.Merge(git pull): %s", tmpBasePath), - "git", "pull", headRepoPath, pr.HeadBranch); err != nil { - return fmt.Errorf("git pull[%s / %s -> %s]: %s", headRepoPath, pr.HeadBranch, tmpBasePath, stderr) + fmt.Sprintf("PullRequest.Merge(git remote add): %s", tmpBasePath), + "git", "remote", "add", "head_repo", headRepoPath); err != nil { + return fmt.Errorf("git remote add[%s -> %s]: %s", headRepoPath, tmpBasePath, stderr) + } + + // Merge commits. + if _, stderr, err = process.ExecDir(-1, tmpBasePath, + fmt.Sprintf("PullRequest.Merge(git fetch): %s", tmpBasePath), + "git", "fetch", "head_repo"); err != nil { + return fmt.Errorf("git fetch[%s -> %s]: %s", headRepoPath, tmpBasePath, stderr) + } + + if _, stderr, err = process.ExecDir(-1, tmpBasePath, + fmt.Sprintf("PullRequest.Merge(git merge): %s", tmpBasePath), + "git", "merge", "--no-ff", "-m", + fmt.Sprintf("Merge branch '%s' of %s/%s into %s", pr.HeadBranch, pr.HeadUserName, pr.HeadRepo.Name, pr.BaseBranch), + "head_repo/"+pr.HeadBranch); err != nil { + return fmt.Errorf("git merge[%s]: %s", tmpBasePath, stderr) } // Push back to upstream. @@ -167,6 +206,41 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error return sess.Commit() } +// testPatch checks if patch can be merged to base repository without conflit. +func (pr *PullRequest) testPatch() (err error) { + if pr.BaseRepo == nil { + pr.BaseRepo, err = GetRepositoryByID(pr.BaseRepoID) + if err != nil { + return fmt.Errorf("GetRepositoryByID: %v", err) + } + } + + patchPath, err := pr.BaseRepo.PatchPath(pr.Index) + if err != nil { + return fmt.Errorf("BaseRepo.PatchPath: %v", err) + } + + log.Trace("PullRequest[%d].testPatch(patchPath): %s", pr.ID, patchPath) + + if err := pr.BaseRepo.UpdateLocalCopy(); err != nil { + return fmt.Errorf("UpdateLocalCopy: %v", err) + } + + pr.Status = PULL_REQUEST_STATUS_CHECKING + _, stderr, err := process.ExecDir(-1, pr.BaseRepo.LocalCopyPath(), + fmt.Sprintf("testPatch(git apply --check): %d", pr.BaseRepo.ID), + "git", "apply", "--check", patchPath) + if err != nil { + if strings.Contains(stderr, "patch does not apply") { + log.Trace("PullRequest[%d].testPatch(apply): has conflit", pr.ID) + pr.Status = PULL_REQUEST_STATUS_CONFLICT + } else { + return fmt.Errorf("git apply --check: %v - %s", err, stderr) + } + } + return nil +} + // NewPullRequest creates new pull request with labels for repository. func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []string, pr *PullRequest, patch []byte) (err error) { sess := x.NewSession() @@ -195,32 +269,16 @@ func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []str return err } - // Test apply patch. - if err = repo.UpdateLocalCopy(); err != nil { - return fmt.Errorf("UpdateLocalCopy: %v", err) + if err = repo.SavePatch(pr.Index, patch); err != nil { + return fmt.Errorf("SavePatch: %v", err) } - repoPath, err := repo.RepoPath() - if err != nil { - return fmt.Errorf("RepoPath: %v", err) + pr.BaseRepo = repo + if err = pr.testPatch(); err != nil { + return fmt.Errorf("testPatch: %v", err) } - patchPath := path.Join(repoPath, "pulls", com.ToStr(pull.ID)+".patch") - - os.MkdirAll(path.Dir(patchPath), os.ModePerm) - if err = ioutil.WriteFile(patchPath, patch, 0644); err != nil { - return fmt.Errorf("save patch: %v", err) - } - - pr.Status = PULL_REQUEST_STATUS_MERGEABLE - _, stderr, err := process.ExecDir(-1, repo.LocalCopyPath(), - fmt.Sprintf("NewPullRequest(git apply --check): %d", repo.ID), - "git", "apply", "--check", patchPath) - if err != nil { - if strings.Contains(stderr, "patch does not apply") { - pr.Status = PULL_REQUEST_STATUS_CONFLICT - } else { - return fmt.Errorf("git apply --check: %v - %s", err, stderr) - } + if pr.Status == PULL_REQUEST_STATUS_CHECKING { + pr.Status = PULL_REQUEST_STATUS_MERGEABLE } pr.IssueID = pull.ID @@ -236,7 +294,6 @@ func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []str // by given head/base and repo/branch. func GetUnmergedPullRequest(headRepoID, baseRepoID int64, headBranch, baseBranch string) (*PullRequest, error) { pr := new(PullRequest) - has, err := x.Where("head_repo_id=? AND head_branch=? AND base_repo_id=? AND base_branch=? AND has_merged=? AND issue.is_closed=?", headRepoID, headBranch, baseRepoID, baseBranch, false, false). Join("INNER", "issue", "issue.id=pull_request.issue_id").Get(pr) @@ -249,6 +306,27 @@ func GetUnmergedPullRequest(headRepoID, baseRepoID int64, headBranch, baseBranch return pr, nil } +// GetUnmergedPullRequestsByHeadInfo returnss all pull requests that are open and has not been merged +// by given head information (repo and branch). +func GetUnmergedPullRequestsByHeadInfo(headRepoID int64, headBranch 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=?", + headRepoID, headBranch, false, false). + 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) { + pr := new(PullRequest) + has, err := x.Id(id).Get(pr) + if err != nil { + return nil, err + } else if !has { + return nil, ErrPullRequestNotExist{id, 0, 0, 0, "", ""} + } + return pr, nil +} + // GetPullRequestByIssueID returns pull request by given issue ID. func GetPullRequestByIssueID(issueID int64) (*PullRequest, error) { pr := &PullRequest{ @@ -262,3 +340,144 @@ func GetPullRequestByIssueID(issueID int64) (*PullRequest, error) { } return pr, nil } + +// Update updates all fields of pull request. +func (pr *PullRequest) Update() error { + _, err := x.Id(pr.ID).AllCols().Update(pr) + return err +} + +// Update updates specific fields of pull request. +func (pr *PullRequest) UpdateCols(cols ...string) error { + _, err := x.Id(pr.ID).Cols(cols...).Update(pr) + return err +} + +var PullRequestQueue = NewUniqueQueue(setting.Repository.PullRequestQueueLength) + +// checkAndUpdateStatus checks if pull request is possible to levaing checking status, +// and set to be either conflict or mergeable. +func (pr *PullRequest) checkAndUpdateStatus() { + // Status is not changed to conflict means mergeable. + if pr.Status == PULL_REQUEST_STATUS_CHECKING { + pr.Status = PULL_REQUEST_STATUS_MERGEABLE + } + + // Make sure there is no waiting test to process before levaing the checking status. + if !PullRequestQueue.Exist(pr.ID) { + if err := pr.UpdateCols("status"); err != nil { + log.Error(4, "Update[%d]: %v", pr.ID, err) + } + } +} + +// AddTestPullRequestTask adds new test tasks by given head repository and head branch, +// and generate new patch for testing as needed. +func AddTestPullRequestTask(headRepoID int64, headBranch string) { + log.Trace("AddTestPullRequestTask[head_repo_id: %d, head_branch: %s]: finding pull requests", headRepoID, headBranch) + prs, err := GetUnmergedPullRequestsByHeadInfo(headRepoID, headBranch) + if err != nil { + log.Error(4, "Find pull requests[head_repo_id: %d, head_branch: %s]: %v", headRepoID, headBranch, err) + return + } + + for _, pr := range prs { + log.Trace("AddTestPullRequestTask[%d]: composing new test task", pr.ID) + if err := pr.GetHeadRepo(); err != nil { + log.Error(4, "GetHeadRepo[%d]: %v", pr.ID, err) + continue + } else if pr.HeadRepo == nil { + log.Trace("AddTestPullRequestTask[%d]: ignored cruppted data", pr.ID) + continue + } + + if err := pr.GetBaseRepo(); err != nil { + log.Error(4, "GetBaseRepo[%d]: %v", pr.ID, err) + continue + } + + headRepoPath, err := pr.HeadRepo.RepoPath() + if err != nil { + log.Error(4, "HeadRepo.RepoPath[%d]: %v", pr.ID, err) + continue + } + + headGitRepo, err := git.OpenRepository(headRepoPath) + if err != nil { + log.Error(4, "OpenRepository[%d]: %v", pr.ID, err) + continue + } + + // Generate patch. + patch, err := headGitRepo.GetPatch(pr.MergeBase, pr.HeadBranch) + if err != nil { + log.Error(4, "GetPatch[%d]: %v", pr.ID, err) + continue + } + + if err = pr.BaseRepo.SavePatch(pr.Index, patch); err != nil { + log.Error(4, "BaseRepo.SavePatch[%d]: %v", pr.ID, err) + continue + } + + if !PullRequestQueue.Exist(pr.ID) { + go func() { + PullRequestQueue.Add(pr.ID) + pr.Status = PULL_REQUEST_STATUS_CHECKING + if err = pr.UpdateCols("status"); err != nil { + log.Error(5, "AddTestPullRequestTask.UpdateCols[%d].(add to queue): %v", pr.ID, err) + } + }() + } + } +} + +// TestPullRequests checks and tests untested patches of pull requests. +// TODO: test more pull requests at same time. +func TestPullRequests() { + prs := make([]*PullRequest, 0, 10) + x.Iterate(PullRequest{ + Status: PULL_REQUEST_STATUS_CHECKING, + }, + func(idx int, bean interface{}) error { + pr := bean.(*PullRequest) + + if err := pr.GetBaseRepo(); err != nil { + log.Error(3, "GetBaseRepo: %v", err) + return nil + } + + if err := pr.testPatch(); err != nil { + log.Error(3, "testPatch: %v", err) + return nil + } + prs = append(prs, pr) + return nil + }) + + // Update pull request status. + for _, pr := range prs { + pr.checkAndUpdateStatus() + } + + // Start listening on new test requests. + for prID := range PullRequestQueue.Queue() { + log.Trace("TestPullRequests[%v]: processing test task", prID) + PullRequestQueue.Remove(prID) + + pr, err := GetPullRequestByID(com.StrTo(prID).MustInt64()) + if err != nil { + log.Error(4, "GetPullRequestByID[%d]: %v", prID, err) + continue + } else if err = pr.testPatch(); err != nil { + log.Error(4, "testPatch[%d]: %v", pr.ID, err) + continue + } + + pr.checkAndUpdateStatus() + } +} + +func InitTestPullRequests() { + go TestPullRequests() +} diff --git a/models/repo.go b/models/repo.go index ae1e9b7497..7d242df22f 100644 --- a/models/repo.go +++ b/models/repo.go @@ -183,9 +183,11 @@ func (repo *Repository) AfterSet(colName string, _ xorm.Cell) { } func (repo *Repository) getOwner(e Engine) (err error) { - if repo.Owner == nil { - repo.Owner, err = getUserByID(e, repo.OwnerID) + if repo.Owner != nil { + return nil } + + repo.Owner, err = getUserByID(e, repo.OwnerID) return err } @@ -326,6 +328,30 @@ func (repo *Repository) UpdateLocalCopy() error { return nil } +// PatchPath returns corresponding patch file path of repository by given issue ID. +func (repo *Repository) PatchPath(index int64) (string, error) { + if err := repo.GetOwner(); err != nil { + return "", err + } + + return filepath.Join(RepoPath(repo.Owner.Name, repo.Name), "pulls", com.ToStr(index)+".patch"), nil +} + +// SavePatch saves patch data to corresponding location by given issue ID. +func (repo *Repository) SavePatch(index int64, patch []byte) error { + patchPath, err := repo.PatchPath(index) + if err != nil { + return fmt.Errorf("PatchPath: %v", err) + } + + os.MkdirAll(path.Dir(patchPath), os.ModePerm) + if err = ioutil.WriteFile(patchPath, patch, 0644); err != nil { + return fmt.Errorf("WriteFile: %v", err) + } + + return nil +} + func isRepositoryExist(e Engine, u *User, repoName string) (bool, error) { has, err := e.Get(&Repository{ OwnerID: u.Id, diff --git a/models/update.go b/models/update.go index 645b58c4c5..0cf62db418 100644 --- a/models/update.go +++ b/models/update.go @@ -16,11 +16,11 @@ import ( ) type UpdateTask struct { - Id int64 - Uuid string `xorm:"index"` + ID int64 `xorm:"pk autoincr"` + UUID string `xorm:"index"` RefName string - OldCommitId string - NewCommitId string + OldCommitID string + NewCommitID string } func AddUpdateTask(task *UpdateTask) error { @@ -28,20 +28,21 @@ func AddUpdateTask(task *UpdateTask) error { return err } -func GetUpdateTasksByUuid(uuid string) ([]*UpdateTask, error) { +func GetUpdateTaskByUUID(uuid string) (*UpdateTask, error) { task := &UpdateTask{ - Uuid: uuid, + UUID: uuid, } - tasks := make([]*UpdateTask, 0) - err := x.Find(&tasks, task) + has, err := x.Get(task) if err != nil { return nil, err + } else if !has { + return nil, fmt.Errorf("task does not exist: %s", uuid) } - return tasks, nil + return task, nil } -func DelUpdateTasksByUuid(uuid string) error { - _, err := x.Delete(&UpdateTask{Uuid: uuid}) +func DeleteUpdateTaskByUUID(uuid string) error { + _, err := x.Delete(&UpdateTask{UUID: uuid}) return err } diff --git a/models/webhook.go b/models/webhook.go index 75380d17c1..7b6d7826e7 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -13,6 +13,7 @@ import ( "sync" "time" + "github.com/Unknwon/com" "github.com/go-xorm/xorm" api "github.com/gogits/go-gogs-client" @@ -435,39 +436,58 @@ func PrepareWebhooks(repo *Repository, event HookEventType, p api.Payloader) err return nil } -type hookQueue struct { - // Make sure one repository only occur once in the queue. - lock sync.Mutex - repoIDs map[int64]bool +// UniqueQueue represents a queue that guarantees only one instance of same ID is in the line. +type UniqueQueue struct { + lock sync.Mutex + ids map[string]bool - queue chan int64 + queue chan string } -func (q *hookQueue) removeRepoID(id int64) { +func (q *UniqueQueue) Queue() <-chan string { + return q.queue +} + +func NewUniqueQueue(queueLength int) *UniqueQueue { + if queueLength <= 0 { + queueLength = 100 + } + + return &UniqueQueue{ + ids: make(map[string]bool), + queue: make(chan string, queueLength), + } +} + +func (q *UniqueQueue) Remove(id interface{}) { q.lock.Lock() defer q.lock.Unlock() - delete(q.repoIDs, id) + delete(q.ids, com.ToStr(id)) } -func (q *hookQueue) addRepoID(id int64) { - q.lock.Lock() - if q.repoIDs[id] { - q.lock.Unlock() +func (q *UniqueQueue) Add(id interface{}) { + newid := com.ToStr(id) + + if q.Exist(id) { return } - q.repoIDs[id] = true + + q.lock.Lock() + q.ids[newid] = true q.lock.Unlock() - q.queue <- id + q.queue <- newid } -// AddRepoID adds repository ID to hook delivery queue. -func (q *hookQueue) AddRepoID(id int64) { - go q.addRepoID(id) +func (q *UniqueQueue) Exist(id interface{}) bool { + q.lock.Lock() + defer q.lock.Unlock() + + return q.ids[com.ToStr(id)] } -var HookQueue *hookQueue +var HookQueue = NewUniqueQueue(setting.Webhook.QueueLength) -func deliverHook(t *HookTask) { +func (t *HookTask) deliver() { t.IsDelivered = true timeout := time.Duration(setting.Webhook.DeliverTimeout) * time.Second @@ -549,12 +569,13 @@ func deliverHook(t *HookTask) { } // DeliverHooks checks and delivers undelivered hooks. +// TODO: shoot more hooks at same time. func DeliverHooks() { tasks := make([]*HookTask, 0, 10) x.Where("is_delivered=?", false).Iterate(new(HookTask), func(idx int, bean interface{}) error { t := bean.(*HookTask) - deliverHook(t) + t.deliver() tasks = append(tasks, t) return nil }) @@ -566,15 +587,10 @@ func DeliverHooks() { } } - HookQueue = &hookQueue{ - lock: sync.Mutex{}, - repoIDs: make(map[int64]bool), - queue: make(chan int64, setting.Webhook.QueueLength), - } - // Start listening on new hook requests. - for repoID := range HookQueue.queue { - HookQueue.removeRepoID(repoID) + for repoID := range HookQueue.Queue() { + log.Trace("DeliverHooks[%v]: processing delivery hooks", repoID) + HookQueue.Remove(repoID) tasks = make([]*HookTask, 0, 5) if err := x.Where("repo_id=? AND is_delivered=?", repoID, false).Find(&tasks); err != nil { @@ -582,9 +598,10 @@ func DeliverHooks() { continue } for _, t := range tasks { - deliverHook(t) + t.deliver() if err := UpdateHookTask(t); err != nil { - log.Error(4, "UpdateHookTask(%d): %v", t.ID, err) + log.Error(4, "UpdateHookTask[%d]: %v", t.ID, err) + continue } } } diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 468927eaaa..1f3ada632d 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4364,7 +4364,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xeb\x72\xdc\x48\xae\xe6\x7f\x3e\x05\xdb\x13\x5e\xdb\x11\x72\x39\xba\x7b\x6f\xd1\xd1\x76\xaf\x2c\xb5\x2f\x73\x2c\x4b\x63\xa9\x67\x76\xd6\xe1\x60\xb3\x8a\x54\x15\xc7\x55\x64\x35\xc9\x72\x59\x73\xe2\x44\xec\x03\xec\x03\xec\xbe\xde\x79\x92\x05\x3e\x00\x79\x21\x59\x92\xdd\x33\x71\xfe\x48\xac\x4c\xe4\x0d\x89\x44\x02\x48\x24\x32\xdf\x6e\xb3\xa2\xec\x16\xe9\xd3\xf4\x38\xdd\xe6\x55\xbd\x2e\xbb\x2e\xed\xca\xf5\xf5\xe3\x55\xd3\xf5\x65\x91\xbe\xac\x7a\xfa\xdd\x7e\xaa\x16\x65\x92\xac\x9a\x4d\x49\xa0\xaf\xe8\x5f\x52\xe4\xdd\x6a\xde\xe4\x6d\x41\x09\xa7\xf6\x9d\x94\x9f\xb7\xeb\xa6\x65\xa0\x9f\xe5\x2b\x59\x95\xeb\x2d\x97\xa1\x7f\x49\x57\x2d\xeb\xac\xaa\xe9\xe7\x25\x7d\xa5\xaf\x6b\x49\x69\x76\xbd\x25\x9d\xef\x7a\x49\xdb\x6d\x2d\xe9\x97\x6d\xd2\x96\xcb\x8a\x7a\xd3\x52\xd2\x3b\xfd\x4c\xf6\xe5\xbc\xab\x7a\x6e\xe9\x2f\xf2\x95\x7c\x2a\xdb\xae\x6a\xb8\xf6\x3f\xcb\x57\xb2\xcd\x97\x0c\x70\x41\xff\x92\xbe\xdc\x6c\xd7\x39\x0a\x5c\xe9\x67\xb2\xce\xeb\xe5\x4e\x60\xde\xe8\x67\xb2\x68\x4b\xca\xca\xea\x72\x4f\xa9\x27\xf8\x31\x9b\xcd\x92\x1d\x21\x21\xdb\xb6\xcd\x75\xb5\x2e\xb3\xbc\x2e\xb2\x8d\x0c\xf3\x17\x4a\x4f\x35\x3d\xa5\xf4\x94\xd3\x31\x84\xb2\xa0\xa1\x66\x79\xa7\xe3\x20\x5c\xd2\xc8\xf3\x2e\x41\x55\x75\xbe\xb1\xd2\xfc\x99\x94\x9b\xbc\x5a\x33\xd6\x1e\xf3\x07\x75\xbc\xeb\xf6\x0d\x70\x7b\xa1\x9f\x84\x84\xac\xbf\xd9\x96\xc0\xc1\xe3\x2b\xfa\x4a\x16\xf9\xb6\x5f\xac\x72\xee\xa7\x7c\x25\x04\xb4\x6d\x08\x19\x4d\x7b\x03\x38\xfb\x91\x34\xed\x32\xaf\xab\xbf\xe7\xbd\x20\xe8\x3c\xf8\x99\x6c\xaa\xb6\x6d\x18\xb7\x67\xf8\x48\x68\xe8\x19\xd7\x43\x29\x6f\x09\x0b\x41\x2d\x9c\xb3\xa9\x96\xad\xa0\x91\x33\xcf\xf0\x8b\x6b\xe1\xbc\xeb\xa6\xfd\xa8\x19\x2f\xf8\x73\x50\x94\x3a\xa1\xb9\x71\xfb\x79\x4d\x88\xd7\xdc\x33\xfc\x88\x00\xba\x24\x2f\x36\x84\xca\x6d\x5e\x97\x8c\xa3\x63\xfe\x45\x78\xa1\x5f\x49\xbe\x58\x34\xbb\xba\xcf\xba\xb2\xef\xab\x7a\xc9\xc8\x3e\x96\xa4\xf4\x52\x93\x92\x20\xcf\xa5\xdd\x34\x3b\x37\x9d\x94\xfe\x57\xfa\x99\x5e\xc8\x4f\xc9\x0b\x0a\x21\xd3\x95\xe4\x91\x74\xd9\x75\x59\x16\x32\x96\x2e\x7d\x41\xdf\xc9\x76\xb7\x5e\x13\xd6\x7e\xdb\x95\x5d\xcf\x85\x2e\xe8\x37\x8d\x5f\x7e\x27\x55\xd7\xd1\x07\x25\xbf\xc6\x47\x42\x53\x57\x2f\x30\x98\x13\x7c\x24\xc9\xfb\xae\xcc\xdb\xc5\xea\x43\x22\xff\xd1\x57\xfe\x60\xda\x3b\x34\xa9\x4c\x48\x4a\x44\xd2\x82\x35\x90\x2c\x9a\x82\x7f\x9c\xd0\x3f\xaa\xba\xaa\xbb\x3e\x5f\xaf\x3f\x24\xfa\xc1\x60\xf2\x25\x13\xd0\x57\x3d\xb0\xa0\x89\xe9\x65\x5f\x6e\x3b\x9e\xc1\xf4\x45\xd5\x76\xfd\xe3\xbe\x22\x62\x7d\xb7\xab\x93\xa2\x59\x7c\xa4\x65\xc0\x4b\x1a\x2d\xbf\xbe\x4e\x09\x59\x0f\x68\x21\xb4\xbb\xba\x26\xf4\xa4\x2f\x1b\x42\x19\x35\x53\x51\xfb\xa7\x80\x3e\x4a\xb7\xeb\x32\xef\x08\xa4\xcc\x8b\xf4\xc7\x3c\xed\xf3\x76\x59\xf6\x4f\xef\x65\x73\x5a\x7e\x1f\xef\xa5\xab\xb6\xbc\x7e\x7a\xef\x7e\x77\xef\xd9\xcb\x1d\x15\x5b\x57\x75\xd9\xfd\xf8\x24\x7f\x96\x2e\x72\xca\x21\x34\xde\xa4\xf3\xf2\x9a\x57\x1b\xb5\x95\x12\x95\xd7\x4b\x5e\x69\x37\xfd\x8a\x1b\x24\x4a\xa0\x8f\x2e\xe5\xa5\xfe\x4d\xc2\x13\x40\xac\x20\x2b\xe6\xc6\xd6\xd0\x21\x24\xb7\x34\x01\x67\x37\x97\x7f\x7a\x73\x94\x5e\x10\x6f\x5b\xb6\x25\xbe\xe9\x0f\x95\xf8\x3e\xa5\xd1\x5e\x55\xa7\xcf\x67\x09\x95\x35\x84\x9c\xe6\x7d\x3e\xe7\xbe\xbb\xd9\xe7\x4c\x59\x84\x2e\x0f\x4b\x91\xb9\x25\x38\x63\xd7\x47\xd3\x32\xb5\x90\xa9\x0e\x5d\xfe\xae\x8e\xb7\xcc\x03\x28\xdd\x61\xf6\x42\x70\x46\x55\xa5\xaf\xdf\xbe\x3d\x3f\x7d\x9e\x96\xf5\x92\x30\x93\xee\xab\x7e\x95\xee\xfa\xeb\xff\x9e\x2d\xcb\xba\x6c\xf3\x75\xb6\xa8\x18\x29\x2d\x11\x6c\x4a\x58\x92\x21\xce\x92\xae\x5b\x13\x8b\x02\x15\x5c\x5e\xbe\x49\xcf\x98\x12\xb6\x79\xbf\x42\x47\xfa\x55\xd2\xfd\xb6\x66\x44\xb9\x06\xaf\x56\x65\x8a\xc5\x00\xa0\xe6\x7a\x88\x97\xb4\xd0\xbe\xce\x92\xb2\x6d\x33\xe2\xa0\xfd\x0d\xa3\x59\xeb\x3c\x04\x2d\xd5\x11\xb5\xd7\x4d\x4f\xd3\x98\xa2\x9c\x54\x51\xd5\x9f\xf2\x75\x55\x10\xb2\x3d\x42\xe2\xb2\x48\x2c\x1a\x9a\x37\x2e\x4d\x94\xd9\xec\x31\xd4\x7c\x41\x1b\x40\x97\xde\x9b\xdd\x03\xc7\xbd\xf7\xf8\xde\x2c\xa9\x9b\x4c\xb8\x04\xf3\xe6\xa2\xea\xf2\x39\xf1\x69\xd9\x37\x5a\xe3\x7a\x7f\x65\xfa\x91\xae\x28\x44\x1a\x41\x30\x6e\x79\x2f\xc2\x16\xc0\xc4\x95\x13\xc3\x06\xb3\x51\x36\x13\x8e\xdd\x78\x92\x9b\x5f\x61\x4b\x2e\x61\x34\xe6\xc4\x26\xcc\xa8\xeb\x78\xbb\x5d\x57\x0b\x69\xfa\xa5\xe4\x79\x42\xe3\x9d\x59\x91\x12\xc2\x81\x50\x2c\x2f\x20\x17\xea\x35\xb3\xad\x34\xe2\xf3\x28\xbf\x2a\x69\xe5\xac\x76\x4b\xd9\x9d\xd6\xcd\xae\xf8\x06\x0c\xc5\x66\xce\xf3\x93\xf4\x5d\x43\x1d\x06\x75\x38\x00\xdf\xc4\x31\x31\x06\x16\x06\xda\x72\xd3\xf4\x8c\x38\x2d\x56\xd1\xf4\xec\x2b\xca\xa4\x91\x76\xf9\x27\x62\x8b\x7d\x23\x4b\xb2\xa0\x25\xb7\xe0\x8a\x89\x83\xed\x68\x47\x97\x65\x41\x7c\x44\x96\x86\xa5\xc5\x34\x08\xa8\xcd\x8e\x56\xd3\x8a\x2a\x63\xc4\xb3\x44\x42\x55\x4e\xf5\x13\x43\xa2\x7a\xb0\xca\x69\xe5\x36\xb4\x79\xf2\x44\x9f\xe2\x43\x7f\x87\xf5\x53\xaf\xf2\xeb\x6b\xea\x55\x47\xab\xe2\x55\xba\x58\x37\xb4\xa4\x7e\x79\xf7\xa6\xe3\x05\xb3\xca\xb6\x4d\x0b\x49\x84\xb2\x2e\xe8\xd3\xa5\x05\x88\x66\x88\x7a\xb7\x99\xd3\xaf\xfd\xaa\x22\x46\x0d\xb4\x73\x09\x96\x92\x28\x95\x9a\xd8\x75\x34\x85\x47\x29\x2d\x61\x1a\x01\xa1\x0c\x04\xc0\x63\x30\xaa\x63\xf0\x6b\xa2\xb1\x5d\x4b\xcb\x69\xd5\xf7\x5b\x6b\xf9\xd5\xd5\xd5\x85\x34\xed\x52\x6f\x6b\x3b\x0f\x28\x03\x73\xb0\x66\xd9\xa8\x4e\x9b\x7a\x06\x22\xd9\xb5\xeb\x01\xfd\xd0\x58\x2d\xe7\x00\x5e\xb8\x0b\x4f\xf8\xcf\xa5\x47\x0f\xf0\xdc\x91\xd4\xb7\x07\x35\x11\x8e\x4b\xc8\x29\x44\xd4\xcd\x96\xeb\x0d\xa8\xfa\x5c\x13\x3c\x29\x43\xb6\x71\xf9\x22\xe1\x50\x2e\x64\xca\x60\x97\xde\xd0\x80\x95\x8d\x5e\x9e\x11\x1a\xc0\x4b\x91\x7a\xdd\x36\x1b\x4a\x7d\x41\xff\x7c\x82\xef\xfe\x19\xd7\x07\x98\xbc\x28\x88\xcb\x77\x47\xe9\xbb\x17\x27\xe9\x7f\xf9\xfe\xbb\xef\x66\xe9\xeb\x9e\x57\x22\x13\xe7\xdf\x98\xa8\xe8\x53\x44\x2d\x07\x4a\x1c\xab\x27\xba\xbb\xc7\x2b\xeb\x5e\xfa\x23\x72\xff\x47\xf9\x39\x27\x11\xb1\x9c\x2d\x9a\xcd\x33\xe6\xaa\x9b\x9c\xd6\x3e\xe7\x10\xb9\x2a\x1d\x5f\x96\x75\x41\x1f\x2a\xb0\x69\x5e\xc0\x0e\x34\x3f\x10\xdf\x44\x70\xcd\x16\x4d\x7d\x5d\xb5\x3c\xa0\x9f\x6b\x50\x83\x89\xb4\xb4\x5d\x23\xc7\xa4\x22\x42\x1a\x71\x90\xea\xfa\xc6\x83\x62\xa8\x6f\x39\x51\x27\x34\x11\xaa\xcb\x54\x44\x77\x58\xbe\x14\x62\xe4\x79\x3b\xa7\xe1\xb5\x86\xef\xce\x23\xbc\xb9\xbe\xe6\xbd\xd6\x76\x09\x6d\xe1\x5c\x52\x65\xc3\x08\x41\x88\x18\xb7\x10\xca\x4f\x95\x88\x4f\x4e\xdf\xa6\xe5\x27\xa2\x36\xe6\x7a\x6d\x53\xec\x16\xa0\x30\x86\x3d\x62\x66\x4d\x2c\xa2\xa3\xb5\xb1\x90\x7d\x25\x60\x12\xdc\x35\xe6\x44\x0b\x02\x22\xde\x60\xcc\x9a\x04\xc9\x4f\xc4\xf9\xdb\xa0\x89\x97\x96\xa4\xbd\x1f\xc1\x8e\x3a\xe5\x4a\xf0\xc8\x17\x34\xe3\x44\x15\xd2\x8b\x4e\x3a\x25\xd9\x44\xee\x44\xc7\x3b\xd2\x50\xf2\x82\xfa\x32\xbf\x01\xdf\xe9\x98\x18\x8a\xf2\x3a\xdf\xad\x7b\xdf\xaf\xc1\x26\x62\x2d\x5d\xb2\x92\x14\xe6\x4d\x16\x18\x75\x10\xd4\xd3\x0d\xcb\x12\x19\xd6\x24\xe7\xc8\x66\xc3\xf4\x2a\x5a\x88\xed\x3b\xc4\x9e\x4a\x4c\x4f\xe6\x45\x7e\x9d\x2f\x93\xfc\xe3\x7c\xd7\xec\x3b\x91\x7c\x52\x6c\xb5\x5c\xa3\x55\xc0\xa2\xc2\x74\x5f\x66\x89\x8a\x4b\x99\xaa\x6b\xd9\xa7\x0a\xca\x90\x23\x57\xa9\x52\x55\x38\xe6\x6b\x7f\x66\x00\xd6\xb2\xba\xc9\xb2\xae\x37\xe7\x3c\xc8\xce\x29\x43\x82\x73\x1e\x2e\x5a\x60\x11\x8e\x66\xe9\x53\x05\x36\xaf\x04\x03\xbc\x10\xd5\xa0\x69\x6a\xaa\x2b\x4b\xd4\x40\xe5\x9f\x50\x9d\x28\x33\x53\x05\x41\x65\x76\x13\xfd\x78\xbb\x2f\x1a\xc8\x0e\xd8\x4b\xa8\xb4\xa1\x75\xb0\xaf\xa7\x6d\xb5\x5c\x11\x6f\x6d\xf6\x47\x82\x94\xfd\xaa\x29\x79\xfd\xbc\x3e\x7d\xfa\xad\xf4\x63\xc9\x3b\x8b\x2b\xc4\x7b\x52\xbe\x23\xe2\x22\x8c\x29\x19\x4b\x17\xdc\xde\x0e\xc8\x91\x2a\x22\x40\x43\xe5\x6f\x24\x4a\x38\xa6\xa1\xbc\x22\xcc\x53\x26\xe1\x61\xa4\xf4\x40\x81\x54\x49\x3f\x5b\x36\x50\x61\x4c\xb2\xe7\x7d\x92\x34\xe1\xae\xcf\x96\x55\x9f\x5d\x33\xd3\xe2\x3a\x5f\x70\x59\xde\xb6\x29\x27\x7d\x40\x59\x0f\x52\xe2\x7c\xa4\x97\x15\x3f\xa4\xf7\x3f\xa9\xac\xf8\x3d\x73\xa3\x8c\xd6\x4f\xb5\xc6\x64\xa8\x62\xd4\x96\x22\xaa\x9a\xf6\xed\xe4\xb5\x6e\xb7\xc5\xae\xa6\xa2\xa1\xd3\x03\x8a\x66\x5f\xf3\xba\x03\xdb\x25\x0e\x53\x2d\x2a\xda\x2d\xe6\x55\x9d\xd3\xd6\x6e\xb5\x80\x9d\xdf\x27\x6a\x78\x7b\x7e\x05\xc0\x65\x33\xdf\x55\xeb\xc2\x00\x66\x89\x89\x8f\x24\x3c\xea\xbc\x87\x02\xb5\x25\x55\xd2\x97\x45\xd3\xb2\x2c\x82\xd1\x58\xc1\x03\x42\x50\xcb\xc2\x05\x92\x2b\xd6\x64\x00\x8b\x72\x4e\x5e\x61\x34\xd0\xc4\x43\x49\x63\x69\x06\x14\x53\x75\xf5\x83\x1e\x3d\x5d\xec\xa8\x2d\x9a\x74\x4e\xa6\x82\x5d\xfa\xf8\x19\xfd\x4d\x58\x36\x12\xde\xbf\x1c\x23\x9e\x33\x53\xc9\xdc\xc9\x2a\x8c\xba\x1a\x91\xb7\xa3\x2e\x23\xde\x60\xac\x61\x7f\x8d\x04\xba\x9d\xd0\x2b\x1b\x4a\xd6\x34\xad\xe5\x37\xf4\xc1\x3a\xdb\x72\x8d\x49\xc8\x7b\x55\xac\x1a\xc2\x1b\x13\xc8\x91\x2c\x97\x6b\x1a\x1a\x73\xd1\x3e\xff\x58\x42\x17\xa3\xdd\xfe\x3d\x5b\x80\x3e\x24\x3b\x91\x3e\x9b\x75\xe1\x34\x1d\xd0\x74\xd3\x0e\x0d\x18\x1e\xc8\xd1\x6b\x47\x62\xf6\x62\x95\x39\xfb\x11\x23\xa5\x2f\x3f\x63\xdf\x47\x96\x37\x27\x31\xb1\x73\x56\xb2\xb9\xc1\x74\xf1\x20\xce\x6e\xfc\x6c\x91\xec\x49\x4b\x84\xd4\xd8\x79\xc3\x58\xfb\x54\x3a\xa8\x93\x30\x35\x2e\x40\x75\x91\x94\xac\x55\xc5\x76\x06\xca\x12\x63\x88\xe6\x8a\x41\xa4\x4b\xc0\xc4\xd4\xf8\x05\x5e\x47\xf3\xa9\x3a\xfd\x8c\x26\x06\x06\x03\x6b\x99\x38\xe2\x8d\xac\x8b\xa0\xcd\xe4\xbd\x1a\xc6\x3e\x24\x06\xf7\x2e\xce\x27\x6e\x42\xca\xbf\x37\x3e\x65\x36\xbb\x66\x84\x82\xdd\x44\x19\x8a\x17\x26\x56\xe5\x96\xe5\x8e\x4d\x07\xb2\x58\xb3\x8e\x7d\xa3\x92\xb3\x23\x90\x9f\x84\x55\x13\xc5\x10\x83\xfb\x26\xe9\x1a\x5e\x70\xd9\x57\x56\xf1\xbc\x22\x52\x40\xf9\x78\x9b\x13\xab\x18\x09\xb8\x3c\x7d\xb4\xca\x6e\x8e\x62\x9d\x6a\x95\x77\xc4\xbe\x49\x4a\xd0\x62\xc5\xcc\x74\x5b\x9e\x76\xd2\xe4\xb0\x66\x60\xc9\x03\x95\x4b\xc9\xa6\x1d\xee\xbf\xdc\x43\xe1\x70\xda\x8a\x93\x9a\x20\x13\x85\xa2\xd3\x44\x9b\x84\xb0\x4d\xc9\x82\x73\xb6\x11\x03\x9a\xfc\x4a\xcf\xca\x84\x36\xc2\x25\x2d\x68\x23\xd8\xa7\x6c\xf7\x58\x42\xbf\x50\x7a\x65\x80\xb2\x0f\x59\xb0\x42\x58\xca\x4f\x66\xb1\x24\xce\xb0\x87\x51\x88\xd6\xf6\x08\xfd\xb4\x59\x51\xf6\xcc\x58\xba\x48\x07\x10\xf2\x3a\xe2\x16\x1e\x89\xc7\x29\x9b\x1e\x43\x28\x15\xb6\xfd\xb0\xb8\x00\x73\x8d\x1f\xe7\xcf\xee\x77\x3f\x3e\x99\x3f\x73\xbc\x75\xb1\x2a\x17\x1f\x85\xfe\xaa\x7a\xde\x7c\x86\x4a\x0b\x13\x09\x69\xd3\xbc\xc6\xee\x17\x29\xa9\xb8\x2d\x34\x2a\xe2\x05\x54\x8c\x10\xcf\xb9\xd1\xa4\x51\x67\x98\x65\xcc\xcc\x60\x9b\xf5\x4d\x40\x8f\x46\x4d\x54\x05\x5a\xd2\x9c\x84\x26\x93\x97\x20\x56\x83\x87\x3e\xe6\x54\xa6\x5f\xec\x16\x9e\x80\x31\xea\x75\xb5\xa9\xfa\x11\x01\x31\x3b\xca\x95\x10\xd5\xa4\x66\x18\x45\x5d\xc0\x09\x50\x42\x4c\x9d\xaa\xa1\xed\xd7\x88\x6a\x9f\x93\xbe\xf5\x7d\x4a\x84\xb4\xa3\xcd\x8c\x47\x46\xfd\x24\xae\x9e\xf3\xfe\x4d\xba\x56\xde\x65\xbb\x5a\x91\x5b\x16\x46\x52\xaf\x2a\xec\x35\xdc\xae\x11\x7e\x00\x65\xf8\x57\x95\x21\x7d\xe8\xf0\xfe\x68\xa6\x26\x30\x14\xe3\x0d\x80\x3b\x54\xb1\x78\x9b\x4f\x4e\x21\x31\xc8\xba\x14\x15\x19\x18\x60\x38\x9e\x6e\xd2\xb3\xfc\x1c\x92\xb2\xf6\x91\x52\x30\x2d\xf3\x5d\xdf\x37\xac\xbe\xac\x99\x76\xa4\x8c\xf5\xfa\x04\x80\xd0\xc8\x7c\x7d\x3a\x23\x1e\x4f\xc2\x8f\x4b\x53\x27\x32\x22\x5a\x66\x00\x62\x08\x67\xc5\x6f\x30\x3a\xdd\x31\x1d\x58\x21\x26\xa7\xbc\xbe\xf1\x56\x10\xf4\x82\x1b\xec\xa7\xfb\xf2\xb0\x2d\x1f\xf9\xde\xb8\x95\x83\x12\xd6\x23\x29\x1e\xac\xaa\x77\xc8\x15\x4b\xac\xad\x3d\xdb\x00\xd5\x9e\xe9\xe9\xa3\x8d\xd1\x8b\x7c\x5e\x1f\xc4\x66\x49\xfa\x2c\x80\x68\x1a\x05\x4a\xcf\x06\x6d\x79\xcd\x71\x8c\xc1\x3e\xee\xb2\xdf\xc7\xfa\xa6\xc9\xba\x95\x68\xe9\xd6\x3d\xd2\xf0\xeb\x65\x64\xde\xc2\xf1\x09\x88\xee\xbf\xf2\x6e\xc9\x03\xfd\x90\xe8\x6c\x94\xc1\xa2\x50\x6a\xb5\x9c\x89\x75\xc4\xf0\x26\xd3\xfd\xb9\x6c\x59\x0b\x04\x50\x3c\x5b\x87\xb0\x18\x0f\xc2\x71\x50\x2f\x0a\x38\xee\xa9\x49\x47\x26\x1c\x70\xaf\x9b\x22\xa7\x6e\xdf\xc0\x60\xfd\x57\xda\x9d\x6a\x1c\x05\x34\x09\x65\x88\x36\x7a\x86\x0f\x02\x65\xd5\xf8\x43\xc2\xfb\xff\xdb\x81\x4c\xcb\xdb\x9b\xa6\x05\xc2\x15\xb2\x7e\x8e\x44\x55\x37\x94\x8b\x09\xf9\xf7\x5d\xe9\x8f\x3c\xf0\xe5\xc6\x74\x79\xf9\xea\xca\x74\xdd\xcb\x57\xe9\xc7\x52\x2b\x7f\xd5\xf7\xdb\xee\x17\xd8\x3d\xc4\x88\xc1\x16\x8f\x8b\xfc\x86\x25\x4e\x49\xd6\x1f\xc8\xb8\x2a\xf3\x8d\xf6\x92\x3f\xa5\x8a\x63\xda\x8a\x35\x91\x3f\x69\x87\x0e\xec\x69\x09\x64\x2f\x1b\x82\x08\x62\x2a\xf3\x38\xdd\xa7\xd4\xf3\x94\x5f\x47\x46\xc0\x5f\x93\x7c\xbd\x25\xf5\x8c\x85\x9f\x00\x0c\xf6\xae\xb9\x6a\x69\x29\x40\x40\xc1\xbb\x0d\xcd\xfc\x02\x5a\x29\x15\x78\xf8\x38\x7b\x14\xd8\x3f\xe3\xca\x0a\x5a\xda\xbf\xab\x42\xfe\x66\x09\x39\xac\xb7\xab\xfe\x6e\xa3\x88\xaa\xe3\x74\xe2\x94\x04\x01\x79\xd4\x43\x39\x20\x6c\xea\x2c\x9b\xf6\x6c\xfe\xa2\x04\x92\x7f\xa3\xaa\x37\xf9\xe7\xbb\x0a\x6e\x9a\x89\x72\xc2\xc0\x7c\x21\x63\x53\x3a\xc4\x78\x59\x10\x3c\x1b\xb8\x0e\x42\xd3\xd4\x33\x48\xfd\x91\x76\xe4\xda\x81\xfd\x22\xbf\x53\xfc\xfe\xc1\x4e\xd7\x68\xfb\x53\xed\x21\x75\xe7\x6c\x24\x58\x14\xcc\xed\xa1\x05\xcc\x3c\x93\x08\x35\x03\x47\xce\xb0\x44\xa8\xd2\xe6\x16\x2a\x9b\x1f\xa0\x24\x11\x49\xcd\xfc\x91\x60\xc6\xfb\x7b\xc6\x12\x77\x1d\xca\xd5\x6e\xe7\xb7\x5d\x11\x10\x72\x30\x94\x8d\xcb\x0d\x16\xdc\xc1\xe2\x24\xc6\x4c\x94\x3e\x1f\x9b\x90\x0f\x94\xef\x69\xc9\x4c\x54\xe0\x56\xd2\xc1\x82\x32\x99\x28\x44\x23\x2f\x46\xbc\x60\x5c\x90\xc1\x48\xe7\x5b\xaf\xcb\x25\xdb\x1a\xad\xe1\xa8\x35\x25\x21\xda\xc2\x04\x2c\x24\x20\x8f\x61\x37\x59\xe1\xbc\x86\x1a\x8c\x9b\xa3\x58\x77\x64\x13\x0c\x55\xd5\xe2\x58\x37\xd0\x20\xb5\x1b\xca\xd1\x37\xac\x2c\x75\x3b\xde\x50\x58\xb1\x12\xc9\x2a\x9e\x0d\x16\x17\x50\x55\x89\x26\x0e\x57\x4f\xb4\xc8\xda\xe6\x5d\xf5\x03\xec\x2b\xab\x0e\x6d\x0d\xe3\x8a\xb5\x72\x07\x74\xa8\x5a\xa7\x0d\x97\x9f\x2b\xd8\x6d\x5f\x56\x6c\x0f\x84\x3e\xec\xcc\x00\xc8\x9b\x25\x6b\x62\x06\xac\x77\xc9\xa8\x44\x06\x6f\x3e\xb1\xda\xca\xed\x71\xae\x94\x13\x3b\xae\x0e\x8a\xe7\x59\x35\x6b\x9c\xfe\x94\xc5\x11\x09\x26\x5c\x82\xfa\x09\xb6\x91\xaf\xf7\xf9\x4d\x07\x03\x91\x71\x1c\xb6\x59\x4b\x71\x66\x27\x24\xb6\x2c\xd1\xab\xf0\x64\x84\x56\x9c\x61\x82\x4d\xfc\xbc\x79\x38\xe1\x62\x0f\xdd\x18\xdc\x42\x4d\x4e\x9f\x82\xed\x57\xf7\x1a\xd6\xeb\x59\x0b\x66\xfd\x44\xb2\x83\x8a\x70\xe4\xa8\x9c\x7f\xa2\xec\x11\x0b\x75\xd4\x0c\x8b\x58\xc4\x8f\x05\xd7\x24\xb5\x12\x66\xd1\xa5\xc0\x50\xb2\xa3\xfa\x1f\x8b\x4c\x5f\x11\x0e\x59\x47\xf4\xb6\x03\xde\x9b\x68\x56\xcc\xb2\x2f\xe9\xd0\xfc\x93\xae\xa7\x25\xc0\x98\xb6\x73\xfc\xbf\x06\xf2\x45\x8a\x5c\x2c\x31\xa0\xa9\x5b\x55\xdb\xb4\x81\xb5\x38\x44\xa1\x27\xdb\x40\x30\xe6\x33\x8c\x12\x3a\x03\x9b\xcd\xdb\xbc\xee\xae\x4b\xd8\xcf\x37\xe9\x35\x1f\x15\xcf\xb4\x69\x96\xb3\xe5\x3c\xff\x40\xcb\xa2\x7f\xa1\xe9\x70\xb7\xc0\xdc\x05\x13\x15\x37\x2d\x07\x2a\xb0\xd1\xa2\x0f\xc0\xaa\xaf\xa9\xb3\x3e\x30\x99\x8d\x50\x00\x59\x37\x3a\x1e\xb3\xde\x7c\x2a\x43\x44\x5c\xff\xde\x91\x07\x58\xd7\x23\x02\x39\x57\x89\xa7\x49\x1a\x85\xa9\x06\xa7\xbb\xf3\x9b\x78\xf4\x5c\x34\x38\x32\xa7\x35\x52\x6a\x2b\xbc\x30\x78\xad\x0c\x2a\x84\x89\xc6\x6b\x38\x89\x1c\xaf\x67\x73\xea\xe2\x62\x15\xad\xce\x2b\xe4\xa4\x92\x33\x5a\xa0\xc9\x7b\x6e\xfa\x43\x22\x07\xec\x99\xb3\xc5\x9f\xc8\x81\xbb\x48\xa8\x6a\x5b\xef\x53\x33\xc0\xf3\x09\x89\x15\x11\x73\xfb\xad\x25\xab\xda\xac\x55\x5d\xf2\xb7\x86\x64\x08\x98\xd4\xff\x48\x5f\x2c\xb3\xd7\x49\x74\xaa\x38\xb0\x91\x40\x2c\xae\x7a\x5e\x61\x17\xb4\x30\x48\x8c\x39\xd6\x14\x52\xd1\xc1\x1d\x60\xb6\x79\x61\xdf\x34\x1f\x39\x33\x3d\x5e\xda\xf2\xa5\x70\x62\x43\x7b\x61\xdf\x09\x6b\xf8\x9b\x19\x36\x07\x16\xa7\x71\x3a\x11\x6c\x09\x0f\xee\x77\x0f\x78\xc2\x2c\x6f\x16\xc0\x6f\xf3\x9e\xd8\x62\x2d\x8a\x95\x70\xa8\xb0\xa8\x66\xbb\x2a\xdc\x31\x36\xd7\xc2\x2e\x1f\x82\x8a\x0f\x89\xf7\x44\x31\x27\x94\x29\x6b\xb0\xb2\x98\x4e\x65\xde\x7f\xa1\x4f\xb5\xe6\x80\x7d\xe1\x43\x15\x6c\x1c\x20\xdb\xa9\x1f\xbc\x62\x82\x9f\x89\xda\xbf\x62\xe3\x97\x92\xf7\xd3\xf4\x54\x3e\x4c\x55\xdf\x55\x18\x53\x55\x24\xc9\x16\x78\x0f\xfc\x66\x74\x22\x5c\xa7\xd5\x3f\xca\x1b\xe0\xdb\xe1\xce\xce\xae\x1a\x52\x88\x09\xd7\xce\x84\x20\x05\xf0\x91\x44\xa0\x66\xb2\x65\x19\xfa\x67\x1d\x9c\x77\xf1\x29\x0e\x6b\xcd\x04\xb6\x2f\xe7\x29\xdb\x7a\x89\x70\x48\x9b\xd3\x81\x6e\x72\x52\x04\x3f\x55\xb9\xb3\x2a\xd1\x6c\xb1\x67\x8e\xee\xa2\x2f\xd8\x2b\x07\x67\xe8\x63\xf7\x31\x3e\x90\xd2\x33\x9e\x37\xfa\x99\xec\xb6\x7c\x68\x12\x0c\xf8\x17\x24\xb8\x01\xc7\xf9\x81\x7e\x85\xa1\x5b\x31\x27\xcd\x08\x78\x61\x4a\x17\x9c\x5b\x66\xb6\x7c\x26\xdc\xc2\x74\x09\x15\x43\x10\x6f\x31\x01\x8b\x51\x9f\x18\x20\x53\x8e\x71\x31\x7c\xda\x19\xd3\x55\xb3\x4f\xd7\x55\xfd\xb1\x53\x6c\x0e\x8d\x36\xb0\x47\x11\x11\xee\xc4\x5d\x48\x3e\xc7\xde\x49\x76\xba\x34\x58\xe1\x76\x06\x25\xe7\x6c\xc7\x48\x9e\x84\xf5\x2a\xb7\x9d\x83\x5d\x97\x2c\x26\x83\xa9\xd9\x99\x1d\x8d\xb2\x69\x3a\xb5\x7e\x7a\x26\xc2\x69\x30\x92\x28\x94\xe2\xdc\x41\xe8\x94\x1c\xdb\x49\x21\xd6\x54\x62\x67\x7b\xd6\x01\xac\xd0\xac\xda\x88\xb7\xdf\x2f\x76\xf2\x87\xf9\x71\xda\x01\xb2\xe1\x4b\x12\xf7\x3e\x3c\xf4\x78\xdb\xd8\xb9\xa2\x71\x43\xcb\x3c\xb2\x4d\x5f\x30\x80\x2d\x3b\xea\xec\x90\x3e\xb4\x02\xb3\xdf\xdf\x41\x26\x46\x04\xe1\x59\x90\x4c\xbc\x63\x10\xcd\x3a\x12\xed\x4e\xf4\x24\xc2\xe5\x33\x66\x83\xfc\xb7\x38\xb5\x73\x46\x02\x56\xb0\xb3\x01\x88\x2a\xe0\x11\xe4\xa4\x04\x6d\x6d\x1d\x94\x9e\x07\xbd\x1f\xad\x15\x2b\xb7\x27\x2c\x84\x03\x57\xea\x2e\x66\xe6\xbe\xc3\x66\x54\x39\x02\x84\x9f\x85\xf8\x9a\xd4\x38\x3f\x94\x2a\x08\x55\x50\x30\x3a\xaf\x57\x1c\x0b\xf7\x61\xeb\xbf\x38\x1b\x3a\x00\xf5\x37\x8c\xf5\xc7\xd2\x9c\x16\x42\x46\xb6\x6d\x89\x3c\x68\xa3\x1d\xd8\xcb\x46\x2c\x2c\x62\x57\xe0\x56\x0d\x4e\xe0\x3d\x97\x22\x8d\x51\xeb\x62\x7e\x8f\x2f\x4b\x71\x36\x1f\xa2\x63\x16\x75\x35\x59\x99\xb3\xcb\x15\x16\xed\x3a\x49\x3f\x84\x71\xe9\x70\x4f\x35\x65\x00\x60\xc3\x51\x06\xdf\x4f\x58\xff\x30\x1a\x15\x3b\x8c\xff\x56\xb5\x78\x40\xb8\x73\xb9\x88\x81\xa4\xa7\xe0\x28\x34\x6f\x62\x94\x36\x7e\xf2\xd3\xb0\x71\x3f\xe1\x3f\x0f\xec\xd9\x32\xb8\x98\xde\xbf\x49\xa8\x4b\xa0\xc6\xd2\xd9\x5a\x0a\x4c\xf3\xc0\x02\xc6\x60\x21\x88\x9a\x17\x5d\x72\x16\x19\xdc\x61\x3a\xff\x2a\x23\x3b\xef\xdd\xff\x04\xfb\x7a\xd4\x96\xb3\xaf\xfb\x5e\x0e\x96\x03\x77\x6f\xb0\x73\x8e\x16\x06\x65\x40\x8e\x50\x92\x0e\xa4\x03\x25\x6a\x27\x24\x70\x33\xa2\x9b\x30\x86\x28\x09\xa2\x84\x52\x03\xb6\x10\x16\x54\xe1\x3d\x04\xd7\x3f\x51\x54\xba\x91\x11\x38\x9e\xf8\x63\x68\x62\x84\x15\x81\x85\x7b\x1e\x6d\xcc\x22\xc5\xaa\x66\xb7\x61\x44\xc8\xd9\xb9\xf3\xe4\x1a\x1d\x8f\x1d\xa9\xfa\xb3\xaa\x96\x2b\x1a\x57\xb5\xe1\x73\x63\x90\x93\x1d\x4e\x7a\xed\x94\x7f\x11\x43\x69\x96\x35\xdb\xa2\xb8\x05\x71\xdd\x72\x1b\xcc\x8f\x5d\xdf\x36\xf5\xf2\xd9\x69\xc3\x6a\x23\x5b\x74\x78\x13\xfc\xe9\xc7\x27\x9a\x4e\x4c\x93\xe7\x90\xfd\xfc\x5e\x56\xfd\xab\xdd\xfc\x41\x97\x2e\xd9\xf1\x14\x27\x2a\x79\xe0\x8e\xaa\xce\x02\xe2\x57\xb7\xaf\x1d\x5a\xe0\x9c\x4a\x0b\xbd\x6b\xd6\xb4\x4a\xe2\x22\xcd\x66\x23\xf3\x4b\x1b\xc0\x46\x20\xd1\x7f\xf8\x17\x94\x35\x30\x57\xb6\x8a\x1f\xaa\x70\xe6\xc8\xdc\xcf\x8f\x4e\x9b\x89\x7b\x91\x9d\x44\x05\x2e\x06\xc6\xb1\x69\xdd\x07\xdb\x06\xdb\x48\x52\x57\x0c\x82\xc2\xb8\x18\x26\x92\xcd\x4e\xde\x44\x63\x46\x16\x68\x02\xa8\xc3\xca\x53\x51\xea\x89\x48\x4c\x9c\x66\x6d\x8a\xac\x50\xb2\xb1\x5a\x48\x2b\xa0\x5f\xde\x2b\xcc\x24\x0b\xc1\xd7\x1b\x73\x98\x60\x07\xab\x5c\x19\x9b\x8c\x5e\xd9\x9a\x8d\x20\x60\x6c\x8a\x13\xcf\xd9\x86\x30\x53\xbc\xcd\x7a\x11\x32\x35\x71\x4c\x12\xc6\x26\x24\x49\x9a\x06\xb3\xed\x2f\x64\x6a\xa3\x76\xfd\xc0\xad\xb9\x2f\xe0\x6b\x18\xd3\x31\xd0\x41\x63\x81\x6d\x44\x67\xea\x8d\x5a\x42\x90\xc1\x4e\xad\x5e\xeb\x79\xdb\xe8\x79\x57\x6a\x89\x98\x13\x52\x73\xfa\x32\x5a\xcc\xdc\x09\xb8\x21\x8a\x9b\x0d\x8c\x2b\xff\x2d\x2d\x72\xe2\x04\x7d\xf3\x91\x88\x69\x5c\x04\xe9\x87\x0a\x39\x0e\x63\xba\x86\xf2\x97\x63\xcf\x1e\x86\xda\x87\x1e\x32\x1f\x64\x31\x01\x67\xd1\x5a\x9d\xab\x93\x58\x86\xe0\xe2\xcd\x5e\x21\x85\x70\x12\x65\x04\xea\xcf\xe3\x38\x00\x49\x58\x35\x03\xc1\x7c\xcb\x1f\xfa\x3b\x9c\x96\xa8\xfe\x60\xb9\x10\x03\xdf\xd5\x01\x03\x15\x72\xc8\x04\x15\x6e\x90\x17\xa4\x4a\xc2\x9f\xf1\x58\x2a\xbc\xe2\xec\x4e\x9d\x79\xf5\xac\xde\x8a\xbc\xd4\x44\xac\x01\x00\x0a\xc2\x3b\x87\x08\xfc\xf2\x56\x05\xab\x45\xfd\x30\xd4\x53\x11\x73\x40\x54\x67\x2c\x73\x25\x7e\x19\xe9\xf1\xc5\x6b\xda\x33\x5c\x83\x56\xe9\xcf\x39\x49\xd2\xd2\x85\xbd\xb3\x68\x30\xb1\x0d\x79\xae\x93\xf9\xa5\xb8\x19\x50\x51\x12\x4b\xdc\x0d\x6a\x34\x20\x19\x4c\x9c\x2f\x38\x2e\xbb\xc0\xca\x23\xad\xa1\x27\xc3\xdd\xca\x0d\xf5\x1b\xc2\xac\xb3\x35\xf2\xd2\xda\xde\x30\xff\x0f\x5c\xb0\x72\xc1\xd0\x1e\x1c\x7c\xe0\xfb\x45\x90\xb0\x74\xa4\xbc\x84\x5b\xc7\x3f\xac\xc3\xca\x41\xc2\xa9\x0c\xd9\xc8\xe4\x64\x7a\xa6\x32\x59\x6c\x8a\xb3\x6c\xad\x9e\x78\xcc\x77\xf1\x19\x26\x7c\xaf\x87\xdf\xc2\x65\xc2\x51\x05\xa4\x7c\x31\xd9\xac\xa3\x68\x69\x7a\xc0\x6f\x52\xd9\x08\xc5\x8b\x81\x5b\x11\xed\x42\x29\x22\x70\x0d\xa6\x5a\xf6\xe5\x9a\x7d\x7a\xb5\x75\x7f\x5c\xa9\x43\x8f\x4e\xf0\x15\x28\xd0\x44\x4b\x2f\xe2\x0a\x2a\x42\x33\x9d\x55\x46\x10\xb4\xdc\x70\x68\x2f\xaa\xbc\xed\xd7\x27\xc7\x6f\xdf\x9e\x5f\xf9\x6d\x9a\xd7\x41\x5d\x90\x30\xf1\x8d\xf3\x82\x1b\xf5\xcb\x7c\xe1\xdc\x04\xc6\x10\xde\x1b\x4f\x4b\x1c\x82\x0b\xd9\x94\xd5\x4e\x9f\xcb\x06\xbc\xa7\xe1\xbe\x18\x2f\x8f\xfa\x5f\x1c\x9a\xbf\xe4\x3d\xcb\x37\x1f\x12\x33\x76\x9f\xf3\xff\x24\x3c\x2f\x08\xce\x68\xb0\xf4\xfc\x51\x8e\xf7\xb8\xa7\x0e\x34\xc5\xe8\xfc\x00\x4c\x7a\x97\x43\x35\x22\xdc\x37\xd8\x2b\xae\x53\x1c\x4e\x1f\xb1\x39\xb4\x69\xb1\x60\x18\xb9\xbb\xba\xfa\x6d\x07\x01\x8d\x15\x23\x62\x1e\xec\x5c\x39\xaf\xd6\xb2\xa1\xfc\xd9\xfd\x90\x74\xfe\x1a\x78\x85\x07\x8d\xd3\xaf\x1f\xbb\x2d\xfb\xa6\xd2\xde\xd0\x3d\xbd\xb7\xab\x52\xb6\xae\xb1\x7f\xd6\xbd\x67\xa4\xc6\xf0\x91\x35\x4d\x1f\x41\x3c\x0b\xaa\xe3\x2b\x61\xbe\xce\x87\xaa\xb1\x52\x7f\xb1\x8e\x3e\xe5\xeb\x5d\x6c\xb8\xe0\x75\xc3\x65\xba\x47\x09\x8a\xaa\xf5\x76\x78\x9d\x0c\x79\xe6\x17\xce\x79\x70\x0e\x47\xea\xc4\x50\x82\x8b\x1f\xf9\xba\x17\xbb\x6d\x1a\xa0\x82\xd7\x25\x5a\x2d\x43\x74\xeb\xf9\x9a\x5b\xfe\xdd\xa2\xad\xe0\xdc\x2e\xe9\x7c\x79\x30\x0d\x2e\x0e\xba\x44\xdf\xee\x25\x11\x0d\x8d\x69\xb6\xac\x7a\xd2\x57\xf9\x0a\x13\x5c\xa1\x13\x5a\x73\xb4\x0d\xe0\xda\xa1\x7c\x59\xca\xa8\x28\xef\x98\x02\x0b\x7b\x13\xcb\x69\x4a\x3e\xfc\xa1\xbf\x27\x4a\x29\xa0\x5d\x7a\xe4\xa3\x83\x86\xf4\xf5\x8a\x57\xcd\x6b\xfa\x47\x3b\xa2\xc8\xcf\xf1\x1c\x8b\x70\x88\x4a\xd4\x38\x22\x1a\xac\xab\x47\x1d\xd4\x74\x56\xd4\x33\x2d\x98\x17\xf5\x9e\x56\xf3\x33\xd0\x86\x84\xf4\x39\x12\xf4\xae\x21\xf5\x84\x66\xe1\x93\xc8\x12\x72\xfb\xf0\xb5\xa5\x3c\x64\xfd\xe9\xd1\x01\xa3\xec\xf0\x64\xf3\xeb\x6d\xb3\xc3\x1a\x6e\x37\xd1\xb2\xb3\x4e\xc6\x06\xf7\x54\xdd\xba\x22\x87\x80\x44\xef\x42\xda\x95\x30\x77\x19\x52\xee\x84\x85\xb9\x87\x97\x95\xd9\x0f\xf2\x78\x75\xc1\x23\x72\x4e\xab\xe3\xde\x33\xc1\x99\x2d\x2d\xab\x55\xa7\xe0\x4c\xaf\x63\x06\x73\xa0\x10\x33\x5c\xdf\xc8\x4c\x7d\x64\x6f\x17\x56\xcd\xd4\x14\x32\x0d\x15\x71\x42\x95\x46\xf2\xe0\x4a\xc8\x93\x97\xaf\xaf\x70\x21\x84\x66\x0c\x0e\xfc\x76\xeb\x85\x1d\x66\x67\xae\x4e\x3b\x5c\x03\x88\xf9\xd8\xbe\x96\x44\x2d\xc7\x89\xd0\xfb\xe2\x73\x08\x73\xdc\xc9\xc3\xdb\x43\x89\x2c\x4d\x5b\xef\xba\x50\xaf\xdd\x8a\xc7\x75\x10\xf6\x63\x8f\x97\x3a\x6e\xa3\x06\x98\x0e\xdd\xca\x98\x31\x17\xbc\xb3\x6c\x6f\x32\xb6\x8f\x62\x33\xd9\xde\xf8\x84\x60\xd7\xa5\x8c\x2a\x02\x76\x1e\x03\x17\xc0\xec\xbf\xff\x9f\xff\xfb\xf8\x84\x3b\x7e\xd2\xb7\x6b\xfa\x52\xa1\x26\x81\x23\x17\xbb\xce\x41\xc4\x91\x06\x90\xb9\xae\xb6\x72\x5b\x7a\x81\x9a\x5d\x13\xe9\xf9\xbf\x24\x32\x1d\x8e\x5a\x40\x74\xb8\x42\xcd\x19\xb4\x1d\xfd\x04\xae\xdd\xdf\x7e\x91\x92\x2f\x5b\xb3\xee\xf9\x0d\x49\xc3\x7b\xf5\x47\xf8\x45\xbe\x12\xfb\xfd\x17\xfc\xda\xb1\x93\xb0\x38\x3f\xf0\x47\xa2\xbf\xf8\xc0\x24\xd1\xdb\xbc\xcc\x5e\x13\x56\x45\x94\x36\x48\x0d\x09\x79\xe1\x6f\x3b\x1e\xa5\x68\xd0\x4f\xd3\x3f\xf1\xaf\x14\x17\x39\x75\x28\xcc\x62\x1c\xbf\x00\x05\x0e\x98\x4e\xe8\xf4\x0a\x1e\xaa\xae\xe7\x9e\xbf\x88\x8f\x5c\x30\x93\xea\x1c\x67\x80\x7c\x47\x25\xd9\xee\xd8\xa5\x86\x69\xc8\x5a\xbb\xa0\x14\x5c\xf8\xe1\x44\xde\xc9\x83\x1a\xdc\x69\x5a\x54\x07\x9a\xa7\xee\xca\x85\xad\xc9\x2d\x10\x59\xde\x1e\xc4\x3e\xc1\xf3\x9c\x86\xac\xe2\x68\x92\x38\xce\xa7\x1c\xaf\x6f\x4b\x48\xd9\xf4\x4f\xf3\x70\x45\xb1\xcf\x71\x04\x23\x40\xb4\x02\xfe\x53\x7a\x45\x29\x0a\x51\x86\x59\x89\x82\x22\x7f\x78\x91\x98\xaf\x1d\x8f\xaf\x1b\xaf\xf3\x79\x89\xe4\x37\xf8\xa0\x75\x49\x8c\xbc\x27\xdc\xc3\x38\xe4\x7e\x24\x3c\xf8\xaa\x17\x1a\xc7\x57\xa2\xde\xfc\x72\xf8\x26\x9f\x09\x8e\x36\xda\x9c\x5d\x5b\xdf\xe5\x7b\xf9\x49\x88\xd1\xfb\xc8\xaf\xe4\x4b\x92\xe1\x28\x2d\xa0\xf0\x93\x76\xf0\x10\x9b\x74\xa1\x5d\xd8\x77\x62\x1d\x98\x8d\x3b\x62\x39\x83\xeb\xd0\xe9\x62\x90\x7f\x2d\xca\xdf\x0b\x56\xfd\x2c\x2d\x07\x93\x4e\xcd\x7d\xcb\xa5\x6f\x68\xb5\x8a\xfd\xff\x4c\xbe\x5c\x4e\x21\xfe\x90\xa7\xd8\xe2\x34\xcd\x1c\xd7\xcf\xf9\xbf\x4b\x25\x4a\xd4\x85\x49\xff\x9d\x13\xb8\x44\x0b\x60\xad\x4f\xee\x5f\xfb\xe4\xd9\x70\x2e\x82\xac\x9a\xe5\x85\x39\x0e\x5a\x68\x51\x21\x3f\xcc\x5e\x10\xfe\xdb\xcc\x95\x3f\xe1\x9f\xe9\x7a\x54\x8b\x9b\xdc\x70\x6e\x07\xcd\x84\x30\xd4\xd4\x24\x98\x34\x17\x42\x4a\x8b\x9b\x29\x60\x92\xf4\xeb\x08\xf6\x9c\x12\x42\xd2\x8a\x2a\x66\x19\x75\x50\x33\xc4\xd6\x69\x78\xda\xff\xf8\x8a\x10\x04\x77\xfd\x1c\xf7\x33\x00\x92\x6e\xe6\x13\xa0\x6c\x3f\xf1\x70\x34\xf0\x21\x90\x9a\xf8\x1c\xa7\x19\xce\x9e\x9f\x1f\x9a\xda\xe1\x04\x49\x66\x46\x82\xd1\xa2\x74\xd7\x1c\x00\x04\xd1\x82\x6f\xee\x47\xcd\xb8\xca\xb4\xb1\xa8\x3e\x20\xb4\xcf\xe7\x94\x7d\xbf\x00\x36\x5d\x61\xc6\x95\xcf\x12\xd4\x59\x26\x2d\x2e\x76\xec\xb4\x9a\xa3\x2a\xc3\x3c\x92\x82\x32\x91\xeb\x04\x11\x4e\xc6\x5b\x4f\x94\xb8\x95\xa2\x86\x30\x07\x6b\x1e\xd1\x8d\x96\xbc\x65\x7a\x3d\x04\xdf\x75\x3f\x5c\xf5\x81\x72\x2a\x86\x41\xf8\x1a\xe7\xcc\xf8\x32\x8c\xe3\x9f\xc7\xf0\xc2\x00\x0f\x9d\x02\xed\x34\x82\x07\xed\xde\x2c\x36\xb8\xae\x16\x6a\x4c\x99\x2a\x24\xb3\x5c\x64\xf3\x1b\x2d\x23\xf3\x8c\xeb\x85\x07\x8a\x6c\xd8\x91\x03\xfb\xba\x16\x39\x73\x09\x13\x45\x3a\xbd\x9e\xcc\xf7\x83\xc7\x39\x33\xde\x82\xe0\xe8\xc1\xbc\xa9\x9b\x04\x61\x2a\x05\xc8\x39\x3e\xa6\x40\xc4\xc4\xa8\x46\x02\xde\x05\xc4\xc3\xde\x0e\x25\x27\x1b\x66\xef\x15\x57\xe2\x0d\x7c\x59\xda\x2f\x28\xc7\x8e\x9e\xcc\x57\xc5\xa2\x7c\xd6\xc0\x0d\x14\x3f\x6f\x69\xc7\x17\x90\x86\x46\x25\x78\x25\x61\x16\x08\x44\xbe\xd3\xfb\xef\xbf\xfd\xd0\xf1\x34\x78\x63\xfd\xfb\xef\x3e\x90\xa0\x74\xff\xfd\xf7\x1f\x60\xa5\x1f\x15\xce\xae\xd9\x48\x35\xae\x01\x05\x0d\x7a\xdb\x96\x9f\xaa\x66\xd7\x89\x28\x88\x4f\xcf\x1f\x3e\xcb\x54\x7c\xee\xe3\x25\xee\xae\x49\x0f\x56\x78\xe1\xb2\xe2\x15\x5e\xef\x36\x99\x8e\xb1\x13\x0e\x60\xbf\x5c\x71\xc3\x40\x96\x73\x93\xbf\xba\xdf\x3c\xdc\xaa\xe0\xc1\x52\xe7\x4d\x3e\xfc\x83\xfc\x7a\x86\x81\xf0\xd0\x7f\x75\x2d\x35\x81\x7d\xff\x4a\x6e\x7a\xb3\x68\xee\x4e\x1a\x6e\xca\x7e\x16\x73\x25\x8b\x3a\x82\x2e\xc7\x59\xda\x8b\x18\x44\x9d\x61\x91\x63\xe0\x6d\x09\xc4\x18\xdc\x3b\xfc\x1c\x64\x0e\x2b\x13\xa0\xa9\xda\x94\xd5\x7a\x2a\x39\x19\xe4\x0b\xae\x15\x53\xb2\x0d\x7d\x1d\x9a\xa4\x4b\xae\x0e\xfb\xf9\x95\xb5\x88\x3c\x41\xa2\xea\xb5\xab\xe7\x9a\x30\x5e\x2f\x60\x0b\x86\xb9\x9c\x87\xaa\xee\x90\x02\xfd\x95\x4d\x6c\x1b\x8d\x99\x74\x81\x0f\x4b\x96\x4b\xac\xea\xbb\xee\x68\x33\x32\x54\x69\xa2\x5d\x6b\x22\x45\x80\x74\x2c\x70\x6c\xbb\xca\xc4\x27\x26\x9c\x14\x81\x56\x75\x66\x2e\xf0\xaa\x2b\x10\xb3\x64\x37\x2f\x19\x11\x91\x11\xdf\xde\x54\xdb\xe7\xc1\x9b\x66\xd1\x81\x5a\x70\xd7\x48\xa7\x34\x5c\xad\x65\x01\x83\xc6\xcf\xf4\xcf\xe1\x75\xe0\xba\x62\xfd\xe3\x56\xa8\xfb\xf4\xcf\x92\x64\x5f\xb4\x45\xe7\xf7\xed\x38\x7f\xd1\xac\x1b\xbf\xaf\xe3\xd7\x10\x40\x6c\x91\xf7\x8b\x81\x6c\x26\xd9\x9e\xb6\x75\xf5\x82\x70\xe3\x9d\x47\x20\x27\x06\x23\x19\x03\xc7\xac\x38\xd3\xdd\xc9\x90\x0e\xe2\x66\x86\xc5\x06\x18\xd7\xa2\xee\x4d\x00\x75\xc6\xd0\x49\xb0\x29\xab\xb7\x48\x19\xa1\x95\x9b\x65\xf6\xd0\x3d\x80\xcf\x79\x03\xc3\xb7\xd6\x7c\xd8\xce\x3d\xdd\xb4\x57\xbd\xa5\xa7\x77\x1c\xa8\x89\x12\xc4\x2b\x6a\x9b\x13\xe9\x89\xbf\x88\xea\x12\x9c\xa2\x6e\x32\xdd\x34\x9c\x0d\xd4\x80\xfb\x7d\x93\x3a\x2d\x0c\x01\xbd\x78\x23\xc8\x53\x2e\x6c\xb7\xd1\x40\xfe\x5a\x7e\x36\xa8\x16\xd7\x8f\x9f\xc2\x33\x6d\xd8\xa0\xb6\xf0\x34\xd5\x2f\xcd\xd7\x2d\xce\x29\x8e\x2f\xf0\x5b\x3b\xa1\x30\xc4\x9b\xdb\xb2\xdb\xad\xb1\x07\xe0\x20\x50\x7e\x5c\xcb\x11\x96\x01\x21\x26\x92\x98\x1c\xac\xad\x80\x91\x4b\xc4\x24\xf5\x4c\xe0\xdc\x79\xb9\xc8\xe1\x84\x9a\x2b\x6b\x5e\x71\x8c\x26\x3f\x7a\x02\xe1\x08\x0f\x56\x3f\x7b\xf5\x86\x71\xae\x98\x6d\xb9\xea\xcd\xb2\x32\xc0\xd4\xbc\xec\xf7\x3c\x75\xe2\x29\xc0\xc8\x15\xb3\x45\xf7\x43\xb8\x19\x13\x07\x7b\x82\x36\x9e\xf0\x8e\x5c\x28\x37\xfb\x03\x7e\x08\x4f\x53\x54\x0e\xe4\xf5\x50\xed\x55\x10\x2c\x68\x9b\x54\xa6\x38\x9c\x7f\x6d\x4a\x6a\x14\xbb\x78\x61\x2a\xa4\xf0\xd6\x1f\xf9\xea\x98\x31\x4f\x7c\x13\x11\xb3\x27\x80\xa6\x7f\xef\xd2\xb5\x7e\xd4\xa4\x9b\xb5\x35\x23\x69\xff\x58\xf5\x54\xfa\x3f\x7f\x30\x1a\x25\x69\x3f\x0b\xd9\x25\xe8\xd3\xff\x8c\xa0\x86\x9a\xb3\xcf\x13\xfb\x2d\x08\xaa\x34\x2f\xc1\x42\xf3\x75\x63\x25\x52\x11\xd4\xb8\x8b\x00\x92\xa1\xc7\x5c\xe1\x4c\x52\xaf\x49\x8b\xe7\xb5\xae\xd8\x74\xa7\x3d\xb3\x08\x35\x90\x62\x5b\xdf\x12\x53\x8d\xcb\xb9\x1a\x55\xeb\x16\xb7\xc2\xc4\x6b\x5b\xaa\xe0\x88\x50\xb4\x3e\xec\x8c\x8f\x7e\xb9\x13\x84\xe9\xba\x14\xb6\xd8\x79\xc7\x6d\xc6\x22\x15\x82\x51\x2b\x60\x59\x6e\xf9\xe6\x75\x06\x23\x39\xba\x11\x86\x90\x60\x33\xa8\x0d\x9c\x21\x1e\x0f\x46\x2f\xd6\xa8\x41\x57\x82\x6a\x61\x7f\x3e\x54\xf3\x83\xfe\xf6\xba\x6d\x85\xca\x95\x07\x5e\x90\x7c\x18\xb6\xae\x38\x52\x8f\x2d\x2d\x33\x4d\x1c\x6c\x72\x2a\xaa\x58\x68\xf7\x22\x1c\x35\x12\x86\x00\x1e\x2d\x55\x1f\x4d\xe8\x70\xc9\x63\x72\xa7\x56\x1e\x08\x6a\x57\xeb\x02\x41\x29\x98\xde\x98\x04\x7f\x1d\x8f\x57\x09\xed\xd0\x58\x43\x96\x52\xcb\xae\x19\xcd\xf5\xc3\x3f\xdc\x2f\x1e\xc9\x22\x83\x37\xcb\xe8\x14\x83\x13\x05\x9d\xe1\x0e\xc5\x63\xae\x3a\xdc\x13\x66\x66\xc8\x8c\x9c\x81\xe8\x7b\xf6\x6b\x12\x18\xca\x02\x93\x8e\x57\x81\x83\xec\x09\x7d\x3d\xc8\x9d\xd6\xd9\x87\x00\x85\xb7\x84\xdc\xef\xa2\xb6\x9b\x8c\x48\x37\x53\x85\x8a\xd8\x3d\x13\x32\x7e\x0d\xbb\x60\x9a\xc4\xb0\x6a\x27\x93\xc7\x23\xa2\xad\x75\xce\x3c\x5e\x6e\xbf\x0a\x0f\x0d\x8c\x83\x44\x02\x7a\x43\x42\x4f\x6d\x75\x7f\x8e\xaa\x1f\xb0\xe0\x49\xec\x98\x54\x85\x2b\x9a\x61\xc6\xc4\x61\x5a\x98\xeb\x07\x7d\x4a\x23\x66\x73\x5c\xfa\xd0\x22\x4c\x3d\x8a\x07\x59\x8a\x7b\x30\xff\x0f\x33\x5c\x58\x10\xad\x2a\x93\xa9\xd7\x1a\x51\xb9\xa6\xf8\x70\x19\x47\xee\x82\xe3\x83\x1b\xaa\xee\xf1\x66\xf3\xb8\x28\x1e\x4c\x8c\x3a\x90\x4c\xdc\xb0\x07\x3e\x4e\x6a\x04\x18\xb0\xb1\xa0\xa6\x40\xcc\x9b\xc6\x1d\x03\x44\xf3\xf4\x0b\xef\xd0\x25\x1f\x53\xa5\x85\xc7\x9b\x90\xae\x9f\xbb\x8e\xd9\x73\xb3\x25\xb4\x3b\xbf\x09\x66\x15\x72\x71\x2e\x1c\xc9\x40\x40\x0e\xb2\x06\xf7\x7b\x6f\xed\x9e\x3b\x1c\x51\x69\x8b\x58\xeb\xe6\x00\x4a\x24\x2a\xdc\x41\x84\x04\x82\xa9\x47\xaa\x13\x4e\x27\x00\xa7\x44\x53\xdf\xf6\x3f\x53\x3c\x9d\x6a\x7c\x8a\x04\xee\x12\x50\xa7\x22\x90\x5a\xda\x4c\xe8\x1b\xf7\x31\xe4\xcb\x67\x05\xb1\x4d\x54\x06\x08\x7e\x7b\xb0\x55\xd3\x7c\x94\xf8\x2e\x73\x7c\xfa\x9c\x25\x47\x34\x94\x4c\x8e\xdd\xf7\x2a\xce\x25\xb1\xaf\x5a\x84\x91\x4e\x9f\x73\xc2\x44\x17\x0b\x9e\xe3\x36\xfb\xbb\x98\x04\x4f\xf1\x2b\xfd\x5f\x4c\x18\x0e\x44\x2f\x53\x9c\x5b\x3c\x9f\x4b\xbe\x52\xe1\x72\xd5\x0d\x3e\x68\x4a\xbd\xf6\xc7\x6d\xa9\x9f\x38\xb3\xf3\x2f\xbb\xea\x30\x75\xc5\x21\xbe\x77\x39\xf3\xb5\xbb\x9b\x5b\x7c\x22\xa3\x9f\xe7\x76\xf9\x6b\x0c\xe6\xce\x43\xfd\x85\xaf\xf8\x44\x88\xbd\xb4\x6a\xf1\xef\xc6\xa5\x2f\xbe\x1c\xd6\x60\xc3\x0a\x6f\x9a\x11\xdd\xb9\x60\x81\xaa\xf0\x42\x09\x87\xcf\x53\x17\x74\x0f\x51\x72\x71\xed\x93\xa5\xa6\x4e\x4e\xbf\xf5\xfa\x9a\x5c\x82\x10\x45\x3d\x77\xca\x73\x87\xc3\xfe\x89\xad\x0f\x26\x68\x17\x6b\x45\x6e\x51\x58\x57\x91\x17\x4c\xef\xe0\xe6\x0f\x30\x1d\x1c\x28\x0f\x00\x0d\x29\xe7\xc4\x3f\xc4\x29\x4f\x8a\xe5\xd1\xcd\xb9\x3e\x30\x20\x89\x23\x0d\x9f\x93\xb9\x1e\x31\x7b\x2a\xdb\x1e\x77\xd6\xc6\x68\x67\x1f\x7a\x5a\x40\xd9\xb7\xd4\xcc\x63\xc8\x4a\x12\xde\x10\x83\x90\xf5\x57\x5d\x07\xf8\x80\x6f\x21\xfb\x0a\x7e\xaa\x8a\x1d\x51\x1f\xcf\xc5\x6d\xf5\x7e\x17\xd7\x4b\x2b\x1e\xe7\xd8\x07\xeb\x1e\xcc\x27\x84\x08\x17\xfb\x16\x97\x16\xaf\xfd\x5d\xdc\x6e\xaa\x65\x66\x42\xce\xd8\xa0\x38\xc0\x9d\xda\xd4\x5f\x4a\x0b\x59\x95\xf0\x21\x78\x37\x89\x03\xb2\x89\x49\x3f\xa4\xa3\xf9\x88\xb1\x25\x17\x1d\x9d\x54\x75\xa7\x7f\xd5\x88\x10\x06\x58\x1a\xd4\x07\x84\x05\x5e\x50\x36\xfb\x3c\x7c\x8e\x99\xa6\x71\x79\x4d\x3e\x0f\x49\xa2\xaa\x17\xeb\x1d\xfc\x39\x99\x19\xb1\x50\x7f\xa4\x3c\xf8\xc8\x19\x35\xe5\x7a\x57\xe0\x30\xe7\x79\x60\x13\x61\x76\xd0\x57\x38\x02\x08\x02\x5e\x8f\x9a\xf6\xb7\xce\x8e\xbc\x83\x91\xf3\xbc\x60\xb9\x93\xfd\xaa\xea\xa2\xdc\x72\xd0\x46\x76\xb0\xbd\x96\xdd\x56\x78\xfe\x1d\xad\x7e\x77\x5b\xab\xe2\x17\x35\xd5\xac\x79\xeb\xe9\x35\x6e\x2c\x5a\x8e\xb4\x7c\x47\x6b\xdf\x5b\x6b\xe1\x96\xf5\xb1\x2c\xb7\x41\x13\x71\xf7\x83\xdb\x0b\x60\x9e\xb1\xe3\xd3\x04\x47\xd3\x0b\x7a\x76\xa3\xf7\x00\x13\x8f\xa2\x89\xf8\xa3\x79\xdd\xcd\xee\xb8\xcc\x34\x5e\x20\x66\x81\x44\x78\x70\x58\x21\x1d\x0c\x5b\x60\xb2\x80\x73\xc3\x7f\xd4\x58\xf2\x44\x55\xe2\x97\x3a\xf0\xf6\xf1\x57\x7c\x5d\xd7\xac\x40\x7b\xb8\x7b\xb1\xeb\x61\x3a\xe1\x72\xe8\x40\xd9\xaf\x3b\x24\xd6\x54\xbc\xf9\x79\x3c\x27\x41\xf2\xe1\x02\x03\x1f\xfa\xa8\xae\xd8\x87\x3e\xe8\xa0\x50\xd1\xa1\x7a\x4e\x26\xeb\x50\xca\x0b\xa7\x96\x6f\xf2\x57\xb8\xb3\x9d\x69\x68\x2c\x0d\x6d\x3f\xbc\x34\xad\xb9\xfb\x55\x13\x04\x37\x11\xc7\x7e\xec\x45\x61\x47\x66\xf1\x58\xf7\x22\x9e\x28\x5e\x54\x58\x19\x48\x31\xb6\xb7\x98\x28\x03\x95\x77\xb3\xa3\xad\x73\x5d\x7d\x84\xa1\x8a\x08\x53\xa2\xe4\x9e\x5f\x5e\xc1\x3a\x45\x0b\x80\xf6\xd1\x25\xf3\xdd\xf4\x2f\xab\xb2\x46\xe0\x46\x0e\x56\xab\x8c\x68\xb1\xe0\xfb\x38\x55\xad\xb1\xed\xf6\xa5\x79\x49\xd7\xc5\x5a\xd8\x56\x78\x63\xcb\xa4\x07\xb1\x52\xa5\x08\x48\xcb\x2b\xad\xdb\x96\x0b\x92\x89\x67\x7c\xea\xd4\xd6\x88\xf2\xef\x62\x8f\xdf\xea\x8b\xe3\x46\x02\xa7\x18\x36\x66\x05\x68\x51\x94\x84\xc6\x59\xdd\x83\x47\xe8\x19\x82\x4e\x49\xc1\x86\xe1\xdb\x64\x60\xf0\x57\x71\xce\xad\x98\x5d\xa7\xea\xca\x71\xdb\x9d\x87\x83\x7d\x08\x63\x0b\x4a\xd3\x77\x88\xc2\xc3\xaa\x66\xde\xae\x60\xc6\x84\x09\x90\x6e\xdb\x88\xbb\xe4\x3b\xfd\x1c\x03\x89\xb6\xc4\x3d\x79\x25\x5f\x63\x90\xad\x06\xfe\x71\x21\x80\xc6\x20\xf3\xa6\x60\xfd\xe7\x39\xfd\x1b\x0b\xd1\x2e\xa4\xbc\x49\xd2\x20\xce\x2d\x5f\x36\x97\x43\x5e\xce\x20\x74\x97\xeb\x6b\x09\x1c\xc0\x96\x23\xa8\x7b\x62\x88\x63\x27\x5d\x89\x89\xc9\x3e\x5d\xa8\x40\xaf\x8e\xe1\x56\x04\x62\x7c\x85\x56\x36\xbd\x66\x1a\xde\x1b\x1c\xf6\x09\x87\x06\xd6\xaf\xd7\x22\x83\x60\x1a\xa0\xdc\x4a\x40\xb6\x23\xde\x5a\x58\x2f\xb4\x63\x3c\xdb\x80\xb6\x12\x84\x8d\x2f\xfc\x10\x51\x23\x16\x87\x81\x88\x0c\x2b\x6e\x50\x81\x8f\xae\xc5\xaf\x06\xb1\x01\x61\xe3\x1e\xa9\x7f\x33\x23\x48\x3c\x9b\x47\x10\xfe\x90\x11\x40\x76\x93\x68\xb8\xcf\x28\xb8\xd7\x15\x5e\x45\xeb\x21\xe0\x28\x51\xac\x7f\x74\x54\x43\xab\x89\x95\x95\x39\x85\x19\x59\x03\x63\x26\xe3\x8a\x5d\x19\x83\xd5\xcd\xdb\x34\x09\x47\x22\x45\xb7\xe5\x32\x6f\x0b\x8b\x50\xa2\x9c\x86\x6f\x69\x80\xa3\x84\x17\x52\xf3\x35\x29\xdf\x5a\x05\x71\x46\x02\xf9\xc8\x5e\x49\x34\xdf\x2c\xe3\x98\xbd\x81\xa5\xc5\x42\xd8\x18\xdf\x89\x23\xe6\xb2\xdb\x32\xbf\x11\xe6\x65\xed\x60\xc8\x0f\xff\x78\x79\xfe\xf6\x28\xfd\xfc\x78\xbf\xdf\x3f\xe6\xe2\x8f\x77\xed\x9a\x6f\x8f\x15\x1c\x01\xe5\x7f\x9e\xbd\x39\x4a\xcb\x7e\xf1\x68\x46\x8a\x7a\x1b\x9b\xb7\xd4\x67\x13\xc7\x02\x4c\x5d\x2c\x3a\xfe\x7e\xf6\xa4\x2b\x46\xe3\x88\x87\x81\xb3\xc2\x0d\x92\x67\xcf\x7c\x2f\x74\x32\xc5\x07\xc3\x2b\x87\xe5\xa2\x2d\xe1\xba\x80\x8f\x20\x63\x4d\x3a\xc1\xd4\xcd\xf7\x21\x48\x45\xed\x68\x37\x5e\x2f\x34\x8e\xf9\x00\xc4\x4e\xea\x4e\x70\x46\xe7\x32\x31\x71\x6e\x5b\xe1\xd0\x6c\xdd\xaa\xd9\xad\x8b\x98\x63\x12\xce\x74\x22\xca\xe2\xa7\x61\x61\xb8\x16\x22\x10\xf1\xd3\xf4\x8f\x6c\x29\xe2\x89\x12\xda\xe2\x2c\xa3\x2d\x00\xcf\x86\x85\x11\x2b\x2f\x10\x8c\x69\x00\x12\x03\xd0\x04\x73\x9f\xe7\x84\xf3\x51\x25\xaa\xbf\xb1\xcf\x43\x9f\x6e\x9c\x3e\x07\x5a\x93\xea\xc6\x45\x62\x3b\xdd\x74\xb6\xe1\x45\x7c\x0d\x25\x18\x7a\xbe\x34\x23\xd6\x14\x1e\x52\xf1\xab\x9c\x44\x51\xc0\x1f\x01\xca\x5c\x24\x74\xf4\xf4\x6b\x17\x8c\x29\xd5\xe0\x90\xe5\x30\x23\x88\x16\x50\xf6\xb8\xa7\x3d\xb5\x16\x45\xa3\x76\xb3\xe6\x57\x8f\xf1\x37\xdd\xe1\x44\x32\x91\xab\x2d\x11\xf7\x00\xeb\x88\x65\xae\xfd\x70\x17\x1b\x8a\x5b\xca\x9b\xbc\x28\xa3\xbc\x69\xb4\x5d\x2b\xe0\xa0\x8d\xd1\x2e\xa9\xd2\xf1\x58\xe6\xf7\x2d\x1c\x12\x08\xc4\xc3\x26\xd3\x51\x5a\xc0\x14\xdc\x0f\x3c\x75\x69\xb1\x78\x65\xab\x14\x7c\x37\x5e\xa2\x8c\x10\x59\x47\x21\x47\x65\x41\x2d\x3e\x8f\x67\x10\x5c\x6b\x65\x17\x7e\x73\x77\x1f\x5d\xea\x0d\x45\x68\xa9\xd5\x2e\x68\xc9\x45\xb2\x41\xe6\xf0\xe1\x86\xe1\xca\x26\x59\x4d\x9e\xfe\x39\x91\xaf\x10\x5b\xdb\x75\x73\x63\xf7\x9e\x4f\xf1\x4b\x03\xa3\x84\x23\xf3\x60\x3a\x28\x0f\x19\x18\x5f\x9a\x2c\xae\xee\xaf\x41\x60\x4f\x15\x71\x6b\xd6\x77\x51\x94\x60\x42\x35\x26\x32\x78\x4f\x74\x6f\xe2\xea\xac\x83\x1a\x5e\xf2\x3d\x75\x2d\x1c\xb8\xe4\x1b\x17\x0d\x2f\xfa\x06\x45\xbf\xe0\xa2\x6f\x8c\xa4\xf1\x35\x5e\x3f\xd4\x2f\xb8\xc9\x3b\x35\xe8\xb1\x5c\x3b\x85\xf8\x89\x02\x53\xd2\x6d\x11\x8e\xed\x0b\x6e\xf4\x0e\x34\xdb\x2f\x11\x70\xa7\x7a\xe2\x51\x12\x20\xf7\x2e\x8b\x6f\x51\x5d\x5f\xcf\xe6\x6d\xb3\xef\xf8\xda\x2c\x5e\x41\x60\x2e\xcb\xbf\xd3\x4b\xfc\x16\x10\x3e\x86\x07\x51\xc8\x87\x24\xaa\xb7\xcf\x53\x3d\xd9\x93\x44\x9c\x81\x0e\x23\xb0\x9f\x52\x8e\x9c\x87\xbe\x25\x4d\xec\xd8\x72\x66\x52\x84\x36\xba\x7d\xc6\x5f\xb8\xf0\x0b\xeb\x33\x1b\x4b\x51\xe8\x92\x53\x14\x8c\x3f\x0d\xe1\xb6\x2b\xc1\xd1\x4c\x4e\x8c\x45\x7c\xf5\x96\x23\x10\x96\xc1\x11\x18\x11\x43\x05\xf9\xd4\x83\x84\x17\xfb\x08\xc2\x70\xe9\x21\x14\x41\x58\xf4\xcf\x5f\xbf\x95\x9f\xf0\x1e\xd7\x40\x3b\x70\x1f\xe7\x83\xeb\xc4\x7c\xd2\x67\x53\xbe\xe9\x96\x27\x97\x07\xc4\xcc\x61\xcf\x96\xe1\x97\x83\x28\xda\xfc\x1a\xc7\x40\xfc\xdf\xa5\x92\x0c\xec\x8b\x5d\xb4\xe5\xe3\x61\x31\x42\x8e\xa0\xfa\x12\x1f\x2e\x5d\x8f\x71\xf8\x9f\x4b\xcb\xe1\x3e\xf1\x34\x18\xb9\xc7\x88\x9d\xd3\x13\xdd\xdd\xef\xd2\xae\x62\xdb\xa9\x12\xe8\xa0\x41\x50\x87\x8f\x78\x0b\xda\xc1\x43\x5e\x06\x41\x3b\xb4\xbb\xbb\x4b\x9b\x75\x2d\xd7\x07\x2d\x0f\x6a\xab\x05\xfb\x8a\xca\xf8\xb0\xb7\x66\x0d\xf6\x57\x23\x28\x1f\xbb\xff\x22\xbc\x71\xc1\xa2\x00\x47\x33\x60\x73\x50\xb7\x9a\x0d\x27\xc2\x99\x33\x15\x67\x29\x7e\x3b\x28\x93\x0c\x99\x5c\xb2\x4d\x11\x08\x87\x42\x40\xe1\xb6\x72\x96\xb7\x1f\xf9\x5d\x00\x38\x77\x59\x05\xfb\x56\x03\x34\xf1\xff\x70\xc6\xf4\x3d\x8a\x0b\xf9\x1a\x35\x18\x3b\x64\xa3\x34\xec\x01\xc6\x4c\x5d\x01\x96\x66\x45\x24\x7b\x23\x5f\xf2\xd8\xda\x90\x32\xc6\xb7\xd8\x29\xef\xf1\x70\xde\x02\x78\x87\xe8\xbf\x94\xff\xfe\xbf\xff\x1f\x9b\x4b\x1b\xda\x2d\x11\x72\x42\xa3\x36\xfa\x79\xb7\x3b\x67\xfe\x05\x95\xc7\xe0\xd1\x41\x47\x04\xfd\xa9\x46\x71\xa0\xaf\x11\x8d\xf2\xd3\x02\x46\xdf\xec\xe2\x36\x20\x72\x28\x89\x9e\xcc\x71\xf4\x38\xac\xc3\x88\x2a\xd3\x3d\xc2\x45\x8d\xb3\xc9\xc5\xa4\xa1\xe7\xbd\x12\xdd\xf4\x96\x92\xbc\x6f\xda\xe5\x07\x1f\x5b\xd4\x4d\x44\x14\x57\x14\x9a\xa1\x87\x31\x84\xbd\x64\xf2\x1b\x3f\x62\x25\x9a\xb6\x84\x5f\x86\x4b\x96\x5d\x72\x9d\xd9\xe5\x21\x09\x36\xa8\x47\xd2\xd1\xeb\x82\xb8\xd3\x63\x46\x48\x93\xd7\x8a\x44\xcf\x4a\xf9\x36\x0a\x7f\x70\x3c\x48\x7e\x0f\x8d\xe9\x44\x4e\xb9\x5e\x23\x81\x16\x20\x12\x10\xeb\x14\xb7\x70\xf8\x7f\x82\x08\x73\x6a\x29\xe3\x54\xfd\xd2\xf4\x41\x14\xbb\xe8\x25\x80\xe0\xb2\x13\xa2\x5b\x46\xe1\xfd\xb9\x72\x60\x65\xe2\x98\x7c\x14\xf3\x14\x28\x44\xea\x6d\xd0\xd1\x25\xd8\x07\x6b\x1c\x8d\x68\xc8\x24\x18\x9c\xd9\x35\xaa\x16\x21\x0e\x73\x8b\x88\x9b\x75\xe4\xab\xd9\xcd\x7c\x33\x01\x6d\xaf\xe4\x0c\xdd\x17\xc3\xf3\x3a\x73\xa2\xf2\x9f\x04\x9e\x0f\x09\xaa\xae\x0b\x76\x73\x94\xf1\xc9\xe9\x9a\x24\xf9\x75\xa4\x8f\xa1\x22\x96\xb9\x7e\x3a\x70\x03\x74\x1c\x9d\xf6\xeb\xef\x80\x8e\xeb\xb8\xfd\x16\xe8\xef\x3d\xbe\x9d\x8e\x3c\x17\x1a\x9d\x06\x21\xe8\x5c\xd6\x54\x2c\xba\xdf\x73\x98\x1a\x83\x06\xa2\x4c\x84\x02\x57\xd3\x97\x1a\xed\xf5\x8c\x96\x28\xf5\x1f\x3b\xa2\x8d\x63\xb2\x0e\x7b\x3d\x0a\x9a\x16\x75\xfa\xeb\x82\xa7\x1d\x3c\xeb\x8c\x78\xc5\x50\x09\x1b\x45\x40\xc0\x00\x6f\x2d\x12\xc7\x43\x08\x3b\xec\xcc\x6e\xc1\xd9\x99\x5a\xe2\x25\x12\x82\xd8\x92\xef\x0e\x87\x70\xe0\x70\xe2\xb6\xb8\x08\xc3\x5e\x32\x8f\x71\x37\x11\xc2\x4e\xde\x5a\x22\xdc\x07\xe3\xf3\xed\x7f\x24\x56\xc2\xf4\x01\x00\x2b\x69\x7b\xb3\x4d\x61\xd7\x34\xfc\x79\x8d\x9f\x85\x7c\xc3\x97\x68\x01\x9e\xd1\x7a\xcc\xed\xf0\x0e\x5b\x3f\xec\x34\xc7\x7d\x11\xae\x3d\xd3\xf3\x2e\x0b\x93\x34\x48\xf7\x2c\x0f\x9e\xc0\x7a\xa2\xe7\x81\xe4\x37\xe4\x91\xc9\x9c\x61\xf9\xb8\x8d\xd8\xf1\xde\x52\xdd\x19\xcc\x19\x3e\x5c\x3a\x61\x6d\x51\xe2\xda\xfc\x89\x7c\xb9\x1c\x55\x86\x34\xae\xb2\xef\x84\xc4\xcc\xc5\x65\x99\x20\x55\x77\x3b\xc5\x35\xdf\xf6\xa5\x49\xb9\xd9\xf2\x14\xe6\xa9\x33\xc7\xd1\x34\x09\xa0\xca\x83\xda\x2b\x88\xb0\x3f\x0c\xeb\x92\xb7\x4f\x74\xd7\x7c\xdb\xec\x13\xd9\x32\x67\xf0\xff\x97\x18\xaf\x9a\x12\x77\x49\xd2\x58\x88\xd0\x00\x3c\xa9\x44\x37\xd0\x10\x2d\xe3\xfc\xc1\x55\x7a\xec\x18\xee\x12\xbd\x85\x6c\x66\x09\x11\xb7\x43\x70\xe3\x98\x05\xef\x90\x38\x66\x5a\x2b\x24\x4c\xdf\xac\x88\x8a\x51\xbb\x21\xc4\x97\x34\x8c\x47\x6e\x87\xcd\x1d\x99\x01\x0a\x11\xfd\xd4\x32\x26\xa1\xcb\xa4\x15\x7d\xb9\xd4\xfa\xe1\x1e\x0f\xf3\xfd\x08\x21\xbe\xa4\x1f\xdc\x0a\x3c\xaa\x31\x89\xb7\xf5\x87\xb4\x37\x0d\x50\x18\x9d\xb4\x0f\xbb\xe8\xef\x7f\x5f\x05\xfb\x34\xbc\x3b\x8a\x81\xdc\xc1\xf6\xde\xf1\x86\x29\x39\x72\x0a\x3b\x21\x1a\x88\x13\xce\x64\xec\xa2\xbb\x97\x38\x5c\xd7\xb9\xa4\x03\x0d\xdc\x6b\x3c\xd8\xe4\xae\x23\xfd\xf2\xa2\x1c\x64\xab\x33\x95\xe7\x24\xf3\xee\x0d\x57\xe0\x2c\x6a\x8f\xc8\x75\xe1\x96\x01\xc1\xce\x66\xb2\x90\xf8\xf5\x6e\x8d\x33\xab\x0b\x5a\x1d\x57\xe6\x58\x35\xa0\x1c\x8b\x1e\xc3\x19\xef\x0c\xa5\xb2\xc0\x1a\xca\x4c\xf9\xc8\x64\x55\x77\xf6\x0f\xa8\x4d\x7e\x13\x79\xd7\xc0\x19\x78\x13\x3f\xf3\x7a\x8b\x01\x65\xdc\x15\xbf\x6b\x4b\x50\x78\x47\x30\x07\xad\x26\xb3\x70\xa9\x8f\x09\xc4\x93\xdd\xb2\x85\x57\xbf\xcd\x35\x33\x8b\x80\x14\x50\xe1\x0f\x6e\x94\xee\x75\x41\xcf\x0d\x70\xbc\x4b\x15\x3d\xb8\x8d\x29\x7c\x45\x07\xc0\x36\x6e\xef\x01\xd8\x82\xdc\xe5\xa2\x6e\x04\x2c\xe0\xb6\x8e\xe8\xb3\x80\x5f\xde\x11\xf0\x8d\x2f\xec\xc8\x91\xf5\x42\x03\x2a\x17\xc5\xe4\xfa\xbf\xad\x7f\x03\x35\x07\xc4\x19\x45\xec\x1e\x10\x7c\xf4\x8c\xb9\x23\xfa\xc0\xcf\xcc\xaa\x85\x47\x83\xfa\xbd\xe9\x76\xe6\xab\xaa\x69\x0a\xa1\x6b\xd6\x7d\xe8\x1b\x17\xc7\xf9\x60\xb7\xac\xbe\xbd\x51\x91\x84\x07\x17\x87\x19\xf1\x2e\x31\xa2\x7c\xe1\x8c\x56\xa2\xb8\xbf\x07\xda\x3f\x24\xee\x7d\x3a\x5e\xca\xf6\x9d\xc8\x93\x95\x72\x4e\xd5\x45\xaf\xea\x8f\x03\x6a\xdf\x1a\xcc\x3c\x0e\xe2\x3e\x8c\xe6\xdf\x49\xcc\xab\xa5\xc9\x72\xf6\x2a\x60\xa2\xae\x40\xcc\x58\x6f\x08\x07\x1b\x3c\x06\xbb\xe0\xb8\xb6\x4d\x5d\x89\xd3\xc9\x99\x7c\xd1\xd8\x13\x8c\x29\xdb\x4a\xcc\x03\xbc\xe5\x2e\xb1\x06\x35\x85\x63\x0d\x26\x7d\xd3\x43\xa0\xb8\xe2\xff\x3f\xa4\xf7\x8b\xc4\x0f\x1d\xa6\x41\xb6\x10\xa9\x94\x20\xdf\x41\x7e\x10\x79\x1b\x8e\xe8\xad\xc5\x12\xf7\x35\xa0\x9b\x30\x40\xee\x82\x6e\x6b\x27\x51\xe9\xae\x9b\x6a\x31\xe3\x63\xcd\x54\x0f\x75\xdd\x93\xe0\xcc\x41\xf8\xf9\xad\x82\x9f\xdf\x92\x07\x44\x8f\x82\x84\x68\x42\xc2\x8c\xad\x0b\x80\x19\x25\xc7\xbb\xa2\x4f\x47\x90\x94\x38\x89\x23\xa3\x44\x09\xf9\x62\xd4\x8a\x99\x9f\xc3\x34\x73\x70\xf3\x29\xe6\xea\x16\xd5\x1e\x07\x41\x0c\xb3\xc4\x3f\x30\x4a\xd2\x47\x0a\xe3\x91\x88\x45\x34\x4c\x5b\x37\x4b\x0e\xb8\x6f\xcf\xdf\x06\xc3\x53\xc1\x3a\xae\xd3\x7c\x9d\xa3\x2a\x70\xa5\x31\x4c\xc1\xa9\x54\x9f\x77\x71\x69\xac\xcf\x30\x41\xaf\x83\x8f\x00\x49\xd1\xce\x17\x2b\x8c\x7f\x36\x45\x48\xa6\x2f\x3b\x62\xd2\xb7\xf1\x27\x20\xe5\x21\xc9\xd4\x9e\x8d\x9c\x84\xe1\xc7\xc1\xf1\x4a\x67\x90\xcb\x77\x07\xf8\xa2\x0a\xe2\x44\x36\x1a\xdd\x89\x2f\x12\xb8\x98\x90\xe9\x39\x96\x63\x77\x6b\xa1\x60\x8b\xe3\x60\x02\x1a\x87\x52\x4b\x8a\x38\x72\xcb\x5e\xe7\x6b\xd6\x5d\x53\xdd\x35\x82\x77\xc2\x3a\x2f\x44\xb0\xe8\x63\xfe\x1c\x8e\x48\xbe\xa8\x8e\x41\x2f\x3d\x84\xab\xe6\xeb\xbb\x0a\x93\x1a\x47\x63\xa1\xde\x0c\x3a\x19\xf1\x3c\x03\xb9\xa3\x86\x41\x17\x27\xab\xf8\x8a\x4e\xf2\xcb\xb6\xcb\x85\x7b\x8f\xf3\x94\xe3\x0f\xb7\x73\xe6\x78\xbc\xc1\x95\x0b\xbb\xb3\x15\x99\xe5\xa6\x8b\xdf\xd6\x33\x74\x88\x15\xf2\xa9\xea\x0f\xf5\xad\x2d\xbb\x9b\x7a\x91\xe1\x59\xd6\x6e\xa5\xc7\x8c\xef\x4a\xb1\x74\x3f\x98\x51\xda\x93\x5c\x23\x8c\x95\x38\x90\xeb\x1e\x48\x88\xfa\x87\x0b\x4a\x87\xf7\x2f\xed\x7f\x8f\xc1\x13\x51\xda\xa4\x3b\x92\xdd\xfa\x47\xb7\x36\x34\x18\x4b\xc0\x10\x03\xdc\xb6\xe8\x0a\x3f\x21\xff\x05\x23\x08\x8e\xb8\xc3\x61\x30\x19\xe8\xea\x07\xaf\x08\x5f\x54\x61\xc4\x3d\x64\x77\x05\x8e\x28\xcd\xbe\x18\xea\xe3\xa4\xbb\x9d\x3d\xbb\xab\x07\x4f\x07\x06\x14\xb6\x7b\xcb\x0c\x3d\x88\x7a\x71\xf7\x18\xc3\x4d\x48\x1e\x55\xdf\x6d\xd9\x1f\x37\x75\xaf\xa9\xff\x82\xdf\x21\x53\x90\xa0\xf7\xd9\xb2\x69\x1b\x9a\x1e\x09\x6d\xa3\x81\xf0\x5f\x5a\x5a\x37\x51\x00\x06\xec\x9b\x6c\xa7\xe1\x88\xac\xcc\x19\x92\x49\xb8\xe0\xd8\x44\xbe\x14\xb6\x68\x2b\xc3\x66\xc9\x85\x1a\xb3\xb1\x67\x5b\xa9\x63\xcb\x08\x4a\x6a\x99\x66\xce\x8e\xf6\x7a\x35\x13\xc0\xe7\x9a\x12\xc0\xe2\x90\x82\xe3\xc5\x10\xba\x76\xdb\x8c\x87\x8a\xc0\x16\x92\x9c\xbe\x41\x72\x7a\xc5\xc9\xe3\x16\xac\x57\xae\xd8\xa0\x53\x87\xca\x71\x0c\x81\x61\x99\x17\x1c\x6a\x60\x08\x6f\x98\x5b\x95\xf9\x76\x84\xb7\x57\x94\x38\xc2\x1a\x20\xc7\x08\x00\xec\x61\x2c\x84\xa5\xaa\x02\x5a\x57\x58\xe2\x35\x25\x1d\x82\xc6\xf9\xfd\x10\xbe\x66\x51\xf1\x40\x09\xdd\xb3\x87\xbd\xd2\x13\x97\x51\xaf\x9a\xf9\xdf\xca\x45\xdf\x19\xf4\xb9\xfc\x0c\xa0\xe6\x4d\xd3\xf3\x1b\xae\x5b\x16\xb7\xe0\x57\x25\x68\x7a\x6e\xe9\x2c\x6e\x2d\x3e\x8e\x30\x25\xd0\x63\x54\x09\xf4\x61\x5c\x6d\x38\x22\x21\xb5\xd5\xee\x16\xfd\x8e\x16\xa8\x6b\xf0\xec\x92\x23\x19\x5e\xba\x8c\x51\x8b\xa3\x92\x21\x85\x0e\x0b\x4f\xb5\xbc\x20\x21\xa2\x9c\x6c\xfa\x84\x73\x6e\x6d\x7b\x54\x36\x6c\x7c\x54\x7c\x6a\xa5\xe0\x5d\x17\x36\xa8\xcf\x77\x8b\x8f\x65\xcf\x97\x75\x56\x19\xce\x87\xc3\xba\x2e\x0c\x2c\x7d\x0e\xb0\xf4\x15\x81\xa5\x57\x30\xd1\x4c\xd4\x4a\x9b\xce\xa6\xec\x73\x9c\xf3\x07\xb5\xbc\x3c\xa1\x19\xe0\xe4\x22\x9f\x2a\x05\xd3\x4d\xa6\x52\xb6\xae\x42\x16\x7c\x82\x1a\xce\x61\xdd\x51\xc1\xfb\xd8\x81\x4c\xd5\xc6\x51\x6b\x64\xf7\x5b\xdc\x2c\xe4\xb9\x13\x8e\x63\x43\x7d\x78\x27\x29\x01\x2c\x34\x09\x82\x35\x1e\x89\x23\x6d\x84\x2f\x27\xf0\xab\x98\x51\x0a\x07\xf3\xc0\xc2\xb8\x08\xee\x82\x6f\xfc\x4e\x01\x6e\x73\x59\x4c\x07\x21\xad\x79\x03\xb4\x96\x87\x70\xda\x68\x27\xa8\x14\xb6\x22\x6a\x9c\x78\xbd\x6b\xf0\x6f\xa2\x39\x78\x18\xc1\xe9\xdd\x42\x7f\x73\x9a\xc2\xde\xf9\x24\xb7\x82\x89\xf4\x0a\x99\x55\x52\x4c\xde\xc2\x93\x6d\xf6\x6d\x79\x51\x28\x16\x49\x8b\xde\x07\xd7\x34\xbb\x54\xea\x42\x4a\x69\xba\xbe\xc3\xab\xaf\xbb\xc2\x8d\x1d\x2f\xd9\xb1\xf7\xeb\xbb\xf0\x41\xe7\xb7\xa1\x87\xfb\x55\x83\x51\x06\x03\x8b\xbd\x7e\x6c\x98\x77\x5f\x6c\x9d\x69\x1d\x61\xe8\x12\x1d\x19\x04\x64\x73\x7c\x19\x3c\x55\xa7\x0e\x30\x02\x29\xe1\x40\xe5\x9c\x6b\x1d\x96\x86\xf6\x62\xea\xc0\xa0\x86\x37\xd0\x6c\x02\x2c\x8f\xdf\xf6\x85\x75\x99\x15\x7b\xf1\x62\x86\x6d\x16\x5e\x66\xbb\xda\x5e\x94\x31\x32\x38\xf4\x88\x93\x85\x8d\xfe\xc2\x77\x9c\x3c\x2e\x02\x4a\xc1\x61\x7b\x4c\x23\x55\x97\x85\x44\x31\x8c\x3a\x9d\x0f\x88\x84\xc1\x95\x4e\x22\x50\x9c\xbe\x87\x4f\xa6\x07\x27\xab\x46\x38\x38\xc3\x64\x4f\xea\x4c\x9d\x09\x47\x35\x04\x65\x60\xd2\x13\xc2\x66\x17\x4e\xb9\x4a\x3a\x85\x22\x6f\x00\x35\x0c\xb9\xf7\xb0\x00\x7d\xeb\xe9\x59\x8c\x8b\xe9\x67\xfa\xfe\x43\x5e\x2a\x0c\x3b\xe0\xdf\x2b\x3c\xd0\xfe\x3f\xe5\xbd\xc2\xa1\xf1\xb9\x8b\xbb\x32\xe1\x71\x76\x3c\x7c\xb4\xe0\x80\xbb\x19\x3f\xe8\x36\xc3\xe5\x9d\x98\x9b\x45\x67\x7b\x11\x57\x43\x89\x90\x5b\x21\x21\xf6\x72\x40\x92\xb7\x8c\x9b\x51\x5c\x0c\x5b\x60\x54\xc3\xf6\x82\xfb\x56\x51\x6b\x52\x62\x1c\x0d\x3d\xee\x82\xa4\x8c\x0f\xd4\x24\x5d\x6d\x32\xa9\x86\xae\x2d\xd5\xc0\x36\x83\x61\x46\x4f\xb1\x2c\x6d\x18\x26\x15\xf6\x36\xe5\x2b\x83\x2e\x0f\x38\x4b\xd4\x6d\x29\x25\x91\x20\xec\x2e\x97\x32\x2f\xcd\x0a\x7a\x2f\x29\x61\x0c\x42\x49\x91\xd7\xc0\xf0\xc8\xad\x7c\x69\xfa\xd8\x27\x25\xe8\xa4\x56\x33\xe8\x5c\x50\x2b\xa0\xa6\x99\x63\xd0\x9b\xa1\x63\xad\xa4\xe2\x52\x13\x7b\x01\x77\xbd\xa6\x6c\xf5\x61\x73\x8e\x2c\x28\x29\xb0\x73\x14\x70\xcf\x63\xb3\xc6\xe9\xdb\x30\x3d\x78\x20\x0c\xb9\xee\x69\xb0\x09\x98\xc0\x63\x24\x6f\x39\xb0\xe1\x0f\x1a\x04\x26\x78\x28\x8c\x2f\x20\xc9\xb3\x23\xdb\x35\xf7\x97\x83\x5f\xe3\xb4\x81\x0d\xb6\xbc\xbd\xe7\x78\x1b\x08\x67\xaf\xc4\x66\x96\xe2\xe9\x29\x6f\x59\x28\x32\x79\x2b\xd7\xd0\x4b\xd8\xc2\x35\x5c\xec\x73\xf6\x71\x0a\x40\x0a\x7b\x57\xd9\x8f\x28\xef\xfb\xb6\x9a\xef\xf8\x08\x53\x5d\x35\x78\x51\x8a\x5f\x88\xcb\x1b\xc1\x76\x3b\xbb\xb2\x70\xa9\x5f\x87\x61\x07\xef\x9d\x0f\xe0\x24\xfc\x93\x75\x4b\x82\x3f\x59\x15\x38\x01\x70\x00\x72\x2e\x18\x41\x6c\x78\x73\xc8\xba\x9c\x97\x27\xf1\xd6\x22\xbd\x3c\xd6\x9c\x6e\xd3\x6f\x2d\x74\xf9\xe5\xd9\xd5\xc5\x2d\xb4\xc4\xa0\x4a\x13\x80\x0c\x08\x83\xb3\x94\x38\x90\x15\x50\x88\xfa\xc7\xa8\xf3\xb6\x6a\xe0\xf0\xb0\x11\x62\xeb\xa6\xe1\x6e\xdb\xa1\xe5\x69\x17\xda\xce\x2a\x0e\x62\xcf\xbe\xd6\x52\x66\x96\x9e\xed\xd6\x7d\xc5\x0e\x5b\xd6\x9a\x3a\x0d\xf1\xa3\xe4\xe5\x36\x6f\x2d\xce\x26\xc2\xda\xa4\x0f\x8e\x1e\xcc\xa2\xd5\x97\xf5\xf2\x1a\x9c\x3c\xcc\x77\xf5\xe6\x92\x3e\x17\xed\x8d\x9c\x59\xea\x48\x3f\x56\x5b\x06\xd3\xf7\x7c\x79\xc0\x94\x02\x58\x79\x7f\xdf\x96\x0a\x1f\x6e\x95\xed\xa7\x6a\xe1\x08\xe6\xe2\xf8\x0c\x26\x02\x4a\x0a\x17\x9f\x36\x8d\x40\x3c\x26\xa4\xf9\x4e\xd0\x74\x34\x91\x90\x66\x0c\x84\x1f\xb2\x65\x47\xf2\xad\x21\x30\x8c\x18\x32\x94\xa4\xf4\xb5\x43\xc5\xf4\x48\xaa\x88\xa1\x03\xe1\xc2\xb3\xb6\xa1\xf0\x17\x17\xb9\xcb\xed\x7b\x16\x31\xb3\x70\xe7\x1a\x3c\x7b\xfb\x65\x6e\x3a\x61\x65\x81\x94\x71\xdb\xa0\x27\x83\x17\xc4\x25\x22\xc8\x4c\xf8\xab\xbd\x0c\x12\x57\xed\x5f\x82\x19\x95\x88\xde\x08\x19\xe1\x75\xc2\xfd\xe5\x16\x97\x97\xa0\xf6\xc1\x7e\x1f\x57\x7c\xd7\xb6\x2f\x66\x33\x33\x57\xb9\x23\x23\x35\x57\xc5\x27\x47\x0a\x9b\x6f\xb7\x6e\xdb\x08\x1e\x7f\x01\xd9\x06\x20\x9f\x84\xe1\x04\x10\xb4\x08\xba\x41\x3d\x72\x1f\x2b\x04\xe2\x6b\x59\x0a\x30\xdc\x7a\x34\xb9\xb9\xbe\xe6\x90\x53\x1c\xb7\x50\xe3\x85\x20\x02\xd5\x19\x3b\x38\x5b\x49\xb9\x65\x98\xb1\xfd\x0c\xf6\x28\x1e\x93\xbd\x1b\xfa\x0e\x89\xac\x00\x18\x78\xbb\x73\x0f\x2e\xbf\xdb\xd5\xa2\xda\x04\x59\xda\x10\x67\x85\x8d\x40\x7a\x69\x9b\xa6\xb7\xe7\x09\x02\xd1\xe5\x1d\x25\xd3\x9e\xd6\xaf\x1c\x82\xf9\x50\x6a\x91\x49\x20\xf4\xa0\x0c\x8e\xc4\x16\x70\x53\x1f\x17\xa2\x7e\x8f\x4b\x50\xbf\x0f\x80\x8b\x0f\x85\x6d\xfc\x97\xf8\x25\x4c\xda\xf5\x98\x3d\x32\x95\x1a\x6d\xc0\x92\x36\xa4\x9b\x10\x07\xc5\xdc\x13\xc6\xa9\x1d\xa3\x4d\x92\x06\x41\x86\xd2\x8b\x4f\x0d\xe5\x05\x9f\x1a\xca\x3e\x3e\x55\x3b\x36\xe8\x41\xd7\xad\x6d\x22\x2e\x2f\xdf\xc4\xb3\xed\x73\x83\x77\x62\xd8\xb5\xeb\x1e\x07\x30\x5d\xd2\x7e\x70\x2f\xe5\xcb\x77\x8f\x82\x12\x8a\xcd\x10\x7f\x9a\x3a\xac\xa3\xfb\x6d\x5d\xf5\xe5\xf7\xf7\x70\xca\x7d\xaf\xaf\x8a\xf9\xbd\x47\xe1\xba\xa9\xe0\x6b\x1f\x2c\x9c\x6a\x71\x00\x3d\x4e\xcf\x8e\x9e\x95\x4c\xe5\xe2\x72\xd5\x96\xb6\xbf\x9f\x04\x2f\x3d\x8e\x48\xda\x6f\x03\x8e\xa0\xc3\x2d\xc0\x3a\xc6\x17\x37\xda\x20\x23\x23\x79\xa1\x97\x87\xf0\xd8\x97\xf2\x9d\x55\xf3\x1c\xc9\xbe\x87\x12\x7c\xd5\x82\xb1\xaa\x9f\xbc\xf5\x0f\xb1\x54\x5f\xd7\xb8\x5a\x61\x45\xec\xb1\x5e\x98\xc4\x46\xef\xfa\xc2\x16\xa6\xcf\xfa\x6a\x01\x8c\xdd\x59\x1a\xce\x78\xc0\xa1\x71\x61\x38\x60\xdc\x29\xaa\xfe\xce\xd1\x36\xf9\xd5\x45\x3f\xec\x33\xd2\x5b\x37\xbb\x0d\x1e\xf5\xbb\xe4\x78\x63\x78\x96\x71\xd4\xad\x2d\x49\xfa\x79\xd8\x23\x24\x38\x26\x24\xd7\x05\xf9\xae\x44\xb6\xd6\xc3\x28\xb9\x52\x88\x1b\x13\xe9\x1b\x9c\x3e\x39\xec\xd0\x26\xe4\xc5\xd2\xa8\xd0\x3b\xce\x73\x62\xec\x44\x61\xbb\x69\xec\x48\xc5\x6e\xf2\x4d\x92\xca\x6f\xbb\x72\x47\x95\x97\xf5\x12\x64\xfa\x27\xfe\x49\xe2\x0e\xff\x74\x08\x92\x2b\x7a\xb0\x4d\xf1\xc5\x80\xa7\x76\x69\x0f\x26\x2a\x4a\x71\xb4\x70\xa7\x5c\x12\xcc\x4c\xb8\x0b\x9c\xe1\xf7\x74\x07\x15\x76\xac\x9a\xc4\xf9\x36\x8b\xb4\xa6\x9a\x60\xee\x5e\xfd\xfc\xe6\x7c\x00\x39\xc1\x0c\x34\x67\x82\x79\x68\xce\x04\xab\x90\x83\x55\x37\x04\x1c\xa6\x4e\x8f\x40\x20\x0f\x0e\x40\x08\xda\x3b\x51\x80\x92\x27\x2b\x52\xd2\x2f\x88\xb2\xe4\x72\x8c\x10\xbd\xfc\x8e\x81\x82\x57\x8b\x04\xca\x1e\x2d\x1a\xb5\x5a\x87\x6d\xd6\x72\x28\xe8\xb9\x8e\x78\xf3\x04\x5c\x47\xbc\xe1\x27\xbb\x67\xd0\xdb\xb6\xf9\x54\x15\xfa\xc8\x93\xc0\x5f\x68\x92\x81\x1a\x88\xaf\xd9\x20\xb4\x6a\xd7\x4d\x22\xdc\xca\x49\xaf\x27\xf8\x15\x4d\x9d\x2e\x3f\x5e\x2f\x02\xeb\x57\x20\xbf\x4b\x2c\x25\x0c\x78\xb9\x70\x88\x31\xf3\xee\xcb\x13\xff\x9e\x13\x2c\xc1\x83\xc1\xac\xab\xeb\xd2\xd9\x8d\x75\x34\x6f\x28\x2d\x02\x5e\xf5\xfd\xb6\xb3\x6b\xd7\x78\x7d\x28\x3d\xa7\x1f\x83\x41\x84\x55\xe9\x48\x46\x35\x6d\x2b\xd8\xf2\x03\xbc\x48\xc2\x34\xc6\x0d\x5a\x77\x87\x00\x5c\xb7\x87\x21\x8f\x5b\xb6\x8e\x71\xda\x0a\xf1\x4f\x9a\x7b\x59\xc0\xb5\xce\x32\xc0\x64\xcb\x0c\xa5\xbb\x24\xc3\x60\x97\x34\xc7\x9e\xd9\xa2\x95\x10\x70\xfc\xef\x8a\xbd\x2a\x5c\x4e\xb8\xf6\x2c\xad\x23\xda\x2b\x76\x72\x71\x4d\x3f\x3d\xbc\x0f\x4d\x2f\x68\xb2\x8c\x89\x70\xf6\x31\x40\xf9\xb9\x5c\xec\x82\x43\xbe\x9f\xe5\xb7\x5a\xd5\x7d\x35\x8d\xf9\xf1\xee\x6a\x3c\x65\x70\x21\x29\x01\xcc\x54\x1c\x48\xeb\x3a\xbc\x91\xcd\x2b\xf9\x60\xfb\xae\x79\x28\xb3\x0c\x65\xce\x51\xe6\x73\x24\x3f\xb3\xb5\xdc\x63\x1a\xf8\x4b\x19\x6c\x28\xf1\x84\x69\x88\x25\x15\xf8\xa6\x59\xde\x44\xc7\x2d\xab\xd9\x32\xcb\xda\xce\x02\x58\xa8\x0f\xc1\x53\xa4\xd2\x07\xc9\xbf\xcb\x1b\x32\x79\x2f\x1e\x46\x1f\x06\x8f\xae\x99\x21\x3e\xf0\x78\x8b\xee\xd2\xdd\xef\xf4\x16\x5d\x1d\x84\x8f\x93\x5f\xc5\xe8\x09\x24\x8b\x43\xfc\xad\x8f\x43\x1c\x3d\x83\x3c\x7c\x26\xc1\x85\xad\x47\xad\xec\x42\x28\x4f\x62\x04\x3d\x78\xd2\xb5\x8b\x27\xf7\xc3\x88\xf4\x6c\x2f\x8d\x83\x3d\x47\x55\xca\xe8\x2c\xb4\xff\xaf\x1a\x4e\x5f\x7e\x87\xf5\x8a\x51\x4f\xaa\xe6\xd8\xd0\x2e\xde\xbd\xd6\x30\x0c\x4d\x6d\x88\x8a\xc2\xc6\x86\x15\x6a\xc4\xe9\x71\x7d\x83\xd7\x06\x82\x17\x15\x9a\xfa\x6b\x3a\x36\x19\x3f\xf7\x57\x0d\x74\xfc\xd5\xdd\x72\xf1\xad\x14\xfb\xf6\x7b\x40\x0b\x32\xa3\xd3\xd3\xe9\xc9\x03\x01\x1b\xf8\x26\x9f\x9f\x45\xfa\x71\xfb\x34\xc6\x94\x31\x9c\x46\x8d\x72\xfe\x5d\x10\x92\x1a\x97\x78\x25\xa3\xea\x34\x64\xa9\x04\x02\xff\xce\x3d\xe4\x94\xbc\xe7\xe8\xc3\x1f\x92\x7c\xc9\x63\xa2\xbf\x09\x9e\x73\x93\xeb\x04\xa0\x51\xfa\x4c\xe4\x27\x7f\x7d\xcb\x15\x7f\x9b\x76\x25\x31\x4d\xc4\xcd\xfd\x76\x83\x84\x0d\xa9\xd6\xc4\x8a\x38\x61\x85\x04\x7e\x47\x10\x3f\x0b\xfc\x2c\xf2\x1b\xfc\xda\xe3\xd7\xbe\x2c\x3f\x4a\x61\x70\x55\x2a\x4e\xca\xf9\x0a\x29\x37\xf8\xcd\x81\x60\xf9\xa7\xb4\xa3\xb1\xfb\xed\x07\xa2\xf5\x72\x73\x9a\x6e\x3f\x28\x5d\x5e\x7f\x7f\xea\x1f\x82\xbf\xcf\x27\xf4\x37\x9a\x84\x2f\x4a\xe1\xe6\x35\x49\x3e\xef\x83\x35\xf6\x2b\xab\x50\xbe\x29\x95\xfb\xa1\x89\xf2\x49\x69\x6d\xbe\xcf\x7c\xbf\xf4\x0b\xa9\xbe\x57\xfa\x45\xe8\x2d\xda\x66\xcb\x91\x3b\x3f\xb8\xc7\x19\xfd\x3b\x58\xa7\x94\xa7\xd1\x89\x10\xae\x91\x6f\x00\xf3\xab\x75\xf2\x4e\x2c\xdf\x8f\x9d\x25\x16\x51\xb7\xaa\xb7\x3b\xa7\x9f\xfa\x70\xce\x02\xe6\x43\x1c\x89\x4f\x39\x3f\x6e\x23\x2f\x7f\xd1\xec\x66\x73\xec\x7b\xd0\x7b\x59\x19\x78\xf8\xaf\xff\x0a\x70\xfa\xfc\xb7\x7f\x4b\xcf\x9e\x3f\x4a\xcb\xcf\x1c\xb0\xad\x4b\x37\xf9\x67\x68\x05\x0a\x45\x3f\x5f\x44\x80\x7c\x2b\x16\xde\xc1\x7a\x0c\xa5\x4f\x45\xe3\xec\xe9\xff\x07\x00\x00\xff\xff\xf0\x3b\x58\xd6\xcc\xac\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xeb\x72\xdc\x48\xae\xe6\x7f\x3e\x05\xdb\x13\x5e\xdb\x11\x72\x39\xba\x7b\x6f\xd1\xd1\x76\xaf\x2c\xb5\x2f\x73\x2c\x4b\x63\xa9\x67\x76\xd6\xe1\x60\xb3\x8a\xac\x2a\x8e\xab\xc8\x6a\x92\x65\x59\x73\xe2\x44\xec\x03\xec\x03\xec\xbe\xde\x79\x92\x05\x3e\x00\x79\x21\x59\x92\xdd\x33\x71\xfe\x48\xac\x4c\xe4\x0d\x89\x44\x22\x91\x00\x32\xdf\xed\xb2\xa2\xec\x16\xe9\xd3\xf4\x38\xdd\xe5\x55\xbd\x29\xbb\x2e\xed\xca\xcd\xf2\xf1\xba\xe9\xfa\xb2\x48\x5f\x56\x3d\xfd\x6e\x3f\x55\x8b\x32\x49\xd6\xcd\xb6\x24\xd0\x57\xf4\x2f\x29\xf2\x6e\x3d\x6f\xf2\xb6\xa0\x84\x53\xfb\x4e\xca\xcf\xbb\x4d\xd3\x32\xd0\xcf\xf2\x95\xac\xcb\xcd\x8e\xcb\xd0\xbf\xa4\xab\x56\x75\x56\xd5\xf4\xf3\x92\xbe\xd2\xd7\xb5\xa4\x34\xfb\xde\x92\xce\xf7\xbd\xa4\xed\x77\x96\xf4\xcb\x2e\x69\xcb\x55\x45\xbd\x69\x29\xe9\x9d\x7e\x26\xd7\xe5\xbc\xab\x7a\x6e\xe9\x2f\xf2\x95\x7c\x2a\xdb\xae\x6a\xb8\xf6\x3f\xcb\x57\xb2\xcb\x57\x0c\x70\x41\xff\x92\xbe\xdc\xee\x36\x39\x0a\x5c\xe9\x67\xb2\xc9\xeb\xd5\x5e\x60\xde\xe8\x67\xb2\x68\x4b\xca\xca\xea\xf2\x9a\x52\x4f\xf0\x63\x36\x9b\x25\x7b\x42\x42\xb6\x6b\x9b\x65\xb5\x29\xb3\xbc\x2e\xb2\xad\x0c\xf3\x17\x4a\x4f\x35\x3d\xa5\xf4\x94\xd3\x31\x84\xb2\xa0\xa1\x66\x79\xa7\xe3\x20\x5c\xd2\xc8\xf3\x2e\x41\x55\x75\xbe\xb5\xd2\xfc\x99\x94\xdb\xbc\xda\x30\xd6\x1e\xf3\x07\x75\xbc\xeb\xae\x1b\xe0\xf6\x42\x3f\x09\x09\x59\x7f\xb3\x2b\x81\x83\xc7\x57\xf4\x95\x2c\xf2\x5d\xbf\x58\xe7\xdc\x4f\xf9\x4a\x08\x68\xd7\x10\x32\x9a\xf6\x06\x70\xf6\x23\x69\xda\x55\x5e\x57\x7f\xcf\x7b\x41\xd0\x79\xf0\x33\xd9\x56\x6d\xdb\x30\x6e\xcf\xf0\x91\xd0\xd0\x33\xae\x87\x52\xde\x12\x16\x82\x5a\x38\x67\x5b\xad\x5a\x41\x23\x67\x9e\xe1\x17\xd7\xc2\x79\xcb\xa6\xfd\xa8\x19\x2f\xf8\x73\x50\x94\x3a\xa1\xb9\x71\xfb\x79\x4d\x88\xd7\xdc\x33\xfc\x88\x00\xba\x24\x2f\xb6\x84\xca\x5d\x5e\x97\x8c\xa3\x63\xfe\x45\x78\xa1\x5f\x49\xbe\x58\x34\xfb\xba\xcf\xba\xb2\xef\xab\x7a\xc5\xc8\x3e\x96\xa4\xf4\x52\x93\x92\x20\xcf\xa5\xdd\x34\x7b\x37\x9d\x94\xfe\x57\xfa\x99\x5e\xc8\x4f\xc9\x0b\x0a\x21\xd3\x95\xe4\x91\x74\xd9\xb2\x2c\x0b\x19\x4b\x97\xbe\xa0\xef\x64\xb7\xdf\x6c\x08\x6b\xbf\xed\xcb\xae\xe7\x42\x17\xf4\x9b\xc6\x2f\xbf\x93\xaa\xeb\xe8\x83\x92\x5f\xe3\x23\xa1\xa9\xab\x17\x18\xcc\x09\x3e\x92\xe4\x7d\x57\xe6\xed\x62\xfd\x21\x91\xff\xe8\x2b\x7f\x30\xed\x1d\x9a\x54\x26\x24\x25\x22\x69\xc1\x1a\x48\x16\x4d\xc1\x3f\x4e\xe8\x1f\x55\x5d\xd5\x5d\x9f\x6f\x36\x1f\x12\xfd\x60\x30\xf9\x92\x09\xe8\xab\x1e\x58\xd0\xc4\xf4\xb2\x2f\x77\x1d\xcf\x60\xfa\xa2\x6a\xbb\xfe\x71\x5f\x11\xb1\xbe\xdb\xd7\x49\xd1\x2c\x3e\xd2\x32\xe0\x25\x8d\x96\x5f\x2f\x53\x42\xd6\x03\x5a\x08\xed\xbe\xae\x09\x3d\xe9\xcb\x86\x50\x46\xcd\x54\xd4\xfe\x29\xa0\x8f\xd2\xdd\xa6\xcc\x3b\x02\x29\xf3\x22\xfd\x31\x4f\xfb\xbc\x5d\x95\xfd\xd3\x7b\xd9\x9c\x96\xdf\xc7\x7b\xe9\xba\x2d\x97\x4f\xef\xdd\xef\xee\x3d\x7b\xb9\xa7\x62\x9b\xaa\x2e\xbb\x1f\x9f\xe4\xcf\xd2\x45\x4e\x39\x84\xc6\x9b\x74\x5e\x2e\x79\xb5\x51\x5b\x29\x51\x79\xbd\xe2\x95\x76\xd3\xaf\xb9\x41\xa2\x04\xfa\xe8\x52\x5e\xea\xdf\x24\x3c\x01\xc4\x0a\xb2\x62\x6e\x6c\x0d\x1d\x42\x72\x4b\x13\x70\x76\x73\xf9\xa7\x37\x47\xe9\x05\xf1\xb6\x55\x5b\xe2\x9b\xfe\x50\x89\xef\x53\x1a\xed\x55\x75\xfa\x7c\x96\x50\x59\x43\xc8\x69\xde\xe7\x73\xee\xbb\x9b\x7d\xce\x94\x45\xe8\xf2\xb0\x14\x99\x5b\x82\x33\x76\x7d\x34\x2d\x53\x0b\x99\xea\xd0\xe5\xef\xea\x78\xcb\x3c\x80\xd2\x1d\x66\x2f\x04\x67\x54\x55\xfa\xfa\xed\xdb\xf3\xd3\xe7\x69\x59\xaf\x08\x33\xe9\x75\xd5\xaf\xd3\x7d\xbf\xfc\xef\xd9\xaa\xac\xcb\x36\xdf\x64\x8b\x8a\x91\xd2\x12\xc1\xa6\x84\x25\x19\xe2\x2c\xe9\xba\x0d\xb1\x28\x50\xc1\xe5\xe5\x9b\xf4\x8c\x29\x61\x97\xf7\x6b\x74\xa4\x5f\x27\xdd\x6f\x1b\x46\x94\x6b\xf0\x6a\x5d\xa6\x58\x0c\x00\x6a\x96\x43\xbc\xa4\x85\xf6\x75\x96\x94\x6d\x9b\x11\x07\xed\x6f\x18\xcd\x5a\xe7\x21\x68\xa9\x8e\xa8\xbd\x6e\x7a\x9a\xc6\x14\xe5\xa4\x8a\xaa\xfe\x94\x6f\xaa\x82\x90\xed\x11\x12\x97\x45\x62\xd1\xd0\xbc\x71\x69\xa2\xcc\xe6\x1a\x43\xcd\x17\xb4\x01\x74\xe9\xbd\xd9\x3d\x70\xdc\x7b\x8f\xef\xcd\x92\xba\xc9\x84\x4b\x30\x6f\x2e\xaa\x2e\x9f\x13\x9f\x96\x7d\xa3\x35\xae\xf7\x57\xa6\x1f\xe9\x8a\x42\xa4\x11\x04\xe3\x96\xf7\x22\x6c\x01\x4c\x5c\x39\x31\x6c\x30\x1b\x65\x33\xe1\xd8\x8d\x27\xb9\xf9\x15\xb6\xe4\x12\x46\x63\x4e\x6c\xc2\x8c\xba\x8e\x77\xbb\x4d\xb5\x90\xa6\x5f\x4a\x9e\x27\x34\xde\x99\x15\x29\x21\x1c\x08\xc5\xf2\x02\x72\xa1\x5e\x33\xdb\x4a\x23\x3e\x8f\xf2\xeb\x92\x56\xce\x7a\xbf\x92\xdd\x69\xd3\xec\x8b\x6f\xc0\x50\x6c\xe6\x3c\x3f\x49\xdf\x35\xd4\x61\x50\x87\x03\xf0\x4d\x1c\x13\x63\x60\x61\xa0\x2d\xb7\x4d\xcf\x88\xd3\x62\x15\x4d\xcf\x75\x45\x99\x34\xd2\x2e\xff\x44\x6c\xb1\x6f\x64\x49\x16\xb4\xe4\x16\x5c\x31\x71\xb0\x3d\xed\xe8\xb2\x2c\x88\x8f\xc8\xd2\xb0\xb4\x98\x06\x01\xb5\xdd\xd3\x6a\x5a\x53\x65\x8c\x78\x96\x48\xa8\xca\xa9\x7e\x62\x48\x54\x0f\x56\x39\xad\xdc\x86\x36\x4f\x9e\xe8\x53\x7c\xe8\xef\xb0\x7e\xea\x55\xbe\x5c\x52\xaf\x3a\x5a\x15\xaf\xd2\xc5\xa6\xa1\x25\xf5\xcb\xbb\x37\x1d\x2f\x98\x75\xb6\x6b\x5a\x48\x22\x94\x75\x41\x9f\x2e\x2d\x40\x34\x43\xd4\xfb\xed\x9c\x7e\x5d\xaf\x2b\x62\xd4\x40\x3b\x97\x60\x29\x89\x52\xa9\x89\x7d\x47\x53\x78\x94\xd2\x12\xa6\x11\x10\xca\x40\x00\x3c\x06\xa3\x3a\x06\x5f\x12\x8d\xed\x5b\x5a\x4e\xeb\xbe\xdf\x59\xcb\xaf\xae\xae\x2e\xa4\x69\x97\x7a\x5b\xdb\x79\x40\x19\x98\x83\x0d\xcb\x46\x75\xda\xd4\x33\x10\xc9\xbe\xdd\x0c\xe8\x87\xc6\x6a\x39\x07\xf0\xc2\x5d\x78\xc2\x7f\x2e\x3d\x7a\x80\xe7\x8e\xa4\xbe\x6b\x50\x13\xe1\xb8\x84\x9c\x42\x44\xdd\xec\xb8\xde\x80\xaa\xcf\x35\xc1\x93\x32\x64\x1b\x97\x2f\x12\x0e\xe5\x42\xa6\x0c\x76\xe9\x2d\x0d\x58\xd9\xe8\xe5\x19\xa1\x01\xbc\x14\xa9\xcb\xb6\xd9\x52\xea\x0b\xfa\xe7\x13\x7c\xf7\xcf\xb8\x3e\xc0\xe4\x45\x41\x5c\xbe\x3b\x4a\xdf\xbd\x38\x49\xff\xcb\xf7\xdf\x7d\x37\x4b\x5f\xf7\xbc\x12\x99\x38\xff\xc6\x44\x45\x9f\x22\x6a\x39\x50\xe2\x58\x3d\xd1\xdd\x3d\x5e\x59\xf7\xd2\x1f\x91\xfb\x3f\xca\xcf\x39\x89\x88\xe5\x6c\xd1\x6c\x9f\x31\x57\xdd\xe6\xb4\xf6\x39\x87\xc8\x55\xe9\xf8\xb2\xac\x0b\xfa\x50\x81\x4d\xf3\x02\x76\xa0\xf9\x81\xf8\x26\x82\x6b\xb6\x68\xea\x65\xd5\xf2\x80\x7e\xae\x41\x0d\x26\xd2\xd2\x76\x8d\x1c\x93\x8a\x08\x69\xc4\x41\xaa\xe5\x8d\x07\xc5\x50\xdf\x72\xa2\x4e\x68\x22\x54\x97\xa9\x88\xee\xb0\x7c\x29\xc4\xc8\xf3\x76\x4e\xc3\x6b\x0d\xdf\x9d\x47\x78\xb3\x5c\xf2\x5e\x6b\xbb\x84\xb6\x70\x2e\xa9\xb2\x61\x84\x20\x44\x8c\x3b\x08\xe5\xa7\x4a\xc4\x27\xa7\x6f\xd3\xf2\x13\x51\x1b\x73\xbd\xb6\x29\xf6\x0b\x50\x18\xc3\x1e\x31\xb3\x26\x16\xd1\xd1\xda\x58\xc8\xbe\x12\x30\x09\xee\x1a\x73\xa2\x05\x01\x11\x6f\x30\x66\x4d\x82\xe4\x27\xe2\xfc\x6d\xd0\xc4\x4b\x4b\xd2\xde\x8f\x60\x47\x9d\x72\x25\x78\xe4\x0b\x9a\x71\xa2\x0a\xe9\x45\x27\x9d\x92\x6c\x22\x77\xa2\xe3\x3d\x9d\x50\xf2\x82\xfa\x32\xbf\x01\xdf\xe9\x98\x18\x8a\x72\x99\xef\x37\xbd\xef\xd7\x60\x13\xb1\x96\x2e\xf9\x90\x14\xe6\x4d\x16\x18\x75\x10\xd4\xd3\x0d\xcb\x12\x19\xd6\x24\xe7\xc8\x66\xc3\xf4\x2a\xa7\x10\xdb\x77\x88\x3d\x95\x98\x9e\xcc\x8b\xfc\x3a\x5f\x26\xf9\xc7\xf9\xae\xd9\x77\x22\xf9\xa4\xd8\x6a\xb9\x46\xab\x80\x45\x85\xe9\xbe\xcc\x12\x15\x97\x32\x3d\xae\x65\x9f\x2a\x1c\x86\x1c\xb9\x4a\x95\x7a\x84\x63\xbe\xf6\x67\x06\xe0\x53\x56\x37\x59\xd6\xf5\xe6\x9c\x07\xd9\xb9\xc3\x90\xe0\x9c\x87\x8b\x16\x58\x84\xa3\x59\xfa\x54\x81\xcd\x2b\xc1\x00\x2f\x44\x35\x68\x9a\x9a\xea\xca\x12\x35\x50\xf9\x27\x54\x27\xca\xcc\xf4\x80\xa0\x32\xbb\x89\x7e\xbc\xdd\x17\x0d\x64\x07\xec\x25\x54\xda\xd0\x3a\xd8\xd7\xd3\xb6\x5a\xad\x89\xb7\x36\xd7\x47\x82\x94\xeb\x75\x53\xf2\xfa\x79\x7d\xfa\xf4\x5b\xe9\xc7\x8a\x77\x16\x57\x88\xf7\xa4\x7c\x4f\xc4\x45\x18\x53\x32\x96\x2e\xb8\xbd\x1d\x90\xa3\xa3\x88\x00\x0d\x0f\x7f\x23\x51\xc2\x31\x0d\xe5\x15\x61\x9e\x32\x09\x0f\x23\xa5\x07\x07\x48\x95\xf4\xb3\x55\x83\x23\x8c\x49\xf6\xbc\x4f\xd2\x49\xb8\xeb\xb3\x55\xd5\x67\x4b\x66\x5a\x5c\xe7\x0b\x2e\xcb\xdb\x36\xe5\xa4\x0f\x28\xeb\x41\x4a\x9c\x8f\xce\x65\xc5\x0f\xe9\xfd\x4f\x2a\x2b\x7e\xcf\xdc\x28\xa3\xf5\x53\x6d\x30\x19\x7a\x30\x6a\x4b\x11\x55\xed\xf4\xed\xe4\xb5\x6e\xbf\xc3\xae\xa6\xa2\xa1\x3b\x07\x14\xcd\x75\xcd\xeb\x0e\x6c\x97\x38\x4c\xb5\xa8\x68\xb7\x98\x57\x75\x4e\x5b\xbb\xd5\x02\x76\x7e\x9f\xa8\xe1\xed\xf9\x15\x00\x57\xcd\x7c\x5f\x6d\x0a\x03\x98\x25\x26\x3e\x92\xf0\xa8\xf3\x1e\x0a\xd4\x96\x54\x49\x5f\x16\x4d\xcb\xb2\x08\x46\x63\x05\x0f\x08\x41\x2d\x0b\x17\x48\xae\xf8\x24\x03\x58\x94\x73\xf2\x0a\xa3\x81\x26\x1e\x87\x34\x96\x66\x40\x31\x55\x57\x3f\xe8\xd1\xd3\xc5\x9e\xda\xa2\x49\xe7\x64\x2a\xd8\xa5\x8f\x9f\xd1\xdf\x84\x65\x23\xe1\xfd\xab\x31\xe2\x39\x33\x95\xcc\xbd\xac\xc2\xa8\xab\x11\x79\x3b\xea\x32\xe2\x0d\xc6\x1a\xf6\xd7\x48\xa0\xdb\x0b\xbd\xb2\xa2\x64\x43\xd3\x5a\x7e\x43\x1f\x7c\x66\x5b\x6d\x30\x09\x79\xaf\x07\xab\x86\xf0\xc6\x04\x72\x24\xcb\x65\x49\x43\x63\x2e\xda\xe7\x1f\x4b\x9c\xc5\x68\xb7\x7f\xcf\x1a\xa0\x0f\xc9\x5e\xa4\xcf\x66\x53\xb8\x93\x0e\x68\xba\x69\x87\x0a\x0c\x0f\xe4\xe8\xb5\x23\x31\x7b\xb1\xce\x9c\xfe\x88\x91\xd2\x97\x9f\xb1\xef\x23\xcb\xab\x93\x98\xd8\x39\x2b\xd9\xde\x60\xba\x78\x10\x67\x37\x7e\xb6\x48\xf6\xa4\x25\x42\xc7\xd8\x79\xc3\x58\xfb\x54\x3a\xa8\x93\x30\x35\x2e\x40\x75\x91\x94\xac\x55\xc5\x7a\x06\xca\x12\x65\x88\xe6\x8a\x42\xa4\x4b\xc0\xc4\x54\xf9\x05\x5e\x47\xf3\xa9\x67\xfa\x19\x4d\x0c\x14\x06\xd6\x32\x71\xc4\x1b\x59\x17\x41\x9b\xc9\x7b\x55\x8c\x7d\x48\x0c\xee\x5d\x9c\x4f\xdc\x84\x0e\xff\x5e\xf9\x94\xd9\xec\x9a\x12\x0a\x7a\x13\x65\x28\x5e\x98\x58\x97\x3b\x96\x3b\xb6\x1d\xc8\x62\xc3\x67\xec\x1b\x95\x9c\x1d\x81\xfc\x24\xac\x9a\x28\x86\x18\xdc\x37\x49\xd7\xf0\x82\xcb\xbe\xb2\x8a\xe7\x15\x91\x02\xca\xc7\xdb\x9c\x68\xc5\x48\xc0\xe5\xe9\xa3\x55\x76\x73\x14\x9f\xa9\xd6\x79\x47\xec\x9b\xa4\x04\x2d\x56\xcc\xec\x6c\xcb\xd3\x4e\x27\x39\xac\x19\x68\xf2\x40\xe5\x52\xb2\x69\x87\xfb\x2f\xf7\x50\x38\x9c\xb6\xe2\xa4\x26\xc8\x44\xa1\xe8\x34\xd1\x26\x21\x6c\x5b\xb2\xe0\x9c\x6d\x45\x81\x26\xbf\xd2\xb3\x32\xa1\x8d\x70\x45\x0b\xda\x08\xf6\x29\xeb\x3d\x56\x38\x5f\x28\xbd\x32\x40\xd9\x87\x2c\x58\x21\x2c\xe5\x27\xd3\x58\x12\x67\xb8\x86\x52\x88\xd6\xf6\x08\xfd\xb4\x59\x51\xf6\xcc\x58\xba\x48\x07\x10\xf2\x3a\xe2\x16\x1e\x89\xc7\x29\xab\x1e\x43\x28\x15\xb6\xfd\xb0\xb8\x00\x73\x8d\x1f\xe7\xcf\xee\x77\x3f\x3e\x99\x3f\x73\xbc\x75\xb1\x2e\x17\x1f\x85\xfe\xaa\x7a\xde\x7c\xc6\x91\x16\x2a\x12\x3a\x4d\xf3\x1a\xbb\x5f\xa4\x74\xc4\x6d\x71\xa2\x22\x5e\x40\xc5\x08\xf1\x9c\x1b\x4d\x1a\x75\x86\x59\xc6\xcc\x14\xb6\x59\xdf\x04\xf4\x68\xd4\x44\x55\xa0\x25\xcd\x49\x68\x32\x79\x09\x62\x35\x78\xe8\x63\x4e\x65\xfa\xc5\x6e\xe1\x09\x18\xa3\xde\x54\xdb\xaa\x1f\x11\x10\xb3\xa3\x5c\x09\x51\x55\x6a\x86\x51\xd4\x05\x9c\x00\x25\xc4\xd4\xa9\x1a\xda\x7e\x8d\xa8\xae\x73\x3a\x6f\x7d\x9f\x12\x21\xed\x69\x33\xe3\x91\x51\x3f\x89\xab\xe7\xbc\x7f\xd3\x59\x2b\xef\xb2\x7d\xad\xc8\x2d\x0b\x23\xa9\x57\x15\xf6\x1a\x6e\xd7\x08\x3f\x80\x32\xfc\xeb\x91\x21\x7d\xe8\xf0\xfe\x68\xa6\x2a\x30\x14\xe3\x0d\x80\x3b\x54\xb1\x78\x9b\x4f\x4e\x21\x31\xc8\xba\x94\x23\x32\x30\xc0\x70\x3c\xdd\x74\xce\xf2\x73\x48\x87\xb5\x8f\x94\x82\x69\x99\xef\xfb\xbe\xe1\xe3\xcb\x86\x69\x47\xca\x58\xaf\x4f\x00\x88\x13\x99\xaf\x4f\x67\xc4\xe3\x49\xf8\x71\x69\xc7\x89\x8c\x88\x96\x19\x80\x28\xc2\xf9\xe0\x37\x18\x9d\xee\x98\x0e\xac\x10\x95\x53\x5e\xdf\x78\x2d\x08\x7a\xc1\x0d\xf6\xd3\x7d\x79\xd8\x96\x8f\x7c\x6f\xdc\xca\x41\x09\xeb\x91\x14\x0f\x56\xd5\x3b\xe4\x8a\x26\xd6\xd6\x9e\x6d\x80\xaa\xcf\xf4\xf4\xd1\xc6\xe8\x45\x3e\xaf\x0f\x62\xb3\x24\x7d\x16\x40\x34\x8d\x02\xa5\x67\x83\xb6\xfc\xc9\x71\x8c\xc1\x3e\xee\xb2\xdf\xc7\xfa\xa6\xc9\xba\xb5\x9c\xd2\xad\x7b\x74\xc2\xaf\x57\x91\x7a\x0b\xd7\x27\x20\xba\xff\xca\xbb\x25\x0f\xf4\x43\xa2\xb3\x51\x06\x8b\x42\xa9\xd5\x72\x26\xd6\x11\xc3\x9b\x4c\xf7\xe7\xb2\xe5\x53\x20\x80\xe2\xd9\x3a\x84\xc5\x78\x10\x8e\x83\x7a\x51\xc0\x71\x4f\x4d\x3a\x32\xe1\x80\x7b\xdd\x14\x39\x75\xfb\x06\x0a\xeb\xbf\xd2\xee\x54\xe3\x2a\xa0\x49\x28\x43\x4e\xa3\x67\xf8\x20\x50\x3e\x1a\x7f\x48\x78\xff\x7f\x3b\x90\x69\x79\x7b\xd3\xb4\x40\xb8\x42\xd6\xcf\x91\xa8\xea\x86\x72\x31\x21\xff\xbe\x2b\xfd\x95\x07\xbe\xdc\x98\x2e\x2f\x5f\x5d\xd9\x59\xf7\xf2\x55\xfa\xb1\xd4\xca\x5f\xf5\xfd\xae\xfb\x05\x7a\x0f\x51\x62\xb0\xc6\xe3\x22\xbf\x61\x89\x53\x92\xf5\x07\x32\xae\xca\x7c\xab\xbd\xe4\x4f\xa9\xe2\x98\xb6\x62\x4d\xe4\x4f\xda\xa1\x03\x7d\x5a\x02\xd9\xcb\x86\x20\x82\x98\xca\x3c\xee\xec\x53\xea\x7d\xca\xaf\x23\x25\xe0\xaf\x49\xbe\xd9\xd1\xf1\x8c\x85\x9f\x00\x0c\xfa\xae\xb9\x9e\xd2\x52\x80\x80\x82\xf7\x5b\x9a\xf9\x05\x4e\xa5\x54\xe0\xe1\xe3\xec\x51\xa0\xff\x8c\x2b\x2b\x68\x69\xff\xae\x0a\xf9\x9b\x25\xe4\xb0\xde\xae\xfa\xbb\x8d\x22\xaa\x8e\xd3\x89\x53\x12\x04\xe4\x51\x0f\xe5\x80\xb0\xa9\xb3\x6c\xda\xb3\xfa\x8b\x12\x48\xfe\x8d\xaa\xde\xe6\x9f\xef\x2a\xb8\x6d\x26\xca\x09\x03\xf3\x85\x8c\x4d\xe9\x10\xe3\x65\x41\xf0\xac\xe0\x3a\x08\x4d\x53\xcf\x20\xf5\x47\xda\x91\x6b\x07\xf6\x8b\xfc\x4e\xf1\xfb\x07\xbb\x5d\xa3\xed\x4f\x4f\x0f\xa9\xbb\x67\x23\xc1\xa2\x60\x6e\x8f\x53\xc0\xcc\x33\x89\xf0\x64\xe0\xc8\x19\x9a\x08\x3d\xb4\xb9\x85\xca\xea\x07\x1c\x92\x88\xa4\x66\xfe\x4a\x30\xe3\xfd\x3d\x63\x89\xbb\x0e\xe5\x6a\xb7\xf3\xdb\xae\x08\x08\xb9\x18\xca\xc6\xe5\x06\x0b\xee\x60\x71\x12\x63\x26\x4a\x9f\x8f\x55\xc8\x07\xca\xf7\xb4\x64\x26\x2a\x70\x2b\xe9\x60\x41\x99\x4c\x14\xa2\x91\x17\x23\x5e\x30\x2e\xc8\x60\x74\xe6\xdb\x6c\xca\x15\xeb\x1a\xad\xe1\xa8\x35\x25\x21\xda\xc2\x04\x2c\x24\x20\x8f\x61\x37\x59\xe1\xbc\x86\x27\x18\x37\x47\xf1\xd9\x91\x55\x30\x54\x55\x8b\x6b\xdd\xe0\x04\xa9\xdd\x50\x8e\xbe\xe5\xc3\x52\xb7\xe7\x0d\x85\x0f\x56\x22\x59\xc5\xb3\xc1\xe2\x02\xaa\x2a\xd1\xc4\xe1\xea\x89\x16\xf9\xb4\x79\x57\xfd\x00\xfb\xca\xaa\x43\x5d\xc3\xb8\x62\xad\xdc\x01\x1d\xaa\xd6\x9d\x86\xcb\xcf\x15\xf4\xb6\x2f\x2b\xd6\x07\xe2\x3c\xec\xd4\x00\xc8\x9b\x25\x1b\x62\x06\x7c\xee\x92\x51\x89\x0c\xde\x7c\xe2\x63\x2b\xb7\xc7\xb9\x52\x4e\xf4\xb8\x3a\x28\x9e\x67\x3d\x59\xe3\xf6\xa7\x2c\x8e\x48\x30\xe1\x12\xd4\x4f\xb0\x8d\x7c\x73\x9d\xdf\x74\x50\x10\x19\xc7\x61\x9d\xb5\x14\x67\x76\x42\x62\xcb\x0a\xbd\x0a\x6f\x46\x68\xc5\x19\x26\x58\xc5\xcf\x9b\x87\x13\x2e\xae\x71\x36\x06\xb7\x50\x95\xd3\xa7\x60\xfb\xd5\xbd\x86\xcf\xf5\x7c\x0a\xe6\xf3\x89\x64\x07\x15\xe1\xca\x51\x39\xff\x44\xd9\x23\x16\xea\xa8\x19\x16\xb1\x88\x1f\x0b\xae\x49\x6a\x25\xcc\xa2\x4b\x81\xa2\x64\x4f\xf5\x3f\x16\x99\xbe\x22\x1c\xf2\x19\xd1\xeb\x0e\x78\x6f\xa2\x59\x31\xcd\xbe\xa4\xe3\xe4\x9f\x74\x3d\x2d\x01\xc6\xb4\xdd\xe3\xff\x35\x90\x2f\x52\xe4\x62\x89\x01\x4d\xdd\xba\xda\xa5\x0d\xb4\xc5\x21\x0a\x3d\xd9\x06\x82\x31\xdf\x61\x94\x38\x33\xb0\xda\xbc\xcd\xeb\x6e\x59\x42\x7f\xbe\x4d\x97\x7c\x55\x3c\xd3\xa6\x59\xce\x96\xfb\xfc\x03\x2d\xcb\xf9\x0b\x4d\x87\xbb\x05\xe6\x2e\x98\xa8\xb8\x69\xb9\x50\x81\x8e\x16\x7d\x00\x56\x7d\x4d\x9d\xf5\x81\xc9\x6c\x84\x02\xc8\xba\xd1\xf5\x98\xf5\xe6\x53\x19\x22\x62\xf9\x7b\x47\x1e\x60\x5d\xaf\x08\xe4\x5e\x25\x9e\x26\x69\x14\xaa\x1a\xdc\xee\xce\x6f\xe2\xd1\x73\xd1\xe0\xca\x9c\xd6\x48\xa9\xad\xf0\xc2\xe0\xb5\x32\xa8\x10\x2a\x1a\x7f\xc2\x49\xe4\x7a\x3d\x9b\x53\x17\x17\xeb\x68\x75\x5e\x21\x27\x95\x9c\xd1\x02\x4d\xde\x73\xd3\x1f\x12\xb9\x60\xcf\x9c\x2e\xfe\x44\x2e\xdc\x45\x42\x55\xdd\x7a\x9f\x9a\x02\x9e\x6f\x48\xac\x88\xa8\xdb\x6f\x2d\x59\xd5\xa6\xad\xea\x92\xbf\x35\x24\x43\x40\xa5\xfe\x47\xfa\x62\x99\xbd\x4e\xa2\x5b\xc5\x81\x8e\x04\x62\x71\xd5\xf3\x0a\xbb\xa0\x85\x41\x62\xcc\xb1\xa6\xd0\x11\x1d\xdc\x01\x6a\x9b\x17\xf6\x4d\xf3\x91\x33\xd3\xe3\xa5\x2d\x5f\x0a\x27\x3a\xb4\x17\xf6\x9d\xf0\x09\x7f\x3b\xc3\xe6\xc0\xe2\x34\x6e\x27\x82\x2d\xe1\xc1\xfd\xee\x01\x4f\x98\xe5\xcd\x02\xf8\x5d\xde\x13\x5b\xac\xe5\x60\x25\x1c\x2a\x2c\xaa\xd9\xae\x0a\x77\x8d\xcd\xb5\xb0\xc9\x87\xa0\xe2\x43\xe2\x2d\x51\xcc\x08\x65\x4a\x1b\xac\x2c\xa6\x53\x99\xf7\x5f\xe8\x53\xb5\x39\x60\x5f\xf8\xd0\x03\x36\x2e\x90\xed\xd6\x0f\x56\x31\xc1\xcf\x44\xf5\x5f\xb1\xf2\x4b\xc9\xfb\x69\x7a\x2a\x1f\x76\x54\xdf\x57\x18\x53\x55\x24\xc9\x0e\x78\x0f\xec\x66\x74\x22\x5c\xa7\xd5\x3e\xca\x2b\xe0\xdb\xe1\xce\xce\xa6\x1a\x52\x88\x09\xd7\xee\x84\x20\x05\xf0\x95\x44\x70\xcc\x64\xcd\x32\xce\x9f\x75\x70\xdf\xc5\xb7\x38\x7c\x6a\x26\xb0\xeb\x72\x9e\xb2\xae\x97\x08\x87\x4e\x73\x3a\xd0\x6d\x4e\x07\xc1\x4f\x55\xee\xb4\x4a\x34\x5b\x6c\x99\xa3\xbb\xe8\x0b\xb6\xca\xc1\x1d\xfa\xd8\x7c\x8c\x2f\xa4\xf4\x8e\xe7\x8d\x7e\x26\xfb\x1d\x5f\x9a\x04\x03\xfe\x05\x09\x6e\xc0\x71\x7e\x70\xbe\xc2\xd0\xad\x98\x93\x66\x04\xbc\xb0\x43\x17\x8c\x5b\x66\xb6\x7c\x26\xcc\xc2\x74\x09\x15\x43\x10\xaf\x31\x01\x8b\x51\x9b\x18\x20\x53\xae\x71\x31\x7c\xda\x19\xd3\x75\x73\x9d\x6e\xaa\xfa\x63\xa7\xd8\x1c\x2a\x6d\xa0\x8f\x22\x22\xdc\x8b\xb9\x90\x7c\x8e\xad\x93\xec\x76\x69\xb0\xc2\xed\x0e\x4a\xee\xd9\x8e\x91\x3c\x09\xeb\x8f\xdc\x76\x0f\xb6\x2c\x59\x4c\x06\x53\xb3\x3b\x3b\x1a\x65\xd3\x74\xaa\xfd\xf4\x4c\x84\xd3\xa0\x24\x51\x28\xc5\xb9\x83\xd0\x29\x39\xb6\x9b\x42\xac\xa9\xc4\xee\xf6\xac\x03\x58\xa1\x59\xb5\x15\x6b\xbf\x5f\xec\xe6\x0f\xf3\xe3\x4e\x07\xc8\x86\x2d\x49\xdc\xfb\xf0\xd2\xe3\x6d\x63\xf7\x8a\xc6\x0d\x2d\xf3\xc8\x36\x7d\xc1\x00\xb6\xec\xa8\xb3\x43\xfa\xd0\x0a\x4c\x7f\x7f\x07\x99\x18\x11\x84\x77\x41\x32\xf1\x8e\x41\x34\x9b\x48\xb4\x3b\xd1\x9b\x08\x97\xcf\x98\x0d\xf2\xdf\xe2\xd6\xce\x29\x09\xf8\x80\x9d\x0d\x40\xf4\x00\x1e\x41\x4e\x4a\xd0\xd6\xd6\x41\xe9\x79\xd0\xfb\xd1\x5a\xb1\x72\xd7\x84\x85\x70\xe0\x4a\xdd\xc5\xcc\xcc\x77\x58\x8d\x2a\x57\x80\xb0\xb3\x10\x5b\x93\x1a\xf7\x87\x52\x05\xa1\x0a\x07\x8c\xce\x9f\x2b\x8e\x85\xfb\xb0\xf6\x5f\x8c\x0d\x1d\x80\xda\x1b\xc6\xe7\xc7\xd2\x8c\x16\x42\x46\xb6\x6b\x89\x3c\x68\xa3\x1d\xe8\xcb\x46\x2c\x2c\x62\x57\xe0\x56\x0d\x6e\xe0\x3d\x97\xa2\x13\xa3\xd6\xc5\xfc\x1e\x5f\x96\xe2\x74\x3e\x44\xc7\x2c\xea\x6a\xb2\x32\x67\x97\x2b\x2c\xda\x75\x92\x7e\x08\xe3\xd2\xe1\x9e\x6a\xca\x00\xc0\x86\xa3\x0c\xbe\x9f\xd0\xfe\x61\x34\x2a\x76\x18\xff\xad\x6a\xb1\x80\x70\xf7\x72\x11\x03\x49\x4f\xc1\x51\x68\xde\x44\x29\x6d\xfc\xe4\xa7\x61\xe3\x7e\xc2\x7f\x1e\xe8\xb3\x65\x70\x31\xbd\x7f\x93\x50\x97\x40\x8d\xa5\xd3\xb5\x14\x98\xe6\x81\x06\x8c\xc1\x42\x10\x55\x2f\xba\xe4\x2c\x52\xb8\x43\x75\xfe\x55\x4a\x76\xde\xbb\xff\x09\xfa\xf5\xa8\x2d\xa7\x5f\xf7\xbd\x1c\x2c\x07\xee\xde\x60\xe7\x1c\x2d\x0c\xca\x80\x1c\xa1\x24\x1d\x48\x07\x4a\xd4\x4e\x48\xe0\x66\xe4\x6c\xc2\x18\xa2\x24\x88\x12\x4a\x0d\xd8\x42\x58\x50\x85\xf5\x10\x4c\xff\xe4\xa0\xd2\x8d\x94\xc0\xf1\xc4\x1f\xe3\x24\x46\x58\x11\x58\x98\xe7\xd1\xc6\x2c\x52\xac\x9e\xec\xb6\x8c\x08\xb9\x3b\x77\x96\x5c\xa3\xeb\xb1\x23\x3d\xfe\xac\xab\xd5\x9a\xc6\x55\x6d\xf9\xde\x18\xe4\x64\x97\x93\xfe\x74\xca\xbf\x88\xa1\x34\xab\x9a\x75\x51\xdc\x82\x98\x6e\xb9\x0d\xe6\xc7\xae\x6f\x9b\x7a\xf5\xec\xb4\xe1\x63\x23\x6b\x74\x78\x13\xfc\xe9\xc7\x27\x9a\x4e\x4c\x93\xe7\x90\xed\xfc\x5e\x56\xfd\xab\xfd\xfc\x41\x97\xae\xd8\xf0\x14\x37\x2a\x79\x60\x8e\xaa\xc6\x02\x62\x57\x77\x5d\x3b\xb4\xc0\x38\x95\x16\x7a\xd7\x6c\x68\x95\xc4\x45\x9a\xed\x56\xe6\x97\x36\x80\xad\x40\xa2\xff\xb0\x2f\x28\x6b\x60\xae\x6c\x15\x3f\x54\xe1\xcc\x91\xb9\x9f\x1f\x9d\x36\x13\xf7\x22\x3d\x89\x0a\x5c\x0c\x8c\x6b\xd3\xba\x0f\xb6\x0d\xd6\x91\xa4\xae\x18\x04\x85\x71\x31\x4c\x24\xab\x9d\xbc\x8a\xc6\x94\x2c\x38\x09\xa0\x0e\x2b\x4f\x45\xa9\x27\x22\x31\x71\x9a\xb5\x29\xb2\x42\xc9\xca\x6a\x21\xad\x80\x7e\x79\xaf\x30\x95\x2c\x04\x5f\xaf\xcc\x61\x82\x1d\xac\x72\x65\x6c\x32\x7a\x65\x6b\x36\x82\x80\xb1\x29\x4e\x3c\x67\x1b\xc2\x4c\xf1\x36\xeb\x45\xc8\xd4\xc4\x30\x49\x18\x9b\x90\x24\x9d\x34\x98\x6d\x7f\x21\x53\x1b\xb5\xeb\x07\x6e\xcd\x7d\x01\x5f\xc3\x98\x8e\x81\x0e\x1a\x0b\x74\x23\x3a\x53\x6f\x54\x13\x82\x0c\x36\x6a\xf5\xa7\x9e\xb7\x8d\xde\x77\xa5\x96\x88\x39\xa1\x63\x4e\x5f\x46\x8b\x99\x3b\x01\x33\x44\x31\xb3\x81\x72\xe5\xbf\xa5\x45\x4e\x9c\xa0\x6f\x3e\x12\x31\x8d\x8b\x20\xfd\x50\x21\xc7\x61\xec\xac\xa1\xfc\xe5\xd8\xb3\x87\xe1\xe9\x43\x2f\x99\x0f\xb2\x98\x80\xb3\x68\xad\xce\xd4\x49\x34\x43\x30\xf1\x66\xab\x90\x42\x38\x89\x32\x02\xb5\xe7\x71\x1c\x80\x24\xac\x9a\x81\xa0\xbe\xe5\x0f\xfd\x1d\x4e\x4b\x54\x7f\xb0\x5c\x88\x81\xef\xeb\x80\x81\x0a\x39\x64\x82\x0a\x37\xc8\x0b\x3a\x4a\xc2\x9e\xf1\x58\x2a\xbc\xe2\xec\x4e\x8d\x79\xf5\xae\xde\x8a\xbc\xd4\x44\xac\x01\x00\x0a\xc2\x3b\x87\x08\xfc\xf2\x5a\x05\xab\x45\xed\x30\xd4\x52\x11\x73\x40\x54\x67\x2c\x73\x2d\x76\x19\xe9\xf1\xc5\x6b\xda\x33\x5c\x83\x56\xe9\xcf\x39\x49\xd2\xd2\x85\x6b\xa7\xd1\x60\x62\x1b\xf2\x5c\x27\xf3\x4b\x71\x53\xa0\xa2\x24\x96\xb8\x1b\xd4\x68\x40\x32\x98\x38\x5f\x70\x5c\x76\x81\x96\x47\x5a\x43\x4f\x86\xbb\x95\x1b\xea\x37\x84\x59\xa7\x6b\xe4\xa5\xb5\xbb\x61\xfe\x1f\x98\x60\xe5\x82\xa1\x6b\x70\xf0\x81\xed\x17\x41\x42\xd3\x91\xf2\x12\x6e\x1d\xff\xb0\x0e\x2b\x07\x09\xa7\x32\x64\x23\x93\x93\xe9\x99\xca\x64\xb1\x29\xce\xb2\xb3\x7a\xe2\x31\xdf\xc5\x67\x98\xf0\xfd\x39\xfc\x16\x2e\x13\x8e\x2a\x20\xe5\x8b\xc9\x66\x1d\x45\x4b\xd3\x03\x7e\x93\xca\x46\x28\x56\x0c\xdc\x8a\x9c\x2e\x94\x22\x02\xd3\x60\xaa\xe5\xba\xdc\xb0\x4d\xaf\xb6\xee\xaf\x2b\x75\xe8\xd1\x0d\xbe\x02\x05\x27\xd1\xd2\x8b\xb8\x82\x8a\x50\x4d\x67\x95\x11\x04\x2d\x37\x5c\xda\xcb\x51\xde\xf6\xeb\x93\xe3\xb7\x6f\xcf\xaf\xfc\x36\xcd\xeb\xa0\x2e\x48\x98\xf8\xc6\x59\xc1\x8d\xfa\x65\xb6\x70\x6e\x02\x63\x08\x6f\x8d\xa7\x25\x0e\xc1\x85\x6c\xca\x6a\xa7\xcf\x55\x03\xde\xd3\x70\x5f\x8c\x97\x47\xfd\x2f\x0e\xcd\x5f\xf2\x9e\xe5\x9b\x0f\x89\x29\xbb\xcf\xf9\x7f\x12\xde\x17\x04\x77\x34\x58\x7a\xfe\x2a\xc7\x5b\xdc\x53\x07\x9a\x62\x74\x7f\x00\x26\xbd\xcf\x71\x34\x22\xdc\x37\xd8\x2b\x96\x29\x2e\xa7\x8f\x58\x1d\xda\xb4\x58\x30\x8c\xdc\x7d\x5d\xfd\xb6\x87\x80\xc6\x07\x23\x62\x1e\x6c\x5c\x39\xaf\x36\xb2\xa1\xfc\xd9\xfd\x90\x74\xfe\x1a\x58\x85\x07\x8d\xd3\xaf\x1f\xbb\x1d\xdb\xa6\xd2\xde\xd0\x3d\xbd\xb7\xaf\x52\xd6\xae\xb1\x7d\xd6\xbd\x67\x74\x8c\xe1\x2b\x6b\x9a\x3e\x82\x78\x16\x54\xc7\x2e\x61\xbe\xce\x87\x7a\x62\xa5\xfe\x62\x1d\x7d\xca\x37\xfb\x58\x71\xc1\xeb\x86\xcb\x74\x8f\x12\x14\x55\xed\xed\xd0\x9d\x0c\x79\x66\x17\xce\x79\x30\x0e\x47\xea\xc4\x50\x02\xc7\x8f\x7c\xd3\x8b\xde\x36\x0d\x50\xc1\xeb\x12\xad\x96\x21\xba\xf5\x7e\xcd\x2d\xff\x6e\xd1\x56\x30\x6e\x97\x74\x76\x1e\x4c\x03\xc7\x41\x97\xe8\xdb\xbd\x24\xa2\xa1\x31\xcd\x56\x55\x4f\xe7\x55\x76\x61\x82\x29\x74\x42\x6b\x8e\xb6\x01\xb8\x1d\xca\x97\xa5\x8c\x8a\xf2\x8e\x29\xb0\xd0\x37\xb1\x9c\xa6\xe4\xc3\x1f\xfa\x7b\xa2\x94\x02\x9a\xd3\x23\x5f\x1d\x34\x74\x5e\xaf\x78\xd5\xbc\xa6\x7f\xb4\x23\x8a\xfc\x1c\xcf\xb1\x08\x87\xa8\x44\x95\x23\x72\x82\x75\xf5\xa8\x81\x9a\xce\x8a\x5a\xa6\x05\xf3\xa2\xd6\xd3\xaa\x7e\x06\xda\x90\x90\x3e\x47\x82\xfa\x1a\x52\x4f\x68\x16\x3e\x89\x2c\x21\xde\x87\xaf\x2d\xe5\x21\x9f\x9f\x1e\x1d\x50\xca\x0e\x6f\x36\xbf\x5e\x37\x3b\xac\xe1\x76\x15\x2d\x1b\xeb\x64\xac\x70\x4f\xd5\xac\x2b\x32\x08\x48\xd4\x17\xd2\x5c\xc2\x9c\x33\xa4\xf8\x84\x85\xb9\x87\x97\x95\xe9\x0f\xf2\x78\x75\xc1\x22\x72\x4e\xab\xe3\xde\x33\xc1\x99\x2d\x2d\xab\x55\xa7\xe0\x4c\xdd\x31\x83\x39\x50\x88\x19\xdc\x37\x32\x3b\x3e\xb2\xb5\x0b\x1f\xcd\x54\x15\x32\x0d\x15\x71\x42\x95\x46\xf2\xc0\x25\xe4\xc9\xcb\xd7\x57\x70\x08\xa1\x19\x83\x01\xbf\x79\xbd\xb0\xc1\xec\xcc\xd5\x69\x97\x6b\x00\x31\x1b\xdb\xd7\x92\xa8\xe5\x38\x11\xe7\xbe\xf8\x1e\xc2\x0c\x77\xf2\xd0\x7b\x28\x91\xa5\x69\xeb\x5d\x17\xea\xd2\xad\x78\xb8\x83\xb0\x1d\x7b\xbc\xd4\xe1\x8d\x1a\x60\x3a\x34\x2b\x63\xc6\x5c\xf0\xce\xb2\xbb\xc9\x58\x3f\x8a\xcd\x64\x77\xe3\x13\x82\x5d\x97\x32\xaa\x08\xd8\x59\x0c\x5c\x00\xb3\xff\xfe\x7f\xfe\xef\xe3\x13\xee\xf8\x49\xdf\x6e\xe8\x4b\x85\x9a\x04\x86\x5c\x6c\x3a\x07\x11\x47\x1a\x40\xe6\xa6\xda\x89\xb7\xf4\x02\x35\xbb\x26\xd2\xf3\x7f\x49\x64\x3a\x1c\xb5\x80\xe8\xe0\x42\xcd\x19\xb4\x1d\xfd\x04\xae\xdd\xdf\xee\x48\xc9\xce\xd6\x7c\xf6\xfc\x86\xa4\xe1\x6b\xb5\x47\xf8\x45\xbe\x12\xfb\xfd\x17\xfc\xda\xb3\x91\xb0\x18\x3f\xf0\x47\xa2\xbf\xf8\xc2\x24\x51\x6f\x5e\x66\xaf\x09\x1f\x45\x94\x36\xe8\x18\x12\xf2\xc2\xdf\xf6\x3c\x4a\x39\x41\x3f\x4d\xff\xc4\xbf\x52\x38\x72\xea\x50\x98\xc5\x38\x7e\x01\x0a\x1c\x30\x9d\xd0\xe8\x15\x3c\x54\x4d\xcf\x3d\x7f\x11\x1b\xb9\x60\x26\xd5\x38\xce\x00\xd9\x47\x25\xd9\xed\xd9\xa4\x86\x69\xc8\x5a\xbb\xa0\x14\x38\xfc\x70\x22\xef\xe4\x41\x0d\xee\x36\x2d\xaa\x03\xcd\x53\x77\xc5\x61\x6b\x72\x0b\x44\x96\xd7\x07\xb1\x4d\xf0\x3c\xa7\x21\xab\x38\x9a\x24\x8e\xf3\x29\xc7\xeb\xdb\x12\x52\x36\xfd\xd3\x3c\xb8\x28\xf6\x39\xae\x60\x04\x88\x56\xc0\x7f\x4a\xaf\x28\x45\x21\xca\x30\x2b\x51\x50\xe4\x0f\x1d\x89\xd9\xed\x78\xec\x6e\xbc\xc9\xe7\x25\x92\xdf\xe0\x83\xd6\x25\x31\xf2\x9e\x70\x0f\xe5\x90\xfb\x91\xf0\xe0\xab\x5e\x68\x1c\x5f\x89\x5a\xf3\xcb\xe5\x9b\x7c\x26\xb8\xda\x68\x73\x36\x6d\x7d\x97\x5f\xcb\x4f\x42\x8c\xfa\x23\xbf\x92\x2f\x49\x86\xa1\xb4\x80\xc2\x4e\xda\xc1\x43\x6c\xd2\x85\x76\x61\xdf\x89\x75\x60\x36\xee\x88\xe5\x0c\xdc\xa1\xd3\xc5\x20\x7f\x29\x87\xbf\x17\x7c\xf4\xb3\xb4\x1c\x4c\x3a\x35\xf3\x2d\x97\xbe\xa5\xd5\x2a\xfa\xff\x33\xf9\x72\x39\x85\xd8\x43\x9e\x62\x8b\xd3\x34\x33\x5c\x3f\xe7\xff\x2e\x95\x28\x51\x17\x26\xfd\x77\x46\xe0\x12\x2d\x80\x4f\x7d\xe2\x7f\xed\x93\x67\xc3\xb9\x08\xb2\x6a\x96\x17\xe6\xb8\x68\xa1\x45\x85\xfc\x30\x7b\x41\xf8\x6f\x33\x57\xfe\x84\x7f\xa6\x9b\x51\x2d\x6e\x72\xc3\xb9\x1d\x34\x13\xc2\x50\x53\x93\x60\xd2\x5c\x08\x29\x2d\x6e\xa7\x80\x49\xd2\xaf\x23\xd8\x73\x4a\x08\x49\x2b\xaa\x98\x65\xd4\x41\xcd\x10\x5b\xa7\xe1\x69\xff\x63\x17\x21\x08\xee\xfa\x39\xee\x67\x00\x24\xdd\xcc\x27\x40\x59\x7f\xe2\xe1\x68\xe0\x43\x20\x55\xf1\x39\x4e\x33\x9c\x3d\x3f\x3f\x34\xb5\xc3\x09\x92\xcc\x8c\x04\xa3\x45\xe9\xdc\x1c\x00\x04\xd1\x82\x3d\xf7\xa3\x66\x5c\x65\xda\x58\x54\x1f\x10\xda\xe7\x73\xca\xbe\x5f\x00\x9b\xae\x30\xe3\xca\x67\x09\xea\x2c\x93\x16\x17\x1b\x76\x5a\xcd\x51\x95\x61\x1e\x49\x41\x99\xc8\x75\x82\x08\x27\xe3\x6d\x26\x4a\xdc\x4a\x51\x43\x98\x83\x35\x8f\xe8\x46\x4b\xde\x32\xbd\x1e\x82\x7d\xdd\x0f\x57\x7d\xa0\x9c\x8a\x61\x10\xbe\xc6\x39\x33\x76\x86\x71\xfc\xf3\x18\x56\x18\xe0\xa1\x53\xa0\x9d\x46\xf0\xa0\xdd\x9b\xc5\x06\xd7\xd5\x42\x95\x29\x53\x85\x64\x96\x8b\x6c\x7e\xa3\x65\x64\x9e\xe1\x5e\x78\xa0\xc8\x96\x0d\x39\xb0\xaf\x6b\x91\x33\x97\x30\x51\xa4\x53\xf7\x64\xf6\x0f\x1e\xe7\xcc\x78\x0b\x82\xa1\x07\xf3\xa6\x6e\x12\x84\xa9\x14\x20\xe7\xf8\x98\x02\x11\x15\xa3\x2a\x09\x78\x17\x10\x0b\x7b\xbb\x94\x9c\x6c\x98\xad\x57\x5c\x89\x37\xb0\x65\x69\xbf\xa0\x1c\x1b\x7a\x32\x5f\x15\x8d\xf2\x59\x03\x33\x50\xfc\xbc\xa5\x1d\x5f\x40\x1a\x1a\x95\xe0\x95\x84\x59\x20\x10\xf9\x4e\xef\xbf\xff\xf6\x43\xc7\xd3\xe0\x95\xf5\xef\xbf\xfb\x40\x82\xd2\xfd\xf7\xdf\x7f\x80\x96\x7e\x54\x38\x5b\xb2\x92\x6a\x5c\x03\x0a\x1a\xf4\xae\x2d\x3f\x55\xcd\xbe\x13\x51\x10\x9f\x9e\x3f\x7c\x96\xa9\xf8\xdc\xc7\x4b\xdc\xb9\x49\x0f\x56\x78\xe1\xb2\xe2\x15\x5e\xef\xb7\x99\x8e\xb1\x13\x0e\x60\xbf\x5c\x71\xc3\x40\x96\x73\x93\xbf\xba\xdf\x3c\xdc\xaa\xe0\xc1\x52\xe7\x4d\x3e\xfc\x83\xfc\x7a\x86\x81\xf0\xd0\x7f\x75\x2d\x35\x81\x7e\xff\x4a\x3c\xbd\x59\x34\x77\x37\x0d\x37\x65\x3f\x8b\xb9\x92\x45\x1d\x41\x97\xe3\x2c\xed\x45\x0c\xa2\xc6\xb0\xc8\x31\xf0\xb6\x04\x62\x0c\xee\x1d\x7e\x0e\x32\x87\x95\x09\xd0\x54\x6d\xca\x6a\x3d\x95\x9c\x0c\xf2\x05\xd7\x8a\x29\xd9\x86\xbe\x0e\x4d\xd2\x25\x57\x87\xfd\xfc\xca\x5a\x44\x9e\x20\x51\x75\xe9\xea\x59\x12\xc6\xeb\x05\x74\xc1\x50\x97\xf3\x50\xd5\x1c\x52\xa0\xbf\xb2\x89\x5d\xa3\x31\x93\x2e\xf0\x61\xc9\xe2\xc4\xaa\xb6\xeb\x8e\x36\x23\x45\x95\x26\x9a\x5b\x13\x1d\x04\xe8\x8c\x05\x8e\x6d\xae\x4c\x7c\x63\xc2\x49\x11\x68\x55\x67\x66\x02\xaf\x67\x05\x62\x96\x6c\xe6\x25\x23\x22\x32\x62\xef\x4d\xd5\x7d\x1e\xf4\x34\x8b\x2e\xd4\x02\x5f\x23\x9d\xd2\x70\xb5\x96\x05\x14\x1a\x3f\xd3\x3f\x87\xd7\x81\xe9\x8a\xf5\x8f\x5b\xa1\xee\xd3\x3f\x4b\x92\x7d\xd1\x16\x9d\xdf\xb7\xe3\xfc\x45\xb3\x69\xfc\xbe\x8e\x5f\x43\x00\xd1\x45\xde\x2f\x06\xb2\x99\x64\x7b\xda\xd6\xd5\x0b\xc2\x8d\x77\x1e\x81\x9c\x18\x8c\x64\x0c\x0c\xb3\xe2\x4c\xe7\x93\x21\x1d\x84\x67\x86\xc5\x06\x18\xd7\xa2\xe6\x4d\x00\x75\xca\xd0\x49\xb0\x29\xad\xb7\x48\x19\xa1\x96\x9b\x65\xf6\xd0\x3c\x80\xef\x79\x03\xc5\xb7\xd6\x7c\x58\xcf\x3d\xdd\xb4\x3f\x7a\x4b\x4f\xef\xb8\x50\x93\x43\x10\xaf\xa8\x5d\x4e\xa4\x27\xf6\x22\x7a\x96\xe0\x14\x35\x93\xe9\xa6\xe1\x6c\xa0\x06\xdc\x5f\x37\xa9\x3b\x85\x21\xa0\x17\x6f\x04\x79\xca\x85\xcd\x1b\x0d\xe4\xaf\xe5\x67\x83\x6a\xe1\x7e\xfc\x14\x96\x69\xc3\x06\xb5\x85\xa7\xa9\x7e\x69\xbe\x6e\x71\xee\xe0\xf8\x02\xbf\xb5\x13\x0a\x43\xbc\xb9\x2d\xbb\xfd\x06\x7b\x00\x2e\x02\xe5\xc7\x52\xae\xb0\x0c\x08\x31\x91\x44\xe5\x60\x6d\x05\x8c\x5c\x22\x26\xa9\x65\x02\xe7\xce\xcb\x45\x0e\x23\xd4\x5c\x59\xf3\x9a\x63\x34\xf9\xd1\x13\x08\x47\x78\xb0\xfa\xd9\xaa\x37\x8c\x73\xc5\x6c\xcb\x55\x6f\x9a\x95\x01\xa6\xe6\x65\x7f\xcd\x53\x27\x96\x02\x8c\x5c\x51\x5b\x74\x3f\x84\x9b\x31\x71\xb0\x27\x68\xe3\x09\xef\xc8\x85\x72\xb3\x3f\xe0\x87\xf0\x34\x45\xe5\x40\x5e\x0f\x8f\xbd\x0a\x82\x05\x6d\x93\xca\x14\x87\xfb\xaf\x6d\x49\x8d\x62\x17\x2f\xec\x08\x29\xbc\xf5\x47\x76\x1d\x33\xe6\x89\x6f\x22\x62\xb6\x04\xd0\xf4\xef\x5d\xba\xd6\x8f\x9a\x74\xb3\xb6\x66\x24\xed\x1f\xab\x9e\x4a\xff\xe7\x0f\x46\xa3\x24\xed\x67\x21\xbb\x04\x7d\xfa\x9f\x11\xd4\xf0\xe4\xec\xf3\x44\x7f\x0b\x82\x2a\xcd\x4a\xb0\xd0\x7c\xdd\x58\x89\x54\x04\x35\xce\x11\x40\x32\xf4\x9a\x2b\x9c\x49\xea\x35\x9d\xe2\x79\xad\x2b\x36\xdd\x6d\xcf\x2c\x42\x0d\xa4\xd8\xd6\xb7\xc4\x54\xe3\x72\xae\x46\xd5\xba\xc5\xad\x30\xf1\xda\x96\x2a\x38\x22\x14\xad\x0f\xbb\xe3\xa3\x5f\xee\x06\x61\xba\x2e\x85\x2d\xf6\xde\x70\x9b\xb1\x48\x85\xa0\xd4\x0a\x58\x96\xf5\xbd\xea\x32\x18\xf7\x88\x71\xf0\x95\x5a\xec\x6c\xaa\x3e\x75\xc9\xd4\x9a\x5a\x6f\xc3\xc2\x63\x25\xf1\x63\x9c\xa9\x36\x6d\x87\xdd\x1a\x01\x29\x18\x60\x49\x07\xc6\x6d\x03\x39\xcd\x71\x88\xbc\xce\xa0\x87\xc7\x48\xc3\x28\x15\xac\x69\x35\xdc\x32\xc4\xe3\x01\x82\x45\xe1\x35\x18\x6d\x50\x2d\x54\xdc\x87\x6a\x7e\xd0\xdf\x5e\xb7\x31\x01\xf1\xaa\xe0\x35\x2f\x23\xe7\x60\x40\xb6\x7a\x4d\xfb\x71\xb0\xc9\xa9\xc0\x65\xa1\x6a\x8d\xa6\xa1\x91\x48\x07\x30\x9a\xa9\xfa\x88\x66\x86\x5c\x05\xf4\x33\xb5\xb8\x41\xb3\xfb\x5a\xd7\x20\x4a\x41\xbb\xc7\x54\xfe\xeb\x78\xbc\x4a\xcb\x87\xc6\x1a\x72\xad\x5a\x36\xe6\x88\x9c\x1e\xfe\xe1\x7e\xf1\x48\xd6\x31\x0c\x66\x46\x17\x25\x9c\x28\xe8\x0c\x37\x41\x1e\x73\xd5\xc1\x15\x99\xc9\x86\xf7\x0a\x06\xa2\xef\xd9\xaf\x49\xa0\x8b\x0b\xb4\x46\xfe\x94\x1d\x64\x4f\xa8\x04\x82\xdc\x69\xb5\xc0\x10\xa0\xf0\xca\x96\xfb\x5d\xd4\x76\x93\xd1\xea\xc8\xf4\xcc\x46\x3b\x0a\xaf\x15\xfc\x1a\x76\xc1\x0e\x2b\xc3\xaa\x9d\xd8\x1f\x8f\x88\x76\xef\x39\x6f\x23\xe2\x60\x2b\x6c\x3a\xd0\x3f\x12\x09\xa8\x13\x86\x5e\x0c\xab\x08\x10\x55\x3f\xe0\xf2\x93\xd8\x31\xc1\x0d\x5e\xa0\x61\xc6\xc4\x7d\x5d\x98\xeb\x07\x7d\x4a\x23\x66\x8d\x5f\xfa\xd0\x82\x58\x3d\x8a\x07\x59\x8a\x05\x32\xff\x0f\x33\x5c\xe4\x11\xad\x2a\x93\xa9\xd7\x1a\x51\xb9\xa6\xf8\x88\x1c\x47\xce\x87\xf2\xc1\x0d\x55\xf7\x78\xbb\x7d\x5c\x14\x0f\x26\x46\x1d\x08\x3f\x6e\xd8\x03\x33\x2a\xd5\x33\x0c\x38\x65\x50\x53\x20\x49\x4e\xe3\x8e\x01\xa2\x79\xfa\x85\x85\x80\x92\x6f\xc2\xd2\xc2\xe3\x4d\x48\xd7\xcf\x5d\xc7\x3b\x40\x43\x0c\xcf\x9b\x66\x30\xab\x10\xdf\xbc\x70\x24\x03\x19\x3c\xc8\x1a\xb8\x10\xdf\xda\x3d\x77\xff\xa2\x02\x1d\x71\xef\xed\x01\x94\x48\xe0\xb9\x83\x08\x09\x64\x5f\x8f\x54\x27\xff\x4e\x00\x4e\x49\xbf\xbe\xed\x7f\xa6\x04\x3c\xd5\xf8\x14\x09\xdc\x25\x03\x4f\x05\x39\xb5\xb4\x99\xd0\x37\x5c\x3e\xe4\xcb\x67\x05\xe1\x53\x54\xcc\x08\x7e\x7b\xb0\x75\xd3\x7c\x94\x10\x32\x73\x7c\xfa\x9c\x15\x07\x4d\x94\x4c\x0e\x0f\xf8\x2a\xce\x25\xc9\xb2\x5a\x84\xc1\x54\x9f\x73\xc2\x44\x17\x0b\x9e\xe3\x36\xfb\xbb\x68\x1d\x4f\xf1\x2b\xfd\x5f\x4c\x18\x0e\x44\xfd\x35\xce\x2d\x64\xd0\x25\x7b\x6d\xb8\x5c\xb5\xb4\x0f\x9a\x52\xc7\x80\x71\x5b\x6a\x8a\xce\xec\xfc\xcb\xbc\x29\xa6\xbc\x28\x62\xd7\xce\x99\xaf\xdd\x39\x87\xf1\xa5\x8f\x7e\x9e\x9b\x7f\xd9\x18\xcc\x5d\xb9\x7a\x9f\xb2\xf8\xd2\x89\x0d\xc1\x6a\x31\x21\x87\x5f\x19\xfb\x9f\x35\xd8\xb0\x42\x67\x36\xa2\x3b\x17\x8f\x50\xcf\xd4\x38\xe7\xc3\xac\xaa\x0b\xba\x87\x40\xbc\xf0\x2c\x65\xc1\xac\x93\x0b\x76\xf5\x90\x13\x3f\x0b\xd1\x05\xe4\xee\x7c\xde\xc1\x9e\x60\x62\xeb\x83\x96\xdb\x85\x73\x11\x47\x0d\xeb\x2a\xf2\x82\xe9\x1d\x38\x17\x01\xd3\xc1\x9d\xf5\x00\xd0\x90\x72\x4e\xfc\x43\xec\xfe\xa4\x58\x1e\x39\xe7\xf5\x81\x8e\x4a\x6c\x75\xf8\x2a\xce\xf5\x88\xd9\x53\xd9\xf6\x70\x8b\x1b\xa3\x9d\xcd\xf4\x69\x01\x65\xdf\x52\x33\x8f\x21\x2b\x49\x04\x45\x0c\x42\xd6\x5f\xb5\x0c\xf0\x01\xf3\x45\x36\x47\xfc\x54\x15\x7b\xa2\x3e\x9e\x8b\xdb\xea\xfd\x2e\xae\x97\x56\x3c\xae\xca\x0f\xd6\x3d\x98\x4f\x08\x11\x2e\xbc\x2e\xfc\x22\x97\xde\xdd\xb7\x9b\x6a\x99\x99\x90\xd3\x67\x28\x0e\xe0\xb6\x9b\x7a\xbf\xb7\x90\x55\x09\x1f\x82\x01\x95\xd8\x38\x9b\x98\xf4\x43\x3a\x9a\x8f\x18\x5b\xe2\x4b\xe9\xa4\xaa\x3b\x4d\xb8\x46\x84\x30\xc0\xd2\xa0\x3e\x20\x2c\x30\xb4\xb2\xd9\xe7\xe1\x73\x58\x36\x0d\xfd\x6b\x47\x80\x90\x24\xaa\x7a\xb1\xd9\xc3\x64\x94\x99\x11\x9f\x1b\x8e\x94\x07\x1f\x39\xbd\xa9\x78\x90\x05\x36\x79\x9e\x07\x36\x11\x66\x07\x7d\x85\xad\x81\x20\xe0\xf5\xa8\x69\xef\xd8\x76\xe4\x6d\x98\x9c\x71\x07\xcb\x9d\x6c\xba\x55\x17\xe5\x8e\xe3\x42\xb2\x0d\xef\x52\x76\x5b\xe1\xf9\x77\xb4\xfa\xdd\x6d\xad\x8a\xe9\xd5\x54\xb3\x66\x10\xa8\x9e\xe2\x58\xb4\x1c\xcc\xf9\x8e\xd6\xbe\xb7\xd6\xc2\x2d\xeb\x63\x59\xee\x82\x26\xe2\xee\x07\x0e\x12\x60\x9e\xb1\x6d\xd5\x04\x47\x53\x1f\x40\x73\x1a\x3e\xc0\xc4\xa3\x80\x25\xfe\xf6\x5f\x77\xb3\x3b\xfc\xa5\xc6\x0b\xc4\x94\x9c\x88\x40\x0e\x45\xa7\x83\x61\x25\x4f\x16\x70\x6e\x98\xa8\x1a\x4b\x9e\xa8\x4a\x4c\x5f\x07\x06\x45\xde\x8b\xd8\x75\xcd\x0a\xb4\x87\xbb\x17\x5b\x37\xa6\x13\x56\x8d\x0e\x94\x4d\xc7\x43\x62\x4d\xc5\x61\x80\xc7\x73\x12\x24\x1f\x2e\x30\x30\xd3\x8f\xea\x8a\xcd\xf4\x83\x0e\x0a\x15\x1d\xaa\xe7\x64\xb2\x0e\xa5\xbc\x70\x6a\x39\x58\x40\x05\xb7\xf0\x4c\xa3\x6f\x69\xf4\xfc\xa1\x5f\xb6\xe6\x5e\xaf\x9b\x20\x7e\x8a\xf8\x0e\x60\x2f\x0a\x3b\x32\x8b\xc7\x7a\x2d\xe2\x89\xe2\x45\x85\x95\x81\x14\x63\x7b\x8b\x89\x32\x38\xf2\x6e\xf7\xb4\x75\x6e\xaa\x8f\xd0\x85\x11\x61\x4a\x20\xde\xf3\xcb\x2b\x28\xc0\x68\x01\xd0\x3e\xba\x62\xbe\x9b\xfe\x65\x5d\xd6\x88\x0d\xc9\xf1\x70\x95\x11\x2d\x16\xec\xf2\x53\xd5\x1a\x3e\xef\xba\x34\x43\xec\xba\xd8\x08\xdb\x0a\x9d\xc2\x4c\x7a\x10\x45\x58\x8a\x98\xb7\xbc\xd2\xba\x5d\xb9\x20\x99\x78\xc6\x17\x5b\x6d\x8d\x87\x04\x5c\x78\xf3\x5b\xcd\x7d\xdc\x48\x60\x77\xc3\xfa\xb2\x00\x2d\x8a\x92\x50\xff\xab\x7b\xf0\x08\x3d\x43\xd0\x29\x29\xd8\x30\x7c\x9b\x0c\x0c\xfe\x2a\xf6\xbf\x15\xb3\xeb\x54\xad\x45\x6e\x73\xab\x38\xd8\x87\x30\x7c\xa1\x34\x7d\x87\x28\x3c\xac\x6a\xe6\xf5\x0a\xa6\x4c\x98\x00\xe9\x76\x8d\x58\x64\xbe\xd3\xcf\x31\x90\x9c\x96\xb8\x27\xaf\xe4\x6b\x0c\xb2\xd3\xd8\x42\x2e\xca\xd0\x18\x64\xde\x14\x7c\xfe\x79\x4e\xff\xc6\x42\xb4\x8b\x5a\x6f\x92\x34\x88\x73\xc7\xfe\xec\x72\x8f\xcc\x19\x84\xee\x72\xb3\x94\xd8\x04\xac\x39\xc2\x71\x4f\x74\x7d\x6c\x07\x2c\x61\x37\xd9\x6c\x0c\x15\xa8\x77\x1a\x1c\x2f\x10\x46\x2c\x54\xe4\xa9\x27\x6b\xe8\x9a\x38\xec\x13\xee\x25\xac\x5f\xaf\x45\x06\xc1\x34\xe0\x70\x2b\x31\xdf\x8e\x78\x6b\xe1\x73\xa1\xdd\x14\xda\x06\xb4\x93\x38\x6f\xec\x53\x44\x44\x8d\x70\x1f\x06\x22\x32\xac\x58\x5a\x05\x66\xc0\x16\x22\x1b\xc4\x06\x84\x8d\x7b\xa4\x26\xd4\x8c\x20\x31\x9e\x1e\x41\xf8\x7b\x4c\x00\x99\xb3\xd2\x70\x9f\x51\x70\x7f\x56\x78\x15\xad\x87\x80\xa3\x44\xcf\x09\xa0\xa3\x1a\xbd\x4d\x14\xb9\xcc\x29\x4c\x8f\x1b\xe8\x4b\x19\x57\x6c\x2d\x19\xac\x6e\xde\xa6\x49\x38\x12\x29\xba\x2d\x57\x79\x5b\x58\x10\x14\xe5\x34\xec\x08\x02\x8e\x12\xfa\xbc\xe6\x1b\x3a\x7c\x6b\x15\xc4\x19\x09\xe4\x23\x1b\x3e\xd1\x7c\xb3\x8c\x63\xfa\x06\x96\x16\x0b\x61\x63\xec\x76\x47\xcc\x65\xbf\x63\x7e\x23\xcc\xcb\xda\xc1\x90\x1f\xfe\xf1\xf2\xfc\xed\x51\xfa\xf9\xf1\xf5\xf5\xf5\x63\x2e\xfe\x78\xdf\x6e\xd8\x41\xad\xe0\x20\x2b\xff\xf3\xec\xcd\x51\x5a\xf6\x8b\x47\x33\x3a\xa8\xb7\xb1\x7a\x4b\xcd\x42\x71\xf3\xc0\xd4\xc5\xa2\xe3\xef\x67\x4f\xba\x62\x34\x54\x79\x18\x9b\x2b\xdc\x20\x79\xf6\xcc\xbc\x43\x27\x53\xcc\x3c\xfc\xe1\xb0\x5c\xb4\x25\xac\x23\xf0\x11\x64\x6c\xe8\x4c\x30\xe5\x5c\x3f\x04\xa9\xa8\x1d\xed\xc6\xeb\x85\x86\x4a\x1f\x80\xd8\x65\xe0\x09\xae\x01\x5d\x26\x26\xce\x6d\x2b\x1c\xfd\xad\x5b\x37\xfb\x4d\x11\x73\x4c\xc2\x99\x4e\x44\x59\xfc\x34\x2c\x0c\xeb\x45\xc4\x3a\x7e\x9a\xfe\x91\x35\x45\x3c\x51\x42\x5b\x9c\x65\xb4\x05\xe0\xd9\xb0\x30\xc2\xf1\x05\x82\x31\x0d\x40\xc2\x0c\x9a\x60\xee\xf3\x9c\x70\x3e\xaa\x44\xcf\x6f\x6c\x56\xd1\xa7\x5b\x77\x9e\x03\xad\x49\x75\xe3\x22\xb1\x9e\x6e\x3a\xdb\xf0\x22\xe6\x8c\x12\x6f\x3d\x5f\x99\x12\x6b\x0a\x0f\xa9\x98\x6e\x4e\xa2\x28\xe0\x8f\x00\x65\x2e\x12\xda\x92\xfa\xb5\x0b\xc6\x94\x6a\xfc\xc9\x72\x98\x11\x04\x24\x28\x7b\xb8\x82\x4f\xad\x45\x39\x51\xbb\x59\xf3\xab\xc7\xf8\x9b\xee\x70\x22\x99\x88\xf7\x4c\xc4\x3d\xc0\x3a\x62\x99\xeb\x7a\xb8\x8b\x0d\xc5\x2d\xe5\x4d\x5e\x94\x51\xde\x34\xda\xae\x15\x70\xd0\xc6\x68\x97\x54\xe9\x78\x2c\xf3\xfb\x16\x0e\x09\x04\x62\xc4\x93\xe9\x28\x2d\x26\x0b\x5c\x10\x4f\x5d\x5a\x2c\x5e\xd9\x2a\x05\xdf\x8d\x97\x28\x23\x44\xd6\x51\xc8\x51\x59\x50\x8b\xaf\xfc\x19\x04\x9e\xb3\xec\x25\x60\x16\xf5\x23\xbf\xe1\x50\x84\x96\x5a\xcd\x07\x4c\x7c\xd5\x06\x99\xc3\xb7\x21\x86\x2b\x9b\x64\x35\x79\x5d\xe8\x44\xbe\x42\x6c\xed\x36\xcd\x8d\xb9\x56\x9f\xe2\x97\xc6\x5e\x09\x47\xe6\xc1\x74\x50\x1e\x32\x50\xbe\x34\x59\x5c\xdd\x5f\x83\xd8\xa1\x2a\xe2\xd6\x7c\xde\x45\x51\x82\x09\x8f\x31\x91\xc2\x7b\xa2\x7b\x13\xde\xb9\x0e\x6a\xe8\x47\x7c\xea\x5a\x38\xe0\x47\x1c\x17\x0d\x7d\x89\x83\xa2\x5f\xe0\x4b\x1c\x23\x69\xec\x29\xec\x87\xfa\x05\xce\xc2\x53\x83\x1e\xcb\xb5\x53\x88\x9f\x28\x30\x25\xdd\x16\xe1\xd8\xbe\xc0\x69\x78\x70\xb2\xfd\x12\x01\x77\xaa\x27\x1e\x25\x01\x72\xef\xd2\xf8\x16\xd5\x72\x39\x9b\xb7\xcd\x75\xc7\x9e\xb9\x78\x68\x81\xb9\x2c\xff\x4e\x2f\xf1\x5b\x40\xf8\xa6\x1f\x44\x21\x1f\x92\xa8\x06\x45\x4f\xf5\x66\x4f\x12\x71\xcd\x3a\x0c\xf2\x7e\x4a\x39\x72\xe5\xfa\x96\x4e\x62\xc7\x96\x33\x93\x22\xb4\xd1\x5d\x67\xfc\x05\x9f\x62\x68\x9f\x59\x59\x8a\x42\x97\x9c\xa2\x60\xfc\x69\x08\xb7\x5d\x09\xb6\x6c\x72\x29\x2d\xe2\xab\xd7\x1c\x81\xb0\x0c\x8e\xc0\x88\x18\x2a\xc8\xa7\x1e\x24\xf4\x1d\x24\x08\xc3\xa5\x87\x50\x04\x61\xd1\x3f\x7f\xfd\x56\x7e\xc2\x40\x5d\x63\xf9\xc0\x42\x9d\xef\xc6\x13\x33\x7b\x9f\x4d\x99\xbf\x5b\x9e\xf8\x27\x88\x9a\xc3\x5e\x46\xc3\x2f\x07\x51\xb4\xf9\x12\xd7\x40\xfc\xdf\xa5\x92\x0c\xec\x8b\x5d\xb4\xe5\xe3\x61\x31\x42\x8e\xa0\xfa\x12\x1f\x2e\x5d\xaf\x71\xf8\x9f\x4b\xcb\x61\xa1\xf1\x34\x18\xb9\xc7\x88\x99\x02\x10\xdd\xdd\xef\xd2\xae\x62\xdd\xa9\x12\xe8\xa0\x41\x50\x87\x0f\xaa\x0b\xda\xc1\x5b\x61\x06\x41\x3b\xb4\x73\x0f\xa6\xcd\xba\x16\x0f\x45\xcb\xc3\xb1\xd5\xe2\x89\x45\x65\x7c\x64\x5d\xd3\x06\x7b\xef\x0b\xca\xc7\xee\xbf\x08\x9d\x3a\x58\x14\xe0\x80\x09\xac\x0e\xea\xd6\xb3\xe1\x44\x38\x75\xa6\xe2\x2c\xc5\x6f\x07\x65\x92\x21\x93\x4b\xb6\x2d\x02\xe1\x50\x08\x28\xdc\x56\xce\xf2\xf6\x23\x3f\x3d\x00\xfb\x31\xab\xe0\xba\xd5\x18\x50\xfc\x3f\x9c\x31\x7d\xf2\xe2\x42\xbe\x46\x0d\xc6\x36\xdf\x28\x0d\x7d\x80\x31\x53\x57\x80\xa5\x59\x11\xc9\xde\xc8\x97\xbc\xe7\x36\xa4\x8c\xb1\xa3\x3c\xe5\x3d\x1e\xce\x5b\x00\xef\x10\xfd\x97\xf2\xdf\xff\xf7\xff\x63\x75\x69\x43\xbb\x25\xa2\x5a\x68\x60\x48\x3f\xef\xe6\xd6\xe6\x1f\x69\x79\x0c\x1e\x1d\x74\x44\xd0\x9f\x6a\xa0\x08\xfa\x1a\xd1\x28\xbf\x5e\x60\xf4\xcd\x56\x74\x03\x22\xc7\x21\xd1\x93\x39\xae\x1e\x87\x75\x18\x51\x65\xba\x47\xb8\xc0\x74\x36\xb9\x98\x34\xf4\xbc\x57\xa2\x9b\xde\x52\x92\xf7\x4d\xbb\xfa\xe0\xc3\x97\xba\x89\x88\x42\x97\xe2\x64\xe8\x61\x0c\x61\x2f\x99\xfc\xc6\xef\x64\xc9\x49\x5b\x22\x3c\xc3\xea\xcb\xfc\x68\x67\xe6\x9f\x24\xf1\x0c\xf5\x4a\x3a\x7a\xc0\x10\x6e\x43\xa6\x84\x34\x79\xad\x48\xf4\xae\x94\x1d\x5e\xf8\x83\x43\x4e\xf2\x93\x6b\x4c\x27\x72\xcb\xf5\x1a\x09\xb4\x00\x91\x80\x70\xaa\x70\xf4\xe1\xff\x09\x82\xd8\xa9\xa6\x8c\x53\xf5\x4b\xd3\x07\x81\xf2\xa2\xc7\x06\x02\x7f\x2a\x04\xd0\x8c\x5e\x10\xe0\xca\x81\x95\x89\x6b\xf2\x51\x58\x55\xa0\x10\xa9\xb7\x41\x47\x7e\xb6\x0f\x36\xb8\x1a\xd1\xa8\x4c\x50\x38\xb3\xf5\x55\x2d\x42\x1c\xe6\x16\x41\x3d\xeb\xc8\x1c\xb4\x9b\xf9\x66\x02\xda\x5e\xcb\x1d\xba\x2f\x86\x17\x7c\xe6\x44\xe5\x3f\x09\x3c\x5f\x12\x54\x5d\x17\xec\xe6\x28\xe3\x93\xd3\x0d\x49\xf2\x9b\xe8\x3c\x86\x8a\x58\xe6\xfa\xe9\x80\x93\xe9\x38\x00\xee\xd7\xbb\x99\x8e\xeb\xb8\xdd\xd1\xf4\xf7\x5e\xdf\x4e\x07\xb7\x0b\x95\x4e\x83\x28\x77\x2e\x6b\x2a\xdc\xdd\xef\xb9\x4c\x8d\x41\x03\x51\x26\x42\x81\xab\xe9\x4b\x95\xf6\x7a\x47\x4b\x94\xfa\x8f\x5d\xd1\xc6\x61\x5f\x87\xbd\x1e\xc5\x65\x8b\x3a\xfd\x75\xf1\xd9\x0e\xde\x75\x46\xbc\x62\x78\x08\x1b\x05\x59\xc0\x00\x6f\x2d\x12\x87\x5c\x08\x3b\xec\xd4\x6e\xc1\xdd\x99\x6a\xe2\x25\xd8\x82\xe8\x92\xef\x8e\xb8\x70\xe0\x72\xe2\xb6\xd0\x0b\xc3\x5e\x32\x8f\x71\xce\x0e\x61\x27\x6f\x2d\x11\xee\x83\xf1\xfd\xf6\x3f\x12\x8e\x61\xfa\x02\x80\x0f\x69\xd7\xa6\x9b\xc2\xae\x69\xf8\xf3\x27\x7e\x16\xf2\x0d\x5f\x72\x0a\xf0\x8c\xd6\x63\x6e\x8f\xa7\xde\xfa\x61\xa7\x39\xb4\x8c\x70\xed\x99\xde\x77\x59\x24\xa6\x41\xba\x67\x79\x30\x36\xd6\x1b\x3d\x0f\x24\xbf\x21\x8f\x4c\xe6\x0c\xcb\xc7\x6d\xc4\xb6\xfd\x96\xea\xee\x60\xce\xf0\xe1\xd2\x09\x6b\x8b\x12\x9e\xf9\x27\xf2\xe5\x72\xf4\x30\xa4\xa1\x9b\x7d\x27\x24\x2c\x2f\xfc\x71\x82\x54\xdd\xed\x14\xd7\xec\x50\x4c\x93\x72\xb3\xe3\x29\xcc\x53\xa7\x8e\xa3\x69\x12\x40\x95\x07\xb5\x57\x10\x61\x7f\x18\xd6\x25\xcf\xab\xe8\xae\xf9\xb6\xb9\x4e\x64\xcb\x9c\xc1\xc5\x40\xc2\xc8\x6a\x4a\xdc\x25\x49\x63\x21\x42\x63\xfc\xa4\x12\x40\x41\xa3\xc0\x8c\xf3\x07\xde\xfa\xd8\x31\x9c\x9f\xbe\x45\x85\x66\x09\x11\x0e\x28\x70\x6a\x66\xc1\x3b\x24\x8e\x99\xd6\x0a\x09\xd3\x37\x2b\xa2\x62\xd4\x6e\x08\xf1\x25\x0d\xe3\x1d\xdd\x61\x73\x47\xa6\x80\x42\xd0\x40\xd5\x8c\x49\x74\x34\x69\x45\x1f\x47\xb5\x7e\xb8\xf7\xc9\x7c\x3f\x42\x88\x2f\xe9\x07\xb7\x02\xa3\x6d\x4c\xe2\x6d\xfd\xa1\xd3\x9b\xc6\x40\x8c\x6e\xda\x87\x5d\xf4\x2e\xe6\x57\xc1\x3e\x0d\xeb\x8e\x62\x20\x77\xb0\xbe\x77\xbc\x61\x4a\x8e\xdc\xc2\x4e\x88\x06\x62\x84\x33\x19\x1e\xe9\xee\x25\x0e\xeb\x78\x2e\xe9\x40\x03\xf3\x1a\x0f\x36\xb9\xeb\x48\xbf\xbc\x28\x07\xd9\xea\x4c\xe5\x39\xc9\xbc\x7b\xc3\x15\x38\x0b\x0c\x24\x72\x5d\xb8\x65\x40\xb0\xb3\x99\x2c\x24\x44\xbe\x5b\xe3\xcc\xea\x82\x56\xc7\x95\x39\x56\x0d\x28\xc7\xa2\xc7\x70\xc6\x3b\x43\xa9\x2c\xd0\x86\x32\x53\x3e\x32\x59\xd5\xdd\xfd\x03\x6a\x9b\xdf\x44\xd6\x35\x30\x06\xde\xc6\x2f\xc9\xde\xa2\x40\x19\x77\xc5\xef\xda\x12\x77\xde\x11\xcc\x41\xad\xc9\x2c\x5c\xea\x63\x02\xf1\x64\xb7\x6a\xe1\x38\x60\x73\xcd\xcc\x22\x20\x05\x54\xf8\x83\x1b\xa5\x7b\xc0\xd0\x73\x03\x5c\xef\x52\x45\x0f\x6e\x63\x0a\x5f\xd1\x01\xb0\x8d\xdb\x7b\x00\xb6\x20\xee\x62\xd4\x8d\x80\x05\xdc\xd6\x11\x7d\x79\xf0\xcb\x3b\x02\xbe\xf1\x85\x1d\x39\xb2\x5e\x68\xcc\xe6\xa2\x98\x5c\xff\xb7\xf5\x6f\x70\xcc\x01\x71\x46\x41\xc1\x07\x04\x1f\xbd\x94\xee\x88\x3e\xb0\x33\xb3\x6a\x61\xd1\xa0\x76\x6f\xba\x9d\xf9\xaa\x6a\x9a\x42\x9c\x35\xeb\x3e\xb4\x8d\x8b\x43\x89\xb0\x59\x56\xdf\xde\xa8\x48\xc2\x83\x8b\x23\x99\x78\x93\x18\x39\x7c\xe1\x8e\x56\x02\xc5\xbf\x07\xda\x3f\x24\xee\x09\x3c\x5e\xca\xf6\x9d\xc8\xab\x98\x72\x4f\xd5\x45\x0f\xf7\x8f\x63\x76\xdf\x1a\x2f\x3d\x8e\x13\x3f\x7c\x30\xa0\x93\xb0\x5a\x2b\x93\xe5\xec\xe1\xc1\x44\x4d\x81\x98\xb1\xde\x10\x0e\xb6\x78\x6f\x76\xc1\xa1\x73\x9b\xba\x12\xa3\x93\x33\xf9\xa2\xb1\x27\x18\x53\xb6\x93\xb0\x0a\x78\x2e\x5e\xc2\x19\x6a\x0a\x87\x33\x4c\xfa\xa6\x87\x40\x71\xc5\xff\x7f\x48\xef\x17\x89\x1f\x3a\x54\x83\xac\x21\x52\x29\x41\xbe\x83\xfc\x20\xb8\x37\x0c\xd1\x5b\x0b\x57\xee\x6b\x40\x37\xa1\x80\xdc\x07\xdd\xd6\x4e\xa2\xd2\x7d\x37\xd5\x62\xc6\xd7\x9a\xa9\x5e\xea\xba\x57\xc7\x99\x83\xf0\x0b\x5f\x05\xbf\xf0\x25\x6f\x94\x1e\x05\x09\xd1\x84\x84\x19\x3b\x17\x63\x33\x4a\x8e\x77\x45\x9f\x8e\x38\x2c\x71\x12\x07\x5f\x89\x12\xf2\xc5\xa8\x15\x53\x3f\x87\x69\x66\xe0\xe6\x53\xcc\xd4\x2d\xaa\x3d\x8e\xb3\x18\x66\x89\x7d\x60\x94\xa4\xef\x20\xc6\x23\x11\x8d\x68\x98\xb6\x69\x56\x1c\xd3\xdf\x5e\xd8\x0d\x86\xa7\x82\x75\x5c\xa7\xd9\x3a\x47\x55\xc0\x6b\x32\x4c\xc1\xad\x54\x9f\x77\x71\x69\xac\xcf\x30\x41\x3d\xce\x47\x80\x74\xd0\xce\x17\x6b\x75\xbd\x99\x20\x24\x3b\x2f\x3b\x62\xd2\xe7\xf7\x27\x20\xe5\xad\xca\xd4\x5e\xa6\x9c\x84\xe1\xf7\xc7\xf1\x10\x68\x90\xcb\xbe\x03\xec\xa8\x82\x50\x94\x8d\x06\x90\x62\x47\x02\x17\x76\x32\x3d\xc7\x72\xec\x6e\x2d\x14\x6c\x71\x1c\xaf\x40\x43\x5d\x6a\x49\x11\x47\x6e\xd9\xeb\x7c\xcd\xba\x6b\xaa\xb9\x46\xf0\x14\x59\xe7\x85\x88\x1c\x8e\x4d\x7a\x6d\x6a\xd9\x5f\x54\xc7\xa0\x97\x1e\xc2\x55\xf3\xf5\x5d\x85\x4a\x8d\x03\xbe\x50\x6f\x06\x9d\x8c\x78\x9e\x81\xdc\x51\xc3\xa0\x8b\x93\x55\x7c\x45\x27\xf9\xf1\xdc\xd5\xc2\x3d\xf9\x79\xca\x21\x8e\xdb\x39\x73\x3c\xde\xe0\xca\x85\xf9\x6c\x45\x6a\xb9\xe9\xe2\xb7\xf5\x0c\x1d\xe2\x03\xf9\x54\xf5\x87\xfa\xd6\x96\xdd\x4d\xbd\xc8\xf0\xf2\x6b\xb7\xd6\x6b\xc6\x77\xa5\x68\xba\x1f\xcc\x28\xed\x49\xae\x41\xcc\x4a\x5c\xc8\x75\x0f\x24\x0a\xfe\xc3\x05\xa5\xc3\xfa\x97\xf6\xbf\xc7\xe0\x89\x28\x6d\xd2\x1d\xc9\x6e\xfd\xa3\x5b\x1b\x1a\x8c\x25\x60\x88\x01\x6e\x5b\x74\x85\x5f\xa9\xff\x82\x11\x04\x57\xdc\xe1\x30\x98\x0c\x74\xf5\x83\x57\x84\x8f\xb6\x30\xe2\x1e\xb2\xb9\x02\x07\xad\x66\x5b\x0c\xb5\x71\xd2\xdd\xce\x5e\xf6\xd5\x8b\xa7\x03\x03\x0a\xdb\xbd\x65\x86\x1e\x44\xbd\xb8\x7b\x8c\xe1\x26\x24\xef\xb6\xef\x77\x6c\x8f\x9b\xba\x07\xdb\x7f\xc1\xef\x90\x29\x48\x5c\xfd\x6c\xd5\xb4\x0d\x4d\x8f\x44\xcf\xd1\x58\xfb\x2f\x2d\xad\x9b\x28\x00\x05\xf6\x4d\xb6\xd7\x88\x47\x56\xe6\x0c\xc9\x24\x5c\x70\xf8\x23\x5f\x0a\x5b\xb4\x95\x61\xb5\xe4\x42\x95\xd9\xd8\xb3\xad\xd4\xb1\x65\x04\x25\xb5\x4c\x33\x67\x43\x7b\xf5\xfe\x04\xf0\xb9\xa6\x04\xb0\xb8\xa4\xe0\x90\x34\x84\xae\xfd\x2e\xe3\xa1\x22\x76\x86\x24\xa7\x6f\x90\x9c\x5e\x71\xf2\xb8\x05\xeb\x95\x2b\x36\xe8\xd4\xa1\x72\x1c\xa6\x60\x58\xe6\x05\x47\x33\x18\xc2\x1b\xe6\xd6\x65\xbe\x1b\xe1\xed\x15\x25\x8e\xb0\x06\xc8\x31\x02\x00\x7b\x18\x0b\x61\xa9\xaa\xc0\xa9\x2b\x2c\xf1\x9a\x92\x0e\x41\xe3\xfe\x7e\x08\x5f\xb3\xa8\x78\xa0\x84\xee\xd9\xc3\x5e\xe9\x8d\xcb\xa8\x57\xcd\xfc\x6f\xe5\xa2\xef\x0c\xfa\x5c\x7e\x06\x50\xf3\xa6\xe9\xf9\x99\xd8\x1d\x8b\x5b\xb0\xab\x12\x34\x3d\xb7\x74\x16\xb7\x16\x1f\x47\x98\x12\xe8\x31\xaa\x04\xfa\x30\xae\xb6\x1c\xf4\x90\xda\x6a\xf7\x8b\x7e\x4f\x0b\xd4\x35\x78\x76\xc9\xc1\x12\x2f\x5d\xc6\xa8\xc5\x51\xc9\x90\x42\x87\x85\xa7\x5a\x5e\x90\x10\x51\x4e\x36\x7d\xc2\x39\xb7\xb6\x3d\x2a\x1b\x36\x3e\x2a\x3e\xb5\x52\xf0\x74\x0c\x2b\xd4\xe7\xfb\xc5\xc7\xb2\x67\x67\x9d\x75\x86\xfb\xe1\xb0\xae\x0b\x03\x4b\x9f\x03\x2c\x7d\x45\x60\xe9\x15\x54\x34\x13\xb5\xd2\xa6\xb3\x2d\xfb\x1c\xf7\xfc\x41\x2d\x2f\x4f\x68\x06\x38\xb9\xc8\xa7\x4a\x41\x75\x93\xa9\x94\xad\xab\x90\x05\x9f\xa0\x86\x73\x68\x77\x54\xf0\x3e\x76\x20\x53\xb5\x71\x60\x1c\xd9\xfd\x16\x37\x0b\x79\x51\x85\x43\xe5\x50\x1f\xde\x49\x4a\x00\x8b\x93\x04\xc1\x1a\x8f\xc4\x95\x36\x22\xa4\x13\xf8\x55\xcc\x28\x85\x83\x79\x60\x61\x5c\x04\x77\xc1\x1e\xbf\x53\x80\xbb\x5c\x16\xd3\x41\x48\x6b\xde\x00\xad\xe5\x21\x9c\x36\xda\x09\x2a\x85\xad\xc8\x31\x4e\xac\xde\x35\xbe\x38\xd1\x1c\x2c\x8c\x60\xf4\x6e\xd1\xc5\x39\x4d\x61\xef\x7c\xf5\x5b\xc1\x44\x7a\x85\xcc\x2a\x29\x26\x6f\xe1\x55\x38\xfb\xb6\xbc\x28\xda\x8b\xa4\x45\x4f\x90\x6b\x9a\x39\x95\xba\xa8\x55\x9a\xae\x4f\xfd\xea\x03\xb2\x30\x63\xc7\x63\x79\x6c\xfd\xfa\x2e\x7c\x33\xfa\x6d\x68\xe1\x7e\xd5\x60\x94\xc1\xc0\x62\xab\x1f\x1b\xe6\xdd\x8e\xad\x33\xad\x23\x8c\x8e\xa2\x23\x83\x80\x6c\x86\x2f\x83\xd7\xf0\xd4\x00\x46\x20\x25\xe2\xa8\xdc\x73\x6d\xc2\xd2\x38\xbd\xd8\x71\x60\x50\xc3\x1b\x9c\x6c\x02\x2c\x8f\x9f\x0f\x86\x76\x99\x0f\xf6\x62\xc5\x0c\xdd\x2c\xac\xcc\xf6\xb5\x3d\x5a\x63\x64\x70\xe8\x9d\x28\x8b\x4c\xfd\x85\x4f\x45\x79\x5c\x04\x94\x82\xcb\xf6\x98\x46\xaa\x2e\x0b\x89\x62\x18\xd8\x3a\x1f\x10\x09\x83\x2b\x9d\x44\xa0\xb8\x7d\x0f\x5f\x65\x0f\x6e\x56\x8d\x70\x70\x87\xc9\x96\xd4\x99\x1a\x13\x8e\x6a\x08\xca\x40\xa5\x27\x84\xcd\x26\x9c\xe2\x4a\x3a\x85\x22\xaf\x00\x35\x0c\xb9\x27\xb7\x00\x7d\xeb\xed\x59\x8c\x8b\xe9\x97\x00\xff\x43\x1e\x43\x0c\x3b\xe0\x9f\x44\x3c\xd0\xfe\x3f\xe5\x49\xc4\xa1\xf2\xb9\x8b\xbb\x32\x61\x71\x76\x3c\x7c\x17\xe1\x80\xb9\x19\xbf\x19\x37\x83\xf3\x4e\xcc\xcd\xa2\xbb\xbd\x88\xab\xa1\x44\xc8\xad\x90\x10\x5b\x39\x20\xc9\x6b\xc6\x4d\x29\x2e\x8a\x2d\x30\xaa\x61\x7b\x81\xbf\x55\xd4\x9a\x94\x18\x07\x5c\x8f\xbb\x20\x29\xe3\x0b\x35\x49\x57\x9d\x4c\xaa\xd1\x71\x4b\x55\xb0\xcd\xa0\x98\xd1\x5b\x2c\x4b\x1b\x46\x62\x85\xbe\x4d\xf9\xca\xa0\xcb\x03\xce\x12\x75\x5b\x4a\x49\x24\x08\xf3\xe5\x52\xe6\xa5\x59\x41\xef\x25\x25\x0c\x73\x28\x29\xf2\xe0\x18\xde\xd1\x95\x2f\x4d\x1f\xdb\xa4\x04\x9d\xd4\x6a\x06\x9d\x0b\x6a\x05\xd4\x34\x73\x0c\x7a\x33\x34\xac\x95\x54\x38\x35\xb1\x15\x70\xd7\x6b\xca\x4e\xdf\x4e\xe7\xe0\x85\x92\x02\x3d\x47\x01\xf3\x3c\x56\x6b\x9c\xbe\x0d\xd3\x83\x37\xc8\x90\xeb\x5e\x1f\x9b\x80\x09\x2c\x46\xf2\x96\x63\x27\xfe\xa0\x71\x66\x82\xb7\xc8\xd8\x01\x49\x5e\x36\xd9\x6d\xb8\xbf\x1c\x5f\x1b\xb7\x0d\xac\xb0\xe5\xed\x3d\xc7\xf3\x43\xb8\x7b\x25\x36\xb3\x12\x4b\x4f\x79\x2e\x43\x91\xc9\x5b\xb9\x46\x77\xc2\x16\xae\x11\x69\x9f\xb3\x8d\x53\x00\x52\xd8\xd3\xcd\x7e\x44\x79\xdf\xb7\xd5\x7c\xcf\x57\x98\x6a\xaa\xc1\x8b\x52\xec\x42\x5c\xde\x08\xb6\xdb\x9b\xcb\xc2\xa5\x7e\x1d\x86\x1d\x3c\xa9\x3e\x80\x93\x08\x53\xd6\x2d\x89\x2f\x65\x55\xe0\x06\xc0\x01\xc8\xbd\x60\x04\xb1\xe5\xcd\x21\xeb\x72\x5e\x9e\xc4\x5b\x8b\xf4\xf2\x58\x73\xba\x6d\xbf\xb3\xe8\xe8\x97\x67\x57\x17\xb7\xd0\x12\x83\x2a\x4d\x00\x32\x20\x0c\xce\x52\xe2\x40\x56\x40\x21\x6a\x1f\xa3\xc6\xdb\x7a\x02\x87\x85\x8d\x10\x5b\x37\x0d\x77\xdb\x0e\x2d\xaf\xc7\xd0\x76\x56\x71\x9c\x7c\xb6\xb5\x96\x32\xb3\xf4\x6c\xbf\xe9\x2b\x36\xd8\xb2\xd6\xd4\x68\x88\xdf\x3d\x2f\x77\x79\x6b\xa1\x3c\x11\xd6\x26\x7d\x70\xf4\x60\x16\xad\xbe\xac\x97\x07\xe7\xe4\xed\xbf\xab\x37\x97\xf4\xb9\x68\x6f\xe4\xce\x52\x47\xfa\xb1\xda\x31\x98\x3e\x19\xcc\x03\xa6\x14\xc0\xca\x13\xff\xb6\x54\xf8\x72\xab\x6c\x3f\x55\x0b\x47\x30\x17\xc7\x67\x50\x11\x50\x52\xb8\xf8\xb4\x69\x04\xe2\x31\x21\xcd\x77\x82\xa6\xa3\x89\x84\x34\x63\x20\xfc\x56\x2e\x1b\x92\xef\x0c\x81\x61\xc4\x90\xa1\x24\xa5\x0f\x2a\x2a\xa6\x47\x52\x45\x0c\x1d\x08\x17\x9e\xb5\x0d\x85\xbf\xb8\xc8\x5d\x66\xdf\xb3\x88\x99\x85\x3b\xd7\xe0\x65\xdd\x2f\x33\xd3\x09\x2b\x0b\xa4\x8c\xdb\x06\x3d\x19\xbc\x20\x2e\x11\x41\x66\xc2\x5f\xed\xf1\x91\xb8\x6a\xff\xd8\xcc\xa8\x44\xf4\x0c\xc9\x08\xaf\x13\xe6\x2f\xb7\x98\xbc\x04\xb5\x0f\xf6\xfb\xb8\xe2\xbb\xb6\x7d\x51\x9b\x99\xba\xca\x5d\x19\xa9\xba\x2a\xbe\x39\x52\xd8\x7c\xb7\x73\xdb\x46\xf0\xbe\x0c\xc8\x36\x00\xf9\x24\x0c\x27\x80\xa0\x45\xd0\x0d\xea\x11\x7f\xac\x10\x88\xdd\xb2\x14\x60\xb8\xf5\x68\x72\xb3\x5c\x72\xc8\x29\x0e\x8d\xa8\xf1\x42\x10\x81\xea\x8c\x0d\x9c\xad\xa4\x78\x19\x66\xac\x3f\x83\x3e\x8a\xc7\x64\x4f\x93\xbe\x43\x22\x1f\x00\x0c\xbc\xdd\xbb\x37\x9d\xdf\xed\x6b\x39\xda\x04\x59\xda\x10\x67\x85\x8d\x40\x7a\x69\x9b\xa6\xb7\x17\x10\x02\xd1\xe5\x1d\x25\xd3\x9e\xd6\xaf\x1d\x82\xf9\x52\x6a\x91\x49\xac\xf5\xa0\x0c\xae\xc4\x16\x30\x53\x1f\x17\xa2\x7e\x8f\x4b\x50\xbf\x0f\x80\x8b\x0d\x85\x6d\xfc\x97\xf8\x25\x4c\xda\xf5\x98\x2d\x32\x95\x1a\x6d\xc0\x92\x36\xa4\x9b\x10\x07\xc5\xdc\x13\xc6\xa9\x5d\xa3\x4d\x92\x06\x41\x86\xd2\x8b\x4f\x0d\xe5\x05\x9f\x1a\xca\x3e\x3e\x55\x3b\x36\xe8\x41\xd7\x6d\x6c\x22\x2e\x2f\xdf\xc4\xb3\xed\x73\x83\xa7\x68\xd8\xb4\xeb\x1e\xc7\x48\xe5\x40\x6e\xf7\x52\x76\xbe\x7b\x14\x94\x50\x6c\x86\xf8\xd3\xd4\x61\x1d\xdd\x6f\x9b\xaa\x2f\xbf\xbf\x87\x5b\xee\x7b\x7d\x55\xcc\xef\x3d\x0a\xd7\x4d\x05\x5b\xfb\x60\xe1\x54\x8b\x03\xe8\x71\xe7\xec\xe8\xe5\xca\x54\x1c\x97\xab\xb6\xb4\xfd\xfd\x24\x78\x4c\x72\x44\xd2\x7e\x1b\x70\x04\x1d\x6e\x01\xd6\x31\x76\xdc\x68\x83\x8c\x8c\xe4\x85\x5e\xde\xda\x63\x5b\xca\x77\x56\xcd\x73\x24\xfb\x1e\x4a\x7c\x57\x8b\xf7\xaa\x76\xf2\xd6\x3f\x84\x6b\x7d\x5d\xc3\xb5\xc2\x8a\xd8\x7b\xc0\x50\x89\x8d\x9e\x0e\x86\x2e\x4c\x5f\x0e\xd6\x02\x18\xbb\xd3\x34\x9c\xf1\x80\x43\xe5\xc2\x70\xc0\xf0\x29\xaa\xfe\x5e\x4a\xfc\xbe\x60\xd8\x67\x74\x6e\xdd\xee\xb7\x78\x37\xf0\x92\xe3\x8d\xe1\xe5\xc7\x51\xb7\x76\x24\xe9\xe7\x61\x8f\x90\xe0\x98\x90\xb8\x0b\xb2\xaf\x44\xb6\xd1\xcb\x28\x71\x29\x84\xc7\x44\xfa\x06\xb7\x4f\x0e\x3b\xb4\x09\x79\xb1\x34\x2a\xf4\x8e\xf3\x9c\x18\x3b\x51\xd8\x3c\x8d\x1d\xa9\x98\x27\xdf\x24\xa9\xfc\xb6\x2f\xf7\x54\x79\x59\xaf\x40\xa6\x7f\xe2\x9f\x24\xee\xf0\x4f\x87\x20\x71\xd1\x83\x6e\x8a\x1d\x03\x9e\x9a\xd3\x1e\x54\x54\x94\xe2\x68\xe1\x4e\xb9\x24\x98\x99\x70\x17\x38\xc3\xef\xe9\x0e\x2a\xec\xf8\x68\x12\xe7\xdb\x2c\xd2\x9a\x6a\x82\xb9\x7b\xf5\xf3\x9b\xf3\x01\xe4\x04\x33\xd0\x9c\x09\xe6\xa1\x39\x13\xac\x42\x2e\x56\xdd\x10\x70\x99\x3a\x3d\x02\x81\x3c\x38\x00\x21\x68\x6f\x44\x01\x4a\x9e\xac\x48\x49\xbf\x20\xca\x12\xe7\x18\x21\x7a\xf9\x1d\x03\x05\x0f\x23\x09\x94\xbd\x8b\x34\x6a\xb5\x0e\xdb\xac\xe5\x52\xd0\x73\x1d\xb1\xe6\x09\xb8\x8e\x58\xc3\x4f\x76\xcf\xa0\x77\x6d\xf3\xa9\x2a\xf4\x1d\x29\x81\xbf\xd0\x24\x03\x35\x10\x5f\xb3\x41\x68\xd5\xae\x9b\x44\xb8\x95\x93\x5e\x4f\xf0\x2b\x9a\x3a\x5d\x7e\xbc\x5e\x04\xd6\xaf\x40\x7e\xfa\x58\x4a\x18\xf0\x6a\xe1\x10\x63\xea\xdd\x97\x27\xfe\xc9\x28\x68\x82\x07\x83\xd9\x54\xcb\xd2\xe9\x8d\x75\x34\x6f\x28\x2d\x02\x5e\xf7\xfd\xae\x33\xb7\x6b\x3c\x70\x94\x9e\xd3\x8f\xc1\x20\xc2\xaa\x74\x24\xa3\x9a\x76\x15\x74\xf9\x01\x5e\x24\x61\x1a\xe3\x06\xad\xbb\x43\x00\xae\xdb\xc3\x90\xc7\xad\x5a\xc7\x38\x6d\x85\xf8\x57\xd3\xbd\x2c\xe0\x5a\x67\x19\x60\xb2\x65\x86\xd2\x5d\x92\x61\xb0\x4b\x9a\x61\xcf\x6c\xd1\x4a\x08\x38\xfe\x77\xc5\x56\x15\x2e\x27\x5c\x7b\x96\xd6\x11\xed\x15\x7b\x71\x5c\xd3\x4f\x0f\xef\xa3\xdf\x0b\x9a\x2c\x63\x22\x62\x7e\x0c\x50\x7e\x2e\x17\xfb\xe0\x92\xef\x67\xf9\xad\x5a\x75\x5f\x4d\x63\x76\xbc\xfb\x1a\xaf\x25\x5c\x48\x4a\x00\x33\x15\x07\xd2\xba\x0e\x6b\x64\xb3\x4a\x3e\xd8\xbe\x6b\x1e\x87\x59\x86\x32\xe3\x28\xb3\x39\x92\x9f\xd9\x46\xfc\x98\x06\xf6\x52\x06\x1b\x4a\x3c\x61\x1a\x62\x49\x05\xb6\x69\x96\x37\xd1\x71\xcb\x6a\x76\xcc\xb2\x76\xb3\x00\x16\xc7\x87\xe0\xb5\x53\xe9\x83\xe4\xdf\x65\x0d\x99\xbc\x17\x0b\xa3\x0f\x83\x77\xdd\x4c\x11\x1f\x58\xbc\x45\xbe\x74\xf7\x3b\xf5\xa2\xab\x83\xf0\x71\xf2\xab\x18\xbd\xb2\x64\xa1\x8e\xbf\xf5\xa1\x8e\xa3\x97\x96\x87\x2f\x31\xb8\xc8\xf8\xa8\x95\x4d\x08\xe5\xd5\x8d\xa0\x07\x4f\xba\x76\xf1\xe4\x7e\x18\xf4\x9e\xf5\xa5\x71\x3c\xe9\xa8\x4a\x19\x9d\xbd\x1e\xf0\xab\x46\xec\x97\xdf\x61\xbd\xa2\xd4\x93\xaa\x39\xfc\xb4\x0b\xa9\xaf\x35\x0c\xa3\x5f\x1b\xa2\xa2\xb0\xb1\x61\x85\x1a\xd4\x7a\x5c\xdf\xe0\x41\x83\xe0\xd1\x86\xa6\xfe\x9a\x8e\x4d\xc6\xcf\xfd\x55\x63\x29\x7f\x75\xb7\x5c\x7c\x2b\xc5\xbe\xfd\x1e\xd0\x82\xcc\xe8\xf4\x74\x7a\xf2\x40\xc0\x06\xf6\xe4\xf3\xb3\x48\x3f\x6e\x9f\xc6\x98\x32\x86\xd3\xa8\x81\xd4\xbf\x0b\xa2\x5e\xc3\x89\x57\x32\xaa\x4e\x43\x96\x4a\xac\xf1\xef\xdc\x5b\x51\xc9\x7b\x8e\x3e\xfc\x21\xc9\x57\x3c\x26\xfa\x9b\xe0\xc5\x38\x71\x27\x00\x8d\xd2\x67\x22\x3f\xf9\xeb\x5b\xae\xf8\xdb\xb4\x2b\x89\x69\x22\x6e\xee\xb7\x5b\x24\x6c\xe9\x68\x4d\xac\x88\x13\xd6\x48\xe0\xa7\x0a\xf1\xb3\xc0\xcf\x22\xbf\xc1\xaf\x6b\xfc\xba\x2e\xcb\x8f\x52\x18\x5c\x95\x8a\xd3\xe1\x7c\x8d\x94\x1b\xfc\xe6\x40\xb0\xfc\x53\xda\xd1\xe7\x01\xec\x07\xa2\xf5\x72\x73\x9a\x6e\x3f\x28\x5d\x1e\x98\x7f\xea\xdf\x9a\xbf\xcf\x37\xf4\x37\x9a\x84\x2f\x4a\xe1\xe6\x35\x49\x3e\xef\x83\x35\xf6\x6b\xab\x50\xbe\x29\x95\xfb\xa1\x89\xf2\x49\x69\x6d\x7e\x9d\xf9\x7e\xe9\x17\x52\x7d\xaf\xf4\x8b\xd0\x5b\xb4\xcd\x8e\x23\x77\x7e\x70\xef\x3f\xfa\xa7\xb6\x4e\x29\x4f\xa3\x13\x21\x5c\x23\x7b\x00\xf3\xc3\x78\xf2\x14\x2d\xfb\xc7\xce\x12\x8b\xa8\x5b\xd5\xbb\xbd\x3b\x9f\xfa\x70\xce\x02\xe6\x43\x1c\x89\x4d\x39\xbf\x9f\x23\x8f\x8b\xd1\xec\x66\x73\xec\x7b\x38\xf7\xf2\x61\xe0\xe1\xbf\xfe\x2b\xc0\xe9\xf3\xdf\xfe\x2d\x3d\x7b\xfe\x28\x2d\x3f\x73\xc0\xb6\x2e\xdd\xe6\x9f\x71\x2a\x50\x28\xfa\xf9\x22\x02\x64\xaf\x58\x58\x07\xeb\x35\x94\xbe\x46\x8d\xbb\xa7\xff\x1f\x00\x00\xff\xff\xb6\x67\x7e\xfa\x2f\xad\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4379,7 +4379,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 44236, mode: os.FileMode(420), modTime: time.Unix(1445210776, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 44335, mode: os.FileMode(420), modTime: time.Unix(1445668815, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 6b5a365980..4e84b07e3e 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -86,6 +86,9 @@ var ( } // Repository settings. + Repository struct { + PullRequestQueueLength int + } RepoRootPath string ScriptType string AnsiCharset string @@ -357,6 +360,7 @@ func NewContext() { homeDir = strings.Replace(homeDir, "\\", "/", -1) sec = Cfg.Section("repository") + Repository.PullRequestQueueLength = 10000 RepoRootPath = sec.Key("ROOT").MustString(path.Join(homeDir, "gogs-repositories")) forcePathSeparator(RepoRootPath) if !filepath.IsAbs(RepoRootPath) { diff --git a/public/css/gogs.css b/public/css/gogs.css index 205509a269..45223cb414 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -824,6 +824,9 @@ pre.raw { .ui .text.purple { color: #6e5494!important; } +.ui .text.yellow { + color: #FBBD08!important; +} .ui .text.left { text-align: left!important; } @@ -1412,7 +1415,7 @@ footer .container .links > *:first-child { border: solid 1px #ccc; border-bottom-color: #bbb; border-radius: 3px; - box-shadow: inset 0 -1px 0 #bbbbbb; + box-shadow: inset 0 -1px 0 #bbb; } .markdown .csv-data td, .markdown .csv-data th { diff --git a/public/less/_base.less b/public/less/_base.less index 40201afe92..99cb736c6e 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -126,6 +126,9 @@ pre { &.purple { color: #6e5494!important; } + &.yellow { + color: #FBBD08!important; + } &.left { text-align: left!important; diff --git a/routers/install.go b/routers/install.go index 4b22463ed5..6fa7c12a13 100644 --- a/routers/install.go +++ b/routers/install.go @@ -66,6 +66,7 @@ func GlobalInit() { models.HasEngine = true cron.NewContext() models.InitDeliverHooks() + models.InitTestPullRequests() log.NewGitLogger(path.Join(setting.LogRootPath, "http.log")) } if models.EnableSQLite3 { diff --git a/routers/repo/http.go b/routers/repo/http.go index 52c9fbd39e..178ae92c1a 100644 --- a/routers/repo/http.go +++ b/routers/repo/http.go @@ -34,7 +34,7 @@ func authRequired(ctx *middleware.Context) { ctx.HTML(401, base.TplName("status/401")) } -func Http(ctx *middleware.Context) { +func HTTP(ctx *middleware.Context) { username := ctx.Params(":username") reponame := ctx.Params(":reponame") if strings.HasSuffix(reponame, ".git") { @@ -195,7 +195,8 @@ func Http(ctx *middleware.Context) { // FIXME: handle error. if err = models.Update(refName, oldCommitId, newCommitId, authUsername, username, reponame, authUser.Id); err == nil { - models.HookQueue.AddRepoID(repo.ID) + go models.HookQueue.Add(repo.ID) + go models.AddTestPullRequestTask(repo.ID, strings.TrimPrefix(refName, "refs/heads/")) } } diff --git a/routers/repo/pull.go b/routers/repo/pull.go index c8f00cc0f5..eade4407f7 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -6,6 +6,7 @@ package repo import ( "container/list" + "errors" "path" "strings" @@ -148,6 +149,9 @@ func checkPullInfo(ctx *middleware.Context) *models.Issue { if err = issue.GetPoster(); err != nil { ctx.Handle(500, "GetPoster", err) return nil + } else if issue.GetHeadRepo(); err != nil { + ctx.Handle(500, "GetHeadRepo", err) + return nil } if ctx.IsSigned { @@ -166,6 +170,11 @@ func PrepareMergedViewPullInfo(ctx *middleware.Context, pull *models.Issue) { 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 @@ -191,6 +200,12 @@ func PrepareViewPullInfo(ctx *middleware.Context, pull *models.Issue) *git.PullR headGitRepo *git.Repository err error ) + + if err = pull.GetHeadRepo(); err != nil { + ctx.Handle(500, "GetHeadRepo", err) + return nil + } + if pull.HeadRepo != nil { headRepoPath, err := pull.HeadRepo.RepoPath() if err != nil { @@ -628,3 +643,21 @@ func CompareAndPullRequestPost(ctx *middleware.Context, form auth.CreateIssueFor log.Trace("Pull request created: %d/%d", repo.ID, pull.ID) ctx.Redirect(ctx.Repo.RepoLink + "/pulls/" + com.ToStr(pull.Index)) } + +func TriggerTask(ctx *middleware.Context) { + _, repo := parseOwnerAndRepo(ctx) + if ctx.Written() { + return + } + branch := ctx.Query("branch") + if len(branch) == 0 { + ctx.Handle(422, "TriggerTask", errors.New("branch is empty")) + return + } + + log.Trace("TriggerTask[%d].(new request): %s", repo.ID, branch) + + go models.HookQueue.Add(repo.ID) + go models.AddTestPullRequestTask(repo.ID, branch) + ctx.Status(202) +} diff --git a/routers/repo/setting.go b/routers/repo/setting.go index a9930e7841..089c939ec0 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -564,28 +564,28 @@ func DeleteWebhook(ctx *middleware.Context) { }) } -func TriggerHook(ctx *middleware.Context) { - u, err := models.GetUserByName(ctx.Params(":username")) +func parseOwnerAndRepo(ctx *middleware.Context) (*models.User, *models.Repository) { + owner, err := models.GetUserByName(ctx.Params(":username")) if err != nil { if models.IsErrUserNotExist(err) { ctx.Handle(404, "GetUserByName", err) } else { ctx.Handle(500, "GetUserByName", err) } - return + return nil, nil } - repo, err := models.GetRepositoryByName(u.Id, ctx.Params(":reponame")) + repo, err := models.GetRepositoryByName(owner.Id, ctx.Params(":reponame")) if err != nil { if models.IsErrRepoNotExist(err) { ctx.Handle(404, "GetRepositoryByName", err) } else { ctx.Handle(500, "GetRepositoryByName", err) } - return + return nil, nil } - models.HookQueue.AddRepoID(repo.ID) - ctx.Status(200) + + return owner, repo } func GitHooks(ctx *middleware.Context) { diff --git a/templates/.VERSION b/templates/.VERSION index f179151c0f..b4080f5ea3 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.16.1023 Beta \ No newline at end of file +0.6.17.1024 Beta \ No newline at end of file diff --git a/templates/repo/issue/view_content.tmpl b/templates/repo/issue/view_content.tmpl index 13729c95a8..2fd0d064df 100644 --- a/templates/repo/issue/view_content.tmpl +++ b/templates/repo/issue/view_content.tmpl @@ -133,7 +133,13 @@ {{if .Issue.IsPull}}
- +
@@ -151,6 +157,11 @@ {{$.i18n.Tr "repo.pulls.data_broken"}}
+ {{else if .Issue.IsChecking}} +
+ + {{$.i18n.Tr "repo.pulls.is_checking"}} +
{{else if .Issue.CanAutoMerge}}