diff --git a/README.md b/README.md index 73e35c4b9..8be1adc6f 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](public/img/gogs-large-resize.png) -##### Current version: 0.7.11 Beta +##### Current version: 0.7.12 Beta diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 93180daa5..04e01457b 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -368,9 +368,7 @@ fork_from_self = You cannot fork repository you already owned! copy_link = Copy copy_link_success = Copied! copy_link_error = Press ⌘-C or Ctrl-C to copy -click_to_copy = Copy to clipboard copied = Copied OK -clone_helper = Need help cloning? Visit Help! unwatch = Unwatch watch = Watch unstar = Unstar @@ -634,21 +632,21 @@ release.stable = Stable release.edit = edit release.ahead = %d commits to %s since this release release.source_code = Source Code +release.new_subheader = Publish releases to iterate product. +release.edit_subheader = Detailed change log can help users understand what has been improved. release.tag_name = Tag name release.target = Target release.tag_helper = Choose an existing tag, or create a new tag on publish. -release.release_title = Release title -release.content_with_md = Content with Markdown -release.write = Write -release.preview = Preview -release.content_placeholder = Write some content -release.loading = Loading... +release.title = Title +release.content = Content release.prerelease_desc = This is a pre-release release.prerelease_helper = We’ll point out that this release is not production-ready. +release.cancel = Cancel release.publish = Publish Release release.save_draft = Save Draft release.edit_release = Edit Release release.tag_name_already_exist = Release with this tag name has already existed. +release.downloads = Downloads [org] org_name_holder = Organization Name diff --git a/gogs.go b/gogs.go index 04e1cf657..a2ff0b5e8 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.11.1115 Beta" +const APP_VER = "0.7.12.1115 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/error.go b/models/error.go index 8f508598a..f8fea6f56 100644 --- a/models/error.go +++ b/models/error.go @@ -288,6 +288,32 @@ func (err ErrUpdateTaskNotExist) Error() string { return fmt.Sprintf("update task does not exist [uuid: %s]", err.UUID) } +type ErrReleaseAlreadyExist struct { + TagName string +} + +func IsErrReleaseAlreadyExist(err error) bool { + _, ok := err.(ErrReleaseAlreadyExist) + return ok +} + +func (err ErrReleaseAlreadyExist) Error() string { + return fmt.Sprintf("Release tag already exist [tag_name: %s]", err.TagName) +} + +type ErrReleaseNotExist struct { + TagName string +} + +func IsErrReleaseNotExist(err error) bool { + _, ok := err.(ErrReleaseNotExist) + return ok +} + +func (err ErrReleaseNotExist) Error() string { + return fmt.Sprintf("Release tag does not exist [tag_name: %s]", err.TagName) +} + // __ __ ___. .__ __ // / \ / \ ____\_ |__ | |__ ____ ____ | | __ // \ \/\/ // __ \| __ \| | \ / _ \ / _ \| |/ / diff --git a/models/release.go b/models/release.go index 38f3e4f48..1c9c7d60b 100644 --- a/models/release.go +++ b/models/release.go @@ -5,7 +5,6 @@ package models import ( - "errors" "sort" "strings" "time" @@ -15,16 +14,11 @@ import ( "github.com/gogits/gogs/modules/git" ) -var ( - ErrReleaseAlreadyExist = errors.New("Release already exist") - ErrReleaseNotExist = errors.New("Release does not exist") -) - // Release represents a release of repository. type Release struct { - Id int64 - RepoId int64 - PublisherId int64 + ID int64 `xorm:"pk autoincr"` + RepoID int64 + PublisherID int64 Publisher *User `xorm:"-"` TagName string LowerTagName string @@ -47,12 +41,12 @@ func (r *Release) AfterSet(colName string, _ xorm.Cell) { } // IsReleaseExist returns true if release with given tag name already exists. -func IsReleaseExist(repoId int64, tagName string) (bool, error) { +func IsReleaseExist(repoID int64, tagName string) (bool, error) { if len(tagName) == 0 { return false, nil } - return x.Get(&Release{RepoId: repoId, LowerTagName: strings.ToLower(tagName)}) + return x.Get(&Release{RepoID: repoID, LowerTagName: strings.ToLower(tagName)}) } func createTag(gitRepo *git.Repository, rel *Release) error { @@ -84,11 +78,11 @@ func createTag(gitRepo *git.Repository, rel *Release) error { // CreateRelease creates a new release of repository. func CreateRelease(gitRepo *git.Repository, rel *Release) error { - isExist, err := IsReleaseExist(rel.RepoId, rel.TagName) + isExist, err := IsReleaseExist(rel.RepoID, rel.TagName) if err != nil { return err } else if isExist { - return ErrReleaseAlreadyExist + return ErrReleaseAlreadyExist{rel.TagName} } if err = createTag(gitRepo, rel); err != nil { @@ -100,22 +94,22 @@ func CreateRelease(gitRepo *git.Repository, rel *Release) error { } // GetRelease returns release by given ID. -func GetRelease(repoId int64, tagName string) (*Release, error) { - isExist, err := IsReleaseExist(repoId, tagName) +func GetRelease(repoID int64, tagName string) (*Release, error) { + isExist, err := IsReleaseExist(repoID, tagName) if err != nil { return nil, err } else if !isExist { - return nil, ErrReleaseNotExist + return nil, ErrReleaseNotExist{tagName} } - rel := &Release{RepoId: repoId, LowerTagName: strings.ToLower(tagName)} + rel := &Release{RepoID: repoID, LowerTagName: strings.ToLower(tagName)} _, err = x.Get(rel) return rel, err } // GetReleasesByRepoId returns a list of releases of repository. -func GetReleasesByRepoId(repoId int64) (rels []*Release, err error) { - err = x.Desc("created").Find(&rels, Release{RepoId: repoId}) +func GetReleasesByRepoId(repoID int64) (rels []*Release, err error) { + err = x.Desc("created").Find(&rels, Release{RepoID: repoID}) return rels, err } @@ -150,6 +144,6 @@ func UpdateRelease(gitRepo *git.Repository, rel *Release) (err error) { if err = createTag(gitRepo, rel); err != nil { return err } - _, err = x.Id(rel.Id).AllCols().Update(rel) + _, err = x.Id(rel.ID).AllCols().Update(rel) return err } diff --git a/models/repo.go b/models/repo.go index bbd978ff4..9b2c7bc6c 100644 --- a/models/repo.go +++ b/models/repo.go @@ -1116,7 +1116,7 @@ func DeleteRepository(uid, repoID int64) error { return err } else if _, err = sess.Delete(&Milestone{RepoID: repoID}); err != nil { return err - } else if _, err = sess.Delete(&Release{RepoId: repoID}); err != nil { + } else if _, err = sess.Delete(&Release{RepoID: repoID}); err != nil { return err } else if _, err = sess.Delete(&Collaboration{RepoID: repoID}); err != nil { return err diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 766f540f4..8e10dc24d 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -215,12 +215,12 @@ func (f *CreateLabelForm) Validate(ctx *macaron.Context, errs binding.Errors) bi // \/ \/ \/ \/ \/ \/ type NewReleaseForm struct { - TagName string `form:"tag_name" binding:"Required"` + TagName string `binding:"Required"` Target string `form:"tag_target" binding:"Required"` - Title string `form:"title" binding:"Required"` - Content string `form:"content" binding:"Required"` - Draft string `form:"draft"` - Prerelease bool `form:"prerelease"` + Title string `binding:"Required"` + Content string + Draft string + Prerelease bool } func (f *NewReleaseForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index d5e9ded59..ac30952b0 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4364,7 +4364,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xeb\x72\xdc\x48\xae\xe6\x7f\x3e\x05\xdb\x27\x1c\xb6\x23\xe4\x72\x74\xf7\xde\xa2\xa3\xed\x5e\x59\x6a\x5f\xe6\x58\x96\xc6\x52\xcf\x6c\xaf\xc3\xc1\x66\x15\x59\x55\x1c\x57\x91\xd5\x24\xcb\xb2\xe6\xc4\x89\xd8\x07\xd8\x07\xd8\x7d\xbd\xf3\x24\x0b\x7c\x00\xf2\x42\xb2\x24\xbb\x67\x62\xfd\xc3\x62\x65\x22\x6f\x48\x24\x12\x89\x04\x90\xf9\x6e\x97\x15\x65\xb7\x48\x9f\xa6\xc7\xe9\x2e\xaf\xea\x4d\xd9\x75\x69\x57\x6e\x96\x8f\xd7\x4d\xd7\x97\x45\xfa\xb2\xea\xe9\x77\xfb\xa9\x5a\x94\x49\xb2\x6e\xb6\x25\x81\xbe\xa2\x3f\x49\x91\x77\xeb\x79\x93\xb7\x05\x25\x9c\xda\x77\x52\x7e\xde\x6d\x9a\x96\x81\x7e\x96\xaf\x64\x5d\x6e\x76\x5c\x86\xfe\x24\x5d\xb5\xaa\xb3\xaa\xa6\x9f\x97\xf4\x95\xbe\xae\x25\xa5\xd9\xf7\x96\x74\xbe\xef\x25\x6d\xbf\xb3\xa4\x5f\x76\x49\x5b\xae\x2a\xea\x4d\x4b\x49\xef\xf4\x33\xb9\x2e\xe7\x5d\xd5\x73\x4b\x7f\x95\xaf\xe4\x53\xd9\x76\x55\xc3\xb5\xff\x45\xbe\x92\x5d\xbe\x62\x80\x0b\xfa\x93\xf4\xe5\x76\xb7\xc9\x51\xe0\x4a\x3f\x93\x4d\x5e\xaf\xf6\x02\xf3\x46\x3f\x93\x45\x5b\x52\x56\x56\x97\xd7\x94\x7a\x82\x1f\xb3\xd9\x2c\xd9\x13\x12\xb2\x5d\xdb\x2c\xab\x4d\x99\xe5\x75\x91\x6d\x65\x98\xbf\x50\x7a\xaa\xe9\x29\xa5\xa7\x9c\x8e\x21\x94\x05\x0d\x35\xcb\x3b\x1d\x07\xe1\x92\x46\x9e\x77\x09\xaa\xaa\xf3\xad\x95\xe6\xcf\xa4\xdc\xe6\xd5\x86\xb1\xf6\x98\x3f\xa8\xe3\x5d\x77\xdd\x00\xb7\x17\xfa\x49\x48\xc8\xfa\x9b\x5d\x09\x1c\x3c\xbe\xa2\xaf\x64\x91\xef\xfa\xc5\x3a\xe7\x7e\xca\x57\x42\x40\xbb\x86\x90\xd1\xb4\x37\x80\xb3\x1f\x49\xd3\xae\xf2\xba\xfa\x7b\xde\x0b\x82\xce\x83\x9f\xc9\xb6\x6a\xdb\x86\x71\x7b\x86\x8f\x84\x86\x9e\x71\x3d\x94\xf2\x96\xb0\x10\xd4\xc2\x39\xdb\x6a\xd5\x0a\x1a\x39\xf3\x0c\xbf\xb8\x16\xce\x5b\x36\xed\x47\xcd\x78\xc1\x9f\x83\xa2\xd4\x09\xcd\x8d\xdb\xcf\x6b\x42\xbc\xe6\x9e\xe1\x47\x04\xd0\x25\x79\xb1\x25\x54\xee\xf2\xba\x64\x1c\x1d\xf3\x2f\xc2\x0b\xfd\x4a\xf2\xc5\xa2\xd9\xd7\x7d\xd6\x95\x7d\x5f\xd5\x2b\x46\xf6\xb1\x24\xa5\x97\x9a\x94\x04\x79\x2e\xed\xa6\xd9\xbb\xe9\xa4\xf4\x5f\xe9\x67\x7a\x21\x3f\x25\x2f\x28\x84\x4c\x57\x92\x47\xd2\x65\xcb\xb2\x2c\x64\x2c\x5d\xfa\x82\xbe\x93\xdd\x7e\xb3\x21\xac\xfd\xbe\x2f\xbb\x9e\x0b\x5d\xd0\x6f\x1a\xbf\xfc\x4e\xaa\xae\xa3\x0f\x4a\x7e\x8d\x8f\x84\xa6\xae\x5e\x60\x30\x27\xf8\x48\x92\xf7\x5d\x99\xb7\x8b\xf5\x87\x44\xfe\xa2\xaf\xfc\xc1\xb4\x77\x68\x52\x99\x90\x94\x88\xa4\x05\x6b\x20\x59\x34\x05\xff\x38\xa1\x3f\x54\x75\x55\x77\x7d\xbe\xd9\x7c\x48\xf4\x83\xc1\xe4\x4b\x26\xa0\xaf\x7a\x60\x41\x13\xd3\xcb\xbe\xdc\x75\x3c\x83\xe9\x8b\xaa\xed\xfa\xc7\x7d\x45\xc4\xfa\x6e\x5f\x27\x45\xb3\xf8\x48\xcb\x80\x97\x34\x5a\x7e\xbd\x4c\x09\x59\x0f\x68\x21\xb4\xfb\xba\x26\xf4\xa4\x2f\x1b\x42\x19\x35\x53\x51\xfb\xa7\x80\x3e\x4a\x77\x9b\x32\xef\x08\xa4\xcc\x8b\xf4\xc7\x3c\xed\xf3\x76\x55\xf6\x4f\xef\x65\x73\x5a\x7e\x1f\xef\xa5\xeb\xb6\x5c\x3e\xbd\x77\xbf\xbb\xf7\xec\xe5\x9e\x8a\x6d\xaa\xba\xec\x7e\x7c\x92\x3f\x4b\x17\x39\xe5\x10\x1a\x6f\xd2\x79\xb9\xe4\xd5\x46\x6d\xa5\x44\xe5\xf5\x8a\x57\xda\x4d\xbf\xe6\x06\x89\x12\xe8\xa3\x4b\x79\xa9\x7f\x93\xf0\x04\x10\x2b\xc8\x8a\xb9\xb1\x35\x74\x08\xc9\x2d\x4d\xc0\xd9\xcd\xe5\x9f\xdf\x1c\xa5\x17\xc4\xdb\x56\x6d\x89\x6f\xfa\x8f\x4a\x7c\x9f\xd2\x68\xaf\xaa\xd3\xe7\xb3\x84\xca\x1a\x42\x4e\xf3\x3e\x9f\x73\xdf\xdd\xec\x73\xa6\x2c\x42\x97\x87\xa5\xc8\xdc\x12\x9c\xb1\xeb\xa3\x69\x99\x5a\xc8\x54\x87\x2e\x7f\x57\xc7\x5b\xe6\x01\x94\xee\x30\x7b\x21\x38\xa3\xaa\xd2\xd7\x6f\xdf\x9e\x9f\x3e\x4f\xcb\x7a\x45\x98\x49\xaf\xab\x7e\x9d\xee\xfb\xe5\x7f\xcb\x56\x65\x5d\xb6\xf9\x26\x5b\x54\x8c\x94\x96\x08\x36\x25\x2c\xc9\x10\x67\x49\xd7\x6d\x88\x45\x81\x0a\x2e\x2f\xdf\xa4\x67\x4c\x09\xbb\xbc\x5f\xa3\x23\xfd\x3a\xe9\x7e\xdf\x30\xa2\x5c\x83\x57\xeb\x32\xc5\x62\x00\x50\xb3\x1c\xe2\x25\x2d\xb4\xaf\xb3\xa4\x6c\xdb\x8c\x38\x68\x7f\xc3\x68\xd6\x3a\x0f\x41\x4b\x75\x44\xed\x75\xd3\xd3\x34\xa6\x28\x27\x55\x54\xf5\xa7\x7c\x53\x15\x84\x6c\x8f\x90\xb8\x2c\x12\x8b\x86\xe6\x8d\x4b\x13\x65\x36\xd7\x18\x6a\xbe\xa0\x0d\xa0\x4b\xef\xcd\xee\x81\xe3\xde\x7b\x7c\x6f\x96\xd4\x4d\x26\x5c\x82\x79\x73\x51\x75\xf9\x9c\xf8\xb4\xec\x1b\xad\x71\xbd\x5f\x99\x7e\xa4\x2b\x0a\x91\x46\x10\x8c\x5b\xde\x8b\xb0\x05\x30\x71\xe5\xc4\xb0\xc1\x6c\x94\xcd\x84\x63\x37\x9e\xe4\xe6\x57\xd8\x92\x4b\x18\x8d\x39\xb1\x09\x33\xea\x3a\xde\xed\x36\xd5\x42\x9a\x7e\x29\x79\x9e\xd0\x78\x67\x56\xa4\x84\x70\x20\x14\xcb\x0b\xc8\x85\x7a\xcd\x6c\x2b\x8d\xf8\x3c\xca\xaf\x4b\x5a\x39\xeb\xfd\x4a\x76\xa7\x4d\xb3\x2f\xbe\x01\x43\xb1\x99\xf3\xfc\x24\x7d\xd7\x50\x87\x41\x1d\x0e\xc0\x37\x71\x4c\x8c\x81\x85\x81\xb6\xdc\x36\x3d\x23\x4e\x8b\x55\x34\x3d\xd7\x15\x65\xd2\x48\xbb\xfc\x13\xb1\xc5\xbe\x91\x25\x59\xd0\x92\x5b\x70\xc5\xc4\xc1\xf6\xb4\xa3\xcb\xb2\x20\x3e\x22\x4b\xc3\xd2\x62\x1a\x04\xd4\x76\x4f\xab\x69\x4d\x95\x31\xe2\x59\x22\xa1\x2a\xa7\xfa\x89\x21\x51\x3d\x58\xe5\xb4\x72\x1b\xda\x3c\x79\xa2\x4f\xf1\xa1\xbf\xc3\xfa\xa9\x57\xf9\x72\x49\xbd\xea\x68\x55\xbc\x4a\x17\x9b\x86\x96\xd4\x2f\xef\xde\x74\xbc\x60\xd6\xd9\xae\x69\x21\x89\x50\xd6\x05\x7d\xba\xb4\x00\xd1\x0c\x51\xef\xb7\x73\xfa\x75\xbd\xae\x88\x51\x03\xed\x5c\x82\xa5\x24\x4a\xa5\x26\xf6\x1d\x4d\xe1\x51\x4a\x4b\x98\x46\x40\x28\x03\x01\xf0\x18\x8c\xea\x18\x7c\x49\x34\xb6\x6f\x69\x39\xad\xfb\x7e\x67\x2d\xbf\xba\xba\xba\x90\xa6\x5d\xea\x6d\x6d\xe7\x01\x65\x60\x0e\x36\x2c\x1b\xd5\x69\x53\xcf\x40\x24\xfb\x76\x33\xa0\x1f\x1a\xab\xe5\x1c\xc0\x0b\x77\xe1\x09\xff\x77\xe9\xd1\x03\x3c\x77\x24\xf5\x5d\x83\x9a\x08\xc7\x25\xe4\x14\x22\xea\x66\xc7\xf5\x06\x54\x7d\xae\x09\x9e\x94\x21\xdb\xb8\x7c\x91\x70\x28\x17\x32\x65\xb0\x4b\x6f\x69\xc0\xca\x46\x2f\xcf\x08\x0d\xe0\xa5\x48\x5d\xb6\xcd\x96\x52\x5f\xd0\x1f\x9f\xe0\xbb\x7f\xc6\xf5\x01\x26\x2f\x0a\xe2\xf2\xdd\x51\xfa\xee\xc5\x49\xfa\x9f\xbf\xff\xee\xbb\x59\xfa\xba\xe7\x95\xc8\xc4\xf9\x37\x26\x2a\xfa\x14\x51\xcb\x81\x12\xc7\xea\x89\xee\xee\xf1\xca\xba\x97\xfe\x88\xdc\xff\x5e\x7e\xce\x49\x44\x2c\x67\x8b\x66\xfb\x8c\xb9\xea\x36\xa7\xb5\xcf\x39\x44\xae\x4a\xc7\x97\x65\x5d\xd0\x87\x0a\x6c\x9a\x17\xb0\x03\xcd\x0f\xc4\x37\x11\x5c\xb3\x45\x53\x2f\xab\x96\x07\xf4\x73\x0d\x6a\x30\x91\x96\xb6\x6b\xe4\x98\x54\x44\x48\x23\x0e\x52\x2d\x6f\x3c\x28\x86\xfa\x96\x13\x75\x42\x13\xa1\xba\x4c\x45\x74\x87\xe5\x4b\x21\x46\x9e\xb7\x73\x1a\x5e\x6b\xf8\xee\x3c\xc2\x9b\xe5\x92\xf7\x5a\xdb\x25\xb4\x85\x73\x49\x95\x0d\x23\x04\x21\x62\xdc\x41\x28\x3f\x55\x22\x3e\x39\x7d\x9b\x96\x9f\x88\xda\x98\xeb\xb5\x4d\xb1\x5f\x80\xc2\x18\xf6\x88\x99\x35\xb1\x88\x8e\xd6\xc6\x42\xf6\x95\x80\x49\x70\xd7\x98\x13\x2d\x08\x88\x78\x83\x31\x6b\x12\x24\x3f\x11\xe7\x6f\x83\x26\x5e\x5a\x92\xf6\x7e\x04\x3b\xea\x94\x2b\xc1\x23\x5f\xd0\x8c\x13\x55\x48\x2f\x3a\xe9\x94\x64\x13\xb9\x13\x1d\xef\xe9\x84\x92\x17\xd4\x97\xf9\x0d\xf8\x4e\xc7\xc4\x50\x94\xcb\x7c\xbf\xe9\x7d\xbf\x06\x9b\x88\xb5\x74\xc9\x87\xa4\x30\x6f\xb2\xc0\xa8\x83\xa0\x9e\x6e\x58\x96\xc8\xb0\x26\x39\x47\x36\x1b\xa6\x57\x39\x85\xd8\xbe\x43\xec\xa9\xc4\xf4\x64\x5e\xe4\xd7\xf9\x32\xc9\x3f\xce\x77\xcd\xbe\x13\xc9\x27\xc5\x56\xcb\x35\x5a\x05\x2c\x2a\x4c\xf7\x65\x96\xa8\xb8\x94\xe9\x71\x2d\xfb\x54\xe1\x30\xe4\xc8\x55\xaa\xd4\x23\x1c\xf3\xb5\xbf\x30\x00\x9f\xb2\xba\xc9\xb2\xae\x37\xe7\x3c\xc8\xce\x1d\x86\x04\xe7\x3c\x5c\xb4\xc0\x22\x1c\xcd\xd2\xa7\x0a\x6c\x5e\x09\x06\x78\x21\xaa\x41\xd3\xd4\x54\x57\x96\xa8\x81\xca\x3f\xa1\x3a\x51\x66\xa6\x07\x04\x95\xd9\x4d\xf4\xe3\xed\xbe\x68\x20\x3b\x60\x2f\xa1\xd2\x86\xd6\xc1\xbe\x9e\xb6\xd5\x6a\x4d\xbc\xb5\xb9\x3e\x12\xa4\x5c\xaf\x9b\x92\xd7\xcf\xeb\xd3\xa7\xdf\x4a\x3f\x56\xbc\xb3\xb8\x42\xbc\x27\xe5\x7b\x22\x2e\xc2\x98\x92\xb1\x74\xc1\xed\xed\x80\x1c\x1d\x45\x04\x68\x78\xf8\x1b\x89\x12\x8e\x69\x28\xaf\x08\xf3\x94\x49\x78\x18\x29\x6d\x07\x48\x69\x58\xb9\x92\xca\xfb\xd9\xaa\xc1\x41\xc6\xe4\x7b\xde\x2d\xe9\x3c\xdc\xf5\xd9\xaa\xea\xb3\x25\xb3\x2e\xae\xf9\x05\xd7\xc0\x9b\x37\xe5\xa4\x0f\x28\xeb\x41\x4a\xfc\x8f\x4e\x67\xc5\x0f\xe9\xfd\x4f\x2a\x31\x7e\xcf\x3c\x29\xa3\x55\x54\x6d\x30\x25\x7a\x3c\x6a\x4b\x11\x58\xed\x0c\xee\xa4\xb6\x6e\xbf\xc3\xde\xa6\x02\xa2\x3b\x0d\x14\xcd\x75\xcd\xab\x0f\xcc\x97\xf8\x4c\xb5\xa8\x68\xcf\x98\x57\x75\x4e\x1b\xbc\xd5\x02\xa6\x7e\x9f\x68\xe2\xed\xf9\x15\x00\x57\xcd\x7c\x5f\x6d\x0a\x03\x98\x25\x26\x44\x92\x08\xa9\xb3\x1f\x8a\xd5\x96\x54\x49\x5f\x16\x4d\xcb\x12\x09\x46\x63\x05\x0f\x88\x42\x2d\x8b\x18\x48\xae\xf8\x3c\x03\x58\x94\x73\x52\x0b\xa3\x81\xa6\x1f\x47\x35\x96\x69\x40\x37\x55\x57\x3f\xe8\xd1\xd3\xc5\x9e\xda\xa2\xa9\xe7\x64\x2a\xd8\xa5\x8f\x9f\xd1\xff\x09\x4b\x48\xb2\x03\xac\xc6\x88\xe7\xcc\x54\x32\xf7\xb2\x16\xa3\xae\x46\x44\xee\xa6\xda\x48\x38\x18\x6b\xd8\x5f\x23\x81\x6e\x2f\x54\xcb\xea\x92\x0d\x4d\x6b\xf9\x0d\x7d\xf0\xc9\x6d\xb5\xc1\x24\xe4\xbd\x1e\xaf\x1a\xc2\x1b\x13\xc8\x91\x2c\x9a\x25\x0d\x8d\x79\x69\x9f\x7f\x2c\x71\x22\xa3\x3d\xff\x3d\xeb\x81\x3e\x24\x7b\x91\x41\x9b\x4d\xe1\xce\x3b\xa0\xec\xa6\x1d\xaa\x31\x3c\x90\xa3\xda\x8e\x84\xed\xc5\x3a\x73\x5a\x24\x46\x4a\x5f\x7e\xc6\xee\x8f\x2c\xaf\x54\x62\x92\xe7\xac\x64\x7b\x83\xe9\xe2\x41\x9c\xdd\xf8\xd9\x22\x09\x94\x16\x0a\x1d\x66\xe7\x0d\x63\xed\x53\xe9\xa0\x4e\xc2\xd4\xb8\x00\xd5\x45\xb2\xb2\x56\x15\x6b\x1b\x28\x4b\x54\x22\x9a\x2b\x6a\x91\x2e\x01\x2b\x53\x15\x18\x38\x1e\xcd\xa7\x9e\xec\x67\x34\x31\x50\x1b\x58\xcb\xc4\x17\x6f\x64\x5d\x04\x6d\x26\xef\x55\x3d\xf6\x21\x31\xb8\x77\x71\x3e\xf1\x94\xf5\x87\x40\x05\x95\xd9\xec\x9a\x2a\x0a\xda\x13\x65\x2b\x5e\xa4\x58\x97\x3b\x96\x3e\xb6\x1d\xc8\x62\xc3\x27\xed\x1b\x95\x9f\x1d\x81\xfc\x24\x0c\x9b\x28\x86\xd8\xdc\x37\x49\xd7\xf0\x82\xcb\xbe\xb2\x8a\xe7\x15\x91\x02\xca\xc7\x9b\x9d\xe8\xc6\x48\xcc\xe5\xe9\xa3\x55\x76\x73\x14\x9f\xac\xd6\x79\x47\x4c\x9c\x64\x05\x2d\x56\xcc\xec\x84\xcb\xd3\x4e\xe7\x39\xac\x19\xe8\xf3\x40\xe5\x52\xb2\x69\x87\xbb\x30\xf7\x50\xf8\x9c\xb6\xe2\x64\x27\x48\x46\xa1\x00\x35\xd1\x26\x21\x6c\x5b\xb2\xf8\x9c\x6d\x45\x8d\x26\xbf\xd2\xb3\x32\xa1\xed\x70\x45\x0b\xda\x08\xf6\x29\x6b\x3f\x56\x38\x65\x28\xbd\x32\x40\xd9\x87\x8c\x58\x21\x2c\xe5\x27\xd3\x5b\x12\x67\xb8\x86\x6a\x88\xd6\xf6\x08\xfd\xb4\x65\x51\xf6\xcc\x18\xbb\xc8\x08\x10\xf5\x3a\xe2\x16\x1e\x89\xc7\x29\x2b\x20\x43\x28\x15\xb9\xfd\xb0\xb8\x00\x73\x8d\x1f\xe7\xcf\xee\x77\x3f\x3e\x99\x3f\x73\xbc\x75\xb1\x2e\x17\x1f\x85\xfe\xaa\x7a\xde\x7c\xc6\xc1\x16\x8a\x12\x3a\x53\xf3\x1a\xbb\x5f\xa4\x74\xd0\x6d\x71\xae\x22\x5e\x40\xc5\x08\xf1\x9c\x1b\x4d\x1a\x75\x86\x59\x06\x6d\x6d\x0b\xac\x2a\x10\xb8\x27\xc8\x63\x4e\x65\x92\xc4\x06\xe0\x69\x12\x03\xd9\x54\xdb\xaa\x1f\xd1\x04\x73\x98\x5c\x69\x4b\x75\x65\x86\x24\xd4\x85\x61\x62\x94\xc4\xa7\xa9\x1a\xda\x57\x8d\x4e\xae\x73\x3a\x48\x7d\x9f\x12\x6d\xec\x69\x7f\xe2\xce\xd2\x78\x88\x51\xe7\xbc\x31\xd3\x21\x2a\xef\xb2\x7d\xad\xf8\x2a\x0b\xa3\x92\x57\x15\xb6\x0f\x6e\xd7\x68\x39\x80\x32\x94\xea\x59\x20\x7d\xe8\x50\xf9\x68\xa6\xba\x2d\x14\x63\x9e\xce\x1d\xaa\x58\x6e\xcd\x27\x67\x85\x78\x5e\x5d\xca\xd9\x17\x18\x60\x38\x9e\x41\x3a\x40\xf9\x69\xa1\x53\xd8\x47\x4a\x01\xa6\xe7\xfb\xbe\x6f\xf8\x5c\xb2\x61\x72\x90\x32\xd6\xeb\x13\x00\xe2\xa8\xe5\xeb\xc3\x74\x86\x78\x12\x16\x5b\xda\x39\x21\x23\x3a\xe4\x35\x2d\x1a\x6e\x3e\xd1\x0d\x46\xa7\x9b\xa0\x03\x2b\x44\x97\x94\xd7\x37\x5e\xbd\x81\x5e\x70\x83\xfd\x74\x5f\x1e\xb6\xe5\x23\xdf\x1b\xb7\x18\x50\xc2\x7a\x24\xc5\x83\x85\xf2\x0e\xb9\xa2\x62\xb5\xe5\x64\x7b\x9a\x2a\x2a\x3d\x7d\xb4\x31\x7a\x91\xcf\x24\x4f\x9c\x93\xc4\xca\x02\x88\xa6\x51\xa0\xf4\x6c\xd0\x96\x3f\x12\x8e\x31\xd8\xc7\x5d\xf6\x5b\x53\xdf\x34\x59\xb7\x96\xe3\xb7\x75\x8f\x8e\xee\xf5\x2a\xd2\x5b\xe1\x5e\x04\x44\xf7\x5f\x78\x03\xe4\x81\x7e\x48\x74\x36\xca\x60\x51\x28\xb5\x5a\x8e\xcd\x9a\xac\x0d\x07\x6f\xc2\xda\x5f\xca\x96\x8f\x77\x00\x8a\x67\xeb\x10\x16\xe3\x41\x38\xa6\xe8\x77\x77\xc7\x10\x35\xe9\xc8\xf6\x7b\xee\x75\x53\xe4\xd4\xed\x1b\x68\xa2\x7f\xa5\x0d\xa7\x86\x8e\xbf\x49\x28\x43\x8e\x99\x67\xf8\x20\x50\x3e\xf3\x7e\x48\x78\x4b\x7f\x3b\x10\x56\x79\xc7\xd2\xb4\x40\x5e\x42\xd6\xcf\xd1\x25\x86\x1b\xca\xc5\x84\x60\xfb\xae\xf4\x77\x19\xf8\x72\x63\xba\xbc\x7c\x75\x65\x87\xd8\xcb\x57\xe9\xc7\x52\x2b\x7f\xd5\xf7\xbb\xee\x17\x28\x34\x44\x3b\xc1\xaa\x8c\x8b\xfc\x86\x85\x48\x49\xd6\x1f\xc8\xb8\x2a\xf3\xad\xf6\x92\x3f\xa5\x8a\x63\xda\x5d\x35\x91\x3f\x69\xd3\x0d\x14\x65\x09\xc4\xa9\x9f\xa7\xc4\x68\x77\xa8\x29\xf5\xa2\xe4\xb7\x91\x76\xef\xb7\x24\xdf\xec\xe8\xdc\xc5\xf2\x4c\x00\x06\x45\xd6\x5c\x8f\x5f\x29\x40\x40\xc1\xfb\x2d\xcd\xfc\x02\xc7\x4d\x2a\xf0\xf0\x71\xf6\x28\x50\x6c\xc6\x95\x15\xb4\xb4\xff\x50\x85\xfc\xcd\x42\x6f\x58\x6f\x57\xfd\xdd\x46\x11\x55\xc7\xe9\xc4\x29\x09\x02\x22\xa6\x87\x72\x40\xd8\xa7\x59\xdc\xec\x59\xaf\x45\x09\x24\xd2\x46\x55\x6f\xf3\xcf\x77\x15\xdc\x36\x13\xe5\x84\x81\xf9\x42\xc6\xa6\x74\x88\xf1\xb2\x20\x78\xd6\x5c\x1d\x84\xa6\xa9\x27\x90\xaa\x5e\x6c\xf6\xc5\xc1\x9e\x74\xfb\x39\xed\x71\x2c\x2b\x3f\xb8\xdf\x3d\xe0\x2a\xeb\x8f\xb4\x29\xd7\x0e\xfe\x17\xf9\x9d\xe2\xf7\x0f\x76\xcd\x46\xa7\x59\x3d\x40\xa4\xee\xc2\x8d\x64\x8b\x82\x77\x07\x1c\x04\x66\x9e\xa9\x84\x87\x03\x47\xfe\x50\x49\xe8\xe9\xcd\x2d\x6c\xd6\x43\xe0\x9c\x44\x24\x38\xf3\x77\x83\x19\x6f\xf1\x19\x0b\xdd\x75\x28\x5a\xbb\xcd\xdf\x76\x51\x40\xc8\x0d\x51\x36\x2e\x37\x58\xa0\x07\x8b\x93\x24\x33\x51\xfa\x7c\xac\x4b\x3e\x50\xbe\xa7\x25\x36\x51\x81\x5b\x79\x07\x0b\xca\xe4\xa3\x10\x8d\xbc\x18\xf1\x8e\x71\x41\x06\xa3\x63\xdf\x66\x53\xae\x58\xe9\x68\x0d\x47\xad\xe9\x44\xd3\x96\x27\x60\x21\xc1\x79\x0c\xbb\xc9\x0a\xe7\x35\x3c\xc4\xb8\x39\x8a\x8f\x8f\xac\x8b\xa1\xaa\x5a\xdc\xef\x06\x87\x48\xed\x86\xee\x00\x5b\x3e\x2f\x75\x7b\xde\x80\xf8\x6c\x25\xc2\x55\x3c\x1b\x2c\x5e\xa0\xaa\x12\x4d\x1c\xae\x9e\x68\x91\x0f\x9c\x77\xd5\x0f\xb0\xaf\xac\x3a\x54\x3a\x8c\x2b\xd6\xca\x1d\xd0\xa1\x6a\xdd\x81\xb8\xfc\x5c\x41\x81\xfb\xb2\x62\xc5\x20\x8e\xc4\x4e\x13\x80\xbc\x59\xb2\x21\xe6\xc1\x47\x2f\x19\x95\x88\xe1\xcd\x27\x5e\x8d\xdc\x1e\xe7\x4a\x39\x51\xe8\xea\xa0\x78\x9e\xf5\x70\x8d\x6b\xa0\xb2\x38\x22\x41\x86\x4b\x50\x3f\xb1\xb8\xf3\xcd\x75\x7e\xd3\x41\x53\x64\x1c\x8a\x95\xd7\x52\x9c\xd9\x0f\x89\x39\x2b\xf4\x2a\xbc\x22\xa1\x15\x67\x98\x60\x5d\x3f\x6f\x36\x4e\x18\xb9\xc6\xf1\x18\xdc\x45\x75\x4f\x9f\x82\xed\x5a\xf7\x26\x3e\xda\xf3\x41\x98\x8f\x28\x92\x1d\x54\x84\xbb\x47\xdd\x29\x26\xca\x1e\xb1\x10\x48\xcd\xb0\x48\x46\xfc\x5b\x70\x4d\x52\x2e\x61\x16\x5d\x0a\x74\x25\x7b\xaa\xff\xb1\x88\xf5\x15\xe1\x90\x8f\x89\x5e\x7d\xc0\x7b\x19\xcd\x8a\xa9\xf8\x25\x1d\x87\xff\xa4\xeb\x69\x09\x30\xa6\xed\x42\xff\xd7\x40\x1e\x49\x91\x8b\x25\x06\x34\x75\xeb\x6a\x97\x36\x50\x1b\x87\x28\xf4\x64\x1b\x08\xd2\x7c\x99\x51\xe2\xd8\xc0\xfa\xf3\x36\xaf\xbb\x65\x09\x45\xfa\x36\x5d\xf2\x9d\xf1\x4c\x9b\x66\xb9\x5c\x2e\xf6\x0f\xb4\x2c\x47\x30\x34\x1d\xee\x2e\x98\xbb\x60\xa2\xe2\xa6\xe5\x66\x05\xca\x5a\xf4\x01\x58\xf5\x35\x75\xd6\x07\x26\xb3\x11\x0a\x20\x1b\x47\xf7\x64\xd6\x9b\x4f\x65\x88\x88\xe5\x1f\x1d\x79\x80\x75\xbd\x2b\x90\x0b\x96\x78\x9a\xa4\x51\x68\x6b\x70\xcd\x3b\xbf\x89\x47\xcf\x45\x83\xbb\x73\x5a\x23\xa5\xb6\xc2\x0b\x83\xd7\xca\xa0\x42\x68\x69\xfc\x89\x28\x91\x7b\xf6\x6c\x4e\x5d\x5c\xac\xa3\xd5\x79\x85\x9c\x54\x72\x46\x0b\x34\x79\xcf\x4d\x7f\x48\xe4\xa6\x3d\x73\x4a\xf9\x13\xb9\x79\x17\x89\x56\x95\xec\x7d\x6a\x9a\x78\xbe\x2a\xb1\x22\xa2\x77\xbf\xb5\x24\x6f\xc3\xa6\x14\xfd\x5b\x43\x32\x07\x74\xeb\x7f\xa2\x2f\x96\xf1\xeb\x24\xba\x5e\x1c\xa8\x49\x20\x46\x57\x3d\xaf\xb0\x0b\x5a\x18\x24\xf6\x1c\x6b\x0a\x9d\xd2\xc1\x1d\xa0\xb9\x79\x61\xdf\x34\x1f\x39\x33\x3d\x5e\xda\xf2\xa5\x70\xa2\x46\x7b\x61\xdf\x09\x1f\xf2\xb7\x33\x6c\x0e\x2c\x7e\xe3\x9a\x22\xd8\x12\x58\x5a\xe0\x09\xb3\xbc\x59\x00\xbf\xcb\x7b\x62\x8b\xb5\x1c\xc4\x84\x43\x85\x45\x35\xdb\x55\xe1\xee\xb3\xb9\x16\xb6\xfd\x10\x54\x7c\x48\xbc\x49\x8a\x59\xa3\x4c\xa9\x85\x95\xc5\x74\x2a\x23\xff\x2b\x7d\xaa\x42\x07\xec\x0b\x1f\x7a\x20\xc7\x4d\xb2\x5d\xff\xc1\x3c\x26\xf8\x99\xa8\x0a\x2c\xd6\x7f\x29\x79\x3f\x4d\x4f\xe5\xc3\x8e\xf6\xfb\x0a\x63\xaa\x8a\x24\xd9\x01\xef\x81\x01\x8d\x4e\x84\xeb\xb4\x1a\x4a\x79\x4d\x7c\x3b\xdc\xd9\xd9\x66\x43\x0a\x31\xe1\xda\xe5\x10\xa4\x00\xbe\x9b\x08\x8e\xa5\xac\x5c\xc6\x79\xb5\x0e\x2e\xbe\xf8\x3a\x87\x4f\xd9\x04\x76\x5d\xce\x53\x56\xf7\x12\xe1\xd0\xe9\x4f\x07\xba\xcd\xe9\xe0\xf8\xa9\xca\x9d\x62\x89\x66\x8b\x4d\x74\x74\x17\x7d\xc1\xe6\x39\xb8\x4c\x1f\xdb\x91\xf1\xcd\x94\x5e\xf6\xbc\xd1\xcf\x64\xbf\xe3\xdb\x93\x60\xc0\xbf\x20\xc1\x0d\x38\xce\x0f\xce\x63\x18\xba\x15\x73\xd2\x8c\x80\x17\x76\x48\x83\x95\xcb\xcc\x96\xcf\x84\x7d\x98\x2e\xa1\x62\x08\xe2\x35\x2c\x60\x31\x6a\x1c\x03\x64\xca\x7d\x2e\x86\x4f\x3b\x63\xba\x6e\xae\xd3\x4d\x55\x7f\xec\x14\x9b\xcc\xc7\xc2\xc3\x29\x54\x52\x44\x84\x7b\xb1\x1b\x92\xcf\xb1\x99\x92\x5d\x33\x0d\x56\xb8\x5d\x46\xc9\x85\xdb\x31\x92\x27\x61\xfd\x11\xdd\x2e\xc4\x96\x25\x8b\xc9\x60\x6a\x76\x79\x47\xa3\x6c\x9a\x4e\x15\xa0\x9e\x89\x70\x1a\x94\x2a\x0a\xa5\x38\x77\x10\x3a\x25\xc7\x76\x65\x88\x35\x95\xd8\x25\x9f\x75\x00\x2b\x34\xab\xb6\x62\xf6\xf7\x8b\x5d\x01\x62\x7e\xdc\x69\x02\xd9\x30\x2a\x89\x7b\x1f\xde\x7b\xbc\x6d\xec\x82\xd1\xb8\xa1\x65\x1e\xd9\xa6\x2f\x18\xc0\x96\x1d\x75\x76\x48\x1f\x5a\x81\xa9\xf0\xef\x20\x13\x23\x82\xf0\x52\x48\x26\xde\x31\x88\x66\x13\x89\x76\x27\x7a\x19\xe1\xf2\x19\xb3\x41\xfe\x5b\x5c\xdf\x39\xa5\x02\x1f\xc8\xb3\x01\x88\x1e\xd8\x23\xc8\x49\x09\xda\xda\x3a\x28\x3d\x0f\x7a\x3f\x5a\x2b\x56\xee\x9a\xb0\x10\x0e\x5c\xa9\xbb\x98\x99\x1d\x0f\x6b\x52\xe5\x2e\x10\x06\x17\x62\x74\x52\xe3\x22\x51\xaa\x20\x54\xe1\x80\xd1\xf9\x73\xc5\xb1\x70\x1f\xbe\x00\x10\xab\x43\x07\xa0\x86\x87\xf1\x79\xb3\x34\xeb\x85\x90\x91\xed\x5a\x22\x0f\xda\x68\x07\xfa\xb5\x11\x0b\x8b\xd8\x15\xb8\x55\x83\xab\x78\xcf\xa5\xe8\xc4\xa8\x75\x31\xbf\xc7\x97\xa5\x38\x1d\x11\xd1\x31\x8b\xba\x9a\xac\xcc\xd9\xe5\x0a\x8b\x76\x9d\xa4\x1f\xc2\xb8\x74\xb8\xa7\x9a\x32\x00\xb0\xe1\x28\x83\xef\x27\xb4\x85\x18\x8d\x8a\x1d\xc6\x7f\xab\x5a\x4c\x21\xdc\xd5\x5c\xc4\x40\xd2\x53\x70\x14\x9a\x37\xd1\x4b\x1b\x3f\xf9\x69\xd8\xb8\x9f\xf0\x9f\x07\x2a\x6d\x19\x5c\x4c\xef\xdf\x24\xd4\x25\x50\xa3\xbf\xe2\x2c\x30\xcd\x03\x8d\x19\x83\x85\x20\xaa\x8e\x74\xc9\x59\xa4\x73\x87\xf6\xfc\xab\xf4\xec\xbc\x77\xff\x13\x54\xec\x51\x5b\x5e\xc5\xee\x7a\x39\x58\x0e\xdc\xbd\xc1\xce\x39\x5a\x18\x94\x01\x39\x42\x49\x3a\x90\x0e\x94\xa8\x9d\x90\xc0\xcd\xc8\xd9\x84\x31\x44\x49\x10\x25\x94\x1a\xb0\x85\xb0\xa0\x0a\x33\x22\xd8\x00\xca\x41\xa5\x1b\x29\x8d\xe3\x89\x3f\xc6\x49\x8c\xb0\x22\xb0\xb0\xd3\xa3\x8d\x59\xa4\x58\x3d\xd9\x6d\x19\x11\x72\x89\xee\x4c\xba\x46\x37\x64\x47\x7a\xfc\x59\x57\xab\x35\x8d\xab\xda\xf2\xd5\x31\xc8\xc9\xee\x27\xfd\xe9\x94\x7f\x11\x43\x69\x56\x35\xeb\xae\xb8\x05\xb1\xe1\x72\x1b\xcc\x8f\x5d\xdf\x36\xf5\xea\xd9\x69\xc3\xc7\x46\xd6\xe8\xf0\x26\xf8\xd3\x8f\x4f\x34\x9d\x98\x26\xcf\x21\x1b\xfc\xbd\xac\xfa\x57\xfb\xf9\x83\x2e\x5d\xb1\x05\x2a\x2e\x55\xf2\xc0\x2e\x55\xad\x06\xc4\xc0\xee\xba\x76\x68\x81\x95\x2a\x2d\xf4\xae\xd9\xd0\x2a\x89\x8b\x34\xdb\xad\xcc\x2f\x6d\x00\x5b\x81\x44\xff\x61\x68\x50\xd6\xc0\x5c\xd9\x2a\x7e\xa8\xc2\x99\x23\x73\x3f\x3f\x3a\x6d\x26\xee\x45\x7a\x12\x15\xb8\x18\x18\x37\xa7\x75\x1f\x6c\x1b\xac\x23\x49\x5d\x31\x08\x0a\xe3\x62\x98\x48\x56\x3b\x79\x15\x8d\x29\x59\x70\x12\x40\x1d\x56\x9e\x8a\x52\x4f\x44\x62\xe2\x34\x6b\x53\x64\x85\x92\x95\xdb\x42\x5a\x01\xfd\xf2\x5e\x61\x2a\x5c\x08\xbe\x5e\x99\xc3\x04\x3b\x58\xe5\xca\xd8\x64\xf4\xca\xd6\x6c\x04\x01\x63\x53\x9c\x78\xce\x36\x84\x99\xe2\x6d\xd6\x8b\x90\xa9\x89\x85\x92\x30\x36\x21\x49\x3a\x69\x30\xdb\xfe\x42\xa6\x36\x6a\xd7\x0f\xdc\x9a\xfb\x02\xbe\x86\x31\x1d\x03\x1d\x34\x16\xe8\x46\x74\xa6\xde\xa8\x26\x04\x19\x6c\xdd\xea\x4f\x3d\x6f\x1b\xbd\x1f\x4b\x2d\x11\x73\x42\xc7\x9c\xbe\x8c\x16\x33\x77\x02\xf6\x88\x62\x6f\x03\xe5\xca\x7f\x4d\x8b\x9c\x38\x41\xdf\x7c\x24\x62\x1a\x17\x41\xfa\xa1\x42\x8e\xc3\xd8\x59\x43\xf9\xcb\xb1\x67\x0f\xc3\xd3\x87\xde\x33\x1f\x64\x31\x01\x67\xd1\x5a\x9d\xcd\x93\x68\x86\x60\xeb\xcd\x86\x21\x85\x70\x12\x65\x04\x6a\xd8\xe3\x38\x00\x49\x58\x35\x03\x41\x7d\xcb\x1f\xfa\x3b\x9c\x96\xa8\xfe\x60\xb9\x10\x03\xdf\xd7\x01\x03\x15\x72\xc8\x04\x15\x6e\x90\x17\x74\x94\x84\x61\xe3\xb1\x54\x78\xc5\xd9\x9d\x5a\xf5\xea\x75\xbd\x15\x79\xa9\x89\x58\x03\x00\x14\x84\x77\x0e\x11\xf8\xe5\xb5\x0a\x56\x8b\x9a\x62\xa8\xc9\x22\xe6\x80\xa8\xce\x58\xe6\x5a\x4c\x33\xd2\xe3\x8b\xd7\xb4\x67\xb8\x06\xad\xd2\x9f\x73\x92\xa4\xa5\x0b\xd7\x4e\xa3\xc1\xc4\x36\xe4\xb9\x4e\xe6\x97\xe2\xa6\x40\x45\x49\x2c\x71\x37\xa8\xd1\x80\x64\x30\x71\xbe\xe0\xb8\xec\x02\x2d\x8f\xb4\x86\x9e\x0c\x77\x2b\x37\xd4\x6f\x08\xb3\x4e\xd7\xc8\x4b\x6b\x77\xc3\xfc\x3f\xb0\xc5\xca\x05\x43\xd7\xe0\xe0\x03\x23\x30\x82\x84\xa6\x23\xe5\x25\xdc\x3a\xfe\x61\x1d\x56\x0e\x12\x4e\x65\xc8\x46\x26\x27\xd3\x33\x95\xc9\x62\x53\x9c\x65\x67\xf5\xc4\x63\xbe\x8b\xcf\x30\xe1\xfb\x73\xf8\x2d\x5c\x26\x1c\x55\x40\xca\x17\x93\xcd\x3a\x8a\x96\xa6\x07\xfc\x26\x95\x8d\x50\x0c\x19\xb8\x15\x39\x5d\x28\x45\x04\x36\xc2\x54\xcb\x75\xb9\x61\xe3\x5e\x6d\xdd\x5f\x6f\xea\xd0\xa3\x1b\x7f\x05\x0a\x4e\xa2\xa5\x17\x71\x05\x15\xa1\x9a\xce\x2a\x23\x08\x5a\x6e\xb8\xe4\x97\xa3\xbc\xed\xd7\x27\xc7\x6f\xdf\x9e\x5f\xf9\x6d\x9a\xd7\x41\x5d\x90\x30\xf1\x8d\x33\x87\x1b\xf5\xcb\x8c\xe2\xdc\x04\xc6\x10\xde\x2c\x4f\x4b\x1c\x82\x0b\xd9\x94\xd5\x4e\x9f\xab\x06\xbc\xa7\xe1\xbe\x18\x2f\x8f\xfa\x5f\x1c\x9a\xbf\xe4\x3d\xcb\x37\x1f\x12\x53\x76\x9f\xf3\xdf\x24\xbc\x2f\x08\xee\x68\xb0\xf4\xfc\x55\x8e\x37\xbd\xa7\x0e\x34\xc5\xe8\xfe\x00\x4c\x7a\x9f\xe3\x68\x44\xb8\x6f\xb0\x57\x2c\x53\x5c\x66\x1f\xb1\x3a\xb4\x69\xb1\x60\x18\xb9\xfb\xba\xfa\x7d\x0f\x01\x8d\x0f\x46\xc4\x3c\xd8\xca\x72\x5e\x6d\x64\x43\xf9\x8b\xfb\x21\xe9\xfc\x35\x30\x0f\x0f\x1a\xa7\x5f\x3f\x76\x3b\x36\x52\xa5\xbd\xa1\x7b\x7a\x6f\x5f\xa5\xac\x5d\x63\x13\xad\x7b\xcf\xe8\x18\xc3\x57\xdc\x34\x7d\x04\xf1\x6c\x54\x1d\xbb\x88\x2d\x44\x15\xe7\x8c\x7d\x40\xb7\x9a\xce\xab\x85\x45\xde\x48\xff\x27\x88\xff\x03\x6d\xb2\x3f\x9a\x1f\xc7\x43\x3d\x25\x13\x8e\xb0\x76\x3f\xe5\x9b\x7d\xac\x2c\xe1\xd6\xb9\x4c\xf7\x28\x41\x51\xd5\x18\x0f\x7d\xd9\x90\x67\x46\xe9\x9c\x07\xcb\x74\xa4\x4e\xa0\x2f\xf0\x3a\xc9\x37\xbd\xe8\x8a\xd3\x00\xfd\xcc\x0b\xd0\x6a\x19\x4e\xb1\xde\xe9\x39\x96\xd3\x2d\xda\x0a\x96\xf5\x92\xce\x9e\x8b\x69\xe0\xb5\xe8\x12\x7d\xbb\x97\x44\xa8\x34\xa6\xd9\xaa\xea\xe9\x8c\xcc\xfe\x53\xb0\xc3\x4e\x68\x9d\xd3\xd6\x03\x9f\x47\xf9\xb2\x94\x51\x51\xde\xa5\x05\x16\x3a\x2e\x96\x0d\x95\x64\xf9\x43\x7f\x4f\x94\x52\x40\xf3\xb8\xe4\xeb\x8a\x26\xab\xea\x8a\x57\xea\x6b\xfa\x43\xbb\xb0\xc8\xec\x31\x5d\x89\x40\x8a\x4a\x54\x21\x23\xa7\x66\x57\x8f\xda\xc5\xe9\xac\xa8\x41\x5c\x30\x2f\x6a\xba\xad\x2a\x6f\xa0\x0d\x09\xe9\x73\x24\xa8\xa3\x23\xf5\x84\x66\xe1\x93\xc8\x2f\xe2\xfa\xf8\xda\x52\x1e\xf2\x99\xed\xd1\x01\x45\xf0\xf0\x36\xf5\xeb\xf5\xc1\xc3\x1a\x6e\x57\x0b\xb3\x41\x51\xc6\x4a\xfe\x54\xad\xc9\x22\xa3\x85\x44\x1d\x31\xcd\x1f\xcd\x79\x62\x8a\x43\x5a\x98\x7b\x78\x29\x9b\xce\x22\x8f\x57\x17\x0c\x31\xe7\xb4\x3a\xee\x3d\x13\x9c\xd9\xd2\xb2\x5a\x75\x0a\xce\xd4\x17\x34\x98\x03\x85\x98\xc1\x77\x24\xb3\x23\x2b\x5b\xe4\xf0\x71\x50\xd5\x2f\xd3\x50\x11\xf7\x55\x09\x28\x0f\xfc\x51\x9e\xbc\x7c\x7d\x05\x6f\x14\x9a\x31\x78\x0f\x98\xcb\x0d\xdb\xe9\xce\x5c\x9d\xcc\x98\xab\xae\x93\x0d\xbb\xae\x80\x78\x5e\x83\x76\xd3\x6e\xd3\x41\x5c\x45\x0e\x98\x5a\x59\xc8\x72\x7c\x6d\x76\x3d\x08\x18\x33\x14\x7e\x2d\x89\x5a\x90\x13\x71\x72\x8d\x6f\x52\xcc\x54\x29\x0f\x1d\xa1\x12\x59\xe8\xc6\x3d\x74\xd9\x2f\x1d\xff\x80\x67\x0b\x9b\xe4\xc7\x8c\x03\x8e\xb5\xc1\xbc\x85\x86\x74\xbc\xb5\x14\xbc\x37\xee\x6e\x32\xd6\xf0\x62\x3b\xdc\xdd\xf8\x84\x40\x6e\xa0\x8c\x2a\x02\x76\x36\x0f\x17\x98\xa7\xff\xf8\xdf\xff\xe7\xf1\x09\x77\xfc\xa4\x6f\x37\xf4\xa5\x62\x59\x02\xd3\x35\x92\x42\x32\x08\x69\xd2\x00\x32\x37\xd5\x4e\x1c\xbf\x17\xa8\xd9\x35\x91\x9e\xff\x6b\x22\x93\xeb\x68\x0f\x24\x0c\x6f\x70\xce\xa0\x0d\xf5\x27\xec\x3b\xfd\xed\x3e\xa1\xec\x37\xce\xa7\xe7\x6f\x48\x9e\xbf\x56\x8b\x8a\x5f\xe4\x2b\xb1\xdf\x7f\xc5\xaf\x3d\x5b\x3a\x8b\xf9\x06\x7f\x24\xfa\x8b\xaf\x7c\x12\x75\x4c\x66\x66\x9d\xf0\x61\x4a\x29\x8d\x0e\x52\x21\x67\xfd\x7d\xcf\xa3\x14\x1d\xc0\xd3\xf4\xcf\xfc\x2b\x85\x4f\xaa\x0e\x85\x19\x96\xe3\x3e\xa0\xe7\x01\x0b\x0b\x2d\x77\xc1\x91\xd5\x7e\xde\x73\xab\x3c\xde\xdd\x6e\xcc\x1c\xd0\x00\xd9\xdd\x26\xd9\xed\xd9\x88\x88\x69\xc8\x5a\xbb\xa0\x14\xf8\x2e\x71\x22\xcb\x22\x41\x0d\xee\x3e\x30\xaa\x03\xcd\x53\x77\xc5\xf7\x6c\x72\x13\x47\x96\xd7\x68\xb1\x61\xf3\x3c\xa7\x21\xab\x40\x9d\x24\x8e\x8f\x2a\xff\xec\xdb\x12\xe7\x04\xfa\x93\x10\x7b\x66\xc3\x33\xbd\x5d\x64\xa7\xcb\x3e\xc7\x6d\x1a\xd2\xed\x6e\x91\xaf\x48\xf3\x95\x56\x84\x03\xc2\x73\xfd\x4c\x28\x9d\x7f\x5f\xd1\x9f\x91\x7b\x34\x3b\x53\x8f\x9d\xa8\x37\xf9\xbc\x44\xf2\x1b\x7c\xd0\x12\xa5\x1d\xa2\xa7\x69\x80\xa6\xcb\xfd\x48\x18\x0f\x55\x2f\xe4\x8e\xaf\x44\xbd\x13\xe4\x26\x51\x3e\x13\xdc\xd3\xb4\x39\x9b\xea\xbe\xcb\xaf\xe5\x27\xe1\x48\xbd\xac\x5f\xc9\x97\x24\xc3\xf0\x5b\x40\x61\xf7\xed\xe0\x21\x03\xea\x9a\xbb\xb0\xef\xc4\x3a\x30\x1b\x77\xc4\x72\x06\x4e\xde\xe9\x62\x90\xbf\x94\x93\xec\x0b\x3e\xc7\x5a\x5a\x0e\xee\x9f\x9a\xed\x9a\x4b\xdf\xd2\xc2\x95\xcb\x8c\x33\xf9\x72\x39\x85\x18\x83\x9e\x62\xef\xd4\x34\x33\xc4\x3f\xe7\xbf\x2e\x95\x88\x52\xd7\x28\xfd\x75\x46\xed\x12\x03\x81\x8f\xb0\xe2\x55\xee\x93\x67\xc3\xb9\x08\xb2\x6a\x16\x44\xe6\xb8\x35\xa2\xf5\x85\xfc\x30\x7b\x41\xf8\x6f\x33\x57\xfe\x84\x7f\xa6\x9b\x51\x2d\x6e\x72\xc3\xb9\x1d\x34\x13\xc2\x50\x53\x93\x60\xd2\x5c\x08\x29\x2d\x6e\xa7\x80\xe9\xd8\x52\x47\xb0\xe7\x94\x10\x92\x56\x54\x31\x0b\xdc\x83\x9a\x21\x83\x4f\xc3\xd3\xc6\xca\x8e\x4f\x38\x85\xe8\xe7\xb8\x9f\x01\x90\x74\x33\x9f\x00\x65\x65\x90\x87\xa3\x81\x0f\x81\x54\x5f\xe9\x98\xce\x70\xf6\xfc\xfc\xd0\xd4\x0e\x27\x48\x32\x33\x92\xb8\x16\xa5\x73\xdb\x00\x10\x64\x16\x8e\x47\x10\x35\xe3\x2a\xd3\xc6\xa2\xfa\x80\xd0\x3e\x9f\x53\xf6\xfd\x02\xd8\x74\x85\x19\x57\x3e\x4b\x50\x67\x99\xca\x5c\xac\xe6\xa8\xca\x30\x8f\xc4\xab\x4c\x04\x46\x41\x84\x13\x1e\x37\x13\x25\x6e\xa5\xa8\x21\xcc\xc1\x9a\x47\x74\xa3\x25\x6f\x99\x5e\x0f\xc1\x1e\xfc\x87\xab\x3e\x50\x4e\xe5\x3b\x48\x75\xe3\x9c\x19\x3b\xf7\x38\xfe\x79\x0c\x93\x12\xf0\xd0\x29\xd0\x4e\xe3\x92\xd0\x46\xce\x12\x84\xeb\x6a\xa1\x9a\xa1\xa9\x42\x32\xcb\x45\x36\xbf\xd1\x32\x32\xcf\x70\x9a\x3c\x50\x64\xcb\x56\x29\xd8\xe2\xb5\xc8\x99\x4b\x98\x28\xd2\xa9\xd3\x35\x7b\x3d\x8f\x73\x66\xbc\x1b\xc1\x6a\x85\x79\x53\x37\x09\xc2\x54\x0a\x90\x73\x7c\x4c\x81\x88\xbe\x54\x35\x1e\xbc\x0b\x88\x7b\x81\xdd\xb0\x4e\x36\xcc\xa6\x38\xae\xc4\x1b\x18\xe6\xb4\x5f\x50\x8e\xad\x5c\x99\xaf\x8a\x7a\xfc\xac\x81\xe5\x29\x7e\xde\xd2\x8e\x2f\x20\x0d\x8d\x4a\xf0\x4a\xc2\x2c\x10\x88\x7c\xa7\xf7\xdf\x7f\xfb\xa1\xe3\x69\xf0\x37\x0f\xef\xbf\xfb\x40\x32\xd3\xfd\xf7\xdf\x7f\xc0\x95\xc3\xa8\x70\xb6\x64\x8d\xdb\xb8\x06\x14\x34\xe8\x5d\x5b\x7e\xaa\x9a\x7d\x27\x52\x21\x3e\x3d\x7f\xf8\x2c\x53\xf1\xb9\x8f\x97\xb8\x73\xfe\x1e\xac\xf0\xc2\x65\xc5\x2b\xbc\xde\x6f\x33\x1d\x63\x27\x1c\xc0\x7e\xb9\xe2\x86\x81\x2c\xe7\x26\x7f\x73\xbf\x79\xb8\x55\xc1\x83\xa5\xce\x9b\xa8\xf8\x2f\xf2\xeb\x19\x06\xc2\x43\xff\xcd\xb5\xd4\x04\x97\x15\x57\xe2\xbf\xce\x52\xba\xbb\x36\xb9\x29\xfb\x59\xcc\x95\x2c\x96\x0a\xba\x1c\x67\x69\x2f\x3c\x88\xce\x1b\x6c\x7b\x43\xf0\xb6\x04\x62\x0c\xee\x1d\x7e\x0e\x32\x6f\xab\xac\x8d\x0a\x28\xab\xf5\x54\xa2\xa0\x03\x5c\x2b\xa6\x64\x1b\xfa\x3a\x34\x49\x7b\xae\x0e\xfb\xf9\x95\xb5\x88\x3c\x41\x52\xeb\xd2\xd5\xb3\x24\x8c\xd7\x0b\x28\xb6\xa1\xfb\xe7\xa1\xaa\x6d\xa7\x40\x7f\x65\x13\xbb\x46\x23\x41\x5d\xe0\xc3\x92\x45\x93\xa4\x86\xfb\x8e\x36\x23\xad\x9b\x26\x9a\x9b\x16\x9d\x09\xe8\xb8\x05\x8e\x6d\xae\x59\x7c\xfd\xc3\x49\x11\x68\x55\x67\x66\xff\xaf\xc7\x06\x62\x96\x6c\xb3\x26\x23\x22\x32\x62\x6f\x54\x55\xe4\x1e\xf4\x9c\x8b\x6e\x07\xcd\x13\x4f\xee\x86\x79\x22\xc3\xd5\x5a\x16\xd0\x94\xfc\x4c\x7f\x1c\x5e\x07\x76\x38\xd6\x3f\x6e\x85\xba\x4f\x7f\x2c\x49\xf6\x45\x5b\x74\x7e\xdf\x8e\xf3\x17\xcd\xa6\xf1\xfb\x3a\x7e\x0d\x01\x44\xb1\x7a\xbf\x18\xc8\x66\x92\xed\x69\x5b\x57\x2f\x27\x0c\x76\x1e\x81\x9c\x18\x8c\x64\x0c\xac\xcc\xe2\x4c\xe7\x90\x22\x1d\x84\x5b\x8a\x45\x3c\x18\xd7\xa2\xb6\x5a\x00\x75\x9a\xdd\x49\xb0\x29\x15\xbe\x48\x19\xa1\xca\x9e\x65\xf6\xd0\xd6\x81\x2f\xad\x03\x2d\xbe\xd6\x7c\x58\x69\x3f\xdd\xb4\x3f\x85\x4b\x4f\xef\xb8\x1d\x94\x43\x10\xaf\xa8\x5d\x4e\xa4\x27\xc6\x2f\x7a\x96\xe0\x14\xb5\xf9\xe9\xa6\xe1\x6c\xa0\x06\xdc\x5f\x37\xa9\x3b\x85\x21\x4c\x19\x6f\x04\x79\xca\x85\xcd\x15\x0f\xe4\xaf\xe5\x67\x83\x6a\xe1\x4e\xfd\x14\x66\x76\xc3\x06\xb5\x85\xa7\xa9\x7e\x69\x7e\x74\x40\x1c\x1e\x0c\x15\x86\x78\x73\x5b\x76\xfb\x0d\xf6\x00\xdc\x6a\xca\x8f\xa5\xdc\xc7\x19\x10\x22\x3d\x89\xf6\xc1\xda\x0a\x18\xb9\xc4\x81\x52\x33\x0b\xce\x9d\x97\x8b\x1c\x16\xb5\xf0\xc4\xaa\x59\xe9\x90\x17\xc1\xe8\x09\x84\xe3\x56\x58\xfd\x6c\xa2\x1c\x46\xef\x62\xb6\xe5\xaa\x37\x25\xcb\x00\x53\xf3\xb2\xbf\xe6\xa9\x13\xb3\x07\x46\xae\x68\x30\xba\x1f\xc2\xcd\x98\x38\xd8\x13\xb4\xf1\x84\x77\xe4\x42\xb9\xd9\xbf\xe0\x87\xf0\x34\x45\xe5\x40\x5e\x0f\x8f\xbd\x0a\x82\x05\x6d\x93\xca\x14\x07\xad\xf8\xb6\xa4\x46\xb1\x8b\x17\x76\x84\x14\xde\xfa\x23\xfb\xcd\x19\xf3\xc4\x37\x11\x31\x9b\x35\x68\xfa\xf7\x2e\x5d\xeb\x47\x4d\xba\x59\x5b\x33\x92\xf6\x8f\x55\x4f\xa5\xff\xd3\x07\xa3\x51\x92\xf6\xb3\x90\x5d\x82\x3e\xfd\xcf\x08\x6a\x78\x72\xf6\x79\xa2\x18\x06\x41\x95\x66\xf2\x58\x68\xbe\x6e\xac\x44\x2a\x82\x1a\xe7\xd5\x20\x19\x7a\x67\x17\xce\x24\xf5\x9a\x4e\xf1\xbc\xd6\x15\x9b\xee\xea\x6a\x16\xa1\x06\x52\x6c\xeb\x5b\x62\xaa\x71\x39\x57\xa3\x6a\xdd\xe2\x56\x98\x78\x6d\x4b\x15\x1c\xe7\x8a\xd6\x87\x5d\x58\xd2\x2f\x77\x35\x31\x5d\x97\xc2\x16\x7b\x6f\x85\xce\x58\xa4\x42\xd0\x6f\x05\x2c\xcb\xfa\x5e\x75\x19\x2c\x95\xc4\xd2\xf9\x4a\xcd\x8f\x36\xd5\xa2\x4f\x5d\x3a\x35\xa7\xb6\xe8\xb0\x57\x59\x49\x58\x1c\x67\x78\x4e\xfb\x61\xb7\x46\x9c\x0d\x06\x58\xd2\x89\x71\xdb\x40\x50\x73\x2c\x22\xaf\x33\x68\xf8\x31\xd4\x30\xf8\x06\xeb\x70\x0d\xb9\x0c\xf1\x78\x80\x61\x51\x7e\x0d\x86\x1b\x54\x0b\xe5\xf9\xa1\x9a\x1f\xf4\xb7\xd7\x6d\x5c\x40\x7c\x44\x78\xd1\xdb\xd0\x3b\xb7\x7c\x4d\xfd\x71\xb0\xc9\xa9\x78\x6c\xa1\x9a\x8d\xe6\xa1\x91\xd0\x0d\x30\x01\xaa\xfa\x88\x68\x86\x6c\x05\x04\x34\xb5\xba\x41\xb4\xfb\x5a\x17\x21\x4a\x41\xd3\xc7\x64\xfe\xdb\x78\xbc\x4a\xcc\x87\xc6\x1a\xb2\xad\x5a\x76\xe6\x88\x9e\x1e\xfe\xcb\xfd\xe2\x91\x2c\x64\x98\xff\x8c\xae\x60\x38\x51\xd0\x19\xee\x82\x3c\xe6\xaa\x83\x23\x36\x93\x0d\x6f\x16\x0c\x44\xdf\xb3\xdf\x92\x40\x19\x17\xa8\x8d\xfc\x31\x3b\xc8\x9e\xd0\x09\x04\xb9\xd3\x7a\x81\x21\x40\xe1\xb5\x2d\xf7\xbb\xa8\xed\x26\xa3\xe5\x91\xe9\xa1\x8d\xb6\x14\x5e\x2c\xf8\x35\xec\x82\x9d\x56\x86\x55\x3b\xb9\x3f\x1e\x11\x6d\xdf\x73\xde\x47\xc4\xbd\x58\xf8\x74\xa0\x80\x24\x12\x50\x97\x12\xbd\xe6\x56\x19\x20\xaa\x7e\xc0\xe6\x27\xb1\x63\x92\x1b\x7c\x60\xc3\x8c\x89\x9b\xc0\x30\xd7\x0f\xfa\x94\x46\xcc\x2a\xbf\xf4\xa1\xc5\xe6\x7a\x14\x0f\xb2\x14\x7b\x6a\xfe\x1b\x66\xb8\x50\x2a\x5a\x55\x26\x53\xaf\x35\xa2\x72\x4d\xf1\x21\x46\x8e\x9c\x07\xe9\x83\x1b\xfa\xf7\x78\xbb\x7d\x5c\x14\x0f\x26\x46\x1d\x48\x3f\x6e\xd8\x03\xa3\x30\x55\x34\x0c\x58\x65\x50\x53\x20\x4a\x4e\xe3\x8e\x01\xa2\x79\xfa\x85\xa5\x80\x92\xef\xd8\xd2\xc2\xe3\x4d\x48\xd7\xcf\x5d\xc7\x5b\x40\x43\x0c\xcf\x1b\x9a\x30\xab\x10\x4f\xc3\x70\x24\x03\x21\x3c\xc8\x1a\x38\x50\xdf\xda\x3d\x77\x17\xa3\x12\x1d\xb1\xef\xed\x01\x94\x48\x3c\xbd\x83\x08\x09\x84\x5f\x8f\x54\x27\x00\x4f\x00\x4e\x89\xbf\xbe\xed\x7f\xa6\x08\x3c\xd5\xf8\x14\x09\xdc\x25\x04\x4f\xc5\x6e\xb5\xb4\x99\xd0\x37\x1c\x58\xe4\xcb\x67\x05\xf1\x60\x54\xce\x08\x7e\x7b\xb0\x75\xd3\x7c\x94\x98\x38\x73\x7c\xfa\x9c\x15\xc7\x82\x94\x4c\x8e\x7a\xf8\x2a\xce\x25\xd1\xb2\x5a\x84\x31\x62\x9f\x73\xc2\x44\x17\x0b\x9e\xe3\x36\xfb\xbb\xa8\x1d\x4f\xf1\x2b\xfd\x9f\x4c\x18\x0e\x44\xbd\x4f\xce\x2d\x06\x12\x1b\x46\xf8\x5c\xf5\x1b\x08\x9a\x52\x37\x87\x71\x5b\x6a\x58\xcf\xec\xfc\xcb\x7c\x43\xa6\x7c\x42\x62\x47\xd5\x99\xaf\xdd\xb9\xba\xf1\x05\x90\x7e\x9e\x9b\xb7\xdc\x18\xcc\x5d\xe6\x7a\x0f\xb9\xf8\x02\x8a\xcd\xda\x6a\x31\x88\x87\x97\x1c\x5f\x15\x35\xd8\xb0\x42\xd7\x3c\xa2\x3b\x17\x66\x51\x0f\xd5\x38\xe8\xc3\x48\xac\x0b\xba\x87\xf8\xc2\xf0\x93\x65\xc9\xac\x93\xab\x7b\xf5\xf7\x13\xaf\x11\x51\x06\xe4\xee\x80\xde\xc1\x52\x61\x62\xeb\x83\x9a\xdb\xc5\xa7\x11\xb7\x13\xeb\x2a\xf2\x82\xe9\x1d\xb8\x4a\x01\xd3\xc1\x6d\xf8\x00\xd0\x90\x72\x4e\xfc\x43\xac\x18\xa5\x58\x1e\xb9\x1a\xf6\x81\x92\x4a\x2c\x8f\xf8\x5a\xce\xf5\x88\xd9\x53\xd9\xf6\x70\xf2\x1b\xa3\x9d\x9d\x0e\x68\x01\x65\xdf\x52\x33\x8f\x21\x2b\x49\x60\x48\x0c\x42\xd6\x5f\xb5\x0c\xf0\x01\x63\x4c\x36\xae\xfc\x54\x15\x7b\xa2\x3e\x9e\x8b\xdb\xea\xfd\x2e\xae\x97\x56\x3c\x2e\xe1\x0f\xd6\x3d\x98\x4f\x08\x11\x2e\x6a\x30\xbc\x3c\x97\xde\x79\xb9\x9b\x6a\x99\x99\x90\x53\x68\x28\x0e\xe0\x84\x9c\x7a\x2f\xbe\x90\x55\x09\x1f\x82\x39\x98\x58\x6c\x9b\x98\xf4\x43\x3a\x9a\x8f\x18\x5b\xe2\x19\xea\xa4\xaa\x3b\x0d\xd2\x46\x84\x30\xc0\xd2\xa0\x3e\x20\x2c\x30\x1b\xb3\xd9\xe7\xe1\x73\xb4\x39\x8d\x68\x6c\x67\x80\x90\x24\x24\xa2\x01\x02\x2c\xb3\x9d\x01\x1d\x15\x8e\x94\x07\x1f\x39\xc5\xa9\xf8\xc3\x05\x16\x86\x9e\x07\x36\x11\x66\x07\x7d\x85\xdd\x81\x20\xe0\xf5\xa8\x69\xef\xa6\x77\xe4\xad\xa3\x9c\xd9\x08\xcb\x9d\x6c\x88\x56\x17\xe5\x8e\xc3\x5d\xb2\xee\x72\x29\xbb\xad\xf0\xfc\x3b\x5a\xfd\xee\xb6\x56\xc5\xa8\x6b\xaa\x59\x33\x6f\x54\xbf\x77\x2c\x5a\x8e\x51\x7d\x47\x6b\xdf\x5b\x6b\xe1\x96\xf5\xb1\x2c\x77\x41\x13\x71\xf7\x03\x77\x0f\x30\xcf\xd8\x6a\x6b\x82\xa3\xa9\x47\xa3\xb9\x40\x1f\x60\xe2\x51\xb8\x16\x6f\x09\xa0\xbb\xd9\x1d\xde\x5f\xe3\x05\x62\x5a\x4e\x04\x56\x87\xa6\xd3\xc1\xb0\x96\x27\x0b\x38\x37\x0c\x6e\x8d\x25\x4f\x54\x25\x86\xbc\x03\x53\x25\xef\x13\xed\xba\x66\x05\xda\xc3\xdd\x8b\x6d\x35\xd3\x09\x1b\x4d\x07\xca\x86\xf0\x21\xb1\xa6\xe2\xfe\xc0\xe3\x39\x09\x92\x0f\x17\x18\x38\x1d\x44\x75\xc5\x4e\x07\x41\x07\x85\x8a\x0e\xd5\x73\x32\x59\x87\x52\x5e\x38\xb5\x1c\xfa\xa0\x82\x93\x7b\xa6\xe1\xc4\xf4\x51\x80\xa1\x97\xb9\xe6\x5e\xaf\x9b\x20\x7a\x8c\x78\x42\x60\x2f\x0a\x3b\x32\x8b\xc7\x7a\x2d\xe2\x89\xe2\x45\x85\x95\x81\x14\x63\x7b\x8b\x89\x32\x38\xf2\x6e\xf7\xb4\x75\x6e\xaa\x8f\x50\x86\x11\x61\x4a\x7c\xe1\xf3\xcb\x2b\x68\xc0\x68\x01\xd0\x3e\xba\x62\xbe\x9b\xfe\x75\x5d\xd6\x08\x79\xc9\x61\x7e\x95\x11\x2d\x16\xec\xc0\x54\xd5\x1a\x0f\xf0\xba\x34\xb3\xf2\xba\xd8\x08\xdb\x0a\x5d\xdc\x4c\x7a\x10\x4d\x58\x8a\x50\xbe\xbc\xd2\xba\x5d\xb9\x20\x99\x78\xc6\x37\x5b\x6d\x8d\xf7\x11\x5c\xd4\xf6\x5b\x4d\x7f\xdc\x48\x60\x83\xc3\x0a\xb3\x00\x2d\x8a\x92\x50\x01\xac\x7b\xf0\x08\x3d\x43\xd0\x29\x29\xd8\x30\x7c\x9b\x0c\x0c\xfe\x2a\xd6\xcc\x15\xb3\xeb\x54\xcd\x45\x6e\x73\x12\x39\xd8\x87\x30\x1e\xa3\x34\x7d\x87\x28\x3c\xac\x6a\xe6\xf5\x0a\xa6\x4c\x98\x00\xe9\x76\x8d\xd8\x7a\xbe\xd3\xcf\x31\x90\x9c\x96\xb8\x27\xaf\xe4\x6b\x0c\xb2\xd3\xc8\x4a\x2e\xc6\xd2\x18\x64\xde\x14\x7c\xfe\x79\x4e\x7f\xc6\x42\xb4\x0b\xc6\x6f\x92\x34\x88\x73\xc7\xde\xf9\x72\x91\xcc\x19\x84\xee\x72\xb3\x94\x48\x0b\xac\x39\xc2\x71\x4f\x94\x7d\x6c\xd5\x2c\x71\x44\xd9\x84\x0c\x15\xa8\xaf\x1d\xdc\x48\x10\x44\x2d\xd4\xe4\xa9\x5f\x6e\xe8\x68\x39\xec\x13\x2e\x26\xac\x5f\xaf\x45\x06\xc1\x34\xe0\x70\x2b\x11\xef\x8e\x78\x6b\xe1\x73\xa1\x5d\x15\xda\x06\xb4\x93\x28\x77\xec\x21\x45\x44\x8d\xe0\x25\x06\x22\x32\xac\x58\x5d\x05\x06\xc6\x16\xf9\x1b\xc4\x06\x84\x8d\x7b\xa4\x06\xe1\x8c\x20\x31\x05\x1f\x41\xf8\x8b\x4c\x00\x99\xeb\xd5\x70\x9f\x51\x70\x7f\x56\x78\x15\xad\x87\x80\xa3\x44\xaf\x24\xa0\xa3\x1a\xbb\x4e\x34\xb9\xcc\x29\x4c\x91\x1b\x28\x4c\x19\x57\x6c\x87\x19\xac\x6e\xde\xa6\x49\x38\x12\x29\xba\x2d\x57\x79\x5b\x58\x48\x17\xe5\x34\xec\xd6\x02\x8e\x12\x7a\xf0\xe6\x1b\x3a\x7c\x6b\x15\xc4\x19\x09\xe4\x23\x5b\x3e\xd1\x7c\xb3\x8c\x63\xfa\x06\x96\x16\x0b\x61\x63\xec\x44\x48\xcc\x65\xbf\x63\x7e\x23\xcc\xcb\xda\xc1\x90\x1f\xfe\xe9\xf2\xfc\xed\x51\xfa\xf9\xf1\xf5\xf5\xf5\x63\x2e\xfe\x78\xdf\x6e\xd8\xdd\xae\xe0\x90\x31\xff\xe3\xec\xcd\x51\x5a\xf6\x8b\x47\x33\x3a\xa8\xb7\xb1\x7a\x4b\x0d\x4e\x71\xf5\xc0\xd4\xc5\xa2\xe3\x1f\x67\x4f\xba\x62\x34\x02\x7b\x18\x99\x2c\xdc\x20\x79\xf6\xcc\xbe\x43\x27\x53\xec\x3c\xfc\xe1\xb0\x5c\xb4\x25\xcc\x23\xf0\x11\x64\x6c\xe8\x4c\x30\x15\x2a\x60\x08\x52\x51\x3b\xda\x8d\xd7\x0b\x8d\x00\x3f\x00\xb1\xdb\xc0\x13\xdc\x03\xba\x4c\x4c\x9c\xdb\x56\x38\xf6\x5d\xb7\x6e\xf6\x9b\x22\xe6\x98\x84\x33\x9d\x88\xb2\xf8\x69\x58\x18\x96\x8c\x08\xe1\xfc\x34\xfd\x13\x6b\x8a\x78\xa2\x84\xb6\x38\xcb\x68\x0b\xc0\xb3\x61\x61\x04\x23\x0c\x04\x63\x1a\x80\x04\x59\x34\xc1\xdc\xe7\x39\xe1\x7c\x54\x89\x9e\xdf\xd8\xae\xa2\x4f\xb7\xee\x3c\x07\x5a\x93\xea\xc6\x45\x62\x3d\xdd\x74\xb6\xe1\x45\xec\x19\x8f\xd4\xd2\xd1\x94\x58\x53\x78\x48\xc5\x8c\x73\x12\x45\x01\x7f\x04\x28\x73\x91\xd0\xae\xd4\xaf\x5d\x30\xa6\x54\xa3\x6f\x96\xc3\x8c\x20\xbc\x42\xd9\xc3\xb1\x7d\x6a\x2d\xca\x89\xda\xcd\x9a\x5f\x3d\xc6\xdf\x74\x87\x13\xc9\x44\x7c\x81\x22\xee\x01\xd6\x11\xcb\x5c\xd7\xc3\x5d\x6c\x28\x6e\x29\x6f\xf2\xa2\x8c\xf2\xa6\xd1\x76\xad\x80\x83\x36\x46\xbb\xa4\x4a\xc7\x63\x99\xdf\xb7\x70\x48\x20\x10\x2b\x9e\x4c\x47\x69\x11\x66\xe0\x50\x79\xea\xd2\x62\xf1\xca\x56\x29\xf8\x6e\xbc\x44\x19\x21\xb2\x8e\x42\x8e\xca\x82\x5a\x7c\xe7\xcf\x20\xf0\x03\x66\xff\x03\xb3\xd5\x1f\x79\x41\x87\x22\xb4\xd4\x6a\x1e\x6d\xe2\x79\x37\xc8\x1c\x3e\x79\x31\x5c\xd9\x24\xab\xc9\xa3\x49\x27\xf2\x15\x62\x6b\xb7\x69\x6e\xcc\x51\xfc\x14\xbf\x34\x92\x4c\x38\x32\x0f\xa6\x83\xf2\x90\x81\xf2\xa5\xc9\xe2\xea\x7e\x0d\x22\xa7\xaa\x88\x5b\xf3\x79\x17\x45\x09\x26\x3c\xc6\x44\x0a\xef\x89\xee\x4d\xf8\x1a\x3b\xa8\xa1\x57\xf4\xa9\x6b\xe1\x80\x57\x74\x5c\x34\xf4\x8c\x0e\x8a\x7e\x81\x67\x74\x8c\xa4\xb1\xdf\xb3\x1f\xea\x17\xb8\x3e\x4f\x0d\x7a\x2c\xd7\x4e\x21\x7e\xa2\xc0\x94\x74\x5b\x84\x63\xfb\x02\x17\xe8\xc1\xc9\xf6\x4b\x04\xdc\xa9\x9e\x78\x94\x04\xc8\xbd\x4b\xe3\x5b\x54\xcb\xe5\x6c\xde\x36\xd7\x1d\xfb\x19\xe3\xfd\x08\xe6\xb2\xfc\x3b\xbd\xc4\x6f\x01\xe1\xab\x7e\x10\x85\x7c\x48\xa2\x5a\x14\x3d\xd5\x9b\x3d\x49\xc4\x3d\xeb\x30\x6a\xfd\x29\xe5\xc8\x9d\xeb\x5b\x3a\x89\x1d\x5b\xce\x4c\x8a\xd0\x46\x77\x9d\xf1\x17\x3c\xa4\xa1\x7d\x66\x65\x29\x0a\x5d\x72\x8a\x82\xf1\xa7\x21\xdc\x76\x25\x18\xb3\xc9\xad\xb4\x88\xaf\x5e\x73\x04\xc2\x32\x38\x02\x23\x62\xa8\x20\x9f\x7a\x90\xd0\x13\x92\x20\x0c\x97\x1e\x42\x11\x84\x45\xff\xfc\xf5\x5b\xf9\x09\x0b\x75\x8d\x4c\x04\x13\x75\xbe\x1c\x4f\xcc\xee\x7d\x36\x65\xff\x6e\x79\xe2\xab\x20\x6a\x0e\x7b\xf0\x0d\xbf\x1c\x44\xd1\xe6\x4b\x5c\x03\xf1\x5f\x97\x4a\x32\xb0\x2f\x76\xd1\x96\x8f\x87\xc5\x08\x39\x82\xea\x4b\x7c\xb8\x74\xbd\xc6\xe1\x3f\x2e\x2d\x87\x89\xc6\xd3\x60\xe4\x1e\x23\x66\x0b\x40\x74\x77\xbf\x4b\xbb\x8a\x75\xa7\x4a\xa0\x83\x06\x41\x1d\x3e\xa4\x30\x68\x07\x4f\xa0\x19\x04\xed\xd0\xce\xd9\x99\x36\xeb\x5a\xfc\x2d\x2d\x0f\xc7\x56\x8b\x8e\x16\x95\xf1\x71\x85\x4d\x1b\xec\x3d\x31\x28\x1f\xbb\xff\x22\x74\xf0\x60\x51\x80\xc3\x3f\xb0\x3a\xa8\x5b\xcf\x86\x13\xe1\xd4\x99\x8a\xb3\x14\xbf\x1d\x94\x49\x86\x4c\x2e\xd9\xb6\x08\x84\x43\x21\xa0\x70\x5b\x39\xcb\xdb\x8f\xfc\x96\x02\x0c\xc8\xac\x82\xeb\x56\x23\x5a\xf1\xdf\x70\xc6\xf4\x25\x8f\x0b\xf9\x1a\x35\x18\x1b\x7d\xa3\x34\xf4\x01\xc6\x4c\x5d\x01\x96\x66\x45\x24\x7b\x23\x5f\xf2\x4c\xdd\x90\x32\xc6\x6e\xff\x94\xf7\x78\x38\x6f\x01\xbc\x43\xf4\x5f\xcb\xff\xf8\x5f\xff\x97\xd5\xa5\x0d\xed\x96\x88\xd1\xa1\x61\x2e\xfd\xbc\x9b\xc3\x9c\x7f\x7b\xe6\x31\x78\x74\xd0\x11\x41\x7f\xaa\x61\x2f\xe8\x6b\x44\xa3\xfc\x1c\x83\xd1\x37\x9b\xd1\x0d\x88\x1c\x87\x44\x4f\xe6\xb8\x7a\x1c\xd6\x61\x44\x95\xe9\x1e\xe1\xc2\xec\xd9\xe4\x62\xd2\xd0\xf3\x5e\x89\x6e\x7a\x4b\x49\xde\x37\xed\xea\x83\x0f\xc6\xea\x26\x22\x0a\xc4\x8a\x93\x21\xc3\xb8\x70\x66\x07\x00\x7d\x88\x33\x5f\xa3\xa1\xf7\x25\x13\xeb\xf8\xb1\x30\x39\x97\x4b\x34\x6c\x18\x89\x99\x0f\xf1\xcc\x3c\x9b\x24\x96\xa3\x5e\x60\x47\xaf\x38\xc2\xe1\xc8\x54\x96\x26\xdd\x15\x89\xde\xac\xb2\x7f\x0c\x7f\x70\xb8\x4d\x7e\x77\x8e\xa9\x4a\xee\xc4\x5e\x23\x81\x96\x2b\x12\x10\x4a\x16\x7e\x41\xfc\x37\x41\x00\x3f\xd5\xab\x71\xaa\x7e\x69\xfa\x20\x48\x60\xf4\xd6\x42\xe0\x89\x85\xe0\xa1\xd1\x03\x0a\x5c\x39\xb0\x32\x71\xa9\x3e\x0a\x29\x0b\x14\x22\xf5\x36\xe8\xc8\xdf\xf7\xc1\x06\x17\x29\x1a\x91\x0a\xea\x69\x36\xd6\xaa\x45\xe4\x03\x25\x20\xa0\x69\x1d\x59\x8f\x76\x33\xdf\x4c\xb0\x12\xd6\x72\xe3\xee\x8b\xe1\x19\xa3\x39\xad\x89\x9f\x04\x3e\x72\x78\xd4\xc3\x5a\x2e\x0e\xf6\x92\x9c\x6e\x48\xee\xdf\x44\xa7\x37\x54\xc4\x12\xda\x4f\x07\x9c\x5d\xc7\xc1\x7f\xbf\xde\xdd\x75\x5c\xc7\xed\x0e\xaf\x7f\xf4\xb2\x77\x3a\xb0\x5f\xa8\xa2\x1a\x44\xf8\x73\x59\x53\xa1\xfe\xfe\xc8\xd5\x6b\x0c\x1a\x08\x3e\x11\x0a\x5c\x4d\x5f\xaa\xe2\xd7\x1b\x5d\xa2\xd4\x7f\xec\x42\x37\x0e\x79\x3b\xec\xf5\x28\x26\x5d\xd4\xe9\xaf\x8b\x4d\x77\xf0\x66\x34\xe2\x15\xc3\x23\xdb\x28\xc0\x04\x06\x78\x6b\x91\x38\xdc\x44\xd8\x61\xa7\xa4\x0b\x6e\xda\x54\x6f\x2f\x81\x26\x44\xf3\x7c\x77\xb4\x89\x03\x57\x19\xb7\x85\x9d\x18\xf6\x92\x79\x8c\xf3\x8d\x08\x3b\x79\x6b\x89\x70\xd7\x8c\x6f\xc3\xff\x91\x50\x14\xd3\xd7\x05\x7c\xa4\xbb\x36\x4d\x16\xf6\x58\xc3\x9f\xd7\x0f\xf0\x91\xc0\xf0\x25\x67\x06\xcf\x68\x3d\xe6\xf6\x78\xef\xae\x1f\x76\x9a\xc3\xea\x08\xd7\x9e\xe9\xed\x98\x45\xa1\x1a\xa4\x7b\x96\x07\xdb\x64\xbd\xff\xf3\x40\xf2\x1b\xd2\xcb\x64\xce\xb0\x7c\xdc\x46\xec\x0a\x60\xa9\xee\xc6\xe6\x0c\x1f\x2e\x9d\xb0\xb6\x28\x11\x21\xe0\x44\xbe\x5c\x8e\x1e\x9d\x34\x6c\xb5\xef\x84\x84\x24\x86\xfb\x4e\x90\xaa\xbb\x9d\xe2\x9a\x5d\x91\x69\x52\x6e\x76\x3c\x85\x79\xea\x94\x77\xec\x89\x2e\xbb\xa0\x48\x8f\xda\x2b\x08\xbc\x3f\x0c\xeb\x92\xd7\x65\x74\xd7\x7c\xdb\x5c\x27\xb2\x65\xce\xe0\x91\x20\x21\x74\x35\x25\xee\x92\xa4\xb1\xc8\xa1\xf1\x8d\x52\x09\xe4\xa0\x11\x70\xc6\xf9\x83\xa8\x01\xd8\x31\x5c\xbc\x00\x8b\x88\xcd\xf2\xa4\xfa\xbe\xd4\x72\x63\x12\xbb\xd1\x4b\xad\x90\x47\x7d\xb3\x22\x58\x46\xed\x86\x10\x5f\xd2\x30\x1e\x13\x1e\x36\x77\x64\xea\x2a\x04\x4c\x54\x3d\x9a\x44\x86\x93\x56\xf4\x85\x58\xeb\x87\x7b\xa4\xcd\xf7\x23\x84\xf8\x92\x7e\x70\x2b\xb0\xf1\xc6\x24\xde\xd6\x1f\x3a\xeb\x69\xfc\xc7\xe8\x5e\x7e\xd8\x45\xef\x9c\x7e\x15\xec\xd3\xb0\x05\x29\x06\x72\x07\x6b\x87\xc7\x1b\xa6\xe4\xc8\x9d\xed\x84\x68\x20\x26\x3b\x93\xa1\xa1\xee\x5e\xe2\x30\xa6\xe7\x92\x0e\x34\x30\xc6\xf1\x60\x93\xbb\x8e\xf4\xcb\x8b\x72\x90\xad\xce\x54\x9e\x93\xcc\xbb\x37\x5c\x81\xb3\xa0\x48\x22\xd7\x85\x5b\x06\x04\x3b\x9b\xc9\x42\x9e\x07\x70\x6b\x9c\x59\x5d\xd0\xea\xb8\x32\xc7\xaa\x01\xe5\x58\xf4\x18\xce\x78\x67\x28\x95\x05\xba\x53\x66\xca\x47\x26\xab\x3a\x4b\x01\x40\x6d\xf3\x9b\xc8\x16\x07\xa6\xc3\xdb\xf8\x39\xdd\x5b\xd4\x2d\xe3\xae\xf8\x5d\x5b\x62\xee\x3b\x82\x39\xa8\x63\x99\x85\x4b\x7d\x4c\x20\x9e\xec\x56\x2d\xfc\x0c\x6c\xae\x99\x59\x04\xa4\x80\x0a\x7f\x70\xa3\x74\xaf\x38\x7a\x6e\x80\xcb\x60\xaa\xe8\xc1\x6d\x4c\xe1\x2b\x3a\x00\xb6\x71\x7b\x0f\xc0\x16\xc4\xbb\x8c\xba\x11\xb0\x80\xdb\x3a\xa2\xcf\x2f\x7e\x79\x47\xc0\x37\xbe\xb0\x23\x47\xd6\x0b\x8d\x57\x5d\x14\x93\xeb\xff\xb6\xfe\x0d\x8e\x39\x20\xce\x28\x20\xfa\x80\xe0\xa3\xe7\xe2\x1d\xd1\x07\x56\x69\x56\x2d\xec\x1f\xd4\x4a\x4e\xb7\x33\x5f\x55\x4d\x53\x88\x93\x69\xdd\x87\x96\x74\x71\x10\x12\x36\xe2\xea\xdb\x1b\x15\x49\x78\x70\x71\x0c\x14\x6f\x40\x23\x87\x2f\xdc\xe8\x4a\x90\xfc\xf7\x40\xfb\x87\xc4\xbd\x00\xc8\x4b\xd9\xbe\x13\x79\x1a\x54\x6e\xb5\x10\xa6\xdc\xc7\x27\x4f\x87\xf1\xca\x6f\x8d\x15\x1f\xc7\xc8\x1f\x3e\x96\xd0\x49\x48\xb1\x95\xc9\x72\xf6\xee\x62\xa2\x86\x43\xcc\x58\x6f\x08\x07\x5b\x3c\xba\xbb\xe0\xb0\xc1\x4d\x5d\x89\x89\xca\x99\x7c\xd1\xd8\x13\x8c\x29\xdb\x49\x14\x06\xbc\x99\x2f\xa1\x1c\x35\x85\x43\x39\x26\x7d\xd3\x43\xa0\xb8\xe2\xbf\x3f\xa4\xf7\x8b\xc4\x0f\x1d\x8a\x44\xd6\x27\xa9\x94\x20\xdf\x41\x7e\x10\xd8\x1c\x66\xeb\xad\x85\x6a\xf7\x35\xa0\x9b\x50\x57\xee\x83\x6e\x6b\x27\x51\xe9\xbe\x9b\x6a\x31\xe3\x4b\xd0\x54\xaf\x80\xdd\xd3\xeb\xcc\x41\xf8\x35\xb4\x82\x5f\x43\x93\x87\x5a\x8f\x82\x84\x68\x42\xc2\x8c\x9d\x8b\x2f\x1a\x25\xc7\xbb\xa2\x4f\x47\x04\x97\x38\x89\xc3\xb6\x44\x09\xf9\x62\xd4\x8a\x29\xab\xc3\x34\x33\x87\xf3\x29\x66\x18\x17\xd5\x1e\xc7\x98\x0c\xb3\xc4\x9a\x30\x4a\xd2\x67\x20\xe3\x91\x88\xfe\x34\x4c\xdb\x34\x2b\x7e\xcf\xc0\x9e\x19\x0e\x86\xa7\x82\x75\x5c\xa7\x59\x46\x47\x55\xc0\xc9\x32\x4c\xc1\x1d\x56\x9f\x77\x71\x69\xac\xcf\x30\x41\x1d\xd4\x47\x80\x74\xd0\xce\x17\x6b\x75\xd4\x99\x20\x24\x3b\x2f\x3b\x62\x92\x43\xf3\x14\xa4\x3c\xd5\x99\xda\xc3\x9c\x93\x30\xfc\x08\x3b\xde\x41\x0d\x72\xd9\xd3\x80\xdd\x5a\x10\x86\xb3\xd1\x40\x56\xec\x76\xe0\x42\x6e\xa6\xe7\x58\x8e\xdd\xad\x85\x82\x2d\x8e\xc3\x1b\x68\x98\x4f\x2d\x29\xe2\xc8\x2d\x7b\x9d\xaf\x59\x77\x4d\x35\xee\x08\x9e\x6d\xeb\xbc\x10\x91\xc3\x0d\x4a\x2f\x59\x2d\xfb\x8b\xea\x18\xf4\xd2\x43\xb8\x6a\xbe\xbe\xab\x50\xa9\x71\x7c\x18\xea\xcd\xa0\x93\x11\xcf\x33\x90\x3b\x6a\x18\x74\x71\xb2\x8a\xaf\xe8\x24\xbf\x1d\xbc\x5a\xb8\x17\x4f\x4f\x39\xbc\x73\x3b\x67\x8e\xc7\x1b\x5c\xb9\x30\x0f\xaf\x48\x2d\x37\x5d\xfc\xb6\x9e\xa1\x43\x7c\x20\x9f\xaa\xfe\x50\xdf\xda\xb2\xbb\xa9\x17\x19\x1e\xbe\xed\xd6\x7a\x29\xf9\xae\x14\xbd\xf8\x83\x19\xa5\x3d\xc9\x35\x98\x5a\x89\xeb\xbb\xee\x81\xbc\x00\xf0\x70\x41\xe9\xb0\x15\xa6\xfd\xef\x31\x78\x22\x4a\x9b\x74\x47\xb2\x5b\xff\xe8\xd6\x86\x06\x63\x09\x18\x62\x80\xdb\x16\x5d\xe1\xa7\xfa\xbf\x60\x04\xc1\x85\x78\x38\x0c\x26\x03\x5d\xfd\xe0\x15\xe1\x83\x35\x8c\xb8\x87\x6c\xdc\xc0\x01\xbb\xd9\x72\x43\x2d\xa2\x74\xb7\xb3\x87\x8d\xf5\x9a\xea\xc0\x80\xc2\x76\x6f\x99\xa1\x07\x51\x2f\xee\x1e\x63\xb8\x09\xc9\xe3\xf5\xfb\x1d\x5b\xef\xa6\xee\xd5\xfa\x5f\xf0\x3b\x64\x0a\xf2\xa6\x40\xb6\x6a\xda\x86\xa6\x47\x82\xed\xe8\x3b\x03\x2f\x2d\xad\x9b\x28\x00\x05\xf6\x4d\xb6\xd7\x00\x49\x56\xe6\x0c\xc9\x24\x5c\x70\xb4\x24\x5f\x0a\x5b\xb4\x95\x61\xb5\xe4\x42\x95\xd9\xd8\xb3\xad\xd4\xb1\x65\x04\x25\xb5\x4c\x33\x67\xb3\x7c\x75\x16\x05\xf0\xb9\xa6\x04\xb0\xb8\xd2\xe0\x08\x36\x84\xae\xfd\x2e\xe3\xa1\x22\xd4\x86\x24\xa7\x6f\x90\x9c\x5e\x71\xf2\xb8\x05\xeb\x95\x2b\x36\xe8\xd4\xa1\x72\x1c\xd5\x60\x58\xe6\x05\x07\x3f\x18\xc2\x1b\xe6\xd6\x65\xbe\x1b\xe1\xed\x15\x25\x8e\xb0\x06\xc8\x31\x02\x00\x7b\x18\x0b\x61\xa9\xaa\xc0\xa9\x2b\x2c\xf1\x9a\x92\x0e\x41\xe3\xb6\x7f\x08\x5f\xb3\xa8\x78\xa0\x84\xee\xd9\xc3\x5e\xe9\xfd\xcc\xa8\x57\xcd\xfc\x6f\xe5\xa2\xef\x0c\xfa\x5c\x7e\x06\x50\xf3\xa6\xe9\xf9\x95\xdc\x1d\x8b\x5b\xb0\xc2\x12\x34\x3d\xb7\x74\x16\xb7\x16\x1f\x47\x98\x12\xe8\x31\xaa\x04\xfa\x30\xae\xb6\x1c\x7c\x91\xda\x6a\xf7\x8b\x7e\x4f\x0b\xd4\x35\x78\x76\xc9\x41\x1b\x2f\x5d\xc6\xa8\xc5\x51\xc9\x90\x42\x87\x85\xa7\x5a\x5e\x90\x10\x51\x4e\x36\x7d\xc2\x39\xb7\xb6\x3d\x2a\x1b\x36\x3e\x2a\x3e\xb5\x52\xf0\x6c\x0e\x2b\xd4\xe7\xfb\xc5\xc7\xb2\x67\xd7\x9e\x75\x86\xdb\xe4\xb0\xae\x0b\x03\x4b\x9f\x03\x2c\x7d\x45\x60\xe9\x15\x54\x34\x13\xb5\xd2\xa6\xb3\x2d\xfb\x1c\x56\x01\x41\x2d\x2f\x4f\x68\x06\x38\xb9\xc8\xa7\x4a\x41\x75\x93\xa9\x94\xad\xab\x90\x05\x9f\xa0\x86\x73\x68\x77\x54\xf0\x3e\x76\x20\x53\xb5\x71\x1c\x1d\xd9\xfd\x16\x37\x0b\x79\x4d\x86\x23\xeb\x50\x1f\xde\x49\x4a\x00\x8b\x93\x04\xc1\x1a\x8f\xc4\x05\x38\xa2\xc3\x13\xf8\x55\xcc\x28\x85\x83\x79\x60\x61\x5c\x04\x77\xc1\xfe\xc1\x53\x80\xbb\x5c\x16\xd3\x41\x48\x6b\xde\x00\xad\xe5\x21\x9c\x36\xda\x09\x2a\x85\xad\xc8\x31\x4e\x6c\xe4\x35\xb6\x3a\xd1\x1c\xec\x91\x60\x22\x6f\x91\xd5\x39\x4d\x61\xef\x7c\xf4\x5c\xc1\x44\x7a\x85\xcc\x2a\x29\x26\x6f\xe1\x45\x3c\xfb\xb6\xbc\x28\x38\x8c\xa4\x45\x2f\xb0\x6b\x9a\xb9\xa0\xba\x20\x57\x9a\xae\xcf\x22\xeb\x63\xbb\x30\x7a\xc7\x43\x81\x6c\x2b\xfb\x2e\x7c\x32\xfb\x6d\x68\x0f\x7f\xd5\x60\x94\xc1\xc0\x62\x1b\x21\x1b\xe6\xdd\x6e\xb0\x33\xad\x23\x0c\xa6\xa2\x23\x83\x80\x6c\x66\x32\x83\x97\x00\xd5\x5c\x46\x20\x25\x56\xa9\xdc\x73\x6d\xc2\xd2\x38\xbd\xd8\x71\x60\x50\xc3\x1b\x9c\x6c\x02\x2c\x8f\x9f\x5a\x86\x76\x99\x0f\xf6\x62\xf3\x0c\xdd\x2c\x6c\xd2\xf6\xb5\x3d\xd8\x63\x64\x70\xe8\x8d\x2c\x8b\xca\xfd\x85\xcf\x64\x79\x5c\x04\x94\x82\xab\xf9\x98\x46\xaa\x2e\x0b\x89\x62\x18\xd4\x3b\x1f\x10\x09\x83\x2b\x9d\x44\xa0\xb8\xab\x0f\x1f\xa5\x0f\x6e\x56\x8d\x70\x70\x87\xc9\x76\xd7\x99\x9a\x1e\x8e\x6a\x08\xca\x40\xa5\x27\x84\xcd\x06\x9f\xe2\x78\x1a\xd6\x23\x61\x69\x33\x9b\xb1\xbb\xea\x3a\x18\xc5\x76\x12\xef\x5e\xab\x6a\x68\x77\x6f\x98\x01\xfa\xd6\x2b\xb9\x18\xc1\xd3\x4f\x2b\xfe\x7f\x79\x5d\x32\xec\x80\x7f\x63\xf2\x40\xfb\xff\x94\x37\x26\x87\x1a\xed\x2e\xee\xca\x84\xd1\xdb\xf1\xf0\xa1\x89\x03\x16\x6f\xfc\x08\xdf\x0c\xfe\x43\x31\x8b\x8c\x2e\x0c\x23\x56\x89\x12\x21\x0b\x44\x42\x6c\x3a\x81\x24\xaf\x6e\x37\x4d\xbb\x68\xcb\xc0\xfd\x86\xed\x05\x2e\x5f\x51\x6b\x52\x62\x1c\xc1\x3e\xee\x82\xa4\x8c\x6f\xe9\x24\x5d\x15\x3d\xa9\x06\xeb\x2d\x55\x6b\x37\x83\xb6\x47\xaf\xc6\x2c\x6d\x18\x0d\x16\x4a\x3c\x65\x56\x83\x2e\x0f\xd8\x55\xd4\x6d\x29\x25\xc1\x28\xcc\x9d\x4c\x39\xa2\x66\x05\xbd\x97\x94\x30\xd4\xa2\xa4\xc8\x0b\x6e\x78\x98\x58\xbe\x34\x7d\x6c\xe8\x12\x74\x52\xab\x19\x74\x2e\xa8\x15\x50\xd3\x1c\x37\xe8\xcd\xd0\xb6\x57\x52\xe1\x57\xc5\x86\xc8\x5d\xaf\x29\x3b\x7d\xbc\x9e\x03\x28\x4a\x0a\x94\x27\x05\x2c\x04\x59\x57\x72\xfa\x36\x4c\x0f\x1e\x75\x43\xae\x7b\xce\x6d\x02\x26\x30\x43\xc9\x5b\x8e\xdf\xf8\x83\xc6\xba\x09\x1e\x77\x63\x1f\x28\x79\x2a\x66\xb7\xe1\xfe\x72\xf0\x70\x5c\x61\xb0\x16\x98\x65\x86\x1c\xef\x39\xe1\x42\x97\xd8\xcc\x4a\x8c\x4d\xe5\xfd\x11\x45\x26\xcb\x07\x1a\x61\x0a\x72\x81\x46\xc5\x7d\xce\x66\x56\x01\x48\x61\x6f\x61\xfb\x11\xe5\x7d\xdf\x56\xf3\x3d\xdf\x8b\xaa\xfd\x07\x2f\x4a\x31\x36\x71\x79\x23\xd8\x6e\x6f\x5e\x13\x97\xfa\x75\x18\x76\xf0\xa6\xfd\x00\x4e\xa2\x5c\x59\xb7\x24\xc6\x95\x55\x81\x6b\x05\x07\x20\x97\x8d\x11\xc4\x96\x77\x9c\xac\xcb\x79\x79\x12\x6f\x2d\xd2\xcb\x63\xcd\xe9\xb6\xfd\xce\x42\xbf\x5f\x9e\x5d\x5d\xdc\x42\x4b\x0c\xaa\x34\x01\xc8\x80\x30\x38\x4b\x89\x03\x59\x01\x85\xa8\xd1\x8d\xda\x8f\xeb\xb1\x1e\x66\x3b\x42\x6c\xdd\x34\xdc\x6d\xdb\xbe\x3c\xc7\xc3\x2f\xab\xf3\x23\x00\x6c\xee\x2d\x65\x66\xe9\xd9\x7e\xd3\x57\x6c\x05\x66\xad\xa9\x25\x12\x3f\x3c\x5f\xee\xf2\xd6\xc2\x89\x22\xb2\x4e\xfa\xe0\xe8\xc1\x2c\x5a\x7d\x59\x2f\x2f\xf8\xc9\x63\x8a\x57\x6f\x2e\xe9\x73\xd1\xde\xc8\x45\xa8\x8e\xf4\x63\xb5\x63\x30\x7d\x83\x99\x07\x4c\x29\x80\xfd\x0b\x52\x6c\xa9\xf0\x8d\x59\xd9\x7e\xaa\x16\x8e\x60\x2e\x8e\xcf\xa0\x77\xa0\xa4\x70\xf1\x69\xd3\x88\x05\x64\x92\x9f\xef\x04\x4d\x47\x13\x49\x7e\xc6\x40\xf8\xf1\x61\xb6\x65\xdf\x19\x02\xc3\xa0\x25\x43\xf1\x4c\x5f\xa8\x54\x4c\x8f\x44\x95\x18\x3a\x90\x58\x3c\x6b\x1b\x4a\x94\x71\x91\xbb\x2c\xcf\x67\x11\x33\x0b\x77\xae\xc1\x53\xc5\x5f\x66\xfb\x13\x56\x16\x48\x19\xb7\x0d\x7a\x32\x7e\x42\x5c\x22\x82\xcc\x84\xbf\xda\x6b\x2e\x71\xd5\xfe\xf5\x9e\x51\x89\xe8\x5d\x97\x11\x5e\x27\x6c\x6a\x6e\xb1\xa3\x09\x6a\x1f\xec\xf7\x71\xc5\x77\x6d\xfb\xa2\x8b\x33\x1d\x98\xbb\x87\x52\x1d\x58\x7c\x1d\xa5\xb0\xf9\x6e\xe7\xb6\x8d\xe0\xc1\x1e\x90\x6d\x00\xf2\x49\x18\x4e\x00\x41\x8b\xa0\x1b\xd4\x23\x2e\x61\x21\x10\x7b\x86\x29\xc0\x70\xeb\xd1\xe4\x66\xb9\xe4\xa8\x57\x1c\x9e\x51\x43\x96\x20\x08\xd6\x19\xdb\x58\x5b\x49\x71\x74\xcc\x58\x29\x07\x25\x17\x8f\xc9\xde\x7a\x7d\x87\x44\x3e\x55\x18\x78\xbb\x77\x8f\x64\xbf\xdb\xd7\x72\x5e\x0a\xb2\xb4\x21\xce\x0a\x1b\x81\xf4\xd2\x36\x4d\x6f\x0f\x32\x04\xa2\xcb\x3b\x4a\xa6\x3d\xad\x5f\x3b\x04\xf3\x4d\xd7\x22\x93\x78\xef\x41\x19\xdc\xb3\x2d\x60\x29\x3f\x2e\x44\xfd\x1e\x97\xa0\x7e\x1f\x00\x17\xc3\x0c\xdb\xf8\x2f\xf1\x4b\x98\xb4\xeb\x31\x9b\x79\x2a\x35\xda\x80\x25\x6d\x48\x37\x21\x0e\x8a\xb9\x27\x8c\x53\xbb\x9b\x9b\x24\x0d\x82\x0c\xa5\x17\x9f\x1a\xca\x0b\x3e\x35\x94\x7d\x7c\xaa\x76\x6c\xd0\x83\xae\xdb\xd8\x44\x5c\x5e\xbe\x89\x67\xdb\xe7\x06\xef\xec\xb0\xbd\xd8\x3d\x8e\xd3\xca\xb1\xe4\xee\xa5\xec\xff\xf7\x28\x28\xa1\xd8\x0c\xf1\xa7\xa9\xc3\x3a\xba\xdf\x37\x55\x5f\x7e\x7f\x0f\x57\xe7\xf7\xfa\xaa\x98\xdf\x7b\x14\xae\x9b\x0a\xe6\xfe\xc1\xc2\xa9\x16\x07\xd0\xe3\x0e\xef\xd1\x53\xa0\xa9\xf8\x4e\x57\x6d\x69\xfb\xfb\x49\xf0\x3a\xe7\x88\xa4\xfd\x36\xe0\x08\x3a\xdc\x02\xac\x63\xec\x3b\xd2\x06\x19\x19\xc9\x0b\xbd\x3c\x5e\xc8\x06\x9a\xef\xac\x9a\xe7\x48\xf6\x3d\x94\x18\xb3\x16\x73\x56\x4d\xf5\xad\x7f\x08\x19\xfb\xba\x86\x77\x87\x15\xb1\x07\x96\xa1\x67\x1b\xbd\xc5\x0c\x05\x9b\x3e\xc5\xac\x05\x30\x76\xa7\xbe\x38\xe3\x01\x87\x1a\x8b\xe1\x80\xe1\xd6\x54\xfd\xbd\x94\x18\x82\xc1\xb0\xcf\xe8\x30\xbc\xdd\x6f\xf1\x10\xe3\x25\x87\x3c\xc3\x53\x9a\xa3\x6e\xed\x48\xd2\xcf\xc3\x1e\x21\xc1\x31\x21\xf1\x58\x64\x77\x8d\x6c\xa3\x37\x5c\xe2\xd5\x08\xa7\x8d\xf4\x0d\xae\xb4\x1c\x76\x68\x13\xf2\x62\x69\x54\xe8\x1d\xe7\x39\x31\x76\xa2\xb0\x39\x3b\x3b\x52\x31\x67\xc2\x49\x52\xf9\x7d\x5f\xee\xa9\xf2\xb2\x5e\x81\x4c\xff\xcc\x3f\x49\xdc\xe1\x9f\x0e\x41\xe2\x25\x08\x85\x17\xfb\x26\x3c\x35\xbf\x41\xe8\xbd\x28\xc5\xd1\xc2\x9d\x72\x49\x30\x33\xe1\x2e\x70\x86\xdf\xd3\x1d\x54\xd8\xf1\xd1\x24\xce\xb7\x59\xa4\x35\xd5\x04\x73\xf7\xea\xe7\x37\xe7\x03\xc8\x09\x66\xa0\x39\x13\xcc\x43\x73\x26\x58\x85\xdc\xd6\xba\x21\xe0\x86\x76\x7a\x04\x02\x79\x70\x00\x42\xd0\xde\x32\x03\x94\x3c\x59\x91\x92\x7e\x41\x94\x25\xfe\x39\x42\xf4\xf2\x3b\x06\x0a\x5e\x7d\x12\x28\x7b\xf4\x69\xd4\x6a\x1d\xb6\x59\xcb\x4d\xa3\xe7\x3a\x62\x22\x14\x70\x1d\x31\xb1\x9f\xec\x9e\x41\xef\xda\xe6\x53\x55\xe8\x23\x59\x02\x7f\xa1\x49\x06\x6a\x20\xbe\x66\x83\xd0\xaa\x5d\x37\x89\x70\x2b\x27\xbd\x9e\xe0\x57\x34\x75\xba\xfc\x78\xbd\x08\xac\x5f\x81\xfc\x96\xb4\x94\x30\xe0\xd5\xc2\x21\xc6\x74\xc6\x2f\x4f\xfc\x7b\x58\x50\x2f\x0f\x06\xb3\xa9\x96\xa5\x53\x46\xeb\x68\xde\x50\x5a\x04\xbc\xee\xfb\x5d\x67\x9e\xdf\x78\xbd\x29\x3d\xa7\x1f\x83\x41\x84\x55\xe9\x48\x46\x35\xed\x2a\x5c\x10\x04\x78\x91\x84\x69\x8c\x1b\xb4\xee\x0e\x01\xb8\x6e\x0f\x43\x1e\xb7\x6a\x1d\xe3\xb4\x15\xe2\x9f\xa1\xf7\xb2\x80\x6b\x9d\x65\x80\xc9\x96\x19\x4a\x77\x49\x86\xc1\x2e\x69\xd6\x42\xb3\x45\x2b\x51\xe8\xf8\xcf\x15\x9b\x6a\xb8\x9c\x70\xed\x59\x5a\x47\xb4\x57\xec\xc5\x77\x4e\x3f\x3d\xbc\x8f\xc0\x2f\x68\xb2\x8c\x89\xa8\xfd\x31\x40\xf9\xb9\x5c\xec\x83\x9b\xc3\x9f\xe5\xb7\xaa\xea\x7d\x35\x8d\x19\x07\xef\x6b\xbc\xd8\x70\x21\x29\x01\xcc\x54\x28\x4a\xeb\x3a\x4c\x9c\xcd\xd4\xf9\x60\xfb\xae\x79\x1c\x66\x19\xca\x2c\xae\xcc\x90\x49\x7e\x66\x1b\x71\xa5\x1a\x18\x61\x19\x6c\x28\xf1\x84\x69\x08\x67\x15\x18\xbc\x59\xde\x44\xc7\x2d\xab\xd9\x31\xcb\xda\xcd\x02\x58\x1c\x1f\x82\xe7\x63\xa5\x0f\x92\x7f\x97\x89\x65\xf2\x5e\xcc\x96\x3e\x0c\x1e\xad\x33\xed\x7e\x60\x46\x17\xb9\xf3\xdd\xef\xd4\x91\xaf\x0e\x22\xd8\xc9\xaf\x62\xf4\xe8\x93\x85\x5b\xfe\xd6\x87\x5b\x8e\x9e\xae\x1e\xbe\x06\xe1\xa2\xf3\xa3\x56\xb6\x4b\x94\x97\x3f\x82\x1e\x3c\xe9\xda\xc5\x93\xfb\x61\xe0\x7d\xd6\x97\xc6\x31\xad\xa3\x2a\x65\x74\xf6\x82\xc1\x6f\xfa\x6a\x80\xfc\x0e\xeb\x15\xa5\x9e\x54\xcd\x21\xb0\x5d\x58\x7f\xad\x61\x18\x81\xdb\x10\x15\x45\xae\x0d\x2b\xd4\xc0\xda\xe3\xfa\x06\x8f\x2a\x04\x0f\x47\x34\xf5\xd7\x74\x6c\x32\x84\xef\x6f\x1a\xcf\xf9\xab\xbb\xe5\x42\x6c\x29\xf6\xed\xf7\x80\x16\x64\x46\xa7\xa7\xd3\x93\x07\x62\x46\xc8\x7b\x5b\x36\x8b\xf4\xe3\xf6\x69\x8c\x29\x63\x38\x8d\x1a\xcc\xfd\xbb\x20\xf2\x36\xfc\x88\x25\xa3\xea\x34\x6a\xaa\xc4\x3b\xff\xce\xbd\x57\x95\xbc\xe7\x00\xc8\x1f\x92\x7c\xc5\x63\xa2\xff\x13\x3c\x60\x27\x3e\x0a\xa0\x51\xfa\x4c\xe4\x27\x7f\x7d\xcb\x15\x7f\x9b\x76\x25\x31\x4d\x84\xee\xfd\x76\x8b\x84\x2d\x1d\xad\x89\x15\x71\xc2\x1a\x09\xfc\x0e\x23\x7e\x16\xf8\x59\xe4\x37\xf8\x75\x8d\x5f\xd7\x65\xf9\x51\x0a\x83\xab\x52\x71\x3a\x9c\xaf\x91\x72\x83\xdf\x37\x1c\xe2\xf6\x3e\xfb\x67\x71\x3b\xfa\x44\x81\xfd\x40\xc0\x60\x6e\x4e\xd3\xed\x07\xa5\xcb\x8b\xfd\x4f\xfd\xe3\xfd\xf7\xf9\xda\xff\x46\x93\xf0\x45\x29\xdc\xbc\x26\xc9\xe7\x7d\xb0\xc6\x7e\x6d\x15\xca\x37\xa5\x72\x3f\x34\x51\x3e\x29\xad\xcd\xaf\x33\xdf\x2f\xfd\x42\xaa\xef\x95\x7e\x11\x7a\x8b\xb6\xd9\x71\xf0\xd0\x0f\xee\x71\x4b\xff\xdc\xd7\x29\xe5\x69\x80\x24\x44\x8c\x64\x27\x64\x7e\xa7\x4f\xde\xf6\x65\x17\xdd\x59\x62\x41\x7d\xab\x7a\xb7\x77\xe7\x53\x1f\x51\x5a\xc0\x7c\x94\x25\x31\x54\xe7\x37\x7c\xe4\x81\x33\x9a\xdd\x6c\x5e\xe9\xbb\x6e\x65\xca\x87\x81\x87\xff\xf6\x6f\x00\xa7\xcf\x7f\xff\xf7\xf4\xec\xf9\xa3\xb4\xfc\xcc\x31\xe3\xba\x74\x9b\x7f\xc6\xa9\x40\xa1\xe8\xe7\x8b\x08\x90\x1d\x73\x61\x72\xac\xd7\x50\xfa\xbc\x37\xee\x9e\xfe\x5f\x00\x00\x00\xff\xff\x1e\x79\x55\x67\x89\xae\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xeb\x72\xdc\x48\xae\xe6\x7f\x3e\x05\xdb\x27\x1c\xb6\x23\xe4\x72\x74\xf7\xde\xa2\xa3\xed\x5e\x59\x6a\x5f\xe6\x58\x96\xc6\x52\xcf\x6c\xaf\xc3\xc1\x66\x15\x59\x55\x1c\x57\x91\xd5\x24\xcb\xb2\xe6\xc4\x89\xd8\x07\xd8\x07\xd8\x7d\xbd\xf3\x24\x0b\x7c\x00\xf2\x42\xb2\x24\xbb\x67\x62\xfd\xc3\x62\x65\x22\x6f\x48\x24\x12\x89\x04\x90\xf9\x6e\x97\x15\x65\xb7\x48\x9f\xa6\xc7\xe9\x2e\xaf\xea\x4d\xd9\x75\x69\x57\x6e\x96\x8f\xd7\x4d\xd7\x97\x45\xfa\xb2\xea\xe9\x77\xfb\xa9\x5a\x94\x49\xb2\x6e\xb6\x25\x81\xbe\xa2\x3f\x49\x91\x77\xeb\x79\x93\xb7\x05\x25\x9c\xda\x77\x52\x7e\xde\x6d\x9a\x96\x81\x7e\x96\xaf\x64\x5d\x6e\x76\x5c\x86\xfe\x24\x5d\xb5\xaa\xb3\xaa\xa6\x9f\x97\xf4\x95\xbe\xae\x25\xa5\xd9\xf7\x96\x74\xbe\xef\x25\x6d\xbf\xb3\xa4\x5f\x76\x49\x5b\xae\x2a\xea\x4d\x4b\x49\xef\xf4\x33\xb9\x2e\xe7\x5d\xd5\x73\x4b\x7f\x95\xaf\xe4\x53\xd9\x76\x55\xc3\xb5\xff\x45\xbe\x92\x5d\xbe\x62\x80\x0b\xfa\x93\xf4\xe5\x76\xb7\xc9\x51\xe0\x4a\x3f\x93\x4d\x5e\xaf\xf6\x02\xf3\x46\x3f\x93\x45\x5b\x52\x56\x56\x97\xd7\x94\x7a\x82\x1f\xb3\xd9\x2c\xd9\x13\x12\xb2\x5d\xdb\x2c\xab\x4d\x99\xe5\x75\x91\x6d\x65\x98\xbf\x50\x7a\xaa\xe9\x29\xa5\xa7\x9c\x8e\x21\x94\x05\x0d\x35\xcb\x3b\x1d\x07\xe1\x92\x46\x9e\x77\x09\xaa\xaa\xf3\xad\x95\xe6\xcf\xa4\xdc\xe6\xd5\x86\xb1\xf6\x98\x3f\xa8\xe3\x5d\x77\xdd\x00\xb7\x17\xfa\x49\x48\xc8\xfa\x9b\x5d\x09\x1c\x3c\xbe\xa2\xaf\x64\x91\xef\xfa\xc5\x3a\xe7\x7e\xca\x57\x42\x40\xbb\x86\x90\xd1\xb4\x37\x80\xb3\x1f\x49\xd3\xae\xf2\xba\xfa\x7b\xde\x0b\x82\xce\x83\x9f\xc9\xb6\x6a\xdb\x86\x71\x7b\x86\x8f\x84\x86\x9e\x71\x3d\x94\xf2\x96\xb0\x10\xd4\xc2\x39\xdb\x6a\xd5\x0a\x1a\x39\xf3\x0c\xbf\xb8\x16\xce\x5b\x36\xed\x47\xcd\x78\xc1\x9f\x83\xa2\xd4\x09\xcd\x8d\xdb\xcf\x6b\x42\xbc\xe6\x9e\xe1\x47\x04\xd0\x25\x79\xb1\x25\x54\xee\xf2\xba\x64\x1c\x1d\xf3\x2f\xc2\x0b\xfd\x4a\xf2\xc5\xa2\xd9\xd7\x7d\xd6\x95\x7d\x5f\xd5\x2b\x46\xf6\xb1\x24\xa5\x97\x9a\x94\x04\x79\x2e\xed\xa6\xd9\xbb\xe9\xa4\xf4\x5f\xe9\x67\x7a\x21\x3f\x25\x2f\x28\x84\x4c\x57\x92\x47\xd2\x65\xcb\xb2\x2c\x64\x2c\x5d\xfa\x82\xbe\x93\xdd\x7e\xb3\x21\xac\xfd\xbe\x2f\xbb\x9e\x0b\x5d\xd0\x6f\x1a\xbf\xfc\x4e\xaa\xae\xa3\x0f\x4a\x7e\x8d\x8f\x84\xa6\xae\x5e\x60\x30\x27\xf8\x48\x92\xf7\x5d\x99\xb7\x8b\xf5\x87\x44\xfe\xa2\xaf\xfc\xc1\xb4\x77\x68\x52\x99\x90\x94\x88\xa4\x05\x6b\x20\x59\x34\x05\xff\x38\xa1\x3f\x54\x75\x55\x77\x7d\xbe\xd9\x7c\x48\xf4\x83\xc1\xe4\x4b\x26\xa0\xaf\x7a\x60\x41\x13\xd3\xcb\xbe\xdc\x75\x3c\x83\xe9\x8b\xaa\xed\xfa\xc7\x7d\x45\xc4\xfa\x6e\x5f\x27\x45\xb3\xf8\x48\xcb\x80\x97\x34\x5a\x7e\xbd\x4c\x09\x59\x0f\x68\x21\xb4\xfb\xba\x26\xf4\xa4\x2f\x1b\x42\x19\x35\x53\x51\xfb\xa7\x80\x3e\x4a\x77\x9b\x32\xef\x08\xa4\xcc\x8b\xf4\xc7\x3c\xed\xf3\x76\x55\xf6\x4f\xef\x65\x73\x5a\x7e\x1f\xef\xa5\xeb\xb6\x5c\x3e\xbd\x77\xbf\xbb\xf7\xec\xe5\x9e\x8a\x6d\xaa\xba\xec\x7e\x7c\x92\x3f\x4b\x17\x39\xe5\x10\x1a\x6f\xd2\x79\xb9\xe4\xd5\x46\x6d\xa5\x44\xe5\xf5\x8a\x57\xda\x4d\xbf\xe6\x06\x89\x12\xe8\xa3\x4b\x79\xa9\x7f\x93\xf0\x04\x10\x2b\xc8\x8a\xb9\xb1\x35\x74\x08\xc9\x2d\x4d\xc0\xd9\xcd\xe5\x9f\xdf\x1c\xa5\x17\xc4\xdb\x56\x6d\x89\x6f\xfa\x8f\x4a\x7c\x9f\xd2\x68\xaf\xaa\xd3\xe7\xb3\x84\xca\x1a\x42\x4e\xf3\x3e\x9f\x73\xdf\xdd\xec\x73\xa6\x2c\x42\x97\x87\xa5\xc8\xdc\x12\x9c\xb1\xeb\xa3\x69\x99\x5a\xc8\x54\x87\x2e\x7f\x57\xc7\x5b\xe6\x01\x94\xee\x30\x7b\x21\x38\xa3\xaa\xd2\xd7\x6f\xdf\x9e\x9f\x3e\x4f\xcb\x7a\x45\x98\x49\xaf\xab\x7e\x9d\xee\xfb\xe5\x7f\xcb\x56\x65\x5d\xb6\xf9\x26\x5b\x54\x8c\x94\x96\x08\x36\x25\x2c\xc9\x10\x67\x49\xd7\x6d\x88\x45\x81\x0a\x2e\x2f\xdf\xa4\x67\x4c\x09\xbb\xbc\x5f\xa3\x23\xfd\x3a\xe9\x7e\xdf\x30\xa2\x5c\x83\x57\xeb\x32\xc5\x62\x00\x50\xb3\x1c\xe2\x25\x2d\xb4\xaf\xb3\xa4\x6c\xdb\x8c\x38\x68\x7f\xc3\x68\xd6\x3a\x0f\x41\x4b\x75\x44\xed\x75\xd3\xd3\x34\xa6\x28\x27\x55\x54\xf5\xa7\x7c\x53\x15\x84\x6c\x8f\x90\xb8\x2c\x12\x8b\x86\xe6\x8d\x4b\x13\x65\x36\xd7\x18\x6a\xbe\xa0\x0d\xa0\x4b\xef\xcd\xee\x81\xe3\xde\x7b\x7c\x6f\x96\xd4\x4d\x26\x5c\x82\x79\x73\x51\x75\xf9\x9c\xf8\xb4\xec\x1b\xad\x71\xbd\x5f\x99\x7e\xa4\x2b\x0a\x91\x46\x10\x8c\x5b\xde\x8b\xb0\x05\x30\x71\xe5\xc4\xb0\xc1\x6c\x94\xcd\x84\x63\x37\x9e\xe4\xe6\x57\xd8\x92\x4b\x18\x8d\x39\xb1\x09\x33\xea\x3a\xde\xed\x36\xd5\x42\x9a\x7e\x29\x79\x9e\xd0\x78\x67\x56\xa4\x84\x70\x20\x14\xcb\x0b\xc8\x85\x7a\xcd\x6c\x2b\x8d\xf8\x3c\xca\xaf\x4b\x5a\x39\xeb\xfd\x4a\x76\xa7\x4d\xb3\x2f\xbe\x01\x43\xb1\x99\xf3\xfc\x24\x7d\xd7\x50\x87\x41\x1d\x0e\xc0\x37\x71\x4c\x8c\x81\x85\x81\xb6\xdc\x36\x3d\x23\x4e\x8b\x55\x34\x3d\xd7\x15\x65\xd2\x48\xbb\xfc\x13\xb1\xc5\xbe\x91\x25\x59\xd0\x92\x5b\x70\xc5\xc4\xc1\xf6\xb4\xa3\xcb\xb2\x20\x3e\x22\x4b\xc3\xd2\x62\x1a\x04\xd4\x76\x4f\xab\x69\x4d\x95\x31\xe2\x59\x22\xa1\x2a\xa7\xfa\x89\x21\x51\x3d\x58\xe5\xb4\x72\x1b\xda\x3c\x79\xa2\x4f\xf1\xa1\xbf\xc3\xfa\xa9\x57\xf9\x72\x49\xbd\xea\x68\x55\xbc\x4a\x17\x9b\x86\x96\xd4\x2f\xef\xde\x74\xbc\x60\xd6\xd9\xae\x69\x21\x89\x50\xd6\x05\x7d\xba\xb4\x00\xd1\x0c\x51\xef\xb7\x73\xfa\x75\xbd\xae\x88\x51\x03\xed\x5c\x82\xa5\x24\x4a\xa5\x26\xf6\x1d\x4d\xe1\x51\x4a\x4b\x98\x46\x40\x28\x03\x01\xf0\x18\x8c\xea\x18\x7c\x49\x34\xb6\x6f\x69\x39\xad\xfb\x7e\x67\x2d\xbf\xba\xba\xba\x90\xa6\x5d\xea\x6d\x6d\xe7\x01\x65\x60\x0e\x36\x2c\x1b\xd5\x69\x53\xcf\x40\x24\xfb\x76\x33\xa0\x1f\x1a\xab\xe5\x1c\xc0\x0b\x77\xe1\x09\xff\x77\xe9\xd1\x03\x3c\x77\x24\xf5\x5d\x83\x9a\x08\xc7\x25\xe4\x14\x22\xea\x66\xc7\xf5\x06\x54\x7d\xae\x09\x9e\x94\x21\xdb\xb8\x7c\x91\x70\x28\x17\x32\x65\xb0\x4b\x6f\x69\xc0\xca\x46\x2f\xcf\x08\x0d\xe0\xa5\x48\x5d\xb6\xcd\x96\x52\x5f\xd0\x1f\x9f\xe0\xbb\x7f\xc6\xf5\x01\x26\x2f\x0a\xe2\xf2\xdd\x51\xfa\xee\xc5\x49\xfa\x9f\xbf\xff\xee\xbb\x59\xfa\xba\xe7\x95\xc8\xc4\xf9\x37\x26\x2a\xfa\x14\x51\xcb\x81\x12\xc7\xea\x89\xee\xee\xf1\xca\xba\x97\xfe\x88\xdc\xff\x5e\x7e\xce\x49\x44\x2c\x67\x8b\x66\xfb\x8c\xb9\xea\x36\xa7\xb5\xcf\x39\x44\xae\x4a\xc7\x97\x65\x5d\xd0\x87\x0a\x6c\x9a\x17\xb0\x03\xcd\x0f\xc4\x37\x11\x5c\xb3\x45\x53\x2f\xab\x96\x07\xf4\x73\x0d\x6a\x30\x91\x96\xb6\x6b\xe4\x98\x54\x44\x48\x23\x0e\x52\x2d\x6f\x3c\x28\x86\xfa\x96\x13\x75\x42\x13\xa1\xba\x4c\x45\x74\x87\xe5\x4b\x21\x46\x9e\xb7\x73\x1a\x5e\x6b\xf8\xee\x3c\xc2\x9b\xe5\x92\xf7\x5a\xdb\x25\xb4\x85\x73\x49\x95\x0d\x23\x04\x21\x62\xdc\x41\x28\x3f\x55\x22\x3e\x39\x7d\x9b\x96\x9f\x88\xda\x98\xeb\xb5\x4d\xb1\x5f\x80\xc2\x18\xf6\x88\x99\x35\xb1\x88\x8e\xd6\xc6\x42\xf6\x95\x80\x49\x70\xd7\x98\x13\x2d\x08\x88\x78\x83\x31\x6b\x12\x24\x3f\x11\xe7\x6f\x83\x26\x5e\x5a\x92\xf6\x7e\x04\x3b\xea\x94\x2b\xc1\x23\x5f\xd0\x8c\x13\x55\x48\x2f\x3a\xe9\x94\x64\x13\xb9\x13\x1d\xef\xe9\x84\x92\x17\xd4\x97\xf9\x0d\xf8\x4e\xc7\xc4\x50\x94\xcb\x7c\xbf\xe9\x7d\xbf\x06\x9b\x88\xb5\x74\xc9\x87\xa4\x30\x6f\xb2\xc0\xa8\x83\xa0\x9e\x6e\x58\x96\xc8\xb0\x26\x39\x47\x36\x1b\xa6\x57\x39\x85\xd8\xbe\x43\xec\xa9\xc4\xf4\x64\x5e\xe4\xd7\xf9\x32\xc9\x3f\xce\x77\xcd\xbe\x13\xc9\x27\xc5\x56\xcb\x35\x5a\x05\x2c\x2a\x4c\xf7\x65\x96\xa8\xb8\x94\xe9\x71\x2d\xfb\x54\xe1\x30\xe4\xc8\x55\xaa\xd4\x23\x1c\xf3\xb5\xbf\x30\x00\x9f\xb2\xba\xc9\xb2\xae\x37\xe7\x3c\xc8\xce\x1d\x86\x04\xe7\x3c\x5c\xb4\xc0\x22\x1c\xcd\xd2\xa7\x0a\x6c\x5e\x09\x06\x78\x21\xaa\x41\xd3\xd4\x54\x57\x96\xa8\x81\xca\x3f\xa1\x3a\x51\x66\xa6\x07\x04\x95\xd9\x4d\xf4\xe3\xed\xbe\x68\x20\x3b\x60\x2f\xa1\xd2\x86\xd6\xc1\xbe\x9e\xb6\xd5\x6a\x4d\xbc\xb5\xb9\x3e\x12\xa4\x5c\xaf\x9b\x92\xd7\xcf\xeb\xd3\xa7\xdf\x4a\x3f\x56\xbc\xb3\xb8\x42\xbc\x27\xe5\x7b\x22\x2e\xc2\x98\x92\xb1\x74\xc1\xed\xed\x80\x1c\x1d\x45\x04\x68\x78\xf8\x1b\x89\x12\x8e\x69\x28\xaf\x08\xf3\x94\x49\x78\x18\x29\x6d\x07\x48\x69\x58\xb9\x92\xca\xfb\xd9\xaa\xc1\x41\xc6\xe4\x7b\xde\x2d\xe9\x3c\xdc\xf5\xd9\xaa\xea\xb3\x25\xb3\x2e\xae\xf9\x05\xd7\xc0\x9b\x37\xe5\xa4\x0f\x28\xeb\x41\x4a\xfc\x8f\x4e\x67\xc5\x0f\xe9\xfd\x4f\x2a\x31\x7e\xcf\x3c\x29\xa3\x55\x54\x6d\x30\x25\x7a\x3c\x6a\x4b\x11\x58\xed\x0c\xee\xa4\xb6\x6e\xbf\xc3\xde\xa6\x02\xa2\x3b\x0d\x14\xcd\x75\xcd\xab\x0f\xcc\x97\xf8\x4c\xb5\xa8\x68\xcf\x98\x57\x75\x4e\x1b\xbc\xd5\x02\xa6\x7e\x9f\x68\xe2\xed\xf9\x15\x00\x57\xcd\x7c\x5f\x6d\x0a\x03\x98\x25\x26\x44\x92\x08\xa9\xb3\x1f\x8a\xd5\x96\x54\x49\x5f\x16\x4d\xcb\x12\x09\x46\x63\x05\x0f\x88\x42\x2d\x8b\x18\x48\xae\xf8\x3c\x03\x58\x94\x73\x52\x0b\xa3\x81\xa6\x1f\x47\x35\x96\x69\x40\x37\x55\x57\x3f\xe8\xd1\xd3\xc5\x9e\xda\xa2\xa9\xe7\x64\x2a\xd8\xa5\x8f\x9f\xd1\xff\x09\x4b\x48\xb2\x03\xac\xc6\x88\xe7\xcc\x54\x32\xf7\xb2\x16\xa3\xae\x46\x44\xee\xa6\xda\x48\x38\x18\x6b\xd8\x5f\x23\x81\x6e\x2f\x54\xcb\xea\x92\x0d\x4d\x6b\xf9\x0d\x7d\xf0\xc9\x6d\xb5\xc1\x24\xe4\xbd\x1e\xaf\x1a\xc2\x1b\x13\xc8\x91\x2c\x9a\x25\x0d\x8d\x79\x69\x9f\x7f\x2c\x71\x22\xa3\x3d\xff\x3d\xeb\x81\x3e\x24\x7b\x91\x41\x9b\x4d\xe1\xce\x3b\xa0\xec\xa6\x1d\xaa\x31\x3c\x90\xa3\xda\x8e\x84\xed\xc5\x3a\x73\x5a\x24\x46\x4a\x5f\x7e\xc6\xee\x8f\x2c\xaf\x54\x62\x92\xe7\xac\x64\x7b\x83\xe9\xe2\x41\x9c\xdd\xf8\xd9\x22\x09\x94\x16\x0a\x1d\x66\xe7\x0d\x63\xed\x53\xe9\xa0\x4e\xc2\xd4\xb8\x00\xd5\x45\xb2\xb2\x56\x15\x6b\x1b\x28\x4b\x54\x22\x9a\x2b\x6a\x91\x2e\x01\x2b\x53\x15\x18\x38\x1e\xcd\xa7\x9e\xec\x67\x34\x31\x50\x1b\x58\xcb\xc4\x17\x6f\x64\x5d\x04\x6d\x26\xef\x55\x3d\xf6\x21\x31\xb8\x77\x71\x3e\xf1\x94\xf5\x87\x40\x05\x95\xd9\xec\x9a\x2a\x0a\xda\x13\x65\x2b\x5e\xa4\x58\x97\x3b\x96\x3e\xb6\x1d\xc8\x62\xc3\x27\xed\x1b\x95\x9f\x1d\x81\xfc\x24\x0c\x9b\x28\x86\xd8\xdc\x37\x49\xd7\xf0\x82\xcb\xbe\xb2\x8a\xe7\x15\x91\x02\xca\xc7\x9b\x9d\xe8\xc6\x48\xcc\xe5\xe9\xa3\x55\x76\x73\x14\x9f\xac\xd6\x79\x47\x4c\x9c\x64\x05\x2d\x56\xcc\xec\x84\xcb\xd3\x4e\xe7\x39\xac\x19\xe8\xf3\x40\xe5\x52\xb2\x69\x87\xbb\x30\xf7\x50\xf8\x9c\xb6\xe2\x64\x27\x48\x46\xa1\x00\x35\xd1\x26\x21\x6c\x5b\xb2\xf8\x9c\x6d\x45\x8d\x26\xbf\xd2\xb3\x32\xa1\xed\x70\x45\x0b\xda\x08\xf6\x29\x6b\x3f\x56\x38\x65\x28\xbd\x32\x40\xd9\x87\x8c\x58\x21\x2c\xe5\x27\xd3\x5b\x12\x67\xb8\x86\x6a\x88\xd6\xf6\x08\xfd\xb4\x65\x51\xf6\xcc\x18\xbb\xc8\x08\x10\xf5\x3a\xe2\x16\x1e\x89\xc7\x29\x2b\x20\x43\x28\x15\xb9\xfd\xb0\xb8\x00\x73\x8d\x1f\xe7\xcf\xee\x77\x3f\x3e\x99\x3f\x73\xbc\x75\xb1\x2e\x17\x1f\x85\xfe\xaa\x7a\xde\x7c\xc6\xc1\x16\x8a\x12\x3a\x53\xf3\x1a\xbb\x5f\xa4\x74\xd0\x6d\x71\xae\x22\x5e\x40\xc5\x08\xf1\x9c\x1b\x4d\x1a\x75\x86\x59\x06\x6d\x6d\x0b\xac\x2a\x10\xb8\x27\xc8\x63\x4e\x65\x92\xc4\x06\xe0\x69\x12\x03\xd9\x54\xdb\xaa\x1f\xd1\x04\x73\x98\x5c\x69\x4b\x75\x65\x86\x24\xd4\x85\x61\x62\x94\xc4\xa7\xa9\x1a\xda\x57\x8d\x4e\xae\x73\x3a\x48\x7d\x9f\x12\x6d\xec\x69\x7f\xe2\xce\xd2\x78\x88\x51\xe7\xbc\x31\xd3\x21\x2a\xef\xb2\x7d\xad\xf8\x2a\x0b\xa3\x92\x57\x15\xb6\x0f\x6e\xd7\x68\x39\x80\x32\x94\xea\x59\x20\x7d\xe8\x50\xf9\x68\xa6\xba\x2d\x14\x63\x9e\xce\x1d\xaa\x58\x6e\xcd\x27\x67\x85\x78\x5e\x5d\xca\xd9\x17\x18\x60\x38\x9e\x41\x3a\x40\xf9\x69\xa1\x53\xd8\x47\x4a\x01\xa6\xe7\xfb\xbe\x6f\xf8\x5c\xb2\x61\x72\x90\x32\xd6\xeb\x13\x00\xe2\xa8\xe5\xeb\xc3\x74\x86\x78\x12\x16\x5b\xda\x39\x21\x23\x3a\xe4\x35\x2d\x1a\x6e\x3e\xd1\x0d\x46\xa7\x9b\xa0\x03\x2b\x44\x97\x94\xd7\x37\x5e\xbd\x81\x5e\x70\x83\xfd\x74\x5f\x1e\xb6\xe5\x23\xdf\x1b\xb7\x18\x50\xc2\x7a\x24\xc5\x83\x85\xf2\x0e\xb9\xa2\x62\xb5\xe5\x64\x7b\x9a\x2a\x2a\x3d\x7d\xb4\x31\x7a\x91\xcf\x24\x4f\x9c\x93\xc4\xca\x02\x88\xa6\x51\xa0\xf4\x6c\xd0\x96\x3f\x12\x8e\x31\xd8\xc7\x5d\xf6\x5b\x53\xdf\x34\x59\xb7\x96\xe3\xb7\x75\x8f\x8e\xee\xf5\x2a\xd2\x5b\xe1\x5e\x04\x44\xf7\x5f\x78\x03\xe4\x81\x7e\x48\x74\x36\xca\x60\x51\x28\xb5\x5a\x8e\xcd\x9a\xac\x0d\x07\x6f\xc2\xda\x5f\xca\x96\x8f\x77\x00\x8a\x67\xeb\x10\x16\xe3\x41\x38\xa6\xe8\x77\x77\xc7\x10\x35\xe9\xc8\xf6\x7b\xee\x75\x53\xe4\xd4\xed\x1b\x68\xa2\x7f\xa5\x0d\xa7\x86\x8e\xbf\x49\x28\x43\x8e\x99\x67\xf8\x20\x50\x3e\xf3\x7e\x48\x78\x4b\x7f\x3b\x10\x56\x79\xc7\xd2\xb4\x40\x5e\x42\xd6\xcf\xd1\x25\x86\x1b\xca\xc5\x84\x60\xfb\xae\xf4\x77\x19\xf8\x72\x63\xba\xbc\x7c\x75\x65\x87\xd8\xcb\x57\xe9\xc7\x52\x2b\x7f\xd5\xf7\xbb\xee\x17\x28\x34\x44\x3b\xc1\xaa\x8c\x8b\xfc\x86\x85\x48\x49\xd6\x1f\xc8\xb8\x2a\xf3\xad\xf6\x92\x3f\xa5\x8a\x63\xda\x5d\x35\x91\x3f\x69\xd3\x0d\x14\x65\x09\xc4\xa9\x9f\xa7\xc4\x68\x77\xa8\x29\xf5\xa2\xe4\xb7\x91\x76\xef\xb7\x24\xdf\xec\xe8\xdc\xc5\xf2\x4c\x00\x06\x45\xd6\x5c\x8f\x5f\x29\x40\x40\xc1\xfb\x2d\xcd\xfc\x02\xc7\x4d\x2a\xf0\xf0\x71\xf6\x28\x50\x6c\xc6\x95\x15\xb4\xb4\xff\x50\x85\xfc\xcd\x42\x6f\x58\x6f\x57\xfd\xdd\x46\x11\x55\xc7\xe9\xc4\x29\x09\x02\x22\xa6\x87\x72\x40\xd8\xa7\x59\xdc\xec\x59\xaf\x45\x09\x24\xd2\x46\x55\x6f\xf3\xcf\x77\x15\xdc\x36\x13\xe5\x84\x81\xf9\x42\xc6\xa6\x74\x88\xf1\xb2\x20\x78\xd6\x5c\x1d\x84\xa6\xa9\x27\x90\xaa\x5e\x6c\xf6\xc5\xc1\x9e\x74\xfb\x39\xed\x71\x2c\x2b\x3f\xb8\xdf\x3d\xe0\x2a\xeb\x8f\xb4\x29\xd7\x0e\xfe\x17\xf9\x9d\xe2\xf7\x0f\x76\xcd\x46\xa7\x59\x3d\x40\xa4\xee\xc2\x8d\x64\x8b\x82\x77\x07\x1c\x04\x66\x9e\xa9\x84\x87\x03\x47\xfe\x50\x49\xe8\xe9\xcd\x2d\x6c\xd6\x43\xe0\x9c\x44\x24\x38\xf3\x77\x83\x19\x6f\xf1\x19\x0b\xdd\x75\x28\x5a\xbb\xcd\xdf\x76\x51\x40\xc8\x0d\x51\x36\x2e\x37\x58\xa0\x07\x8b\x93\x24\x33\x51\xfa\x7c\xac\x4b\x3e\x50\xbe\xa7\x25\x36\x51\x81\x5b\x79\x07\x0b\xca\xe4\xa3\x10\x8d\xbc\x18\xf1\x8e\x71\x41\x06\xa3\x63\xdf\x66\x53\xae\x58\xe9\x68\x0d\x47\xad\xe9\x44\xd3\x96\x27\x60\x21\xc1\x79\x0c\xbb\xc9\x0a\xe7\x35\x3c\xc4\xb8\x39\x8a\x8f\x8f\xac\x8b\xa1\xaa\x5a\xdc\xef\x06\x87\x48\xed\x86\xee\x00\x5b\x3e\x2f\x75\x7b\xde\x80\xf8\x6c\x25\xc2\x55\x3c\x1b\x2c\x5e\xa0\xaa\x12\x4d\x1c\xae\x9e\x68\x91\x0f\x9c\x77\xd5\x0f\xb0\xaf\xac\x3a\x54\x3a\x8c\x2b\xd6\xca\x1d\xd0\xa1\x6a\xdd\x81\xb8\xfc\x5c\x41\x81\xfb\xb2\x62\xc5\x20\x8e\xc4\x4e\x13\x80\xbc\x59\xb2\x21\xe6\xc1\x47\x2f\x19\x95\x88\xe1\xcd\x27\x5e\x8d\xdc\x1e\xe7\x4a\x39\x51\xe8\xea\xa0\x78\x9e\xf5\x70\x8d\x6b\xa0\xb2\x38\x22\x41\x86\x4b\x50\x3f\xb1\xb8\xf3\xcd\x75\x7e\xd3\x41\x53\x64\x1c\x8a\x95\xd7\x52\x9c\xd9\x0f\x89\x39\x2b\xf4\x2a\xbc\x22\xa1\x15\x67\x98\x60\x5d\x3f\x6f\x36\x4e\x18\xb9\xc6\xf1\x18\xdc\x45\x75\x4f\x9f\x82\xed\x5a\xf7\x26\x3e\xda\xf3\x41\x98\x8f\x28\x92\x1d\x54\x84\xbb\x47\xdd\x29\x26\xca\x1e\xb1\x10\x48\xcd\xb0\x48\x46\xfc\x5b\x70\x4d\x52\x2e\x61\x16\x5d\x0a\x74\x25\x7b\xaa\xff\xb1\x88\xf5\x15\xe1\x90\x8f\x89\x5e\x7d\xc0\x7b\x19\xcd\x8a\xa9\xf8\x25\x1d\x87\xff\xa4\xeb\x69\x09\x30\xa6\xed\x42\xff\xd7\x40\x1e\x49\x91\x8b\x25\x06\x34\x75\xeb\x6a\x97\x36\x50\x1b\x87\x28\xf4\x64\x1b\x08\xd2\x7c\x99\x51\xe2\xd8\xc0\xfa\xf3\x36\xaf\xbb\x65\x09\x45\xfa\x36\x5d\xf2\x9d\xf1\x4c\x9b\x66\xb9\x5c\x2e\xf6\x0f\xb4\x2c\x47\x30\x34\x1d\xee\x2e\x98\xbb\x60\xa2\xe2\xa6\xe5\x66\x05\xca\x5a\xf4\x01\x58\xf5\x35\x75\xd6\x07\x26\xb3\x11\x0a\x20\x1b\x47\xf7\x64\xd6\x9b\x4f\x65\x88\x88\xe5\x1f\x1d\x79\x80\x75\xbd\x2b\x90\x0b\x96\x78\x9a\xa4\x51\x68\x6b\x70\xcd\x3b\xbf\x89\x47\xcf\x45\x83\xbb\x73\x5a\x23\xa5\xb6\xc2\x0b\x83\xd7\xca\xa0\x42\x68\x69\xfc\x89\x28\x91\x7b\xf6\x6c\x4e\x5d\x5c\xac\xa3\xd5\x79\x85\x9c\x54\x72\x46\x0b\x34\x79\xcf\x4d\x7f\x48\xe4\xa6\x3d\x73\x4a\xf9\x13\xb9\x79\x17\x89\x56\x95\xec\x7d\x6a\x9a\x78\xbe\x2a\xb1\x22\xa2\x77\xbf\xb5\x24\x6f\xc3\xa6\x14\xfd\x5b\x43\x32\x07\x74\xeb\x7f\xa2\x2f\x96\xf1\xeb\x24\xba\x5e\x1c\xa8\x49\x20\x46\x57\x3d\xaf\xb0\x0b\x5a\x18\x24\xf6\x1c\x6b\x0a\x9d\xd2\xc1\x1d\xa0\xb9\x79\x61\xdf\x34\x1f\x39\x33\x3d\x5e\xda\xf2\xa5\x70\xa2\x46\x7b\x61\xdf\x09\x1f\xf2\xb7\x33\x6c\x0e\x2c\x7e\xe3\x9a\x22\xd8\x12\x58\x5a\xe0\x09\xb3\xbc\x59\x00\xbf\xcb\x7b\x62\x8b\xb5\x1c\xc4\x84\x43\x85\x45\x35\xdb\x55\xe1\xee\xb3\xb9\x16\xb6\xfd\x10\x54\x7c\x48\xbc\x49\x8a\x59\xa3\x4c\xa9\x85\x95\xc5\x74\x2a\x23\xff\x2b\x7d\xaa\x42\x07\xec\x0b\x1f\x7a\x20\xc7\x4d\xb2\x5d\xff\xc1\x3c\x26\xf8\x99\xa8\x0a\x2c\xd6\x7f\x29\x79\x3f\x4d\x4f\xe5\xc3\x8e\xf6\xfb\x0a\x63\xaa\x8a\x24\xd9\x01\xef\x81\x01\x8d\x4e\x84\xeb\xb4\x1a\x4a\x79\x4d\x7c\x3b\xdc\xd9\xd9\x66\x43\x0a\x31\xe1\xda\xe5\x10\xa4\x00\xbe\x9b\x08\x8e\xa5\xac\x5c\xc6\x79\xb5\x0e\x2e\xbe\xf8\x3a\x87\x4f\xd9\x04\x76\x5d\xce\x53\x56\xf7\x12\xe1\xd0\xe9\x4f\x07\xba\xcd\xe9\xe0\xf8\xa9\xca\x9d\x62\x89\x66\x8b\x4d\x74\x74\x17\x7d\xc1\xe6\x39\xb8\x4c\x1f\xdb\x91\xf1\xcd\x94\x5e\xf6\xbc\xd1\xcf\x64\xbf\xe3\xdb\x93\x60\xc0\xbf\x20\xc1\x0d\x38\xce\x0f\xce\x63\x18\xba\x15\x73\xd2\x8c\x80\x17\x76\x48\x83\x95\xcb\xcc\x96\xcf\x84\x7d\x98\x2e\xa1\x62\x08\xe2\x35\x2c\x60\x31\x6a\x1c\x03\x64\xca\x7d\x2e\x86\x4f\x3b\x63\xba\x6e\xae\xd3\x4d\x55\x7f\xec\x14\x9b\xcc\xc7\xc2\xc3\x29\x54\x52\x44\x84\x7b\xb1\x1b\x92\xcf\xb1\x99\x92\x5d\x33\x0d\x56\xb8\x5d\x46\xc9\x85\xdb\x31\x92\x27\x61\xfd\x11\xdd\x2e\xc4\x96\x25\x8b\xc9\x60\x6a\x76\x79\x47\xa3\x6c\x9a\x4e\x15\xa0\x9e\x89\x70\x1a\x94\x2a\x0a\xa5\x38\x77\x10\x3a\x25\xc7\x76\x65\x88\x35\x95\xd8\x25\x9f\x75\x00\x2b\x34\xab\xb6\x62\xf6\xf7\x8b\x5d\x01\x62\x7e\xdc\x69\x02\xd9\x30\x2a\x89\x7b\x1f\xde\x7b\xbc\x6d\xec\x82\xd1\xb8\xa1\x65\x1e\xd9\xa6\x2f\x18\xc0\x96\x1d\x75\x76\x48\x1f\x5a\x81\xa9\xf0\xef\x20\x13\x23\x82\xf0\x52\x48\x26\xde\x31\x88\x66\x13\x89\x76\x27\x7a\x19\xe1\xf2\x19\xb3\x41\xfe\x5b\x5c\xdf\x39\xa5\x02\x1f\xc8\xb3\x01\x88\x1e\xd8\x23\xc8\x49\x09\xda\xda\x3a\x28\x3d\x0f\x7a\x3f\x5a\x2b\x56\xee\x9a\xb0\x10\x0e\x5c\xa9\xbb\x98\x99\x1d\x0f\x6b\x52\xe5\x2e\x10\x06\x17\x62\x74\x52\xe3\x22\x51\xaa\x20\x54\xe1\x80\xd1\xf9\x73\xc5\xb1\x70\x1f\xbe\x00\x10\xab\x43\x07\xa0\x86\x87\xf1\x79\xb3\x34\xeb\x85\x90\x91\xed\x5a\x22\x0f\xda\x68\x07\xfa\xb5\x11\x0b\x8b\xd8\x15\xb8\x55\x83\xab\x78\xcf\xa5\xe8\xc4\xa8\x75\x31\xbf\xc7\x97\xa5\x38\x1d\x11\xd1\x31\x8b\xba\x9a\xac\xcc\xd9\xe5\x0a\x8b\x76\x9d\xa4\x1f\xc2\xb8\x74\xb8\xa7\x9a\x32\x00\xb0\xe1\x28\x83\xef\x27\xb4\x85\x18\x8d\x8a\x1d\xc6\x7f\xab\x5a\x4c\x21\xdc\xd5\x5c\xc4\x40\xd2\x53\x70\x14\x9a\x37\xd1\x4b\x1b\x3f\xf9\x69\xd8\xb8\x9f\xf0\x9f\x07\x2a\x6d\x19\x5c\x4c\xef\xdf\x24\xd4\x25\x50\xa3\xbf\xe2\x2c\x30\xcd\x03\x8d\x19\x83\x85\x20\xaa\x8e\x74\xc9\x59\xa4\x73\x87\xf6\xfc\xab\xf4\xec\xbc\x77\xff\x13\x54\xec\x51\x5b\x5e\xc5\xee\x7a\x39\x58\x0e\xdc\xbd\xc1\xce\x39\x5a\x18\x94\x01\x39\x42\x49\x3a\x90\x0e\x94\xa8\x9d\x90\xc0\xcd\xc8\xd9\x84\x31\x44\x49\x10\x25\x94\x1a\xb0\x85\xb0\xa0\x0a\x33\x22\xd8\x00\xca\x41\xa5\x1b\x29\x8d\xe3\x89\x3f\xc6\x49\x8c\xb0\x22\xb0\xb0\xd3\xa3\x8d\x59\xa4\x58\x3d\xd9\x6d\x19\x11\x72\x89\xee\x4c\xba\x46\x37\x64\x47\x7a\xfc\x59\x57\xab\x35\x8d\xab\xda\xf2\xd5\x31\xc8\xc9\xee\x27\xfd\xe9\x94\x7f\x11\x43\x69\x56\x35\xeb\xae\xb8\x05\xb1\xe1\x72\x1b\xcc\x8f\x5d\xdf\x36\xf5\xea\xd9\x69\xc3\xc7\x46\xd6\xe8\xf0\x26\xf8\xd3\x8f\x4f\x34\x9d\x98\x26\xcf\x21\x1b\xfc\xbd\xac\xfa\x57\xfb\xf9\x83\x2e\x5d\xb1\x05\x2a\x2e\x55\xf2\xc0\x2e\x55\xad\x06\xc4\xc0\xee\xba\x76\x68\x81\x95\x2a\x2d\xf4\xae\xd9\xd0\x2a\x89\x8b\x34\xdb\xad\xcc\x2f\x6d\x00\x5b\x81\x44\xff\x61\x68\x50\xd6\xc0\x5c\xd9\x2a\x7e\xa8\xc2\x99\x23\x73\x3f\x3f\x3a\x6d\x26\xee\x45\x7a\x12\x15\xb8\x18\x18\x37\xa7\x75\x1f\x6c\x1b\xac\x23\x49\x5d\x31\x08\x0a\xe3\x62\x98\x48\x56\x3b\x79\x15\x8d\x29\x59\x70\x12\x40\x1d\x56\x9e\x8a\x52\x4f\x44\x62\xe2\x34\x6b\x53\x64\x85\x92\x95\xdb\x42\x5a\x01\xfd\xf2\x5e\x61\x2a\x5c\x08\xbe\x5e\x99\xc3\x04\x3b\x58\xe5\xca\xd8\x64\xf4\xca\xd6\x6c\x04\x01\x63\x53\x9c\x78\xce\x36\x84\x99\xe2\x6d\xd6\x8b\x90\xa9\x89\x85\x92\x30\x36\x21\x49\x3a\x69\x30\xdb\xfe\x42\xa6\x36\x6a\xd7\x0f\xdc\x9a\xfb\x02\xbe\x86\x31\x1d\x03\x1d\x34\x16\xe8\x46\x74\xa6\xde\xa8\x26\x04\x19\x6c\xdd\xea\x4f\x3d\x6f\x1b\xbd\x1f\x4b\x2d\x11\x73\x42\xc7\x9c\xbe\x8c\x16\x33\x77\x02\xf6\x88\x62\x6f\x03\xe5\xca\x7f\x4d\x8b\x9c\x38\x41\xdf\x7c\x24\x62\x1a\x17\x41\xfa\xa1\x42\x8e\xc3\xd8\x59\x43\xf9\xcb\xb1\x67\x0f\xc3\xd3\x87\xde\x33\x1f\x64\x31\x01\x67\xd1\x5a\x9d\xcd\x93\x68\x86\x60\xeb\xcd\x86\x21\x85\x70\x12\x65\x04\x6a\xd8\xe3\x38\x00\x49\x58\x35\x03\x41\x7d\xcb\x1f\xfa\x3b\x9c\x96\xa8\xfe\x60\xb9\x10\x03\xdf\xd7\x01\x03\x15\x72\xc8\x04\x15\x6e\x90\x17\x74\x94\x84\x61\xe3\xb1\x54\x78\xc5\xd9\x9d\x5a\xf5\xea\x75\xbd\x15\x79\xa9\x89\x58\x03\x00\x14\x84\x77\x0e\x11\xf8\xe5\xb5\x0a\x56\x8b\x9a\x62\xa8\xc9\x22\xe6\x80\xa8\xce\x58\xe6\x5a\x4c\x33\xd2\xe3\x8b\xd7\xb4\x67\xb8\x06\xad\xd2\x9f\x73\x92\xa4\xa5\x0b\xd7\x4e\xa3\xc1\xc4\x36\xe4\xb9\x4e\xe6\x97\xe2\xa6\x40\x45\x49\x2c\x71\x37\xa8\xd1\x80\x64\x30\x71\xbe\xe0\xb8\xec\x02\x2d\x8f\xb4\x86\x9e\x0c\x77\x2b\x37\xd4\x6f\x08\xb3\x4e\xd7\xc8\x4b\x6b\x77\xc3\xfc\x3f\xb0\xc5\xca\x05\x43\xd7\xe0\xe0\x03\x23\x30\x82\x84\xa6\x23\xe5\x25\xdc\x3a\xfe\x61\x1d\x56\x0e\x12\x4e\x65\xc8\x46\x26\x27\xd3\x33\x95\xc9\x62\x53\x9c\x65\x67\xf5\xc4\x63\xbe\x8b\xcf\x30\xe1\xfb\x73\xf8\x2d\x5c\x26\x1c\x55\x40\xca\x17\x93\xcd\x3a\x8a\x96\xa6\x07\xfc\x26\x95\x8d\x50\x0c\x19\xb8\x15\x39\x5d\x28\x45\x04\x36\xc2\x54\xcb\x75\xb9\x61\xe3\x5e\x6d\xdd\x5f\x6f\xea\xd0\xa3\x1b\x7f\x05\x0a\x4e\xa2\xa5\x17\x71\x05\x15\xa1\x9a\xce\x2a\x23\x08\x5a\x6e\xb8\xe4\x97\xa3\xbc\xed\xd7\x27\xc7\x6f\xdf\x9e\x5f\xf9\x6d\x9a\xd7\x41\x5d\x90\x30\xf1\x8d\x33\x87\x1b\xf5\xcb\x8c\xe2\xdc\x04\xc6\x10\xde\x2c\x4f\x4b\x1c\x82\x0b\xd9\x94\xd5\x4e\x9f\xab\x06\xbc\xa7\xe1\xbe\x18\x2f\x8f\xfa\x5f\x1c\x9a\xbf\xe4\x3d\xcb\x37\x1f\x12\x53\x76\x9f\xf3\xdf\x24\xbc\x2f\x08\xee\x68\xb0\xf4\xfc\x55\x8e\x37\xbd\xa7\x0e\x34\xc5\xe8\xfe\x00\x4c\x7a\x9f\xe3\x68\x44\xb8\x6f\xb0\x57\x2c\x53\x5c\x66\x1f\xb1\x3a\xb4\x69\xb1\x60\x18\xb9\xfb\xba\xfa\x7d\x0f\x01\x8d\x0f\x46\xc4\x3c\xd8\xca\x72\x5e\x6d\x64\x43\xf9\x8b\xfb\x21\xe9\xfc\x35\x30\x0f\x0f\x1a\xa7\x5f\x3f\x76\x3b\x36\x52\xa5\xbd\xa1\x7b\x7a\x6f\x5f\xa5\xac\x5d\x63\x13\xad\x7b\xcf\xe8\x18\xc3\x57\xdc\x34\x7d\x04\xf1\x6c\x54\x1d\xbb\x88\x2d\x44\x15\xe7\x8c\x7d\x40\xb7\x9a\xce\xab\x85\x45\xde\x48\xff\x27\x88\xff\x03\x6d\xb2\x3f\x9a\x1f\xc7\x43\x3d\x25\x13\x8e\xb0\x76\x3f\xe5\x9b\x7d\xac\x2c\xe1\xd6\xb9\x4c\xf7\x28\x41\x51\xd5\x18\x0f\x7d\xd9\x90\x67\x46\xe9\x9c\x07\xcb\x74\xa4\x4e\xa0\x2f\xf0\x3a\xc9\x37\xbd\xe8\x8a\xd3\x00\xfd\xcc\x0b\xd0\x6a\x19\x4e\xb1\xde\xe9\x39\x96\xd3\x2d\xda\x0a\x96\xf5\x92\xce\x9e\x8b\x69\xe0\xb5\xe8\x12\x7d\xbb\x97\x44\xa8\x34\xa6\xd9\xaa\xea\xe9\x8c\xcc\xfe\x53\xb0\xc3\x4e\x68\x9d\xd3\xd6\x03\x9f\x47\xf9\xb2\x94\x51\x51\xde\xa5\x05\x16\x3a\x2e\x96\x0d\x95\x64\xf9\x43\x7f\x4f\x94\x52\x40\xf3\xb8\xe4\xeb\x8a\x26\xab\xea\x8a\x57\xea\x6b\xfa\x43\xbb\xb0\xc8\xec\x31\x5d\x89\x40\x8a\x4a\x54\x21\x23\xa7\x66\x57\x8f\xda\xc5\xe9\xac\xa8\x41\x5c\x30\x2f\x6a\xba\xad\x2a\x6f\xa0\x0d\x09\xe9\x73\x24\xa8\xa3\x23\xf5\x84\x66\xe1\x93\xc8\x2f\xe2\xfa\xf8\xda\x52\x1e\xf2\x99\xed\xd1\x01\x45\xf0\xf0\x36\xf5\xeb\xf5\xc1\xc3\x1a\x6e\x57\x0b\xb3\x41\x51\xc6\x4a\xfe\x54\xad\xc9\x22\xa3\x85\x44\x1d\x31\xcd\x1f\xcd\x79\x62\x8a\x43\x5a\x98\x7b\x78\x29\x9b\xce\x22\x8f\x57\x17\x0c\x31\xe7\xb4\x3a\xee\x3d\x13\x9c\xd9\xd2\xb2\x5a\x75\x0a\xce\xd4\x17\x34\x98\x03\x85\x98\xc1\x77\x24\xb3\x23\x2b\x5b\xe4\xf0\x71\x50\xd5\x2f\xd3\x50\x11\xf7\x55\x09\x28\x0f\xfc\x51\x9e\xbc\x7c\x7d\x05\x6f\x14\x9a\x31\x78\x0f\x98\xcb\x0d\xdb\xe9\xce\x5c\x9d\xcc\x98\xab\xae\x93\x0d\xbb\xae\x80\x78\x5e\x83\x76\xd3\x6e\xd3\x41\x5c\x45\x0e\x98\x5a\x59\xc8\x72\x7c\x6d\x76\x3d\x08\x18\x33\x14\x7e\x2d\x89\x5a\x90\x13\x71\x72\x8d\x6f\x52\xcc\x54\x29\x0f\x1d\xa1\x12\x59\xe8\xc6\x3d\x74\xd9\x2f\x1d\xff\x80\x67\x0b\x9b\xe4\xc7\x8c\x03\x8e\xb5\xc1\xbc\x85\x86\x74\xbc\xb5\x14\xbc\x37\xee\x6e\x32\xd6\xf0\x62\x3b\xdc\xdd\xf8\x84\x40\x6e\xa0\x8c\x2a\x02\x76\x36\x0f\x17\x98\xa7\xff\xf8\xdf\xff\xe7\xf1\x09\x77\xfc\xa4\x6f\x37\xf4\xa5\x62\x19\xc3\x0b\x22\xa5\x82\xf4\xfc\x5f\x49\xbc\xbe\x56\x03\x87\x5f\xe4\x2b\xb1\xdf\x7f\xc5\xaf\x3d\x1b\x1e\x8b\x35\x05\x7f\x24\xfa\x8b\x6f\x60\x12\xf5\x13\x66\xde\x99\xf0\xd9\x46\x27\x9e\xce\x35\x21\xa3\xfb\x7d\x5f\x2d\x3e\x66\x72\x24\x7f\x9a\xfe\x99\x7f\xa5\x70\x11\x4d\x84\x6c\x98\x7f\x38\x66\x00\xf2\x1a\x70\x94\xd0\x90\x16\x0c\x52\xcd\xd9\x3d\xf3\xc8\xe3\xcd\xe6\xc6\xac\xf3\x0c\x90\xbd\x5f\x92\xdd\x9e\x6d\x7a\x78\x4a\xad\xb5\x0b\x4a\x81\x2b\x11\x27\xb2\x68\x10\xd4\xe0\xae\xe7\xa2\x3a\xd0\x3c\x75\x57\x5c\xc1\x26\xf7\x54\x64\x79\x05\x13\xdb\x19\xcf\x73\x1a\xb2\xca\xb7\x49\xe2\xd8\x9a\xb2\xb3\xbe\x2d\x21\xb6\xd3\x9f\x84\xb8\x25\xdb\x81\xe9\x65\x1f\xfb\x40\xf6\x39\x2e\xb7\x90\x6e\x57\x7d\x7c\x63\x99\xaf\xb4\x22\xc8\xeb\xcf\xf5\x33\xa1\x74\xfe\x7d\x45\x7f\x46\xde\xca\xec\xdb\x3c\xf6\x69\xde\xe4\xf3\x12\xc9\x6f\xf0\x41\x2b\x86\x18\x76\x4f\xd3\x00\xc5\x93\xfb\x91\x30\x1e\xaa\x5e\xa8\x0f\x5f\x89\x3a\x0b\xc8\xc5\x9e\x7c\x26\xb8\x36\x69\x73\xb6\x9c\x7d\x97\x5f\xcb\x4f\xc2\x91\x3a\x3d\xbf\x92\x2f\x49\x86\x1d\xb6\x80\xc2\x0c\xdb\xc1\x43\x24\xd3\x25\x70\x61\xdf\x89\x75\x60\x36\xee\x88\xe5\x0c\x7c\xae\xd3\xc5\x20\x7f\x29\x07\xcb\x17\x7c\xac\xb4\xb4\x1c\xcc\x38\x35\x53\x32\x97\xbe\xa5\x75\x24\x77\x0b\x67\xf2\xe5\x72\x0a\xb1\xcd\x3c\xc5\x56\xa6\x69\x66\x17\x7f\xce\x7f\x5d\x2a\x11\x25\x52\xdf\xf2\x5f\x67\x63\x2e\x21\x09\xf8\x44\x29\x4e\xde\x3e\x79\x36\x9c\x8b\x20\xab\x66\xb9\x60\x8e\x4b\x1c\x5a\x5f\xc8\x0f\xb3\x17\x84\xff\x36\x73\xe5\x4f\xf8\x67\xba\x19\xd5\xe2\x26\x37\x9c\xdb\x41\x33\x21\x0c\x35\x35\x09\x26\xcd\x85\x90\xd2\xe2\x76\x0a\x98\x4e\x11\x75\x04\x7b\x4e\x09\x21\x69\x45\x15\xb3\xfc\x3b\xa8\x19\x22\xf1\x34\x3c\xed\x73\xec\x87\x84\x43\x81\x7e\x8e\xfb\x19\x00\x49\x37\xf3\x09\x50\xd6\xcd\x78\x38\x1a\xf8\x10\x48\xd5\x87\x8e\xe9\x0c\x67\xcf\xcf\x0f\x4d\xed\x70\x82\x24\x33\x23\x01\x68\x51\x3a\x2f\x0a\x00\x41\x84\xe0\xf0\x00\x51\x33\xae\x32\x6d\x2c\xaa\x0f\x08\xed\xf3\x39\x65\xdf\x2f\x80\x4d\x57\x98\x71\xe5\xb3\x04\x75\x96\xa9\xcc\xc5\x6a\x8e\xaa\x0c\xf3\x48\xda\xc9\x44\x7e\x13\x44\x38\x59\x6e\x33\x51\xe2\x56\x8a\x1a\xc2\x1c\xac\x79\x44\x37\x5a\xf2\x96\xe9\xf5\x10\xec\x50\x7f\xb8\xea\x03\xe5\x54\xdc\x82\x90\x35\xce\x99\xb1\xaf\x8d\xe3\x9f\xc7\xb0\xf0\x00\x0f\x9d\x02\xed\x34\x4c\x08\x49\xc7\xbc\xa1\xbb\xae\x16\xaa\xa8\x99\x2a\x24\xb3\x5c\x64\xf3\x1b\x2d\x23\xf3\x0c\x1f\xc6\x03\x45\xb6\x6c\x24\xd2\x70\x78\x06\x2d\x72\xe6\x12\x26\x8a\x74\xea\x03\xcd\x4e\xc8\xe3\x9c\x19\xef\x46\x30\x22\x61\xde\xd4\x4d\x82\x30\x95\x02\xe4\x1c\x1f\x53\x20\xa2\xbe\x54\x05\x04\xef\x02\x62\xed\x6f\x17\x9e\x93\x0d\xb3\x65\x8c\x2b\xf1\x06\x76\x32\xed\x17\x94\x63\xa3\x53\xe6\xab\xa2\xad\x3e\x6b\x60\x08\x8a\x9f\xb7\xb4\xe3\x0b\x48\x43\xa3\x12\xbc\x92\x30\x0b\x04\x22\xdf\xe9\xfd\xf7\xdf\x7e\xe8\x78\x1a\xfc\x45\xc0\xfb\xef\x3e\x74\xf7\x9e\xdd\x7f\xff\xfd\x07\xdc\x00\x8c\x0a\x67\x4b\x56\x80\x8d\x6b\x40\x41\x83\xde\xb5\xe5\xa7\xaa\xd9\x77\x22\xa4\xe1\xd3\xf3\x87\xcf\x32\x15\x9f\xfb\x78\x89\x3b\x5f\xec\xc1\x0a\x2f\x5c\x56\xbc\xc2\xeb\xfd\x36\xd3\x31\x76\xc2\x01\xec\x97\x2b\x6e\x18\xc8\x72\x6e\xf2\x37\xf7\x9b\x87\x5b\x15\x3c\x58\xea\xbc\x45\xf3\xf8\x17\xf9\xf5\x0c\x03\xe1\xa1\xff\xe6\x5a\x6a\x82\xbb\x83\x2b\x71\x27\x67\xa1\xd9\xdd\x62\xdc\x94\xfd\x2c\xe6\x4a\x16\xda\x04\x5d\x8e\xb3\xb4\x17\x1e\x44\xe7\x0d\xa6\xb6\x21\x78\x5b\x02\x31\x06\xf7\x0e\x3f\x07\x99\xb7\x55\xd6\x46\x05\x94\xd5\x7a\x2a\x51\xd0\x01\xae\x15\x53\xb2\x0d\x7d\x1d\x9a\xa4\x3d\x57\x87\xfd\xfc\xca\x5a\x44\x9e\x20\xa9\x75\xe9\xea\x59\x12\xc6\xeb\x05\xf4\xcc\x50\xc5\xf3\x50\xd5\xd4\x52\xa0\xbf\xb2\x89\x5d\xa3\x81\x99\x2e\xf0\x61\xc9\xa2\xd8\x51\x3b\x7a\x47\x9b\x91\x12\x4c\x13\xcd\x6b\x8a\xce\x04\x74\xfa\x01\xc7\x36\x4f\x29\xbe\x8d\xe1\xa4\x08\xb4\xaa\x33\x33\xc7\xd7\x63\x03\x31\x4b\x36\x21\x93\x11\x11\x19\xb1\x73\xa8\xea\x55\x0f\x3a\xb2\x45\x97\x75\xe6\x18\x27\x57\xb5\x3c\x91\xe1\x6a\x2d\x0b\x28\x2e\x7e\xa6\x3f\x0e\xaf\x03\xb3\x18\xeb\x1f\xb7\x42\xdd\xa7\x3f\x96\x24\xfb\xa2\x2d\x3a\xbf\x6f\xc7\xf9\x8b\x66\xd3\xf8\x7d\x1d\xbf\x86\x00\xa2\xe7\xbc\x5f\x0c\x64\x33\xc9\xf6\xb4\xad\xab\x97\x13\x06\x3b\x8f\x40\x4e\x0c\x46\x32\x06\x46\x5f\x71\xa6\xf3\x0f\x91\x0e\xc2\x4b\xc4\x02\x10\x8c\x6b\x51\xd3\x29\x80\x3a\x45\xeb\x24\xd8\x94\x46\x5d\xa4\x8c\x50\x83\xce\x32\x7b\x68\x7a\xc0\x77\xc8\x81\x52\x5d\x6b\x3e\xac\x43\x9f\x6e\xda\x1f\x8a\xa5\xa7\x77\x5c\xd6\xc9\x21\x88\x57\xd4\x2e\x27\xd2\x13\x5b\x14\x3d\x4b\x70\x8a\x9a\xe0\x74\xd3\x70\x36\x50\x03\xee\xaf\x9b\xd4\x9d\xc2\x10\x35\x8c\x37\x82\x3c\xe5\xc2\xe6\x19\x07\xf2\xd7\xf2\xb3\x41\xb5\xf0\x6e\x7e\x0a\xab\xb7\x61\x83\xda\xc2\xd3\x54\xbf\x34\x3f\x3a\x20\x0e\x0f\x86\x0a\x43\xbc\xb9\x2d\xbb\xfd\x06\x7b\x00\x2e\x19\xe5\xc7\x52\xae\xc7\x0c\x08\x81\x97\x58\x68\xf1\x6d\x05\x8c\x5c\xc2\x32\xa9\xd5\x03\xe7\xce\xcb\x45\x0e\x03\x57\x38\x46\xd1\x58\xd7\x1c\x08\xca\x8f\x9e\x40\x38\x8c\x84\xd5\xcf\x16\xc3\x61\x30\x2d\x66\x5b\xae\x7a\xd3\x79\x0c\x30\x35\x2f\xfb\x6b\x9e\x3a\xb1\x42\x60\xe4\x8a\xf1\x6b\xf7\x43\xb8\x19\x13\x07\x7b\x82\x36\x9e\xf0\x8e\x5c\x28\x37\xfb\x17\xfc\x10\x9e\xa6\xa8\x1c\xc8\xeb\xe1\xb1\x57\x41\xb0\xa0\x6d\x52\x99\xe2\xa0\xa4\xde\x96\xd4\x28\x76\xf1\xc2\x8e\x90\xc2\x5b\x7f\x64\x37\x36\x63\x9e\xf8\x26\x22\x66\x2b\x03\x4d\xff\xde\xa5\x6b\xfd\xa8\x49\x37\x6b\x6b\x46\xd2\xfe\xb1\xea\xa9\xf4\x7f\xfa\x60\x34\x4a\xd2\x7e\x16\xb2\x4b\xd0\xa7\xff\x19\x41\x0d\x4f\xce\x3e\x4f\xf4\xb4\x20\xa8\xd2\x2c\x10\x0b\xcd\xd7\x8d\x95\x48\x45\x50\xe3\x9c\x0c\x24\x43\xaf\xd0\xc2\x99\xa4\x5e\xd3\x29\x9e\xd7\xba\x62\xd3\xdd\x24\xcd\x22\xd4\x40\x8a\x6d\x7d\x4b\x4c\x35\x2e\xe7\x6a\x54\xad\x5b\xdc\x0a\x13\xaf\x6d\xa9\x82\xc3\x4e\xd1\xfa\xb0\xfb\x43\xfa\xe5\x6e\x0a\xa6\xeb\x52\xd8\x62\xef\x8d\xc2\x19\x8b\x54\x08\xfa\xad\x80\x65\x59\xdf\xab\x2e\x83\xe1\x90\x18\x1e\x5f\xa9\x35\xd0\xa6\x5a\xf4\xa9\x4b\xa7\xe6\xd4\x34\x1c\xe6\x23\x2b\x89\x52\xe3\xec\xc0\x69\x3f\xec\xd6\x08\x7b\xc1\x00\x4b\x3a\x31\x6e\x1b\x08\x6a\x8e\x45\xe4\x75\x06\x85\x3b\x86\x1a\xc6\xc2\x60\x95\xaa\x21\x97\x21\x1e\x0f\x30\x2c\xca\xaf\xc1\x70\x83\x6a\xa1\xcb\x3e\x54\xf3\x83\xfe\xf6\xba\x8d\x0b\x88\xcb\x06\x2f\x7a\x1b\x7a\xe7\x96\xaf\xa9\x3f\x0e\x36\x39\x15\x1e\x2d\x54\xb3\xd1\x3c\x34\x12\x49\x01\x16\x39\x55\x1f\x11\xcd\x90\xad\x80\x80\xa6\x56\x37\x88\x76\x5f\xeb\x22\x44\x29\x68\xfa\x98\xcc\x7f\x1b\x8f\x57\x89\xf9\xd0\x58\x43\xb6\x55\xcb\xce\x1c\xd1\xd3\xc3\x7f\xb9\x5f\x3c\x92\x85\x0c\x6b\x9c\xd1\x8d\x08\x27\x0a\x3a\xc3\x5d\x90\xc7\x5c\x75\xf0\x8b\x66\xb2\xe1\xcd\x82\x81\xe8\x7b\xf6\x5b\x12\x28\xe3\x02\xb5\x91\x3f\x66\x07\xd9\x13\x3a\x81\x20\x77\x5a\x2f\x30\x04\x28\xbc\xb6\xe5\x7e\x17\xb5\xdd\x64\xb4\x3c\x32\x3d\xb4\xd1\x96\xc2\x8b\x05\xbf\x86\x5d\xb0\xd3\xca\xb0\x6a\x27\xf7\xc7\x23\xa2\xed\x7b\xce\xfb\x88\x78\xfb\x0a\x9f\x0e\x14\x90\x44\x02\xea\xe1\xa1\xb7\xce\x2a\x03\x44\xd5\x0f\xd8\xfc\x24\x76\x4c\x72\x83\x4b\x6a\x98\x31\x71\x31\x17\xe6\xfa\x41\x9f\xd2\x88\x59\xe5\x97\x3e\xb4\x50\x59\x8f\xe2\x41\x96\x62\xde\xcc\x7f\xc3\x0c\x17\xd9\x44\xab\xca\x64\xea\xb5\x46\x54\xae\x29\x3e\xe2\xc7\x91\x73\xe8\x7c\x70\x43\xff\x1e\x6f\xb7\x8f\x8b\xe2\xc1\xc4\xa8\x03\xe9\xc7\x0d\x7b\x60\xa3\xa5\x8a\x86\x01\xab\x0c\x6a\x0a\x44\xc9\x69\xdc\x31\x40\x34\x4f\xbf\xb0\x14\x50\xf2\x95\x57\x5a\x78\xbc\x09\xe9\xfa\xb9\xeb\x78\x0b\x68\x88\xe1\x79\xbb\x0f\x66\x15\xe2\xf8\x17\x8e\x64\x20\x84\x07\x59\x03\x7f\xe6\x5b\xbb\xe7\xae\x46\x54\xa2\x23\xf6\xbd\x3d\x80\x12\x09\x6f\x77\x10\x21\x81\xf0\xeb\x91\xea\x04\xe0\x09\xc0\x29\xf1\xd7\xb7\xfd\xcf\x14\x81\xa7\x1a\x9f\x22\x81\xbb\x84\xe0\xa9\x50\xaa\x96\x36\x13\xfa\x86\x3f\x89\x7c\xf9\xac\x20\x3c\x8b\xca\x19\xc1\x6f\x0f\xb6\x6e\x9a\x8f\x12\xa2\x66\x8e\x4f\x9f\xb3\xe2\xd0\x8c\x92\xc9\x41\x08\x5f\xc5\xb9\x24\x5a\x56\x8b\x30\x64\xeb\x73\x4e\x98\xe8\x62\xc1\x73\xdc\x66\x7f\x17\xb5\xe3\x29\x7e\xa5\xff\x93\x09\xc3\x81\xa8\x33\xc8\xb9\x85\x24\x62\x3b\x05\x9f\xab\x66\xfc\x41\x53\xea\x75\x30\x6e\x4b\xed\xdc\x99\x9d\x7f\x99\xab\xc6\x94\x8b\x46\xec\x37\x3a\xf3\xb5\x3b\xcf\x33\xbe\x00\xd2\xcf\x73\x73\x5e\x1b\x83\xb9\xbb\x55\xef\xb0\x16\x5f\x40\xb1\x95\x59\x2d\xf6\xe9\x70\x5a\xe3\xab\xa2\x06\x1b\x56\xe8\x29\x47\x74\xe7\xa2\x1e\xea\xa1\x1a\x07\x7d\xd8\x6c\x75\x41\xf7\x10\xee\x17\x6e\xab\x2c\x99\x75\x72\x93\xae\xee\x77\xe2\xc4\x21\xca\x80\xdc\x1d\xd0\x3b\x18\x0e\x4c\x6c\x7d\x50\x73\xbb\x70\x31\xe2\x05\x62\x5d\x45\x5e\x30\xbd\x03\xcf\x25\x60\x3a\xb8\x9c\x1e\x00\x1a\x52\xce\x89\x7f\x88\x51\xa1\x14\xcb\x23\xcf\xbf\x3e\x50\x52\x89\x21\x10\x5f\xcb\xb9\x1e\x31\x7b\x2a\xdb\x1e\x3e\x77\x63\xb4\xb3\x0f\x00\x2d\xa0\xec\x5b\x6a\xe6\x31\x64\x25\x89\xd3\x88\x41\xc8\xfa\xab\x96\x01\x3e\x60\x1b\xc9\xb6\x8e\x9f\xaa\x62\x4f\xd4\xc7\x73\x71\x5b\xbd\xdf\xc5\xf5\xd2\x8a\xc7\x9d\xf8\xc1\xba\x07\xf3\x09\x21\xc2\x05\xf1\x85\xd3\xe5\xd2\xfb\x12\x77\x53\x2d\x33\x13\x72\x0a\x0d\xc5\x01\x7c\x82\x53\xef\x54\x17\xb2\x2a\xe1\x43\xb0\xce\x12\x03\x6a\x13\x93\x7e\x48\x47\xf3\x11\x63\x4b\x1c\x35\x9d\x54\x75\xa7\x7d\xd8\x88\x10\x06\x58\x1a\xd4\x07\x84\x05\x56\x5c\x36\xfb\x3c\x7c\x0e\xfe\xa6\x01\x86\xed\x0c\x10\x92\x84\x04\x18\x40\xbc\x63\xbe\xf6\xa7\xa3\xc2\x91\xf2\xe0\x23\xa7\x38\x15\xf7\xb4\xc0\xe0\xcf\xf3\xc0\x26\xc2\xec\xa0\xaf\x30\x03\x10\x04\xbc\x1e\x35\xed\xbd\xe6\x8e\xbc\xb1\x92\xb3\xe2\x60\xb9\x93\xed\xc2\xea\xa2\xdc\x71\xf4\x49\xd6\x5d\x2e\x65\xb7\x15\x9e\x7f\x47\xab\xdf\xdd\xd6\xaa\xd8\x58\x4d\x35\x6b\xd6\x86\xea\x86\x8e\x45\xcb\x21\xa3\xef\x68\xed\x7b\x6b\x2d\xdc\xb2\x3e\x96\xe5\x2e\x68\x22\xee\x7e\xe0\x7d\x01\xe6\x19\x1b\x51\x4d\x70\x34\x75\x30\x34\x8f\xe4\x03\x4c\x3c\x8a\x9e\xe2\x2d\x01\x74\x37\xbb\xc3\x19\x6b\xbc\x40\x4c\xcb\x89\x38\xe7\xd0\x74\x3a\x18\xd6\xf2\x64\x01\xe7\x86\xfd\xab\xb1\xe4\x89\xaa\xc4\xae\x76\x60\x39\xe4\x5d\x94\x5d\xd7\xac\x40\x7b\xb8\x7b\xb1\xe9\x64\x3a\x61\x32\xe9\x40\xd9\x2e\x3d\x24\xd6\x54\xbc\x11\x78\x3c\x27\x41\xf2\xe1\x02\x03\x1f\x80\xa8\xae\xd8\x07\x20\xe8\xa0\x50\xd1\xa1\x7a\x4e\x26\xeb\x50\xca\x0b\xa7\x96\x23\x11\x54\xf0\x39\xcf\x34\xba\x97\xc6\xe8\x1f\x3a\x7d\x6b\xee\xf5\xba\x09\x82\xb9\x88\x63\x02\xf6\xa2\xb0\x23\xb3\x78\xac\xd7\x22\x9e\x28\x5e\x54\x58\x19\x48\x31\xb6\xb7\x98\x28\x83\x23\xef\x76\x4f\x5b\xe7\xa6\xfa\x08\x65\x18\x11\xa6\x84\xfb\x3d\xbf\xbc\x82\x06\x8c\x16\x00\xed\xa3\x2b\xe6\xbb\xe9\x5f\xd7\x65\x8d\x08\x94\x1c\x75\x57\x19\xd1\x62\xc1\xfe\x44\x55\xad\xe1\xf9\xae\x4b\xb3\xf2\xae\x8b\x8d\xb0\xad\xd0\xe3\xcc\xa4\x07\xd1\x84\xa5\x88\xac\xcb\x2b\xad\xdb\x95\x0b\x92\x89\x67\x7c\xb3\xd5\xd6\x78\xae\xc0\x05\x51\xbf\x35\x3a\xbb\x1b\x09\x6c\x70\x58\x61\x16\xa0\x45\x51\x12\x2a\x80\x75\x0f\x1e\xa1\x67\x08\x3a\x25\x05\x1b\x86\x6f\x93\x81\xc1\x5f\xc5\xb8\xb8\x62\x76\x9d\xaa\xb9\xc8\x6d\x3e\x1b\x07\xfb\x10\x86\x47\x94\xa6\xef\x10\x85\x87\x55\xcd\xbc\x5e\xc1\x94\x09\x13\x20\xdd\xae\x11\xd3\xcb\x77\xfa\x39\x06\x92\xd3\x12\xf7\xe4\x95\x7c\x8d\x41\x76\x1a\xe8\xc8\x85\x3c\x1a\x83\xcc\x9b\x82\xcf\x3f\xcf\xe9\xcf\x58\x88\x76\xb1\xf1\x4d\x92\x06\x71\xee\xd8\x59\x5e\x2e\x92\x39\x83\xd0\x5d\x6e\x96\x12\xf8\x80\x35\x47\x38\xee\x89\xb2\x8f\x8d\x8c\x25\xac\x67\xc9\x5e\x6e\x5c\x81\xba\xbe\xc1\xab\x03\x31\xcd\x42\x4d\x9e\xba\xc9\x86\x7e\x8f\xc3\x3e\xe1\x62\xc2\xfa\xf5\x5a\x64\x10\x4c\x03\x0e\xb7\x12\x80\xee\x88\xb7\x16\x3e\x17\xda\x55\xa1\x6d\x40\x3b\x09\x3a\xc7\x0e\x4b\x44\xd4\x88\x25\x62\x20\x22\xc3\x8a\xd5\x55\x60\xef\x6b\x81\xb8\x41\x6c\x40\xd8\xb8\x47\x6a\x9f\xcd\x08\x12\xcb\xec\x11\x84\xbf\xc8\x04\x90\x79\x42\x0d\xf7\x19\x05\xf7\x67\x85\x57\xd1\x7a\x08\x38\x4a\xf4\x68\x01\x3a\xaa\xa1\xe4\x44\x93\xcb\x9c\xc2\x14\xb9\x81\xc2\x94\x71\xc5\x66\x91\xc1\xea\xe6\x6d\x9a\x84\x23\x91\xa2\xdb\x72\x95\xb7\x85\x45\x58\x51\x4e\xc3\x5e\x26\xe0\x28\xa1\x43\x6d\xbe\xa1\xc3\xb7\x56\x41\x9c\x91\x40\x3e\xb2\xe5\x13\xcd\x37\xcb\x38\xa6\x6f\x60\x69\xb1\x10\x36\xc6\x3e\x7d\xc4\x5c\xf6\x3b\xe6\x37\xc2\xbc\xac\x1d\x0c\xf9\xe1\x9f\x2e\xcf\xdf\x1e\xa5\x9f\x1f\x5f\x5f\x5f\x3f\xe6\xe2\x8f\xf7\xed\x86\xbd\xdf\x0a\x8e\xe0\xf2\x3f\xce\xde\x1c\xa5\x65\xbf\x78\x34\xa3\x83\x7a\x1b\xab\xb7\xd4\xfe\x13\x57\x0f\x4c\x5d\x2c\x3a\xfe\x71\xf6\xa4\x2b\x46\x03\xa2\x87\x81\xc2\xc2\x0d\x92\x67\xcf\xec\x3b\x74\x32\xc5\xce\xc3\x1f\x0e\xcb\x45\x5b\xc2\x3c\x02\x1f\x41\xc6\x86\xce\x04\x53\x9e\xfb\x43\x90\x8a\xda\xd1\x6e\xbc\x5e\x68\x40\xf6\x01\x88\xdd\x06\x9e\xe0\x1e\xd0\x65\x62\xe2\xdc\xb6\xc2\xa1\xe8\xba\x75\xb3\xdf\x14\x31\xc7\x24\x9c\xe9\x44\x94\xc5\x4f\xc3\xc2\xb0\x64\x44\x44\xe5\xa7\xe9\x9f\x58\x53\xc4\x13\x25\xb4\xc5\x59\x46\x5b\x00\x9e\x0d\x0b\x23\x36\x60\x20\x18\xd3\x00\x24\xe6\xa1\x09\xe6\x3e\xcf\x09\xe7\xa3\x4a\xf4\xfc\xc6\x76\x15\x7d\xba\x75\xe7\x39\xd0\x9a\x54\x37\x2e\x12\xeb\xe9\xa6\xb3\x0d\x2f\x62\xcf\x78\xa4\x96\x8e\xa6\xc4\x9a\xc2\x43\x2a\x66\x9c\x93\x28\x0a\xf8\x23\x40\x99\x8b\x84\x76\xa5\x7e\xed\x82\x31\xa5\x1a\x0c\xb3\x1c\x66\x04\xd1\x0e\xca\x1e\x7e\xe6\x53\x6b\x51\x4e\xd4\x6e\xd6\xfc\xea\x31\xfe\xa6\x3b\x9c\x48\x26\xe2\x9a\x13\x71\x0f\xb0\x8e\x58\xe6\xba\x1e\xee\x62\x43\x71\x4b\x79\x93\x17\x65\x94\x37\x8d\xb6\x6b\x05\x1c\xb4\x31\xda\x25\x55\x3a\x1e\xcb\xfc\xbe\x85\x43\x02\x81\x58\xf1\x64\x3a\x4a\x0b\xf8\x02\xff\xc6\x53\x97\x16\x8b\x57\xb6\x4a\xc1\x77\xe3\x25\xca\x08\x91\x75\x14\x72\x54\x16\xd4\xe2\x3b\x7f\x06\x81\x5b\x2e\xbb\x03\x98\xe9\xfc\xc8\x29\x39\x14\xa1\xa5\x56\x73\x30\x13\x47\xb8\x41\xe6\xf0\x05\x8a\xe1\xca\x26\x59\x4d\xde\x30\x3a\x91\xaf\x10\x5b\xbb\x4d\x73\x63\x7e\xdb\xa7\xf8\xa5\x81\x5d\xc2\x91\x79\x30\x1d\x94\x87\x0c\x94\x2f\x4d\x16\x57\xf7\x6b\x10\xc8\x54\x45\xdc\x9a\xcf\xbb\x28\x4a\x30\xe1\x31\x26\x52\x78\x4f\x74\x6f\xc2\xf5\xd7\x41\x0d\x9d\x94\x4f\x5d\x0b\x07\x9c\x94\xe3\xa2\xa1\xa3\x72\x50\xf4\x0b\x1c\x95\x63\x24\x8d\xdd\x90\xfd\x50\xbf\xc0\x13\x79\x6a\xd0\x63\xb9\x76\x0a\xf1\x13\x05\xa6\xa4\xdb\x22\x1c\xdb\x17\x78\x24\x0f\x4e\xb6\x5f\x22\xe0\x4e\xf5\xc4\xa3\x24\x40\xee\x5d\x1a\xdf\xa2\x5a\x2e\x67\xf3\xb6\xb9\xee\xd8\xed\x17\xcf\x39\x30\x97\xe5\xdf\xe9\x25\x7e\x0b\x08\x5f\xf5\x83\x28\xe4\x43\x12\xd5\xa2\xe8\xa9\xde\xec\x49\x22\xee\x59\x87\x41\xe4\x4f\x29\x47\xee\x5c\xdf\xd2\x49\xec\xd8\x72\x66\x52\x84\x36\xba\xeb\x8c\xbf\xe0\xb0\x0c\xed\x33\x2b\x4b\x51\xe8\x92\x53\x14\x8c\x3f\x0d\xe1\xb6\x2b\xc1\x98\x4d\x6e\xa5\x45\x7c\xf5\x9a\x23\x10\x96\xc1\x11\x18\x11\x43\x05\xf9\xd4\x83\x84\x8e\x89\x04\x61\xb8\xf4\x10\x8a\x20\x2c\xfa\xe7\xaf\xdf\xca\x4f\x58\xa8\x6b\xa0\x20\x98\xa8\xf3\xe5\x78\x62\x76\xef\xb3\x29\xfb\x77\xcb\x13\x5f\x05\x51\x73\xd8\xfb\x6b\xf8\xe5\x20\x8a\x36\x5f\xe2\x1a\x88\xff\xba\x54\x92\x81\x7d\xb1\x8b\xb6\x7c\x3c\x2c\x46\xc8\x11\x54\x5f\xe2\xc3\xa5\xeb\x35\x0e\xff\x71\x69\x39\x4c\x34\x9e\x06\x23\xf7\x18\x31\x5b\x00\xa2\xbb\xfb\x5d\xda\x55\xac\x3b\x55\x02\x1d\x34\x08\xea\xf0\x11\x7e\x41\x3b\x78\x91\x2c\x1c\x6b\x78\x3f\x84\xe0\x04\xdd\x3a\x75\xf8\x61\x17\x9d\x5e\xfc\x8e\xf5\x85\x91\x59\xd4\xef\xa8\xb4\x6c\xb1\xa5\xcd\x76\xba\x69\x56\x90\x22\xf1\x00\xa1\x3c\x35\xb1\xe7\x27\x59\x08\x11\x1c\x70\x8a\x25\x0e\x47\xfc\xd5\x96\xea\xff\x24\x21\xc2\xa5\x7a\x92\x1e\x9c\x5f\x34\x09\x12\xb5\xb8\x66\x5a\x1e\x8e\xd4\x16\x48\x2d\x2a\xe3\x43\x10\x9b\xa6\xda\x7b\x89\x50\x3e\x24\x93\x45\xe8\x7c\xc2\x62\x0a\x47\x8a\x90\xb1\x07\x1d\x88\x18\xb1\xa5\x8e\x99\xef\x98\x00\xc6\xce\xf6\x94\xf7\x78\x38\x3d\x01\xbc\xeb\xf3\x5f\xcb\xff\xf8\x5f\xff\x97\xb5\xa2\x0d\x6d\x8a\x88\x8c\xa1\xc1\x25\xfd\xf4\x9a\x9b\x9a\x7f\xf1\xe5\x31\x58\xb1\xef\xf8\xf0\x5e\xce\x35\xa8\xb3\xeb\xe7\x79\x44\xa2\xfc\x38\x82\x91\x37\x5b\xd1\x0d\x68\x1c\x53\xee\xa9\x1c\x37\x8f\xc3\x3a\x6c\xde\x32\xdd\x22\x5c\xd0\x3b\x05\x94\x45\x8f\x11\xf5\x3a\xaf\xd3\x3b\x8a\x5b\x6e\xfa\x50\x05\xf8\xa6\x7d\x27\xc9\xfb\xa6\x5d\x7d\xf0\x81\x53\x9d\x69\x7e\x14\x34\x15\xc7\x46\x86\x71\xa1\xc7\x0e\x00\xfa\x70\x64\xbe\x46\x9b\x94\x97\x4c\x2d\xe3\x87\xbd\xe4\xd0\x2e\x91\xab\x61\x41\x66\xfe\xbe\x33\x73\x7b\x92\xb8\x8b\x7a\xbb\x1d\xbd\xb8\x08\x6f\x24\xd3\x67\x9a\xe8\x57\x24\x7a\xed\xca\xce\x33\xfc\xc1\xa1\x31\xf9\x8d\x38\x56\x41\xc9\x85\xd9\x6b\x24\xd0\x5a\x46\x02\xc2\xbe\xc2\x69\x88\xff\x26\x08\xb6\xa7\x4a\x37\x4e\xd5\x2f\x4d\x1f\x04\xf4\x8b\xde\x45\x08\xdc\xb4\x10\xe8\x33\x7a\xec\x80\x2b\x07\x56\x26\x6e\xdc\x47\xe1\x5f\x81\x42\xa4\xde\x06\x1d\xf9\xe6\x3e\xd8\xe0\x96\x45\xa3\x47\x41\x77\xcd\x96\x5c\xb5\xc8\x83\xa0\x13\x04\x1f\xad\x23\xd3\xd2\x6e\xe6\x9b\x09\xd6\xcf\x5a\xae\xe3\x7d\x31\x3c\x39\x34\xa7\x95\xf4\x93\xc0\x47\xce\x89\x7a\x92\xcb\xc5\x19\x5e\x92\xd3\x0d\x1d\x0a\x36\xd1\xd1\x0e\x15\xb1\xf8\xf6\xd3\x01\xc7\xd4\x71\xa0\xde\xaf\x77\x4d\x1d\xd7\x71\xbb\x73\xea\x1f\xbd\x09\x9e\x0e\xc2\x17\xea\xaf\x06\xd1\xf8\x5c\xd6\x54\x58\xbe\x3f\x72\x2f\x1b\x83\x06\x52\x51\x84\x02\x57\xd3\x97\xea\xff\xf5\xba\x97\x28\xf5\x1f\xbb\xed\x8d\xc3\xd3\x0e\x7b\x3d\x8a\x1f\x17\x75\xfa\xeb\xe2\xc8\x1d\xbc\x36\x8d\x78\xc5\xf0\x3c\x37\x0a\x06\x81\x01\xde\x5a\x24\x0e\x0d\x11\x76\xd8\x69\xf0\x82\x6b\x38\x55\xea\x4b\x50\x08\x51\x4b\xdf\x1d\x19\xe2\xc0\x3d\xc7\x6d\x21\x22\x86\xbd\x64\x1e\xe3\x1c\x27\xc2\x4e\xde\x5a\x22\xdc\x6b\xe3\xab\xf2\x7f\x24\x6c\xc4\xf4\x5d\x02\x9f\xf7\xae\x4d\xcd\x85\x9d\xd9\xf0\xe7\x95\x07\x7c\x5e\x30\x7c\xc9\x81\xc2\x33\x5a\x8f\x39\x08\x42\x82\xdc\x41\x38\x64\xe5\xda\x33\xbd\x3a\xb3\x88\x51\x83\x74\xcf\xf2\x60\xb8\xac\x97\x83\x1e\x48\x7e\x43\x12\x9d\xcc\x19\x96\x8f\xdb\x88\xfd\x04\x2c\xd5\x5d\xe7\x9c\xe1\xc3\xa5\x13\xd6\x16\x25\xbc\xf9\x4f\xe4\xcb\xe5\xe8\xb9\x4a\x43\x4c\xfb\x4e\x48\xf8\x60\xf8\xf6\x04\xa9\xba\xdb\x29\xae\xd9\x4f\x99\x26\xe5\x66\xc7\x53\x98\xa7\x4e\xb3\xc7\x22\xa9\xec\x82\x22\xbe\x69\xaf\x20\x0d\xff\x30\xac\x4b\x5e\x82\xd1\x5d\xf3\x6d\x73\x9d\xc8\x96\x39\x83\xbb\x82\x84\xbb\xd5\x94\xb8\x4b\x92\xc6\x02\x89\xc6\x22\x4a\x25\xe8\x82\x46\xab\x19\xe7\x0f\x3c\xfc\xb1\x63\x38\xdf\x7e\x8b\x5e\xcd\x07\x11\x75\x8c\xa9\xe5\x3a\x25\x76\x79\x97\x5a\xaf\xdb\xaa\x2f\x7d\xb3\x7f\xe5\x9f\x71\xbb\x21\xc4\x97\x34\x8c\x87\x7f\x87\xcd\x1d\x99\x2e\x0b\xc1\x0d\x55\xc9\x26\x51\xdc\xa4\x15\x7d\xcd\xd5\xfa\xe1\x1e\x54\xf3\xfd\x08\x21\xbe\xa4\x1f\xdc\x0a\x0c\xc0\xe5\x5c\x71\x4b\x7f\xe8\x20\xa8\xb1\x1a\xa3\x4b\xfb\x61\x17\xbd\xe7\xfa\x55\xb0\x4f\xc3\x50\xa4\x18\xc8\x1d\xac\x3a\x1e\x6f\x98\x92\x23\x17\xba\x13\xa2\x81\xd8\xf3\x4c\x86\x71\xba\x7b\x89\xc3\xd2\x9e\x4b\x3a\xd0\xc0\x52\xc7\x83\x4d\xee\x3a\xd2\x2f\x2f\xca\x41\xb6\x3a\x53\x79\x4e\x32\xef\xde\x70\x05\xce\x02\x18\x89\x5c\x17\x6e\x19\x10\xec\x6c\x26\x0b\x09\xe5\xef\xd6\x38\xb3\xba\xa0\xd5\x71\x65\x8e\x55\x03\xca\xb1\xe8\x31\x9c\xf1\xce\x50\x2a\x0b\x14\xab\xcc\x94\x8f\x4c\x56\x75\x66\x04\x80\xda\xe6\x37\x91\xa1\x0e\xec\x8a\xb7\xf1\xd3\xb7\xb7\xe8\x62\xc6\x5d\xf1\xbb\xb6\xc4\xc7\x77\x04\x73\x50\x01\x33\x0b\x97\xfa\x98\x40\x3c\xd9\xad\x5a\x38\x21\xd8\x5c\x33\xb3\x08\x48\x01\x15\xfe\xe0\x46\xe9\x5e\x5c\xf4\xdc\x00\x37\xc5\x54\xd1\x83\xdb\x98\xc2\x57\x74\x00\x6c\xe3\xf6\x1e\x80\x2d\x88\xeb\x19\x75\x23\x60\x01\xb7\x75\x44\x9f\x4a\xfc\xf2\x8e\x80\x6f\x7c\x61\x47\x8e\xac\x17\x1a\x5b\xba\x28\x26\xd7\xff\x6d\xfd\x1b\x1c\x73\x40\x9c\x51\xf0\xf2\x01\xc1\x47\x4f\xbb\x3b\xa2\x0f\x4c\xd6\xac\x5a\x18\x47\xa8\x09\x9d\x6e\x67\xbe\xaa\x9a\xa6\x10\xe7\xd6\xba\x0f\xcd\xec\xe2\x80\x21\x6c\xe1\xd5\xb7\x37\x2a\x92\xf0\xe0\xe2\x78\x25\xde\xba\x46\x0e\x5f\xb8\xee\x95\x80\xf6\xef\x81\xf6\x0f\x89\x7b\xad\x8f\x97\xb2\x7d\x27\xa2\x5b\x91\x2b\x2f\x84\x14\xf7\xb1\xc4\xd3\x61\x6c\xf1\x5b\xe3\xba\xc7\xf1\xec\x87\x0f\x1b\x74\x12\xfe\x6b\x65\xb2\x9c\xbd\x91\x98\xa8\x55\x11\x33\xd6\x1b\xc2\xc1\x16\x0f\xe4\x2e\x38\xc4\x6f\x53\x57\x62\xbf\x72\x26\x5f\x34\xf6\x04\x63\xca\x76\x12\xa2\x01\xef\xdb\x4b\xd8\x45\x4d\xe1\xb0\x8b\x49\xdf\xf4\x10\x28\xae\xf8\xef\x0f\xe9\xfd\x22\xf1\x43\x87\x96\x91\x15\x3a\x2a\x25\xc8\x77\x90\x1f\x04\x21\x87\x4d\x7b\x6b\x61\xd5\x7d\x0d\xe8\x26\x74\x99\xfb\xa0\xdb\xda\x49\x54\xba\xef\xa6\x5a\xcc\xf8\x86\x34\xd5\xfb\x61\xf7\x4c\x3a\x73\x10\x7e\xb9\xac\xe0\x97\xcb\x44\xd3\x75\x14\x24\x44\x13\x12\x66\xec\x5c\x2c\xd0\x28\x39\xde\x15\x7d\x3a\xc2\xbb\xc4\x49\x1c\xd3\x25\x4a\xc8\x17\xa3\x56\x4c\x93\x1d\xa6\x99\xad\x9c\x4f\x31\xab\xb9\xa8\xf6\x38\x1e\x64\x98\x25\xa6\x86\x51\x92\x3e\xd9\x18\x8f\x44\xf4\x88\x61\xda\xa6\x59\xf1\xdb\x03\xf6\x24\x70\x30\x3c\x15\xac\xe3\x3a\xcd\x6c\x3a\xaa\x02\x1e\x98\x61\x0a\x2e\xb8\xfa\xbc\x8b\x4b\x63\x7d\x86\x09\xea\xbd\x3e\x02\xa4\x83\x76\xbe\x58\xab\x17\xcf\x04\x21\xd9\x79\xd9\x11\x93\x1c\x9a\xa7\x20\xe5\x59\xcd\xd4\x1e\xd1\x9c\x84\xe1\x07\xd3\xf1\x66\x69\x90\xcb\x6e\x08\xec\xf3\x82\x90\x99\x8d\x06\x9d\x62\x9f\x04\x17\x1e\x33\x3d\xc7\x72\xec\x6e\x2d\x14\x6c\x71\x1c\xfb\x40\x43\x72\x6a\x49\x11\x47\x6e\xd9\xeb\x7c\xcd\xba\x6b\xaa\xe5\x47\xf0\xc4\x5a\xe7\x85\x88\x1c\x3e\x52\x7a\x03\x6b\xd9\x5f\x54\xc7\xa0\x97\x1e\xc2\x55\xf3\xf5\x5d\x85\x4a\x8d\x83\xc7\x50\x6f\x06\x9d\x8c\x78\x9e\x81\xdc\x51\xc3\xa0\x8b\x93\x55\x7c\x45\x27\xf9\x9d\xdf\xd5\xc2\xbd\x4e\x7a\xca\xa1\x98\xdb\x39\x73\x3c\xde\xe0\xca\x85\xb9\x7f\x45\x6a\xb9\xe9\xe2\xb7\xf5\x0c\x1d\xe2\x03\xf9\x54\xf5\x87\xfa\xd6\x96\xdd\x4d\xbd\xc8\xf0\x48\x6d\xb7\xd6\x1b\xcb\x77\x25\x44\x8e\xf4\xc1\x8c\xd2\x9e\xe4\x1a\xf8\xac\xc4\xdd\x5e\xf7\x40\xa2\xf5\x3f\x5c\x50\x3a\x0c\x89\x69\xff\x7b\x0c\x9e\x88\xd2\x26\xdd\x91\xec\xd6\x3f\xba\xb5\xa1\xc1\x58\x02\x86\x18\xe0\xb6\x45\x57\xf8\x59\xfd\x2f\x18\x41\x70\x5b\x1e\x0e\x83\xc9\x40\x57\x3f\x78\x45\xf8\xb8\x0c\x23\xee\x21\x5b\x3e\x70\x70\x6d\x36\xeb\x50\x73\x29\xdd\xed\xec\x11\x62\xbd\xc3\x3a\x30\xa0\xb0\xdd\x5b\x66\xe8\x41\xd4\x8b\xbb\xc7\x18\x6e\x42\xf2\xd0\xfc\x7e\xc7\xa6\xbd\xa9\x7b\x61\xfe\x17\xfc\x0e\x99\x82\xc4\xff\xcf\x56\x4d\xdb\xd0\xf4\x48\x24\x1e\x7d\x13\xe0\xa5\xa5\x75\x13\x05\xa0\xc0\xbe\xc9\xf6\x1a\x3d\xc9\xca\x9c\x21\x99\x84\x0b\x0e\xa5\xe4\x4b\x61\x8b\xb6\x32\xac\x96\x5c\xa8\x32\x1b\x7b\xb6\x95\x3a\xb6\x8c\xa0\xa4\x96\x69\xe6\x6c\xb3\xaf\x9e\xa4\x00\x3e\xd7\x94\x00\x16\x17\x21\x1c\xde\x86\xd0\xb5\xdf\x65\x3c\x54\xc4\xe1\x90\xe4\xf4\x0d\x92\xd3\x2b\x4e\x1e\xb7\x60\xbd\x72\xc5\x06\x9d\x3a\x54\x8e\x43\x1e\x0c\xcb\xbc\xe0\xc8\x08\x43\x78\xc3\xdc\xba\xcc\x77\x23\xbc\xbd\xa2\xc4\x11\xd6\x00\x39\x46\x00\x60\x0f\x63\x21\x2c\x55\x15\x38\x75\x85\x25\x5e\x53\xd2\x21\x68\x98\x02\x0c\xe1\x6b\x16\x15\x0f\x94\xd0\x3d\x7b\xd8\x2b\xbd\xbd\x19\xf5\xaa\x99\xff\xad\x5c\xf4\x9d\x41\x9f\xcb\xcf\x00\x6a\xde\x34\x3d\xbf\x68\xbb\x63\x71\x0b\x26\x5a\x82\xa6\xe7\x96\xce\xe2\xd6\xe2\xe3\x08\x53\x02\x3d\x46\x95\x40\x1f\xc6\xd5\x96\x03\x25\x52\x5b\xed\x7e\xd1\xef\x69\x81\xba\x06\xcf\x2e\x39\xc0\xe2\xa5\xcb\x18\xb5\x38\x2a\x19\x52\xe8\xb0\xf0\x54\xcb\x0b\x12\x22\xca\xc9\xa6\x4f\x38\xe7\xd6\xb6\x47\x65\xc3\xc6\x47\xc5\xa7\x56\x0a\x9e\xb8\x61\x85\xfa\x7c\xbf\xf8\x58\xf6\xec\xf7\xb3\xce\x70\xd5\x1c\xd6\x75\x61\x60\xe9\x73\x80\xa5\xaf\x08\x2c\xbd\x82\x8a\x66\xa2\x56\xda\x74\xb6\x65\x9f\xc3\x64\x20\xa8\xe5\xe5\x09\xcd\x00\x27\x17\xf9\x54\x29\xa8\x6e\x32\x95\xb2\x75\x15\xb2\xe0\x13\xd4\x70\x0e\xed\x8e\x0a\xde\xc7\x0e\x64\xaa\x36\x0e\xb2\x23\xbb\xdf\xe2\x66\x21\x2f\xbf\x70\xd8\x1d\xea\xc3\x3b\x49\x09\x60\x71\x92\x20\x58\xe3\x91\xb8\x1d\x47\x24\x77\x02\xbf\x8a\x19\xa5\x70\x30\x0f\x2c\x8c\x8b\xe0\x2e\xd8\x79\x78\x0a\x70\x97\xcb\x62\x3a\x08\x69\xcd\x1b\xa0\xb5\x3c\x84\xd3\x46\x3b\x41\xa5\xb0\x15\x39\xc6\x89\x01\xbd\xc6\x41\x27\x9a\xc3\x45\x2e\xec\xe7\x2d\x0a\x3a\xa7\x29\xec\x9d\x0f\x94\x2b\x98\x48\xaf\x90\x59\x25\xc5\xe4\x2d\xbc\x5e\x67\xdf\x96\x17\x45\x8e\x91\xb4\xe8\xb5\x74\x4d\x33\xff\x54\x17\x01\x4b\xd3\xf5\x09\x63\x7d\x18\x17\x16\xf1\x78\xd4\x8f\x0d\x69\xdf\x85\xcf\x5b\xbf\x0d\x8d\xe5\xaf\x1a\x8c\x32\x18\x58\x6c\x40\x64\xc3\xbc\xdb\x47\x76\xa6\x75\x84\x91\x56\x74\x64\x10\x90\xcd\x86\x66\xf0\x6a\x9f\xda\xd2\x08\xa4\xc4\x15\x95\x7b\xae\x4d\x58\x1a\xa7\x17\x3b\x0e\x0c\x6a\x78\x83\x93\x4d\x80\xe5\xf1\xb3\xc8\xd0\x2e\xf3\xc1\x5e\x0c\xa2\xa1\x9b\x85\xc1\xda\xbe\xb6\xc7\x75\x8c\x0c\x0e\xbd\x67\x65\x11\xb4\xbf\xf0\x49\x2b\x8f\x8b\x80\x52\x70\x71\x1f\xd3\x48\xd5\x65\x21\x51\x0c\x03\x70\xe7\x03\x22\x61\x70\xa5\x93\x08\x14\x37\xf9\xe1\x03\xf2\xc1\xcd\xaa\x11\x0e\xee\x30\xd9\x28\x3b\x53\xbb\xc4\x51\x0d\x41\x19\xa8\xf4\x84\xb0\xd9\x1a\x54\xbc\x52\xc3\x7a\x24\x84\x6c\x66\x33\x76\x57\x5d\x07\x23\xce\x4e\xe2\xdd\x6b\x55\x0d\xed\xee\xbd\x31\x40\xdf\x7a\x25\x17\x23\x78\xfa\x19\xc4\xff\x2f\x2f\x41\x86\x1d\xf0\xef\x41\x1e\x68\xff\x9f\xf2\x1e\xe4\x50\xa3\xdd\xc5\x5d\x99\xb0\x88\x3b\x1e\x3e\x0a\x71\xc0\x1c\x8e\x1f\xcc\x9b\xc1\xb9\x28\x66\x91\xd1\x85\x61\xc4\x2a\x51\x22\x64\x81\x48\x88\x4d\x27\x90\xe4\xd5\xed\xa6\x69\x17\x6d\x19\xb8\xdf\xb0\xbd\xc0\x1f\x2c\x6a\x4d\x4a\x8c\xa3\xcd\xc7\x5d\x90\x94\xf1\x2d\x9d\xa4\xab\xa2\x27\xd5\x48\xbe\xa5\x6a\xed\x66\xd0\xf6\xe8\xd5\x98\xa5\x0d\x43\xc5\x42\x89\xa7\xcc\x6a\xd0\xe5\x01\xbb\x8a\xba\x2d\xa5\x24\x52\x85\xf9\x9a\x29\x47\xd4\xac\xa0\xf7\x92\x12\xc6\x61\x94\x14\x79\x6d\x0d\x8f\x08\xcb\x97\xa6\x8f\x0d\x5d\x82\x4e\x6a\x35\x83\xce\x05\xb5\x02\x6a\x9a\xe3\x06\xbd\x19\x1a\xfe\x4a\x2a\x9c\xae\xd8\x4a\xb9\xeb\x35\x65\xa7\x0f\xcd\x73\x74\x45\x49\x81\xf2\xa4\x80\xf9\x20\xeb\x4a\x4e\xdf\x86\xe9\xc1\x03\x6c\xc8\x75\x4f\xaf\x4d\xc0\x04\x66\x28\x79\xcb\xc1\x1d\x7f\xd0\x40\x38\xc1\x43\x6c\xec\x20\x25\xcf\xba\xec\x36\xdc\x5f\x0e\xf4\x8d\x2b\x0c\xd6\x02\xb3\xcc\x90\xe3\xed\x25\x5c\xe8\x12\x9b\x59\x89\x25\xaa\xbc\x15\xa2\xc8\x64\xf9\x40\xc3\x4f\x41\x2e\xd0\x90\xb9\xcf\xd9\x08\x2b\x00\x29\xec\xdd\x6a\x3f\xa2\xbc\xef\xdb\x6a\xbe\xe7\x7b\x51\xb5\xff\xe0\x45\x29\xc6\x26\x2e\x6f\x04\xdb\xed\xcd\xa5\xe2\x52\xbf\x0e\xc3\x0e\xde\x9f\x1f\xc0\x49\x08\x2c\xeb\x96\x04\xc0\xb2\x2a\x70\xad\xe0\x00\xe4\xb2\x31\x82\xd8\xf2\x8e\x93\x75\x39\x2f\x4f\xe2\xad\x45\x7a\x79\xac\x39\xdd\xb6\xdf\x59\x98\xf6\xcb\xb3\xab\x8b\x5b\x68\x89\x41\x95\x26\x00\x19\x10\x06\x67\x29\x71\x20\x2b\xa0\x10\x35\xba\x51\xe3\x72\x3d\xd6\xc3\x6c\x47\x88\xad\x9b\x86\xbb\x6d\xdb\x97\xa7\x73\xf8\x15\x74\x0e\xd8\xcf\xb6\xe0\x52\x66\x96\x9e\xed\x37\x7d\xc5\x56\x60\xd6\x9a\x5a\x22\xf1\x23\xf1\xe5\x2e\x6f\x2d\xd6\x28\xc2\xee\xa4\x0f\x8e\x1e\xcc\xa2\xd5\x97\xf5\xf2\xda\x9e\x3c\x7c\x78\xf5\xe6\x92\x3e\x17\xed\x8d\x5c\x84\xea\x48\x3f\x56\x3b\x06\xd3\xf7\x92\x79\xc0\x94\x02\xd8\xbf\x20\xc5\x96\x0a\xdf\x98\x95\xed\xa7\x6a\xe1\x08\xe6\xe2\xf8\x0c\x7a\x07\x4a\x0a\x17\x9f\x36\x8d\x40\x41\x26\xf9\xf9\x4e\xd0\x74\x34\x91\xe4\x67\x0c\x84\x1f\x0a\x66\xfb\xca\x9d\x21\x30\x8c\x68\x32\x14\xcf\xf4\x35\x49\xc5\xf4\x48\x54\x89\xa1\x03\x89\xc5\xb3\xb6\xa1\x44\x19\x17\xb9\xcb\x2c\x7d\x16\x31\xb3\x70\xe7\x1a\x3c\x2b\xfc\x65\xb6\x3f\x61\x65\x81\x94\x71\xdb\xa0\x27\x83\x2b\xc4\x25\x22\xc8\x4c\xf8\xab\xbd\xbc\x12\x57\xed\x5f\xda\x19\x95\x88\xde\x60\x19\xe1\x75\xc2\xa6\xe6\x16\x3b\x9a\xa0\xf6\xc1\x7e\x1f\x57\x7c\xd7\xb6\x2f\xba\x38\xd3\x81\xb9\x7b\x28\xd5\x81\xc5\xd7\x51\x0a\x9b\xef\x76\x6e\xdb\x08\x1e\xd7\x01\xd9\x06\x20\x9f\x84\xe1\x04\x10\xb4\x08\xba\x41\x3d\xe2\x2f\x16\x02\xb1\xdb\x98\x02\x0c\xb7\x1e\x4d\x6e\x96\x4b\x0e\x89\xc5\xb1\x1b\x35\x9e\x09\x22\x64\x9d\xb1\x01\xb6\x95\x14\x2f\xc8\x8c\x95\x72\x50\x72\xf1\x98\xec\x5d\xd6\x77\x48\xe4\x53\x85\x81\xb7\x7b\xf7\xa0\xf5\xbb\x7d\x2d\xe7\xa5\x20\x4b\x1b\xe2\xac\xb0\x11\x48\x2f\x6d\xd3\xf4\xf6\x78\x42\x20\xba\xbc\xa3\x64\xda\xd3\xfa\xb5\x43\x30\xdf\x74\x2d\x32\x09\x06\x1f\x94\xc1\x3d\xdb\x02\x66\xf4\xe3\x42\xd4\xef\x71\x09\xea\xf7\x01\x70\x31\xcc\xb0\x8d\xff\x12\xbf\x84\x49\xbb\x1e\xb3\x99\xa7\x52\xa3\x0d\x58\xd2\x86\x74\x13\xe2\xa0\x98\x7b\xc2\x38\xb5\xbb\xb9\x49\xd2\x20\xc8\x50\x7a\xf1\xa9\xa1\xbc\xe0\x53\x43\xd9\xc7\xa7\x6a\xc7\x06\x3d\xe8\xba\x8d\x4d\xc4\xe5\xe5\x9b\x78\xb6\x7d\x6e\xf0\x26\x0e\xdb\x8b\xdd\xe3\x20\xae\x1c\x68\xee\x5e\xca\xce\x81\x8f\x82\x12\x8a\xcd\x10\x7f\x9a\x3a\xac\xa3\xfb\x7d\x53\xf5\xe5\xf7\xf7\x70\x75\x7e\xaf\xaf\x8a\xf9\xbd\x47\xe1\xba\xa9\xe0\x0b\x10\x2c\x9c\x6a\x71\x00\x3d\xee\xf0\x1e\x3d\xdb\x99\x8a\x63\x75\xd5\x96\xb6\xbf\x9f\x04\x2f\x69\x8e\x48\xda\x6f\x03\x8e\xa0\xc3\x2d\xc0\x3a\xc6\x8e\x25\x6d\x90\x91\x91\xbc\xd0\xcb\x43\x83\x6c\xa0\xf9\xce\xaa\x79\x8e\x64\xdf\x43\x09\x40\x6b\x01\x69\x61\x4c\xe1\xfb\x87\x78\xb2\xaf\x6b\xb8\x7e\x58\x11\x7b\x0c\x19\x7a\xb6\xd1\xbb\xc9\x50\xb0\xe9\xb3\xc9\x5a\x00\x63\x77\xea\x8b\x33\x1e\x70\xa8\xb1\x18\x0e\x18\x3e\x4f\xd5\xdf\x4b\x09\x30\x18\x0c\xfb\x8c\x0e\xc3\xdb\xfd\x16\x8f\x26\x5e\x72\x3c\x34\x3c\x7b\x39\xea\xd6\x8e\x24\xfd\x3c\xec\x11\x12\x1c\x13\x12\x77\x46\xf6\xe5\xc8\x36\x7a\xc3\x25\x2e\x8f\xf0\xe8\x48\xdf\xe0\x4a\xcb\x61\x87\x36\x21\x2f\x96\x46\x85\xde\x71\x9e\x13\x63\x27\x0a\x9b\x27\xb4\x23\x15\xf3\x34\x9c\x24\x95\xdf\xf7\xe5\x9e\x2a\x2f\xeb\x15\xc8\xf4\xcf\xfc\x93\xc4\x1d\xfe\xe9\x10\x24\x2e\x84\x50\x78\xb1\x47\xc3\x53\x73\x2a\x84\xde\x8b\x52\x1c\x2d\xdc\x29\x97\x04\x33\x13\xee\x02\x67\xf8\x3d\xdd\x41\x85\x1d\x1f\x4d\xe2\x7c\x9b\x45\x5a\x53\x4d\x30\x77\xaf\x7e\x7e\x73\x3e\x80\x9c\x60\x06\x9a\x33\xc1\x3c\x34\x67\x82\x55\xc8\x6d\xad\x1b\x02\x6e\x68\xa7\x47\x20\x90\x07\x07\x20\x04\xed\x2d\x33\x40\xc9\x93\x15\x29\xe9\x17\x44\x59\xe2\x20\x23\x44\x2f\xbf\x63\xa0\xe0\x85\x26\x81\xb2\x07\x9a\x46\xad\xd6\x61\x9b\xb5\xdc\x34\x7a\xae\x23\x26\x42\x01\xd7\x11\x13\xfb\xc9\xee\x19\x34\x3b\x02\x55\x85\x3e\x68\x25\xf0\x17\x9a\x64\xa0\x06\xe2\x6b\x36\x08\xad\xda\x75\x93\x08\xb7\x72\xd2\xeb\x09\x7e\x45\x53\xa7\xcb\x8f\xd7\x8b\xc0\xfa\x15\xc8\xef\x3e\x4b\x09\x03\x5e\x2d\x1c\x62\x4c\x67\xfc\xf2\xc4\xbf\x5d\x05\xf5\xf2\x60\x30\x9b\x6a\x59\x3a\x65\xb4\x8e\xe6\x0d\xa5\x45\xc0\xeb\xbe\xdf\x75\xe6\x16\x8e\x97\x96\xd2\x73\xfa\x31\x18\x44\x58\x95\x8e\x64\x54\xd3\xae\xc2\x05\x41\x80\x17\x49\x98\xc6\xb8\x41\xeb\xee\x10\x80\xeb\xf6\x30\xe4\x71\xab\xd6\x31\x4e\x5b\x21\xfe\xc9\x78\x2f\x0b\xb8\xd6\x59\x06\x98\x6c\x99\xa1\x74\x97\x64\x18\xec\x92\x66\x2d\x34\x5b\xb4\x12\xa2\x8e\xff\x5c\xb1\xa9\x86\xcb\x09\xd7\x9e\xa5\x75\x44\x7b\xc5\x5e\x1c\xeb\xf4\xd3\xc3\xfb\xf0\xfc\x82\x26\xcb\x98\x08\xe9\x1f\x03\x94\x9f\xcb\xc5\x3e\xb8\x39\xfc\x59\x7e\xab\xaa\xde\x57\xd3\x98\x71\xf0\xbe\xc6\x73\x0e\x17\x92\x12\xc0\x4c\xc5\xa9\xb4\xae\xc3\xc4\xd9\x4c\x9d\x0f\xb6\xef\x9a\xc7\x61\x96\xa1\xcc\xe2\xca\x0c\x99\xe4\x67\xb6\x11\x47\xab\x81\x11\x96\xc1\x86\x12\x4f\x98\x86\x58\x57\x81\xc1\x9b\xe5\x4d\x74\xdc\xb2\x9a\x1d\xb3\xac\xdd\x2c\x80\xc5\xf1\x21\x78\xea\x55\xfa\x20\xf9\x77\x99\x58\x26\xef\xc5\x6c\xe9\xc3\xe0\x81\x39\xd3\xee\x07\x66\x74\x91\x0b\xf9\x7d\x79\xd4\xa1\x2d\xeb\x20\xbc\x9d\xfc\x2a\x46\x2f\x42\x59\x2c\xe6\x6f\x7d\x2c\xe6\xe8\x99\xe9\xe1\x53\x11\x2e\x74\x3f\x6a\x65\xbb\x44\x79\x16\x24\xe8\xc1\x93\xae\x5d\x3c\xb9\x1f\x46\xe5\x67\x7d\x69\x1c\xf0\x3a\xaa\x52\x46\x67\xcf\x1b\xfc\xa6\x4f\x0a\xc8\xef\xb0\x5e\x51\xea\x49\xd5\x1c\x1f\xdb\xc5\xfc\xd7\x1a\x86\xe1\xb9\x0d\x51\x51\x58\xdb\xb0\x42\x8d\xba\x3d\xae\x6f\xf0\xe2\x42\xf0\xaa\x44\x53\x7f\x4d\xc7\x26\xe3\xfb\xfe\xa6\xc1\x9e\xbf\xba\x5b\x2e\xfe\x96\x62\xdf\x7e\x0f\x68\x41\x66\x74\x7a\x3a\x3d\x79\x20\xa0\x84\x3c\xc6\x65\xb3\x48\x3f\x6e\x9f\xc6\x98\x32\x86\xd3\xa8\x91\xde\xbf\x0b\xc2\x72\xc3\xc9\x58\x32\xaa\x4e\x43\xaa\x4a\x30\xf4\xef\xdc\x63\x56\xc9\x7b\x8e\x8e\xfc\x21\xc9\x57\x3c\x26\xfa\x3f\xc1\x63\x73\xe2\xa3\x00\x1a\xa5\xcf\x44\x7e\xf2\xd7\xb7\x5c\xf1\xb7\x69\x57\x12\xd3\x44\x5c\xdf\x6f\xb7\x48\xd8\xd2\xd1\x9a\x58\x11\x27\xac\x91\xc0\x6f\x26\xe2\x67\x81\x9f\x45\x7e\x83\x5f\xd7\xf8\x75\x5d\x96\x1f\xa5\x30\xb8\x2a\x15\xa7\xc3\xf9\x1a\x29\x37\xf8\x7d\xc3\xf1\x6f\xef\xb3\x7f\x16\xb7\xa3\xef\x17\xd8\x0f\x44\x13\xe6\xe6\x34\xdd\x7e\x50\xba\xbc\xae\xff\xd4\x3f\xb4\x7f\x9f\xaf\xfd\x6f\x34\x09\x5f\x94\xc2\xcd\x6b\x92\x7c\xde\x07\x6b\xec\xd7\x56\xa1\x7c\x53\x2a\xf7\x43\x13\xe5\x93\xd2\xda\xfc\x3a\xf3\xfd\xd2\x2f\xa4\xfa\x5e\xe9\x17\xa1\xb7\x68\x9b\x1d\x47\x16\xfd\xe0\x1e\xa2\xf4\x6f\x81\x9d\x52\x9e\x46\x4f\x42\x38\x49\xf6\x02\xde\xf0\x83\x76\x78\x87\x97\x7d\x4a\x67\x89\x45\xfc\xad\xea\xdd\xde\x9d\x4f\x7d\xb8\x69\x01\xf3\x21\x98\xc4\x50\x9d\x1f\xf8\x91\xd7\xcf\x68\x76\xb3\x79\xa5\x8f\xbe\x95\x29\x1f\x06\x1e\xfe\xdb\xbf\x01\x9c\x3e\xff\xfd\xdf\xd3\xb3\xe7\x8f\xd2\xf2\x33\x07\x94\xeb\xd2\x6d\xfe\x19\xa7\x02\x85\xa2\x9f\x2f\x22\x40\xf6\x7f\x85\xc9\xb1\x5e\x43\xe9\x53\xdc\xb8\x7b\xfa\x7f\x01\x00\x00\xff\xff\x28\xac\x01\xc4\x35\xae\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4379,7 +4379,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 44681, mode: os.FileMode(420), modTime: time.Unix(1447476053, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 44597, mode: os.FileMode(420), modTime: time.Unix(1447648800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/css/gogs.css b/public/css/gogs.css index 5ade64d92..b4f4782dc 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2393,6 +2393,85 @@ footer .container .links > *:first-child { padding: 5px 10px; font-size: 1.2em; } +.repository.release #release-list { + border-top: 1px solid #DDD; + margin-top: 20px; + padding-top: 15px; +} +.repository.release #release-list > li { + list-style: none; +} +.repository.release #release-list > li .meta, +.repository.release #release-list > li .detail { + padding-top: 30px; + padding-bottom: 40px; +} +.repository.release #release-list > li .meta { + text-align: right; + position: relative; +} +.repository.release #release-list > li .meta .tag:not(.icon) { + display: block; + margin-top: 15px; +} +.repository.release #release-list > li .meta .commit { + display: block; + margin-top: 10px; +} +.repository.release #release-list > li .detail { + border-left: 1px solid #DDD; +} +.repository.release #release-list > li .detail .author img { + margin-bottom: -3px; +} +.repository.release #release-list > li .detail .download { + margin-top: 20px; +} +.repository.release #release-list > li .detail .download > a .octicon { + margin-left: 5px; + margin-right: 5px; +} +.repository.release #release-list > li .detail .download .list { + padding-left: 0; + border-top: 1px solid #eee; +} +.repository.release #release-list > li .detail .download .list li { + list-style: none; + display: block; + padding-top: 8px; + padding-bottom: 8px; + border-bottom: 1px solid #eee; +} +.repository.release #release-list > li .detail .dot { + width: 9px; + height: 9px; + background-color: #ccc; + z-index: 999; + position: absolute; + display: block; + left: -5px; + top: 40px; + border-radius: 6px; + border: 1px solid #FFF; +} +.repository.new.release .target { + min-width: 500px; +} +.repository.new.release .target .at { + margin-left: -5px; + margin-right: 5px; +} +.repository.new.release .target .dropdown.icon { + margin: 0; + padding-top: 3px; +} +.repository.new.release .target .selection.dropdown { + padding-top: 10px; + padding-bottom: 10px; +} +.repository.new.release .prerelease.field { + margin-bottom: 0; +} .issue.list { list-style: none; padding-top: 15px; diff --git a/public/less/_repository.less b/public/less/_repository.less index e73d78c4d..004e72331 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -794,6 +794,102 @@ } } } + + &.release { + #release-list { + border-top: 1px solid #DDD; + margin-top: 20px; + padding-top: 15px; + + >li { + list-style: none; + + .meta, + .detail { + padding-top: 30px; + padding-bottom: 40px; + } + .meta { + text-align: right; + position: relative; + + .tag:not(.icon) { + display: block; + margin-top: 15px; + } + .commit { + display: block; + margin-top: 10px; + } + } + .detail { + border-left: 1px solid #DDD; + + .author { + img { + margin-bottom: -3px; + } + } + .download { + margin-top: 20px; + + >a { + .octicon { + margin-left: 5px; + margin-right: 5px; + } + } + + .list { + padding-left: 0; + border-top: 1px solid #eee; + + li { + list-style: none; + display: block; + padding-top: 8px; + padding-bottom: 8px; + border-bottom: 1px solid #eee; + } + } + } + .dot { + width: 9px; + height: 9px; + background-color: #ccc; + z-index: 999; + position: absolute; + display: block; + left: -5px; + top: 40px; + border-radius: 6px; + border: 1px solid #FFF; + } + } + } + } + } + &.new.release { + .target { + min-width: 500px; + + .at { + margin-left: -5px; + margin-right: 5px; + } + .dropdown.icon { + margin: 0; + padding-top: 3px; + } + .selection.dropdown { + padding-top: 10px; + padding-bottom: 10px; + } + } + .prerelease.field { + margin-bottom: 0; + } + } } // End of .repository diff --git a/routers/repo/release.go b/routers/repo/release.go index 680ecd1b7..e2a8d6f66 100644 --- a/routers/repo/release.go +++ b/routers/repo/release.go @@ -13,15 +13,12 @@ import ( ) const ( - RELEASES base.TplName = "repo/release/list" - RELEASE_NEW base.TplName = "repo/release/new" - RELEASE_EDIT base.TplName = "repo/release/edit" + RELEASES base.TplName = "repo/release/list" + RELEASE_NEW base.TplName = "repo/release/new" ) func Releases(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("repo.release.releases") - ctx.Data["IsRepoToolbarReleases"] = true - ctx.Data["IsRepoReleaseNew"] = false rawTags, err := ctx.Repo.GitRepo.GetTags() if err != nil { @@ -45,7 +42,7 @@ func Releases(ctx *middleware.Context) { continue } if rel.TagName == rawTag { - rel.Publisher, err = models.GetUserByID(rel.PublisherId) + rel.Publisher, err = models.GetUserByID(rel.PublisherID) if err != nil { ctx.Handle(500, "GetUserById", err) return @@ -105,7 +102,7 @@ func Releases(ctx *middleware.Context) { continue } - rel.Publisher, err = models.GetUserByID(rel.PublisherId) + rel.Publisher, err = models.GetUserByID(rel.PublisherID) if err != nil { ctx.Handle(500, "GetUserById", err) return @@ -140,27 +137,13 @@ func Releases(ctx *middleware.Context) { } func NewRelease(ctx *middleware.Context) { - if !ctx.Repo.IsOwner() { - ctx.Handle(403, "release.ReleasesNew", nil) - return - } - ctx.Data["Title"] = ctx.Tr("repo.release.new_release") ctx.Data["tag_target"] = ctx.Repo.Repository.DefaultBranch - ctx.Data["IsRepoToolbarReleases"] = true - ctx.Data["IsRepoReleaseNew"] = true ctx.HTML(200, RELEASE_NEW) } func NewReleasePost(ctx *middleware.Context, form auth.NewReleaseForm) { - if !ctx.Repo.IsOwner() { - ctx.Handle(403, "release.ReleasesNew", nil) - return - } - ctx.Data["Title"] = ctx.Tr("repo.release.new_release") - ctx.Data["IsRepoToolbarReleases"] = true - ctx.Data["IsRepoReleaseNew"] = true if ctx.HasError() { ctx.HTML(200, RELEASE_NEW) @@ -185,8 +168,8 @@ func NewReleasePost(ctx *middleware.Context, form auth.NewReleaseForm) { } rel := &models.Release{ - RepoId: ctx.Repo.Repository.ID, - PublisherId: ctx.User.Id, + RepoID: ctx.Repo.Repository.ID, + PublisherID: ctx.User.Id, Title: form.Title, TagName: form.TagName, Target: form.Target, @@ -198,67 +181,67 @@ func NewReleasePost(ctx *middleware.Context, form auth.NewReleaseForm) { } if err = models.CreateRelease(ctx.Repo.GitRepo, rel); err != nil { - if err == models.ErrReleaseAlreadyExist { + if models.IsErrReleaseAlreadyExist(err) { + ctx.Data["Err_TagName"] = true ctx.RenderWithErr(ctx.Tr("repo.release.tag_name_already_exist"), RELEASE_NEW, &form) } else { ctx.Handle(500, "CreateRelease", err) } return } - log.Trace("%s Release created: %s/%s:%s", ctx.Req.RequestURI, ctx.User.LowerName, ctx.Repo.Repository.Name, form.TagName) + log.Trace("Release created: %s/%s:%s", ctx.User.LowerName, ctx.Repo.Repository.Name, form.TagName) ctx.Redirect(ctx.Repo.RepoLink + "/releases") } func EditRelease(ctx *middleware.Context) { - if !ctx.Repo.IsOwner() { - ctx.Handle(403, "release.ReleasesEdit", nil) - return - } + ctx.Data["Title"] = ctx.Tr("repo.release.edit_release") + ctx.Data["PageIsEditRelease"] = true tagName := ctx.Params(":tagname") rel, err := models.GetRelease(ctx.Repo.Repository.ID, tagName) if err != nil { - if err == models.ErrReleaseNotExist { + if models.IsErrReleaseNotExist(err) { ctx.Handle(404, "GetRelease", err) } else { ctx.Handle(500, "GetRelease", err) } return } - ctx.Data["Release"] = rel + ctx.Data["tag_name"] = rel.TagName + ctx.Data["tag_target"] = rel.Target + ctx.Data["title"] = rel.Title + ctx.Data["content"] = rel.Note + ctx.Data["prerelease"] = rel.IsPrerelease - ctx.Data["Title"] = ctx.Tr("repo.release.edit_release") - ctx.Data["IsRepoToolbarReleases"] = true - ctx.HTML(200, RELEASE_EDIT) + ctx.HTML(200, RELEASE_NEW) } func EditReleasePost(ctx *middleware.Context, form auth.EditReleaseForm) { - if !ctx.Repo.IsOwner() { - ctx.Handle(403, "release.EditReleasePost", nil) - return - } + ctx.Data["Title"] = ctx.Tr("repo.release.edit_release") + ctx.Data["PageIsEditRelease"] = true tagName := ctx.Params(":tagname") rel, err := models.GetRelease(ctx.Repo.Repository.ID, tagName) if err != nil { - if err == models.ErrReleaseNotExist { + if models.IsErrReleaseNotExist(err) { ctx.Handle(404, "GetRelease", err) } else { ctx.Handle(500, "GetRelease", err) } return } - ctx.Data["Release"] = rel + ctx.Data["tag_name"] = rel.TagName + ctx.Data["tag_target"] = rel.Target + ctx.Data["title"] = rel.Title + ctx.Data["content"] = rel.Note + ctx.Data["prerelease"] = rel.IsPrerelease if ctx.HasError() { - ctx.HTML(200, RELEASE_EDIT) + ctx.HTML(200, RELEASE_NEW) return } - ctx.Data["Title"] = ctx.Tr("repo.release.edit_release") - ctx.Data["IsRepoToolbarReleases"] = true - rel.Title = form.Title rel.Note = form.Content rel.IsDraft = len(form.Draft) > 0 diff --git a/templates/.VERSION b/templates/.VERSION index 7b98f0fd8..21364203f 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.11.1115 Beta \ No newline at end of file +0.7.12.1115 Beta \ No newline at end of file diff --git a/templates/repo/release/edit.tmpl b/templates/repo/release/edit.tmpl deleted file mode 100644 index 062884e2a..000000000 --- a/templates/repo/release/edit.tmpl +++ /dev/null @@ -1,59 +0,0 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -
- {{template "repo/header_old" .}} -
-
- {{template "ng/base/alert" .}} -
-

{{.i18n.Tr "repo.release.edit_release"}}

-
- {{.CsrfTokenHtml}} -
- {{.Release.TagName}} - @ - {{.Repository.DefaultBranch}} -
-
- -
-
-
-
- {{.i18n.Tr "repo.release.content_with_md" "https://help.github.com/articles/markdown-basics" | Str2html}} -
-
-
    -
  • - -
  • -
  • - -
  • -
-
-
-
- -
-
-
{{.i18n.Tr "repo.release.loading"}}
-
-
-
- - {{.i18n.Tr "repo.release.prerelease_desc"}} -

{{.i18n.Tr "repo.release.prerelease_helper"}}

- - {{if .Release.IsDraft}} - - {{end}} -
-
- -
-
- {{template "repo/sidebar" .}} -
-
-{{template "ng/base/footer" .}} \ No newline at end of file diff --git a/templates/repo/release/list.tmpl b/templates/repo/release/list.tmpl index eb3ba91d6..5fb23bdac 100644 --- a/templates/repo/release/list.tmpl +++ b/templates/repo/release/list.tmpl @@ -1,73 +1,80 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -
- {{template "repo/header_old" .}} -
-
-
-

- {{.i18n.Tr "repo.release.releases"}} - - {{if .IsRepositoryAdmin}} - - - - {{end}} -

- +{{template "base/head" .}} +
+ {{template "repo/header" .}} +
+ {{template "repo/sidebar" .}} +

+ {{.i18n.Tr "repo.release.releases"}} + {{if .IsRepositoryAdmin}} + + {{end}} +

+
+ + {{end}} + +
-{{template "ng/base/footer" .}} \ No newline at end of file +{{template "base/footer" .}} \ No newline at end of file diff --git a/templates/repo/release/new.tmpl b/templates/repo/release/new.tmpl index d8909142f..8514b2c8c 100644 --- a/templates/repo/release/new.tmpl +++ b/templates/repo/release/new.tmpl @@ -1,68 +1,83 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -
- {{template "repo/header_old" .}} -
-
- {{template "ng/base/alert" .}} -
-

{{.i18n.Tr "repo.release.new_release"}}

-
- {{.CsrfTokenHtml}} -
- - @ -
- - -
- -
-

{{.i18n.Tr "repo.release.tag_helper"}}

-
- -
-
-
-
- {{.i18n.Tr "repo.release.content_with_md" "https://help.github.com/articles/markdown-basics" | Str2html}} -
-
-
    -
  • - -
  • -
  • - -
  • -
-
-
-
- -
-
-
{{.i18n.Tr "repo.release.loading"}}
-
-
- - {{.i18n.Tr "repo.release.prerelease_desc"}} -

{{.i18n.Tr "repo.release.prerelease_helper"}}

- - -
-
- +{{template "base/head" .}} +
+ {{template "repo/header" .}} +
+ {{template "repo/sidebar" .}} +

+ {{if .PageIsEditRelease}} + {{.i18n.Tr "repo.release.edit_release"}} +
{{.i18n.Tr "repo.release.edit_subheader"}}
+ {{else}} + {{.i18n.Tr "repo.release.new_release"}} +
{{.i18n.Tr "repo.release.new_subheader"}}
+ {{end}} +

+ {{template "base/alert" .}} +
+ {{.CsrfTokenHtml}} +
+
+ {{if .PageIsEditRelease}} + {{.tag_name}}@{{.tag_target}} + {{else}} + + @ + + {{.i18n.Tr "repo.release.tag_helper"}} + {{end}} +
+
+
+
+ + +
+
+ + +
+
+
+
+
+
+
+ + +
+
+ {{.i18n.Tr "repo.release.prerelease_helper"}} +
+ {{if .PageIsEditRelease}} + + {{.i18n.Tr "repo.release.cancel"}} + + + {{else}} + + + {{end}} +
- {{template "repo/sidebar" .}} -
+
+ +
-{{template "ng/base/footer" .}} \ No newline at end of file +{{template "base/footer" .}} \ No newline at end of file