From 899e7994595f5fc500de8cdf39e1b737f9f00982 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Tue, 26 Jul 2016 02:48:17 +0800 Subject: [PATCH] #1601 support delete issue comment --- Makefile | 4 +++ README.md | 2 +- cmd/web.go | 5 +++- conf/locale/locale_en-US.ini | 3 ++- gogs.go | 2 +- models/issue_comment.go | 26 ++++++++++++++++++ modules/bindata/bindata.go | 4 +-- modules/context/context.go | 13 +++++++++ public/css/gogs.css | 5 +++- public/js/gogs.js | 15 ++++++++++- public/less/_repository.less | 11 +++++--- routers/repo/issue.go | 37 ++++++++++++++++++-------- templates/.VERSION | 2 +- templates/repo/issue/view_content.tmpl | 11 +++++--- 14 files changed, 113 insertions(+), 27 deletions(-) diff --git a/Makefile b/Makefile index 1af8726c4..9d09b24d5 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,10 @@ govet: go tool vet -composites=false -methods=false -structtags=false . build-dev: $(GENERATED) govet + go install $(BUILD_FLAGS) -tags '$(TAGS)' + cp '$(GOPATH)/bin/gogs' . + +build-dev-race: $(GENERATED) govet go install $(BUILD_FLAGS) -race -tags '$(TAGS)' cp '$(GOPATH)/bin/gogs' . diff --git a/README.md b/README.md index 7dd7986ec..43016026a 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true) -##### Current tip version: 0.9.54 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions) +##### Current tip version: 0.9.55 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions) | Web | UI | Preview | |:-------------:|:-------:|:-------:| diff --git a/cmd/web.go b/cmd/web.go index 5dad8627b..8845e1183 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -464,7 +464,10 @@ func runWeb(ctx *cli.Context) error { m.Post("/content", repo.UpdateIssueContent) }) }) - m.Post("/comments/:id", repo.UpdateCommentContent) + m.Group("/comments/:id", func() { + m.Post("", repo.UpdateCommentContent) + m.Post("/delete", repo.DeleteComment) + }) m.Group("/labels", func() { m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel) m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index f191e7f46..208082a94 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -466,7 +466,8 @@ issues.next = Next issues.open_title = Open issues.closed_title = Closed issues.num_comments = %d comments -issues.commented_at = `commented %[2]s` +issues.commented_at = `commented %s` +issues.delete_comment_confirm = Are you sure you want to delete this comment? issues.no_content = There is no content yet. issues.close_issue = Close issues.close_comment_issue = Comment and close diff --git a/gogs.go b/gogs.go index edffd832c..76209c721 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.9.54.0724" +const APP_VER = "0.9.55.0726" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/issue_comment.go b/models/issue_comment.go index faa257789..e9857b421 100644 --- a/models/issue_comment.go +++ b/models/issue_comment.go @@ -345,3 +345,29 @@ func UpdateComment(c *Comment) error { _, err := x.Id(c.ID).AllCols().Update(c) return err } + +// DeleteCommentByID deletes a comment by given ID. +func DeleteCommentByID(id int64) error { + comment, err := GetCommentByID(id) + if err != nil { + return err + } + + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + if _, err = sess.Id(comment.ID).Delete(new(Comment)); err != nil { + return err + } + + if comment.Type == COMMENT_TYPE_COMMENT { + if _, err = sess.Exec("UPDATE `issue` SET num_comments = num_comments - 1 WHERE id = ?", comment.IssueID); err != nil { + return err + } + } + + return sess.Commit() +} diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 2554685c9..847eaa362 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4346,7 +4346,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x72\xdc\x48\xae\x27\xfe\x9d\x4f\xc1\xf6\x84\xc3\x76\x84\x54\x1d\x3d\x7d\xfe\xff\xdd\xe8\x68\xbb\x57\x96\xda\x97\x73\x2c\x4b\x47\x92\xbb\x77\xb6\xc3\xc1\x66\x15\xa9\x2a\x8e\xab\xc8\x1a\x92\x25\x59\x33\x31\x6f\xb0\x0f\xb0\xcf\xb7\x4f\xb2\xc0\x0f\x40\x5e\x48\x96\x64\xf7\x1c\x7f\xb0\x58\x99\xc8\x1b\x12\x89\x04\x90\x48\x64\xbe\xdd\x66\x45\xd9\x2d\xd2\xe7\xe9\x51\xba\xcd\xab\x7a\x5d\x76\x5d\xda\x95\xeb\xeb\xc3\x55\xd3\xf5\x65\x91\xbe\xae\x7a\xfa\xdd\xde\x54\x8b\x32\x49\x56\xcd\xa6\x24\xd0\x37\xf4\x27\x29\xf2\x6e\x35\x6f\xf2\xb6\xa0\x84\x13\xfb\x4e\xca\xcf\xdb\x75\xd3\x32\xd0\xcf\xf2\x95\xac\xca\xf5\x96\xcb\xd0\x9f\xa4\xab\x96\x75\x56\xd5\xf4\xf3\x92\xbe\xd2\xb7\xb5\xa4\x34\xbb\xde\x92\xce\x76\xbd\xa4\xed\xb6\x96\xf4\x61\x9b\xb4\xe5\xb2\xa2\xde\xb4\x94\x74\xa1\x9f\xc9\x6d\x39\xef\xaa\x9e\x5b\xfa\x55\xbe\x92\x9b\xb2\xed\xaa\x86\x6b\xff\x45\xbe\x92\x6d\xbe\x64\x80\x73\xfa\x93\xf4\xe5\x66\xbb\xce\x51\xe0\x4a\x3f\x93\x75\x5e\x2f\x77\x02\xf3\x4e\x3f\x93\x45\x5b\x52\x56\x56\x97\xb7\x94\x7a\x8c\x1f\xb3\xd9\x2c\xd9\x11\x12\xb2\x6d\xdb\x5c\x57\xeb\x32\xcb\xeb\x22\xdb\xc8\x30\x3f\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\x8d\x95\xe6\xcf\xa4\xdc\xe4\xd5\x9a\xb1\xc6\x7f\xa9\xdf\x5d\x77\xdb\x00\xb5\xe7\xfa\x49\x38\xc8\xfa\xbb\x6d\x09\x14\x1c\x5e\xd1\x57\xb2\xc8\xb7\xfd\x62\x95\x73\x37\xe5\x2b\x21\xa0\x6d\x43\xb8\x68\xda\x3b\xc0\xd9\x8f\xa4\x69\x97\x79\x5d\xfd\x3d\xef\x05\x3f\x67\xc1\xcf\x64\x53\xb5\x6d\xc3\xa8\x3d\xc5\x47\x42\x23\xcf\xb8\x1e\x4a\x79\x4f\x48\x08\x6a\xe1\x9c\x4d\xb5\x6c\x05\x8b\x9c\x79\x8a\x5f\x5c\x8b\xe4\x69\x4d\x92\xe5\x6a\xbb\x6e\xda\x4f\x9a\xfa\x8a\x3f\x07\x55\x52\xe7\x34\x37\xee\x57\x5e\xd3\x7c\x68\xee\x29\x7e\x44\x00\x5d\x92\x17\x1b\xc2\xf0\x36\xaf\x4b\x46\xdd\x11\xff\x22\x7c\xd1\xaf\x24\x5f\x2c\x9a\x5d\xdd\x67\x5d\xd9\xf7\x55\xbd\xe4\x39\x38\x92\xa4\xf4\x52\x93\x92\x20\xcf\xa5\xdd\x35\x3b\x37\xcb\x94\xfe\x17\xfa\x99\x9e\xcb\x4f\xc9\x0b\x0a\x21\xd3\x95\xa4\x26\xfb\xea\xa6\xea\xab\x52\x1a\xb3\x1f\xc9\x76\xb7\x5e\x13\x3e\xff\xb6\x2b\xbb\x9e\xb3\xce\xe9\x37\x61\x40\x7e\x27\x55\xd7\xed\x50\xe2\x2d\x3e\x12\x9a\xd4\x7a\x81\xe1\x1c\xe3\x23\x49\x7e\xab\xea\xae\xcf\xd7\xeb\x8f\x89\x7e\x30\xb0\x7c\x09\x9e\xfa\xaa\x47\x67\x35\x31\xbd\xec\xcb\x6d\xc7\x88\x4e\x5f\x55\x6d\xd7\x1f\xf6\x15\x91\xda\xc5\xae\x4e\x8a\x66\xf1\x89\x88\x98\x17\x24\x96\xd2\xdb\xeb\x94\xc6\xf4\x84\xc8\xb8\xdd\xd5\x35\x8d\x22\x7d\xdd\xd0\xc8\xa8\x99\xaa\x28\xd3\x13\x40\x1f\xa4\xdb\x75\x99\x77\x04\x52\xe6\x45\xfa\x63\x9e\xf6\x79\xbb\x2c\xfb\xe7\x8f\xb2\x39\x2d\x9e\x4f\x8f\xd2\x55\x5b\x5e\x3f\x7f\xf4\xb8\x7b\xf4\xe2\xf5\x8e\x8a\xad\xab\xba\xec\x7e\xfc\x36\x7f\x91\x2e\x72\xca\xa1\xb1\xde\xa5\xf3\xf2\x9a\xd7\x0a\xb5\x95\x12\x91\xd6\x4b\x5e\x27\x77\xfd\x8a\x1b\xa4\x09\xa3\x8f\x2e\xe5\x85\xfa\x4d\xc2\x58\xa2\x85\x9c\x15\x73\x63\x4a\xe8\x10\x92\x5b\xc2\xd2\xe9\xdd\xe5\x7f\xbe\x3b\x48\xcf\x89\x33\x2d\xdb\x12\xdf\xf4\x1f\x95\xf8\x3e\xa5\xd1\x5e\x55\x27\x2f\x67\x09\x95\x35\x84\x9c\xe4\x7d\x3e\xe7\xbe\xbb\x49\xe2\x4c\x59\x43\x2e\x0f\x2b\x89\x79\x1d\xf8\x5a\xd7\x63\x75\xea\xca\x9c\x5c\x87\x54\x87\x2e\x5e\x57\xc7\x7b\x5e\xc1\x94\xee\x30\x7b\x2e\x38\xa3\xaa\xd2\xb7\xef\xdf\x9f\x9d\xbc\x4c\xcb\x7a\x49\x98\x49\x6f\xab\x7e\x95\xee\xfa\xeb\xff\x9e\x2d\xcb\xba\x6c\xf3\x75\xb6\xa8\x18\x29\x2d\xd1\x55\x4a\x58\x92\x21\xce\x92\xae\x5b\x13\x83\x29\xb8\x95\xcb\xcb\x77\xe9\x29\x7d\x52\x67\xa8\x2c\x77\xa4\x5f\x25\xdd\xdf\xd6\x8c\x28\xd7\xe0\xd5\xaa\x4c\x41\xb3\x00\x6a\xae\x87\x78\x49\x0b\xed\xeb\x2c\xfd\x71\xde\xbe\x08\xfa\x97\xcf\xbb\x66\xbd\xeb\xb5\xe4\xed\xaa\xac\x31\x51\x44\x4a\x6d\x4f\xdc\xca\x78\xff\x2c\x29\xdb\x36\x23\xbe\xd9\xdf\xf1\xf4\x68\x5f\xf6\xb5\x22\x95\x11\x29\xd7\x4d\x4f\xd3\x9f\xa2\x9c\x54\x51\xd5\x37\xf9\xba\x2a\x68\x92\x3c\x22\xe3\xb2\x48\x2c\x1a\x9a\x6f\x2e\x4d\x14\xdd\xdc\x02\x45\xb4\xc0\x88\xad\xa7\x8f\x66\x8f\xc0\x67\x1f\x1d\x3e\x9a\x25\x75\x93\x09\x13\x60\x8e\x5c\x54\x5d\x3e\x27\xee\x2c\xbb\x45\x6b\xcc\xee\x2f\x4c\x77\xd2\x15\x85\x48\x23\x08\x9e\x13\xde\x81\xc0\xf8\x99\x28\x73\x62\xd3\xe0\x25\xca\x45\xc2\xb1\x1b\xcb\x71\x74\x21\x5c\xc7\x25\x8c\xc6\x9c\xd8\x44\x1b\x55\x1e\x6d\xb7\xeb\x6a\x21\x4d\xbf\x96\x3c\x4f\xa0\xbc\x1f\x2b\x52\x42\x38\x10\x98\xe5\x05\x64\x46\xbd\x66\xae\x94\x46\xec\x1d\xe5\x57\x25\xad\xb8\xd5\x6e\x29\x7b\xd2\xba\xd9\x15\xdf\x60\x73\xb0\x99\xf3\x2c\x38\xbd\x68\xa8\xc3\xa0\x2a\x07\xe0\x9b\x38\x22\x86\xc2\x22\x40\x5b\x6e\x9a\x9e\x11\xa7\xc5\x98\xcd\xdd\x56\x94\x49\x23\xed\xf2\x1b\xda\xdc\xfa\x46\x96\x72\x41\x4b\x75\xc1\x15\xcf\x12\x62\x2b\x99\x2e\x27\xe2\x3f\xb2\xa4\x2c\x2d\xa6\x5d\x40\x6d\x76\xb4\x0a\x57\x54\x19\x23\x9e\xe5\x10\xaa\x72\xaa\x9f\x18\x12\xd5\x03\xee\x40\x2b\xbe\xa1\x3d\x93\x27\xfa\x04\x1f\xfa\x3b\xac\x9f\x7a\x95\x5f\x5f\x53\xaf\x3a\x5a\x4d\x6f\xd2\xc5\xba\xa1\xa5\xf8\xe1\xe2\x5d\xc7\x0b\x6d\x95\x6d\x9b\x16\xf2\x07\x65\x9d\xd3\xa7\x4b\x0b\x10\xcd\x10\xf5\x6e\x33\xa7\x5f\xb7\xab\x6a\xb1\x12\xb4\x73\x09\x5e\x1f\x94\x4a\x4d\xec\x3a\x9a\xc2\x83\x94\x96\x16\x8d\x80\x50\x06\x02\xe0\x31\x18\xd5\x31\xf8\x35\xd1\xd8\xae\xa5\xe5\xb4\xea\xfb\xad\xb5\xfc\xe6\xea\xea\x5c\x9a\x76\xa9\xf7\xb5\x9d\x07\x94\x81\x39\x58\xb3\x44\x54\xa7\x4d\x3d\x03\x91\xec\xda\xf5\x80\x7e\x68\xac\x96\xb3\x07\x2f\xdc\x85\x6f\xf9\xbf\x4b\x8f\x1e\xe0\xb9\x23\x59\xef\x16\xd4\x44\x38\x86\x94\x32\x4b\xd6\xcd\x32\x6b\x69\x36\x8c\x98\xde\x35\x4b\x21\xa0\x28\xc3\xb7\x74\x62\x24\xc1\xd8\xb8\x6d\x59\x6a\x23\x48\x30\x2c\x9e\x64\x5a\x24\xcd\x96\xfb\x19\xac\x92\x33\x4d\xf0\x4b\x03\x6d\xbb\x7c\xc8\x49\x94\x09\xe6\x14\xec\xe9\x1b\xc2\x9f\x72\xf3\xcb\x53\xc2\x2a\x58\x3a\x52\xaf\xdb\x66\x43\xa9\xaf\xe8\x8f\x4f\xf0\x7d\x3c\xe5\xfa\x00\x93\x17\x05\x6d\x36\xdd\x41\x7a\xf1\xea\x38\xfd\xff\xbe\xff\xf3\x9f\x67\xe9\xdb\x9e\x17\x36\xd3\xfa\x5f\x99\x46\x73\xc5\x84\x07\x25\x06\xd8\x13\x19\x3f\xe2\x85\xfa\x28\xfd\x11\xb9\xff\xa3\xfc\x9c\x93\x9c\x59\xce\x16\xcd\xe6\x05\x33\xf7\x4d\x4e\xac\x84\x73\x88\xfa\x75\x59\x5c\x96\x75\x41\x1f\x22\xf5\x69\x56\xc0\x5c\x34\x3b\x90\x01\x45\xf8\xcd\x16\x4d\x7d\x5d\xb5\x3c\x9e\x9f\x6b\xd0\x96\x89\xc5\xe9\xb1\xe4\x98\x08\x45\x28\x23\x7e\x54\x5d\xdf\x79\x50\x8c\xf4\x3d\x27\x2a\x79\x24\x42\xc3\x99\xb2\x7a\x87\xe3\x4b\x21\x6d\xa6\x82\x33\x1a\x5d\x6b\xe8\xee\x3c\xbe\x9b\xeb\x6b\xde\xf1\x6d\xaf\xd2\x16\xce\x24\x55\xb6\xad\x10\x84\x48\x7b\x0b\xc1\xfe\x44\x97\xc4\xf1\xc9\xfb\xb4\xbc\x21\xda\x65\x1e\xda\x36\xc5\x6e\x01\x7a\x65\xd8\x03\x66\xfd\xc4\x70\x3a\x5a\x69\x8b\x52\x89\xc5\xb1\x1c\xee\x1a\xf3\xb5\x05\x01\x11\xa7\x31\xd6\x4f\xd2\xe8\x0d\xed\x23\x6d\xd0\xc4\x6b\x4b\xd2\xde\x8f\x60\x47\x9d\x72\x25\x78\xe4\x0b\x9a\x70\x22\x0a\xe9\x45\x27\x9d\x92\x6c\x5a\x3c\xb4\x2a\x76\xa4\xe5\xe4\x05\xf5\x65\x7e\x07\x2e\xd6\x31\x2d\x14\xe5\x75\xbe\x5b\xf7\xbe\x5f\x83\x2d\xc9\x5a\xba\x64\x45\x2b\xcc\x9b\x2c\x30\xea\x20\x88\xa7\x1b\x96\x25\x2a\xac\x49\xda\x92\xad\x8b\xc9\x55\x34\x19\xdb\xc5\x88\xd9\x95\x98\x9e\xcc\xeb\x0d\x3a\x5f\xa6\x3e\xc4\xf9\xae\xd9\x0b\x91\xbf\x52\x6c\xdc\x5c\xa3\x55\xc0\x02\xcb\x74\x5f\x66\x89\x0a\x6d\x99\xaa\x7c\xd9\x4d\x05\x85\xca\x91\xab\x54\xa9\x6a\x20\xf3\x85\x5f\x18\x80\x35\xb5\x6e\xb2\xac\xeb\xcd\x19\x0f\xb2\x73\x0a\x95\xe0\x9c\x87\x8b\x16\x58\x90\xa4\x59\xba\xa9\xb0\x69\x28\xc1\x00\x2f\x73\x96\x75\xa8\x69\x6a\xaa\x2b\x4b\xd4\x40\xe5\xbf\xa5\x3a\x51\x66\xa6\xda\x84\x0a\xf8\x26\x80\xb2\xf0\x50\x34\x90\x44\xb0\x33\x51\x69\x43\xeb\x40\x4a\x48\xdb\x6a\xb9\x22\x4e\xdd\xdc\x1e\x08\x52\x6e\x57\x4d\xc9\xeb\xe7\xed\xc9\xf3\xef\xa4\x1f\x4b\xde\xa7\x5c\x21\xde\xe1\xf2\x1d\x11\x17\x61\x4c\xc9\x58\xba\xe0\x24\x05\x40\x8e\xf4\x16\x01\x1a\x2a\x90\x23\xc1\xc4\x31\x0d\xe5\x15\x61\x9e\x32\x09\x0f\x23\xa5\x4d\x09\x95\x86\x85\x29\xa9\xd2\x91\x2d\x1b\x28\x3d\xa6\x64\xf0\xd6\x4b\x2a\x75\xd7\x67\xcb\xaa\xcf\xae\x99\x73\x71\xc5\xaf\xb8\x02\x96\x04\x28\x27\x7d\x42\x59\x4f\x52\xe2\x7e\xa4\xc9\x15\x3f\xa4\x8f\x6f\x54\x6c\xfd\x9e\x59\x52\x46\x8b\xa8\x5a\x63\x46\x54\x95\x6a\x4b\x91\x4a\x4d\x8d\x77\x22\x60\xb7\xdb\x62\xa3\x54\x69\xd3\xa9\x24\x45\x73\x5b\xf3\xe2\x03\xeb\x25\x36\x53\x2d\x2a\xda\x30\xe6\x55\x9d\xd3\x4e\x63\xb5\x80\xa5\x3f\x26\x92\x78\x7f\x76\x05\xc0\x65\x33\xdf\x55\xeb\xc2\x00\x66\x89\x49\xa4\x24\x8f\xea\xe4\x87\xb2\xbd\x25\x55\xd2\x97\x45\xd3\xf2\x5e\x86\xd1\x58\xc1\x3d\x72\x15\x6f\x84\x22\x08\x57\xac\x54\x01\x16\xe5\x9c\x08\xc4\x68\xa0\xd9\x5f\xac\x54\x40\x02\xd9\x54\x5d\xfd\xa4\x47\x4f\x17\x3b\x6a\x8b\x66\x9e\x93\xa9\x60\x97\x1e\xbe\xa0\xff\x13\x16\xb7\x64\x03\x58\x8e\x11\xcf\x99\xa9\x64\xee\x64\x29\x46\x5d\x8d\x68\xdc\xcd\xb4\x51\x70\x30\xd6\xb0\xbf\x46\x02\xdd\x4e\x88\x96\x2d\x2e\x6b\x9a\xd6\xf2\x1b\xfa\x60\xf5\x71\xb9\xc6\x24\xe4\xbd\xea\x78\x0d\xe1\x8d\x09\xe4\x40\xd6\xcc\x35\x0d\x8d\x59\x69\x9f\x7f\x2a\xa1\x16\x7a\x9c\x4f\x49\x12\x7b\xf1\x96\xfc\xc6\xf6\xa7\x8f\xc9\x4e\xa4\xe0\x66\x5d\x38\x4d\x0d\xab\x81\xb8\x51\x19\x99\x4f\x3c\x8c\x23\xf4\x8e\xa4\xfd\xc5\x2a\x73\xc6\x2b\x46\x64\x5f\x7e\x86\xbc\x80\x2c\x6f\xcb\xe2\x55\xc2\x59\xc9\xe6\x0e\x53\xcc\x03\x3f\xbd\xf3\x33\xcc\xca\x7d\xb7\x6a\x6e\x61\x09\x72\x10\x97\x94\x02\x1b\x50\x24\x2b\xb3\x05\x69\xd1\x90\xc6\x3e\x6f\x78\x56\x6e\x3c\xfc\x71\x98\x1a\x57\x4e\xed\x92\x60\xaf\xcd\xc6\x96\x0f\xca\x12\x63\x8b\xe6\x8a\xb1\xa5\x4b\xc0\x29\xd5\x4a\x07\x86\x4a\xf4\xa2\x36\x86\x19\x4d\x3c\x4c\x18\xd6\xf2\xdb\x5a\xa4\xd8\xb0\x9f\x84\x63\xb5\xe0\x7d\x4c\x0c\x2e\xea\x93\xb0\x5b\x41\x3a\x9b\x50\xf2\x16\xd4\x7b\x89\x0f\x2a\x4d\x0c\x6d\xf5\x31\xb0\xa1\x65\x46\x5b\x66\x4b\x83\x9d\x47\x79\x9a\x97\x67\x56\xe5\x96\x45\x9f\x4d\x07\xa2\x5c\xb3\xb1\xe1\x4e\x55\x01\x47\x9e\x3f\xc9\x6e\x41\xf4\x4a\x3c\xf6\x9b\xa4\x6b\x78\xb9\x67\x5f\x59\xc5\xcb\x8a\x08\x11\xe5\xe3\x9d\x56\x8c\x7b\x24\xb1\xf3\x60\x68\x8d\xdf\x1d\xc4\x4a\xe2\x8a\x54\xe1\x79\x49\x82\x8a\x16\x2b\x66\xa6\xe4\x33\x01\x91\x6a\x8a\x15\x0b\x83\x24\xd6\x98\x94\x6c\xda\xa1\x08\xc0\x3d\x14\x26\xab\xad\x38\xc1\x0d\x62\x59\x28\xbd\x4d\xb4\x49\x08\xdb\x94\xac\x09\x64\x1b\x31\x04\xca\xaf\xf4\xb4\x4c\x68\x2f\x5e\x62\x1d\x09\xa1\x3f\x67\x03\xd0\x12\x0a\x93\x52\x3e\x03\x94\x7d\xb8\x0b\x28\x84\xa5\xfc\x64\x86\x57\xe2\x4b\xb7\x30\xc8\x11\x67\x19\xa1\x9f\xf6\x4b\xca\x9e\xd9\xae\x22\x02\x0a\xe4\xcc\x8e\x78\x95\x47\xe2\x51\xca\x16\xd4\x10\x4a\x65\x66\x37\x2a\x86\x67\x96\xf5\xe3\xfc\xc5\xe3\xee\xc7\x6f\xe7\x2f\x1c\x63\x5f\xac\xca\xc5\x27\x21\xce\xaa\x9e\x37\x9f\xa1\xa2\xc3\x54\x54\x52\xad\xb4\x58\x1f\x17\x29\xa9\xec\x2d\x34\x44\x62\x44\x54\x8c\xf0\xce\xb9\xd1\x9c\x51\x5f\x98\x5f\xcd\xc4\x34\x57\x0a\xf5\x7b\x7a\x84\x8d\x8e\x29\x12\xbb\x8f\x91\x24\x15\x5a\x55\x73\xda\xd3\x88\x35\x41\xab\x7c\x87\xbf\xe7\x9a\x5c\x16\x03\x88\x40\x50\x68\x1d\x23\x65\x8b\x96\x2b\xc0\x9d\x04\xa8\x1f\x9f\x92\x8c\x27\x17\x9e\x59\xe0\x6f\x5d\x6d\xaa\x7e\x44\x8a\xcc\x56\x73\x25\x69\x35\x25\xda\xdc\x60\x0c\x1e\xbb\xb4\x39\x51\x35\x24\x4b\x18\x79\xde\xe6\xa4\x8a\x7e\x9f\x52\x1b\xbb\x9e\xb5\x2d\x36\xf0\xf4\xb4\x3b\xe5\x2c\x8c\x90\x1a\x9a\x77\xd9\xae\xd6\x69\x2a\x0b\x23\xce\x37\x15\xf6\x4c\x6e\xd7\x96\x50\x00\x15\x6b\x3f\xe9\x53\x37\x83\xcf\x66\x6a\x54\x44\x29\xde\xc7\xb8\x3f\x15\x8b\xea\xf9\x14\x2d\x10\xc7\xae\x4b\xc1\x10\xc6\xcf\x60\x4c\x36\xa4\x80\x7a\x64\x91\x16\xfb\x89\x52\x30\xbf\xf3\x5d\xdf\x37\xac\x88\xad\x99\x06\xa5\x8c\xf5\xf9\x18\x80\x50\x55\x7d\x7d\x77\x32\x2d\x31\x96\x54\x97\x84\x14\xd2\x81\x8f\xc8\xb1\x00\x2b\xc4\xf1\xd0\x74\xd7\x77\x50\x85\x58\xf0\xf2\xfa\xce\x1b\x87\xd0\x07\x6e\xae\x9f\xee\xc9\xd3\xb6\x7c\xe6\xfb\xe2\xd6\x1f\x4a\x68\x7f\xa4\x74\xb0\x34\x2f\x90\x29\xe6\x67\x5b\xc0\xb6\x67\x2e\xd4\x2e\xe8\x48\xa3\x8d\x51\x8b\x7c\x5e\x65\xc4\xc9\x49\x8a\x2e\x80\x65\x1a\x04\x4a\xcf\x06\x6d\x79\x05\x78\x8c\xbe\x3e\xee\xb1\xdf\x56\xfb\xa6\xc9\x68\xe7\x83\xed\xc2\xba\x97\xae\xcb\x7a\x19\x19\xfd\x70\x94\x04\x7a\xfb\xff\xd9\x50\x57\x67\xd0\xd6\x82\x05\xf8\xbe\xa9\x0f\x91\xe6\x54\x14\x2b\xad\x66\x62\x6b\x90\xab\x69\x9b\xdd\x72\xa5\x16\x9f\xe4\x37\xc6\xda\xc7\x44\xe7\xb5\x0c\xea\x54\xaa\xb7\x1c\x9b\x7f\x59\xdb\x0e\xde\x04\xdd\x5f\xca\x96\x55\x63\x00\x45\x13\xbf\x6f\x46\x62\x84\x38\x96\xee\x25\xa3\x8b\x90\x01\x69\xf2\xf5\x6e\x7d\x90\xde\x8a\xc8\xe4\xcb\x38\xb5\x5c\x85\x29\x26\x71\x39\x43\xa3\xe1\x35\x45\x4e\xe3\xbb\xc3\xc9\xc0\x5f\x68\xdb\xad\x71\x1a\xd3\x24\x94\x21\x85\x4e\xf1\x41\xa0\x6c\x57\xf8\x98\xf0\x76\xfc\x7e\xa0\x11\xf0\xbe\xad\x69\x81\x54\x8a\xac\x9f\xc3\xd3\x26\x37\xe6\xf3\x09\xe5\xe1\xa2\xf4\x87\x4e\xf8\x72\x83\xbf\xbc\x7c\x73\x65\x86\x82\xcb\x37\xe9\xa7\x52\xeb\x7e\xd3\xf7\xdb\xee\x03\x4c\x50\x62\x4f\x62\xe3\xd3\x79\x7e\xc7\x92\xba\x24\xeb\x0f\x64\x5c\x95\xf9\x46\x3b\xc9\x9f\x52\xc5\x11\x09\x11\x9a\xc8\x9f\x24\x79\x04\xa6\xcd\x04\x32\xeb\xcf\x91\xaa\x22\xab\xc8\xe9\x8d\xa5\x1e\x43\xfd\x3e\x32\xc7\xfe\x9e\xe4\xeb\x2d\xa9\xb6\x2c\xff\x05\x60\xb0\x3c\xce\x55\xc3\x4d\x01\x82\x55\xb3\xdb\x10\x81\x2c\xa0\xd1\x53\x81\xa7\x87\xd9\xb3\xc0\x12\x1d\x57\x56\x10\x33\xf9\x43\x15\xf2\xb7\x90\xbc\xaf\xb7\xab\xfe\x6e\xa3\x88\xaa\xe3\x74\x62\xcc\x04\x01\x31\xde\x43\x39\x20\x6c\x2d\x2c\xd2\xf7\x6c\x88\xa4\x04\x52\x1b\xa2\xaa\x37\xf9\xe7\x87\x0a\x6e\x9a\x89\x72\xc2\x32\x7d\x21\xe3\x8c\x3a\xc4\x68\xf5\x10\x38\x5b\x1a\xf7\x02\xd3\xc4\x13\x48\x55\x2f\xd6\xbb\x62\x6f\x47\xba\xdd\x9c\x16\x12\xab\x23\x4f\x1e\x77\x4f\xb8\xca\xfa\x13\x49\x1e\xb5\x83\xff\x20\xbf\x53\xfc\xfe\xc1\x4e\x43\x33\xaa\x56\x74\xb4\xd4\x9d\x8b\x92\x00\x55\xf0\x66\x04\x5d\x6b\xe6\xf9\x58\xa8\x7f\x39\xe2\x87\xd1\x47\xf5\x63\xb7\xfe\xd9\xd2\x03\x55\x94\x08\x70\xe6\x4f\x70\x33\x16\x64\x32\xd6\x6b\xea\x50\x11\x61\xe6\x6b\xdb\x35\x44\x1d\x40\xcc\xc4\xbe\x3e\x2e\x37\x58\x9d\x7b\x8b\x93\xb8\x36\x51\xfa\x6c\x6c\xfb\xdf\x53\xbe\xa7\x05\x36\x51\x81\x5b\x77\x7b\x0b\xca\xdc\xa3\x10\x8d\xbc\x18\x32\x8e\x71\x39\x86\x9a\x79\x2c\x39\x84\x87\x73\x13\xaa\x6d\x0e\xcf\xb1\x96\xcd\x16\x2b\x22\xbf\x16\x27\xe9\x81\xae\xad\xb6\x0f\xe5\xf5\x1b\x56\x2b\xbb\x1d\xef\x5b\xac\x82\x8a\x18\x18\x63\x94\x25\x12\x54\x55\xa2\x89\xfd\xd5\x13\x3d\x31\x6b\x7e\xa8\x7e\x80\x7d\x65\xd5\xa1\x69\x66\x5c\xb1\x56\xee\x80\xf6\x55\xeb\xec\x06\xe5\xe7\x0a\x56\xee\xd7\xd5\x4d\xa9\x96\x03\x67\x30\x41\xde\x2c\x59\xd3\xfa\x67\x0d\x52\x46\x25\xfa\x42\x73\xc3\x2b\x8a\xdb\xe3\x5c\x29\x27\x56\x6f\x1d\x14\x13\x89\xda\x20\x70\xf4\x56\x16\x07\x7c\x0c\xd8\x43\x30\xc0\x02\xcd\xd7\xb7\xf9\x5d\x07\x7b\x9a\x31\x19\x3e\x30\x90\xe2\xcc\x41\x48\x38\x5a\xa2\x57\xe1\xb1\x14\xad\x1a\xc3\x04\x9f\xaf\xf0\x76\xe1\x64\x98\x5b\x58\x11\xc0\x21\xd4\x42\x77\x13\x6c\xcc\xba\xbb\xb0\x05\x84\x55\x7f\xd6\xa5\x24\x3b\xa8\x08\xe7\xc4\xca\xec\x27\xca\x1e\xb0\xe0\x48\xcd\xb0\x20\x47\x2c\x58\x70\x5d\x41\x4e\x47\x97\x02\x93\xd2\x8e\xea\x3f\x14\x05\xa4\x22\x1c\xb2\x3e\xeb\xad\x2c\xbc\x1b\xd1\xac\xd8\xb1\x8a\xa4\x8b\x6d\xa2\xeb\xab\xf5\x9a\x31\x6d\xbe\x13\x91\x42\x80\x5c\xac\x13\xa0\xa9\x5b\x55\xdb\xb4\x81\x71\x3d\x44\xa1\x27\xdb\x40\xf4\xe6\x03\xa4\x12\x0a\x0e\x1f\x32\xb4\x79\xdd\x5d\x97\x38\x6d\xd8\xa4\xd7\x7c\xbe\x3f\xd3\xa6\x59\x92\x17\x5f\x89\x3d\x2d\x8b\xae\x88\xa6\xc3\x0d\x02\x73\x17\x4c\x54\xdc\xb4\x9c\x66\xc1\xa4\x8d\x3e\x00\xab\xbe\xa6\xce\xfa\xc0\x64\x36\x42\x01\x04\xea\xe8\x6c\x72\x12\x0f\xd7\x91\x09\x42\xda\x07\xa5\x3d\x30\xee\x44\x7c\x11\xb2\x39\x65\x2e\x56\xd1\xaa\xb8\x42\x4e\x2a\x39\xa3\x85\x91\xfc\xc6\x74\xff\x31\x11\x31\x33\x73\x47\x06\xc7\x22\x76\x8a\xcc\x88\xc4\xe4\xaf\x0d\x6d\xb4\xb0\xd9\xff\x3b\x7d\xb1\x30\x5d\x27\xd1\x21\xe8\xc0\x3e\xa2\x5e\x20\x4c\x93\xe7\x44\x4a\xb4\xd7\xab\x2b\xc8\x1d\x29\xe0\x58\x4f\x30\x9f\xbc\xb2\xef\x84\x0f\xda\x5b\x10\xd7\xa5\x7e\x45\xf6\x18\x29\x24\xc6\xba\x57\xf6\xad\xa9\x2e\x89\x96\x85\x4b\xf9\xa0\x9f\x09\x2b\xfc\x9b\x19\xf8\x2f\x0b\xb3\x38\x2f\x09\xb8\x2e\x6f\xaa\x4c\xff\x96\x37\x0b\xe0\xb7\x79\x4f\x9c\xa7\x16\x05\x49\x98\x40\x58\x54\xb3\x5d\x15\xee\x98\x9e\x6b\x49\x7e\x33\x17\x99\x8f\x89\x77\xa4\x31\x1f\x9a\x29\xfb\xb4\xae\xe2\x4e\x05\xc9\xff\xa0\x4f\x35\xee\x80\x43\xe0\x43\xb5\x73\x1c\x90\xdb\xa9\x26\xfc\x6c\x82\x9f\x89\x1a\xcb\x62\x4b\x99\xd2\xd0\xf3\xf4\x44\x3e\x4c\xcf\xdf\x55\x18\x53\x45\xe2\xf6\x16\x13\x15\xb8\xfd\xe8\xcc\xb9\x4e\xab\xd7\x57\xa8\xe9\x8f\xd4\x44\xa9\x04\xd2\x83\x1d\x52\x61\xaf\xe4\x33\x92\x40\x5d\x64\x2b\x37\xf4\xc8\x3a\x38\x80\xe3\x63\x25\xd6\x7d\x09\xec\xb6\x9c\xa7\x6c\x77\x26\x42\x23\xb5\x4c\xc7\xb9\xc9\x49\xa3\xbb\xa9\x72\x67\x63\x0a\x64\x18\xb7\xc9\x9a\x91\x28\x52\xac\x20\xb2\x8b\xcd\xce\x44\x18\x9b\x50\x36\x9d\x08\xbd\x53\xad\x95\x1c\xe4\xd4\x10\x6f\xd8\x6b\xc7\xf6\xc0\x57\xec\xad\x04\xf7\x83\xb1\xbf\x1d\x37\xa1\x07\x5a\xef\xf4\x33\xd9\x6d\xf9\x84\x28\xc0\xe5\x07\x24\x38\x5c\xc6\xf9\x81\xe2\x04\xac\x5a\x31\x67\x23\x12\xf0\x22\xd0\xa4\xf8\x98\x44\xd7\xed\x84\x1f\x9d\x2e\xe1\x62\x08\xe2\x2d\x2a\xe0\x49\x3a\x70\x4c\x94\x9c\x80\x03\xb5\xb4\xaf\xa5\x6c\xbe\x5d\x57\xf5\xa7\x4e\x67\x8a\xf1\x14\x2a\x91\xb0\x7c\x11\x7d\xef\x4a\x39\x47\xc1\xe7\xd8\x6b\xcb\x8e\xd2\x70\x7a\xe8\x39\x8c\x1d\xb8\xc9\xa1\xe2\x91\xf0\x98\xc5\xaa\x69\x3a\xb5\x96\x7a\x56\xc4\x69\x30\x86\x28\x27\x52\xcc\x39\x08\x45\xec\x91\x1d\x6e\x62\xd1\x29\xb9\x67\x7a\x74\xe0\xa1\x95\xfa\x8f\xf5\x48\xe1\xc8\xea\x94\xc3\x4b\x85\x93\x05\x9f\x55\x1b\x71\x89\xfc\x60\x47\x9b\x98\x13\x27\xc3\x23\x7b\x16\xf7\x67\x38\x91\xda\xae\x1d\x28\x3c\x30\x9f\x36\x5b\xe1\x09\x95\xcc\x90\x63\x12\xcd\x3a\x92\xa0\x6c\x1c\x2e\x9f\x91\x17\xe4\xbf\xc7\x59\xa2\x53\xd3\x79\x19\x64\x03\x10\xd5\x6c\x23\xc8\x49\x41\xd5\xda\xda\x2b\xa4\x0e\x7a\x3f\x22\x6a\x2b\x77\xcb\xee\x54\xc1\xc0\x95\x0c\x8b\x99\xb9\x28\xb1\x65\x55\x0e\x26\xe1\x4b\x22\xfe\x34\x35\x4e\x35\xa5\x8a\x60\xdd\x6b\xa3\xff\xea\xaa\xf7\x35\x8b\x94\xdf\x39\xe1\xfe\x48\x78\x1b\x9f\x43\x88\x23\xa6\xcb\x57\x5f\xcc\x88\x05\x96\xe6\xa0\x11\x32\xc9\x6d\x4b\xb4\x42\x32\x78\xcc\x2c\x47\xec\x31\x62\x85\xe0\x84\x0d\xdc\x0d\x3c\x07\xa4\x71\x6b\x55\xbc\x95\xe0\xcb\x52\x9c\x2d\x87\x56\x00\x0b\xaa\x9a\x6c\x0b\xc1\x72\x85\xfe\x5d\x1f\xe9\x87\x30\x2e\x19\xeb\x89\x26\x0c\xf2\x6d\x30\x92\x6d\x13\x32\x31\x1a\xf6\x8e\xba\x29\x1d\x6f\xaf\x6a\xf1\xf6\x70\xe7\x8f\x11\x03\x49\x4f\xc0\x51\x88\x1c\xc4\xfe\x6d\xfc\xe4\xa7\x61\xeb\x9e\x8e\x7e\x8e\x2d\xe7\x32\xb6\x78\x15\x7d\x93\x50\x8f\x40\xe3\xfe\x14\xb7\x00\xf1\xc4\x86\x2d\x86\x0a\x21\xc4\x74\xe2\x52\xb3\xc8\xae\x0f\x13\xfd\xd7\xd8\xf2\x59\x24\xf8\x2f\x30\xe3\x47\x4d\x79\x33\xbe\xeb\xe4\x60\x85\x8d\x46\x39\x5e\x6a\x94\x01\xe9\x44\x69\x39\x90\x39\x94\x9a\x9d\xe8\xc1\xad\x88\x52\xc1\xe8\xa1\x24\x08\x28\x4a\x09\xd8\x3d\xd8\x6d\x0a\x3e\x57\x70\xb4\x14\x0d\xa3\x1b\xd9\x88\xe3\x39\x3f\x82\x0a\x45\x48\x11\x58\x08\x6b\xb4\xdf\xb3\xf0\x6d\x6b\x9d\x04\x5b\xc2\x83\xf8\x08\x38\xff\xb7\xd1\x09\xdd\x81\xea\x2d\xab\x6a\xb9\xa2\x71\x55\x1b\x3e\x1a\x07\x25\xd9\xf9\xab\x57\x2b\xf9\x17\xb1\xa8\x66\x59\xb3\xdd\x88\x5b\x10\x87\x37\x67\xf3\xfd\xb1\xeb\xdb\xa6\x5e\xbe\x38\x69\x58\xdf\x63\x73\x0a\xef\x7f\x3f\xfd\xf8\xad\xa6\x13\x1b\xe6\x29\x64\xef\xc8\xd7\x55\xff\x66\x37\x7f\xd2\xa5\x4b\x76\xf3\xc5\xb9\x4d\x1e\x38\xff\xaa\x53\x84\x78\x23\xde\xd6\x0e\x2d\x70\x05\xa6\x35\xde\x35\x6b\x5a\x20\x71\x91\x66\xb3\x91\xe9\x25\x06\xb6\x11\x48\xf4\x1f\x7e\x14\x65\x0d\xcc\x95\xad\xe2\x87\x2a\x9c\x39\x12\xf7\xf3\xa3\xd3\x66\x42\x64\x64\xa4\x50\x31\x8e\x81\x71\xca\x5b\xf7\xc1\x46\x04\x0b\x85\x95\x82\x88\x30\x2e\x85\x79\x64\x93\xcf\xd8\x3c\x02\x4d\x82\xab\xb0\xe2\x54\x92\xfa\x21\xa2\x12\xa7\x59\x8b\x22\x24\x94\x6c\x7d\x16\xc2\x0a\x88\x97\xf7\x1e\xb3\x9d\x42\x98\x76\xdd\x03\xb9\x0e\xd6\xb7\x72\x34\x19\xbb\xf2\x33\x1b\x40\xc0\xd1\x14\x23\x9e\xa7\x0d\x61\x22\xae\x56\x0a\x4f\xb3\x5e\x84\xdc\x4c\xdc\xaf\x84\xa3\x09\x41\x92\xba\xc3\xfc\xfa\x0b\xb9\xd9\xa8\x5d\x3f\x70\x6b\xee\x0b\x38\x1a\xc6\x74\x04\x74\xd0\x58\x60\xd2\xd0\x89\x7a\xa7\x06\x0c\x64\xb0\x23\xb0\x57\xbd\xde\x37\x7a\x10\x96\x5a\x22\xe6\x84\x74\xad\xbe\x8c\x96\x32\x77\x02\xae\x9b\xe2\x4c\x04\x9b\xc8\x7f\x4b\x8b\x9c\xf8\x40\xdf\x7c\x22\x52\x1a\x17\x41\xfa\xbe\x42\x8e\xbf\x98\xfe\xa2\xdc\xe5\xc8\x33\x87\xa1\x46\xa3\xe7\xd8\x7b\x19\x4c\xc0\x57\xb4\x56\xe7\xd0\x25\x06\x1d\xb8\xd3\xb3\xdb\x4b\x21\x7c\x44\xd9\x80\x7a\x2d\xb9\xf5\x4f\x12\x5b\xcd\x40\xd0\x11\xf9\x43\x7f\x87\xd3\x12\xd5\x1f\x2c\x16\xe2\xde\xbb\x3a\x60\x9f\x42\x0e\x99\xa0\xc2\x0d\xf2\x9c\x04\x0e\xf8\x6c\x1e\x49\x85\x57\x9c\xdd\xa9\x03\xb4\xba\x03\x58\x91\xd7\x9a\x88\x35\x00\x40\x41\x78\xe7\x10\x81\x5f\xde\x16\x61\xb5\xa8\xa3\x89\xba\x63\x62\x0e\x88\xea\x8c\x61\xae\xc4\xf1\x24\x3d\x3a\x7f\x4b\x1b\x86\x6b\xd0\x2a\xfd\x39\x5f\xac\x74\x02\x6f\xc5\x10\x01\xf7\x94\xf5\x7a\xc8\x71\x9d\xb0\x2f\xc5\xcd\x4f\x1d\x25\xb1\xc4\xdd\xa0\x46\x03\x92\xc1\xc4\xf9\x82\xe3\xb2\x0b\x8c\x33\xd2\x1a\x7a\x32\xdc\xab\xdc\x50\xbf\x21\xcc\x3a\x13\x21\x2f\xad\xed\x1d\x73\xff\xc0\xd1\x2c\x17\x0c\xdd\x82\x7f\x0f\x3c\xdc\x08\x12\x87\xbc\x29\x2f\xe1\xd6\xf1\x0f\xeb\xb0\x72\x90\x70\x2a\x43\x36\x32\x39\x99\x9e\xa9\x4c\x16\x9b\xe2\x2c\x5b\xab\x27\x1e\xf3\x43\x7c\x86\x09\xdf\xeb\xf6\xf7\x70\x99\x70\x54\x01\x29\x9f\x4f\x36\xeb\x28\x5a\x9a\x1e\xf0\x9b\x54\xb6\x41\x71\x94\xe0\x56\x44\x5b\x51\x8a\x08\xdc\xa9\xa9\x96\xdb\x72\xbd\xa6\xf5\xa0\xad\xfb\xf3\x47\x1d\x7a\xe4\x52\xa0\x40\x81\x0a\x5a\x7a\xd9\x56\x50\x11\x5a\xd7\xac\x32\x82\xa0\xe5\x86\xd3\x7c\xb1\x0f\xd8\x6e\x7d\x7c\xf4\xfe\xfd\xd9\x95\xdf\xa4\x79\x1d\xd4\x05\x89\x12\xdf\x38\x5f\xbf\x51\xbf\xcc\xe3\xcf\x4d\x60\x0c\xe1\x7d\x0e\xb5\xc4\x3e\xb8\x90\x4d\x05\xde\x0e\xcb\x06\xbc\xa7\xe1\xbe\x18\x2f\x8f\xfa\x5f\xec\x9b\xbf\xe4\x37\x96\x6e\x3e\x26\x66\xa3\x3e\xe3\xbf\x49\x68\xe6\x0f\x8e\x47\xb0\xf4\xfc\x29\x8a\xbf\xa5\x40\x1d\x68\x8a\x91\xd9\x1f\x4c\x7a\x97\x43\xd5\x22\xdc\x37\xd8\x2b\xae\x53\x1c\x5d\x1f\xb0\x15\xb3\x69\xb1\x60\x18\xb9\xbb\xba\xfa\xdb\x0e\xe2\x19\x4e\x9c\x67\x09\xbb\x90\xce\xab\xb5\x6c\x28\xbf\xb8\x1f\x92\xce\x5f\x03\x4f\xfa\xa0\x71\xfa\xf5\x63\xb7\x65\x0f\x5c\xda\x1b\xba\xe7\x8f\x76\x55\xca\x86\x3d\x76\x26\x7b\xf4\x82\xf4\x17\x3e\x83\xa6\xe9\x23\x88\x17\xa3\xea\xf8\xb2\xdc\x42\xec\x81\xce\x3b\x04\x74\xab\xe9\xbc\x5a\x58\xde\x8d\x8c\x90\x82\xf8\x3f\xd0\x26\xdf\xcc\xf3\xe3\x78\xaa\x5a\x37\xe1\x08\x6b\xf7\x26\x5f\xef\x62\x2b\x09\xb7\xce\x65\xba\x67\x09\xae\x09\xf8\xb2\xf0\x16\xc2\x5d\x4f\xce\x20\x6a\xf8\x09\x48\xeb\xef\xbf\x33\xc6\xb7\x42\x59\xf0\xfb\x26\x41\x4f\xd4\x6e\x3c\xbc\x24\x88\x3c\xf3\xdf\xe7\x3c\x38\xf1\x23\x75\x62\x36\x82\xfb\x3e\xf9\xba\x17\x9b\x71\x1a\xcc\x26\xb3\x16\x0c\x22\xb4\xb5\xde\xe9\xe9\x9c\xe3\x60\xdd\xa2\xad\x70\x07\x41\xd2\xf9\xa6\x68\x1a\xdc\x12\x75\x89\xbe\xdd\x4b\xa2\x7b\x42\xd1\x6c\x59\xf5\xa4\xc2\xb3\x07\x20\x7c\xd6\x13\x62\x1b\xb4\x93\xe1\x8e\xa9\x7c\x59\xca\xa8\x28\x6f\xfa\x02\x0b\x5b\x19\x4b\x9a\xba\x02\xf8\x43\x7f\x4f\x94\x52\x40\xbb\xe1\xca\x87\x16\x4d\x56\xd5\x15\x2f\xfc\xb7\xf4\x87\x36\x75\x51\x00\x62\x32\x15\xf1\x16\x95\xa8\x91\x47\xb4\x6f\x57\x8f\xba\xf1\xe9\xac\xa8\xff\x5e\x30\x2f\xea\xe6\xae\x06\x78\xa0\x0d\x09\xe9\x4b\x24\xe8\xcd\x52\x62\x7c\xbb\x5a\x8c\xc0\xf4\x37\x4a\x34\x74\x07\x72\x8c\x5c\x34\x3a\xec\xdb\x7c\xf1\x89\x79\x0a\x91\x4a\xd9\x92\x32\x00\xdf\xa5\x9c\xb7\xbd\x94\xe8\x6b\x49\x08\x10\x5b\xbf\x3a\x06\x49\x31\xab\xbc\x62\xc5\xe1\x46\x04\x30\xb9\x93\xfa\xd6\x52\x9e\xb2\xc6\xf9\xcc\x00\x4d\x5f\x74\x70\x6a\xf5\x18\xe4\x5b\x3f\xf5\xe0\x4e\x4f\xae\x69\x1d\xf2\xe6\xc1\x66\x09\x9c\xa3\x11\xba\x0a\x3e\x1d\xca\xd7\x5d\xaa\x6a\xae\x1d\x88\x27\xb7\x7c\xcc\x2c\xb6\xff\x5f\xf5\x13\xa6\xff\x65\xfe\x77\x49\xbd\x74\x3f\x40\xd8\x9d\x92\x7a\xa7\x76\x7c\xc2\xfd\x62\xa5\xde\x61\xcd\x75\x26\x77\xd5\xb0\x51\x5f\xb9\xf3\x48\xe6\x12\x80\xa3\xd9\xdc\xe4\x9f\xab\xcd\x6e\x93\x3a\x40\x14\x65\xda\x7f\x1c\x9f\x30\xcc\xa6\xcf\x09\x86\x67\xd2\x5f\x7f\x5c\x30\xac\xe1\xfe\x53\x03\x76\x03\xcb\xf8\xb0\xcd\x58\x49\xe4\xf8\x91\xe8\xad\x63\xbb\xbd\xe9\xae\x1d\xcb\xf5\xcd\x30\x77\x3f\x57\x36\xbb\x53\x1e\x33\x4a\x78\xff\xce\x89\xd1\x3d\x7a\x21\x93\x6e\x5c\xd2\x6a\x55\xf2\x3f\xd5\x8b\xcf\x01\xfd\x2b\xc4\x4c\x58\xa1\xa7\xa5\x63\xdc\xa0\xf2\xa4\x34\x01\x15\x6d\xa4\x2a\xcc\xe6\xc1\x2d\xac\x6f\x5f\xbf\xbd\xc2\x1d\x2c\xa2\x49\x31\xea\xe9\x45\x33\x76\x8c\x9e\xb9\x3a\x79\x8f\xad\xba\x4e\x64\xaf\xba\x02\xe2\x99\xff\x4d\x98\xfd\xc4\x52\xa0\x95\xc5\x14\x60\xb5\x79\xaf\x6c\x76\xd4\x52\x97\xec\xb7\x92\xa8\x05\x39\x11\x26\x88\xf8\x4c\xcd\x7c\xcc\xf2\xf0\xfa\x9f\x55\xeb\x8e\x4f\xfd\xb4\x85\x27\xa7\xba\xd4\x94\xbf\xeb\x1d\xf2\xe6\x3a\x11\x16\x6d\xe9\xca\xb0\xaf\x1d\xe7\xc7\xf5\x2d\xbe\x78\x12\xb3\x7c\xdc\x35\xcf\xc3\x79\x0f\x9d\x27\x69\xa1\xb0\x90\xb4\xbd\xcb\xd8\xc6\x0f\xb9\x68\x7b\xe7\x13\x02\x01\x92\x32\x08\x9d\x01\xb0\xf3\x3b\x39\xc7\x2c\xff\xdf\xff\xfd\x7f\x0e\x8f\x79\xd8\xc7\x7d\xbb\xa6\x2f\x95\xcf\x19\x5e\xa6\x41\x2a\x48\xcf\xfe\x83\xf4\xac\x5b\x75\x32\xf9\x20\x5f\x89\xfd\x06\x2b\xa0\xfc\x4e\x4d\xfa\xf8\x48\xf4\x17\x73\x84\x44\xaf\xce\x33\x2b\x48\x58\xc9\x55\xb2\x21\x05\x37\xdc\xa2\xfe\xb6\xab\x16\x9f\x32\xb1\xcc\x3c\x4f\xff\x93\x7f\xa5\xb8\x8e\xad\xbb\x34\x73\x7e\xc7\xc6\x41\x9c\x83\xbd\x20\xf4\xd8\xc6\xd6\xa6\xb7\x36\x3c\xdb\xcf\x63\xa9\xe3\xce\x18\xaf\x01\xf2\x1d\xaf\x64\xbb\x63\xb7\x2a\x26\x08\x6b\xed\x9c\x52\x70\x5f\x8e\x13\x85\x9f\xbb\x1a\x30\xb3\xa3\x3a\xd0\x3c\x75\x57\xae\x4f\x4e\x0a\x57\xc8\x0a\xbc\x69\x89\xbb\xcc\x69\xbb\x30\x45\x27\x51\x0f\xc9\x63\xbe\x7e\xe6\xf6\x26\xdd\x93\xfa\xb6\x84\x2a\x47\x7f\x12\xda\xf2\xd8\x13\x4f\xcf\x8f\xf9\x0a\x71\x9f\xe3\xa0\x15\xe9\x76\x7a\xcc\xc7\xcf\xf9\x52\x2b\x82\x0e\xf7\x52\x3f\x13\x4a\xe7\xdf\x57\xf4\x67\x74\x93\x9f\xef\xfd\x8f\xef\xfb\xaf\xf3\x79\x89\xe4\x77\xf8\x20\xe2\xa7\x5d\xb7\xa7\x19\x91\x3d\xc8\x7e\x24\x8c\x92\xaa\x17\x42\xc4\x57\xa2\xd7\x63\xe4\xc4\x59\x3e\x13\x9c\xa1\xb5\x39\x9f\xfb\x5e\xe4\xb7\xf2\x93\xd0\xa5\xf1\x1f\xde\xc8\x97\x24\xe3\x66\x80\x80\xe2\x62\x80\x83\x87\x98\xae\xab\xe1\xdc\xbe\x25\x8b\xfd\x3c\xd7\x2c\xbb\xd9\x34\xd8\x41\x10\x65\xa4\x92\x21\x92\x27\x5f\x83\xa8\x13\xeb\xf4\x6c\xdc\x79\xcb\x19\x5c\x18\x48\x17\x83\xfc\x6b\x31\x50\xbc\x62\xf3\x84\xa5\xe5\xd8\x09\x52\xf3\x05\x74\xe9\x1b\xde\x7b\xd1\xb7\x53\xf9\x72\x39\x85\xf8\xf3\x9e\x40\x86\xd1\x34\xbb\x09\x72\xc6\x7f\x5d\x2a\xd1\xb4\x4a\xaf\xf4\xd7\xdd\x94\x90\xd8\x1f\x6c\x99\xc0\x5c\x06\xc9\xb3\xe1\xfc\x05\x59\x35\x23\x6b\x8e\x53\x40\x5a\x9e\xc8\x0f\xb3\x17\x34\x67\x6d\xe6\xca\x1f\xf3\xcf\x74\x3d\xaa\xc5\x11\x44\x48\x0f\x83\x66\x42\x18\x6a\x6a\x12\x4c\x9a\x0b\x21\xa5\xc5\xcd\x14\x30\x69\xa3\x75\x04\x7b\x46\x09\x21\x39\x46\x15\xb3\x1e\x35\xa8\x19\xaa\xd5\x34\x3c\x6d\xb2\x7c\x59\x0f\xca\xa5\x7e\x8e\xfb\x19\x00\x49\x37\xf3\x09\x50\xb6\xf1\x79\x38\x1a\xf8\x10\x48\x8d\xd0\x8e\x67\x0d\x67\xcf\xcf\x0f\x4d\xed\x70\x82\x24\x33\x23\xc9\x77\x51\xba\x7b\x43\x00\x82\xfc\xc2\x37\x78\xa2\x66\x5c\x65\xda\x58\x54\x1f\x10\xda\xe7\x73\xca\x26\x79\x8b\xb1\xe9\x0a\x33\xae\x7c\x96\xa0\xce\x32\x95\x21\x59\xcd\x51\x95\x61\x1e\x89\x5a\x99\x08\xee\x82\x08\x27\xc4\xaf\x27\x4a\xdc\x4b\x51\x43\x98\xbd\x35\x8f\xe8\x46\x4b\xde\x33\xbd\x1e\x82\x63\x5f\xec\xaf\x7a\x4f\x39\x95\xf5\x20\xe1\x8d\x73\x66\x7c\x23\xcd\xf1\x5c\x0e\x53\x20\x3f\x26\x41\x3b\x8d\xc7\x43\x6a\x11\x4b\x03\xae\xab\x85\x1a\xfc\xa6\x0a\xc9\x2c\x17\xd9\xfc\x4e\xcb\xc8\x3c\xe3\xa2\xef\x9e\x22\x1b\x96\xfe\xa1\xfc\x6a\x91\x53\x97\x30\x51\xa4\xd3\xb0\x03\x7c\xef\x7f\x9c\x33\xe3\xcd\x0c\xbe\x4c\xcc\x9b\xba\x49\x10\xa6\x52\x80\x9c\xe1\x63\x0a\x44\xcc\xe0\x6a\xc8\xe2\x9d\x43\xae\x87\xd8\x41\xfc\x64\xc3\xec\x16\xe6\x4a\xbc\x83\x93\x58\xfb\x05\xe5\xd8\x6d\x98\xf9\xaa\x9c\x7a\x9c\x36\xf0\xe5\xc5\xcf\x7b\xda\xf1\x05\xa4\xa1\x51\x09\x5e\x49\x98\x05\x02\x91\xef\xf4\xf1\x6f\xdf\x7d\xec\x78\x1a\xfc\x71\xd2\x6f\x7f\xfe\xd8\x3d\x7a\xf1\xf8\xb7\xef\x3f\xe2\x1c\x69\x54\x38\xbb\x66\x43\xea\xb8\x06\x14\x34\xe8\x6d\x5b\xde\x54\xcd\xae\x13\x19\x0f\x9f\x9e\x3f\x7c\x96\xa9\xf8\xdc\xc7\x4b\xdc\x85\x2b\x18\xac\xf0\xc2\x65\xc5\x2b\xbc\xde\x6d\x32\x1d\x63\x27\x1c\xc0\x7e\xb9\xe2\x86\x81\x2c\xe7\x26\x7f\x77\xbf\x79\xb8\x55\xc1\x83\xa5\xce\x9b\x11\xe5\x4f\xf2\xeb\x05\x06\xc2\x43\xff\xdd\xb5\xd4\x04\x67\x50\x57\x12\xc1\x81\x25\x76\x77\x16\x76\x57\xf6\xb3\x98\x2b\xe1\x87\x75\x39\xce\xd2\x5e\x78\x10\x9d\x37\x78\x4b\x87\xe0\x6d\x09\xc4\x18\xdc\x05\x7e\x0e\x32\xef\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\x42\xef\xb5\xab\x47\xcd\x16\x85\x88\xda\x32\x54\xf5\xb4\x15\xe8\xaf\x6c\x62\xdb\x68\x04\xb4\x73\x7c\xf8\x96\xed\xfe\x28\x64\xa4\xe3\xe0\xa7\xa3\xd4\xc8\xb4\xaa\x89\x76\xd7\xef\x1a\xaa\x17\xf8\xb7\xdd\xef\xe3\x33\x3e\x4e\x8a\x40\xab\x3a\xb3\xeb\x15\xaa\x83\x10\xeb\x64\xef\x48\x19\x1f\x11\x15\x5f\xa8\x56\x6b\xfd\xde\xeb\x97\xd1\x01\xb0\x5d\xe7\x94\xd3\x7f\x9e\xd6\x70\xed\x96\x05\xec\x57\x3f\xd3\x1f\x37\xd6\x81\x97\x95\xf5\x8f\x5b\xa1\xee\xd3\x1f\x4b\x92\x5d\xd2\x96\xa0\xdf\xc5\xe3\x7c\xc2\x5d\xe3\x77\x79\xfc\x1a\x02\x88\xf5\xfc\x71\x31\x90\xd4\x24\xdb\x53\xba\xae\x65\x4e\x18\xec\x43\x02\x39\x31\x18\xc9\x18\xb8\x27\xc6\x99\xee\xb6\x8f\x74\x10\x77\x7e\x2c\x66\xc7\xb8\x16\xf5\xc4\x03\xa8\x33\xdf\x4f\x82\x4d\xfb\xb5\x88\xd4\x11\x9e\xcc\xb0\x0c\x1f\xfa\xb2\xb0\x67\x42\x70\x58\xa3\x75\xef\x3f\x9b\x99\x6e\xdc\xeb\xd8\xd2\xd7\x07\x0e\x81\x03\xc6\xb9\xcd\xdb\xbe\x5a\x54\xdb\xdc\x31\xcf\xf3\x20\x25\x11\x95\x2b\x90\xde\x43\xd5\x4b\x33\xf9\x1c\x20\x27\x1a\x16\x27\x28\x55\x51\x38\x45\x3d\xce\xba\x69\x38\xc3\x98\x01\xf7\xb7\x4d\xea\x14\x42\x44\xfd\xe3\xfd\x25\x4f\xb9\xb0\xdd\xd0\xc4\x3a\xd2\xf2\xb3\x41\xb5\x08\x2d\xf0\x1c\x9e\x9e\xc3\x06\xb5\x85\xe7\xa9\x7e\x69\x7e\xa4\xab\x0e\x75\x54\x1b\x79\xc3\x26\xbc\xdd\x1a\xd8\xc1\x19\xb8\xfc\xb8\x96\xd3\x5b\x03\x42\xe8\x35\x96\x85\x7c\x5b\xc1\xfe\x20\x81\xd9\xd4\x23\x87\x73\xe7\xe5\x22\xe7\x48\x61\xe8\x33\x8f\x75\xc5\xa1\xe0\xfc\xe8\x09\x84\x43\xb8\x58\xfd\xec\x87\x1e\xc6\xbc\x63\x6e\xe8\xaa\x37\x3b\xcc\x00\x53\xf3\xb2\xbf\xc5\x7d\x13\xb8\xc8\x30\x72\xe5\xc8\xa0\xfb\x21\xdc\xe3\x89\x31\x7e\x8b\x36\xbe\xe5\x8d\xbe\x50\x26\xf9\x27\xfc\x10\x56\xa9\xa8\x1c\xa8\x01\x13\x64\x00\xce\x60\x93\x7a\x0b\x7a\xa2\x11\x6f\x4a\x56\x69\xb9\xa1\xc2\x34\x53\x61\xd9\x3f\xb2\x45\xc1\x78\x32\xbe\x69\x2d\xb0\x0b\x8c\xa6\x7f\xef\xd2\xb5\x7e\xd4\xa4\x32\x80\x35\x23\x69\xff\x5a\xf5\x54\xfa\xdf\x3e\x1a\x8d\x92\x12\x91\x85\x7c\x17\xf4\xe9\x7f\x46\x50\x43\x85\xdc\xe7\x89\xdd\x1f\x04\x55\x9a\x67\x6c\xa1\xf9\xba\x5f\x13\xa9\x08\x6a\x9c\x05\x5c\x32\xf4\x84\x37\x9c\x49\xea\xf5\xb6\x6c\x99\x65\x28\x36\xdd\x41\xe7\x2c\x42\x0d\x84\xe3\xd6\xb7\xc4\x54\xe3\x72\xae\x46\xd5\x3a\x1e\xa1\x30\x31\x8b\x90\x2a\x38\x80\x1c\xad\x0f\x3b\xde\xa6\x5f\xee\x20\x6b\xba\x2e\x85\x2d\x76\xfe\x92\x05\x63\x91\x0a\xc1\xea\x16\x70\x3e\xeb\x7b\xd5\x65\x70\x6a\x13\x7f\xfc\x2b\xf5\x54\x5b\x57\x8b\x3e\x75\xe9\xd4\x9c\xdc\x72\x90\x90\x46\x4b\x09\x10\xe5\xa2\x28\xd2\xc6\xda\xad\x10\x72\x86\x01\xae\x4b\x0e\x16\x01\xf9\xcf\xb1\x88\xbc\xce\x70\x80\x83\xa1\x46\x76\xe2\x68\x18\x6a\x34\x56\x84\x0c\x02\xc9\xb8\xaa\x60\x93\xff\xb2\xda\xc4\x83\x60\xaa\x3e\xc7\x02\xe4\x16\x10\xaf\x78\x1b\x77\xb7\xbf\xad\x61\x34\x44\xa1\x87\x4d\x5e\xcb\x89\x6c\xc5\xf7\x83\x58\xcb\x96\xdb\xc6\xf0\x0f\xeb\x57\x13\x35\x4b\x6d\x03\x96\x02\xe2\x99\x5a\xd9\x20\xd8\x5d\xad\x0b\x10\xa5\x60\x7b\x64\x12\xff\x5d\xed\xc4\x4f\x7a\x47\xa4\x4a\xc8\xfe\x38\x3e\x1e\x6a\xc8\xb2\x6a\xd9\xde\x23\xb4\x3d\xfd\xd3\xe3\xe2\x99\x2c\x62\xf8\x89\x8d\x4e\xd7\x38\x51\x06\x1e\x6e\xa4\xcc\x45\xab\x0e\x77\xf3\x99\x64\x78\xa3\x60\x20\xfa\x9e\xfd\x9e\x04\x36\xc1\x60\x2f\xf3\x9a\x7b\x90\x3d\x61\x66\x08\x72\xa7\x4d\x0d\x43\x80\xc2\x1b\x70\x1e\x77\x51\xdb\x4d\x46\x4b\x23\x53\x3d\x90\xb6\x13\x5e\x28\xfc\x6b\xd8\x03\xd3\x7f\x86\x35\x3b\x4d\x22\x1e\x10\x09\x00\x73\xde\x42\xe4\xd6\xb9\xb0\xe8\xc0\x0c\x4a\xe4\xa0\x57\x86\xd4\x1f\x42\x05\x80\xa8\xfa\x01\x87\x9f\x44\x8e\x49\x7f\xb8\xa5\x1c\x66\x4c\x9c\xf1\x86\xb9\x7e\xcc\x27\x34\x60\x36\x22\xa6\x4f\x2d\x3e\xdd\xb3\x78\x90\xa5\xf8\xea\xf3\xdf\x30\xc3\x45\x14\xd2\xaa\x32\x99\x79\xad\x11\x95\x6b\x8a\x8f\x70\x73\xe0\x2e\xf9\x3e\xb9\xa3\x7f\x87\x9b\xcd\x61\x51\x3c\x99\x18\x75\x20\x3f\xb9\x61\x0f\xbc\x07\xd5\x74\x31\xe0\x92\x41\x4d\x81\x38\x3a\x8d\x3b\x06\x88\xe6\xe9\x03\xef\xfd\xbc\x4f\xb3\xd0\x51\x78\xcc\x09\xed\xfa\xd9\xeb\x98\xff\x37\xc4\xed\xbc\x4f\x12\x2f\x68\x71\xb7\x0c\xc7\x32\x10\xe5\x83\xac\xc1\x1d\xf7\x7b\x3b\xe8\x4e\x6b\x54\x9c\x23\xde\xbd\xd9\x83\x14\x89\x52\xb9\x17\x25\x81\x08\xed\xd1\xea\xc4\xe8\x09\xc0\x69\x21\xda\xb7\xfe\x5f\x29\x48\x4f\x35\x3f\x45\x06\x0f\x88\xd2\xc9\x6d\xf5\xa9\xa2\x02\xbf\xd2\x1f\x7c\xcf\x34\x2a\x41\xea\xa3\x10\x50\xbb\x9c\xfd\x4d\x94\x6f\x63\xe5\x1c\xd8\xff\x89\x4f\xc3\x50\x9a\x4a\x68\x48\xf1\x41\xdb\xad\xf9\x08\xe7\x93\xec\xa6\xcd\x62\x07\x95\xfd\x4e\xef\xf5\xfc\x15\x97\x6c\x1a\x12\xea\x56\x1a\x53\x10\x22\x73\xd5\x2b\x51\xcd\xa4\x41\xa5\x71\xdc\xf0\xcb\x34\x7c\xb7\x2e\xf2\x1e\x31\x6e\x29\x1d\xbb\xa7\x80\x87\x01\xbe\x91\xa0\x62\xb2\xa6\xab\x90\xec\xe1\xe5\x0e\x48\x58\xeb\x7b\x8d\x3a\x27\xf9\xe6\xd1\xa0\xfa\xbc\x3f\x62\xf8\x15\x51\x2b\x73\x96\x8f\xd9\xcb\x8e\x3d\xa2\x31\xdf\x6a\x27\xf3\x0c\x42\xc7\x81\x20\x5d\xda\x12\x2b\xa6\x41\x1b\xf0\x61\xd5\x06\x98\x28\x98\x3b\x77\x29\x13\xb4\x19\x0b\x50\x8e\x98\x31\xc0\x41\xe9\x9c\x92\x69\xf0\x13\x55\x23\xa3\xf1\xf8\xbc\xe1\x78\xc4\xf5\x2c\x02\x51\x1f\xb5\x69\x28\xbe\x8c\xb1\x28\xb3\xef\x4c\x4a\x08\xdd\xd3\x30\xed\xdc\x37\x11\x4c\x59\x89\x57\xb9\xd4\x85\x9b\xe1\xf5\x5e\xb6\x3d\x62\xcb\xb8\x19\xca\x74\x0f\xf5\x3b\x31\x08\x09\x55\x0d\x7c\xac\x23\xff\xea\x2e\xa8\xa3\xd3\x69\xee\x02\x24\xda\x6d\x22\xf3\x05\xd6\x9f\x1c\xf3\x6a\x2a\xb8\xb7\xa5\xcd\x64\xb2\x70\x57\x50\xbe\x7c\x56\x10\xa4\x4b\x05\xea\xe0\xf7\x1e\xb0\x99\x38\x69\x69\x30\x8a\x7d\x40\x12\xf7\x54\x29\x69\x1f\x10\xa2\x6c\x8b\xc3\xcf\x3e\x10\x52\xe5\xca\x6b\x5c\x45\xe5\x03\x63\xfd\xf6\xc0\xab\xa6\xf9\x24\x21\xda\xe6\xf8\xf4\x39\x4b\x8e\x73\x2c\x99\x1c\xd1\xf7\x4d\x9c\x4b\xda\x5d\xb5\x08\xc3\x9b\xbf\xe4\x84\x09\xe4\xe9\x25\xc0\x33\x8b\xb7\x77\x19\x0d\x47\x6f\x85\x05\xf5\xe8\x3d\xb5\x71\x45\x7a\x83\x89\x45\xa6\x2f\xbb\xa2\x37\x75\x35\x2f\xbe\xed\x3f\xf3\xb5\xe7\xc5\x0d\xef\x2c\x45\x14\x02\x5e\xd3\x26\x3a\xc3\x44\xe5\xbc\x84\xe5\x92\x1e\x98\x25\xfb\x16\xe3\xb2\x86\xed\x6a\x98\x45\xe3\x6e\x41\x05\xb4\xc3\x11\x79\xb3\x87\x4b\xbe\xce\x94\xcf\xf2\xa6\x69\x69\xa8\xce\x83\x47\xa0\x1a\xb1\xf7\x67\x03\xc5\xea\xe0\xe8\x28\xfb\xc1\xad\xaf\xbf\x44\x81\x2e\xe7\x8c\x0c\xf1\xc0\x90\xb3\x0d\xf6\x20\x41\x4c\x6f\xc2\xd3\x5d\x1c\x4a\x89\xe4\xc2\x00\x5d\xb2\x05\x0d\x30\xc0\x81\x12\x7b\x76\x20\x66\x87\xe3\xdb\x12\x6e\xc7\x62\xc8\x84\x7b\x56\xd9\xee\x19\x3e\x60\x32\x85\x19\xe2\x61\x4f\x05\x9a\x80\xb1\x39\x71\xc9\x61\x04\x27\x79\xe9\x95\xd6\xc8\xa3\x7a\x05\x98\x71\x79\x69\xbb\xeb\xef\x24\x4c\xf0\x74\x05\xef\xf3\x0d\xee\x94\x30\xd4\x0f\xf7\xd6\x31\xb3\x90\x2d\xc4\x59\xe5\xeb\x7e\x70\x84\x7a\xf1\x65\x8e\x82\x9f\xf7\x8d\x35\x0c\x37\xca\x8a\x1d\x6b\x20\xe1\x49\xa4\x30\xdc\x7f\xb0\x9b\xd9\x3f\xd3\x7f\x30\xc1\xd3\x9f\x8a\x56\xff\xe7\x7f\x9a\x65\xc0\x05\x63\xe5\xc5\x74\x30\xf2\x85\x15\x95\x83\x91\x80\x62\xc1\xd4\x43\x6f\x1a\xcc\x7c\xa8\xe4\x74\xe6\x60\x4f\x8b\x53\x6f\x39\xb3\x64\xd2\x56\xb4\xa1\xc4\xcc\xb3\xe0\x25\xdb\x66\x7f\x97\xb3\xc6\x13\xfc\x4a\xff\x17\x4b\x6e\x0e\x04\xef\x3d\x20\xc8\x06\x6b\xfc\x9d\x78\x9d\x69\xb0\x00\xb9\xee\x2a\xd6\xea\xdc\x59\x90\xbb\xd8\x9b\x27\xde\x2f\x7c\x14\x3e\xb9\x2f\x9b\xd7\x72\x75\x50\x2e\x32\x07\x1c\x94\xcd\x22\xbd\x33\x90\xf4\xe9\x15\x87\x16\x5f\xee\xd6\x24\xc0\x07\x0e\x5d\xc3\x02\xc3\x69\xb1\x7a\x54\xd4\x83\x43\x10\x23\x87\xe3\xce\xa1\xae\x80\x15\x39\xd7\x2e\x0d\x40\xd4\x72\x30\x58\xb9\x75\x34\x6c\x45\xf6\xdc\x0e\x9b\xee\xa1\x46\x4d\x88\xfd\xc3\xa3\x86\x03\x6c\x68\x1f\x60\x2d\x9a\xea\x85\x9c\xcf\xb8\x3e\x88\x9b\xf8\x44\x0f\x7c\x3c\x69\x73\x14\x57\x4b\xd2\x60\xd7\x13\x68\xb9\xcd\x30\x70\xf2\xf3\xda\x87\x40\x59\x58\x37\xe9\x12\x0e\x73\xe3\x5b\xbf\xe1\x72\x90\xe0\x0e\xec\x96\xa3\x9f\x67\x16\x1e\x62\x0c\xe6\x8c\x18\x3e\x26\x44\x8c\x14\xc6\x85\xd2\x01\x16\x84\x4e\x52\x1c\x8f\x84\x65\x70\x17\xca\x5d\x0f\x2a\xb0\x8d\xe3\x76\x45\x37\xd1\xbd\xc1\x34\x31\x4d\x48\xf4\x75\x10\x9e\x08\xe3\xd5\x75\x40\xc3\xb8\xc6\xc3\xd7\x72\x6e\xaa\x62\x47\x3c\x88\x3b\x73\x5f\xbd\x7f\x8e\xeb\x25\x3c\xc2\xe7\x6f\x6f\xdd\x83\x01\x61\x85\xbb\x27\x3d\x10\xd6\xe3\xda\x47\xab\x99\x1c\x11\x33\x1f\x77\x4a\xa2\x2b\x09\x51\x67\x52\x1f\x77\x22\xd4\x5b\x44\x29\x01\x7d\xc8\x4d\x3f\xa3\xd2\x1f\x46\x3b\xa9\x1e\x6b\xfc\xdc\x72\x9d\xd8\xd0\xd8\x22\x37\x09\x66\x13\x7a\x46\x7b\xb3\x04\xbe\x41\x21\x6c\xa2\x6c\xd4\xf3\xb6\x98\xba\xd1\x9b\x06\xec\xee\x35\x29\x73\x4e\xd6\x3f\xb1\xbe\x42\xb1\x96\x11\x67\x31\xfa\x11\x06\x80\x1b\x66\x76\xfa\x78\x2c\x20\x8c\x94\xaf\x8b\x90\x35\x59\x87\x41\x4e\x58\x0c\x18\xca\xf0\xbe\xbb\x67\x98\x83\xe0\x14\xe8\xda\x14\x3f\xda\x83\x28\x1b\x40\x14\x39\xe6\x8f\x60\x6b\x3f\xa2\x3c\x23\x7a\xf0\xfa\xc9\xfe\xfa\xfe\xbc\x97\xb1\x05\x97\x44\x42\x2d\x83\x79\xa5\x3e\x11\x63\x36\xdc\x70\x88\xe2\x80\x8d\x17\x6b\xd8\x15\x95\x50\x7e\xa0\x4a\xf4\x81\x3b\x4f\x97\x90\x1a\xc1\x7d\xa2\xf0\xa4\xb4\xdb\xdf\x57\x38\x97\x0a\x02\x8e\xec\xb6\x83\x49\x57\xd0\x90\x79\xff\xdc\x72\x60\x7e\x3e\xb1\xbe\x16\x7b\x88\x90\xc5\xb0\xd2\xbd\x94\xf2\x80\x9e\xbe\x4f\x9a\x9e\xae\xcc\xb4\x99\x07\x82\x2c\x8c\x57\xbf\x9d\x0b\xe3\xe5\x25\x9c\x0d\x3b\x18\xd6\xcd\xb3\x80\x2f\xe3\x1e\x9a\x31\xdc\x89\xaa\x26\x77\x04\x1f\xe2\xc7\x75\xcd\x0a\xb4\xfb\xbb\x17\x5f\x61\x4a\x27\xae\x2e\x05\x32\x3e\x47\xc3\x8c\xce\xbf\xf9\x4e\x30\x8f\x27\x3a\x07\xdf\x5b\x60\x70\x17\x37\xaa\x2b\xbe\x8b\x3b\xa6\x97\x41\xc3\x76\x21\x77\xac\xb4\x35\x6d\x78\x3e\x1b\x76\x6c\x62\x48\x93\xc5\x22\xb3\xbd\xc4\x96\x67\x7a\xf4\x57\x21\x56\x12\xf5\x3b\x54\x5d\xfd\x85\xc6\xe1\xf6\x38\xa0\xd9\x7b\x2e\xf0\x5a\xa7\xc4\x8a\xb5\x0f\x73\xc7\x93\x58\xd3\x1b\x76\x01\xde\xc4\xf7\x53\x22\x9f\xc7\x5e\x76\xea\x0c\x8a\xfd\x71\x16\x94\x40\xc0\x3b\x7f\xa9\x80\xcf\xa1\xe6\x23\xc4\x47\xf1\xef\xe2\x7b\x05\xea\x9d\x2a\x97\xa9\x21\x48\x86\x65\x67\x91\xf6\xc2\x62\x3c\x82\xa5\x69\x48\x65\x7d\xd9\x6d\x18\xc0\x4a\x73\x6f\x57\x4d\x20\x56\x3d\xdc\x00\x13\xde\xad\x68\xe4\x4a\xa4\xaa\x9f\x0f\x14\x77\x67\x68\x53\xed\x1d\x67\x2d\x9b\x1d\x21\x07\x86\x35\x28\xe9\xfa\x5c\xcc\xd9\xe5\x15\xce\x5d\x69\xd2\x48\x64\x59\xf2\x0e\x9f\xfe\x4a\xaa\x1e\xde\x1c\xe0\x57\x5b\x94\x7d\x2e\x16\x1c\x61\xa1\xaa\x35\x22\xfb\x6d\x69\x57\x5f\xeb\x42\xf7\xbb\x30\xfe\x86\xe9\xd4\x72\xfe\x9a\xe2\x29\x15\xbc\x07\xb5\x2d\x17\xd5\x35\x49\xb5\xef\x68\xae\x6a\x09\x70\x6e\xbe\x1f\xf7\xde\xf0\x72\x23\x81\x3f\x3a\x1f\xd3\x86\x9b\xb4\x64\x86\xeb\x43\x77\xc2\x11\x7a\x86\xa0\x53\x77\x4d\x0d\xc3\xf7\x99\x5e\xb1\x2b\xc8\xde\x5f\xf1\x26\x93\xaa\xbf\xf4\x97\xac\x83\x51\x1f\xc2\x88\xf8\xd2\xf4\x97\x72\x76\xad\x6a\x86\x27\x14\x5c\x5f\x38\x18\x63\x87\xcb\x97\xf8\xfd\x00\xb8\xa1\xe0\x52\x02\x27\xc3\xc5\x8d\x3d\xf0\x95\x2c\x5c\xad\xf6\x1e\x03\x44\x36\xc3\x51\x37\x36\x81\x4c\xb6\xe1\x87\x88\xae\xdd\x0e\xc7\x29\xb4\x2f\xe7\xa7\xd2\x1c\x29\x8d\xbb\x12\x6f\xe6\x6c\xf2\x3b\x09\xfa\xcf\xc7\x9c\x1d\xed\x9e\x75\xd1\xd9\x6b\x70\xfc\xac\xe4\xaa\xb9\x65\x0b\xaa\x5d\x96\x1a\x4d\xc9\xb8\x6f\xfe\x00\xd0\x4e\xfd\x26\x40\xba\x6d\x23\xf7\xed\x2e\xf4\x73\x0c\x24\xe7\x1a\x3c\xaa\x37\xf2\x35\x06\xd9\x6a\x94\x5a\x17\xaf\x76\x0c\x32\x6f\x0a\x9e\xb3\x97\xf4\x67\x6c\x66\x73\x4f\xd8\x99\xad\x0d\x6b\x79\xcb\x51\xdf\xc4\x89\x94\x33\x88\x3a\xcb\xf5\xb5\x84\xbc\x63\x05\x13\x07\x33\x72\x22\xcf\x17\x55\xe5\xe1\x0b\xbe\x58\x89\x0a\x14\x4f\x88\x0c\x80\x10\xd8\xe1\x71\xbb\x3e\x54\x13\x06\xcd\x19\xf6\x09\x6e\x48\xd6\xaf\xb7\xa2\x1c\x60\x36\x71\x0c\x25\x51\xd2\x0f\x58\xb9\x66\x4b\x97\xb9\x09\x9a\x61\x69\x2b\x11\xca\x39\x5c\x11\xf1\x00\x84\x91\x34\x10\xd1\xae\xe4\xc2\x46\x70\x67\xd4\xcb\xd4\x1c\xaf\x84\x11\x36\xee\x91\xde\xf1\x65\x04\xc9\xed\xde\x11\x84\x77\x62\x04\x90\x45\xd3\x18\xca\x48\x0a\xee\x0d\x8e\x6f\x22\xf6\x11\x30\xe0\xe8\x6d\x41\x74\x54\x23\x8f\x8b\x91\x85\x19\xab\xd9\x54\x02\xaf\x06\xc6\x15\xdb\x9d\x02\x66\xc8\x8f\x01\xd1\xfe\x2b\x26\x09\x52\x74\xf3\xb6\xb0\xe0\x9a\xca\x98\xf9\xc2\x22\x18\x70\x18\xe4\x29\x5f\x77\x8d\x55\x41\x1b\x09\x81\x7c\xe2\x5b\x0f\x34\xdf\xd0\x1d\xd4\xf8\xc5\x6a\x9c\x3f\x4e\x61\x5e\xbc\xdb\x32\x7b\x16\x5e\x6f\xed\x60\xc8\x4f\xff\xfd\xf2\xec\xfd\x41\xfa\xf9\xf0\xf6\xf6\xf6\x90\x8b\x1f\xee\xda\x35\xc7\x4f\x29\x38\x78\xe7\xff\x3c\x7d\x77\x90\x96\xfd\xe2\xd9\x2c\x3d\x15\xae\xed\x99\xa1\xfa\x10\xc0\x3f\x08\x07\xf2\xc4\x20\xfe\x38\x37\xd7\x15\xa3\xd6\xcc\x30\xca\x73\x28\xdc\xf1\xec\x99\x6f\xb7\x4e\xa6\xf8\x78\x07\x82\xc2\xa2\x2d\xe1\x1a\x8d\x8f\x20\x83\xa4\x86\x4f\x53\x61\xdf\x86\x20\x15\xb5\xa3\xdd\x78\xbb\xd0\xf7\xcf\x06\x20\xe6\xfb\x77\x0c\xaf\x3f\x6f\x68\xe5\x89\x73\xbb\x30\x5b\x4e\x89\x4b\xf1\xc1\x56\xb4\xc1\xcc\x4b\x9b\x88\xb2\xf8\x69\x58\x18\x97\xa0\xf0\xe4\xd0\xf3\xf4\xdf\xf9\x4c\x97\x27\x4a\x68\x8b\xb3\x8c\xb6\x00\x3c\x1b\x16\x46\x30\xf9\x40\xfb\xa1\x01\x48\x88\x7c\xd3\xbe\x7c\x9e\xd3\xc0\x46\x95\xa8\x31\x8c\x7d\xaa\x89\x09\x3b\xe3\x18\x68\x4d\xaa\x1b\x17\x89\x4f\xd4\xa7\xb3\x0d\x2f\x72\xff\xe9\x40\x6f\x46\xd9\x71\xf3\x14\x1e\x52\xb9\x01\x36\x89\xa2\x80\x3f\x02\x54\x4d\x58\x63\xe5\x57\x18\x53\xaa\x2f\x36\x94\xc3\x8c\xe0\x9d\xb9\xb2\x47\x88\xb2\xa9\xb5\x28\xb6\x1e\x37\x6b\x7e\xf5\x18\x7f\xd3\xdd\x47\x04\x39\x09\xef\x10\x71\x0f\xb0\x8e\x58\x5f\x98\xde\x0c\x67\x23\xde\xe4\x25\x3f\xe5\x4d\x23\xe9\x46\x01\x07\x6d\x8c\x84\x0a\xd5\xec\xc6\xca\x88\x6f\x61\x9f\xfc\x24\x1e\xfc\xb6\xaf\x5b\xe4\x52\xc4\xc8\x39\x71\x69\xb1\x34\x6a\xab\x14\x7c\x37\x5e\xa2\x8c\x10\x59\x47\x21\x47\x65\xb9\x36\xf6\xf0\x65\x10\x04\x76\xe2\x1b\xd9\x76\xf9\x73\x14\xd6\x2a\xdc\xe9\xa5\x56\x0b\x52\x22\xc1\x54\x06\x99\xc3\x07\x1f\x87\x2b\x9b\x44\x5b\x79\x11\xf8\x58\xbe\x42\x6c\x6d\xd7\xcd\x9d\x45\xfe\x3a\xc1\x2f\x0d\x38\x1a\x8e\xcc\x83\xe9\xa0\x3c\xe4\x54\x5d\x5e\x14\x05\x14\x6a\x87\x46\xc6\x26\xec\x43\x79\x94\x0d\x53\xca\x36\x61\xaa\xd3\x2e\xe7\x22\x9a\x27\x6c\xf3\x71\x98\x14\x79\xee\x4b\x03\x68\x05\xa8\xc1\xf5\xcf\x70\x00\x7f\x09\x1e\xda\x50\x1d\xa4\x66\x33\x8a\xeb\x46\xa8\xf5\x47\xde\x30\x53\xa3\x18\x47\xac\x72\x50\xc3\xc8\x5a\x7e\xa4\x7b\x23\x6b\x85\x45\xc3\xf0\x5a\x41\x51\xec\x9b\x0e\x09\x93\xc7\xbf\xd1\xb4\x8c\x83\x67\xf9\xa1\x7e\x41\xfc\xac\xe9\x99\x1b\x2a\x1e\x0f\x4e\xf5\x7d\xde\x1f\x45\x38\xb8\x2f\x88\xa4\x35\x50\xcd\xbf\x44\x07\x99\xea\x8b\x47\x4a\x80\xdd\x87\x7c\x41\x8a\xea\xfa\x7a\x36\x6f\x49\x04\xe7\x70\x55\x78\x63\x91\x39\x3b\xff\x4e\x2f\xf1\x5b\x40\xd8\x07\x18\x54\x21\x1f\x92\xa8\x37\x18\x9e\xab\x1f\xab\x24\xc2\x01\x73\xf8\xb4\xdb\x09\xe5\x88\x33\xe6\xfb\x06\x71\x47\x25\x67\x26\x45\xf0\x7e\x16\x7f\x21\xd0\x96\x7b\x3f\x0b\x85\x2e\x39\x25\x00\xeb\xb6\x6b\x92\x5e\xf5\x1d\xc1\x4b\xfe\x81\x9b\xac\x01\xc4\xae\x26\x3d\xb6\x2c\x0c\xe6\x83\xfc\x0c\xa1\xb8\x4a\x9b\x3a\xdb\x51\x71\x09\x47\xdc\x5e\x45\xf4\xf6\xa6\x4d\x50\xa8\xc1\x11\x18\x91\x55\x05\xd9\xda\x83\x84\x81\x79\x08\xc2\xe6\xc4\x43\x28\xa2\xc1\xb0\x5e\xbe\x7d\x2f\x3f\x71\x1b\x57\x23\xe4\xe2\x3a\x2e\x7b\xdf\x4a\x96\xc6\xc5\xdd\x6e\x11\x56\x53\x6e\xc3\x12\x1c\xe7\xa5\x41\xb2\xf9\x29\x4a\x34\x40\x77\x21\x57\xea\xe0\x8b\xbb\x1b\xe2\x05\xce\xb9\xf7\x92\x0d\x97\xfa\x84\x66\x69\x6f\x19\xf0\xa5\x5d\xef\xef\x48\x35\x70\x11\x85\x32\x84\x98\x8e\xcf\xd5\x26\x76\x07\x79\x36\x75\x17\xd9\xf2\xe4\x0a\xb9\xd8\x9a\xed\x05\x79\xfc\x72\x10\x45\x9b\x5f\xc3\x19\x8e\xff\xba\x54\x1a\x98\x2f\x76\xde\x96\x87\xc3\x62\x34\x79\x42\x52\x97\xf8\x70\xe9\xea\xcc\xc6\x7f\x5c\x5a\xbe\x12\x47\x0a\x3f\x33\x7e\xc6\xcc\x19\x9a\xd6\xd7\xe3\x2e\xed\x2a\x36\xa6\xeb\x42\x1c\x34\x88\x55\xe0\xdf\xdb\xc1\x1a\xc1\xa5\xf2\x70\xac\xa1\x97\x1c\x62\x07\x76\xab\xd4\xe1\x87\xe3\x2e\xf4\x12\x17\x4c\x9f\x37\x9d\x45\xfd\x8e\x4a\x8b\xf8\x52\x1a\x35\xe2\x8d\x5c\x96\xd0\x11\x55\x47\xc2\xb9\xb2\xf3\x47\x4b\x88\xe0\x28\xd3\x2c\xcd\xb9\x45\x5e\x6d\xa8\xfe\x1b\x79\x22\x4c\xaa\x27\xc9\xcc\xc5\x2d\x23\x21\xad\x96\xd0\x49\x96\x07\xeb\x8e\xc5\x49\x8f\xca\xf8\x07\x81\xec\x48\xd5\x5f\xde\xa7\x7c\x48\x7d\x8b\x30\x26\x00\x8b\x80\x1c\xc7\x51\xc6\x1e\x74\x20\xda\x71\x2c\x75\xbc\xcb\x58\x4e\xec\x20\x13\x90\x85\x2e\xe7\x73\xf9\x72\x39\xac\x5d\x88\x88\xfc\x4e\xbe\xd8\x76\x38\xa6\xa6\x71\x64\x3d\xca\x3b\x1c\xce\x75\x00\xef\x10\xf0\x6b\xf9\x84\x4f\x28\x1a\x92\x5d\x52\x71\xf8\xca\xfb\x88\x52\xcc\xdc\xe8\x5f\xae\x3d\xc4\xf6\xe5\xbb\x31\x74\x73\x74\xcd\x29\xa1\x78\x92\x19\x51\x3b\x3b\x90\xd9\x4a\x81\x07\x59\xbc\x5c\x40\x3d\x7e\xc1\xc0\x95\x73\xb4\xd0\x44\x38\xf4\x50\xf1\x31\xd3\x04\xb0\x6c\x85\x9a\xe5\xcd\xd3\x43\x98\xe9\xdd\xcf\xda\x19\xba\x8c\x21\x50\x32\x5b\x62\xdc\x89\x0d\x91\xcc\x3d\x7b\xdd\xa8\xb5\xf0\xd8\x43\x9a\x78\x60\x73\x1b\xae\x81\xd8\x01\x2d\xa8\x47\x45\x10\xe6\xa0\xba\x46\x46\x22\xc8\xa8\x2e\x75\xd8\x0d\xd6\x95\xd1\x81\x7b\x61\x4b\xfb\xaf\xef\x93\x62\x63\xb6\xef\x24\xf9\xad\x69\x97\x1f\xfd\x63\x2e\xce\x0a\x1e\x19\xb2\x61\x0b\x61\x18\x17\x8c\x7d\x0f\xa0\x0f\xd0\xee\x6b\x34\x02\x7e\xcd\xcb\x74\xfc\x38\xbc\x58\xa2\xe4\x01\x2f\x38\x62\x5a\x20\xb4\x99\x85\x01\x91\x77\x24\xd4\x43\x32\x6c\x4e\xa2\x73\x78\xbf\xbb\x0f\x7a\x1d\x58\xbd\xa3\x38\x82\x04\x7f\xf0\x53\x1f\x15\x1f\x5c\xd1\xb6\x23\xce\x20\x6f\x91\x80\x7d\x88\xfd\x41\xf8\x95\x11\xb1\x29\xd2\xdf\x04\x4f\x21\xa8\xe1\x9d\x53\xf5\x4b\xd3\x07\xcf\x2d\x44\xcf\x23\x04\x61\x4b\xf0\x70\x49\xe4\xd6\xc9\x95\x03\x2b\x13\x0e\xdf\xee\x2d\x1c\xed\x84\xa0\x10\xa9\xf7\x41\x47\x51\xc6\x98\x3b\xc8\x55\x01\x9e\xff\x5c\x9c\x67\xf5\x0e\xb8\x12\x15\x1e\x53\xa9\xa3\xdb\x91\xdd\xcc\x37\x13\xf0\x9a\x95\x78\x83\xfb\x62\x78\x68\x9a\x1d\x4d\x7f\x12\xf8\x28\xd4\x8f\x9a\x27\x72\x89\x12\x28\xc9\xe9\x9a\x34\xdd\x75\x64\xaf\x40\x45\xac\x21\xfc\xb4\xe7\x39\x88\xf1\xe3\x41\x5f\x1f\xe8\x69\x5c\xc7\xfd\xa1\x9e\xfe\xa8\x6b\xe6\xf4\xb3\x04\xa1\x51\x76\xf0\x3e\x81\xcb\x9a\x7a\xa8\xe0\x8f\x78\x2c\xc6\xa0\x01\x5b\x8a\x50\xe0\x6a\xfa\xd2\x03\x59\x75\x84\x24\x4a\xfd\xd7\xfc\x20\xe3\xe7\x76\x86\xbd\x1e\x05\xea\x8f\x3a\xfd\x75\x01\xfb\xf7\x3a\x30\x44\xbc\x62\x68\xa4\x18\x45\xc9\xc4\x00\xef\x2d\x12\xc7\xcc\x0c\x3b\xec\xcc\xd2\x81\x03\x81\x9e\x39\x4a\xb4\x4c\x39\x9a\x7a\x38\x64\xe6\x9e\x83\xe7\xfb\x62\x67\x0e\x7b\xc9\x3c\xc6\x45\x02\x08\x3b\x79\x6f\x89\x50\x2e\x69\x06\x87\x98\x7f\x3c\x9e\xe6\xf4\x79\x22\x1b\x31\x6e\xcd\x76\x0b\x39\xc6\xf0\xe7\x2d\x62\xac\x90\x1a\xbe\x44\x63\xf5\x8c\xd6\x63\x0e\x12\xa8\x20\x77\xf0\xbc\x93\x72\xed\x99\x7f\x1d\x28\x8b\x62\x68\x9e\xfa\xf7\x87\x7c\x38\xcd\x1f\x5c\x31\x75\x2d\xb4\x00\xdc\x83\x74\xcf\x29\x71\x6d\x60\x2b\x01\x2d\x3d\x90\xfc\x86\x94\x38\x99\x33\x2c\x1f\xb7\xa1\x8f\xea\xb6\xcd\xba\x74\x1d\x4d\x2f\x1a\x76\x0e\x35\x90\xf8\x12\x7d\x5c\xd0\x95\x71\xe9\xaa\xf8\x5b\x64\x43\x97\x2e\xcf\x29\x21\xd8\x45\x90\xaa\xbb\x65\x30\x57\x22\x59\x6b\xed\x50\x54\x7e\x18\x42\xcb\x23\xbd\xba\xaf\xbe\xe7\x07\x7f\xb0\xa9\xce\x70\x27\x5f\x9e\x2b\xd2\x94\xb8\x51\x49\x63\x19\x47\xc3\x38\xa7\xe2\x6f\xae\x81\x7e\xc7\xf9\x83\x88\x7a\xd8\x53\x5c\x2c\x3d\x7b\xaf\x8b\x45\x74\x8d\x05\x51\xcb\xa1\x6b\x1c\x62\x4e\x6a\x85\x88\xef\x9b\x95\x4b\x15\x51\xbb\x21\xc4\x97\x34\x0c\x87\xf9\x61\x73\x07\x66\xc2\x85\x65\x4d\x6d\xcb\x12\xfe\x5e\x5a\x91\x67\xd0\x5d\x3f\xdc\x43\xfb\xbe\x1f\x21\xc4\x97\xf4\x83\x5b\xc1\xe5\x64\x51\xf9\xee\xe9\x4f\x5e\xd8\xfb\x16\x91\x43\xd2\xb0\x8b\x3e\xd6\xdb\x55\xb0\x93\xc3\xa9\xab\x18\x48\x26\x7c\x62\x32\xde\x52\x25\x47\x7c\x70\x26\x84\x07\x71\xb0\x9c\x8c\x80\xfd\x30\x13\xc0\x2d\x70\x2e\xe9\x40\x03\xd7\x49\x0f\x36\xb9\x2f\x49\xbf\xbc\xb0\x07\xe9\x4b\x79\x83\x66\x3e\xbc\x25\x0b\x9c\xc5\x7e\x16\xc9\x2f\xdc\x54\x20\xfa\xd9\x4c\x16\x80\xf0\x8e\x1d\xbc\xc0\x82\x56\xc7\x95\x39\x66\x0e\x28\xc7\xc4\xc7\x70\xb6\x62\x43\xb9\x2d\x38\x4f\x60\xb6\x7d\x60\xd2\xac\x73\x64\x03\x14\x1f\x8d\x87\x8e\xa3\x1c\xb3\xbb\xd9\x0c\x1e\x8d\xdf\xaf\x22\x8d\xbb\xe2\xf7\x75\x79\x11\xd0\x11\xcc\x5e\x35\x69\x16\x2e\xf5\x31\x81\x78\xb2\x5b\xb6\xb8\x20\x6f\x73\xcd\xcc\x22\x20\x05\x54\xf8\x83\x1b\x25\x1b\x2c\x06\xdc\x00\xfe\x24\x54\xd1\x93\xfb\x98\xc2\x57\x74\x00\x6c\xe3\xfe\x1e\x80\x2d\x48\xb4\x15\xea\x46\xc0\x02\xee\xeb\x88\xac\xf9\xaf\xe8\x08\xf8\xc6\x17\x76\xe4\xc0\x7a\xa1\x6f\x7d\x15\xc5\xe4\xfa\xbf\xaf\x7f\x03\x45\x08\xc4\x19\x3d\x3e\x67\xcc\x00\x7e\x56\xd0\xd4\x26\xfd\xac\x02\x83\xf3\x6c\x36\x5c\x25\x81\xa3\x58\xb0\x52\x02\x9f\x54\xeb\x0b\x5c\xc2\xd4\x77\x5f\x77\x39\x5f\x55\x4d\xf3\x8e\x17\x32\xea\x3e\xf4\xef\x8f\xa3\x72\xb2\x9b\x72\xdf\xde\xa9\xa4\xc3\x18\x89\x83\x8a\xfa\x08\x8f\xa2\xd3\xc1\x35\x42\x5e\xfe\xfb\x0d\x73\xf5\x31\xe1\x57\x74\xf1\x68\x32\xaf\x7f\xfb\x4e\xc4\x56\x26\xc7\xc3\x78\x16\xce\xbf\x07\x97\x0e\xdf\x87\xbb\xf7\x31\xbf\xf8\xb9\xc7\xe1\xfb\x8f\x9d\x84\x5b\x5f\x9a\x88\xb8\xdc\xe9\x35\x31\x75\x25\x65\x8c\xdf\x11\x0e\x36\x6c\xfa\xe6\x84\x64\xd3\xd4\x95\x78\xad\x9d\xca\x57\xc5\x8f\xf9\x85\x77\x1d\x5f\xf1\x0f\x79\xe6\x42\x53\xf8\x6a\x5b\xd2\x37\x3d\xa2\x19\x5f\xf1\xdf\x1f\xd2\xc7\x45\xe2\x87\x0e\xab\x36\x1b\xe8\x16\x62\x1b\x95\xef\x20\x3f\x78\x49\x0e\x37\xb5\x5b\x7b\x1a\xcf\xd7\x80\x6e\xc2\x06\xbf\x0b\xba\xad\x9d\x44\xa5\xbb\x6e\xaa\x45\xbb\xc0\x08\x5f\x0a\xb6\xff\xcf\xcd\x3a\xc3\x6f\xc2\x17\xfc\x26\xbc\x58\x2e\x0f\x82\x84\x68\x42\xc2\x8c\xad\x7b\x7a\x25\x4a\x8e\xb7\x52\x9f\x2e\x31\x95\xa3\x24\x0e\x9d\x1a\x25\xe4\x8b\x51\x2b\x76\x02\x13\xa6\x99\xf3\xb0\x4f\x31\x37\xe2\xa8\xf6\xf8\xfd\x8d\x30\x4b\xfc\xe5\xa3\x24\xb9\x9b\x31\x18\x89\xd8\x85\xc3\xb4\x75\xb3\xe4\xd7\x8e\x61\x5d\x8e\x87\xa7\xf2\x7a\x5c\xa7\x5d\x04\x8e\xaa\x40\x6c\xa2\x30\x05\x87\xc1\x7d\xde\xc5\xa5\xb1\x3e\xc3\x04\xbd\xbd\x3a\x02\x24\xfd\x3d\x5f\xac\x34\x2c\xc5\x04\x21\x99\x1a\xee\x88\x49\x74\xf1\x29\xc8\xee\xb6\x92\x58\xb7\x97\xf8\x98\x84\x69\x77\xb0\x3a\xee\xea\x20\x97\x2f\xd7\x73\x20\x07\x3c\x51\xd2\x68\x64\x68\xbe\x69\xef\x9e\x23\x49\xcf\xb0\x1c\xbb\x7b\x0b\x05\xfb\x22\x7b\x73\xeb\x13\x28\x5a\x32\xf0\xd3\x9f\xde\x20\x7d\xcd\xba\xd5\xaa\x97\x54\xf0\xe6\x7c\xe7\x25\x8f\x1c\x41\x3f\xd4\x5b\xc1\xb2\xbf\xa8\x8e\x41\x2f\x3d\x84\x7f\x19\xff\xab\xbb\x0a\xfe\xcf\xfc\x9e\x7a\x33\xe8\x64\xc4\xf3\x0c\xe4\x81\x1a\x06\x5d\x9c\xac\xe2\xeb\x3b\x89\x9d\xb6\x5e\xca\xae\xb3\xa7\x93\x77\x78\xc3\xa6\x2d\x54\x71\x5d\xb3\x4b\xea\x6b\x73\x93\x7b\xa0\xca\x7d\xbd\xbe\xb7\xce\xaf\x18\xc6\xb2\xea\xb3\xe5\xc2\x77\x9f\xdf\xef\x6a\xe7\xcc\xb8\x79\x73\x2f\x17\x12\x50\xa6\x8e\x8d\x96\xd3\xc5\xef\x43\x30\x3a\xc4\xe6\x8a\xa9\xea\xf7\xf5\xad\x2d\xbb\xbb\x7a\xc1\x86\x3a\x7e\xee\x4c\x5d\x06\x2e\x4a\x39\x66\x79\x32\xa3\xb4\x6f\x73\x0d\xb2\x5e\xe2\x70\xbd\x7b\x22\x01\x7e\x9f\x2e\x72\xdc\xec\xfb\x81\xb6\xe2\xfa\x10\xac\x1d\xa5\x4d\xb2\x65\x6c\x3d\xbb\xb7\xa1\xc1\x58\x02\xbe\x1e\xe0\xb6\x45\x57\xfa\xf2\x8b\x46\x10\x38\xc8\x84\xc3\x60\x42\x51\x26\x06\x96\x37\x78\x4b\x38\x7d\xca\xce\x4e\xfc\x22\x1b\x7b\x72\xa9\x87\xa4\x6e\xda\x08\x6f\xee\x0c\x6c\xc5\x9e\x01\x85\xed\xde\x33\x43\x4f\xa2\x5e\x7c\xdd\x18\xf9\xa1\x86\xd1\x42\xb8\x40\xb2\x3e\xdc\xf0\x87\x96\xc3\x54\xc5\xff\xea\x72\x68\x83\x5e\x8d\x1e\xf1\x0c\xc4\x03\x84\xaa\x27\xdc\xf5\x15\xb6\x89\x4b\x09\x5d\xff\x01\xbf\x43\x76\xad\xaf\x94\x2e\x9b\xb6\x21\x8a\x93\x58\xc2\xfa\xda\xe6\x6b\x4b\xeb\x26\x0a\xe0\xc4\xe2\x2e\xdb\x69\x70\x06\x2b\x73\x8a\x64\x12\xfb\x38\xb2\x81\x2f\x05\xe1\xc9\xca\xb0\x1d\x7a\xa1\xa7\x17\x90\xa6\xac\xd4\x91\x65\x04\x25\xb5\x4c\x33\xe7\xeb\x52\x1a\xb4\x0a\xc0\x67\x9a\x12\xc0\xe2\x9c\x90\x03\xf4\x12\x05\xec\xb6\x19\x0f\x15\x31\x0b\x24\x39\x7d\x87\xe4\xf4\x8a\x93\xc7\x2d\x58\xaf\x5c\xb1\x41\xa7\xf6\x95\xe3\x30\x8d\xc3\x32\xaf\x38\x9a\xe3\x10\xde\x30\xb7\x2a\xf3\xed\x08\x6f\x6f\x28\x71\x84\x35\x40\x8e\x11\x00\xd8\xfd\x58\x08\x4b\x55\x05\x94\xe8\xb0\xc4\xdb\x62\xbd\xaf\x8d\x0a\xde\x45\x43\xf8\x9a\x85\xf8\x3d\x25\x54\x9a\x1a\xf6\x4a\xcf\xf6\x46\xbd\x6a\xe6\x1c\x83\xa4\x33\xe8\x33\xf9\x19\x40\xcd\x9b\xa6\x27\x5d\x8e\x40\x49\x8c\x84\xa3\xa9\xa0\xe9\xa5\xa5\xb3\x20\xbc\xf8\x34\xc2\x94\x40\x8f\x51\x25\xd0\xfb\x71\xb5\xe1\x77\x26\xa8\xad\x76\xb7\xe8\x77\xc4\x73\x5c\x83\xa7\x97\xfc\x3e\xc5\xa5\xcb\x18\xb5\x38\x2a\x19\x52\xe8\xb0\xf0\x54\xcb\x0b\x7e\x25\x64\xb2\xe9\x63\xce\xb9\xb7\xed\x51\xd9\xb0\xf1\x51\xf1\xa9\x95\x82\x57\x9e\x99\x29\xcd\x77\x8b\x4f\x65\xcf\x57\xc1\x57\x19\x9c\x3a\xc2\xba\xce\x0d\x2c\x7d\x09\xb0\xf4\x0d\x81\xa5\x57\xb0\xb8\x4d\xd4\x4a\xfb\xe8\xa6\xec\x73\x38\x21\x05\xb5\xbc\x3e\xa6\x19\x90\xe4\xa9\x52\xb0\xc4\x65\xaa\xff\xe8\x2a\x64\x91\x34\xa8\xe1\x0c\xc6\x3a\x55\x89\x8e\x1c\xc8\x54\x6d\x1c\x26\x58\x36\xf4\xc5\xdd\x62\x2d\xfe\x2f\x9f\x7b\xee\xc3\x85\xa4\x04\xb0\xd0\xf1\x08\xd6\x78\x24\xfc\x50\x10\xc7\x84\xc0\xaf\x62\x46\x29\x1c\xcc\x03\x0b\xe3\x22\xb8\x73\xf6\xdd\x99\x02\xdc\xe6\xb2\x98\xf6\x42\x5a\xf3\x06\x68\x2d\x0f\xe1\xb4\xd1\x4e\x50\x29\x6c\x45\x14\x6c\xb9\x35\xa5\x2f\x02\x12\xcd\xc1\xcf\x01\x97\xa6\xec\x3d\x40\x4e\x53\x58\x3c\x6e\xed\x4f\x54\xfc\x21\xad\x7b\x8f\x5d\xc0\x44\xaf\x80\x36\x21\x29\x26\x09\xf3\x4c\x1c\xd9\xb7\xe5\x45\x71\x57\x24\xcd\x6f\xa0\xf4\x57\xd3\x2c\x1e\x96\x8b\xe1\xad\xe9\x70\xb6\x6e\xcb\x25\x1b\x2a\xe4\x1a\x36\xe2\x4e\xe1\x3e\xcd\x05\x92\x4d\xbb\x09\x6f\x48\x5d\x35\x18\x65\x30\xb0\xd8\x29\xd1\x86\xf9\x70\x4c\xae\x99\xd6\x11\x46\x87\xd5\x91\x41\x75\x31\xaf\xbc\xd8\xec\x60\xde\x79\x02\x29\xcf\xb2\xc8\xc1\xe6\x3a\x2c\x0d\xbd\xd2\x14\xb5\x41\x0d\xef\xa0\x73\x06\x58\x76\xcf\x4a\x3b\x53\x37\x0e\x0b\xd8\xe4\x22\xd7\x3a\x60\x6a\x87\xdb\xed\xae\xb6\x67\xab\x8d\x0c\xf6\x3d\xe9\x6e\x6f\xc9\x7d\xe1\xab\xee\x1e\x17\x01\xa5\xc0\xaf\x25\xa6\x91\x4d\xfe\x59\xdf\x28\xf1\x8f\x20\x9d\xea\x73\x47\xc1\xed\xd3\x63\xcb\x7d\xc7\x2f\x1f\xed\x2b\x6b\x36\xbe\xa7\x97\xc4\x60\x0e\xbf\xc3\xab\x7f\xb4\x1e\x96\xeb\x66\x9e\xb3\x13\x8b\xbc\x67\x85\xc7\x93\x9e\x69\x1d\x55\x97\x85\x44\x39\x7c\x0a\x2f\x1f\x10\x29\x8d\x7e\x55\xcd\x69\x50\xa2\xe8\x8f\x0b\x18\x80\x5c\xa3\x02\x54\xd0\x92\x92\x78\x54\x08\x41\x31\x38\x43\x28\xb4\x69\x03\x2f\x00\xa3\x79\x9c\xb7\xf3\xad\x98\x4c\x1d\xc3\x47\x35\x04\x65\x60\x5c\x96\x35\xc9\x62\x9f\x04\x0e\x0a\xeb\x91\xc7\x83\x32\x23\xb6\x87\xea\xda\xfb\xd6\xd0\x24\xc9\x78\xfb\xbe\x51\x8c\xb0\x7e\x23\xce\x7b\x8f\x8f\x63\xda\x40\xe4\x4d\xbe\xd8\xec\xad\x8e\x41\x4f\x25\x2e\x27\xf7\xd7\x5f\x4d\x6e\x58\x32\x65\x99\x17\xe1\xe7\x59\xc5\x0a\x2f\x9a\xbb\xd8\x10\x16\x20\xb4\xc4\xa5\x07\x1f\x79\x82\xb6\x04\xb5\x49\x86\x1d\xe0\xd8\x26\xe2\x43\xb3\xa7\x7d\x7f\x46\x8a\x58\x70\x61\xf3\xa1\x75\x2c\xee\x80\x9c\xe3\x35\x6d\xe8\x5b\x15\x1b\x37\xa3\xae\x4c\xb8\x4f\x1d\x0d\x5f\x76\xdd\xe3\x1b\x4c\xb5\xca\xed\xdb\x01\x77\x8f\x0e\xb7\x23\x2e\x8f\x12\x21\xf7\x46\x42\xec\xe6\x83\x24\x7f\xf0\x63\x67\x3e\x62\x82\x05\xe3\x1e\xb6\x17\x2c\xe7\xa8\x35\x29\x31\x7e\x32\x32\xee\x82\xa4\x8c\x8f\x86\x25\x5d\xad\x87\xa9\x3d\xc8\xa6\xa6\xe0\x19\x4c\x88\x22\xbd\xb5\x96\x36\x7c\xdb\x07\x96\x61\xe5\xb3\x83\x2e\x0f\x38\x6d\xd4\x6d\x29\x25\x31\x3d\xed\xa2\xba\x32\x73\xcd\x0a\x7a\x2f\x29\xe1\x23\x18\x92\x52\xd6\xf6\xe0\xbf\xc4\xea\x29\x34\x7d\xec\x94\x15\x74\x52\xab\x19\x74\x2e\xa8\x15\x50\xd3\x9b\x45\xd0\x9b\xae\x24\x3d\x82\x1f\x5b\xa4\x95\xdb\x37\x8b\x46\xde\xdd\x97\x34\x5e\xb4\x48\x53\xd8\xe1\x2d\x0d\x49\xc5\x85\x62\xbe\x52\xd2\xf5\x9a\xb2\x95\x67\x30\xce\xf9\x19\x0c\x49\x81\xf5\xae\x80\xbf\x34\x1b\xeb\x4e\xde\x87\xe9\xb6\x53\x59\xee\xb9\xfe\x9e\x82\x09\xdc\xab\xf2\x96\x5f\xe1\xf8\x41\x23\xdf\x5a\x1d\x88\xd5\xdb\xb4\xe2\xe7\xbc\x5d\x73\x7f\xf9\x39\x38\x1c\xbc\xf1\x31\xc4\x0e\x51\x2f\xf9\xa9\x75\x78\x1c\x10\x4b\x5a\x8a\x0b\xbf\x3c\x0e\xac\x88\x67\x31\x48\x03\x7a\x43\xfc\xd1\x63\x96\x97\xec\x5d\x19\x80\x60\x44\x00\x70\x23\xca\x7b\x09\xa3\x54\x4e\x5d\x6a\x4b\x5d\xee\x5e\xe8\xe1\x6b\x35\x60\x10\x6e\xc3\xe6\xde\x73\xec\xfe\xc3\x0a\x61\x3a\x99\x53\x95\xeb\x42\x6f\x68\x46\xe1\xa2\x66\xa3\x16\xcc\xcf\x0a\xf1\x16\x1f\xe8\x4d\xb7\xb3\xae\x5f\xee\x1e\xea\x39\x5e\xe9\x27\xd2\x95\xd7\xfa\xf7\x81\x75\xac\x0d\xea\x63\xd5\xaf\x4a\xb6\x1f\xfb\x2c\x9e\x2a\xa5\x0b\xb9\x7c\xf2\xd9\xe8\x46\x62\x3f\x1a\x92\x25\xf6\xa3\xd5\x8c\xa3\x3d\x07\x20\x07\xfe\x11\xc4\x86\xf7\xda\xac\xcb\x99\x31\xd1\xae\x52\xa4\x97\x47\x46\xf4\x9b\x7e\x6b\x4f\x13\x5e\x9e\x5e\x9d\xdf\xb3\x8a\x18\x54\x29\x1c\x90\x01\x99\x73\x96\x92\x3a\xb2\x02\x7a\xb7\xf0\x06\xb2\x62\xd4\x38\x03\xe7\x3a\x59\x3a\xdd\x34\xdc\x7d\xb2\x9a\xbc\xfc\x4d\xd2\x01\x87\xa6\xc6\xa5\x20\x29\x33\x4b\x4f\x49\x9e\xa9\xd8\x57\xd3\x5a\x53\x7f\x41\x7e\xc5\xab\xdc\xe6\xad\x3d\x71\x83\x37\xd9\xd2\x27\x07\x4f\x66\x11\xdf\xc9\x7a\xbc\x5e\xa5\x61\xc2\xae\xde\x5d\xd2\xe7\xa2\xbd\x13\x67\x04\x1d\xe9\xa7\x6a\xcb\x60\x19\xdf\x29\x13\x81\x9a\x52\x00\xfb\x0b\x52\x6c\xe1\xf3\xa9\x75\xd9\xde\x70\xb8\x49\xa5\x9f\xf3\xa3\x53\x18\x8b\x28\x29\x64\x3b\xda\x34\x62\x4b\x9b\xb8\xee\x3b\x41\xd3\xd1\x44\xe2\xba\xb1\xce\x6a\x8b\xbd\x87\xfe\x58\x3d\x41\xd8\xdb\xa1\x4c\x2d\x9e\x05\x86\xe9\x91\x7c\x17\x43\x47\x62\x9e\xe3\xea\x43\x3d\x20\x2e\xf3\xd0\x05\xa5\x59\xc4\xc7\xc3\x4d\x3b\xae\xe7\x0b\x5d\xf4\xc2\xca\x02\x01\xeb\xbe\x51\x4f\x46\x23\x8a\x4b\x44\x90\x99\x6c\x2d\xf6\x72\x74\x5c\xb5\xf3\x9a\x18\x97\x88\xde\x90\x1e\x21\x76\xc2\xf5\xed\x1e\x77\x37\x25\x39\x48\x5d\x95\xbb\x9f\xb6\xa7\x6a\x91\xbf\x00\x43\x14\x0e\x7f\x0b\x3d\x9c\xd4\x83\x66\x2f\xe2\xf9\x80\x6b\xfc\x22\x81\x1c\x28\x07\x71\xc5\x44\x96\xc7\xae\xaa\x32\x57\x30\xcc\x81\xcc\x15\x77\xe3\x21\xd1\x4b\xac\xd3\x66\x42\x75\x07\xcc\x6a\x42\x8d\xcf\x99\x15\x36\xdf\x6e\xdd\xd6\x1d\xbc\x52\x8e\x05\x14\x80\xdc\x08\xeb\x0b\x20\x7e\xd1\x00\x6f\x01\x90\x5c\x9a\x0e\x81\xf8\xee\xb4\x02\x0c\xb7\x74\x4d\x6e\xae\xaf\xf9\xe5\x46\x7e\xae\x44\x23\x83\xf2\x4f\x0e\xdf\xec\xda\xd7\x50\x00\x19\xdb\x74\x61\x23\xe5\x31\x9d\x68\x7c\x80\x0b\x24\xb2\x52\x6a\xe0\xed\x0e\x53\xc9\xfd\xbd\xd8\xd5\xa2\x6e\x07\x59\xda\x10\x67\x85\x8d\x40\x82\x6c\x9b\xa6\xb7\xa7\x4b\x03\xf1\xf1\x82\x92\x49\x56\xe8\x57\x0e\xc1\x7c\x84\xbd\xc8\xe4\x05\xc5\xa0\x0c\x0e\xd0\x17\x72\xe7\x6a\x54\x88\xfa\x3d\x2e\x41\xfd\xde\x03\x2e\x6e\x5a\x26\x7c\x5d\xe2\x97\x6c\x17\xae\xc7\x88\x09\x28\xcb\xc2\x06\x2c\x69\x43\xba\x01\x0e\x5c\xc5\xdd\x2a\x20\x8d\xcb\x37\xd3\x74\xc1\x50\x63\x69\x31\xc8\x64\x51\xb7\xcf\x34\xca\x67\xa6\x0f\xcc\x8a\xe4\xdb\xa7\x2f\x35\xf8\xa7\x50\x5e\x58\x6c\x0f\x19\x70\x56\x28\xcc\x05\xc9\x6b\xb8\x82\x58\xee\x3b\xfc\x1a\x01\x45\x33\x37\x42\x25\x01\xf0\x9d\x47\x04\x27\x51\xa0\xff\x28\xef\x24\x28\xc9\x04\xe0\x92\x9b\x73\x60\xf4\x2b\x7d\xfa\x84\xb2\x0e\x25\xeb\xc9\xb3\x51\x19\xd6\xa6\x37\xbb\x8d\x5c\x32\xad\xfe\x5e\xca\x43\x0f\x2c\x0d\x48\x06\x5a\xbb\xe4\xd3\x98\x63\xce\xb8\xaf\x68\x37\x51\xaa\x73\x73\x57\xcc\xfd\xd4\x9d\x98\xc7\xc4\xe4\xfc\x11\x64\x28\xfe\xfb\xd4\x50\x88\xf6\xa9\xa1\xf2\xe0\x53\x95\xaa\xc2\x25\x44\xa9\x5d\xb7\xb6\x55\x74\x79\xf9\x2e\x5e\xaa\x3e\x37\x78\x19\x9e\xc5\xc5\x47\xfc\x04\x15\xbf\x67\xf1\x28\xe5\x4b\xcd\xcf\x82\x12\x8a\xea\x10\xa9\x9a\x3a\xac\xa3\xfb\xdb\xba\xea\xcb\xef\x1f\xc1\x0b\xea\x51\x5f\x15\xf3\x47\xcf\x42\xa6\x57\xe1\xc6\x5d\xc0\xf5\xaa\xc5\x1e\xf4\x38\xc3\x1d\xdb\xa5\xd6\x41\x08\xcb\x0b\x79\xa7\x4a\x85\x4c\xf5\xde\x8e\x31\x6b\xec\xc8\x0b\x13\x8e\x19\x85\x82\x84\xf5\x8b\x2f\x97\xb6\x41\x86\x8f\xa5\x8d\xeb\xaa\x17\x56\xcd\x4b\x24\xfb\x0e\xca\x7b\x59\xf6\x7e\x96\xde\x63\xb3\xee\xe1\xf9\xab\xb7\xb5\x5c\x4f\xd5\x22\x18\x89\x33\x44\x9e\x72\xff\x43\xdb\xe3\xb0\xff\x23\x62\xb5\x51\xdc\x4f\xb4\x2a\x4f\x2d\xf2\x2d\x89\xd6\xb9\x97\xa4\x8e\x25\xc1\xed\x07\x12\x5e\x81\xef\x3f\x66\x6b\xf5\x22\x90\x10\x0c\xb8\x05\x49\xeb\xf8\xa6\xec\xfc\x60\x49\x30\xf1\x9a\x57\x54\xe8\x82\xf3\x9c\xa6\x36\x51\xd8\x22\xb3\xb8\x89\xb7\xc8\x07\x93\x13\x8f\x00\x43\xd9\xba\xac\x97\x20\xba\xff\xe4\x9f\x24\x03\xf3\x4f\x87\x20\x09\x69\x00\xd3\x35\x5f\xdd\x7b\x6e\x41\x0e\x60\xc1\xa6\x14\x37\xb5\x0f\x0a\xab\xc1\xcc\x84\x1b\xf2\x29\x7e\x4f\x77\x50\x61\xf7\xf2\x5e\xcd\xb7\x59\xa4\x15\xd2\x04\x73\xf7\xe6\xe7\x77\x67\x03\xc8\x89\xa5\xad\x39\x13\xac\x40\x73\x26\x16\x3e\xec\xdd\xe0\xa0\xaa\x86\xc1\xd2\x0d\x16\x8a\xb5\x62\x70\x0e\x24\x73\x4f\x77\xbf\xe2\x02\xec\xa4\xca\x25\x10\x4d\x0a\xab\x8e\x93\x58\xb0\xc5\x4b\xde\xa3\xd2\x9d\x3e\x3e\xe8\xc1\xfd\x6b\x0c\x1a\x37\x88\x0b\xcf\x9c\x20\x81\x7d\xd0\xa1\x18\x5e\x3a\xd3\x18\x16\xc8\xbd\x08\x96\x23\x2a\xef\x9d\x87\x43\xa9\xc9\x8a\x04\x32\x2f\x88\xf2\xe5\xd2\x2b\x40\x8f\xe4\x77\x0c\x84\x73\xdc\x9b\x7c\xed\xa0\xde\x6a\xc2\xa8\xd5\x3a\x6c\xb3\x16\x37\x0d\x3f\x07\xe2\x5b\x1a\xf0\x38\xb9\xbd\x35\xbd\x85\x2b\x34\x5f\xee\xad\xcc\x89\x53\xe0\xcf\x35\xc9\x40\x0d\xc4\xd7\x6c\x10\x5a\xb5\xeb\x26\x2d\xac\xca\xa9\x5c\xc7\xf8\x15\x91\x96\xb2\x07\x5e\xcf\x02\xeb\x39\x04\x5b\xc9\xa5\x84\x01\x2f\x17\x0e\x31\x76\x3a\xf5\xfa\xd8\xa1\x46\x0e\xb2\x06\x83\x59\x57\xd7\xa5\x3b\xf6\xd2\xd1\xbc\xa3\xb4\x08\x78\xd5\xf7\xdb\xce\xc2\xe8\xe0\x49\xfc\xf4\x8c\x7e\x0c\x06\x11\x56\xa5\x23\x19\xd5\xb4\xad\x70\x14\x19\xe0\x45\x12\xa6\x31\x6e\xd0\xba\x17\x05\xe0\xba\x19\x0d\x79\xf0\xb2\xd5\xbb\x53\x7e\x05\xbf\xd6\xa4\x50\x6c\x74\xad\xb3\xb8\x38\xd9\x32\x43\xe9\x9e\xcc\x30\xd8\x93\xcd\x63\x74\xb6\x68\x25\x7a\x24\xff\xb9\x62\x77\x3d\x97\x13\xf2\x06\x4b\xeb\x88\xf6\x8a\x9d\x5c\x96\xd7\x4f\x0f\xef\x9f\x32\x15\x34\x59\xc6\xc4\xf3\xa7\x31\x40\xf9\xb9\x5c\xec\x02\x1f\x85\x9f\xe5\xb7\x1e\x0a\xfa\x6a\x1a\xbb\x55\xb2\xab\xf1\xf4\xed\xb9\xa4\x04\x30\x53\x2f\xf0\x58\xd7\x21\x7c\x9a\x10\xba\xb7\x7d\xd7\x3c\x2c\x30\x0c\x65\x5e\xb7\xe6\xcc\xaa\x0f\x59\xac\xe5\xc2\xef\xc0\x11\xd7\x60\x11\x87\xa1\xc0\xbd\xfb\xcc\xdd\xc3\x47\x40\x06\x81\xd4\x3b\xf9\x0e\x5e\xdd\x49\x75\x23\xe4\xd3\x16\xd7\x6a\xc9\xfe\x58\x7c\x84\x0c\xaa\xc6\x33\xc7\x47\x6b\x5f\x92\x86\x1c\x42\x9c\xe8\xcf\x08\xa6\xaa\x45\x1d\x90\x2c\x39\xd9\x7a\x2b\x69\x5a\x65\xe0\x5d\x6c\x2a\xb5\x7b\x46\xd9\xe9\xed\x97\x9a\x32\x84\xb4\x96\x01\xc4\xfe\x3f\x43\x6c\x84\xd2\x66\x98\x86\x70\xb8\x81\x0b\x78\x30\xa6\xe1\x34\x5a\x56\xb3\x65\x06\xbe\x9d\x8d\x7a\xeb\xf4\x62\x9d\x11\xf3\x95\x7e\xc8\xe7\x2e\xf9\x4d\x70\xff\xd1\xee\xfc\xea\x01\x8f\x9d\xab\x06\xbe\x4c\x51\x08\xa2\xc7\xf2\x20\x70\x5b\xd6\x41\xac\x79\xf9\x15\x15\x8a\x1e\xe2\xfb\xce\x3f\xb8\xc7\xf7\x61\xf6\x3e\x33\xec\x9e\x7d\x45\xad\xec\xe0\x2f\x87\x78\x83\x47\x0b\xbb\x76\xf1\xed\xb0\x2c\x1f\xfa\xc4\x60\x9c\xf9\x6f\x56\xb1\x8c\xd1\x1e\xc8\xfd\x5d\x1f\xa5\x95\xdf\xc1\xf8\xbe\x95\x93\x89\x6f\x65\xa4\x7f\x0a\x5e\x8d\x8d\x5f\xf4\xb5\xb7\x71\xbf\xa2\x82\xc1\x43\xbe\xfe\x65\xdc\xaf\xe9\x84\x0c\x63\xf8\x1c\xa4\xcd\x59\xf4\x94\x5a\x58\xa1\xbe\xf2\xb8\x67\x50\xa3\xea\x64\x6c\x5f\x5d\x9b\x8e\x70\x58\x9d\x1b\xe8\xd7\x77\x6f\xf0\xae\x71\xf0\x76\x73\x53\x7f\x0d\xde\x26\x9f\xbc\xfb\x5d\x9f\xe6\xfb\xea\x6e\xb9\x28\xcd\x4a\xa7\xf6\x7b\xb0\x6a\x84\xf6\xa7\x09\xdf\x2f\x24\x84\x6e\xe3\x60\x09\x9e\xde\xe9\x47\xd8\x0d\x50\x7b\xf8\x84\xf1\x78\x45\x0c\xd6\x90\x3d\x7c\xaa\x6f\x54\x82\xff\x4a\x72\xd5\xe9\x13\x63\x62\x87\x7b\xec\x1e\xce\x24\x7e\xd0\x37\xcd\xfa\x63\x92\x2f\x79\x48\xf4\x7f\xc2\x2b\x58\x6f\x45\x62\x31\xd3\x67\x22\x3f\xf9\xeb\x3b\xae\xf9\x3b\x8d\x42\xca\x91\xdd\xbf\xdb\x20\x81\x94\x77\xde\xc3\x38\x61\x85\x84\x15\x87\x26\xe3\x9f\x05\x7e\x16\xf9\x1d\x7e\xdd\xe2\xd7\x6d\x59\x7e\x92\xc2\x60\xce\x54\xbc\xa9\x49\x46\xe5\x94\x3b\xfc\xbe\xe3\x27\xe1\x10\x37\x7e\x81\x68\xa7\x78\x79\xcf\x7e\xe0\x7d\xbd\x1a\x87\x18\x48\xb7\x1f\x94\xce\xad\x6a\xaa\x7c\x3e\x66\xcf\xb4\x3b\x4d\xc2\x17\x3f\x08\x45\xcd\x6b\x92\x7c\x3e\xc6\x9e\xda\xaf\xac\x42\xf9\xa6\x54\xee\x87\x26\xca\x27\xa5\xb5\xf9\x6d\xe6\xfb\xa5\x5f\x48\xf5\xbd\xd2\x2f\x42\x6f\xd1\x36\x5b\x7e\xc9\xe3\x63\x62\x8f\x62\xf9\xd7\xb0\x4e\x28\xcf\x9c\x43\x39\x9c\x10\x1b\x4c\xf1\xb6\x0c\x9f\x3a\x6d\x39\xce\xc5\x2c\xb1\x47\xf0\xaa\x7a\xbb\x73\x36\x30\xff\x00\xa3\x80\xf9\x58\xa7\x72\x35\x8e\x5f\xd1\x4f\x60\x61\xe3\x10\x46\x73\x08\x4c\xb0\xad\xb1\x96\x9b\x3e\xfd\xc7\x3f\x00\x4f\xdf\xff\xfc\x67\x7a\xfa\xf2\x59\x5a\x7e\xe6\xb0\xe3\x5d\xba\x51\xff\x0f\x03\xa3\xdf\xaf\x22\x48\x8e\xca\x81\x1b\x4b\xea\x70\x20\x37\x96\xd0\x7c\xf2\xff\x02\x00\x00\xff\xff\x22\x61\x49\x86\x05\xc9\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x72\xdc\x48\xae\x27\xfe\x9d\x4f\xc1\xf6\x84\xc3\x76\x84\x54\x1d\x3d\x7d\xfe\xff\xdd\xe8\x68\xbb\x57\x96\xda\x97\x73\x2c\x4b\x47\x92\xbb\x77\xb6\xc3\xc1\x66\x15\xa9\x2a\x8e\xab\xc8\x1a\x92\x25\x59\x33\x31\x6f\xb0\x0f\xb0\xcf\xb7\x4f\xb2\xc0\x0f\x40\x5e\x48\x96\x64\xf7\x1c\x7f\xb0\x58\x99\xc8\x1b\x12\x89\x04\x90\x48\x64\xbe\xdd\x66\x45\xd9\x2d\xd2\xe7\xe9\x51\xba\xcd\xab\x7a\x5d\x76\x5d\xda\x95\xeb\xeb\xc3\x55\xd3\xf5\x65\x91\xbe\xae\x7a\xfa\xdd\xde\x54\x8b\x32\x49\x56\xcd\xa6\x24\xd0\x37\xf4\x27\x29\xf2\x6e\x35\x6f\xf2\xb6\xa0\x84\x13\xfb\x4e\xca\xcf\xdb\x75\xd3\x32\xd0\xcf\xf2\x95\xac\xca\xf5\x96\xcb\xd0\x9f\xa4\xab\x96\x75\x56\xd5\xf4\xf3\x92\xbe\xd2\xb7\xb5\xa4\x34\xbb\xde\x92\xce\x76\xbd\xa4\xed\xb6\x96\xf4\x61\x9b\xb4\xe5\xb2\xa2\xde\xb4\x94\x74\xa1\x9f\xc9\x6d\x39\xef\xaa\x9e\x5b\xfa\x55\xbe\x92\x9b\xb2\xed\xaa\x86\x6b\xff\x45\xbe\x92\x6d\xbe\x64\x80\x73\xfa\x93\xf4\xe5\x66\xbb\xce\x51\xe0\x4a\x3f\x93\x75\x5e\x2f\x77\x02\xf3\x4e\x3f\x93\x45\x5b\x52\x56\x56\x97\xb7\x94\x7a\x8c\x1f\xb3\xd9\x2c\xd9\x11\x12\xb2\x6d\xdb\x5c\x57\xeb\x32\xcb\xeb\x22\xdb\xc8\x30\x3f\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\x8d\x95\xe6\xcf\xa4\xdc\xe4\xd5\x9a\xb1\xc6\x7f\xa9\xdf\x5d\x77\xdb\x00\xb5\xe7\xfa\x49\x38\xc8\xfa\xbb\x6d\x09\x14\x1c\x5e\xd1\x57\xb2\xc8\xb7\xfd\x62\x95\x73\x37\xe5\x2b\x21\xa0\x6d\x43\xb8\x68\xda\x3b\xc0\xd9\x8f\xa4\x69\x97\x79\x5d\xfd\x3d\xef\x05\x3f\x67\xc1\xcf\x64\x53\xb5\x6d\xc3\xa8\x3d\xc5\x47\x42\x23\xcf\xb8\x1e\x4a\x79\x4f\x48\x08\x6a\xe1\x9c\x4d\xb5\x6c\x05\x8b\x9c\x79\x8a\x5f\x5c\x8b\xe4\x69\x4d\x92\xe5\x6a\xbb\x6e\xda\x4f\x9a\xfa\x8a\x3f\x07\x55\x52\xe7\x34\x37\xee\x57\x5e\xd3\x7c\x68\xee\x29\x7e\x44\x00\x5d\x92\x17\x1b\xc2\xf0\x36\xaf\x4b\x46\xdd\x11\xff\x22\x7c\xd1\xaf\x24\x5f\x2c\x9a\x5d\xdd\x67\x5d\xd9\xf7\x55\xbd\xe4\x39\x38\x92\xa4\xf4\x52\x93\x92\x20\xcf\xa5\xdd\x35\x3b\x37\xcb\x94\xfe\x17\xfa\x99\x9e\xcb\x4f\xc9\x0b\x0a\x21\xd3\x95\xa4\x26\xfb\xea\xa6\xea\xab\x52\x1a\xb3\x1f\xc9\x76\xb7\x5e\x13\x3e\xff\xb6\x2b\xbb\x9e\xb3\xce\xe9\x37\x61\x40\x7e\x27\x55\xd7\xed\x50\xe2\x2d\x3e\x12\x9a\xd4\x7a\x81\xe1\x1c\xe3\x23\x49\x7e\xab\xea\xae\xcf\xd7\xeb\x8f\x89\x7e\x30\xb0\x7c\x09\x9e\xfa\xaa\x47\x67\x35\x31\xbd\xec\xcb\x6d\xc7\x88\x4e\x5f\x55\x6d\xd7\x1f\xf6\x15\x91\xda\xc5\xae\x4e\x8a\x66\xf1\x89\x88\x98\x17\x24\x96\xd2\xdb\xeb\x94\xc6\xf4\x84\xc8\xb8\xdd\xd5\x35\x8d\x22\x7d\xdd\xd0\xc8\xa8\x99\xaa\x28\xd3\x13\x40\x1f\xa4\xdb\x75\x99\x77\x04\x52\xe6\x45\xfa\x63\x9e\xf6\x79\xbb\x2c\xfb\xe7\x8f\xb2\x39\x2d\x9e\x4f\x8f\xd2\x55\x5b\x5e\x3f\x7f\xf4\xb8\x7b\xf4\xe2\xf5\x8e\x8a\xad\xab\xba\xec\x7e\xfc\x36\x7f\x91\x2e\x72\xca\xa1\xb1\xde\xa5\xf3\xf2\x9a\xd7\x0a\xb5\x95\x12\x91\xd6\x4b\x5e\x27\x77\xfd\x8a\x1b\xa4\x09\xa3\x8f\x2e\xe5\x85\xfa\x4d\xc2\x58\xa2\x85\x9c\x15\x73\x63\x4a\xe8\x10\x92\x5b\xc2\xd2\xe9\xdd\xe5\x7f\xbe\x3b\x48\xcf\x89\x33\x2d\xdb\x12\xdf\xf4\x1f\x95\xf8\x3e\xa5\xd1\x5e\x55\x27\x2f\x67\x09\x95\x35\x84\x9c\xe4\x7d\x3e\xe7\xbe\xbb\x49\xe2\x4c\x59\x43\x2e\x0f\x2b\x89\x79\x1d\xf8\x5a\xd7\x63\x75\xea\xca\x9c\x5c\x87\x54\x87\x2e\x5e\x57\xc7\x7b\x5e\xc1\x94\xee\x30\x7b\x2e\x38\xa3\xaa\xd2\xb7\xef\xdf\x9f\x9d\xbc\x4c\xcb\x7a\x49\x98\x49\x6f\xab\x7e\x95\xee\xfa\xeb\xff\x9e\x2d\xcb\xba\x6c\xf3\x75\xb6\xa8\x18\x29\x2d\xd1\x55\x4a\x58\x92\x21\xce\x92\xae\x5b\x13\x83\x29\xb8\x95\xcb\xcb\x77\xe9\x29\x7d\x52\x67\xa8\x2c\x77\xa4\x5f\x25\xdd\xdf\xd6\x8c\x28\xd7\xe0\xd5\xaa\x4c\x41\xb3\x00\x6a\xae\x87\x78\x49\x0b\xed\xeb\x2c\xfd\x71\xde\xbe\x08\xfa\x97\xcf\xbb\x66\xbd\xeb\xb5\xe4\xed\xaa\xac\x31\x51\x44\x4a\x6d\x4f\xdc\xca\x78\xff\x2c\x29\xdb\x36\x23\xbe\xd9\xdf\xf1\xf4\x68\x5f\xf6\xb5\x22\x95\x11\x29\xd7\x4d\x4f\xd3\x9f\xa2\x9c\x54\x51\xd5\x37\xf9\xba\x2a\x68\x92\x3c\x22\xe3\xb2\x48\x2c\x1a\x9a\x6f\x2e\x4d\x14\xdd\xdc\x02\x45\xb4\xc0\x88\xad\xa7\x8f\x66\x8f\xc0\x67\x1f\x1d\x3e\x9a\x25\x75\x93\x09\x13\x60\x8e\x5c\x54\x5d\x3e\x27\xee\x2c\xbb\x45\x6b\xcc\xee\x2f\x4c\x77\xd2\x15\x85\x48\x23\x08\x9e\x13\xde\x81\xc0\xf8\x99\x28\x73\x62\xd3\xe0\x25\xca\x45\xc2\xb1\x1b\xcb\x71\x74\x21\x5c\xc7\x25\x8c\xc6\x9c\xd8\x44\x1b\x55\x1e\x6d\xb7\xeb\x6a\x21\x4d\xbf\x96\x3c\x4f\xa0\xbc\x1f\x2b\x52\x42\x38\x10\x98\xe5\x05\x64\x46\xbd\x66\xae\x94\x46\xec\x1d\xe5\x57\x25\xad\xb8\xd5\x6e\x29\x7b\xd2\xba\xd9\x15\xdf\x60\x73\xb0\x99\xf3\x2c\x38\xbd\x68\xa8\xc3\xa0\x2a\x07\xe0\x9b\x38\x22\x86\xc2\x22\x40\x5b\x6e\x9a\x9e\x11\xa7\xc5\x98\xcd\xdd\x56\x94\x49\x23\xed\xf2\x1b\xda\xdc\xfa\x46\x96\x72\x41\x4b\x75\xc1\x15\xcf\x12\x62\x2b\x99\x2e\x27\xe2\x3f\xb2\xa4\x2c\x2d\xa6\x5d\x40\x6d\x76\xb4\x0a\x57\x54\x19\x23\x9e\xe5\x10\xaa\x72\xaa\x9f\x18\x12\xd5\x03\xee\x40\x2b\xbe\xa1\x3d\x93\x27\xfa\x04\x1f\xfa\x3b\xac\x9f\x7a\x95\x5f\x5f\x53\xaf\x3a\x5a\x4d\x6f\xd2\xc5\xba\xa1\xa5\xf8\xe1\xe2\x5d\xc7\x0b\x6d\x95\x6d\x9b\x16\xf2\x07\x65\x9d\xd3\xa7\x4b\x0b\x10\xcd\x10\xf5\x6e\x33\xa7\x5f\xb7\xab\x6a\xb1\x12\xb4\x73\x09\x5e\x1f\x94\x4a\x4d\xec\x3a\x9a\xc2\x83\x94\x96\x16\x8d\x80\x50\x06\x02\xe0\x31\x18\xd5\x31\xf8\x35\xd1\xd8\xae\xa5\xe5\xb4\xea\xfb\xad\xb5\xfc\xe6\xea\xea\x5c\x9a\x76\xa9\xf7\xb5\x9d\x07\x94\x81\x39\x58\xb3\x44\x54\xa7\x4d\x3d\x03\x91\xec\xda\xf5\x80\x7e\x68\xac\x96\xb3\x07\x2f\xdc\x85\x6f\xf9\xbf\x4b\x8f\x1e\xe0\xb9\x23\x59\xef\x16\xd4\x44\x38\x86\x94\x32\x4b\xd6\xcd\x32\x6b\x69\x36\x8c\x98\xde\x35\x4b\x21\xa0\x28\xc3\xb7\x74\x62\x24\xc1\xd8\xb8\x6d\x59\x6a\x23\x48\x30\x2c\x9e\x64\x5a\x24\xcd\x96\xfb\x19\xac\x92\x33\x4d\xf0\x4b\x03\x6d\xbb\x7c\xc8\x49\x94\x09\xe6\x14\xec\xe9\x1b\xc2\x9f\x72\xf3\xcb\x53\xc2\x2a\x58\x3a\x52\xaf\xdb\x66\x43\xa9\xaf\xe8\x8f\x4f\xf0\x7d\x3c\xe5\xfa\x00\x93\x17\x05\x6d\x36\xdd\x41\x7a\xf1\xea\x38\xfd\xff\xbe\xff\xf3\x9f\x67\xe9\xdb\x9e\x17\x36\xd3\xfa\x5f\x99\x46\x73\xc5\x84\x07\x25\x06\xd8\x13\x19\x3f\xe2\x85\xfa\x28\xfd\x11\xb9\xff\xa3\xfc\x9c\x93\x9c\x59\xce\x16\xcd\xe6\x05\x33\xf7\x4d\x4e\xac\x84\x73\x88\xfa\x75\x59\x5c\x96\x75\x41\x1f\x22\xf5\x69\x56\xc0\x5c\x34\x3b\x90\x01\x45\xf8\xcd\x16\x4d\x7d\x5d\xb5\x3c\x9e\x9f\x6b\xd0\x96\x89\xc5\xe9\xb1\xe4\x98\x08\x45\x28\x23\x7e\x54\x5d\xdf\x79\x50\x8c\xf4\x3d\x27\x2a\x79\x24\x42\xc3\x99\xb2\x7a\x87\xe3\x4b\x21\x6d\xa6\x82\x33\x1a\x5d\x6b\xe8\xee\x3c\xbe\x9b\xeb\x6b\xde\xf1\x6d\xaf\xd2\x16\xce\x24\x55\xb6\xad\x10\x84\x48\x7b\x0b\xc1\xfe\x44\x97\xc4\xf1\xc9\xfb\xb4\xbc\x21\xda\x65\x1e\xda\x36\xc5\x6e\x01\x7a\x65\xd8\x03\x66\xfd\xc4\x70\x3a\x5a\x69\x8b\x52\x89\xc5\xb1\x1c\xee\x1a\xf3\xb5\x05\x01\x11\xa7\x31\xd6\x4f\xd2\xe8\x0d\xed\x23\x6d\xd0\xc4\x6b\x4b\xd2\xde\x8f\x60\x47\x9d\x72\x25\x78\xe4\x0b\x9a\x70\x22\x0a\xe9\x45\x27\x9d\x92\x6c\x5a\x3c\xb4\x2a\x76\xa4\xe5\xe4\x05\xf5\x65\x7e\x07\x2e\xd6\x31\x2d\x14\xe5\x75\xbe\x5b\xf7\xbe\x5f\x83\x2d\xc9\x5a\xba\x64\x45\x2b\xcc\x9b\x2c\x30\xea\x20\x88\xa7\x1b\x96\x25\x2a\xac\x49\xda\x92\xad\x8b\xc9\x55\x34\x19\xdb\xc5\x88\xd9\x95\x98\x9e\xcc\xeb\x0d\x3a\x5f\xa6\x3e\xc4\xf9\xae\xd9\x0b\x91\xbf\x52\x6c\xdc\x5c\xa3\x55\xc0\x02\xcb\x74\x5f\x66\x89\x0a\x6d\x99\xaa\x7c\xd9\x4d\x05\x85\xca\x91\xab\x54\xa9\x6a\x20\xf3\x85\x5f\x18\x80\x35\xb5\x6e\xb2\xac\xeb\xcd\x19\x0f\xb2\x73\x0a\x95\xe0\x9c\x87\x8b\x16\x58\x90\xa4\x59\xba\xa9\xb0\x69\x28\xc1\x00\x2f\x73\x96\x75\xa8\x69\x6a\xaa\x2b\x4b\xd4\x40\xe5\xbf\xa5\x3a\x51\x66\xa6\xda\x84\x0a\xf8\x26\x80\xb2\xf0\x50\x34\x90\x44\xb0\x33\x51\x69\x43\xeb\x40\x4a\x48\xdb\x6a\xb9\x22\x4e\xdd\xdc\x1e\x08\x52\x6e\x57\x4d\xc9\xeb\xe7\xed\xc9\xf3\xef\xa4\x1f\x4b\xde\xa7\x5c\x21\xde\xe1\xf2\x1d\x11\x17\x61\x4c\xc9\x58\xba\xe0\x24\x05\x40\x8e\xf4\x16\x01\x1a\x2a\x90\x23\xc1\xc4\x31\x0d\xe5\x15\x61\x9e\x32\x09\x0f\x23\xa5\x4d\x09\x95\x86\x85\x29\xa9\xd2\x91\x2d\x1b\x28\x3d\xa6\x64\xf0\xd6\x4b\x2a\x75\xd7\x67\xcb\xaa\xcf\xae\x99\x73\x71\xc5\xaf\xb8\x02\x96\x04\x28\x27\x7d\x42\x59\x4f\x52\xe2\x7e\xa4\xc9\x15\x3f\xa4\x8f\x6f\x54\x6c\xfd\x9e\x59\x52\x46\x8b\xa8\x5a\x63\x46\x54\x95\x6a\x4b\x91\x4a\x4d\x8d\x77\x22\x60\xb7\xdb\x62\xa3\x54\x69\xd3\xa9\x24\x45\x73\x5b\xf3\xe2\x03\xeb\x25\x36\x53\x2d\x2a\xda\x30\xe6\x55\x9d\xd3\x4e\x63\xb5\x80\xa5\x3f\x26\x92\x78\x7f\x76\x05\xc0\x65\x33\xdf\x55\xeb\xc2\x00\x66\x89\x49\xa4\x24\x8f\xea\xe4\x87\xb2\xbd\x25\x55\xd2\x97\x45\xd3\xf2\x5e\x86\xd1\x58\xc1\x3d\x72\x15\x6f\x84\x22\x08\x57\xac\x54\x01\x16\xe5\x9c\x08\xc4\x68\xa0\xd9\x5f\xac\x54\x40\x02\xd9\x54\x5d\xfd\xa4\x47\x4f\x17\x3b\x6a\x8b\x66\x9e\x93\xa9\x60\x97\x1e\xbe\xa0\xff\x13\x16\xb7\x64\x03\x58\x8e\x11\xcf\x99\xa9\x64\xee\x64\x29\x46\x5d\x8d\x68\xdc\xcd\xb4\x51\x70\x30\xd6\xb0\xbf\x46\x02\xdd\x4e\x88\x96\x2d\x2e\x6b\x9a\xd6\xf2\x1b\xfa\x60\xf5\x71\xb9\xc6\x24\xe4\xbd\xea\x78\x0d\xe1\x8d\x09\xe4\x40\xd6\xcc\x35\x0d\x8d\x59\x69\x9f\x7f\x2a\xa1\x16\x7a\x9c\x4f\x49\x12\x7b\xf1\x96\xfc\xc6\xf6\xa7\x8f\xc9\x4e\xa4\xe0\x66\x5d\x38\x4d\x0d\xab\x81\xb8\x51\x19\x99\x4f\x3c\x8c\x23\xf4\x8e\xa4\xfd\xc5\x2a\x73\xc6\x2b\x46\x64\x5f\x7e\x86\xbc\x80\x2c\x6f\xcb\xe2\x55\xc2\x59\xc9\xe6\x0e\x53\xcc\x03\x3f\xbd\xf3\x33\xcc\xca\x7d\xb7\x6a\x6e\x61\x09\x72\x10\x97\x94\x02\x1b\x50\x24\x2b\xb3\x05\x69\xd1\x90\xc6\x3e\x6f\x78\x56\x6e\x3c\xfc\x71\x98\x1a\x57\x4e\xed\x92\x60\xaf\xcd\xc6\x96\x0f\xca\x12\x63\x8b\xe6\x8a\xb1\xa5\x4b\xc0\x29\xd5\x4a\x07\x86\x4a\xf4\xa2\x36\x86\x19\x4d\x3c\x4c\x18\xd6\xf2\xdb\x5a\xa4\xd8\xb0\x9f\x84\x63\xb5\xe0\x7d\x4c\x0c\x2e\xea\x93\xb0\x5b\x41\x3a\x9b\x50\xf2\x16\xd4\x7b\x89\x0f\x2a\x4d\x0c\x6d\xf5\x31\xb0\xa1\x65\x46\x5b\x66\x4b\x83\x9d\x47\x79\x9a\x97\x67\x56\xe5\x96\x45\x9f\x4d\x07\xa2\x5c\xb3\xb1\xe1\x4e\x55\x01\x47\x9e\x3f\xc9\x6e\x41\xf4\x4a\x3c\xf6\x9b\xa4\x6b\x78\xb9\x67\x5f\x59\xc5\xcb\x8a\x08\x11\xe5\xe3\x9d\x56\x8c\x7b\x24\xb1\xf3\x60\x68\x8d\xdf\x1d\xc4\x4a\xe2\x8a\x54\xe1\x79\x49\x82\x8a\x16\x2b\x66\xa6\xe4\x33\x01\x91\x6a\x8a\x15\x0b\x83\x24\xd6\x98\x94\x6c\xda\xa1\x08\xc0\x3d\x14\x26\xab\xad\x38\xc1\x0d\x62\x59\x28\xbd\x4d\xb4\x49\x08\xdb\x94\xac\x09\x64\x1b\x31\x04\xca\xaf\xf4\xb4\x4c\x68\x2f\x5e\x62\x1d\x09\xa1\x3f\x67\x03\xd0\x12\x0a\x93\x52\x3e\x03\x94\x7d\xb8\x0b\x28\x84\xa5\xfc\x64\x86\x57\xe2\x4b\xb7\x30\xc8\x11\x67\x19\xa1\x9f\xf6\x4b\xca\x9e\xd9\xae\x22\x02\x0a\xe4\xcc\x8e\x78\x95\x47\xe2\x51\xca\x16\xd4\x10\x4a\x65\x66\x37\x2a\x86\x67\x96\xf5\xe3\xfc\xc5\xe3\xee\xc7\x6f\xe7\x2f\x1c\x63\x5f\xac\xca\xc5\x27\x21\xce\xaa\x9e\x37\x9f\xa1\xa2\xc3\x54\x54\x52\xad\xb4\x58\x1f\x17\x29\xa9\xec\x2d\x34\x44\x62\x44\x54\x8c\xf0\xce\xb9\xd1\x9c\x51\x5f\x98\x5f\xcd\xc4\x34\x57\x0a\xf5\x7b\x7a\x84\x8d\x8e\x29\x12\xbb\x8f\x91\x24\x15\x5a\x55\x73\xda\xd3\x88\x35\x41\xab\x7c\x87\xbf\xe7\x9a\x5c\x16\x03\x88\x40\x50\x68\x1d\x23\x65\x8b\x96\x2b\xc0\x9d\x04\xa8\x1f\x9f\x92\x8c\x27\x17\x9e\x59\xe0\x6f\x5d\x6d\xaa\x7e\x44\x8a\xcc\x56\x73\x25\x69\x35\x25\xda\xdc\x60\x0c\x1e\xbb\xb4\x39\x51\x35\x24\x4b\x18\x79\xde\xe6\xa4\x8a\x7e\x9f\x52\x1b\xbb\x9e\xb5\x2d\x36\xf0\xf4\xb4\x3b\xe5\x2c\x8c\x90\x1a\x9a\x77\xd9\xae\xd6\x69\x2a\x0b\x23\xce\x37\x15\xf6\x4c\x6e\xd7\x96\x50\x00\x15\x6b\x3f\xe9\x53\x37\x83\xcf\x66\x6a\x54\x44\x29\xde\xc7\xb8\x3f\x15\x8b\xea\xf9\x14\x2d\x10\xc7\xae\x4b\xc1\x10\xc6\xcf\x60\x4c\x36\xa4\x80\x7a\x64\x91\x16\xfb\x89\x52\x30\xbf\xf3\x5d\xdf\x37\xac\x88\xad\x99\x06\xa5\x8c\xf5\xf9\x18\x80\x50\x55\x7d\x7d\x77\x32\x2d\x31\x96\x54\x97\x84\x14\xd2\x81\x8f\xc8\xb1\x00\x2b\xc4\xf1\xd0\x74\xd7\x77\x50\x85\x58\xf0\xf2\xfa\xce\x1b\x87\xd0\x07\x6e\xae\x9f\xee\xc9\xd3\xb6\x7c\xe6\xfb\xe2\xd6\x1f\x4a\x68\x7f\xa4\x74\xb0\x34\x2f\x90\x29\xe6\x67\x5b\xc0\xb6\x67\x2e\xd4\x2e\xe8\x48\xa3\x8d\x51\x8b\x7c\x5e\x65\xc4\xc9\x49\x8a\x2e\x80\x65\x1a\x04\x4a\xcf\x06\x6d\x79\x05\x78\x8c\xbe\x3e\xee\xb1\xdf\x56\xfb\xa6\xc9\x68\xe7\x83\xed\xc2\xba\x97\xae\xcb\x7a\x19\x19\xfd\x70\x94\x04\x7a\xfb\xff\xd9\x50\x57\x67\xd0\xd6\x82\x05\xf8\xbe\xa9\x0f\x91\xe6\x54\x14\x2b\xad\x66\x62\x6b\x90\xab\x69\x9b\xdd\x72\xa5\x16\x9f\xe4\x37\xc6\xda\xc7\x44\xe7\xb5\x0c\xea\x54\xaa\xb7\x1c\x9b\x7f\x59\xdb\x0e\xde\x04\xdd\x5f\xca\x96\x55\x63\x00\x45\x13\xbf\x6f\x46\x62\x84\x38\x96\xee\x25\xa3\x8b\x90\x01\x69\xf2\xf5\x6e\x7d\x90\xde\x8a\xc8\xe4\xcb\x38\xb5\x5c\x85\x29\x26\x71\x39\x43\xa3\xe1\x35\x45\x4e\xe3\xbb\xc3\xc9\xc0\x5f\x68\xdb\xad\x71\x1a\xd3\x24\x94\x21\x85\x4e\xf1\x41\xa0\x6c\x57\xf8\x98\xf0\x76\xfc\x7e\xa0\x11\xf0\xbe\xad\x69\x81\x54\x8a\xac\x9f\xc3\xd3\x26\x37\xe6\xf3\x09\xe5\xe1\xa2\xf4\x87\x4e\xf8\x72\x83\xbf\xbc\x7c\x73\x65\x86\x82\xcb\x37\xe9\xa7\x52\xeb\x7e\xd3\xf7\xdb\xee\x03\x4c\x50\x62\x4f\x62\xe3\xd3\x79\x7e\xc7\x92\xba\x24\xeb\x0f\x64\x5c\x95\xf9\x46\x3b\xc9\x9f\x52\xc5\x11\x09\x11\x9a\xc8\x9f\x24\x79\x04\xa6\xcd\x04\x32\xeb\xcf\x91\xaa\x22\xab\xc8\xe9\x8d\xa5\x1e\x43\xfd\x3e\x32\xc7\xfe\x9e\xe4\xeb\x2d\xa9\xb6\x2c\xff\x05\x60\xb0\x3c\xce\x55\xc3\x4d\x01\x82\x55\xb3\xdb\x10\x81\x2c\xa0\xd1\x53\x81\xa7\x87\xd9\xb3\xc0\x12\x1d\x57\x56\x10\x33\xf9\x43\x15\xf2\xb7\x90\xbc\xaf\xb7\xab\xfe\x6e\xa3\x88\xaa\xe3\x74\x62\xcc\x04\x01\x31\xde\x43\x39\x20\x6c\x2d\x2c\xd2\xf7\x6c\x88\xa4\x04\x52\x1b\xa2\xaa\x37\xf9\xe7\x87\x0a\x6e\x9a\x89\x72\xc2\x32\x7d\x21\xe3\x8c\x3a\xc4\x68\xf5\x10\x38\x5b\x1a\xf7\x02\xd3\xc4\x13\x48\x55\x2f\xd6\xbb\x62\x6f\x47\xba\xdd\x9c\x16\x12\xab\x23\x4f\x1e\x77\x4f\xb8\xca\xfa\x13\x49\x1e\xb5\x83\xff\x20\xbf\x53\xfc\xfe\xc1\x4e\x43\x33\xaa\x56\x74\xb4\xd4\x9d\x8b\x92\x00\x55\xf0\x66\x04\x5d\x6b\xe6\xf9\x58\xa8\x7f\x39\xe2\x87\xd1\x47\xf5\x63\xb7\xfe\xd9\xd2\x03\x55\x94\x08\x70\xe6\x4f\x70\x33\x16\x64\x32\xd6\x6b\xea\x50\x11\x61\xe6\x6b\xdb\x35\x44\x1d\x40\xcc\xc4\xbe\x3e\x2e\x37\x58\x9d\x7b\x8b\x93\xb8\x36\x51\xfa\x6c\x6c\xfb\xdf\x53\xbe\xa7\x05\x36\x51\x81\x5b\x77\x7b\x0b\xca\xdc\xa3\x10\x8d\xbc\x18\x32\x8e\x71\x39\x86\x9a\x79\x2c\x39\x84\x87\x73\x13\xaa\x6d\x0e\xcf\xb1\x96\xcd\x16\x2b\x22\xbf\x16\x27\xe9\x81\xae\xad\xb6\x0f\xe5\xf5\x1b\x56\x2b\xbb\x1d\xef\x5b\xac\x82\x8a\x18\x18\x63\x94\x25\x12\x54\x55\xa2\x89\xfd\xd5\x13\x3d\x31\x6b\x7e\xa8\x7e\x80\x7d\x65\xd5\xa1\x69\x66\x5c\xb1\x56\xee\x80\xf6\x55\xeb\xec\x06\xe5\xe7\x0a\x56\xee\xd7\xd5\x4d\xa9\x96\x03\x67\x30\x41\xde\x2c\x59\xd3\xfa\x67\x0d\x52\x46\x25\xfa\x42\x73\xc3\x2b\x8a\xdb\xe3\x5c\x29\x27\x56\x6f\x1d\x14\x13\x89\xda\x20\x70\xf4\x56\x16\x07\x7c\x0c\xd8\x43\x30\xc0\x02\xcd\xd7\xb7\xf9\x5d\x07\x7b\x9a\x31\x19\x3e\x30\x90\xe2\xcc\x41\x48\x38\x5a\xa2\x57\xe1\xb1\x14\xad\x1a\xc3\x04\x9f\xaf\xf0\x76\xe1\x64\x98\x5b\x58\x11\xc0\x21\xd4\x42\x77\x13\x6c\xcc\xba\xbb\xb0\x05\x84\x55\x7f\xd6\xa5\x24\x3b\xa8\x08\xe7\xc4\xca\xec\x27\xca\x1e\xb0\xe0\x48\xcd\xb0\x20\x47\x2c\x58\x70\x5d\x41\x4e\x47\x97\x02\x93\xd2\x8e\xea\x3f\x14\x05\xa4\x22\x1c\xb2\x3e\xeb\xad\x2c\xbc\x1b\xd1\xac\xd8\xb1\x8a\xa4\x8b\x6d\xa2\xeb\xab\xf5\x9a\x31\x6d\xbe\x13\x91\x42\x80\x5c\xac\x13\xa0\xa9\x5b\x55\xdb\xb4\x81\x71\x3d\x44\xa1\x27\xdb\x40\xf4\xe6\x03\xa4\x12\x0a\x0e\x1f\x32\xb4\x79\xdd\x5d\x97\x38\x6d\xd8\xa4\xd7\x7c\xbe\x3f\xd3\xa6\x59\x92\x17\x5f\x89\x3d\x2d\x8b\xae\x88\xa6\xc3\x0d\x02\x73\x17\x4c\x54\xdc\xb4\x9c\x66\xc1\xa4\x8d\x3e\x00\xab\xbe\xa6\xce\xfa\xc0\x64\x36\x42\x01\x04\xea\xe8\x6c\x72\x12\x0f\xd7\x91\x09\x42\xda\x07\xa5\x3d\x30\xee\x44\x7c\x11\xb2\x39\x65\x2e\x56\xd1\xaa\xb8\x42\x4e\x2a\x39\xa3\x85\x91\xfc\xc6\x74\xff\x31\x11\x31\x33\x73\x47\x06\xc7\x22\x76\x8a\xcc\x88\xc4\xe4\xaf\x0d\x6d\xb4\xb0\xd9\xff\x3b\x7d\xb1\x30\x5d\x27\xd1\x21\xe8\xc0\x3e\xa2\x5e\x20\x4c\x93\xe7\x44\x4a\xb4\xd7\xab\x2b\xc8\x1d\x29\xe0\x58\x4f\x30\x9f\xbc\xb2\xef\x84\x0f\xda\x5b\x10\xd7\xa5\x7e\x45\xf6\x18\x29\x24\xc6\xba\x57\xf6\xad\xa9\x2e\x89\x96\x85\x4b\xf9\xa0\x9f\x09\x2b\xfc\x9b\x19\xf8\x2f\x0b\xb3\x38\x2f\x09\xb8\x2e\x6f\xaa\x4c\xff\x96\x37\x0b\xe0\xb7\x79\x4f\x9c\xa7\x16\x05\x49\x98\x40\x58\x54\xb3\x5d\x15\xee\x98\x9e\x6b\x49\x7e\x33\x17\x99\x8f\x89\x77\xa4\x31\x1f\x9a\x29\xfb\xb4\xae\xe2\x4e\x05\xc9\xff\xa0\x4f\x35\xee\x80\x43\xe0\x43\xb5\x73\x1c\x90\xdb\xa9\x26\xfc\x6c\x82\x9f\x89\x1a\xcb\x62\x4b\x99\xd2\xd0\xf3\xf4\x44\x3e\x4c\xcf\xdf\x55\x18\x53\x45\xe2\xf6\x16\x13\x15\xb8\xfd\xe8\xcc\xb9\x4e\xab\xd7\x57\xa8\xe9\x8f\xd4\x44\xa9\x04\xd2\x83\x1d\x52\x61\xaf\xe4\x33\x92\x40\x5d\x64\x2b\x37\xf4\xc8\x3a\x38\x80\xe3\x63\x25\xd6\x7d\x09\xec\xb6\x9c\xa7\x6c\x77\x26\x42\x23\xb5\x4c\xc7\xb9\xc9\x49\xa3\xbb\xa9\x72\x67\x63\x0a\x64\x18\xb7\xc9\x9a\x91\x28\x52\xac\x20\xb2\x8b\xcd\xce\x44\x18\x9b\x50\x36\x9d\x08\xbd\x53\xad\x95\x1c\xe4\xd4\x10\x6f\xd8\x6b\xc7\xf6\xc0\x57\xec\xad\x04\xf7\x83\xb1\xbf\x1d\x37\xa1\x07\x5a\xef\xf4\x33\xd9\x6d\xf9\x84\x28\xc0\xe5\x07\x24\x38\x5c\xc6\xf9\x81\xe2\x04\xac\x5a\x31\x67\x23\x12\xf0\x22\xd0\xa4\xf8\x98\x44\xd7\xed\x84\x1f\x9d\x2e\xe1\x62\x08\xe2\x2d\x2a\xe0\x49\x3a\x70\x4c\x94\x9c\x80\x03\xb5\xb4\xaf\xa5\x6c\xbe\x5d\x57\xf5\xa7\x4e\x67\x8a\xf1\x14\x2a\x91\xb0\x7c\x11\x7d\xef\x4a\x39\x47\xc1\xe7\xd8\x6b\xcb\x8e\xd2\x70\x7a\xe8\x39\x8c\x1d\xb8\xc9\xa1\xe2\x91\xf0\x98\xc5\xaa\x69\x3a\xb5\x96\x7a\x56\xc4\x69\x30\x86\x28\x27\x52\xcc\x39\x08\x45\xec\x91\x1d\x6e\x62\xd1\x29\xb9\x67\x7a\x74\xe0\xa1\x95\xfa\x8f\xf5\x48\xe1\xc8\xea\x94\xc3\x4b\x85\x93\x05\x9f\x55\x1b\x71\x89\xfc\x60\x47\x9b\x98\x13\x27\xc3\x23\x7b\x16\xf7\x67\x38\x91\xda\xae\x1d\x28\x3c\x30\x9f\x36\x5b\xe1\x09\x95\xcc\x90\x63\x12\xcd\x3a\x92\xa0\x6c\x1c\x2e\x9f\x91\x17\xe4\xbf\xc7\x59\xa2\x53\xd3\x79\x19\x64\x03\x10\xd5\x6c\x23\xc8\x49\x41\xd5\xda\xda\x2b\xa4\x0e\x7a\x3f\x22\x6a\x2b\x77\xcb\xee\x54\xc1\xc0\x95\x0c\x8b\x99\xb9\x28\xb1\x65\x55\x0e\x26\xe1\x4b\x22\xfe\x34\x35\x4e\x35\xa5\x8a\x60\xdd\x6b\xa3\xff\xea\xaa\xf7\x35\x8b\x94\xdf\x39\xe1\xfe\x48\x78\x1b\x9f\x43\x88\x23\xa6\xcb\x57\x5f\xcc\x88\x05\x96\xe6\xa0\x11\x32\xc9\x6d\x4b\xb4\x42\x32\x78\xcc\x2c\x47\xec\x31\x62\x85\xe0\x84\x0d\xdc\x0d\x3c\x07\xa4\x71\x6b\x55\xbc\x95\xe0\xcb\x52\x9c\x2d\x87\x56\x00\x0b\xaa\x9a\x6c\x0b\xc1\x72\x85\xfe\x5d\x1f\xe9\x87\x30\x2e\x19\xeb\x89\x26\x0c\xf2\x6d\x30\x92\x6d\x13\x32\x31\x1a\xf6\x8e\xba\x29\x1d\x6f\xaf\x6a\xf1\xf6\x70\xe7\x8f\x11\x03\x49\x4f\xc0\x51\x88\x1c\xc4\xfe\x6d\xfc\xe4\xa7\x61\xeb\x9e\x8e\x7e\x8e\x2d\xe7\x32\xb6\x78\x15\x7d\x93\x50\x8f\x40\xe3\xfe\x14\xb7\x00\xf1\xc4\x86\x2d\x86\x0a\x21\xc4\x74\xe2\x52\xb3\xc8\xae\x0f\x13\xfd\xd7\xd8\xf2\x59\x24\xf8\x2f\x30\xe3\x47\x4d\x79\x33\xbe\xeb\xe4\x60\x85\x8d\x46\x39\x5e\x6a\x94\x01\xe9\x44\x69\x39\x90\x39\x94\x9a\x9d\xe8\xc1\xad\x88\x52\xc1\xe8\xa1\x24\x08\x28\x4a\x09\xd8\x3d\xd8\x6d\x0a\x3e\x57\x70\xb4\x14\x0d\xa3\x1b\xd9\x88\xe3\x39\x3f\x82\x0a\x45\x48\x11\x58\x08\x6b\xb4\xdf\xb3\xf0\x6d\x6b\x9d\x04\x5b\xc2\x83\xf8\x08\x38\xff\xb7\xd1\x09\xdd\x81\xea\x2d\xab\x6a\xb9\xa2\x71\x55\x1b\x3e\x1a\x07\x25\xd9\xf9\xab\x57\x2b\xf9\x17\xb1\xa8\x66\x59\xb3\xdd\x88\x5b\x10\x87\x37\x67\xf3\xfd\xb1\xeb\xdb\xa6\x5e\xbe\x38\x69\x58\xdf\x63\x73\x0a\xef\x7f\x3f\xfd\xf8\xad\xa6\x13\x1b\xe6\x29\x64\xef\xc8\xd7\x55\xff\x66\x37\x7f\xd2\xa5\x4b\x76\xf3\xc5\xb9\x4d\x1e\x38\xff\xaa\x53\x84\x78\x23\xde\xd6\x0e\x2d\x70\x05\xa6\x35\xde\x35\x6b\x5a\x20\x71\x91\x66\xb3\x91\xe9\x25\x06\xb6\x11\x48\xf4\x1f\x7e\x14\x65\x0d\xcc\x95\xad\xe2\x87\x2a\x9c\x39\x12\xf7\xf3\xa3\xd3\x66\x42\x64\x64\xa4\x50\x31\x8e\x81\x71\xca\x5b\xf7\xc1\x46\x04\x0b\x85\x95\x82\x88\x30\x2e\x85\x79\x64\x93\xcf\xd8\x3c\x02\x4d\x82\xab\xb0\xe2\x54\x92\xfa\x21\xa2\x12\xa7\x59\x8b\x22\x24\x94\x6c\x7d\x16\xc2\x0a\x88\x97\xf7\x1e\xb3\x9d\x42\x98\x76\xdd\x03\xb9\x0e\xd6\xb7\x72\x34\x19\xbb\xf2\x33\x1b\x40\xc0\xd1\x14\x23\x9e\xa7\x0d\x61\x22\xae\x56\x0a\x4f\xb3\x5e\x84\xdc\x4c\xdc\xaf\x84\xa3\x09\x41\x92\xba\xc3\xfc\xfa\x0b\xb9\xd9\xa8\x5d\x3f\x70\x6b\xee\x0b\x38\x1a\xc6\x74\x04\x74\xd0\x58\x60\xd2\xd0\x89\x7a\xa7\x06\x0c\x64\xb0\x23\xb0\x57\xbd\xde\x37\x7a\x10\x96\x5a\x22\xe6\x84\x74\xad\xbe\x8c\x96\x32\x77\x02\xae\x9b\xe2\x4c\x04\x9b\xc8\x7f\x4b\x8b\x9c\xf8\x40\xdf\x7c\x22\x52\x1a\x17\x41\xfa\xbe\x42\x8e\xbf\x98\xfe\xa2\xdc\xe5\xc8\x33\x87\xa1\x46\xa3\xe7\xd8\x7b\x19\x4c\xc0\x57\xb4\x56\xe7\xd0\x25\x06\x1d\xb8\xd3\xb3\xdb\x4b\x21\x7c\x44\xd9\x80\x7a\x2d\xb9\xf5\x4f\x12\x5b\xcd\x40\xd0\x11\xf9\x43\x7f\x87\xd3\x12\xd5\x1f\x2c\x16\xe2\xde\xbb\x3a\x60\x9f\x42\x0e\x99\xa0\xc2\x0d\xf2\x9c\x04\x0e\xf8\x6c\x1e\x49\x85\x57\x9c\xdd\xa9\x03\xb4\xba\x03\x58\x91\xd7\x9a\x88\x35\x00\x40\x41\x78\xe7\x10\x81\x5f\xde\x16\x61\xb5\xa8\xa3\x89\xba\x63\x62\x0e\x88\xea\x8c\x61\xae\xc4\xf1\x24\x3d\x3a\x7f\x4b\x1b\x86\x6b\xd0\x2a\xfd\x39\x5f\xac\x74\x02\x6f\xc5\x10\x01\xf7\x94\xf5\x7a\xc8\x71\x9d\xb0\x2f\xc5\xcd\x4f\x1d\x25\xb1\xc4\xdd\xa0\x46\x03\x92\xc1\xc4\xf9\x82\xe3\xb2\x0b\x8c\x33\xd2\x1a\x7a\x32\xdc\xab\xdc\x50\xbf\x21\xcc\x3a\x13\x21\x2f\xad\xed\x1d\x73\xff\xc0\xd1\x2c\x17\x0c\xdd\x82\x7f\x0f\x3c\xdc\x08\x12\x87\xbc\x29\x2f\xe1\xd6\xf1\x0f\xeb\xb0\x72\x90\x70\x2a\x43\x36\x32\x39\x99\x9e\xa9\x4c\x16\x9b\xe2\x2c\x5b\xab\x27\x1e\xf3\x43\x7c\x86\x09\xdf\xeb\xf6\xf7\x70\x99\x70\x54\x01\x29\x9f\x4f\x36\xeb\x28\x5a\x9a\x1e\xf0\x9b\x54\xb6\x41\x71\x94\xe0\x56\x44\x5b\x51\x8a\x08\xdc\xa9\xa9\x96\xdb\x72\xbd\xa6\xf5\xa0\xad\xfb\xf3\x47\x1d\x7a\xe4\x52\xa0\x40\x81\x0a\x5a\x7a\xd9\x56\x50\x11\x5a\xd7\xac\x32\x82\xa0\xe5\x86\xd3\x7c\xb1\x0f\xd8\x6e\x7d\x7c\xf4\xfe\xfd\xd9\x95\xdf\xa4\x79\x1d\xd4\x05\x89\x12\xdf\x38\x5f\xbf\x51\xbf\xcc\xe3\xcf\x4d\x60\x0c\xe1\x7d\x0e\xb5\xc4\x3e\xb8\x90\x4d\x05\xde\x0e\xcb\x06\xbc\xa7\xe1\xbe\x18\x2f\x8f\xfa\x5f\xec\x9b\xbf\xe4\x37\x96\x6e\x3e\x26\x66\xa3\x3e\xe3\xbf\x49\x68\xe6\x0f\x8e\x47\xb0\xf4\xfc\x29\x8a\xbf\xa5\x40\x1d\x68\x8a\x91\xd9\x1f\x4c\x7a\x97\x43\xd5\x22\xdc\x37\xd8\x2b\xae\x53\x1c\x5d\x1f\xb0\x15\xb3\x69\xb1\x60\x18\xb9\xbb\xba\xfa\xdb\x0e\xe2\x19\x4e\x9c\x67\x09\xbb\x90\xce\xab\xb5\x6c\x28\xbf\xb8\x1f\x92\xce\x5f\x03\x4f\xfa\xa0\x71\xfa\xf5\x63\xb7\x65\x0f\x5c\xda\x1b\xba\xe7\x8f\x76\x55\xca\x86\x3d\x76\x26\x7b\xf4\x82\xf4\x17\x3e\x83\xa6\xe9\x23\x88\x17\xa3\xea\xf8\xb2\xdc\x42\xec\x81\xce\x3b\x04\x74\xab\xe9\xbc\x5a\x58\xde\x8d\x8c\x90\x82\xf8\x3f\xd0\x26\xdf\xcc\xf3\xe3\x78\xaa\x5a\x37\xe1\x08\x6b\xf7\x26\x5f\xef\x62\x2b\x09\xb7\xce\x65\xba\x67\x09\xae\x09\xf8\xb2\xf0\x16\xc2\x5d\x4f\xce\x20\x6a\xf8\x09\x48\xeb\xef\xbf\x33\xc6\xb7\x42\x59\xf0\xfb\x26\x41\x4f\xd4\x6e\x3c\xbc\x24\x88\x3c\xf3\xdf\xe7\x3c\x38\xf1\x23\x75\x62\x36\x82\xfb\x3e\xf9\xba\x17\x9b\x71\x1a\xcc\x26\xb3\x16\x0c\x22\xb4\xb5\xde\xe9\xe9\x9c\xe3\x60\xdd\xa2\xad\x70\x07\x41\xd2\xf9\xa6\x68\x1a\xdc\x12\x75\x89\xbe\xdd\x4b\xa2\x7b\x42\xd1\x6c\x59\xf5\xa4\xc2\xb3\x07\x20\x7c\xd6\x13\x62\x1b\xb4\x93\xe1\x8e\xa9\x7c\x59\xca\xa8\x28\x6f\xfa\x02\x0b\x5b\x19\x4b\x9a\xba\x02\xf8\x43\x7f\x4f\x94\x52\x40\xbb\xe1\xca\x87\x16\x4d\x56\xd5\x15\x2f\xfc\xb7\xf4\x87\x36\x75\x51\x00\x62\x32\x15\xf1\x16\x95\xa8\x91\x47\xb4\x6f\x57\x8f\xba\xf1\xe9\xac\xa8\xff\x5e\x30\x2f\xea\xe6\xae\x06\x78\xa0\x0d\x09\xe9\x4b\x24\xe8\xcd\x52\x62\x7c\xbb\x5a\x8c\xc0\xf4\x37\x4a\x34\x74\x07\x72\x8c\x5c\x34\x3a\xec\xdb\x7c\xf1\x89\x79\x0a\x91\x4a\xd9\x92\x32\x00\xdf\xa5\x9c\xb7\xbd\x94\xe8\x6b\x49\x08\x10\x5b\xbf\x3a\x06\x49\x31\xab\xbc\x62\xc5\xe1\x46\x04\x30\xb9\x93\xfa\xd6\x52\x9e\xb2\xc6\xf9\xcc\x00\x4d\x5f\x74\x70\x6a\xf5\x18\xe4\x5b\x3f\xf5\xe0\x4e\x4f\xae\x69\x1d\xf2\xe6\xc1\x66\x09\x9c\xa3\x11\xba\x0a\x3e\x1d\xca\xd7\x5d\xaa\x6a\xae\x1d\x88\x27\xb7\x7c\xcc\x2c\xb6\xff\x5f\xf5\x13\xa6\xff\x65\xfe\x77\x49\xbd\x74\x3f\x40\xd8\x9d\x92\x7a\xa7\x76\x7c\xc2\xfd\x62\xa5\xde\x61\xcd\x75\x26\x77\xd5\xb0\x51\x5f\xb9\xf3\x48\xe6\x12\x80\xa3\xd9\xdc\xe4\x9f\xab\xcd\x6e\x93\x3a\x40\x14\x65\xda\x7f\x1c\x9f\x30\xcc\xa6\xcf\x09\x86\x67\xd2\x5f\x7f\x5c\x30\xac\xe1\xfe\x53\x03\x76\x03\xcb\xf8\xb0\xcd\x58\x49\xe4\xf8\x91\xe8\xad\x63\xbb\xbd\xe9\xae\x1d\xcb\xf5\xcd\x30\x77\x3f\x57\x36\xbb\x53\x1e\x33\x4a\x78\xff\xce\x89\xd1\x3d\x7a\x21\x93\x6e\x5c\xd2\x6a\x55\xf2\x3f\xd5\x8b\xcf\x01\xfd\x2b\xc4\x4c\x58\xa1\xa7\xa5\x63\xdc\xa0\xf2\xa4\x34\x01\x15\x6d\xa4\x2a\xcc\xe6\xc1\x2d\xac\x6f\x5f\xbf\xbd\xc2\x1d\x2c\xa2\x49\x31\xea\xe9\x45\x33\x76\x8c\x9e\xb9\x3a\x79\x8f\xad\xba\x4e\x64\xaf\xba\x02\xe2\x99\xff\x4d\x98\xfd\xc4\x52\xa0\x95\xc5\x14\x60\xb5\x79\xaf\x6c\x76\xd4\x52\x97\xec\xb7\x92\xa8\x05\x39\x11\x26\x88\xf8\x4c\xcd\x7c\xcc\xf2\xf0\xfa\x9f\x55\xeb\x8e\x4f\xfd\xb4\x85\x27\xa7\xba\xd4\x94\xbf\xeb\x1d\xf2\xe6\x3a\x11\x16\x6d\xe9\xca\xb0\xaf\x1d\xe7\xc7\xf5\x2d\xbe\x78\x12\xb3\x7c\xdc\x35\xcf\xc3\x79\x0f\x9d\x27\x69\xa1\xb0\x90\xb4\xbd\xcb\xd8\xc6\x0f\xb9\x68\x7b\xe7\x13\x02\x01\x92\x32\x08\x9d\x01\xb0\xf3\x3b\x39\xc7\x2c\xff\xdf\xff\xfd\x7f\x0e\x8f\x79\xd8\xc7\x7d\xbb\xa6\x2f\x95\xcf\x19\x5e\xa6\x41\x2a\x48\xcf\xfe\x83\xf4\xac\x5b\x75\x32\xf9\x20\x5f\x89\xfd\x06\x2b\xa0\xfc\x4e\x4d\xfa\xf8\x48\xf4\x17\x73\x84\x44\xaf\xce\x33\x2b\x48\x58\xc9\x55\xb2\x21\x05\x37\xdc\xa2\xfe\xb6\xab\x16\x9f\x32\xb1\xcc\x3c\x4f\xff\x93\x7f\xa5\xb8\x8e\xad\xbb\x34\x73\x7e\xc7\xc6\x41\x9c\x83\xbd\x20\xf4\xd8\xc6\xd6\xa6\xb7\x36\x3c\xdb\xcf\x63\xa9\xe3\xce\x18\xaf\x01\xf2\x1d\xaf\x64\xbb\x63\xb7\x2a\x26\x08\x6b\xed\x9c\x52\x70\x5f\x8e\x13\x85\x9f\xbb\x1a\x30\xb3\xa3\x3a\xd0\x3c\x75\x57\xae\x4f\x4e\x0a\x57\xc8\x0a\xbc\x69\x89\xbb\xcc\x69\xbb\x30\x45\x27\x51\x0f\xc9\x63\xbe\x7e\xe6\xf6\x26\xdd\x93\xfa\xb6\x84\x2a\x47\x7f\x12\xda\xf2\xd8\x13\x4f\xcf\x8f\xf9\x0a\x71\x9f\xe3\xa0\x15\xe9\x76\x7a\xcc\xc7\xcf\xf9\x52\x2b\x82\x0e\xf7\x52\x3f\x13\x4a\xe7\xdf\x57\xf4\x67\x74\x93\x9f\xef\xfd\x8f\xef\xfb\xaf\xf3\x79\x89\xe4\x77\xf8\x20\xe2\xa7\x5d\xb7\xa7\x19\x91\x3d\xc8\x7e\x24\x8c\x92\xaa\x17\x42\xc4\x57\xa2\xd7\x63\xe4\xc4\x59\x3e\x13\x9c\xa1\xb5\x39\x9f\xfb\x5e\xe4\xb7\xf2\x93\xd0\xa5\xf1\x1f\xde\xc8\x97\x24\xe3\x66\x80\x80\xe2\x62\x80\x83\x87\x98\xae\xab\xe1\xdc\xbe\x25\x8b\xfd\x3c\xd7\x2c\xbb\xd9\x34\xd8\x41\x10\x65\xa4\x92\x21\x92\x27\x5f\x83\xa8\x13\xeb\xf4\x6c\xdc\x79\xcb\x19\x5c\x18\x48\x17\x83\xfc\x6b\x31\x50\xbc\x62\xf3\x84\xa5\xe5\xd8\x09\x52\xf3\x05\x74\xe9\x1b\xde\x7b\xd1\xb7\x53\xf9\x72\x39\x85\xf8\xf3\x9e\x40\x86\xd1\x34\xbb\x09\x72\xc6\x7f\x5d\x2a\xd1\xb4\x4a\xaf\xf4\xd7\xdd\x94\x90\xd8\x1f\x6c\x99\xc0\x5c\x06\xc9\xb3\xe1\xfc\x05\x59\x35\x23\x6b\x8e\x53\x40\x5a\x9e\xc8\x0f\xb3\x17\x34\x67\x6d\xe6\xca\x1f\xf3\xcf\x74\x3d\xaa\xc5\x11\x44\x48\x0f\x83\x66\x42\x18\x6a\x6a\x12\x4c\x9a\x0b\x21\xa5\xc5\xcd\x14\x30\x69\xa3\x75\x04\x7b\x46\x09\x21\x39\x46\x15\xb3\x1e\x35\xa8\x19\xaa\xd5\x34\x3c\x6d\xb2\x7c\x59\x0f\xca\xa5\x7e\x8e\xfb\x19\x00\x49\x37\xf3\x09\x50\xb6\xf1\x79\x38\x1a\xf8\x10\x48\x8d\xd0\x8e\x67\x0d\x67\xcf\xcf\x0f\x4d\xed\x70\x82\x24\x33\x23\xc9\x77\x51\xba\x7b\x43\x00\x82\xfc\xc2\x37\x78\xa2\x66\x5c\x65\xda\x58\x54\x1f\x10\xda\xe7\x73\xca\x26\x79\x8b\xb1\xe9\x0a\x33\xae\x7c\x96\xa0\xce\x32\x95\x21\x59\xcd\x51\x95\x61\x1e\x89\x5a\x99\x08\xee\x82\x08\x27\xc4\xaf\x27\x4a\xdc\x4b\x51\x43\x98\xbd\x35\x8f\xe8\x46\x4b\xde\x33\xbd\x1e\x82\x63\x5f\xec\xaf\x7a\x4f\x39\x95\xf5\x20\xe1\x8d\x73\x66\x7c\x23\xcd\xf1\x5c\x0e\x53\x20\x3f\x26\x41\x3b\x8d\xc7\x43\x6a\x11\x4b\x03\xae\xab\x85\x1a\xfc\xa6\x0a\xc9\x2c\x17\xd9\xfc\x4e\xcb\xc8\x3c\xe3\xa2\xef\x9e\x22\x1b\x96\xfe\xa1\xfc\x6a\x91\x53\x97\x30\x51\xa4\xd3\xb0\x03\x7c\xef\x7f\x9c\x33\xe3\xcd\x0c\xbe\x4c\xcc\x9b\xba\x49\x10\xa6\x52\x80\x9c\xe1\x63\x0a\x44\xcc\xe0\x6a\xc8\xe2\x9d\x43\xae\x87\xd8\x41\xfc\x64\xc3\xec\x16\xe6\x4a\xbc\x83\x93\x58\xfb\x05\xe5\xd8\x6d\x98\xf9\xaa\x9c\x7a\x9c\x36\xf0\xe5\xc5\xcf\x7b\xda\xf1\x05\xa4\xa1\x51\x09\x5e\x49\x98\x05\x02\x91\xef\xf4\xf1\x6f\xdf\x7d\xec\x78\x1a\xfc\x71\xd2\x6f\x7f\xfe\xd8\x3d\x7a\xf1\xf8\xb7\xef\x3f\xe2\x1c\x69\x54\x38\xbb\x66\x43\xea\xb8\x06\x14\x34\xe8\x6d\x5b\xde\x54\xcd\xae\x13\x19\x0f\x9f\x9e\x3f\x7c\x96\xa9\xf8\xdc\xc7\x4b\xdc\x85\x2b\x18\xac\xf0\xc2\x65\xc5\x2b\xbc\xde\x6d\x32\x1d\x63\x27\x1c\xc0\x7e\xb9\xe2\x86\x81\x2c\xe7\x26\x7f\x77\xbf\xfd\x70\xff\xc4\xa6\x93\xc7\x18\xe9\xef\x56\xcc\x1c\x3f\x04\x3a\x08\x10\x70\xa4\x07\x81\xee\x44\xd0\x6c\x70\x45\x60\xa5\xd5\x62\x3f\xb9\x6e\x36\xc1\x01\xd6\x95\x84\x7f\x60\x71\xdf\x1d\xa4\xdd\x95\xfd\x2c\x66\x69\xf8\x61\xe3\x8d\xb3\xac\x53\x0e\x44\x27\x1d\xae\xd6\x21\x78\x5b\x02\xab\x06\x77\x81\x9f\x83\xcc\xfb\x2a\x6b\xa3\x02\xca\xa7\x3d\x89\x29\xe8\x60\xa2\x14\xcd\xb2\x87\x11\x8e\xab\x82\x09\x8a\x08\xe4\x91\x43\x37\x7e\xbd\x00\xb1\x44\x48\x97\xf6\x5c\x1d\xf6\xf3\x2b\x6b\x11\x61\x84\x24\xe6\x6b\x57\x8f\xda\x3c\x0a\x99\x1d\x19\xaa\xba\xe9\x0a\xf4\x57\x36\xb1\x6d\x34\x7c\xda\x39\x3e\x7c\xcb\x76\xf9\x14\x02\xd6\x71\xf0\xd3\x91\x79\x64\x97\xd5\x44\xbb\x28\x78\x0d\xbd\x0d\xcc\xdf\x2e\x07\xf2\x01\x21\x27\x45\xa0\x55\x9d\xd9\xdd\x0c\x55\x60\x88\xfe\xd8\xb5\xd2\xa8\xaf\xe6\xdb\xd8\x6a\xea\xdf\x7b\x77\x33\x3a\x3d\xb6\xbb\xa0\xe2\x3a\xc0\xd3\x1a\x2e\xfc\xb2\x80\xf1\xeb\x67\xfa\xe3\xc6\x3a\x70\xd1\xb2\xfe\x71\x2b\xd4\x7d\xfa\x63\x49\xb2\xc5\xda\xfa\xf5\x22\x40\x9c\x4f\xb8\x6b\xbc\x88\x80\x5f\x43\x00\x31\xbd\x3f\x2e\x06\x62\x9e\x64\x7b\x4a\x57\x46\xc0\x09\x83\x4d\x4c\x20\x27\x06\x23\x19\x03\xdf\xc6\x38\xd3\x5d\x15\x92\x0e\xe2\xc2\x90\x05\xfc\x18\xd7\xa2\x6e\x7c\x00\x75\xb6\xff\x49\xb0\x69\xa7\x18\x11\x59\xc2\x63\x1d\x56\x00\x42\x47\x18\x76\x6b\x08\x4e\x7a\xb4\xee\xfd\x07\x3b\xd3\x8d\x7b\x05\x5d\xfa\xfa\xc0\x09\x72\xc0\x75\xb7\x79\xdb\x57\x8b\x6a\x9b\x3b\xce\x7b\x1e\xa4\x24\xa2\xaf\x05\xa2\x7f\xa8\xb7\x69\x26\x1f\x22\xe4\x44\xc3\xe2\x41\xa5\xfa\x0d\xa7\xa8\xbb\x5a\x37\x0d\x67\x18\x33\xe0\xfe\xb6\x49\x9d\x36\x89\x90\x81\xbc\x39\xe5\x29\x17\xb6\xeb\x9d\x58\x47\x5a\x7e\x36\xa8\x16\x71\x09\x9e\xc3\x4d\x74\xd8\xa0\xb6\xf0\x3c\xd5\x2f\xcd\x8f\x14\xdd\xa1\x82\x6b\x23\x6f\xd8\xfe\xb7\x5b\x03\x3b\x38\x40\x97\x1f\xd7\x72\xf4\x6b\x40\x88\xdb\xc6\x82\x94\x6f\x2b\xd8\x1f\x24\xaa\x9b\xba\xf3\x70\xee\xbc\x5c\xe4\x1c\x66\x0c\x7d\xe6\xb1\xae\x38\x8e\x9c\x1f\x3d\x81\x70\xfc\x17\xab\x9f\x9d\xd8\xc3\x80\x79\xcc\x0d\x5d\xf5\x66\xc4\x19\x60\x6a\x5e\xf6\xb7\xb8\xac\x02\xff\x1a\x46\xae\x9c\x37\x74\x3f\x84\x02\x02\x31\xc6\x6f\xd1\xc6\xb7\x2c\x25\x14\xca\x24\xff\x84\x1f\xc2\x2a\x15\x95\x03\x1d\x62\x82\x0c\xc0\x19\x6c\x52\x6f\x41\x4f\x34\xe2\x4d\xc9\xfa\x30\x37\x54\x98\x5a\x2b\x2c\xfb\x47\x36\x47\x18\x4f\xc6\x37\xad\x05\xf6\x9f\xd1\xf4\xef\x5d\xba\xd6\x8f\x9a\x54\x80\xb0\x66\x24\xed\x5f\xab\x9e\x4a\xff\xdb\x47\xa3\x51\xd2\x40\xb2\x90\xef\x82\x3e\xfd\xcf\x08\x6a\xa8\xcd\xfb\x3c\x39\x34\x00\x41\x95\xe6\x56\x5b\x68\xbe\xee\xd7\x44\x2a\x82\x1a\x67\x3e\x97\x0c\x3d\x1e\x0e\x67\x92\x7a\xbd\x2d\x5b\x66\x19\x8a\x4d\x77\x4a\x3a\x8b\x50\x03\xc9\xba\xf5\x2d\x31\xd5\xb8\x9c\xab\x51\xb5\x8e\x47\x28\x4c\xcc\x22\xa4\x0a\x8e\x3e\x47\xeb\xc3\xce\xc6\xe9\x97\x3b\x05\x9b\xae\x4b\x61\x8b\x9d\xbf\xa1\xc1\x58\xa4\x42\x30\xd9\x05\x9c\xcf\xfa\x5e\x75\x19\x3c\xe2\xc4\x99\xff\x4a\xdd\xdc\xd6\xd5\xa2\x4f\x5d\x3a\x35\x27\x57\x24\x24\x1e\xd2\x52\xa2\x4b\xb9\x10\x8c\xb4\xb1\x76\x2b\xc4\xab\x61\x80\xeb\x92\x23\x4d\x40\x78\x74\x2c\x22\xaf\x33\x9c\xfe\x60\xa8\x91\x91\x39\x1a\x86\x5a\x9c\x15\x21\x83\x28\x34\xae\x2a\x18\xf4\xbf\xac\x36\x71\x3f\x98\xaa\xcf\xb1\x00\xb9\x42\xc4\x2b\xde\xc6\xdd\xed\x6f\x6b\x18\x4a\x51\xe8\x61\x93\xd7\x72\x9c\x5b\xf1\xe5\x22\x56\xd1\xe5\xaa\x32\x9c\xcb\xfa\xd5\x44\xcd\x52\xdb\x80\xa5\x80\x78\xa6\x56\x36\x08\x76\x57\xeb\x02\x44\x29\x18\x2e\x99\xc4\x7f\x57\x23\xf3\x93\xde\x11\xa9\x12\xb2\x3f\xcb\x8f\x87\x1a\xb2\xac\x5a\xb6\xf7\x08\x6d\x4f\xff\xf4\xb8\x78\x26\x8b\x18\x4e\x66\xa3\xa3\x39\x4e\x94\x81\x87\x1b\x29\x73\xd1\xaa\xc3\xc5\x7e\x26\x19\xde\x28\x18\x88\xbe\x67\xbf\x27\x81\x41\x31\xd8\xcb\xbc\xda\x1f\x64\x4f\xd8\x28\x82\xdc\x69\x3b\xc5\x10\xa0\xf0\xd6\x9f\xc7\x5d\xd4\x76\x93\xd1\xd2\xc8\x54\x89\xa4\xed\x84\x17\x0a\xff\x1a\xf6\xc0\x94\xa7\x61\xcd\x4e\x93\x88\x07\x44\x02\xc0\x9c\xb7\x10\xb9\xb2\x2e\x2c\x3a\xb0\xa1\x12\x39\xe8\x7d\x23\x75\xa6\x50\x01\x20\xaa\x7e\xc0\xe1\x27\x91\x63\xd2\x1f\xae\x38\x87\x19\x13\x07\xc4\x61\xae\x1f\xf3\x09\x0d\x98\x2d\x90\xe9\x53\x0b\x6e\xf7\x2c\x1e\x64\x29\x8e\xfe\xfc\x37\xcc\x70\xe1\x88\xb4\xaa\x4c\x66\x5e\x6b\x44\xe5\x9a\xe2\xc3\xe3\x1c\xb8\x1b\xc2\x4f\xee\xe8\xdf\xe1\x66\x73\x58\x14\x4f\x26\x46\x1d\xc8\x4f\x6e\xd8\x03\xd7\x43\xb5\x7b\x0c\xb8\x64\x50\x53\x20\x8e\x4e\xe3\x8e\x01\xa2\x79\xfa\xc0\x7b\x3f\xef\xd3\x2c\x74\x14\x1e\x73\x42\xbb\x7e\xf6\x3a\xe6\xff\x0d\x71\x3b\xef\xd0\xc4\x0b\x5a\x7c\x35\xc3\xb1\x0c\x44\xf9\x20\x6b\x70\x41\xfe\xde\x0e\xba\xa3\x1e\x15\xe7\x88\x77\x6f\xf6\x20\x45\x42\x5c\xee\x45\x49\x20\x42\x7b\xb4\x3a\x31\x7a\x02\x70\x5a\x88\xf6\xad\xff\x57\x0a\xd2\x53\xcd\x4f\x91\xc1\x03\xa2\x74\x72\x5b\x7d\xaa\xa8\xc0\xaf\xf4\x07\xdf\x33\x0d\x69\x90\xfa\x10\x06\xd4\x2e\x67\x7f\x13\xe5\xdb\x58\x39\x07\x87\x07\xc4\xa7\x61\x65\x4d\x25\xae\xa4\x38\xb0\xed\xd6\x7c\xfe\xf3\x49\x76\xd3\x66\xb1\x83\xca\x7e\xa7\x97\x82\xfe\x8a\x1b\x3a\x0d\x09\x75\x2b\x0d\x48\x08\x91\xb9\xea\x95\xa8\x66\xd2\xa0\xd2\x38\xae\x07\x66\x1a\xfb\x5b\x17\x79\x8f\x00\xb9\x94\x8e\xdd\x53\xc0\xc3\xe8\xe0\x48\x50\x31\x59\xd3\x55\x48\xf6\xf0\x72\x81\x24\xac\xf5\xbd\x86\xac\x93\x7c\x73\x87\x50\x7d\xde\x9f\x4f\xfc\x8a\x90\x97\x39\xcb\xc7\xec\xa2\xc7\xee\xd4\x98\x6f\x35\xb2\x79\x06\xa1\xe3\x40\x84\x2f\x6d\x89\x15\xd3\xa0\x0d\x38\xc0\x6a\x03\x4c\x14\xcc\x9d\xbb\x94\x09\xda\x8c\x05\x28\x47\xcc\x18\xe0\xa0\x74\x4e\xc9\x34\x72\x8a\xaa\x91\xd1\x78\x7c\xde\x70\x3c\xe2\xb7\x16\x81\xa8\x83\xdb\x34\x14\xdf\xe4\x58\x94\xd9\x77\x26\x25\x84\xbe\x6d\x98\x76\xee\x9b\x08\xa6\xac\xc4\xab\x5c\xea\x62\xd5\xf0\x7a\x2f\xdb\x1e\x81\x69\xdc\x0c\x65\xba\x87\xfa\x9d\x18\x84\x84\xaa\x06\x0e\xda\x91\x73\x76\x17\xd4\xd1\xe9\x34\x77\x01\x12\xed\x2a\x92\x39\x12\xeb\x4f\x0e\x98\x35\x15\x19\xdc\xd2\x66\x32\x59\xb8\x68\x28\x5f\x3e\x2b\x88\xf0\xa5\x02\x75\xf0\x7b\x0f\xd8\x4c\x3c\xbc\x34\x92\xc5\x3e\x20\x09\x9a\xaa\x94\xb4\x0f\x08\x21\xba\xc5\x5b\x68\x1f\x08\xa9\x72\xe5\x35\xee\xb1\xf2\x69\xb3\x7e\x7b\xe0\x55\xd3\x7c\x92\xf8\x6e\x73\x7c\xfa\x9c\x25\x07\x49\x96\x4c\x0e\x07\xfc\x26\xce\x25\xed\xae\x5a\x84\xb1\xd1\x5f\x72\xc2\x04\xf2\xf4\x06\xe1\x99\x05\xeb\xbb\x8c\x86\xa3\x57\xca\x82\x7a\xf4\x92\xdb\xb8\x22\xbd\xfe\xc4\x22\xd3\x97\xdd\xef\x9b\xba\xd7\x17\x87\x0a\x98\xf9\xda\xf3\xe2\x86\x77\x96\x22\x8a\x1f\xaf\x69\x13\x9d\x61\xa2\x72\x2e\xc6\x72\xc3\x0f\xcc\x92\x1d\x93\x71\xd3\xc3\x76\x35\xcc\xa2\x71\xb7\xa0\x02\xda\xe1\x88\xbc\xd9\x3d\x26\x5f\x67\xca\x67\x79\xd3\xb4\x34\x54\xe7\xc1\x23\x50\x0d\xf7\xfb\xb3\x81\x62\x75\x70\x68\x95\xfd\xe0\xd6\xd7\x5f\xa2\x28\x99\x73\x46\x86\xb8\x6f\xc8\xc1\x08\xbb\x9f\x20\x20\x38\xe1\xe9\x2e\x8e\xc3\x44\x72\x61\x80\x2e\xd9\x82\x06\x18\xe0\x28\x8b\x3d\x7b\x1f\xb3\xb7\xf2\x6d\x09\x9f\x65\x31\x64\xc2\xb7\xab\x6c\xf7\x0c\x1f\x30\x99\xc2\x0c\xf1\xb0\xa7\x02\x4d\xc0\xd8\x9c\xb8\xe4\x30\x82\x63\xc0\xf4\x4a\x6b\xe4\x51\xbd\x02\xcc\xb8\xbc\xb4\xdd\xf5\x77\x12\x63\x78\xba\x82\xf7\xf9\x06\x17\x52\x18\xea\x87\x7b\xeb\x98\x59\xbc\x17\xe2\xac\xf2\x75\x3f\x38\xe2\xc4\xf8\x32\x47\xc1\xcf\xfb\xc6\x1a\xc6\x2a\x65\xc5\x8e\x35\x90\xf0\x18\x53\x18\xee\x3f\xd8\x47\xed\x9f\xe9\x3f\x98\xe0\xe9\x4f\x45\xab\xff\xf3\x3f\xcd\x32\xe0\x22\xb9\xf2\x62\x3a\x18\x39\xd2\x8a\xca\xc1\x48\x40\xb1\x60\xea\xa1\x37\x0d\x66\x3e\x54\x72\x3a\xf3\xce\xa7\xc5\xa9\x57\xa4\x59\x32\x69\x2b\xda\x50\x62\xe6\x59\xf0\x92\x6d\xb3\xbf\xcb\x41\xe5\x09\x7e\xa5\xff\x8b\x25\x37\x07\x82\xc7\x22\x10\xa1\x83\x35\xfe\x4e\x5c\xd6\x34\xd2\x80\xdc\x95\x15\x6b\x75\xee\x2c\xc8\x5d\xec\x0a\x14\xef\x17\x3e\x84\x9f\x5c\xb6\xcd\x6b\xb9\x77\x28\xb7\xa0\x03\x0e\xca\x66\x91\xde\x19\x48\xfa\xf4\x8a\xe3\x92\x2f\x77\x6b\x12\xe0\x03\x6f\xb0\x61\x81\xe1\xb4\x58\x3d\x2a\xea\xc1\x9b\x88\x91\xc3\x41\xeb\x50\x57\xc0\x8a\x9c\x5f\x98\x46\x2f\x6a\x39\x92\xac\x5c\x59\x1a\xb6\x22\x7b\x6e\x87\x4d\xf7\x50\x43\x2e\xc4\xce\xe5\x51\xc3\x01\x36\xb4\x0f\xb0\x16\x4d\xf5\x42\xce\x67\x5c\x1f\xc4\xc7\x7c\xa2\x07\xfe\xac\xc9\xbc\xcc\xd5\x92\x34\xd8\xf5\x04\x5a\xae\x42\x0c\x3c\x04\xbd\xf6\x21\x50\x16\x13\x4e\xba\x84\x93\xe0\xf8\xca\x70\xb8\x1c\x24\x32\x04\xfb\xf4\xe8\xe7\x99\xc5\x96\x18\x83\x39\x23\x86\x0f\x28\x11\x23\x85\x71\xa1\x74\x80\x05\xa1\x93\x14\x07\x33\x61\x19\xdc\xc5\x81\xd7\x83\x0a\x6c\xe3\xb8\x9a\xd1\x4d\x74\x6f\x30\x4d\x4c\x13\x12\xba\x1d\x84\x27\xc2\x78\x75\x1d\xd0\x30\xee\x00\xf1\x9d\x9e\x9b\xaa\xd8\x11\x0f\xe2\xce\xdc\x57\xef\x9f\xe3\x7a\x09\x8f\x70\x18\xdc\x5b\xf7\x60\x40\x58\xe1\xee\x3d\x10\xc4\x04\xb9\xf6\xa1\x6e\x26\x47\xc4\xcc\xc7\x9d\x92\xe8\x4a\x42\xc8\x9a\xd4\x07\xad\x08\xf5\x16\x51\x4a\x40\x1f\x72\x4d\xd0\xa8\xf4\x87\xd1\x4e\xaa\xc7\x1a\x3f\xb7\x5c\x27\x36\x34\xb6\xc8\x4d\x82\xd9\x84\x9e\xd1\xde\x2c\x51\x73\x50\x08\x9b\x28\x1b\xf5\xbc\x2d\xa6\x6e\xf4\x9a\x02\xfb\x8a\x4d\xca\x9c\x93\xf5\x4f\xac\xaf\x50\xac\x65\xc4\x59\x80\x7f\xc4\x10\xe0\x86\x99\x9d\x3e\x1e\x0b\x08\x23\xe5\xeb\x22\x64\x4d\xd6\x61\x90\x13\x16\x03\x86\x32\xbc\x2c\xef\x19\xe6\x20\xb2\x05\xba\x36\xc5\x8f\xf6\x20\xca\x06\x10\x85\x9d\xf9\x23\xd8\xda\x8f\x28\xcf\x88\x1e\xbc\xbb\xb2\xbf\xbe\x3f\xef\x65\x6c\xc1\x0d\x93\x50\xcb\x60\x5e\xa9\xef\xcb\x98\x0d\x37\x1c\xa2\x78\x6f\xe3\xb9\x1b\xf6\x63\x25\x94\x1f\xa8\x12\x7d\xe0\x0e\xe3\x25\x1e\x47\x70\x19\x29\x3c\x29\xed\xf6\xf7\x15\x9e\xa9\x82\x80\x23\xbb\x2a\x61\xd2\x15\x34\x64\xde\x3f\xb7\x1c\xd5\x9f\x4f\xac\xaf\xc5\x1e\x22\x64\x31\xac\x74\x2f\xa5\x3c\xa0\xa7\xef\x93\xa6\xa7\x2b\x33\x6d\xe6\x81\x08\x0d\xe3\xd5\x6f\xe7\xc2\x78\xb6\x09\x67\xc3\x0e\x86\x75\xf3\x2c\xe0\xcb\xb8\xc4\x66\x0c\x77\xa2\xaa\xc9\x1d\xc1\xc7\x07\x72\x5d\xb3\x02\xed\xfe\xee\xc5\xf7\x9f\xd2\x89\x7b\x4f\x81\x8c\xcf\xa1\x34\xa3\xf3\x6f\xbe\x50\xcc\xe3\x89\xce\xc1\xf7\x16\x18\x5c\xe4\x8d\xea\x8a\x2f\xf2\x8e\xe9\x65\xd0\xb0\xdd\xe6\x1d\x2b\x6d\x4d\x1b\x9e\xcf\x86\x1d\x9b\x18\xd2\x64\xb1\xc8\x6c\x2f\x81\xe9\x99\x1e\xfd\x3d\x8a\x95\x84\x0c\x0f\x55\x57\x7f\x1b\x72\xb8\x3d\x0e\x68\xf6\x9e\xdb\xbf\xd6\x29\xb1\x62\xed\xc3\xdc\xf1\x24\xd6\xf4\x7a\x5e\x80\x37\x71\x1c\x95\xb0\xe9\xb1\x8b\x9e\x7a\x92\x62\x7f\x9c\x05\x25\x10\x2d\xcf\xdf\x48\xe0\x73\xa8\xf9\x08\xf1\x51\xf0\xbc\xf8\x52\x82\xba\xb6\xca\x4d\x6c\x08\x92\x61\xd9\x59\xa4\xbd\xb0\x18\x8f\x48\x6b\x1a\x8f\x59\x9f\x85\x1b\x46\xbf\xd2\xdc\xdb\x55\x13\x88\x55\x0f\x37\xc0\x84\x77\x2b\x1a\xb9\x12\xa9\xea\xe7\x03\xc5\xdd\x19\xda\x54\x7b\xc7\x59\xcb\x66\x47\xc8\x81\x61\x0d\x4a\xba\xbe\x35\x73\x76\x79\x85\x73\x57\x9a\x34\x12\x59\x96\xbc\xc3\xa7\xbf\x92\xaa\x87\x07\x0b\xf8\xc9\x17\x65\x9f\x8b\x05\x87\x67\xa8\x6a\x0d\xe7\x7e\x5b\xda\xbd\xd9\xba\xd0\xfd\x2e\x0c\xde\x61\x3a\xb5\x9c\xbf\xa6\x78\x87\x05\xae\x47\xdb\x72\x51\x5d\x93\x54\xfb\x8e\xe6\xaa\x96\xe8\xe8\xe6\xfb\x71\xef\xf5\x30\x37\x12\x38\xb3\xf3\x31\x6d\xb8\x49\x4b\x66\xb8\x3e\x74\x27\x1c\xa1\x67\x08\x3a\x75\x51\xd5\x30\x7c\x9f\xe9\x15\xbb\x82\xec\xfd\x15\x6f\x32\xa9\x3a\x5b\x7f\xc9\x3a\x18\xf5\x21\x0c\xa7\x2f\x4d\x7f\x29\x67\xd7\xaa\x66\x78\x7f\xc1\xf5\x85\x23\x39\x76\xb8\xb9\x89\xdf\x0f\x80\x1b\x0a\x2e\x25\xea\x32\xfc\xe3\xd8\x7d\x5f\xc9\xc2\xd5\x6a\x8f\x39\x40\x64\x33\x1c\x75\x63\x13\xc8\x64\x1b\x7e\x88\xe8\xda\xed\x70\x9c\x42\xfb\x72\x7e\x2a\xcd\x91\xd2\xb8\x2b\xf1\xe0\xce\x26\xbf\x93\x17\x03\xf8\x98\xb3\xa3\xdd\xb3\x2e\x3a\x7b\x4a\x8e\xdf\xa4\x5c\x35\xb7\x6c\x41\xb5\x9b\x56\xa3\x29\x19\xf7\xcd\x1f\x00\xda\xa9\xdf\x04\x48\xb7\x6d\xe4\xb2\xde\x85\x7e\x8e\x81\xe4\x5c\x83\x47\xf5\x46\xbe\xc6\x20\x5b\x0d\x71\xeb\x82\xdd\x8e\x41\xe6\x4d\xc1\x73\xf6\x92\xfe\x8c\xcd\x6c\xee\xfd\x3b\xb3\xb5\x61\x2d\x6f\x39\x64\x9c\x78\xa0\x72\x06\x51\x67\xb9\xbe\x96\x78\x79\xac\x60\xe2\x60\x46\x4e\xe4\xf9\x96\xab\xbc\x9a\xc1\xb7\x32\x51\x81\xe2\x09\x61\x05\x10\x3f\x3b\x3c\x6e\xd7\x57\x6e\xc2\x88\x3b\xc3\x3e\xc1\x0d\xc9\xfa\xf5\x56\x94\x03\xcc\x26\x8e\xa1\x24\xc4\xfa\x01\x2b\xd7\x6c\xe9\x32\x37\x41\x33\x2c\x6d\x25\xbc\x39\xc7\x3a\x22\x1e\x80\x18\x94\x06\x22\xda\x95\xdc\xf6\x08\x2e\x9c\x7a\x99\x9a\x83\x9d\x30\xc2\xc6\x3d\xd2\x0b\xc2\x8c\x20\xb9\x1a\x3c\x82\xf0\x4e\x8c\x00\xb2\x50\x1c\x43\x19\x49\xc1\xbd\xc1\xf1\x4d\xc4\x3e\x02\x06\x1c\x3d\x4c\x88\x8e\x6a\xd8\x72\x31\xb2\x30\x63\x35\x9b\x4a\xe0\xd5\xc0\xb8\x62\xbb\x53\xc0\x0c\xf9\x25\x21\xda\x7f\xc5\x24\x41\x8a\x6e\xde\x16\x16\x99\x53\x19\x33\xdf\x76\x04\x03\x0e\x23\x44\xe5\xeb\xae\xb1\x2a\x68\x23\x21\x90\x4f\x7c\x65\x82\xe6\x1b\xba\x83\x1a\xbf\x58\x8d\xf3\xc7\x29\xcc\x8b\x77\x5b\x66\xcf\xc2\xeb\xad\x1d\x0c\xf9\xe9\xbf\x5f\x9e\xbd\x3f\x48\x3f\x1f\xde\xde\xde\x1e\x72\xf1\xc3\x5d\xbb\xe6\xe0\x2b\x05\x47\xfe\xfc\x9f\xa7\xef\x0e\xd2\xb2\x5f\x3c\x9b\xa5\xa7\xc2\xb5\x3d\x33\x54\x1f\x02\xf8\x07\xe1\x40\x9e\x18\xc4\x1f\xe7\xe6\xba\x62\xd4\x9a\x19\x86\x88\x0e\x85\x3b\x9e\x3d\x73\x0c\xd7\xc9\x14\x07\xf1\x40\x50\x58\xb4\x25\xfc\xaa\xf1\x11\x64\x90\xd4\xf0\x69\x2a\x66\xdc\x10\xa4\xa2\x76\xb4\x1b\x6f\x17\xfa\x78\xda\x00\xc4\x7c\xff\x8e\xe1\xf5\xe7\x0d\xad\x3c\x71\x6e\x17\x66\xcb\x29\x71\x29\x3e\xd8\x8a\x36\x98\x79\x69\x13\x51\x16\x3f\x0d\x0b\xe3\x06\x15\xde\x2b\x7a\x9e\xfe\x3b\x9f\xe9\xf2\x44\x09\x6d\x71\x96\xd1\x16\x80\x67\xc3\xc2\x88\x44\x1f\x68\x3f\x34\x00\x89\xaf\x6f\xda\x97\xcf\x73\x1a\xd8\xa8\x12\x35\x86\xb1\x43\x36\x31\x61\x67\x1c\x03\xad\x49\x75\xe3\x22\xf1\x89\xfa\x74\xb6\xe1\x45\x2e\x4f\x1d\xe8\xb5\x2a\x3b\x6e\x9e\xc2\x43\x2a\xd7\xc7\x26\x51\x14\xf0\x47\x80\xaa\x09\x6b\xac\xfc\x0a\x63\x4a\xf5\xb9\x87\x72\x98\x11\x3c\x52\x57\xf6\x88\x6f\x36\xb5\x16\xc5\xd6\xe3\x66\xcd\xaf\x1e\xe3\x6f\xba\xfb\x88\x20\x27\xb1\x21\x22\xee\x01\xd6\x11\xeb\x0b\xd3\x9b\xe1\x6c\xc4\x9b\xbc\xe4\xa7\xbc\x69\x24\xdd\x28\xe0\xa0\x8d\x91\x50\xa1\x9a\xdd\x58\x19\xf1\x2d\xec\x93\x9f\xc4\xfd\xdf\xf6\x75\x0b\x7b\x8a\x00\x3b\x27\x2e\x2d\x96\x46\x6d\x95\x82\xef\xc6\x4b\x94\x11\x22\xeb\x28\xe4\xa8\x2c\xd7\xc6\x1e\xbe\x0c\x82\xa8\x50\x7c\x9d\xdb\x6e\x8e\x8e\x62\x62\x85\x3b\xbd\xd4\x6a\x11\x4e\x24\x12\xcb\x20\x73\xf8\x5a\xe4\x70\x65\x93\x68\x2b\xcf\x09\x1f\xcb\x57\x88\xad\xed\xba\xb9\xb3\xb0\x61\x27\xf8\xa5\xd1\x4a\xc3\x91\x79\x30\x1d\x94\x87\x9c\xaa\xcb\x8b\xa2\x80\x42\xed\xd0\xc8\xd8\x84\x7d\x28\x2f\xba\x61\x4a\xd9\x26\x4c\x75\xda\xcd\x5e\x84\x02\x85\x6d\x3e\x8e\xb1\x22\x6f\x85\x69\xf4\xad\x00\x35\xb8\x3b\x1a\x0e\xe0\x2f\xc1\x2b\x1d\xaa\x83\xd4\x6c\x46\x71\xdd\x08\xb5\xfe\xc8\x1b\x66\x6a\x14\xe3\x70\x57\x0e\x6a\x18\x96\xcb\x8f\x74\x6f\x58\xae\xb0\x68\x18\x9b\x2b\x28\x8a\x7d\xd3\x21\x61\xf2\xf8\x37\x9a\x96\x71\xe4\x2d\x3f\xd4\x2f\x08\xbe\x35\x3d\x73\x43\xc5\xe3\xc1\xa9\xbe\xcf\xfb\xa3\x08\x07\xf7\x05\x61\xb8\x06\xaa\xf9\x97\xe8\x20\x53\x7d\xf1\x48\x09\xb0\xfb\x90\x2f\x48\x51\x5d\x5f\xcf\xe6\x2d\x89\xe0\x1c\xeb\x0a\x0f\x34\x32\x67\xe7\xdf\xe9\x25\x7e\x0b\x08\xfb\x00\x83\x2a\xe4\x43\x12\xf5\x06\xc3\x73\xf5\x63\x95\x44\x38\x60\x0e\xdf\x85\x3b\xa1\x1c\x71\xc6\x7c\xdf\x20\x68\xa9\xe4\xcc\xa4\x08\x1e\xdf\xe2\x2f\x44\xe9\x72\x8f\x6f\xa1\xd0\x25\xa7\x04\x60\xdd\x76\x4d\xd2\xab\x3e\x42\x78\xc9\x3f\x70\x0d\x36\x80\xd8\xd5\xa4\xc7\x96\x85\xc1\x7c\x90\x9f\x21\x14\x57\x69\x53\x67\x3b\x2a\x6e\xf0\x88\xdb\xab\x88\xde\xde\xb4\x09\x0a\x35\x38\x02\x23\xb2\xaa\x20\x5b\x7b\x90\x30\xaa\x0f\x41\xd8\x9c\x78\x08\x45\x34\x18\xd6\xcb\xb7\xef\xe5\x27\xae\xf2\x6a\x78\x5d\xdc\xe5\x65\xef\x5b\xc9\xd2\xa0\xba\xdb\x2d\x62\x72\xca\x55\x5a\x82\xe3\xbc\x34\x48\x36\x3f\x45\x09\x25\xe8\x6e\xf3\x4a\x1d\x7c\xeb\x77\x43\xbc\xc0\x39\xf7\x5e\xb2\xe1\x52\xdf\xdf\x2c\xed\x21\x04\xbe\xf1\xeb\xfd\x1d\xa9\x06\x2e\xa2\x50\x86\x10\xd3\xf1\xb9\xda\xc4\x2e\x30\xcf\xa6\x2e\x32\x5b\x9e\xdc\x3f\x17\x5b\xb3\x3d\x3f\x8f\x5f\x0e\xa2\x68\xf3\x6b\x38\xc3\xf1\x5f\x97\x4a\x03\xf3\xc5\xce\xdb\xf2\x70\x58\x8c\x26\x4f\x48\xea\x12\x1f\x2e\x5d\x9d\xd9\xf8\x8f\x4b\xcb\x57\xe2\x48\xe1\x67\xc6\xcf\x98\x39\x43\xd3\xfa\x7a\xdc\xa5\x5d\xc5\xc6\x74\x5d\x88\x83\x06\xb1\x0a\xfc\x63\x3d\x58\x23\xb8\x91\x1e\x8e\x35\xf4\x92\x43\xe0\xc1\x6e\x95\x3a\xfc\x70\xd0\x86\x5e\x82\x8a\xe9\xdb\xa8\xb3\xa8\xdf\x51\x69\x11\x5f\x4a\xa3\x46\x3c\xb0\xcb\x12\x3a\x42\xf2\x48\x2c\x58\x76\xfe\x68\x09\x11\x1c\xa2\x9a\xa5\x39\xb7\xc8\xab\x0d\xd5\x7f\x23\xef\x8b\x49\xf5\x24\x99\xb9\xa0\x67\x24\xa4\xd5\x12\x77\xc9\xf2\x60\xdd\xb1\x20\xeb\x51\x19\xff\x9a\x90\x1d\xa9\xfa\x9b\xff\x94\x0f\xa9\x6f\x11\x06\x14\x60\x11\x90\x83\x40\xca\xd8\x83\x0e\x44\x3b\x8e\xa5\x8e\x77\x19\xcb\x89\x1d\x64\x02\xb2\xd0\xe5\x7c\x2e\x5f\x2e\x87\xb5\x0b\x11\x91\xdf\xc9\x17\xdb\x0e\xc7\xd4\x34\x0e\xcb\x47\x79\x87\xc3\xb9\x0e\xe0\x1d\x02\x7e\x2d\x9f\xf0\x09\x45\x43\xb2\x4b\x2a\x0e\x5f\x79\x1f\x51\x8a\x99\x1b\xfd\xb3\xb7\x87\xd8\xbe\x7c\x37\x86\x6e\x8e\xae\x39\x25\x14\x4f\x32\x23\x6a\x67\x07\x32\x5b\x29\xf0\x20\x8b\x97\x0b\xa8\xc7\x2f\x18\xb8\x72\x8e\x16\x9a\x08\x87\x1e\x2a\x3e\x66\x9a\x00\x96\xad\x50\xb3\xbc\x79\x7a\x08\x33\xbd\xfb\x59\x3b\x43\x97\x31\x44\x59\x66\x4b\x8c\x3b\xb1\x21\x92\xb9\x67\xaf\x1b\xb5\x16\x1e\x7b\x48\x13\x0f\x6c\x6e\xc3\x35\x10\x3b\xa0\x05\xf5\xa8\x08\xc2\x1c\x54\xd7\xc8\x48\x04\x19\xd5\xa5\x0e\xbb\xc1\xba\x32\x3a\x70\xcf\x73\x69\xff\xf5\x71\x53\x6c\xcc\xf6\x9d\x24\xbf\x35\xed\xf2\xa3\x7f\x09\xc6\x59\xc1\x23\x43\x36\x6c\x21\x0c\xe3\x22\xb9\xef\x01\xf4\xd1\xdd\x7d\x8d\x46\xc0\xaf\x79\x99\x8e\x5f\x96\x17\x4b\x94\xbc\xfe\x05\x47\x4c\x8b\xa2\x36\xb3\x18\x22\xf2\x08\x85\x7a\x48\x86\xcd\x49\x68\x0f\xef\x77\xf7\x41\xef\x12\xab\x77\x14\x87\x9f\xe0\x0f\x7e\x27\xa4\xe2\x83\x2b\xda\x76\xc4\x19\xe4\x2d\x12\xb0\x0f\xb1\x3f\x08\x3f\x51\x22\x36\x45\xfa\x9b\xe0\x1d\x05\x35\xbc\x73\xaa\x7e\x69\xfa\xe0\xad\x86\xe8\x6d\x85\x20\xe6\x09\x5e\x3d\x89\xdc\x3a\xb9\x72\x60\x65\xc2\xe1\xdb\x3d\xa4\xa3\x9d\x10\x14\x22\xf5\x3e\xe8\x28\x44\x19\x73\x07\xb9\x2a\xc0\xf3\x9f\x8b\xf3\xac\x5e\x20\x57\xa2\xc2\x4b\x2c\x75\x74\x3b\xb2\x9b\xf9\x66\x02\x5e\xb3\x12\x6f\x70\x5f\x0c\xaf\x54\xb3\xa3\xe9\x4f\x02\x1f\xc5\x09\x52\xf3\x44\x2e\x21\x06\x25\x39\x5d\x93\xa6\xbb\x8e\xec\x15\xa8\x88\x35\x84\x9f\xf6\xbc\x25\x31\x7e\x79\xe8\xeb\xa3\x44\x8d\xeb\xb8\x3f\x4e\xd4\x1f\x75\xcd\x9c\x7e\xd3\x20\x34\xca\x0e\x1e\x37\x70\x59\x53\xaf\x1c\xfc\x11\x8f\xc5\x18\x34\x60\x4b\x11\x0a\x5c\x4d\x5f\x7a\x20\xab\x8e\x90\x44\xa9\xff\x9a\x1f\x64\xfc\x56\xcf\xb0\xd7\xa3\x28\xff\x51\xa7\xbf\x2e\xda\xff\x5e\x07\x86\x88\x57\x0c\x8d\x14\xa3\x10\x9b\x18\xe0\xbd\x45\xe2\x80\x9b\x61\x87\x9d\x59\x3a\x70\x20\xd0\x33\x47\x09\xb5\x29\x47\x53\x0f\xc7\xdb\xdc\x73\xf0\x7c\x5f\xe0\xcd\x61\x2f\x99\xc7\xb8\x30\x02\x61\x27\xef\x2d\x11\xca\x25\xcd\xe0\x10\xf3\x8f\x07\xe3\x9c\x3e\x4f\x64\x23\xc6\xad\xd9\x6e\x21\xc7\x18\xfe\xbc\x45\x8c\x15\x52\xc3\x97\x68\xac\x9e\xd1\x7a\xcc\x41\x02\x15\xe4\x0e\xde\x86\x52\xae\x3d\xf3\x4f\x0b\x65\x51\x00\xce\x53\xff\x78\x91\x8f\xc5\xf9\x83\x2b\xa6\xae\x85\x16\xbd\x7b\x90\xee\x39\x25\xae\x0d\x6c\x25\x1a\xa6\x07\x92\xdf\x90\x12\x27\x73\x86\xe5\xe3\x36\xf4\x45\xde\xb6\x59\x97\xae\xa3\xe9\x45\xc3\xce\xa1\x06\x12\x5f\xa2\x8f\x0b\xba\x32\x2e\x5d\x15\x7f\x0b\x8b\xe8\xd2\xe5\x2d\x26\x44\xca\x08\x52\x75\xb7\x0c\xe6\x4a\x24\x6b\xad\x1d\x8a\xca\x0f\x43\x68\x79\xe1\x57\xf7\xd5\xf7\xfc\x5a\x10\x36\xd5\x19\xee\xe4\xcb\x5b\x47\x9a\x12\x37\x2a\x69\x2c\xe3\x68\x0c\xe8\x54\xfc\xcd\x35\x4a\xf0\x38\x7f\x10\x8e\x0f\x7b\x8a\x0b\xc4\x67\x8f\x7d\xb1\x88\xae\xb1\x20\x6a\x39\x74\x8d\xe3\xd3\x49\xad\x10\xf1\x7d\xb3\x72\xa9\x22\x6a\x37\x84\xf8\x92\x86\xe1\x30\x3f\x6c\xee\xc0\x4c\xb8\xb0\xac\xa9\x6d\x59\x62\xe7\x4b\x2b\xf2\x86\xba\xeb\x87\x7b\xa5\xdf\xf7\x23\x84\xf8\x92\x7e\x70\x2b\xb8\x9c\x2c\x2a\xdf\x3d\xfd\xc9\x0b\x7b\x1c\x23\x72\x48\x1a\x76\xd1\x07\x8a\xbb\x0a\x76\x72\x38\x75\x15\x03\xc9\x84\x4f\x4c\xc6\x5b\xaa\xe4\x88\x0f\xce\x84\xf0\x20\x0e\x96\x93\xe1\xb3\x1f\x66\x02\xb8\x05\xce\x25\x1d\x68\xe0\x3a\xe9\xc1\x26\xf7\x25\xe9\x97\x17\xf6\x20\x7d\x29\x6f\xd0\xcc\x87\xb7\x64\x81\xb3\xc0\xd1\x22\xf9\x85\x9b\x0a\x44\x3f\x9b\xc9\x02\x10\xde\xb1\x83\x17\x58\xd0\xea\xb8\x32\xc7\xcc\x01\xe5\x98\xf8\x18\xce\x56\x6c\x28\xb7\x05\xe7\x09\xcc\xb6\x0f\x4c\x9a\x75\x8e\x6c\x80\xe2\xa3\xf1\xd0\x71\x94\x03\x7e\x37\x9b\xc1\x8b\xf3\xfb\x55\xa4\x71\x57\xfc\xbe\x2e\xcf\x09\x3a\x82\xd9\xab\x26\xcd\xc2\xa5\x3e\x26\x10\x4f\x76\xcb\x16\x17\xe4\x6d\xae\x99\x59\x04\xa4\x80\x0a\x7f\x70\xa3\x64\x83\xc5\x80\x1b\xc0\x9f\x84\x2a\x7a\x72\x1f\x53\xf8\x8a\x0e\x80\x6d\xdc\xdf\x03\xb0\x05\x89\xb6\x42\xdd\x08\x58\xc0\x7d\x1d\x91\x35\xff\x15\x1d\x01\xdf\xf8\xc2\x8e\x1c\x58\x2f\xf4\xa1\xb0\xa2\x98\x5c\xff\xf7\xf5\x6f\xa0\x08\x81\x38\xa3\x97\xeb\x8c\x19\xc0\xcf\x0a\x9a\xda\xa4\x9f\x55\x60\x70\x9e\xcd\x86\xab\x24\x70\x14\x0b\x56\x4a\xe0\x93\x6a\x7d\x81\x4b\x98\xfa\xee\xeb\x2e\xe7\xab\xaa\x69\xde\xf1\xbc\x46\xdd\x87\xfe\xfd\x71\x48\x4f\x76\x53\xee\xdb\x3b\x95\x74\x18\x23\x71\x44\x52\x1f\x1e\x52\x74\x3a\xb8\x46\xc8\xb3\x81\xbf\x61\xae\x3e\x26\xfc\x04\x2f\x5e\x5c\xe6\xf5\x6f\xdf\x89\xd8\xca\xe4\x78\x18\x6f\xca\xf9\xc7\xe4\xd2\xe1\xe3\x72\xf7\xbe\x04\x18\xbf\x15\x39\x7c\x3c\xb2\x93\x58\xed\x4b\x13\x11\x97\x3b\xbd\x26\xa6\xae\xa4\x8c\xf1\x3b\xc2\xc1\x86\x4d\xdf\x9c\x90\x6c\x9a\xba\x12\xaf\xb5\x53\xf9\xaa\xf8\x25\xc0\xf0\xae\xe3\x2b\xfe\x21\x6f\x64\x68\x0a\x5f\x6d\x4b\xfa\xa6\x47\x28\xe4\x2b\xfe\xfb\x43\xfa\xb8\x48\xfc\xd0\x61\xd5\x66\x03\xdd\x42\x6c\xa3\xf2\x1d\xe4\x07\xcf\xd0\xe1\xa6\x76\x6b\xef\xea\xf9\x1a\xd0\x4d\xd8\xe0\x77\x41\xb7\xb5\x93\xa8\x74\xd7\x4d\xb5\x68\x17\x18\xe1\x4b\xc1\xf6\xff\xb9\x59\x67\xf8\x41\xf9\x82\x1f\x94\x17\xcb\xe5\x41\x90\x10\x4d\x48\x98\xb1\x75\xef\xb6\x44\xc9\xf1\x56\xea\xd3\x25\x20\x73\x94\xc4\x71\x57\xa3\x84\x7c\x31\x6a\xc5\x4e\x60\xc2\x34\x73\x1e\xf6\x29\xe6\x46\x1c\xd5\x1e\x3f\xde\x11\x66\x89\xbf\x7c\x94\x24\x77\x33\x06\x23\x11\xbb\x70\x98\xb6\x6e\x96\xfc\x54\x32\xac\xcb\xf1\xf0\x54\x5e\x8f\xeb\xb4\x8b\xc0\x51\x15\x88\x4d\x14\xa6\xe0\x30\xb8\xcf\xbb\xb8\x34\xd6\x67\x98\xa0\xb7\x57\x47\x80\xa4\xbf\xe7\x8b\x95\x86\xa5\x98\x20\x24\x53\xc3\x1d\x31\x89\x2e\x3e\x05\xd9\xdd\x56\x12\x28\xf7\x12\x1f\x93\x30\xed\x0e\x56\xc7\x5d\x1d\xe4\xf2\xe5\x7a\x0e\xe4\x80\xf7\x4d\x1a\x0d\x2b\xcd\x37\xed\xdd\x5b\x26\xe9\x19\x96\x63\x77\x6f\xa1\x60\x5f\x64\x6f\x6e\x7d\x3f\x45\x4b\x06\x7e\xfa\xd3\x1b\xa4\xaf\x59\xb7\x5a\xf5\x92\x0a\x1e\xac\xef\xbc\xe4\x91\x23\xe8\x87\x7a\x2b\x58\xf6\x17\xd5\x31\xe8\xa5\x87\xf0\xcf\xea\x7f\x75\x57\xc1\xff\x99\xdf\x53\x6f\x06\x9d\x8c\x78\x9e\x81\x3c\x50\xc3\xa0\x8b\x93\x55\x7c\x7d\x27\xb1\xd3\xd6\x4b\xd9\x75\xf6\x74\xf2\x0e\x0f\xe0\xb4\x85\x2a\xae\x6b\x76\x49\x7d\x6d\x6e\x72\x0f\x54\xb9\xaf\xd7\xf7\xd6\xf9\x15\xc3\x58\x56\x7d\xb6\x5c\xf8\xee\xf3\xe3\x5f\xed\x9c\x19\x37\x6f\xee\xe5\x42\x02\xca\xd4\xb1\xd1\x72\xba\xf8\x7d\x08\x46\x87\xd8\x5c\x31\x55\xfd\xbe\xbe\xb5\x65\x77\x57\x2f\xd8\x50\xc7\x6f\xa5\xa9\xcb\xc0\x45\x29\xc7\x2c\x4f\x66\x94\xf6\x6d\xae\x11\xda\x4b\x1c\xae\x77\x4f\x24\x3a\xf0\xd3\x45\x8e\x9b\x7d\x3f\xd0\x56\x5c\x1f\x82\xb5\xa3\xb4\x49\xb6\x8c\xad\x67\xf7\x36\x34\x18\x4b\xc0\xd7\x03\xdc\xb6\xe8\x4a\x5f\x7e\xd1\x08\x02\x07\x99\x70\x18\x4c\x28\xca\xc4\xc0\xf2\x06\x0f\x11\xa7\x4f\xd9\xd9\x89\x9f\x73\x63\x4f\x2e\xf5\x90\xd4\x4d\x1b\xb1\xd1\x9d\x81\xad\xd8\x33\xa0\xb0\xdd\x7b\x66\xe8\x49\xd4\x8b\xaf\x1b\x23\xbf\xf2\x30\x5a\x08\x17\x48\xd6\x57\x1f\xfe\xd0\x72\x98\xaa\xf8\x5f\x5d\x0e\x6d\xd0\xab\xd1\x0b\xa0\x81\x78\x80\x38\xf7\x84\xbb\xbe\xc2\x36\x71\x29\x71\xef\x3f\xe0\x77\xc8\xae\xf5\x89\xd3\x65\xd3\x36\x44\x71\x12\x88\x58\x9f\xea\x7c\x6d\x69\xdd\x44\x01\x9c\x58\xdc\x65\x3b\x0d\xce\x60\x65\x4e\x91\x4c\x62\x1f\x47\x36\xf0\xa5\x20\x3c\x59\x19\xb6\x43\x2f\xf4\xf4\x02\xd2\x94\x95\x3a\xb2\x8c\xa0\xa4\x96\x69\xe6\x7c\x5d\x4a\x83\x56\x01\xf8\x4c\x53\x02\x58\x9c\x13\x72\x74\x5f\xa2\x80\xdd\x36\xe3\xa1\x22\x66\x81\x24\xa7\xef\x90\x9c\x5e\x71\xf2\xb8\x05\xeb\x95\x2b\x36\xe8\xd4\xbe\x72\x1c\xa6\x71\x58\xe6\x15\x47\x73\x1c\xc2\x1b\xe6\x56\x65\xbe\x1d\xe1\xed\x0d\x25\x8e\xb0\x06\xc8\x31\x02\x00\xbb\x1f\x0b\x61\xa9\xaa\x80\x12\x1d\x96\x78\x5b\xac\xf7\xb5\x51\xc1\xbb\x68\x08\x5f\xb3\x10\xbf\xa7\x84\x4a\x53\xc3\x5e\xe9\xd9\xde\xa8\x57\xcd\x9c\x63\x90\x74\x06\x7d\x26\x3f\x03\xa8\x79\xd3\xf4\xa4\xcb\x11\x28\x89\x91\x70\x34\x15\x34\xbd\xb4\x74\x16\x84\x17\x9f\x46\x98\x12\xe8\x31\xaa\x04\x7a\x3f\xae\x36\xfc\x48\x05\xb5\xd5\xee\x16\xfd\x8e\x78\x8e\x6b\xf0\xf4\x92\x1f\xb7\xb8\x74\x19\xa3\x16\x47\x25\x43\x0a\x1d\x16\x9e\x6a\x79\xc1\x4f\x8c\x4c\x36\x7d\xcc\x39\xf7\xb6\x3d\x2a\x1b\x36\x3e\x2a\x3e\xb5\x52\xf0\x44\x34\x33\xa5\xf9\x6e\xf1\xa9\xec\xf9\x2a\xf8\x2a\x83\x53\x47\x58\xd7\xb9\x81\xa5\x2f\x01\x96\xbe\x21\xb0\xf4\x0a\x16\xb7\x89\x5a\x69\x1f\xdd\x94\x7d\x0e\x27\xa4\xa0\x96\xd7\xc7\x34\x03\x92\x3c\x55\x0a\x96\xb8\x4c\xf5\x1f\x5d\x85\x2c\x92\x06\x35\x9c\xc1\x58\xa7\x2a\xd1\x91\x03\x99\xaa\x8d\x63\x0c\xcb\x86\xbe\xb8\x5b\xac\xc5\xff\xe5\x73\xcf\x7d\xb8\x90\x94\x00\x16\x3a\x1e\xc1\x1a\x8f\x84\x1f\x0a\xe2\x98\x10\xf8\x55\xcc\x28\x85\x83\x79\x60\x61\x5c\x04\x77\xce\xbe\x3b\x53\x80\xdb\x5c\x16\xd3\x5e\x48\x6b\xde\x00\xad\xe5\x21\x9c\x36\xda\x09\x2a\x85\xad\x88\x82\x2d\xb7\xa6\xf4\x39\x41\xa2\x39\xf8\x39\xe0\xd2\x94\x3d\x26\xc8\x69\x0a\x8b\x97\xb1\xfd\x89\x8a\x3f\xa4\x75\x8f\xb9\x0b\x98\xe8\x15\xd0\x26\x24\xc5\x24\x61\x9e\x89\x23\xfb\xb6\xbc\x28\xee\x8a\xa4\xf9\x0d\x94\xfe\x6a\x9a\xc5\xc3\x72\x01\xc0\x35\x1d\xce\xd6\x6d\xb9\x64\x43\x85\x5c\xc3\x46\xdc\x29\xdc\xa7\xb9\x40\xb2\x69\x37\xe1\x0d\xa9\xab\x06\xa3\x0c\x06\x16\x3b\x25\xda\x30\x1f\x8e\xc9\x35\xd3\x3a\xc2\xe8\xb0\x3a\x32\xa8\x2e\xe6\x95\x17\x9b\x1d\xcc\x3b\x4f\x20\xe5\x4d\x17\x39\xd8\x5c\x87\xa5\xa1\x57\x9a\xa2\x36\xa8\xe1\x1d\x74\xce\x00\xcb\xee\x4d\x6a\x67\xea\xc6\x61\x01\x9b\x5c\xe4\x5a\x07\x4c\xed\x70\xbb\xdd\xd5\xf6\xe6\xb5\x91\xc1\xbe\xf7\xe0\xed\x21\xba\x2f\x7c\x12\xde\xe3\x22\xa0\x14\xf8\xb5\xc4\x34\xb2\xc9\x3f\xeb\x03\x27\xfe\x05\xa5\x53\x7d\x2b\x29\xb8\x7d\x7a\x6c\xb9\xef\xf8\xd9\xa4\x7d\x65\xcd\xc6\xf7\xf4\x92\x18\xcc\xe1\x77\x78\x32\x90\xd6\xc3\x72\xdd\xcc\x73\x76\x62\x91\xc7\xb0\xf0\xf2\xd2\x33\xad\xa3\xea\xb2\x90\x28\x87\xef\xe8\xe5\x03\x22\xa5\xd1\xaf\xaa\x39\x0d\x4a\x14\xfd\x71\x01\x03\x90\x6b\x54\x80\x0a\x5a\x52\x12\x8f\x0a\x21\x28\x06\x67\x08\x85\x36\x6d\xe0\x05\x60\x34\x8f\xf3\x76\xbe\x15\x93\xa9\x63\xf8\xa8\x86\xa0\x0c\x8c\xcb\xb2\x26\x59\xec\x93\xc0\x41\x61\x3d\xf2\xf2\x50\x66\xc4\xf6\x50\x5d\x7b\x1f\x2a\x9a\x24\x19\x6f\xdf\x37\x8a\x11\xd6\x6f\xc4\x79\xef\xf1\x71\x4c\x1b\x88\xbc\xc9\x17\x9b\xbd\xd5\x31\xe8\xa9\xc4\xe5\xe4\xfe\xfa\xab\xc9\x0d\x4b\xa6\x2c\xf3\x22\x76\x3d\xab\x58\xe1\x45\x73\x17\x1b\xc2\x07\x5b\x67\xb7\x5d\x1f\x79\x82\xb6\x04\xb5\x49\x86\x1d\xe0\xd8\x26\xe2\x43\xb3\xa7\x7d\x7f\x46\x8a\x58\x70\x61\xf3\xa1\x75\x2c\xee\x80\x9c\xe3\x35\x6d\xe8\x5b\x15\x1b\x37\xa3\xae\x4c\xb8\x4f\x1d\x0d\x9f\x85\xdd\xe3\x1b\x4c\xb5\xca\xed\xdb\x01\x77\x8f\x0e\xb7\x23\x2e\x8f\x12\x21\xf7\x46\x42\xec\xe6\x83\x24\x7f\xf0\x63\x67\x3e\x62\x82\x05\xe3\x1e\xb6\x17\x2c\xe7\xa8\x35\x29\x31\x7e\x6f\x32\xee\x82\xa4\x8c\x8f\x86\x25\x5d\xad\x87\xa9\xbd\xe6\xa6\xa6\xe0\x19\x4c\x88\x22\xbd\xb5\x96\x36\x7c\x18\x08\x96\x61\xe5\xb3\x83\x2e\x0f\x38\x6d\xd4\x6d\x29\x25\x31\x3d\xed\xa2\xba\x32\x73\xcd\x0a\x7a\x2f\x29\xe1\x0b\x1a\x92\x52\x22\x42\x0f\x73\x1e\x89\xd5\x53\x68\xfa\xd8\x29\x2b\xe8\xa4\x56\x33\xe8\x5c\x50\x2b\xa0\xa6\x37\x8b\xa0\x37\x5d\x49\x7a\x04\xbf\xd4\x48\x2b\xb7\x6f\x16\x8d\x3c\xda\x2f\x69\xbc\x68\x91\xa6\xb0\xc3\x5b\x1a\x92\x8a\x0b\xc5\x7c\xa5\xa4\xeb\x35\x65\x2b\x6f\x68\x9c\xf3\x1b\x1a\x92\x02\xeb\x5d\x01\x7f\x69\x36\xd6\x9d\xbc\x0f\xd3\x6d\xa7\xb2\xdc\x73\xfd\x3d\x05\x13\xb8\x57\xe5\x2d\x3f\xe1\xf1\x83\x46\xbe\xb5\x3a\x10\xab\xb7\x69\xc5\xcf\x79\xbb\xe6\xfe\xf2\x5b\x72\x38\x78\xe3\x63\x88\x1d\xa2\x5e\xf2\x3b\xed\xf0\x38\x20\x96\xb4\x14\x17\x7e\x79\x59\x58\x11\xcf\x62\x90\x06\xf4\x86\xf8\xa3\xc7\x2c\x2f\xd9\xbb\x32\x00\xc1\x88\x00\xe0\x46\x94\xf7\x12\x46\xa9\x9c\xba\xd4\x96\xba\xdc\xbd\xd0\xc3\xa7\x6e\xc0\x20\xdc\x86\xcd\xbd\xe7\xd8\xfd\x87\x15\xc2\x74\x32\xa7\x2a\xd7\x85\xde\xd0\x8c\xc2\x45\xcd\x46\x2d\x98\x9f\x15\xe2\x2d\x3e\xd0\x9b\x6e\x67\x5d\xbf\xdc\x3d\xd4\x73\x3c\xf1\x4f\xa4\x2b\x4f\xfd\xef\x03\xeb\x58\x1b\xd4\x97\xae\x5f\x95\x6c\x3f\xf6\x59\x3c\x55\x4a\x17\x72\xf9\xe4\xb3\xd1\x8d\xc4\x7e\x34\x24\x4b\xec\x47\xab\x19\x47\x7b\x0e\x40\x0e\xfc\x23\x88\x0d\xef\xb5\x59\x97\x33\x63\xa2\x5d\xa5\x48\x2f\x8f\x8c\xe8\x37\xfd\xd6\xde\x35\xbc\x3c\xbd\x3a\xbf\x67\x15\x31\xa8\x52\x38\x20\x03\x32\xe7\x2c\x25\x75\x64\x05\xf4\x6e\xe1\x0d\x64\xc5\xa8\x71\x06\xce\x75\xb2\x74\xba\x69\xb8\xfb\x64\x35\x79\x36\x9c\xa4\x03\x0e\x4d\x8d\x4b\x41\x52\x66\x96\x9e\x92\x3c\x53\xb1\xaf\xa6\xb5\xa6\xfe\x82\xfc\x04\x58\xb9\xcd\x5b\x7b\x1f\x07\x0f\xba\xa5\x4f\x0e\x9e\xcc\x22\xbe\x93\xf5\x78\xfa\x4a\xc3\x84\x5d\xbd\xbb\xa4\xcf\x45\x7b\x27\xce\x08\x3a\xd2\x4f\xd5\x96\xc1\x32\xbe\x53\x26\x02\x35\xa5\x00\xf6\x17\xa4\xd8\xc2\xe7\x53\xeb\xb2\xbd\xe1\x70\x93\x4a\x3f\xe7\x47\xa7\x30\x16\x51\x52\xc8\x76\xb4\x69\xc4\x96\x36\x71\xdd\x77\x82\xa6\xa3\x89\xc4\x75\x63\x9d\xd5\x16\x7b\x0f\xfd\xb1\x7a\x82\xb0\xb7\x43\x99\x5a\x3c\x0b\x0c\xd3\x23\xf9\x2e\x86\x8e\xc4\x3c\xc7\xd5\x87\x7a\x40\x5c\xe6\xa1\x0b\x4a\xb3\x88\x8f\x87\x9b\x76\x5c\xcf\x17\xba\xe8\x85\x95\x05\x02\xd6\x7d\xa3\x9e\x8c\x46\x14\x97\x88\x20\x33\xd9\x5a\xec\xd9\xe9\xb8\x6a\xe7\x35\x31\x2e\x11\x3d\x40\x3d\x42\xec\x84\xeb\xdb\x3d\xee\x6e\x4a\x72\x90\xba\x2a\x77\x3f\x6d\x4f\xd5\x22\x7f\x01\x86\x28\x1c\xfe\x16\x7a\x38\xa9\x07\xcd\x5e\xc4\xf3\x01\xd7\xf8\x45\x02\x39\x50\x0e\xe2\x8a\x89\x2c\x8f\x5d\x55\x65\xae\x60\x98\x03\x99\x2b\xee\xc6\x43\xa2\x97\x58\xa7\xcd\x84\xea\x0e\x98\xd5\x84\x1a\x9f\x33\x2b\x6c\xbe\xdd\xba\xad\x3b\x78\xe2\x1c\x0b\x28\x00\xb9\x11\xd6\x17\x40\xfc\xa2\x01\xde\x02\x20\xb9\x34\x1d\x02\xf1\xdd\x69\x05\x18\x6e\xe9\x9a\xdc\x5c\x5f\xf3\xb3\x8f\xfc\x5c\x89\x46\x06\xe5\x9f\x1c\xbe\xd9\xb5\xaf\xa1\x00\x32\xb6\xe9\xc2\x46\xca\x63\x3a\xd1\xf8\x00\x17\x48\x64\xa5\xd4\xc0\xdb\x1d\xa6\x92\xfb\x7b\xb1\xab\x45\xdd\x0e\xb2\xb4\x21\xce\x0a\x1b\x81\x04\xd9\x36\x4d\x6f\xef\x9e\x06\xe2\xe3\x05\x25\x93\xac\xd0\xaf\x1c\x82\xf9\x08\x7b\x91\xc9\xf3\x8b\x41\x19\x1c\xa0\x2f\xe4\xce\xd5\xa8\x10\xf5\x7b\x5c\x82\xfa\xbd\x07\x5c\xdc\xb4\x4c\xf8\xba\xc4\x2f\xd9\x2e\x5c\x8f\x11\x13\x50\x96\x85\x0d\x58\xd2\x86\x74\x03\x1c\xb8\x8a\xbb\x55\x40\x1a\x97\x6f\xa6\xe9\x82\xa1\xc6\xd2\x62\x90\xc9\xa2\x6e\x9f\x69\x94\xcf\x4c\x5f\xa7\x15\xc9\xb7\x4f\x5f\x6a\xf0\x4f\xa1\xbc\xb0\xd8\x1e\x32\xe0\xac\x50\x98\x0b\x92\xd7\x70\x05\xb1\xdc\x77\xf8\x35\x02\x8a\x66\x6e\x84\x4a\x02\xe0\x3b\x8f\x08\x4e\xa2\x40\xff\x51\xde\x49\x50\x92\x09\xc0\x25\x37\xe7\xc0\xe8\x57\xfa\xf4\x09\x65\x1d\x4a\xd6\x93\x67\xa3\x32\xac\x4d\x6f\x76\x1b\xb9\x64\x5a\xfd\xbd\x94\x87\x1e\x58\x1a\x90\x0c\xb4\x76\xc9\xa7\x31\xc7\x9c\x71\x5f\xd1\x6e\xa2\x54\xe7\xe6\xae\x98\xfb\xa9\x3b\x31\x8f\x89\xc9\xf9\x23\xc8\x50\xfc\xf7\xa9\xa1\x10\xed\x53\x43\xe5\xc1\xa7\x2a\x55\x85\x4b\x88\x52\xbb\x6e\x6d\xab\xe8\xf2\xf2\x5d\xbc\x54\x7d\x6e\xf0\xac\x3c\x8b\x8b\x8f\xf8\x09\x2a\x7e\xcf\xe2\x51\xca\x97\x9a\x9f\x05\x25\x14\xd5\x21\x52\x35\x75\x58\x47\xf7\xb7\x75\xd5\x97\xdf\x3f\x82\x17\xd4\xa3\xbe\x2a\xe6\x8f\x9e\x85\x4c\xaf\xc2\x8d\xbb\x80\xeb\x55\x8b\x3d\xe8\x71\x86\x3b\xb6\x4b\xad\x83\x10\x96\x17\xf2\x4e\x95\x0a\x99\xea\xbd\x1d\x63\xd6\xd8\x91\x17\x26\x1c\x33\x0a\x05\x09\xeb\x17\x5f\x2e\x6d\x83\x0c\x1f\x4b\x1b\xd7\x55\x2f\xac\x9a\x97\x48\xf6\x1d\x94\xf7\xb2\xec\xfd\x2c\xbd\xc7\x66\xdd\xc3\xf3\x57\x6f\x6b\xb9\x9e\xaa\x45\x30\x12\x67\x88\x3c\xe5\xfe\x87\xb6\xc7\x61\xff\x47\xc4\x6a\xa3\xb8\x9f\x68\x55\x9e\x5a\xe4\x5b\x12\xad\x73\x2f\x49\x1d\x4b\x82\xdb\x0f\x24\xbc\x02\xdf\x7f\xcc\xd6\xea\x45\x20\x21\x18\x70\x0b\x92\xd6\xf1\x4d\xd9\xf9\xc1\x92\x60\xe2\x35\xaf\xa8\xd0\x05\xe7\x39\x4d\x6d\xa2\xb0\x45\x66\x71\x13\x6f\x91\x0f\x26\x27\x1e\x01\x86\xb2\x75\x59\x2f\x41\x74\xff\xc9\x3f\x49\x06\xe6\x9f\x0e\x41\x12\xd2\x00\xa6\x6b\xbe\xba\xf7\xdc\x82\x1c\xc0\x82\x4d\x29\x6e\x6a\x1f\x14\x56\x83\x99\x09\x37\xe4\x53\xfc\x9e\xee\xa0\xc2\xee\xe5\xbd\x9a\x6f\xb3\x48\x2b\xa4\x09\xe6\xee\xcd\xcf\xef\xce\x06\x90\x13\x4b\x5b\x73\x26\x58\x81\xe6\x4c\x2c\x7c\xd8\xbb\xc1\x41\x55\x0d\x83\xa5\x1b\x2c\x14\x6b\xc5\xe0\x1c\x48\xe6\xde\xfd\x7e\xc5\x05\xd8\x49\x95\x4b\x20\x9a\x14\x56\x1d\x27\xb1\x60\x8b\x67\xc0\x47\xa5\x3b\x7d\x7c\xd0\x83\xfb\xd7\x18\x34\x6e\x10\x17\x9e\x39\x41\x02\xfb\xa0\x43\x31\xbc\x74\xa6\x31\x2c\x90\x7b\x11\x2c\x47\x54\xde\x3b\x0f\x87\x52\x93\x15\x09\x64\x5e\x10\xe5\xcb\xa5\x57\x80\x1e\xc9\xef\x18\x08\xe7\xb8\x37\xf9\xda\x41\xbd\xd5\x84\x51\xab\x75\xd8\x66\x2d\x6e\x1a\x7e\x0e\xc4\xb7\x34\xe0\x71\x72\x7b\x6b\x7a\x0b\x57\x68\xbe\xdc\x5b\x99\x13\xa7\xc0\x9f\x6b\x92\x81\x1a\x88\xaf\xd9\x20\xb4\x6a\xd7\x4d\x5a\x58\x95\x53\xb9\x8e\xf1\x2b\x22\x2d\x65\x0f\xbc\x9e\x05\xd6\x73\x08\xb6\x92\x4b\x09\x03\x5e\x2e\x1c\x62\xec\x74\xea\xf5\xb1\x43\x8d\x1c\x64\x0d\x06\xb3\xae\xae\x4b\x77\xec\xa5\xa3\x79\x47\x69\x11\xf0\xaa\xef\xb7\x9d\x85\xd1\xc1\x7b\xfa\xe9\x19\xfd\x18\x0c\x22\xac\x4a\x47\x32\xaa\x69\x5b\xe1\x28\x32\xc0\x8b\x24\x4c\x63\xdc\xa0\x75\x2f\x0a\xc0\x75\x33\x1a\xf2\xe0\x65\xab\x77\xa7\xfc\x0a\x7e\xad\x49\xa1\xd8\xe8\x5a\x67\x71\x71\xb2\x65\x86\xd2\x3d\x99\x61\xb0\x27\x9b\xc7\xe8\x6c\xd1\x4a\xf4\x48\xfe\x73\xc5\xee\x7a\x2e\x27\xe4\x0d\x96\xd6\x11\xed\x15\x3b\xb9\x2c\xaf\x9f\x1e\xde\xbf\x83\x2a\x68\xb2\x8c\x89\xb7\x53\x63\x80\xf2\x73\xb9\xd8\x05\x3e\x0a\x3f\xcb\x6f\x3d\x14\xf4\xd5\x34\x76\xab\x64\x57\xe3\xdd\xdc\x73\x49\x09\x60\xa6\x5e\xe0\xb1\xae\x43\xf8\x34\x21\x74\x6f\xfb\xae\x79\x58\x60\x18\xca\xbc\x6e\xcd\x99\x55\x1f\xb2\x58\xcb\x85\xdf\x81\x23\xae\xc1\x22\x0e\x43\x81\x7b\xf7\x99\xbb\x87\x8f\x80\x0c\x02\xa9\x77\xf2\x1d\xbc\xba\x93\xea\x46\xc8\xa7\x2d\xae\xd5\x92\xfd\xb1\xf8\x08\x19\x54\x8d\x37\x92\x8f\xd6\xbe\x24\x0d\x39\x84\x38\xd1\x9f\x11\x4c\x55\x8b\x3a\x20\x59\x72\xb2\xf5\x56\xd2\xb4\xca\xc0\xbb\xd8\x54\x6a\xf7\x06\xb3\xd3\xdb\x2f\x35\x65\x08\x69\x2d\x03\x88\xfd\x7f\x86\xd8\x08\xa5\xcd\x30\x0d\xe1\x70\x03\x17\xf0\x60\x4c\xc3\x69\xb4\xac\x66\xcb\x0c\x7c\x3b\x1b\xf5\xd6\xe9\xc5\x3a\x23\xe6\x2b\xfd\x90\xcf\x5d\xf2\x9b\xe0\xfe\xa3\xdd\xf9\xd5\x03\x1e\x3b\x57\x0d\x7c\x99\xa2\x10\x44\xf2\xc6\x6e\xd2\x96\x75\x10\x6b\x5e\x7e\x45\x85\xa2\x87\xf8\xbe\xf3\x0f\xee\xf1\x7d\x98\xbd\x6f\x14\xbb\x67\x5f\x51\x2b\x3b\xf8\xcb\x21\xde\xe0\xd1\xc2\xae\x5d\x7c\x3b\x2c\xcb\x87\x3e\x31\x18\x67\xfe\x9b\x55\x2c\x63\xb4\x07\x72\x7f\xd7\x47\x69\xe5\x77\x30\xbe\x6f\xe5\x64\xe2\x5b\x19\xe9\x9f\x82\x57\x63\xe3\x17\x7d\xed\x6d\xdc\xaf\xa8\x60\xf0\x90\xaf\x7f\x19\xf7\x6b\x3a\x21\xc3\x18\x3e\x07\x69\x73\x16\x3d\xa5\x16\x56\xa8\xaf\x3c\xee\x19\xd4\xa8\x3a\x19\xdb\x57\xd7\xa6\x23\x1c\x56\xe7\x06\xfa\xf5\xdd\x1b\xbc\x6b\x1c\x3c\xfc\xdc\xd4\x5f\x83\xb7\xc9\x27\xef\x7e\xd7\xa7\xf9\xbe\xba\x5b\x2e\x4a\xb3\xd2\xa9\xfd\x1e\xac\x1a\xa1\xfd\x69\xc2\xf7\x0b\x09\xa1\xdb\x38\x58\x82\xa7\x77\xfa\x11\x76\x03\xd4\x1e\x3e\x61\x3c\x5e\x11\x83\x35\x64\x0f\x9f\xea\x1b\x95\xe0\xbf\x92\x5c\x75\xfa\xc4\x98\xd8\xe1\x1e\xbb\x87\x33\x89\x1f\xf4\x4d\xb3\xfe\x98\xe4\x4b\x1e\x12\xfd\x9f\xf0\x0a\xd6\x5b\x91\x58\xcc\xf4\x99\xc8\x4f\xfe\xfa\x8e\x6b\xfe\x4e\xa3\x90\x72\x64\xf7\xef\x36\x48\x20\xe5\x9d\xf7\x30\x4e\x58\x21\x61\xc5\xa1\xc9\xf8\x67\x81\x9f\x45\x7e\x87\x5f\xb7\xf8\x75\x5b\x96\x9f\xa4\x30\x98\x33\x15\x6f\x6a\x92\x51\x39\xe5\x0e\xbf\xef\xf8\x49\x38\xc4\x8d\x5f\x20\xda\x29\x5e\xde\xb3\x1f\x78\x5f\xaf\xc6\x21\x06\xd2\xed\x07\xa5\x73\xab\x9a\x2a\x9f\x8f\xd9\x33\xed\x4e\x93\xf0\xc5\x0f\x42\x51\xf3\x9a\x24\x9f\x8f\xb1\xa7\xf6\x2b\xab\x50\xbe\x29\x95\xfb\xa1\x89\xf2\x49\x69\x6d\x7e\x9b\xf9\x7e\xe9\x17\x52\x7d\xaf\xf4\x8b\xd0\x5b\xb4\xcd\x96\x5f\xf2\xf8\x98\xd8\xa3\x58\xfe\x35\xac\x13\xca\x33\xe7\x50\x0e\x27\xc4\x06\x53\xbc\x2d\xc3\xa7\x4e\x5b\x8e\x73\x31\x4b\xec\x11\xbc\xaa\xde\xee\x9c\x0d\xcc\x3f\xc0\x28\x60\x3e\xd6\xa9\x5c\x8d\xe3\x27\xf8\x13\x58\xd8\x38\x84\xd1\x1c\x02\x13\x6c\x6b\xac\xe5\xa6\x4f\xff\xf1\x0f\xc0\xd3\xf7\x3f\xff\x99\x9e\xbe\x7c\x96\x96\x9f\x39\xec\x78\x97\x6e\xd4\xff\xc3\xc0\xe8\xf7\xab\x08\x92\xa3\x72\xe0\xc6\x92\x3a\x1c\xc8\x8d\x25\x34\x9f\xfc\xbf\x00\x00\x00\xff\xff\x3f\x79\x83\x11\x42\xc9\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4361,7 +4361,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 51461, mode: os.FileMode(420), modTime: time.Unix(1469428651, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 51522, mode: os.FileMode(420), modTime: time.Unix(1469471710, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/context/context.go b/modules/context/context.go index 6ca7e574f..971d075d0 100644 --- a/modules/context/context.go +++ b/modules/context/context.go @@ -105,6 +105,19 @@ func (ctx *Context) Handle(status int, title string, err error) { ctx.HTML(status, base.TplName(fmt.Sprintf("status/%d", status))) } +// HandleError use error check function to determine if server should +// response as client input error or server internal error. +// It responses with given status code for client error, +// or error context description for logging purpose of server error. +func (ctx *Context) HandleError(title string, errck func(error) bool, err error, status int) { + if errck(err) { + ctx.Error(status, err.Error()) + return + } + + ctx.Handle(500, title, err) +} + func (ctx *Context) HandleText(status int, title string) { if (status/100 == 4) || (status/100 == 5) { log.Error(4, "%s", title) diff --git a/public/css/gogs.css b/public/css/gogs.css index 6c3cb6e89..681a9febe 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1452,7 +1452,10 @@ footer .ui.language .menu { .repository.view.issue .comment-list .comment .actions .item { float: left; } -.repository.view.issue .comment-list .comment .actions a.item { +.repository.view.issue .comment-list .comment .actions .item.tag { + margin-right: 5px; +} +.repository.view.issue .comment-list .comment .actions .item.action { margin-top: 6px; margin-left: 10px; } diff --git a/public/js/gogs.js b/public/js/gogs.js index bf27d1584..5445aa652 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -342,7 +342,7 @@ function initRepository() { // Edit issue or comment content $('.edit-content').click(function () { - var $segment = $(this).parent().parent().next(); + var $segment = $(this).parent().parent().parent().next(); var $edit_content_zone = $segment.find('.edit-content-zone'); var $render_content = $segment.find('.render-content'); var $raw_content = $segment.find('.raw-content'); @@ -404,6 +404,19 @@ function initRepository() { return false; }); + // Delete comment + $('.delete-comment').click(function () { + var $this = $(this); + if (confirm($this.data('locale'))) { + $.post($this.data('url'), { + "_csrf": csrf + }).success(function() { + $('#' + $this.data('comment-id')).remove(); + }) + } + return false; + }); + // Change status var $status_btn = $('#status-button'); $('#content').keyup(function () { diff --git a/public/less/_repository.less b/public/less/_repository.less index 023fab0ef..403bb17b6 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -393,10 +393,13 @@ .actions { .item { float: left; - } - a.item { - margin-top: 6px; - margin-left: 10px; + &.tag { + margin-right: 5px; + } + &.action { + margin-top: 6px; + margin-left: 10px; + } } } .content { diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 269066eb6..471a01728 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -803,11 +803,7 @@ func UpdateIssueAssignee(ctx *context.Context) { func NewComment(ctx *context.Context, form auth.CreateCommentForm) { issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index")) if err != nil { - if models.IsErrIssueNotExist(err) { - ctx.Handle(404, "GetIssueByIndex", err) - } else { - ctx.Handle(500, "GetIssueByIndex", err) - } + ctx.HandleError("GetIssueByIndex", models.IsErrIssueNotExist, err, 404) return } if issue.IsPull { @@ -899,11 +895,7 @@ func NewComment(ctx *context.Context, form auth.CreateCommentForm) { func UpdateCommentContent(ctx *context.Context) { comment, err := models.GetCommentByID(ctx.ParamsInt64(":id")) if err != nil { - if models.IsErrCommentNotExist(err) { - ctx.Error(404, "GetCommentByID") - } else { - ctx.Handle(500, "GetCommentByID", err) - } + ctx.HandleError("GetCommentByID", models.IsErrCommentNotExist, err, 404) return } @@ -922,7 +914,7 @@ func UpdateCommentContent(ctx *context.Context) { }) return } - if err := models.UpdateComment(comment); err != nil { + if err = models.UpdateComment(comment); err != nil { ctx.Handle(500, "UpdateComment", err) return } @@ -932,6 +924,29 @@ func UpdateCommentContent(ctx *context.Context) { }) } +func DeleteComment(ctx *context.Context) { + comment, err := models.GetCommentByID(ctx.ParamsInt64(":id")) + if err != nil { + ctx.HandleError("GetCommentByID", models.IsErrCommentNotExist, err, 404) + return + } + + if !ctx.IsSigned || (ctx.User.ID != comment.PosterID && !ctx.Repo.IsAdmin()) { + ctx.Error(403) + return + } else if comment.Type != models.COMMENT_TYPE_COMMENT { + ctx.Error(204) + return + } + + if err = models.DeleteCommentByID(comment.ID); err != nil { + ctx.Handle(500, "DeleteCommentByID", err) + return + } + + ctx.Status(200) +} + func Labels(ctx *context.Context) { ctx.Data["Title"] = ctx.Tr("repo.labels") ctx.Data["PageIsIssueList"] = true diff --git a/templates/.VERSION b/templates/.VERSION index 38466f9fc..c7d0091be 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.9.54.0724 \ No newline at end of file +0.9.55.0726 \ No newline at end of file diff --git a/templates/repo/issue/view_content.tmpl b/templates/repo/issue/view_content.tmpl index 1d03b53d4..ada98d309 100644 --- a/templates/repo/issue/view_content.tmpl +++ b/templates/repo/issue/view_content.tmpl @@ -20,7 +20,9 @@ {{.Issue.Poster.Name}} {{.i18n.Tr "repo.issues.commented_at" .Issue.HashTag $createdStr | Safe}}
{{if .IsIssueOwner}} - +
+ +
{{end}}
@@ -52,7 +54,7 @@ {{if eq .Type 0}} -
+
@@ -72,7 +74,10 @@
{{end}} {{if or $.IsRepositoryAdmin (eq .Poster.ID $.SignedUserID)}} - +
+ + +
{{end}}