diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index a17888963..ef15d8076 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -758,6 +758,8 @@ settings.event_create = Create settings.event_create_desc = Branch or tag created settings.event_delete = Delete settings.event_delete_desc = Branch or tag deleted +settings.event_fork = Fork +settings.event_fork_desc = Repository forked settings.event_pull_request = Pull Request settings.event_pull_request_desc = Pull request opened, closed, reopened, edited, assigned, unassigned, label updated, label cleared, or synchronized. settings.event_push = Push @@ -1208,6 +1210,7 @@ notices.delete_success = System notices have been deleted successfully. [action] create_repo = created repository %s +fork_repo = forked a repository to %s rename_repo = renamed repository from %[1]s to %[3]s commit_repo = pushed to %[3]s at %[4]s compare_commits = View comparison for these %d commits diff --git a/models/action.go b/models/action.go index bbed431c6..b68e9a47d 100644 --- a/models/action.go +++ b/models/action.go @@ -46,6 +46,7 @@ const ( ACTION_CREATE_BRANCH // 16 ACTION_DELETE_BRANCH // 17 ACTION_DELETE_TAG // 18 + ACTION_FORK_REPO // 19 ) var ( @@ -177,20 +178,20 @@ func (a *Action) GetIssueContent() string { } func newRepoAction(e Engine, doer, owner *User, repo *Repository) (err error) { - if err = notifyWatchers(e, &Action{ + opType := ACTION_CREATE_REPO + if repo.IsFork { + opType = ACTION_FORK_REPO + } + + return notifyWatchers(e, &Action{ ActUserID: doer.ID, ActUserName: doer.Name, - OpType: ACTION_CREATE_REPO, + OpType: opType, RepoID: repo.ID, RepoUserName: repo.Owner.Name, RepoName: repo.Name, IsPrivate: repo.IsPrivate, - }); err != nil { - return fmt.Errorf("notify watchers '%d/%d': %v", owner.ID, repo.ID, err) - } - - log.Trace("action.newRepoAction: %s/%s", owner.Name, repo.Name) - return err + }) } // NewRepoAction adds new action for creating repository. @@ -489,12 +490,6 @@ func CommitRepoAction(opts CommitRepoActionOptions) error { return fmt.Errorf("Marshal: %v", err) } - defer func() { - // It's safe to fail when the whole function is called during hook execution - // because resource released after exit. - go HookQueue.Add(repo.ID) - }() - refName := git.RefEndName(opts.RefFullName) action := &Action{ ActUserID: pusher.ID, @@ -512,9 +507,6 @@ func CommitRepoAction(opts CommitRepoActionOptions) error { switch opType { case ACTION_COMMIT_REPO: // Push if isDelRef { - action.OpType = ACTION_DELETE_BRANCH - MustNotifyWatchers(action) - if err = PrepareWebhooks(repo, HOOK_EVENT_DELETE, &api.DeletePayload{ Ref: refName, RefType: "branch", @@ -525,15 +517,17 @@ func CommitRepoAction(opts CommitRepoActionOptions) error { return fmt.Errorf("PrepareWebhooks.(delete branch): %v", err) } + action.OpType = ACTION_DELETE_BRANCH + if err = NotifyWatchers(action); err != nil { + return fmt.Errorf("NotifyWatchers.(delete branch): %v", err) + } + // Delete branch doesn't have anything to push or compare return nil } compareURL := setting.AppUrl + opts.Commits.CompareURL if isNewRef { - action.OpType = ACTION_CREATE_BRANCH - MustNotifyWatchers(action) - compareURL = "" if err = PrepareWebhooks(repo, HOOK_EVENT_CREATE, &api.CreatePayload{ Ref: refName, @@ -544,10 +538,13 @@ func CommitRepoAction(opts CommitRepoActionOptions) error { }); err != nil { return fmt.Errorf("PrepareWebhooks.(new branch): %v", err) } + + action.OpType = ACTION_CREATE_BRANCH + if err = NotifyWatchers(action); err != nil { + return fmt.Errorf("NotifyWatchers.(new branch): %v", err) + } } - action.OpType = ACTION_COMMIT_REPO - MustNotifyWatchers(action) if err = PrepareWebhooks(repo, HOOK_EVENT_PUSH, &api.PushPayload{ Ref: opts.RefFullName, Before: opts.OldCommitID, @@ -561,11 +558,13 @@ func CommitRepoAction(opts CommitRepoActionOptions) error { return fmt.Errorf("PrepareWebhooks.(new commit): %v", err) } + action.OpType = ACTION_COMMIT_REPO + if err = NotifyWatchers(action); err != nil { + return fmt.Errorf("NotifyWatchers.(new commit): %v", err) + } + case ACTION_PUSH_TAG: // Tag if isDelRef { - action.OpType = ACTION_DELETE_TAG - MustNotifyWatchers(action) - if err = PrepareWebhooks(repo, HOOK_EVENT_DELETE, &api.DeletePayload{ Ref: refName, RefType: "tag", @@ -575,11 +574,14 @@ func CommitRepoAction(opts CommitRepoActionOptions) error { }); err != nil { return fmt.Errorf("PrepareWebhooks.(delete tag): %v", err) } + + action.OpType = ACTION_DELETE_TAG + if err = NotifyWatchers(action); err != nil { + return fmt.Errorf("NotifyWatchers.(delete tag): %v", err) + } return nil } - action.OpType = ACTION_PUSH_TAG - MustNotifyWatchers(action) if err = PrepareWebhooks(repo, HOOK_EVENT_CREATE, &api.CreatePayload{ Ref: refName, RefType: "tag", @@ -589,6 +591,11 @@ func CommitRepoAction(opts CommitRepoActionOptions) error { }); err != nil { return fmt.Errorf("PrepareWebhooks.(new tag): %v", err) } + + action.OpType = ACTION_PUSH_TAG + if err = NotifyWatchers(action); err != nil { + return fmt.Errorf("NotifyWatchers.(new tag): %v", err) + } } return nil diff --git a/models/org.go b/models/org.go index 0046aaa44..1deba7f4b 100644 --- a/models/org.go +++ b/models/org.go @@ -20,8 +20,8 @@ var ( ) // IsOwnedBy returns true if given user is in the owner team. -func (org *User) IsOwnedBy(uid int64) bool { - return IsOrganizationOwner(org.ID, uid) +func (org *User) IsOwnedBy(userID int64) bool { + return IsOrganizationOwner(org.ID, userID) } // IsOrgMember returns true if given user is member of organization. @@ -246,8 +246,8 @@ type OrgUser struct { } // IsOrganizationOwner returns true if given user is in the owner team. -func IsOrganizationOwner(orgId, uid int64) bool { - has, _ := x.Where("is_owner=?", true).And("uid=?", uid).And("org_id=?", orgId).Get(new(OrgUser)) +func IsOrganizationOwner(orgID, userID int64) bool { + has, _ := x.Where("is_owner = ?", true).And("uid = ?", userID).And("org_id = ?", orgID).Get(new(OrgUser)) return has } diff --git a/models/repo.go b/models/repo.go index 37e8756b4..7fee5154d 100644 --- a/models/repo.go +++ b/models/repo.go @@ -2068,24 +2068,27 @@ func (repo *Repository) GetWatchers(page int) ([]*User, error) { func notifyWatchers(e Engine, act *Action) error { // Add feeds for user self and all watchers. - watches, err := getWatchers(e, act.RepoID) + watchers, err := getWatchers(e, act.RepoID) if err != nil { - return fmt.Errorf("get watchers: %v", err) + return fmt.Errorf("getWatchers: %v", err) } + // Reset ID to reuse Action object + act.ID = 0 + // Add feed for actioner. act.UserID = act.ActUserID if _, err = e.Insert(act); err != nil { - return fmt.Errorf("insert new actioner: %v", err) + return fmt.Errorf("insert new action: %v", err) } - for i := range watches { - if act.ActUserID == watches[i].UserID { + for i := range watchers { + if act.ActUserID == watchers[i].UserID { continue } act.ID = 0 - act.UserID = watches[i].UserID + act.UserID = watchers[i].UserID if _, err = e.Insert(act); err != nil { return fmt.Errorf("insert new action: %v", err) } @@ -2098,13 +2101,6 @@ func NotifyWatchers(act *Action) error { return notifyWatchers(x, act) } -func MustNotifyWatchers(act *Action) { - act.ID = 0 // Reset ID to reuse Action object - if err := NotifyWatchers(act); err != nil { - log.Error(2, "NotifyWatchers: %v", err) - } -} - // _________ __ // / _____// |______ _______ // \_____ \\ __\__ \\_ __ \ @@ -2168,24 +2164,26 @@ func (repo *Repository) GetStargazers(page int) ([]*User, error) { // \___ / \____/|__| |__|_ \ // \/ \/ -// HasForkedRepo checks if given user has already forked a repository with given ID. +// HasForkedRepo checks if given user has already forked a repository. +// When user has already forked, it returns true along with the repository. func HasForkedRepo(ownerID, repoID int64) (*Repository, bool) { repo := new(Repository) - has, _ := x.Where("owner_id=? AND fork_id=?", ownerID, repoID).Get(repo) + has, _ := x.Where("owner_id = ? AND fork_id = ?", ownerID, repoID).Get(repo) return repo, has } -func ForkRepository(doer, owner *User, oldRepo *Repository, name, desc string) (_ *Repository, err error) { +// ForkRepository creates a fork of target repository under another user domain. +func ForkRepository(doer, owner *User, baseRepo *Repository, name, desc string) (_ *Repository, err error) { repo := &Repository{ OwnerID: owner.ID, Owner: owner, Name: name, LowerName: strings.ToLower(name), Description: desc, - DefaultBranch: oldRepo.DefaultBranch, - IsPrivate: oldRepo.IsPrivate, + DefaultBranch: baseRepo.DefaultBranch, + IsPrivate: baseRepo.IsPrivate, IsFork: true, - ForkID: oldRepo.ID, + ForkID: baseRepo.ID, } sess := x.NewSession() @@ -2196,16 +2194,14 @@ func ForkRepository(doer, owner *User, oldRepo *Repository, name, desc string) ( if err = createRepository(sess, doer, owner, repo); err != nil { return nil, err - } - - if _, err = sess.Exec("UPDATE `repository` SET num_forks=num_forks+1 WHERE id=?", oldRepo.ID); err != nil { + } else if _, err = sess.Exec("UPDATE `repository` SET num_forks=num_forks+1 WHERE id=?", baseRepo.ID); err != nil { return nil, err } - repoPath := RepoPath(owner.Name, repo.Name) + repoPath := repo.repoPath(sess) _, stderr, err := process.ExecTimeout(10*time.Minute, fmt.Sprintf("ForkRepository 'git clone': %s/%s", owner.Name, repo.Name), - "git", "clone", "--bare", oldRepo.RepoPath(), repoPath) + "git", "clone", "--bare", baseRepo.RepoPath(), repoPath) if err != nil { return nil, fmt.Errorf("git clone: %v", stderr) } @@ -2219,6 +2215,12 @@ func ForkRepository(doer, owner *User, oldRepo *Repository, name, desc string) ( if err = createDelegateHooks(repoPath); err != nil { return nil, fmt.Errorf("createDelegateHooks: %v", err) + } else if err = prepareWebhooks(sess, baseRepo, HOOK_EVENT_FORK, &api.ForkPayload{ + Forkee: repo.APIFormat(nil), + Repo: baseRepo.APIFormat(nil), + Sender: doer.APIFormat(), + }); err != nil { + return nil, fmt.Errorf("prepareWebhooks: %v", err) } return repo, sess.Commit() diff --git a/models/webhook.go b/models/webhook.go index a55fcfa75..0f475df5e 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -64,6 +64,7 @@ func IsValidHookContentType(name string) bool { type HookEvents struct { Create bool `json:"create"` Delete bool `json:"delete"` + Fork bool `json:"fork"` Push bool `json:"push"` PullRequest bool `json:"pull_request"` } @@ -163,6 +164,12 @@ func (w *Webhook) HasDeleteEvent() bool { (w.ChooseEvents && w.HookEvents.Delete) } +// HasForkEvent returns true if hook enabled fork event. +func (w *Webhook) HasForkEvent() bool { + return w.SendEverything || + (w.ChooseEvents && w.HookEvents.Fork) +} + // HasPushEvent returns true if hook enabled push event. func (w *Webhook) HasPushEvent() bool { return w.PushOnly || w.SendEverything || @@ -176,15 +183,21 @@ func (w *Webhook) HasPullRequestEvent() bool { } func (w *Webhook) EventsArray() []string { - events := make([]string, 0, 3) + events := make([]string, 0, 5) if w.HasCreateEvent() { - events = append(events, "create") + events = append(events, string(HOOK_EVENT_CREATE)) + } + if w.HasDeleteEvent() { + events = append(events, string(HOOK_EVENT_DELETE)) + } + if w.HasForkEvent() { + events = append(events, string(HOOK_EVENT_FORK)) } if w.HasPushEvent() { - events = append(events, "push") + events = append(events, string(HOOK_EVENT_PUSH)) } if w.HasPullRequestEvent() { - events = append(events, "pull_request") + events = append(events, string(HOOK_EVENT_PULL_REQUEST)) } return events } @@ -232,10 +245,10 @@ func GetWebhookByOrgID(orgID, id int64) (*Webhook, error) { }) } -// GetActiveWebhooksByRepoID returns all active webhooks of repository. -func GetActiveWebhooksByRepoID(repoID int64) ([]*Webhook, error) { +// getActiveWebhooksByRepoID returns all active webhooks of repository. +func getActiveWebhooksByRepoID(e Engine, repoID int64) ([]*Webhook, error) { webhooks := make([]*Webhook, 0, 5) - return webhooks, x.Where("repo_id = ?", repoID).And("is_active = ?", true).Find(&webhooks) + return webhooks, e.Where("repo_id = ?", repoID).And("is_active = ?", true).Find(&webhooks) } // GetWebhooksByRepoID returns all webhooks of a repository. @@ -290,10 +303,10 @@ func GetWebhooksByOrgID(orgID int64) (ws []*Webhook, err error) { return ws, err } -// GetActiveWebhooksByOrgID returns all active webhooks for an organization. -func GetActiveWebhooksByOrgID(orgID int64) (ws []*Webhook, err error) { - err = x.Where("org_id=?", orgID).And("is_active=?", true).Find(&ws) - return ws, err +// getActiveWebhooksByOrgID returns all active webhooks for an organization. +func getActiveWebhooksByOrgID(e Engine, orgID int64) ([]*Webhook, error) { + ws := make([]*Webhook, 3) + return ws, e.Where("org_id=?", orgID).And("is_active=?", true).Find(&ws) } // ___ ___ __ ___________ __ @@ -345,6 +358,7 @@ type HookEventType string const ( HOOK_EVENT_CREATE HookEventType = "create" HOOK_EVENT_DELETE HookEventType = "delete" + HOOK_EVENT_FORK HookEventType = "fork" HOOK_EVENT_PUSH HookEventType = "push" HOOK_EVENT_PULL_REQUEST HookEventType = "pull_request" ) @@ -438,16 +452,16 @@ func HookTasks(hookID int64, page int) ([]*HookTask, error) { return tasks, x.Limit(setting.Webhook.PagingNum, (page-1)*setting.Webhook.PagingNum).Where("hook_id=?", hookID).Desc("id").Find(&tasks) } -// CreateHookTask creates a new hook task, +// createHookTask creates a new hook task, // it handles conversion from Payload to PayloadContent. -func CreateHookTask(t *HookTask) error { +func createHookTask(e Engine, t *HookTask) error { data, err := t.Payloader.JSONPayload() if err != nil { return err } t.UUID = gouuid.NewV4().String() t.PayloadContent = string(data) - _, err = x.Insert(t) + _, err = e.Insert(t) return err } @@ -457,8 +471,8 @@ func UpdateHookTask(t *HookTask) error { return err } -// prepareWebhooks adds list of webhooks to task queue. -func prepareWebhooks(repo *Repository, event HookEventType, p api.Payloader, webhooks []*Webhook) (err error) { +// prepareHookTasks adds list of webhooks to task queue. +func prepareHookTasks(e Engine, repo *Repository, event HookEventType, p api.Payloader, webhooks []*Webhook) (err error) { if len(webhooks) == 0 { return nil } @@ -511,7 +525,7 @@ func prepareWebhooks(repo *Repository, event HookEventType, p api.Payloader, web signature = hex.EncodeToString(sig.Sum(nil)) } - if err = CreateHookTask(&HookTask{ + if err = createHookTask(e, &HookTask{ RepoID: repo.ID, HookID: w.ID, Type: w.HookTaskType, @@ -522,29 +536,37 @@ func prepareWebhooks(repo *Repository, event HookEventType, p api.Payloader, web EventType: event, IsSSL: w.IsSSL, }); err != nil { - return fmt.Errorf("CreateHookTask: %v", err) + return fmt.Errorf("createHookTask: %v", err) } } + + // It's safe to fail when the whole function is called during hook execution + // because resource released after exit. + go HookQueue.Add(repo.ID) return nil } -// PrepareWebhooks adds all active webhooks to task queue. -func PrepareWebhooks(repo *Repository, event HookEventType, p api.Payloader) error { - webhooks, err := GetActiveWebhooksByRepoID(repo.ID) +func prepareWebhooks(e Engine, repo *Repository, event HookEventType, p api.Payloader) error { + webhooks, err := getActiveWebhooksByRepoID(e, repo.ID) if err != nil { - return fmt.Errorf("GetActiveWebhooksByRepoID [%d]: %v", repo.ID, err) + return fmt.Errorf("getActiveWebhooksByRepoID [%d]: %v", repo.ID, err) } // check if repo belongs to org and append additional webhooks - if repo.MustOwner().IsOrganization() { + if repo.mustOwner(e).IsOrganization() { // get hooks for org - orgws, err := GetActiveWebhooksByOrgID(repo.OwnerID) + orgws, err := getActiveWebhooksByOrgID(e, repo.OwnerID) if err != nil { - return fmt.Errorf("GetActiveWebhooksByOrgID [%d]: %v", repo.OwnerID, err) + return fmt.Errorf("getActiveWebhooksByOrgID [%d]: %v", repo.OwnerID, err) } webhooks = append(webhooks, orgws...) } - return prepareWebhooks(repo, event, p, webhooks) + return prepareHookTasks(e, repo, event, p, webhooks) +} + +// PrepareWebhooks adds all active webhooks to task queue. +func PrepareWebhooks(repo *Repository, event HookEventType, p api.Payloader) error { + return prepareWebhooks(x, repo, event, p) } // TestWebhook adds the test webhook matches the ID to task queue. @@ -553,7 +575,7 @@ func TestWebhook(repo *Repository, event HookEventType, p api.Payloader, webhook if err != nil { return fmt.Errorf("GetWebhookOfRepoByID [repo_id: %d, id: %d]: %v", repo.ID, webhookID, err) } - return prepareWebhooks(repo, event, p, []*Webhook{webhook}) + return prepareHookTasks(x, repo, event, p, []*Webhook{webhook}) } func (t *HookTask) deliver() { diff --git a/models/webhook_discord.go b/models/webhook_discord.go index 3755d3b53..d26beaaf5 100644 --- a/models/webhook_discord.go +++ b/models/webhook_discord.go @@ -74,7 +74,6 @@ func getDiscordCreatePayload(p *api.CreatePayload) (*DiscordPayload, error) { repoLink := DiscordLinkFormatter(p.Repo.HTMLURL, p.Repo.Name) refLink := DiscordLinkFormatter(p.Repo.HTMLURL+"/src/"+refName, refName) content := fmt.Sprintf("Created new %s: %s/%s", p.RefType, repoLink, refLink) - return &DiscordPayload{ Embeds: []*DiscordEmbedObject{{ Description: content, @@ -92,7 +91,23 @@ func getDiscordDeletePayload(p *api.DeletePayload) (*DiscordPayload, error) { refName := git.RefEndName(p.Ref) repoLink := DiscordLinkFormatter(p.Repo.HTMLURL, p.Repo.Name) content := fmt.Sprintf("Deleted %s: %s/%s", p.RefType, repoLink, refName) + return &DiscordPayload{ + Embeds: []*DiscordEmbedObject{{ + Description: content, + URL: setting.AppUrl + p.Sender.UserName, + Author: &DiscordEmbedAuthorObject{ + Name: p.Sender.UserName, + IconURL: p.Sender.AvatarUrl, + }, + }}, + }, nil +} +// getDiscordForkPayload composes Discord payload for forked by a repository. +func getDiscordForkPayload(p *api.ForkPayload) (*DiscordPayload, error) { + baseLink := DiscordLinkFormatter(p.Repo.HTMLURL, p.Repo.Name) + forkLink := DiscordLinkFormatter(p.Forkee.HTMLURL, p.Forkee.FullName) + content := fmt.Sprintf("%s is forked to %s", baseLink, forkLink) return &DiscordPayload{ Embeds: []*DiscordEmbedObject{{ Description: content, @@ -230,6 +245,8 @@ func GetDiscordPayload(p api.Payloader, event HookEventType, meta string) (paylo payload, err = getDiscordCreatePayload(p.(*api.CreatePayload)) case HOOK_EVENT_DELETE: payload, err = getDiscordDeletePayload(p.(*api.DeletePayload)) + case HOOK_EVENT_FORK: + payload, err = getDiscordForkPayload(p.(*api.ForkPayload)) case HOOK_EVENT_PUSH: payload, err = getDiscordPushPayload(p.(*api.PushPayload), slack) case HOOK_EVENT_PULL_REQUEST: diff --git a/models/webhook_slack.go b/models/webhook_slack.go index f785bb684..6f81c1c01 100644 --- a/models/webhook_slack.go +++ b/models/webhook_slack.go @@ -90,6 +90,16 @@ func getSlackDeletePayload(p *api.DeletePayload) (*SlackPayload, error) { }, nil } +// getSlackForkPayload composes Slack payload for forked by a repository. +func getSlackForkPayload(p *api.ForkPayload) (*SlackPayload, error) { + baseLink := SlackLinkFormatter(p.Repo.HTMLURL, p.Repo.Name) + forkLink := SlackLinkFormatter(p.Forkee.HTMLURL, p.Forkee.FullName) + text := fmt.Sprintf("%s is forked to %s", baseLink, forkLink) + return &SlackPayload{ + Text: text, + }, nil +} + func getSlackPushPayload(p *api.PushPayload, slack *SlackMeta) (*SlackPayload, error) { // n new commits var ( @@ -194,6 +204,8 @@ func GetSlackPayload(p api.Payloader, event HookEventType, meta string) (payload payload, err = getSlackCreatePayload(p.(*api.CreatePayload)) case HOOK_EVENT_DELETE: payload, err = getSlackDeletePayload(p.(*api.DeletePayload)) + case HOOK_EVENT_FORK: + payload, err = getSlackForkPayload(p.(*api.ForkPayload)) case HOOK_EVENT_PUSH: payload, err = getSlackPushPayload(p.(*api.PushPayload), slack) case HOOK_EVENT_PULL_REQUEST: diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index f24390d1c..349506bee 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4372,7 +4372,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x92\x1c\xb7\xd1\x28\xf8\xbf\x9e\x02\xe2\x17\x13\x94\x22\x86\xcd\x90\x7d\xce\xd9\x0d\x85\x46\xda\xd1\x50\xbc\x7c\xdf\xf0\x62\x0e\x69\x1f\x2f\x83\x51\x42\x57\xa1\xbb\xe1\xa9\x06\xca\x05\xd4\x34\x5b\x0e\xbf\xc1\x3e\xc0\x3e\xdf\x3e\xc9\x46\x5e\x70\xab\xaa\x1e\x92\xf6\xf7\x67\xa6\x0b\x48\x24\x80\x04\x90\xc8\x4c\x24\x12\xb2\xef\xeb\x56\xb9\x46\x5c\x88\x4b\xd1\x4b\x6d\x3a\xe5\x9c\x70\xaa\xdb\x3c\xda\x59\xe7\x55\x2b\x9e\x69\x2f\x9c\x1a\xee\x74\xa3\xaa\x6a\x67\xf7\x4a\x5c\x88\xe7\x76\xaf\xaa\x56\xba\xdd\xda\xca\xa1\x15\x17\xe2\x49\xf8\x5d\xa9\x4f\x7d\x67\x07\x00\xfa\x95\x7e\x55\x3b\xd5\xf5\x50\x46\x75\x7d\xe5\xf4\xd6\xd4\xda\x88\x0b\x71\xa3\xb7\x46\xbc\x30\x94\x62\x47\x1f\x92\x5e\x8f\x9e\xd2\xc6\x3e\x24\xbd\xef\xab\x41\x6d\xb5\xf3\x6a\x10\x17\xe2\x2d\xff\xac\x0e\x6a\xed\xb4\x87\x9a\xfe\x42\xbf\xaa\x3b\x35\x38\x6d\x01\xfb\x9f\xe9\x57\xd5\xcb\x2d\x00\xbc\x91\x5b\x55\x79\xb5\xef\x3b\x89\x05\xde\xf1\xcf\xaa\x93\x66\x3b\x12\xcc\x35\xff\xac\x9a\x41\x49\xaf\x6a\xa3\x0e\xe2\x42\x5c\xe1\xc7\x6a\xb5\xaa\x46\xa7\x86\xba\x1f\xec\x46\x77\xaa\x96\xa6\xad\xf7\xd4\xcd\xf7\x4e\x0d\x82\xd3\x85\x34\xad\x80\x74\xec\x82\x6a\x6b\x6d\x6a\xe9\xb8\x1f\xaa\x15\xda\x08\xe9\x2a\x44\x65\xe4\x3e\x94\x86\x9f\x95\xda\x4b\xdd\x01\xd5\xe0\x7f\xd5\x4b\xe7\x0e\x16\x49\xfb\x86\x7f\x56\x83\xaa\xfd\xb1\x57\x48\x82\x47\xef\x8e\xbd\xaa\x1a\xd9\xfb\x66\x27\xa1\x99\xf4\xab\xaa\x06\xd5\x5b\xa7\xbd\x1d\x8e\x08\x17\x3e\x2a\x3b\x6c\xa5\xd1\xbf\x4b\x4f\xf4\x79\x9d\x7d\x56\x7b\x3d\x0c\x16\x48\xfb\x12\x7f\x54\x46\x1d\x6a\xc0\x23\x2e\xc4\x2b\x75\xc8\xb1\x40\xce\x5e\x6f\x07\xa2\x22\x64\xbe\xc4\x2f\xc0\x42\x79\x8c\x89\xb2\x22\xb6\x8d\x1d\x6e\x39\xf5\x29\xfc\x9c\xa0\xb4\xc3\x96\x73\xcb\x76\x49\x23\xb7\x8a\x73\x5f\xe2\x47\x01\xe0\x2a\xd9\xee\xb5\xa9\x7b\x69\x14\x90\xee\x12\xbe\xc4\x1b\xf8\xaa\x64\xd3\xd8\xd1\xf8\xda\x29\xef\xb5\xd9\xc2\x18\x5c\x52\x92\xb8\xe1\xa4\x2a\xcb\x8b\x69\x47\x3b\xc6\x51\x16\x17\xe2\xaf\x76\x1c\xc4\x1b\xfa\xa4\xbc\xac\x10\x66\xc6\x92\x95\x6c\xbc\xbe\xd3\x5e\x2b\xaa\x2c\x7c\x54\xfd\xd8\x75\xf5\xa0\xfe\x3e\x2a\xe7\x21\xeb\xcd\xd8\x75\xe2\x2d\x7f\x57\xda\xb9\x11\x4b\xbc\xc0\x1f\x55\xd5\x48\xd3\x60\x77\xae\xf0\x47\x55\x7d\xd0\xc6\x79\xd9\x75\x1f\x2b\xfe\x01\xc0\xf4\x8b\xe8\xe4\xb5\xc7\xc6\x72\xa2\xb8\xf1\xaa\x77\x40\x68\xf1\x54\x0f\xce\x3f\xf2\x7a\xaf\xc4\xdb\xd1\x54\xad\x6d\x6e\xd5\x50\xc3\x82\xc4\xa5\xf4\x62\x23\x8e\x76\x7c\x38\x28\x31\x8c\xc6\x68\xb3\x15\xcf\xec\xd6\x09\x6d\x9c\x6e\x95\x78\x82\xd0\xe7\xa2\xef\x94\x74\x4a\x0c\x4a\xb6\xe2\x47\x29\xbc\x1c\xb6\xca\x5f\x3c\xa8\xd7\x9d\x34\xb7\x0f\xc4\x6e\x50\x9b\x8b\x07\x67\xee\xc1\x4f\xcf\x46\xdd\xaa\x4e\x1b\xe5\x7e\x7c\x2c\x7f\x12\x8d\x1c\xd4\x66\xec\xba\xa3\x58\xab\x0d\xac\x95\xa3\x1d\x45\xb3\x93\x66\x0b\xeb\xe4\xe8\x77\x50\xa1\x36\xc2\xef\xb4\x13\xb0\x50\xbf\xa9\x80\x4a\xda\xab\xba\x5d\x07\xa6\x84\x0d\xc2\xe4\x41\x39\xf1\xf2\x78\xf3\xa7\xeb\x73\xf1\xc6\x3a\xbf\x1d\x14\xfe\xbe\xf9\xd3\xb5\xf6\xea\x8f\xe7\xe2\xe5\xcd\xcd\x9f\xae\x85\x1d\xc4\x3b\xfd\xe4\x97\x55\xd5\xae\xeb\x40\x97\x27\xd2\xcb\x35\x74\x21\x8e\x15\x64\xd2\x52\x8a\x79\xb8\xa0\x80\xe5\x21\x7b\x73\x1e\x17\x29\x2f\xd0\xc5\xe5\xd8\xae\x6b\x5e\xc3\x11\xc7\x2b\x58\xc8\xed\x3a\x11\xf8\x0d\x91\x6e\x74\x4a\xbc\x78\xf5\xea\xf5\x93\x5f\x84\x32\x5b\x6d\x94\x38\x68\xbf\x13\xa3\xdf\xfc\x9f\xf5\x56\x19\x35\xc8\xae\x6e\x34\xd0\x66\x70\xca\x8b\x8d\x1d\xa8\xa7\xab\xca\xb9\xae\xde\xdb\x16\x6a\xb9\xb9\xb9\x16\x2f\x6d\xab\xaa\x5e\xfa\x1d\x36\xc4\xef\x2a\xf7\xf7\x0e\xe8\x15\x2b\x7c\xb7\x53\x02\xa7\x2e\x02\xd9\x4d\x20\x8f\x68\xb9\x8d\x2b\xf1\xe3\x7a\xf8\x29\x6b\x97\x5c\x3b\xdb\x8d\x9e\x4b\x1c\x76\xca\xe0\x38\x39\x2f\x07\x2f\xa4\x0b\xac\x7f\x55\xa9\x61\xa8\xd5\xbe\xf7\x47\x18\x1d\x6e\xc3\x14\x3b\x21\x69\xa4\x31\xd6\x8b\xb5\x12\x08\xbf\xaa\x8c\xad\x69\xa5\x02\xdb\x6c\xb5\x93\xeb\x4e\xd5\xc4\xd2\x87\xc0\x91\xfe\x0a\x93\x83\x0a\x32\x84\x28\x20\x80\x62\xb0\x4d\x20\x77\x86\x99\x23\x8d\x40\xa4\x82\x97\x7a\xde\xc2\xc0\x17\xe2\xa8\x11\x6b\x88\x09\xb3\x16\x56\x61\x18\xc2\x9c\xb9\xec\xfb\x4e\x37\x54\xf5\x33\xca\x4b\xd3\x07\x36\x4d\x1e\xfb\x1c\x0e\x87\x3f\xe4\x65\x93\x60\xf4\x40\xd2\x41\x14\x3c\x18\xcb\xef\xd4\xa0\xc4\x6e\xdc\xd2\xc6\xd1\xd9\xb1\xfd\x06\x39\x78\xa0\x6f\xe2\x93\xe2\xad\xb5\x9e\xc6\x3c\x02\xa4\x2a\x2e\xbb\x0e\xf7\xe9\x41\xed\xad\x07\xc2\x71\x31\xe0\x45\x07\xdd\x75\xd0\x53\x27\xef\x54\x2b\xbc\xa5\xf5\xd6\xea\x41\x35\x80\x78\x55\x0d\xa3\xa9\x79\xb2\xbf\x1d\x0d\x4d\xf8\x90\x56\xce\x2c\x84\xda\x8f\xce\x8b\x9d\xbc\x53\x40\x78\x10\x16\xbc\x5d\x6c\x27\x76\x69\x18\x0d\x2e\xe1\x55\xd5\xda\xbd\xc4\x8d\xff\x09\xfe\xe0\xef\x1c\xbf\x76\x42\x6e\x36\xaa\xf1\x4e\xdc\xdc\x3c\x17\x4d\x67\x8d\x12\xef\xdf\x5e\x3b\x58\x06\xbb\xba\xb7\x03\x0a\x09\x37\xcf\xc5\x1b\x3b\xf8\x98\x96\x11\x1a\x20\xcc\xb8\x5f\xab\x41\x1c\x76\xba\xd9\x11\xd9\xa1\x04\xcc\x62\x35\x08\xed\xc4\xe8\xb4\xd9\x9e\x8b\x4e\x41\x0f\xb4\xa7\x09\x00\x7d\x08\xb3\x0e\xc0\x37\x4a\xfa\x71\x50\xb8\xe9\xd7\xeb\x51\x77\x5e\x9b\x1a\x2a\x64\x3c\xc8\x16\xc4\x2f\x94\x81\x25\x6e\x30\xe3\x04\x7c\xdd\xdb\x9e\xc4\x19\x5c\x55\xeb\xac\x1c\x23\x84\x25\x0f\x03\x68\x7b\x45\xf3\xdd\x71\x93\x60\xc2\x8d\xda\xed\xc4\x66\xb0\x7b\xe1\x8e\xce\xab\x3d\x16\x6c\xa5\xda\x5b\xb3\xaa\x76\xde\xf7\x81\x36\xcf\xdf\xbd\x7b\x43\xc4\x89\xa9\xf7\x51\x47\x66\x73\x17\x67\x49\x07\x82\x95\x11\x80\x16\xa6\xf1\x38\x74\x93\x19\xfe\xfe\xed\x75\xc8\x39\x31\x72\xd0\x84\xc7\xf0\xe7\x26\x0d\x20\xce\x04\x67\xf7\xea\x80\xf3\x5d\x1b\x81\xc2\xce\xaa\xea\xec\xb6\x1e\xac\xf5\x61\xba\x5f\xdb\x2d\x4d\xf1\x22\x23\xd5\xf4\x24\x4c\x5a\x20\xce\x61\x00\xe1\xaf\xb3\x5b\x64\x78\x40\xaf\x55\x55\xd9\x1e\xda\x99\xad\xe3\xd7\x9c\x90\x16\x2f\xd6\x1d\xf3\x51\xdc\xc2\xd1\xd3\x4d\xb6\x41\xb8\xbd\xef\x6b\xde\x0d\x6e\x5e\xbe\x7b\x43\x5b\x02\xa6\xe2\x40\x5c\x88\xa7\x83\xdd\xa7\x84\xd4\xc6\x97\x80\x0f\x61\x64\xdb\x0e\xca\xb9\x73\xf1\xf6\xe9\x95\xf8\x9f\x7f\xfc\xc3\x1f\x56\xe2\x85\x07\xd6\x03\xab\xf1\x6f\xb0\x8a\x24\x53\x22\x81\xda\x41\xf8\x9d\x12\x0f\x80\x95\x3c\x10\x3f\x62\xee\xff\xa5\x3e\xc9\x7d\xdf\xa9\x55\x63\xf7\x3f\xc1\x4c\xd9\x4b\xbf\xaa\x20\x47\x0d\x61\xe1\xde\x28\xd3\xaa\x81\x85\x47\xce\xca\xd8\x1f\x67\x67\xa2\x24\xc9\xd0\x75\x63\xcd\x46\x0f\xd0\x9f\x5f\x0d\xce\xfe\x20\x5d\x8b\x2b\xca\x09\x92\x98\xee\x6a\x63\xbd\xde\x1c\x13\x28\xf6\xf4\x15\x24\xf2\xf4\xa8\x78\xb6\xf3\x96\x11\x69\x4c\x6b\x03\x67\xc1\x6b\xbf\x53\x43\x20\xb7\x4b\xf4\xb6\x9b\x0d\x08\x0e\x61\xaf\xe3\x1a\x5e\x53\x2a\x6d\x7b\x39\x48\x5c\x50\x4f\x78\xd1\x5e\x3d\x79\x25\xd4\x9d\x32\x30\xb9\xfa\xc1\xb6\x63\x83\xf3\x15\x60\xcf\x05\xc8\x44\x83\x72\x76\x1c\x1a\xc5\x93\x25\x32\x45\x68\x1a\x70\xde\x46\x76\xdd\x71\x55\x85\xcd\x69\x3b\xc8\x3b\xe9\xe5\x90\x55\xf1\x2c\x24\x71\xeb\x67\xb0\xb3\x46\xc5\x12\xd0\xf3\x66\x74\x1e\x56\x30\xb6\xc2\x51\xa3\x28\xdb\x09\x39\x28\x31\xf6\x9d\x95\xad\x6a\xc5\xfa\x88\x7c\xd6\xc1\x5c\x68\xd5\x46\x8e\x9d\x5f\x55\x1b\xd5\x02\x63\x50\x6d\xcd\x75\x75\xd6\xde\x62\x65\x4c\xaa\xa7\x01\x40\x5c\x32\xd2\x6b\x84\x38\x55\x32\x36\x96\xcb\x47\xb0\xd8\x28\xae\xc1\x5b\x14\x13\x52\xbe\xed\x95\xe1\x6e\x04\xe1\x40\xc0\xde\xdf\x0a\x6b\x44\xa7\xd7\xdc\xe9\x44\xcb\xc9\x46\x1f\xa8\x73\x03\x3a\x66\x9e\xb7\x58\x60\x46\x54\x9c\xf0\x6e\x5a\xf6\x5c\x58\xd3\x1d\x59\x20\x80\x25\x46\x4a\x5c\x90\x0d\xdc\xaa\x52\xd8\xcf\x3a\xa9\x4c\xdc\xf1\xa0\x39\x95\xf9\xb1\xda\xb7\x24\x7a\x8a\x3b\xd9\xe9\x16\x30\x06\x04\xc0\xb1\x97\xdb\xb2\xaa\x58\x5e\xad\x59\xdb\xad\xef\x34\xea\x92\x71\x89\x11\x4a\xd6\x80\x81\xc2\x7f\x06\x00\x50\x52\xdd\x62\xd9\xd8\x9a\xd7\xd0\x49\x17\x75\x49\x9a\x27\xd0\x5d\xac\x01\x64\x68\x77\x2e\xee\x34\x6e\xc5\x3c\xc9\x91\x2e\x6b\x90\xf3\x3a\x05\x55\x39\xa5\x10\x83\xd0\xe6\xf1\xd8\x53\x99\x15\x2b\x52\xac\xdb\x04\xd9\x1b\x44\xb2\xd6\x0a\x90\x94\x70\xbf\xf7\x36\x92\x75\x22\x7b\x89\x41\x6f\x77\x5e\x18\x7b\x38\x27\xa2\x1c\x76\x56\xc1\x9a\x7f\xf1\xe4\xe2\x7b\x6a\xc7\x16\x76\xff\x58\x08\xe4\x06\x39\x7a\x0b\xfc\x85\x97\x1e\x35\x21\xca\x5f\x08\x39\x53\xd9\x08\x68\xaa\x3b\xcf\xc4\xbd\xc8\xe8\x98\xbf\xe5\x79\xcc\xd8\x12\x0c\x95\x0e\xfa\x37\x55\x4c\x8c\x94\xf5\xad\x7a\x6b\x51\xdf\x0b\xfa\x15\x08\x34\x95\x57\xce\xd7\x5b\xed\xeb\x0d\x70\x5b\x40\xfc\x14\x10\x80\x7c\xa5\x9c\x17\x0f\xb7\xda\x3f\x14\x8d\xdd\xef\xa5\x69\x7f\x10\x67\x77\x2c\xaa\xff\x11\xd8\x28\x2c\x45\xdd\xe1\x88\xb0\x16\x39\x28\x92\xc8\x83\x05\xa3\xb5\xca\x21\xe1\xdd\xd8\xe3\xe6\x1e\xd5\x1c\xd6\xc6\x5a\x7b\x30\xc0\x30\x70\xbb\xb0\x9b\x8d\x6e\xb4\xec\xc4\x5a\x1b\x39\x1c\x23\x16\xdc\x86\xce\xdc\xb9\x78\xf5\xfa\x1d\x02\x6e\x2d\xc8\x1e\x6d\x00\x58\x55\xda\xe0\xc4\x06\x91\x9e\x07\x3f\xd7\x67\x42\x92\xa6\xb6\x34\x76\x80\xfd\x17\x7b\x13\x0a\x9e\x90\x56\x61\xf3\x26\x65\x40\x83\x3e\x89\xb0\x58\x2e\x0a\x96\x40\x86\xbd\xf4\xcd\x8e\xc5\x4e\x9c\x36\xda\x99\x87\x1e\x5b\xda\x8c\xc3\xa0\x8c\xc7\xe4\x1f\xc4\x99\x13\x8f\x7e\x12\x67\x2e\x56\x9b\xef\xc4\xb8\x3f\xc3\x76\x2c\x36\x5a\x75\x6d\x68\x6d\xaa\x13\x24\x5f\xda\xe9\xb6\xf3\xd1\x82\x4c\x41\x99\x23\xad\xdf\xa2\x7f\xc5\xc2\x88\xd3\x23\x4c\xfb\x8c\x40\x79\x27\xc3\xbc\x71\x23\xcd\xf4\x0b\xf1\x17\xd5\x35\x76\xaf\xbe\x11\x7f\x51\xa0\x6e\x6f\x3b\x1c\x39\xe9\x59\x27\xb6\x4e\xe1\xac\x3a\xa7\x85\xb6\x19\x0d\xee\x19\x5e\xde\x2a\x54\xa3\xd3\x40\x2d\x89\x4c\x27\x89\x5d\x7d\xd8\xd9\xbd\xfa\x58\x8d\xa4\x90\xd8\xae\x8d\x2a\x2d\x2e\x21\x3b\x90\xfc\x11\xf5\xdb\x04\x13\x57\x87\x3b\x68\xdf\xec\xea\x68\xec\x03\x42\x7a\xf5\x09\x05\x23\xcc\x4a\xb6\x3f\x58\x5a\x90\x55\xed\x8f\x38\x2f\xa0\xe3\x2f\x8f\x69\x5a\x68\xe5\x2a\xb7\xb3\x07\xb4\x9c\x45\x88\x9b\x9d\x3d\xa0\xcd\xac\x50\x5b\x56\xab\x55\xd5\xd8\xae\x93\x6b\x0b\xa3\x72\x97\xe0\xaf\xf2\xd4\x12\xf9\xfe\x58\xdb\x61\xcb\xd5\x96\x96\xa2\xfd\x91\x8d\x53\x9c\x4b\xc6\x29\x57\x21\x7b\x65\xab\x26\x72\xe1\x33\x57\xb1\x4d\x66\xa5\x4d\x8d\x26\x9f\x50\xf3\x0b\x43\x0a\x45\xde\xce\xaa\xfa\xc0\x16\xcf\x8f\x55\x80\x2b\xda\x44\x3c\x9a\x88\xee\x0a\x33\x9c\x9b\xd8\xe1\x5c\xe5\x94\x1c\x70\x41\xdc\xe0\x8f\xaa\xfa\x20\x47\xbf\xfb\x98\x59\x24\xeb\x30\xf3\x82\x65\x12\xad\x66\xcc\x26\x93\x58\xb7\x53\x3d\x48\x80\x7b\x87\x53\xb6\x1b\x94\x6c\x8f\xac\xb3\xc5\xc9\xfb\x33\x6d\x40\xda\x00\xdb\xfe\xa6\x72\x16\x38\x48\xfd\x95\x28\x7e\xd1\xa6\xa5\xf2\xe5\xe6\x4d\xa6\xd2\x7d\x8f\xd3\xc4\x0e\xc3\xf1\xbc\xd4\xe6\x77\xd2\x89\xb5\x52\x26\x68\x5d\xed\x2a\xd8\x4a\x60\x7a\xc9\x86\x98\x00\x9a\x77\x71\x05\x52\x49\x3b\x93\x2a\xa0\x85\xc4\xb7\xb9\x16\x62\xe3\x2e\x08\x98\x20\x59\x7d\x75\x15\x83\xda\x2b\x50\x93\xea\x3d\x19\x5b\xe9\x4b\xbc\x54\xd5\xc6\x0e\x5b\x5c\x7b\xb4\x38\x2e\xc4\x53\x4c\x48\xab\x05\x00\x94\xcf\xb7\x1b\x86\x08\x29\x3f\x07\xe3\x76\x6d\xec\x01\x8d\x9e\x20\x72\x4d\x07\x65\xec\x81\xa8\xab\xb0\x7d\x91\x24\x84\x42\xb8\x53\xc6\x27\xd2\x5e\x0a\xa3\x0e\x22\x87\x62\x02\x44\xfa\x02\x3c\xb0\xb9\x1f\xd7\x3f\x9d\xb9\x1f\x1f\xaf\x7f\x8a\x3b\x48\xb3\x53\xcd\x2d\x4d\x68\x6d\xd6\xf6\x13\x5a\x58\xd0\x1c\xa7\x84\x81\x05\x7e\xd6\x8a\x9d\x1d\x07\xd4\x44\x1b\x0b\x1a\x88\x57\x98\x5b\x8c\x64\x3f\x58\xe0\x71\x2b\x32\x7f\x2a\x5a\x31\x69\x96\xa2\x1d\x14\xe6\x29\x6e\x73\x61\xa2\xf6\x83\xdd\xe9\xb5\xf6\xc0\xce\xd0\x28\x70\x8d\xff\xdf\x70\xb2\x6a\x27\x10\x99\x44\x32\x44\xe6\xab\x9d\xe8\x63\x01\x68\x24\x82\xa6\xfe\xf1\x28\xa7\x11\x86\x91\x45\xfa\x75\x7a\xaf\xfd\x6c\x82\x02\x2b\x96\x3c\xd1\xd9\x5c\x1b\xc6\x06\xfb\x90\xa8\x3b\xa8\x46\x19\xdf\x1d\xe3\x8c\x3a\x48\xed\xc5\x1f\xc5\x5e\x9b\xd1\x83\x2a\xba\x53\x46\xf8\xe1\x28\x24\x48\x3d\xab\x6a\x27\x5d\x3d\x1a\x1e\x26\xd5\x86\x29\xfb\x5c\xe3\xe6\x0c\xf5\x86\x85\x95\x41\x95\xaa\xa1\xf8\x36\x8e\xe0\x77\x2b\x36\xdc\x62\x29\xd8\x30\xa1\x3d\x1a\xf4\x18\xb9\x34\x17\xec\x20\x8c\x22\x0a\x61\xff\x01\x0c\xa6\x8d\x35\x2a\x11\xab\xd3\xcd\x2d\x08\xf0\x30\xbe\xeb\xd1\x7b\x0b\x5a\x6a\x07\x73\x90\xca\x84\x36\x5f\x21\x20\xea\xf1\x09\xdf\x91\x86\xa5\xa4\x52\x85\xc5\x00\xc2\x2f\x17\xfe\x76\x50\xdf\xa5\xe2\x71\xc9\x60\x09\x46\x41\xa5\xb3\xd5\xf4\x16\x33\xc9\x2a\x1f\xd6\x5c\xd8\x1a\x1b\xb6\x93\xc6\xd1\x1c\x4a\x6a\x60\x3e\x2c\x0c\xf5\xa9\xd7\x03\xe8\x2b\x43\x12\x14\x56\x93\xba\x92\x42\x3f\xef\xb1\x2f\x5b\x9c\x76\x4f\x6f\x6d\xed\x76\x64\x8b\x09\xcd\x13\x9d\x32\xdb\xc2\x28\x8a\x27\x6c\x38\x45\xfe\xd7\xaa\x32\xd6\xd4\xa8\x7d\x66\x6b\xe6\x95\x35\x8f\x30\x2d\xaa\x2f\xa1\x34\x5b\xcf\x43\x85\x80\x66\xb0\xe3\x76\xc7\x36\xb6\xea\x03\x50\xed\x63\xc5\x43\xa1\x32\x9c\x3c\x51\x43\x4e\x18\x32\x5a\x8e\x11\x3e\x08\xc1\x7f\x56\x03\xa8\xfa\x08\x54\x4c\xc3\x53\x23\x52\x12\x24\xf2\xe6\x24\x00\xbd\xcd\x79\x06\x27\x6f\xc6\xee\x5c\x1c\x48\x32\x4a\x65\xa2\x99\x81\x65\x26\x98\x95\x74\xb4\x58\x7d\xd8\xdb\x56\x76\x1f\xab\x23\x1e\x98\xfc\x55\xb9\xca\xe0\x21\x95\xad\xf6\xb6\xa5\x42\x2f\xf1\x47\x55\x7d\xd8\xd8\x61\xff\xb1\x82\x5d\xf7\xd5\x44\x5b\x80\xed\x99\xd3\x32\x89\x15\xb3\x7e\xcd\x0f\xe1\x62\x9f\xdf\x2c\x28\x16\x6f\x55\x3a\x8b\xc3\x5f\xb1\xf3\x37\x37\xcf\xdf\x05\xc3\xc7\xcd\x73\x71\xab\x18\xf7\x73\xef\x7b\xf7\x1e\x4d\x6a\x64\x1f\x7b\xff\xf6\xba\x7a\x23\x8f\x20\xc5\x53\x32\x7f\x60\xc6\x3b\x25\xf7\xdc\x48\xf8\x49\x28\x2e\x47\xbf\xe3\x44\xf8\x69\x87\xdc\x98\x5c\xa1\x68\xfa\x6b\xa1\xc6\xd0\x2a\xaa\x5e\xa9\xc3\x2f\x83\x34\x4d\x28\x0c\x32\xc3\x1a\x13\xa8\xe4\x95\xdd\xef\xb5\xbf\x19\xf7\x7b\x89\xe7\x86\xf4\x2d\x1c\x25\x70\xf6\x4b\xe5\x1c\x9d\x94\x72\xf6\x9e\x12\x38\xfb\x6a\x67\x75\x93\xe5\x36\xf8\x5d\xbd\x1b\x94\xe2\x5a\x9f\x86\x73\x89\x0a\xe5\x44\x12\x62\xe8\x57\x15\xd5\x5e\xc5\x07\x88\xbf\xcd\x6c\xf4\xbf\x55\xb2\xeb\x77\x12\x25\xd1\x0c\x0c\xcd\xd1\x6b\x56\xd0\x05\x82\xe0\xc2\x1e\xf7\x6a\xd0\x0d\x1a\x51\xa4\xdb\x7d\xfb\xa8\xfe\x0e\xcf\x57\x64\xe3\xd5\xe0\x4a\x64\xad\xf5\xff\x1a\x42\xf8\x4d\xab\xf2\x24\x5e\xd7\xfd\xcb\xcd\x9d\x61\x87\x14\xc4\xa7\xa0\x22\xa7\x7f\x0f\xe4\x2a\x30\x43\xba\x38\x03\x08\xd4\x5c\x12\x54\x04\xc2\x9d\x11\xb4\x18\x2f\x80\x2b\x78\x50\xaf\x8a\x3e\xec\xe5\xa7\xcf\x15\xdc\xdb\x85\x72\x64\x5a\x4d\x85\x58\x13\x93\xdc\xdb\x82\x93\xac\x7e\xab\xc6\xe1\x1e\xe0\xf7\x6f\xaf\x57\xbf\x55\xda\x34\xdd\xd8\x9e\x6c\x88\x1b\xd7\xce\x0f\xa0\x81\x3d\x3c\x73\x0f\x01\xa5\xb9\x35\xf6\x60\x22\xfc\x7b\xfa\x16\xf8\xfd\x43\x38\x30\xaf\xb5\x61\x5d\x36\x1d\x9d\x8b\x56\xb7\xb0\x97\xa2\x4e\xba\x4a\x3c\x3d\xd7\x53\x23\x23\x40\x83\x1e\xdb\x11\x22\x2f\x04\x59\x13\x55\x76\xb9\x57\xab\x74\xc8\x5f\x83\x1c\x56\x83\x2a\x67\x72\xdd\x0b\x36\xa2\x20\x6d\xa0\xa4\x86\x10\x2b\x3a\xdd\x99\x97\x9b\x70\xaa\x93\xc5\xed\xb0\x5d\x28\xfd\x7a\x7e\xf2\x74\xa2\xbc\x57\x72\xbf\x80\x20\xf2\xa0\x93\x05\x69\xec\xb1\xd0\xe8\x50\xc3\x2e\x98\xe8\xbc\x1c\x40\xad\x12\x95\x22\xc1\xf3\xb1\xc9\x35\xd5\x48\xe7\xd2\x1a\xb1\xaa\x94\xf1\x6a\x18\xd0\xd9\x22\xb3\x49\xb0\x8d\x88\xf7\xbd\x3d\x68\xd2\x6e\x84\x3d\x1c\xb4\x6e\x92\x62\x4b\x8a\x82\x40\x85\xa8\x14\x56\x71\x1a\xbd\x3d\x18\xd8\xa6\x3e\x87\x1f\xc1\xbe\x12\x75\x6e\xc2\x9a\x23\x66\xe4\x11\xe8\x14\xda\x68\x5f\x51\x9f\x34\x9e\x60\x3c\xd3\x77\x8a\x2d\x2c\xd1\xb0\x84\x79\xab\xaa\x93\xce\x83\xd2\x4c\xbd\x22\x75\xc7\xde\xc1\x8a\x82\xfa\x20\x97\xca\xd1\x89\x06\x77\x0a\x26\x09\xdb\x6a\x64\xd7\xd9\x83\x6a\xcf\x85\x44\x99\x66\x50\xb4\x40\x65\x77\x90\x47\x87\x76\xc7\xc0\x64\xac\x09\x34\x01\x0e\x62\x8e\x62\x8b\xad\xca\x35\xe2\x55\x95\x0c\x3c\x6e\x57\xc3\xd6\x19\xe5\xb9\x03\x1a\x4e\x90\x43\xb0\x25\xf3\x2e\x13\x52\x78\xa7\xfd\x01\xd4\xf7\x91\x2c\xb9\x94\x9d\x21\x42\x57\x02\xde\x55\x16\xca\x9e\x83\xdc\x2b\x0e\x4a\x48\xe7\xc6\x3d\xd3\x5a\xa3\x9a\x81\x4d\xca\x4c\x6f\xe3\xba\x53\x8f\x48\x7f\xd2\x7e\x55\x81\x92\x9e\x0c\x4b\xb0\x33\x2b\xe3\xc3\x91\x19\xa5\x93\x39\xc6\x79\xdd\x75\x40\xe9\xe0\x5e\x53\xe8\x33\x98\x8b\xeb\x04\xc9\xe4\x76\xba\x17\x16\x0f\x4e\x72\x12\xa6\x69\x9b\x69\x0e\xde\x8a\x56\xa1\x7e\x66\x07\xe1\x07\x69\xdc\x46\xe1\x49\xd2\x5e\x6c\xf4\x00\xe3\x4c\x55\x83\x22\x42\xee\x34\x27\x6a\x26\x55\x17\xab\xce\x37\x08\x1c\xbb\x6c\xa0\xca\xaa\xe9\x2c\x15\x8f\x2b\xb0\x0d\x48\xd5\x84\xc9\x85\x36\xc0\x34\x9b\x91\x00\x4f\x0f\x8b\x93\xf1\x45\x3a\x6c\x0a\xab\x0b\xd5\x8f\x33\xed\x33\xfd\xae\xc8\x5d\xa5\x26\x71\xa7\x58\x15\xef\x30\x27\x08\x42\xd3\x85\x51\x7d\x80\x79\xff\xb1\x22\x91\xbb\x8e\xc7\x41\x57\x24\x82\x93\xfc\x8c\x89\xd5\xdf\xac\x36\x35\x9e\x6d\xfc\xa7\xd5\x06\x0f\x42\xaa\xe2\x08\x7e\x62\x12\x62\x47\xa1\x23\xfa\x06\xac\x3b\xdd\x04\x6f\xa1\x63\xb5\xb1\xb8\x9e\xd0\x62\xf4\x34\xfc\xae\x9c\x97\xc0\x26\xf8\x00\x19\x7e\x15\x26\x28\x2a\x44\xf6\xc9\xa7\xe1\x37\xa7\xc6\xa4\x6a\x34\x31\xe5\x3d\xff\xac\x2a\x90\x92\x57\xc8\x7f\x41\xb0\xc7\xb3\xb0\x8c\xeb\xc2\xa6\x0a\xf3\x3f\xe4\xad\x32\xf8\x5e\x7a\xaf\x06\x43\xe6\x6c\x62\x02\x79\x51\xce\x8e\x28\x70\xe1\x12\x18\xd0\x36\x78\x51\x7d\xac\x92\xaf\x55\x70\xb3\x5a\xb2\xe3\x47\xf2\xd3\xe9\x56\xc5\xab\xda\xb1\x90\xfd\x5f\xea\xe8\xd8\x82\x85\x1c\x03\x7f\xb0\xb1\x01\xdd\x35\xc2\x09\xb6\x2b\x0f\xb4\xd1\x20\x37\xb7\xc3\xf1\x9c\xba\x10\x4f\xe8\x47\x30\x5b\x8c\x1a\xfb\xa8\xdb\xaa\xea\x71\xe0\x32\x4f\x31\x1e\xc9\xd8\x09\x76\x14\xcc\x0d\x17\xa5\x42\xaf\x9d\x20\x24\x28\x4d\x84\x03\x49\xdc\x3b\x37\x76\x40\x0e\x19\x4f\x57\x54\x87\x47\x6f\x26\x3b\x6c\x75\xe7\x58\x0e\xc0\x0e\x6a\x1d\x4e\xe0\x92\xfb\xc0\x5e\xb6\x4a\xdc\x69\x19\xad\x5c\x99\x4c\x13\x37\xdd\x60\x1a\x2b\x94\x4e\x54\x67\xc8\x6c\x19\x44\x9a\x30\xc0\xde\x06\x15\xd4\xef\x94\xa6\x03\x30\x83\xe2\xce\x66\xec\xba\xb0\x27\x3e\x1d\xbb\x8e\x9c\x61\xe6\x2e\x9a\x50\x05\x1f\x04\x5e\xf3\xcf\x6a\xec\x5b\x50\x3e\x13\x2d\xdf\x63\x42\xa4\x65\x99\x9f\x29\x95\x48\xd5\x50\x2c\x9a\xbc\x08\xbc\xcd\xb4\xcc\xee\xb8\x0a\xeb\x78\xc1\xf5\x92\x97\x74\x3b\x05\x49\x06\x22\xe4\x51\xdc\x71\x1c\x28\xf2\x76\x40\xd2\x1e\xe4\x51\xec\xec\x41\x74\xda\xdc\x3a\x1e\x29\xa0\x53\xae\x60\xa3\x21\xcf\x6b\x33\x2a\x56\x79\xe0\xe7\xdc\xd1\x8f\x4f\x66\xf9\x9c\x76\x7d\x0c\x66\x13\x3a\xc9\xe5\xa9\x2f\xd6\x47\x81\x5a\xdd\xe9\x23\xe1\xe9\x59\x70\x38\x0a\x0e\x47\x9c\x78\x12\x9d\x38\xda\x7b\xa7\xc4\x15\x9d\x4e\xf3\xea\x6a\x76\xd6\x3a\xb6\x37\x27\xbe\x07\x69\x68\x38\x62\xb6\xc7\xc3\x92\xf0\xd0\xa8\x5d\x86\x53\x72\x5c\xe1\xbc\x96\x6a\x3e\xcf\x49\xd0\xbc\xb4\xae\xf8\x9c\xe7\x32\xe0\xa4\x53\xf0\xd0\x27\xe4\x2e\xb5\xde\x93\xe2\xf9\x3e\x9c\x91\xe3\x80\x47\x85\x01\xb3\x57\x65\x7b\xa6\xb3\x84\xeb\x0d\x07\x36\x9f\x99\x2c\x61\x2a\xe4\xc7\x86\x34\xfc\x91\x23\xd9\xae\x10\xd7\x42\x3f\x62\x3e\x10\x2f\xcb\x7f\x85\x07\xbc\xd1\x3e\x02\x6b\xac\x9e\x80\xb0\x49\xa1\x80\x5c\x94\x8a\x43\x5d\x27\x25\xe2\x49\xeb\x67\x2b\x26\x94\x3b\x48\x57\x74\x9c\xe7\x78\xbb\x0a\xde\x78\xc2\xd8\x03\x9d\x16\xa3\xdb\x14\xb9\x8e\x19\x3c\x6a\x26\x14\x19\x53\xe1\x4a\xff\x5d\x96\x92\x30\x93\x4a\xe1\xa2\x26\x71\x49\x8c\x53\xb9\xe0\x18\x1c\xf3\xd9\x37\xb8\xe0\xaf\x2a\x78\xfa\xe4\x1c\xb8\x1f\x34\x9a\x38\x4a\x4e\x3c\xe3\xbd\x05\x9f\x45\x36\x6b\xd1\x6f\x25\xb1\xd7\x55\x15\x50\xc1\xbe\x85\xbf\x42\x4a\x34\xa2\xdd\x28\x74\xa0\xe4\xe4\xb0\x10\x42\x2e\xcd\xff\xd8\xc6\x4e\x31\x57\xa4\xbe\x3e\xe1\x84\x49\x7e\xe8\x0c\x65\x87\x01\x59\xe8\xcd\x00\x52\xbc\x8a\x1b\x87\x36\xe4\x36\x14\x0f\x85\x0b\xee\x24\x9e\x20\xbb\x12\x07\x49\x67\x05\x81\x59\xfd\x3c\xad\x3d\xcd\xa3\x5f\xcb\x53\x06\xea\x5b\xb9\x8a\xbe\xa9\x64\xdb\xe2\x1c\x4f\x47\xeb\x2d\x4e\x9e\xd2\xa2\x08\x50\x39\x04\xd9\xac\x62\x6a\x5d\x9c\x81\x38\x32\x1b\x7d\xf9\xb9\x07\xc8\x1f\xff\x0d\x47\x1e\x45\x55\xe9\xc8\x23\x36\x72\xb2\xc2\x66\xbd\x9c\x2f\x35\xd9\xb6\x28\x0a\xf1\x5c\xce\x04\x1a\x9e\xcd\x51\xae\x81\x5a\x48\x83\x01\xf2\xfc\x97\x3a\xa2\xf4\xc3\x33\x01\xb7\x26\xed\x84\x44\xe7\x3d\xf4\xf8\x25\x75\xc6\x81\x1e\x03\x82\x10\x8c\x0b\xba\x1b\x97\x63\x7e\x89\xfa\x9a\x53\x0c\x8b\x92\xa1\x34\x47\x90\xf4\xc3\x5a\x57\x7b\xa0\x03\x39\x6e\x44\x57\xcf\xd9\x09\xe8\x39\x2b\x49\x3b\xbd\xdd\x75\x47\xa1\xf7\xbd\x1d\x3c\xce\xa4\x70\xbe\x9d\x74\x58\xf8\x1a\x54\x63\xb7\x46\xff\x8e\x84\xdd\x93\x6f\x67\x34\xb6\xff\xe8\xfc\x60\xcd\xf6\xa7\x27\x16\x94\xcb\x5b\x60\x3f\x3b\x7b\xf8\xf9\xc7\xc7\x9c\x2e\xae\x70\x08\xed\xe8\xc5\x33\xed\x9f\x8f\xeb\x87\x4e\x6c\x47\xdd\xe2\x96\xfb\xa3\xcc\x9c\xd1\xd9\x53\x85\x1c\x6f\x0f\x26\x92\x05\x5d\xd3\xed\x20\x9c\xed\xee\xd4\xa4\x88\xdd\xef\x69\x78\xd7\x9d\xda\x13\x24\xb6\x1f\x9d\x5b\x94\x41\xca\xa9\x81\xe9\x73\x73\xf3\x7c\x15\xa7\x78\x1a\x1f\x1e\xb6\x20\xa1\x16\x16\x11\x96\x11\x01\xb8\x61\x13\x68\xda\x88\xd0\x1c\x12\x4a\xa1\xfc\x31\x2f\x85\xe3\xe8\x40\x66\x99\xd9\x62\x50\x6d\x01\x14\xa1\xb8\xb8\x80\x76\x90\x1c\x06\x69\xcd\xcc\xe8\xca\x13\x2b\x9b\xbc\xb0\xf7\x04\xa3\x35\x4a\xee\xb1\x79\x38\x5d\x27\xeb\x9b\x39\x1a\xf5\x9d\xf9\x59\xe8\x40\xc6\xd1\x98\x22\x89\xa7\x4d\x61\x0a\xae\xa6\x88\xa7\x85\x56\xe4\xdc\x8c\xfc\xf8\x88\xa3\xd1\x84\x54\x0e\xf9\xf5\x17\x72\xb3\x59\xbd\xa9\xe3\xa1\xba\x2f\xe0\x68\xd8\xa7\x4b\x24\x87\x35\x64\x3f\xe1\x81\xba\x66\x6b\x09\x66\x18\x5b\x67\x7a\xde\x2b\xcb\x87\x86\x22\x24\xe2\x98\x38\x0f\x12\x4b\xbe\x94\xa1\x11\xe8\xa5\x4c\x1e\x5e\x68\x80\xf9\x3f\x44\x2b\x8f\xae\xf2\xf6\x56\x99\x85\x22\x98\x7e\xaa\x50\xe4\x2f\x41\x39\x62\xee\x72\x99\x98\xc3\x54\x5d\x62\x4f\x80\x93\x0c\x26\xe3\x2b\x8c\x35\x7a\xd9\x91\xf5\x08\xaf\x77\x88\xb5\x36\x2d\xf1\x11\x66\x03\xec\x4a\x16\xd7\xff\xaa\x1a\x0d\x00\xa1\x42\x0a\x3f\xf8\x3b\x1f\x96\x02\x7f\xb6\x58\xcc\xda\x8e\x26\x63\x9f\x34\x1d\x6a\x22\x45\xec\xe4\x1b\x35\x38\x74\xfe\xbd\x24\x84\xef\x20\xdb\xb1\xaf\x3f\x3b\x54\x84\x22\xcf\x38\x11\xd7\x00\x02\x12\xc1\x5d\x24\x04\x7e\x25\xc3\x47\xc0\xc2\x8e\x3c\xec\xd7\x8b\x63\xe0\x6d\x64\x98\x3b\x72\xec\x11\x97\x6f\x5e\xb8\x55\x15\x2b\x0c\x48\x7f\x95\xcd\x8e\x07\xf0\x40\x56\x0f\x74\xff\xe9\xba\x29\xc7\x8d\x9a\x04\x15\xe7\x05\x8e\x6d\xa2\x25\x1e\x3b\x35\xeb\x10\x75\xa6\xcc\x27\x1a\x2b\x97\x59\x82\xa8\x36\x6c\xc9\x74\xaf\x8a\x5d\xfd\x46\xbc\x4c\xf6\x48\x58\x5a\xfd\x11\xb8\x7f\xe6\xfd\x27\x89\x42\x07\xe4\xdf\x13\xb7\x43\xed\xe9\x40\x5c\xc0\x12\x1e\x22\xff\x08\x0d\x66\x0e\x92\x0f\x65\xce\x46\x16\x07\x33\x31\x95\xc5\x62\x4b\x9c\xa5\x0f\x78\xca\x3e\x7f\x8e\xcf\xc0\xc4\x4f\x86\x83\x7b\xb8\x4c\xde\xab\x6c\x2a\xbf\x59\xac\x36\xce\x68\xaa\x7a\xc2\x6f\x04\x6d\x83\xe4\x54\x82\x9e\xb8\xa4\x62\xd1\x8c\xc8\xfc\xf2\xa5\x13\x07\xd5\x75\xab\x0a\xed\x19\x2b\x03\xbb\x38\xf9\x6f\x46\x71\x9b\x0d\x72\xd8\x0f\x73\x2c\x2c\x6e\x6e\x45\xc5\xd0\x8e\x17\x3d\x30\xaf\x15\xfb\x24\xe4\xa0\x39\x60\xe6\x25\x4a\xb7\x07\xac\xcb\xef\x84\x10\x15\x33\x2b\x18\x7a\xb4\x29\xb9\x77\x42\x6e\x60\x1b\x05\xf2\x75\x6a\xc3\xd6\xf2\xdc\x0c\x7c\x9a\xb8\x81\xba\xe9\x60\x9b\x87\xb6\x70\x2f\x61\xa0\x4c\x7f\x57\x49\x76\xa7\xc6\xe6\xa6\xca\x80\xac\x57\xc3\x5e\x1a\xf4\xec\x20\xe3\x4a\x90\x46\xae\x2e\x5f\xbd\x7a\xfd\x2e\x09\x21\xb0\xce\x4d\x6b\x8d\xfa\x26\x3a\x98\xce\xda\x15\xdc\x4c\xe3\x04\x2d\x21\x92\xa3\x2b\x97\x38\x05\x97\xb3\xe1\xcc\xf3\x65\x6b\x91\xb7\x5a\x68\x4b\xd8\xab\x8a\xf6\xb7\x27\x49\xf8\x01\x46\xe5\x63\x15\x0c\xfe\xaf\xe1\x7f\x95\x9f\x99\x64\x67\x4d\xc8\x5a\xd2\x91\x54\xba\x70\x24\xb6\xd6\xb6\xb3\x33\x14\xdc\x84\x46\x89\xaa\xa4\xdd\xf7\x16\xf7\xc2\x8d\x40\x9f\x88\x73\x98\x81\x76\x40\x86\x00\xc4\x1d\x8d\xfe\xfb\x88\xe2\x27\xba\x32\xac\xaa\x3b\xed\xf4\x5a\x77\xb4\x61\xfe\x39\x7e\x50\x3a\xfc\x9a\x5c\x39\xc9\x2a\xd7\x4e\xfc\xe8\x7a\x69\x44\xd3\x49\xe7\x2e\x1e\x8c\x5a\x0c\xc0\x87\xd5\x27\xff\xe0\xa7\x37\x03\x3a\x37\xfc\xf8\x18\x20\x7e\x9a\xa1\xab\x37\x76\x68\xc8\xb8\x1a\x3d\x85\x70\x5d\x72\x3a\xcc\x63\x90\xe7\x8b\xb9\x4c\x84\xff\x17\xea\xdc\xd8\xe1\x36\xf5\xe3\x5b\xb6\x2a\xd8\x0d\xf1\xa6\x3b\xd9\x8d\xa5\x89\x09\x6a\x87\x32\xee\xbb\x0a\xef\xd3\xa4\xb2\xe8\x39\x86\x77\xab\x21\x43\x9b\xed\xcf\x48\x34\x7f\xff\x1d\xcd\xe7\xaa\xeb\x41\xb0\xfd\xa6\xc2\x96\xb0\x11\x7e\x7a\x29\x17\xf3\xc2\x45\x17\xc8\xc3\xdb\x2e\x98\xba\x30\x1a\xd9\xd5\x3d\xd9\x79\x32\xc0\x8b\x6c\x34\x81\xe5\x60\x27\x72\xc3\xf5\x91\x8f\x3a\x23\x87\x76\xcd\xa0\xf1\xb2\x0e\xa5\x77\x12\xed\xd9\xf1\x56\x36\x26\x6e\xb5\xd7\x5b\x63\x87\x8c\x0c\x37\xaa\x03\x3a\xad\x62\x96\x08\xf7\xbc\x5d\xd5\xe9\x46\x19\x87\xcc\x8c\x7e\x85\x94\x59\x71\x90\x6e\x08\x16\x2d\x8e\x20\x52\xf3\x52\x80\x1f\xfc\xbd\x50\x8a\x01\x43\x95\x95\x1c\xbd\xad\xb5\xd1\x1e\xdd\x45\xb5\xd7\xb2\x23\x4d\xa7\x9c\xaf\x24\xc7\x23\x12\xb6\x66\x05\xf6\xc8\x78\xd8\xe3\x93\x87\x87\x5d\x3d\xb3\x01\xe2\x8b\x21\x7c\xac\x81\xf4\xc3\x04\x41\x7e\x1e\x7c\xa5\xbb\xee\x87\xd1\x90\x69\x7d\x34\xaa\x48\x0c\x74\xcf\x04\x36\xba\x3c\xf8\xc8\x0f\xb2\xb9\x05\xe6\x32\xa8\x8d\x1a\x94\x69\xd0\xa1\x4d\xc2\xfe\x2e\x3a\x6b\xb6\x6a\x20\x5d\x23\x78\x8b\x51\xb1\x80\x5c\x83\x86\x74\x47\x92\x26\x5d\x06\x7f\x11\x52\xbe\x05\xd5\xfa\xbb\x00\x18\x14\xe3\x08\xc7\xe6\x9d\x49\x7e\x68\x27\x1f\x87\xb2\x3f\x80\x30\x0a\xb6\x19\x39\xd0\x5d\x19\xd1\x0c\xaa\x55\x06\xa8\xed\x04\xeb\xf3\xc1\xcd\x20\xe0\x43\x41\xdd\x1d\x4d\x93\x44\xf5\x1b\xfc\xaa\x0e\xd2\x37\x3b\x3a\x72\xf9\x0b\xff\xc4\x13\x97\xad\xfc\x9d\x52\x6f\xe2\x07\x2e\x01\xc7\x8b\xc2\xf1\xf1\xc9\xa0\x64\xb3\x63\x9f\x42\xbb\xa9\xe9\x82\x2a\x8a\x2c\xef\xe2\x31\x30\xf0\x13\x84\x53\xad\xd8\xcb\x4f\x7a\x3f\xee\x45\x04\xc4\xa2\xb0\x4a\xce\xca\x83\x9d\xd5\xf2\xf1\xcc\xd4\x15\xe0\xeb\x4f\x69\xa6\x18\xee\x3f\xac\x31\x4a\xb5\xb5\x1c\xd1\xdd\x1c\x99\x4e\xe1\x7b\x54\x71\x3c\x80\x70\xa1\x3a\x06\x04\xa0\x1b\xd5\x79\xee\x69\xfe\x1d\x2c\x70\xb2\x64\xa9\xe8\x67\xbe\xee\x46\xf5\xe0\x27\x1a\xc5\xc0\x4f\x03\x56\x5e\x1f\x2f\x39\x24\x41\xb6\x40\x18\x62\x45\x4c\x33\x4d\xb6\x2b\xbc\x94\x98\xe6\xda\x02\x54\xb1\xe5\xb2\x58\x2f\xb3\x8b\x8d\x8f\x9f\xbd\x78\x87\xee\x29\xf7\x14\xaf\xc9\x0c\x42\xae\x7d\xc4\x22\x1f\x0e\x20\x59\x3a\x9b\x5b\x3e\x43\x2c\x05\x99\x13\x63\x7d\xa4\xfb\x68\xe1\x6e\x68\x2f\xfd\x2e\xd5\x05\x9b\xbc\x76\x8e\x84\x5b\xa3\x71\x3c\x0b\x41\x2f\x61\xa7\x36\x30\xb2\x72\x62\x05\x6c\xe9\x5a\x41\x23\xbb\x70\xa7\xe0\x05\x25\x72\x41\x48\x44\x1b\x4f\x79\x42\x1a\xbc\x27\x65\x7e\x95\x38\xa0\x8d\x87\xe1\x69\x36\xe4\xe7\xe0\xbc\x24\x79\x83\xe1\xa0\x11\x76\x53\xd1\x1e\x11\xd2\x79\xc7\x80\xaf\x0a\x34\x8d\xba\xd3\xe6\x16\x25\xab\xfe\x98\x12\x32\x11\xfb\xca\xf6\x5a\xb5\xdf\x64\x79\xc1\x0d\xe8\x0d\x8e\xfe\xff\xf7\xff\xfc\xbf\x8f\xae\xa0\xdd\x57\x7e\xe8\x1e\x5d\x05\x0d\x06\xe0\x89\x8e\x84\x40\xbc\xfe\xaf\x6a\x34\x07\xf6\xf9\x79\x4f\xbf\xaa\xf0\x8d\x2c\xa2\x1a\x8d\xe3\x43\x0f\xfc\x51\xf1\x17\x70\x8a\x8a\x83\x5d\x00\x8b\xa8\x2a\x13\x77\xb8\x57\xb6\xd8\xe4\xfe\x3e\xea\xe6\xb6\x26\xdb\xd5\x85\xf8\x13\x7c\x09\x0c\xa0\xc0\xfb\x3c\x6c\x19\x91\xff\xe3\xa4\x9d\x6c\x22\xf9\xad\x00\xdc\x1c\xf9\xb2\x51\xda\x2f\x64\x29\xb7\x1c\x03\xc7\x0e\x80\x9d\x36\xaa\xea\x47\xb7\xa3\x23\xf1\x50\xdb\x9b\xd1\xed\xf0\x6a\xea\x27\xba\x7e\x9c\x63\xc0\xa1\x99\xe1\xc0\xea\xb5\xa3\xcb\xf7\xcb\xe2\x19\x66\x65\xbe\xd9\x7b\x25\xd6\xb2\xb9\x0d\xaa\x60\x45\x7b\x20\x39\x09\xba\x2a\x6e\x6b\xbc\x9d\xf9\x41\xa1\xba\x3b\x28\x05\x90\x5e\x0d\xe1\x40\x5f\x9a\xb6\xf6\x72\x4b\x25\x41\xf6\xe0\xa2\x76\x10\x5e\x6e\x19\x11\x62\xfe\x85\x7f\x56\x5e\xe2\x91\xef\x3b\xb9\x9d\x47\xdf\xe8\xc7\xae\x9b\xc7\xe8\xe8\xe4\x5a\x61\xf2\x35\xfe\xa8\xf6\xd0\x48\x6f\x8d\xa2\xed\x2b\x7c\x54\x0d\xba\x3e\xba\xe8\x04\xe9\x2a\xbe\xd7\x45\x2e\x00\xf4\x13\xbb\x5a\x0f\xf2\x00\x69\xf2\x40\x9f\x3b\xed\x38\x66\xcb\x73\xfa\x45\xc9\x78\x3b\x85\x40\xf1\x72\x4a\x84\x47\x51\x9f\xd7\xc3\x9b\xf0\x9b\xb2\xbc\x05\xe1\x69\xc0\x03\x33\x1c\x88\x70\x58\xe6\xad\x15\x94\x41\xd2\xab\xdb\xd9\x83\xa9\xee\x74\xab\x2c\xee\x0f\x7c\xd5\x8c\xa2\xd6\xac\x07\x7b\x70\x41\xba\x03\xaa\xd2\x27\xf0\x00\x50\x49\xc3\xb5\xb4\xe7\xef\x5e\x5e\xff\x4f\x81\x38\x80\xde\xab\xaa\x52\x2d\x8c\xf9\x0a\xa3\xbe\xd0\x69\xee\x2b\x75\x20\xa9\x8a\xb3\xe8\x8c\xaf\x8e\x67\xbd\xe8\xf3\x9a\x03\xc0\xbf\x90\xfd\x6b\xab\x7d\x91\xd9\x0f\x0a\xa9\x42\x87\x46\x8e\x16\x37\x5e\x7f\x24\x59\xda\x05\x40\x92\x48\x6b\x44\x66\xac\xa9\x61\x33\xa9\xc3\x34\xbb\x22\x71\x15\x32\x85\xb1\xe6\x11\xee\x34\x98\x59\x34\x02\x17\x61\xde\x12\x1f\x08\x1a\xc0\xf6\xa3\xf3\xf5\x5a\xd5\xd6\xd4\x32\x49\x63\x7f\x0d\xde\x29\x6b\x74\x5f\x96\x61\x56\x02\xcb\x97\xb7\xe4\xce\x36\x58\xd0\x8f\x44\xe8\x47\x08\xcc\x90\x23\x47\x81\x9b\x82\xa7\x60\x3f\x72\xcc\xc8\x65\xa6\x72\x25\x07\x5a\x01\xd8\xe0\xc2\x95\xe3\x0b\xa6\x89\xac\x57\xb9\x65\x64\xd6\xaf\x1d\xa8\xf9\x78\xcf\x9e\x0d\x6c\x79\x03\xd0\x54\x45\x97\xf0\x93\xd2\xff\x55\xbd\x23\xff\x08\x6c\x52\x62\xe2\xe8\x25\x5c\xda\x9e\x97\x6d\xb1\x61\xa2\x81\x98\x83\x97\x4e\xc2\x74\x63\x8f\xbb\x01\x2b\x5b\xad\x56\x79\x7d\x51\x8b\x45\xe3\x19\x08\x89\x69\xfb\x3a\xa7\x4b\xf9\x28\xc7\x68\x8f\xf2\x78\x8f\xfb\xc6\xe3\x15\xc0\x06\xe3\x50\x5e\x60\x6b\xa9\x67\x4a\xac\xd5\x56\x53\x08\x1d\xd4\xe5\x14\xdf\x45\x4c\x48\x80\xdb\xb9\x5e\x62\x24\x15\x6a\x0f\xee\x4c\x76\xc8\xe6\x6b\xa3\xba\x1a\x5d\x7e\xc4\x85\xa0\xcf\x98\x89\xfc\x24\x9b\xf4\xec\x65\x3d\x99\xf3\xb2\x6d\x6b\xbf\xef\xc3\x51\xda\xc3\x33\xf7\xf8\xc7\xd0\xed\x9f\x1e\x66\x50\x09\xe0\x61\x5a\x96\x2d\x85\x75\xe2\x73\xfc\x3c\x6f\xea\x10\x93\xe7\x71\xd3\xd8\x1b\x3c\x06\x13\x6b\xf1\xea\x4c\x88\xc7\x20\xd4\x27\xaf\x4c\xab\x5a\xd1\xa6\x3d\x30\x1b\x1b\x46\x42\xa4\xed\x8e\xb5\xb7\x34\x4b\xe3\x8a\xe2\xfe\x06\x80\x40\x76\xb6\xd0\x04\x81\x91\xc0\x1f\x41\x77\x1f\xe0\x6d\x99\x68\xb1\xc1\x8c\x54\x5d\xda\x3a\x53\x0d\x61\xd3\x0c\x56\x1f\x13\xbd\xe4\x13\x9e\x0d\x06\x68\x40\x67\x4b\x6c\x0f\x46\xb6\xa0\x50\x39\x02\xf6\x8e\x70\x71\x68\x95\xf3\xc1\xe0\x7b\x86\x1e\x37\x2c\x0c\x94\x1e\xf8\x39\x25\x26\x5e\x21\xd3\xc9\xcb\x6c\x6d\xad\xe2\x6e\xfb\x94\xb3\xe6\x51\x6d\xb8\x6c\xd8\x2a\xe9\xa4\x88\x36\xfb\xb4\x23\xd2\x62\x2b\x8e\x91\x5c\x0c\xcb\x94\xab\xeb\x61\x2e\x84\xe9\x0f\x3b\xbe\x8c\xdc\xd1\xf8\x81\xcf\x8c\x58\x01\xeb\x25\x3b\x29\xd0\xbd\x54\x49\xfb\xd0\x44\x64\xbc\xaf\x22\xe4\x0f\x58\x87\x3b\xee\x79\xaf\x8b\xf1\x8d\x82\xaa\x22\x45\xc8\x0c\x56\x78\x26\x01\xde\x08\xd1\x2c\x3f\x92\xa7\x8e\x5a\x0b\x46\x3d\xa3\x2a\x56\x93\x5a\x95\x2a\x2a\x34\xac\x5c\x28\xfa\xf2\x2e\x30\x37\xae\x8d\xad\x49\x7f\x4e\x23\x50\x76\xe7\xc8\x62\x7c\x60\xdf\x13\x85\x3b\xaa\xb6\xa7\x2a\x62\xef\x8d\xfa\xb0\xcb\xaa\x0d\x2c\x75\x76\xe0\xc8\xd0\xc2\x69\xd3\xa8\x14\xf3\x49\xb5\xa1\xfe\xd5\xfd\x96\xa4\x74\x2f\x0a\x0f\x4a\xd9\xc6\x7f\x80\x51\xc0\xad\xa1\xa8\xc4\x0e\x71\x59\x11\x3b\x0c\xeb\x67\x2b\xb5\x49\xcb\xcb\x5b\xf4\x78\xa5\x5d\xc5\xef\xb2\x1d\xa4\xec\xe9\x6c\x2a\x5f\x12\x19\xd1\xae\x92\x86\xec\xcb\x27\xb5\xb1\x81\xb7\x02\xeb\x01\xc9\x88\x46\x07\x74\x36\x54\xac\xf2\x9d\x0c\xb2\x53\x7b\x30\x9a\x8c\xad\xd9\xfb\x88\x97\xc3\x53\x52\x80\xa2\xc9\xfe\x31\x1f\x47\xa7\xc1\xc6\xa6\xd2\xb5\x04\xd0\x89\x32\x06\xee\xc6\x75\xab\x07\xe6\xa1\xf4\xc1\xfa\x55\xe2\x12\xec\xe3\x8c\xf5\x46\x69\xca\x4d\x2a\x8e\x82\x95\x0b\x9e\x10\x27\x6a\xcd\x71\x00\x4e\xaa\xfe\xfd\x02\x82\x2a\xc8\xb8\x81\x63\x27\xc1\x95\x39\x74\x90\x5f\x4b\xb8\x5c\x26\x0e\x39\x93\xdb\xce\x3c\x25\x52\xfe\x86\xce\x06\x9f\x6a\xd3\xc6\x34\x89\xa6\x87\x78\xff\x29\xa6\xef\xe3\xe5\x24\xbe\xa6\x14\x73\x78\x53\x7b\x82\x56\x35\x4e\x0b\x97\xdc\x5f\xc3\xff\x98\x6a\xd4\x81\x0d\xab\x07\x35\xc4\x4b\xe0\x14\x06\x12\xf8\x35\xaa\x08\x59\xf2\x6a\xaa\x16\x64\x59\xb0\xd6\x21\x91\xf4\x3e\xcc\xcf\xb3\x9b\x4e\xc9\xa1\x8e\xe5\xaf\xe0\x53\x74\x33\x2c\x51\xcf\xc8\xd5\x8c\x49\x35\x39\xcc\x2b\xbb\x0c\x46\xd5\xe5\x90\x54\xe3\x7e\x09\xd8\xf6\xca\x14\xb0\xaf\x7b\x65\x72\x2d\xa7\x40\x6c\x9d\x6a\x27\x98\xd1\xea\xbf\x0c\x2f\x1d\x06\x2f\xc1\x73\x0f\xfe\x39\x6f\x67\x06\x44\xcd\x94\x0b\xa0\xc6\xe6\x70\xaf\xec\x0c\x88\x17\x5c\xdc\xd7\xa7\xa3\x97\xc6\x47\x1d\x66\x03\x44\x99\x75\xdf\xc9\x46\xc5\x90\x08\x08\x14\xb7\xeb\xa2\x9a\x88\x8c\x2b\x2b\xf0\x11\xae\x68\x95\x5e\xc5\x03\x36\x58\x5d\x12\xc4\xc3\x56\x6d\xd0\x6f\xdc\x29\x34\x03\x96\x13\x61\x5a\x5c\x9b\x8d\xcd\x99\x13\xde\xc2\x30\x47\x2e\x25\x8e\xca\x27\xf7\xbd\xe2\x5a\xef\x83\xd8\xd3\x07\xe1\x8a\xaf\x5c\xdb\x22\xae\x0b\xf9\xf9\x53\x5c\xc0\x69\xc3\xf8\x3a\xf0\x89\x56\x2d\x18\xd4\x91\x24\x4e\xf9\x53\x45\x46\xc7\x5e\xb8\xc4\x95\x3f\x0b\x1f\x38\x6d\xae\x3d\x26\x76\x87\xbc\x8a\x70\xc4\x40\xaf\x91\xdb\x52\x54\x0e\x42\x8b\xf3\xdb\xcb\xb5\xb8\x10\x67\x2d\x4e\xee\x38\x96\x30\x75\x53\x16\xcd\xe4\x90\xc9\x66\x87\x30\xd0\xc5\x08\xe7\x79\xb0\xcd\x93\x65\x9f\xe6\x65\xb4\xf2\x77\x0b\x25\xee\x5d\xe0\x53\x98\x93\x98\x67\xcb\x98\x4b\xde\xb3\xda\x12\xc4\x56\x1b\x75\x1a\xf5\x89\x72\x6c\xeb\x45\x0b\xef\x3c\x67\x25\xbb\xae\x8e\x96\x95\xcb\xae\x13\xf4\xb1\x08\xea\x38\x52\xae\xb7\xa0\xc5\xa5\xa6\xb6\xec\xfa\xb0\x54\x88\x66\x6b\x5b\xaf\x8f\x5c\x86\x96\x1d\xc6\xce\x3a\x51\x64\xaf\x0c\xa8\x1c\x20\x87\x51\x91\x97\x31\x61\xa1\x88\xe3\x58\x83\x76\xf0\x0b\x39\x2b\x9c\x8f\x9e\xb7\x0a\xb7\x08\x02\x4c\x03\x41\x5e\xe3\x8f\x25\x10\x72\x08\x8a\x6a\xd7\x5b\x0e\x2a\x10\x5c\x92\x17\x2b\x56\xd2\xa5\x12\xd7\x78\x37\x67\xf8\x82\x72\x7b\xeb\x3c\x6c\x73\xe4\xff\xf5\xd2\xe2\x15\x4a\xfc\xbc\xa7\x9e\x54\x80\x2a\x9a\x95\x80\x95\x84\xa3\x00\x7a\x2c\xfe\x16\x67\x1f\xbe\xff\xe8\x60\x18\x92\x63\xdd\x87\x3f\x7c\x74\x0f\x7e\x3a\xfb\xf0\xc7\x8f\xe8\x51\x37\x2b\x5c\x6f\xe4\xad\x5a\xc0\x80\x05\x03\x34\x5a\x7d\xec\x18\xcd\x3d\x76\xcc\xf6\x95\x4f\x34\x14\x9f\x7c\xb9\xc4\x63\x04\xc0\xc9\x0a\x6f\x63\x56\xb9\xc2\xcd\xb8\xaf\xb9\x8f\x8e\x38\x40\xf8\x8a\xc5\x03\x05\x6a\x09\x55\xfe\x16\xbf\x53\x77\xff\x03\x44\xe3\x33\xec\xe9\x6f\xa1\x58\x70\x81\x27\xe8\x2c\xe6\xde\x25\xbb\x44\x46\xdf\xc8\x70\x5a\xdf\x66\x56\x19\x2e\xf6\x73\x6c\xa6\xcd\x5c\xf9\x68\x17\xc0\x23\x9b\x28\xe1\xc3\x0e\x50\xb2\x34\xfc\x08\xfd\x2d\xb3\x42\xa3\x22\x08\x0f\x3a\xde\x70\xcd\xc1\x07\x85\x54\x0d\x70\x6f\xf1\x73\x92\x79\x1f\xb2\xa1\x28\xc0\xdb\x66\x9a\x62\x0c\x3a\x19\x28\x26\x33\x89\x14\x3f\x4a\xa1\x5b\x98\x50\xdf\x7f\x74\x0f\x22\xb9\xf1\xeb\x27\x9c\x2c\x05\xd1\xa9\xbe\x88\x23\x7c\x7e\x25\x16\x96\x72\x07\xb5\x89\x78\xf8\x50\xb4\xa5\xd1\xa1\xae\xf2\xed\x48\x56\x6a\xbe\xae\x8a\xde\x72\x60\xf3\x37\xf8\x23\xd5\x1c\xc2\x1c\xa1\xbc\x7b\x95\x7d\xc6\x69\x5e\x78\x70\x70\x62\x88\x1b\x17\x2e\xd4\xb3\xc1\xa1\x70\x74\xe5\xc0\x3f\x41\x6f\xfb\x9b\x0d\x9a\x51\x63\xcd\x9d\x1a\x1c\x5f\xc6\x64\x8c\x6c\x79\xfc\xb5\xd5\x69\x78\x26\x46\x8a\x50\x37\xe8\x7d\x17\xe2\x46\xde\xa9\xc9\x26\x1e\x44\x9e\x28\x42\x95\xf9\x8d\xed\x6c\x12\xb1\xf0\x6b\x0a\x40\x5e\x35\x67\xed\xa2\x74\x94\xa6\x26\xaf\x5c\x0c\x52\x58\xee\x3a\x04\xb9\xd0\x19\xca\x98\x98\xb8\xca\xcc\x18\x5e\x82\x1a\x88\x41\x26\x42\xd0\xcb\x39\x16\xbe\xde\x84\xa0\xd1\xad\x67\x11\x6c\xd9\x9f\x9f\x64\x8c\xdc\x23\x4d\xa3\xf6\x9a\x7c\xf8\xb5\x29\x9c\xd4\x18\xf7\x69\xb7\xa9\xe5\xca\x93\xd1\x95\xda\xfa\x19\x83\x6b\xc6\x26\x7b\x39\x78\xdd\xe8\x5e\x46\x56\xf9\x26\x4b\x09\x90\xd2\x7b\xd9\xec\x60\x59\xe7\x42\xd7\x6f\x64\x38\x60\x7b\x01\xcc\x47\xec\x0e\x9e\x55\x79\xb9\xfe\x6d\xa1\x74\x0c\x76\x97\x97\x8e\x89\x80\xe2\xb7\x8a\x8e\x6e\x32\x75\x2d\x3f\xc2\xe1\xcc\xc6\xee\x7b\x39\xa8\xd2\x8c\x0a\x29\xd1\x8e\xba\x08\x17\x46\x29\x00\xfb\x83\x15\xf1\x60\x09\x23\xfe\xc3\x0e\x56\x1a\x00\xd1\x52\x18\x6d\x17\x25\x5a\x8c\xad\x77\x81\x57\xf6\xa6\x15\x72\x0d\x17\x82\x7f\x71\x7e\x71\xe6\x35\x3d\xeb\x0a\x3d\xb7\xf5\xa0\xdc\xd8\xe1\x88\xa0\xbf\x31\x7d\x6c\xc8\x53\x36\x00\x61\xd8\x75\x90\xb6\x52\x5d\xd9\x26\x42\x41\xd9\xf9\xf6\x03\xe4\xae\x55\x23\x41\x50\xc7\x36\x43\x5f\x77\x4a\xb6\x59\xef\x07\x85\x71\x57\x03\xfe\x9d\x74\x75\x1e\xef\x1e\x46\x2c\xa2\x0f\xe6\x98\x09\xa5\xd6\xca\x1f\x30\x90\x00\x5e\x47\x00\xe2\x92\xd1\xc9\xfd\x90\x4b\x11\xdf\x7f\x74\x8f\xb1\x8e\xc7\x20\x4a\xb4\xcc\x49\xff\x03\x3f\x88\x9f\x32\x29\x27\x7a\xdf\xc2\x34\x40\x6e\x14\x06\xf5\x80\x73\xd8\x5b\xb1\x57\xc3\x56\xa1\xf8\xd1\x06\x53\x04\xf1\xf5\x1f\x1b\xdb\xaa\xc0\xb8\xf1\xb7\xd0\xc6\xdb\x98\xfe\xc7\x98\xce\xf8\x11\x13\x4b\x19\xa1\x1a\x4a\xfb\xf7\xd0\x8b\xb3\x0f\xff\xe3\x63\x98\xa3\x5e\xae\xeb\x9c\x5d\x93\xcb\x61\xfc\x2c\xa0\xa6\x16\x98\x94\x57\x1c\xbb\x06\x6b\x1d\xe7\xf3\xa6\xee\x6d\x4d\xa4\x89\x4e\x38\x94\xc1\xde\xb4\xf9\x48\x7a\x2b\x7a\x35\x00\x9b\x62\x6a\x46\xa7\xcb\x55\x41\x1a\x14\xbf\x87\x54\x13\xcc\x9a\x98\xf3\x6e\x86\x36\xf2\x25\x86\x29\xd9\x12\xa1\x68\xa5\x97\xf5\x7a\x08\xae\xc4\xd2\xcb\xe8\x54\xb7\x8c\x8b\x61\xdb\x31\xdd\x9e\x07\x2a\xda\x0d\x9d\xac\x65\xdc\x36\xb4\x5d\xbb\x1a\x2f\x10\x91\x51\xf5\x1d\xdf\x0a\xea\x74\xe3\x45\x4c\xd7\x8e\xaf\xaf\x53\x1c\xe2\x2d\x45\x75\x8e\x2f\x28\x6c\x06\xe5\x76\x18\x73\x15\x00\x36\xea\x20\xf6\x16\x25\xcc\xc8\x22\xa4\xa9\xd1\x87\x0c\xbb\x5a\x78\xa2\x14\xdd\x60\xb7\x14\x26\xc8\x24\x92\x6a\x44\x85\x5e\x3f\x5f\x86\x8d\xbc\xb5\x97\xf0\x45\x16\xe0\xa3\x39\x34\xf4\xdb\x9d\xae\x6b\xfa\x04\x02\xcd\x87\xbd\x34\xe4\x1d\xaa\x8d\xb0\x43\xab\x06\x0e\xa9\x85\x77\x71\xfc\x6e\x01\x33\x61\x9b\xb0\x14\x9c\x3c\x4b\x2b\x1b\x27\xec\x68\x78\x01\x62\xa9\x68\x22\xfe\x8d\x8d\x22\x0f\x7d\x9c\xa4\x3c\x91\x93\x6b\x70\xd9\xd5\x9c\x65\x19\x12\x29\x0a\xb2\x7d\xfb\x1f\x67\xed\x77\x1c\x98\x5d\xee\xd5\xdc\xc1\x0f\x12\xa9\xe3\xf9\xe6\x0d\x5c\x54\x3b\x8c\x19\x07\x53\x06\x36\x0a\x00\xd2\x66\xbb\x0a\x4c\x8c\x35\x86\xcc\xbb\x0f\x85\x93\x5f\x72\x7e\x5f\xc0\x60\x64\x07\xa3\x0e\xd9\x62\xe7\xd3\x9d\x74\x22\x12\x76\xf5\xd0\x49\x4d\xab\x81\x6e\xd2\x51\x29\x72\xcc\xc6\x26\x9b\x46\xad\xaa\xcc\xd3\x21\xdb\x59\x93\xa5\x22\xcb\x5e\x30\xab\x64\xb9\xcb\xa6\x95\x29\x40\x9b\xec\x87\x67\xae\xa8\xdb\xd6\xed\xa8\x6a\xd6\x7b\x5f\x59\x5c\xb6\xf0\x35\x6d\x41\xd0\xf7\xa6\x98\xa3\xf2\x53\x76\xa8\x76\xe3\x1a\x36\x34\x0a\xf4\x46\x1b\x46\xe6\xdc\xe1\x6d\xf0\x4b\xe7\x13\x65\x16\x4d\x0a\xf4\x93\xfd\x66\x91\x38\x41\xfe\xc5\xc0\x60\x79\xc6\x82\xf7\x6b\x9e\x9b\xfa\xfc\x64\x54\x68\xc3\x16\xdf\x86\x23\xd5\xef\xca\x4e\x2a\xba\xa5\x0d\xff\xf3\x8c\x18\xe0\x97\x51\xd5\x34\x0f\x19\x23\x22\xe7\x94\x14\x3b\xf6\x3c\xfa\x2e\x3c\x3c\x1e\x8f\xc7\x47\xfb\xfd\xa3\xb6\x7d\xb8\xd0\xeb\x4c\x82\x8c\xdd\x9e\x9c\xdd\xb3\xa9\x66\xc2\xb3\x33\x4c\x99\x40\xbe\x4c\x3b\x74\xc4\xc8\xc7\xe9\x3d\x5a\x27\xd7\xca\xc3\x5c\xcd\x8e\x93\x69\x25\xa5\xd1\x73\xb0\x1b\xd9\xbe\x53\xe9\x36\x0a\xb0\x17\xba\x68\x97\xf7\x65\xa2\xcc\x64\x59\x93\xb0\x72\xf7\x36\x30\x7a\xa1\xb1\x70\x69\x37\xa9\x31\x13\xa2\xd0\x53\x1c\x27\x49\x92\x29\x11\x89\xac\x51\x91\x58\x00\x5c\x56\x23\x52\xed\xff\x9d\xaa\xc4\x52\xf5\x4b\xd3\xe0\x33\xca\x44\x75\xd0\xb7\x5a\x5c\x88\xbf\xe8\x5b\x8d\xbf\x57\x1c\x08\x30\x0b\xfc\xe7\x2d\x66\x7f\x53\xe4\x87\xbe\x42\x0e\x7a\x35\xed\x94\x40\x3b\xbd\xa0\xd7\x25\xe8\xf6\xd1\xd8\xb5\xa2\xd3\xb7\xb4\xb7\xdb\x66\x44\x2b\xc3\x91\xc3\x45\xfc\x0d\x63\x37\xd8\xad\xc2\x4b\xdd\x51\x80\xd7\x9e\x27\xd5\x8a\x2a\xe4\x39\x8e\x81\x64\x6a\x7e\x48\x8c\x17\x39\x39\x78\x0c\xce\xe3\x5e\x4e\xe0\xf9\x53\x63\x98\xc0\x42\x3b\xa7\xb3\xc8\x9e\xe0\xe9\xf6\x7f\x8e\xf5\x15\x07\x81\xa7\xfc\xe0\xe2\x5d\xfa\x57\x40\xcf\xc9\xe7\x06\xa4\x75\x25\xe4\xda\x8e\xec\x96\xc4\x76\xc1\xc4\x20\xb8\x1f\x18\xfe\x9a\x6b\x02\xd5\x3c\xab\x03\x9d\xa2\xb9\x02\x3e\x57\x38\x73\x78\xfe\x1b\xec\x1b\x58\xee\xcc\x11\x38\xce\x74\x48\xa9\xf9\xfc\x80\x15\xe9\xa2\x3f\x29\x6f\xda\x1f\xba\x94\x53\x80\xf0\xc6\xb6\x0c\x65\xac\xd7\x8d\xaa\xbf\x0f\x32\x4b\x7e\x71\x87\x3c\x0c\xb6\x8a\xc5\x64\xd0\x01\x59\x4a\x8e\x41\x59\x61\xbd\xab\xc1\x63\x04\xd6\x38\x42\xf3\xa3\x63\x9c\x48\x88\x6a\x72\xbb\xb6\x3c\x3d\xce\x70\x38\x1e\x66\x97\x11\x31\xc4\x91\x08\xb7\x40\xf9\xf3\xcc\x55\x8b\xcf\x8c\x85\xb4\x15\x0d\x96\x8b\x2f\x95\x64\x59\x59\xf8\x6b\x16\xef\xb3\xef\x13\x60\x2b\xba\xbe\xc2\xf1\x1f\x4f\x01\xd1\xf9\x3a\xcf\xa4\x53\x40\xf8\xde\x17\xdd\x80\x38\x05\x32\x9a\x70\x40\x74\x21\xde\x87\xdf\x09\x78\xc9\xf9\x32\x66\x7e\xee\x06\xc3\x09\xc0\x24\xc4\xaa\xf0\x3a\x46\x70\xa4\x21\xfb\x95\xd3\x2d\x06\x44\xc3\x13\x2f\xd0\x5a\x1f\x84\x7c\xd4\xc8\x6d\xab\x82\xb4\x73\x5e\x48\x73\x1c\xe7\xc1\xe0\x83\x23\xc1\x03\x22\xb5\x62\xe2\x1d\x35\xcd\xa8\x27\xad\x4c\x1c\xf1\x49\xd9\xc8\xa0\x94\x64\xb2\xe2\xbd\xb1\x48\xbe\x49\x35\xf5\x83\xf5\x78\x2a\x53\x67\x84\x7d\x13\x12\x17\x48\x3c\x2f\x10\x6f\x53\x50\x4e\xd2\xe3\x51\x88\xc5\x0b\x4f\xa2\x1f\xdd\x0e\x9f\x48\x92\x4d\xa3\x5b\x65\xbc\xec\x92\x7a\x84\xa1\x8a\x76\xda\x2b\xbc\x0c\x9c\x51\x13\x23\x40\x66\xf3\x84\x22\xc8\x64\x2e\x91\x1c\x3f\x26\xb8\x42\xae\x56\xab\xe9\x44\xa9\xb9\xbd\x34\xdb\x59\x7c\x7d\x13\xd3\xee\x01\x9f\x5c\x12\xa1\xca\x05\xe7\x8b\xb0\xc4\x60\xfc\xb9\x39\x31\x96\xf2\x6a\x46\xad\x89\xdf\x59\xa0\x14\x0e\xda\x7a\x32\x35\x17\x8a\xc4\xad\x98\x9f\x2b\x49\x34\x65\x5b\x51\x3f\xa8\x3b\xd8\x8c\x90\xe2\x81\xae\x0b\xcd\x08\xf6\xdb\x89\xea\x13\x1e\x0f\x29\x14\x11\x6d\x9c\x87\xd5\x4a\x9e\x22\x61\x04\xbf\x0c\x67\xbc\x89\x4c\x8f\x93\x60\x3f\x89\x62\xf9\xa3\x58\x25\xe6\xe8\xce\xc9\x63\x19\x0c\x0b\x31\x22\xdc\x9a\xbb\x4c\x57\xa1\x0d\x45\x4f\x31\xd6\x3c\x8a\x53\x32\x8c\x04\xee\xbe\xa4\x75\x96\x48\x63\x68\xe3\xd2\xad\x6e\xd6\xa7\x38\x1b\xeb\x34\x11\x81\xb5\xc5\x49\x7a\xd8\x59\x54\x97\xa1\x41\x93\x3a\xbe\x0c\x5b\xee\xd2\xc8\x02\xa5\x1d\xf8\x26\xab\xb7\xd9\x72\xb0\x9b\x9c\x4e\x53\x22\xdd\x57\x59\xf1\x48\xc0\xbf\xda\x62\xf2\xa7\x89\xb8\xd8\xab\x06\x3f\xef\x2b\x46\x1d\xa1\x10\x9f\xb4\x48\xe8\x75\x30\x0e\xe0\xc7\xfe\xac\xfb\x7f\xa3\x45\xa1\x06\x6e\x11\x7e\xce\x18\x68\x28\x3d\x63\xa0\x6f\x16\x96\x71\x3e\x4f\xbe\x94\x7d\xee\xac\xbd\xa5\xa7\x38\xd6\xf8\x33\xe5\x6c\xb5\x0f\x99\xcf\xb4\x17\xcf\xcb\xdc\xb5\x74\xba\xc9\x9f\xfd\xfc\x05\x12\x16\xb6\x72\xbe\xd5\x92\x41\xf2\xcd\xb6\x39\xa8\x3b\x9a\x26\x3d\x96\x7a\x73\x34\x8d\x78\x65\x0f\x73\x54\x00\xa6\x4d\x1d\x2c\x49\x09\x25\xe4\xc4\x87\x47\x3e\x6f\x69\x22\x29\x51\x72\x80\xfa\x6c\x2a\x72\x74\xb6\xd7\xe1\x01\x99\x1b\xbd\xb0\xb7\x65\x3d\x62\xdf\xe0\x79\x8f\x38\xfa\x13\x6c\x6b\x5f\x16\x3b\x6d\x29\x66\xda\xd4\xb9\x31\x62\x97\xed\x1d\xe8\x66\x6d\xf1\x9c\x2b\xa7\x2d\x34\x06\xc4\xb2\x09\x5f\x43\x75\x83\x9e\xcf\xcb\xfa\xe7\x14\x5d\x58\x34\xb2\xab\x59\x21\x01\xed\x32\x3c\xd0\x07\x49\x25\xb4\xfa\x34\x87\x0e\x69\x13\xf0\x02\x94\xdf\xd2\xfb\x35\x80\xa2\xd0\xf9\xfe\xed\xf5\x3d\xe0\xa1\x03\x7f\x2e\x9e\x73\x5a\x03\x85\x88\xcb\x10\xcb\x7c\xff\xf6\x9a\x5e\xed\xf4\x3b\x75\x2c\x1d\x7e\xbc\x5c\x67\x34\x24\xcd\x6e\x42\x16\x3a\xbe\xc4\x2b\x9f\x6a\x38\x41\x18\x84\xa9\x19\x66\x42\xa1\x4e\x6f\x77\xfe\xa0\x30\xfe\xc3\x3d\xb8\x62\xe7\x96\x70\x45\xfa\x9d\x40\x10\x0b\x73\xce\x94\x96\xe8\xd9\x25\xde\x31\xce\x65\xa2\x66\x45\xff\xbb\xe9\x9a\xa3\x8e\xc6\x95\xd3\x8d\x13\x4f\x11\x66\x5e\x9e\x48\xe3\xfc\x91\xfc\xa9\x97\x11\xbc\x92\x7b\x8c\x3d\x04\x50\x3f\xdc\x8b\x63\x15\x42\x8a\x5f\x88\x57\xf4\xeb\x7e\x70\x0c\x45\x9e\xca\x5c\x66\x9f\xf7\xf5\x35\x8f\x02\x01\x3b\xc4\xe8\x58\x1d\x67\xb7\x39\x52\xcf\xfe\x01\xbb\xd0\x3f\xc5\x3f\x60\x71\xff\x53\xfc\x43\x9b\x56\x7d\xfa\x67\x38\xd5\x88\x2f\xa9\x01\xe3\x38\x9f\xc5\x14\x20\x73\x29\x10\x01\x8b\xe5\xfb\xe8\xd8\x75\xd3\x09\x5d\x8a\xf4\x1c\x88\xa5\xf7\x21\xd4\x66\x63\x8d\x1f\xf4\x7a\x9c\xa8\x5a\xad\x44\xbf\xec\xdf\xc9\x13\xeb\x09\x7e\x89\xff\xdb\x9a\x5c\x39\x22\x13\x37\x5e\xc9\xf1\xb6\x06\x35\x31\xc6\x4c\xce\x2e\xc0\xe3\xe1\x41\x71\x9d\xd3\x5b\xb4\xb9\xd8\x41\x6f\x35\x0c\x28\x16\xca\x7a\x81\x0f\x60\x63\x48\xe9\x9d\x74\x84\x37\x86\xc6\xa5\x78\x8b\x54\x8d\x8c\x6f\xf0\xb8\xb2\x82\x52\x6d\x5d\x4d\xa4\xe0\x28\x7d\x61\x98\xce\x4c\x91\x33\x77\x6a\xf0\xf1\xd4\xc8\x8b\x77\x56\xbc\x55\xdb\xb1\x93\x43\x7e\x8f\x76\x5a\x60\x3a\xde\x01\x0f\x5b\x9c\x70\x73\x02\xaa\x8b\x81\x71\x65\xfc\x3c\xde\xa8\x65\x83\x34\x48\xc2\x03\x85\xbd\x9a\xd6\x42\xaa\xbf\x43\xdd\xff\x11\xc7\x08\x2e\x03\x78\x14\x15\x67\xd4\xe0\x36\xe0\x11\xda\x52\x2b\xc8\xb3\x25\xb6\x81\xe2\x78\x2c\xb4\x20\x79\xe9\x84\x48\x1e\x7c\xbc\x36\x51\xbe\x09\x9a\xc2\xe9\x4c\xee\x56\x27\x23\x28\x41\x85\x37\x58\xa8\x49\xe8\x43\x57\x86\x9d\xcc\xd7\x19\x85\x32\xbe\x80\x95\x4f\x3f\x5f\x87\x60\xc8\x73\xb0\xa8\x14\xa7\x08\xc8\x25\x51\x32\x29\x1c\x57\x1a\x0f\x52\x19\xdb\x05\x04\x85\xf8\x6c\x2e\xbf\x48\x83\xd6\x04\x0c\xef\xe3\x16\x9a\x37\x19\xa6\xc5\x48\x30\x7a\x93\xcd\x61\xbc\xb0\xa1\x4d\xab\xef\x74\x3b\xca\x0e\x1b\x73\x1f\xde\x3f\x94\x78\x41\xbd\x57\xc3\xdd\x69\xdc\x93\x0e\x21\xeb\x88\x6f\x9c\xa3\x73\xeb\x26\xc5\x66\x5f\xec\x11\x70\xb5\xe8\xae\xc2\x2b\x09\x63\xac\x8b\x14\x65\x39\x37\x9f\x92\x6d\x14\xe7\x07\x85\x9a\x0b\xb3\xf4\x87\x99\x38\xc2\xfe\x25\xbf\x0e\x80\x13\x05\x80\x27\xd2\xcb\x45\xb0\x30\xa0\xaf\xc3\xd5\x0c\x85\x85\x50\xe8\x68\xa5\x97\xe9\x80\xca\x58\x0e\x05\xb3\x96\xcd\xed\xa2\xe9\x6b\x11\xff\xc2\xfa\xca\xad\x6b\x40\xb8\xa0\xfa\xe1\xd5\x19\xa8\x18\xf8\xf4\xd9\x5c\xca\x9a\xd9\x80\xdf\xe6\xac\x29\x34\x38\x5d\x09\xc1\xae\x4c\x03\xae\x66\xd6\x9e\xf2\xa6\x19\x36\x6d\x89\x1f\x9d\x20\x54\xe8\x40\x11\x27\xfd\x5f\xa1\xd6\x69\x42\x25\x46\xf4\xd9\xf8\x40\xa7\xf1\xfd\xe1\x24\x63\xcb\xa2\xf8\xe4\xc6\x4e\xe0\x95\xfc\x66\xfe\xdc\x86\x74\xce\x81\x31\xf0\x09\x7f\xed\x91\xe4\xe7\x6c\xcb\x3f\x8f\x6e\x8c\x14\x30\x3a\x0b\x68\x95\xfb\x98\xb9\xd3\x6d\xc5\x3d\x8f\x08\x70\x19\xc2\xd1\x04\xa9\x09\x0d\xf5\xb0\x31\xf7\xca\xb4\xe8\xeb\xb7\xa1\x63\x99\x99\x61\xe3\xfe\x99\xf2\x99\xe3\x82\x53\x2a\xc9\x32\xb2\xa0\x2a\x7e\x26\xca\xef\x7c\xf5\x87\x0d\xfd\x95\x3a\xb0\x57\x5d\x52\xc9\xe4\x2d\x0a\xae\x81\x2f\x63\x20\xb4\xc0\x70\x17\x50\x2d\xee\x08\x29\xa0\x7d\x6c\x5a\x28\x30\x9c\x6e\x5e\x19\x63\x6a\x29\xb6\x54\xa6\x28\xb5\xf5\xc4\x73\xf0\xb2\x6d\xb1\x3f\x85\x07\xe1\xc9\x02\x93\x60\x90\x05\xae\x32\x18\xe4\x7c\xbe\x4c\x2a\x0e\x11\x21\xe7\xb6\x63\x3b\xe4\x8e\x72\x79\xc3\x16\xba\xb4\x58\xac\xf0\x65\xa0\x17\x67\x61\x3e\xa6\x1b\x73\x3b\x7a\xd6\x33\xb7\xa0\xa7\x5b\xca\xd3\xed\x71\x32\x67\xef\x89\x20\x19\x1a\x45\x87\x69\xa7\x28\x77\xb5\x48\x35\x0e\xf1\x96\x6b\xdf\xc9\x62\x33\xb9\x6b\x92\x19\x6f\x0a\x4b\x29\x3e\xef\x92\x62\xb9\x80\x24\xba\x9e\x11\xbe\x78\xed\xa5\x0c\xe7\xc2\xc6\x39\x8a\xe6\x89\x82\x64\x5e\x76\x55\xce\x8b\x03\x59\x4a\x78\x0e\xb1\xdd\x64\x62\x50\x89\xc7\x71\x6c\x55\x41\xff\x90\xfd\xd8\xec\xe8\xf8\x0d\x8d\x27\xfc\x2e\xfd\xeb\x9b\x77\x82\x6c\x9f\x7e\xd0\xdb\x2d\x6c\xc0\xe2\x2f\x3b\x65\xf0\xa1\x60\x67\xf7\x8a\xb9\x5b\xd3\x8c\x03\x9a\x35\xe8\x45\xd4\x83\x0a\xa1\x11\x4d\xcb\xdb\x51\x1e\x9f\x39\xd8\x0d\xc8\x67\x4c\xe0\x9b\xed\xe8\x53\xdd\xab\x46\x6f\x8e\x2b\x71\xad\xe4\x60\xe8\x81\xd1\xe0\xe6\x7a\xef\xbd\xc6\xd8\x13\x8c\xc6\xf1\xe3\x63\x99\x1b\x89\x99\x24\xf9\xf4\xe5\x8d\x6a\x46\x9e\x29\xe8\x52\x2c\xc2\x40\xe1\xfb\x0e\x68\x91\x69\xd3\xd6\xac\x61\x0f\x10\x7c\xe5\xee\x4b\xa6\xe9\xac\x0d\xf9\x8b\xb4\x54\xf5\x97\x32\x5e\x46\xb5\xf2\x64\x33\xe6\xb6\x5c\x88\x77\xca\x61\xf0\x3a\xfc\xfe\x0c\x78\x20\xc1\x0d\x3d\x42\x88\x8e\xff\x68\x52\xa4\x69\x11\xb1\x86\x47\x94\x51\xa2\x0a\x34\x72\x73\x33\xcf\x62\x1d\xa9\x8b\xd8\xb4\xc3\xb4\x9f\x34\xf7\xc9\xe7\x8b\xaa\xfb\xfb\xa8\x46\x85\x8f\xf3\xef\xe5\x91\x1e\xdd\xdd\xa8\x83\x70\xaa\xb1\xa6\x75\x21\xa8\x82\xf6\x78\xf1\xd3\x89\xb1\x0f\x17\x71\x67\x43\x32\x6f\x5b\x69\xb9\x57\xce\x2f\x81\xb8\xde\x52\x98\xb2\xb7\xfc\x73\x0e\x44\xde\x0f\xd0\xab\xe7\xf4\x6b\x0e\xd2\xf3\xf3\x71\xf1\x21\xb9\x39\xc8\xda\xb6\x30\x66\xbf\xd8\xf6\x38\x37\x7f\x86\xd1\x89\x36\x50\x5c\xcb\xbd\x3d\xe0\x79\xda\xfa\x88\x19\xda\x3b\xd5\x6d\xe8\xfd\x15\xd0\xff\x54\x88\xcf\x81\x02\x45\x0c\x21\x22\x68\x09\x31\x9d\xd0\x3a\x8e\xf7\xc7\x72\x17\x41\x7e\x11\x3f\x0f\xaa\x3e\x6d\x13\x45\xef\xe0\x76\xbd\x20\xd9\x1d\x47\x13\xed\x9e\xf4\xe2\xe8\x39\xe8\xbe\x7d\x76\xc3\x39\xd8\x73\x7a\x7a\xed\x53\xb5\xc8\x03\xf0\x4d\xa3\x00\x42\xca\x0f\x5d\xa0\xcf\x62\xee\x25\x91\x57\x3b\xac\x67\xa1\x45\x1c\x23\x11\x08\x44\xd1\x11\x67\x10\xe9\x76\x06\x02\x85\x68\xcb\x53\x11\x86\xc1\x93\x51\xf5\x79\xc1\x3e\x32\x06\x1c\x07\xc6\x6e\x59\xee\xe2\x57\x3c\xc9\xb8\x02\x8c\x35\xd8\x52\x32\x4f\x4c\xa0\xd5\xfb\xb7\xd7\x39\x33\x3c\x17\x12\xb6\x47\xb2\x18\x0c\x6a\x2b\x87\x36\x84\x09\x61\xc6\xbc\x93\x9e\x18\x70\xfe\x08\x00\x46\xad\x62\x14\x74\xc1\xfb\x56\x1b\x0c\xec\x88\xa2\x3d\x1b\xbd\x40\xcb\x4a\x4e\x17\xc0\x8b\xc7\x1e\xd8\x33\xf1\xfa\x50\x0f\x76\xf9\xdb\xff\xbc\x79\xfd\xea\x5c\x7c\x7a\x74\x38\x1c\x1e\x41\xf1\x47\xe3\xd0\x29\x03\x5d\x68\xcf\xc5\xff\x7e\x79\x7d\x2e\x94\x6f\xbe\x5b\x89\x97\xc4\xb5\x13\x33\x64\xbf\x47\xf4\x69\x46\x27\xc2\x71\xf8\x37\xb8\x39\xaf\x18\x36\x28\xe6\xcf\x2f\xe6\xb2\x17\x8c\x5e\xb8\xf1\x16\x5e\x2e\xc4\x9b\x6f\xd9\x3e\xde\x0c\x0a\x2f\x8c\xe1\x8f\x69\x46\x62\x7b\x08\x16\xe6\x27\x86\xa8\x97\x4e\xdc\x3c\xbf\xfc\xc3\xff\xfc\x5f\xe2\xf9\xcb\xcb\x2b\xb1\x53\x9f\x44\xab\xb7\x8a\x4e\x93\xc2\x8a\xbe\xd3\x61\xac\xff\xf7\x23\x98\x04\x8f\x6e\xf4\xd6\x48\x3f\x0e\x2a\x8c\x3b\xb1\x87\x5c\xb4\xe8\x64\x73\xbb\xf4\xda\xc9\x14\x44\x37\xd6\x30\x01\x5e\x34\xd6\x94\xbd\x27\x90\x70\x3b\xe3\x0a\xef\x65\x24\xe3\x2a\x4c\x99\xb8\xff\xef\x94\x01\xfe\x38\x76\x6d\xb9\xb5\xad\x55\x98\x02\xaa\xfd\x79\x5a\x18\x83\x4f\x59\xd3\x01\x53\xfa\x4f\x0c\xbe\xb2\x0b\x1e\x1d\x90\x15\x7a\x87\xc0\xab\x69\x61\x7c\x5f\x36\x53\x8b\x2e\xc4\x0b\x7a\xe8\x36\xa8\x65\x29\x2f\xaa\x66\x33\x24\x6c\x25\xbb\x10\xd7\xca\x8b\x7d\xb4\x9a\xe1\x2c\x27\x74\xf3\x22\xa5\xc7\xdf\x72\x76\xa0\xcb\x2f\x79\x38\xaa\xe0\x0d\x37\xa7\x61\x79\xf7\x64\x31\x7b\x19\x23\xef\xda\x73\xc2\x16\xa7\xc6\x85\xab\xec\x3d\xa0\xf1\x20\x3d\x3f\x5d\xa6\x8b\x53\xe7\x74\x1d\xac\x3d\x17\xe1\x2a\xd5\x39\x3b\x0a\x9d\x87\xbb\xd7\xed\xb9\x18\x4d\xfa\x4d\xd7\x58\x58\xf5\x0a\x9f\xe8\xa8\x08\x9f\x7c\x88\xb5\x1b\xac\xd1\xbf\x2f\x50\x19\xe5\x02\x0a\x46\xb6\x38\x6b\xb2\xcd\x2a\x9c\x4a\xe6\x4a\x7f\xc6\x48\x71\x97\x08\x4f\x51\xab\x69\x46\xf2\x54\x7e\xa2\x3c\xbe\x27\xb2\xc4\x18\xc9\x2e\x16\x27\x72\x62\x65\x61\x31\xb3\x28\x40\x52\x35\xc5\x62\x2e\x58\x39\xf2\xf1\x52\xb7\x5a\x96\x4c\x66\x3e\x27\x99\x18\xce\x1b\xc5\x4c\xd4\x64\xc0\x49\x1d\x33\x09\x8f\x87\x62\xae\xb8\xa5\x1a\x4e\x09\xb3\x74\xc9\x34\x08\x59\xe1\x4d\x33\x0c\x68\xff\x24\xa6\x95\xaa\x41\x60\x99\xb8\x09\x96\xfc\x12\xa3\x5c\x20\x6b\xc9\xb7\x37\x50\x32\xca\x6b\x6a\x00\x82\x97\xd4\xb4\xf1\x2a\x04\x12\x9c\xbd\x41\x71\x9c\x90\xba\xd5\xae\xc1\x17\x9c\xef\xc3\xfd\x84\x80\xbe\x0e\x3b\xb5\x39\xc4\x2b\xa7\xb8\xea\x93\xcc\xd6\xee\x25\x3a\x60\x3d\xc1\x1f\x33\x56\xba\x93\xc6\x90\xb3\x29\xfd\xca\xc7\xa2\xef\xec\x31\x3c\x02\xf2\x04\xbf\xf8\x61\xb3\x05\x90\xec\xc9\x8c\xf5\x4f\x57\xf4\x70\xc5\x33\xeb\x9b\x9d\xfc\xe6\xc7\xc7\xeb\x9f\xf8\x85\xf0\x87\x83\x12\x9d\xb5\xb7\xc1\xcf\x5c\xb6\x38\xaf\x63\x08\xf4\x3e\x3e\x2d\x91\xce\x8e\x65\xdb\xd2\x81\xbf\x36\x44\x8a\x8c\x6e\x40\xb9\xf8\x68\x20\xb7\x6a\xb2\xa7\xe2\x08\xc4\x76\x32\xe9\x53\x6f\x96\x3a\x93\x34\x23\x84\x42\x0a\xa0\xfe\x3e\x28\xd9\x3e\xc2\xed\x81\x74\xf7\x95\x78\xb7\x53\xc7\x18\xea\x12\x5f\x36\xc3\x23\xa2\x32\xaa\x3b\x36\x2f\xbc\xf7\x91\x9f\xb4\xd8\xba\x24\xf2\x5f\xb3\x37\xd4\x59\x25\x36\x47\xd1\xa6\x66\xe4\x36\xa2\xc2\x85\x7b\xa9\x17\xf3\x07\x36\x22\xd4\xf4\x21\x90\xd4\xd3\x93\x0f\x81\xe4\x45\xf3\xd7\x40\xb2\xa2\x28\xc6\x45\x22\x2c\xfa\x2c\x16\xc3\x32\x7f\xeb\x23\x75\xf5\x0b\x9e\xfb\x58\x1e\xb9\xa9\x1e\xfc\xd9\xa1\xbe\xcf\x65\xb9\xcd\x3b\xf7\x05\x0f\x7f\x4c\xc3\xf9\x7c\x81\x4a\xbc\xd4\x96\xdc\x5b\x2f\x36\xe0\x73\x0e\xcc\xad\xde\x6c\x56\x14\x17\xb1\x76\x76\x1c\xf0\xf1\xeb\x5f\xf0\x5b\xdc\xe0\x37\x81\x70\x1c\xac\x0b\x0e\x88\x45\x89\x7c\x53\xf8\x82\xbd\xe7\x28\x11\xef\x30\xa1\x75\xe7\x4e\xea\x0e\x35\x91\x0b\xf1\x44\x6f\x36\x74\x9f\xe9\x95\xc5\x67\xd2\x28\x67\x45\x45\x40\x23\xad\xe1\x17\xbe\x0b\x82\x4e\x36\x3b\x7b\xa0\x42\x37\x90\x92\x81\xb9\xbe\xd3\x1e\x43\x4a\x02\x18\x7c\x60\x50\xc9\x0c\x62\x34\x18\x32\x2b\xc0\xbc\xa7\xcf\x1c\x0a\x50\xc6\x2b\xc5\xc1\xdc\x7d\xd6\xc6\x38\x4f\xa8\x09\x26\x43\x38\xce\xd0\x00\x77\xd6\x22\xff\x41\x55\x2f\x81\xe4\x71\xf6\xcf\xda\x68\x84\x4b\x10\x4c\x68\x64\xaa\xbf\xbc\x78\x45\x9f\x18\x02\x92\x63\x80\x60\x64\xcc\xa7\xba\x63\x7a\xf3\x1b\x81\x3d\xc6\x99\x52\x6d\x88\x7f\x05\x79\x22\x4b\xce\x6e\xc1\xe4\xb1\x31\x09\x87\xb7\xb6\xde\x4b\x73\x8c\xf7\xe3\x6e\xec\x5e\xb1\x9a\x0b\xea\x30\xbd\xf3\xbc\xb3\x87\xec\xca\x90\xb5\x02\x8a\x30\x54\x20\x48\x30\x39\x01\xda\x2a\x84\x03\x5d\x2d\x85\x05\x0d\x79\x14\xcf\x95\x78\x31\xad\x52\x06\x89\x10\xed\x20\x37\x78\x83\x03\xfe\xc7\xd4\x7e\x50\xa9\xd8\x9b\x41\x3d\x9a\x16\x73\x9e\xa7\xd4\x0d\xfe\x88\xe9\x7c\x03\x03\xfe\xc5\x34\xb9\x23\xef\xdf\x34\x32\x69\xc4\xc2\x65\x21\x6f\xc5\x99\xe3\xf0\x61\xbc\x10\x27\x15\xe2\x2a\xa8\xd1\x4b\xf4\x82\xd7\x84\xb8\xb2\xad\x2a\xfa\x9a\x5f\xed\xc0\xa7\x8e\xdc\x4e\x44\xfa\xe0\xe1\x39\x3d\x63\xd2\x0f\xb6\x1d\x1b\xbf\x2a\xda\x5d\x94\x26\x01\x4e\x85\xd9\x28\x3a\xbb\x45\x85\x11\xe3\x3d\x92\x5b\xdc\x68\x5a\x35\x38\x4f\x6e\xac\x32\xe3\xba\x7a\xdf\x0f\x64\x9d\x0d\xe8\xbd\xdc\xc6\x67\x56\xe4\x96\x2e\xad\xa7\x3c\x34\x36\x86\x37\x64\x8b\x32\x71\x63\x0e\x1e\xaf\x59\xd0\x38\x2f\xb7\x28\xf9\x36\x79\x80\x5e\x10\xe3\xad\xa1\xbd\xd8\xed\xb2\x06\x14\x3b\x4e\x48\x9d\xef\x32\x21\xa7\xf4\xea\xce\xa6\x05\x2f\x67\x8e\x93\x1a\x73\x40\xb5\x24\xbd\xe9\x9a\x7e\xad\x56\xab\x85\xd9\x34\x7f\x08\xa8\x1f\xd4\xa3\xe9\x58\x67\xf0\x91\x00\x7f\x51\x0f\xbb\x4e\xf4\x56\x1b\x2f\xe8\x96\x82\xf4\xc5\x4c\x09\xc6\x69\x1e\x5a\x6d\xcd\x23\xdc\xbe\x52\x33\xa6\x77\x73\x62\x75\x3c\x51\xd2\x94\x99\xcd\x76\x7c\xa2\x84\x57\x0a\x5e\x7b\x28\x97\x0b\xce\x9e\xb4\x60\xf0\xfe\xd1\x6c\xa1\x91\x78\x9c\xa0\xca\x43\xc9\x05\x60\xda\x0a\x39\x2b\x1d\x66\x4c\x61\x96\x77\xbf\x50\xcf\xf4\x9e\x03\xbe\xeb\xe8\x7a\x6b\xe2\xf9\x9e\x97\xdb\x7b\xf6\xba\x59\x6d\xf9\x21\x19\x55\xf1\x99\xcd\x6d\xba\x06\xca\x5b\x13\x19\x1e\x16\x41\x80\x83\xf2\x1a\x99\x89\x20\x33\x5c\x7c\xcb\x2c\x5b\x57\x61\x1e\x60\x7a\x2a\x11\x6e\xf8\xe3\xc6\x1c\x7e\x57\xd5\x07\x3b\x6c\x3f\xa6\x87\xee\xe3\x99\x49\x71\xec\x81\xa6\x39\x80\x89\x0f\xd3\x9e\x00\x4c\x8f\xd5\x26\x8c\x61\x02\x3f\x83\x65\x5a\xba\x14\x00\x00\x19\x46\xf1\x51\x13\xf6\x5f\xe6\x77\x4d\x56\x21\x26\x37\xbd\xb1\xcd\xd7\x7a\xf2\xea\x28\x54\x76\xba\x2c\xf2\x9e\x63\xf6\xb0\x5f\xf1\x85\x78\x83\x3f\x2a\x6d\xee\xb4\x07\xb9\x62\xaf\xc8\x27\xe9\x05\x26\xe0\x3e\x64\x8d\xaa\x0a\xa7\xdd\x0a\x63\xc6\xd6\xc1\x61\xf7\x22\xb8\xee\x72\xfa\xe4\x29\xea\xe2\xe9\xe8\x2c\x10\x2a\x3e\xea\x5e\xdc\x45\x02\xe4\x48\x95\x85\x5b\x8a\x00\x1d\xd9\x23\x94\x44\x12\x62\xea\x7d\xd0\xc5\xa3\x21\xc0\x1d\xc6\x10\xfe\x0b\x71\xe1\x35\x7c\x43\x8a\x18\x4e\x2a\x7c\x68\xde\x14\x71\x49\xdc\x2a\x55\x93\xf1\x9a\x1d\x5d\x61\x4c\xc5\x40\x68\x44\xbf\xd7\x9f\x09\xbe\x08\x9c\xcf\x36\x2b\x49\x8f\xfe\x50\xb2\xe8\xd4\x9d\xea\x0a\x23\x16\x22\x02\x0d\xe1\xe7\x13\x4f\x65\xbf\x9e\xce\x8d\x7f\xe1\x35\x86\x39\x8e\x7b\xdf\x63\x40\x74\x89\xa0\x59\x63\x70\x1c\x4e\x34\xa2\xca\x3c\x67\xbf\xea\x16\xd2\xf2\xc3\xce\xf9\xc9\xc2\xe4\x85\xe7\x98\xb5\xf4\xd4\xf3\xa9\x73\xfc\xfb\x5c\x8b\x4b\xd0\x8c\x99\x15\x84\x8b\x98\xbe\xf4\xd0\x9f\x3d\x96\xed\xb0\xfd\xf7\x1c\x96\x8b\x97\xab\x66\xad\x9e\xbd\x46\x5c\x34\xfa\xeb\x5e\x25\x3e\xe9\x24\x53\x70\x98\xa9\x71\x67\xf6\x54\x16\x76\xf0\xde\x22\xe5\xc3\x59\x79\x83\xe3\xd9\x4a\xe6\xa4\xc2\xe7\xda\xf4\x64\x16\x9d\xaf\x7e\xfe\xdd\xac\x13\xce\x0d\xf7\x3d\xa0\x35\x6d\x25\x70\xa6\x18\xe4\x2b\x6f\xe4\xbd\x25\x72\x69\xc6\x4e\x0e\xca\xff\xf5\x47\xb5\x96\x0f\xc5\x2f\xdb\x36\x58\xf9\xf8\x0d\x9d\x40\xbf\x64\x49\xdc\x64\xa1\x71\xa7\x4f\xa6\x25\xca\xa1\xdc\xca\x97\x73\x8a\xf9\x56\x31\xaf\x5f\xf1\xff\x9d\xee\xeb\xe2\x21\xad\x97\x31\x3d\x7b\x53\xeb\x87\x58\x8c\x2d\x40\xe1\x95\xd1\x49\x7a\xe2\xaf\x78\x43\xb6\xa7\x57\xad\x12\x10\x7d\xd3\x1b\xc8\x4b\x39\xd3\xf2\x65\x1d\xf4\xbf\x1e\x6c\xa7\x62\x43\xc5\x5b\xdb\xa9\xd4\xbc\x32\xc4\x55\x59\x30\x96\x89\xe9\x6c\x2e\x08\xaf\x1a\xc5\x74\x7c\xaf\x2e\x3c\x69\x17\x53\x79\x8f\xcd\x03\x96\xa3\x3c\xce\xd8\x51\xbd\xf9\x61\x0a\x6d\x30\x32\x30\xef\xc6\xaf\xec\xa1\xa2\xad\x78\x85\x31\xb4\x2e\xc4\x7f\x5a\x6d\x38\xa5\xac\x94\xd2\x40\x32\x4a\xa1\xf4\xdf\x82\x8e\x45\xaf\x19\xce\xf3\x27\x8f\xe5\xe0\x4e\x14\x9f\xc9\xe1\x47\x15\x51\xb0\xe7\x48\x6d\x86\x3c\x07\xca\x67\x5e\x08\xeb\x24\x82\x3f\xdd\x1f\x2e\xea\xcd\x21\xbe\xa4\x62\xbc\x1b\x3a\xad\xee\x3c\x98\xbe\xd1\x1e\x17\x6f\x0a\xa9\x7d\x68\x07\x7a\x93\xa6\x76\xe0\x15\xd5\xb2\x1d\x39\xc4\x97\xb4\x03\x6a\xc1\xa8\x40\xc1\xcb\xfa\x64\x7b\x64\x1b\x1e\xf1\x2e\x9c\xde\xa6\x4d\x4c\xcf\xb5\xbc\xcb\xf6\x7f\x74\x1c\x6c\x27\xf2\x8c\x5b\x2d\x6d\xa9\x94\x43\x7e\x5e\x0b\x22\x07\x39\xf1\x2e\x3e\xf3\xf9\x79\x26\x80\xe1\x97\xa0\x64\x04\xcd\xdc\x73\x8b\x20\xda\xf3\x7d\x89\xda\x95\x44\x44\x94\x15\x98\x37\x70\xe6\xe7\xb7\x64\x82\x0b\xaf\x48\x90\xbc\x98\x6f\x2a\x28\x30\x86\x91\x6c\x11\xa2\x8e\x6b\x15\x16\x58\x56\xeb\x1c\x59\x64\xe6\x08\x15\x99\xf8\x1c\x2e\xac\xd8\x5c\xda\xcb\xce\x61\x14\x1e\x37\x15\xd7\xd7\x02\xd4\x5e\x1e\xa7\xcf\x54\x82\x88\x5d\xae\x9a\xd3\x8a\xd5\xbc\x29\x69\x5f\x7f\xa6\xef\x94\x49\x13\xe6\xa4\x72\xb5\xca\x97\xfa\x7c\x82\xa4\x69\xb7\x1d\x30\x32\x55\x18\x6b\x60\x16\xd9\x54\x40\x84\x3f\xc4\x5e\x36\xd2\x4c\xb9\x01\x3a\x45\x29\xb9\x7f\x78\x1f\x53\xf8\x8a\x06\x20\xdb\xb8\xbf\x05\xc8\x16\x28\x16\xa2\x69\x73\x16\x70\x5f\x43\x68\xcd\x7f\x45\x43\x90\x6f\x7c\x61\x43\xce\x43\x2b\x48\x3a\x01\x2e\xb0\xb4\xfe\xef\x6b\xdf\x44\x7d\xc2\xc9\xf9\x36\xd7\xa1\x02\x33\x40\x5f\x3e\xd4\xef\x16\x7d\xf9\x32\x33\xf5\x6a\x35\x5d\x25\x99\x33\x62\xb6\x52\x32\xbf\xe7\xd0\x16\x74\x3b\xe4\xfb\x21\xbc\xcb\x25\x54\xc6\x1a\x7a\x06\xdc\xf8\xfc\x0e\x49\x86\x9c\xcf\x84\xfc\x70\x64\x49\x07\x5f\x40\x29\x1e\xf6\x4a\x8f\x34\x91\x26\x88\xfe\x3d\x83\xf3\xab\xaa\xfa\x80\x63\xf5\xb1\x6a\xa5\xdb\xad\xad\x1c\xf0\x3c\x22\xfc\xae\x8a\x4b\xac\x55\xf1\xc0\xec\x44\x42\x73\xd5\x84\xa8\x05\x3d\xe5\xe8\x77\xa0\x04\x46\xed\xe1\xb2\x48\x70\xf4\xe6\xea\x36\x88\x88\xdb\x91\x23\x22\xb0\xbb\x32\x5e\xa8\x74\x5e\xed\xc5\x2b\x4a\xa8\xf6\xd6\x68\xf2\x8c\x7c\x49\xbf\xb4\xd9\x56\x45\x58\x8f\xa7\xf0\x41\x6f\x79\x73\xca\xb5\x74\xbe\xf2\xd6\xe3\xeb\x6d\xef\xe0\xff\x0f\xe2\xac\xad\x52\xd7\xd1\x16\xae\x9d\x47\xe1\xe9\x26\xfc\x76\x19\x40\x72\x6c\xa2\xa8\x44\xfc\x91\xa3\xc0\x76\xa2\xe9\x7e\xcc\xda\xcd\xad\x44\xac\xa3\x5b\xaa\x32\x04\xeb\x40\x8f\xa0\x56\x7a\xb9\x0e\x46\x9d\x1f\xd7\x68\xab\x5d\xff\x44\x06\xcf\xf3\x2c\xa1\x18\x91\x3c\xa3\x38\x05\x4c\xc9\xe5\x5e\x9a\xd2\xe9\xbd\xc4\x22\xc9\x79\x59\xd6\x25\x9b\x59\x2d\xe1\xe0\x26\x4f\x0b\x1e\xea\x29\x25\xf8\xaa\x17\xd8\xcb\x57\xc6\xf3\x2c\xba\x94\x51\x24\xd1\x05\xa0\x49\x4f\xc8\x9c\x9c\xa7\x75\x76\xab\x8d\x20\x13\x75\xd9\x3d\x16\xd8\x4b\x9c\x21\xe8\x4d\x81\x02\x23\x91\xe6\x29\x78\x8a\xee\xa5\x2b\x4b\xe3\x02\xcd\x13\x38\x98\xc4\x0c\x30\x85\xbc\x74\xab\xa5\x89\x14\xf4\xf0\x38\x99\x48\x19\x5f\x82\x74\x07\x4d\xef\xd5\xdd\xe0\x8f\x45\x98\x61\x44\x63\xe5\x68\xb2\xdc\xa6\x53\xd2\xd4\xfc\x10\xbb\xe5\x57\x1f\xaf\x20\x31\x3c\xba\x2e\x5e\xe3\x7a\x74\xf7\x16\xca\x36\xc6\xcb\xae\x13\xfc\xd0\x3b\x97\xcc\x2e\x83\x2c\xef\x90\x09\x33\xef\xb5\xec\xeb\x27\x93\x82\xe8\x92\xe8\x21\x31\xdc\x1e\xbb\x79\x84\xec\x2f\xc2\x31\x69\x65\x82\x88\x68\xbe\xbe\xa9\xb8\x01\x00\xc3\xd7\x77\x6a\xd2\xc8\xf2\x35\x6c\x06\xf9\x0c\x86\x49\x13\x17\x51\x7c\x7d\x23\x71\xab\x35\x5b\xda\x76\x4e\x34\xf2\x88\x2f\xf5\x0f\x2d\x6b\xae\x9d\x75\x1e\x6d\xcf\xf4\x4a\xda\xfd\x28\x4f\xb5\xfa\x5e\x9c\x5f\xd1\x8d\xad\xf6\xf5\xb6\x49\xcd\xb7\x62\x2b\x87\x35\x70\x6e\xd8\xdd\x39\x86\x88\x35\xa5\xad\x73\xb9\xf8\x7d\x04\xc6\x06\xb5\x20\x4c\x2d\xa0\x3f\xd5\xb6\x41\xe1\xb5\x7d\xd9\x75\xb5\x73\x3b\xf6\x34\x78\xab\xe8\x74\xe6\xe1\xca\xb9\xdd\x63\xc9\x0f\xa8\x2a\x3c\x93\x77\x0f\xe9\xa1\x82\x6f\x1b\x89\xf7\x52\x7f\xc0\x48\x19\xc8\xda\xb1\x74\x10\x6d\x81\x5a\xdf\xdd\x5b\xd1\xa4\x2f\x19\x5f\xcf\x68\x3b\x60\x53\xbc\xfa\xa2\x1e\x84\xb8\x08\x6f\x31\x89\x4f\x7e\x1a\x85\x6e\xb7\xcc\xc5\x50\xd4\xb3\xce\x87\x0c\x76\xfd\xb5\x9b\xd9\x9c\xbf\xa7\x8a\x7b\x46\xe1\xe1\xd7\xd4\x9a\x77\x93\x1f\xfb\x3d\xdd\x4b\x6d\xb4\x9f\x2d\x85\xb7\x98\xcc\xef\x36\xff\x4b\x0b\x62\x09\xf1\xbf\xbb\x20\x86\xac\x55\xd3\x2e\xe5\x02\x02\xbe\x18\x5b\x8f\xbd\xd7\xb8\x51\xdc\xd0\x0b\xb2\xef\xf1\x3b\x67\xd8\xe3\x30\x80\x90\xb8\xb5\x83\x1d\xbd\xa6\x87\x5b\x28\x4d\x3c\x0b\x69\x6e\xa1\x00\x1e\x75\x1c\xeb\x91\x43\x91\x85\x32\x2f\x31\x59\xbc\xc7\x97\x77\x52\x29\x94\x9f\x42\x19\xd9\xa1\x41\x98\x2c\xd5\x28\x58\x71\xa9\xcb\x90\x91\x95\xe4\x32\x76\xed\x25\xc7\x97\x62\xe0\xd7\x9c\x92\xc1\xe2\x01\xa3\x1a\xea\xce\xda\xdb\xb1\xaf\xa1\xab\x18\x37\x84\x92\xc5\x35\x26\x8b\x77\x90\x3c\xaf\x21\xb4\x2a\x16\x9b\x34\xea\x54\xb9\xcd\xa0\x66\x65\x9e\x0e\x6a\x0e\x1f\x28\xb7\x53\xb2\x9f\xd1\xed\xb9\x92\xfd\x8c\x6a\x08\x39\x27\x00\xc2\x9e\xa6\x42\x5e\x4a\xb7\xa8\x47\xe7\x25\x5e\xb4\xdd\xa9\x3a\x34\xba\x25\x4d\xe1\x0d\xc8\xf1\x27\x4a\xb0\x3c\x35\x6d\x15\x1f\x0a\xce\x5a\x65\xd7\x7f\x53\x8d\x77\x01\xfa\x35\x7d\x66\x50\x6b\x6b\xbd\xf3\x83\xec\x41\x14\x46\xb7\x65\x22\xd3\x2f\x21\x1d\x44\xe1\xe6\x76\x46\x29\x82\x9e\x93\x8a\xa0\x4f\xd3\x6a\xef\x7a\x69\x6a\xe7\x87\xb1\xf1\xe3\xa0\x5c\xac\xf0\xe5\x4d\x2f\x8d\xb8\x89\x19\xb3\x1a\x67\x25\xf3\x19\x3a\x2d\xbc\x54\x73\x23\x9b\x9d\x5a\xac\xfa\x0a\x72\xee\xad\x7b\x56\x36\xaf\x7c\x56\x7c\x69\xa5\x0c\x76\xa3\x3b\x60\x4a\xeb\xb1\xb9\x55\xbe\xde\x49\xb7\xab\xd1\x1b\x24\xc7\xf5\x26\x80\x89\x5f\x10\x4c\x3c\x97\x6e\x27\xde\xa1\xd1\x6d\x01\xeb\xb6\xa9\xf7\xca\x4b\xf4\x5e\xca\xb0\x3c\xbb\x12\x2f\x39\x79\xa9\x14\x1a\xe3\x6a\xd6\x80\x78\x15\x82\x50\x9a\x61\x78\x8d\xf6\x3a\x56\x8a\x2e\x23\xc8\x12\x36\xa3\x3e\xf1\x96\xde\x1c\x1b\x7e\x75\xf6\x93\x87\x36\xbc\xa5\x94\x0c\x16\xd5\xbc\x6d\x53\x07\x1e\x89\x0e\x2c\x18\xb5\xef\xd9\x15\x2e\xdf\x19\x07\x4b\xc0\xc4\xb8\x9e\x5d\x89\x37\x72\x74\x8b\x80\xbd\xa4\xc5\x74\x12\x32\x54\x1f\x00\x43\xcd\x53\x38\xae\xd4\x11\x29\x89\xad\x90\x8e\xbd\xc2\x0b\x83\x7b\x69\xe4\x56\xd5\xbd\x24\x7f\x52\xd0\xba\xc5\x4b\x4c\x13\x6f\x20\x8d\x61\x8d\x3a\xe4\x87\x2a\xe9\x74\xf7\x92\x12\x03\x18\x69\x16\xa8\x4f\x50\x4a\x90\x85\xdb\xe0\x3a\x8d\x2c\x9a\xf3\x8a\x28\x83\x94\x96\x36\xd0\xde\x3a\x4e\x0b\xd1\x5f\xe3\x0b\x3d\x9c\x8e\xae\xfb\x83\xda\x6a\xe7\xf9\xb6\x3f\x46\x59\xc5\x7b\x61\x6f\x31\x39\xe8\x37\xf9\x4d\xbf\x77\x16\x7b\x99\x75\xac\xf4\x66\x0c\xdd\xfc\x7c\x04\xda\x15\xe3\xc8\x5f\x83\xe0\x9e\xa1\xf2\x12\xdc\xf9\x4a\xcb\x43\x70\xeb\x23\xc8\xf0\xb4\xfb\x35\xfc\xcf\x4b\xa3\x66\x19\x54\xb5\x09\x86\x6b\xd4\x3a\x33\x2a\xf7\xd2\xb9\x03\x7a\x2b\x07\x6b\x37\x9e\x17\x08\xed\xf9\x7a\x12\x5a\xdb\xd1\xa7\x78\x34\xec\x54\x16\x5a\x9f\x22\x67\xb1\xcf\x5b\x14\x31\x98\x10\x9c\xf3\xb9\x73\xc5\x44\x8b\x6c\xa6\xa0\x43\x4c\x39\x47\xf6\xf2\x13\xbf\x34\x0e\x24\xe5\x00\xb5\xf2\x93\xde\x8f\xb9\xa9\x8a\x86\x1a\x3b\xab\xf7\xfa\x64\xd9\x60\xe6\xfb\xf6\x46\x79\xf1\xe8\x7b\x7c\xb1\xd0\x29\xb1\xed\xec\x1a\x03\x0e\x52\xd4\xc4\x0e\x50\x7c\xc7\x38\xb4\xab\xf3\x49\x89\x06\xc2\xd0\x60\xfc\x59\x4e\xd2\x7e\xb0\x3b\xbd\xd6\x9e\x06\x64\xa1\x40\x00\x08\x0f\x88\x6d\xe3\x5c\x86\x9a\x78\x8a\x17\x85\x30\xf6\x0a\x64\xd0\x0c\xb5\x43\xe6\x3e\x10\xe6\x3c\x1e\xd4\xd7\xa0\x62\xb0\x4f\xfd\x0c\x43\x56\x26\x7b\x7b\x0d\xc4\x3e\x0a\x4c\x96\xe3\xa1\x37\xfc\xeb\x30\xd9\x3e\x87\xeb\xe4\x93\xff\x8b\x53\x26\x99\xf8\xc3\x8c\x21\xd6\x1f\x26\xe7\xbd\x27\xc8\xe5\xdc\xc0\xa8\xf7\xb5\x3d\x98\x64\x78\xcc\x5a\x4a\x31\xf1\xa1\xbd\xe9\x06\xbc\x05\xc9\x14\x64\x5e\x7c\x5c\x0a\x94\xac\x3c\x9e\x41\x0c\x41\x92\x5e\x43\xb2\x43\xbc\x2c\x4f\x0e\xea\x6c\x96\xcc\x1b\xb0\x93\x8e\x9d\x6f\x4e\xd4\x9f\x8e\x49\x31\x2e\x5a\x5e\x7d\x6e\x1f\x2b\x1b\x40\x47\x79\x76\xc8\x9d\xb2\x4a\xfb\x66\xd1\x94\x05\xbf\xab\xcb\x6c\xc8\xee\x73\x2a\xb6\x03\x5f\xf2\x9e\x70\xf7\xe2\x7c\xbb\xe0\xf2\x58\x22\xe7\xde\x98\x50\xfa\x07\x61\x52\x3a\xfb\x09\xc7\x3e\x64\x85\x45\xc6\x3d\xad\x2f\x5b\xce\x45\x6d\x54\xa2\x3c\x95\xa5\xb4\xbc\x09\x94\x32\x3f\x1d\xa6\x74\xb6\x1f\x8a\x0b\xf1\x17\xfa\xc5\xe9\x68\x44\x24\xe9\x6d\x08\x69\xd3\xf7\xf9\xd1\x38\xcc\x7c\x76\xd2\xe4\x09\xa7\x2d\x9a\x4d\xa5\x28\x82\x7d\x88\x87\xc0\xcc\x9c\xb3\xb2\xd6\x53\x4a\xfe\xc4\x1d\xa5\x28\x8c\x30\xd5\xc6\x58\x53\x2d\xa7\xcf\xbd\xb9\xb2\x46\x32\x9a\x49\xe3\x32\xac\x08\xb5\xbc\x59\x64\xad\x71\xaa\x19\x07\xed\x8f\x18\x26\xd1\x36\xb6\xa3\xeb\x84\x98\x86\x11\x12\x21\x8d\x61\xa7\x57\x50\x28\x15\x2f\xc6\x5f\x88\xe7\xd6\x79\x4e\xe9\xe9\x91\xbb\x37\x76\x08\x29\x68\xbf\x6b\xd1\xd1\x5a\x9b\x56\x3c\x79\x95\xa7\x87\x9d\x2a\xe4\xbe\xe1\xef\x25\x98\xcc\x2f\x4b\x0e\x46\x9b\xed\x0f\xfc\xea\x44\xc0\x81\xef\x64\xd8\x81\x1c\xa4\xfb\x0e\xda\xeb\xd5\x27\x8f\x67\x6f\xc6\x7a\x7e\x81\x72\xa7\xb7\x3b\x74\x3a\xd0\x9d\xda\x92\xef\x3f\xac\xa2\x55\x20\x3c\x88\x41\xfc\x98\x0e\x8a\x3f\x7c\xd2\xf2\x8b\x74\x2a\x07\xc1\x1e\x21\x40\xec\x91\xf4\x14\x06\x4c\x2d\x5d\x91\x14\x31\xf7\x24\xf4\xf4\x69\x50\x64\x10\x71\xc3\x86\xd6\x3b\xbd\x35\x8f\x34\x06\xa5\xdf\xf3\x63\xf0\x74\xd3\xb8\x08\x77\xb6\x9a\xd5\x10\x5c\xad\x30\xba\xf8\x67\x5a\xe3\xc6\xd0\xf4\x9b\xf1\x73\x2d\xdf\x4b\x8d\x51\xf3\xf0\xff\x49\x30\x07\xda\xe0\x9a\x1f\xde\x55\xbe\xd9\x25\x50\xbc\xcd\xcd\xf3\x82\x6e\xad\x7c\x0a\xf3\x86\x22\x9d\x07\x22\x53\xa4\xf3\x80\x19\x4f\xf7\x22\x00\x9d\xf9\x17\x10\x7b\xd8\x6b\x6b\x27\x81\x31\x39\x71\xd9\x8a\x9b\xcb\x30\xe9\xf7\xbe\xaf\xd9\x04\x7d\xf3\xf2\xdd\x9b\x7b\x56\x11\x80\xf2\x0c\x47\xc8\x6c\x9a\x43\x16\x4f\x75\xcc\xca\xe6\x7b\x88\xa2\x41\x2b\x86\x8d\x33\xe8\x95\x47\x4b\xc7\x2d\xc3\xdd\x27\xab\xc1\xe4\x1d\x94\xf3\x83\x6e\xe8\x59\x56\x2e\xb3\x12\x2f\xc7\xce\xeb\xbe\x53\x21\x25\x38\x1a\xe2\x4d\xe0\x5e\x0e\xe1\x01\xcb\xc6\xee\xf7\x52\x3c\x3c\x7f\xb8\x2a\xf8\x4e\xed\xf1\xa9\x60\x0e\x73\xf7\xee\xfa\x46\xfc\x6a\x9a\xe1\x48\xfe\x08\xdc\xd3\x5b\xdd\x03\x58\x7d\xa7\x06\x16\xa8\x6f\x75\x8f\xb0\x7f\xc6\x94\xb0\xf0\xe5\xbe\x76\x6a\xb8\xd3\x4d\x9c\x6e\x6f\x2e\x5f\xa2\xb1\x48\x37\x2a\x67\x3b\x5c\x35\xbe\xeb\x12\xc4\xf5\xd4\x88\xcb\xd1\xdb\x42\x5c\x0f\xac\x53\xf7\xb8\xf7\xe8\x3e\x10\x30\x7f\xe4\x61\x2a\x53\x93\x73\x41\xa0\xf4\x4c\xbe\x2b\xa1\x0b\x31\x2f\x72\xf5\xa9\x1e\x50\x96\xf9\xdc\xcd\xa6\x55\xc1\xc7\xf3\x4d\xbb\xc4\xf3\x85\x5e\x7a\x39\xb2\x4c\xc0\xba\xaf\xd7\x8b\x41\xaf\xca\x12\x05\x64\x4d\x5b\x0b\xbb\x4b\x4c\x50\x47\xc7\x89\x79\x89\xfc\x64\x7d\x4e\xd8\x05\xef\xb7\x7b\x3c\xde\x78\xca\xa1\xd4\xa5\xe3\xc5\xb6\x13\xa8\x49\xfe\x42\x98\xf5\x91\x5c\x2e\xf8\x78\x92\xcf\x9a\x93\x88\x97\xe2\xfa\x29\xc7\x50\x79\xf8\x3a\x92\xe5\x71\x57\x65\x99\x2b\xeb\xe6\x44\xe6\x2a\x9b\xf1\x19\xd1\x8b\xd0\x90\xee\xc6\x17\x57\x82\xb3\xfb\x75\x76\x54\xb8\xf4\xb0\xfc\xaa\xe2\x23\xe9\x60\x7f\x8d\x07\xd4\x6c\x7f\x2d\xcf\xa9\x19\x56\xf6\x7d\xdc\xf7\xfb\xbe\x2b\x36\xfd\x0c\xe4\x8e\xf8\x66\x06\xf1\x67\x0e\x42\x98\x01\xd1\xfd\xfd\x1c\xe8\xfd\xdb\xeb\x00\x30\x95\x07\x38\xd9\x6e\x36\x9d\x36\xaa\xde\xd3\xf5\x9c\xd7\xf4\x29\x5e\xda\x36\xd6\xcf\xf1\x30\xea\xc1\x8e\x64\x60\xdd\x66\x91\xcd\xdf\x62\x22\x10\x27\x80\x0f\x23\xce\x83\x81\x0e\x15\x49\x57\xcf\xb2\xb8\x22\xc8\xca\x2b\x01\x4d\x89\xe3\x2a\xf2\x7d\xee\x49\x07\xf1\xd4\xbb\xc1\xab\x58\xf5\x60\xad\xaf\x7b\x49\x5b\x02\xa6\xd3\xed\xae\xb7\xd6\x7a\xf1\x46\xfa\x5d\x28\xd4\xd9\xed\xbc\xc4\xb5\xdd\x9e\x00\xe7\x50\x94\xb4\x4c\x42\x1f\x28\x6d\x3a\x8f\xb0\x5b\xb1\x6d\x6e\x97\x8d\xf6\xcd\xf3\xe5\xa1\x06\xa8\xb9\xf4\x98\x65\x82\xe8\xeb\x6b\x0e\xaa\x5b\xd3\x2c\x62\x49\xd8\x8b\x5f\x38\xd6\x2e\x4d\xa6\xbc\xd8\x89\x91\x85\xac\x5c\xb8\xcb\x92\x3b\xf4\x0e\x09\xb9\xd7\xf8\x35\x03\xca\x49\x36\xa3\x14\x00\xdc\xaa\x63\x8d\x41\x77\x18\xe8\xbf\xd4\x91\x82\xed\x2c\x00\x6e\xa1\xba\x08\xb6\x55\x46\x7c\xfb\xd0\xb9\xdd\x23\xca\x7a\xf8\xdd\xac\x0c\x68\xd7\xfb\x71\x4f\xb7\x55\xf5\xef\x8a\x1e\x5d\xc3\xd0\xd7\x98\x81\xb5\xdd\xe8\xdf\x95\xb8\x82\x8c\xfb\x8a\xba\x85\x52\xae\x4a\x63\xde\xdb\x34\x78\xb9\x01\x63\x69\x0c\x11\xba\xa0\x4c\x2a\x30\x27\x12\x7a\x0a\x06\xe1\xff\x06\xbf\x48\x5c\xc9\xb1\xe1\xdb\x00\x75\x52\x93\x9e\xe2\x5b\x01\x41\x59\x62\xc8\xbd\xfc\x94\x6c\x26\x68\x0e\x21\xab\xcb\xd4\xcc\xc2\xe0\x3d\x3e\x50\x3b\xa8\xb6\xee\x74\xa3\x8c\xe3\x47\x22\x38\x51\x5c\x73\xe2\x74\x85\xef\xbc\xef\xeb\x2d\xe2\x0e\xeb\x1b\x83\x76\x3d\x4b\x98\x59\x16\x40\xd3\x02\xd2\xa0\xde\xeb\x6d\x7c\x9c\x84\x45\x02\x34\x86\x21\x29\xc4\xcb\x90\x1b\x10\xf0\xbd\xc1\x7a\x03\x72\x25\x10\x9e\x8e\x46\x9a\x63\x7a\x99\x90\x65\xce\xab\x94\x17\x47\xab\x5d\xa7\xb1\x7a\x12\x3c\x5e\x16\x47\xaa\x5d\x17\xef\x93\xa7\xd4\x5c\x05\x4a\xa9\xb9\xea\x97\x52\x99\x07\xe4\x3c\xac\x5d\xd7\xce\x75\x81\x8d\xdd\xdc\x5c\x97\xbc\x32\xe5\x26\xf9\xf0\x5b\x10\xf6\x1f\xf4\xd6\xf9\xed\xa0\xdc\x03\x61\x4d\x77\xfc\x2e\x2b\xc1\x53\x29\x9f\x3a\x9c\x3a\xc5\xe1\xfe\xde\x69\xaf\xfe\xf8\x00\x0f\x3e\x1f\x78\xdd\xae\x1f\x7c\x57\x6c\x3b\x1a\x6f\x5a\x66\xfb\x8e\x6e\x4e\xd0\x27\xda\x5d\x15\xe8\x02\x59\xa0\xdb\xf0\xb6\x04\xe9\x08\xec\x7f\x5f\x92\x36\x6c\x08\x49\x16\x8c\xdb\x41\x2e\x07\x86\x76\xed\xec\x81\x61\xd9\xe5\x24\x3e\xfc\x83\xd7\x94\xdf\x06\x34\xbf\x60\x72\x6a\x20\x3d\x53\x11\x9e\x32\xe6\xfb\x8b\xa1\x79\xf8\x7a\xf1\x0b\x43\xd7\x92\xe3\x2a\xd1\x5d\xb2\x23\xbf\x84\xf6\xe7\xa6\xe3\x69\xfb\x67\xbc\x25\xf4\xe2\x7e\x1e\xc3\x4b\xa0\x91\xbd\x6f\x76\x32\xcd\xfa\x2b\x4a\x88\x3b\x32\x05\x16\x69\x60\x2a\x74\xec\x06\x42\xc1\x47\xf0\xf6\xab\xb8\x46\xbf\x8f\xd8\x59\xa7\x7c\x52\x9c\x8b\x42\x6f\x21\x2f\x2a\xda\x79\xe1\x50\x3a\x44\x88\x8a\x23\x1f\x82\x7e\x2c\x8e\x3c\x06\x3a\xab\x3b\x65\xb6\x38\xed\xfe\x04\x9f\xe2\x1a\x3f\x23\x85\x28\x9a\x07\x1e\x3d\xd8\x91\x6d\x7e\x90\x82\x27\x10\x76\x4c\x1b\xc5\x67\x95\x8d\x7c\x6c\x72\xa1\xe8\x25\x7e\x2f\xb7\x90\x61\x4f\x6e\x96\x9c\x1f\xd9\x96\xea\x6c\xce\xb2\x7e\xbd\x7e\x3d\x81\x5c\x58\xdd\x9c\xb3\xc0\x0d\x38\x67\x61\xed\xe3\x81\x05\x6e\x79\xac\x47\xe3\x51\x05\xee\x79\xb8\x5a\x02\x5c\x04\xa9\x37\x74\x15\xf9\x42\x3c\x85\x02\xf8\xda\xb1\x69\x29\xac\x1d\xae\x3b\x48\x02\x59\xf2\x07\x71\x76\x37\x2f\xed\xf8\x79\xf7\x04\x9e\x1e\x8f\xe3\x00\x66\x50\x38\x49\x9e\xe4\x75\x15\x69\x8c\x9e\x56\xcb\x24\x26\xc8\x39\x85\x23\x9b\xc6\x53\xc6\xe4\x63\x89\xe7\x8a\x8b\x98\x08\x52\xb6\xb2\x27\x56\x40\xa0\x97\xf4\x5d\x02\xe1\x51\xfc\x9d\xec\x22\xd4\x0b\x4e\x98\xd5\x6a\xf2\x3a\x0d\x3f\xfd\x93\x86\x81\x5c\x84\x33\x46\x47\x57\xf7\x96\xc5\x2e\x86\xee\x07\x7b\xa7\x83\x2f\x2e\xc1\xbf\xe1\xa4\xb4\x6d\xd2\x77\xc2\x1c\x20\x18\x75\xda\xc4\xec\xad\x8e\x6a\xf3\x15\x7e\x15\xb3\x8b\x79\x04\x2c\x6a\x82\x4d\x6c\xe2\x46\x79\x2e\x11\x65\xdf\x26\x52\x26\x9c\x30\x3e\xbb\x8a\xb4\xa1\xc3\xc8\x49\x67\x3a\xbd\x51\xf1\xe8\x92\x7b\x73\xad\x37\xaa\x00\x86\xed\xdc\x85\xc0\x5a\xb0\x91\xdf\x88\xd7\xa6\x3b\x4e\x3a\x91\xa3\xe2\x9e\x24\x4c\x91\x32\x1a\xcf\x93\x33\xc2\x50\xc2\x32\xc9\x03\x34\xef\x48\x19\x38\x6f\x49\x53\x4e\xbc\x1d\xf8\x0e\x5c\x5a\xc5\xcf\x38\x69\x42\xd1\x8d\x6a\x31\x10\x40\x5b\xc7\x12\x4c\xd7\xa7\x21\x47\x5c\x62\x4e\x62\x8f\xa0\x5b\xc4\x86\x83\x6a\xb1\xd8\x68\x80\x0a\xed\xc1\x58\x1a\x3b\xbd\xdd\xe1\xcb\x16\x59\xab\x28\xa4\xc6\xd1\x78\xf9\x49\x3c\x0f\xf9\x39\x06\x10\xd4\xb0\x34\xa8\x51\x8e\x85\x34\x2c\x75\x8d\x09\xb8\x8f\x4b\xe1\xb4\xd9\x76\x14\x4b\xe2\xbb\x93\xc5\xeb\x66\x27\x07\xd9\xf0\x5b\x46\x11\xd1\x55\x4a\x2d\xb1\x41\x99\x65\x6c\x21\x80\x45\xc4\x41\x2f\x3d\x7f\x4b\x6a\x3e\x86\xb0\x28\x0a\x6e\x9b\x5a\x0e\x5b\x3e\x74\xbe\x1c\xb6\xf8\x72\xa2\x2b\x50\xa3\x5c\xa7\xb2\x1d\x22\x4a\x7a\xd3\x3d\x82\xc0\xf1\x29\x9b\x1c\x1a\x03\xf4\xb3\x5d\x64\xa1\x04\x5e\x5f\xc8\x0a\x5c\xe1\x75\x86\xe4\xf3\xba\x50\x04\x63\x98\xa5\x12\x18\xbe\xec\xde\x02\x7c\xb8\x4e\xe0\xcf\xae\x16\x80\x73\x45\x32\x4e\x21\x50\x20\x17\xa7\x10\x40\xb1\x60\x08\x30\x28\x18\x06\xbf\xf3\x55\x33\x50\x9c\x63\xf8\xf7\x4e\xba\xdb\xe8\x91\x5e\x1c\x3b\x84\x34\xd7\xec\x54\x3b\x52\xa0\x0e\xfe\x99\xe0\xd5\x27\x1f\x7c\x1b\x70\x95\x86\x0c\x8c\xf2\x60\x47\x17\xc2\x3c\xc0\xcf\x02\x40\x7d\x52\xcd\x98\xb9\x39\xfd\x4a\xdf\xec\x57\x90\xd0\xd8\x70\x37\x6d\x34\x46\x9b\x2d\xb0\x41\x72\xdb\x8e\x30\x4b\x4f\xd6\x86\xa6\xa3\xbe\x1a\xf4\xd6\x93\xf5\xc7\xea\x03\xbd\xab\xe0\xbb\x1f\x3c\xe2\xf9\xe5\xc7\x8e\xec\x2f\x13\x77\xfe\x00\x8b\x31\x60\x5a\x8c\xf9\x51\xc7\x18\x20\x18\x0c\x86\x20\x39\x1e\x48\x84\x67\x9f\x74\x16\xc6\xac\x49\x98\x9c\xea\x54\x83\x57\xb2\x91\xa9\xc2\x87\xb8\xec\x52\xc9\x56\x15\x10\x4f\xf8\xb3\x80\xd1\x86\x2c\x08\x94\x45\x4a\xd1\x0b\x4a\x63\x94\xd9\x1d\x85\x60\x95\x23\x60\x8e\xeb\x84\x16\xb0\x1b\x4e\x99\x42\x86\x9a\x11\xe8\xb2\xeb\x66\xd4\xc8\x55\x9e\x3c\x0d\x03\xb7\x67\x17\x49\xb2\x3e\x4d\x87\x31\x64\xd9\x1e\x7d\xcc\x57\xb3\xd6\x46\xd3\x1a\x8f\x48\xb8\x71\xf1\x39\xc7\xdd\xea\x03\xd1\xfe\x63\x88\x37\xc0\x67\xc4\xc1\x35\x23\x73\x87\x2c\x82\xb4\x9d\x61\x70\xb1\x6a\x50\x26\x7b\x15\x85\xbe\x8a\x42\xc5\x3b\xfa\xdf\xa7\xf7\xf2\xbd\xcd\xf0\x7d\xf8\xc3\x47\x40\x49\xef\xe9\xcb\x9f\x2a\x7e\xf6\x94\xb1\xa6\xe7\xea\xb2\x12\xdf\x7f\x74\x8f\xdd\xd0\x3c\x9e\x96\x15\xd2\x4f\xc0\x20\xf3\x7f\x24\xc4\xbd\xc4\x1d\x33\x3c\xc5\x8d\x93\x92\x92\xb5\xe3\x87\x8a\xc9\xbe\x79\xd6\x86\x70\x3a\x55\x8c\x1c\xcf\x2d\x0a\xdf\x13\xfa\x50\x2f\x97\xbb\x98\x48\xc6\x74\xa6\x77\x73\x2e\xc4\x6f\x14\xb1\x91\xdf\xd1\xc9\x0a\x3c\xa6\x03\xd6\xc7\x54\xf4\x3f\xb0\xa3\x80\xe0\xb7\x8a\x5e\xec\x8e\x08\xf8\x7d\xee\xaf\x40\x40\x61\x22\x13\x86\x10\x36\xf2\xab\x1a\x41\xb7\x41\xb2\x66\x50\x82\x6a\x05\x1a\x96\xbf\x1c\x11\xd1\x63\x12\x16\xf3\xb7\x30\x01\x8b\xd7\x14\x73\x84\xf8\xc4\xd0\x49\xea\xcc\xd0\x11\x91\xbe\x1a\x1b\x93\x6a\x8a\x2e\x52\xec\xab\x11\x2e\xbe\x9a\xff\x1b\xbf\xb3\xf8\xf5\x9d\x25\xe2\xc5\x37\x31\x03\xd5\x8c\x3a\xc4\x07\x35\xff\xdd\x45\x33\x7d\xf1\x3e\x3e\x56\xcf\xf8\x79\x71\xff\x21\x2d\xee\x45\x74\x61\x71\x63\x88\x50\x2f\xb7\xd9\xca\x96\xdb\xa2\xb3\xd8\x44\x2c\xc3\xfd\x9c\xaf\xfd\x1c\x61\xb8\xf4\x89\x28\x43\xe3\x10\xe7\x57\xb6\xac\xfa\xe0\xad\xed\x3e\x56\x72\x0b\x8b\x5c\x6e\x6d\x05\xdc\x8b\xef\x95\x23\x23\x33\xf6\x50\xd1\x27\xfc\xfa\x1e\x18\xc8\xf7\x1c\x8c\x5c\x9c\xb9\xea\xfb\x3d\x26\xd0\x53\x7e\x98\xb0\xc3\x84\x9d\x1d\xf1\x7d\x96\xef\x5b\xfc\x6c\xe5\x11\xbf\x0e\xf8\x75\x50\xea\x96\x0a\xe3\xc6\xf4\xbd\xd8\x5b\xe3\x77\x98\x72\xc4\xef\xa3\x92\xfc\xba\x0b\x05\x3d\xc7\x67\xfa\xc3\x07\x3e\xc6\x6f\xf0\x0c\x18\xd3\xc3\xc7\x99\xab\xa0\x56\x4e\xa5\x9f\x67\xae\x6a\xe5\x91\x93\xf0\xd7\x99\xab\xa0\x7a\x4e\xa2\x9f\x67\x28\x4f\xf8\x5d\x40\x48\xbf\xcf\x5c\x05\xed\xe0\x44\xfa\x79\xe6\xaa\x41\x1e\xea\xd4\x2e\xfe\x85\xa9\xa9\x55\xfc\xab\xaa\x3e\xb4\x83\xed\x7f\xb7\x46\x7d\xac\xc2\x9b\xbc\xe9\xe9\xec\x27\x83\xed\x83\x6f\xbd\x1a\xe8\xbc\x09\x5f\x76\xf3\x56\x8c\x7d\x67\x65\xbb\xaa\xc2\x8b\xf9\xda\xf4\x63\x34\xe1\x72\x28\xec\x87\x9e\xc1\x52\xc8\x73\xba\x5c\x7c\xec\xd5\xaa\xc2\xf3\x06\x6f\x6d\xbd\x46\x61\x11\x4f\x1a\x9c\xfe\x5d\x89\x6f\xff\xf1\x0f\x84\xd7\xbf\xab\x7f\xfe\x53\xbc\xfc\xe5\x3b\xa1\x3e\x35\x4a\xb5\x4e\xec\xd9\x7d\x2e\x80\xed\xe5\xa7\xa7\x05\xe4\xaa\xe2\x3b\x9f\xec\xaf\x45\x77\x3e\xb1\xfa\xea\xff\x0f\x00\x00\xff\xff\x56\x38\xc1\x1f\xbc\xe9\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x92\x1c\xb7\xd1\x28\xf8\xbf\x9e\x02\xe2\x17\x13\x94\x22\x86\xcd\x90\x7d\xce\xd9\x0d\x85\x46\xda\xd1\x50\xbc\x7c\xdf\xf0\x62\x0e\x69\x1f\x2f\x83\x51\x42\x57\xa1\xbb\xe1\xa9\x06\xca\x05\xd4\x34\x5b\x0e\xbf\xc1\x3e\xc0\x3e\xdf\x3e\xc9\x46\x5e\x70\xab\xaa\x1e\x92\xf6\xf7\x67\xa6\x0b\x48\x24\x80\x04\x90\xc8\x4c\x24\x12\xb2\xef\xeb\x56\xb9\x46\x5c\x88\x4b\xd1\x4b\x6d\x3a\xe5\x9c\x70\xaa\xdb\x3c\xda\x59\xe7\x55\x2b\x9e\x69\x2f\x9c\x1a\xee\x74\xa3\xaa\x6a\x67\xf7\x4a\x5c\x88\xe7\x76\xaf\xaa\x56\xba\xdd\xda\xca\xa1\x15\x17\xe2\x49\xf8\x5d\xa9\x4f\x7d\x67\x07\x00\xfa\x95\x7e\x55\x3b\xd5\xf5\x50\x46\x75\x7d\xe5\xf4\xd6\xd4\xda\x88\x0b\x71\xa3\xb7\x46\xbc\x30\x94\x62\x47\x1f\x92\x5e\x8f\x9e\xd2\xc6\x3e\x24\xbd\xef\xab\x41\x6d\xb5\xf3\x6a\x10\x17\xe2\x2d\xff\xac\x0e\x6a\xed\xb4\x87\x9a\xfe\x42\xbf\xaa\x3b\x35\x38\x6d\x01\xfb\x9f\xe9\x57\xd5\xcb\x2d\x00\xbc\x91\x5b\x55\x79\xb5\xef\x3b\x89\x05\xde\xf1\xcf\xaa\x93\x66\x3b\x12\xcc\x35\xff\xac\x9a\x41\x49\xaf\x6a\xa3\x0e\xe2\x42\x5c\xe1\xc7\x6a\xb5\xaa\x46\xa7\x86\xba\x1f\xec\x46\x77\xaa\x96\xa6\xad\xf7\xd4\xcd\xf7\x4e\x0d\x82\xd3\x85\x34\xad\x80\x74\xec\x82\x6a\x6b\x6d\x6a\xe9\xb8\x1f\xaa\x15\xda\x08\xe9\x2a\x44\x65\xe4\x3e\x94\x86\x9f\x95\xda\x4b\xdd\x01\xd5\xe0\x7f\xd5\x4b\xe7\x0e\x16\x49\xfb\x86\x7f\x56\x83\xaa\xfd\xb1\x57\x48\x82\x47\xef\x8e\xbd\xaa\x1a\xd9\xfb\x66\x27\xa1\x99\xf4\xab\xaa\x06\xd5\x5b\xa7\xbd\x1d\x8e\x08\x17\x3e\x2a\x3b\x6c\xa5\xd1\xbf\x4b\x4f\xf4\x79\x9d\x7d\x56\x7b\x3d\x0c\x16\x48\xfb\x12\x7f\x54\x46\x1d\x6a\xc0\x23\x2e\xc4\x2b\x75\xc8\xb1\x40\xce\x5e\x6f\x07\xa2\x22\x64\xbe\xc4\x2f\xc0\x42\x79\x8c\x89\xb2\x22\xb6\x8d\x1d\x6e\x39\xf5\x29\xfc\x9c\xa0\xb4\xc3\x96\x73\xcb\x76\x49\x23\xb7\x8a\x73\x5f\xe2\x47\x01\xe0\x2a\xd9\xee\xb5\xa9\x7b\x69\x14\x90\xee\x12\xbe\xc4\x1b\xf8\xaa\x64\xd3\xd8\xd1\xf8\xda\x29\xef\xb5\xd9\xc2\x18\x5c\x52\x92\xb8\xe1\xa4\x2a\xcb\x8b\x69\x47\x3b\xc6\x51\x16\x17\xe2\xaf\x76\x1c\xc4\x1b\xfa\xa4\xbc\xac\x10\x66\xc6\x92\x95\x6c\xbc\xbe\xd3\x5e\x2b\xaa\x2c\x7c\x54\xfd\xd8\x75\xf5\xa0\xfe\x3e\x2a\xe7\x21\xeb\xcd\xd8\x75\xe2\x2d\x7f\x57\xda\xb9\x11\x4b\xbc\xc0\x1f\x55\xd5\x48\xd3\x60\x77\xae\xf0\x47\x55\x7d\xd0\xc6\x79\xd9\x75\x1f\x2b\xfe\x01\xc0\xf4\x8b\xe8\xe4\xb5\xc7\xc6\x72\xa2\xb8\xf1\xaa\x77\x40\x68\xf1\x54\x0f\xce\x3f\xf2\x7a\xaf\xc4\xdb\xd1\x54\xad\x6d\x6e\xd5\x50\xc3\x82\xc4\xa5\xf4\x62\x23\x8e\x76\x7c\x38\x28\x31\x8c\xc6\x68\xb3\x15\xcf\xec\xd6\x09\x6d\x9c\x6e\x95\x78\x82\xd0\xe7\xa2\xef\x94\x74\x4a\x0c\x4a\xb6\xe2\x47\x29\xbc\x1c\xb6\xca\x5f\x3c\xa8\xd7\x9d\x34\xb7\x0f\xc4\x6e\x50\x9b\x8b\x07\x67\xee\xc1\x4f\xcf\x46\xdd\xaa\x4e\x1b\xe5\x7e\x7c\x2c\x7f\x12\x8d\x1c\xd4\x66\xec\xba\xa3\x58\xab\x0d\xac\x95\xa3\x1d\x45\xb3\x93\x66\x0b\xeb\xe4\xe8\x77\x50\xa1\x36\xc2\xef\xb4\x13\xb0\x50\xbf\xa9\x80\x4a\xda\xab\xba\x5d\x07\xa6\x84\x0d\xc2\xe4\x41\x39\xf1\xf2\x78\xf3\xa7\xeb\x73\xf1\xc6\x3a\xbf\x1d\x14\xfe\xbe\xf9\xd3\xb5\xf6\xea\x8f\xe7\xe2\xe5\xcd\xcd\x9f\xae\x85\x1d\xc4\x3b\xfd\xe4\x97\x55\xd5\xae\xeb\x40\x97\x27\xd2\xcb\x35\x74\x21\x8e\x15\x64\xd2\x52\x8a\x79\xb8\xa0\x80\xe5\x21\x7b\x73\x1e\x17\x29\x2f\xd0\xc5\xe5\xd8\xae\x6b\x5e\xc3\x11\xc7\x2b\x58\xc8\xed\x3a\x11\xf8\x0d\x91\x6e\x74\x4a\xbc\x78\xf5\xea\xf5\x93\x5f\x84\x32\x5b\x6d\x94\x38\x68\xbf\x13\xa3\xdf\xfc\x9f\xf5\x56\x19\x35\xc8\xae\x6e\x34\xd0\x66\x70\xca\x8b\x8d\x1d\xa8\xa7\xab\xca\xb9\xae\xde\xdb\x16\x6a\xb9\xb9\xb9\x16\x2f\x6d\xab\xaa\x5e\xfa\x1d\x36\xc4\xef\x2a\xf7\xf7\x0e\xe8\x15\x2b\x7c\xb7\x53\x02\xa7\x2e\x02\xd9\x4d\x20\x8f\x68\xb9\x8d\x2b\xf1\xe3\x7a\xf8\x29\x6b\x97\x5c\x3b\xdb\x8d\x9e\x4b\x1c\x76\xca\xe0\x38\x39\x2f\x07\x2f\xa4\x0b\xac\x7f\x55\xa9\x61\xa8\xd5\xbe\xf7\x47\x18\x1d\x6e\xc3\x14\x3b\x21\x69\xa4\x31\xd6\x8b\xb5\x12\x08\xbf\xaa\x8c\xad\x69\xa5\x02\xdb\x6c\xb5\x93\xeb\x4e\xd5\xc4\xd2\x87\xc0\x91\xfe\x0a\x93\x83\x0a\x32\x84\x28\x20\x80\x62\xb0\x4d\x20\x77\x86\x99\x23\x8d\x40\xa4\x82\x97\x7a\xde\xc2\xc0\x17\xe2\xa8\x11\x6b\x88\x09\xb3\x16\x56\x61\x18\xc2\x9c\xb9\xec\xfb\x4e\x37\x54\xf5\x33\xca\x4b\xd3\x07\x36\x4d\x1e\xfb\x1c\x0e\x87\x3f\xe4\x65\x93\x60\xf4\x40\xd2\x41\x14\x3c\x18\xcb\xef\xd4\xa0\xc4\x6e\xdc\xd2\xc6\xd1\xd9\xb1\xfd\x06\x39\x78\xa0\x6f\xe2\x93\xe2\xad\xb5\x9e\xc6\x3c\x02\xa4\x2a\x2e\xbb\x0e\xf7\xe9\x41\xed\xad\x07\xc2\x71\x31\xe0\x45\x07\xdd\x75\xd0\x53\x27\xef\x54\x2b\xbc\xa5\xf5\xd6\xea\x41\x35\x80\x78\x55\x0d\xa3\xa9\x79\xb2\xbf\x1d\x0d\x4d\xf8\x90\x56\xce\x2c\x84\xda\x8f\xce\x8b\x9d\xbc\x53\x40\x78\x10\x16\xbc\x5d\x6c\x27\x76\x69\x18\x0d\x2e\xe1\x55\xd5\xda\xbd\xc4\x8d\xff\x09\xfe\xe0\xef\x1c\xbf\x76\x42\x6e\x36\xaa\xf1\x4e\xdc\xdc\x3c\x17\x4d\x67\x8d\x12\xef\xdf\x5e\x3b\x58\x06\xbb\xba\xb7\x03\x0a\x09\x37\xcf\xc5\x1b\x3b\xf8\x98\x96\x11\x1a\x20\xcc\xb8\x5f\xab\x41\x1c\x76\xba\xd9\x11\xd9\xa1\x04\xcc\x62\x35\x08\xed\xc4\xe8\xb4\xd9\x9e\x8b\x4e\x41\x0f\xb4\xa7\x09\x00\x7d\x08\xb3\x0e\xc0\x37\x4a\xfa\x71\x50\xb8\xe9\xd7\xeb\x51\x77\x5e\x9b\x1a\x2a\x64\x3c\xc8\x16\xc4\x2f\x94\x81\x25\x6e\x30\xe3\x04\x7c\xdd\xdb\x9e\xc4\x19\x5c\x55\xeb\xac\x1c\x23\x84\x25\x0f\x03\x68\x7b\x45\xf3\xdd\x71\x93\x60\xc2\x8d\xda\xed\xc4\x66\xb0\x7b\xe1\x8e\xce\xab\x3d\x16\x6c\xa5\xda\x5b\xb3\xaa\x76\xde\xf7\x81\x36\xcf\xdf\xbd\x7b\x43\xc4\x89\xa9\xf7\x51\x47\x66\x73\x17\x67\x49\x07\x82\x95\x11\x80\x16\xa6\xf1\x38\x74\x93\x19\xfe\xfe\xed\x75\xc8\x39\x31\x72\xd0\x84\xc7\xf0\xe7\x26\x0d\x20\xce\x04\x67\xf7\xea\x80\xf3\x5d\x1b\x81\xc2\xce\xaa\xea\xec\xb6\x1e\xac\xf5\x61\xba\x5f\xdb\x2d\x4d\xf1\x22\x23\xd5\xf4\x24\x4c\x5a\x20\xce\x61\x00\xe1\xaf\xb3\x5b\x64\x78\x40\xaf\x55\x55\xd9\x1e\xda\x99\xad\xe3\xd7\x9c\x90\x16\x2f\xd6\x1d\xf3\x51\xdc\xc2\xd1\xd3\x4d\xb6\x41\xb8\xbd\xef\x6b\xde\x0d\x6e\x5e\xbe\x7b\x43\x5b\x02\xa6\xe2\x40\x5c\x88\xa7\x83\xdd\xa7\x84\xd4\xc6\x97\x80\x0f\x61\x64\xdb\x0e\xca\xb9\x73\xf1\xf6\xe9\x95\xf8\x9f\x7f\xfc\xc3\x1f\x56\xe2\x85\x07\xd6\x03\xab\xf1\x6f\xb0\x8a\x24\x53\x22\x81\xda\x41\xf8\x9d\x12\x0f\x80\x95\x3c\x10\x3f\x62\xee\xff\xa5\x3e\xc9\x7d\xdf\xa9\x55\x63\xf7\x3f\xc1\x4c\xd9\x4b\xbf\xaa\x20\x47\x0d\x61\xe1\xde\x28\xd3\xaa\x81\x85\x47\xce\xca\xd8\x1f\x67\x67\xa2\x24\xc9\xd0\x75\x63\xcd\x46\x0f\xd0\x9f\x5f\x0d\xce\xfe\x20\x5d\x8b\x2b\xca\x09\x92\x98\xee\x6a\x63\xbd\xde\x1c\x13\x28\xf6\xf4\x15\x24\xf2\xf4\xa8\x78\xb6\xf3\x96\x11\x69\x4c\x6b\x03\x67\xc1\x6b\xbf\x53\x43\x20\xb7\x4b\xf4\xb6\x9b\x0d\x08\x0e\x61\xaf\xe3\x1a\x5e\x53\x2a\x6d\x7b\x39\x48\x5c\x50\x4f\x78\xd1\x5e\x3d\x79\x25\xd4\x9d\x32\x30\xb9\xfa\xc1\xb6\x63\x83\xf3\x15\x60\xcf\x05\xc8\x44\x83\x72\x76\x1c\x1a\xc5\x93\x25\x32\x45\x68\x1a\x70\xde\x46\x76\xdd\x71\x55\x85\xcd\x69\x3b\xc8\x3b\xe9\xe5\x90\x55\xf1\x2c\x24\x71\xeb\x67\xb0\xb3\x46\xc5\x12\xd0\xf3\x66\x74\x1e\x56\x30\xb6\xc2\x51\xa3\x28\xdb\x09\x39\x28\x31\xf6\x9d\x95\xad\x6a\xc5\xfa\x88\x7c\xd6\xc1\x5c\x68\xd5\x46\x8e\x9d\x5f\x55\x1b\xd5\x02\x63\x50\x6d\xcd\x75\x75\xd6\xde\x62\x65\x4c\xaa\xa7\x01\x40\x5c\x32\xd2\x6b\x84\x38\x55\x32\x36\x96\xcb\x47\xb0\xd8\x28\xae\xc1\x5b\x14\x13\x52\xbe\xed\x95\xe1\x6e\x04\xe1\x40\xc0\xde\xdf\x0a\x6b\x44\xa7\xd7\xdc\xe9\x44\xcb\xc9\x46\x1f\xa8\x73\x03\x3a\x66\x9e\xb7\x58\x60\x46\x54\x9c\xf0\x6e\x5a\xf6\x5c\x58\xd3\x1d\x59\x20\x80\x25\x46\x4a\x5c\x90\x0d\xdc\xaa\x52\xd8\xcf\x3a\xa9\x4c\xdc\xf1\xa0\x39\x95\xf9\xb1\xda\xb7\x24\x7a\x8a\x3b\xd9\xe9\x16\x30\x06\x04\xc0\xb1\x97\xdb\xb2\xaa\x58\x5e\xad\x59\xdb\xad\xef\x34\xea\x92\x71\x89\x11\x4a\xd6\x80\x81\xc2\x7f\x06\x00\x50\x52\xdd\x62\xd9\xd8\x9a\xd7\xd0\x49\x17\x75\x49\x9a\x27\xd0\x5d\xac\x01\x64\x68\x77\x2e\xee\x34\x6e\xc5\x3c\xc9\x91\x2e\x6b\x90\xf3\x3a\x05\x55\x39\xa5\x10\x83\xd0\xe6\xf1\xd8\x53\x99\x15\x2b\x52\xac\xdb\x04\xd9\x1b\x44\xb2\xd6\x0a\x90\x94\x70\xbf\xf7\x36\x92\x75\x22\x7b\x89\x41\x6f\x77\x5e\x18\x7b\x38\x27\xa2\x1c\x76\x56\xc1\x9a\x7f\xf1\xe4\xe2\x7b\x6a\xc7\x16\x76\xff\x58\x08\xe4\x06\x39\x7a\x0b\xfc\x85\x97\x1e\x35\x21\xca\x5f\x08\x39\x53\xd9\x08\x68\xaa\x3b\xcf\xc4\xbd\xc8\xe8\x98\xbf\xe5\x79\xcc\xd8\x12\x0c\x95\x0e\xfa\x37\x55\x4c\x8c\x94\xf5\xad\x7a\x6b\x51\xdf\x0b\xfa\x15\x08\x34\x95\x57\xce\xd7\x5b\xed\xeb\x0d\x70\x5b\x40\xfc\x14\x10\x80\x7c\xa5\x9c\x17\x0f\xb7\xda\x3f\x14\x8d\xdd\xef\xa5\x69\x7f\x10\x67\x77\x2c\xaa\xff\x11\xd8\x28\x2c\x45\xdd\xe1\x88\xb0\x16\x39\x28\x92\xc8\x83\x05\xa3\xb5\xca\x21\xe1\xdd\xd8\xe3\xe6\x1e\xd5\x1c\xd6\xc6\x5a\x7b\x30\xc0\x30\x70\xbb\xb0\x9b\x8d\x6e\xb4\xec\xc4\x5a\x1b\x39\x1c\x23\x16\xdc\x86\xce\xdc\xb9\x78\xf5\xfa\x1d\x02\x6e\x2d\xc8\x1e\x6d\x00\x58\x55\xda\xe0\xc4\x06\x91\x9e\x07\x3f\xd7\x67\x42\x92\xa6\xb6\x34\x76\x80\xfd\x17\x7b\x13\x0a\x9e\x90\x56\x61\xf3\x26\x65\x40\x83\x3e\x89\xb0\x58\x2e\x0a\x96\x40\x86\xbd\xf4\xcd\x8e\xc5\x4e\x9c\x36\xda\x99\x87\x1e\x5b\xda\x8c\xc3\xa0\x8c\xc7\xe4\x1f\xc4\x99\x13\x8f\x7e\x12\x67\x2e\x56\x9b\xef\xc4\xb8\x3f\xc3\x76\x2c\x36\x5a\x75\x6d\x68\x6d\xaa\x13\x24\x5f\xda\xe9\xb6\xf3\xd1\x82\x4c\x41\x99\x23\xad\xdf\xa2\x7f\xc5\xc2\x88\xd3\x23\x4c\xfb\x8c\x40\x79\x27\xc3\xbc\x71\x23\xcd\xf4\x0b\xf1\x17\xd5\x35\x76\xaf\xbe\x11\x7f\x51\xa0\x6e\x6f\x3b\x1c\x39\xe9\x59\x27\xb6\x4e\xe1\xac\x3a\xa7\x85\xb6\x19\x0d\xee\x19\x5e\xde\x2a\x54\xa3\xd3\x40\x2d\x89\x4c\x27\x89\x5d\x7d\xd8\xd9\xbd\xfa\x58\x8d\xa4\x90\xd8\xae\x8d\x2a\x2d\x2e\x21\x3b\x90\xfc\x11\xf5\xdb\x04\x13\x57\x87\x3b\x68\xdf\xec\xea\x68\xec\x03\x42\x7a\xf5\x09\x05\x23\xcc\x4a\xb6\x3f\x58\x5a\x90\x55\xed\x8f\x38\x2f\xa0\xe3\x2f\x8f\x69\x5a\x68\xe5\x2a\xb7\xb3\x07\xb4\x9c\x45\x88\x9b\x9d\x3d\xa0\xcd\xac\x50\x5b\x56\xab\x55\xd5\xd8\xae\x93\x6b\x0b\xa3\x72\x97\xe0\xaf\xf2\xd4\x12\xf9\xfe\x58\xdb\x61\xcb\xd5\x96\x96\xa2\xfd\x91\x8d\x53\x9c\x4b\xc6\x29\x57\x21\x7b\x65\xab\x26\x72\xe1\x33\x57\xb1\x4d\x66\xa5\x4d\x8d\x26\x9f\x50\xf3\x0b\x43\x0a\x45\xde\xce\xaa\xfa\xc0\x16\xcf\x8f\x55\x80\x2b\xda\x44\x3c\x9a\x88\xee\x0a\x33\x9c\x9b\xd8\xe1\x5c\xe5\x94\x1c\x70\x41\xdc\xe0\x8f\xaa\xfa\x20\x47\xbf\xfb\x98\x59\x24\xeb\x30\xf3\x82\x65\x12\xad\x66\xcc\x26\x93\x58\xb7\x53\x3d\x48\x80\x7b\x87\x53\xb6\x1b\x94\x6c\x8f\xac\xb3\xc5\xc9\xfb\x33\x6d\x40\xda\x00\xdb\xfe\xa6\x72\x16\x38\x48\xfd\x95\x28\x7e\xd1\xa6\xa5\xf2\xe5\xe6\x4d\xa6\xd2\x7d\x8f\xd3\xc4\x0e\xc3\xf1\xbc\xd4\xe6\x77\xd2\x89\xb5\x52\x26\x68\x5d\xed\x2a\xd8\x4a\x60\x7a\xc9\x86\x98\x00\x9a\x77\x71\x05\x52\x49\x3b\x93\x2a\xa0\x85\xc4\xb7\xb9\x16\x62\xe3\x2e\x08\x98\x20\x59\x7d\x75\x15\x83\xda\x2b\x50\x93\xea\x3d\x19\x5b\xe9\x4b\xbc\x54\xd5\xc6\x0e\x5b\x5c\x7b\xb4\x38\x2e\xc4\x53\x4c\x48\xab\x05\x00\x94\xcf\xb7\x1b\x86\x08\x29\x3f\x07\xe3\x76\x6d\xec\x01\x8d\x9e\x20\x72\x4d\x07\x65\xec\x81\xa8\xab\xb0\x7d\x91\x24\x84\x42\xb8\x53\xc6\x27\xd2\x5e\x0a\xa3\x0e\x22\x87\x62\x02\x44\xfa\x02\x3c\xb0\xb9\x1f\xd7\x3f\x9d\xb9\x1f\x1f\xaf\x7f\x8a\x3b\x48\xb3\x53\xcd\x2d\x4d\x68\x6d\xd6\xf6\x13\x5a\x58\xd0\x1c\xa7\x84\x81\x05\x7e\xd6\x8a\x9d\x1d\x07\xd4\x44\x1b\x0b\x1a\x88\x57\x98\x5b\x8c\x64\x3f\x58\xe0\x71\x2b\x32\x7f\x2a\x5a\x31\x69\x96\xa2\x1d\x14\xe6\x29\x6e\x73\x61\xa2\xf6\x83\xdd\xe9\xb5\xf6\xc0\xce\xd0\x28\x70\x8d\xff\xdf\x70\xb2\x6a\x27\x10\x99\x44\x32\x44\xe6\xab\x9d\xe8\x63\x01\x68\x24\x82\xa6\xfe\xf1\x28\xa7\x11\x86\x91\x45\xfa\x75\x7a\xaf\xfd\x6c\x82\x02\x2b\x96\x3c\xd1\xd9\x5c\x1b\xc6\x06\xfb\x90\xa8\x3b\xa8\x46\x19\xdf\x1d\xe3\x8c\x3a\x48\xed\xc5\x1f\xc5\x5e\x9b\xd1\x83\x2a\xba\x53\x46\xf8\xe1\x28\x24\x48\x3d\xab\x6a\x27\x5d\x3d\x1a\x1e\x26\xd5\x86\x29\xfb\x5c\xe3\xe6\x0c\xf5\x86\x85\x95\x41\x95\xaa\xa1\xf8\x36\x8e\xe0\x77\x2b\x36\xdc\x62\x29\xd8\x30\xa1\x3d\x1a\xf4\x18\xb9\x34\x17\xec\x20\x8c\x22\x0a\x61\xff\x01\x0c\xa6\x8d\x35\x2a\x11\xab\xd3\xcd\x2d\x08\xf0\x30\xbe\xeb\xd1\x7b\x0b\x5a\x6a\x07\x73\x90\xca\x84\x36\x5f\x21\x20\xea\xf1\x09\xdf\x91\x86\xa5\xa4\x52\x85\xc5\x00\xc2\x2f\x17\xfe\x76\x50\xdf\xa5\xe2\x71\xc9\x60\x09\x46\x41\xa5\xb3\xd5\xf4\x16\x33\xc9\x2a\x1f\xd6\x5c\xd8\x1a\x1b\xb6\x93\xc6\xd1\x1c\x4a\x6a\x60\x3e\x2c\x0c\xf5\xa9\xd7\x03\xe8\x2b\x43\x12\x14\x56\x93\xba\x92\x42\x3f\xef\xb1\x2f\x5b\x9c\x76\x4f\x6f\x6d\xed\x76\x64\x8b\x09\xcd\x13\x9d\x32\xdb\xc2\x28\x8a\x27\x6c\x38\x45\xfe\xd7\xaa\x32\xd6\xd4\xa8\x7d\x66\x6b\xe6\x95\x35\x8f\x30\x2d\xaa\x2f\xa1\x34\x5b\xcf\x43\x85\x80\x66\xb0\xe3\x76\xc7\x36\xb6\xea\x03\x50\xed\x63\xc5\x43\xa1\x32\x9c\x3c\x51\x43\x4e\x18\x32\x5a\x8e\x11\x3e\x08\xc1\x7f\x56\x03\xa8\xfa\x08\x54\x4c\xc3\x53\x23\x52\x12\x24\xf2\xe6\x24\x00\xbd\xcd\x79\x06\x27\x6f\xc6\xee\x5c\x1c\x48\x32\x4a\x65\xa2\x99\x81\x65\x26\x98\x95\x74\xb4\x58\x7d\xd8\xdb\x56\x76\x1f\xab\x23\x1e\x98\xfc\x55\xb9\xca\xe0\x21\x95\xad\xf6\xb6\xa5\x42\x2f\xf1\x47\x55\x7d\xd8\xd8\x61\xff\xb1\x82\x5d\xf7\xd5\x44\x5b\x80\xed\x99\xd3\x32\x89\x15\xb3\x7e\xcd\x0f\xe1\x62\x9f\xdf\x2c\x28\x16\x6f\x55\x3a\x8b\xc3\x5f\xb1\xf3\x37\x37\xcf\xdf\x05\xc3\xc7\xcd\x73\x71\xab\x18\xf7\x73\xef\x7b\xf7\x1e\x4d\x6a\x64\x1f\x7b\xff\xf6\xba\x7a\x23\x8f\x20\xc5\x53\x32\x7f\x60\xc6\x3b\x25\xf7\xdc\x48\xf8\x49\x28\x2e\x47\xbf\xe3\x44\xf8\x69\x87\xdc\x98\x5c\xa1\x68\xfa\x6b\xa1\xc6\xd0\x2a\xaa\x5e\xa9\xc3\x2f\x83\x34\x4d\x28\x0c\x32\xc3\x1a\x13\xa8\xe4\x95\xdd\xef\xb5\xbf\x19\xf7\x7b\x89\xe7\x86\xf4\x2d\x1c\x25\x70\xf6\x4b\xe5\x1c\x9d\x94\x72\xf6\x9e\x12\x38\xfb\x6a\x67\x75\x93\xe5\x36\xf8\x5d\xbd\x1b\x94\xe2\x5a\x9f\x86\x73\x89\x0a\xe5\x44\x12\x62\xe8\x57\x15\xd5\x5e\xc5\x07\x88\xbf\xcd\x6c\xf4\xbf\x55\xb2\xeb\x77\x12\x25\xd1\x0c\x0c\xcd\xd1\x6b\x56\xd0\x05\x82\xe0\xc2\x1e\xf7\x6a\xd0\x0d\x1a\x51\xa4\xdb\x7d\xfb\xa8\xfe\x0e\xcf\x57\x64\xe3\xd5\xe0\x4a\x64\xad\xf5\xff\x1a\x42\xf8\x4d\xab\xf2\x24\x5e\xd7\xfd\xcb\xcd\x9d\x61\x87\x14\xc4\xa7\xa0\x22\xa7\x7f\x0f\xe4\x2a\x30\x43\xba\x38\x03\x08\xd4\x5c\x12\x54\x04\xc2\x9d\x11\xb4\x18\x2f\x80\x2b\x78\x50\xaf\x8a\x3e\xec\xe5\xa7\xcf\x15\xdc\xdb\x85\x72\x64\x5a\x4d\x85\x58\x13\x93\xdc\xdb\x82\x93\xac\x7e\xab\xc6\xe1\x1e\xe0\xf7\x6f\xaf\x57\xbf\x55\xda\x34\xdd\xd8\x9e\x6c\x88\x1b\xd7\xce\x0f\xa0\x81\x3d\x3c\x73\x0f\x01\xa5\xb9\x35\xf6\x60\x22\xfc\x7b\xfa\x16\xf8\xfd\x43\x38\x30\xaf\xb5\x61\x5d\x36\x1d\x9d\x8b\x56\xb7\xb0\x97\xa2\x4e\xba\x4a\x3c\x3d\xd7\x53\x23\x23\x40\x83\x1e\xdb\x11\x22\x2f\x04\x59\x13\x55\x76\xb9\x57\xab\x74\xc8\x5f\x83\x1c\x56\x83\x2a\x67\x72\xdd\x0b\x36\xa2\x20\x6d\xa0\xa4\x86\x10\x2b\x3a\xdd\x99\x97\x9b\x70\xaa\x93\xc5\xed\xb0\x5d\x28\xfd\x7a\x7e\xf2\x74\xa2\xbc\x57\x72\xbf\x80\x20\xf2\xa0\x93\x05\x69\xec\xb1\xd0\xe8\x50\xc3\x2e\x98\xe8\xbc\x1c\x40\xad\x12\x95\x22\xc1\xf3\xb1\xc9\x35\xd5\x48\xe7\xd2\x1a\xb1\xaa\x94\xf1\x6a\x18\xd0\xd9\x22\xb3\x49\xb0\x8d\x88\xf7\xbd\x3d\x68\xd2\x6e\x84\x3d\x1c\xb4\x6e\x92\x62\x4b\x8a\x82\x40\x85\xa8\x14\x56\x71\x1a\xbd\x3d\x18\xd8\xa6\x3e\x87\x1f\xc1\xbe\x12\x75\x6e\xc2\x9a\x23\x66\xe4\x11\xe8\x14\xda\x68\x5f\x51\x9f\x34\x9e\x60\x3c\xd3\x77\x8a\x2d\x2c\xd1\xb0\x84\x79\xab\xaa\x93\xce\x83\xd2\x4c\xbd\x22\x75\xc7\xde\xc1\x8a\x82\xfa\x20\x97\xca\xd1\x89\x06\x77\x0a\x26\x09\xdb\x6a\x64\xd7\xd9\x83\x6a\xcf\x85\x44\x99\x66\x50\xb4\x40\x65\x77\x90\x47\x87\x76\xc7\xc0\x64\xac\x09\x34\x01\x0e\x62\x8e\x62\x8b\xad\xca\x35\xe2\x55\x95\x0c\x3c\x6e\x57\xc3\xd6\x19\xe5\xb9\x03\x1a\x4e\x90\x43\xb0\x25\xf3\x2e\x13\x52\x78\xa7\xfd\x01\xd4\xf7\x91\x2c\xb9\x94\x9d\x21\x42\x57\x02\xde\x55\x16\xca\x9e\x83\xdc\x2b\x0e\x4a\x48\xe7\xc6\x3d\xd3\x5a\xa3\x9a\x81\x4d\xca\x4c\x6f\xe3\xba\x53\x8f\x48\x7f\xd2\x7e\x55\x81\x92\x9e\x0c\x4b\xb0\x33\x2b\xe3\xc3\x91\x19\xa5\x93\x39\xc6\x79\xdd\x75\x40\xe9\xe0\x5e\x53\xe8\x33\x98\x8b\xeb\x04\xc9\xe4\x76\xba\x17\x16\x0f\x4e\x72\x12\xa6\x69\x9b\x69\x0e\xde\x8a\x56\xa1\x7e\x66\x07\xe1\x07\x69\xdc\x46\xe1\x49\xd2\x5e\x6c\xf4\x00\xe3\x4c\x55\x83\x22\x42\xee\x34\x27\x6a\x26\x55\x17\xab\xce\x37\x08\x1c\xbb\x6c\xa0\xca\xaa\xe9\x2c\x15\x8f\x2b\xb0\x0d\x48\xd5\x84\xc9\x85\x36\xc0\x34\x9b\x91\x00\x4f\x0f\x8b\x93\xf1\x45\x3a\x6c\x0a\xab\x0b\xd5\x8f\x33\xed\x33\xfd\xae\xc8\x5d\xa5\x26\x71\xa7\x58\x15\xef\x30\x27\x08\x42\xd3\x85\x51\x7d\x80\x79\xff\xb1\x22\x91\xbb\x8e\xc7\x41\x57\x24\x82\x93\xfc\x8c\x89\xd5\xdf\xac\x36\x35\x9e\x6d\xfc\xa7\xd5\x06\x0f\x42\xaa\xe2\x08\x7e\x62\x12\x62\x47\xa1\x23\xfa\x06\xac\x3b\xdd\x04\x6f\xa1\x63\xb5\xb1\xb8\x9e\xd0\x62\xf4\x34\xfc\xae\x9c\x97\xc0\x26\xf8\x00\x19\x7e\x15\x26\x28\x2a\x44\xf6\xc9\xa7\xe1\x37\xa7\xc6\xa4\x6a\x34\x31\xe5\x3d\xff\xac\x2a\x90\x92\x57\xc8\x7f\x41\xb0\xc7\xb3\xb0\x8c\xeb\xc2\xa6\x0a\xf3\x3f\xe4\xad\x32\xf8\x5e\x7a\xaf\x06\x43\xe6\x6c\x62\x02\x79\x51\xce\x8e\x28\x70\xe1\x12\x18\xd0\x36\x78\x51\x7d\xac\x92\xaf\x55\x70\xb3\x5a\xb2\xe3\x47\xf2\xd3\xe9\x56\xc5\xab\xda\xb1\x90\xfd\x5f\xea\xe8\xd8\x82\x85\x1c\x03\x7f\xb0\xb1\x01\xdd\x35\xc2\x09\xb6\x2b\x0f\xb4\xd1\x20\x37\xb7\xc3\xf1\x9c\xba\x10\x4f\xe8\x47\x30\x5b\x8c\x1a\xfb\xa8\xdb\xaa\xea\x71\xe0\x32\x4f\x31\x1e\xc9\xd8\x09\x76\x14\xcc\x0d\x17\xa5\x42\xaf\x9d\x20\x24\x28\x4d\x84\x03\x49\xdc\x3b\x37\x76\x40\x0e\x19\x4f\x57\x54\x87\x47\x6f\x26\x3b\x6c\x75\xe7\x58\x0e\xc0\x0e\x6a\x1d\x4e\xe0\x92\xfb\xc0\x5e\xb6\x4a\xdc\x69\x19\xad\x5c\x99\x4c\x13\x37\xdd\x60\x1a\x2b\x94\x4e\x54\x67\xc8\x6c\x19\x44\x9a\x30\xc0\xde\x06\x15\xd4\xef\x94\xa6\x03\x30\x83\xe2\xce\x66\xec\xba\xb0\x27\x3e\x1d\xbb\x8e\x9c\x61\xe6\x2e\x9a\x50\x05\x1f\x04\x5e\xf3\xcf\x6a\xec\x5b\x50\x3e\x13\x2d\xdf\x63\x42\xa4\x65\x99\x9f\x29\x95\x48\xd5\x50\x2c\x9a\xbc\x08\xbc\xcd\xb4\xcc\xee\xb8\x0a\xeb\x78\xc1\xf5\x92\x97\x74\x3b\x05\x49\x06\x22\xe4\x51\xdc\x71\x1c\x28\xf2\x76\x40\xd2\x1e\xe4\x51\xec\xec\x41\x74\xda\xdc\x3a\x1e\x29\xa0\x53\xae\x60\xa3\x21\xcf\x6b\x33\x2a\x56\x79\xe0\xe7\xdc\xd1\x8f\x4f\x66\xf9\x9c\x76\x7d\x0c\x66\x13\x3a\xc9\xe5\xa9\x2f\xd6\x47\x81\x5a\xdd\xe9\x23\xe1\xe9\x59\x70\x38\x0a\x0e\x47\x9c\x78\x12\x9d\x38\xda\x7b\xa7\xc4\x15\x9d\x4e\xf3\xea\x6a\x76\xd6\x3a\xb6\x37\x27\xbe\x07\x69\x68\x38\x62\xb6\xc7\xc3\x92\xf0\xd0\xa8\x5d\x86\x53\x72\x5c\xe1\xbc\x96\x6a\x3e\xcf\x49\xd0\xbc\xb4\xae\xf8\x9c\xe7\x32\xe0\xa4\x53\xf0\xd0\x27\xe4\x2e\xb5\xde\x93\xe2\xf9\x3e\x9c\x91\xe3\x80\x47\x85\x01\xb3\x57\x65\x7b\xa6\xb3\x84\xeb\x0d\x07\x36\x9f\x99\x2c\x61\x2a\xe4\xc7\x86\x34\xfc\x91\x23\xd9\xae\x10\xd7\x42\x3f\x62\x3e\x10\x2f\xcb\x7f\x85\x07\xbc\xd1\x3e\x02\x6b\xac\x9e\x80\xb0\x49\xa1\x80\x5c\x94\x8a\x43\x5d\x27\x25\xe2\x49\xeb\x67\x2b\x26\x94\x3b\x48\x57\x74\x9c\xe7\x78\xbb\x0a\xde\x78\xc2\xd8\x03\x9d\x16\xa3\xdb\x14\xb9\x8e\x19\x3c\x6a\x26\x14\x19\x53\xe1\x4a\xff\x5d\x96\x92\x30\x93\x4a\xe1\xa2\x26\x71\x49\x8c\x53\xb9\xe0\x18\x1c\xf3\xd9\x37\xb8\xe0\xaf\x2a\x78\xfa\xe4\x1c\xb8\x1f\x34\x9a\x38\x4a\x4e\x3c\xe3\xbd\x05\x9f\x45\x36\x6b\xd1\x6f\x25\xb1\xd7\x55\x15\x50\xc1\xbe\x85\xbf\x42\x4a\x34\xa2\xdd\x28\x74\xa0\xe4\xe4\xb0\x10\x42\x2e\xcd\xff\xd8\xc6\x4e\x31\x57\xa4\xbe\x3e\xe1\x84\x49\x7e\xe8\x0c\x65\x87\x01\x59\xe8\xcd\x00\x52\xbc\x8a\x1b\x87\x36\xe4\x36\x14\x0f\x85\x0b\xee\x24\x9e\x20\xbb\x12\x07\x49\x67\x05\x81\x59\xfd\x3c\xad\x3d\xcd\xa3\x5f\xcb\x53\x06\xea\x5b\xb9\x8a\xbe\xa9\x64\xdb\xe2\x1c\x4f\x47\xeb\x2d\x4e\x9e\xd2\xa2\x08\x50\x39\x04\xd9\xac\x62\x6a\x5d\x9c\x81\x38\x32\x1b\x7d\xf9\xb9\x07\xc8\x1f\xff\x0d\x47\x1e\x45\x55\xe9\xc8\x23\x36\x72\xb2\xc2\x66\xbd\x9c\x2f\x35\xd9\xb6\x28\x0a\xf1\x5c\xce\x04\x1a\x9e\xcd\x51\xae\x81\x5a\x48\x83\x01\xf2\xfc\x97\x3a\xa2\xf4\xc3\x33\x01\xb7\x26\xed\x84\x44\xe7\x3d\xf4\xf8\x25\x75\xc6\x81\x1e\x03\x82\x10\x8c\x0b\xba\x1b\x97\x63\x7e\x89\xfa\x9a\x53\x0c\x8b\x92\xa1\x34\x47\x90\xf4\xc3\x5a\x57\x7b\xa0\x03\x39\x6e\x44\x57\xcf\xd9\x09\xe8\x39\x2b\x49\x3b\xbd\xdd\x75\x47\xa1\xf7\xbd\x1d\x3c\xce\xa4\x70\xbe\x9d\x74\x58\xf8\x1a\x54\x63\xb7\x46\xff\x8e\x84\xdd\x93\x6f\x67\x34\xb6\xff\xe8\xfc\x60\xcd\xf6\xa7\x27\x16\x94\xcb\x5b\x60\x3f\x3b\x7b\xf8\xf9\xc7\xc7\x9c\x2e\xae\x70\x08\xed\xe8\xc5\x33\xed\x9f\x8f\xeb\x87\x4e\x6c\x47\xdd\xe2\x96\xfb\xa3\xcc\x9c\xd1\xd9\x53\x85\x1c\x6f\x0f\x26\x92\x05\x5d\xd3\xed\x20\x9c\xed\xee\xd4\xa4\x88\xdd\xef\x69\x78\xd7\x9d\xda\x13\x24\xb6\x1f\x9d\x5b\x94\x41\xca\xa9\x81\xe9\x73\x73\xf3\x7c\x15\xa7\x78\x1a\x1f\x1e\xb6\x20\xa1\x16\x16\x11\x96\x11\x01\xb8\x61\x13\x68\xda\x88\xd0\x1c\x12\x4a\xa1\xfc\x31\x2f\x85\xe3\xe8\x40\x66\x99\xd9\x62\x50\x6d\x01\x14\xa1\xb8\xb8\x80\x76\x90\x1c\x06\x69\xcd\xcc\xe8\xca\x13\x2b\x9b\xbc\xb0\xf7\x04\xa3\x35\x4a\xee\xb1\x79\x38\x5d\x27\xeb\x9b\x39\x1a\xf5\x9d\xf9\x59\xe8\x40\xc6\xd1\x98\x22\x89\xa7\x4d\x61\x0a\xae\xa6\x88\xa7\x85\x56\xe4\xdc\x8c\xfc\xf8\x88\xa3\xd1\x84\x54\x0e\xf9\xf5\x17\x72\xb3\x59\xbd\xa9\xe3\xa1\xba\x2f\xe0\x68\xd8\xa7\x4b\x24\x87\x35\x64\x3f\xe1\x81\xba\x66\x6b\x09\x66\x18\x5b\x67\x7a\xde\x2b\xcb\x87\x86\x22\x24\xe2\x98\x38\x0f\x12\x4b\xbe\x94\xa1\x11\xe8\xa5\x4c\x1e\x5e\x68\x80\xf9\x3f\x44\x2b\x8f\xae\xf2\xf6\x56\x99\x85\x22\x98\x7e\xaa\x50\xe4\x2f\x41\x39\x62\xee\x72\x99\x98\xc3\x54\x5d\x62\x4f\x80\x93\x0c\x26\xe3\x2b\x8c\x35\x7a\xd9\x91\xf5\x08\xaf\x77\x88\xb5\x36\x2d\xf1\x11\x66\x03\xec\x4a\x16\xd7\xff\xaa\x1a\x0d\x00\xa1\x42\x0a\x3f\xf8\x3b\x1f\x96\x02\x7f\xb6\x58\xcc\xda\x8e\x26\x63\x9f\x34\x1d\x6a\x22\x45\xec\xe4\x1b\x35\x38\x74\xfe\xbd\x24\x84\xef\x20\xdb\xb1\xaf\x3f\x3b\x54\x84\x22\xcf\x38\x11\xd7\x00\x02\x12\xc1\x5d\x24\x04\x7e\x25\xc3\x47\xc0\xc2\x8e\x3c\xec\xd7\x8b\x63\xe0\x6d\x64\x98\x3b\x72\xec\x11\x97\x6f\x5e\xb8\x55\x15\x2b\x0c\x48\x7f\x95\xcd\x8e\x07\xf0\x40\x56\x0f\x74\xff\xe9\xba\x29\xc7\x8d\x9a\x04\x15\xe7\x05\x8e\x6d\xa2\x25\x1e\x3b\x35\xeb\x10\x75\xa6\xcc\x27\x1a\x2b\x97\x59\x82\xa8\x36\x6c\xc9\x74\xaf\x8a\x5d\xfd\x46\xbc\x4c\xf6\x48\x58\x5a\xfd\x11\xb8\x7f\xe6\xfd\x27\x89\x42\x07\xe4\xdf\x13\xb7\x43\xed\xe9\x40\x5c\xc0\x12\x1e\x22\xff\x08\x0d\x66\x0e\x92\x0f\x65\xce\x46\x16\x07\x33\x31\x95\xc5\x62\x4b\x9c\xa5\x0f\x78\xca\x3e\x7f\x8e\xcf\xc0\xc4\x4f\x86\x83\x7b\xb8\x4c\xde\xab\x6c\x2a\xbf\x59\xac\x36\xce\x68\xaa\x7a\xc2\x6f\x04\x6d\x83\xe4\x54\x82\x9e\xb8\xa4\x62\xd1\x8c\xc8\xfc\xf2\xa5\x13\x07\xd5\x75\xab\x0a\xed\x19\x2b\x03\xbb\x38\xf9\x6f\x46\x71\x9b\x0d\x72\xd8\x0f\x73\x2c\x2c\x6e\x6e\x45\xc5\xd0\x8e\x17\x3d\x30\xaf\x15\xfb\x24\xe4\xa0\x39\x60\xe6\x25\x4a\xb7\x07\xac\xcb\xef\x84\x10\x15\x33\x2b\x18\x7a\xb4\x29\xb9\x77\x42\x6e\x60\x1b\x05\xf2\x75\x6a\xc3\xd6\xf2\xdc\x0c\x7c\x9a\xb8\x81\xba\xe9\x60\x9b\x87\xb6\x70\x2f\x61\xa0\x4c\x7f\x57\x49\x76\xa7\xc6\xe6\xa6\xca\x80\xac\x57\xc3\x5e\x1a\xf4\xec\x20\xe3\x4a\x90\x46\xae\x2e\x5f\xbd\x7a\xfd\x2e\x09\x21\xb0\xce\x4d\x6b\x8d\xfa\x26\x3a\x98\xce\xda\x15\xdc\x4c\xe3\x04\x2d\x21\x92\xa3\x2b\x97\x38\x05\x97\xb3\xe1\xcc\xf3\x65\x6b\x91\xb7\x5a\x68\x4b\xd8\xab\x8a\xf6\xb7\x27\x49\xf8\x01\x46\xe5\x63\x15\x0c\xfe\xaf\xe1\x7f\x95\x9f\x99\x64\x67\x4d\xc8\x5a\xd2\x91\x54\xba\x70\x24\xb6\xd6\xb6\xb3\x33\x14\xdc\x84\x46\x89\xaa\xa4\xdd\xf7\x16\xf7\xc2\x8d\x40\x9f\x88\x73\x98\x81\x76\x40\x86\x00\xc4\x1d\x8d\xfe\xfb\x88\xe2\x27\xba\x32\xac\xaa\x3b\xed\xf4\x5a\x77\xb4\x61\xfe\x39\x7e\x50\x3a\xfc\x9a\x5c\x39\xc9\x2a\xd7\x4e\xfc\xe8\x7a\x69\x44\xd3\x49\xe7\x2e\x1e\x8c\x5a\x0c\xc0\x87\xd5\x27\xff\xe0\xa7\x37\x03\x3a\x37\xfc\xf8\x18\x20\x7e\x9a\xa1\xab\x37\x76\x68\xc8\xb8\x1a\x3d\x85\x70\x5d\x72\x3a\xcc\x63\x90\xe7\x8b\xb9\x4c\x84\xff\x17\xea\xdc\xd8\xe1\x36\xf5\xe3\x5b\xb6\x2a\xd8\x0d\xf1\xa6\x3b\xd9\x8d\xa5\x89\x09\x6a\x87\x32\xee\xbb\x0a\xef\xd3\xa4\xb2\xe8\x39\x86\x77\xab\x21\x43\x9b\xed\xcf\x48\x34\x7f\xff\x1d\xcd\xe7\xaa\xeb\x41\xb0\xfd\xa6\xc2\x96\xb0\x11\x7e\x7a\x29\x17\xf3\xc2\x45\x17\xc8\xc3\xdb\x2e\x98\xba\x30\x1a\xd9\xd5\x3d\xd9\x79\x32\xc0\x8b\x6c\x34\x81\xe5\x60\x27\x72\xc3\xf5\x91\x8f\x3a\x23\x87\x76\xcd\xa0\xf1\xb2\x0e\xa5\x77\x12\xed\xd9\xf1\x56\x36\x26\x6e\xb5\xd7\x5b\x63\x87\x8c\x0c\x37\xaa\x03\x3a\xad\x62\x96\x08\xf7\xbc\x5d\xd5\xe9\x46\x19\x87\xcc\x8c\x7e\x85\x94\x59\x71\x90\x6e\x08\x16\x2d\x8e\x20\x52\xf3\x52\x80\x1f\xfc\xbd\x50\x8a\x01\x43\x95\x95\x1c\xbd\xad\xb5\xd1\x1e\xdd\x45\xb5\xd7\xb2\x23\x4d\xa7\x9c\xaf\x24\xc7\x23\x12\xb6\x66\x05\xf6\xc8\x78\xd8\xe3\x93\x87\x87\x5d\x3d\xb3\x01\xe2\x8b\x21\x7c\xac\x81\xf4\xc3\x04\x41\x7e\x1e\x7c\xa5\xbb\xee\x87\xd1\x90\x69\x7d\x34\xaa\x48\x0c\x74\xcf\x04\x36\xba\x3c\xf8\xc8\x0f\xb2\xb9\x05\xe6\x32\xa8\x8d\x1a\x94\x69\xd0\xa1\x4d\xc2\xfe\x2e\x3a\x6b\xb6\x6a\x20\x5d\x23\x78\x8b\x51\xb1\x80\x5c\x83\x86\x74\x47\x92\x26\x5d\x06\x7f\x11\x52\xbe\x05\xd5\xfa\xbb\x00\x18\x14\xe3\x08\xc7\xe6\x9d\x49\x7e\x68\x27\x1f\x87\xb2\x3f\x80\x30\x0a\xb6\x19\x39\xd0\x5d\x19\xd1\x0c\xaa\x55\x06\xa8\xed\x04\xeb\xf3\xc1\xcd\x20\xe0\x43\x41\xdd\x1d\x4d\x93\x44\xf5\x1b\xfc\xaa\x0e\xd2\x37\x3b\x3a\x72\xf9\x0b\xff\xc4\x13\x97\xad\xfc\x9d\x52\x6f\xe2\x07\x2e\x01\xc7\x8b\xc2\xf1\xf1\xc9\xa0\x64\xb3\x63\x9f\x42\xbb\xa9\xe9\x82\x2a\x8a\x2c\xef\xe2\x31\x30\xf0\x13\x84\x53\xad\xd8\xcb\x4f\x7a\x3f\xee\x45\x04\xc4\xa2\xb0\x4a\xce\xca\x83\x9d\xd5\xf2\xf1\xcc\xd4\x15\xe0\xeb\x4f\x69\xa6\x18\xee\x3f\xac\x31\x4a\xb5\xb5\x1c\xd1\xdd\x1c\x99\x4e\xe1\x7b\x54\x71\x3c\x80\x70\xa1\x3a\x06\x04\xa0\x1b\xd5\x79\xee\x69\xfe\x1d\x2c\x70\xb2\x64\xa9\xe8\x67\xbe\xee\x46\xf5\xe0\x27\x1a\xc5\xc0\x4f\x03\x56\x5e\x1f\x2f\x39\x24\x41\xb6\x40\x18\x62\x45\x4c\x33\x4d\xb6\x2b\xbc\x94\x98\xe6\xda\x02\x54\xb1\xe5\xb2\x58\x2f\xb3\x8b\x8d\x8f\x9f\xbd\x78\x87\xee\x29\xf7\x14\xaf\xc9\x0c\x42\xae\x7d\xc4\x22\x1f\x0e\x20\x59\x3a\x9b\x5b\x3e\x43\x2c\x05\x99\x13\x63\x7d\xa4\xfb\x68\xe1\x6e\x68\x2f\xfd\x2e\xd5\x05\x9b\xbc\x76\x8e\x84\x5b\xa3\x71\x3c\x0b\x41\x2f\x61\xa7\x36\x30\xb2\x72\x62\x05\x6c\xe9\x5a\x41\x23\xbb\x70\xa7\xe0\x05\x25\x72\x41\x48\x44\x1b\x4f\x79\x42\x1a\xbc\x27\x65\x7e\x95\x38\xa0\x8d\x87\xe1\x69\x36\xe4\xe7\xe0\xbc\x24\x79\x83\xe1\xa0\x11\x76\x53\xd1\x1e\x11\xd2\x79\xc7\x80\xaf\x0a\x34\x8d\xba\xd3\xe6\x16\x25\xab\xfe\x98\x12\x32\x11\xfb\xca\xf6\x5a\xb5\xdf\x64\x79\xc1\x0d\xe8\x0d\x8e\xfe\xff\xf7\xff\xfc\xbf\x8f\xae\xa0\xdd\x57\x7e\xe8\x1e\x5d\x05\x0d\x06\xe0\x89\x8e\x84\x40\xbc\xfe\xaf\x6a\x34\x07\xf6\xf9\x79\x4f\xbf\xaa\xf0\x8d\x2c\xa2\x1a\x8d\xe3\x43\x0f\xfc\x51\xf1\x17\x70\x8a\x8a\x83\x5d\x00\x8b\xa8\x2a\x13\x77\xb8\x57\xb6\xd8\xe4\xfe\x3e\xea\xe6\xb6\x26\xdb\xd5\x85\xf8\x13\x7c\x09\x0c\xa0\xc0\xfb\x3c\x6c\x19\x91\xff\xe3\xa4\x9d\x6c\x22\xf9\xad\x00\xdc\x1c\xf9\xb2\x51\xda\x2f\x64\x29\xb7\x1c\x03\xc7\x0e\x80\x9d\x36\xaa\xea\x47\xb7\xa3\x23\xf1\x50\xdb\x9b\xd1\xed\xf0\x6a\xea\x27\xba\x7e\x9c\x63\xc0\xa1\x99\xe1\xc0\xea\xb5\xa3\xcb\xf7\xcb\xe2\x19\x66\x65\xbe\xd9\x7b\x25\xd6\xb2\xb9\x0d\xaa\x60\x45\x7b\x20\x39\x09\xba\x2a\x6e\x6b\xbc\x9d\xf9\x41\xa1\xba\x3b\x28\x05\x90\x5e\x0d\xe1\x40\x5f\x9a\xb6\xf6\x72\x4b\x25\x41\xf6\xe0\xa2\x76\x10\x5e\x6e\x19\x11\x62\xfe\x85\x7f\x56\x5e\xe2\x91\xef\x3b\xb9\x9d\x47\xdf\xe8\xc7\xae\x9b\xc7\xe8\xe8\xe4\x5a\x61\xf2\x35\xfe\xa8\xf6\xd0\x48\x6f\x8d\xa2\xed\x2b\x7c\x54\x0d\xba\x3e\xba\xe8\x04\xe9\x2a\xbe\xd7\x45\x2e\x00\xf4\x13\xbb\x5a\x0f\xf2\x00\x69\xf2\x40\x9f\x3b\xed\x38\x66\xcb\x73\xfa\x45\xc9\x78\x3b\x85\x40\xf1\x72\x4a\x84\x47\x51\x9f\xd7\xc3\x9b\xf0\x9b\xb2\xbc\x05\xe1\x69\xc0\x03\x33\x1c\x88\x70\x58\xe6\xad\x15\x94\x41\xd2\xab\xdb\xd9\x83\xa9\xee\x74\xab\x2c\xee\x0f\x7c\xd5\x8c\xa2\xd6\xac\x07\x7b\x70\x41\xba\x03\xaa\xd2\x27\xf0\x00\x50\x49\xc3\xb5\xb4\xe7\xef\x5e\x5e\xff\x4f\x81\x38\x80\xde\xab\xaa\x52\x2d\x8c\xf9\x0a\xa3\xbe\xd0\x69\xee\x2b\x75\x20\xa9\x8a\xb3\xe8\x8c\xaf\x8e\x67\xbd\xe8\xf3\x9a\x03\xc0\xbf\x90\xfd\x6b\xab\x7d\x91\xd9\x0f\x0a\xa9\x42\x87\x46\x8e\x16\x37\x5e\x7f\x24\x59\xda\x05\x40\x92\x48\x6b\x44\x66\xac\xa9\x61\x33\xa9\xc3\x34\xbb\x22\x71\x15\x32\x85\xb1\xe6\x11\xee\x34\x98\x59\x34\x02\x17\x61\xde\x12\x1f\x08\x1a\xc0\xf6\xa3\xf3\xf5\x5a\xd5\xd6\xd4\x32\x49\x63\x7f\x0d\xde\x29\x6b\x74\x5f\x96\x61\x56\x02\xcb\x97\xb7\xe4\xce\x36\x58\xd0\x8f\x44\xe8\x47\x08\xcc\x90\x23\x47\x81\x9b\x82\xa7\x60\x3f\x72\xcc\xc8\x65\xa6\x72\x25\x07\x5a\x01\xd8\xe0\xc2\x95\xe3\x0b\xa6\x89\xac\x57\xb9\x65\x64\xd6\xaf\x1d\xa8\xf9\x78\xcf\x9e\x0d\x6c\x79\x03\xd0\x54\x45\x97\xf0\x93\xd2\xff\x55\xbd\x23\xff\x08\x6c\x52\x62\xe2\xe8\x25\x5c\xda\x9e\x97\x6d\xb1\x61\xa2\x81\x98\x83\x97\x4e\xc2\x74\x63\x8f\xbb\x01\x2b\x5b\xad\x56\x79\x7d\x51\x8b\x45\xe3\x19\x08\x89\x69\xfb\x3a\xa7\x4b\xf9\x28\xc7\x68\x8f\xf2\x78\x8f\xfb\xc6\xe3\x15\xc0\x06\xe3\x50\x5e\x60\x6b\xa9\x67\x4a\xac\xd5\x56\x53\x08\x1d\xd4\xe5\x14\xdf\x45\x4c\x48\x80\xdb\xb9\x5e\x62\x24\x15\x6a\x0f\xee\x4c\x76\xc8\xe6\x6b\xa3\xba\x1a\x5d\x7e\xc4\x85\xa0\xcf\x98\x89\xfc\x24\x9b\xf4\xec\x65\x3d\x99\xf3\xb2\x6d\x6b\xbf\xef\xc3\x51\xda\xc3\x33\xf7\xf8\xc7\xd0\xed\x9f\x1e\x66\x50\x09\xe0\x61\x5a\x96\x2d\x85\x75\xe2\x73\xfc\x3c\x6f\xea\x10\x93\xe7\x71\xd3\xd8\x1b\x3c\x06\x13\x6b\xf1\xea\x4c\x88\xc7\x20\xd4\x27\xaf\x4c\xab\x5a\xd1\xa6\x3d\x30\x1b\x1b\x46\x42\xa4\xed\x8e\xb5\xb7\x34\x4b\xe3\x8a\xe2\xfe\x06\x80\x40\x76\xb6\xd0\x04\x81\x91\xc0\x1f\x41\x77\x1f\xe0\x6d\x99\x68\xb1\xc1\x8c\x54\x5d\xda\x3a\x53\x0d\x61\xd3\x0c\x56\x1f\x13\xbd\xe4\x13\x9e\x0d\x06\x68\x40\x67\x4b\x6c\x0f\x46\xb6\xa0\x50\x39\x02\xf6\x8e\x70\x71\x68\x95\xf3\xc1\xe0\x7b\x86\x1e\x37\x2c\x0c\x94\x1e\xf8\x39\x25\x26\x5e\x21\xd3\xc9\xcb\x6c\x6d\xad\xe2\x6e\xfb\x94\xb3\xe6\x51\x6d\xb8\x6c\xd8\x2a\xe9\xa4\x88\x36\xfb\xb4\x23\xd2\x62\x2b\x8e\x91\x5c\x0c\xcb\x94\xab\xeb\x61\x2e\x84\xe9\x0f\x3b\xbe\x8c\xdc\xd1\xf8\x81\xcf\x8c\x58\x01\xeb\x25\x3b\x29\xd0\xbd\x54\x49\xfb\xd0\x44\x64\xbc\xaf\x22\xe4\x0f\x58\x87\x3b\xee\x79\xaf\x8b\xf1\x8d\x82\xaa\x22\x45\xc8\x0c\x56\x78\x26\x01\xde\x08\xd1\x2c\x3f\x92\xa7\x8e\x5a\x0b\x46\x3d\xa3\x2a\x56\x93\x5a\x95\x2a\x2a\x34\xac\x5c\x28\xfa\xf2\x2e\x30\x37\xae\x8d\xad\x49\x7f\x4e\x23\x50\x76\xe7\xc8\x62\x7c\x60\xdf\x13\x85\x3b\xaa\xb6\xa7\x2a\x62\xef\x8d\xfa\xb0\xcb\xaa\x0d\x2c\x75\x76\xe0\xc8\xd0\xc2\x69\xd3\xa8\x14\xf3\x49\xb5\xa1\xfe\xd5\xfd\x96\xa4\x74\x2f\x0a\x0f\x4a\xd9\xc6\x7f\x80\x51\xc0\xad\xa1\xa8\xc4\x0e\x71\x59\x11\x3b\x0c\xeb\x67\x2b\xb5\x49\xcb\xcb\x5b\xf4\x78\xa5\x5d\xc5\xef\xb2\x1d\xa4\xec\xe9\x6c\x2a\x5f\x12\x19\xd1\xae\x92\x86\xec\xcb\x27\xb5\xb1\x81\xb7\x02\xeb\x01\xc9\x88\x46\x07\x74\x36\x54\xac\xf2\x9d\x0c\xb2\x53\x7b\x30\x9a\x8c\xad\xd9\xfb\x88\x97\xc3\x53\x52\x80\xa2\xc9\xfe\x31\x1f\x47\xa7\xc1\xc6\xa6\xd2\xb5\x04\xd0\x89\x32\x06\xee\xc6\x75\xab\x07\xe6\xa1\xf4\xc1\xfa\x55\xe2\x12\xec\xe3\x8c\xf5\x46\x69\xca\x4d\x2a\x8e\x82\x95\x0b\x9e\x10\x27\x6a\xcd\x71\x00\x4e\xaa\xfe\xfd\x02\x82\x2a\xc8\xb8\x81\x63\x27\xc1\x95\x39\x74\x90\x5f\x4b\xb8\x5c\x26\x0e\x39\x93\xdb\xce\x3c\x25\x52\xfe\x86\xce\x06\x9f\x6a\xd3\xc6\x34\x89\xa6\x87\x78\xff\x29\xa6\xef\xe3\xe5\x24\xbe\xa6\x14\x73\x78\x53\x7b\x82\x56\x35\x4e\x0b\x97\xdc\x5f\xc3\xff\x98\x6a\xd4\x81\x0d\xab\x07\x35\xc4\x4b\xe0\x14\x06\x12\xf8\x35\xaa\x08\x59\xf2\x6a\xaa\x16\x64\x59\xb0\xd6\x21\x91\xf4\x3e\xcc\xcf\xb3\x9b\x4e\xc9\xa1\x8e\xe5\xaf\xe0\x53\x74\x33\x2c\x51\xcf\xc8\xd5\x8c\x49\x35\x39\xcc\x2b\xbb\x0c\x46\xd5\xe5\x90\x54\xe3\x7e\x09\xd8\xf6\xca\x14\xb0\xaf\x7b\x65\x72\x2d\xa7\x40\x6c\x9d\x6a\x27\x98\xd1\xea\xbf\x0c\x2f\x1d\x06\x2f\xc1\x73\x0f\xfe\x39\x6f\x67\x06\x44\xcd\x94\x0b\xa0\xc6\xe6\x70\xaf\xec\x0c\x88\x17\x5c\xdc\xd7\xa7\xa3\x97\xc6\x47\x1d\x66\x03\x44\x99\x75\xdf\xc9\x46\xc5\x90\x08\x08\x14\xb7\xeb\xa2\x9a\x88\x8c\x2b\x2b\xf0\x11\xae\x68\x95\x5e\xc5\x03\x36\x58\x5d\x12\xc4\xc3\x56\x6d\xd0\x6f\xdc\x29\x34\x03\x96\x13\x61\x5a\x5c\x9b\x8d\xcd\x99\x13\xde\xc2\x30\x47\x2e\x25\x8e\xca\x27\xf7\xbd\xe2\x5a\xef\x83\xd8\xd3\x07\xe1\x8a\xaf\x5c\xdb\x22\xae\x0b\xf9\xf9\x53\x5c\xc0\x69\xc3\xf8\x3a\xf0\x89\x56\x2d\x18\xd4\x91\x24\x4e\xf9\x53\x45\x46\xc7\x5e\xb8\xc4\x95\x3f\x0b\x1f\x38\x6d\xae\x3d\x26\x76\x87\xbc\x8a\x70\xc4\x40\xaf\x91\xdb\x52\x54\x0e\x42\x8b\xf3\xdb\xcb\xb5\xb8\x10\x67\x2d\x4e\xee\x38\x96\x30\x75\x53\x16\xcd\xe4\x90\xc9\x66\x87\x30\xd0\xc5\x08\xe7\x79\xb0\xcd\x93\x65\x9f\xe6\x65\xb4\xf2\x77\x0b\x25\xee\x5d\xe0\x53\x98\x93\x98\x67\xcb\x98\x4b\xde\xb3\xda\x12\xc4\x56\x1b\x75\x1a\xf5\x89\x72\x6c\xeb\x45\x0b\xef\x3c\x67\x25\xbb\xae\x8e\x96\x95\xcb\xae\x13\xf4\xb1\x08\xea\x38\x52\xae\xb7\xa0\xc5\xa5\xa6\xb6\xec\xfa\xb0\x54\x88\x66\x6b\x5b\xaf\x8f\x5c\x86\x96\x1d\xc6\xce\x3a\x51\x64\xaf\x0c\xa8\x1c\x20\x87\x51\x91\x97\x31\x61\xa1\x88\xe3\x58\x83\x76\xf0\x0b\x39\x2b\x9c\x8f\x9e\xb7\x0a\xb7\x08\x02\x4c\x03\x41\x5e\xe3\x8f\x25\x10\x72\x08\x8a\x6a\xd7\x5b\x0e\x2a\x10\x5c\x92\x17\x2b\x56\xd2\xa5\x12\xd7\x78\x37\x67\xf8\x82\x72\x7b\xeb\x3c\x6c\x73\xe4\xff\xf5\xd2\xe2\x15\x4a\xfc\xbc\xa7\x9e\x54\x80\x2a\x9a\x95\x80\x95\x84\xa3\x00\x7a\x2c\xfe\x16\x67\x1f\xbe\xff\xe8\x60\x18\x92\x63\xdd\x87\x3f\x7c\x74\x0f\x7e\x3a\xfb\xf0\xc7\x8f\xe8\x51\x37\x2b\x5c\x6f\xe4\xad\x5a\xc0\x80\x05\x03\x34\x5a\x7d\xec\x18\xcd\x3d\x76\xcc\xf6\x95\x4f\x34\x14\x9f\x7c\xb9\xc4\x63\x04\xc0\xc9\x0a\x6f\x63\x56\xb9\xc2\xcd\xb8\xaf\xb9\x8f\x8e\x38\x40\xf8\x8a\xc5\x03\x05\x6a\x09\x55\xfe\x16\xbf\x53\x77\xff\x03\x44\xe3\x33\xec\xe9\x6f\xa1\x58\x70\x81\x27\xe8\x2c\xe6\xde\x25\xbb\x44\x46\xdf\xc8\x70\x5a\xdf\x66\x56\x19\x2e\xf6\x73\x6c\xa6\xcd\x5c\xf9\x68\x17\xc0\x23\x9b\x28\xe1\xc3\x0e\x50\xb2\x34\xfc\x08\xfd\x2d\xb3\x42\xa3\x22\x08\x0f\x3a\xde\x70\xcd\xc1\x07\x85\x54\x0d\x70\x6f\xf1\x73\x92\x79\x1f\xb2\xa1\x28\xc0\xdb\x66\x9a\x62\x0c\x3a\x19\x28\x26\x33\x89\x14\x3f\x4a\xa1\x5b\x98\x50\xdf\x7f\x74\x0f\x22\xb9\xf1\xeb\x27\x9c\x2c\x05\xd1\xa9\xbe\x88\x23\x7c\x7e\x25\x16\x96\x72\x07\xb5\x89\x78\xf8\x50\xb4\xa5\xd1\xa1\xae\xf2\xed\x48\x56\x6a\xbe\xae\x8a\xde\x72\x60\xf3\x37\xf8\x23\xd5\x1c\xc2\x1c\xa1\xbc\x7b\x95\x7d\xc6\x69\x5e\x78\x70\x70\x62\x88\x1b\x17\x2e\xd4\xb3\xc1\xa1\x70\x74\xe5\xc0\x3f\x41\x6f\xfb\x9b\x0d\x9a\x51\x63\xcd\x9d\x1a\x1c\x5f\xc6\x64\x8c\x6c\x79\xfc\xb5\xd5\x69\x78\x26\x46\x8a\x50\x37\xe8\x7d\x17\xe2\x46\xde\xa9\xc9\x26\x1e\x44\x9e\x28\x42\x95\xf9\x8d\xed\x6c\x12\xb1\xf0\x6b\x0a\x40\x5e\x35\x67\xed\xa2\x74\x94\xa6\x26\xaf\x5c\x0c\x52\x58\xee\x3a\x04\xb9\xd0\x19\xca\x98\x98\xb8\xca\xcc\x18\x5e\x82\x1a\x88\x41\x26\x42\xd0\xcb\x39\x16\xbe\xde\x84\xa0\xd1\xad\x67\x11\x6c\xd9\x9f\x9f\x64\x8c\xdc\x23\x4d\xa3\xf6\x9a\x7c\xf8\xb5\x29\x9c\xd4\x18\xf7\x69\xb7\xa9\xe5\xca\x93\xd1\x95\xda\xfa\x19\x83\x6b\xc6\x26\x7b\x39\x78\xdd\xe8\x5e\x46\x56\xf9\x26\x4b\x09\x90\xd2\x7b\xd9\xec\x60\x59\xe7\x42\xd7\x6f\x64\x38\x60\x7b\x01\xcc\x47\xec\x0e\x9e\x55\x79\xb9\xfe\x6d\xa1\x74\x0c\x76\x97\x97\x8e\x89\x80\xe2\xb7\x8a\x8e\x6e\x32\x75\x2d\x3f\xc2\xe1\xcc\xc6\xee\x7b\x39\xa8\xd2\x8c\x0a\x29\xd1\x8e\xba\x08\x17\x46\x29\x00\xfb\x83\x15\xf1\x60\x09\x23\xfe\xc3\x0e\x56\x1a\x00\xd1\x52\x18\x6d\x17\x25\x5a\x8c\xad\x77\x81\x57\xf6\xa6\x15\x72\x0d\x17\x82\x7f\x71\x7e\x71\xe6\x35\x3d\xeb\x0a\x3d\xb7\xf5\xa0\xdc\xd8\xe1\x88\xa0\xbf\x31\x7d\x6c\xc8\x53\x36\x00\x61\xd8\x75\x90\xb6\x52\x5d\xd9\x26\x42\x41\xd9\xf9\xf6\x03\xe4\xae\x55\x23\x41\x50\xc7\x36\x43\x5f\x77\x4a\xb6\x59\xef\x07\x85\x71\x57\x03\xfe\x9d\x74\x75\x1e\xef\x1e\x46\x2c\xa2\x0f\xe6\x98\x09\xa5\xd6\xca\x1f\x30\x90\x00\x5e\x47\x00\xe2\x92\xd1\xc9\xfd\x90\x4b\x11\xdf\x7f\x74\x8f\xb1\x8e\xc7\x20\x4a\xb4\xcc\x49\xff\x03\x3f\x88\x9f\x32\x29\x27\x7a\xdf\xc2\x34\x40\x6e\x14\x06\xf5\x80\x73\xd8\x5b\xb1\x57\xc3\x56\xa1\xf8\xd1\x06\x53\x04\xf1\xf5\x1f\x1b\xdb\xaa\xc0\xb8\xf1\xb7\xd0\xc6\xdb\x98\xfe\xc7\x98\xce\xf8\x11\x13\x4b\x19\xa1\x1a\x4a\xfb\xf7\xd0\x8b\xb3\x0f\xff\xe3\x63\x98\xa3\x5e\xae\xeb\x9c\x5d\x93\xcb\x61\xfc\x2c\xa0\xa6\x16\x98\x94\x57\x1c\xbb\x06\x6b\x1d\xe7\xf3\xa6\xee\x6d\x4d\xa4\x89\x4e\x38\x94\xc1\xde\xb4\xf9\x48\x7a\x2b\x7a\x35\x00\x9b\x62\x6a\x46\xa7\xcb\x55\x41\x1a\x14\xbf\x87\x54\x13\xcc\x9a\x98\xf3\x6e\x86\x36\xf2\x25\x86\x29\xd9\x12\xa1\x68\xa5\x97\xf5\x7a\x08\xae\xc4\xd2\xcb\xe8\x54\xb7\x8c\x8b\x61\xdb\x31\xdd\x9e\x07\x2a\xda\x0d\x9d\xac\x65\xdc\x36\xb4\x5d\xbb\x1a\x2f\x10\x91\x51\xf5\x1d\xdf\x0a\xea\x74\xe3\x45\x4c\xd7\x8e\xaf\xaf\x53\x1c\xe2\x2d\x45\x75\x8e\x2f\x28\x6c\x06\xe5\x76\x18\x73\x15\x00\x36\xea\x20\xf6\x16\x25\xcc\xc8\x22\xa4\xa9\xd1\x87\x0c\xbb\x5a\x78\xa2\x14\xdd\x60\xb7\x14\x26\xc8\x24\x92\x6a\x44\x85\x5e\x3f\x5f\x86\x8d\xbc\xb5\x97\xf0\x45\x16\xe0\xa3\x39\x34\xf4\xdb\x9d\xae\x6b\xfa\x04\x02\xcd\x87\xbd\x34\xe4\x1d\xaa\x8d\xb0\x43\xab\x06\x0e\xa9\x85\x77\x71\xfc\x6e\x01\x33\x61\x9b\xb0\x14\x9c\x3c\x4b\x2b\x1b\x27\xec\x68\x78\x01\x62\xa9\x68\x22\xfe\x8d\x8d\x22\x0f\x7d\x9c\xa4\x3c\x91\x93\x6b\x70\xd9\xd5\x9c\x65\x19\x12\x29\x0a\xb2\x7d\xfb\x1f\x67\xed\x77\x1c\x98\x5d\xee\xd5\xdc\xc1\x0f\x12\xa9\xe3\xf9\xe6\x0d\x5c\x54\x3b\x8c\x19\x07\x53\x06\x36\x0a\x00\xd2\x66\xbb\x0a\x4c\x8c\x35\x86\xcc\xbb\x0f\x85\x93\x5f\x72\x7e\x5f\xc0\x60\x64\x07\xa3\x0e\xd9\x62\xe7\xd3\x9d\x74\x22\x12\x76\xf5\xd0\x49\x4d\xab\x81\x6e\xd2\x51\x29\x72\xcc\xc6\x26\x9b\x46\xad\xaa\xcc\xd3\x21\xdb\x59\x93\xa5\x22\xcb\x5e\x30\xab\x64\xb9\xcb\xa6\x95\x29\x40\x9b\xec\x87\x67\xae\xa8\xdb\xd6\xed\xa8\x6a\xd6\x7b\x5f\x59\x5c\xb6\xf0\x35\x6d\x41\xd0\xf7\xa6\x98\xa3\xf2\x53\x76\xa8\x76\xe3\x1a\x36\x34\x0a\xf4\x46\x1b\x46\xe6\xdc\xe1\x6d\xf0\x4b\xe7\x13\x65\x16\x4d\x0a\xf4\x93\xfd\x66\x91\x38\x41\xfe\xc5\xc0\x60\x79\xc6\x82\xf7\x6b\x9e\x9b\xfa\xfc\x64\x54\x68\xc3\x16\xdf\x86\x23\xd5\xef\xca\x4e\x2a\xba\xa5\x0d\xff\xf3\x8c\x18\xe0\x97\x51\xd5\x34\x0f\x19\x23\x22\xe7\x94\x14\x3b\xf6\x3c\xfa\x2e\x3c\x3c\x1e\x8f\xc7\x47\xfb\xfd\xa3\xb6\x7d\xb8\xd0\xeb\x4c\x82\x8c\xdd\x9e\x9c\xdd\xb3\xa9\x66\xc2\xb3\x33\x4c\x99\x40\xbe\x4c\x3b\x74\xc4\xc8\xc7\xe9\x3d\x5a\x27\xd7\xca\xc3\x5c\xcd\x8e\x93\x69\x25\xa5\xd1\x73\xb0\x1b\xd9\xbe\x53\xe9\x36\x0a\xb0\x17\xba\x68\x97\xf7\x65\xa2\xcc\x64\x59\x93\xb0\x72\xf7\x36\x30\x7a\xa1\xb1\x70\x69\x37\xa9\x31\x13\xa2\xd0\x53\x1c\x27\x49\x92\x29\x11\x89\xac\x51\x91\x58\x00\x5c\x56\x23\x52\xed\xff\x9d\xaa\xc4\x52\xf5\x4b\xd3\xe0\x33\xca\x44\x75\xd0\xb7\x5a\x5c\x88\xbf\xe8\x5b\x8d\xbf\x57\x1c\x08\x30\x0b\xfc\xe7\x2d\x66\x7f\x53\xe4\x87\xbe\x42\x0e\x7a\x35\xed\x94\x40\x3b\xbd\xa0\xd7\x25\xe8\xf6\xd1\xd8\xb5\xa2\xd3\xb7\xb4\xb7\xdb\x66\x44\x2b\xc3\x91\xc3\x45\xfc\x0d\x63\x37\xd8\xad\xc2\x4b\xdd\x51\x80\xd7\x9e\x27\xd5\x8a\x2a\xe4\x39\x8e\x81\x64\x6a\x7e\x48\x8c\x17\x39\x39\x78\x0c\xce\xe3\x5e\x4e\xe0\xf9\x53\x63\x98\xc0\x42\x3b\xa7\xb3\xc8\x9e\xe0\xe9\xf6\x7f\x8e\xf5\x15\x07\x81\xa7\xfc\xe0\xe2\x5d\xfa\x57\x40\xcf\xc9\xe7\x06\xa4\x75\x25\xe4\xda\x8e\xec\x96\xc4\x76\xc1\xc4\x20\xb8\x1f\x18\xfe\x9a\x6b\x02\xd5\x3c\xab\x03\x9d\xa2\xb9\x02\x3e\x57\x38\x73\x78\xfe\x1b\xec\x1b\x58\xee\xcc\x11\x38\xce\x74\x48\xa9\xf9\xfc\x80\x15\xe9\xa2\x3f\x29\x6f\xda\x1f\xba\x94\x53\x80\xf0\xc6\xb6\x0c\x65\xac\xd7\x8d\xaa\xbf\x0f\x32\x4b\x7e\x71\x87\x3c\x0c\xb6\x8a\xc5\x64\xd0\x01\x59\x4a\x8e\x41\x59\x61\xbd\xab\xc1\x63\x04\xd6\x38\x42\xf3\xa3\x63\x9c\x48\x88\x6a\x72\xbb\xb6\x3c\x3d\xce\x70\x38\x1e\x66\x97\x11\x31\xc4\x91\x08\xb7\x40\xf9\xf3\xcc\x55\x8b\xcf\x8c\x85\xb4\x15\x0d\x96\x8b\x2f\x95\x64\x59\x59\xf8\x6b\x16\xef\xb3\xef\x13\x60\x2b\xba\xbe\xc2\xf1\x1f\x4f\x01\xd1\xf9\x3a\xcf\xa4\x53\x40\xf8\xde\x17\xdd\x80\x38\x05\x32\x9a\x70\x40\x74\x21\xde\x87\xdf\x09\x78\xc9\xf9\x32\x66\x7e\xee\x06\xc3\x09\xc0\x24\xc4\xaa\xf0\x3a\x46\x70\xa4\x21\xfb\x95\xd3\x2d\x06\x44\xc3\x13\x2f\xd0\x5a\x1f\x84\x7c\xd4\xc8\x6d\xab\x82\xb4\x73\x5e\x48\x73\x1c\xe7\xc1\xe0\x83\x23\xc1\x03\x22\xb5\x62\xe2\x1d\x35\xcd\xa8\x27\xad\x4c\x1c\xf1\x49\xd9\xc8\xa0\x94\x64\xb2\xe2\xbd\xb1\x48\xbe\x49\x35\xf5\x83\xf5\x78\x2a\x53\x67\x84\x7d\x13\x12\x17\x48\x3c\x2f\x10\x6f\x53\x50\x4e\xd2\xe3\x51\x88\xc5\x0b\x4f\xa2\x1f\xdd\x0e\x9f\x48\x92\x4d\xa3\x5b\x65\xbc\xec\x92\x7a\x84\xa1\x8a\x76\xda\x2b\xbc\x0c\x9c\x51\x13\x23\x40\x66\xf3\x84\x22\xc8\x64\x2e\x91\x1c\x3f\x26\xb8\x42\xae\x56\xab\xe9\x44\xa9\xb9\xbd\x34\xdb\x59\x7c\x7d\x13\xd3\xee\x01\x9f\x5c\x12\xa1\xca\x05\xe7\x8b\xb0\xc4\x60\xfc\xb9\x39\x31\x96\xf2\x6a\x46\xad\x89\xdf\x59\xa0\x14\x0e\xda\x7a\x32\x35\x17\x8a\xc4\xad\x98\x9f\x2b\x49\x34\x65\x5b\x51\x3f\xa8\x3b\xd8\x8c\x90\xe2\x81\xae\x0b\xcd\x08\xf6\xdb\x89\xea\x13\x1e\x0f\x29\x14\x11\x6d\x9c\x87\xd5\x4a\x9e\x22\x61\x04\xbf\x0c\x67\xbc\x89\x4c\x8f\x93\x60\x3f\x89\x62\xf9\xa3\x58\x25\xe6\xe8\xce\xc9\x63\x19\x0c\x0b\x31\x22\xdc\x9a\xbb\x4c\x57\xa1\x0d\x45\x4f\x31\xd6\x3c\x8a\x53\x32\x8c\x04\xee\xbe\xa4\x75\x96\x48\x63\x68\xe3\xd2\xad\x6e\xd6\xa7\x38\x1b\xeb\x34\x11\x81\xb5\xc5\x49\x7a\xd8\x59\x54\x97\xa1\x41\x93\x3a\xbe\x0c\x5b\xee\xd2\xc8\x02\xa5\x1d\xf8\x26\xab\xb7\xd9\x72\xb0\x9b\x9c\x4e\x53\x22\xdd\x57\x59\xf1\x48\xc0\xbf\xda\x62\xf2\xa7\x89\xb8\xd8\xab\x06\x3f\xef\x2b\x46\x1d\xa1\x10\x9f\xb4\x48\xe8\x75\x30\x0e\xe0\xc7\xfe\xac\xfb\x7f\xa3\x45\xa1\x06\x6e\x11\x7e\xce\x18\x68\x28\x3d\x63\xa0\x6f\x16\x96\x71\x3e\x4f\xbe\x94\x7d\xee\xac\xbd\xa5\xa7\x38\xd6\xf8\x33\xe5\x6c\xb5\x0f\x99\xcf\xb4\x17\xcf\xcb\xdc\xb5\x74\xba\xc9\x9f\xfd\xfc\x05\x12\x16\xb6\x72\xbe\xd5\x92\x41\xf2\xcd\xb6\x39\xa8\x3b\x9a\x26\x3d\x96\x7a\x73\x34\x8d\x78\x65\x0f\x73\x54\x00\xa6\x4d\x1d\x2c\x49\x09\x25\xe4\xc4\x87\x47\x3e\x6f\x69\x22\x29\x51\x72\x80\xfa\x6c\x2a\x72\x74\xb6\xd7\xe1\x01\x99\x1b\xbd\xb0\xb7\x65\x3d\x62\xdf\xe0\x79\x8f\x38\xfa\x13\x6c\x6b\x5f\x16\x3b\x6d\x29\x66\xda\xd4\xb9\x31\x62\x97\xed\x1d\xe8\x66\x6d\xf1\x9c\x2b\xa7\x2d\x34\x06\xc4\xb2\x09\x5f\x43\x75\x83\x9e\xcf\xcb\xfa\xe7\x14\x5d\x58\x34\xb2\xab\x59\x21\x01\xed\x32\x3c\xd0\x07\x49\x25\xb4\xfa\x34\x87\x0e\x69\x13\xf0\x02\x94\xdf\xd2\xfb\x35\x80\xa2\xd0\xf9\xfe\xed\xf5\x3d\xe0\xa1\x03\x7f\x2e\x9e\x73\x5a\x03\x85\x88\xcb\x10\xcb\x7c\xff\xf6\x9a\x5e\xed\xf4\x3b\x75\x2c\x1d\x7e\xbc\x5c\x67\x34\x24\xcd\x6e\x42\x16\x3a\xbe\xc4\x2b\x9f\x6a\x38\x41\x18\x84\xa9\x19\x66\x42\xa1\x4e\x6f\x77\xfe\xa0\x30\xfe\xc3\x3d\xb8\x62\xe7\x96\x70\x45\xfa\x9d\x40\x10\x0b\x73\xce\x94\x96\xe8\xd9\x25\xde\x31\xce\x65\xa2\x66\x45\xff\xbb\xe9\x9a\xa3\x8e\xc6\x95\xd3\x8d\x13\x4f\x11\x66\x5e\x9e\x48\xe3\xfc\x91\xfc\xa9\x97\x11\xbc\x92\x7b\x8c\x3d\x04\x50\x3f\xdc\x8b\x63\x15\x42\x8a\x5f\x88\x57\xf4\xeb\x7e\x70\x0c\x45\x9e\xca\x5c\x66\x9f\xf7\xf5\x35\x8f\x02\x01\x3b\xc4\xe8\x58\x1d\x67\xb7\x39\x52\xcf\xfe\x01\xbb\xd0\x3f\xc5\x3f\x60\x71\xff\x53\xfc\x43\x9b\x56\x7d\xfa\x67\x38\xd5\x88\x2f\xa9\x01\xe3\x38\x9f\xc5\x14\x20\x73\x29\x10\x01\x8b\xe5\xfb\xe8\xd8\x75\xd3\x09\x5d\x8a\xf4\x1c\x88\xa5\xf7\x21\xd4\x66\x63\x8d\x1f\xf4\x7a\x9c\xa8\x5a\xad\x44\xbf\xec\xdf\xc9\x13\xeb\x09\x7e\x89\xff\xdb\x9a\x5c\x39\x22\x13\x37\x5e\xc9\xf1\xb6\x06\x35\x31\xc6\x4c\xce\x2e\xc0\xe3\xe1\x41\x71\x9d\xd3\x5b\xb4\xb9\xd8\x41\x6f\x35\x0c\x28\x16\xca\x7a\x81\x0f\x60\x63\x48\xe9\x9d\x74\x84\x37\x86\xc6\xa5\x78\x8b\x54\x8d\x8c\x6f\xf0\xb8\xb2\x82\x52\x6d\x5d\x4d\xa4\xe0\x28\x7d\x61\x98\xce\x4c\x91\x33\x77\x6a\xf0\xf1\xd4\xc8\x8b\x77\x56\xbc\x55\xdb\xb1\x93\x43\x7e\x8f\x76\x5a\x60\x3a\xde\x01\x0f\x5b\x9c\x70\x73\x02\xaa\x8b\x81\x71\x65\xfc\x3c\xde\xa8\x65\x83\x34\x48\xc2\x03\x85\xbd\x9a\xd6\x42\xaa\xbf\x43\xdd\xff\x11\xc7\x08\x2e\x03\x78\x14\x15\x67\xd4\xe0\x36\xe0\x11\xda\x52\x2b\xc8\xb3\x25\xb6\x81\xe2\x78\x2c\xb4\x20\x79\xe9\x84\x48\x1e\x7c\xbc\x36\x51\xbe\x09\x9a\xc2\xe9\x4c\xee\x56\x27\x23\x28\x41\x85\x37\x58\xa8\x49\xe8\x43\x57\x86\x9d\xcc\xd7\x19\x85\x32\xbe\x80\x95\x4f\x3f\x5f\x87\x60\xc8\x73\xb0\xa8\x14\xa7\x08\xc8\x25\x51\x32\x29\x1c\x57\x1a\x0f\x52\x19\xdb\x05\x04\x85\xf8\x6c\x2e\xbf\x48\x83\xd6\x04\x0c\xef\xe3\x16\x9a\x37\x19\xa6\xc5\x48\x30\x7a\x93\xcd\x61\xbc\xb0\xa1\x4d\xab\xef\x74\x3b\xca\x0e\x1b\x73\x1f\xde\x3f\x94\x78\x41\xbd\x57\xc3\xdd\x69\xdc\x93\x0e\x21\xeb\x88\x6f\x9c\xa3\x73\xeb\x26\xc5\x66\x5f\xec\x11\x70\xb5\xe8\xae\xc2\x2b\x09\x63\xac\x8b\x14\x65\x39\x37\x9f\x92\x6d\x14\xe7\x07\x85\x9a\x0b\xb3\xf4\x87\x99\x38\xc2\xfe\x25\xbf\x0e\x80\x13\x05\x80\x27\xd2\xcb\x45\xb0\x30\xa0\xaf\xc3\xd5\x0c\x85\x85\x50\xe8\x68\xa5\x97\xe9\x80\xca\x58\x0e\x05\xb3\x96\xcd\xed\xa2\xe9\x6b\x11\xff\xc2\xfa\xca\xad\x6b\x40\xb8\xa0\xfa\xe1\xd5\x19\xa8\x18\xf8\xf4\xd9\x5c\xca\x9a\xd9\x80\xdf\xe6\xac\x29\x34\x38\x5d\x09\xc1\xae\x4c\x03\xae\x66\xd6\x9e\xf2\xa6\x19\x36\x6d\x89\x1f\x9d\x20\x54\xe8\x40\x11\x27\xfd\x5f\xa1\xd6\x69\x42\x25\x46\xf4\xd9\xf8\x40\xa7\xf1\xfd\xe1\x24\x63\xcb\xa2\xf8\xe4\xc6\x4e\xe0\x95\xfc\x66\xfe\xdc\x86\x74\xce\x81\x31\xf0\x09\x7f\xed\x91\xe4\xe7\x6c\xcb\x3f\x8f\x6e\x8c\x14\x30\x3a\x0b\x68\x95\xfb\x98\xb9\xd3\x6d\xc5\x3d\x8f\x08\x70\x19\xc2\xd1\x04\xa9\x09\x0d\xf5\xb0\x31\xf7\xca\xb4\xe8\xeb\xb7\xa1\x63\x99\x99\x61\xe3\xfe\x99\xf2\x99\xe3\x82\x53\x2a\xc9\x32\xb2\xa0\x2a\x7e\x26\xca\xef\x7c\xf5\x87\x0d\xfd\x95\x3a\xb0\x57\x5d\x52\xc9\xe4\x2d\x0a\xae\x81\x2f\x63\x20\xb4\xc0\x70\x17\x50\x2d\xee\x08\x29\xa0\x7d\x6c\x5a\x28\x30\x9c\x6e\x5e\x19\x63\x6a\x29\xb6\x54\xa6\x28\xb5\xf5\xc4\x73\xf0\xb2\x6d\xb1\x3f\x85\x07\xe1\xc9\x02\x93\x60\x90\x05\xae\x32\x18\xe4\x7c\xbe\x4c\x2a\x0e\x11\x21\xe7\xb6\x63\x3b\xe4\x8e\x72\x79\xc3\x16\xba\xb4\x58\xac\xf0\x65\xa0\x17\x67\x61\x3e\xa6\x1b\x73\x3b\x7a\xd6\x33\xb7\xa0\xa7\x5b\xca\xd3\xed\x71\x32\x67\xef\x89\x20\x19\x1a\x45\x87\x69\xa7\x28\x77\xb5\x48\x35\x0e\xf1\x96\x6b\xdf\xc9\x62\x33\xb9\x6b\x92\x19\x6f\x0a\x4b\x29\x3e\xef\x92\x62\xb9\x80\x24\xba\x9e\x11\xbe\x78\xed\xa5\x0c\xe7\xc2\xc6\x39\x8a\xe6\x89\x82\x64\x5e\x76\x55\xce\x8b\x03\x59\x4a\x78\x0e\xb1\xdd\x64\x62\x50\x89\xc7\x71\x6c\x55\x41\xff\x90\xfd\xd8\xec\xe8\xf8\x0d\x8d\x27\xfc\x2e\xfd\xeb\x9b\x77\x82\x6c\x9f\x7e\xd0\xdb\x2d\x6c\xc0\xe2\x2f\x3b\x65\xf0\xa1\x60\x67\xf7\x8a\xb9\x5b\xd3\x8c\x03\x9a\x35\xe8\x45\xd4\x83\x0a\xa1\x11\x4d\xcb\xdb\x51\x1e\x9f\x39\xd8\x0d\xc8\x67\x4c\xe0\x9b\xed\xe8\x53\xdd\xab\x46\x6f\x8e\x2b\x71\xad\xe4\x60\xe8\x81\xd1\xe0\xe6\x7a\xef\xbd\xc6\xd8\x13\x8c\xc6\xf1\xe3\x63\x99\x1b\x89\x99\x24\xf9\xf4\xe5\x8d\x6a\x46\x9e\x29\xe8\x52\x2c\xc2\x40\xe1\xfb\x0e\x68\x91\x69\xd3\xd6\xac\x61\x0f\x10\x7c\xe5\xee\x4b\xa6\xe9\xac\x0d\xf9\x8b\xb4\x54\xf5\x97\x32\x5e\x46\xb5\xf2\x64\x33\xe6\xb6\x5c\x88\x77\xca\x61\xf0\x3a\xfc\xfe\x0c\x78\x20\xc1\x0d\x3d\x42\x88\x8e\xff\x68\x52\xa4\x69\x11\xb1\x86\x47\x94\x51\xa2\x0a\x34\x72\x73\x33\xcf\x62\x1d\xa9\x8b\xd8\xb4\xc3\xb4\x9f\x34\xf7\xc9\xe7\x8b\xaa\xfb\xfb\xa8\x46\x85\x8f\xf3\xef\xe5\x91\x1e\xdd\xdd\xa8\x83\x70\xaa\xb1\xa6\x75\x21\xa8\x82\xf6\x78\xf1\xd3\x89\xb1\x0f\x17\x71\x67\x43\x32\x6f\x5b\x69\xb9\x57\xce\x2f\x81\xb8\xde\x52\x98\xb2\xb7\xfc\x73\x0e\x44\xde\x0f\xd0\xab\xe7\xf4\x6b\x0e\xd2\xf3\xf3\x71\xf1\x21\xb9\x39\xc8\xda\xb6\x30\x66\xbf\xd8\xf6\x38\x37\x7f\x86\xd1\x89\x36\x50\x5c\xcb\xbd\x3d\xe0\x79\xda\xfa\x88\x19\xda\x3b\xd5\x6d\xe8\xfd\x15\xd0\xff\x54\x88\xcf\x81\x02\x45\x0c\x21\x22\x68\x09\x31\x9d\xd0\x3a\x8e\xf7\xc7\x72\x17\x41\x7e\x11\x3f\x0f\xaa\x3e\x6d\x13\x45\xef\xe0\x76\xbd\x20\xd9\x1d\x47\x13\xed\x9e\xf4\xe2\xe8\x39\xe8\xbe\x7d\x76\xc3\x39\xd8\x73\x7a\x7a\xed\x53\xb5\xc8\x03\xf0\x4d\xa3\x00\x42\xca\x0f\x5d\xa0\xcf\x62\xee\x25\x91\x57\x3b\xac\x67\xa1\x45\x1c\x23\x11\x08\x44\xd1\x11\x67\x10\xe9\x76\x06\x02\x85\x68\xcb\x53\x11\x86\xc1\x93\x51\xf5\x79\xc1\x3e\x32\x06\x1c\x07\xc6\x6e\x59\xee\xe2\x57\x3c\xc9\xb8\x02\x8c\x35\xd8\x52\x32\x4f\x4c\xa0\xd5\xfb\xb7\xd7\x39\x33\x3c\x17\x12\xb6\x47\xb2\x18\x0c\x6a\x2b\x87\x36\x84\x09\x61\xc6\xbc\x93\x9e\x18\x70\xfe\x08\x00\x46\xad\x62\x14\x74\xc1\xfb\x56\x1b\x0c\xec\x88\xa2\x3d\x1b\xbd\x40\xcb\x4a\x4e\x17\xc0\x8b\xc7\x1e\xd8\x33\xf1\xfa\x50\x0f\x76\xf9\xdb\xff\xbc\x79\xfd\xea\x5c\x7c\x7a\x74\x38\x1c\x1e\x41\xf1\x47\xe3\xd0\x29\x03\x5d\x68\xcf\xc5\xff\x7e\x79\x7d\x2e\x94\x6f\xbe\x5b\x89\x97\xc4\xb5\x13\x33\x64\xbf\x47\xf4\x69\x46\x27\xc2\x71\xf8\x37\xb8\x39\xaf\x18\x36\x28\xe6\xcf\x2f\xe6\xb2\x17\x8c\x5e\xb8\xf1\x16\x5e\x2e\xc4\x9b\x6f\xd9\x3e\xde\x0c\x0a\x2f\x8c\xe1\x8f\x69\x46\x62\x7b\x08\x16\xe6\x27\x86\xa8\x97\x4e\xdc\x3c\xbf\xfc\xc3\xff\xfc\x5f\xe2\xf9\xcb\xcb\x2b\xb1\x53\x9f\x44\xab\xb7\x8a\x4e\x93\xc2\x8a\xbe\xd3\x61\xac\xff\xf7\x23\x98\x04\x8f\x6e\xf4\xd6\x48\x3f\x0e\x2a\x8c\x3b\xb1\x87\x5c\xb4\xe8\x64\x73\xbb\xf4\xda\xc9\x14\x44\x37\xd6\x30\x01\x5e\x34\xd6\x94\xbd\x27\x90\x70\x3b\xe3\x0a\xef\x65\x24\xe3\x2a\x4c\x99\xb8\xff\xef\x94\x01\xfe\x38\x76\x6d\xb9\xb5\xad\x55\x98\x02\xaa\xfd\x79\x5a\x18\x83\x4f\x59\xd3\x01\x53\xfa\x4f\x0c\xbe\xb2\x0b\x1e\x1d\x90\x15\x7a\x87\xc0\xab\x69\x61\x7c\x5f\x36\x53\x8b\x2e\xc4\x0b\x7a\xe8\x36\xa8\x65\x29\x2f\xaa\x66\x33\x24\x6c\x25\xbb\x10\xd7\xca\x8b\x7d\xb4\x9a\xe1\x2c\x27\x74\xf3\x22\xa5\xc7\xdf\x72\x76\xa0\xcb\x2f\x79\x38\xaa\xe0\x0d\x37\xa7\x61\x79\xf7\x64\x31\x7b\x19\x23\xef\xda\xd3\x22\x79\x0c\xb2\x85\xac\x14\xfd\x31\x45\xf6\xc2\x68\x6b\xf3\x01\x2a\x4e\x9f\x0b\x97\xdb\x7b\x40\xe3\x81\x7c\x7e\x4a\x4d\x17\xb0\xce\xe9\x5a\x59\x7b\x2e\xc2\x95\xac\x73\x76\x38\x3a\x0f\x77\xb8\xdb\x73\x31\x9a\xf4\x9b\xae\xc3\xb0\x0a\x17\x3e\xd1\xe1\x11\x3e\xf9\x30\x6c\x37\x58\xa3\x7f\x5f\x18\x2d\x94\x2f\x28\xa8\xd9\xe2\xec\xcb\x36\xbd\x70\xba\x99\x1b\x0f\x32\x86\x8c\xbb\x4d\x78\xd2\x5a\x4d\x33\x92\xc7\xf3\x13\xe5\xf1\x5d\x92\x25\x06\x4b\xf6\xb5\xb8\x20\x12\x4b\x0c\x4c\x81\x45\x0a\x92\xce\x29\xa6\x73\xb1\x25\xe0\x7e\x50\xea\x68\xcb\x12\xce\xcc\x77\x25\x13\xe7\x79\xc3\x99\x89\xac\x0c\x38\xa9\x63\x26\x29\xf2\x50\xcc\x15\xc0\x54\xc3\x29\xa1\x98\x2e\xab\x06\x61\x2d\xbc\x8d\x86\x81\xf1\x9f\xc4\xb4\x52\xc5\x08\xac\x17\x37\xd3\x92\xef\x62\xb4\x0c\x64\x51\xf9\x36\x09\xca\x4a\x79\xdd\x0d\x40\xf0\xb2\x9b\x36\x5e\x85\x80\x84\xb3\xb7\x2c\x8e\x13\x52\xb7\xda\x35\xf8\x12\xf4\x7d\xb8\x9f\x10\xd0\xd7\x61\xa7\x36\x87\xb8\xe7\x14\x9f\x7d\x92\xd9\xda\xbd\x44\x47\xae\x27\xf8\x63\xc6\x92\x77\xd2\x18\x72\x5a\xa5\x5f\xf9\x58\xf4\x9d\x3d\x86\xc7\x44\x9e\xe0\x17\x3f\x90\xb6\x00\x92\x3d\xbd\xb1\xfe\xe9\x8a\x1e\xc0\x78\x66\x7d\xb3\x93\xdf\xfc\xf8\x78\xfd\x13\xbf\x34\xfe\x70\x50\xa2\xb3\xf6\x36\xf8\xab\xcb\x16\xe7\x75\x0c\xa5\xde\xc7\x27\x2a\xd2\x19\xb4\x6c\x5b\x72\x1c\xd0\x86\x48\x91\xd1\x0d\x28\x17\x1f\x1f\xe4\x56\x4d\xf6\x66\x1c\x81\xd8\x4e\x26\x7d\xea\xcd\x52\x67\x92\x86\x85\x50\x48\x01\xb4\x03\x0c\x4a\xb6\x8f\x70\x9b\x21\x1b\xc0\x4a\xbc\xdb\xa9\x63\x0c\x99\x89\x2f\xa4\xe1\x51\x53\x19\x1d\x1e\x9b\x17\xde\x0d\xc9\x4f\x6c\x6c\x5d\x12\xf9\xaf\xd9\x5b\xec\xac\x5a\x9b\xa3\x68\x53\x33\x72\x5b\x53\xe1\x0a\xbe\xd4\x8b\xf9\x43\x1d\x11\x6a\xfa\xa0\x48\xea\xe9\xc9\x07\x45\xf2\xa2\xf9\xab\x22\x59\x51\x14\x07\x23\x11\x16\x7d\x1f\x8b\x61\x99\xbf\x19\x92\xba\xfa\x05\xcf\x86\x2c\x8f\xdc\x54\x9f\xfe\xec\x50\xdf\xe7\xfa\xdc\xe6\x9d\xfb\x82\x07\x44\xa6\x61\x81\xbe\x40\xb5\x5e\x6a\x4b\xee\xf5\x17\x1b\xf0\x39\x47\xe8\x56\x6f\x36\x2b\x8a\xaf\x58\x3b\x3b\x0e\xf8\x88\xf6\x2f\xf8\x2d\x6e\xf0\x9b\x40\x38\x9e\xd6\x05\x07\xd6\xa2\x44\xbe\x71\x7c\xc1\x5e\x78\x94\x88\x77\xa1\xd0\x4a\x74\x27\x75\x87\x1a\xcd\x85\x78\xa2\x37\x1b\xba\x17\xf5\xca\xe2\x73\x6b\x94\xb3\xa2\x22\xa0\xd9\xd6\xf0\x0b\xdf\x17\x41\x67\x9d\x9d\x3d\x50\xa1\x1b\x48\xc9\xc0\x5c\xdf\x69\x8f\xa1\x29\x01\x0c\x3e\x30\x38\x65\x06\x31\x1a\x0c\xbd\x15\x60\xde\xd3\x67\x0e\x05\x28\xe3\xd5\xe4\x60\x36\x3f\x6b\x63\xbc\x28\xd4\x28\x93\x41\x1d\x67\x68\x80\x3b\x6b\x91\xff\xa0\xca\x98\x40\xf2\x78\xfd\x67\x6d\x34\xe6\x25\x08\x26\x34\x32\xd5\x5f\x5e\xbc\xa2\x4f\x0c\x25\xc9\xb1\x44\x30\xc2\xe6\x53\xdd\x31\xbd\xf9\xad\xc1\x1e\xe3\x55\xa9\x36\xc4\xd1\x82\x3c\x91\x25\x67\xb7\x69\xf2\x18\x9b\x84\xc3\x5b\x5b\xef\xa5\x39\xc6\x7b\x76\x37\x76\xaf\x58\x5d\x06\xb5\x9a\xde\x8b\xde\xd9\x43\x76\xf5\xc8\x5a\x01\x45\x18\x2a\x10\x24\x98\xae\x00\x6d\x15\xc2\x8a\xae\x96\xc2\x8b\x86\x3c\x8a\x0b\x4b\xbc\x98\x56\x29\x83\x44\x88\x76\x90\x1b\xbc\x09\x02\xff\x63\x6a\x3f\xa8\x54\xec\xcd\xa0\x1e\x4d\x8b\x39\xcf\x53\xea\x06\x7f\xc4\x74\xbe\xc9\x01\xff\x62\x9a\xdc\x91\x17\x71\x1a\x99\x34\x62\xe1\xd2\x91\xb7\xe2\xcc\x71\x18\x32\x5e\x88\x93\x0a\x71\x15\xd4\xe8\x6d\x7a\xc1\x6b\x42\x5c\xd9\x56\x15\x7d\xcd\xaf\x88\xe0\x93\x49\x6e\x27\x22\x7d\xf0\x10\x9e\x9e\x43\xe9\x07\xdb\x8e\x8d\x5f\x15\xed\x2e\x4a\x93\x00\xa7\xc2\x6c\x14\x9d\xdd\xa2\xe2\x89\x71\x23\xc9\xbd\x6e\x34\xad\x1a\x9c\x27\x77\x58\x99\x71\x5d\xbd\xef\x07\xb2\xf2\x06\xf4\x5e\x6e\xe3\x73\x2d\x72\x4b\x97\xdf\x53\x1e\x1a\x2d\xc3\x5b\xb4\x45\x99\xb8\x31\x07\xcf\xd9\x2c\xf8\x9c\x97\x5b\x94\x7c\x9b\x3c\xd0\x2f\xa8\x03\xd6\xd0\x5e\xec\x76\x59\x03\x8a\x1d\x27\xa4\xce\x77\x99\x90\x53\x7a\x87\x67\xd3\x82\x97\x33\xc7\x5b\x8d\x39\xa0\xa2\x92\xfe\x75\x4d\xbf\x56\xab\xd5\xc2\x6c\x9a\x3f\x28\xd4\x0f\xea\xd1\x74\xac\x33\xf8\x48\x80\xbf\xa8\x87\x5d\x27\x7a\xab\x8d\x17\x74\xdb\x41\xfa\x62\xa6\x04\x23\x37\x0f\xad\xb6\xe6\x11\x6e\x5f\xa9\x19\xd3\x3b\x3e\xb1\x3a\x9e\x28\x69\xca\xcc\x66\x3b\x3e\x75\xc2\x2b\x05\xaf\x4f\x94\xcb\x05\x67\x4f\x5a\x30\x78\x8f\x69\xb6\xd0\x48\x3c\x4e\x50\xe5\xe1\xe6\x02\x30\x6d\x85\x9c\x95\x0e\x45\xa6\x30\xcb\xbb\x5f\xa8\x67\x7a\x5f\x02\xdf\x87\x74\xbd\x35\xf1\x9c\xd0\xcb\xed\x3d\x7b\xdd\xac\xb6\xfc\xb0\x8d\xaa\xf8\xcc\xe6\x36\x5d\x03\xe5\xed\x8b\x0c\x0f\x8b\x20\xc0\x41\x79\x8d\xcc\x44\x90\x19\x2e\xbe\xad\x96\xad\xab\x30\x0f\x30\x3d\x95\x08\x91\x02\x70\x63\x0e\xbf\xab\xea\x83\x1d\xb6\x1f\xd3\x83\xf9\xf1\xec\xa5\x38\x3e\x41\x13\x1f\xc0\xc4\x07\x6e\x4f\x00\xa6\x47\x6f\x13\xc6\x30\x81\x9f\xc1\x32\x2d\x5d\x13\x00\x80\x0c\xac\xf8\x38\x0a\xfb\x41\xf3\xfb\x28\xab\x10\xdb\x9b\xde\xea\xe6\xeb\x41\x79\x75\x14\x72\x3b\x5d\x3a\x79\xcf\xb1\x7f\xd8\x3f\xf9\x42\xbc\xc1\x1f\x95\x36\x77\xda\x83\x5c\xb1\x57\xe4\xdb\xf4\x02\x13\x70\x1f\xb2\x46\x55\x85\xf3\x6f\x85\xb1\x67\xeb\xe0\xf8\x7b\x11\x5c\x80\x39\x7d\xf2\xa4\x75\xf1\x04\x75\x16\x50\x15\x1f\x87\x2f\xee\x34\x01\x72\xa4\xca\xc2\x6d\x47\x80\x8e\xec\x11\x4a\x22\x09\x31\xf5\x3e\xe8\xe2\xf1\x11\xe0\x0e\x63\x08\x23\x86\xb8\xf0\x3a\xbf\x21\x45\x0c\x27\x15\x3e\x58\x6f\x8a\xf8\x26\x6e\x95\xaa\xc9\x78\xcd\x8e\xae\x42\xa6\x62\x20\x34\xa2\xff\xec\xcf\x04\x5f\x04\xe0\x67\xdb\x97\xa4\xc7\x83\x28\x59\x74\xea\x4e\x75\x85\x31\x0c\x11\x81\x86\xf0\xf3\x89\x27\xb7\x5f\x4f\xe7\xc6\xbf\xf0\xaa\xc3\x1c\xc7\xbd\xef\x3a\x20\xba\x44\xd0\xac\x31\x38\x0e\x27\x1a\x51\x65\x1e\xb8\x5f\x75\x9b\x69\xf9\x81\xe8\xfc\x84\x62\xf2\x52\x74\xcc\x5a\x7a\x32\xfa\x94\x3f\xc0\x7d\x2e\xca\x25\x68\xc6\xcc\x0a\xc2\x45\x4c\x5f\xea\x3c\xc0\x9e\xcf\x76\xd8\xfe\x7b\x8e\xcf\xc5\x0b\x58\xb3\x56\xcf\x5e\x35\x2e\x1a\xfd\x75\xaf\x1b\x9f\x74\xb6\x29\x38\xcc\xd4\xb8\x33\x7b\x72\x0b\x3b\x78\x6f\x91\xf2\x01\xae\xbc\xc1\xf1\x8c\x26\x73\x76\xe1\xf3\x71\x7a\x7a\x8b\xce\x69\x3f\xff\xfe\xd6\x09\x27\x89\xfb\x1e\xe2\x9a\xb6\x12\x38\x53\x0c\x16\x96\x37\xf2\xde\x12\xb9\x34\x63\x27\x07\xee\xff\xfa\xe3\x5c\xcb\x87\xeb\x97\x6d\x1b\xac\x7c\xfc\x16\x4f\xa0\x5f\xb2\x24\x6e\xb2\x10\xbb\xd3\xa7\xd7\x12\xe5\x50\x6e\xe5\x4b\x3e\xc5\x7c\xab\x98\xd7\xaf\xf8\xff\x4e\xf7\x75\xf1\x20\xd7\xcb\x98\x9e\xbd\xcd\xf5\x43\x2c\xc6\x16\xa0\xf0\x5a\xe9\x24\x3d\xf1\x57\xbc\x69\xdb\xd3\xeb\x58\x09\x88\xbe\xe9\x2d\xe5\xa5\x9c\x69\xf9\xb2\x0e\xfa\x5f\x0f\xb6\x53\xb1\xa1\xe2\xad\xed\x54\x6a\x5e\x19\x2a\xab\x2c\x18\xcb\xc4\x74\x36\x17\x84\xd7\x91\x62\x3a\xbe\x7b\x17\x9e\xc6\x8b\xa9\xbc\xc7\xe6\x81\xcf\x51\x1e\x67\xec\xa8\xde\xfc\x30\x85\x36\x18\x61\x98\x77\xe3\x57\xf6\x50\xd1\x56\xbc\xc2\x58\x5c\x17\xe2\x3f\xad\x36\x9c\x52\x56\x4a\x69\x20\x19\xa5\x90\xfc\x6f\x41\xc7\xa2\x57\x11\xe7\xf9\x93\x47\x77\x70\x27\x8a\xcf\xed\xf0\xe3\x8c\x28\xd8\x73\xc4\x37\x43\x1e\x08\xe5\x73\x31\x84\x75\xf2\x12\x00\xdd\x43\x2e\xea\xcd\x21\xbe\xa4\x62\xbc\x63\x3a\xad\xee\x3c\x98\xbe\xd1\x1e\x17\x6f\x1c\xa9\x7d\x68\x07\x7a\xa5\xa6\x76\xe0\x55\xd7\xb2\x1d\x39\xc4\x97\xb4\x03\x6a\xc1\xe8\x42\xc1\x5b\xfb\x64\x7b\x64\x1b\x1e\x03\x2f\x9c\xe7\xa6\x4d\x4c\xcf\xbe\xbc\xcb\xf6\x7f\x74\x40\x6c\x27\xf2\x8c\x5b\x2d\x6d\xa9\x94\x43\xfe\x62\x0b\x22\x07\x39\x03\x2f\x3e\x17\xfa\x79\x26\x80\x61\x9c\xa0\x64\x04\xcd\xdc\x7c\x8b\x60\xdc\xf3\x7d\x89\xda\x95\x44\x44\x94\x15\x98\x37\x70\xe6\xe7\xb7\x64\x82\x0b\xaf\x51\x90\xbc\x98\x6f\x2a\x28\x30\x86\x91\x6c\x11\xa2\x8e\x6b\x15\x16\x58\x56\xeb\x1c\x59\x64\xe6\x08\x15\x99\xf8\x1c\x2e\xac\xd8\x5c\xda\xcb\xce\x61\x14\x1e\x37\x15\xd7\xe0\x02\xd4\x5e\x1e\xa7\xcf\x5d\x82\x88\x5d\xae\x9a\xd3\x8a\xd5\xbc\x29\x69\x5f\x7f\xa6\xef\x94\x49\x13\xe6\xa4\x72\xb5\xca\x97\xfa\x7c\x82\xa4\x69\xb7\x1d\x30\xc2\x55\x18\x6b\x60\x16\xd9\x54\x40\x84\x3f\xc4\x5e\x36\xd2\x4c\xb9\x01\x3a\x57\x29\xb9\x7f\x78\x1f\x53\xf8\x8a\x06\x20\xdb\xb8\xbf\x05\xc8\x16\x28\xa6\xa2\x69\x73\x16\x70\x5f\x43\x68\xcd\x7f\x45\x43\x90\x6f\x7c\x61\x43\xce\x43\x2b\x48\x3a\x01\x2e\xb0\xb4\xfe\xef\x6b\xdf\x44\x7d\xc2\xc9\xf9\x36\xd7\xa1\x02\x33\x40\x9f\x40\xd4\xef\x16\x7d\x02\x33\x33\xf5\x6a\x35\x5d\x25\x99\x53\x63\xb6\x52\x32\xff\xe9\xd0\x16\x74\x5f\xe4\x7b\x26\xbc\xcb\x25\x54\xc6\x1a\x7a\x4e\xdc\xf8\xfc\x2e\x4a\x86\x9c\xcf\x84\xfc\x70\x64\x49\x07\x5f\x52\x29\x1e\x08\x4b\x8f\x3d\x91\x26\x88\x7e\x42\x83\xf3\xab\xaa\xfa\x80\x63\xf5\xb1\x6a\xa5\xdb\xad\xad\x1c\xf0\x3c\x22\xfc\xae\x8a\xcb\xb0\x55\xf1\x50\xed\x44\x42\x73\xd5\x84\xa8\x05\x3d\xe5\xe8\x77\xa0\x04\x46\xed\xe1\xb2\x48\x70\xf4\x76\xeb\x36\x88\x88\xdb\x91\x23\x2b\xb0\xdb\x33\x5e\xcc\x74\x5e\xed\xc5\x2b\x4a\xa8\xf6\xd6\x68\xf2\xb0\x7c\x49\xbf\xb4\xd9\x56\x45\x78\x90\xa7\xf0\x41\x6f\x82\x73\xca\xb5\x74\xbe\xf2\xd6\xe3\x2b\x70\xef\xe0\xff\x0f\xe2\xac\xad\x52\xd7\xd1\x16\xae\x9d\x47\xe1\xe9\x26\xfc\x76\x19\x40\x72\x90\xa2\xe8\x46\xfc\x91\xa3\xc0\x76\xa2\xe9\x7e\xcc\xda\xcd\xad\x44\xac\xa3\x5b\xaa\x32\x04\xfd\x40\xcf\xa2\x56\x7a\xb9\x0e\x46\x9d\x1f\xd7\x68\xab\x5d\xff\x44\x06\xcf\xf3\x2c\xa1\x18\x91\x3c\xa3\x38\x05\x4c\xc9\xe5\x5e\x9a\xd2\xe9\xdd\xc5\x22\xc9\x79\x59\xd6\x25\x9b\x59\x2d\xe1\xe0\x26\x4f\x0b\x9e\xee\x29\x25\xf8\xbc\x17\xd8\xcb\xd7\xca\xf3\x2c\xba\xdc\x51\x24\xd1\x45\xa2\x49\x4f\xc8\x9c\x9c\xa7\x75\x76\xab\x8d\x20\x13\x75\xd9\x3d\x16\xd8\x4b\x9c\x21\x78\x4e\x81\x02\x23\x9a\xe6\x29\x78\x8a\xee\xa5\x2b\x4b\xe3\x02\xcd\x13\x38\x28\xc5\x0c\x30\x85\xce\x74\xab\xa5\x89\x14\xf4\xf0\x38\x99\x48\x19\x5f\x82\x74\x07\x4d\xef\xde\xdd\xe0\x8f\x45\x98\x61\x44\x63\xe5\x68\xb2\xdc\xa6\x53\xd2\xd4\xfc\xa0\xbb\xe5\xd7\x23\xaf\x20\x31\x3c\xde\x2e\x5e\xe3\x7a\x74\xf7\x16\xca\x36\xc6\xcb\xae\x13\xfc\x60\x3c\x97\xcc\x2e\x95\x2c\xef\x90\x09\x33\xef\xb5\xec\x33\x28\x93\x82\xe8\x92\xe8\x21\x31\x6c\x1f\xbb\x79\x84\xec\x2f\xc2\x31\x69\x65\x82\x88\x68\xbe\xbe\xa9\xb8\x01\x00\xc3\xd7\x77\x6a\xd2\xc8\xf2\x55\x6d\x06\xf9\x0c\x86\x49\x13\x17\x51\x7c\x7d\x23\x71\xab\x35\x5b\xda\x76\x4e\x34\xf2\x88\x2f\xfe\x0f\x2d\x6b\xae\x9d\x75\x1e\x6d\xcf\xf4\xda\xda\xfd\x28\x4f\xb5\xfa\x5e\x9c\x5f\xd1\x8d\xad\xf6\xf5\xb6\x49\xcd\xb7\x62\x2b\x87\x35\x70\x6e\xd8\xdd\x39\x16\x89\x35\xa5\xad\x73\xb9\xf8\x7d\x04\xc6\x06\xb5\x20\x4c\x2d\xa0\x3f\xd5\xb6\x41\xe1\xf5\x7f\xd9\x75\xb5\x73\x3b\xf6\x34\x78\xab\xe8\x74\xe6\xe1\xca\xb9\xdd\x63\xc9\x0f\xb1\x2a\x3c\x93\x77\x0f\xe9\xc1\x83\x6f\x1b\x89\xf7\x5b\x7f\xc0\x88\x1b\xc8\xda\xb1\x74\x10\x6d\x81\x5a\xdf\xdd\x5b\xd1\xa4\x2f\x19\x5f\xcf\x68\x3b\x60\x53\xbc\xfa\xa2\x1e\x84\xf8\x0a\x6f\x31\x89\x4f\x7e\x1a\x85\xee\xbb\xcc\xc5\x50\xd4\xb3\xce\x87\x0c\x76\x21\xb6\x9b\xd9\x9c\xbf\xa7\x8a\x7b\x46\xe1\xe1\xd7\xd4\x9a\x77\x93\x1f\x0d\x3e\xdd\x4b\x6d\xb4\x9f\x2d\x85\xb7\x98\xcc\xef\x3f\xff\x4b\x0b\x62\x09\xf1\xbf\xbb\x20\x86\xac\x55\xd3\x2e\xe5\x02\x02\xbe\x3c\x5b\x8f\xbd\xd7\xb8\x51\xdc\xd0\x4b\xb4\xef\xf1\x3b\x67\xd8\xe3\x30\x80\x90\xb8\xb5\x83\x1d\xbd\xa6\x07\x60\x28\x4d\x3c\x0b\x69\x6e\xa1\x00\x1e\x75\x1c\xeb\x91\x43\x9a\x85\x32\x2f\x31\x59\xbc\xc7\x17\x7c\x52\x29\x94\x9f\x42\x19\xd9\xa1\x41\x98\x2c\xd5\x28\x58\x71\xa9\xcb\x90\x91\x95\xe4\x32\x76\xed\x25\xc7\xa9\x62\xe0\xd7\x9c\x92\xc1\xe2\x01\xa3\x1a\xea\xce\xda\xdb\xb1\xaf\xa1\xab\x18\x7f\x84\x92\xc5\x35\x26\x8b\x77\x90\x3c\xaf\x21\xb4\x2a\x16\x9b\x34\xea\x54\xb9\xcd\xa0\x66\x65\x9e\x0e\x6a\x0e\x1f\x28\xb7\x53\xb2\x9f\xd1\xed\xb9\x92\xfd\x8c\x6a\x08\x39\x27\x00\xc2\x9e\xa6\x42\x5e\x4a\xb7\xa8\x47\xe7\x25\x5e\xb4\xdd\xa9\x3a\x34\xba\x25\x4d\xe1\x0d\xc8\xf1\x27\x4a\xb0\x3c\x35\x6d\x15\x1f\x0a\xce\x5a\x65\xd7\x7f\x53\x8d\x77\x01\xfa\x35\x7d\x66\x50\x6b\x6b\xbd\xf3\x83\xec\x41\x14\x46\xf7\x67\x22\xd3\x2f\x21\x1d\x44\xe1\xe6\x76\x46\x29\x82\x9e\x93\x8a\xa0\x4f\xd3\x6a\xef\x7a\x69\x6a\xe7\x87\xb1\xf1\xe3\xa0\x5c\xac\xf0\xe5\x4d\x2f\x8d\xb8\x89\x19\xb3\x1a\x67\x25\xf3\x19\x3a\x2d\xbc\x54\x73\x23\x9b\x9d\x5a\xac\xfa\x0a\x72\xee\xad\x7b\x56\x36\xaf\x7c\x56\x7c\x69\xa5\x0c\x76\xa3\x3b\x60\x4a\xeb\xb1\xb9\x55\xbe\xde\x49\xb7\xab\xd1\x1b\x24\xc7\xf5\x26\x80\x89\x5f\x10\x4c\x3c\x97\x6e\x27\xde\xa1\xd1\x6d\x01\xeb\xb6\xa9\xf7\xca\x4b\xf4\x5e\xca\xb0\x3c\xbb\x12\x2f\x39\x79\xa9\x14\x1a\xe3\x6a\xd6\x80\x78\x15\x82\x50\x9a\x61\x78\x8d\xf6\x3a\x56\x8a\x2e\x23\xc8\x12\x36\xa3\x3e\xf1\x96\xde\x1c\x1b\x7e\xbd\xf6\x93\x87\x36\xbc\xa5\x94\x0c\x16\xd5\xbc\x6d\x53\x07\x1e\x89\x0e\x2c\x18\xfd\xef\xd9\x15\x2e\xdf\x19\x07\x4b\xc0\xc4\xb8\x9e\x5d\x89\x37\x72\x74\x8b\x80\xbd\xa4\xc5\x74\x12\x32\x54\x1f\x00\x43\xcd\x53\x38\xae\xd4\x11\x29\x89\xad\x90\x8e\xbd\xc2\x8b\x87\x7b\x69\xe4\x56\xd5\xbd\x24\x7f\x52\xd0\xba\xc5\x4b\x4c\x13\x6f\x20\x8d\x61\x8d\x3a\xe4\x87\x2a\xe9\x74\xf7\x92\x12\x03\x18\x69\x16\xa8\x4f\x50\x4a\x90\x85\xdb\xe0\x3a\x8d\x2c\x9a\xf3\x8a\x68\x85\x94\x96\x36\xd0\xde\x3a\x4e\x0b\x51\x64\xe3\x4b\x3f\x9c\x8e\x57\x00\x06\xb5\xd5\xce\x73\xd4\x00\x8c\xd6\x8a\xf7\xcb\xde\x62\x72\xd0\x6f\xf2\x1b\x83\xef\x2c\xf6\x32\xeb\x58\xe9\xcd\x18\xba\xf9\xf9\x48\xb6\x2b\xc6\x91\xbf\x2a\xc1\x3d\x43\xe5\x25\xb8\xf3\x95\x96\x87\xe0\xd6\x47\x90\xe1\x89\xf8\x6b\xf8\x9f\x97\x46\xcd\x32\xa8\x6a\x13\x0c\xd7\xa8\x75\x66\x54\xee\xa5\x73\x07\xf4\x56\x0e\xd6\x6e\x3c\x2f\x10\xda\xf3\x35\x27\xb4\xb6\xa3\x4f\xf1\x68\xd8\xa9\x2c\xb4\x3e\x45\xe0\x62\x9f\xb7\x28\x62\x30\x21\x38\xe7\x73\xe7\x8a\x89\x16\xd9\x4c\x41\x87\x98\x72\x8e\xec\xe5\x27\x7e\xb1\x1c\x48\xca\x81\x6e\xe5\x27\xbd\x1f\x73\x53\x15\x0d\x35\x76\x56\xef\xf5\xc9\xb2\xc1\xcc\xf7\xed\x8d\xf2\xe2\xd1\xf7\xf8\xf2\xa1\x53\x62\xdb\xd9\x35\x06\x2e\xa4\xe8\x8b\x1d\xa0\xf8\x8e\x71\x68\x57\xe7\x93\x12\x0d\x84\xa1\xc1\xf8\xb3\x9c\xa4\xfd\x60\x77\x7a\xad\x3d\x0d\xc8\x42\x81\x00\x10\x1e\x22\xdb\xc6\xb9\x0c\x35\xf1\x14\x2f\x0a\x61\x0c\x17\xc8\xa0\x19\x6a\x87\xcc\x7d\x20\xcc\x79\x3c\xa8\xaf\x41\xc5\x60\x9f\xfa\x19\x86\xac\x4c\xf6\x86\x1b\x88\x7d\x14\xe0\x2c\xc7\xa3\xf7\xbd\x1d\x7c\x1d\x26\xdb\xe7\x70\x11\xb8\x20\xf0\x42\xf6\x5e\x9a\x32\xc9\xc4\x1f\x66\x0c\xb1\xfe\x30\x39\xef\x3d\x41\x2e\xe7\x06\x46\xcf\xaf\xed\xc1\x24\xc3\x63\xd6\x52\x8a\xad\x0f\xed\x4d\x37\xe9\x2d\x48\xa6\x20\xf3\xe2\x23\x55\xa0\x64\xe5\x71\x11\x62\x28\x93\xf4\xaa\x92\x1d\xe2\xa5\x7b\x72\x50\x67\xb3\x64\xde\x80\x9d\x74\xec\x7c\x73\xa2\xfe\x74\x4c\x8a\xf1\xd5\xf2\xea\x73\xfb\x58\xd9\x00\x3a\xca\xb3\x43\xee\x94\x55\xda\x37\x8b\xa6\x2c\xf8\x5d\x5d\x66\x43\x76\x9f\x53\xb1\x1d\xf8\xb2\xf8\x84\xbb\x17\xe7\xdb\x05\x97\xc7\x12\x39\xf7\xc6\x84\xd2\x3f\x08\x93\xd2\xd9\x4f\x38\xf6\x21\x2b\x2c\x32\xee\x69\x7d\xd9\x72\x2e\x6a\xa3\x12\xe5\xa9\x2c\xa5\xe5\x4d\xa0\x94\xf9\xe9\x30\xa5\xb3\xfd\x50\x5c\x88\xbf\xd0\x2f\x4e\x47\x23\x22\x49\x6f\x43\x48\x9b\xbe\xf3\x8f\xc6\x61\xe6\xb3\x93\x26\x4f\x38\x6d\xd1\x6c\x2a\x45\x91\xf0\x43\x5c\x05\x66\xe6\x9c\x95\xb5\x9e\x52\xf2\xa7\xf2\x28\x45\x61\xa4\xaa\x36\xc6\xac\x6a\x39\x7d\xee\xcd\x95\x35\x92\xd1\x4c\x1a\x97\x61\x45\xa8\xe5\xcd\x22\x6b\x8d\x53\xcd\x38\x68\x7f\xc4\x70\x8b\xb6\xb1\x1d\x5d\x4b\xc4\x34\x8c\xb4\x08\x69\x0c\x3b\xbd\x82\x42\xa9\x78\xc1\xfe\x42\x3c\xb7\xce\x73\x4a\x4f\x8f\xe5\xbd\xb1\x43\x48\x41\xfb\x5d\x8b\x8e\xd6\xda\xb4\xe2\xc9\xab\x3c\x3d\xec\x54\x21\xf7\x0d\x7f\x2f\xc1\x64\x7e\x59\x72\x30\xda\x6c\x7f\xe0\xd7\x2b\x02\x0e\x7c\x6f\xc3\x0e\xe4\x20\xdd\x77\xd0\x5e\xaf\x3e\x79\x3c\x7b\x33\xd6\xf3\x4b\x96\x3b\xbd\xdd\xa1\xd3\x81\xee\xd4\x96\x7c\xff\x61\x15\xad\x02\xe1\x41\x0c\xe2\x47\x79\x50\xfc\xe1\x93\x96\x5f\xa4\x53\x39\x08\xf6\x08\x01\x62\x8f\xa4\xa7\x70\x62\x6a\xe9\xaa\xa5\x88\xb9\x27\xa1\xa7\x4f\x8c\x22\x83\x88\x1b\x36\xb4\xde\xe9\xad\x79\xa4\x31\xb8\xfd\x9e\x1f\x95\xa7\x1b\xcb\x45\xd8\xb4\xd5\xac\x86\xe0\x6a\x85\x51\xca\x3f\xd3\x1a\x37\x86\xa6\xdf\x8c\x9f\x6b\xf9\x5e\x6a\x8c\xbe\x87\xff\x4f\x82\x39\xd0\x06\xd7\xfc\x80\xaf\xf2\xcd\x2e\x81\xe2\xad\x70\x9e\x17\x74\x6b\xe5\x53\x98\x37\x14\x31\x3d\x10\x99\x22\xa6\x07\xcc\x78\xba\x17\x01\xe8\xcc\xbf\x80\xd8\xc3\x5e\x5b\x3b\x09\x8c\xc9\x89\xcb\x56\xdc\x5c\x86\x49\xbf\xf7\x7d\xcd\x26\xe8\x9b\x97\xef\xde\xdc\xb3\x8a\x00\x94\x67\x38\x42\x66\xd3\x1c\xb2\x78\xaa\x63\x56\x36\xdf\x43\x34\x0e\x5a\x31\x6c\x9c\x41\xaf\x3c\x5a\x3a\x6e\x19\xee\x3e\x59\x0d\x26\xef\xa0\x9c\x1f\x74\x43\xcf\xbb\x72\x99\x95\x78\x39\x76\x5e\xf7\x9d\x0a\x29\xc1\xd1\x10\x6f\x14\xf7\x72\x08\x0f\x61\x36\x76\xbf\x97\xe2\xe1\xf9\xc3\x55\xc1\x77\x6a\x8f\x4f\x0e\x73\xb8\xbc\x77\xd7\x37\xe2\x57\xd3\x0c\x47\xf2\x47\xe0\x9e\xde\xea\x1e\xc0\xea\x3b\x35\xb0\x40\x7d\xab\x7b\x84\xfd\x33\xa6\x84\x85\x2f\xf7\xb5\x53\xc3\x9d\x6e\xe2\x74\x7b\x73\xf9\x12\x8d\x45\xba\x51\x39\xdb\xe1\xaa\xf1\x7d\x98\x20\xae\xa7\x46\x5c\x8e\xde\x16\xe2\x7a\x60\x9d\xba\xc7\xbd\x47\xf7\x81\x80\xf9\x63\x11\x53\x99\x9a\x9c\x0b\x02\xa5\x67\xf2\x5d\x09\x5d\x88\x79\x91\xab\x4f\xf5\x80\xb2\xcc\xe7\x6e\x36\xad\x0a\x3e\x9e\x6f\xda\x25\x9e\x2f\xf4\xd2\xcb\x91\x65\x02\xd6\x7d\xbd\x5e\x0c\x9e\x55\x96\x28\x20\x6b\xda\x5a\xd8\x5d\x62\x82\x3a\x3a\x4e\xcc\x4b\xe4\x27\xeb\x73\xc2\x2e\x78\xbf\xdd\xe3\xf1\xc6\x53\x0e\xa5\x2e\x1d\x2f\xb6\x9d\x40\x4d\xf2\x17\xc2\xac\x8f\xe4\x72\xc1\xc7\x93\x7c\xd6\x9c\x44\xbc\x14\x1f\x50\x39\x86\xca\xc3\xe0\x91\x2c\x8f\xbb\x2a\xcb\x5c\x59\x37\x27\x32\x57\xd9\x8c\xcf\x88\x5e\x84\x86\x74\x37\xbe\xb8\x12\x9c\xdd\xaf\xb3\xa3\xc2\xa5\x07\xea\x57\x15\x1f\x49\x07\xfb\x6b\x3c\xa0\x66\xfb\x6b\x79\x4e\xcd\xb0\xb2\xef\xe3\xbe\xdf\xf7\x5d\xb1\xe9\x67\x20\x77\xc4\x37\x33\x88\x3f\x73\x30\xc3\x0c\x88\xe2\x00\xe4\x40\xef\xdf\x5e\x07\x80\xa9\x3c\xc0\xc9\x76\xb3\xe9\xb4\x51\xf5\x9e\xae\xe7\xbc\xa6\x4f\xf1\xd2\xb6\xb1\x7e\x8e\xab\x51\x0f\x76\x24\x03\xeb\x36\x8b\x90\xfe\x16\x13\x81\x38\x01\x7c\x18\x71\x1e\x0c\x74\xa8\x48\xba\x7a\x96\xc5\x15\x41\x56\x5e\x09\x68\x4a\x1c\x9f\x91\xef\x73\x4f\x3a\x88\xa7\xde\x0d\x5e\xc5\xaa\x07\x6b\x7d\xdd\x4b\xda\x12\x30\x9d\x6e\x77\xbd\xb5\xd6\x8b\x37\xd2\xef\x42\xa1\xce\x6e\xe7\x25\xae\xed\xf6\x04\x38\x87\xb4\xa4\x65\x12\xfa\x40\x69\xd3\x79\x84\xdd\x8a\x6d\x73\xbb\x6c\xb4\x6f\x9e\x2f\x0f\x35\x40\xcd\xa5\xc7\x2c\x13\x44\x5f\x5f\x73\x70\xde\x9a\x66\x11\x4b\xc2\x5e\xfc\xc2\x31\x7b\x69\x32\xe5\xc5\x4e\x8c\x2c\x64\xe5\xc2\x5d\x96\xdc\xa1\x77\x48\xc8\xbd\xc6\xaf\x19\x50\x4e\xb2\x19\xa5\x00\xe0\x56\x1d\x6b\x0c\xde\xc3\x40\xff\xa5\x8e\x14\xb4\x67\x01\x70\x0b\xd5\x45\xb0\xad\x32\xe2\xdb\x87\xce\xed\x1e\x51\xd6\xc3\xef\x66\x65\x40\xbb\xde\x8f\x7b\xba\xad\xaa\x7f\x57\xf4\x78\x1b\x86\xd0\xc6\x0c\xac\xed\x46\xff\xae\xc4\x15\x64\xdc\x57\xd4\x2d\x94\x72\x55\x1a\xf3\xde\xa6\xc1\xcb\x0d\x18\x4b\x63\x88\xd0\x05\x65\x52\x81\x39\x91\xd0\x53\x30\x08\xff\x37\xf8\x45\xe2\x4a\x8e\x0d\xdf\x18\xa8\x93\x9a\xf4\x14\xdf\x1c\x08\xca\x12\x43\xee\xe5\xa7\x64\x33\x41\x73\x08\x59\x5d\xa6\x66\x16\x06\xef\xf1\xa1\xdb\x41\xb5\x75\xa7\x1b\x65\x1c\x3f\x36\xc1\x89\xe2\x9a\x13\xa7\x2b\x7c\xe7\x7d\x5f\x6f\x11\x77\x58\xdf\x18\xfc\xeb\x59\xc2\xcc\xb2\x00\x9a\x16\x90\x06\xf5\x5e\x6f\xe3\x23\x27\x2c\x12\xa0\x31\x0c\x49\x21\x5e\x86\xdc\x80\x80\xef\x0d\xd6\x1b\x90\x2b\x81\xf0\x74\x34\xd2\x1c\xd3\x0b\x87\x2c\x73\x5e\xa5\xbc\x38\x5a\xed\x3a\x8d\xd5\x93\xe0\xf1\xb2\x38\x52\xed\xba\x78\xe7\x3c\xa5\xe6\x2a\x50\x4a\xcd\x55\xbf\x94\xca\x3c\x20\xe7\x61\xed\xba\x76\xae\x0b\x6c\xec\xe6\xe6\xba\xe4\x95\x29\x37\xc9\x87\xdf\x82\xb0\xff\xa0\xb7\xce\x6f\x07\xe5\x1e\x08\x6b\xba\xe3\x77\x59\x09\x9e\x4a\xf9\xd4\xe1\xd4\x29\x0e\xf7\xf7\x4e\x7b\xf5\xc7\x07\x78\xf0\xf9\xc0\xeb\x76\xfd\xe0\xbb\x62\xdb\xd1\x78\xd3\x32\xdb\x77\x74\x73\x82\x3e\xd1\xee\xaa\x40\x17\xc8\x02\xe6\x86\x37\x2a\x48\x47\x60\xff\xfb\x92\xb4\x61\x43\x48\xb2\x60\xdc\x0e\x72\x39\x30\xb4\x6b\x67\x0f\x0c\xcb\x2e\x27\xf1\x01\x21\xbc\xa6\xfc\x36\xa0\xf9\x05\x93\x53\x03\xe9\xb9\x8b\xf0\x24\x32\xdf\x5f\x0c\xcd\xc3\x57\x90\x5f\x18\xba\x96\x1c\x57\x89\xee\x92\x1d\xf9\x25\xb4\x3f\x37\x1d\x4f\xdb\x3f\xe3\x2d\xa1\x17\xf7\xf3\x18\x5e\x02\x8d\xec\x7d\xb3\x93\x69\xd6\x5f\x51\x42\xdc\x91\x29\xb0\x48\x03\x53\xa1\x63\x37\x10\x0a\x3e\x82\xb7\x5f\xc5\x35\xfa\x7d\xc4\xce\x3a\xe5\x93\xe2\x5c\x14\x7a\x0b\x79\x51\xd1\xce\x0b\x87\xd2\x21\xd2\x54\x1c\xf9\x10\xf4\x63\x71\xe4\x31\x60\x5a\xdd\x29\xb3\xc5\x69\xf7\x27\xf8\x14\xd7\xf8\x19\x29\x44\xd1\x3c\xf0\xe8\xc1\x8e\x6c\xf3\x83\x14\x3c\x81\xb0\x63\xda\x28\x3e\xab\x6c\xe4\x63\x93\x0b\x45\x2f\xf1\x7b\xb9\x85\x0c\x7b\x72\xb3\xe4\xfc\xc8\xb6\x54\x67\x73\x96\xf5\xeb\xf5\xeb\x09\xe4\xc2\xea\xe6\x9c\x05\x6e\xc0\x39\x0b\x6b\x1f\x0f\x2c\x70\xcb\x63\x3d\x1a\x8f\x2a\x70\xcf\xc3\xd5\x12\xe0\x22\x48\xbd\xa1\xab\xc8\x17\xe2\x29\x14\xc0\x57\x93\x4d\x4b\xe1\xf1\x70\xdd\x41\x12\xc8\x92\x3f\x88\xb3\xbb\x79\x69\xc7\xcf\xc4\x27\xf0\xf4\x08\x1d\x07\x42\x83\xc2\x49\xf2\x24\xaf\xab\x48\x63\xf4\xb4\x5a\x26\x31\x41\xce\x29\x1c\xd9\x34\x9e\x32\x26\x1f\x4b\x3c\x57\x5c\xc4\x44\x90\xb2\x95\x3d\xb1\x02\x02\xbd\xa4\xef\x12\x08\x8f\xe2\xef\x64\x17\xa1\x5e\x70\xc2\xac\x56\x93\xd7\x69\xf8\x09\xa1\x34\x0c\xe4\x22\x9c\x31\x3a\xba\xba\xb7\x2c\x76\x31\x74\x3f\xd8\x3b\x1d\x7c\x71\x09\xfe\x0d\x27\xa5\x6d\x93\xbe\x13\xe6\x00\xc1\xa8\xd3\x26\x66\x6f\x75\x54\x9b\xaf\xf0\xab\x98\x5d\xcc\x23\x60\x51\x13\x6c\x62\x13\x37\xca\x73\x89\x28\xfb\x36\x91\x32\xe1\x84\xf1\xd9\x55\xa4\x0d\x1d\x46\x4e\x3a\xd3\xe9\x8d\x8a\x47\x97\xdc\x9b\x6b\xbd\x51\x05\x30\x6c\xe7\x2e\x04\xe8\x82\x8d\xfc\x46\xbc\x36\xdd\x71\xd2\x89\x1c\x15\xf7\x24\x61\x8a\x94\xd1\x78\x9e\x9c\x11\x86\x12\x96\x49\x1e\xa0\x79\x47\xca\xc0\x79\x4b\x9a\x72\xe2\xed\xc0\x77\xe0\xd2\x2a\x7e\xc6\x49\x13\x8a\x6e\x54\x8b\x81\x00\xda\x3a\x96\x60\xba\x3e\x0d\x39\xe2\x12\x73\x12\x7b\x04\xdd\x22\x36\x1c\x54\x8b\xc5\x46\x03\x54\x68\x0f\xc6\xd2\xd8\xe9\xed\x0e\x5f\xc8\xc8\x5a\x45\x21\x35\x8e\xc6\xcb\x4f\xe2\x79\xc8\xcf\x31\x80\xa0\x86\xa5\x41\x8d\x72\x2c\xa4\x61\xa9\x6b\x4c\xc0\x7d\x5c\x0a\xa7\xcd\xb6\xa3\x58\x12\xdf\x9d\x2c\x5e\x37\x3b\x39\xc8\x86\xdf\x44\x8a\x88\xae\x52\x6a\x89\x0d\xca\x2c\x63\x0b\x01\x2c\x22\x0e\x7a\x31\xfa\x5b\x52\xf3\x31\x84\x45\x51\x70\xdb\xd4\x72\xd8\xf2\xa1\xf3\xe5\xb0\xc5\x17\x18\x5d\x81\x1a\xe5\x3a\x95\xed\x10\x51\xd2\x9b\xee\x11\x04\x8e\x4f\xe2\xe4\xd0\x18\xe8\x9f\xed\x22\x0b\x25\xf0\xfa\x42\x56\xe0\x0a\xaf\x33\x24\x9f\xd7\x85\x22\x18\xc3\x2c\x95\xc0\xf0\x65\xf7\x16\xe0\xc3\x75\x02\x7f\x76\xb5\x00\x9c\x2b\x92\x71\x0a\x81\x02\xb9\x38\x85\x00\x8a\x05\x43\x80\x41\xc1\x30\xf8\x9d\xaf\x9a\x81\xe2\x25\xc3\xbf\x77\xd2\xdd\x46\x8f\xf4\xe2\xd8\x21\xa4\xb9\x66\xa7\xda\x91\x02\x75\xf0\xcf\x04\xaf\x3e\xf9\xe0\xdb\x80\xab\x34\x64\x60\x94\x07\x3b\xba\x10\xe6\x01\x7e\x16\x00\xea\x93\x6a\xc6\xcc\xcd\xe9\x57\xfa\x66\xbf\x82\x84\xc6\x86\xbb\x69\xa3\x31\xda\x6c\x81\x0d\x92\xdb\x76\x84\x59\x7a\xfa\x36\x34\x1d\xf5\xd5\xa0\xb7\x9e\xac\x3f\x56\x1f\xe8\x5d\x05\xdf\xfd\xe0\x11\xcf\x2f\x48\x76\x64\x7f\x99\xb8\xf3\x07\x58\x8c\x01\xd3\x62\xcc\x8f\x3a\xc6\x00\xc1\x60\x30\x04\xc9\xf1\x40\x22\x3c\xfb\xa4\xb3\x30\x66\x4d\xc2\xe4\x54\xa7\x1a\xbc\x92\x8d\x4c\x15\x3e\xc4\x65\x97\x4a\xb6\xaa\x80\x78\xc2\x9f\x05\x8c\x36\x64\x41\xa0\x2c\x52\x8a\x5e\x50\x1a\xa3\xcc\xee\x28\x04\xab\x1c\x01\x73\x5c\x27\xb4\x80\xdd\x70\xca\x14\x32\xd4\x8c\x40\x97\x5d\x37\xa3\x46\xae\xf2\xe4\x69\x18\x00\x3e\xbb\x48\x92\xf5\x69\x3a\x8c\x21\xcb\xf6\xe8\x63\xbe\x9a\xb5\x36\x9a\xd6\x78\x44\xc2\x8d\x8b\xcf\x39\xee\x56\x1f\x88\xf6\x1f\x43\xbc\x01\x3e\x23\x0e\xae\x19\x99\x3b\x64\x11\xa4\xed\x0c\x83\x8b\x55\x18\xf9\x90\x8b\x50\xb8\xc3\xd9\x4b\x2d\x4b\xc5\x06\x65\xb2\x47\x59\xe8\xab\xa8\xab\x78\xc6\xff\xfb\xf4\x5c\x7f\x81\xef\xc3\x1f\x3e\x02\x4a\x7a\xce\x5f\xfe\x54\xf1\xab\xab\x8c\x35\xbd\x96\x97\x95\xf8\xfe\xa3\x7b\xec\x86\xe6\xf1\xb4\xac\x90\x7e\x02\x06\x99\xff\x23\x21\xee\x25\x6e\xb4\xe1\x25\x70\x9c\xcb\x94\xac\x1d\xbf\x93\x4c\x66\xd1\xb3\x36\x44\xe1\xa9\x62\xe0\x7a\x6e\x51\xf8\x9e\x90\x95\x7a\xb9\xdc\xc5\x44\x32\x1e\x1e\x7a\xb6\xe7\x42\xfc\x46\x81\x1e\xf9\x19\x9f\xac\xc0\x63\x3a\x97\x7d\x4c\x45\xff\x03\x3b\x0a\x08\x7e\xab\xe8\xc1\xf0\x88\x80\x9f\x07\xff\x0a\x04\x14\x5d\x32\x61\x08\xd1\x26\xbf\xaa\x11\x74\x89\x24\x6b\x06\x25\xa8\x56\xa0\x3d\xfa\xcb\x11\x11\x3d\x26\xd1\x34\x7f\x0b\xf3\xb6\x78\xcc\x31\x47\x88\x2f\x1c\x9d\xa4\xce\x0c\x1d\x11\xe9\xab\xb1\x31\xa9\xa6\xe8\x22\xc5\xbe\x1a\xe1\xe2\xa3\xfd\xbf\xf1\x33\x8f\x5f\xdf\x59\x22\x5e\x7c\x92\x33\x50\xcd\xa8\x43\x7c\xcf\xf3\xdf\x5d\x34\xd3\x07\xf7\xe3\x5b\xf9\x8c\x9f\x17\xf7\x1f\xd2\xe2\x5e\x44\x17\x16\x37\x46\x16\xf5\x72\x9b\xad\x6c\xb9\x2d\x3a\x8b\x4d\xc4\x32\xdc\xcf\xf9\xda\xcf\x11\x86\xbb\xa2\x88\x32\x34\x0e\x71\x7e\x65\xcb\xaa\x0f\xde\xda\xee\x63\x25\xb7\xb0\xc8\xe5\xd6\x56\xc0\xbd\xf8\x3a\x3a\x32\x32\x63\x0f\x15\x7d\xc2\xaf\xef\x81\x81\x7c\xcf\xb1\xd0\xc5\x99\xab\xbe\xdf\x63\x02\xbd\x24\x88\x09\x3b\x4c\xd8\xd9\x11\x9f\x87\xf9\xbe\xc5\xcf\x56\x1e\xf1\xeb\x80\x5f\x07\xa5\x6e\xa9\x30\xee\x67\xdf\x8b\xbd\x35\x7e\x87\x29\x47\xfc\x3e\x2a\xc9\x8f\xcb\x50\xcc\xf5\x0b\x60\x4d\xe1\xe3\xcc\x55\x54\x1d\xa7\x87\x8f\x33\x57\x41\xad\x9c\x4a\x3f\xcf\x5c\xd5\xca\x23\x27\xe1\xaf\x33\x57\x41\xf5\x9c\x44\x3f\xcf\x50\x0c\xf1\xbb\x80\x90\x7e\x9f\xb9\x0a\xda\xc1\x89\xf4\xf3\xcc\x55\x83\x3c\xd4\xa9\x5d\xfc\x0b\x53\x53\xab\xf8\x57\x55\x7d\x68\x07\xdb\xff\x6e\x8d\xfa\x58\x85\x27\x81\xd3\xcb\xdd\x4f\x06\xdb\x07\x97\x7c\x35\xd0\x31\x15\x3e\x2c\xe7\xad\x18\xfb\xce\xca\x76\x55\x85\x07\xfb\xb5\xe9\xc7\x68\xf9\xe5\x48\xdc\x0f\x3d\x83\xa5\x88\xeb\x74\x27\xf9\xd8\xab\x55\x85\xc7\x14\xde\xda\x7a\x8d\x32\x26\x1e\x50\x38\xfd\xbb\x12\xdf\xfe\xe3\x1f\x08\xaf\x7f\x57\xff\xfc\xa7\x78\xf9\xcb\x77\x42\x7d\x6a\x94\x6a\x9d\xd8\xb3\xd7\x5d\x00\xdb\xcb\x4f\x4f\x0b\xc8\x55\xc5\x57\x45\xd9\xcd\x8b\xae\x8a\x62\xf5\xd5\xff\x1f\x00\x00\xff\xff\x2b\xde\xdb\x48\x3b\xea\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4387,7 +4387,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 59836, mode: os.FileMode(420), modTime: time.Unix(1488253642, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 59963, mode: os.FileMode(420), modTime: time.Unix(1488253654, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/form/repo.go b/modules/form/repo.go index df5ca49a6..72acbaf8d 100644 --- a/modules/form/repo.go +++ b/modules/form/repo.go @@ -23,7 +23,7 @@ import ( // \/ \/ \/ \/ \/ \/ \/ type CreateRepo struct { - Uid int64 `binding:"Required"` + UserID int64 `binding:"Required"` RepoName string `binding:"Required;AlphaDashDot;MaxSize(100)"` Private bool Description string `binding:"MaxSize(255)"` @@ -136,6 +136,7 @@ type Webhook struct { Events string Create bool Delete bool + Fork bool Push bool PullRequest bool Active bool diff --git a/modules/template/template.go b/modules/template/template.go index abf09491f..acdfab8d8 100644 --- a/modules/template/template.go +++ b/modules/template/template.go @@ -262,6 +262,8 @@ func ActionIcon(opType int) string { return "git-branch" case 17, 18: // Delete branch or tag return "alert" + case 19: // Fork a repository + return "repo-forked" default: return "invalid type" } diff --git a/routers/repo/pull.go b/routers/repo/pull.go index 54a59acde..aa9a6bcba 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -38,31 +38,27 @@ var ( } ) -func getForkRepository(ctx *context.Context) *models.Repository { - forkRepo, err := models.GetRepositoryByID(ctx.ParamsInt64(":repoid")) +func parseBaseRepository(ctx *context.Context) *models.Repository { + baseRepo, err := models.GetRepositoryByID(ctx.ParamsInt64(":repoid")) if err != nil { - if models.IsErrRepoNotExist(err) { - ctx.Handle(404, "GetRepositoryByID", nil) - } else { - ctx.Handle(500, "GetRepositoryByID", err) - } + ctx.NotFoundOrServerError("GetRepositoryByID", models.IsErrRepoNotExist, err) return nil } - if !forkRepo.CanBeForked() || !forkRepo.HasAccess(ctx.User.ID) { - ctx.Handle(404, "getForkRepository", nil) + if !baseRepo.CanBeForked() || !baseRepo.HasAccess(ctx.User.ID) { + ctx.NotFound() return nil } - ctx.Data["repo_name"] = forkRepo.Name - ctx.Data["description"] = forkRepo.Description - ctx.Data["IsPrivate"] = forkRepo.IsPrivate + ctx.Data["repo_name"] = baseRepo.Name + ctx.Data["description"] = baseRepo.Description + ctx.Data["IsPrivate"] = baseRepo.IsPrivate - if err = forkRepo.GetOwner(); err != nil { + if err = baseRepo.GetOwner(); err != nil { ctx.Handle(500, "GetOwner", err) return nil } - ctx.Data["ForkFrom"] = forkRepo.Owner.Name + "/" + forkRepo.Name + ctx.Data["ForkFrom"] = baseRepo.Owner.Name + "/" + baseRepo.Name if err := ctx.User.GetOrganizations(true); err != nil { ctx.Handle(500, "GetOrganizations", err) @@ -70,13 +66,13 @@ func getForkRepository(ctx *context.Context) *models.Repository { } ctx.Data["Orgs"] = ctx.User.Orgs - return forkRepo + return baseRepo } func Fork(ctx *context.Context) { ctx.Data["Title"] = ctx.Tr("new_fork") - getForkRepository(ctx) + parseBaseRepository(ctx) if ctx.Written() { return } @@ -88,12 +84,12 @@ func Fork(ctx *context.Context) { func ForkPost(ctx *context.Context, f form.CreateRepo) { ctx.Data["Title"] = ctx.Tr("new_fork") - forkRepo := getForkRepository(ctx) + baseRepo := parseBaseRepository(ctx) if ctx.Written() { return } - ctxUser := checkContextUser(ctx, f.Uid) + ctxUser := checkContextUser(ctx, f.UserID) if ctx.Written() { return } @@ -104,27 +100,25 @@ func ForkPost(ctx *context.Context, f form.CreateRepo) { return } - repo, has := models.HasForkedRepo(ctxUser.ID, forkRepo.ID) + repo, has := models.HasForkedRepo(ctxUser.ID, baseRepo.ID) if has { - ctx.Redirect(setting.AppSubUrl + "/" + ctxUser.Name + "/" + repo.Name) + ctx.Redirect(repo.Link()) return } // Check ownership of organization. - if ctxUser.IsOrganization() { - if !ctxUser.IsOwnedBy(ctx.User.ID) { - ctx.Error(403) - return - } + if ctxUser.IsOrganization() && !ctxUser.IsOwnedBy(ctx.User.ID) { + ctx.Error(403) + return } // Cannot fork to same owner - if ctxUser.ID == forkRepo.OwnerID { + if ctxUser.ID == baseRepo.OwnerID { ctx.RenderWithErr(ctx.Tr("repo.settings.cannot_fork_to_same_owner"), FORK, &f) return } - repo, err := models.ForkRepository(ctx.User, ctxUser, forkRepo, f.RepoName, f.Description) + repo, err := models.ForkRepository(ctx.User, ctxUser, baseRepo, f.RepoName, f.Description) if err != nil { ctx.Data["Err_RepoName"] = true switch { @@ -140,8 +134,8 @@ func ForkPost(ctx *context.Context, f form.CreateRepo) { return } - log.Trace("Repository forked[%d]: %s/%s", forkRepo.ID, ctxUser.Name, repo.Name) - ctx.Redirect(setting.AppSubUrl + "/" + ctxUser.Name + "/" + repo.Name) + log.Trace("Repository forked from '%s' -> '%s'", baseRepo.FullName(), repo.FullName()) + ctx.Redirect(repo.Link()) } func checkPullInfo(ctx *context.Context) *models.Issue { diff --git a/routers/repo/repo.go b/routers/repo/repo.go index 496f8e73b..8a32f214d 100644 --- a/routers/repo/repo.go +++ b/routers/repo/repo.go @@ -109,7 +109,7 @@ func CreatePost(ctx *context.Context, f form.CreateRepo) { ctx.Data["Licenses"] = models.Licenses ctx.Data["Readmes"] = models.Readmes - ctxUser := checkContextUser(ctx, f.Uid) + ctxUser := checkContextUser(ctx, f.UserID) if ctx.Written() { return } diff --git a/routers/repo/webhook.go b/routers/repo/webhook.go index 4c383a518..7b0553845 100644 --- a/routers/repo/webhook.go +++ b/routers/repo/webhook.go @@ -111,6 +111,7 @@ func ParseHookEvent(f form.Webhook) *models.HookEvent { HookEvents: models.HookEvents{ Create: f.Create, Delete: f.Delete, + Fork: f.Fork, Push: f.Push, PullRequest: f.PullRequest, }, diff --git a/templates/repo/create.tmpl b/templates/repo/create.tmpl index 337e096e5..59bc252c7 100644 --- a/templates/repo/create.tmpl +++ b/templates/repo/create.tmpl @@ -12,7 +12,7 @@
+ +
+
+
+ + + {{.i18n.Tr "repo.settings.event_fork_desc"}} +
+
+
diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl index 011398562..4d4a0268f 100644 --- a/templates/user/dashboard/feeds.tmpl +++ b/templates/user/dashboard/feeds.tmpl @@ -51,6 +51,8 @@ {{$.i18n.Tr "action.delete_branch" .GetRepoLink .GetBranch .ShortRepoPath | Str2html}} {{else if eq .GetOpType 18}} {{$.i18n.Tr "action.delete_tag" .GetRepoLink .GetBranch .ShortRepoPath | Str2html}} + {{else if eq .GetOpType 19}} + {{$.i18n.Tr "action.fork_repo" .GetRepoLink .ShortRepoPath | Str2html}} {{end}}

{{if eq .GetOpType 5}} diff --git a/vendor/github.com/gogits/go-gogs-client/repo_hook.go b/vendor/github.com/gogits/go-gogs-client/repo_hook.go index 49c4a5f7e..aa2512293 100644 --- a/vendor/github.com/gogits/go-gogs-client/repo_hook.go +++ b/vendor/github.com/gogits/go-gogs-client/repo_hook.go @@ -160,6 +160,23 @@ func (p *DeletePayload) JSONPayload() ([]byte, error) { return json.MarshalIndent(p, "", " ") } +// ___________ __ +// \_ _____/__________| | __ +// | __)/ _ \_ __ \ |/ / +// | \( <_> ) | \/ < +// \___ / \____/|__| |__|_ \ +// \/ \/ + +type ForkPayload struct { + Forkee *Repository `json:"forkee"` + Repo *Repository `json:"repository"` + Sender *User `json:"sender"` +} + +func (p *ForkPayload) JSONPayload() ([]byte, error) { + return json.MarshalIndent(p, "", " ") +} + // __________ .__ // \______ \__ __ _____| |__ // | ___/ | \/ ___/ | \ diff --git a/vendor/vendor.json b/vendor/vendor.json index f26c31775..32b0465a1 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -165,10 +165,10 @@ "revisionTime": "2017-02-19T18:16:29Z" }, { - "checksumSHA1": "rtJ+nZ9VHh2X2Zon7wLczPAAc/s=", + "checksumSHA1": "sAGNvN2IXzD+rra6Y9sxJBpR4L8=", "path": "github.com/gogits/go-gogs-client", - "revision": "ba630f557c8349952183305373fa89b155202bac", - "revisionTime": "2017-02-24T20:25:47Z" + "revision": "264a3d5bc98e108f17cc055338dbf4b94faf0d21", + "revisionTime": "2017-02-25T08:33:02Z" }, { "checksumSHA1": "p4yoFWgDiTfpu1JYgh26t6+VDTk=",