diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 8258f37b1..b5f2201d4 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -823,12 +823,14 @@ settings.event_push = Push settings.event_push_desc = Git push to a repository settings.event_issues = Issues settings.event_issues_desc = Issue opened, closed, reopened, edited, assigned, unassigned, label updated, label cleared, milestoned, or demilestoned. -settings.event_issue_comment = Issue Comment -settings.event_issue_comment_desc = Issue comment created, edited, or deleted. settings.event_pull_request = Pull Request settings.event_pull_request_desc = Pull request opened, closed, reopened, edited, assigned, unassigned, label updated, label cleared, milestoned, demilestoned, or synchronized. +settings.event_issue_comment = Issue Comment +settings.event_issue_comment_desc = Issue comment created, edited, or deleted. settings.event_release = Release settings.event_release_desc = Release published in a repository. +settings.event_mirror_sync = Mirror Sync +settings.event_mirror_sync_desc = Mirror commits pushed, reference created or deleted from upstream. settings.active = Active settings.active_helper = Details regarding the event which triggered the hook will be delivered as well. settings.add_hook_success = New webhook has been added. @@ -1287,7 +1289,6 @@ 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 @@ -1304,6 +1305,10 @@ create_branch = created new branch %[3]s at %[2]s at %[3]s push_tag = pushed tag %[2]s to %[3]s delete_tag = deleted tag %[2]s at %[3]s +fork_repo = forked a repository to %s +mirror_sync_push = synced commits to %[3]s at %[4]s from mirror +mirror_sync_create = synced new reference %[2]s to %[3]s from mirror +mirror_sync_delete = synced and deleted reference %[2]s at %[3]s from mirror [tool] ago = ago diff --git a/gogs.go b/gogs.go index 818644aac..3b5b795ab 100644 --- a/gogs.go +++ b/gogs.go @@ -16,7 +16,7 @@ import ( "github.com/gogs/gogs/pkg/setting" ) -const APP_VER = "0.11.49.0521" +const APP_VER = "0.11.50.0530" func init() { setting.AppVer = APP_VER diff --git a/models/action.go b/models/action.go index 62c0e9b26..93ca5b2ab 100644 --- a/models/action.go +++ b/models/action.go @@ -27,7 +27,7 @@ import ( type ActionType int -// To maintain backward compatibility only append to the end of list +// Note: To maintain backward compatibility only append to the end of list const ( ACTION_CREATE_REPO ActionType = iota + 1 // 1 ACTION_RENAME_REPO // 2 @@ -48,6 +48,9 @@ const ( ACTION_DELETE_BRANCH // 17 ACTION_DELETE_TAG // 18 ACTION_FORK_REPO // 19 + ACTION_MIRROR_SYNC_PUSH // 20 + ACTION_MIRROR_SYNC_CREATE // 21 + ACTION_MIRROR_SYNC_DELETE // 22 ) var ( @@ -667,6 +670,40 @@ func MergePullRequestAction(actUser *User, repo *Repository, pull *Issue) error return mergePullRequestAction(x, actUser, repo, pull) } +func mirrorSyncAction(opType ActionType, repo *Repository, refName string, data []byte) error { + return NotifyWatchers(&Action{ + ActUserID: repo.OwnerID, + ActUserName: repo.MustOwner().Name, + OpType: opType, + Content: string(data), + RepoID: repo.ID, + RepoUserName: repo.MustOwner().Name, + RepoName: repo.Name, + RefName: refName, + IsPrivate: repo.IsPrivate, + }) +} + +// MirrorSyncPushAction adds new action for mirror synchronization of pushed commits. +func MirrorSyncPushAction(repo *Repository, refName string, commits *PushCommits) error { + data, err := json.Marshal(commits) + if err != nil { + return err + } + + return mirrorSyncAction(ACTION_MIRROR_SYNC_PUSH, repo, refName, data) +} + +// MirrorSyncCreateAction adds new action for mirror synchronization of new reference. +func MirrorSyncCreateAction(repo *Repository, refName string) error { + return mirrorSyncAction(ACTION_MIRROR_SYNC_CREATE, repo, refName, nil) +} + +// MirrorSyncCreateAction adds new action for mirror synchronization of delete reference. +func MirrorSyncDeleteAction(repo *Repository, refName string) error { + return mirrorSyncAction(ACTION_MIRROR_SYNC_DELETE, repo, refName, nil) +} + // GetFeeds returns action list of given user in given context. // actorID is the user who's requesting, ctxUserID is the user/org that is requested. // actorID can be -1 when isProfile is true or to skip the permission check. diff --git a/models/mirror.go b/models/mirror.go index b204a6823..81afe68b6 100644 --- a/models/mirror.go +++ b/models/mirror.go @@ -33,22 +33,22 @@ type Mirror struct { Interval int // Hour. EnablePrune bool `xorm:"NOT NULL DEFAULT true"` - Updated time.Time `xorm:"-"` - UpdatedUnix int64 - NextUpdate time.Time `xorm:"-"` - NextUpdateUnix int64 + // Last and next sync time of Git data from upstream + LastSync time.Time `xorm:"-"` + LastSyncUnix int64 `xorm:"updated_unix"` + NextSync time.Time `xorm:"-"` + NextSyncUnix int64 `xorm:"next_update_unix"` address string `xorm:"-"` } func (m *Mirror) BeforeInsert() { - m.UpdatedUnix = time.Now().Unix() - m.NextUpdateUnix = m.NextUpdate.Unix() + m.NextSyncUnix = m.NextSync.Unix() } func (m *Mirror) BeforeUpdate() { - m.UpdatedUnix = time.Now().Unix() - m.NextUpdateUnix = m.NextUpdate.Unix() + m.LastSyncUnix = m.LastSync.Unix() + m.NextSyncUnix = m.NextSync.Unix() } func (m *Mirror) AfterSet(colName string, _ xorm.Cell) { @@ -60,15 +60,15 @@ func (m *Mirror) AfterSet(colName string, _ xorm.Cell) { log.Error(3, "GetRepositoryByID [%d]: %v", m.ID, err) } case "updated_unix": - m.Updated = time.Unix(m.UpdatedUnix, 0).Local() + m.LastSync = time.Unix(m.LastSyncUnix, 0).Local() case "next_update_unix": - m.NextUpdate = time.Unix(m.NextUpdateUnix, 0).Local() + m.NextSync = time.Unix(m.NextSyncUnix, 0).Local() } } -// ScheduleNextUpdate calculates and sets next update time. -func (m *Mirror) ScheduleNextUpdate() { - m.NextUpdate = time.Now().Add(time.Duration(m.Interval) * time.Hour) +// ScheduleNextSync calculates and sets next sync time based on repostiroy mirror setting. +func (m *Mirror) ScheduleNextSync() { + m.NextSync = time.Now().Add(time.Duration(m.Interval) * time.Hour) } // findPasswordInMirrorAddress returns start (inclusive) and end index (exclusive) @@ -188,8 +188,67 @@ func (m *Mirror) SaveAddress(addr string) error { return cfg.SaveToIndent(configPath, "\t") } +const GIT_SHORT_EMPTY_SHA = "0000000" + +// mirrorSyncResult contains information of a updated reference. +// If the oldCommitID is "0000000", it means a new reference, the value of newCommitID is empty. +// If the newCommitID is "0000000", it means the reference is deleted, the value of oldCommitID is empty. +type mirrorSyncResult struct { + refName string + oldCommitID string + newCommitID string +} + +// parseRemoteUpdateOutput detects create, update and delete operations of references from upstream. +func parseRemoteUpdateOutput(output string) []*mirrorSyncResult { + results := make([]*mirrorSyncResult, 0, 3) + lines := strings.Split(output, "\n") + for i := range lines { + // Make sure reference name is presented before continue + idx := strings.Index(lines[i], "-> ") + if idx == -1 { + continue + } + + refName := lines[i][idx+3:] + + switch { + case strings.HasPrefix(lines[i], " * "): // New reference + results = append(results, &mirrorSyncResult{ + refName: refName, + oldCommitID: GIT_SHORT_EMPTY_SHA, + }) + case strings.HasPrefix(lines[i], " - "): // Delete reference + results = append(results, &mirrorSyncResult{ + refName: refName, + newCommitID: GIT_SHORT_EMPTY_SHA, + }) + case strings.HasPrefix(lines[i], " "): // New commits of a reference + delimIdx := strings.Index(lines[i][3:], " ") + if delimIdx == -1 { + log.Error(2, "SHA delimiter not found: %q", lines[i]) + continue + } + shas := strings.Split(lines[i][3:delimIdx+3], "..") + if len(shas) != 2 { + log.Error(2, "Expect two SHAs but not what found: %q", lines[i]) + continue + } + results = append(results, &mirrorSyncResult{ + refName: refName, + oldCommitID: shas[0], + newCommitID: shas[1], + }) + + default: + log.Warn("parseRemoteUpdateOutput: unexpected update line %q", lines[i]) + } + } + return results +} + // runSync returns true if sync finished without error. -func (m *Mirror) runSync() bool { +func (m *Mirror) runSync() ([]*mirrorSyncResult, bool) { repoPath := m.Repo.RepoPath() wikiPath := m.Repo.WikiPath() timeout := time.Duration(setting.Git.Timeout.Mirror) * time.Second @@ -204,29 +263,32 @@ func (m *Mirror) runSync() bool { if err := CreateRepositoryNotice(desc); err != nil { log.Error(2, "CreateRepositoryNotice: %v", err) } - return false + return nil, false } gitArgs := []string{"remote", "update"} if m.EnablePrune { gitArgs = append(gitArgs, "--prune") } - if _, stderr, err := process.ExecDir( + _, stderr, err := process.ExecDir( timeout, repoPath, fmt.Sprintf("Mirror.runSync: %s", repoPath), - "git", gitArgs...); err != nil { + "git", gitArgs...) + if err != nil { desc := fmt.Sprintf("Fail to update mirror repository '%s': %s", repoPath, stderr) log.Error(2, desc) if err = CreateRepositoryNotice(desc); err != nil { log.Error(2, "CreateRepositoryNotice: %v", err) } - return false + return nil, false } + output := stderr if err := m.Repo.UpdateSize(); err != nil { log.Error(2, "UpdateSize [repo_id: %d]: %v", m.Repo.ID, err) } if m.Repo.HasWiki() { + // Even if wiki sync failed, we still want results from the main repository if _, stderr, err := process.ExecDir( timeout, wikiPath, fmt.Sprintf("Mirror.runSync: %s", wikiPath), "git", "remote", "update", "--prune"); err != nil { @@ -235,11 +297,10 @@ func (m *Mirror) runSync() bool { if err = CreateRepositoryNotice(desc); err != nil { log.Error(2, "CreateRepositoryNotice: %v", err) } - return false } } - return true + return parseRemoteUpdateOutput(output), true } func getMirrorByRepoID(e Engine, repoID int64) (*Mirror, error) { @@ -301,50 +362,88 @@ func MirrorUpdate() { func SyncMirrors() { // Start listening on new sync requests. for repoID := range MirrorQueue.Queue() { - log.Trace("SyncMirrors [repo_id: %v]", repoID) + log.Trace("SyncMirrors [repo_id: %d]", repoID) MirrorQueue.Remove(repoID) m, err := GetMirrorByRepoID(com.StrTo(repoID).MustInt64()) if err != nil { - log.Error(2, "GetMirrorByRepoID [%s]: %v", m.RepoID, err) + log.Error(2, "GetMirrorByRepoID [%d]: %v", m.RepoID, err) continue } - if !m.runSync() { + results, ok := m.runSync() + if !ok { continue } - m.ScheduleNextUpdate() + m.ScheduleNextSync() if err = UpdateMirror(m); err != nil { - log.Error(2, "UpdateMirror [%s]: %v", m.RepoID, err) + log.Error(2, "UpdateMirror [%d]: %v", m.RepoID, err) continue } - // TODO: Work on #2017 and #4528 together - // 1. Get commits after last update time - // 2. Simulate push event for new commits, see models/repo_editor.go:164 - // This automatically triggers the "push" webhook + // TODO: + // - Create "Mirror Sync" webhook event + // - Create mirror sync (create, push and delete) events and trigger the "mirror sync" webhooks - // ****************************** - // EDIT AREA - START - // ****************************** + var gitRepo *git.Repository + if len(results) == 0 { + log.Trace("SyncMirrors [repo_id: %d]: no commits fetched", m.RepoID) + } else { + gitRepo, err = git.OpenRepository(m.Repo.RepoPath()) + if err != nil { + log.Error(2, "OpenRepository [%d]: %v", m.RepoID, err) + continue + } + } + + for _, result := range results { + // Create reference + if result.oldCommitID == GIT_SHORT_EMPTY_SHA { + if err = MirrorSyncCreateAction(m.Repo, result.refName); err != nil { + log.Error(2, "MirrorSyncCreateAction [repo_id: %d]: %v", m.RepoID, err) + } + continue + } + + // Delete reference + if result.newCommitID == GIT_SHORT_EMPTY_SHA { + if err = MirrorSyncDeleteAction(m.Repo, result.refName); err != nil { + log.Error(2, "MirrorSyncDeleteAction [repo_id: %d]: %v", m.RepoID, err) + } + continue + } + + // Push commits + commits, err := gitRepo.CommitsBetweenIDs(result.newCommitID, result.oldCommitID) + if err != nil { + log.Error(2, "CommitsBetweenIDs [repo_id: %d, new_commit_id: %s, old_commit_id: %s]: %v", m.RepoID, result.newCommitID, result.oldCommitID, err) + continue + } + pushCommits := ListToPushCommits(commits) + if err = MirrorSyncPushAction(m.Repo, result.refName, pushCommits); err != nil { + log.Error(2, "MirrorSyncPushAction [repo_id: %d]: %v", m.RepoID, err) + continue + } + } + + if _, err = x.Exec("UPDATE mirror SET updated_unix = ? WHERE repo_id = ?", time.Now().Unix(), m.RepoID); err != nil { + log.Error(2, "Update 'mirror.updated_unix' [%d]: %v", m.RepoID, err) + continue + } // Get latest commit date and compare to current repository updated time, // update if latest commit date is newer. commitDate, err := git.GetLatestCommitDate(m.Repo.RepoPath(), "") if err != nil { - log.Error(2, "GetLatestCommitDate [%s]: %v", m.RepoID, err) + log.Error(2, "GetLatestCommitDate [%d]: %v", m.RepoID, err) continue } else if commitDate.Before(m.Repo.Updated) { continue } - // ****************************** - // EDIT AREA - END - // ****************************** - if _, err = x.Exec("UPDATE repository SET updated_unix = ? WHERE id = ?", commitDate.Unix(), m.RepoID); err != nil { - log.Error(2, "Update repository 'updated_unix' [%s]: %v", m.RepoID, err) + log.Error(2, "Update 'repository.updated_unix' [%d]: %v", m.RepoID, err) continue } } diff --git a/models/mirror_test.go b/models/mirror_test.go index b4af58ba2..d6e86502d 100644 --- a/models/mirror_test.go +++ b/models/mirror_test.go @@ -10,6 +10,40 @@ import ( . "github.com/smartystreets/goconvey/convey" ) +func Test_parseRemoteUpdateOutput(t *testing.T) { + Convey("Parse mirror remote update output", t, func() { + testCases := []struct { + output string + results []*mirrorSyncResult + }{ + { + ` +From https://try.gogs.io/unknwon/upsteam + * [new branch] develop -> develop + b0bb24f..1d85a4f master -> master + - [deleted] (none) -> bugfix +`, + []*mirrorSyncResult{ + {"develop", GIT_SHORT_EMPTY_SHA, ""}, + {"master", "b0bb24f", "1d85a4f"}, + {"bugfix", "", GIT_SHORT_EMPTY_SHA}, + }, + }, + } + + for _, tc := range testCases { + results := parseRemoteUpdateOutput(tc.output) + So(len(results), ShouldEqual, len(tc.results)) + + for i := range tc.results { + So(tc.results[i].refName, ShouldEqual, results[i].refName) + So(tc.results[i].oldCommitID, ShouldEqual, results[i].oldCommitID) + So(tc.results[i].newCommitID, ShouldEqual, results[i].newCommitID) + } + } + }) +} + func Test_findPasswordInMirrorAddress(t *testing.T) { Convey("Find password portion in mirror address", t, func() { testCases := []struct { diff --git a/models/repo.go b/models/repo.go index 1cba9d4b0..b04e6ad3f 100644 --- a/models/repo.go +++ b/models/repo.go @@ -750,7 +750,7 @@ func MigrateRepository(doer, owner *User, opts MigrateRepoOptions) (*Repository, RepoID: repo.ID, Interval: setting.Mirror.DefaultInterval, EnablePrune: true, - NextUpdate: time.Now().Add(time.Duration(setting.Mirror.DefaultInterval) * time.Hour), + NextSync: time.Now().Add(time.Duration(setting.Mirror.DefaultInterval) * time.Hour), }); err != nil { return repo, fmt.Errorf("InsertOne: %v", err) } diff --git a/pkg/bindata/bindata.go b/pkg/bindata/bindata.go index 91b96c112..8f6f580d6 100644 --- a/pkg/bindata/bindata.go +++ b/pkg/bindata/bindata.go @@ -4440,7 +4440,7 @@ func confLocaleLocale_enGbIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xeb\x72\x1c\xb9\xb1\x30\xf8\xbf\x9e\x02\xa3\x13\x0c\xcd\x44\x50\xad\x18\xfb\x3b\xdf\x6e\x4c\x88\xf2\x72\xa8\xd1\xe5\x1c\x4a\xe2\x21\x29\xfb\xf3\x6a\x15\x35\xe8\x2a\x74\x37\xcc\x6a\xa0\x5d\x40\xb1\xd5\xe3\xf0\x1b\xec\x03\xec\xf3\xed\x93\x6c\xe4\x05\xb7\xaa\x6a\x4a\x1a\x9f\xfd\x43\x76\x01\x89\xc4\x3d\x91\x99\xc8\x4c\xc8\xdd\xae\x6e\x95\x6b\xc4\x99\x38\x17\x3b\xa9\x4d\xa7\x9c\x13\x4e\x75\xab\x27\x1b\xeb\xbc\x6a\xc5\x2b\xed\x85\x53\xfd\xbd\x6e\x54\x55\x6d\xec\x56\x89\x33\xf1\xda\x6e\x55\xd5\x4a\xb7\x59\x5a\xd9\xb7\xe2\x4c\xbc\x08\xbf\x2b\xf5\x79\xd7\xd9\x1e\x80\x7e\xa1\x5f\xd5\x46\x75\x3b\x28\xa3\xba\x5d\xe5\xf4\xda\xd4\xda\x88\x33\x71\xa3\xd7\x46\xbc\x31\x94\x62\x07\x1f\x92\xde\x0f\x9e\xd2\x86\x5d\x48\xfa\xb0\xab\x7a\xb5\xd6\xce\xab\x5e\x9c\x89\x6b\xfe\x59\xed\xd5\xd2\x69\x0f\x35\xfd\x85\x7e\x55\xf7\xaa\x77\xda\x02\xf6\x3f\xd3\xaf\x6a\x27\xd7\x00\x70\x25\xd7\xaa\xf2\x6a\xbb\xeb\x24\x16\xb8\xe5\x9f\x55\x27\xcd\x7a\x20\x98\x4b\xfe\x59\x35\xbd\x92\x5e\xd5\x46\xed\xc5\x99\xb8\xc0\x8f\xc5\x62\x51\x0d\x4e\xf5\xf5\xae\xb7\x2b\xdd\xa9\x5a\x9a\xb6\xde\x52\x37\x3f\x38\xd5\x0b\x4e\x17\xd2\xb4\x02\xd2\xb1\x0b\xaa\xad\xb5\xa9\xa5\xe3\x7e\xa8\x56\x68\x23\xa4\xab\x10\x95\x91\xdb\x50\x1a\x7e\x56\x6a\x2b\x75\x07\xa3\x06\xff\xab\x9d\x74\x6e\x6f\x71\x68\xaf\xf8\x67\xd5\xab\xda\x1f\x76\x0a\x87\xe0\xc9\xed\x61\xa7\xaa\x46\xee\x7c\xb3\x91\xd0\x4c\xfa\x55\x55\xbd\xda\x59\xa7\xbd\xed\x0f\x08\x17\x3e\x2a\xdb\xaf\xa5\xd1\xbf\x49\x4f\xe3\xf3\x3e\xfb\xac\xb6\xba\xef\x2d\x0c\xed\x5b\xfc\x51\x19\xb5\xaf\x01\x8f\x38\x13\xef\xd4\x3e\xc7\x02\x39\x5b\xbd\xee\x69\x14\x21\xf3\x2d\x7e\x01\x16\xca\x63\x4c\x94\x15\xb1\xad\x6c\x7f\xc7\xa9\x2f\xe1\xe7\x08\xa5\xed\xd7\x9c\x5b\xb6\x4b\x1a\xb9\x56\x9c\xfb\x16\x3f\x0a\x00\x57\xc9\x76\xab\x4d\xbd\x93\x46\xc1\xd0\x9d\xc3\x97\xb8\x82\xaf\x4a\x36\x8d\x1d\x8c\xaf\x9d\xf2\x5e\x9b\x35\xcc\xc1\x39\x25\x89\x1b\x4e\xaa\xb2\xbc\x98\x76\xb0\x43\x9c\x65\x71\x26\xfe\x6a\x87\x5e\x5c\xd1\x27\xe5\x65\x85\x30\x33\x96\xac\x64\xe3\xf5\xbd\xf6\x5a\x51\x65\xe1\xa3\xda\x0d\x5d\x57\xf7\xea\xef\x83\x72\x1e\xb2\xae\x86\xae\x13\xd7\xfc\x5d\x69\xe7\x06\x2c\xf1\x06\x7f\x54\x55\x23\x4d\x83\xdd\xb9\xc0\x1f\x55\xf5\x51\x1b\xe7\x65\xd7\x7d\xaa\xf8\x07\x00\xd3\x2f\x1a\x27\xaf\x3d\x36\x96\x13\xc5\x8d\x57\x3b\x07\x03\x2d\x5e\xea\xde\xf9\x27\x5e\x6f\x95\xb8\x1e\x4c\xd5\xda\xe6\x4e\xf5\x35\x6c\x48\xdc\x4a\x6f\x56\xe2\x60\x87\xc7\xbd\x12\xfd\x60\x8c\x36\x6b\xf1\xca\xae\x9d\xd0\xc6\xe9\x56\x89\x17\x08\x7d\x2a\x76\x9d\x92\x4e\x89\x5e\xc9\x56\x3c\x93\xc2\xcb\x7e\xad\xfc\xd9\xa3\x7a\xd9\x49\x73\xf7\x48\x6c\x7a\xb5\x3a\x7b\x74\xe2\x1e\x3d\x7f\x35\xe8\x56\x75\xda\x28\xf7\xec\xa9\x7c\x2e\x1a\xd9\xab\xd5\xd0\x75\x07\xb1\x54\x2b\xd8\x2b\x07\x3b\x88\x66\x23\xcd\x1a\xf6\xc9\xc1\x6f\xa0\x42\x6d\x84\xdf\x68\x27\x60\xa3\x7e\x57\xc1\x28\x69\xaf\xea\x76\x19\x88\x12\x36\x08\x93\x7b\xe5\xc4\xdb\xc3\xcd\x7f\x5d\x9e\x8a\x2b\xeb\xfc\xba\x57\xf8\xfb\xe6\xbf\x2e\xb5\x57\x7f\x3c\x15\x6f\x6f\x6e\xfe\xeb\x52\xd8\x5e\xdc\xea\x17\x3f\x2f\xaa\x76\x59\x87\x71\x79\x21\xbd\x5c\x42\x17\xe2\x5c\x41\x26\x6d\xa5\x98\x87\x1b\x0a\x48\x1e\x92\x37\xe7\x71\x93\xf2\x06\x9d\xdd\x8e\xed\xb2\xe6\x3d\x1c\x71\xbc\x83\x8d\xdc\x2e\xd3\x00\x5f\xd1\xd0\x0d\x4e\x89\x37\xef\xde\xbd\x7f\xf1\xb3\x50\x66\xad\x8d\x12\x7b\xed\x37\x62\xf0\xab\xff\xbd\x5e\x2b\xa3\x7a\xd9\xd5\x8d\x86\xb1\xe9\x9d\xf2\x62\x65\x7b\xea\xe9\xa2\x72\xae\xab\xb7\xb6\x85\x5a\x6e\x6e\x2e\xc5\x5b\xdb\xaa\x6a\x27\xfd\x06\x1b\xe2\x37\x95\xfb\x7b\x07\xe3\x15\x2b\xbc\xdd\x28\x81\x4b\x17\x81\xec\x2a\x0c\x8f\x68\xb9\x8d\x0b\xf1\x6c\xd9\x3f\xcf\xda\x25\x97\xce\x76\x83\xe7\x12\xfb\x8d\x32\x38\x4f\xce\xcb\xde\x0b\xe9\x02\xe9\x5f\x54\xaa\xef\x6b\xb5\xdd\xf9\x03\xcc\x0e\xb7\x61\x8c\x9d\x90\x34\xd2\x18\xeb\xc5\x52\x09\x84\x5f\x54\xc6\xd6\xb4\x53\x81\x6c\xb6\xda\xc9\x65\xa7\x6a\x22\xe9\x7d\xa0\x48\x7f\x85\xc5\x41\x05\x19\x42\x14\x10\x30\x62\x70\x4c\x20\x75\x86\x95\x23\x8d\x40\xa4\x82\xb7\x7a\xde\xc2\x40\x17\xe2\xac\x11\x69\x88\x09\x93\x16\x56\x61\x1a\xc2\x9a\x39\xdf\xed\x3a\xdd\x50\xd5\xaf\x28\x2f\x2d\x1f\x38\x34\x79\xee\x73\x38\x9c\xfe\x90\x97\x2d\x82\xc1\xc3\x90\xf6\xa2\xa0\xc1\x58\x7e\xa3\x7a\x25\x36\xc3\x9a\x0e\x8e\xce\x0e\xed\x77\x48\xc1\xc3\xf8\x26\x3a\x29\xae\xad\xf5\x34\xe7\x11\x20\x55\x71\xde\x75\x78\x4e\xf7\x6a\x6b\x3d\x0c\x1c\x17\x03\x5a\xb4\xd7\x5d\x07\x3d\x75\xf2\x5e\xb5\xc2\x5b\xda\x6f\xad\xee\x55\x03\x88\x17\x55\x3f\x98\x9a\x17\xfb\xf5\x60\x68\xc1\x87\xb4\x72\x65\x21\xd4\x76\x70\x5e\x6c\xe4\xbd\x82\x81\x07\x66\xc1\xdb\xd9\x76\x62\x97\xfa\xc1\xe0\x16\x5e\x54\xad\xdd\x4a\x3c\xf8\x5f\xe0\x0f\xfe\xce\xf1\x6b\x27\xe4\x6a\xa5\x1a\xef\xc4\xcd\xcd\x6b\xd1\x74\xd6\x28\xf1\xe1\xfa\xd2\xc1\x36\xd8\xd4\x3b\xdb\x23\x93\x70\xf3\x5a\x5c\xd9\xde\xc7\xb4\x6c\xa0\x01\xc2\x0c\xdb\xa5\xea\xc5\x7e\xa3\x9b\x0d\x0d\x3b\x94\x80\x55\xac\x7a\xa1\x9d\x18\x9c\x36\xeb\x53\xd1\x29\xe8\x81\xf6\xb4\x00\xa0\x0f\x61\xd5\x01\xf8\x4a\x49\x3f\xf4\x0a\x0f\xfd\x7a\x39\xe8\xce\x6b\x53\x43\x85\x8c\x07\xc9\x82\xf8\x99\x32\xb0\xc4\x0d\x66\x1c\x81\xaf\x77\x76\x47\xec\x0c\xee\xaa\x65\x56\x8e\x11\xc2\x96\x87\x09\xb4\x3b\x45\xeb\xdd\x71\x93\x60\xc1\x0d\xda\x6d\xc4\xaa\xb7\x5b\xe1\x0e\xce\xab\x2d\x16\x6c\xa5\xda\x5a\xb3\xa8\x36\xde\xef\xc2\xd8\xbc\xbe\xbd\xbd\xa2\xc1\x89\xa9\x0f\x8d\x8e\xcc\xd6\x2e\xae\x92\x0e\x18\x2b\x23\x00\x2d\x2c\xe3\xa1\xef\x46\x2b\xfc\xc3\xf5\x65\xc8\x39\x32\x73\xd0\x84\xa7\xf0\xe7\x26\x4d\x20\xae\x04\x67\xb7\x6a\x8f\xeb\x5d\x1b\x81\xcc\xce\xa2\xea\xec\xba\xee\xad\xf5\x61\xb9\x5f\xda\x35\x2d\xf1\x22\x23\xd5\xf4\x22\x2c\x5a\x18\x9c\x7d\x0f\xcc\x5f\x67\xd7\x48\xf0\x60\xbc\x16\x95\x32\x48\x5a\x1a\x6b\x9c\xed\x54\xa0\x9c\xbf\x60\xaa\xb8\xa0\x54\x22\xa2\x33\x90\x71\x96\xde\x00\x65\x69\x35\xf6\xd8\x5b\xa2\xa7\x00\x70\x2a\x64\xe7\xac\xd8\xf5\xda\x78\xa8\x18\xe7\x88\x31\x2c\xaa\xca\xee\xa0\x44\x46\x43\xde\x73\x42\x22\x1c\xd8\xef\x98\x8f\xac\x1e\xae\x1c\xdd\x64\x87\x93\xdb\xfa\x5d\xcd\x27\xd1\xcd\xdb\xdb\x2b\x3a\x8e\x30\x15\x17\xc1\x99\x78\xd9\xdb\x6d\x4a\x48\xe3\xf3\x16\xf0\x21\x8c\x6c\xdb\x5e\x39\x77\x2a\xae\x5f\x5e\x88\x7f\xff\xe3\x1f\xfe\xb0\x10\x6f\x3c\x90\x3d\xa0\x04\x7f\x83\x1d\x2c\x79\x16\x12\xa8\xed\x85\xdf\x28\xf1\x08\xc8\xd8\x23\xf1\x0c\x73\xff\x0f\xf5\x59\x6e\x77\x9d\x5a\x34\x76\xfb\x1c\x56\xe9\x56\xfa\x45\x05\x39\xaa\x0f\x44\xe3\x46\x99\x56\xf5\xcc\xb8\x72\x56\x46\x7a\x39\x3b\x63\x63\x89\x7f\x87\xb1\x5f\xe9\x7e\x9b\x26\x28\x70\xf6\x30\x53\x90\x13\xb8\x40\xdd\xd5\xc6\x7a\xbd\x3a\x24\x50\xec\xe9\x3b\x48\xe4\xa5\x59\xf1\x4e\xe3\xe3\x2a\x8e\x31\xed\x4b\x5c\x81\xef\xfd\x46\xf5\x61\xb8\x5d\x1a\x6f\xbb\x5a\x01\xd3\x32\x5a\x2d\xef\x29\x95\x56\x4b\x0e\x12\x97\xc9\x0b\x26\x18\x17\x2f\xde\x09\x75\xaf\x0c\x2c\xec\x5d\x6f\xdb\xa1\xc1\x95\x13\x56\x4c\x27\x7a\xe5\xec\xd0\x37\x8a\x17\x6a\x24\xc8\xd0\x34\xa0\xfa\x8d\xec\xba\xc3\xa2\x0a\x07\xe3\xba\x97\xf7\xd2\xcb\x3e\xab\xe2\x55\x48\xe2\xd6\x4f\x60\x27\x8d\x8a\x25\xa0\xe7\xcd\xe0\x3c\x50\x0f\x6c\x85\xa3\x46\x51\xb6\x13\xb2\x57\x62\xd8\x75\x56\xb6\xaa\x15\xcb\x03\xd2\x78\x07\x6b\xa1\x55\x2b\x39\x74\x7e\x51\xad\x54\x0b\x44\x49\xb5\x35\xd7\xd5\x59\x7b\x87\x95\xf1\x50\xbd\x0c\x00\xe2\x9c\x91\x5e\x22\xc4\xb1\x92\xb1\xb1\x5c\x3e\x82\xc5\x46\x71\x0d\xde\x22\x8b\x92\xf2\xed\x4e\x19\xee\x46\x60\x4c\x04\xf0\x1d\xad\xb0\x46\x74\x7a\xc9\x9d\x4e\x63\x39\x62\x32\xc2\xe8\xdc\x80\x7c\x9b\xe7\xcd\x16\x98\x0c\x2a\x2e\x78\x37\x2e\x7b\x2a\xac\xe9\x0e\xcc\x8c\xc0\x16\x23\x01\x32\xf0\x25\x2e\x91\xa5\x28\xae\x05\x8a\xc4\x52\x5b\x99\x1f\xab\xbd\x26\xb6\x57\xdc\xcb\x4e\xb7\x80\x31\x20\x80\xd3\x62\xbe\x2d\x8b\x8a\x79\xe5\x9a\x25\xed\xfa\x5e\xa3\x1c\x1b\xb7\x18\xa1\x64\xe9\x1b\x46\xf8\xcf\x00\x00\x02\xb2\x9b\x2d\x1b\x5b\xf3\x1e\x3a\xe9\xa2\x1c\x4b\xeb\x04\xba\x8b\x35\x00\xff\xee\x4e\xc5\xbd\x46\x36\x80\x17\x39\x8e\xcb\x12\x78\xcc\x4e\x41\x55\x4e\x29\xc4\x20\xb4\x79\x3a\xec\xa8\xcc\x82\x85\x38\x96\xab\x02\xdf\x0f\xec\x60\x6b\x05\x70\x69\xc8\x6b\x00\xa5\xe5\x61\x1d\xf1\x7d\xa2\xd7\xeb\x8d\x17\xc6\xee\x4f\x69\x50\xf6\x1b\xab\x60\xcf\xbf\x79\x71\xf6\x23\xb5\x63\x0d\x9c\x47\x2c\x04\x3c\x8b\x1c\xbc\x05\xfa\xc2\x5b\x8f\x9a\x10\x79\x3f\x84\x9c\x88\x8b\x04\x34\x96\xdb\x27\xac\x66\x24\x74\x4c\xdf\xf2\x3c\x26\x6c\x09\x86\x4a\x07\xd9\x9f\x2a\x26\x42\xca\xb2\x5e\xbd\xb6\x28\x6b\x06\xd9\x0e\x98\xa9\xca\x2b\xe7\xeb\xb5\xf6\xf5\x0a\xa8\x2d\x20\x7e\x09\x08\x80\xb7\x53\xce\x8b\xc7\x6b\xed\x1f\x8b\xc6\x6e\xb7\xd2\xb4\x3f\x89\x93\x7b\x16\x13\xfe\x08\x64\x14\xb6\xa2\xee\x70\x46\x58\x82\xed\x15\x49\x03\x41\x7b\xd2\x5a\xe5\x70\xe0\xdd\xb0\x43\xc6\x22\x8a\x58\x2c\x09\xb6\x76\x6f\x80\x60\xe0\x71\x61\x57\x2b\xdd\x68\xd9\x89\xa5\x36\xb2\x3f\x44\x2c\x78\x0c\x9d\xb8\x53\xf1\xee\xfd\x2d\x02\xae\x2d\xf0\x3d\x6d\x00\x58\x54\xda\xe0\xc2\x06\x71\x82\x27\x3f\x97\xa5\x42\x92\xa6\xb6\x34\xb6\x87\xb3\x1f\x7b\x13\x0a\x1e\xe1\x94\x81\x71\x20\x41\x44\x83\x2c\x8b\xb0\x58\x2e\x32\xb5\x30\x0c\x5b\xe9\x9b\x0d\xb3\xbc\xb8\x6c\xb4\x33\x8f\x3d\xb6\xb4\x19\xfa\x5e\x19\x8f\xc9\x3f\x89\x13\x27\x9e\x3c\x17\x27\xd9\xb9\x5c\x6f\xb5\x03\x2e\x32\xb2\xa4\xe1\x90\x86\x0a\x39\x4f\x60\x1e\x2e\x3b\x3c\x5e\x53\x77\xf3\x83\x1c\x4b\xc2\x69\x2e\x56\x5a\x75\x6d\xe8\x6c\x6a\x32\x30\xed\x74\x50\xae\xa7\x93\x0d\x99\x82\x32\x07\xda\xfe\xc5\xf0\x14\xfb\x2a\xae\xae\xb0\x6b\xb2\xf1\xcd\xc7\x28\x2c\x3b\x37\xd0\x46\x39\x13\x7f\x51\x5d\x63\xb7\xea\x3b\xf1\x17\xf5\xb8\x57\x62\xdd\xe1\xc4\x4b\xcf\xe2\xbc\x75\x0a\x17\xe5\x29\xed\xd3\xd5\x60\xf0\xc8\xf1\xf2\x4e\xa1\x06\x20\x75\x7c\x8e\xdb\x3b\x3a\x57\xd5\xc7\x8d\xdd\xaa\x4f\xd5\x40\xb2\x94\xed\xda\x28\x8d\xe3\x0e\xb4\x3d\xb1\x2f\x51\x34\x4f\x30\x71\x73\xb9\xbd\xf6\xcd\xa6\x8e\x7a\x4a\x18\x48\xaf\x3e\xe3\x94\x61\x56\x52\x5b\xc2\xce\x84\xac\x6a\x7b\xc0\x65\x05\x1d\x7f\x7b\x48\xab\x4a\x2b\x57\xb9\x8d\xdd\xa3\xd2\x2f\x42\xdc\x6c\xec\x1e\xd5\x7d\x85\xc4\xb5\x58\x2c\xaa\xc6\x76\x9d\x5c\x5a\x98\x95\xfb\x04\x7f\x91\xa7\x96\xc8\xb7\x87\xda\xf6\x6b\xae\xb6\x54\x72\x6d\x0f\xac\x57\xe3\x5c\xd2\xab\xb9\x0a\xa9\x33\x2b\x64\x91\x88\x9f\xb8\x8a\xd5\x49\x0b\x6d\x6a\xd4\x56\x85\x9a\xdf\x18\x92\x85\xf2\x76\x56\xd5\x47\x56\xd6\x7e\xaa\x02\x5c\xd1\x26\x22\xf1\x34\xe8\xae\xd0\x20\xba\x91\x0a\xd1\x55\x4e\xc9\x1e\xf7\xd3\x0d\xfe\xa8\xaa\x8f\x72\xf0\x9b\x4f\x99\x32\xb5\x0e\x2b\x2f\x28\x55\x51\xe1\xc7\x54\x36\x71\x85\x1b\xb5\x03\x06\x72\xeb\x70\xc9\x76\xbd\x92\xed\x81\xc5\xcd\xb8\x78\xff\x44\xe7\x97\x36\x40\xf5\xbf\xab\x9c\x05\x02\x54\x7f\x23\x8a\x9f\xb5\x69\xa9\x7c\x79\xf6\x93\x96\x77\xbb\xc3\x65\x62\xfb\xfe\x70\x5a\x2a\x22\x36\xd2\x89\xa5\x52\x26\x08\x8c\xed\x22\xa8\x79\x60\x79\xc9\x86\x68\x08\x6a\xa6\x71\x07\x52\x49\x3b\x61\x4a\xa0\x85\x44\xf6\xb9\x16\x3a\x05\x5c\xe0\x4f\x81\x31\xfb\xe6\x2a\x60\xd0\x6b\x66\x90\xce\xc4\xf9\xe0\x37\xca\xf8\x20\xbd\xdd\x60\x7a\x85\x0c\x27\xee\xbf\x46\x76\x55\xaf\xb6\x0a\x64\xc2\x7a\x4b\x9a\x65\xfa\x12\x6f\x55\xb5\xb2\xfd\x1a\x77\x2b\x6d\xa7\x33\xf1\x12\x13\xd2\xfe\x02\x00\xe5\xf3\xf3\x8d\x21\x42\xca\x9f\x82\x26\xbf\x36\x76\x8f\x1a\x5e\xe0\xf1\xc6\xd3\x38\xec\x60\x1a\x16\xe1\xbc\x24\xd6\x0b\xb9\x7e\xa7\x8c\x4f\x93\x71\x2e\x8c\xda\x8b\x1c\x8a\x87\x2c\xce\x08\xc0\x03\x61\x7c\xb6\x7c\x7e\xe2\x9e\x3d\x5d\x3e\x8f\x47\x56\xb3\x51\xcd\x1d\x6d\x01\x6d\x96\xf6\x33\xaa\x93\x50\xf7\xa8\x84\x01\x92\x70\xd2\x8a\x8d\x1d\x7a\x16\xe9\x40\xe4\xf1\x0a\x73\x8b\xb9\xdf\xf5\xb6\x41\x62\x8e\xba\x5e\x45\x7b\x2c\xad\x6b\x54\xfa\xc2\xca\xc6\x73\x35\x2c\xed\x5d\x6f\x37\x7a\xa9\x3d\x10\x40\xd4\x80\x5c\xe2\xff\x2b\x4e\x56\xed\x08\x22\x63\x81\xfa\x48\xae\xb5\x13\xbb\x58\x00\x1a\x89\xa0\xa9\x7f\xbc\x2e\xd2\x9a\x00\x4e\x10\xc7\xaf\xd3\x5b\xed\x27\x4b\x1a\x88\xb7\xe4\xad\xc1\xba\xe9\x30\x37\xd8\x87\x34\xba\xbd\x6a\x94\xf1\xdd\x21\xae\xc1\xbd\xd4\x5e\xfc\x51\x6c\xb5\x19\x3c\xc8\xdd\x1b\x65\x84\xef\x0f\x42\x02\x9b\xb5\xa8\x36\xd2\xd5\x83\xe1\x69\x52\x6d\x58\xe4\xaf\x35\x72\x03\x50\x6f\xd8\x8a\x19\x54\x29\x8b\x8a\xef\xe3\x0c\xfe\xb0\x60\x2d\x35\x96\x82\x13\x1a\xda\xa3\x41\x70\x92\x73\x6b\xc1\xf6\xc2\x28\x1a\x21\xec\x3f\x80\xc1\xb2\xb1\x46\xa5\xc1\xea\x74\x73\x07\x12\x03\xcc\xef\x72\xf0\xde\x82\x58\xdc\xc1\x1a\xa4\x32\xa1\xcd\x17\x08\x88\x4a\x8b\x84\xef\x40\xd3\x52\x8e\x52\x85\xc5\x00\xc2\xcf\x17\xfe\xbe\x57\x3f\xa4\xe2\x71\xcb\x60\x09\x46\x41\xa5\xb3\xdd\x74\x8d\x99\x74\x05\x11\xf6\x5c\x38\x4c\x1b\x56\x0a\xc7\xd9\xec\xcb\xd1\xc0\x7c\xd8\x18\xea\xf3\x4e\xf7\x20\x20\xf5\x89\xb5\x58\x8c\xea\x4a\x1a\x84\x69\x8f\x7d\xd9\xe2\x74\xde\x7a\x6b\x6b\xb7\x21\x0e\x28\x34\x4f\x74\xca\xac\x0b\x0d\x30\x5e\x27\xe2\x12\xf9\x9f\x8b\xca\x58\x53\x23\xf5\xc9\xf6\xcc\x3b\x6b\x9e\x10\x45\x0a\xf2\x52\x28\xcd\x57\x05\xa1\x42\x40\xd3\xdb\x61\xbd\x61\x85\x62\x45\x9b\xc5\xef\x6d\xbd\x92\x8d\xc7\x6b\xa7\xdb\xbd\x7d\xc2\x1f\x25\xed\x9b\x00\x63\xdf\x79\x10\x47\x64\xf2\x8a\x73\xa6\x65\x94\x01\xaa\xdd\xab\xc6\xde\xab\xfe\x10\xe6\xe0\x17\x48\x15\x52\xf8\x54\x79\x00\x11\xf3\x78\x62\x76\xd1\xe2\x6b\x4e\x3d\x0e\x1f\x6a\x0c\x90\xe2\xe2\x81\x66\x66\x1d\x9c\x69\xe1\xee\x68\x27\x13\x77\x7d\xa4\xd2\xb8\xb4\x90\xe6\x0e\x8e\x16\x57\x94\x1a\x78\x85\x55\x1f\x61\x51\x7f\xaa\x78\xa7\xa8\x6c\xca\x99\x8e\x84\x9c\xb0\xa3\x88\x5a\x46\xf8\x20\x14\xfd\x59\xf5\x7a\x75\x20\xa0\x82\x4a\x1c\xdb\x30\xe5\x7a\x8d\x87\x6d\xe2\x68\xaf\x73\x92\xce\xc9\xab\xa1\x3b\x15\x7b\x62\x75\x53\x99\xa8\x76\x62\x26\x18\x88\x06\x5d\x73\x57\x1f\xb7\xb6\x95\xdd\xa7\xea\x80\x97\x77\x7f\x55\xae\x32\x78\x61\x6a\xab\xad\x6d\xa9\xd0\x5b\xfc\x51\x55\x1f\x57\xb6\xdf\x7e\xaa\x80\x8d\x7a\x37\x92\x1e\x81\xdf\xe2\xb4\x4c\x82\xc1\xac\x5f\xf2\x0b\xe1\xd8\xe7\xab\x19\x41\xf3\x5a\xa5\x7b\x61\xfc\x15\x3b\x7f\x73\xf3\xfa\x36\x28\xc2\x6e\x5e\x8b\x3b\xc5\xb8\x5f\x7b\xbf\x73\x1f\x50\xbd\x4b\xba\xda\x0f\xd7\x97\xd5\x95\x3c\x80\x54\x47\xc9\xfc\x81\x19\xb7\x4a\x6e\xb9\x91\xf0\x93\x50\xc0\xa6\xe1\x44\xf8\x69\xfb\xfc\x62\xa3\x42\x59\xe3\x97\x42\xac\x25\x22\x57\xbd\x53\xfb\x9f\x7b\x69\x9a\x50\x18\x98\xc0\x25\x26\x50\xc9\x0b\xbb\xdd\x6a\x7f\x33\x6c\xb7\x12\x37\x08\x7d\x0b\x47\x09\x9c\xfd\x56\x39\x47\xb7\xf6\x9c\xbd\xa5\x04\xce\xbe\xd8\x58\xdd\x64\xb9\x0d\x7e\x57\xb7\xbd\x52\x5c\xeb\xcb\x70\x47\x56\x21\xe3\x4f\x5c\x29\xfd\xaa\xa2\x1a\x44\xf1\x65\xf6\xaf\x93\xfb\xa2\x5f\x2b\xd9\xed\x36\x12\x45\x8b\x0c\x0c\xaf\x46\x96\xac\xb0\x11\x08\x82\x74\x77\xd8\xaa\x5e\x37\xb8\x4b\xa4\xdb\x7c\xff\xa4\xfe\x01\xef\xfa\x64\xe3\x55\xef\x4a\x64\xad\xf5\xbf\x0f\x21\x6e\x41\xff\x20\x5e\xd7\xfd\xee\xe6\x4e\xb0\x43\x0a\xe2\x53\x50\x91\xd3\xbf\x85\xe1\x2a\x30\x43\xba\x38\x01\x08\x14\x45\x13\x54\x04\x42\xc6\x05\xc4\x52\x2f\x80\x2a\x78\x10\xb7\x8b\x3e\x6c\xe5\xe7\x2f\x15\xdc\xda\x99\x72\xa4\x6a\x4f\x85\x58\xb4\x96\xdc\xdb\x82\x92\x2c\x7e\xad\x86\xfe\x01\xe0\x0f\xd7\x97\x8b\x5f\x2b\x6d\x9a\x6e\x68\x8f\x36\xc4\x0d\x4b\xe7\x7b\x10\xa9\x1f\x9f\xb8\xc7\x80\xd2\xdc\x19\xbb\x37\x11\xfe\x03\x7d\x0b\xfc\xfe\x29\x18\x6f\xd4\xda\xb0\x6e\x23\x99\x71\x88\x56\xb7\xc0\xea\xa0\x8e\x62\x91\x8e\xdc\x5c\x6f\x11\x09\x01\x2a\x78\x59\xaf\x14\x69\x21\x08\x0f\xa8\xc2\x91\x5b\xb5\x48\x06\x27\x35\x90\xec\x1a\x64\x73\x93\x0b\xd3\x40\xcc\x03\x33\x88\x44\x1d\x21\x16\x74\xd3\x38\x2d\x37\xa2\x54\x47\x8b\xdb\x7e\x3d\x53\xfa\xfd\xf4\x16\xf4\x48\x79\xaf\xe4\x76\x06\x41\xa4\x41\x47\x0b\xd2\xdc\x63\x21\x3c\x9e\x46\x44\x74\x5a\x0e\xa0\x16\x69\x94\xe2\x80\xe7\x73\x93\xab\x1e\xe2\x38\x97\xda\xa9\x42\xfe\xaa\xb7\xda\x85\xc9\xba\xdd\x28\x21\x4b\x2e\x23\x6a\xb1\x3b\xd5\x00\xeb\x1d\x96\x9c\x43\x69\x16\x52\xd0\x46\xc0\xf3\xb5\xeb\xa2\xc2\x53\xbd\x47\x9b\xa2\x4c\xfd\xc5\xea\x48\x3e\x52\xb7\xf2\x4e\x09\x37\x00\xf7\xb6\x91\x9e\xe5\x97\x72\xb2\x80\x95\x46\x54\x54\x67\x6c\xf9\x04\xbd\xdd\x1b\x38\x01\xbf\x84\x1f\xc1\xbe\x11\x75\xae\x2d\x9d\x22\x66\xe4\x11\xe8\x18\xda\xa8\xca\x53\x9f\x35\x5e\x96\xbd\xd2\xf7\x8a\x95\x79\x91\x1b\xc1\xbc\x45\xd5\x49\xe7\x6b\x58\x8f\xd4\x5c\x14\x74\xed\x3d\x6c\x56\xa8\x0f\x72\xa9\x1c\x5d\x9e\x71\xa7\x60\xfd\xb1\x5a\x50\x76\x9d\xdd\xab\xf6\x54\x48\xe4\x66\x7b\x45\x7b\x5f\x76\x7b\x79\x70\xa8\xe2\x0e\xf4\xcb\x9a\x30\x26\x40\x9c\xcc\x41\xac\xb1\x55\xb9\xf6\x64\x51\x25\x65\xa0\xdb\xd4\x70\x2a\x47\x4e\x7e\x8f\x4a\x36\x5c\x09\xac\x34\xbf\xcf\xf8\x1f\x3e\xc4\x7f\x12\x27\xae\x1a\xe8\xd2\x80\xb2\x33\x44\x68\x31\xc3\x07\xd6\x4c\xd9\x53\x90\x78\xc4\x5e\xc1\x4a\x1b\xb6\x3c\xd6\x1a\x05\x4c\x6c\x52\xa6\xe5\x1d\x96\x9d\x7a\x42\x92\xb3\x0e\x6b\x3b\x2a\x21\x47\x4c\x33\xa5\x93\xea\xce\x79\xdd\x75\x30\xd2\xc1\x8a\xac\x90\x64\x31\x17\xb7\x20\x0e\x93\xdb\xe8\x9d\xb0\x78\x47\x97\x0f\x61\x5a\xb6\x99\xcc\xe8\xad\x68\x15\x4a\xe6\xb6\x17\xbe\x97\xc6\xad\x14\x5e\x5a\x6e\xc5\x4a\xf7\x30\xcf\x54\x35\x88\xa0\x64\x35\x76\xa4\x66\x52\x72\x60\xd5\xf9\xd9\x83\x73\x97\x4d\x54\x59\x35\x99\x0c\xe0\xcd\x18\xb6\x01\x47\x35\x61\x72\xa1\x0d\xb0\xcc\x26\x43\x80\x97\xe4\x85\x01\xc8\xec\x38\xac\x0a\x0d\x1d\xd5\x8f\x2b\xed\x0b\xfd\xae\xc8\x2a\xab\x26\x4e\xaa\xd8\x15\xb7\x98\x13\x78\xac\xf1\xc6\xa8\x3e\xc2\xba\xff\x54\x91\xb0\x55\xc7\x9b\xc7\x0b\x12\xbe\x88\x35\xc7\xc4\xea\x6f\x56\x9b\x1a\xaf\xd1\xfe\xc3\x6a\x83\x77\x6e\x55\x61\x69\x32\x52\x1f\xb2\x3d\xdc\x01\x4d\x60\x96\x9d\x6e\x82\x51\xdc\xa1\x5a\x59\xdc\x4f\xa8\x5d\x7c\x19\x7e\x57\xce\x4b\x20\x13\x6c\x27\x01\xbf\x0a\x75\x25\x15\x22\x5d\xf6\xcb\xf0\x9b\x53\x63\x52\x35\x98\x98\xf2\x81\x7f\x56\x15\x30\xe0\x0b\x24\xed\x20\x33\xe0\xb5\x6b\x46\xd0\xe1\xbc\x86\xf5\x1f\xf2\x16\x19\xfc\x4e\x7a\xaf\x7a\x43\x37\x27\x44\x04\xf2\xa2\x9c\x1d\x51\xe0\xc6\x25\x30\x18\xdb\x60\x2c\xf8\xa9\x4a\x26\x85\xc1\x9a\x70\xee\xca\x28\x0e\x3f\x5d\xa4\x56\xbc\xab\x1d\xf3\xef\xff\xa9\x0e\xae\x72\xaa\x19\x7a\x1a\xd6\x1b\xfe\x39\xaf\xbe\x65\x7d\xf2\xc8\x62\x32\x59\x73\xb8\xd2\xb8\xc3\x55\xbc\xc6\xce\xc4\x0b\xfa\x11\x14\x58\xd5\x0e\xa7\x2f\x33\x8b\xe4\xf9\x8c\x5d\x61\xab\xd8\x5c\x71\x55\x2a\x74\xb4\x13\x84\x04\xd9\x95\x70\x03\x8e\x87\xf3\xca\xf6\x48\x27\xe3\x75\x9e\xea\xf0\xf8\x33\xd9\xed\xbe\x3b\xc5\x72\x00\xb6\x57\xcb\x70\xe5\x9b\x6c\x65\xb6\xb2\x55\xe2\x5e\xcb\xa8\x17\xcd\x98\xa6\x78\xaa\x07\x65\x6a\xa1\x74\x40\x79\x89\x14\xdd\x81\x67\x0a\xd3\xec\x6d\x50\x41\xf8\x8d\xd2\x74\xe3\x6a\x90\x9f\x5a\x0d\x5d\x17\x4e\xc6\x97\x43\xd7\x91\xe5\xd7\xd4\x1e\x19\xaa\xe0\x9b\xe7\x4b\xfe\x59\x0d\xbb\x16\xa4\xdb\x34\x96\x1f\x30\x21\x8e\x65\x99\x9f\x49\xad\x38\xaa\xa1\x58\x12\xbf\x11\xbc\xcd\xc4\xd8\xee\xb0\x08\xbb\x79\xc6\xce\x98\x37\x76\x3b\x06\x49\x0a\x42\xa4\x54\xdc\x71\x9c\x28\x32\xed\xc1\xa1\xdd\xcb\x83\xd8\xd8\xbd\xe8\xb4\xb9\x73\x3c\x53\x30\x4e\xb9\x04\x8f\x8a\x5c\xaf\xcd\xa0\x58\xa6\x82\x9f\x53\xab\x56\x36\x05\x60\xc3\x80\xe5\x21\xa8\xcd\xc8\x74\x80\x37\x80\x58\x1e\x04\x8a\x8d\xc7\x6d\x10\xc6\xc6\x07\xc1\xf6\x20\xdc\xa9\xa3\xe9\x43\xa2\x6b\x1f\x9c\x12\x17\x64\x0e\xc1\x7b\xac\xd9\x58\xeb\xf8\x86\x22\x51\x3f\x48\x43\xc5\x21\x13\x3f\x9e\x96\x84\x87\x66\xed\x3c\x98\x65\xe0\x3e\xe7\x1d\x54\xf3\x05\x62\x82\xe6\x0d\x75\xc1\x17\x8b\xe7\x01\x27\x99\x5d\x84\x3e\x21\x8d\xa9\xf5\x96\x24\xdb\x0f\xc1\x28\x03\x27\x3c\x4a\x24\x98\xbd\x28\xdb\x33\x5e\x25\x5c\x6f\xb8\xe2\xfb\xc2\x62\x09\x4b\x21\xbf\xa7\xa6\xe9\x8f\x74\xc9\x76\x05\xd3\x16\xfa\x11\xf3\x61\xf0\xb2\xfc\x77\x68\x51\x10\x15\x30\xb0\xc7\xea\x11\x08\xeb\x2c\x0a\xc8\x59\xb6\x3b\xd4\x75\x94\xe5\x1e\xb5\x7e\xb2\x63\x42\xb9\xbd\x74\x45\xc7\x79\x8d\xb7\x8b\x60\x7a\x2a\x8c\xdd\x93\x79\x02\xda\x08\x92\x9d\xa4\x41\xdb\x06\x42\x91\x11\x15\xae\xf4\x5f\x25\x29\x09\x33\xc9\x2c\x2e\x8a\x2a\xe7\x44\x38\x95\x0b\x56\xf0\x31\x9f\x0d\xe1\x0b\xfa\xaa\x82\x69\x59\x4e\x81\x77\xbd\x46\x1d\x4a\x49\x89\x27\xb4\xb7\xa0\xb3\x48\x66\x2d\x1a\x4a\x25\xf2\xba\xa8\x02\x2a\x38\xbd\xf0\x57\x48\x89\x5a\xba\x1b\x85\xd6\xc2\x9c\x1c\x36\x42\xc8\xa5\xf5\x1f\xdb\xd8\x29\xa6\x8a\xd4\xd7\x17\x9c\x30\xca\x0f\x9d\xa1\xec\x30\x21\x33\xbd\xe9\x81\x97\x57\xf1\xe0\xd0\x86\xec\xd4\xa2\x15\x42\x41\x9d\xc4\x0b\x24\x57\x62\x2f\xe9\xae\x28\x10\xab\x3f\x8d\x6b\x4f\xeb\xe8\x97\xf2\x96\x89\xfa\x56\xee\xa2\xef\x2a\xd9\xb6\xb8\xc6\x93\x2d\x47\x8b\x8b\xa7\x54\x59\x02\x54\x0e\x41\xb6\x1e\x31\xb5\x2e\xee\xc0\x1c\xe9\xa5\xbe\xfe\xde\x0b\xb8\x90\xff\x86\x2b\xaf\xa2\xaa\x74\xe5\x15\x1b\x39\xda\x61\x93\x5e\x4e\xb7\x9a\x6c\x5b\x64\x88\x78\x2d\x67\x6c\x0d\xaf\xe6\xc8\xdd\x40\x2d\x24\xc7\xc0\xf0\xfc\xa7\x3a\x20\x0f\xc4\x2b\x01\x8f\x26\xed\x84\x44\x4b\x55\x34\x6f\x27\xa1\xc6\x4d\xe4\xe6\x72\xce\xcf\x51\x6a\x73\x8a\x61\x91\x3f\x94\xe6\x00\xfc\x7e\xd8\xeb\x6a\x0b\xe3\x40\x96\x42\xd1\xae\x79\x72\x67\x7e\xca\xa2\xd2\x46\xaf\x37\xdd\x41\xe8\xed\xce\xf6\x1e\x57\x52\xb0\x88\x48\x92\x2c\x7c\xf5\xaa\xb1\x6b\xa3\x7f\xc3\x81\xdd\x92\x21\x73\xbc\x6c\x79\xe6\x7c\x6f\xcd\xfa\xf9\x0b\x0b\x22\xe6\x1d\x90\x9f\x8d\xdd\xff\xe9\xd9\x53\x4e\x17\x17\x38\x85\x76\xf0\xe2\x95\xf6\xaf\x87\xe5\x63\x27\xd6\x83\x6e\xf1\xc8\x7d\x26\x33\xcf\x0b\x36\x8d\x22\x2b\xf3\xbd\x89\xc3\x82\x7e\x18\xb6\x17\xce\x76\xf7\x6a\x54\xc4\x6e\xb7\x34\xbd\xcb\x4e\x6d\x09\x12\xdb\x8f\xd6\x54\xca\xe0\xc8\xa9\x9e\xc7\xe7\xe6\xe6\xf5\x22\x2e\xf1\x34\x3f\x3c\x6d\x81\x4f\x2d\x54\x2e\xcc\x23\x02\x70\xc3\x3a\xd6\xe2\xd2\x60\x11\x4b\x21\xff\x31\x2d\x85\xf3\xe8\x80\x67\x99\x28\x7b\x50\x78\x01\x14\xa1\xb8\x38\x83\x76\x10\x1f\x06\x69\xcd\x44\xab\xcb\x0b\x2b\x5b\xbc\x70\xf6\x04\xad\x38\xf2\xef\xb1\x79\xb8\x5c\x47\xfb\x9b\x29\x1a\xf5\x9d\xe9\x59\xe8\x40\x46\xd1\x78\x44\x12\x4d\x1b\xc3\x14\x54\x4d\x11\x4d\x0b\xad\xc8\xa9\x19\x19\x8e\x12\x45\xa3\x05\xa9\x1c\xd2\xeb\xaf\xa4\x66\x93\x7a\x53\xc7\x43\x75\x5f\x41\xd1\xb0\x4f\xe7\x38\x1c\xd6\x90\x16\x85\x27\xea\x92\x75\x26\x98\x61\x6c\x9d\x49\x7b\xef\x2c\x5f\x1a\x8b\x90\x88\x73\xe2\x3c\x70\x2c\xf9\x56\x86\x46\xa0\x49\x3e\x99\x14\xa2\x1a\xe6\x7f\x13\xad\x3c\xb8\xca\xdb\x3b\x65\x66\x8a\x60\xfa\xb1\x42\xd5\x57\x5e\x06\x66\xb7\x5d\x50\xc3\xe0\x48\xe4\xf4\x83\xfb\x29\xcf\x23\x4f\xb9\x02\xdc\xae\x56\x90\xb6\x5a\x55\xc5\x7d\x1b\x9b\xd3\x91\x91\x65\x9e\x15\x9c\x0a\xa2\x0d\x69\x9e\x89\x06\x3c\xc5\x35\x9b\x0b\xa6\x3c\x68\x31\x2f\xcb\x3d\x0b\xbb\x96\x09\x52\x76\x13\x47\x3b\x17\xa8\x96\x70\x72\xa5\xc4\xae\x93\x8d\x4a\x3c\xcd\xe0\x88\xf4\xe0\xe1\x1c\x6e\x04\x35\xdd\xa8\x77\xd6\xa9\x31\xb1\x1b\x69\x29\x33\x71\x71\x91\x37\x7d\xe3\xfd\x8e\xec\x3d\x72\x8b\xff\xc4\x32\xb0\x81\x01\xb2\x3f\xa2\xb3\x66\xad\xfa\xa8\xd0\x82\x26\xed\x3a\xc9\x36\xa4\xb8\x7b\xa1\xbb\x91\x17\x8a\xb6\x2e\xc1\xde\xb3\xc5\x22\x69\x24\x3e\xfe\xf8\xc9\x9d\x7c\xfc\xc3\x27\xf7\xe8\xf9\x95\xea\x1d\x9a\xd8\x9f\x53\x37\x6e\x61\x79\xe0\x88\x48\xc7\xb7\xe2\xbd\x6a\xa1\x43\xb2\x3b\x15\x6a\xb1\x5e\x88\x67\x30\x04\xcf\x4f\x3e\xfe\xf1\x93\x7b\xf6\x14\x7f\x2f\xa6\x93\x99\x6c\xf4\x69\x6e\xbf\x6e\x2d\x35\xd2\xd4\x7f\x1f\xf9\x7d\x7d\x61\x54\xd1\x8e\x0f\x26\x0a\x0e\x5e\xe4\xed\xcb\x25\x18\x6e\x73\x9d\x6a\x7a\xe5\x51\x9c\x27\x65\x28\x89\xba\x98\x5a\x94\x80\x8a\xa6\x37\xc0\xb7\x1b\x65\xb8\x5c\x48\x2d\x4a\xb1\xa2\x30\xdc\xb6\x56\x33\xf7\xc1\x25\xb6\xb4\x98\x46\xea\xd9\x78\x05\x1c\x19\x91\x68\x1b\xf2\x5d\x55\xdc\x69\xc3\x0e\xfe\x2a\xac\xb3\xea\xfa\x12\xbd\x61\x9e\xd5\xa8\xef\x66\x26\x33\xdc\xc0\x4c\x27\x53\x1e\xd5\x62\x4e\xb1\x24\x02\x7a\x1c\x01\x5a\x5c\x18\x92\x09\xc6\xc4\x7a\x44\x5e\x8f\xdd\xef\xbb\xb8\xf6\x8e\x2e\xba\xd2\x00\xc0\x3d\x80\x8a\x49\x67\x71\x77\xcf\x36\xff\x40\x3f\xa3\xbb\x9f\x57\xc0\xc9\xc8\x5e\x77\x87\x6f\x25\x0b\xe2\x17\xd9\x6c\x4a\x9a\x84\x94\x27\x18\x7f\xf3\x19\xd1\xa8\x53\xf1\x6c\xf9\x9c\x27\xed\x4e\xa9\x1d\xb3\x64\xd4\xa4\x11\x01\x7b\xf6\x74\x59\x6e\xcb\x5e\x91\x87\x9e\x57\x53\x8a\x79\x1d\xf3\x1e\x1c\x98\x23\x08\xe2\xea\xc8\xd0\x94\x14\xf6\xc8\xb2\x38\x8e\xb1\xe4\x31\x46\xc8\xe2\xa9\x1b\x4a\x8f\xcf\xdd\xe9\xf1\x91\x3c\x59\xf9\x38\xf9\x2a\x72\x14\x0a\xcf\x99\x93\x45\x25\x62\xa7\xee\x55\x47\x8c\x47\x0b\xc4\x04\x0d\x33\x56\x40\x27\xa2\x6c\xeb\x8f\xad\xf6\x07\xb8\x8f\x99\x66\x7c\xed\xf6\x89\xf5\x96\xa3\x12\x64\x07\x5a\x98\x35\xf1\x01\x51\x7e\x98\x3d\x07\x5c\x15\x27\x08\xd8\xd6\x50\xe4\x55\x98\x65\x98\x1c\x04\x24\x6e\x23\xee\x16\x2a\x9c\x74\xff\x69\xa2\x90\xcb\x67\x2f\x2a\x5c\xd7\xde\xc6\x9d\xb2\x21\x3b\x68\x71\x7e\xf5\xc6\x2d\xaa\x58\x61\x40\x8a\xbb\x84\x9a\xb0\x27\xc5\x3f\x5a\x4b\x77\xdd\x64\xab\x05\x35\x1a\x15\x67\xee\x16\xdb\x44\xfc\x6d\xec\xd4\xa4\x43\xd4\x99\x32\x9f\xc6\x5d\xb9\x6c\x05\x50\x6d\xd8\x92\xb1\xa0\x16\xbb\xfa\x9d\x78\x9b\xae\xe4\x60\x66\x77\x07\x10\x7d\x32\x5f\x0b\x3a\x60\xc5\x1e\x85\x97\x91\x93\x87\xf6\x44\xf1\x05\xf0\xaf\x7d\x64\x9e\x43\x83\x99\x7d\xce\xa7\x32\xe7\xa1\x67\x27\x33\x71\xd4\xb3\xc5\xe6\xd8\xea\x5d\xc0\x53\xf6\xf9\x4b\x4c\xb6\x5d\x95\xf4\xed\xe8\x22\xcf\x7b\x95\x2d\xef\xab\xd9\x6a\xe3\xb6\xa7\xaa\x47\xcb\x5b\x90\x0c\x48\x16\xb5\xc8\x24\x91\x7e\x91\x56\x44\xc6\x2e\x48\x27\xf6\xaa\xeb\x16\x15\xaa\xf7\x17\x06\x44\x58\xf2\x96\x89\xba\x26\xbe\x93\xc2\x7e\x98\x43\x71\xe9\xe4\x16\x54\x0c\xaf\xb2\x22\x55\xb9\xe4\x8b\xad\x2c\xf4\x42\x06\x95\x39\xe4\x90\x93\x68\x79\x3c\xd0\x10\x66\xb7\x40\x68\xfd\xaf\xe4\xd6\x31\x1d\x41\x4e\x53\xad\xf8\xb6\x38\xbf\x06\x3d\x3e\xb2\x74\xa1\x41\x0d\x08\x0d\xcc\xd3\x46\x4d\x4f\x97\x85\x05\xd0\x17\x5a\x3e\xba\x1d\x2f\x5b\xfb\x40\xe3\xf2\x2a\x0a\x55\x08\xed\x69\xec\x6b\x86\x17\x45\xcb\x11\x2d\xe3\x95\x93\x4c\xe2\x78\xd9\x16\x76\xc3\x0c\x94\x29\xe6\x55\xe2\xb0\x03\xc9\x4e\x37\x91\x01\xd9\x4e\xf5\x5b\x69\xd0\x64\x97\x6e\x4d\x82\x9a\xe1\xe2\xfc\xdd\xbb\xf7\xb7\x49\xbb\x00\x34\xcc\xb4\xc8\x32\x05\x57\xa5\x49\xbb\x82\xc3\x52\xdc\x7c\x25\x44\x72\x99\xe2\x12\xc7\xe0\x72\x11\x2e\x33\x69\x5e\x5b\x54\xbe\x58\x68\x4b\x10\x42\x8b\xf6\xb7\x47\x57\xc8\x47\x18\xe2\x4f\x55\xb8\xcf\x7f\x0f\xff\xab\xdc\x24\x22\xb3\x52\x41\xb2\x99\x8c\x59\x92\xdb\xbc\x58\x5b\xdb\x4e\x4c\x24\x50\xba\x1c\x24\xea\x88\xed\x76\x67\x91\x81\x59\x09\x34\x76\x3d\x85\xdd\x65\x7b\x24\x76\x28\x99\x18\xfd\xf7\x01\xf5\x4a\x68\xa3\xba\xa8\xee\xb5\xd3\x4b\xdd\x91\x24\xfc\xe7\xf8\x41\xe9\xf0\x6b\xe4\x38\x9d\x55\xae\x9d\x78\xe6\x76\xd2\x88\xa6\x93\xce\x9d\x3d\x1a\xb4\x00\xf6\xd7\xab\xcf\xfe\xd1\xf3\xab\x1e\xcd\x22\x9f\x3d\x05\x88\xe7\x13\x74\xf5\xca\xf6\x0d\xdd\x9d\x46\x13\x70\xa4\x39\x9c\x0e\xdb\xd4\x20\x33\x92\x6d\x55\x1a\xf8\xdf\x51\xe7\xca\xf6\x77\xa9\x1f\xdf\xf3\x75\x81\x5d\x11\xdd\xbd\x97\xdd\x50\xde\x1d\x41\xed\x50\xc6\xfd\x50\xa1\x57\x78\x2a\x8b\x2e\x01\x18\x21\x08\x32\xb4\x59\xff\x09\x07\xcd\x3f\x1c\x69\xe4\xb5\xea\x76\x20\xe5\x7d\x57\x61\x4b\xf8\x8e\x7d\x1c\x5a\x06\xf3\x82\xcb\x34\xe4\xa1\xdf\x34\xa6\xce\xcc\x46\x16\x80\x42\x76\x41\xc0\xca\x66\x13\xc8\x29\x76\x22\xbf\x97\x3e\xb0\x91\x54\x3c\x7d\x5c\xd3\x6b\x74\xfb\xa6\xf4\x4e\xe2\x75\x75\x8c\x2d\x84\x89\x6b\xed\xf5\xda\xd8\x3e\x1b\x86\x1b\x34\x03\x12\x8b\x98\x25\x42\xb4\x22\x57\x75\xba\x51\xc6\x21\xb5\xa3\x5f\x21\x65\x52\x5c\x8a\x00\x8b\x57\x89\x20\x31\xf1\x56\x80\x1f\xfc\x3d\x53\x8a\x01\x43\x95\x95\x1c\xbc\xad\xb5\xd1\x1e\x3d\x87\x34\x08\xcf\xa4\xc2\x2c\xd7\x2b\x29\xe8\x82\x01\x13\x39\x37\x13\xf5\x67\x3c\xec\xfc\xc3\xd3\xc3\x5e\x3f\xd9\x04\xb1\x8b\x31\x5b\x2d\xe0\xf8\x61\x82\x20\x0b\x51\x0e\x4c\x54\xef\xfa\xc1\xd0\xcd\xf9\x60\x54\x91\x98\xe4\x1b\x3a\xce\xcd\x81\x43\x60\x3c\xf1\xbd\x6c\xee\x80\xb8\xf4\x6a\xa5\x7a\x65\x1a\xf4\x54\x90\x3e\xd3\x47\x90\x81\x04\xbb\x01\x50\xb1\x80\x5c\x83\xe4\x79\x8f\x5e\x32\xe4\x6d\x25\xde\x84\x94\xef\x37\x76\xe8\x7f\x08\x80\x41\xe3\x1d\xe1\xf8\xde\x66\x94\x1f\xda\xc9\x7a\x01\xb6\x24\x14\x46\xc1\xa1\x20\x7b\xf2\xba\xce\x54\x15\x4e\xb0\xa2\x3e\x7a\x0f\x32\x3e\xd4\xc0\xb9\x83\x69\x92\x0e\xee\x06\xbf\xaa\xbd\xf4\xcd\x86\x2c\x2a\xfe\xc2\x3f\xd1\xa0\x62\x2d\x7f\xa3\xd4\x9b\xf8\x81\x5b\xc0\xf1\xa6\x70\x6c\x1d\xd1\x2b\xd9\x6c\xd8\x59\xc4\xae\x6a\x0a\xb3\x82\xec\xd8\x6d\xb4\xf2\x02\x7a\x82\x70\xaa\x15\x5b\xf9\x59\x6f\x87\xad\x88\x80\x58\x14\x76\xc9\x49\x69\xb7\xb1\x98\xb7\xbe\x18\x1b\x11\x7e\xbb\x11\xc6\x18\xc3\xc3\xb6\x18\x46\xa9\xb6\x06\x71\x23\x10\x9d\xc2\x6a\xb9\xe2\xa8\x56\x21\x2c\x50\x0c\x6b\x45\x71\x81\xf2\xdc\xe3\xf4\x3b\x5c\xad\xc9\x92\xa4\xa2\xcb\xe1\xb2\x1b\xd4\xa3\xe7\x34\x8b\x81\x9e\x06\xac\xbc\x3f\xde\x72\x60\xad\x6c\x83\x30\xc4\x82\x88\x66\x5a\x6c\x17\x18\x5a\x23\xad\xb5\x19\xa8\xe2\xc8\x65\x91\x45\x66\xca\xba\xa7\xaf\xde\xdc\xa2\x61\xeb\x03\xc5\x6b\xba\xdf\xa8\x83\xc7\xd8\x5f\x29\x58\x14\x46\xc1\xc8\xae\x34\x43\x44\x30\x99\x0f\xc6\xf2\x40\x91\x0d\x42\x84\x93\x9d\xf4\x9b\x54\x17\x1c\xf2\xda\x39\x62\xdc\x8d\xc6\xf9\x2c\x98\xd8\x84\x9d\xda\xc0\xc8\xca\x85\x15\xb0\x25\x0f\xd3\x46\x76\xc1\xbd\xf4\x0d\x25\x72\x41\x48\xc4\xcb\x9b\xd2\x00\x2a\xb8\xc5\xc8\x3c\x20\x4e\x40\x1b\x6d\xdd\xd2\x6a\xc8\xcd\xdc\x78\x4b\xf2\x01\xc3\xa1\xcf\xec\xaa\xa2\x33\x22\xa4\xf3\x89\x01\x5f\x15\x48\x51\x75\xa7\xcd\x1d\x72\x56\xbb\x43\x4a\xc8\x18\xc9\x0b\xbb\xd3\xaa\xfd\x2e\xcb\x0b\x0a\x8a\x2b\x9c\xfd\xff\xf7\xff\xfe\x7f\x9e\x5c\x40\xbb\x2f\x7c\xdf\x3d\xb9\x08\xd2\x19\xc0\xd3\x38\x12\x02\xf1\xfe\x3f\xab\xc1\xec\xd9\x00\xf5\x03\xfd\xaa\xc2\x37\x92\x88\x6a\x30\x8e\xad\x19\xf0\x47\xc5\x5f\x40\x29\x2a\x0e\xd9\x06\x24\xa2\xaa\x4c\x3c\xe1\xde\xd9\xe2\x90\xfb\xfb\xa0\x9b\xbb\x9a\x2e\xa5\xce\xc4\x7f\xc1\x97\xc0\x30\x60\x7c\xce\xc3\x91\x11\xe9\x3f\x2e\xda\xd1\x21\x92\x3b\x88\xe2\xe1\xc8\x6e\xeb\xe9\xbc\x90\x25\xdf\x72\x08\x14\x3b\x00\x76\xda\xa8\x6a\x37\xb8\x0d\x59\xbc\x85\xda\xae\x06\xb7\xc1\x20\x27\x9f\x29\x88\x4e\x8e\x01\xa7\x66\x82\x63\x29\x7b\x55\x6f\xa3\x67\xc1\x78\x77\xc7\x85\xc3\xee\x6b\xe9\x5a\xeb\xa0\xfc\xa2\xaa\xe8\xfc\x23\xd7\x02\x57\xc5\x23\x8d\x8f\x32\xdf\x2b\x44\xda\x2b\x05\x90\x5e\xf5\xc1\x56\x4f\x9a\xb6\xf6\x72\x4d\x25\x81\xef\xe0\xa2\xb6\x17\x5e\xae\x19\x11\x62\xfe\x99\x7f\x56\x5e\xa2\x65\xd7\xad\x5c\x4f\xe3\xc7\xed\x86\xae\x9b\x46\x99\xeb\xe4\x52\x61\xf2\x25\xfe\xa8\xb6\xd0\x48\x6f\x8d\xa2\xa3\x2b\x7c\x54\x0d\x3a\x4c\xb8\xe8\x3a\xe1\xaa\xb5\x0e\xe7\x73\xd9\x06\x8e\x1a\x40\xfa\x37\xfa\x89\x43\x50\xf7\x72\x0f\x69\x72\x4f\x9f\x1b\xed\x38\x1a\xe1\x6b\xfa\x45\xc9\x74\xf7\x81\xa0\x78\xe1\x11\xe1\x91\xfd\xe7\x3d\x72\x15\x7e\x53\x96\xb7\xc0\x50\xf5\x69\x76\x82\x65\x8c\xb7\x56\x50\x06\x71\xb4\x6e\x63\xf7\xa6\xba\xd7\xad\xb2\x78\x66\x70\x20\x03\x8a\xc7\xb8\xec\xed\xde\x05\x8e\x0f\x46\x9b\x3e\x61\x7a\x41\x04\x0f\x41\x0f\x5e\xdf\xbe\xbd\xfc\x77\x81\x38\x60\x1e\x16\x55\x9c\x89\x85\xbd\x57\x3d\x87\xd5\x78\xcf\x3f\x53\x26\x7b\x86\x66\x43\x86\x56\x8f\x2a\x8d\x5c\x04\x75\x5e\x76\x05\xe4\x0d\x24\xcc\x00\x52\xcc\xbf\xf3\xae\x9b\xc9\x63\x9b\x9e\x7a\x79\x88\x56\x49\xad\xc0\x2b\x12\x20\xc1\x78\x4d\x92\x80\x83\xd9\xca\x98\xef\x62\x06\x7e\xc4\x7e\x55\xaa\x85\xa5\xbf\xc0\x08\x8e\x64\xac\xf6\x4e\xed\x89\xb7\xe4\x2c\x32\x61\xaa\xa3\x29\x1b\xfa\x0c\xe5\x00\xf0\x2f\x64\xff\xd2\x6a\x5f\x64\xee\x7a\x85\xeb\x80\x9a\xe5\x88\xc4\xe1\xc8\x52\x83\x5c\x00\x24\xbe\xbc\x46\x64\xc6\x9a\x1a\x8e\xd4\x3a\x6c\xb8\x0b\x62\xda\x21\x53\x18\x6b\x9e\xe0\x79\x8b\x99\x45\x23\x90\x14\xe5\x2d\xf1\x61\x09\x05\xb0\xed\xe0\x7c\xbd\x54\xb5\x35\xb5\x4c\x63\xf3\xd7\x60\x82\xbb\x44\xf7\x2f\x19\xf6\x27\x1c\x7c\xf2\x8e\xdc\x01\x7a\x0b\x52\xa2\x08\xfd\x08\x41\xd6\x72\xe4\x28\x76\x50\x20\x44\xec\x47\x8e\x19\x69\xed\x98\xbb\xe6\xa0\x89\x00\x1b\xec\xd4\x73\x7c\x41\xf9\x94\xf5\x2a\xd7\x7d\x4d\xfa\x05\x54\xab\xc6\x98\x59\xac\x42\xcd\x1b\x80\x24\x8d\x02\x6a\x25\xfd\xc8\x37\xf5\x8e\xcc\x3f\xb1\x49\xe9\x28\x43\x2f\xab\xf2\x6a\x7d\xfe\xaa\x39\x2c\x34\x60\xf6\xd0\xa7\x3a\x2c\x37\x76\x2b\xe8\xb1\xb2\xc5\x62\x91\xd7\x17\x65\x79\x54\x8f\x02\xab\x9c\x0e\xf1\x53\x0a\x72\x85\xdc\x9c\xf6\x74\xbf\x88\xa7\xe7\xd3\x05\xc0\x06\xf5\x5f\x5e\x60\x6d\x83\x52\x68\xa9\xd6\x9a\xc2\x61\xa2\x44\xab\x38\x38\x47\x42\xb2\x94\xcd\x9d\xdb\x49\x8c\x8a\x48\xed\xc1\xf3\xd9\xf6\xd9\x7a\x6d\x54\x57\xa3\x5d\xb3\x38\x13\xf4\x19\x33\x91\xb2\x66\x8b\x9e\xbd\xd4\x46\x6b\x5e\xb6\x6d\xed\xb7\xbb\x60\x29\xf4\xf8\xc4\x3d\x7d\x16\xba\xfd\xfc\x71\x06\x95\x00\x1e\xa7\x6d\xd9\x52\x88\x56\x36\x53\xcc\xf3\xc6\x56\xbe\x79\x1e\x37\x8d\x0f\xc1\x18\x18\xb8\x45\xcf\xf0\x10\xdf\x4c\xa8\xcf\x5e\x99\x56\xb5\xa2\x4d\x9c\x40\x36\x37\x8c\x84\x86\xb6\x3b\xd4\xde\xd2\x2a\x4d\xd4\x86\xfa\x1b\x00\xc2\xb0\xb3\x9e\x2a\xb0\xcd\x04\xfe\x04\xba\xfb\x08\x9d\xc1\xa3\xde\x0a\x33\x52\x75\x89\x81\x48\x35\x04\xd6\x21\xe8\xbe\x4c\xf4\x32\x4c\x78\x56\x18\xf0\x0c\x3d\x4a\xb0\x3d\x78\xe7\x4e\x61\x2f\x05\x9c\xa2\xc1\x2f\x7e\x91\xd3\xc1\x60\x60\x8f\x06\xc5\xcc\x12\x95\x1e\x8c\xf9\x48\x8c\x8c\x5e\xc7\x8b\x97\xc9\xda\x52\x51\xd8\x4a\xde\x31\x28\xcc\x4c\x22\x54\x72\xd9\xc0\x34\xd0\x75\x28\xb1\x3c\xe9\x5c\xa6\xcd\x56\x58\xc9\xb8\x18\x62\x35\x57\x5a\x84\xb5\x10\x96\x7f\xad\x5d\x2d\x23\x75\x34\x3e\xe8\x2d\x59\x0c\xdd\x49\xb6\xc1\xa4\x40\x2d\x92\x4e\xde\x11\xe3\xfc\x50\x45\x48\x1f\xb0\x0e\x77\xd8\xf2\xe9\x1e\x63\x95\x06\x81\x4d\x8a\x90\x19\xee\x59\x78\x08\xd0\xa3\x56\x33\x17\x4d\x86\xc8\x6a\x29\x18\xf5\x64\x54\xb1\x9a\xd4\xaa\x54\x51\x21\x67\xe6\xac\xe1\xd7\x77\x81\xa9\x71\x6d\x6c\x4d\x5a\x84\x34\x03\x65\x77\x82\xf9\x43\x20\xdf\x23\xb5\x43\x14\xf0\x8f\x55\xc4\xc6\xa9\xf5\x7e\x93\x55\x1b\x48\xea\xc4\x9e\x8a\xa1\x85\xd3\xa6\x51\x29\x7e\xab\x6a\x43\xfd\x8b\x87\xf5\x69\xc9\xed\x1f\x6d\x27\xf8\x16\x67\x0f\xb3\x80\x47\x43\x51\x89\xed\xe3\xb6\x22\x72\x18\xf6\xcf\x5a\x6a\x93\xb6\x97\xb7\xe8\xd6\x43\xa7\x8a\xdf\x64\x27\x48\xd9\xd3\xc9\x52\x3e\xa7\x61\x44\xed\x52\x9a\xb2\xaf\x5f\xd4\xc6\x06\xda\x0a\xa4\x07\x78\x41\x9a\x1d\x90\x5c\xc9\x20\x25\x3b\xc9\x20\x3b\xb5\x07\xa3\x33\xda\x9a\x8d\xab\x79\x3b\xbc\x24\x31\x30\x5e\xca\x3c\x65\xc3\x94\x34\xd9\xd8\x54\x72\xeb\x04\xc9\x30\x23\xe0\x6e\x58\xb6\xba\x67\x1a\x4a\x1f\x2c\x65\x26\x2a\xc1\x8e\x5c\x58\x6f\xe4\xa6\xdc\xa8\xe2\xc8\x58\xb9\x60\xe8\x79\xa4\xd6\x1c\x07\xe0\xa4\xea\x3f\xcc\x20\xa8\x02\xb7\x1f\x28\x76\x62\xd5\x99\x42\x07\x8e\xbd\x84\xcb\xa5\x83\x90\x33\x0a\xff\xc3\x4b\x22\xe5\xaf\x34\x8a\x74\x2f\xb5\x69\x63\x9a\x44\x05\x4c\xf4\x1f\x8f\xe9\x49\x04\x63\x37\xef\x98\xc3\x87\xda\x0b\xd4\x2d\x72\x5a\x88\xfa\xf4\x1e\xfe\xc7\x54\xa3\xf6\xac\x5e\xde\xab\x3e\x46\x45\xa2\x90\xee\x40\xaf\x51\x58\xca\x92\x17\x63\x01\x29\xcb\x82\xbd\x0e\x89\x24\xfd\x62\x7e\x9e\xdd\x74\x4a\xf6\x75\x2c\x7f\x01\x9f\xa2\x9b\x60\x89\x12\x57\x2e\x70\x8d\xaa\xc9\x61\xde\xd9\x79\x30\xaa\x2e\x87\xa4\x1a\xb7\x73\xc0\x76\xa7\x4c\x01\xfb\x7e\xa7\x4c\x2e\xef\x15\x88\xad\x53\xed\x08\x33\xde\x7d\xcc\xc3\x4b\x87\xc1\x00\xf1\xf6\x87\x7f\x4e\xdb\x99\x01\x51\x33\xe5\x0c\xa8\xb1\x39\xdc\x3b\x3b\x01\xe2\x0d\x17\xcf\xf5\xf1\xec\xa5\xf9\x51\xfb\xc9\x04\x51\x66\x8d\x66\x25\x31\x46\x18\x02\xc5\xe3\xba\xa8\x26\x22\xe3\xca\x0a\x7c\x84\x2b\xea\xe6\x17\xf1\x1e\x12\x76\x97\x04\xf6\xb0\x55\x2b\x74\x8e\x73\x0a\x95\xa1\xe5\x42\x18\x17\xd7\x66\x65\x73\xe2\x84\xae\xa6\xe6\xc0\xa5\x50\xb1\x10\x2d\xf9\x8a\xa8\x35\x8f\x62\x4f\x1f\x85\x08\x36\x72\x69\x8b\x38\x89\xe4\xcc\x48\x31\xbe\xc7\x0d\xe3\x68\x37\x47\x5a\x35\x73\xad\x80\x43\xe2\x94\x3f\x56\x64\x70\xec\x64\x44\x54\xf9\x8b\xf0\x81\xd2\xe6\xd2\x63\x22\x77\x48\xab\x08\x47\x7c\xb4\x21\x52\x5b\x0a\x53\x47\x68\x71\x7d\x7b\xb9\x14\x67\xe2\xa4\xc5\xc5\x1d\xe7\x12\x96\x6e\xca\xa2\x95\x1c\x32\x59\x01\x13\x26\xba\x98\xe1\x3c\x0f\x8e\x79\xba\xdf\xa0\x75\x19\xef\x3a\xba\x99\x12\x0f\x6e\xf0\x31\xcc\x51\xcc\x93\x6d\xcc\x25\x1f\xd8\x6d\x09\x62\xad\x8d\x3a\x8e\xfa\x48\x39\xd6\x78\xa3\x9e\x7b\x9a\xb3\x90\x5d\x57\x47\x1d\xd3\x79\xd7\x09\xfa\x98\x05\x75\xfc\xea\x85\xb7\x20\xc5\xa5\xa6\xb6\x6c\xdc\x32\x57\x88\x56\x6b\x5b\x2f\x0f\x5c\x86\xb6\x1d\xc6\xa2\x3d\x52\x64\xab\x0c\x88\x1c\xc0\x87\x51\x91\xb7\x31\x61\xa6\x88\xe3\x20\x8d\xb6\xf7\x33\x39\x0b\x5c\x8f\x9e\x8f\x0a\x37\x0b\x02\x44\x03\x41\xde\xe3\x8f\x39\x10\xb2\x77\x8e\x62\xd7\x35\xc7\xcc\x0a\x1e\x57\xb3\x15\x2b\xe9\x52\x89\x4b\x74\x40\xee\xbf\xa2\xdc\xd6\x3a\x0f\xc7\x1c\x99\xb7\xbf\xb5\x18\x82\x02\x3f\x1f\xa8\x27\x15\xa0\x8a\x26\x25\x60\x27\x05\x2d\x12\xfd\x4e\x4a\xa4\xcc\xf2\x16\x8d\x6e\xd9\x76\x56\x3e\x9f\x14\xae\x57\xf2\x4e\xcd\x60\x20\x35\x14\x43\xa3\xd6\xc7\x0e\x51\xdd\x63\x87\xec\x5c\xf9\x4c\x53\xf1\xd9\x97\x5b\x3c\x46\xd4\x1e\xed\xf0\x36\x66\x95\x3b\xdc\x0c\xdb\x9a\xfb\xe8\x88\x02\x84\xaf\x58\x3c\x8c\x40\x2d\xa1\xca\x5f\xe3\x77\xea\xee\xbf\x01\x6b\x7c\x82\x3d\xfd\x35\x14\x0b\x1e\x7e\x04\x9d\xc5\xb0\x3e\x67\x8f\x8f\xe8\xfa\x11\x6c\x16\xda\x4c\x2b\xc3\xc5\xfe\x14\x9b\x69\x33\x4f\x05\x3a\x05\xf0\xe2\xaa\x54\x2d\x17\x24\x0d\x3f\x42\x7f\xcb\xac\xd0\xa8\x08\xc2\x93\x8e\x11\x42\x72\xf0\x5e\xe1\xa8\x06\xb8\x6b\xfc\x1c\x65\x3e\x84\xac\x2f\x0a\xf0\xb1\x99\x96\x18\x83\x8e\x26\x8a\x87\x99\x58\x8a\x67\x52\xe8\x96\x4d\xb9\x1f\xc5\xe1\xc6\xaf\xe7\xb8\x58\x8a\x41\xa7\xfa\x22\x8e\xf0\xf9\x8d\x58\x98\xcb\xed\xd5\x2a\xe2\xe1\xab\xe1\x96\x66\x87\xba\xca\x21\x20\x58\xa8\xf9\xb6\x2a\x76\x96\x1f\x29\xba\xc2\x1f\xa9\xe6\x10\xf7\x13\xf9\xdd\x8b\xec\x33\x2e\xf3\xc2\x8e\x85\x13\x43\x1c\xe6\x10\x90\x88\x15\x0e\x85\x1f\x0f\x47\xc2\x0c\x72\xdb\xdf\x6c\x90\x8c\x1a\x6b\xee\x55\xef\xd8\x76\x9f\x31\xb2\xe6\xf1\x97\x56\xa7\xe9\x19\x29\x29\x42\xdd\x64\x7a\x75\x23\xef\xd5\xe8\x10\x0f\x2c\x4f\x64\xa1\xca\xfc\xc6\x76\x36\xb1\x58\xf8\x35\x06\x20\xdb\xa2\x93\x76\x96\x3b\x4a\x4b\x93\x77\x2e\x06\xfd\x2e\x4f\x1d\x82\x9c\xe9\x0c\x65\x8c\x54\x5c\x65\x66\x0c\xcf\x45\x0d\xc4\x20\x5d\xc1\x7a\x76\x8a\x85\xbd\xb7\x11\x34\x1a\x37\xcd\x82\xcd\xbb\x2b\x12\x8f\x91\xdb\x1c\x6a\x94\x5e\x93\x8b\xa2\x36\x85\x19\x22\xe3\x3e\x6e\x7e\x36\x5f\x79\x52\xba\x52\x5b\xbf\xa0\x70\xcd\xc8\xe4\x4e\xf6\x5e\x37\x7a\x27\x23\xa9\xbc\xca\x52\x02\xa4\xf4\x5e\x36\x1b\xd8\xd6\x39\xd3\xf5\x2b\x29\x0e\x58\x5f\x00\xeb\x91\x0c\xb9\x41\xd0\xf2\x72\xf9\xeb\x4c\xe9\x18\x3c\x3a\x2f\x1d\x13\x01\xc5\xaf\x15\x5d\x62\x65\xe2\x5a\x7e\x99\xc5\x99\x8d\xdd\xee\x64\xaf\x4a\x35\x2a\xa4\x44\x3d\xea\x2c\x5c\x98\xa5\x00\xec\xf7\x56\xc4\x1b\x18\x7c\xbd\x0b\x4e\xb0\x52\x01\x88\x9a\xc2\xa8\xbb\x28\xd1\x62\xac\xea\x33\x8c\x48\x30\xae\x90\x6b\x38\x13\xfc\x8b\xf3\x8b\xdb\xbf\xf1\xad\x5f\xe8\xb9\xad\x7b\xe5\x86\x0e\x67\x04\xdd\xa9\xe8\x63\x65\x07\xd3\x2e\x22\x10\x3e\xa1\x04\xdc\x56\xaa\x2b\x3b\x44\xe8\x81\x25\x76\xee\x84\xdc\xa5\x6a\x24\x30\xea\xd8\x66\xe8\xeb\x46\xc9\x36\xeb\x7d\xaf\xf0\x1d\x83\x31\xfe\xad\xea\xd7\xb1\xa3\x5f\x83\xbf\x18\xd3\x0d\x05\xa9\x26\xf7\xd2\xee\x20\x5a\xbd\x42\xaa\xeb\x05\xab\x1b\x42\x75\x1b\xe9\xea\xfc\xa9\x2c\x58\x20\xb1\xb6\xa0\xfd\x19\x4d\xcc\x52\xf9\x3d\xc6\x7d\x42\x4f\x02\xa8\x97\x74\x5c\xee\xa7\x91\xbb\xd0\x53\xac\xe3\x29\x70\x2e\x2d\x13\xee\x7f\xc3\x0f\x22\xdf\x3c\x73\x23\x31\x73\x66\xd5\x21\xf1\x0b\x6b\x68\x8f\x5b\xc6\x5b\x81\x23\x84\xdc\x4e\x1b\x34\x1f\x74\x8c\x04\x5f\xa3\x3f\x44\x5f\x23\xa1\x8d\xb7\x33\x3e\x48\x8c\x1f\x31\x31\x53\x13\xaa\xa1\xb4\x7f\x0d\xbd\x38\xf9\xf8\x3f\x3e\x85\x2d\xe1\xe5\xb2\xce\x4f\x07\xb2\xf3\x8c\x9f\x05\xd4\x58\xe1\x93\xf2\x8a\xfb\xee\xa0\x1c\xe4\x7c\xe6\x21\xbc\xa5\xc5\x93\x2c\x9f\x28\x83\xcd\xb3\xf3\x99\xf4\x56\xec\x54\x0f\x54\x91\x47\x33\x5a\xba\x2e\x8a\xa1\x41\x6e\xbf\x4f\x35\xc1\xaa\x89\x39\xb7\x13\xb4\x91\x0c\x32\x4c\x49\x05\x09\x45\x2b\xbd\xac\x97\x7d\xb0\x4d\x97\x5e\x46\x4b\xc6\x79\x5c\x0c\xdb\x0e\x29\x22\x11\x8c\xa2\x5d\xd1\x45\x5e\x46\xdc\x43\xdb\xb5\xab\xd1\x1d\x9b\x74\xb8\xb7\xec\x63\xdd\xe9\xc6\x8b\x98\xae\x1d\x87\x04\xa2\x67\x44\xd6\xf4\x28\x4b\x7c\x7c\x6d\xd5\x2b\xb7\xc1\x27\x13\x00\x60\xa5\xf6\x62\x6b\x91\xa1\x8d\x14\x49\x9a\x1a\x0d\xf7\x68\xbf\xe6\xe6\x3f\x45\x37\xd8\x16\x88\x07\x64\xf4\x10\x42\x44\x85\xa6\x56\x5f\x87\x8d\xcc\xff\xe7\xf0\x25\x8a\x10\xb5\xaf\xa1\xdf\xee\x78\x5d\xe3\xd7\xd3\x68\x3d\x6c\xa5\x21\x93\x5c\x6d\x84\xed\x5b\xd5\x73\x80\x5a\xf4\x6c\xf6\x9b\x39\xcc\xc4\x97\x12\x52\x66\xe7\xb2\xab\x21\x42\x4b\xe9\x71\xd9\x02\x95\x0b\xb7\xb4\x00\x40\x13\x76\x8d\xe9\xe1\x46\x96\xd3\xf3\x65\x39\x26\x5c\xb8\x44\xe7\xe8\x07\x6e\x8b\xc1\xf0\x36\xc7\x52\x51\xef\xfd\x2b\x6b\x7a\x1e\xfb\xb8\x15\x78\xbb\x24\xab\xef\x72\x40\x73\xc2\x68\x88\x4f\x2a\x26\xe7\xfb\x7f\x3b\x69\x7f\xe0\x97\xa3\xe4\x56\x4d\x6d\x37\x21\x91\xc6\x21\xe7\x48\xe0\x68\xd0\x0e\xe3\x3c\x43\xff\xe1\xf4\xe3\x3e\x2f\x02\xa9\x64\x31\x28\x33\xdc\x44\x8e\xeb\xe7\xfc\x10\x2b\x60\x30\x26\x97\x51\xfb\x8c\xa4\xf0\x95\x55\xba\xe6\x09\xac\x4a\xe8\xa4\xa6\x3d\x47\xd1\x0f\xa8\x14\x19\xe9\x63\x93\x4d\xa3\x16\x55\x66\xc8\x92\xb1\x0b\x49\xfd\x92\x65\xcf\xe8\x8a\xb2\xdc\x79\x7d\xd1\x18\xa0\x4d\x4a\xd1\x13\x57\xd4\x6d\xeb\x76\x50\x35\x0b\xf3\xef\x2c\x12\x07\xf8\x1a\xb7\x20\x08\xb1\x63\xcc\x51\xa2\x2b\x3b\x54\xbb\x61\x09\xa7\x34\x05\x67\xa6\xa5\x9b\xd9\xee\x78\x1b\x3c\x2a\xf8\x9a\x9c\xf9\xad\x02\xfd\xe8\x54\x9b\x1d\x9c\xe8\x72\x08\xff\xf3\x8c\x19\xc3\xe6\x3c\x37\xf5\xf9\xc5\xa0\x50\x31\x2f\xbe\x0f\xf7\xc4\x3f\x94\x9d\x54\x14\x59\x07\xfe\xe7\x19\xf1\x15\x10\x46\x55\xd3\x3a\x64\x8c\x88\x9c\x53\xd2\x0b\x11\xa7\xd1\x20\xe3\xf1\xe1\x70\x38\x3c\xd9\x6e\x9f\xb4\xed\xe3\x99\x5e\x67\x6c\x71\xec\xf6\xc8\x20\x81\xf5\x4f\xa3\x93\x21\xc3\x94\x49\x19\xf3\x63\x87\xd6\x25\xf9\x3c\x7d\x40\x95\xeb\x52\x79\x74\xa3\x4b\x23\x47\x3b\x29\xcd\x9e\x83\x33\xcf\xee\x3a\x95\x9c\xa8\x80\x88\x51\x70\x84\xbc\x2f\x23\x09\x2d\xcb\x1a\xc5\x1a\x7e\xb0\x81\xd1\xc0\x90\x39\x66\xbb\x4a\x8d\x19\x0d\x0a\xbd\x15\x78\x74\x48\x32\xc9\x28\x0d\x6b\x94\x8e\x66\x00\xe7\x65\xa3\x54\xfb\x7f\xa7\x7c\x34\x57\xfd\xdc\x32\xf8\x82\x84\x54\xed\xf5\x9d\x16\x67\xe2\x2f\xfa\x4e\xe3\xef\x05\x47\x87\xce\xa2\x41\x7b\x8b\xd9\xdf\x15\xf9\xa1\xaf\x90\x83\xc6\x69\x1b\xf6\x69\x15\xf4\xfc\x1d\x39\xcd\x0d\x5d\x2b\x3a\x7d\x47\x1c\x84\x6d\x06\x54\x9d\x1c\x38\xc4\xd7\xdf\x30\xde\x96\x5d\x2b\x74\x6a\x8e\x52\x89\xf6\xbc\xa8\x16\x54\x21\xaf\x71\x0c\x01\x58\xf3\x4b\xc7\xbc\xc9\xc9\x6a\xa5\x77\x1e\x39\x06\x02\xcf\xdf\x42\xc6\x04\x96\x44\x38\x9d\xe5\x90\x04\x4f\x11\x9b\x72\xac\xef\xf8\xa5\x28\xca\x0f\x56\x64\xa5\xd1\x08\xf4\x9c\x0c\x89\x40\x44\x50\x42\x2e\xed\xc0\xb6\x56\xac\xec\x4c\x04\x82\xfb\x81\x8f\xdc\x70\x4d\x37\x20\x2e\xa4\x3a\xd0\xde\x9d\x2b\xe0\xcb\x92\x13\x87\x97\xda\x41\x69\x83\xe5\x4e\x1c\x81\xe3\x4a\x87\x94\x9a\x2f\x45\x58\x3b\x50\xf4\x27\xe5\x8d\xfb\x43\xfe\x56\x05\x08\x1f\x6c\xf3\x50\xc6\x7a\xdd\xa8\xfa\xc7\xc0\x19\xe5\x3e\x59\x64\x36\xb1\x56\xcc\x8c\x83\x60\x1b\xc2\x0d\x04\xc6\x06\xf6\xbb\xea\x3d\xbe\x9a\x10\x67\x68\x7a\x1f\x8e\x0b\x09\x51\x8d\x22\xa2\x94\x57\xe2\x19\x0e\xc7\xd3\xec\xb2\x41\x0c\xb1\xbf\x42\xe4\x8e\x60\x29\xe8\xaa\xd9\x77\x90\x43\xda\x82\x26\xcb\xc5\xe7\x0c\xb3\xac\xec\x91\x1b\x16\x22\xb2\xef\x23\x60\x0b\xf2\x4c\xe2\xa0\xe0\xc7\x80\xc8\x68\x80\x57\xd2\x31\x20\x7c\x90\x98\x9c\x5b\x8e\x81\x0c\x26\xdc\x7a\x9d\x89\x0f\xe1\x77\x02\x9e\xb3\x6b\x9d\x64\xd6\x4b\x92\xac\x33\xff\x20\x72\x45\x4e\x32\x2e\xd0\x75\x84\xca\xac\x11\xc2\x24\xef\x06\xb7\xc1\xc7\x2f\xa3\x4e\x37\x84\x2a\x0d\x15\x7d\xc9\x0b\xe6\x08\x60\xe2\xc9\x55\x78\xab\x2f\x98\x21\x91\xf6\xcf\xe9\x16\xc3\x27\xe0\x7d\x21\x30\xb0\x8f\x42\x3e\xea\x33\xd0\x4f\x9f\xd8\xaa\xd3\x82\x6d\xe4\x20\x60\x06\x9f\x3f\x0c\xf6\x23\xa9\x15\x23\xdb\xb2\x71\xc6\xc8\xb8\xb4\x1e\x4c\xb4\xbe\x4d\x86\xa6\xd3\xf6\x66\xef\x8d\xd1\xdd\x0f\xfa\x53\x6b\x1f\xdf\x13\xb3\x86\x3d\x09\x26\x4d\x19\xd7\x98\x88\xfd\x8b\xb2\x9a\x20\xd5\x65\x6c\xf0\x83\xa1\xf1\xbe\x4b\x35\xed\x7a\xeb\xf1\x16\x2d\x37\xd7\xbd\x0a\x89\x33\xab\x67\x5a\x20\xfa\x00\x51\x4e\xb6\x7a\xf0\xfd\x2f\xdb\x37\xb4\x58\xf0\x79\x5a\xd9\x34\xba\x55\xc6\xcb\x2e\xc9\x97\x18\x39\x73\xa3\xbd\xc2\xe0\x57\xd9\xfc\x61\xc4\xf3\x6c\x0b\x50\x40\x43\x99\x9b\xf7\x62\x38\xc3\x60\xba\xba\x58\x2c\xc6\xcb\xbc\xe6\xf6\xd2\x46\x66\xce\xfc\x2a\xa6\x3d\x00\x3e\x72\x6d\xa2\xca\x05\xe7\x8b\x40\x3d\x70\x87\x10\xd6\xf8\xb4\xcb\x62\x32\x5a\x23\x3b\xc1\x30\x52\x38\x69\xcb\xd1\x66\x98\x29\x12\xb9\x0c\x8e\x92\x90\xc6\x94\x75\x7b\xbb\x5e\xdd\xe3\x0e\x84\x11\x0f\xe3\x3a\xd3\x8c\xa0\x6f\x1f\x49\x75\xe1\xf1\xc4\x42\xc6\xd2\xc6\x79\x20\x44\x64\xd9\x13\x66\xf0\xeb\x70\xc6\xd8\x00\x14\x97\x04\xfb\x49\x23\x96\x3f\x48\x5c\x62\x8e\xe6\xb7\x3c\x97\x41\x33\x13\xc3\x14\x2f\xb9\xcb\x14\x9c\x80\x03\xa3\x18\x6b\x9e\xc4\x25\x19\x66\x02\x19\x0b\x12\xdb\x4b\xa4\xf1\xa5\x95\xd2\x0c\x72\xd2\xa7\xb8\x1a\xeb\xb4\x10\x81\x6a\xc7\x45\xba\xdf\x58\xd4\x37\x20\x11\x2c\xeb\xf8\x3a\x6c\xb9\x09\x2a\xf3\xca\xb6\x67\xf7\x72\x6f\xb3\xed\x60\x57\xf9\x38\x4d\x06\x09\x9f\x30\x03\x56\x32\x95\x20\x6f\xad\xc3\x4e\xba\xf8\xc0\xfc\x48\xb5\xb1\x51\xcd\xdd\x83\xbd\x2e\x1e\x48\xfb\xbd\x9d\x25\xd3\xa9\x88\x8b\x0d\xa8\xf0\xf3\xa1\x62\x34\x06\x14\x0d\x9f\xf6\x17\x3d\xea\xcc\x01\xa9\xd9\x74\x79\xfb\x2f\xb4\x28\xd4\xc0\x2d\xc2\xcf\x09\xed\x0d\xa5\x27\xb4\xf7\x6a\x86\x02\xe4\x4b\xec\x6b\x29\xef\xc6\xda\x3b\x7a\x86\x70\x89\x3f\x53\xce\x5a\xfb\x90\x09\x07\xc5\xeb\x32\x77\x29\x9d\x6e\xea\x8c\xb5\xf9\x19\x12\x66\x18\x1c\x76\xe3\xca\x20\xd9\x95\x73\x0a\xea\x0e\xa6\xe1\xb7\xf8\x60\x5c\x0e\xa6\x11\xef\xec\x7e\x8a\x0a\xc0\xb4\xa9\x83\x16\x2f\xa1\x84\x9c\xf8\xe8\xe2\x97\xb5\x7c\xc4\x3b\x4b\x7e\x6a\x2b\x5b\x8a\x1c\x67\xf8\x7d\x78\x7b\xf3\x46\xcf\x1c\xc4\x59\x8f\xd8\x0c\x7c\xda\x23\x76\x08\x81\x13\xf1\xeb\xa2\x00\xcf\x45\xff\x1d\xdb\xb1\x46\xec\xb2\xbd\x07\x89\xb5\xcd\x9b\x72\xce\x69\x33\x8d\x01\x66\x75\x44\x12\x51\x08\xa3\x57\xcf\xb3\xfe\x39\x45\x1e\xba\x46\x76\x35\x8b\x69\x20\x73\x87\x77\xd5\x21\x29\x6b\x44\xd7\xd9\x7d\xcd\x21\xac\xf3\x2a\xce\x31\x0c\x64\x08\x4b\x1d\xdd\x1e\x10\x21\x06\x46\x2a\x5d\xf3\x77\xe4\x0c\x5f\x36\x43\x7d\x9e\x36\x23\xa4\x8d\xda\x51\x80\xf2\xdb\xea\xbf\x04\x50\xe4\xf1\x3f\x5c\x5f\x3e\x00\x1e\x9a\xfd\xe7\xe2\x89\xdd\x25\x0c\x3d\x51\x3e\x22\xe3\x1f\xae\x2f\xa9\xf5\x7e\xa3\x0e\xa5\xd1\x98\x97\xcb\x6c\x72\x48\x90\x1e\x8d\x37\x5d\x81\xa3\xf3\xb4\xea\x8f\x8c\x38\xc2\xd4\x0c\x33\x1a\xfa\x4e\xaf\x37\x7e\xaf\x30\x4a\xcc\x11\x5c\xc5\x7c\x94\x8d\x38\x32\x23\x7c\x19\xfc\xcd\x73\x32\xd7\xd0\x38\x39\x47\x5a\x17\x0b\x73\xce\x78\xa2\xd0\xf4\x50\xdc\x32\xce\xf9\x19\xcb\x8a\xfe\x77\x4f\x5a\x8e\x3a\x2a\xca\x8e\x37\x4e\xbc\x44\x98\x69\x79\x1a\x1a\xe7\x0f\x64\xf0\x3f\x8f\xe0\x9d\xdc\x62\xec\x4f\x80\xfa\xe9\x41\x1c\x8b\xf0\x66\xd0\x99\x78\x47\xbf\x1e\x06\xc7\xb7\x86\x52\x99\xf3\xec\xf3\xa1\xbe\xe6\x11\x5d\x42\x70\xc3\xdc\xae\x93\x44\xed\x7f\xc0\xd9\xf9\x4f\xf1\x0f\x58\x2a\xff\x14\xff\xd0\xa6\x55\x9f\xff\x19\xee\xc1\xe2\xd3\xd9\x40\xee\x4e\x27\xa1\x3f\x48\xf5\x0d\x83\x80\xc5\xf2\xd3\x7f\xe8\xba\xf1\x6e\x29\xa5\x26\x8e\x05\xb5\xf3\x61\x05\x83\xc0\xd7\xeb\xe5\x30\x12\x9b\xf9\x4a\x88\x22\x40\xe0\xa9\x8b\xbe\x44\xe2\x4c\xbc\xa1\xd0\x0f\xe1\x4a\x3b\xb0\x2b\x98\x3d\x2e\x4f\xdb\x88\x6f\x2c\xc2\x2d\x1b\x6d\xa0\x01\x8f\x12\xbc\xb2\x88\x97\x93\xc1\x20\x3b\x09\x93\x12\xdd\x17\x7e\x23\x83\xc5\x17\xf8\x25\xfe\x4f\x6b\x72\x71\x9b\xae\x66\xd0\x73\xcd\xdb\xda\xc1\x01\x11\xec\x54\x32\x69\x18\x2f\xbd\x0a\xdf\x6f\xd8\xb3\xde\x09\xdb\xeb\xb5\x86\x65\x85\x85\xb2\xb1\x34\x6a\xcf\xcf\xcb\x6c\xa4\x23\xbc\xf1\x99\x0c\x8a\xba\x4e\xd5\xc8\xf8\x76\xab\x2b\x2b\x28\x15\x21\x8b\x91\xf0\x11\x99\x5e\x0c\xd6\x9f\xa9\x06\xcc\xbd\xea\x7d\xbc\xed\xf4\xe2\xd6\x8a\x6b\xb5\x1e\x3a\xd9\xe7\x4e\xf7\xe3\x02\xe3\x55\x17\xf0\xb0\x0e\x13\x0f\x76\x98\x7b\xd1\x33\xae\x5c\x0b\x10\xdc\xef\xf9\x8a\x03\x04\x90\x9e\x82\xdf\x8e\x6b\x21\x65\x92\x43\x6d\xd2\x13\x7e\x2f\xa4\x8c\xf6\x53\x54\x9c\x8d\x06\xb7\x01\xaf\x7e\xe7\x5a\x41\x06\x60\xb1\x0d\x14\xf4\x67\xa6\x05\xc9\x98\x2d\x84\xfd\xe1\x6b\xe1\x91\x3a\x87\xa0\x29\xae\xd8\x28\x10\x43\x52\xab\x13\x54\x78\x89\x93\x9a\x84\xa6\xa6\x65\xf0\xf9\x7c\xb7\xd3\xb3\x26\x67\x40\x7f\xe8\xe7\xfb\xf0\x30\xca\x14\x2c\x6a\x3f\xd2\x6b\x28\xe5\xa0\x64\xc2\x0f\xee\x77\x9e\xa4\xf2\x25\x1e\xde\x62\xcd\x26\x7b\x97\x14\xf5\x53\x18\xe7\xcc\xcd\x34\x6f\x34\x4d\xb3\xb1\xa5\xf4\x2a\x5b\xc3\xe8\xd7\xa4\x4d\xab\xef\x75\x3b\xc8\x8e\x1f\x73\x3a\x8e\xf7\x0f\x25\xde\xc6\x1a\x54\x7b\x1c\xc5\x3d\xea\x10\x12\x30\x0c\xef\xfa\xb8\x67\x1b\xf0\x55\x7a\xa7\x69\xb6\x47\x40\x5b\xa3\x55\x17\xef\x24\x0a\x15\x9a\x5e\x5c\xc9\x15\xf2\xa4\x6d\xc7\xf5\x41\x01\xa7\xc3\x2a\xfd\x69\xc2\xca\xb1\x19\xd6\x2f\x3d\xe0\x44\x1e\xe7\x85\xf4\x72\x16\x2c\x4c\xe8\xfb\xe0\xc1\xa4\xb0\x10\xf2\x55\xad\xf4\x32\x5d\x79\x1a\xcb\x71\xa3\x96\xb2\xb9\x9b\x55\xa6\xce\xe2\x9f\xd9\x5f\xb9\xbe\x16\x06\x2e\x48\xdc\xe8\x61\x06\x15\xc3\x69\x71\x32\xe5\x50\x27\xb7\x0a\xd7\x39\x69\x0a\x0d\x4e\x9e\x53\xd8\x95\xf1\xb3\x0b\x99\x5a\xaf\x74\xc8\xc4\xa6\xcd\xd1\xa3\x23\x03\x15\x3a\x50\xbc\x99\xf4\x7b\x46\xeb\xf8\x40\x25\x42\xf4\xc5\x60\x62\xc7\xf1\xfd\xe1\x28\x61\xcb\x42\x7e\x85\xde\x00\x9d\x3c\x90\x85\xd1\xd4\xd5\xeb\x94\x23\xe8\x40\x2e\x88\x7e\x30\xdc\xa7\xcc\x26\x9e\x46\x4b\x5f\x7e\x19\x2f\x33\xbd\xa4\x3d\x74\xbc\x85\x78\xd2\x51\xb7\xcf\x43\xc4\xaa\xc0\xb1\xe1\x85\x0f\x30\x05\x3b\x65\x5a\x34\x84\xa5\x28\x99\x53\x2d\xd2\xc3\xeb\xe3\x0b\xd7\x4e\xc7\x84\xb8\x79\x64\x41\xb8\xfe\xc2\x0b\x1f\xd3\x3d\x1f\x8e\xf1\x77\x6a\xcf\x26\xa7\x49\x88\x95\x77\xc8\x34\x07\x6a\x8c\x71\x20\x03\x99\x9d\x41\x35\x7b\x0e\xa4\x27\xad\x62\xd3\x42\x81\xfe\x78\xf3\xca\x30\x74\x73\xe1\xe7\x32\xd1\xb2\xad\x47\x66\xb5\xe7\x6d\x8b\xfd\x29\xcc\x6b\x8f\x16\x18\x05\x69\x2d\x70\x95\x81\xe0\xa7\xeb\x65\x54\x71\x88\x06\x3f\xbd\x83\xb0\x7d\x6e\x45\x9a\x37\x6c\xa6\x4b\xb3\xc5\x0a\xcb\x1b\x3c\xc8\x70\x3d\x26\x77\x52\xb6\xaf\xcb\x6f\x62\xf2\x10\x87\xe5\xa1\x38\x5a\xb3\x0f\x44\x8f\x0f\x8d\xa2\x4b\xd9\x63\x23\x77\x31\x3b\x6a\x1c\xe1\x32\xd7\x57\x24\x1d\xd7\xc8\x11\x2b\x53\x77\x15\x6a\x69\x7c\x3b\x32\x85\x7b\x02\xfe\x73\x39\x19\xf8\xe2\x29\xc9\x32\xe2\x13\x6b\x42\x29\x92\x3f\xb2\x8f\x79\xd9\x45\xb9\x2e\xf6\xa4\x5b\xe2\x35\xc4\x9a\xa6\x91\x0a\x2a\x5e\xeb\xb2\x1e\x0a\xad\x99\xb6\x43\xb3\xa1\x6b\x5c\x54\x37\x61\x78\x25\x71\xf5\xfe\xe6\x56\x90\xa2\xd9\xf7\x7a\xbd\x86\x63\x57\xfc\x65\xa3\x0c\xd0\x34\xbc\x0a\x22\xba\x66\x9b\x66\x20\xa5\xe4\x2b\xbb\x76\xa7\x62\xaf\x42\x64\x58\xd3\xf2\x21\x94\xbf\xcd\x12\x34\x2d\x64\xe1\x28\x36\xd6\xd1\x83\x13\x6e\xa7\x1a\xbd\x3a\x2c\xc4\xa5\x92\xbd\x11\x5b\x90\x20\x02\xc9\x7c\xd0\xe9\x37\xf6\x04\x03\xf6\x3c\x7b\x2a\x73\x8d\x3c\x0f\x49\xbe\x7c\xf9\x78\x9a\x0c\xcf\x18\x74\x2e\x14\x6b\x18\xe1\x87\x2e\xfa\xf1\x85\x2f\x3a\x90\x35\xc6\x4b\x0e\x06\xa2\x5f\xb1\x4c\x27\x6d\x48\x6b\x94\xdb\xfb\xd5\x84\x97\x51\x2d\x3c\x29\xe8\xb9\x2d\x67\xe2\x56\x39\x8c\x6f\x89\xdf\x5f\x00\x0f\x43\x70\x43\x0f\xd0\xa3\x57\x0c\x2a\x61\x69\x59\x44\xac\x30\xa5\xca\xf1\xc5\x7f\x18\x23\x37\x55\x8c\xcd\xd6\x91\x05\x54\x06\x1c\xfb\x71\x3f\x69\xed\x93\x85\x22\x55\xf7\xf7\x41\x0d\x6a\x21\xde\x78\xb1\x95\x07\x7c\x2c\x15\x0d\x09\x9d\x6a\xac\x69\x5d\xb0\x6f\xd3\x1e\xbd\xa2\x9d\x18\x76\xc1\x4b\x7d\x32\x25\xd3\xb6\xf5\x2a\x1b\xab\xeb\xf8\xf1\x10\x60\xd6\x83\xd7\xd0\x72\x2f\xdd\xdd\xc8\x10\x05\xe4\xbf\x6f\xec\x45\x0a\x9e\x1b\x4b\xf0\x23\x0f\xda\x3c\xd8\xfe\xfc\x9a\x47\x39\x3f\x07\xe2\x76\x96\x22\x31\x5e\xf3\xcf\x29\x10\x59\x01\x61\x9f\xe8\xd7\x14\x64\xc7\x6f\x6b\xc7\x57\xb6\xa7\x20\x4b\xdb\xc2\x38\xfe\x6c\xdb\xc3\x54\xe1\x1d\x56\x57\xd4\x7a\x23\x2d\xda\xd9\x3d\x5e\xf7\x2e\x0f\x98\xa1\xbd\x53\xdd\x8a\xde\x61\x00\xa9\x55\x85\xe0\x3b\x78\x35\x90\xae\x5a\x89\x04\xf0\x3c\xe3\xc5\x08\x3a\x87\xe6\x06\xb9\xf4\x86\x5a\xf1\x20\xd4\xb8\x4d\x14\x9a\x87\xdb\xf5\x86\x24\x0e\x5c\x8d\xa8\xe9\xa6\x98\x48\xa7\x20\xb1\xef\xb2\xf0\x05\x41\x17\xb6\xeb\x95\x43\xd7\x2b\xa4\x61\xf8\x2a\x6b\x00\x21\x91\x8d\xa2\x63\x64\x61\x45\x13\xa3\xae\x1d\xd6\x33\xd3\x22\x0e\x03\x8b\x2b\x0b\x03\xc0\x4e\x20\x92\xeb\x15\x02\x85\x97\x62\xc6\x2c\x18\x83\x27\x35\xfa\xeb\x82\xfc\x65\x07\x48\x9c\x18\xbb\x66\xbe\xd1\x11\x01\x20\xc5\x14\x1c\x0c\x41\x0f\x95\xd9\x3d\xc3\x58\x7d\xb8\xbe\xcc\x89\xf9\xa9\x90\x70\xbc\x93\x9e\xa3\x55\x1e\x9f\xfe\xea\xd5\x5a\xf6\x6d\x88\x05\xc4\x07\xcc\x46\x7a\x3a\x48\xfa\xfc\x25\x33\x8c\xd0\xc7\xb8\x28\x8c\xc3\x9d\x36\x18\xc4\x16\x25\x13\xd6\x1c\x82\x90\x98\xac\x90\xe0\x50\x19\x76\x70\xce\xd0\xa1\x15\x2a\xc2\xbe\x7f\xff\x1f\x37\xef\xdf\x9d\x8a\xcf\x4f\xf6\xfb\xfd\x13\x28\xfe\x64\xe8\x3b\x65\xa0\x2f\xed\xa9\xf8\x5f\x6f\x2f\x4f\x85\xf2\xcd\x0f\x0b\xf1\x96\x8e\x9f\x44\xd5\xd9\xdc\x18\x3d\x17\xd0\x76\x77\xe8\xff\x85\x63\x89\xb7\x0e\x6b\x65\xf3\x47\xea\x73\x26\x12\xa6\x31\xf8\xb5\x86\xf7\xdd\xd1\xbf\x35\x63\x48\xf8\x39\x8d\x1b\xfc\x31\xce\x48\xf4\x1b\xc1\xc2\x42\xc5\x77\xb6\xa4\x13\x37\xaf\xcf\xff\xf0\xef\xff\x53\xbc\x7e\x7b\x7e\x21\x36\xea\xb3\x68\xf5\x5a\xd1\x1d\x64\xd8\xda\xf7\x3a\x4c\xfa\xff\x7a\x02\xab\xe1\xc9\x8d\x5e\x1b\xe9\x87\x5e\x85\x05\x40\x74\x22\xe7\x91\x3a\xd9\xdc\xcd\x3d\xd9\x38\x06\xd1\x8d\x35\x3c\x00\x6f\x1a\x6b\xca\xde\x13\x48\xf0\xc1\xba\x40\xef\xab\xa4\xa1\x86\x35\x13\x19\x99\x8d\x32\x40\xe8\x87\xae\x2d\xcf\xe8\xa5\x0a\x4b\x40\xb5\x7f\x1a\x17\xc6\x40\x7b\xf8\xb4\xc3\x99\xf8\x0f\x0c\xb1\xb4\x09\x26\x4e\x90\x15\x7a\x87\xc0\x8b\x71\x61\xd8\x0d\x75\x26\xd9\x9d\x89\x37\xc2\x80\xec\x10\xa4\xca\x94\x17\x25\xcb\x09\x12\x56\xf2\x9d\x89\x4b\xe5\xc5\x36\x2a\xfd\x70\x95\x13\xba\x69\x91\xd2\x04\x76\x3e\x3b\x8c\xcb\xcf\x79\xf8\xbd\x60\x1e\x3a\x1d\xc3\xd2\xc3\x6c\x36\x7b\x1e\x23\xb3\x1f\xe3\x22\x79\xbc\xc5\x99\xac\x14\xe9\x36\x45\x31\xc4\xc8\x92\x73\x13\xc4\xe1\x0f\x67\xe7\x2e\x3b\x3b\xc2\xb5\x70\xae\x39\x18\x97\x19\x87\x17\x9c\xcd\x8e\x84\x1f\x35\xe7\xe4\x9c\x79\x4a\x2e\xa7\xed\xa9\x08\xee\x9a\xa7\x6c\xb7\x77\x1a\xe2\x3b\xb4\xa7\x62\x30\xe9\x37\xb9\xca\xb1\x04\x1b\x3e\xd1\x6e\x18\x3e\xa3\x59\x67\x7b\x4a\x6f\x30\xa7\x84\xc9\x7c\xd3\x55\x43\x72\x48\xa5\x76\x05\xb7\xd4\x87\x80\xcb\x9e\x04\x0c\xbc\x08\x52\x07\xe2\x23\xd0\xd3\xba\x47\x36\x23\x85\x0f\xc0\x03\xa0\xd1\x8c\x26\xb7\x40\xf8\xff\x7f\x24\xf3\x61\xc4\x6e\xb9\x83\x69\x36\xbd\x35\xfa\xb7\x99\xbe\x71\xcc\xc7\x14\xf2\xf1\x08\x40\x5a\xac\xc1\x06\x6e\xd9\x69\x34\x49\x41\xef\xc0\xf9\xbb\x62\x8a\x92\x18\xc2\x25\x8e\x33\x92\x57\xc8\x8b\x07\x8e\x43\xd2\xe5\x46\xea\x95\xce\xaf\x40\xc1\x99\x25\x24\x99\x90\x1e\x52\x28\x0e\x72\x3c\xc5\x4b\xcd\xc0\x3c\x5f\x3d\xb5\x42\x4b\x42\x24\xb3\x09\x13\x41\x89\x01\x47\x75\x4c\xe4\x13\x9e\xb7\xa9\xda\x21\xd5\x70\x4c\x14\xa3\xf8\x01\x41\x44\x08\x6f\x72\xe3\x53\x6c\x2f\x62\x5a\x29\xd8\x86\x73\x12\x59\xa0\xf2\x90\xc4\x00\x46\x78\x9e\xe4\xcc\x0d\x88\xc8\xa5\x07\x32\x80\xf0\x2b\x64\x5e\x85\x48\xb9\x93\xd7\x13\x0f\xa3\xa1\x6e\xb5\x6b\x6c\xdf\x3e\x8c\xfb\x05\x01\xfd\x1e\xec\x66\xed\x65\xf7\x85\xa6\xbf\x60\xa8\x6f\xc3\x4f\x63\x12\x1e\x33\xa1\x47\x57\x46\x99\xad\xdd\x4a\x34\x73\x7d\x81\x3f\x26\xe7\xf3\x46\x1a\x43\x26\xfd\xf4\x2b\x9f\xeb\x5d\x67\x0f\xe1\x79\xcc\x17\xf8\x15\x1e\xfe\x9e\x82\x64\x8f\x49\x2e\x9f\x5f\xd0\x93\x8e\xaf\xac\x6f\x36\xf2\xbb\x67\x4f\x97\xcf\x81\x15\xe7\xab\x80\xce\xda\xbb\xe0\xcd\x23\x5b\xdc\x37\xf1\x7d\x94\x5d\x7c\x74\x31\xd9\xa2\xc8\xb6\x25\x03\x22\x6d\x68\x28\x46\x2f\xd1\xa5\x97\x84\xa8\x55\x23\x46\x0d\xe7\x20\xb6\x93\xc7\x3e\xf5\x66\xae\x33\x49\x6f\x80\x50\x38\x02\x1b\x7a\xde\x43\xb6\x4f\x90\xe7\x60\x05\xae\xb8\xdd\xa8\x43\x8c\x15\x8d\x0f\xa1\xe1\xe5\x6d\xf9\xe4\x0b\x36\x2f\xbc\x84\x99\xdf\x3e\xda\xba\x1c\xe4\xf0\x74\x07\x46\xdf\x21\x85\x91\x39\x88\x36\x35\x23\xd7\xa0\x16\x8e\x32\x73\xbd\x98\x3e\x3d\x19\xa1\xc6\x4f\x64\xa6\x9e\x1e\x7d\x22\x33\x2f\x9a\xbf\x93\x99\x15\x45\x21\x21\x0e\xc2\xac\x65\x78\x31\x2d\xd3\x57\x30\x53\x57\xbf\xe2\x21\xcc\xf9\x99\x1b\x6b\x89\xbe\x38\xd5\x0f\x39\x86\xb4\x79\xe7\xbe\xe2\x49\xcc\x71\x24\xb8\xaf\x50\x18\xcd\xb5\x25\x37\x1c\x8e\x0d\xf8\x92\x9b\x48\xab\x57\xab\x05\x05\x11\xae\x9d\x1d\x7a\xbc\xc8\xff\x19\xbf\xc5\x0d\x7e\x13\x08\x87\x50\x3c\xe3\x58\x8a\x94\x18\xbd\x12\xd9\x0d\x11\x13\xd1\x1f\x15\x75\x9f\xf7\x52\x77\xf1\xf9\xc8\xd5\x8a\x7c\x53\xdf\x59\x7c\x40\x9c\x72\x16\x54\xc4\x6d\xec\xbe\x86\x5f\xf8\x9e\x25\x1a\xed\x6d\xec\x9e\x0a\xdd\x40\x4a\x06\xe6\x76\x9d\xf6\x35\xc7\x2f\xbe\x81\x0f\x8c\xc0\x9c\x41\x0c\x06\xa3\x2d\x06\x98\x0f\xf4\x99\x43\x01\xca\x18\x8d\x22\x5c\x01\x9d\xb4\x31\x44\x20\xea\x19\xd2\xe5\x10\xae\xd0\x00\x77\xd2\x22\xfd\x41\x45\x42\x02\xc9\x1f\xaa\x39\x69\xa3\x8a\x3a\x41\xf0\x40\x23\x51\xfd\xf9\xcd\x3b\xfa\xc4\xe8\xc1\x1c\x3e\x0a\xc3\x48\xbf\xd4\x1d\x8f\x37\xbf\x9e\xbf\xc3\x10\x85\xaa\x0d\xa1\x13\x21\x4f\x64\xc9\x99\xaf\x61\x1e\x48\x9a\x70\x78\x6b\xeb\xad\x34\x87\xe8\xeb\x7c\x63\xb7\x8a\x95\x28\x7b\xc5\xe4\x07\x83\x4d\x27\xc7\x4c\x6b\x05\x14\x61\xa8\x30\x20\x41\x21\x0b\x68\xab\x10\x3b\x7b\x31\x17\x43\x3b\xe4\x51\x40\xf4\xc0\x6f\xc1\x2e\x0d\x3c\x57\x80\x68\x7b\xb9\x42\x3f\x39\xf8\x1f\x53\x77\xbd\x4a\xc5\xae\x7a\xf5\x64\x5c\x8c\xfd\xd9\xe0\x5f\x4c\x93\x1b\xf2\xa5\x48\x33\x90\x66\x26\xb8\x5e\x7a\x2b\x4e\x1c\x47\x98\xe4\x0d\x57\x22\xa6\xd5\x5f\xf3\x6b\x8e\xb4\xf6\xf1\x1d\xbe\xa2\x4f\xb9\xa3\xdc\x15\xf1\x85\x22\x8e\x03\x1a\x8e\xd0\x5b\x66\xbb\xde\xb6\x43\xe3\x17\x45\xbb\x8b\xd2\xc4\x08\xaa\xb0\xea\x44\x67\xd7\xa8\x6d\xc0\x90\xc0\x64\x4e\x3b\x98\x56\xf5\xce\x93\xe5\xbc\xcc\xa8\xab\xde\xee\x7a\xba\xa3\x08\xe8\xbd\x5c\xc7\xb7\xd6\xe4\x9a\xe2\x9a\xa4\x3c\x54\xb9\x43\x0e\xfc\x28\xca\xc4\x03\x38\x18\xd9\x67\x71\x45\xbd\x5c\x23\x53\xdd\xe4\x91\xec\x41\x06\xb4\x26\xf0\xc4\x59\x03\x8a\x93\x25\xa4\x4e\x4f\x93\x90\x53\xfa\xc8\x64\xd3\xcf\xdb\x96\x43\x69\xc7\x9c\xce\xca\x96\x84\xee\x4b\xfa\xb5\x58\x2c\x66\x56\xcd\xf4\xad\xed\x5d\xaf\x9e\x8c\xe7\x3a\x83\x8f\x03\xf0\x17\xf5\xb8\xeb\xc4\xce\x6a\xe3\x05\xf9\x7c\x49\x5f\xac\x94\x70\x45\xc3\x53\xab\xad\x79\x82\xc7\x54\x6a\xc6\xd8\xd3\x31\x56\xc7\x0b\x25\x2d\x99\xf1\xaa\x46\x1f\xb2\xb0\x23\xd0\x89\xac\xdc\x16\xb8\x7a\xd2\xc6\x40\x6f\xce\xc9\x86\x22\x36\x3b\x41\x95\x17\xf2\x33\xc0\x74\xe4\x05\x31\x27\x5e\xe9\x8d\x61\xe6\x4f\xb9\x50\xcf\xd8\x6b\xac\xb1\x3d\x69\x9a\xe3\xfd\xb6\x97\xeb\x07\xdf\x23\x1b\xd5\x96\x5f\x15\x53\x15\x5f\x38\xc4\xc6\x7b\xa0\xf4\x41\xcb\xf0\x30\xab\x01\x94\x92\xf7\xc8\x84\xd5\x98\xe0\x62\x9f\xdd\x6c\x5f\x15\xcf\xc4\xa6\x12\x21\x08\x0c\x1e\xc0\xe1\x77\x55\x7d\xb4\xfd\xfa\x53\x85\xf7\x81\x18\xf0\x3b\x06\xfc\xcc\x2f\xff\x50\xc1\x0b\x30\xd0\xa3\x87\x00\x5f\x82\x7c\x1d\xa1\xcb\xe7\xc0\x5e\xc1\x36\x2d\xcd\x69\x00\x80\xd4\xeb\xf8\xfa\x17\xbb\x4c\xf0\x03\x60\x8b\xf0\x78\x85\xed\xd7\xc9\x49\x32\xaf\x8e\xde\x7b\x4a\xae\x77\x1c\x9f\xbf\x62\x57\x86\x33\x71\x85\x3f\x2a\x6d\xee\xb5\x07\xfe\x61\xab\xc8\x1e\xef\x0d\x26\xe0\x79\x63\x8d\xaa\x0a\x63\xff\x0a\xc3\x8a\xd7\xc1\xd0\xff\x2c\x98\xfc\x73\x7a\xf1\xc2\xd7\x59\xf1\x62\x4a\xfe\xd8\x06\xa0\x2c\x3d\x3b\x01\x39\x8e\xca\x8c\xcf\x37\x40\x47\xf2\x08\x25\x71\x08\x31\xf5\x21\xe8\xe2\x75\x2d\xa0\x0e\x43\x88\x10\x89\xb8\xd0\x3a\xd1\x90\xc0\x85\x8b\x0a\x30\x6b\x53\x84\xae\x72\x8b\x54\x4d\x46\x6b\x36\xe4\x10\x9e\x8a\x01\x73\x88\xf6\xf2\x7f\x22\xf8\xe2\x85\x19\x56\x78\x4a\x7a\x1d\x8f\x92\xf9\xe9\xd3\x5c\x03\x8a\x88\x40\x12\xf8\x53\x35\xff\x68\xd1\xfb\xf1\xda\xf8\x1d\xcf\x16\x4d\x71\x3c\xf8\x70\x11\xa2\x4b\x03\x9a\x35\x06\xe7\xe1\x48\x23\x22\xa3\xfb\xad\x3e\x9d\x71\xff\x00\xc3\x14\xf7\x4a\x7e\x3f\xc5\xbe\x07\x7f\xa1\x5f\x29\xab\xb3\x4d\x70\x04\xbd\xe4\x9f\x47\xad\x59\x1e\x72\x49\x28\x41\x33\x62\x56\x0c\x5c\xc4\xf4\xb5\xa6\x2f\xec\xe9\x60\xfb\xf5\xbf\xe6\xe8\x50\xbc\x60\x39\x69\xb5\xbc\x97\x5e\xf6\xc7\x1a\x4d\xb9\xa1\xed\x5f\xdd\xf4\xb1\x81\x58\x41\x61\xc6\x4a\xa2\xc9\x9b\x92\xd8\xc1\x07\x8b\x94\x2f\x4c\xe6\x0d\x8e\x37\x74\x99\x81\x16\x5b\x77\xd0\xdb\x92\x64\x65\xf0\xe5\x07\x26\x8f\x98\xf8\x3c\xf4\xd2\xe4\xb8\x95\x40\x99\x62\x1c\xc8\xbc\x91\x0f\x96\xc8\xb9\x19\x3b\x32\x17\xf9\xfd\xaf\x4f\xce\x9b\x86\x9c\xb7\x6d\xd0\x16\xf2\x63\x73\x61\xfc\x92\x46\x72\x95\x45\x4f\x1f\x3f\x9d\x9a\x46\x0e\xf9\x56\xf6\x07\x2c\xd6\x5b\xc5\xb4\x7e\xc1\xff\x37\x7a\x57\x17\x2f\x4e\xbe\x8d\xe9\xd9\xe3\x93\x3f\xc5\x62\xac\xe9\x61\x3e\xaa\x19\xa5\x27\xfa\x8a\xf1\x06\x82\x77\x45\x04\xa2\x6f\xe4\x2d\x67\x73\xc6\xe5\xcb\x3a\xe8\x7f\xdd\xdb\x4e\xc5\x86\x8a\x6b\xdb\xa9\xd4\xbc\x32\x0a\x62\x59\x30\x96\x89\xe9\xac\x16\x08\xcf\xff\xc5\xf4\xf2\xd9\xd8\x90\xca\x67\x6c\xfe\xa6\x05\xf2\xe3\x8c\x1d\xc5\x9b\x9f\xc6\xd0\x06\x83\xc7\xf3\x69\xfc\xce\xee\x2b\x3a\x8a\x17\x18\x66\xf1\x4c\xfc\x87\xd5\x86\x53\xca\x4a\x29\x0d\x38\xa3\xf4\xda\xca\x35\xc8\x58\xf4\xa4\xf1\x34\x7f\xf4\xaa\x1c\x9e\x44\xf1\x3d\x39\x7e\x59\x19\x19\x7b\x0e\xe6\x69\xc8\x7e\xa6\x7c\x0f\x8d\xb0\x8e\x1e\x79\xa1\x68\x0c\x45\xbd\x39\xc4\xd7\x54\x8c\x9e\xf6\xe3\xea\x4e\x83\x0a\x1d\xf5\x6e\xd1\xc3\x50\x6d\x43\x3b\xd0\x92\x3a\xb5\x03\x1d\xfe\xcb\x76\xe4\x10\x5f\xd3\x0e\xa8\x05\x23\xb9\x05\x0f\x83\xa3\xed\x91\x6d\x2b\xc8\xf8\x3b\x37\xfb\x72\xe3\x26\xa6\x77\xcd\x6e\xb3\xf3\x1f\x8d\x66\xdb\x11\x3f\xe3\x16\x73\x47\x2a\xe5\x90\xb5\xe3\x0c\xcb\x41\x06\xec\xb3\x6f\x7d\x7f\x99\x08\x60\x84\x3e\x28\x19\x41\x33\xd3\xf4\xe2\x9d\x85\xe9\xb9\x44\xed\x4a\x2c\x22\xf2\x0a\x4c\x1b\x38\xf3\xcb\x47\x32\xc1\x85\x87\x86\x88\x5f\xcc\x0f\x15\x64\x18\xc3\x4c\xb6\x08\x51\xc7\xbd\x0a\x1b\x2c\xab\x75\x8a\x2c\x12\x73\x84\x8a\x44\x7c\x0a\x17\x76\x6c\xce\xed\x65\xf7\x39\x0a\xef\xb8\x0a\xb7\xd7\x00\xb5\x95\x87\xf1\xa3\xcf\x18\x89\xa1\xd8\x35\x0f\x3c\x62\x3f\x69\x4a\x3a\xd7\x5f\xe9\x7b\x65\xd2\x82\x39\x2a\x5c\x2d\xf2\xad\x3e\x5d\x20\x19\xb9\xd6\x39\x13\xbc\xee\x31\xb6\x60\x98\x79\x20\x1d\xd9\xc2\x40\xf4\x3f\xc5\x3e\x37\xd2\x8c\x69\x03\x1a\x0a\x2a\xb9\x7d\xfc\x10\x89\xf8\xdd\xcd\x41\x92\xf2\x70\x7b\x90\x64\x50\x28\x5d\xd3\xe6\xe4\xe1\xa1\x66\x11\x3d\xf8\xdd\xcd\x42\x0a\xf3\x95\xcd\x3a\x0d\x6d\x22\x3e\x06\xe8\xc5\x1c\xa5\x78\xa8\xb5\x23\x41\x0b\x97\xf1\x75\x2e\x6d\x05\xb2\x81\xb6\xaf\x28\x09\xce\xda\xbe\x66\x8a\xeb\xc5\x62\xbc\x9f\x32\xe3\xdd\x6c\x4f\x65\xde\x01\xa1\x2d\x68\xa6\xcb\x5e\x54\x7c\x1e\x26\x54\xc6\x1a\x94\xcf\xe9\x8e\x36\x7a\x5a\x65\xc8\xf9\x96\xc8\xf7\x07\xe6\x89\xf0\x39\xad\xe2\xad\xcc\x78\x35\xc4\xea\x2c\x1d\x43\x99\x54\x1f\x71\xe6\x3e\x55\xad\x74\x9b\xa5\x95\x3d\xde\x50\x84\xdf\x55\xe1\x26\x5f\x15\xef\xd1\x8f\x78\x39\x57\x8d\x06\xb5\x18\x4f\x39\xf8\x0d\x88\x8b\x51\xce\x38\x2f\x12\x1c\x3d\x63\xbe\x0e\xcc\xe4\x7a\xe0\x48\x34\x6c\xde\x8f\x2e\xdb\xce\xab\xad\x78\x47\x09\xd5\xd6\x1a\x4d\x96\xc4\x6f\xe9\x97\x36\xeb\xaa\x08\xa7\xf4\x12\x3e\x2a\x0c\xa0\xc3\x29\x97\xd2\xf9\xca\x5b\x8f\x0f\xa2\xde\xc2\xff\x9f\xc4\x49\x5b\xa5\xae\xa3\x76\x5c\x3b\x8f\x6c\xd6\x4d\xf8\xed\x32\x80\x64\x48\x47\xd1\xe0\xf8\x23\x47\x81\xed\xac\xd9\x6e\x31\xb6\x9b\x5b\x89\x58\x07\x37\x57\x65\x08\x92\x84\x16\x68\xad\xf4\x72\x19\xd4\x3f\xcf\x96\xa8\xd5\x5d\x3e\x27\xd5\xe8\x69\x96\x50\xcc\x48\x9e\x51\xdc\x0b\xa6\xe4\xf2\xd4\x4d\xe9\xf4\x04\x71\x91\xe4\xbc\x2c\xeb\x92\xcd\xa4\x96\x70\x95\x93\xa7\x05\x5f\x8e\x94\x12\xbc\x3a\x0a\xec\x16\xbd\xdf\x59\x88\x28\xb2\xc8\x75\xa9\x48\x22\x37\xb9\x51\x4f\x48\xf1\x9c\xa7\x75\x76\xad\x8d\x20\x65\x76\xd9\x3d\x66\xed\x4b\x9c\x21\xd8\x58\x81\x02\xc3\x5a\xe7\x29\x9b\x60\xdf\x5a\xa4\xe2\x06\xcd\x13\xd8\x70\x75\x02\x98\xe2\x27\xbb\xc5\xdc\x42\x0a\x12\x7b\x5c\x4c\x24\xb6\xcf\x41\xba\xbd\xa6\x27\x60\x6f\xf0\xc7\x2c\x4c\x3f\xa0\x5a\x73\x30\x59\x6e\xd3\x29\x69\xea\xc1\x2c\xb5\x69\x6b\xcb\x0f\x29\x5f\x40\xa2\x18\xcc\x12\xad\xfb\xde\xe3\x7e\x74\x0f\x16\xca\x8e\xd0\xf3\xae\x13\x94\x15\x4a\x66\x2e\x53\xf3\x67\x69\xc2\xcc\xa7\x32\xdb\x96\xca\x24\x4a\xba\xc4\xa4\x48\x0c\xa6\xca\x86\x25\x21\xfb\xab\x70\x8c\x5a\x99\x20\x22\x9a\x6f\x6f\x2a\x1e\x00\x40\xf0\xf5\xbd\x1a\x35\xb2\x20\x7a\x01\xe4\x0b\x18\x46\x4d\x9c\x45\xf1\xed\x8d\xc4\x83\xd7\xac\xe9\xd8\x39\xd2\xc8\x83\xe8\x55\x63\xfb\x96\x65\xdc\xce\x3a\x8f\x5a\x6a\x7a\x72\xf3\x61\x94\xc7\x5a\xfd\x20\xce\x6f\xe8\xc6\x5a\xfb\x7a\xdd\xa4\xe6\x5b\xb1\x96\xfd\x52\xae\xc9\x45\x86\x03\x1c\x59\x53\x6a\x45\xe7\x8b\x3f\x34\xc0\xd8\xa0\x16\x18\xad\x19\xf4\xc7\xda\xd6\x2b\x0c\x0c\x22\xbb\xae\x76\x6e\xc3\xb6\x07\xd7\x8a\xee\x71\x1e\x2f\x9c\xdb\x3c\x95\xfc\x26\xb9\xc2\x5b\x7a\xf7\x98\x5e\xbd\xf9\xbe\x91\xe8\x43\xfe\x13\x86\xf1\x41\xd2\x8e\xa5\x03\x13\x0c\xa3\xf5\xc3\x83\x15\x8d\xfa\x92\xd1\xf5\x6c\x6c\x7b\x6c\x8a\x57\x5f\xd5\x83\x10\x79\xe5\x1a\x93\xf8\x8e\xa8\x51\x68\xe6\xcd\x54\x0c\x19\x3f\xeb\x7c\xc8\x60\x53\x73\xbb\x9a\xac\xf9\x07\xaa\x78\x60\x16\x1e\x7f\x4b\xad\x79\x37\xf9\xfd\xfc\xe3\xbd\xd4\x46\xfb\xc9\x56\xb8\xc6\x64\x2d\x3b\xfd\xdb\xef\xdc\x10\x73\x88\xff\xd5\x0d\xd1\x67\xad\x1a\x77\x29\x67\x10\x30\x74\x5a\x3d\xec\xbc\xc6\x83\xe2\x86\x1e\x65\xff\x80\xdf\x39\xc1\x1e\xfa\x1e\x98\xc4\xb5\xed\xed\xe0\x35\xbd\x02\x46\x69\xe2\x55\x48\x73\x33\x05\xf0\x52\xe4\x50\x0f\x1c\x02\x32\x94\x79\x8b\xc9\xe2\x03\x3e\xe3\x96\x4a\x21\xff\x14\xca\xc8\x0e\x55\xc7\xa4\xd3\x46\xc6\x8a\x4b\x9d\x87\x8c\xac\x24\x97\xb1\x4b\x2f\x39\xae\x1f\x03\xbf\xe7\x94\x0c\x16\xaf\x22\x55\x5f\x77\xd6\xde\x0d\xbb\x1a\xba\x8a\x91\x89\x28\x59\x5c\x62\xb2\xb8\x85\xe4\x69\x0d\xa1\x55\xb1\xd8\xa8\x51\xc7\xca\xad\x7a\x35\x29\xf3\xb2\x57\x53\xf8\x30\x72\x1b\x25\x77\x93\x71\x7b\xad\xe4\x6e\x32\x6a\x08\x39\x1d\x00\x84\x3d\x3e\x0a\x79\x29\xdd\xa2\xc4\x9d\x97\x78\xd3\x76\xc7\xea\xd0\x68\xa8\x34\x86\x37\xc0\xc7\x1f\x29\xc1\xfc\xd4\xb8\x55\x7c\x7d\x38\x69\x95\x5d\xfe\x4d\x35\xde\x05\xe8\xf7\xf4\x99\x41\x2d\xad\xf5\xce\xf7\x72\x07\xac\x30\x5a\xc7\xd3\x30\xfd\x1c\xd2\x81\x15\x6e\xee\x26\x23\x45\xd0\xd3\xa1\x22\xe8\xe3\x63\xb5\x75\x3b\x69\x6a\xe7\xfb\xa1\xf1\x43\xaf\x5c\xac\xf0\xed\xcd\x4e\x1a\x71\x13\x33\x26\x35\x4e\x4a\xe6\x2b\x74\x5c\x78\xae\xe6\x46\x36\x1b\x35\x5b\xf5\x05\xe4\x3c\x58\xf7\xa4\x6c\x5e\xf9\xa4\xf8\xdc\x4e\xe9\xed\x4a\x77\x40\x94\x96\x43\x73\xa7\x7c\xbd\x91\x6e\x53\x7b\x7c\x97\x32\xc3\x75\x15\xc0\xc4\xcf\x08\x26\x5e\x4b\xb7\x11\xb7\xa8\x9e\x9b\xc1\xba\x6e\xea\xad\xf2\x12\xed\x99\x32\x2c\xaf\x2e\xc4\x5b\x4e\x9e\x2b\x85\x6a\xbb\x9a\x25\x20\xde\x85\xc0\x94\x66\x18\xde\xa3\x66\x8f\x85\xa2\xf3\x08\x32\x87\xcd\xa8\xcf\x7c\xa4\x37\x87\x86\x9f\x30\xff\xec\xa1\x0d\xd7\x94\x92\xc1\xa2\x98\xb7\x6e\xea\x40\x23\xd1\xd4\x05\xa3\xa5\xbe\xba\xc0\xed\x3b\xa1\x60\x09\x98\x08\xd7\xab\x0b\x71\x25\x07\x37\x0b\xb8\x93\xb4\x99\x8e\x42\x86\xea\x03\x60\xa8\x79\x0c\xc7\x95\x3a\x1a\x4a\x22\x2b\x24\x63\x2f\xd0\xc1\x96\xa2\x93\xd6\x3b\x49\x16\xa6\x20\x75\x8b\xb7\x14\xb1\xf4\x0a\xd2\x18\xd6\xa8\x7d\x7e\xfd\x92\xee\x81\xcf\x29\x31\x80\x91\x64\x81\xf2\x04\xa5\x04\x5e\xb8\x0d\xc6\xda\x48\xa2\x39\xaf\x88\xee\x4a\x69\xe9\x00\xdd\x59\xc7\x69\x21\xea\x76\x7c\xee\x8d\xd3\xd1\x43\xa4\x57\x6b\xed\x3c\xc7\xc4\xc0\xe8\xd6\xe8\x47\x79\x8d\xc9\x41\xbe\xc9\x3d\x63\x6f\x2d\xf6\x32\xeb\x58\x69\xdf\x18\xba\xf9\xe5\xc8\xdf\x0b\xc6\x91\x3f\x2d\xc4\x3d\x43\xe1\x25\x18\xf8\x95\x9a\x87\x60\xe8\x47\x90\xb0\x1c\x3b\xbe\x05\xed\xf2\xd2\x28\x59\x06\x51\x6d\x84\xe1\x12\xa5\xce\x6c\x94\x77\xd2\xb9\x3d\xda\x47\x07\xbd\x38\xde\x2c\x08\xed\xd9\x1d\x0e\xf5\xf2\x68\x65\x3c\x18\x36\x33\x0b\xad\x4f\xb1\xf9\xd8\x0a\x2e\xb2\x18\x3c\x10\x9c\xf3\xa5\x1b\xc8\x34\x16\xd9\x4a\x41\xd3\x99\x72\x8d\x6c\xe5\x67\x12\x4e\x70\x48\x39\x30\xb8\xfc\xac\xb7\x43\xae\xaa\xa2\xa9\xc6\xce\xea\xad\x3e\x5a\x36\x28\xfd\xbe\xbf\x51\x5e\x3c\xf9\x11\xfd\x39\x9d\x12\xeb\xce\x2e\x31\x1a\x2a\x85\x74\xed\x00\xc5\x0f\x8c\x43\xbb\x3a\x5f\x94\xa8\x9c\x0e\x0d\xc6\x9f\xe5\x22\xdd\xf5\x76\xa3\x97\xda\xd3\x84\xcc\x14\x08\x00\xe1\x35\xca\x75\x5c\xcb\x50\x13\x2f\xf1\xa2\x10\x46\x28\x82\x0c\x5a\xa1\xb6\xcf\x0c\x0d\xc2\x9a\xa7\x88\x4d\x20\x62\xb0\x15\xff\x04\x43\x56\x26\x7b\xc8\x13\xd8\x3e\x0a\x7d\x98\xe3\xd1\xdb\x9d\xed\xa1\x0b\xb4\xd8\xbe\x84\x8b\xc0\x05\x81\x17\xbc\xf7\xdc\x92\x49\x97\x01\x61\xc5\x10\xe9\x0f\x8b\xf3\xc1\xbb\xe6\x72\x6d\xe0\x9b\x26\xb5\xdd\x9b\xa4\x78\xcc\x5a\x4a\x2f\x9e\x40\x7b\x53\xc4\x08\x0b\x9c\x29\xf0\xbc\xf8\x52\x21\x08\x59\x79\xe4\x8f\x18\xa8\x27\x3d\xad\x67\xfb\x18\x5c\x82\x4c\xd6\x59\x2d\x99\x37\x60\x23\x1d\x9b\xe9\x1c\xa9\x7f\x5b\xe8\x98\x8b\xea\x73\xfd\x58\xd9\x00\xba\xf4\x8b\xde\x40\x93\x8b\x18\x57\x36\x65\xc6\x42\xeb\x3c\x9b\xb2\x87\xcc\x8c\x6d\xcf\x41\x11\x46\xd4\xbd\xb8\x09\x2f\xa8\x3c\x96\xc8\xa9\x37\x26\x94\x96\x44\x98\x94\x6e\x89\xc2\x05\x11\x69\x61\x91\x70\x8f\xeb\xcb\xb6\x73\x51\x1b\x95\x28\xef\x6f\x29\x2d\x6f\x02\xa5\x4c\xef\x91\x29\x9d\xf5\x87\xe2\x4c\xfc\x85\x7e\x71\x3a\x2a\x11\x89\x7b\xeb\x43\xda\xd8\x2f\x8d\x21\x41\x36\x83\x93\xfb\x37\x55\xa1\xba\xb8\xa0\xdb\xee\x18\xe1\x76\x0c\x4b\x2f\x88\x84\x38\x22\x4c\xd4\x39\x2b\xeb\x05\xa5\xe4\xef\xa6\x52\x8a\xc2\xa8\x70\x6d\x8c\x0f\xd7\x72\xfa\xd4\xfe\x2b\x6b\x1a\xa3\x19\xb5\x2b\xc3\x8a\x50\xf3\x87\x46\xd6\x1a\xa7\x9a\xa1\xd7\xfe\x80\x01\x59\x6d\x63\x3b\xf2\x5e\xc5\x34\x8c\xc5\x0a\x69\x0c\x3b\x76\x4e\xa1\x54\x0c\x28\x71\x26\x5e\x5b\xe7\x39\x65\x47\x2f\xa7\x5e\xd9\x3e\xa4\xa0\x1e\xaf\x45\x13\x6c\x6d\x5a\xf1\xe2\x5d\x99\x5e\x98\x7b\xc5\x08\x7d\xf4\x7c\xbb\x2b\x22\xf5\x85\x30\x7c\x14\x85\x4f\x2d\xd6\x0b\xf1\xe2\xfd\xdb\xff\xeb\xc4\xe5\x08\xc3\x11\x18\xaa\xbb\xe2\xef\x39\x98\xcc\x34\x4c\xf6\x46\x9b\xf5\x4f\xfc\x58\x51\xc0\x81\xcf\x2b\xd9\x9e\x6c\xb1\x77\x1d\x0c\x80\x57\x9f\x3d\x5e\xff\x19\xeb\xf9\x9d\xe4\x8d\x5e\x6f\xd0\xee\x41\x77\x6a\x4d\x6e\x06\xb0\x3d\x17\x61\x26\x81\xbf\xe2\x97\xd0\x90\xaf\xe2\x2b\x9c\x9f\xa5\x53\x39\x08\x0e\x11\x02\xc4\x21\x92\x9e\x62\x01\xaa\x39\x17\x5f\x71\x1e\x72\x8f\x42\x8f\x1f\xb0\x46\xca\x13\x39\x01\x68\xbd\xd3\x6b\xf3\x44\xe3\x2b\x23\x40\x02\x55\xd7\xb2\xcb\x7c\x11\xf3\x70\x31\xa9\x21\x58\x7b\xe1\x73\x11\xef\x1e\x6e\x8d\x1b\x42\xd3\x6f\x86\x2f\xb5\x7c\x2b\x35\x86\xce\xc4\xff\x63\xb0\x7b\xd5\xeb\xd5\xa1\x5e\xf7\x76\xd8\xd5\x19\xed\x3d\x13\x7f\xc6\x1c\x81\x39\x19\x55\xe6\x72\x54\x80\xef\xd4\x30\xf6\x21\x8e\xf5\x2b\x84\xce\x66\x23\x0d\x3c\x95\xa0\xb7\x2e\x22\x24\x3d\x76\x51\x40\xa4\x86\x37\xd6\x80\x1c\x41\xe1\x6a\x3a\xb2\x80\xa5\x62\xb1\x17\x68\x8d\x2d\x35\x3e\x39\x7c\xc9\xf1\xa7\xe9\x7a\x2b\x5b\x05\x09\x23\x20\x51\x2d\x08\xd4\xd4\x2d\x5e\x1c\x09\xdd\x25\x02\x60\x2c\x18\x00\x18\x8f\xa5\x83\xa2\x4b\x7e\x43\x5f\xf9\x66\x23\x52\x16\x14\xe2\xdd\x48\x5e\x44\x9f\xc3\x6e\x8d\x7d\xc6\xca\x8a\x2e\xd3\x4d\x6b\x04\x20\xdb\x8c\x02\x62\x0b\x9c\x4e\xed\x24\x1c\x0b\x4e\x9c\xb7\xe2\xe6\x3c\x90\x9a\xad\xdf\xd5\x7c\x01\x70\xf3\xf6\xf6\xea\x01\xda\x05\xa0\x4c\x57\x10\x32\x23\x2e\x90\xc5\x04\x06\xb3\x32\x2a\x13\x62\xfe\x10\x9d\x72\x21\xae\xa5\x6a\x99\x60\xb9\x79\xb8\x87\x38\x65\xd8\xe1\xbd\x72\xbe\xd7\x0d\xbd\xb0\xce\x65\x16\xe2\xed\xd0\x79\xbd\xeb\x54\x48\x09\x06\xa1\xe8\xee\xbf\x93\x7d\x78\x8b\xba\xb1\xdb\xad\x14\x8f\x4f\x1f\x2f\x0a\x6a\x5f\x7b\x7c\xf5\x9f\x03\x82\xde\x5e\xde\x88\x5f\x4c\xd3\x1f\xc8\x6e\x84\x7b\x7a\xa7\x77\x00\x56\xd3\x9a\x87\x0e\xdf\xe9\x1d\xc2\xd2\x5a\x0f\xe4\x56\x6e\x6b\xa7\xfa\x7b\xdd\xc4\x3d\x79\x75\xfe\x16\x55\x75\xba\x51\x39\xb1\xe7\xaa\xf1\xcd\xb4\x20\x2c\xa5\x46\x9c\x0f\xde\x16\xc2\x52\x28\x95\x3d\x64\x34\x3e\x06\xc9\xe4\x23\x8c\xeb\x84\x97\x2e\xa1\x0b\x96\x3a\x9e\x9c\x63\x99\xab\x2c\xf3\x25\xbf\xb2\x45\x71\x56\xe6\x0c\x52\x89\xe7\x2b\x6d\x27\x73\x64\x19\x33\xfb\x50\xaf\x67\xc3\xf0\x95\x25\x0a\xc8\x9a\x8e\x6f\x36\x62\x19\xa1\x8e\xe6\x2c\xd3\x12\xb9\xc1\xd1\x74\x60\x67\x6c\x12\x1f\xb0\x43\xe4\x05\x86\x1c\xae\x8e\x6e\x85\x47\x50\x13\xaf\x8b\x30\xcb\x03\x19\xc2\xf0\x55\x30\xdf\xeb\x27\x76\x3a\x45\x1a\x55\x8e\xa1\xf2\x80\x9a\x24\x37\x21\xe7\xc2\xfc\x6d\xd6\xcd\x11\x7f\x5b\x36\xe3\x0b\x6c\x2e\xa1\x21\x39\x99\xdd\x89\x82\x0b\xc2\x65\x76\x2d\xcb\x2c\xc5\xc8\xf3\x80\xaf\xff\x17\xc6\xfa\xda\xa1\xbb\xce\xf7\xe8\x9f\xa5\xfc\x0f\x21\x8b\xd5\xe0\xd1\x4e\x80\xd5\xe0\xa5\xb9\x00\xc3\xca\xdd\x2e\xb2\x5d\xbb\x5d\x57\xf0\x5c\x19\xc8\x3d\x11\xd0\x0c\xe2\xcf\x1c\x31\x35\x03\xa2\x68\x1d\x39\xd0\x87\xeb\xcb\x00\x30\x66\xc7\x38\xd9\xae\x56\x9d\x36\xaa\xde\x92\x3f\xd5\x7b\xfa\x14\x6f\x6d\x1b\xeb\xe7\x30\x38\x75\x6f\x07\xd2\x73\xaf\xb3\xd7\x2f\xae\x31\x11\xc6\x2d\x80\xf7\x03\x9d\x69\x74\xb7\x4b\x2a\x93\x2c\x8b\x2b\x82\xac\xbc\x12\x10\x58\xc3\x23\x2c\x14\x37\x62\xd4\x41\x34\x3e\x68\xd0\x47\xae\xee\xad\xf5\xf5\x4e\xd2\xd9\x80\xe9\xe4\x76\x77\x6d\xad\x17\x57\xd2\x6f\x42\xa1\xce\xae\xa7\x25\x2e\xed\xfa\x08\x38\xc7\xcd\xa5\x1d\x14\xfa\x40\x69\xe3\x25\x86\xdd\x8a\x6d\x73\x9b\x6c\xb6\x6f\x5e\xcf\x4f\x35\x40\x4d\x99\xf7\x2c\x13\x24\x10\x5f\x73\x90\xf3\x9a\x56\x11\x0b\x24\x5e\xfc\xcc\xb1\xcf\x69\x31\xe5\xc5\x8e\xcc\x2c\x64\xe5\xbc\x75\x96\x8c\x8c\x82\x09\xb9\xc8\x15\x98\x09\x50\x3e\x64\x93\x91\x42\x00\xc5\x16\x9e\xe5\x75\x62\x2d\x3d\xf5\x24\xbb\x77\x1c\x81\x88\x73\x4f\xbd\xca\xd1\xdd\xa9\x43\x8d\xa1\xc7\xb8\xce\xff\x54\x07\x0a\x39\x36\xae\xf7\x4e\x1d\xd6\xd0\xfa\x08\xb6\x56\x46\x7c\xff\xd8\xb9\xcd\x13\xca\x7a\xfc\xc3\xa4\xcc\x56\x1b\xbd\x1d\xb6\xe4\x95\xac\x7f\x53\xf4\x50\x2a\x3e\x99\x80\x19\x58\x1b\x08\x74\xe2\x02\x32\x1e\x2a\xea\x66\x4a\xb9\x2a\x2d\xa1\x9d\x4d\x6b\x21\x57\x4b\xcd\x2d\x09\x84\x2e\x06\x3a\x15\x98\x8e\x39\x5a\x8a\x06\x51\xee\x06\xbf\x88\x0d\xca\xb1\xe1\x73\x34\x75\x12\x7e\x5f\xe2\xf3\x34\x41\x04\x66\xc8\xad\xfc\x9c\x34\x61\xa8\xe4\x22\x5d\xda\x58\x79\xc6\xe0\x3b\x7c\xc3\xbe\x57\x6d\xdd\xe9\x46\x19\xc7\xef\x12\x71\xa2\xb8\xe4\xc4\x31\xc1\xd8\x78\xbf\xab\xd7\x88\x3b\x90\x0b\x0c\x5d\xf8\x2a\x61\x66\x1e\x03\x15\x46\x38\x06\xf5\x56\xaf\xe3\x53\x5f\xcc\x6a\xa0\x8a\x13\x87\x42\xbc\x0d\xb9\x01\x01\xfb\x8d\xd6\x2b\xe0\x57\x61\xe0\xe9\xc2\xab\x39\xa4\xd7\x84\x99\x97\xbd\x48\x79\x71\xb6\xb0\x85\x71\xb6\xb0\x71\xb3\xf3\x84\x70\x6c\x41\x8c\xf1\xd6\x6d\x47\xbe\x36\x35\x45\x1f\x27\x15\x0b\x9c\x45\x17\x94\xcb\x31\xd2\xdf\x63\x6e\xac\xae\x5d\xa6\xca\x5e\x04\xb3\xa9\xd9\x0a\xdb\x65\x9d\x4b\xfe\x29\x35\x97\x9f\x53\x6a\xae\x37\x48\xa9\x4c\xc1\x72\x0a\xdc\x2e\x6b\xe7\xba\x40\x84\x6f\x6e\x2e\x4b\x4a\x9f\x72\x13\x9b\xfb\x3d\x08\x76\x8f\x76\xd6\xf9\x75\xaf\xdc\x23\x61\x4d\x77\xf8\x21\x2b\xc1\x2b\x37\x5f\xa9\x9c\x3a\xc6\xe1\xfe\xde\x69\xaf\xfe\xf8\x08\x6f\xcf\x1f\x79\xdd\x2e\x1f\xfd\x50\xe5\x87\xa6\x46\xc7\xde\xec\xd4\xd4\xcd\x91\xf1\x89\xca\x7b\x05\x72\x5f\x16\x53\x3c\xbc\x9e\x44\xf2\x20\xbb\x7b\x94\x43\x1b\x8e\xb3\xc4\xd2\xc6\xc3\x2c\x67\x67\x43\xbb\x36\x18\x00\x3f\x65\xa4\x57\xfb\xd0\xfb\xfd\x3a\xa0\xf9\x19\x93\x53\x03\xe9\x21\x26\x10\x97\x81\x69\x62\x77\xd9\xd0\xbc\x1b\xbd\x36\xe2\x8d\x21\x6f\xf7\xb8\x29\x75\x97\x2e\x23\xde\x42\xfb\xf3\xfb\x87\x71\xfb\x27\xa4\x2c\xf4\xe2\x61\x92\xc6\x3b\xae\x91\x3b\xdf\x6c\x64\xda\x64\x17\x94\x10\xf9\x09\x8a\x87\xd3\xc0\x52\xe8\xd8\x96\x88\x62\xe6\xa0\xb3\xb5\xb8\x44\xe3\xa1\xd8\x59\xa7\x7c\x52\x92\x14\x85\xae\x21\x2f\x2a\x55\xf2\xc2\xa1\x74\x08\x6b\x17\x67\x3e\xc4\xaa\x99\x9d\x79\x8c\xcb\x58\x77\xca\xac\x71\xd9\xfd\x17\x7c\x8a\x4b\xfc\x8c\x23\x44\x41\x68\xf0\xfe\xca\x0e\xac\x38\x86\x14\xbc\xc6\xb2\x43\x3a\x76\xbe\x28\x33\xe5\x73\x93\xb3\x74\x6f\xf1\x7b\xbe\x85\x0c\x7b\xf4\xa8\xe7\xfc\x48\x25\x55\x67\x73\x0a\xf9\xcb\xe5\xfb\x11\xa4\x1b\xf0\xca\xba\x06\x32\xac\x3f\xa3\x56\x04\x13\x90\x04\xeb\xcf\x23\xe8\x19\x0a\xc1\x39\x33\xf4\x00\x6f\xc2\xf0\xd4\x65\x3d\x0a\xde\x81\xe1\xb1\x8b\x3b\x28\xc0\x45\x90\x7a\x45\xde\xf0\x67\xe2\x25\x14\xf0\x96\x82\x0f\x62\x7c\x51\xdc\x8b\x90\x04\x8c\xf3\x4f\xe2\xe4\x7e\x5a\xda\x91\x97\xf9\x6d\x02\x4f\xaf\xc1\x72\x24\x46\x28\x9c\xd8\x6c\x32\xe7\x8b\xe3\x8e\x26\x7c\xf3\xc3\x4e\x90\xd3\x51\x8f\x27\x05\x5e\x5f\x27\xe3\x5d\xbc\xb0\x9e\xc5\x44\x90\xb2\x95\x3b\x22\x0f\x04\x7a\x4e\xdf\x25\x10\xda\x78\xdc\xcb\x2e\x42\xbd\xe1\x84\x49\xad\x26\xaf\xd3\xf0\x83\x77\x69\x1a\xc8\x12\x3d\x23\x7e\xe4\x3d\x3a\xcf\x48\x32\xf4\xae\xb7\xf7\x3a\x18\x79\x13\xfc\x15\x27\xa5\x93\x9b\xbe\x13\xe6\x00\xc1\xa8\xd3\x39\x6a\xef\x74\xd4\x08\x5c\xe0\x57\x71\x9e\x30\xdd\x80\x8d\x4e\xb0\x89\x74\xdc\x28\xcf\x25\x22\x37\xdf\xc4\x91\x09\x57\xd7\xaf\x2e\xe2\xd8\xd0\x2d\xf7\xa8\x33\x9d\x5e\xa9\x78\x27\xce\xbd\xb9\xd4\x2b\x55\x00\xc3\x39\xec\x42\x60\x40\x38\xae\x6f\xc4\x7b\xd3\x1d\x46\x9d\xc8\x51\x71\x4f\x12\xa6\x38\x32\x1a\x0d\x15\xb2\x81\xa1\x84\xf9\x21\x0f\xd0\x7c\x4a\x65\xe0\x7c\x4c\x8d\xa9\xf3\xba\x67\x37\xcc\xb4\xb3\x5f\x71\xd2\x68\x44\x57\xaa\xc5\x58\x14\x6d\x1d\x4b\xf0\xb8\xbe\x0c\x39\xe2\x1c\x73\x12\xc9\x04\x69\x29\x36\x1c\x84\xa5\xd9\x46\x03\x54\x68\x0f\x86\x6d\xd9\xe8\xf5\x06\xdf\x4e\xca\x5a\x45\xd1\x5b\x0e\xc6\xcb\xcf\xe2\x75\xc8\xcf\x31\x00\xaf\x88\xa5\x41\x30\x74\xcc\x27\x62\xa9\x4b\x4c\xc0\xb3\x5d\x0a\xa7\xcd\xba\xa3\xb0\x25\x3f\x1c\x2d\x5e\x37\x1b\xd9\xcb\x86\x5f\xf0\x8b\x88\x2e\x52\x6a\x89\x0d\xca\xcc\x63\x0b\xb1\x52\x22\x8e\x97\x98\xf0\x3d\xe9\x34\x30\x5a\x4a\x51\x70\xdd\xd4\xb2\x5f\xb3\x35\xc3\x79\xbf\xc6\xa7\x90\x5d\x81\x1a\x59\x4b\x95\x9d\x1a\x91\xd9\x1c\x9f\x1b\x04\x8e\xaf\xb0\xe5\xd0\xf8\x3e\x0a\x2b\x81\x66\x4a\xa0\xcf\x4c\x56\xe0\x02\x7d\x68\x92\x31\xf5\x4c\x11\x8c\xdd\x97\x4a\x60\xd8\xbe\x07\x0b\xb0\xd5\x06\x81\xbf\xba\x98\x01\xce\x45\xe3\xb8\x84\x40\x24\x9e\x5d\x42\x00\xc5\xcc\x62\xce\x28\x42\xf2\xd4\xbd\x3b\x78\x3a\x2c\x9a\x9e\x22\xd1\xc3\xbf\x5b\xe9\xee\xa2\x0f\x44\x71\xc1\x15\xd2\x5c\xb3\x51\xed\xd0\x91\x50\x43\x3f\x13\xbc\xfa\xec\x83\x35\x0d\x6e\xdf\x90\x81\x11\x48\xec\xe0\x42\x08\x12\xf8\x59\x00\xa8\xcf\xaa\x19\x32\xc3\xba\x5f\xe8\x9b\x2d\x59\x12\x1a\x1b\xfc\x26\x07\x83\x7a\xf6\x2b\x4a\xc9\x60\xe6\x1e\xa7\x0f\x4d\x67\x39\x97\x44\xf4\xa3\xf5\xc7\xea\xc3\x44\x54\xc1\x5b\x24\xf8\x60\xf0\x1b\xcf\x7c\x0d\x30\x72\x20\x09\xb0\x18\x87\x88\xe2\xf4\xd6\x31\x3e\x0d\x06\x24\x22\x48\x8e\x55\x13\xe1\xd9\x0b\x82\x39\x37\x98\xa1\x58\xab\xea\x80\xa1\x90\x1d\x1d\xf9\xf0\x01\x12\x4b\xcc\x6f\x55\x01\xf1\x82\x3f\x0b\x18\x6d\x48\x59\x42\x59\x24\xb0\xbd\xa1\x34\x46\x99\x79\xc5\x04\xdd\x24\x01\x73\x6c\x31\xd4\x03\xde\x70\xca\x18\x32\xd4\x8c\x40\xe7\x5d\x37\x19\x8d\x5c\x3e\xca\xd3\xf0\x69\x8d\xcc\x75\x29\xeb\xd3\x78\x1a\x43\x96\xdd\xe1\x2a\x5e\x4c\x5a\x1b\x15\x8c\x3c\x23\xc1\xc7\xe7\x4b\xa6\xe2\xd5\x47\x1a\xfb\x4f\x21\x16\x06\x5b\x25\x04\x63\xa0\xcc\x00\xb7\x88\x14\x78\x82\x01\xee\x2a\x0c\xc5\xca\x45\x28\xfe\xea\xe4\xe5\xab\xb9\x62\xbd\x32\xd9\x23\x57\xf4\x55\xd4\x85\x9e\x72\x14\x46\xf7\xe4\xe3\x8f\x9f\x5c\x88\xa3\x5b\xe0\xfb\xf8\x87\x4f\x80\xf2\xe3\x1f\x3f\x11\x56\x7e\x17\x9d\xb1\xa6\x47\x5f\xb3\x12\x3f\x7e\x72\x4f\x5d\xdf\x3c\x1d\x97\x15\xd2\x8f\xc0\x20\xf3\x7f\x24\xc4\x3b\xd9\xab\x3a\x84\x7e\xe2\xb5\x4c\xc9\xda\x59\xc3\x51\xd7\x94\x53\x18\xf5\x8b\xdf\x16\x8b\x4f\x82\x70\x8b\xc2\xf7\x68\x58\xa9\x97\xf3\x5d\x4c\x43\xc6\xd3\x43\x8f\xb1\x9d\x89\x5f\x29\xf2\x29\x3f\xce\x96\x15\x78\x4a\x96\x00\x4f\xa9\xe8\xbf\x61\x47\x01\xc1\xaf\x15\x46\x4d\x4d\x08\x28\x88\xea\xb7\x20\xa0\x70\xab\x09\x43\x08\xbf\xfa\x4d\x8d\xe0\xb8\xb2\xa9\x19\x94\xa0\x5a\x81\x5a\xf9\xaf\x47\x44\xe3\x31\x0a\x2f\xfb\x6b\x58\xb7\xc5\xcb\xb5\x39\x42\x7c\x2d\xee\xe8\xe8\x4c\xd0\xd1\x20\x7d\x33\x36\x1e\xaa\x31\xba\x38\x62\xdf\x8c\x10\x5f\xad\x9b\xe0\xe3\xd7\x8a\xbf\xbd\xb3\x34\x78\xf1\x65\xe9\x30\x6a\x46\xed\xe3\xb3\xd4\xff\xea\xa6\x61\xca\x14\xeb\x08\xf4\x27\xe0\xe7\xcd\xfd\x87\xb4\xb9\x67\xd1\x85\xcd\x8d\xc1\x9a\xbd\x5c\x67\x3b\x5b\xae\x8b\xce\x62\x13\xb1\x0c\xf7\x73\xba\xf7\x73\x84\xc1\x8f\x19\x51\x86\xc6\x21\xce\x6f\x6c\x59\xf5\xd1\x5b\xdb\x7d\xaa\xe4\x1a\x36\xb9\x5c\xdb\x0a\xa8\x17\x87\x4a\x40\x42\x66\xec\xbe\xa2\x4f\xf8\xf5\x23\x10\x90\x1f\xf9\x7d\x06\x71\xe2\xaa\x1f\xb7\x98\x40\xaf\xda\x62\xc2\x06\x13\x36\x76\xc0\xe7\xb6\x7e\x6c\xf1\xb3\x95\x07\xfc\xda\xe3\xd7\x5e\xa9\x3b\x2a\x8c\xe7\xd9\x8f\x62\x6b\x8d\xdf\x60\xca\x01\xbf\x0f\x4a\xf2\x63\x5d\xf4\x0e\xc4\x19\x90\xa6\xf0\x71\xe2\x2a\xaa\x8e\xd3\xc3\xc7\x89\xab\xa0\x56\x4e\xa5\x9f\x27\xae\x6a\xe5\x81\x93\xf0\xd7\x89\xab\xa0\x7a\x4e\xa2\x9f\x27\xc8\x86\xf8\x4d\x40\x48\xbf\x4f\x5c\x05\xed\xe0\x44\xfa\x79\xe2\xaa\x5e\xee\xeb\xd4\x2e\xfe\x85\xa9\xa9\x55\xfc\xab\xaa\x3e\xb6\xbd\xdd\xfd\x66\x8d\xfa\x54\x85\x97\xed\xb7\xca\xb1\x35\xf8\x8b\xde\xee\x82\x13\x88\xea\xe9\xb2\x0e\x9f\x0b\xc5\x67\x2f\x3a\x2b\xdb\x45\xc5\x11\xb7\x6a\x6d\x76\x43\xd4\x4a\xb3\x45\xce\x63\xcf\x60\xe9\x2d\x08\xf2\xa7\x3e\xec\xd4\xa2\xc2\x1b\x19\x6f\x6d\xbd\x44\xe6\x13\xef\x62\xd0\xa6\xea\xfb\x7f\xfc\x03\xe1\xf5\x6f\xea\x9f\xff\x14\x6f\x7f\xfe\x41\xa8\xcf\x8d\x52\xad\x13\x5b\xb6\xf3\x0c\x60\x5b\xf9\xf9\x65\x01\xb9\xa8\xd8\x39\x99\x0d\x0b\xc9\x39\x19\xab\xaf\xfe\xbf\x00\x00\x00\xff\xff\x4e\x9d\x20\xe1\x7e\xfe\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xeb\x72\x1c\xb9\xb1\x30\xf8\xbf\x9e\x02\xa3\x13\x0c\xcd\x44\x50\xad\x18\xfb\x3b\xdf\x6e\x4c\x88\xf2\x72\xa8\xd1\xe5\x1c\x4a\xe2\x21\x29\xfb\xf3\x6a\x15\x35\xe8\x2a\x74\x37\xcc\x6a\xa0\x5d\x40\xb1\xd5\xe3\xf0\x1b\xec\x03\xec\xf3\xed\x93\x6c\xe4\x05\xb7\xaa\x6a\x4a\x1a\x9f\xfd\x43\x76\x01\x89\xc4\x3d\x91\x99\xc8\x4c\xc8\xdd\xae\x6e\x95\x6b\xc4\x99\x38\x17\x3b\xa9\x4d\xa7\x9c\x13\x4e\x75\xab\x27\x1b\xeb\xbc\x6a\xc5\x2b\xed\x85\x53\xfd\xbd\x6e\x54\x55\x6d\xec\x56\x89\x33\xf1\xda\x6e\x55\xd5\x4a\xb7\x59\x5a\xd9\xb7\xe2\x4c\xbc\x08\xbf\x2b\xf5\x79\xd7\xd9\x1e\x80\x7e\xa1\x5f\xd5\x46\x75\x3b\x28\xa3\xba\x5d\xe5\xf4\xda\xd4\xda\x88\x33\x71\xa3\xd7\x46\xbc\x31\x94\x62\x07\x1f\x92\xde\x0f\x9e\xd2\x86\x5d\x48\xfa\xb0\xab\x7a\xb5\xd6\xce\xab\x5e\x9c\x89\x6b\xfe\x59\xed\xd5\xd2\x69\x0f\x35\xfd\x85\x7e\x55\xf7\xaa\x77\xda\x02\xf6\x3f\xd3\xaf\x6a\x27\xd7\x00\x70\x25\xd7\xaa\xf2\x6a\xbb\xeb\x24\x16\xb8\xe5\x9f\x55\x27\xcd\x7a\x20\x98\x4b\xfe\x59\x35\xbd\x92\x5e\xd5\x46\xed\xc5\x99\xb8\xc0\x8f\xc5\x62\x51\x0d\x4e\xf5\xf5\xae\xb7\x2b\xdd\xa9\x5a\x9a\xb6\xde\x52\x37\x3f\x38\xd5\x0b\x4e\x17\xd2\xb4\x02\xd2\xb1\x0b\xaa\xad\xb5\xa9\xa5\xe3\x7e\xa8\x56\x68\x23\xa4\xab\x10\x95\x91\xdb\x50\x1a\x7e\x56\x6a\x2b\x75\x07\xa3\x06\xff\xab\x9d\x74\x6e\x6f\x71\x68\xaf\xf8\x67\xd5\xab\xda\x1f\x76\x0a\x87\xe0\xc9\xed\x61\xa7\xaa\x46\xee\x7c\xb3\x91\xd0\x4c\xfa\x55\x55\xbd\xda\x59\xa7\xbd\xed\x0f\x08\x17\x3e\x2a\xdb\xaf\xa5\xd1\xbf\x49\x4f\xe3\xf3\x3e\xfb\xac\xb6\xba\xef\x2d\x0c\xed\x5b\xfc\x51\x19\xb5\xaf\x01\x8f\x38\x13\xef\xd4\x3e\xc7\x02\x39\x5b\xbd\xee\x69\x14\x21\xf3\x2d\x7e\x01\x16\xca\x63\x4c\x94\x15\xb1\xad\x6c\x7f\xc7\xa9\x2f\xe1\xe7\x08\xa5\xed\xd7\x9c\x5b\xb6\x4b\x1a\xb9\x56\x9c\xfb\x16\x3f\x0a\x00\x57\xc9\x76\xab\x4d\xbd\x93\x46\xc1\xd0\x9d\xc3\x97\xb8\x82\xaf\x4a\x36\x8d\x1d\x8c\xaf\x9d\xf2\x5e\x9b\x35\xcc\xc1\x39\x25\x89\x1b\x4e\xaa\xb2\xbc\x98\x76\xb0\x43\x9c\x65\x71\x26\xfe\x6a\x87\x5e\x5c\xd1\x27\xe5\x65\x85\x30\x33\x96\xac\x64\xe3\xf5\xbd\xf6\x5a\x51\x65\xe1\xa3\xda\x0d\x5d\x57\xf7\xea\xef\x83\x72\x1e\xb2\xae\x86\xae\x13\xd7\xfc\x5d\x69\xe7\x06\x2c\xf1\x06\x7f\x54\x55\x23\x4d\x83\xdd\xb9\xc0\x1f\x55\xf5\x51\x1b\xe7\x65\xd7\x7d\xaa\xf8\x07\x00\xd3\x2f\x1a\x27\xaf\x3d\x36\x96\x13\xc5\x8d\x57\x3b\x07\x03\x2d\x5e\xea\xde\xf9\x27\x5e\x6f\x95\xb8\x1e\x4c\xd5\xda\xe6\x4e\xf5\x35\x6c\x48\xdc\x4a\x6f\x56\xe2\x60\x87\xc7\xbd\x12\xfd\x60\x8c\x36\x6b\xf1\xca\xae\x9d\xd0\xc6\xe9\x56\x89\x17\x08\x7d\x2a\x76\x9d\x92\x4e\x89\x5e\xc9\x56\x3c\x93\xc2\xcb\x7e\xad\xfc\xd9\xa3\x7a\xd9\x49\x73\xf7\x48\x6c\x7a\xb5\x3a\x7b\x74\xe2\x1e\x3d\x7f\x35\xe8\x56\x75\xda\x28\xf7\xec\xa9\x7c\x2e\x1a\xd9\xab\xd5\xd0\x75\x07\xb1\x54\x2b\xd8\x2b\x07\x3b\x88\x66\x23\xcd\x1a\xf6\xc9\xc1\x6f\xa0\x42\x6d\x84\xdf\x68\x27\x60\xa3\x7e\x57\xc1\x28\x69\xaf\xea\x76\x19\x88\x12\x36\x08\x93\x7b\xe5\xc4\xdb\xc3\xcd\x7f\x5d\x9e\x8a\x2b\xeb\xfc\xba\x57\xf8\xfb\xe6\xbf\x2e\xb5\x57\x7f\x3c\x15\x6f\x6f\x6e\xfe\xeb\x52\xd8\x5e\xdc\xea\x17\x3f\x2f\xaa\x76\x59\x87\x71\x79\x21\xbd\x5c\x42\x17\xe2\x5c\x41\x26\x6d\xa5\x98\x87\x1b\x0a\x48\x1e\x92\x37\xe7\x71\x93\xf2\x06\x9d\xdd\x8e\xed\xb2\xe6\x3d\x1c\x71\xbc\x83\x8d\xdc\x2e\xd3\x00\x5f\xd1\xd0\x0d\x4e\x89\x37\xef\xde\xbd\x7f\xf1\xb3\x50\x66\xad\x8d\x12\x7b\xed\x37\x62\xf0\xab\xff\xbd\x5e\x2b\xa3\x7a\xd9\xd5\x8d\x86\xb1\xe9\x9d\xf2\x62\x65\x7b\xea\xe9\xa2\x72\xae\xab\xb7\xb6\x85\x5a\x6e\x6e\x2e\xc5\x5b\xdb\xaa\x6a\x27\xfd\x06\x1b\xe2\x37\x95\xfb\x7b\x07\xe3\x15\x2b\xbc\xdd\x28\x81\x4b\x17\x81\xec\x2a\x0c\x8f\x68\xb9\x8d\x0b\xf1\x6c\xd9\x3f\xcf\xda\x25\x97\xce\x76\x83\xe7\x12\xfb\x8d\x32\x38\x4f\xce\xcb\xde\x0b\xe9\x02\xe9\x5f\x54\xaa\xef\x6b\xb5\xdd\xf9\x03\xcc\x0e\xb7\x61\x8c\x9d\x90\x34\xd2\x18\xeb\xc5\x52\x09\x84\x5f\x54\xc6\xd6\xb4\x53\x81\x6c\xb6\xda\xc9\x65\xa7\x6a\x22\xe9\x7d\xa0\x48\x7f\x85\xc5\x41\x05\x19\x42\x14\x10\x30\x62\x70\x4c\x20\x75\x86\x95\x23\x8d\x40\xa4\x82\xb7\x7a\xde\xc2\x40\x17\xe2\xac\x11\x69\x88\x09\x93\x16\x56\x61\x1a\xc2\x9a\x39\xdf\xed\x3a\xdd\x50\xd5\xaf\x28\x2f\x2d\x1f\x38\x34\x79\xee\x73\x38\x9c\xfe\x90\x97\x2d\x82\xc1\xc3\x90\xf6\xa2\xa0\xc1\x58\x7e\xa3\x7a\x25\x36\xc3\x9a\x0e\x8e\xce\x0e\xed\x77\x48\xc1\xc3\xf8\x26\x3a\x29\xae\xad\xf5\x34\xe7\x11\x20\x55\x71\xde\x75\x78\x4e\xf7\x6a\x6b\x3d\x0c\x1c\x17\x03\x5a\xb4\xd7\x5d\x07\x3d\x75\xf2\x5e\xb5\xc2\x5b\xda\x6f\xad\xee\x55\x03\x88\x17\x55\x3f\x98\x9a\x17\xfb\xf5\x60\x68\xc1\x87\xb4\x72\x65\x21\xd4\x76\x70\x5e\x6c\xe4\xbd\x82\x81\x07\x66\xc1\xdb\xd9\x76\x62\x97\xfa\xc1\xe0\x16\x5e\x54\xad\xdd\x4a\x3c\xf8\x5f\xe0\x0f\xfe\xce\xf1\x6b\x27\xe4\x6a\xa5\x1a\xef\xc4\xcd\xcd\x6b\xd1\x74\xd6\x28\xf1\xe1\xfa\xd2\xc1\x36\xd8\xd4\x3b\xdb\x23\x93\x70\xf3\x5a\x5c\xd9\xde\xc7\xb4\x6c\xa0\x01\xc2\x0c\xdb\xa5\xea\xc5\x7e\xa3\x9b\x0d\x0d\x3b\x94\x80\x55\xac\x7a\xa1\x9d\x18\x9c\x36\xeb\x53\xd1\x29\xe8\x81\xf6\xb4\x00\xa0\x0f\x61\xd5\x01\xf8\x4a\x49\x3f\xf4\x0a\x0f\xfd\x7a\x39\xe8\xce\x6b\x53\x43\x85\x8c\x07\xc9\x82\xf8\x99\x32\xb0\xc4\x0d\x66\x1c\x81\xaf\x77\x76\x47\xec\x0c\xee\xaa\x65\x56\x8e\x11\xc2\x96\x87\x09\xb4\x3b\x45\xeb\xdd\x71\x93\x60\xc1\x0d\xda\x6d\xc4\xaa\xb7\x5b\xe1\x0e\xce\xab\x2d\x16\x6c\xa5\xda\x5a\xb3\xa8\x36\xde\xef\xc2\xd8\xbc\xbe\xbd\xbd\xa2\xc1\x89\xa9\x0f\x8d\x8e\xcc\xd6\x2e\xae\x92\x0e\x18\x2b\x23\x00\x2d\x2c\xe3\xa1\xef\x46\x2b\xfc\xc3\xf5\x65\xc8\x39\x32\x73\xd0\x84\xa7\xf0\xe7\x26\x4d\x20\xae\x04\x67\xb7\x6a\x8f\xeb\x5d\x1b\x81\xcc\xce\xa2\xea\xec\xba\xee\xad\xf5\x61\xb9\x5f\xda\x35\x2d\xf1\x22\x23\xd5\xf4\x22\x2c\x5a\x18\x9c\x7d\x0f\xcc\x5f\x67\xd7\x48\xf0\x60\xbc\x16\x95\x32\x48\x5a\x1a\x6b\x9c\xed\x54\xa0\x9c\xbf\x60\xaa\xb8\xa0\x54\x22\xa2\x33\x90\x71\x96\xde\x00\x65\x69\x35\xf6\xd8\x5b\xa2\xa7\x00\x70\x2a\x64\xe7\xac\xd8\xf5\xda\x78\xa8\x18\xe7\x88\x31\x2c\xaa\xca\xee\xa0\x44\x46\x43\xde\x73\x42\x22\x1c\xd8\xef\x98\x8f\xac\x1e\xae\x1c\xdd\x64\x87\x93\xdb\xfa\x5d\xcd\x27\xd1\xcd\xdb\xdb\x2b\x3a\x8e\x30\x15\x17\xc1\x99\x78\xd9\xdb\x6d\x4a\x48\xe3\xf3\x16\xf0\x21\x8c\x6c\xdb\x5e\x39\x77\x2a\xae\x5f\x5e\x88\x7f\xff\xe3\x1f\xfe\xb0\x10\x6f\x3c\x90\x3d\xa0\x04\x7f\x83\x1d\x2c\x79\x16\x12\xa8\xed\x85\xdf\x28\xf1\x08\xc8\xd8\x23\xf1\x0c\x73\xff\x0f\xf5\x59\x6e\x77\x9d\x5a\x34\x76\xfb\x1c\x56\xe9\x56\xfa\x45\x05\x39\xaa\x0f\x44\xe3\x46\x99\x56\xf5\xcc\xb8\x72\x56\x46\x7a\x39\x3b\x63\x63\x89\x7f\x87\xb1\x5f\xe9\x7e\x9b\x26\x28\x70\xf6\x30\x53\x90\x13\xb8\x40\xdd\xd5\xc6\x7a\xbd\x3a\x24\x50\xec\xe9\x3b\x48\xe4\xa5\x59\xf1\x4e\xe3\xe3\x2a\x8e\x31\xed\x4b\x5c\x81\xef\xfd\x46\xf5\x61\xb8\x5d\x1a\x6f\xbb\x5a\x01\xd3\x32\x5a\x2d\xef\x29\x95\x56\x4b\x0e\x12\x97\xc9\x0b\x26\x18\x17\x2f\xde\x09\x75\xaf\x0c\x2c\xec\x5d\x6f\xdb\xa1\xc1\x95\x13\x56\x4c\x27\x7a\xe5\xec\xd0\x37\x8a\x17\x6a\x24\xc8\xd0\x34\xa0\xfa\x8d\xec\xba\xc3\xa2\x0a\x07\xe3\xba\x97\xf7\xd2\xcb\x3e\xab\xe2\x55\x48\xe2\xd6\x4f\x60\x27\x8d\x8a\x25\xa0\xe7\xcd\xe0\x3c\x50\x0f\x6c\x85\xa3\x46\x51\xb6\x13\xb2\x57\x62\xd8\x75\x56\xb6\xaa\x15\xcb\x03\xd2\x78\x07\x6b\xa1\x55\x2b\x39\x74\x7e\x51\xad\x54\x0b\x44\x49\xb5\x35\xd7\xd5\x59\x7b\x87\x95\xf1\x50\xbd\x0c\x00\xe2\x9c\x91\x5e\x22\xc4\xb1\x92\xb1\xb1\x5c\x3e\x82\xc5\x46\x71\x0d\xde\x22\x8b\x92\xf2\xed\x4e\x19\xee\x46\x60\x4c\x04\xf0\x1d\xad\xb0\x46\x74\x7a\xc9\x9d\x4e\x63\x39\x62\x32\xc2\xe8\xdc\x80\x7c\x9b\xe7\xcd\x16\x98\x0c\x2a\x2e\x78\x37\x2e\x7b\x2a\xac\xe9\x0e\xcc\x8c\xc0\x16\x23\x01\x32\xf0\x25\x2e\x91\xa5\x28\xae\x05\x8a\xc4\x52\x5b\x99\x1f\xab\xbd\x26\xb6\x57\xdc\xcb\x4e\xb7\x80\x31\x20\x80\xd3\x62\xbe\x2d\x8b\x8a\x79\xe5\x9a\x25\xed\xfa\x5e\xa3\x1c\x1b\xb7\x18\xa1\x64\xe9\x1b\x46\xf8\xcf\x00\x00\x02\xb2\x9b\x2d\x1b\x5b\xf3\x1e\x3a\xe9\xa2\x1c\x4b\xeb\x04\xba\x8b\x35\x00\xff\xee\x4e\xc5\xbd\x46\x36\x80\x17\x39\x8e\xcb\x12\x78\xcc\x4e\x41\x55\x4e\x29\xc4\x20\xb4\x79\x3a\xec\xa8\xcc\x82\x85\x38\x96\xab\x02\xdf\x0f\xec\x60\x6b\x05\x70\x69\xc8\x6b\x00\xa5\xe5\x61\x1d\xf1\x7d\xa2\xd7\xeb\x8d\x17\xc6\xee\x4f\x69\x50\xf6\x1b\xab\x60\xcf\xbf\x79\x71\xf6\x23\xb5\x63\x0d\x9c\x47\x2c\x04\x3c\x8b\x1c\xbc\x05\xfa\xc2\x5b\x8f\x9a\x10\x79\x3f\x84\x9c\x88\x8b\x04\x34\x96\xdb\x27\xac\x66\x24\x74\x4c\xdf\xf2\x3c\x26\x6c\x09\x86\x4a\x07\xd9\x9f\x2a\x26\x42\xca\xb2\x5e\xbd\xb6\x28\x6b\x06\xd9\x0e\x98\xa9\xca\x2b\xe7\xeb\xb5\xf6\xf5\x0a\xa8\x2d\x20\x7e\x09\x08\x80\xb7\x53\xce\x8b\xc7\x6b\xed\x1f\x8b\xc6\x6e\xb7\xd2\xb4\x3f\x89\x93\x7b\x16\x13\xfe\x08\x64\x14\xb6\xa2\xee\x70\x46\x58\x82\xed\x15\x49\x03\x41\x7b\xd2\x5a\xe5\x70\xe0\xdd\xb0\x43\xc6\x22\x8a\x58\x2c\x09\xb6\x76\x6f\x80\x60\xe0\x71\x61\x57\x2b\xdd\x68\xd9\x89\xa5\x36\xb2\x3f\x44\x2c\x78\x0c\x9d\xb8\x53\xf1\xee\xfd\x2d\x02\xae\x2d\xf0\x3d\x6d\x00\x58\x54\xda\xe0\xc2\x06\x71\x82\x27\x3f\x97\xa5\x42\x92\xa6\xb6\x34\xb6\x87\xb3\x1f\x7b\x13\x0a\x1e\xe1\x94\x81\x71\x20\x41\x44\x83\x2c\x8b\xb0\x58\x2e\x32\xb5\x30\x0c\x5b\xe9\x9b\x0d\xb3\xbc\xb8\x6c\xb4\x33\x8f\x3d\xb6\xb4\x19\xfa\x5e\x19\x8f\xc9\x3f\x89\x13\x27\x9e\x3c\x17\x27\xd9\xb9\x5c\x6f\xb5\x03\x2e\x32\xb2\xa4\xe1\x90\x86\x0a\x39\x4f\x60\x1e\x2e\x3b\x3c\x5e\x53\x77\xf3\x83\x1c\x4b\xc2\x69\x2e\x56\x5a\x75\x6d\xe8\x6c\x6a\x32\x30\xed\x74\x50\xae\xa7\x93\x0d\x99\x82\x32\x07\xda\xfe\xc5\xf0\x14\xfb\x2a\xae\xae\xb0\x6b\xb2\xf1\xcd\xc7\x28\x2c\x3b\x37\xd0\x46\x39\x13\x7f\x51\x5d\x63\xb7\xea\x3b\xf1\x17\xf5\xb8\x57\x62\xdd\xe1\xc4\x4b\xcf\xe2\xbc\x75\x0a\x17\xe5\x29\xed\xd3\xd5\x60\xf0\xc8\xf1\xf2\x4e\xa1\x06\x20\x75\x7c\x8e\xdb\x3b\x3a\x57\xd5\xc7\x8d\xdd\xaa\x4f\xd5\x40\xb2\x94\xed\xda\x28\x8d\xe3\x0e\xb4\x3d\xb1\x2f\x51\x34\x4f\x30\x71\x73\xb9\xbd\xf6\xcd\xa6\x8e\x7a\x4a\x18\x48\xaf\x3e\xe3\x94\x61\x56\x52\x5b\xc2\xce\x84\xac\x6a\x7b\xc0\x65\x05\x1d\x7f\x7b\x48\xab\x4a\x2b\x57\xb9\x8d\xdd\xa3\xd2\x2f\x42\xdc\x6c\xec\x1e\xd5\x7d\x85\xc4\xb5\x58\x2c\xaa\xc6\x76\x9d\x5c\x5a\x98\x95\xfb\x04\x7f\x91\xa7\x96\xc8\xb7\x87\xda\xf6\x6b\xae\xb6\x54\x72\x6d\x0f\xac\x57\xe3\x5c\xd2\xab\xb9\x0a\xa9\x33\x2b\x64\x91\x88\x9f\xb8\x8a\xd5\x49\x0b\x6d\x6a\xd4\x56\x85\x9a\xdf\x18\x92\x85\xf2\x76\x56\xd5\x47\x56\xd6\x7e\xaa\x02\x5c\xd1\x26\x22\xf1\x34\xe8\xae\xd0\x20\xba\x91\x0a\xd1\x55\x4e\xc9\x1e\xf7\xd3\x0d\xfe\xa8\xaa\x8f\x72\xf0\x9b\x4f\x99\x32\xb5\x0e\x2b\x2f\x28\x55\x51\xe1\xc7\x54\x36\x71\x85\x1b\xb5\x03\x06\x72\xeb\x70\xc9\x76\xbd\x92\xed\x81\xc5\xcd\xb8\x78\xff\x44\xe7\x97\x36\x40\xf5\xbf\xab\x9c\x05\x02\x54\x7f\x23\x8a\x9f\xb5\x69\xa9\x7c\x79\xf6\x93\x96\x77\xbb\xc3\x65\x62\xfb\xfe\x70\x5a\x2a\x22\x36\xd2\x89\xa5\x52\x26\x08\x8c\xed\x22\xa8\x79\x60\x79\xc9\x86\x68\x08\x6a\xa6\x71\x07\x52\x49\x3b\x61\x4a\xa0\x85\x44\xf6\xb9\x16\x3a\x05\x5c\xe0\x4f\x81\x31\xfb\xe6\x2a\x60\xd0\x6b\x66\x90\xce\xc4\xf9\xe0\x37\xca\xf8\x20\xbd\xdd\x60\x7a\x85\x0c\x27\xee\xbf\x46\x76\x55\xaf\xb6\x0a\x64\xc2\x7a\x4b\x9a\x65\xfa\x12\x6f\x55\xb5\xb2\xfd\x1a\x77\x2b\x6d\xa7\x33\xf1\x12\x13\xd2\xfe\x02\x00\xe5\xf3\xf3\x8d\x21\x42\xca\x9f\x82\x26\xbf\x36\x76\x8f\x1a\x5e\xe0\xf1\xc6\xd3\x38\xec\x60\x1a\x16\xe1\xbc\x24\xd6\x0b\xb9\x7e\xa7\x8c\x4f\x93\x71\x2e\x8c\xda\x8b\x1c\x8a\x87\x2c\xce\x08\xc0\x03\x61\x7c\xb6\x7c\x7e\xe2\x9e\x3d\x5d\x3e\x8f\x47\x56\xb3\x51\xcd\x1d\x6d\x01\x6d\x96\xf6\x33\xaa\x93\x50\xf7\xa8\x84\x01\x92\x70\xd2\x8a\x8d\x1d\x7a\x16\xe9\x40\xe4\xf1\x0a\x73\x8b\xb9\xdf\xf5\xb6\x41\x62\x8e\xba\x5e\x45\x7b\x2c\xad\x6b\x54\xfa\xc2\xca\xc6\x73\x35\x2c\xed\x5d\x6f\x37\x7a\xa9\x3d\x10\x40\xd4\x80\x5c\xe2\xff\x2b\x4e\x56\xed\x08\x22\x63\x81\xfa\x48\xae\xb5\x13\xbb\x58\x00\x1a\x89\xa0\xa9\x7f\xbc\x2e\xd2\x9a\x00\x4e\x10\xc7\xaf\xd3\x5b\xed\x27\x4b\x1a\x88\xb7\xe4\xad\xc1\xba\xe9\x30\x37\xd8\x87\x34\xba\xbd\x6a\x94\xf1\xdd\x21\xae\xc1\xbd\xd4\x5e\xfc\x51\x6c\xb5\x19\x3c\xc8\xdd\x1b\x65\x84\xef\x0f\x42\x02\x9b\xb5\xa8\x36\xd2\xd5\x83\xe1\x69\x52\x6d\x58\xe4\xaf\x35\x72\x03\x50\x6f\xd8\x8a\x19\x54\x29\x8b\x8a\xef\xe3\x0c\xfe\xb0\x60\x2d\x35\x96\x82\x13\x1a\xda\xa3\x41\x70\x92\x73\x6b\xc1\xf6\xc2\x28\x1a\x21\xec\x3f\x80\xc1\xb2\xb1\x46\xa5\xc1\xea\x74\x73\x07\x12\x03\xcc\xef\x72\xf0\xde\x82\x58\xdc\xc1\x1a\xa4\x32\xa1\xcd\x17\x08\x88\x4a\x8b\x84\xef\x40\xd3\x52\x8e\x52\x85\xc5\x00\xc2\xcf\x17\xfe\xbe\x57\x3f\xa4\xe2\x71\xcb\x60\x09\x46\x41\xa5\xb3\xdd\x74\x8d\x99\x74\x05\x11\xf6\x5c\x38\x4c\x1b\x56\x0a\xc7\xd9\xec\xcb\xd1\xc0\x7c\xd8\x18\xea\xf3\x4e\xf7\x20\x20\xf5\x89\xb5\x58\x8c\xea\x4a\x1a\x84\x69\x8f\x7d\xd9\xe2\x74\xde\x7a\x6b\x6b\xb7\x21\x0e\x28\x34\x4f\x74\xca\xac\x0b\x0d\x30\x5e\x27\xe2\x12\xf9\x9f\x8b\xca\x58\x53\x23\xf5\xc9\xf6\xcc\x3b\x6b\x9e\x10\x45\x0a\xf2\x52\x28\xcd\x57\x05\xa1\x42\x40\xd3\xdb\x61\xbd\x61\x85\x62\x45\x9b\xc5\xef\x6d\xbd\x92\x8d\xc7\x6b\xa7\xdb\xbd\x7d\xc2\x1f\x25\xed\x9b\x00\x63\xdf\x79\x10\x47\x64\xf2\x8a\x73\xa6\x65\x94\x01\xaa\xdd\xab\xc6\xde\xab\xfe\x10\xe6\xe0\x17\x48\x15\x52\xf8\x54\x79\x00\x11\xf3\x78\x62\x76\xd1\xe2\x6b\x4e\x3d\x0e\x1f\x6a\x0c\x90\xe2\xe2\x81\x66\x66\x1d\x9c\x69\xe1\xee\x68\x27\x13\x77\x7d\xa4\xd2\xb8\xb4\x90\xe6\x0e\x8e\x16\x57\x94\x1a\x78\x85\x55\x1f\x61\x51\x7f\xaa\x78\xa7\xa8\x6c\xca\x99\x8e\x84\x9c\xb0\xa3\x88\x5a\x46\xf8\x20\x14\xfd\x59\xf5\x7a\x75\x20\xa0\x82\x4a\x1c\xdb\x30\xe5\x7a\x8d\x87\x6d\xe2\x68\xaf\x73\x92\xce\xc9\xab\xa1\x3b\x15\x7b\x62\x75\x53\x99\xa8\x76\x62\x26\x18\x88\x06\x5d\x73\x57\x1f\xb7\xb6\x95\xdd\xa7\xea\x80\x97\x77\x7f\x55\xae\x32\x78\x61\x6a\xab\xad\x6d\xa9\xd0\x5b\xfc\x51\x55\x1f\x57\xb6\xdf\x7e\xaa\x80\x8d\x7a\x37\x92\x1e\x81\xdf\xe2\xb4\x4c\x82\xc1\xac\x5f\xf2\x0b\xe1\xd8\xe7\xab\x19\x41\xf3\x5a\xa5\x7b\x61\xfc\x15\x3b\x7f\x73\xf3\xfa\x36\x28\xc2\x6e\x5e\x8b\x3b\xc5\xb8\x5f\x7b\xbf\x73\x1f\x50\xbd\x4b\xba\xda\x0f\xd7\x97\xd5\x95\x3c\x80\x54\x47\xc9\xfc\x81\x19\xb7\x4a\x6e\xb9\x91\xf0\x93\x50\xc0\xa6\xe1\x44\xf8\x69\xfb\xfc\x62\xa3\x42\x59\xe3\x97\x42\xac\x25\x22\x57\xbd\x53\xfb\x9f\x7b\x69\x9a\x50\x18\x98\xc0\x25\x26\x50\xc9\x0b\xbb\xdd\x6a\x7f\x33\x6c\xb7\x12\x37\x08\x7d\x0b\x47\x09\x9c\xfd\x56\x39\x47\xb7\xf6\x9c\xbd\xa5\x04\xce\xbe\xd8\x58\xdd\x64\xb9\x0d\x7e\x57\xb7\xbd\x52\x5c\xeb\xcb\x70\x47\x56\x21\xe3\x4f\x5c\x29\xfd\xaa\xa2\x1a\x44\xf1\x65\xf6\xaf\x93\xfb\xa2\x5f\x2b\xd9\xed\x36\x12\x45\x8b\x0c\x0c\xaf\x46\x96\xac\xb0\x11\x08\x82\x74\x77\xd8\xaa\x5e\x37\xb8\x4b\xa4\xdb\x7c\xff\xa4\xfe\x01\xef\xfa\x64\xe3\x55\xef\x4a\x64\xad\xf5\xbf\x0f\x21\x6e\x41\xff\x20\x5e\xd7\xfd\xee\xe6\x4e\xb0\x43\x0a\xe2\x53\x50\x91\xd3\xbf\x85\xe1\x2a\x30\x43\xba\x38\x01\x08\x14\x45\x13\x54\x04\x42\xc6\x05\xc4\x52\x2f\x80\x2a\x78\x10\xb7\x8b\x3e\x6c\xe5\xe7\x2f\x15\xdc\xda\x99\x72\xa4\x6a\x4f\x85\x58\xb4\x96\xdc\xdb\x82\x92\x2c\x7e\xad\x86\xfe\x01\xe0\x0f\xd7\x97\x8b\x5f\x2b\x6d\x9a\x6e\x68\x8f\x36\xc4\x0d\x4b\xe7\x7b\x10\xa9\x1f\x9f\xb8\xc7\x80\xd2\xdc\x19\xbb\x37\x11\xfe\x03\x7d\x0b\xfc\xfe\x29\x18\x6f\xd4\xda\xb0\x6e\x23\x99\x71\x88\x56\xb7\xc0\xea\xa0\x8e\x62\x91\x8e\xdc\x5c\x6f\x11\x09\x01\x2a\x78\x59\xaf\x14\x69\x21\x08\x0f\xa8\xc2\x91\x5b\xb5\x48\x06\x27\x35\x90\xec\x1a\x64\x73\x93\x0b\xd3\x40\xcc\x03\x33\x88\x44\x1d\x21\x16\x74\xd3\x38\x2d\x37\xa2\x54\x47\x8b\xdb\x7e\x3d\x53\xfa\xfd\xf4\x16\xf4\x48\x79\xaf\xe4\x76\x06\x41\xa4\x41\x47\x0b\xd2\xdc\x63\x21\x3c\x9e\x46\x44\x74\x5a\x0e\xa0\x16\x69\x94\xe2\x80\xe7\x73\x93\xab\x1e\xe2\x38\x97\xda\xa9\x42\xfe\xaa\xb7\xda\x85\xc9\xba\xdd\x28\x21\x4b\x2e\x23\x6a\xb1\x3b\xd5\x00\xeb\x1d\x96\x9c\x43\x69\x16\x52\xd0\x46\xc0\xf3\xb5\xeb\xa2\xc2\x53\xbd\x47\x9b\xa2\x4c\xfd\xc5\xea\x48\x3e\x52\xb7\xf2\x4e\x09\x37\x00\xf7\xb6\x91\x9e\xe5\x97\x72\xb2\x80\x95\x46\x54\x54\x67\x6c\xf9\x04\xbd\xdd\x1b\x38\x01\xbf\x84\x1f\xc1\xbe\x11\x75\xae\x2d\x9d\x22\x66\xe4\x11\xe8\x18\xda\xa8\xca\x53\x9f\x35\x5e\x96\xbd\xd2\xf7\x8a\x95\x79\x91\x1b\xc1\xbc\x45\xd5\x49\xe7\x6b\x58\x8f\xd4\x5c\x14\x74\xed\x3d\x6c\x56\xa8\x0f\x72\xa9\x1c\x5d\x9e\x71\xa7\x60\xfd\xb1\x5a\x50\x76\x9d\xdd\xab\xf6\x54\x48\xe4\x66\x7b\x45\x7b\x5f\x76\x7b\x79\x70\xa8\xe2\x0e\xf4\xcb\x9a\x30\x26\x40\x9c\xcc\x41\xac\xb1\x55\xb9\xf6\x64\x51\x25\x65\xa0\xdb\xd4\x70\x2a\x47\x4e\x7e\x8f\x4a\x36\x5c\x09\xac\x34\xbf\xcf\xf8\x1f\x3e\xc4\x7f\x12\x27\xae\x1a\xe8\xd2\x80\xb2\x33\x44\x68\x31\xc3\x07\xd6\x4c\xd9\x53\x90\x78\xc4\x5e\xc1\x4a\x1b\xb6\x3c\xd6\x1a\x05\x4c\x6c\x52\xa6\xe5\x1d\x96\x9d\x7a\x42\x92\xb3\x0e\x6b\x3b\x2a\x21\x47\x4c\x33\xa5\x93\xea\xce\x79\xdd\x75\x30\xd2\xc1\x8a\xac\x90\x64\x31\x17\xb7\x20\x0e\x93\xdb\xe8\x9d\xb0\x78\x47\x97\x0f\x61\x5a\xb6\x99\xcc\xe8\xad\x68\x15\x4a\xe6\xb6\x17\xbe\x97\xc6\xad\x14\x5e\x5a\x6e\xc5\x4a\xf7\x30\xcf\x54\x35\x88\xa0\x64\x35\x76\xa4\x66\x52\x72\x60\xd5\xf9\xd9\x83\x73\x97\x4d\x54\x59\x35\x99\x0c\xe0\xcd\x18\xb6\x01\x47\x35\x61\x72\xa1\x0d\xb0\xcc\x26\x43\x80\x97\xe4\x85\x01\xc8\xec\x38\xac\x0a\x0d\x1d\xd5\x8f\x2b\xed\x0b\xfd\xae\xc8\x2a\xab\x26\x4e\xaa\xd8\x15\xb7\x98\x13\x78\xac\xf1\xc6\xa8\x3e\xc2\xba\xff\x54\x91\xb0\x55\xc7\x9b\xc7\x0b\x12\xbe\x88\x35\xc7\xc4\xea\x6f\x56\x9b\x1a\xaf\xd1\xfe\xc3\x6a\x83\x77\x6e\x55\x61\x69\x32\x52\x1f\xb2\x3d\xdc\x01\x4d\x60\x96\x9d\x6e\x82\x51\xdc\xa1\x5a\x59\xdc\x4f\xa8\x5d\x7c\x19\x7e\x57\xce\x4b\x20\x13\x6c\x27\x01\xbf\x0a\x75\x25\x15\x22\x5d\xf6\xcb\xf0\x9b\x53\x63\x52\x35\x98\x98\xf2\x81\x7f\x56\x15\x30\xe0\x0b\x24\xed\x20\x33\xe0\xb5\x6b\x46\xd0\xe1\xbc\x86\xf5\x1f\xf2\x16\x19\xfc\x4e\x7a\xaf\x7a\x43\x37\x27\x44\x04\xf2\xa2\x9c\x1d\x51\xe0\xc6\x25\x30\x18\xdb\x60\x2c\xf8\xa9\x4a\x26\x85\xc1\x9a\x70\xee\xca\x28\x0e\x3f\x5d\xa4\x56\xbc\xab\x1d\xf3\xef\xff\xa9\x0e\xae\x72\xaa\x19\x7a\x1a\xd6\x1b\xfe\x39\xaf\xbe\x65\x7d\xf2\xc8\x62\x32\x59\x73\xb8\xd2\xb8\xc3\x55\xbc\xc6\xce\xc4\x0b\xfa\x11\x14\x58\xd5\x0e\xa7\x2f\x33\x8b\xe4\xf9\x8c\x5d\x61\xab\xd8\x5c\x71\x55\x2a\x74\xb4\x13\x84\x04\xd9\x95\x70\x03\x8e\x87\xf3\xca\xf6\x48\x27\xe3\x75\x9e\xea\xf0\xf8\x33\xd9\xed\xbe\x3b\xc5\x72\x00\xb6\x57\xcb\x70\xe5\x9b\x6c\x65\xb6\xb2\x55\xe2\x5e\xcb\xa8\x17\xcd\x98\xa6\x78\xaa\x07\x65\x6a\xa1\x74\x40\x79\x89\x14\xdd\x81\x67\x0a\xd3\xec\x6d\x50\x41\xf8\x8d\xd2\x74\xe3\x6a\x90\x9f\x5a\x0d\x5d\x17\x4e\xc6\x97\x43\xd7\x91\xe5\xd7\xd4\x1e\x19\xaa\xe0\x9b\xe7\x4b\xfe\x59\x0d\xbb\x16\xa4\xdb\x34\x96\x1f\x30\x21\x8e\x65\x99\x9f\x49\xad\x38\xaa\xa1\x58\x12\xbf\x11\xbc\xcd\xc4\xd8\xee\xb0\x08\xbb\x79\xc6\xce\x98\x37\x76\x3b\x06\x49\x0a\x42\xa4\x54\xdc\x71\x9c\x28\x32\xed\xc1\xa1\xdd\xcb\x83\xd8\xd8\xbd\xe8\xb4\xb9\x73\x3c\x53\x30\x4e\xb9\x04\x8f\x8a\x5c\xaf\xcd\xa0\x58\xa6\x82\x9f\x53\xab\x56\x36\x05\x60\xc3\x80\xe5\x21\xa8\xcd\xc8\x74\x80\x37\x80\x58\x1e\x04\x8a\x8d\xc7\x6d\x10\xc6\xc6\x07\xc1\xf6\x20\xdc\xa9\xa3\xe9\x43\xa2\x6b\x1f\x9c\x12\x17\x64\x0e\xc1\x7b\xac\xd9\x58\xeb\xf8\x86\x22\x51\x3f\x48\x43\xc5\x21\x13\x3f\x9e\x96\x84\x87\x66\xed\x3c\x98\x65\xe0\x3e\xe7\x1d\x54\xf3\x05\x62\x82\xe6\x0d\x75\xc1\x17\x8b\xe7\x01\x27\x99\x5d\x84\x3e\x21\x8d\xa9\xf5\x96\x24\xdb\x0f\xc1\x28\x03\x27\x3c\x4a\x24\x98\xbd\x28\xdb\x33\x5e\x25\x5c\x6f\xb8\xe2\xfb\xc2\x62\x09\x4b\x21\xbf\xa7\xa6\xe9\x8f\x74\xc9\x76\x05\xd3\x16\xfa\x11\xf3\x61\xf0\xb2\xfc\x77\x68\x51\x10\x15\x30\xb0\xc7\xea\x11\x08\xeb\x2c\x0a\xc8\x59\xb6\x3b\xd4\x75\x94\xe5\x1e\xb5\x7e\xb2\x63\x42\xb9\xbd\x74\x45\xc7\x79\x8d\xb7\x8b\x60\x7a\x2a\x8c\xdd\x93\x79\x02\xda\x08\x92\x9d\xa4\x41\xdb\x06\x42\x91\x11\x15\xae\xf4\x5f\x25\x29\x09\x33\xc9\x2c\x2e\x8a\x2a\xe7\x44\x38\x95\x0b\x56\xf0\x31\x9f\x0d\xe1\x0b\xfa\xaa\x82\x69\x59\x4e\x81\x77\xbd\x46\x1d\x4a\x49\x89\x27\xb4\xb7\xa0\xb3\x48\x66\x2d\x1a\x4a\x25\xf2\xba\xa8\x02\x2a\x38\xbd\xf0\x57\x48\x89\x5a\xba\x1b\x85\xd6\xc2\x9c\x1c\x36\x42\xc8\xa5\xf5\x1f\xdb\xd8\x29\xa6\x8a\xd4\xd7\x17\x9c\x30\xca\x0f\x9d\xa1\xec\x30\x21\x33\xbd\xe9\x81\x97\x57\xf1\xe0\xd0\x86\xec\xd4\xa2\x15\x42\x41\x9d\xc4\x0b\x24\x57\x62\x2f\xe9\xae\x28\x10\xab\x3f\x8d\x6b\x4f\xeb\xe8\x97\xf2\x96\x89\xfa\x56\xee\xa2\xef\x2a\xd9\xb6\xb8\xc6\x93\x2d\x47\x8b\x8b\xa7\x54\x59\x02\x54\x0e\x41\xb6\x1e\x31\xb5\x2e\xee\xc0\x1c\xe9\xa5\xbe\xfe\xde\x0b\xb8\x90\xff\x86\x2b\xaf\xa2\xaa\x74\xe5\x15\x1b\x39\xda\x61\x93\x5e\x4e\xb7\x9a\x6c\x5b\x64\x88\x78\x2d\x67\x6c\x0d\xaf\xe6\xc8\xdd\x40\x2d\x24\xc7\xc0\xf0\xfc\xa7\x3a\x20\x0f\xc4\x2b\x01\x8f\x26\xed\x84\x44\x4b\x55\x34\x6f\x27\xa1\xc6\x4d\xe4\xe6\x72\xce\xcf\x51\x6a\x73\x8a\x61\x91\x3f\x94\xe6\x00\xfc\x7e\xd8\xeb\x6a\x0b\xe3\x40\x96\x42\xd1\xae\x79\x72\x67\x7e\xca\xa2\xd2\x46\xaf\x37\xdd\x41\xe8\xed\xce\xf6\x1e\x57\x52\xb0\x88\x48\x92\x2c\x7c\xf5\xaa\xb1\x6b\xa3\x7f\xc3\x81\xdd\x92\x21\x73\xbc\x6c\x79\xe6\x7c\x6f\xcd\xfa\xf9\x0b\x0b\x22\xe6\x1d\x90\x9f\x8d\xdd\xff\xe9\xd9\x53\x4e\x17\x17\x38\x85\x76\xf0\xe2\x95\xf6\xaf\x87\xe5\x63\x27\xd6\x83\x6e\xf1\xc8\x7d\x26\x33\xcf\x0b\x36\x8d\x22\x2b\xf3\xbd\x89\xc3\x82\x7e\x18\xb6\x17\xce\x76\xf7\x6a\x54\xc4\x6e\xb7\x34\xbd\xcb\x4e\x6d\x09\x12\xdb\x8f\xd6\x54\xca\xe0\xc8\xa9\x9e\xc7\xe7\xe6\xe6\xf5\x22\x2e\xf1\x34\x3f\x3c\x6d\x81\x4f\x2d\x54\x2e\xcc\x23\x02\x70\xc3\x3a\xd6\xe2\xd2\x60\x11\x4b\x21\xff\x31\x2d\x85\xf3\xe8\x80\x67\x99\x28\x7b\x50\x78\x01\x14\xa1\xb8\x38\x83\x76\x10\x1f\x06\x69\xcd\x44\xab\xcb\x0b\x2b\x5b\xbc\x70\xf6\x04\xad\x38\xf2\xef\xb1\x79\xb8\x5c\x47\xfb\x9b\x29\x1a\xf5\x9d\xe9\x59\xe8\x40\x46\xd1\x78\x44\x12\x4d\x1b\xc3\x14\x54\x4d\x11\x4d\x0b\xad\xc8\xa9\x19\x19\x8e\x12\x45\xa3\x05\xa9\x1c\xd2\xeb\xaf\xa4\x66\x93\x7a\x53\xc7\x43\x75\x5f\x41\xd1\xb0\x4f\xe7\x38\x1c\xd6\x90\x16\x85\x27\xea\x92\x75\x26\x98\x61\x6c\x9d\x49\x7b\xef\x2c\x5f\x1a\x8b\x90\x88\x73\xe2\x3c\x70\x2c\xf9\x56\x86\x46\xa0\x49\x3e\x99\x14\xa2\x1a\xe6\x7f\x13\xad\x3c\xb8\xca\xdb\x3b\x65\x66\x8a\x60\xfa\xb1\x42\xd5\x57\x5e\x06\x66\xb7\x5d\x50\xc3\xe0\x48\xe4\xf4\x83\xfb\x29\xcf\x23\x4f\xb9\x02\xdc\xae\x56\x90\xb6\x5a\x55\xc5\x7d\x1b\x9b\xd3\x91\x91\x65\x9e\x15\x9c\x0a\xa2\x0d\x69\x9e\x89\x06\x3c\xc5\x35\x9b\x0b\xa6\x3c\x68\x31\x2f\xcb\x3d\x0b\xbb\x96\x09\x52\x76\x13\x47\x3b\x17\xa8\x96\x70\x72\xa5\xc4\xae\x93\x8d\x4a\x3c\xcd\xe0\x88\xf4\xe0\xe1\x1c\x6e\x04\x35\xdd\xa8\x77\xd6\xa9\x31\xb1\x1b\x69\x29\x33\x71\x71\x91\x37\x7d\xe3\xfd\x8e\xec\x3d\x72\x8b\xff\xc4\x32\xb0\x81\x01\xb2\x3f\xa2\xb3\x66\xad\xfa\xa8\xd0\x82\x26\xed\x3a\xc9\x36\xa4\xb8\x7b\xa1\xbb\x91\x17\x8a\xb6\x2e\xc1\xde\xb3\xc5\x22\x69\x24\x3e\xfe\xf8\xc9\x9d\x7c\xfc\xc3\x27\xf7\xe8\xf9\x95\xea\x1d\x9a\xd8\x9f\x53\x37\x6e\x61\x79\xe0\x88\x48\xc7\xb7\xe2\xbd\x6a\xa1\x43\xb2\x3b\x15\x6a\xb1\x5e\x88\x67\x30\x04\xcf\x4f\x3e\xfe\xf1\x93\x7b\xf6\x14\x7f\x2f\xa6\x93\x99\x6c\xf4\x69\x6e\xbf\x6e\x2d\x35\xd2\xd4\x7f\x1f\xf9\x7d\x7d\x61\x54\xd1\x8e\x0f\x26\x0a\x0e\x5e\xe4\xed\xcb\x25\x18\x6e\x73\x9d\x6a\x7a\xe5\x51\x9c\x27\x65\x28\x89\xba\x98\x5a\x94\x80\x8a\xa6\x37\xc0\xb7\x1b\x65\xb8\x5c\x48\x2d\x4a\xb1\xa2\x30\xdc\xb6\x56\x33\xf7\xc1\x25\xb6\xb4\x98\x46\xea\xd9\x78\x05\x1c\x19\x91\x68\x1b\xf2\x5d\x55\xdc\x69\xc3\x0e\xfe\x2a\xac\xb3\xea\xfa\x12\xbd\x61\x9e\xd5\xa8\xef\x66\x26\x33\xdc\xc0\x4c\x27\x53\x1e\xd5\x62\x4e\xb1\x24\x02\x7a\x1c\x01\x5a\x5c\x18\x92\x09\xc6\xc4\x7a\x44\x5e\x8f\xdd\xef\xbb\xb8\xf6\x8e\x2e\xba\xd2\x00\xc0\x3d\x80\x8a\x49\x67\x71\x77\xcf\x36\xff\x40\x3f\xa3\xbb\x9f\x57\xc0\xc9\xc8\x5e\x77\x87\x6f\x25\x0b\xe2\x17\xd9\x6c\x4a\x9a\x84\x94\x27\x18\x7f\xf3\x19\xd1\xa8\x53\xf1\x6c\xf9\x9c\x27\xed\x4e\xa9\x1d\xb3\x64\xd4\xa4\x11\x01\x7b\xf6\x74\x59\x6e\xcb\x5e\x91\x87\x9e\x57\x53\x8a\x79\x1d\xf3\x1e\x1c\x98\x23\x08\xe2\xea\xc8\xd0\x94\x14\xf6\xc8\xb2\x38\x8e\xb1\xe4\x31\x46\xc8\xe2\xa9\x1b\x4a\x8f\xcf\xdd\xe9\xf1\x91\x3c\x59\xf9\x38\xf9\x2a\x72\x14\x0a\xcf\x99\x93\x45\x25\x62\xa7\xee\x55\x47\x8c\x47\x0b\xc4\x04\x0d\x33\x56\x40\x27\xa2\x6c\xeb\x8f\xad\xf6\x07\xb8\x8f\x99\x66\x7c\xed\xf6\x89\xf5\x96\xa3\x12\x64\x07\x5a\x98\x35\xf1\x01\x51\x7e\x98\x3d\x07\x5c\x15\x27\x08\xd8\xd6\x50\xe4\x55\x98\x65\x98\x1c\x04\x24\x6e\x23\xee\x16\x2a\x9c\x74\xff\x69\xa2\x90\xcb\x67\x2f\x2a\x5c\xd7\xde\xc6\x9d\xb2\x21\x3b\x68\x71\x7e\xf5\xc6\x2d\xaa\x58\x61\x40\x8a\xbb\x84\x9a\xb0\x27\xc5\x3f\x5a\x4b\x77\xdd\x64\xab\x05\x35\x1a\x15\x67\xee\x16\xdb\x44\xfc\x6d\xec\xd4\xa4\x43\xd4\x99\x32\x9f\xc6\x5d\xb9\x6c\x05\x50\x6d\xd8\x92\xb1\xa0\x16\xbb\xfa\x9d\x78\x9b\xae\xe4\x60\x66\x77\x07\x10\x7d\x32\x5f\x0b\x3a\x60\xc5\x1e\x85\x97\x91\x93\x87\xf6\x44\xf1\x05\xf0\xaf\x7d\x64\x9e\x43\x83\x99\x7d\xce\xa7\x32\xe7\xa1\x67\x27\x33\x71\xd4\xb3\xc5\xe6\xd8\xea\x5d\xc0\x53\xf6\xf9\x4b\x4c\xb6\x5d\x95\xf4\xed\xe8\x22\xcf\x7b\x95\x2d\xef\xab\xd9\x6a\xe3\xb6\xa7\xaa\x47\xcb\x5b\x90\x0c\x48\x16\xb5\xc8\x24\x91\x7e\x91\x56\x44\xc6\x2e\x48\x27\xf6\xaa\xeb\x16\x15\xaa\xf7\x17\x06\x44\x58\xf2\x96\x89\xba\x26\xbe\x93\xc2\x7e\x98\x43\x71\xe9\xe4\x16\x54\x0c\xaf\xb2\x22\x55\xb9\xe4\x8b\xad\x2c\xf4\x42\x06\x95\x39\xe4\x90\x93\x68\x79\x3c\xd0\x10\x66\xb7\x40\x68\xfd\xaf\xe4\xd6\x31\x1d\x41\x4e\x53\xad\xf8\xb6\x38\xbf\x06\x3d\x3e\xb2\x74\xa1\x41\x0d\x08\x0d\xcc\xd3\x46\x4d\x4f\x97\x85\x05\xd0\x17\x5a\x3e\xba\x1d\x2f\x5b\xfb\x40\xe3\xf2\x2a\x0a\x55\x08\xed\x69\xec\x6b\x86\x17\x45\xcb\x11\x2d\xe3\x95\x93\x4c\xe2\x78\xd9\x16\x76\xc3\x0c\x94\x29\xe6\x55\xe2\xb0\x03\xc9\x4e\x37\x91\x01\xd9\x4e\xf5\x5b\x69\xd0\x64\x97\x6e\x4d\x82\x9a\xe1\xe2\xfc\xdd\xbb\xf7\xb7\x49\xbb\x00\x34\xcc\xb4\xc8\x32\x05\x57\xa5\x49\xbb\x82\xc3\x52\xdc\x7c\x25\x44\x72\x99\xe2\x12\xc7\xe0\x72\x11\x2e\x33\x69\x5e\x5b\x54\xbe\x58\x68\x4b\x10\x42\x8b\xf6\xb7\x47\x57\xc8\x47\x18\xe2\x4f\x55\xb8\xcf\x7f\x0f\xff\xab\xdc\x24\x22\xb3\x52\x41\xb2\x99\x8c\x59\x92\xdb\xbc\x58\x5b\xdb\x4e\x4c\x24\x50\xba\x1c\x24\xea\x88\xed\x76\x67\x91\x81\x59\x09\x34\x76\x3d\x85\xdd\x65\x7b\x24\x76\x28\x99\x18\xfd\xf7\x01\xf5\x4a\x68\xa3\xba\xa8\xee\xb5\xd3\x4b\xdd\x91\x24\xfc\xe7\xf8\x41\xe9\xf0\x6b\xe4\x38\x9d\x55\xae\x9d\x78\xe6\x76\xd2\x88\xa6\x93\xce\x9d\x3d\x1a\xb4\x00\xf6\xd7\xab\xcf\xfe\xd1\xf3\xab\x1e\xcd\x22\x9f\x3d\x05\x88\xe7\x13\x74\xf5\xca\xf6\x0d\xdd\x9d\x46\x13\x70\xa4\x39\x9c\x0e\xdb\xd4\x20\x33\x92\x6d\x55\x1a\xf8\xdf\x51\xe7\xca\xf6\x77\xa9\x1f\xdf\xf3\x75\x81\x5d\x11\xdd\xbd\x97\xdd\x50\xde\x1d\x41\xed\x50\xc6\xfd\x50\xa1\x57\x78\x2a\x8b\x2e\x01\x18\x21\x08\x32\xb4\x59\xff\x09\x07\xcd\x3f\x1c\x69\xe4\xb5\xea\x76\x20\xe5\x7d\x57\x61\x4b\xf8\x8e\x7d\x1c\x5a\x06\xf3\x82\xcb\x34\xe4\xa1\xdf\x34\xa6\xce\xcc\x46\x16\x80\x42\x76\x41\xc0\xca\x66\x13\xc8\x29\x76\x22\xbf\x97\x3e\xb0\x91\x54\x3c\x7d\x5c\xd3\x6b\x74\xfb\xa6\xf4\x4e\xe2\x75\x75\x8c\x2d\x84\x89\x6b\xed\xf5\xda\xd8\x3e\x1b\x86\x1b\x34\x03\x12\x8b\x98\x25\x42\xb4\x22\x57\x75\xba\x51\xc6\x21\xb5\xa3\x5f\x21\x65\x52\x5c\x8a\x00\x8b\x57\x89\x20\x31\xf1\x56\x80\x1f\xfc\x3d\x53\x8a\x01\x43\x95\x95\x1c\xbc\xad\xb5\xd1\x1e\x3d\x87\x34\x08\xcf\xa4\xc2\x2c\xd7\x2b\x29\xe8\x82\x01\x13\x39\x37\x13\xf5\x67\x3c\xec\xfc\xc3\xd3\xc3\x5e\x3f\xd9\x04\xb1\x8b\x31\x5b\x2d\xe0\xf8\x61\x82\x20\x0b\x51\x0e\x4c\x54\xef\xfa\xc1\xd0\xcd\xf9\x60\x54\x91\x98\xe4\x1b\x3a\xce\xcd\x81\x43\x60\x3c\xf1\xbd\x6c\xee\x80\xb8\xf4\x6a\xa5\x7a\x65\x1a\xf4\x54\x90\x3e\xd3\x47\x90\x81\x04\xbb\x01\x50\xb1\x80\x5c\x83\xe4\x79\x8f\x5e\x32\xe4\x6d\x25\xde\x84\x94\xef\x37\x76\xe8\x7f\x08\x80\x41\xe3\x1d\xe1\xf8\xde\x66\x94\x1f\xda\xc9\x7a\x01\xb6\x24\x14\x46\xc1\xa1\x20\x7b\xf2\xba\xce\x54\x15\x4e\xb0\xa2\x3e\x7a\x0f\x32\x3e\xd4\xc0\xb9\x83\x69\x92\x0e\xee\x06\xbf\xaa\xbd\xf4\xcd\x86\x2c\x2a\xfe\xc2\x3f\xd1\xa0\x62\x2d\x7f\xa3\xd4\x9b\xf8\x81\x5b\xc0\xf1\xa6\x70\x6c\x1d\xd1\x2b\xd9\x6c\xd8\x59\xc4\xae\x6a\x0a\xb3\x82\xec\xd8\x6d\xb4\xf2\x02\x7a\x82\x70\xaa\x15\x5b\xf9\x59\x6f\x87\xad\x88\x80\x58\x14\x76\xc9\x49\x69\xb7\xb1\x98\xb7\xbe\x18\x1b\x11\x7e\xbb\x11\xc6\x18\xc3\xc3\xb6\x18\x46\xa9\xb6\x06\x71\x23\x10\x9d\xc2\x6a\xb9\xe2\xa8\x56\x21\x2c\x50\x0c\x6b\x45\x71\x81\xf2\xdc\xe3\xf4\x3b\x5c\xad\xc9\x92\xa4\xa2\xcb\xe1\xb2\x1b\xd4\xa3\xe7\x34\x8b\x81\x9e\x06\xac\xbc\x3f\xde\x72\x60\xad\x6c\x83\x30\xc4\x82\x88\x66\x5a\x6c\x17\x18\x5a\x23\xad\xb5\x19\xa8\xe2\xc8\x65\x91\x45\x66\xca\xba\xa7\xaf\xde\xdc\xa2\x61\xeb\x03\xc5\x6b\xba\xdf\xa8\x83\xc7\xd8\x5f\x29\x58\x14\x46\xc1\xc8\xae\x34\x43\x44\x30\x99\x0f\xc6\xf2\x40\x91\x0d\x42\x84\x93\x9d\xf4\x9b\x54\x17\x1c\xf2\xda\x39\x62\xdc\x8d\xc6\xf9\x2c\x98\xd8\x84\x9d\xda\xc0\xc8\xca\x85\x15\xb0\x25\x0f\xd3\x46\x76\xc1\xbd\xf4\x0d\x25\x72\x41\x48\xc4\xcb\x9b\xd2\x00\x2a\xb8\xc5\xc8\x3c\x20\x4e\x40\x1b\x6d\xdd\xd2\x6a\xc8\xcd\xdc\x78\x4b\xf2\x01\xc3\xa1\xcf\xec\xaa\xa2\x33\x22\xa4\xf3\x89\x01\x5f\x15\x48\x51\x75\xa7\xcd\x1d\x72\x56\xbb\x43\x4a\xc8\x18\xc9\x0b\xbb\xd3\xaa\xfd\x2e\xcb\x0b\x0a\x8a\x2b\x9c\xfd\xff\xf7\xff\xfe\x7f\x9e\x5c\x40\xbb\x2f\x7c\xdf\x3d\xb9\x08\xd2\x19\xc0\xd3\x38\x12\x02\xf1\xfe\x3f\xab\xc1\xec\xd9\x00\xf5\x03\xfd\xaa\xc2\x37\x92\x88\x6a\x30\x8e\xad\x19\xf0\x47\xc5\x5f\x40\x29\x2a\x0e\xd9\x06\x24\xa2\xaa\x4c\x3c\xe1\xde\xd9\xe2\x90\xfb\xfb\xa0\x9b\xbb\x9a\x2e\xa5\xce\xc4\x7f\xc1\x97\xc0\x30\x60\x7c\xce\xc3\x91\x11\xe9\x3f\x2e\xda\xd1\x21\x92\x3b\x88\xe2\xe1\xc8\x6e\xeb\xe9\xbc\x90\x25\xdf\x72\x08\x14\x3b\x00\x76\xda\xa8\x6a\x37\xb8\x0d\x59\xbc\x85\xda\xae\x06\xb7\xc1\x20\x27\x9f\x29\x88\x4e\x8e\x01\xa7\x66\x82\x63\x29\x7b\x55\x6f\xa3\x67\xc1\x78\x77\xc7\x85\xc3\xee\x6b\xe9\x5a\xeb\xa0\xfc\xa2\xaa\xe8\xfc\x23\xd7\x02\x57\xc5\x23\x8d\x8f\x32\xdf\x2b\x44\xda\x2b\x05\x90\x5e\xf5\xc1\x56\x4f\x9a\xb6\xf6\x72\x4d\x25\x81\xef\xe0\xa2\xb6\x17\x5e\xae\x19\x11\x62\xfe\x99\x7f\x56\x5e\xa2\x65\xd7\xad\x5c\x4f\xe3\xc7\xed\x86\xae\x9b\x46\x99\xeb\xe4\x52\x61\xf2\x25\xfe\xa8\xb6\xd0\x48\x6f\x8d\xa2\xa3\x2b\x7c\x54\x0d\x3a\x4c\xb8\xe8\x3a\xe1\xaa\xb5\x0e\xe7\x73\xd9\x06\x8e\x1a\x40\xfa\x37\xfa\x89\x43\x50\xf7\x72\x0f\x69\x72\x4f\x9f\x1b\xed\x38\x1a\xe1\x6b\xfa\x45\xc9\x74\xf7\x81\xa0\x78\xe1\x11\xe1\x91\xfd\xe7\x3d\x72\x15\x7e\x53\x96\xb7\xc0\x50\xf5\x69\x76\x82\x65\x8c\xb7\x56\x50\x06\x71\xb4\x6e\x63\xf7\xa6\xba\xd7\xad\xb2\x78\x66\x70\x20\x03\x8a\xc7\xb8\xec\xed\xde\x05\x8e\x0f\x46\x9b\x3e\x61\x7a\x41\x04\x0f\x41\x0f\x5e\xdf\xbe\xbd\xfc\x77\x81\x38\x60\x1e\x16\x55\x9c\x89\x85\xbd\x57\x3d\x87\xd5\x78\xcf\x3f\x53\x26\x7b\x86\x66\x43\x86\x56\x8f\x2a\x8d\x5c\x04\x75\x5e\x76\x05\xe4\x0d\x24\xcc\x00\x52\xcc\xbf\xf3\xae\x9b\xc9\x63\x9b\x9e\x7a\x79\x88\x56\x49\xad\xc0\x2b\x12\x20\xc1\x78\x4d\x92\x80\x83\xd9\xca\x98\xef\x62\x06\x7e\xc4\x7e\x55\xaa\x85\xa5\xbf\xc0\x08\x8e\x64\xac\xf6\x4e\xed\x89\xb7\xe4\x2c\x32\x61\xaa\xa3\x29\x1b\xfa\x0c\xe5\x00\xf0\x2f\x64\xff\xd2\x6a\x5f\x64\xee\x7a\x85\xeb\x80\x9a\xe5\x88\xc4\xe1\xc8\x52\x83\x5c\x00\x24\xbe\xbc\x46\x64\xc6\x9a\x1a\x8e\xd4\x3a\x6c\xb8\x0b\x62\xda\x21\x53\x18\x6b\x9e\xe0\x79\x8b\x99\x45\x23\x90\x14\xe5\x2d\xf1\x61\x09\x05\xb0\xed\xe0\x7c\xbd\x54\xb5\x35\xb5\x4c\x63\xf3\xd7\x60\x82\xbb\x44\xf7\x2f\x19\xf6\x27\x1c\x7c\xf2\x8e\xdc\x01\x7a\x0b\x52\xa2\x08\xfd\x08\x41\xd6\x72\xe4\x28\x76\x50\x20\x44\xec\x47\x8e\x19\x69\xed\x98\xbb\xe6\xa0\x89\x00\x1b\xec\xd4\x73\x7c\x41\xf9\x94\xf5\x2a\xd7\x7d\x4d\xfa\x05\x54\xab\xc6\x98\x59\xac\x42\xcd\x1b\x80\x24\x8d\x02\x6a\x25\xfd\xc8\x37\xf5\x8e\xcc\x3f\xb1\x49\xe9\x28\x43\x2f\xab\xf2\x6a\x7d\xfe\xaa\x39\x2c\x34\x60\xf6\xd0\xa7\x3a\x2c\x37\x76\x2b\xe8\xb1\xb2\xc5\x62\x91\xd7\x17\x65\x79\x54\x8f\x02\xab\x9c\x0e\xf1\x53\x0a\x72\x85\xdc\x9c\xf6\x74\xbf\x88\xa7\xe7\xd3\x05\xc0\x06\xf5\x5f\x5e\x60\x6d\x83\x52\x68\xa9\xd6\x9a\xc2\x61\xa2\x44\xab\x38\x38\x47\x42\xb2\x94\xcd\x9d\xdb\x49\x8c\x8a\x48\xed\xc1\xf3\xd9\xf6\xd9\x7a\x6d\x54\x57\xa3\x5d\xb3\x38\x13\xf4\x19\x33\x91\xb2\x66\x8b\x9e\xbd\xd4\x46\x6b\x5e\xb6\x6d\xed\xb7\xbb\x60\x29\xf4\xf8\xc4\x3d\x7d\x16\xba\xfd\xfc\x71\x06\x95\x00\x1e\xa7\x6d\xd9\x52\x88\x56\x36\x53\xcc\xf3\xc6\x56\xbe\x79\x1e\x37\x8d\x0f\xc1\x18\x18\xb8\x45\xcf\xf0\x10\xdf\x4c\xa8\xcf\x5e\x99\x56\xb5\xa2\x4d\x9c\x40\x36\x37\x8c\x84\x86\xb6\x3b\xd4\xde\xd2\x2a\x4d\xd4\x86\xfa\x1b\x00\xc2\xb0\xb3\x9e\x2a\xb0\xcd\x04\xfe\x04\xba\xfb\x08\x9d\xc1\xa3\xde\x0a\x33\x52\x75\x89\x81\x48\x35\x04\xd6\x21\xe8\xbe\x4c\xf4\x32\x4c\x78\x56\x18\xf0\x0c\x3d\x4a\xb0\x3d\x78\xe7\x4e\x61\x2f\x05\x9c\xa2\xc1\x2f\x7e\x91\xd3\xc1\x60\x60\x8f\x06\xc5\xcc\x12\x95\x1e\x8c\xf9\x48\x8c\x8c\x5e\xc7\x8b\x97\xc9\xda\x52\x51\xd8\x4a\xde\x31\x28\xcc\x4c\x22\x54\x72\xd9\xc0\x34\xd0\x75\x28\xb1\x3c\xe9\x5c\xa6\xcd\x56\x58\xc9\xb8\x18\x62\x35\x57\x5a\x84\xb5\x10\x96\x7f\xad\x5d\x2d\x23\x75\x34\x3e\xe8\x2d\x59\x0c\xdd\x49\xb6\xc1\xa4\x40\x2d\x92\x4e\xde\x11\xe3\xfc\x50\x45\x48\x1f\xb0\x0e\x77\xd8\xf2\xe9\x1e\x63\x95\x06\x81\x4d\x8a\x90\x19\xee\x59\x78\x08\xd0\xa3\x56\x33\x17\x4d\x86\xc8\x6a\x29\x18\xf5\x64\x54\xb1\x9a\xd4\xaa\x54\x51\x21\x67\xe6\xac\xe1\xd7\x77\x81\xa9\x71\x6d\x6c\x4d\x5a\x84\x34\x03\x65\x77\x82\xf9\x43\x20\xdf\x23\xb5\x43\x14\xf0\x8f\x55\xc4\xc6\xa9\xf5\x7e\x93\x55\x1b\x48\xea\xc4\x9e\x8a\xa1\x85\xd3\xa6\x51\x29\x7e\xab\x6a\x43\xfd\x8b\x87\xf5\x69\xc9\xed\x1f\x6d\x27\xf8\x16\x67\x0f\xb3\x80\x47\x43\x51\x89\xed\xe3\xb6\x22\x72\x18\xf6\xcf\x5a\x6a\x93\xb6\x97\xb7\xe8\xd6\x43\xa7\x8a\xdf\x64\x27\x48\xd9\xd3\xc9\x52\x3e\xa7\x61\x44\xed\x52\x9a\xb2\xaf\x5f\xd4\xc6\x06\xda\x0a\xa4\x07\x78\x41\x9a\x1d\x90\x5c\xc9\x20\x25\x3b\xc9\x20\x3b\xb5\x07\xa3\x33\xda\x9a\x8d\xab\x79\x3b\xbc\x24\x31\x30\x5e\xca\x3c\x65\xc3\x94\x34\xd9\xd8\x54\x72\xeb\x04\xc9\x30\x23\xe0\x6e\x58\xb6\xba\x67\x1a\x4a\x1f\x2c\x65\x26\x2a\xc1\x8e\x5c\x58\x6f\xe4\xa6\xdc\xa8\xe2\xc8\x58\xb9\x60\xe8\x79\xa4\xd6\x1c\x07\xe0\xa4\xea\x3f\xcc\x20\xa8\x02\xb7\x1f\x28\x76\x62\xd5\x99\x42\x07\x8e\xbd\x84\xcb\xa5\x83\x90\x33\x0a\xff\xc3\x4b\x22\xe5\xaf\x34\x8a\x74\x2f\xb5\x69\x63\x9a\x44\x05\x4c\xf4\x1f\x8f\xe9\x49\x04\x63\x37\xef\x98\xc3\x87\xda\x0b\xd4\x2d\x72\x5a\x88\xfa\xf4\x1e\xfe\xc7\x54\xa3\xf6\xac\x5e\xde\xab\x3e\x46\x45\xa2\x90\xee\x40\xaf\x51\x58\xca\x92\x17\x63\x01\x29\xcb\x82\xbd\x0e\x89\x24\xfd\x62\x7e\x9e\xdd\x74\x4a\xf6\x75\x2c\x7f\x01\x9f\xa2\x9b\x60\x89\x12\x57\x2e\x70\x8d\xaa\xc9\x61\xde\xd9\x79\x30\xaa\x2e\x87\xa4\x1a\xb7\x73\xc0\x76\xa7\x4c\x01\xfb\x7e\xa7\x4c\x2e\xef\x15\x88\xad\x53\xed\x08\x33\xde\x7d\xcc\xc3\x4b\x87\xc1\x00\xf1\xf6\x87\x7f\x4e\xdb\x99\x01\x51\x33\xe5\x0c\xa8\xb1\x39\xdc\x3b\x3b\x01\xe2\x0d\x17\xcf\xf5\xf1\xec\xa5\xf9\x51\xfb\xc9\x04\x51\x66\x8d\x66\x25\x31\x46\x18\x02\xc5\xe3\xba\xa8\x26\x22\xe3\xca\x0a\x7c\x84\x2b\xea\xe6\x17\xf1\x1e\x12\x76\x97\x04\xf6\xb0\x55\x2b\x74\x8e\x73\x0a\x95\xa1\xe5\x42\x18\x17\xd7\x66\x65\x73\xe2\x84\xae\xa6\xe6\xc0\xa5\x50\xb1\x10\x2d\xf9\x8a\xa8\x35\x8f\x62\x4f\x1f\x85\x08\x36\x72\x69\x8b\x38\x89\xe4\xcc\x48\x31\xbe\xc7\x0d\xe3\x68\x37\x47\x5a\x35\x73\xad\x80\x43\xe2\x94\x3f\x56\x64\x70\xec\x64\x44\x54\xf9\x8b\xf0\x81\xd2\xe6\xd2\x63\x22\x77\x48\xab\x08\x47\x7c\xb4\x21\x52\x5b\x0a\x53\x47\x68\x71\x7d\x7b\xb9\x14\x67\xe2\xa4\xc5\xc5\x1d\xe7\x12\x96\x6e\xca\xa2\x95\x1c\x32\x59\x01\x13\x26\xba\x98\xe1\x3c\x0f\x8e\x79\xba\xdf\xa0\x75\x19\xef\x3a\xba\x99\x12\x0f\x6e\xf0\x31\xcc\x51\xcc\x93\x6d\xcc\x25\x1f\xd8\x6d\x09\x62\xad\x8d\x3a\x8e\xfa\x48\x39\xd6\x78\xa3\x9e\x7b\x9a\xb3\x90\x5d\x57\x47\x1d\xd3\x79\xd7\x09\xfa\x98\x05\x75\xfc\xea\x85\xb7\x20\xc5\xa5\xa6\xb6\x6c\xdc\x32\x57\x88\x56\x6b\x5b\x2f\x0f\x5c\x86\xb6\x1d\xc6\xa2\x3d\x52\x64\xab\x0c\x88\x1c\xc0\x87\x51\x91\xb7\x31\x61\xa6\x88\xe3\x20\x8d\xb6\xf7\x33\x39\x0b\x5c\x8f\x9e\x8f\x0a\x37\x0b\x02\x44\x03\x41\xde\xe3\x8f\x39\x10\xb2\x77\x8e\x62\xd7\x35\xc7\xcc\x0a\x1e\x57\xb3\x15\x2b\xe9\x52\x89\x4b\x74\x40\xee\xbf\xa2\xdc\xd6\x3a\x0f\xc7\x1c\x99\xb7\xbf\xb5\x18\x82\x02\x3f\x1f\xa8\x27\x15\xa0\x8a\x26\x25\x60\x27\x05\x2d\x12\xfd\x4e\x4a\xa4\xcc\xf2\x16\x8d\x6e\xd9\x76\x56\x3e\x9f\x14\xae\x57\xf2\x4e\xcd\x60\x20\x35\x14\x43\xa3\xd6\xc7\x0e\x51\xdd\x63\x87\xec\x5c\xf9\x4c\x53\xf1\xd9\x97\x5b\x3c\x46\xd4\x1e\xed\xf0\x36\x66\x95\x3b\xdc\x0c\xdb\x9a\xfb\xe8\x88\x02\x84\xaf\x58\x3c\x8c\x40\x2d\xa1\xca\x5f\xe3\x77\xea\xee\xbf\x01\x6b\x7c\x82\x3d\xfd\x35\x14\x0b\x1e\x7e\x04\x9d\xc5\xb0\x3e\x67\x8f\x8f\xe8\xfa\x11\x6c\x16\xda\x4c\x2b\xc3\xc5\xfe\x14\x9b\x69\x33\x4f\x05\x3a\x05\xf0\xe2\xaa\x54\x2d\x17\x24\x0d\x3f\x42\x7f\xcb\xac\xd0\xa8\x08\xc2\x93\x8e\x11\x42\x72\xf0\x5e\xe1\xa8\x06\xb8\x6b\xfc\x1c\x65\x3e\x84\xac\x2f\x0a\xf0\xb1\x99\x96\x18\x83\x8e\x26\x8a\x87\x99\x58\x8a\x67\x52\xe8\x96\x4d\xb9\x1f\xc5\xe1\xc6\xaf\xe7\xb8\x58\x8a\x41\xa7\xfa\x22\x8e\xf0\xf9\x8d\x58\x98\xcb\xed\xd5\x2a\xe2\xe1\xab\xe1\x96\x66\x87\xba\xca\x21\x20\x58\xa8\xf9\xb6\x2a\x76\x96\x1f\x29\xba\xc2\x1f\xa9\xe6\x10\xf7\x13\xf9\xdd\x8b\xec\x33\x2e\xf3\xc2\x8e\x85\x13\x43\x1c\xe6\x10\x90\x88\x15\x0e\x85\x1f\x0f\x47\xc2\x0c\x72\xdb\xdf\x6c\x90\x8c\x1a\x6b\xee\x55\xef\xd8\x76\x9f\x31\xb2\xe6\xf1\x97\x56\xa7\xe9\x19\x29\x29\x42\xdd\x64\x7a\x75\x23\xef\xd5\xe8\x10\x0f\x2c\x4f\x64\xa1\xca\xfc\xc6\x76\x36\xb1\x58\xf8\x35\x06\x20\xdb\xa2\x93\x76\x96\x3b\x4a\x4b\x93\x77\x2e\x06\xfd\x2e\x4f\x1d\x82\x9c\xe9\x0c\x65\x8c\x54\x5c\x65\x66\x0c\xcf\x45\x0d\xc4\x20\x5d\xc1\x7a\x76\x8a\x85\xbd\xb7\x11\x34\x1a\x37\xcd\x82\xcd\xbb\x2b\x12\x8f\x91\xdb\x1c\x6a\x94\x5e\x93\x8b\xa2\x36\x85\x19\x22\xe3\x3e\x6e\x7e\x36\x5f\x79\x52\xba\x52\x5b\xbf\xa0\x70\xcd\xc8\xe4\x4e\xf6\x5e\x37\x7a\x27\x23\xa9\xbc\xca\x52\x02\xa4\xf4\x5e\x36\x1b\xd8\xd6\x39\xd3\xf5\x2b\x29\x0e\x58\x5f\x00\xeb\x91\x0c\xb9\x41\xd0\xf2\x72\xf9\xeb\x4c\xe9\x18\x3c\x3a\x2f\x1d\x13\x01\xc5\xaf\x15\x5d\x62\x65\xe2\x5a\x7e\x99\xc5\x99\x8d\xdd\xee\x64\xaf\x4a\x35\x2a\xa4\x44\x3d\xea\x2c\x5c\x98\xa5\x00\xec\xf7\x56\xc4\x1b\x18\x7c\xbd\x0b\x4e\xb0\x52\x01\x88\x9a\xc2\xa8\xbb\x28\xd1\x62\xac\xea\x33\x8c\x48\x30\xae\x90\x6b\x38\x13\xfc\x8b\xf3\x8b\xdb\xbf\xf1\xad\x5f\xe8\xb9\xad\x7b\xe5\x86\x0e\x67\x04\xdd\xa9\xe8\x63\x65\x07\xd3\x2e\x22\x10\x3e\xa1\x04\xdc\x56\xaa\x2b\x3b\x44\xe8\x81\x25\x76\xee\x84\xdc\xa5\x6a\x24\x30\xea\xd8\x66\xe8\xeb\x46\xc9\x36\xeb\x7d\xaf\xf0\x1d\x83\x31\xfe\xad\xea\xd7\xb1\xa3\x5f\x83\xbf\x18\xd3\x0d\x05\xa9\x26\xf7\xd2\xee\x20\x5a\xbd\x42\xaa\xeb\x05\xab\x1b\x42\x75\x1b\xe9\xea\xfc\xa9\x2c\x58\x20\xb1\xb6\xa0\xfd\x19\x4d\xcc\x52\xf9\x3d\xc6\x7d\x42\x4f\x02\xa8\x97\x74\x5c\xee\xa7\x91\xbb\xd0\x53\xac\xe3\x29\x70\x2e\x2d\x13\xee\x7f\xc3\x0f\x22\xdf\x3c\x73\x23\x31\x73\x66\xd5\x21\xf1\x0b\x6b\x68\x8f\x5b\xc6\x5b\x81\x23\x84\xdc\x4e\x1b\x34\x1f\x74\x8c\x04\x5f\xa3\x3f\x44\x5f\x23\xa1\x8d\xb7\x33\x3e\x48\x8c\x1f\x31\x31\x53\x13\xaa\xa1\xb4\x7f\x0d\xbd\x38\xf9\xf8\x3f\x3e\x85\x2d\xe1\xe5\xb2\xce\x4f\x07\xb2\xf3\x8c\x9f\x05\xd4\x58\xe1\x93\xf2\x8a\xfb\xee\xa0\x1c\xe4\x7c\xe6\x21\xbc\xa5\xc5\x93\x2c\x9f\x28\x83\xcd\xb3\xf3\x99\xf4\x56\xec\x54\x0f\x54\x91\x47\x33\x5a\xba\x2e\x8a\xa1\x41\x6e\xbf\x4f\x35\xc1\xaa\x89\x39\xb7\x13\xb4\x91\x0c\x32\x4c\x49\x05\x09\x45\x2b\xbd\xac\x97\x7d\xb0\x4d\x97\x5e\x46\x4b\xc6\x79\x5c\x0c\xdb\x0e\x29\x22\x11\x8c\xa2\x5d\xd1\x45\x5e\x46\xdc\x43\xdb\xb5\xab\xd1\x1d\x9b\x74\xb8\xb7\xec\x63\xdd\xe9\xc6\x8b\x98\xae\x1d\x87\x04\xa2\x67\x44\xd6\xf4\x28\x4b\x7c\x7c\x6d\xd5\x2b\xb7\xc1\x27\x13\x00\x60\xa5\xf6\x62\x6b\x91\xa1\x8d\x14\x49\x9a\x1a\x0d\xf7\x68\xbf\xe6\xe6\x3f\x45\x37\xd8\x16\x88\x07\x64\xf4\x10\x42\x44\x85\xa6\x56\x5f\x87\x8d\xcc\xff\xe7\xf0\x25\x8a\x10\xb5\xaf\xa1\xdf\xee\x78\x5d\xe3\xd7\xd3\x68\x3d\x6c\xa5\x21\x93\x5c\x6d\x84\xed\x5b\xd5\x73\x80\x5a\xf4\x6c\xf6\x9b\x39\xcc\xc4\x97\x12\x52\x66\xe7\xb2\xab\x21\x42\x4b\xe9\x71\xd9\x02\x95\x0b\xb7\xb4\x00\x40\x13\x76\x8d\xe9\xe1\x46\x96\xd3\xf3\x65\x39\x26\x5c\xb8\x44\xe7\xe8\x07\x6e\x8b\xc1\xf0\x36\xc7\x52\x51\xef\xfd\x2b\x6b\x7a\x1e\xfb\xb8\x15\x78\xbb\x24\xab\xef\x72\x40\x73\xc2\x68\x88\x4f\x2a\x26\xe7\xfb\x7f\x3b\x69\x7f\xe0\x97\xa3\xe4\x56\x4d\x6d\x37\x21\x91\xc6\x21\xe7\x48\xe0\x68\xd0\x0e\xe3\x3c\x43\xff\xe1\xf4\xe3\x3e\x2f\x02\xa9\x64\x31\x28\x33\xdc\x44\x8e\xeb\xe7\xfc\x10\x2b\x60\x30\x26\x97\x51\xfb\x8c\xa4\xf0\x95\x55\xba\xe6\x09\xac\x4a\xe8\xa4\xa6\x3d\x47\xd1\x0f\xa8\x14\x19\xe9\x63\x93\x4d\xa3\x16\x55\x66\xc8\x92\xb1\x0b\x49\xfd\x92\x65\xcf\xe8\x8a\xb2\xdc\x79\x7d\xd1\x18\xa0\x4d\x4a\xd1\x13\x57\xd4\x6d\xeb\x76\x50\x35\x0b\xf3\xef\x2c\x12\x07\xf8\x1a\xb7\x20\x08\xb1\x63\xcc\x51\xa2\x2b\x3b\x54\xbb\x61\x09\xa7\x34\x05\x67\xa6\xa5\x9b\xd9\xee\x78\x1b\x3c\x2a\xf8\x9a\x9c\xf9\xad\x02\xfd\xe8\x54\x9b\x1d\x9c\xe8\x72\x08\xff\xf3\x8c\x19\xc3\xe6\x3c\x37\xf5\xf9\xc5\xa0\x50\x31\x2f\xbe\x0f\xf7\xc4\x3f\x94\x9d\x54\x14\x59\x07\xfe\xe7\x19\xf1\x15\x10\x46\x55\xd3\x3a\x64\x8c\x88\x9c\x53\xd2\x0b\x11\xa7\xd1\x20\xe3\xf1\xe1\x70\x38\x3c\xd9\x6e\x9f\xb4\xed\xe3\x99\x5e\x67\x6c\x71\xec\xf6\xc8\x20\x81\xf5\x4f\xa3\x93\x21\xc3\x94\x49\x19\xf3\x63\x87\xd6\x25\xf9\x3c\x7d\x40\x95\xeb\x52\x79\x74\xa3\x4b\x23\x47\x3b\x29\xcd\x9e\x83\x33\xcf\xee\x3a\x95\x9c\xa8\x80\x88\x51\x70\x84\xbc\x2f\x23\x09\x2d\xcb\x1a\xc5\x1a\x7e\xb0\x81\xd1\xc0\x90\x39\x66\xbb\x4a\x8d\x19\x0d\x0a\xbd\x15\x78\x74\x48\x32\xc9\x28\x0d\x6b\x94\x8e\x66\x00\xe7\x65\xa3\x54\xfb\x7f\xa7\x7c\x34\x57\xfd\xdc\x32\xf8\x82\x84\x54\xed\xf5\x9d\x16\x67\xe2\x2f\xfa\x4e\xe3\xef\x05\x47\x87\xce\xa2\x41\x7b\x8b\xd9\xdf\x15\xf9\xa1\xaf\x90\x83\xc6\x69\x1b\xf6\x69\x15\xf4\xfc\x1d\x39\xcd\x0d\x5d\x2b\x3a\x7d\x47\x1c\x84\x6d\x06\x54\x9d\x1c\x38\xc4\xd7\xdf\x30\xde\x96\x5d\x2b\x74\x6a\x8e\x52\x89\xf6\xbc\xa8\x16\x54\x21\xaf\x71\x0c\x01\x58\xf3\x4b\xc7\xbc\xc9\xc9\x6a\xa5\x77\x1e\x39\x06\x02\xcf\xdf\x42\xc6\x04\x96\x44\x38\x9d\xe5\x90\x04\x4f\x11\x9b\x72\xac\xef\xf8\xa5\x28\xca\x0f\x56\x64\xa5\xd1\x08\xf4\x9c\x0c\x89\x40\x44\x50\x42\x2e\xed\xc0\xb6\x56\xac\xec\x4c\x04\x82\xfb\x81\x8f\xdc\x70\x4d\x37\x20\x2e\xa4\x3a\xd0\xde\x9d\x2b\xe0\xcb\x92\x13\x87\x97\xda\x41\x69\x83\xe5\x4e\x1c\x81\xe3\x4a\x87\x94\x9a\x2f\x45\x58\x3b\x50\xf4\x27\xe5\x8d\xfb\x43\xfe\x56\x05\x08\x1f\x6c\xf3\x50\xc6\x7a\xdd\xa8\xfa\xc7\xc0\x19\xe5\x3e\x59\x64\x36\xb1\x56\xcc\x8c\x83\x60\x1b\xc2\x0d\x04\xc6\x06\xf6\xbb\xea\x3d\xbe\x9a\x10\x67\x68\x7a\x1f\x8e\x0b\x09\x51\x8d\x22\xa2\x94\x57\xe2\x19\x0e\xc7\xd3\xec\xb2\x41\x0c\xb1\xbf\x42\xe4\x8e\x60\x29\xe8\xaa\xd9\x77\x90\x43\xda\x82\x26\xcb\xc5\xe7\x0c\xb3\xac\xec\x91\x1b\x16\x22\xb2\xef\x23\x60\x0b\xf2\x4c\xe2\xa0\xe0\xc7\x80\xc8\x68\x80\x57\xd2\x31\x20\x7c\x90\x98\x9c\x5b\x8e\x81\x0c\x26\xdc\x7a\x9d\x89\x0f\xe1\x77\x02\x9e\xb3\x6b\x9d\x64\xd6\x4b\x92\xac\x33\xff\x20\x72\x45\x4e\x32\x2e\xd0\x75\x84\xca\xac\x11\xc2\x24\xef\x06\xb7\xc1\xc7\x2f\xa3\x4e\x37\x84\x2a\x0d\x15\x7d\xc9\x0b\xe6\x08\x60\xe2\xc9\x55\x78\xab\x2f\x98\x21\x91\xf6\xcf\xe9\x16\xc3\x27\xe0\x7d\x21\x30\xb0\x8f\x42\x3e\xea\x33\xd0\x4f\x9f\xd8\xaa\xd3\x82\x6d\xe4\x20\x60\x06\x9f\x3f\x0c\xf6\x23\xa9\x15\x23\xdb\xb2\x71\xc6\xc8\xb8\xb4\x1e\x4c\xb4\xbe\x4d\x86\xa6\xd3\xf6\x66\xef\x8d\xd1\xdd\x0f\xfa\x53\x6b\x1f\xdf\x13\xb3\x86\x3d\x09\x26\x4d\x19\xd7\x98\x88\xfd\x8b\xb2\x9a\x20\xd5\x65\x6c\xf0\x83\xa1\xf1\xbe\x4b\x35\xed\x7a\xeb\xf1\x16\x2d\x37\xd7\xbd\x0a\x89\x33\xab\x67\x5a\x20\xfa\x00\x51\x4e\xb6\x7a\xf0\xfd\x2f\xdb\x37\xb4\x58\xf0\x79\x5a\xd9\x34\xba\x55\xc6\xcb\x2e\xc9\x97\x18\x39\x73\xa3\xbd\xc2\xe0\x57\xd9\xfc\x61\xc4\xf3\x6c\x0b\x50\x40\x43\x99\x9b\xf7\x62\x38\xc3\x60\xba\xba\x58\x2c\xc6\xcb\xbc\xe6\xf6\xd2\x46\x66\xce\xfc\x2a\xa6\x3d\x00\x3e\x72\x6d\xa2\xca\x05\xe7\x8b\x40\x3d\x70\x87\x10\xd6\xf8\xb4\xcb\x62\x32\x5a\x23\x3b\xc1\x30\x52\x38\x69\xcb\xd1\x66\x98\x29\x12\xb9\x0c\x8e\x92\x90\xc6\x94\x75\x7b\xbb\x5e\xdd\xe3\x0e\x84\x11\x0f\xe3\x3a\xd3\x8c\xa0\x6f\x1f\x49\x75\xe1\xf1\xc4\x42\xc6\xd2\xc6\x79\x20\x44\x64\xd9\x13\x66\xf0\xeb\x70\xc6\xd8\x00\x14\x97\x04\xfb\x49\x23\x96\x3f\x48\x5c\x62\x8e\xe6\xb7\x3c\x97\x41\x33\x13\xc3\x14\x2f\xb9\xcb\x14\x9c\x80\x03\xa3\x18\x6b\x9e\xc4\x25\x19\x66\x02\x19\x0b\x12\xdb\x4b\xa4\xf1\xa5\x95\xd2\x0c\x72\xd2\xa7\xb8\x1a\xeb\xb4\x10\x81\x6a\xc7\x45\xba\xdf\x58\xd4\x37\x20\x11\x2c\xeb\xf8\x3a\x6c\xb9\x09\x2a\xf3\xca\xb6\x67\xf7\x72\x6f\xb3\xed\x60\x57\xf9\x38\x4d\x06\x09\x9f\x30\x03\x56\x32\x95\x20\x6f\xad\xc3\x4e\xba\xf8\xc0\xfc\x48\xb5\xb1\x51\xcd\xdd\x83\xbd\x2e\x1e\x48\xfb\xbd\x9d\x25\xd3\xa9\x88\x8b\x0d\xa8\xf0\xf3\xa1\x62\x34\x06\x14\x0d\x9f\xf6\x17\x3d\xea\xcc\x01\xa9\xd9\x74\x79\xfb\x2f\xb4\x28\xd4\xc0\x2d\xc2\xcf\x09\xed\x0d\xa5\x27\xb4\xf7\x6a\x86\x02\xe4\x4b\xec\x6b\x29\xef\xc6\xda\x3b\x7a\x86\x70\x89\x3f\x53\xce\x5a\xfb\x90\x09\x07\xc5\xeb\x32\x77\x29\x9d\x6e\xea\x8c\xb5\xf9\x19\x12\x66\x18\x1c\x76\xe3\xca\x20\xd9\x95\x73\x0a\xea\x0e\xa6\xe1\xb7\xf8\x60\x5c\x0e\xa6\x11\xef\xec\x7e\x8a\x0a\xc0\xb4\xa9\x83\x16\x2f\xa1\x84\x9c\xf8\xe8\xe2\x97\xb5\x7c\xc4\x3b\x4b\x7e\x6a\x2b\x5b\x8a\x1c\x67\xf8\x7d\x78\x7b\xf3\x46\xcf\x1c\xc4\x59\x8f\xd8\x0c\x7c\xda\x23\x76\x08\x81\x13\xf1\xeb\xa2\x00\xcf\x45\xff\x1d\xdb\xb1\x46\xec\xb2\xbd\x07\x89\xb5\xcd\x9b\x72\xce\x69\x33\x8d\x01\x66\x75\x44\x12\x51\x08\xa3\x57\xcf\xb3\xfe\x39\x45\x1e\xba\x46\x76\x35\x8b\x69\x20\x73\x87\x77\xd5\x21\x29\x6b\x44\xd7\xd9\x7d\xcd\x21\xac\xf3\x2a\xce\x31\x0c\x64\x08\x4b\x1d\xdd\x1e\x10\x21\x06\x46\x2a\x5d\xf3\x77\xe4\x0c\x5f\x36\x43\x7d\x9e\x36\x23\xa4\x8d\xda\x51\x80\xf2\xdb\xea\xbf\x04\x50\xe4\xf1\x3f\x5c\x5f\x3e\x00\x1e\x9a\xfd\xe7\xe2\x89\xdd\x25\x0c\x3d\x51\x3e\x22\xe3\x1f\xae\x2f\xa9\xf5\x7e\xa3\x0e\xa5\xd1\x98\x97\xcb\x6c\x72\x48\x90\x1e\x8d\x37\x5d\x81\xa3\xf3\xb4\xea\x8f\x8c\x38\xc2\xd4\x0c\x33\x1a\xfa\x4e\xaf\x37\x7e\xaf\x30\x4a\xcc\x11\x5c\xc5\x7c\x94\x8d\x38\x32\x23\x7c\x19\xfc\xcd\x73\x32\xd7\xd0\x38\x39\x47\x5a\x17\x0b\x73\xce\x78\xa2\xd0\xf4\x50\xdc\x32\xce\xf9\x19\xcb\x8a\xfe\x77\x4f\x5a\x8e\x3a\x2a\xca\x8e\x37\x4e\xbc\x44\x98\x69\x79\x1a\x1a\xe7\x0f\x64\xf0\x3f\x8f\xe0\x9d\xdc\x62\xec\x4f\x80\xfa\xe9\x41\x1c\x8b\xf0\x66\xd0\x99\x78\x47\xbf\x1e\x06\xc7\xb7\x86\x52\x99\xf3\xec\xf3\xa1\xbe\xe6\x11\x5d\x42\x70\xc3\xdc\xae\x93\x44\xed\x7f\xc0\xd9\xf9\x4f\xf1\x0f\x58\x2a\xff\x14\xff\xd0\xa6\x55\x9f\xff\x19\xee\xc1\xe2\xd3\xd9\x40\xee\x4e\x27\xa1\x3f\x48\xf5\x0d\x83\x80\xc5\xf2\xd3\x7f\xe8\xba\xf1\x6e\x29\xa5\x26\x8e\x05\xb5\xf3\x61\x05\x83\xc0\xd7\xeb\xe5\x30\x12\x9b\xf9\x4a\x88\x22\x40\xe0\xa9\x8b\xbe\x44\xe2\x4c\xbc\xa1\xd0\x0f\xe1\x4a\x3b\xb0\x2b\x98\x3d\x2e\x4f\xdb\x88\x6f\x2c\xc2\x2d\x1b\x6d\xa0\x01\x8f\x12\xbc\xb2\x88\x97\x93\xc1\x20\x3b\x09\x93\x12\xdd\x17\x7e\x23\x83\xc5\x17\xf8\x25\xfe\x4f\x6b\x72\x71\x9b\xae\x66\xd0\x73\xcd\xdb\xda\xc1\x01\x11\xec\x54\x32\x69\x18\x2f\xbd\x0a\xdf\x6f\xd8\xb3\xde\x09\xdb\xeb\xb5\x86\x65\x85\x85\xb2\xb1\x34\x6a\xcf\xcf\xcb\x6c\xa4\x23\xbc\xf1\x99\x0c\x8a\xba\x4e\xd5\xc8\xf8\x76\xab\x2b\x2b\x28\x15\x21\x8b\x91\xf0\x11\x99\x5e\x0c\xd6\x9f\xa9\x06\xcc\xbd\xea\x7d\xbc\xed\xf4\xe2\xd6\x8a\x6b\xb5\x1e\x3a\xd9\xe7\x4e\xf7\xe3\x02\xe3\x55\x17\xf0\xb0\x0e\x13\x0f\x76\x98\x7b\xd1\x33\xae\x5c\x0b\x10\xdc\xef\xf9\x8a\x03\x04\x90\x9e\x82\xdf\x8e\x6b\x21\x65\x92\x43\x6d\xd2\x13\x7e\x2f\xa4\x8c\xf6\x53\x54\x9c\x8d\x06\xb7\x01\xaf\x7e\xe7\x5a\x41\x06\x60\xb1\x0d\x14\xf4\x67\xa6\x05\xc9\x98\x2d\x84\xfd\xe1\x6b\xe1\x91\x3a\x87\xa0\x29\xae\xd8\x28\x10\x43\x52\xab\x13\x54\x78\x89\x93\x9a\x84\xa6\xa6\x65\xf0\xf9\x7c\xb7\xd3\xb3\x26\x67\x40\x7f\xe8\xe7\xfb\xf0\x30\xca\x14\x2c\x6a\x3f\xd2\x6b\x28\xe5\xa0\x64\xc2\x0f\xee\x77\x9e\xa4\xf2\x25\x1e\xde\x62\xcd\x26\x7b\x97\x14\xf5\x53\x18\xe7\xcc\xcd\x34\x6f\x34\x4d\xb3\xb1\xa5\xf4\x2a\x5b\xc3\xe8\xd7\xa4\x4d\xab\xef\x75\x3b\xc8\x8e\x1f\x73\x3a\x8e\xf7\x0f\x25\xde\xc6\x1a\x54\x7b\x1c\xc5\x3d\xea\x10\x12\x30\x0c\xef\xfa\xb8\x67\x1b\xf0\x55\x7a\xa7\x69\xb6\x47\x40\x5b\xa3\x55\x17\xef\x24\x0a\x15\x9a\x5e\x5c\xc9\x15\xf2\xa4\x6d\xc7\xf5\x41\x01\xa7\xc3\x2a\xfd\x69\xc2\xca\xb1\x19\xd6\x2f\x3d\xe0\x44\x1e\xe7\x85\xf4\x72\x16\x2c\x4c\xe8\xfb\xe0\xc1\xa4\xb0\x10\xf2\x55\xad\xf4\x32\x5d\x79\x1a\xcb\x71\xa3\x96\xb2\xb9\x9b\x55\xa6\xce\xe2\x9f\xd9\x5f\xb9\xbe\x16\x06\x2e\x48\xdc\xe8\x61\x06\x15\xc3\x69\x71\x32\xe5\x50\x27\xb7\x0a\xd7\x39\x69\x0a\x0d\x4e\x9e\x53\xd8\x95\xf1\xb3\x0b\x99\x5a\xaf\x74\xc8\xc4\xa6\xcd\xd1\xa3\x23\x03\x15\x3a\x50\xbc\x99\xf4\x7b\x46\xeb\xf8\x40\x25\x42\xf4\xc5\x60\x62\xc7\xf1\xfd\xe1\x28\x61\xcb\x42\x7e\x85\xde\x00\x9d\x3c\x90\x85\xd1\xd4\xd5\xeb\x94\x23\xe8\x40\x2e\x88\x7e\x30\xdc\xa7\xcc\x26\x9e\x46\x4b\x5f\x7e\x19\x2f\x33\xbd\xa4\x3d\x74\xbc\x85\x78\xd2\x51\xb7\xcf\x43\xc4\xaa\xc0\xb1\xe1\x85\x0f\x30\x05\x3b\x65\x5a\x34\x84\xa5\x28\x99\x53\x2d\xd2\xc3\xeb\xe3\x0b\xd7\x4e\xc7\x84\xb8\x79\x64\x41\xb8\xfe\xc2\x0b\x1f\xd3\x3d\x1f\x8e\xf1\x77\x6a\xcf\x26\xa7\x49\x88\x95\x77\xc8\x34\x07\x6a\x8c\x71\x20\x03\x99\x9d\x41\x35\x7b\x0e\xa4\x27\xad\x62\xd3\x42\x81\xfe\x78\xf3\xca\x30\x74\x73\xe1\xe7\x32\xd1\xb2\xad\x47\x66\xb5\xe7\x6d\x8b\xfd\x29\xcc\x6b\x8f\x16\x18\x05\x69\x2d\x70\x95\x81\xe0\xa7\xeb\x65\x54\x71\x88\x06\x3f\xbd\x83\xb0\x7d\x6e\x45\x9a\x37\x6c\xa6\x4b\xb3\xc5\x0a\xcb\x1b\x3c\xc8\x70\x3d\x26\x77\x52\xb6\xaf\xcb\x6f\x62\xf2\x10\x87\xe5\xa1\x38\x5a\xb3\x0f\x44\x8f\x0f\x8d\xa2\x4b\xd9\x63\x23\x77\x31\x3b\x6a\x1c\xe1\x32\xd7\x57\x24\x1d\xd7\xc8\x11\x2b\x53\x77\x15\x6a\x69\x7c\x3b\x32\x85\x7b\x02\xfe\x73\x39\x19\xf8\xe2\x29\xc9\x32\xe2\x13\x6b\x42\x29\x92\x3f\xb2\x8f\x79\xd9\x45\xb9\x2e\xf6\xa4\x5b\xe2\x35\xc4\x9a\xa6\x91\x0a\x2a\x5e\xeb\xb2\x1e\x0a\xad\x99\xb6\x43\xb3\xa1\x6b\x5c\x54\x37\x61\x78\x25\x71\xf5\xfe\xe6\x56\x90\xa2\xd9\xf7\x7a\xbd\x86\x63\x57\xfc\x65\xa3\x0c\xd0\x34\xbc\x0a\x22\xba\x66\x9b\x66\x20\xa5\xe4\x2b\xbb\x76\xa7\x62\xaf\x42\x64\x58\xd3\xf2\x21\x94\xbf\xcd\x12\x34\x2d\x64\xe1\x28\x36\xd6\xd1\x83\x13\x6e\xa7\x1a\xbd\x3a\x2c\xc4\xa5\x92\xbd\x11\x5b\x90\x20\x02\xc9\x7c\xd0\xe9\x37\xf6\x04\x03\xf6\x3c\x7b\x2a\x73\x8d\x3c\x0f\x49\xbe\x7c\xf9\x78\x9a\x0c\xcf\x18\x74\x2e\x14\x6b\x18\xe1\x87\x2e\xfa\xf1\x85\x2f\x3a\x90\x35\xc6\x4b\x0e\x06\xa2\x5f\xb1\x4c\x27\x6d\x48\x6b\x94\xdb\xfb\xd5\x84\x97\x51\x2d\x3c\x29\xe8\xb9\x2d\x67\xe2\x56\x39\x8c\x6f\x89\xdf\x5f\x00\x0f\x43\x70\x43\x0f\xd0\xa3\x57\x0c\x2a\x61\x69\x59\x44\xac\x30\xa5\xca\xf1\xc5\x7f\x18\x23\x37\x55\x8c\xcd\xd6\x91\x05\x54\x06\x1c\xfb\x71\x3f\x69\xed\x93\x85\x22\x55\xf7\xf7\x41\x0d\x6a\x21\xde\x78\xb1\x95\x07\x7c\x2c\x15\x0d\x09\x9d\x6a\xac\x69\x5d\xb0\x6f\xd3\x1e\xbd\xa2\x9d\x18\x76\xc1\x4b\x7d\x32\x25\xd3\xb6\xf5\x2a\x1b\xab\xeb\xf8\xf1\x10\x60\xd6\x83\xd7\xd0\x72\x2f\xdd\xdd\xc8\x10\x05\xe4\xbf\x6f\xec\x45\x0a\x9e\x1b\x4b\xf0\x23\x0f\xda\x3c\xd8\xfe\xfc\x9a\x47\x39\x3f\x07\xe2\x76\x96\x22\x31\x5e\xf3\xcf\x29\x10\x59\x01\x61\x9f\xe8\xd7\x14\x64\xc7\x6f\x6b\xc7\x57\xb6\xa7\x20\x4b\xdb\xc2\x38\xfe\x6c\xdb\xc3\x54\xe1\x1d\x56\x57\xd4\x7a\x23\x2d\xda\xd9\x3d\x5e\xf7\x2e\x0f\x98\xa1\xbd\x53\xdd\x8a\xde\x61\x00\xa9\x55\x85\xe0\x3b\x78\x35\x90\xae\x5a\x89\x04\xf0\x3c\xe3\xc5\x08\x3a\x87\xe6\x06\xb9\xf4\x86\x5a\xf1\x20\xd4\xb8\x4d\x14\x9a\x87\xdb\xf5\x86\x24\x0e\x5c\x8d\xa8\xe9\xa6\x98\x48\xa7\x20\xb1\xef\xb2\xf0\x05\x41\x17\xb6\xeb\x95\x43\xd7\x2b\xa4\x61\xf8\x2a\x6b\x00\x21\x91\x8d\xa2\x63\x64\x61\x45\x13\xa3\xae\x1d\xd6\x33\xd3\x22\x0e\x03\x8b\x2b\x0b\x03\xc0\x4e\x20\x92\xeb\x15\x02\x85\x97\x62\xc6\x2c\x18\x83\x27\x35\xfa\xeb\x82\xfc\x65\x07\x48\x9c\x18\xbb\x66\xbe\xd1\x11\x01\x20\xc5\x14\x1c\x0c\x41\x0f\x95\xd9\x3d\xc3\x58\x7d\xb8\xbe\xcc\x89\xf9\xa9\x90\x70\xbc\x93\x9e\xa3\x55\x1e\x9f\xfe\xea\xd5\x5a\xf6\x6d\x88\x05\xc4\x07\xcc\x46\x7a\x3a\x48\xfa\xfc\x25\x33\x8c\xd0\xc7\xb8\x28\x8c\xc3\x9d\x36\x18\xc4\x16\x25\x13\xd6\x1c\x82\x90\x98\xac\x90\xe0\x50\x19\x76\x70\xce\xd0\xa1\x15\x2a\xc2\xbe\x7f\xff\x1f\x37\xef\xdf\x9d\x8a\xcf\x4f\xf6\xfb\xfd\x13\x28\xfe\x64\xe8\x3b\x65\xa0\x2f\xed\xa9\xf8\x5f\x6f\x2f\x4f\x85\xf2\xcd\x0f\x0b\xf1\x96\x8e\x9f\x44\xd5\xd9\xdc\x18\x3d\x17\xd0\x76\x77\xe8\xff\x85\x63\x89\xb7\x0e\x6b\x65\xf3\x47\xea\x73\x26\x12\xa6\x31\xf8\xb5\x86\xf7\xdd\xd1\xbf\x35\x63\x48\xf8\x39\x8d\x1b\xfc\x31\xce\x48\xf4\x1b\xc1\xc2\x42\xc5\x77\xb6\xa4\x13\x37\xaf\xcf\xff\xf0\xef\xff\x53\xbc\x7e\x7b\x7e\x21\x36\xea\xb3\x68\xf5\x5a\xd1\x1d\x64\xd8\xda\xf7\x3a\x4c\xfa\xff\x7a\x02\xab\xe1\xc9\x8d\x5e\x1b\xe9\x87\x5e\x85\x05\x40\x74\x22\xe7\x91\x3a\xd9\xdc\xcd\x3d\xd9\x38\x06\xd1\x8d\x35\x3c\x00\x6f\x1a\x6b\xca\xde\x13\x48\xf0\xc1\xba\x40\xef\xab\xa4\xa1\x86\x35\x13\x19\x99\x8d\x32\x40\xe8\x87\xae\x2d\xcf\xe8\xa5\x0a\x4b\x40\xb5\x7f\x1a\x17\xc6\x40\x7b\xf8\xb4\xc3\x99\xf8\x0f\x0c\xb1\xb4\x09\x26\x4e\x90\x15\x7a\x87\xc0\x8b\x71\x61\xd8\x0d\x75\x26\xd9\x9d\x89\x37\xc2\x80\xec\x10\xa4\xca\x94\x17\x25\xcb\x09\x12\x56\xf2\x9d\x89\x4b\xe5\xc5\x36\x2a\xfd\x70\x95\x13\xba\x69\x91\xd2\x04\x76\x3e\x3b\x8c\xcb\xcf\x79\xf8\xbd\x60\x1e\x3a\x1d\xc3\xd2\xc3\x6c\x36\x7b\x1e\x23\xb3\x1f\xe3\x22\x79\xbc\xc5\x99\xac\x14\xe9\x36\x45\x31\xc4\xc8\x92\x73\x13\xc4\xe1\x0f\x67\xe7\x2e\x3b\x3b\xc2\xb5\x70\xae\x39\x18\x97\x19\x87\x17\x9c\xcd\x8e\x84\x1f\x35\xe7\xe4\x9c\x79\x4a\x2e\xa7\xed\xa9\x08\xee\x9a\xa7\x6c\xb7\x77\x1a\xe2\x3b\xb4\xa7\x62\x30\xe9\x37\xb9\xca\xb1\x04\x1b\x3e\xd1\x6e\x18\x3e\xa3\x59\x67\x7b\x4a\x6f\x30\xa7\x84\xc9\x7c\x8f\xec\x36\x0a\x3b\xfc\x07\x40\xa3\x29\x4b\x6e\x05\xf0\xff\x7f\x6f\xf2\xae\x60\xdf\xdc\xc1\x34\x9b\xde\x1a\xfd\xdb\x4c\xdf\xe8\x1a\x25\x39\xdb\xd2\x98\x07\x97\xdb\x87\x80\xcb\x59\x0a\x18\x78\x81\xa7\xee\xc4\x07\xae\xa7\x75\x73\xcc\xc7\x14\xf2\xf1\x08\x40\x5a\xac\xc1\x06\x6e\xd9\x69\x34\x49\x41\xef\xc0\xd9\xbb\x62\x42\x90\xdd\xa0\x67\x17\xf1\x07\xd3\x3c\x00\x18\x6a\x63\xe8\xe0\x2a\x40\x46\x30\xa7\x29\x00\x74\x34\xf5\x4e\x3d\x24\x4b\xa0\x61\xe7\x7c\xaf\xe4\x36\x97\x0a\x29\x66\x63\x08\xde\x38\xce\x48\x3e\x2a\x2f\x1e\x38\x9c\x49\xb3\x1c\x69\x69\x3a\x4d\xc3\x79\xc2\x0c\x2a\x49\xa8\xf4\xac\x43\xc1\x56\x20\x4f\x51\xea\x29\xe6\xb9\xfc\xa9\x4d\x5c\x12\x69\x99\x69\x99\x88\x6d\x0c\x38\xaa\x63\x22\x2d\xf1\x0a\x9e\x2a\x41\x52\x0d\xc7\x04\x43\x8a\x66\x10\x04\x96\xf0\x42\x38\x3e\x0c\xf7\x22\xa6\x95\x62\x76\x38\xb5\x91\x21\x2b\x8f\x6c\x0c\xa7\x84\xa7\x5b\xce\x6a\x81\xc0\x5e\xfa\x43\x03\x08\xbf\x89\xe6\x55\x88\xdb\x3b\x79\xcb\xf1\x30\x1a\xea\x56\xbb\xc6\xf6\xed\xc3\xb8\x5f\x10\xd0\xef\xc1\x6e\xd6\x5e\x76\x5f\x68\xfa\x0b\x86\xfa\x36\xfc\x34\x26\xe1\x69\x15\x7a\x02\x66\x94\xd9\xda\xad\x44\xa3\xdb\x17\xf8\x63\xc2\x2d\x6c\xa4\x31\xe4\x60\x40\xbf\xf2\xb9\xde\x75\xf6\x10\x1e\xeb\x7c\x81\x5f\xe1\x19\xf2\x29\x48\xf6\xb4\xe5\xf2\xf9\x05\x3d\x30\xf9\xca\xfa\x66\x23\xbf\x7b\xf6\x74\xf9\x1c\x04\x03\xbe\x98\xe8\xac\xbd\x0b\xbe\x45\xb2\xc5\x7d\x13\x5f\x6b\xd9\xc5\x27\x20\x93\x65\x8c\x6c\x5b\x32\x67\xd2\x86\x86\x62\xf4\x2e\x5e\x7a\xd7\x88\x5a\x35\x62\x1b\x71\x0e\x62\x3b\x79\xec\x53\x6f\xe6\x3a\x93\xb4\x18\x08\x85\x23\xb0\xa1\xc7\x46\x64\xfb\x04\x39\x20\x56\x27\x8b\xdb\x8d\x3a\xc4\xc8\xd5\xf8\x2c\x1b\x5e\x25\x97\x0f\xd0\x60\xf3\xc2\xbb\x9c\xf9\x5d\xa8\xad\xcb\x41\x0e\x0f\x89\x60\x2c\x20\x52\x5f\x99\x83\x68\x53\x33\x72\x7d\x6e\xe1\xb6\x33\xd7\x8b\xe9\x43\x98\x11\x6a\xfc\x60\x67\xea\xe9\xd1\x07\x3b\xf3\xa2\xf9\xab\x9d\x59\x51\x14\x59\xe2\x20\xcc\xda\xa9\x17\xd3\x32\x7d\x93\x33\x75\xf5\x2b\x9e\xe5\x9c\x9f\xb9\xb1\xce\xea\x8b\x53\xfd\x90\x9b\x4a\x9b\x77\xee\x2b\x1e\xe8\x1c\xc7\xa5\xfb\x0a\xf5\xd5\x5c\x5b\x72\x33\xe6\xd8\x80\x2f\x39\xad\xb4\x7a\xb5\x5a\x50\x48\xe3\xda\xd9\xa1\x47\xb3\x82\x9f\xf1\x5b\xdc\xe0\x37\x81\x70\x40\xc7\x33\x8e\xec\x48\x89\xd1\x47\x92\x9d\x22\x31\x11\xbd\x63\x51\x13\x7b\x2f\x75\x17\x1f\xb3\x5c\xad\xc8\x53\xf6\x9d\xc5\xe7\xcc\x29\x67\x41\x45\xdc\xc6\xee\x6b\xf8\x85\xaf\x6b\xa2\x09\xe1\xc6\xee\xa9\xd0\x0d\xa4\x64\x60\x6e\xd7\x69\x5f\x73\x34\xe5\x1b\xf8\xc0\x78\xd0\x19\xc4\x60\x30\xf6\x63\x80\xf9\x40\x9f\x39\x14\xa0\x8c\xb1\x31\xc2\x85\xd4\x49\x1b\x03\x16\xa2\xd6\x23\x5d\x55\xe1\x0a\x0d\x70\x27\x2d\xd2\x1f\x54\x6b\x24\x90\xfc\xd9\x9c\x93\x36\x2a\xcc\x13\x04\x0f\x34\x12\xd5\x9f\xdf\xbc\xa3\x4f\x8c\x65\xcc\xc1\xac\x30\xa8\xf5\x4b\xdd\xf1\x78\xf3\x5b\xfe\x3b\x0c\x98\xa8\xda\x10\xc8\x11\xf2\x44\x96\x9c\x79\x3e\xe6\x61\xad\x09\x87\xb7\xb6\xde\x4a\x73\x88\x9e\xd7\x37\x76\xab\x58\xa5\xb3\x57\x4c\x7e\x30\xf4\x75\x72\x13\xb5\x56\x40\x11\x86\x0a\x03\x12\xd4\xc3\x80\xb6\x0a\x91\xbc\x17\x73\x11\xbd\x43\x1e\x85\x67\x0f\xdc\x1f\xec\xd2\xc0\x01\x06\x88\xb6\x97\x2b\xf4\xda\x83\xff\x31\x75\xd7\xab\x54\xec\xaa\x57\x4f\xc6\xc5\xd8\xbb\x0e\xfe\xc5\x34\xb9\x21\xcf\x8e\x34\x03\x69\x66\x02\x77\xe7\xad\x38\x71\x1c\xef\x92\x37\x5c\x89\x98\x56\x7f\xcd\x6f\x4b\xd2\xda\xc7\x57\x01\x8b\x3e\xe5\x6e\x7b\x57\xc4\xa5\x8a\x38\x0e\x68\xc6\x42\x2f\xab\xed\x7a\xdb\x0e\x8d\x5f\x14\xed\x2e\x4a\x13\x23\xa8\xc2\xaa\x13\x9d\x5d\xa3\xee\x03\x03\x14\x93\x71\xef\x60\x5a\xd5\x3b\x4f\x76\xfc\x32\xa3\xae\x7a\xbb\xeb\xe9\xc6\x24\xa0\xf7\x72\x1d\x5f\x7e\x93\x6b\x8a\xb2\x92\xf2\xf0\x02\x00\x72\xe0\x47\x51\x26\x1e\xc0\xc1\xe4\x3f\x8b\x72\xea\xe5\x1a\xb9\xfb\x26\x8f\xab\x0f\x12\xa9\x35\x81\x43\xcf\x1a\x50\x9c\x2c\x21\x75\x7a\x9a\x84\x9c\xd2\x63\x27\x9b\x7e\xde\xb6\x1c\xd8\x3b\xe6\x74\x56\xb6\xa4\x02\xb8\xa4\x5f\x8b\xc5\x62\x66\xd5\x4c\x5f\xfe\xde\xf5\xea\xc9\x78\xae\x33\xf8\x38\x00\x7f\x51\x8f\xbb\x4e\xec\xac\x36\x5e\x90\x07\x9a\xf4\xc5\x4a\x09\x17\x46\x3c\xb5\xda\x9a\x27\x78\x4c\xa5\x66\x8c\xfd\x2e\x63\x75\xbc\x50\xd2\x92\x19\xaf\x6a\xf4\x68\x0b\x3b\x02\x5d\xda\xca\x6d\x81\xab\x27\x6d\x0c\xf4\x2d\x9d\x6c\x28\x62\xb3\x13\x54\x69\x1e\x30\x03\x4c\x47\x5e\x10\xba\xe2\x05\xe3\x18\x66\xfe\x94\x0b\xf5\x8c\x7d\xd8\x1a\xdb\x93\xde\x3b\xde\xb6\x7b\xb9\x7e\xf0\x75\xb4\x51\x6d\xf9\xc5\x35\x55\xf1\x85\x43\x6c\xbc\x07\x4a\x8f\xb8\x0c\x0f\xb3\x1a\x40\x29\x79\x8f\x4c\x58\x8d\x09\x2e\xf6\x20\xce\xf6\x55\xf1\x68\x6d\x2a\x11\x42\xd2\xe0\x01\x1c\x7e\x57\xd5\x47\xdb\xaf\x3f\x55\x78\x3b\x89\xe1\xc7\x63\xf8\xd1\xfc\x2a\x12\xd5\xcd\x00\x03\x3d\x7a\x08\xf0\xe5\xd0\x75\x09\xba\x7c\x9c\xec\x15\x6c\xd3\xd2\xb8\x07\x00\x48\xd9\x8f\x6f\x91\xb1\x03\x07\x3f\x47\xb6\x08\x4f\x69\xd8\x7e\x9d\x5c\x36\xf3\xea\xe8\xf5\xa9\xe4\x08\xc8\xaf\x05\x54\xec\x58\x71\x26\xae\xf0\x47\xa5\xcd\xbd\xf6\xc0\x3f\x6c\x15\x59\x07\xbe\xc1\x04\x3c\x6f\xac\x51\x55\xe1\x7a\x50\x61\x90\xf3\x3a\xb8\x1d\x9c\x05\x07\x04\x4e\x2f\xde\x1b\x3b\x2b\xde\x6f\xc9\x9f\xfe\x00\x94\xa5\x9f\x29\x20\xc7\x51\x99\xf1\x40\x07\xe8\x48\x1e\xa1\x24\x0e\x21\xa6\x3e\x04\x5d\xbc\xf5\x05\xd4\x61\x08\xf1\x2a\x11\x17\xda\x4a\x1a\x12\xb8\x70\x51\x01\x66\x6d\x8a\x40\x5a\x6e\x91\xaa\xc9\x68\xcd\x86\xdc\xd3\x53\x31\x60\x0e\xd1\x7a\xff\x4f\x04\x5f\xbc\x77\xc3\xea\x57\x49\x6f\xf5\x51\x32\x3f\xc4\x9a\xeb\x63\x11\x11\x48\x02\x7f\xaa\xe6\x9f\x50\x7a\x3f\x5e\x1b\xbf\xe3\x11\xa5\x29\x8e\x07\x9f\x51\x42\x74\x69\x40\xb3\xc6\xe0\x3c\x1c\x69\x44\x64\x74\xbf\xd5\xc3\x34\xee\x1f\x60\x98\xe2\x5e\xc9\x6f\xcb\xd8\x13\xe2\x2f\xf4\x2b\x65\x75\xb6\x09\x6e\xa9\x97\xfc\xf3\xa8\x6d\xcd\x43\x0e\x12\x25\x68\x46\xcc\x8a\x81\x8b\x98\xbe\xd6\x10\x87\xfd\x2e\x6c\xbf\xfe\xd7\xdc\x2e\x8a\xf7\x34\x27\xad\x96\xf7\xd2\xcb\xfe\x58\xa3\x29\x37\xb4\xfd\xab\x9b\x3e\x36\x57\x2b\x28\xcc\x58\x49\x34\x79\xe1\x12\x3b\xf8\x60\x91\xf2\xbd\xcb\xbc\xc1\xf1\xbe\x30\x33\x17\x63\x5b\x13\x7a\xe9\x92\x6c\x1e\xbe\xfc\xdc\xe5\x11\x83\xa3\x87\xde\xbd\x1c\xb7\x12\x28\x53\x8c\x4a\x99\x37\xf2\xc1\x12\x39\x37\x63\x47\xc6\x2b\xbf\xff\x2d\xcc\x79\x43\x95\xf3\xb6\x0d\xda\x42\x7e\xfa\x2e\x8c\x5f\xd2\x48\xae\xb2\x58\xee\xe3\x87\x5c\xd3\xc8\x21\xdf\xca\xde\x89\xc5\x7a\xab\x98\xd6\x2f\xf8\xff\x46\xef\xea\xe2\xfd\xcb\xb7\x31\x3d\x7b\x0a\xf3\xa7\x58\x8c\x35\x3d\xcc\x47\x35\xa3\xf4\x44\x5f\x31\xfa\x41\xf0\xf5\x88\x40\xf4\x8d\xbc\xe5\x6c\xce\xb8\x7c\x59\x07\xfd\xaf\x7b\xdb\xa9\xd8\x50\x71\x6d\x3b\x95\x9a\x57\xc6\x64\x2c\x0b\xc6\x32\x31\x9d\xd5\x02\xe1\x31\xc2\x98\x5e\x3e\x62\x1b\x52\xf9\x8c\xcd\x5f\xd8\x40\x7e\x9c\xb1\xa3\x78\xf3\xd3\x18\xda\x60\x28\x7b\x3e\x8d\xdf\xd9\x7d\x45\x47\xf1\x02\x83\x3e\x9e\x89\xff\xb0\xda\x70\x4a\x59\x29\xa5\x01\x67\x94\xde\x7e\xb9\x06\x19\x8b\x1e\x58\x9e\xe6\x8f\xde\xb8\xc3\x93\x28\xbe\x6e\xc7\xef\x3c\x23\x63\xcf\xa1\x45\x0d\x59\xf3\x94\xaf\xb3\x11\xd6\xd1\x93\x33\x14\x1b\xa2\xa8\x37\x87\xf8\x9a\x8a\xd1\xef\x7f\x5c\xdd\x69\x50\xa1\xa3\xde\x2d\xfa\x3b\xaa\x6d\x68\x07\xda\x75\xa7\x76\x60\xf8\x81\xb2\x1d\x39\xc4\xd7\xb4\x03\x6a\xc1\xb8\x72\xc1\xdf\xe1\x68\x7b\x64\xdb\x0a\x32\x45\xcf\x8d\xd0\xdc\xb8\x89\xe9\x95\xb5\xdb\xec\xfc\x47\x13\xde\x76\xc4\xcf\xb8\xc5\xdc\x91\x4a\x39\x64\x7b\x39\xc3\x72\x90\x39\xfd\xec\xcb\xe3\x5f\x26\x02\x18\x2f\x10\x4a\x46\xd0\xcc\x50\xbe\x78\xf5\x61\x7a\x2e\x51\xbb\x12\x8b\x88\xbc\x02\xd3\x06\xce\xfc\xf2\x91\x4c\x70\xe1\xd9\x23\xe2\x17\xf3\x43\x05\x19\xc6\x30\x93\x2d\x42\xd4\x71\xaf\xc2\x06\xcb\x6a\x9d\x22\x8b\xc4\x1c\xa1\x22\x11\x9f\xc2\x85\x1d\x9b\x73\x7b\xd9\x7d\x8e\xc2\x3b\xb4\xc2\x09\x37\x40\x6d\xe5\x61\xfc\x04\x35\xc6\x85\x28\x76\xcd\x03\x4f\xea\x4f\x9a\x92\xce\xf5\x57\xfa\x5e\x99\xb4\x60\x8e\x0a\x57\x8b\x7c\xab\x4f\x17\x48\x46\xae\x75\xce\x04\xaf\x7b\x8c\x74\x18\x66\x1e\x48\x47\xb6\x30\x10\xfd\x4f\xb1\xcf\x8d\x34\x63\xda\x80\x66\x8b\x4a\x6e\x1f\x3f\x44\x22\x7e\x77\x73\x90\xa4\x3c\xdc\x1e\x24\x19\x14\xd8\xd7\xb4\x39\x79\x78\xa8\x59\x44\x0f\x7e\x77\xb3\x90\xc2\x7c\x65\xb3\x4e\x43\x9b\x88\x8f\x01\x7a\x31\x47\x29\x1e\x6a\xed\x48\xd0\xc2\x65\x7c\x9d\x4b\x5b\x81\x6c\xa0\x25\x2e\x4a\x82\xb3\x96\xb8\x99\xe2\x7a\xb1\x18\xef\xa7\xcc\x94\x38\xdb\x53\x99\xaf\x42\x68\x0b\x1a\x0d\xb3\x4f\x17\x9f\x87\x09\x95\xb1\x06\xe5\x73\xba\x31\x8e\x7e\x5f\x19\x72\xbe\x25\xf2\xfd\x81\x79\x22\x7c\xdc\xab\x78\xb9\x33\x5e\x0d\xb1\x3a\x4b\xc7\xc0\x2a\xd5\x47\x9c\xb9\x4f\x55\x2b\xdd\x66\x69\x65\x8f\x37\x14\xe1\x77\x55\x38\xed\x57\xc5\xeb\xf8\x23\x5e\xce\x55\xa3\x41\x2d\xc6\x53\x0e\x7e\x03\xe2\x62\x94\x33\xce\x8b\x04\x47\x8f\xaa\xaf\x03\x33\xb9\x1e\x38\x2e\x0e\x3b\x1b\xa0\x03\xb9\xf3\x6a\x2b\xde\x51\x42\xb5\xb5\x46\x93\x5d\xf3\x5b\xfa\xa5\xcd\xba\x2a\x82\x3b\xbd\x84\x8f\x0a\xc3\xf9\x70\xca\xa5\x74\xbe\xf2\xd6\xe3\xf3\xac\xb7\xf0\xff\x27\x71\xd2\x56\xa9\xeb\xa8\x1d\xd7\xce\x23\x9b\x75\x13\x7e\xbb\x0c\x20\x99\xf5\x51\x6c\x3a\xfe\xc8\x51\x60\x3b\x6b\xb6\xa2\x8c\xed\xe6\x56\x22\xd6\xc1\xcd\x55\x19\x42\x36\xa1\x3d\x5c\x2b\xbd\x5c\x06\xf5\xcf\xb3\x25\x6a\x75\x97\xcf\x49\x35\x7a\x9a\x25\x14\x33\x92\x67\x14\xf7\x82\x29\xb9\x3c\x75\x53\x3a\x3d\x88\x5c\x24\x39\x2f\xcb\xba\x64\x33\xa9\x25\x5c\xe5\xe4\x69\xc1\xb3\x24\xa5\x04\x1f\x93\x02\xbb\x45\x5f\x7c\x16\x22\x8a\x2c\x72\xa4\x2a\x92\xc8\x80\x61\xd4\x13\x52\x3c\xe7\x69\x9d\x5d\x6b\x23\x48\x99\x5d\x76\x8f\x59\xfb\x12\x67\x08\x7d\x56\xa0\xc0\x20\xdb\x79\xca\x26\x58\xdb\x16\xa9\xb8\x41\xf3\x04\x36\xa3\x9d\x00\xa6\x68\xce\x6e\x31\xb7\x90\x82\xc4\x1e\x17\x13\x89\xed\x73\x90\x6e\xaf\xe9\x41\xda\x1b\xfc\x31\x0b\xd3\x0f\xa8\xd6\x1c\x4c\x96\xdb\x74\x4a\x9a\x7a\x30\x4b\x6d\xda\xda\xf2\xb3\xce\x17\x90\x28\x06\xb3\x44\x5b\xc3\xf7\xb8\x1f\xdd\x83\x85\xb2\x23\xf4\xbc\xeb\x04\x65\x85\x92\x99\x03\xd7\xfc\x59\x9a\x30\xf3\xa9\xcc\x96\xae\x32\x89\x92\x2e\x31\x29\x12\x43\xbb\xb2\x61\x49\xc8\xfe\x2a\x1c\xa3\x56\x26\x88\x88\xe6\xdb\x9b\x8a\x07\x00\x10\x7c\x7d\xaf\x46\x8d\x2c\x88\x5e\x00\xf9\x02\x86\x51\x13\x67\x51\x7c\x7b\x23\xf1\xe0\x35\x6b\x3a\x76\x8e\x34\xf2\x20\x7a\xd5\xd8\xbe\x65\x19\xb7\xb3\xce\xa3\x96\x9a\x1e\x00\x7d\x18\xe5\xb1\x56\x3f\x88\xf3\x1b\xba\xb1\xd6\xbe\x5e\x37\xa9\xf9\x56\xac\x65\xbf\x94\x6b\x72\xd8\xe1\x70\x4b\xd6\x94\x5a\xd1\xf9\xe2\x0f\x0d\x30\x36\xa8\x05\x46\x6b\x06\xfd\xb1\xb6\xf5\x0a\x6d\xa7\x64\xd7\xd5\xce\x6d\xd8\xf6\xe0\x5a\xd1\x3d\xce\xe3\x85\x73\x9b\xa7\x92\x5f\x48\x57\x78\x4b\xef\x1e\xd3\x1b\x3c\xdf\x37\x12\x3d\xda\x7f\xc2\xa0\x42\x48\xda\xb1\x74\x60\x82\x61\xb4\x7e\x78\xb0\xa2\x51\x5f\x32\xba\x9e\x8d\x6d\x8f\x4d\xf1\xea\xab\x7a\x10\xe2\xc0\x5c\x63\x12\xdf\x11\x35\x0a\x8d\xce\x99\x8a\x21\xe3\x67\x9d\x0f\x19\x6c\xf8\x6e\x57\x93\x35\xff\x40\x15\x0f\xcc\xc2\xe3\x6f\xa9\x35\xef\x26\xbf\xe6\x7f\xbc\x97\xda\x68\x3f\xd9\x0a\xd7\x98\xac\x65\xa7\x7f\xfb\x9d\x1b\x62\x0e\xf1\xbf\xba\x21\xfa\xac\x55\xe3\x2e\xe5\x0c\x02\x06\x72\xab\x87\x9d\xd7\x78\x50\xdc\xd0\x13\xf1\x1f\xf0\x3b\x27\xd8\x43\xdf\x03\x93\xb8\xb6\xbd\x1d\xbc\xa6\x37\xc9\x28\x4d\xbc\x0a\x69\x6e\xa6\x00\x5e\x8a\x1c\xea\x81\x03\x52\x86\x32\x6f\x31\x59\x7c\xc0\x47\xe5\x52\x29\xe4\x9f\x42\x19\xd9\xa1\xea\x98\x74\xda\xc8\x58\x71\xa9\xf3\x90\x91\x95\xe4\x32\x76\xe9\x25\x47\x19\x64\xe0\xf7\x9c\x92\xc1\xe2\x55\xa4\xea\xeb\xce\xda\xbb\x61\x57\x43\x57\x31\x4e\x12\x25\x8b\x4b\x4c\x16\xb7\x90\x3c\xad\x21\xb4\x2a\x16\x1b\x35\xea\x58\xb9\x55\xaf\x26\x65\x5e\xf6\x6a\x0a\x1f\x46\x6e\xa3\xe4\x6e\x32\x6e\xaf\x95\xdc\x4d\x46\x0d\x21\xa7\x03\x80\xb0\xc7\x47\x21\x2f\xa5\x5b\x94\xb8\xf3\x12\x6f\xda\xee\x58\x1d\x1a\x0d\x95\xc6\xf0\x06\xf8\xf8\x23\x25\x98\x9f\x1a\xb7\x8a\xaf\x0f\x27\xad\xb2\xcb\xbf\xa9\xc6\xbb\x00\xfd\x9e\x3e\x33\xa8\xa5\xb5\xde\xf9\x5e\xee\x80\x15\x46\x5b\x7d\x1a\xa6\x9f\x43\x3a\xb0\xc2\xcd\xdd\x64\xa4\x08\x7a\x3a\x54\x04\x7d\x7c\xac\xb6\x6e\x27\x4d\xed\x7c\x3f\x34\x7e\xe8\x95\x8b\x15\xbe\xbd\xd9\x49\x23\x6e\x62\xc6\xa4\xc6\x49\xc9\x7c\x85\x8e\x0b\xcf\xd5\xdc\xc8\x66\xa3\x66\xab\xbe\x80\x9c\x07\xeb\x9e\x94\xcd\x2b\x9f\x14\x9f\xdb\x29\xbd\x5d\xe9\x0e\x88\xd2\x72\x68\xee\x94\xaf\x37\xd2\x6d\x6a\x8f\xaf\x64\x66\xb8\xae\x02\x98\xf8\x19\xc1\xc4\x6b\xe9\x36\xe2\x16\xd5\x73\x33\x58\xd7\x4d\xbd\x55\x5e\xa2\x3d\x53\x86\xe5\xd5\x85\x78\xcb\xc9\x73\xa5\x50\x6d\x57\xb3\x04\xc4\xbb\x10\x98\xd2\x0c\xc3\x7b\xd4\xec\xb1\x50\x74\x1e\x41\xe6\xb0\x19\xf5\x99\x8f\xf4\xe6\xd0\xf0\x83\xea\x9f\x3d\xb4\xe1\x9a\x52\x32\x58\x14\xf3\xd6\x4d\x1d\x68\x24\x9a\xba\x60\xec\xd6\x57\x17\xb8\x7d\x27\x14\x2c\x01\x13\xe1\x7a\x75\x21\xae\xe4\xe0\x66\x01\x77\x92\x36\xd3\x51\xc8\x50\x7d\x00\x0c\x35\x8f\xe1\xb8\x52\x47\x43\x49\x64\x85\x64\xec\x05\xba\xfb\x52\xac\xd4\x7a\x27\xc9\xc2\x14\xa4\x6e\xf1\x96\xe2\xa7\x5e\x41\x1a\xc3\x1a\xb5\xcf\xaf\x5f\xd2\x3d\xf0\x39\x25\x06\x30\x92\x2c\x50\x9e\xa0\x94\xc0\x0b\xb7\xc1\x58\x1b\x49\x34\xe7\x15\xb1\x66\x29\x2d\x1d\xa0\x3b\xeb\x38\x2d\x18\x86\xc7\xc7\xe7\x38\x1d\xfd\x55\x7a\xb5\xd6\xce\x73\x84\x0e\x8c\xb5\x8d\x5e\x9d\xd7\x98\x1c\xe4\x9b\xdc\x4f\xf7\xd6\x62\x2f\xb3\x8e\x95\xf6\x8d\xa1\x9b\x5f\x8e\x43\xbe\x60\x1c\xf9\x43\x47\xdc\x33\x14\x5e\x82\x81\x5f\xa9\x79\x08\x86\x7e\x04\x09\xcb\xb1\xe3\x5b\xd0\x2e\x2f\x8d\x92\x65\x10\xd5\x46\x18\x2e\x51\xea\xcc\x46\x79\x27\x9d\xdb\xa3\x7d\x74\xd0\x8b\xe3\xcd\x82\xd0\x9e\x9d\xf3\x50\x2f\x8f\x56\xc6\x83\x61\x33\xb3\xd0\xfa\x14\x29\x90\xad\xe0\x22\x8b\xc1\x03\xc1\x39\x5f\xba\x81\x4c\x63\x91\xad\x14\x34\x9d\x29\xd7\xc8\x56\x7e\x26\xe1\x04\x87\x94\xc3\x94\xcb\xcf\x7a\x3b\xe4\xaa\x2a\x9a\x6a\xec\xac\xde\xea\xa3\x65\x83\xd2\xef\xfb\x1b\xe5\xc5\x93\x1f\xd1\xbb\xd4\x29\xb1\xee\xec\x12\x63\xb3\x52\x80\xd9\x0e\x50\xfc\xc0\x38\xb4\xab\xf3\x45\x89\xca\xe9\xd0\x60\xfc\x59\x2e\xd2\x5d\x6f\x37\x7a\xa9\x3d\x4d\xc8\x4c\x81\x00\x10\xde\xc6\x5c\xc7\xb5\x0c\x35\xf1\x12\x2f\x0a\x61\xbc\x24\xc8\xa0\x15\x6a\xfb\xcc\xd0\x20\xac\x79\x8a\x1f\x05\x22\x06\x5b\xf1\x4f\x30\x64\x65\xb2\x67\x45\x81\xed\xa3\x40\x8c\x39\x1e\xbd\xdd\xd9\x1e\xba\x40\x8b\xed\x4b\xb8\x08\x5c\x10\x78\xc1\x7b\xcf\x2d\x99\x74\x19\x10\x56\x0c\x91\xfe\xb0\x38\x1f\xbc\x6b\x2e\xd7\x06\xbe\xb0\x52\xdb\xbd\x49\x8a\xc7\xac\xa5\xf4\xfe\x0a\xb4\x37\xc5\xaf\xb0\xc0\x99\x02\xcf\x8b\xef\x26\x82\x90\x95\xc7\x21\x89\x61\x83\xd2\x43\x7f\xb6\x8f\xa1\x2e\xc8\x64\x9d\xd5\x92\x79\x03\x36\xd2\xb1\x99\xce\x91\xfa\xb7\x85\x8e\xb9\xa8\x3e\xd7\x8f\x95\x0d\xa0\x4b\xbf\xe8\xdd\x32\xb9\x88\x71\x65\x53\x66\x2c\xb4\xce\xb3\x29\x7b\xc8\xcc\xd8\xf6\x1c\xa2\x61\x44\xdd\x8b\x9b\xf0\x82\xca\x63\x89\x9c\x7a\x63\x42\x69\x49\x84\x49\xe9\x96\x28\x5c\x10\x91\x16\x16\x09\xf7\xb8\xbe\x6c\x3b\x17\xb5\x51\x89\xf2\xfe\x96\xd2\xf2\x26\x50\xca\xf4\x1e\x99\xd2\x59\x7f\x28\xce\xc4\x5f\xe8\x17\xa7\xa3\x12\x91\xb8\xb7\x3e\xa4\x8d\xbd\xe4\x18\x12\x64\x33\x38\xb9\x7f\x53\x15\xaa\x8b\x0b\xba\xed\x8e\x11\x6e\xc7\xb0\xf4\x9e\x49\x88\x6a\xc2\x44\x9d\xb3\xb2\x5e\x50\x4a\xfe\x8a\x2b\xa5\x28\x8c\x51\xd7\xc6\x68\x75\x2d\xa7\x4f\xed\xbf\xb2\xa6\x31\x9a\x51\xbb\x32\xac\x08\x35\x7f\x68\x64\xad\x71\xaa\x19\x7a\xed\x0f\x18\x1e\xd6\x36\xb6\x23\x5f\x5a\x4c\xc3\xc8\xb0\x90\xc6\xb0\x63\xe7\x14\x4a\xc5\xf0\x16\x67\xe2\xb5\x75\x9e\x53\x76\xf4\x8e\xeb\x95\xed\x43\x0a\xea\xf1\x5a\x34\xc1\xd6\xa6\x15\x2f\xde\x95\xe9\x85\xb9\x57\x8c\x17\x48\x8f\xc9\xbb\x22\x6e\x60\x08\x0a\x48\x31\x01\xd5\x62\xbd\x10\x2f\xde\xbf\xfd\xbf\x4e\x5c\x8e\x30\x1c\x81\xa1\xba\x2b\xfe\x9e\x83\xc9\x4c\xc3\x64\x6f\xb4\x59\xff\xc4\x4f\x27\x05\x1c\xf8\xd8\x93\xed\xc9\x16\x7b\xd7\xc1\x00\x78\xf5\xd9\xe3\xf5\x9f\xb1\x9e\x5f\x6d\xde\xe8\xf5\x06\xed\x1e\x74\xa7\xd6\xe4\x66\x00\xdb\x73\x11\x66\x12\xf8\x2b\x7e\x97\x0d\xf9\x2a\xbe\xc2\xf9\x59\x3a\x95\x83\xe0\x10\x21\x40\x1c\x22\xe9\x29\x32\xa1\x9a\x73\x38\x16\xe7\x21\xf7\x28\xf4\xf8\x39\x6d\xa4\x3c\x91\x13\x80\xd6\x3b\xbd\x36\x4f\x34\xbe\x79\x02\x24\x50\x75\x2d\x3b\xf0\x17\x11\x18\x17\x93\x1a\x82\xb5\x17\x3e\x5e\xf1\xee\xe1\xd6\xb8\x21\x34\xfd\x66\xf8\x52\xcb\xb7\x52\x63\x20\x4f\xfc\x3f\x06\xbb\x57\xbd\x5e\x1d\xea\x75\x6f\x87\x5d\x9d\xd1\xde\x33\xf1\x67\xcc\x11\x98\x93\x51\x65\x2e\x47\x05\xf8\x4e\x0d\x23\x31\xe2\x58\xbf\x42\xe8\x6c\x36\xd2\xc0\x53\x09\x7a\x79\x23\x42\xd2\xd3\x1b\x05\x44\x6a\x78\x63\x0d\xc8\x11\x14\x3c\xa7\x23\x0b\x58\x2a\x16\x7b\x81\xd6\xd8\x52\xe3\x03\xc8\x97\x1c\x0d\x9b\xae\xb7\xb2\x55\x90\x30\x02\x12\xd5\x82\x40\x4d\xdd\xe2\xc5\x91\xd0\x5d\x22\x00\x46\xa6\x01\x80\xf1\x58\x3a\x28\xba\xe4\x17\xfd\x95\x6f\x36\x22\x65\x41\x21\xde\x8d\xe4\x45\xf4\x39\xec\xd6\xd8\x67\xac\xac\xe8\x32\xdd\xb4\x46\x00\xb2\xcd\x28\x20\xb6\xc0\xe9\xd4\x4e\xc2\xb1\xe0\xc4\x79\x2b\x6e\xce\x03\xa9\xd9\xfa\x5d\xcd\x17\x00\x37\x6f\x6f\xaf\x1e\xa0\x5d\x00\xca\x74\x05\x21\x33\xe2\x02\x59\x4c\x60\x30\x2b\xa3\x32\x21\x02\x11\xd1\x29\x17\xa2\x6c\xaa\x96\x09\x96\x9b\x87\x7b\x88\x53\x86\x1d\xde\x2b\xe7\x7b\xdd\xd0\x7b\xef\x5c\x66\x21\xde\x0e\x9d\xd7\xbb\x4e\x85\x94\x60\x10\x8a\xc1\x07\x76\xb2\x0f\x2f\x63\x37\x76\xbb\x95\xe2\xf1\xe9\xe3\x45\x41\xed\x6b\xdf\xb9\x14\x9e\xf4\xf6\xf2\x46\xfc\x62\x9a\xfe\x40\x76\x23\xdc\xd3\x3b\xbd\x03\xb0\x9a\xd6\x3c\x74\xf8\x4e\xef\x10\x96\xd6\x7a\x20\xb7\x72\x5b\x3b\xd5\xdf\xeb\x26\xee\xc9\xab\xf3\xb7\xa8\xaa\xd3\x8d\xca\x89\x3d\x57\x8d\x2f\xb8\x05\x61\x29\x35\xe2\x7c\xf0\xb6\x10\x96\x42\xa9\xec\x59\xa5\xf1\x31\x48\x26\x1f\x61\x5c\x27\xbc\x74\x09\x5d\xb0\xd4\xf1\xe4\x1c\xcb\x5c\x65\x99\x2f\xf9\x95\x2d\x8a\xb3\x32\x67\x90\x4a\x3c\x5f\x69\x3b\x99\x23\xcb\x98\xd9\x87\x7a\x3d\x1b\x14\xb0\x2c\x51\x40\xd6\x74\x7c\xb3\x11\xcb\x08\x75\x34\x67\x99\x96\xc8\x0d\x8e\xa6\x03\x3b\x63\x93\xf8\x80\x1d\x22\x2f\x30\xe4\x70\x75\x74\x2b\x3c\x82\x9a\x78\x5d\x84\x59\x1e\xc8\x10\x86\xaf\x82\xf9\x5e\x3f\xb1\xd3\x29\xee\xa9\x72\x0c\x95\x87\xf7\x24\xb9\x09\x39\x17\xe6\x6f\xb3\x6e\x8e\xf8\xdb\xb2\x19\x5f\x60\x73\x09\x0d\xc9\xc9\xec\x4e\x14\x5c\x10\x2e\xb3\x6b\x59\x66\x29\x46\x9e\x07\x7c\xfd\xbf\x30\xd6\xd7\x0e\xdd\x75\xbe\x47\xff\x2c\xe5\x7f\x08\x59\xac\x06\x8f\x76\x02\xac\x06\x2f\xcd\x05\x18\x56\xee\x76\x91\xed\xda\xed\xba\x82\xe7\xca\x40\xee\x89\x80\x66\x10\x7f\xe6\xf8\xad\x19\x10\xc5\x0e\xc9\x81\x3e\x5c\x5f\x06\x80\x31\x3b\xc6\xc9\x76\xb5\xea\xb4\x51\xf5\x96\xfc\xa9\xde\xd3\xa7\x78\x6b\xdb\x58\x3f\x07\xe5\xa9\x7b\x3b\x90\x9e\x7b\x9d\xbd\xc5\x71\x8d\x89\x30\x6e\x01\xbc\x1f\xe8\x4c\xa3\xbb\x5d\x52\x99\x64\x59\x5c\x11\x64\xe5\x95\x80\xc0\x1a\x9e\x84\xa1\x28\x16\xa3\x0e\xa2\xf1\x41\x83\x3e\x72\x75\x6f\xad\xaf\x77\x92\xce\x06\x4c\x27\xb7\xbb\x6b\x6b\xbd\xb8\x92\x7e\x13\x0a\x75\x76\x3d\x2d\x71\x69\xd7\x47\xc0\x39\x8a\x2f\xed\xa0\xd0\x07\x4a\x1b\x2f\x31\xec\x56\x6c\x9b\xdb\x64\xb3\x7d\xf3\x7a\x7e\xaa\x01\x6a\xca\xbc\x67\x99\x20\x81\xf8\x9a\x43\xae\xd7\xb4\x8a\x58\x20\xf1\xe2\x67\x8e\xc4\x4e\x8b\x29\x2f\x76\x64\x66\x21\x2b\xe7\xad\xb3\x64\x64\x14\x4c\xc8\x45\xae\xc0\x4c\x80\xf2\x21\x9b\x8c\x14\x02\x28\xb6\xf0\x2c\xaf\x13\x6b\xe9\xa9\x27\xd9\xbd\xe3\x08\x44\x9c\x7b\xea\x55\x8e\xee\x4e\x1d\x6a\x0c\x84\xc6\x75\xfe\xa7\x3a\x50\x00\xb4\x71\xbd\x77\xea\xb0\x86\xd6\x47\xb0\xb5\x32\xe2\xfb\xc7\xce\x6d\x9e\x50\xd6\xe3\x1f\x26\x65\xb6\xda\xe8\xed\xb0\x25\xaf\x64\xfd\x9b\xa2\x67\x5b\x31\xb8\x04\x66\x60\x6d\x20\xd0\x89\x0b\xc8\x78\xa8\xa8\x9b\x29\xe5\xaa\xb4\x84\x76\x36\xad\x85\x5c\x2d\x35\xb7\x24\x10\xba\x18\xe8\x54\x60\x3a\xe6\x68\x29\x1a\x44\xb9\x1b\xfc\x22\x36\x28\xc7\x86\x8f\xe3\xd4\x49\xf8\x7d\x89\x8f\xe5\x04\x11\x98\x21\xb7\xf2\x73\xd2\x84\xa1\x92\x8b\x74\x69\x63\xe5\x19\x83\xef\x30\xd6\x46\xaf\xda\xba\xd3\x8d\x32\x8e\x5f\x49\xe2\x44\x71\xc9\x89\x63\x82\xb1\xf1\x7e\x57\xaf\x11\x77\x20\x17\x18\x48\xf1\x55\xc2\xcc\x3c\x06\x2a\x8c\x70\x0c\xea\xad\x5e\xc7\x87\xc7\x98\xd5\x40\x15\x27\x0e\x85\x78\x1b\x72\x03\x02\xf6\x1b\xad\x57\xc0\xaf\xc2\xc0\xd3\x85\x57\x73\x48\x6f\x1b\x33\x2f\x7b\x91\xf2\xe2\x6c\x61\x0b\xe3\x6c\x61\xe3\x66\xe7\x09\xe1\xd8\x82\x18\xa3\xbf\xdb\x8e\x7c\x6d\x6a\x8a\x85\x4e\x2a\x16\x38\x8b\x2e\x28\x97\x23\xb6\xbf\xc7\xdc\x58\x5d\xbb\x4c\x95\xbd\x08\x66\x53\xb3\x15\xb6\xcb\x3a\x97\xfc\x53\x6a\x2e\x3f\xa7\xd4\x5c\x6f\x90\x52\x99\x82\xe5\x14\xb8\x5d\xd6\xce\x75\x81\x08\xdf\xdc\x5c\x96\x94\x3e\xe5\x26\x36\xf7\x7b\x10\xec\x1e\xed\xac\xf3\xeb\x5e\xb9\x47\xc2\x9a\xee\xf0\x43\x56\x82\x57\x6e\xbe\x52\x39\x75\x8c\xc3\xfd\xbd\xd3\x5e\xfd\xf1\x11\xde\x9e\x3f\xf2\xba\x5d\x3e\xfa\xa1\xca\x0f\x4d\x8d\x8e\xbd\xd9\xa9\xa9\x9b\x23\xe3\x13\x95\xf7\x0a\xe4\xbe\x2c\xc2\x79\x78\xcb\x89\xe4\x41\x76\xf7\x28\x87\x36\x1c\x67\x89\xa5\x8d\x87\x59\xce\xce\x86\x76\x6d\x30\x1c\x7f\xca\x48\x6f\x08\xa2\xf7\xfb\x75\x40\xf3\x33\x26\xa7\x06\xd2\xb3\x50\x20\x2e\x03\xd3\xc4\xee\xb2\xa1\x79\x37\x7a\x6d\xc4\x1b\x43\xde\xee\x71\x53\xea\x2e\x5d\x46\xbc\x85\xf6\xe7\xf7\x0f\xe3\xf6\x4f\x48\x59\xe8\xc5\xc3\x24\x8d\x77\x5c\x23\x77\xbe\xd9\xc8\xb4\xc9\x2e\x28\x21\xf2\x13\x14\x0f\xa7\x81\xa5\xd0\xb1\x2d\x11\xc5\xcc\x41\x67\x6b\x71\x89\xc6\x43\xb1\xb3\x4e\xf9\xa4\x24\x29\x0a\x5d\x43\x5e\x54\xaa\xe4\x85\x43\xe9\x10\x64\x2f\xce\x7c\x88\x55\x33\x3b\xf3\x18\x25\xb2\xee\x94\x59\xe3\xb2\xfb\x2f\xf8\x14\x97\xf8\x19\x47\x88\x82\xd0\xe0\xfd\x95\x1d\x58\x71\x0c\x29\x78\x8d\x65\x87\x74\xec\x7c\x51\x66\xca\xe7\x26\x67\xe9\xde\xe2\xf7\x7c\x0b\x19\xf6\xe8\x51\xcf\xf9\x91\x4a\xaa\xce\xe6\x14\xf2\x97\xcb\xf7\x23\x48\x37\xe0\x95\x75\x0d\x64\x58\x7f\x46\xad\x08\x26\x20\x09\xd6\x9f\x47\xd0\x33\x14\x82\x73\x66\xe8\x01\xde\x84\xe1\xa9\xcb\x7a\x14\xbc\x03\xc3\x63\x17\x77\x50\x80\x8b\x20\xf5\x8a\xbc\xe1\xcf\xc4\x4b\x28\xe0\x2d\x85\x42\xc4\x68\xa7\xb8\x17\x21\x09\x18\xe7\x9f\xc4\xc9\xfd\xb4\xb4\x23\x2f\xf3\xdb\x04\x9e\xde\xa6\xe5\xb8\x90\x50\x38\xb1\xd9\x64\xce\x17\xc7\x1d\x4d\xf8\xe6\x87\x9d\x20\xa7\xa3\x1e\x4f\x0a\xbc\xbe\x4e\xc6\xbb\x78\x61\x3d\x8b\x89\x20\x65\x2b\x77\x44\x1e\x08\xf4\x9c\xbe\x4b\x20\xb4\xf1\xb8\x97\x5d\x84\x7a\xc3\x09\x93\x5a\x4d\x5e\xa7\xe1\xe7\xf7\xd2\x34\x90\x25\x7a\x46\xfc\xc8\x7b\x74\x9e\x91\x64\xe8\x5d\x6f\xef\x75\x30\xf2\x26\xf8\x2b\x4e\x4a\x27\x37\x7d\x27\xcc\x01\x82\x51\xa7\x73\xd4\xde\xe9\xa8\x11\xb8\xc0\xaf\xe2\x3c\x61\xba\x01\x1b\x9d\x60\x13\xe9\xb8\x51\x9e\x4b\x44\x6e\xbe\x89\x23\x13\xae\xae\x5f\x5d\xc4\xb1\xa1\x5b\xee\x51\x67\x3a\xbd\x52\xf1\x4e\x9c\x7b\x73\xa9\x57\xaa\x00\x86\x73\xd8\x85\x30\x85\x70\x5c\xdf\x88\xf7\xa6\x3b\x8c\x3a\x91\xa3\xe2\x9e\x24\x4c\x71\x64\x34\x1a\x2a\x64\x03\x43\x09\xf3\x43\x1e\xa0\xf9\x94\xca\xc0\xf9\x98\x1a\x53\xe7\x75\xcf\x6e\x98\x69\x67\xbf\xe2\xa4\xd1\x88\xae\x54\x8b\xb1\x28\xda\x3a\x96\xe0\x71\x7d\x19\x72\xc4\x39\xe6\x24\x92\x09\xd2\x52\x6c\x38\x08\x4b\xb3\x8d\x06\xa8\xd0\x1e\x0c\xdb\xb2\xd1\xeb\x0d\xbe\xe4\x94\xb5\x8a\xa2\xb7\x1c\x8c\x97\x9f\xc5\xeb\x90\x9f\x63\x00\x5e\x11\x4b\x83\x60\xe8\x98\x4f\xc4\x52\x97\x98\x80\x67\xbb\x14\x4e\x9b\x75\x47\x61\x4b\x7e\x38\x5a\xbc\x6e\x36\xb2\x97\x0d\xbf\x27\x18\x11\x5d\xa4\xd4\x12\x1b\x94\x99\xc7\x16\x62\xa5\x44\x1c\x2f\x31\xe1\x7b\xd2\x69\x60\xb4\x94\xa2\xe0\xba\xa9\x65\xbf\x66\x6b\x86\xf3\x7e\x8d\x0f\x33\xbb\x02\x35\xb2\x96\x2a\x3b\x35\x22\xb3\x39\x3e\x37\x08\x1c\x03\xd5\xe5\xd0\x18\xa6\x8e\x95\x40\x33\x25\xd0\x67\x26\x2b\x70\x81\x3e\x34\xc9\x98\x7a\xa6\x08\x46\x31\x4c\x25\x30\x80\xe1\x83\x05\xd8\x6a\x83\xc0\x5f\x5d\xcc\x00\xe7\xa2\x71\x5c\x42\x20\x12\xcf\x2e\x21\x80\x62\x66\x31\x67\x14\x21\x79\xea\xde\x1d\x3c\x1d\x16\x4d\x4f\x71\xf1\xe1\xdf\xad\x74\x77\xd1\x07\xa2\xb8\xe0\x0a\x69\xae\xd9\xa8\x76\xe8\x48\xa8\xa1\x9f\x09\x5e\x7d\xf6\xc1\x9a\x06\xb7\x6f\xc8\xc0\x08\x24\x76\x70\x21\x04\x09\xfc\x2c\x00\xd4\x67\xd5\x0c\x99\x61\xdd\x2f\xf4\xcd\x96\x2c\x09\x8d\x0d\x7e\x93\x83\x41\x3d\xfb\x15\xa5\x64\x30\x73\x4f\xe5\x87\xa6\xb3\x9c\x4b\x22\xfa\xd1\xfa\x63\xf5\x61\x22\xaa\xe0\x2d\x12\x7c\x30\xf8\xc5\x69\xbe\x06\x18\x39\x90\x04\x58\x8c\x43\x44\x51\x83\xeb\x18\x9f\x06\x03\x12\x11\x24\xc7\xaa\x89\xf0\xec\x05\xc1\x9c\x1b\xcc\x50\xac\x55\x75\xc0\x50\xc8\x8e\x8e\x7c\xf8\x00\x89\x25\xe6\xb7\xaa\x80\x78\xc1\x9f\x05\x8c\x36\xa4\x2c\xa1\x2c\x12\xd8\xde\x50\x1a\xa3\xcc\xbc\x62\x82\x6e\x92\x80\x39\xb6\x18\xea\x01\x6f\x38\x65\x0c\x19\x6a\x46\xa0\xf3\xae\x9b\x8c\x46\x2e\x1f\xe5\x69\xf8\xd0\x47\xe6\xba\x94\xf5\x69\x3c\x8d\x21\xcb\xee\x70\x15\x2f\x26\xad\x8d\x0a\x46\x9e\x91\xe0\xe3\xf3\x25\x53\xf1\xea\x23\x8d\xfd\xa7\x10\x0b\x83\xad\x12\x82\x31\x50\x66\x80\x5b\x44\x0a\x3c\xc1\x00\x77\x55\xaf\x4c\xf6\x76\x16\x7d\x15\x85\xd0\xe5\x8d\xa2\xf3\x9e\x7c\xfc\xf1\x93\x0b\xe1\x79\xbd\xcd\xf0\x7d\xfc\xc3\x27\x40\xf9\xf1\x8f\x9f\x08\x2b\x3f\xb7\xce\x58\xd3\x5b\xb2\x59\x89\x1f\x3f\xb9\xa7\xae\x6f\x9e\x8e\xcb\x0a\xe9\x47\x60\x90\xf9\x3f\x12\xe2\x9d\xec\x55\x1d\x62\x38\xf1\xa2\xa4\x64\xed\xac\xe1\xf0\x69\xca\x29\x0c\xdf\xc5\x4f\x96\xc5\x97\x46\xb8\x45\xe1\x7b\x34\x3e\xd4\xcb\xf9\x2e\xa6\x21\xe3\x71\xa6\x37\xde\xce\xc4\xaf\x14\xcc\x95\xdf\x7c\xcb\x0a\x3c\xa5\x2b\xfd\xa7\x54\xf4\xdf\xb0\xa3\x80\xe0\xd7\x0a\x03\xc1\x26\x04\x14\x17\xf6\x5b\x10\x50\x04\xd9\x84\x21\x44\x94\xfd\xa6\x46\x70\x48\xd7\xd4\x0c\x4a\x50\xad\x40\xf5\xfa\xd7\x23\xa2\xf1\x18\x45\xcc\xfd\x35\x2c\xc0\xe2\x41\xdc\x1c\x21\x3e\x42\x77\x74\x74\x26\xe8\x68\x90\xbe\x19\x1b\x0f\xd5\x18\x5d\x1c\xb1\x6f\x46\x88\x8f\xe1\x4d\xf0\xf1\x23\xc8\xdf\xde\x59\x1a\xbc\xf8\x60\x75\x18\x35\xa3\xf6\xf1\xb5\xeb\x7f\x75\xd3\x30\x89\x89\x75\x04\x42\x12\xf0\xf3\xe6\xfe\x43\xda\xdc\xb3\xe8\xc2\xe6\xc6\x18\xd0\x5e\xae\xb3\x9d\x2d\xd7\x45\x67\xb1\x89\x58\x86\xfb\x39\xdd\xfb\x39\xc2\xe0\x90\x8c\x28\x43\xe3\x10\xe7\x37\xb6\x0c\xa3\x5c\xf3\x16\xa7\xd0\xd6\x93\x47\x05\xe7\x36\x74\x1e\x08\x98\x63\x5f\xb3\x47\x45\x16\x2a\xee\x5f\x9d\x05\x22\xa4\x54\x55\x51\x63\x8c\x2c\xce\x75\xc2\xcc\xa7\x80\xc3\xbf\x7f\x58\x8f\x56\x18\xef\x05\xb9\x42\x7c\xb6\x8c\x47\x3d\xab\xf8\xdb\xc6\xbe\xa8\xad\xfa\xe8\xad\xed\x3e\x55\x72\x0d\x33\x21\xd7\xb6\x82\x5c\x8e\x3d\x81\x80\xc6\xee\x2b\xfa\x84\x5f\x3f\x02\x21\xff\x91\x9f\xdf\x10\x27\xae\xfa\x71\x8b\x09\xf4\x68\x31\x26\x6c\x30\x61\x63\x07\x7c\x4d\xed\xc7\x16\x3f\x5b\x79\xc0\xaf\x3d\x7e\xed\x95\xba\xa3\xc2\xc8\x20\xfc\x28\xb6\xd6\xf8\x0d\xa6\x1c\xf0\xfb\xa0\x24\xbf\xc5\x46\xcf\x7c\x9c\xc1\x11\x11\x3e\x4e\x5c\x45\xd5\x71\x7a\xf8\x38\x71\x15\xd4\xca\xa9\xf4\xf3\xc4\x55\xad\x3c\x70\x12\xfe\x3a\x71\x15\x54\xcf\x49\xf4\xf3\x04\xf9\x3a\xbf\x09\x08\xe9\xf7\x89\xab\xa0\x1d\x9c\x48\x3f\x4f\x5c\xd5\xcb\x7d\x9d\xda\xc5\xbf\x30\x35\xb5\x8a\x7f\x55\xd5\xc7\xb6\xb7\xbb\xdf\xac\x51\x9f\x2a\x36\x1f\xad\xb7\xca\xb1\x79\xfd\x8b\xde\xee\x82\x57\x8d\xea\xe9\xf6\x13\x5f\x83\xc5\x57\x4d\x3a\x2b\xdb\x45\xc5\x21\xcc\x6a\x6d\x76\x43\x54\xf3\xb3\x89\xd3\x63\xcf\x60\xe9\xa9\x0f\x72\x50\x3f\xec\xd4\xa2\xc2\x2b\x2e\x6f\x6d\xbd\x44\x6e\x1e\x2f\xb7\xd0\x48\xed\xfb\x7f\xfc\x03\xe1\xf5\x6f\xea\x9f\xff\x14\x6f\x7f\xfe\x41\xa8\xcf\x8d\x52\xad\x13\x5b\x36\x9c\x0d\x60\x5b\xf9\xf9\x65\x01\xb9\xa8\xd8\xdb\x9b\x2d\x35\xc9\xdb\x1b\xab\xaf\xfe\xbf\x00\x00\x00\xff\xff\x32\x44\xfc\x12\x5d\x00\x01\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4455,7 +4455,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 65150, mode: os.FileMode(420), modTime: time.Unix(1526883659, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 65629, mode: os.FileMode(420), modTime: time.Unix(1527684921, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/pkg/template/template.go b/pkg/template/template.go index f56194b91..4ebc4007b 100644 --- a/pkg/template/template.go +++ b/pkg/template/template.go @@ -272,6 +272,8 @@ func ActionIcon(opType int) string { return "alert" case 19: // Fork a repository return "repo-forked" + case 20, 21, 22: // Mirror sync + return "repo-clone" default: return "invalid type" } diff --git a/public/css/gogs.css b/public/css/gogs.css index ed2f76f7f..abfd9ae54 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -3039,7 +3039,7 @@ footer .ui.language .menu { .feeds .news .push.news .content ul { font-size: 13px; list-style: none; - padding-left: 10px; + padding-left: 0; } .feeds .news .push.news .content ul img { margin-bottom: -2px; diff --git a/public/less/_dashboard.less b/public/less/_dashboard.less index f530ea5c6..3c84b77d9 100644 --- a/public/less/_dashboard.less +++ b/public/less/_dashboard.less @@ -72,7 +72,7 @@ .push.news .content ul { font-size: 13px; list-style: none; - padding-left: 10px; + padding-left: 0; img { margin-bottom: -2px; diff --git a/routes/repo/setting.go b/routes/repo/setting.go index 7ee3d22bd..71827cc3b 100644 --- a/routes/repo/setting.go +++ b/routes/repo/setting.go @@ -111,7 +111,7 @@ func SettingsPost(c *context.Context, f form.RepoSetting) { if f.Interval > 0 { c.Repo.Mirror.EnablePrune = f.EnablePrune c.Repo.Mirror.Interval = f.Interval - c.Repo.Mirror.NextUpdate = time.Now().Add(time.Duration(f.Interval) * time.Hour) + c.Repo.Mirror.NextSync = time.Now().Add(time.Duration(f.Interval) * time.Hour) if err := models.UpdateMirror(c.Repo.Mirror); err != nil { c.ServerError("UpdateMirror", err) return diff --git a/templates/.VERSION b/templates/.VERSION index d30c12fd5..cce047d4d 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.11.49.0521 \ No newline at end of file +0.11.50.0530 \ No newline at end of file diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl index 3706434d9..b4e8171d5 100644 --- a/templates/user/dashboard/feeds.tmpl +++ b/templates/user/dashboard/feeds.tmpl @@ -5,7 +5,7 @@
-
+

{{.ShortActUserName}} @@ -53,9 +53,16 @@ {{$.i18n.Tr "action.delete_tag" .GetRepoLink .GetBranch .ShortRepoPath | Str2html}} {{else if eq .GetOpType 19}} {{$.i18n.Tr "action.fork_repo" .GetRepoLink .ShortRepoPath | Str2html}} + {{else if eq .GetOpType 20}} + {{ $branchLink := .GetBranch | EscapePound}} + {{$.i18n.Tr "action.mirror_sync_push" .GetRepoLink $branchLink .GetBranch .ShortRepoPath | Str2html}} + {{else if eq .GetOpType 21}} + {{$.i18n.Tr "action.mirror_sync_create" .GetRepoLink .GetBranch .ShortRepoPath | Str2html}} + {{else if eq .GetOpType 22}} + {{$.i18n.Tr "action.mirror_sync_delete" .GetRepoLink .GetBranch .ShortRepoPath | Str2html}} {{end}}

- {{if eq .GetOpType 5}} + {{if or (eq .GetOpType 5) (eq .GetOpType 20)}}
    {{ $push := ActionContent2Commits .}}