diff --git a/cmd/web.go b/cmd/web.go index 7b67388c2..283b05eb6 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -427,8 +427,8 @@ func runWeb(ctx *cli.Context) { m.Group("/milestones", func() { m.Get("/new", repo.NewMilestone) m.Post("/new", bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost) - m.Get("/:index/edit", repo.MilestoneActions) - m.Post("/:index/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.UpdateMilestonePost) + m.Get("/:index/edit", repo.EditMilestone) + m.Post("/:index/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost) m.Get("/:index/:action", repo.MilestoneActions) }, reqRepoAdmin) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 2843b8175..2d4165366 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -404,9 +404,14 @@ milestones.create = Create Milestone milestones.title = Title milestones.desc = Description milestones.due_date = Due Date (optional) -milestones.clear = clear +milestones.clear = Clear milestones.invalid_due_date_format = Due date format is invalid, must be 'mm/dd/year'. milestones.create_success = Milestone '%s' has been created successfully! +milestones.edit = Edit Milestone +milestones.edit_subheader = Use better description for milestones so people won't be confused. +milestones.cancel = Cancel +milestones.modify = Modify Milestone +milestones.edit_success = Changes of milestone '%s' has been saved successfully! settings = Settings settings.options = Options diff --git a/models/error.go b/models/error.go index 04f850def..01adeb425 100644 --- a/models/error.go +++ b/models/error.go @@ -134,3 +134,24 @@ func IsErrRepoNotExist(err error) bool { func (err ErrRepoNotExist) Error() string { return fmt.Sprintf("repository does not exist [id: %d, uid: %d, name: %s]", err.ID, err.UID, err.Name) } + +// _____ .__.__ __ +// / \ |__| | ____ _______/ |_ ____ ____ ____ +// / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \ +// / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/ +// \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ > +// \/ \/ \/ \/ \/ + +type ErrMilestoneNotExist struct { + ID int64 + Index int64 +} + +func IsErrMilestoneNotExist(err error) bool { + _, ok := err.(ErrMilestoneNotExist) + return ok +} + +func (err ErrMilestoneNotExist) Error() string { + return fmt.Sprintf("milestone does not exist [id: %d, index: %d]", err.ID, err.Index) +} diff --git a/models/issue.go b/models/issue.go index 0835d1c9c..44988a32c 100644 --- a/models/issue.go +++ b/models/issue.go @@ -23,7 +23,6 @@ import ( var ( ErrIssueNotExist = errors.New("Issue does not exist") ErrLabelNotExist = errors.New("Label does not exist") - ErrMilestoneNotExist = errors.New("Milestone does not exist") ErrWrongIssueCounter = errors.New("Invalid number of issues for this milestone") ErrAttachmentNotExist = errors.New("Attachment does not exist") ErrAttachmentNotLinked = errors.New("Attachment does not belong to this issue") @@ -691,7 +690,7 @@ func MilestoneById(id int64) (*Milestone, error) { if err != nil { return nil, err } else if !has { - return nil, ErrMilestoneNotExist + return nil, ErrMilestoneNotExist{id, 0} } return m, nil } @@ -703,7 +702,7 @@ func GetMilestoneByIndex(repoId, idx int64) (*Milestone, error) { if err != nil { return nil, err } else if !has { - return nil, ErrMilestoneNotExist + return nil, ErrMilestoneNotExist{0, idx} } return m, nil } diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index d068d7c45..d9e193f8e 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -127,7 +127,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 9185, mode: os.FileMode(420), modTime: time.Unix(1438756423, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 9185, mode: os.FileMode(420), modTime: time.Unix(1438768062, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -772,7 +772,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xdb\x72\x1c\x47\xd2\xde\x7d\x3f\x45\x4b\x0e\x9a\x52\x04\x38\x0c\x49\x61\x87\x43\x41\x52\x86\x00\xf1\xb0\x3f\x41\xf0\x27\xc0\x5d\xaf\x19\x8c\xde\x9e\xe9\xc6\x4c\x2f\x66\xba\x47\x7d\xc0\x08\x7b\xe5\xd7\xf0\xeb\xf9\x49\x9c\xf9\x65\x66\x1d\xba\x7b\x40\x69\xd7\xe1\xff\x06\xa8\xa9\xca\x3a\x65\x65\x65\xe5\xa9\xaa\xf3\xfd\x3e\x2b\xca\x6e\x95\x3e\x4f\x4f\xd3\x7d\x5e\xd5\xdb\xb2\xeb\xd2\xae\xdc\xde\x3c\xd9\x34\x5d\x5f\x16\xe9\xab\xaa\xa7\xdf\xed\x5d\xb5\x2a\x93\x64\xd3\xec\x4a\x02\x7d\x4d\xff\x92\x22\xef\x36\xcb\x26\x6f\x0b\xca\x38\xb7\x74\x52\xfe\xb6\xdf\x36\x2d\x03\xfd\x22\xa9\x64\x53\x6e\xf7\x5c\x87\xfe\x25\x5d\xb5\xae\xb3\xaa\xa6\x9f\x57\x94\x4a\xdf\xd4\x49\xd7\xac\xaa\x7c\x9b\x05\x05\xc8\xb0\xf2\x1f\xd3\xef\xeb\x22\xbd\xea\xcb\x7d\xfa\xac\xdb\xe5\xdb\xed\x8b\xbc\x43\x95\xbe\x4c\xf3\xd5\xaa\x19\xea\xfe\xd9\x53\x29\x90\xc6\x9b\xa1\xb7\xd6\x2f\x87\x5e\xf2\x86\xbd\x65\x7d\xdc\x27\x6d\xb9\xae\x68\x62\x2d\x65\x7d\xd0\x64\x72\x28\x97\x5d\xd5\xf3\xa0\xff\x22\xa9\xe4\xae\x6c\xbb\xaa\xe1\xf1\xfc\x59\x52\xc9\x3e\x5f\x33\xc0\x7b\xfa\x97\xf4\xe5\x6e\xbf\xcd\x51\xe1\x5a\x93\xc9\x36\xaf\xd7\x83\xc0\xbc\xd5\x64\x92\x0c\x84\xb9\x3a\x07\xce\x3e\x6a\x32\x29\x77\x79\xb5\x65\xfc\x3c\xe1\x04\xb5\xdb\x75\x87\x06\x58\x7c\xaf\x49\x1a\x63\xd6\xdf\xef\x4b\x0c\xf1\xc9\x35\xa5\x92\x55\xbe\xef\x57\x9b\x9c\x72\xce\x24\x95\x10\xd0\xbe\xa1\xb1\x36\xed\x3d\xe0\xec\x47\xd2\xb4\xeb\xbc\xae\xfe\x91\xf7\x32\xfe\xcb\xe0\x67\xb2\xab\xda\xb6\xe1\xa9\x5f\x20\x91\xd4\xe5\x21\xe3\x76\x28\xe7\x5d\x79\x08\x5b\xe1\x92\x5d\xb5\x6e\x65\x96\x5c\x78\x81\x5f\xdc\x0a\x97\xdd\x34\xed\xad\x16\xbc\xe4\xe4\xa8\x2a\x0d\x42\x4b\xe3\xfe\xf3\x9a\xf0\xa2\xa5\x17\xf8\x11\x01\x74\x49\x5e\xec\xaa\x3a\xdb\xe7\x75\xc9\x38\x3a\xe5\x5f\x84\x17\xfa\x95\xe8\x72\x67\x5d\xd9\xf7\x55\xbd\xee\xb8\x58\xb2\xd2\x2b\xcd\x4a\x82\x32\x97\xc7\xe3\xe9\xb2\x9b\xb2\x2c\x64\x44\x5d\xfa\x92\xd2\xc9\x7e\xd8\x6e\x69\xee\xbf\x0e\x65\xd7\x33\xfc\x7b\xfa\x4d\xb3\x90\xdf\x49\xd5\x75\x94\xa0\xec\x37\x48\x24\xb4\x00\xf5\x0a\x43\x3a\x43\x22\x49\x3e\x75\x65\xde\xae\x36\x9f\x13\xf9\x8f\x1e\x39\xb1\x58\x2c\x8e\x2e\x0d\x93\x83\x92\x82\xf4\x60\x1d\x24\xab\xa6\xe0\x1f\x67\xf4\x8f\x9a\xae\xea\xae\x27\x92\xfe\x9c\x68\x82\xc1\x24\x25\x68\xec\xab\x7e\x5b\xfa\x4c\xec\x8f\x8e\xd7\x21\x7d\x59\xb5\x5d\xff\xa4\xaf\x88\xe4\x3e\x0c\x75\xc2\xf3\x23\x72\xce\x8a\xa5\xed\xf2\x57\x0d\x61\x07\xd9\x2d\xcd\xef\xe2\xfe\xea\xdf\xdf\x9e\xa4\xef\x69\xab\xaf\xdb\x92\xd2\x29\xb5\x41\xff\xa8\xce\x0f\x8b\x84\x6a\x59\x4f\xe7\x79\x9f\x2f\xf3\xae\xf4\x68\xe5\x42\xa1\x51\x57\x06\x4a\x65\xb6\x01\x16\xd1\xf5\xd1\x7c\xe7\xe8\x9c\xda\xd0\xdd\xe1\xda\x78\xc7\x5b\x84\xf2\x99\x6b\xa0\xf2\xfb\x6d\xc9\xf9\xd4\x54\xfa\xe6\xdd\xbb\xcb\xf3\x9f\xd3\xb2\x5e\x57\x75\x99\x1e\xaa\x7e\x93\x0e\xfd\xcd\x7f\xcb\xd6\x65\x5d\xb6\xc4\x44\x56\x55\x4a\x3b\xa3\x25\x22\x48\x89\x3c\x65\x72\x8b\xa4\xeb\xb6\xd9\x4e\xd0\x7b\x75\xf5\x36\xbd\x60\x14\xef\xf3\x7e\x83\x81\xf4\x9b\xa4\xfb\x75\xcb\x28\x72\x1d\x5e\x6f\xca\xf4\xa6\xa2\x59\x03\xa8\xb9\x31\x7c\xa4\x85\x8e\x71\x91\x94\x6d\x9b\xd1\xbe\xef\xef\x33\xad\xac\xed\x8d\x21\xa5\x09\x22\x9d\xba\xe9\xd3\x65\x99\xa2\xce\x22\x49\x6c\xc0\x86\xdd\xd3\xfd\x7e\x5b\xad\x64\xc7\xbe\x92\x32\x8f\x68\x66\xd1\x8a\xa5\x10\x0e\x88\xb2\xb2\x00\x5d\xc4\xff\xee\x9b\xa1\x4d\x23\x36\x80\xfa\x9b\x92\xf8\xf2\x66\xa0\x2d\x97\x13\x4f\xdd\x36\x43\xf1\x15\x28\xd5\x46\xef\x09\x35\xfd\xd0\xd0\x80\x81\x1d\x07\xe0\xbb\x38\x25\x8a\xe3\x53\xa1\x2d\x77\x0d\x71\x07\x47\xec\x15\x11\xd4\xa1\xa2\x42\x9a\x69\x97\xdf\xd1\x7e\xeb\x9b\xb4\xdf\x54\x5d\x5a\x10\xb1\xad\xb8\x61\xda\x1a\x03\xf1\x63\x21\x0b\x22\x50\x21\x0d\xcb\x8b\xd7\x00\x50\xbb\x81\xa8\x69\x43\x8d\x31\xb7\xe7\xa3\x89\x9a\x9c\x1b\x27\xa6\x44\xed\x80\xbe\x89\x72\x1b\xe2\xad\xcc\xfd\xce\x91\xd0\xdf\x61\xfb\x34\xaa\xfc\xe6\x86\x46\xd5\x11\x55\xbc\x4e\x57\xdb\x86\x48\xea\xe3\x87\xb7\x54\x79\xd3\xf7\xfb\x6c\xdf\xb4\x20\xe3\xeb\xeb\xf7\xb4\x3d\xda\xde\xe7\x06\xb8\x66\x98\x7a\xd8\x2d\xe9\xd7\x61\x53\x11\x13\xc8\x83\x05\x02\x2a\xb6\x7c\xc0\xd4\x69\x53\x2f\xb0\x56\x43\xbb\x1d\x2d\x23\x75\x69\x25\x47\x86\xc7\x43\x78\xca\x7f\xae\xfc\x28\x31\xdd\x8e\x4e\xe1\x03\x16\x95\xa6\x5a\xe2\x34\x21\xda\x6a\xf6\xdc\x6e\x40\x5c\x97\x9a\xe1\x29\x0a\x27\x90\x2b\x97\x73\x88\x4a\x71\xc6\x07\xbc\x74\x47\x13\xd6\xdd\x7c\x75\x41\x68\xc0\x96\x46\xee\x4d\xdb\xec\x28\xf7\x25\xfd\xf3\x19\x7e\xf8\x17\xdc\x1e\x60\xf2\xa2\x20\x36\xd3\x9d\xa4\x1f\x5e\x9e\xa5\xff\xe5\x87\xef\xbf\x5f\xa4\x6f\x7a\xde\x10\x4c\x23\x7f\xe7\xb5\xa5\xa4\x1c\x88\x0e\x94\x76\x6e\x4f\xcb\xff\x35\x13\xf8\xd7\xe9\x33\x94\xfe\xf7\xf2\xb7\x9c\xce\xd9\x72\xb1\x6a\x76\x2f\x78\x73\xef\xf2\x7e\x91\x70\x09\x51\x8d\x92\xd3\x55\x59\x17\x94\xd0\x63\x55\xcb\x02\xae\xa3\xe5\xc1\x21\x2b\xa7\x7f\xb6\x6a\xea\x9b\xaa\xe5\x09\xfd\x52\xe7\x4b\xc2\x89\xc9\x05\xc4\x8e\x51\x62\x67\x17\x21\x8d\x36\x72\x75\x73\xef\x41\x31\xd5\x77\x9c\xa9\x0b\x9a\xb0\xac\x44\x8d\xaa\xc8\xe4\xb0\x7c\x85\x6c\xac\xdb\x25\x4d\xaf\x35\x7c\x77\x1e\xe1\xcd\xcd\xcd\x96\x18\x9b\x31\x2b\xed\xe1\x52\x72\x85\x6f\x85\x20\x44\x8c\x7b\x48\x36\xe7\x55\x07\xc8\xb3\xf3\x77\x69\x79\x47\xd4\x46\xe4\xb0\x6f\x9b\x62\x58\x81\xc2\x18\xf6\x24\xe5\x63\x82\xf0\x4b\x9c\x61\x25\xec\x2d\xd8\xab\x3c\x34\x66\x08\x2b\x02\xa2\x2d\x5a\x48\x7b\x99\x20\xa8\x35\x41\xc2\xba\xb9\x62\xe1\x30\x2c\x9b\xad\x30\x19\x1d\x56\xa9\x1b\xd7\xa5\xe5\xae\xb7\xf7\x29\x4e\x7d\xd0\xc5\xaa\x2d\x03\xd9\xae\x5b\x24\x7a\x56\x99\x84\x98\xdd\x55\x24\x54\x04\x4b\x85\x52\x13\x17\x99\x3d\xfc\x99\x01\x58\x4c\xeb\x66\xeb\xba\x81\x5d\x72\xc7\x5c\x42\x73\xa7\xce\x79\x7c\x1d\x86\x80\x1e\x58\xdc\x23\x62\xbc\xab\xc0\x69\x14\x59\x18\x2b\x61\x0c\x5d\x53\x57\x5d\x59\xa2\x05\xaa\xff\x94\xda\x44\x9d\x85\x8a\x30\x2a\x8a\xd8\xb9\xfb\xd7\x66\x48\x8b\x26\xe5\x83\x00\xec\x8c\x6a\xdb\x54\x6b\x9d\xbe\xce\x39\x6d\xab\xf5\x86\xf8\x4a\x73\x38\x11\xa4\x1d\x36\x4d\xc9\xb4\xf3\xe6\xfc\xf9\x77\x32\x8e\x35\x33\x37\x57\x89\xd9\x62\x3e\xf4\x0d\xd3\xa9\x2e\xa1\x0c\xc1\x1d\x2f\x80\x9c\x08\x4b\x02\x34\x16\x4f\x4d\x00\x9b\x9e\xd6\xba\x4f\xc2\x32\xdd\x20\x1e\x46\x6a\x8f\x44\x5c\x95\x62\xb2\x75\x03\xc9\xcc\xa4\x16\x66\xd5\x24\x4a\x77\x7d\xb6\xae\xfa\xec\x86\x37\x2c\xb7\xf9\x92\xeb\xf2\xc9\x41\x25\xe9\x63\x2a\x7a\x9c\xd2\xae\x27\xc9\xb1\xf8\x31\x7d\x74\xa7\xc7\xf5\x0f\xbc\x13\xb3\xfc\x8e\x60\xb1\x18\x40\x70\x4b\x14\x2e\xd2\x82\x89\xef\x45\x43\x74\xce\x38\xef\x86\x3d\x38\xba\x9e\xd0\x27\xe9\x5e\x00\x8b\xe6\x50\x6f\x9b\xbc\x00\xcb\xa1\xdd\x55\x41\xf9\x58\x56\x75\x4e\xa7\x8b\xb5\x02\x56\xf6\x88\xa8\xe1\xdd\xe5\x35\x00\xd7\xcd\x72\xa8\xb6\x85\x01\x2c\x68\x86\x77\xf9\xb6\x2a\x58\xce\xd2\x75\x0f\x65\x1a\xcb\xaa\x64\x2c\xab\xa6\xe5\xe3\x10\xb3\xb1\x8a\x47\xce\xe1\x96\xcf\x37\x64\x53\x5d\x85\x45\x3d\x77\x64\x32\x1a\x68\xe1\x21\x80\xf2\x81\x0a\x8a\xa9\xba\xfa\x71\x8f\x91\xae\x06\xea\x8b\x16\x9d\xb3\xa9\x62\x97\x3e\x79\x41\x7f\x13\x3e\x9e\x85\xef\xad\xa7\x88\xe7\xc2\x54\x0a\x07\xd9\xa5\xd1\x50\x23\xf2\x76\xd4\x65\xc4\x1b\xcc\x35\x1c\xaf\x91\x40\x37\x08\xbd\xb2\xa6\xb5\xa5\x65\x2d\xbf\xa2\xc4\x63\xda\xc0\xeb\x2d\x16\x21\x87\xf4\x42\x62\x5c\x43\x78\x63\x02\x39\x91\xed\x72\x43\x53\x63\xde\xd9\xe7\xb7\x34\xb6\xbc\x25\x21\x2c\xf9\xc4\xda\xe8\xe7\x64\x10\x01\xa8\xd9\x16\x4e\xd8\x04\x4d\x37\xed\x58\xc5\xf2\x40\x8e\x5e\x3b\x92\x22\x57\x9b\xcc\xe9\xb2\x8c\x94\xbe\xfc\x0d\x67\x1e\x8a\xbc\x6a\xcb\xc4\xce\x45\xc9\xee\x1e\xcb\xc5\x93\xb8\xb8\xf7\xab\x45\xe2\x0f\x6d\x11\x12\xd1\x97\x0d\x63\xed\xae\x74\x50\x67\x61\x6e\x5c\x81\xda\x22\x41\x4d\x9b\x8a\x35\x21\x2a\x12\x75\x4d\x4b\x45\x65\x23\x55\xe4\x93\xea\xd8\x9f\x13\xeb\x20\x6a\x32\xf9\x44\xcc\x80\xf4\x12\x61\x2f\x19\x6b\x63\xb6\x38\x34\x14\xe1\x39\xac\x98\x29\x3f\xf0\xe7\xe0\xa6\xdc\xf3\x91\xb9\xeb\xb0\xaa\x5b\x82\x2c\xee\x55\xf6\x72\xeb\xfb\x93\x70\x5a\x5a\x70\xe2\x4f\x5f\x99\xf6\xfe\x07\x9b\xf8\xb9\xa2\x95\x44\xfd\xf8\xe4\xe0\xf3\x9a\xb6\xda\x1e\xd8\xa7\x4d\x72\x7f\x92\x46\x67\xd0\x26\xef\x88\xfb\xd2\x01\xa7\xd5\x8a\x85\x69\x07\xbc\x6a\xf9\x4a\x48\x1e\x9a\x3c\x88\x54\x6a\x36\xed\xf8\x48\xe3\x11\x0a\x83\xd2\x5e\xdc\x81\x8f\xe3\x3c\x3c\xf5\x67\xfa\x24\x84\xed\x4a\x96\xf9\xb2\x9d\x68\xe8\xf2\x2b\xbd\x28\x13\x12\x4c\xd6\xb4\x1f\x8d\xde\x9e\xb3\x4a\xb6\x86\x84\xaa\xe4\xc6\x00\x65\x1f\x72\x50\x85\xb0\x9c\x9f\xcc\x62\x41\x1b\xfb\x00\x7d\x95\xb6\xe6\x04\xfd\x74\xd6\x50\xf1\xc2\x38\xb2\x1c\xb8\x90\x4f\x3a\xda\xec\x1e\x89\xa7\x29\xad\x7e\x1a\x42\xa9\x9c\xe8\xa7\xc5\x15\x78\xd3\x3f\x5b\xbe\x78\xd4\x3d\x7b\xba\x7c\xe1\x58\xe3\x6a\x53\xae\x6e\x45\x97\xa8\xea\x65\xf3\x1b\x14\x2e\x5a\x78\xc6\x71\xcd\x5b\xe4\x51\x91\x6e\xa8\x14\x32\x39\x6d\x65\xaa\x46\x88\xe7\xd2\x68\xd1\x68\x30\xbc\xe3\x17\x66\xfb\x71\x87\x83\x11\x12\xd5\x46\x27\x32\x32\x52\xf3\xb1\x77\x38\x2b\xa0\xdb\x53\xce\x65\xca\x05\x9b\xf7\xa4\x8b\xf9\x6e\xab\x5d\xd5\x4f\x48\x87\xf9\x48\xae\x24\xa8\x7a\xbe\xe1\x12\x6d\x01\x1b\x18\x0b\x71\x63\x6a\x86\xce\x4d\x23\xa7\x43\x4e\xea\xcd\x0f\x29\x91\xd0\x40\xa7\x10\xcf\x89\x86\x49\xec\x38\xe7\x83\x97\x14\x84\xbc\xcb\x86\x5a\xd1\x5a\x16\x46\x4c\xaf\x2b\x1c\x12\xdc\xaf\x91\x7c\x00\x65\x98\x57\x39\x37\xfd\xc6\x61\xfc\x5b\x12\x8a\x6f\x5c\x35\xe6\xdc\x3c\xa0\x8a\x65\xb2\x7c\x76\xf1\x88\xb3\xd5\xa5\xa8\x57\xc0\x00\xc3\xf1\x42\x93\x72\xe0\x57\x8f\x34\x8c\x5b\xca\xc1\x82\x2c\x87\xbe\x6f\x58\xe6\xde\x32\xd5\x48\x1d\x1b\xf5\x19\x00\xa1\x46\xf8\xf6\xb0\x20\x21\x9e\x64\x6d\x4a\x93\x81\x33\x6f\x85\x53\x6d\x65\x34\x3b\x3d\xea\x1c\x58\x21\xea\x7a\x5e\xdf\x1b\x29\x13\x41\xf0\x28\xb8\xc3\x7e\x7e\x2c\xdf\xb4\xe5\xb7\x7e\x34\x6e\xcf\xa0\x86\x8d\x48\xaa\x07\xfb\xe9\x03\x4a\x41\x25\x6e\xd7\xd9\xc9\xa5\x46\x16\x4f\x1f\x6d\x8c\x5e\x94\xf3\xce\x20\x06\x4b\x62\x63\x01\x44\xd3\x2c\x50\x7b\x31\xea\xcb\xab\x3b\x53\x0c\xf6\xf1\x90\xfd\x01\xd4\x37\x4d\xd6\x6d\x44\xb5\xb4\xe1\xa5\xdb\xb2\x5e\x47\x66\x02\xd8\x60\x41\x74\xff\x95\x8f\x39\x12\xe0\xf3\xed\xe7\xe4\x1e\xf6\xa8\xbf\x12\x87\xaf\x61\xaf\x6b\x12\x2a\x10\x65\xe4\x02\x09\x02\x65\xcd\xe8\x73\xc2\x47\xe0\xbb\x91\x58\xc7\x47\x84\xe6\x05\xf2\x05\x8a\x7e\x89\xa4\x35\x5b\xc2\xe4\xfd\x8c\x08\xf8\xa1\xf4\x76\x49\xa4\xdc\x14\x49\x89\xbe\x36\x55\x87\xf4\xe9\xdb\x52\x1b\x7f\x4d\x6a\x73\xf7\x11\x6a\xaf\xe8\xb0\xac\xf0\xbe\xcf\xef\x59\xe8\x92\x6c\xfd\x81\x82\xeb\x32\xdf\xe9\x28\x39\x29\x4d\x9c\xd2\x71\xa6\x99\x9c\xa4\x53\x2e\xb0\x6a\x24\x10\x3f\x6c\x0a\x22\x8b\xe8\xb1\xef\xc4\xff\x52\x8d\x9e\x7f\x9b\x98\x62\xfe\x96\xe4\xdb\xfd\x26\xc7\xf9\x1f\x80\xc1\xea\x40\x40\x58\xf8\x14\x20\xa0\x85\x61\x57\xb6\xd5\x8a\x93\x5c\xe1\x9b\x27\xd9\xb7\x30\x38\xd1\x46\x21\x41\x30\x6e\xac\xa0\x4d\xf2\x4f\x35\xc8\x69\x16\x12\xc3\x76\xbb\xea\x1f\x36\x8b\xa8\x39\xce\x27\x9e\x43\x10\x10\xc9\x3c\x94\x03\xc2\xc1\xc8\xe2\x59\x9f\x32\x5f\xe8\x59\x04\x8c\x9a\xde\xe5\xbf\x7d\xa9\xe2\xae\x99\xa9\x27\xac\xc0\x57\xb2\x0d\xaf\x53\x8c\xd9\x01\xc1\xb3\x7d\xe3\x28\x34\x2d\x3d\x83\xd4\xb7\x74\xaa\xd5\x0e\xec\xa3\xfc\x4e\xf1\xfb\x47\x33\x81\xd3\x11\xa2\x02\x74\xea\x8c\xe1\x74\x38\x17\xcc\x37\x21\x08\x2f\xfc\x76\x0b\x85\x63\x47\xce\x2c\x46\x9a\xca\xef\x18\x07\x49\x94\xa2\x27\x10\x49\x2d\xbc\xdd\x3e\xe3\x33\x32\x63\xa1\xb3\x0e\x45\x4b\x77\x7a\xda\xf9\x02\x08\xb1\xfb\x66\xd3\x7a\xa3\x0d\x77\xb4\x3a\x89\x02\x33\xb5\x2f\xa7\x86\xbc\x23\xf5\x7b\xda\x32\x33\x0d\xb8\x9d\x74\xb4\xa2\x2c\x26\x2a\xd1\xcc\x8b\x09\x2f\x98\x56\x64\x30\x36\xad\x6e\x32\xda\xe9\x51\xcd\xf7\xc3\x92\xf8\xa1\x63\x00\x4c\xcf\x90\xa9\xeb\xde\xb7\x22\xb5\x49\x93\x2d\xd7\x6c\xa8\xb2\x61\x47\x63\x55\x02\xa4\xa3\x44\xc0\x42\xf2\xf3\xeb\xe3\x96\x3a\xa4\x8a\x50\x05\x70\x2b\x1c\x2b\x5f\x34\x67\x1a\x13\x25\xb9\x66\xa0\x82\xe9\x30\x54\x0e\xd8\xb1\xb6\xd1\x0d\xcc\xd8\x59\x33\x11\xd9\x26\x5e\x4b\x3e\xb6\xd1\x54\x89\x2e\x8e\x37\x4f\x94\xcc\xea\xda\x97\xda\x07\xd8\x1f\x6c\x3a\x54\xd6\xa7\x0d\x6b\xe3\x0e\xe8\x58\xb3\x4e\x9d\x2c\x7f\xab\x60\xf4\x7b\x55\xdd\x95\xaa\x50\x3a\x3d\x1a\x65\x8b\x64\x4b\xac\x84\x15\x17\x99\x95\x48\xc1\xcd\x1d\xeb\x7d\xdc\x1f\x97\x4a\x3d\x31\x02\xea\xa4\x78\x9d\x55\x35\x25\x55\xb0\x39\x94\xc5\x09\x09\x08\x5c\x83\xc6\x09\xa6\x93\x6f\x0f\xf9\x7d\x07\x0b\x8b\xf1\x2b\x36\x78\x4a\x75\x66\x46\x24\x3e\xac\x31\xaa\xd0\xba\x4d\xfb\xd5\x30\xa1\x04\xe9\x0f\xf9\x03\x94\x4b\xf0\x1a\xb5\xd9\x90\xce\xce\x87\x26\x0e\x68\x3d\xa9\x58\x31\x66\x35\x92\x35\x04\x29\x0e\x1a\x82\xc3\x44\xcf\x8d\x99\xba\x27\x2c\x5c\x51\x37\x2c\xea\x10\x37\x17\x5c\x93\xf4\x48\x98\xc5\x90\x02\x4b\x03\x6d\x8c\xf2\x89\x48\xd5\x15\xe1\x90\xb5\x34\xaf\x7c\xf3\xc9\x46\xab\x62\x66\x61\xc9\x87\xea\x9c\x74\x3d\x6d\x01\xc6\xb4\xb9\xea\xfe\x2a\xd2\x99\x2a\xdc\x5c\x8a\xad\x05\x34\x75\x9b\x6a\x9f\x36\x30\x35\x86\x28\xf4\x64\x1b\x08\xa8\x84\x8d\xa2\x84\xd4\xce\x36\xd7\x36\xaf\xbb\x9b\x12\xc6\xd7\x5d\x7a\xc3\x7e\xa4\x85\x76\xcd\xf2\xae\xb8\xec\x8e\xf4\x2c\x1a\x10\xba\x0e\xcf\x1a\xac\x5d\xb0\x50\x71\xd7\x04\x73\x87\x9e\x75\x0c\xc0\xaa\x6f\xa9\xb3\x31\x30\x99\x4d\x50\x00\x99\x33\x72\x71\xd8\x68\xee\xca\x10\x11\x37\xff\xec\xcc\x03\xac\xab\x7d\x59\x8c\xf2\xf1\x32\x49\xa7\xb0\x75\xc0\x43\xb5\xbc\x8f\x67\xcf\x55\x1d\x05\xb0\xbf\xe4\xae\xd4\x5e\x78\x63\xf0\x5e\x19\x35\x08\x1b\x87\xd7\x34\x92\x3e\x87\xc2\xb8\xa4\x21\xae\x36\xd1\xee\xbc\x46\x49\x2a\x25\x93\x0d\x9a\x7c\xe2\xae\x3f\x27\xc4\x34\xeb\x75\xc9\x86\x32\x6a\x89\x0f\x4c\xfc\x56\xf9\x5e\x32\x69\xc0\xeb\x56\xd2\x6c\x5e\xb7\x2a\x2b\xda\x90\xcd\xee\xc1\x9a\x55\x6d\xe6\x9e\x2e\xf9\x7b\x43\x12\x08\xec\xc4\x7f\xa2\x14\xcb\xce\x75\x12\x79\x86\x46\x56\x0a\x28\x17\x55\x7f\xef\x4f\x8c\x53\xcd\x21\x25\x19\xdc\x01\x76\x8f\x97\x96\xa6\xf5\xc8\x99\xe9\xf1\xd6\x96\x94\xc2\x89\x11\xea\xa5\xa5\x13\xd6\xb1\x77\x0b\x1c\x0e\x2c\x8a\xc3\xb4\x1d\x1c\x09\x8f\x1f\x75\x8f\x79\xc1\xac\x6c\x11\xc0\xef\xf3\x9e\xd8\x62\x2d\x0a\x8e\x70\xa8\xb0\xaa\x16\xbb\x26\xc0\x55\x04\x6c\x01\x7f\xb0\xa0\xe2\x73\x42\x9a\x28\x1c\x88\x34\x35\x49\xcd\x3a\x3f\x95\xc5\x74\x2a\x31\xff\x1b\x25\xd5\x9e\x92\xba\x28\x08\x55\x74\xe1\x04\x34\x97\x51\x17\x7b\x90\xba\x44\x0d\x48\xb1\xf5\x48\xc9\xfb\x79\x7a\x2e\x09\x53\x99\x87\x0a\x73\xaa\x8a\x24\xd9\x03\xef\x59\x30\x5a\x59\x08\x37\x68\xf9\x1f\x58\xb0\xdb\xb1\x5c\x40\x58\x90\x56\x40\xb8\xe6\x50\x80\x24\xc0\x1e\xd8\x40\xdd\x63\xd3\x2c\xf4\xc0\x3a\x70\x96\x90\xb6\xcc\xf5\x18\xec\x50\x2e\x53\x36\x96\x12\xe1\x90\x56\xa5\x13\xdd\xe5\xa4\x90\xdd\x55\xb9\xb3\xeb\xd0\x6a\xb1\xdb\x5e\x4f\xd1\x97\xec\xb2\x87\x1f\x74\x1a\xc0\xc1\xde\x0c\x75\x5c\xbc\xd5\x64\x32\xec\x0b\xb6\x88\xf9\x09\x7f\x44\x86\x9b\x70\x5c\x1e\xd8\x2a\x31\x75\xab\xe6\xa5\x18\x80\x17\xa9\xc2\xf1\xc8\xee\x17\xb6\x7d\x66\x22\x3f\x74\x0b\x15\x63\x90\xd0\x45\x20\x45\xaa\xf2\x1a\xc0\x42\x78\x0f\xd0\x2b\x5e\x41\x20\x84\xce\xca\x74\xd3\x1c\xd2\x6d\x55\xdf\x76\x8a\x5f\x67\x4d\x31\x2d\x3b\x3d\x47\x06\x01\x8b\x9d\x87\xc5\xaa\xaa\x1e\xca\x9f\x12\x4b\x89\x19\x1f\xc9\x69\x94\x43\x29\xa7\xe2\x98\x19\xa8\xf7\xe5\x0c\xd9\xe9\x29\xb2\x67\x61\xbd\x96\xac\x55\xe0\x0f\x66\xf6\xab\x6e\xa1\x9b\x92\xc5\x73\xb0\xc3\x57\xca\x85\x08\x3f\x4d\xd3\xa9\xe5\xd2\xb3\x1f\xce\x83\x99\x43\xa1\x74\xb5\x1c\x84\x2e\xa6\x0c\xc6\xbc\x1c\x04\xc5\xca\x25\x09\x4b\x3a\x1e\xec\xed\xac\xda\x49\xa4\xce\x47\x2d\x15\x87\xbf\xd3\x4a\x50\xbc\x20\x3d\x7b\x34\x99\xd0\xdf\xf0\x8e\x70\x29\xd3\x37\x3e\x6a\x85\x27\x26\x2e\x08\x42\x70\xd8\x47\x83\x1d\x53\x96\x36\x60\xa6\xf3\x2f\x10\x98\x91\x4f\xe8\x86\x11\xde\xec\x58\x4b\xb3\x8d\x84\xc2\x33\x75\x02\xb8\x72\xc6\x6c\x50\xfe\x0e\x0e\xb3\xb1\xad\x22\xd2\xb3\xb4\x85\xa3\xd2\xf4\x68\x4c\x93\xbd\x63\xf5\x0e\x34\xb7\x70\x3a\x46\xf0\x0b\xa1\xfe\x1c\x76\x65\xf1\xa9\x0d\x9d\xc8\x93\xdc\x15\x1c\x72\xd2\x04\x21\x00\xea\x4a\xe7\xb5\x94\x53\xe1\x46\x6c\x4e\x97\xf8\x22\x07\xa0\x21\x46\xb1\x36\x5a\x9a\x07\x3c\x64\x6c\xfb\x96\x16\x9d\x0e\xde\x91\x1d\x6b\xc2\xd2\x22\xf6\x05\xee\xd5\xc0\x9d\xeb\xb9\x16\xe9\x9f\xda\x16\xf3\x7f\xa4\x2c\xc7\xdb\x3e\x4b\xb6\x8d\x59\xa7\xca\xac\x5d\xa9\xb0\xec\x84\xc6\x80\x3d\x50\x3a\xe3\x46\x01\x4c\xc4\x43\x04\x58\x08\x62\x76\x54\xcb\xce\x22\x2b\x31\xec\xbd\xff\x61\x96\xe1\xa8\x43\x67\x19\xf6\x43\x1d\x91\x0d\x8f\x71\x74\xe2\x4c\x08\x88\x0a\x70\xfe\xea\xd2\x07\xa7\xaa\x2e\xbe\x3b\x5c\xb9\x1b\x91\xe9\x19\x4d\x94\x85\x23\x58\x89\x00\x1c\x96\x05\x3c\x84\x6c\x20\xec\x47\x04\xfc\x6e\x62\xc4\x8c\xf9\xeb\x29\x34\x18\xc2\x8a\xc0\xb2\x3c\xc0\x07\x9a\x48\x7f\xaa\x11\xed\x18\x11\xe2\xb4\x75\x51\x2c\xf7\xe2\xaf\xf4\x22\xd1\x89\xaa\x0d\x9b\x6a\xbd\xa1\x79\x55\x3b\x76\x58\x82\x6b\x9b\x57\xcc\x6b\x75\xfc\x8b\x36\x5e\xb3\xae\xd9\x02\xc4\x3d\x88\x32\xee\xb8\xed\xb3\xae\x6f\x9b\x7a\xfd\xe2\xbc\x61\x75\x8b\xed\x28\x7c\x54\xfc\xf4\xec\xa9\xe6\x13\xcb\xe0\x35\xe4\x68\xc9\x57\x55\xff\x7a\x58\x3e\xee\xd2\x35\xc9\x06\x38\x40\x9e\xe5\xe9\xa6\x2d\x6f\x9e\x7f\xfd\xa8\xfb\xfa\x85\x7a\xa9\x25\xa6\xe8\x50\x3b\xb4\x3c\x7b\x9a\xbf\x60\xe9\xb9\x6b\xb6\x24\xd4\xc6\x55\x9a\xdd\x4e\xd6\x97\xd8\xdf\x4e\x20\x31\x7e\x38\xb6\xcb\x1a\x98\x2b\x5b\xc5\x0f\x35\xb8\x70\xb4\xee\xd7\x47\x97\x2d\x61\xfb\x82\x1e\xa4\xf4\x53\x8e\x7b\xce\x33\xa3\x82\x9c\x5e\x94\xb2\xf5\x0d\x88\x88\x19\x9b\xb6\x13\x98\x30\x98\x60\xbe\xb2\x3d\x27\x1d\x06\x3b\x0e\x22\xc3\x29\xc3\xb0\x08\x0b\x45\x57\x2d\x1b\x6f\x55\xad\x45\x01\x9d\x0d\x81\x08\xfb\xae\x51\x27\x42\x6a\x99\x9e\x20\x4d\xa4\x53\x72\x3c\xf5\xd4\x34\x16\xf2\xd4\x9b\x76\x94\x22\x03\x42\xd4\x56\x5d\x98\x84\x28\xe0\x25\x44\xa9\x65\x55\x17\x42\x78\x4a\x37\x1a\x77\xe0\x08\x86\x8e\xa3\x9a\x81\x60\x63\xe3\x84\xfe\x0e\x30\x77\x15\xb5\x1f\x1c\x49\xb4\xdf\x87\x3a\xd8\x6f\x42\xd0\x59\xdf\x88\xad\x49\x27\xf9\x9e\x24\x76\xc4\x1c\x9d\x4a\x83\xd7\x5c\xdc\x69\xdc\x9b\x3a\x25\xad\xca\x2b\xcd\xc4\x6a\x01\x30\x41\x51\xe7\x10\x81\x5f\x5e\x79\xb3\x56\xd4\x5f\xac\xd1\x44\x58\x18\x22\x5e\xdb\x61\x1b\xf1\x1f\xa7\xa7\xef\xdf\x2c\x12\xd7\x9f\xb5\xf9\x4b\x4e\x52\x87\x8c\xe0\xe0\xf4\x46\x66\x28\xe3\x1d\xea\xbc\x15\x52\xdd\xcc\x54\xa8\x09\x5a\x74\x73\x9a\xcc\x47\xe6\x12\x97\x0b\x8a\xcb\x2e\xd0\xa5\xa5\x37\x8c\x64\xcc\xdb\xdc\x4c\xbf\x22\xc4\x3a\x8b\x0e\xf3\xd4\xfd\x3d\x73\x8b\x20\x52\x24\x17\x04\x1d\xb0\xdf\x47\x21\x2a\x04\x09\x7d\x32\x65\x09\xb1\x75\xa4\x6f\x03\x56\xe2\x0f\x73\x03\x4a\x00\x19\xee\x6d\x3d\xa3\xf1\xfa\xa3\x22\x1c\xb4\xa8\xb9\xb1\xd4\xf2\x55\x2a\x8c\x48\xfc\x9f\x3c\x2e\x91\x6d\x14\xc7\xa1\x72\x43\x6d\x1e\xca\x2d\x47\xb2\xe9\x80\xbc\x13\x50\x55\x99\xc8\x05\xa8\x40\xce\xf9\xc7\x91\x83\xee\x2c\x96\xb5\x0d\xed\x0b\xd6\x18\x41\x10\x01\xc3\xeb\x27\x3a\x88\x31\xcc\xb3\xd3\x77\xef\x2e\xaf\x3d\x9f\x64\xca\xaa\x0b\xe2\xe6\x5f\xb9\xf8\x97\xc9\xb8\x2c\x0a\x06\xe3\x43\x40\x54\x04\xe1\xe3\x70\xb4\xc6\x31\xb8\x70\xe3\x5b\xeb\x94\x5c\x37\xd8\xcd\x0d\x8f\x45\x6a\x14\xf1\xf8\x8b\x63\x22\x7e\xf2\x89\x0f\x98\xcf\x89\x59\xe9\x2e\xf9\x7f\x12\x1a\x3a\x03\xd3\x34\xa8\xd9\x5b\xb0\x7d\xb8\x27\x0d\xa0\x29\x26\x86\x4f\x1a\xd8\xd0\x0d\x39\x64\x38\xc2\x7d\x03\xbe\x78\x93\xc2\xbb\x75\xc2\x76\x9c\xa6\x05\x0d\x32\x72\x87\xba\xfa\x75\xc0\x09\xc9\x12\x1c\x9d\xf8\x1c\x56\xb5\xac\xb6\xc2\x3c\xff\xec\x7e\x48\x3e\xa7\x46\xb1\x90\x41\xe7\xf4\xeb\x59\xb7\xe7\x48\x31\xe2\xcd\xdd\xf3\xaf\x49\xe4\x26\x8d\x05\x7f\x9f\xb0\x7d\x40\x53\x79\x51\x0d\x74\x14\x91\x00\xc6\x6e\x63\x5a\x4f\xaa\xf2\x82\x75\xfd\x5b\x33\x21\x8d\xc3\xd6\x51\x66\x91\x8d\x5c\x86\xf0\x46\xe4\xce\x0c\x4b\xc5\x55\xb1\x01\xf4\x62\x3c\x4a\x83\x69\x31\xbb\x66\x72\xbf\x2d\x43\xd4\xa9\x8b\x40\x17\xfa\x9c\xfe\xb5\x15\xc2\x33\x25\x9f\xef\x10\xa4\xc1\xfd\x01\x97\xe9\xfb\xbd\x22\x02\x58\xb1\x8e\xb2\x58\x57\x3d\x89\xc9\x7c\xd7\x02\xca\x2b\xed\x20\xe2\x92\xb8\x7e\x20\x29\xcb\x99\xa9\x6b\xb0\xa8\x58\xd5\x55\x9f\xb1\x55\x7f\x27\x21\xe5\xd4\x6c\xbe\x15\xb1\x22\xc6\xbc\x78\x70\xd3\x0f\xbf\x9c\x9e\x5f\xfc\xb2\xd8\x15\x16\x61\xa2\xf8\xd4\xd0\x92\x00\xa3\x45\x79\x93\x0f\x5b\xb3\x5e\x61\xc2\xc8\x48\x7f\x46\x86\xde\x46\x20\x45\x83\xf0\x77\x27\x67\xa4\xdc\x4f\x78\x63\x39\xdf\xb0\x18\xf9\xed\x11\x9b\xce\xd8\xad\xf2\xc7\x4d\x3b\xe3\x16\x1e\xb6\xf0\xb0\xcf\x3d\x63\x7b\x5d\xaa\x71\x19\x91\x37\x32\xd1\xdb\x12\x16\x15\xef\xae\x4b\x48\x58\x7c\x58\x7a\x9c\xb8\x4d\xdd\xc8\x8f\xd3\xf8\x72\x3b\x94\x23\x22\x17\x3c\x1a\x8d\x5b\x4f\xba\x2c\x17\x7a\x89\x23\x58\x17\x85\x58\x20\x9c\x38\x33\xc9\x9a\x1d\xd9\x2c\xb5\xaa\x36\xe5\xa0\xcc\xb6\x8e\xf8\x50\x8b\x51\x7b\x23\x99\x12\x34\x8a\x08\x35\x88\xaf\xb1\x19\xd2\xfc\xe7\x79\x18\x00\x9e\xc8\xa6\xb0\x9d\xa6\x5b\xe4\xc6\xed\x35\x84\x12\x73\x9c\x68\xbc\xc9\x70\xdf\x24\xc0\x54\x18\xdd\xc1\xec\xad\x60\xfe\xbc\xbf\xcf\xd8\x18\x02\x96\xbc\xbf\x4f\x10\x03\x41\x07\x5a\x86\xf3\x52\x32\xc1\x20\xb7\xd5\x5e\x6e\x2b\x51\x41\x55\x4a\x20\x23\x12\x97\xff\x96\x08\x52\xdc\x0a\x61\xa1\x71\x85\x89\x0b\x88\x11\xff\x04\x7e\xd5\xb3\xc4\x2b\xc6\xd9\xe7\x5f\x67\x4b\xda\xa3\xb7\x5f\x07\x12\x30\x5f\x76\x62\xb1\xf7\x2b\x92\xac\x0e\xea\x80\xfc\x28\xa9\xc4\x7e\xff\x05\xbf\x06\x0e\x8c\x13\x6f\x27\x27\x12\xfd\xc5\x36\xce\x44\xef\xd8\x30\x33\x4a\x58\xe0\x54\xb6\x41\xc2\x66\xc8\x39\x7e\x1d\x78\x96\x22\xbc\x3f\x4f\xff\x9d\x7f\xa5\xaf\xf8\x97\x4e\x85\xb7\xb1\xdb\xa3\x58\xe1\xd1\xc6\x0e\x23\xc5\xc0\x71\x34\xdc\xd2\xef\x69\x09\x2f\x09\xb0\xaf\x71\x25\x06\xc8\x31\xc9\xc9\x7e\x60\x1f\x3a\xaf\xbb\xf5\xf6\x9e\x72\x10\xe0\xcd\x99\x7c\x86\x05\x2d\x38\x03\x78\xd4\x46\xe2\x58\x85\xb2\x88\xbe\x2d\x21\x6f\xd1\x3f\x2d\xcb\x08\x38\xeb\x73\x98\x3c\x05\x88\x48\xee\x3f\xa7\xd7\x94\xa3\x10\x65\x58\x94\x28\x28\xca\xc7\xb7\x7a\xb0\x8d\x3a\x70\x5c\x4e\x10\xc9\x6f\xcb\xae\x27\x14\x41\x7d\x74\x3f\x12\x1e\x63\xd5\x4b\x28\x1f\x52\x89\x06\x9a\x8a\x59\x5b\x92\x09\x8c\x86\x6d\xce\x61\x5b\x1f\xf2\x83\xfc\x24\x4c\xeb\x35\xa0\xd7\x92\x92\x6c\x04\x22\x0b\x28\xc2\x95\x1d\x3c\xce\x75\xa5\xe1\xf7\x96\x4e\x6c\x00\x8b\xe9\x40\xac\x64\x74\x0b\x29\x5d\x8d\xca\x6f\x44\xde\x7f\xc9\xd2\xbe\xe5\xe5\xe0\x5f\xa9\x85\x55\xb8\xfc\x1d\x6d\x7f\xb1\x8f\x5d\x48\xca\x95\x14\x12\xf1\x73\xce\x17\xde\x2c\xcf\x62\x2a\x2f\xf9\xbf\xcb\x25\x82\xd1\xfd\x43\xff\x13\xc5\x3c\xe7\xaa\x5a\x26\xd7\x9e\x7c\x76\x26\x3c\x4e\x0a\xb1\x1c\x93\xc2\x6c\xbf\xcd\x57\xa5\x8b\xe1\x04\x10\xf8\x36\x5f\xb9\x52\x60\x12\xfd\xd8\xf1\xbd\xa4\xf2\x47\xb4\x9d\xe9\x97\x95\xd0\x66\xa0\xb3\xd0\x15\x9d\xf1\xcf\xc2\x0a\x09\xf7\x1c\x15\x68\x63\x88\xfa\x0f\xcb\xe8\xfc\x60\xde\x24\x46\xb1\x77\x2c\x5d\x73\xda\xa4\x8e\x51\x0d\x47\x4d\x21\x31\x8d\x60\x88\xbd\x73\x04\x3a\xa4\x43\x4d\x8e\x20\xf4\x38\xc1\x21\x32\x2d\x59\x70\x50\xad\x23\xeb\x53\x38\xa3\x40\xda\x73\xa0\xd2\x01\x47\x21\x71\x78\x9d\xef\xb2\x50\x6d\x67\xae\x92\xf0\x86\x22\x5b\xde\x6b\x1d\x61\x09\x05\xbb\xba\x8e\x54\xd9\xb1\x3f\x0b\xbc\x52\xab\x5c\xb8\x8c\xb0\x0a\x2f\x15\x1a\x26\x08\x49\xa7\x8f\x3e\x7d\xf7\xb9\xe3\x96\x9d\x39\xe1\xe9\xa3\x4f\xdf\x7f\x26\x86\x8a\x7f\xcc\x51\xad\xf6\xbe\x2d\xef\xaa\x66\xc0\xcd\x3d\x4d\x7a\x82\x41\xfc\xee\x3b\x8e\xd5\xd5\x2c\x59\x3c\x93\xc3\x3d\xe5\xc4\xe5\xab\x66\xdb\x78\xca\xc2\xaf\x31\x80\x08\xfc\x8f\x74\xc1\xbb\xb8\x18\xc4\xe7\x16\xe3\x11\x5c\x19\xf5\x68\x41\x04\xb2\x2c\x2a\x6e\xe7\x17\xfa\x17\x17\x8c\xdc\x36\x71\xa1\x8b\xf7\x92\x01\x22\xea\xcb\xae\x9d\x4c\x5b\x51\xe7\x07\x40\x9d\xc6\x31\x0b\xe6\xe5\x51\x74\x2e\xbb\x00\xa2\x88\xba\x2c\x99\xe5\x54\xb5\x5c\xbb\xe1\x66\xd9\x90\x85\x52\x71\xe9\x68\xa3\xc7\x5d\x0d\xf3\xbd\x7a\x1d\x53\x06\xe9\x43\x6d\x55\xc9\x89\x34\xc8\x24\xe0\xce\x01\x1f\xf1\x1b\x2b\x28\x9e\xe1\x02\x41\xe9\x3c\x27\x18\x03\x14\x72\x5c\x72\xe2\x51\x17\xf5\x4d\x07\xf1\x50\x66\xca\x0a\x89\x09\xd0\xaf\x14\xbf\xc6\x43\x60\xa6\x38\xd7\xb7\xb5\x3c\x9a\x11\x21\x64\xb9\x21\x81\x46\x82\x0a\xe5\xe4\x0d\x4e\x24\xc2\xa8\x3a\xbc\x55\x97\x55\xac\x46\xcd\x4b\x2d\x57\x7d\x16\x3b\xb6\x0d\x10\xaf\x17\x16\xcc\xa8\x25\x61\xa9\x9f\xf4\x39\xcd\x98\xcf\x80\xf4\x1b\xbb\x6d\xf6\x6d\x3c\xc9\x12\x42\x0c\xfe\x87\x05\xee\x9a\x84\x36\x95\x09\x49\x69\x8b\x68\x5c\x73\xfc\xf5\x81\x13\x17\xed\xf6\x78\xb7\x7b\x5a\x14\x4f\xef\xa9\xd1\xc7\x33\xb3\x0e\xe8\xc9\x4d\x5b\x24\x79\x47\x58\xca\xcc\xc6\x84\x35\x77\x6b\xd8\xf2\x16\x32\x43\x38\x58\x25\xe5\x8b\x82\x68\x7f\xec\xb5\xb3\xf0\xb7\x07\xdb\x34\xcd\xad\xdc\x78\x58\x22\xe9\x4b\x48\x85\xb3\x42\xbe\x50\xf9\x3a\x2e\x2d\xca\xfd\xb6\xb9\x37\x6b\xf6\x39\x7e\xa9\x9b\xd8\x40\x96\x79\x57\xad\xc2\x1b\xd1\x3f\x73\xc6\xcc\x2c\x0a\xf6\xb2\xb4\xd9\x3f\xe4\x34\x3a\xc7\xaf\xf4\x7f\x32\x61\x38\x10\x75\xa0\x5e\xda\x25\x98\x2b\x76\xa3\xba\x52\x75\x60\x05\x5d\xa9\xbf\x6d\xda\x97\xfa\x82\x58\xd8\x9b\xb7\x32\x38\x47\xe8\xb1\x2a\xc6\x90\xc6\xfa\x19\x1b\xc8\x9c\xc3\x68\xe2\x13\x9d\xf3\x85\xc6\x21\x5b\x0f\xb0\x28\x37\x14\x17\x0d\xc2\x52\xa7\x26\x2f\x2d\xa0\x64\x0a\xe6\x8c\x36\x3e\x88\x24\x56\xe9\xd8\x24\x59\x8b\x8f\x08\x81\x24\x1c\x70\xc2\x59\x71\xf4\x0a\x71\x54\xb9\x41\xea\xa3\xc7\x11\xca\x0a\x0b\x1f\x07\xcf\x5b\xbf\xb8\x5c\x8f\x50\x32\x8e\xca\xe9\x44\x25\xd6\x90\x18\x71\x8f\x8a\xb1\x27\x77\x97\x2f\xd8\x82\x3c\xd6\xe2\xb9\x9e\x88\x4e\xee\x06\x85\xf8\x57\x6d\xa8\x28\x0b\x49\x31\x8e\x26\x00\xee\x03\x8d\x72\x04\x68\x48\xb9\xac\x57\xe2\xab\xd0\xfa\x79\x14\x8d\x23\x81\x5f\x50\xb3\xd5\xc6\xb5\xcc\x57\xb7\x6e\x44\xb4\xe3\x57\x65\xdb\x23\x0e\x66\x8a\x76\xf6\xc3\xad\x70\xce\x3e\xdb\xbf\x78\x02\x4d\x51\x2e\xdc\x62\x16\xc2\x08\xaa\x9b\x00\x21\xb0\xa4\xb3\x65\xfc\xae\x2a\x06\x22\x6f\x5e\x8c\xc5\xb3\xa7\xfb\x17\x71\x7d\xa2\x08\x58\x0f\x8e\xb6\x31\x5a\x38\x56\x5d\x2a\x44\xef\x73\xa0\x19\x22\x9e\x6e\x7c\x20\x5f\x87\x1e\x8e\xee\xa2\x80\x65\x05\xa4\x6e\x1c\xe7\x0b\x7e\xe0\x29\x4e\xcc\xcc\x87\x67\x17\x60\xea\x73\x30\xec\x3a\xca\x02\xd2\x86\x39\xd9\x68\x76\xa6\x29\x31\x53\x8f\x6c\x24\x3e\xae\xca\x0d\xcd\x2a\xb4\xc7\x87\x17\x9b\x4d\xd3\x19\x73\xa9\x03\x65\xff\x8b\x67\xaa\xa2\x9a\x14\x05\xe6\x73\x16\x64\x1f\xaf\x30\xf2\xfd\x44\x6d\xc5\x0e\xa0\x60\x80\x22\xe4\x1c\x6b\xe7\x6c\xb6\x0d\x35\x72\x07\xad\x20\x7c\xb2\x42\xa0\x5c\xa6\x37\x82\x24\xf4\x23\x1d\x47\xaa\x69\xe9\x61\xd3\x04\xf1\xe8\x18\x54\x8a\xcd\x1a\x0e\x64\x11\xcf\xf5\x20\x47\x88\xe2\x45\x0f\x94\xd1\x49\x63\x9b\xcf\x8e\x1b\xc4\x36\xef\x06\xe2\x2d\xdb\x8a\x16\x1d\x47\x86\xde\x6b\xbf\xbc\xba\xc6\x8d\x61\xe2\x85\xc4\x68\xd6\x4c\xaf\xe9\x5f\x36\x24\x8a\x73\xfc\x20\x5f\x2f\x67\xb7\xee\x3a\x6d\x56\x2b\x76\xe6\x56\xb5\xde\xc8\x3b\x94\xe6\x34\xa9\x8b\xad\x38\x76\x43\xb7\xb8\xf1\x5d\x31\x8f\xa4\xb8\x42\xce\x4c\xa0\xdb\x97\x2b\x92\x5f\x17\xe9\x5b\x3a\xc1\xf9\x5e\xb2\xdc\x5c\x07\xc3\x7c\xd0\x9a\xe2\x66\x02\xb3\x06\x6b\x01\x8b\xe9\x19\xea\x1e\xb8\xb0\x83\x14\xf3\xde\x73\xf0\x98\x68\x2b\x5c\x40\x82\x6c\xb9\xbd\x91\x40\x40\xf6\x1b\x41\x0e\x97\xdb\xd0\x6c\xbb\x96\x4b\xa2\x6c\xf0\x41\x03\xea\xd2\x86\xfb\x0d\x77\x67\x78\x66\xa4\xa1\xb3\x8c\x62\xc1\x1f\xa1\xdf\x7f\x3c\x26\x88\xf9\x36\xae\x37\xc2\x16\xb0\x7c\x90\x6e\xe4\xa2\xd3\x09\xf3\xe2\xfd\xb6\x74\x41\xd2\x66\x02\xdc\xcb\xe5\x26\x3e\xe9\x08\x5f\x88\xad\x35\x10\x39\x3f\x70\x83\x81\x83\x4c\x07\x5d\x0e\x0b\xa9\x01\x42\xb9\x9f\x99\x11\xe9\x81\xcc\x08\x12\x83\xff\x04\xc2\xfb\x55\x01\x64\xce\xd5\x31\x0b\x53\x70\x2f\x07\xbc\x8e\x28\x51\xf7\x14\x5a\x0c\xef\x7c\x0a\xf9\x3e\xb0\x8d\x02\x2a\x8f\x9e\x2c\xc1\x0c\xf5\xae\xd3\x33\xbe\xa8\xf3\x82\xa9\xf7\xd9\x53\x24\xed\x7e\x97\x51\x1e\xbf\x90\x10\x50\x1c\xdf\x7e\x6f\x08\x7f\x38\xfa\xda\x72\x9d\xb7\x85\x85\x2a\x2b\xf5\xb3\x1f\x11\x54\x1e\x46\xa2\xe4\xdb\xae\xb1\x26\x68\xb7\x12\xc8\x2d\x1b\x51\x88\x50\xf8\x7d\x0f\x93\x54\x99\xf3\x17\xb2\xb5\xd8\xc9\x4f\x04\x3f\xec\x79\x0f\xc8\x86\xb2\x7e\x30\xed\x6f\xfe\x74\x75\xf9\xee\x24\xfd\xed\xc9\xe1\x70\x78\xc2\xd5\x9f\x0c\xed\x96\xdd\xe1\x05\x87\x42\xff\x8f\x8b\xb7\x27\x69\xd9\xaf\xbe\x5d\x90\x66\x87\xad\xe1\x15\x2e\xf5\x71\xde\xb0\xef\x95\xc9\x92\xc5\xff\x7f\x7e\xcb\xec\xe5\xc6\x8d\xbe\x46\x11\xde\xbf\x09\x99\x36\x2f\xbb\x59\x1f\x94\x0a\xc4\x0a\xe1\x25\xc6\x92\x04\x6a\xdc\xb8\x43\xc2\x17\x00\xab\xb6\x7c\x1f\x19\x1d\x22\xdc\x20\xbf\x63\x1f\xd1\xb0\x2d\x84\x4e\x8d\xa3\xd1\xec\x14\x65\x65\xf1\xd3\xb8\x25\x98\x16\x71\xf9\xfe\x79\xfa\x27\xd6\x06\x18\xa5\x42\x05\x5c\x64\x54\x00\xe0\x90\x96\xb0\xc3\x52\xbd\x3d\x58\x8e\x0b\xbc\x91\xf7\xbc\xec\x11\x30\x34\x47\x1b\x32\x72\x37\x36\xbf\x9a\xb6\x51\xe9\x5c\xa3\xc6\x5a\xe1\xde\xe2\xba\x8c\xa8\x79\xb4\x07\xf8\x5c\x3a\x8c\xf7\xc1\xf8\x48\xd2\x4d\xe6\xd9\xbd\x6e\xb2\x09\xc7\x57\xc0\x2f\xed\x33\x95\x20\x26\x12\x5d\xd0\x83\x4a\x76\x93\x1e\x24\xae\x21\xd3\x59\x5a\x24\x2f\x62\x1d\xce\x5d\x5e\x7c\x04\x19\xd5\x80\x81\xc4\x24\xc3\x08\xe9\xb6\x24\xe6\x65\xe1\x0e\xe7\xc3\x2c\x8a\x20\xb9\x62\x10\xc4\x8d\xb0\x73\xc8\x1c\x29\x93\xa8\x99\x50\xcc\x90\x56\xcd\xa7\x2d\xbe\xf7\x51\xe1\xf8\x55\x98\x51\x31\x6b\x16\xf2\xec\xd4\x99\xa4\x92\xa4\xa8\x6e\x6e\x16\xcb\xb6\x39\x74\x1c\xc8\x81\xb7\x33\xd8\xb4\xcc\xbf\xd3\x2b\xfc\x16\x90\x7d\xde\x0a\xcf\x94\x84\x64\x8a\x29\x94\xf5\x60\x24\x24\x93\x59\xc7\xe4\xed\x82\x73\x2a\xc1\x73\x01\xfc\x94\x08\x47\x30\x4a\xc9\x42\xaa\xd0\x76\x39\x64\x9c\xca\xba\x3e\x87\xf1\xf7\x8a\x55\x1d\x54\xba\xe2\x1c\x05\xe3\xa4\x61\xd4\xdc\xd9\x6c\xe0\xb0\x98\x52\x9c\x73\xde\xb3\x0d\x6e\x68\x70\x04\x46\x4b\x53\xe1\x20\xf3\x20\xa1\x63\x9c\x20\xcc\x72\xe3\x21\x14\x41\x40\xea\xcf\x6f\xde\xc9\x4f\x18\xb7\x35\xc2\x16\xd6\xed\x97\xec\x66\x34\x93\xf9\x62\xce\x74\x6e\x65\xe2\x82\x10\xf9\xdf\x9e\x24\xc3\x2f\x07\x51\xb4\xf9\x0d\x0c\x06\xfc\xdf\xe5\xd2\x61\xe9\xab\xbd\x6f\xcb\x27\xe3\x6a\x84\x1c\x41\xf5\x15\x12\x2e\x5f\x0d\x71\xfc\xcf\xe5\xe5\x6c\x84\x09\x70\xf8\xa8\xf0\x18\x31\x03\x3c\x91\xe2\x23\x62\x64\x15\x2b\x38\xaa\xf1\x8d\x3a\x04\x75\xf8\x2b\xa7\xa0\x1d\x3c\xef\x65\x10\x7d\xbe\x76\xe1\x24\xf9\x5a\xcc\x91\xbe\x0c\xa2\x93\x45\xf9\x47\x75\xfc\xbd\x53\x53\xd9\xbc\x83\x85\xca\xf1\x80\xce\x2a\xf4\xdb\x50\x26\x3b\x6c\x10\xa8\xdd\x6d\x16\xe3\x85\x70\x66\x51\xc5\x59\x8a\xdf\x0e\xca\x4e\x02\x26\x97\x6c\x57\x04\x87\x81\x10\x50\xb8\x6d\x2f\xf2\xf6\x96\x5f\xd4\x80\xa1\xd6\x1a\x38\xb4\x1a\x99\xcd\xff\xc3\x15\xd3\x97\x5c\xde\x4b\x6a\xd2\x61\x6c\xed\x47\x6d\xc8\xa4\x26\x06\xb9\x0a\x7c\x7a\xc9\x2d\x80\xb7\x92\x92\x27\xd8\xc6\x94\x31\x8d\xab\xa2\xb2\x27\xe3\x75\x0b\xe0\x1d\xa2\xff\x52\xfe\x9f\xff\xf5\xbf\x89\xd9\xef\x49\x49\xed\x11\x33\xa7\xd7\xb5\xfc\xba\x9b\xb7\xd8\xbf\xbb\xf3\x04\xfa\x77\x30\x10\x41\x7f\xaa\x61\xf6\x94\x9a\xd0\x28\x3f\xca\x61\xf4\x7d\xc5\x36\x80\x98\xc8\x21\x4d\x7a\x32\x67\xe3\xf1\xa4\x0d\x23\xaa\x4c\xf5\x7f\x77\x5d\xc4\x16\x17\x8b\x26\x41\xd8\x4a\x74\x62\x22\x50\x73\x01\xc0\xe5\x3e\x03\xe9\x2c\x9f\xfd\x95\x44\xb7\x10\xd1\x75\x44\x88\x90\x1e\xc6\x10\xf6\x8a\xc9\x6f\xfa\x02\x99\x88\xe4\x72\xff\x99\x59\x8b\x0b\x12\x91\x4b\x3e\x12\x02\xea\x1a\x09\x3b\x7a\xdc\x59\x1c\xa8\x5e\x8d\x47\xa4\xe5\x4c\x30\x6e\x18\x60\x4a\x12\xb9\x5a\x06\xe5\xf2\x92\xda\x44\xa3\x07\x09\xe1\xef\x34\xfd\xda\x8e\xd9\x22\xd9\x97\xcd\x5e\xae\x44\x20\xc1\xf7\xcb\xf8\x99\x37\x26\x3f\xb1\xa0\xbd\x41\x06\xed\x6b\x64\xe0\xe6\x25\xbc\x8c\xfc\x3f\xc1\x8d\x15\x55\x02\x39\x57\x53\x9a\x3f\xba\x15\xd3\x46\xef\x87\x78\x4f\x2c\x6e\xcb\x45\x0f\x76\x70\xe3\x40\xd4\x8c\x9d\x76\x72\x87\x12\x2b\x83\xdc\x87\xa0\xa3\x78\x96\xc7\x5b\x58\x45\x34\xe4\x9a\xdb\x22\x2e\xa7\xce\x1c\x25\x19\xdc\xe0\xe3\x8b\xf2\x35\x3f\x7d\x63\x58\x76\xdd\x04\x5b\x66\x23\x46\x5c\x5f\x8d\xd7\x8b\xb4\xda\xa1\xff\x49\xe0\xd9\xd3\x59\x75\x5d\xe0\x7e\x40\x1d\x9f\x9d\x6e\x49\x00\xdb\x46\xc2\x22\x1a\x62\xeb\xd8\x4f\x47\x42\x42\xa6\x77\x65\xff\x78\x50\xc8\xb4\x8d\x87\xc3\x42\xfe\x59\xeb\xf1\xfc\x4d\x16\x57\x3c\xbd\xd2\xe2\x8a\xe6\xee\xb6\xfc\x0b\x86\x5a\x22\x29\x1d\xc6\x64\x6f\x1f\xb5\xd4\x6a\x1d\x67\xe8\x3b\x7e\x47\xf9\x8f\xdb\x6b\xa3\xbb\x9d\xbf\xc3\x62\x1b\xcf\x38\x10\x83\xa3\x51\x39\x84\xb0\x41\x20\x8e\x58\x3c\x26\x1d\x7b\xa9\x38\xe2\x19\x63\x19\x7a\x12\xa0\x88\x99\x3e\x58\x25\x0e\x57\x0c\x87\xe9\xd4\x7f\x1f\xe0\x67\x5a\xb2\x04\x2a\x8a\xb9\xe4\xcb\xd1\x8a\x47\xec\x6f\x0f\x85\x2d\x8e\x47\xc9\xbc\xc6\xbd\x22\x18\x0e\xf2\xc1\x1a\xe1\x31\x1b\xdb\xb8\xff\x95\x50\xc6\x79\x1b\x17\x2b\x0e\x07\x53\x75\x71\x28\x1b\xfe\xbc\xc2\xc6\xb7\x36\x0c\x5f\xe2\xb5\xf4\x0c\xd7\x63\x6e\xc0\xe3\x80\xfd\x78\xd0\x1c\xe8\x2c\xdc\x7b\xa1\x17\xdd\xec\x9a\xdc\x28\xdf\xb3\x3e\x44\xe9\xef\x25\xee\xd0\x03\xc9\x6f\x88\x3b\xb3\x25\xe3\xfa\x71\x1f\x71\x00\xa7\xe5\x3a\x33\xe3\x05\x12\x2e\x9f\xb0\xb6\x2a\x11\x4f\x77\x26\x29\x57\xa2\xfe\x5c\xbd\xaf\xed\x07\x21\x77\x71\x9f\xc3\xd2\xe4\x73\xf5\xd4\x53\x5c\x73\x48\x12\x2d\xca\xfd\x9e\x97\x30\x77\x97\xd3\x78\x99\x04\x50\xc5\x4d\x1d\x15\x24\xe4\x1f\xc7\x6d\xc9\xab\x46\x7a\x7a\xbe\x6b\x0e\x89\x1c\x9d\x0b\xbe\x3e\x9a\xca\xdd\x51\xcd\x89\x87\x24\x79\x2c\xa3\x68\xc4\x39\xe6\x40\x62\xba\x04\x98\x4f\xcb\x47\x31\x76\x38\x39\x5c\x74\x9d\x5d\x05\x67\x01\x14\x52\x03\xc2\xa2\x58\xae\x0f\x89\x63\xa1\xad\x42\x80\xf5\xdd\x8a\x24\x1a\xf5\x1b\x42\xfc\x9e\x8e\x79\x9c\x93\xee\x4e\xcc\x7e\x80\x9b\x41\x1c\x3a\x25\xfc\x70\x67\xe3\x90\x87\xd7\xdc\x38\xdc\xab\x7e\x7e\x1c\x21\xc4\xef\x19\x07\xf7\xf2\x94\x1f\x42\xc6\x22\x3e\x34\x1e\x52\x0e\xf5\xa2\x53\x68\x9d\xee\xc6\x43\xf4\x41\x6a\xd7\xc1\x79\x0d\x0f\x4f\x31\x92\x3f\xd8\x7c\x34\x3d\x38\xa5\x44\x1c\x0d\x33\x22\x82\x38\xe2\x66\xa3\xf5\xbf\xbc\xc5\x79\xa5\x51\xd3\x81\x06\x2e\x36\x0f\x36\x77\x0a\xe9\xb8\xbc\x48\x07\x19\xeb\x42\xe5\x3a\x29\xfc\xf2\xc1\x2b\x70\x16\x67\x2f\xf2\x5d\x78\x64\x40\xc0\xb3\x95\x2c\xe4\x5d\x0c\xb7\xc7\x99\xd5\x05\xbd\x4e\x1b\x73\xac\x1a\x50\x8e\x45\x4f\xe1\x8c\x77\x86\xd2\x59\x60\xcc\x62\xa6\x7c\x62\x32\xab\x78\xb3\x0c\x6a\x97\xdf\x47\x0e\x36\xbe\x5f\xc0\x1a\x59\xb4\x6b\x8e\x9f\xd8\xd3\xa1\xf8\xb3\x5a\x1e\x9b\x70\x04\x73\x34\x0e\x64\x11\x6e\xf5\x29\x81\x78\xb2\x5b\xb7\x39\xdb\x1a\x6d\xad\x99\x59\x04\xa4\x80\x06\x7f\x74\xb3\x74\xcf\x7e\x7a\x6e\x00\x0f\x06\x35\xf4\xf8\x21\xa6\xf0\x07\x06\x00\xb6\xf1\xf0\x08\xc0\x16\xe4\xc9\x0c\x1a\x46\xc0\x02\x1e\x1a\x88\xbe\xd7\xf9\xfb\x07\x02\xbe\xf1\x3b\x07\x72\x62\xa3\xd0\x8b\xda\x45\x31\xbb\xff\x1f\x1a\xdf\x48\xdd\x01\x71\x46\x2f\x01\x8c\x08\x3e\x7a\x3b\xdd\x11\x7d\xe0\x6b\xb6\x66\xe1\x60\x50\xdf\xb7\x1e\x67\xbe\xa9\x9a\x96\x10\xaa\x6c\xdd\x87\xfe\xf1\x38\x80\x98\x3d\xb6\x7d\x7b\xaf\x22\x09\x4f\x2e\x8e\x5f\xf6\x17\x1e\x45\x09\x83\xaf\x48\x5e\x87\xf8\x04\xb4\x7f\x3e\xf2\x11\x04\x79\x4b\x56\xdc\x7f\x5d\xf4\x20\xff\xf4\xa2\xfe\x83\x8f\x24\xc4\x8f\x43\x8c\x5f\x09\xe9\xe4\x4a\xca\xda\x64\x39\x7b\xae\x33\xf1\xce\xf1\xab\x7b\xc2\xc1\x0e\x2f\x14\xaf\xf8\x7e\x6c\x53\x57\xe2\x57\xbd\x90\x14\x5f\x91\x66\x53\x8c\xda\x61\xf8\xa6\x94\x0f\x9e\xf3\xb3\x83\x71\x91\x6d\x4c\x2a\x08\x48\x3a\x28\x0f\x2e\xed\x23\xe8\xa9\xb5\x67\x08\x7c\x0b\x18\x09\x4c\x98\x43\x30\x32\x1d\x07\x1a\x1d\xba\xb9\x1e\x33\x76\x84\xa4\xea\x06\x72\x2f\xab\x33\x93\xe0\x9b\xa9\x05\xdf\x4c\x95\xc7\x7b\x4f\x82\x8c\x08\xe7\x61\xc1\xde\x3d\x4f\x14\x65\xc7\x07\x9f\xcf\x47\xb0\x76\x9c\xc5\x11\xda\x51\x46\xbe\x9a\xf4\x22\x9b\x2a\xae\x27\xe1\x5a\x61\x0e\x1b\x13\xd9\x21\x12\xb5\x1e\x5f\xec\x0b\x8b\xe4\xbd\x8b\x28\x4b\x1f\x08\x8d\x67\x22\x36\xd5\x30\x6f\xdb\xac\xf9\xad\x0e\x18\x21\xe3\xe9\xa9\xec\x1c\xb7\x69\x81\x55\x51\x13\x88\x77\x0c\x73\xe0\x37\xe8\xf3\x2e\xae\x8d\x2d\x18\x66\xe8\x45\xaf\x09\x20\xe9\xd4\xf9\x6a\x83\xf9\x2f\xe6\x08\xc9\x54\x63\x47\x4c\xfa\x69\x80\x19\x48\x79\xc4\x35\xb5\x27\x5b\x67\x61\xf8\x6d\x78\xbc\x90\x1b\x94\x72\x7c\x5a\x9d\xe9\xdd\xc7\x46\x6f\x76\x9c\x71\xa6\xdd\x73\x4c\x2f\xb1\xe3\xba\x07\x2b\x05\xa7\x18\x07\xe0\xea\xdd\x4a\xad\x29\x12\xc7\x03\xc7\x99\x6f\x59\x0f\x46\xf5\x0c\xe7\x5e\x57\xeb\xbc\x9c\xc0\xd2\x8d\xb9\x8e\x1d\x91\xfc\xae\x36\x46\xa3\xf4\x10\xae\x99\x3f\x3e\x54\x58\xcf\x38\xdc\x1c\x16\xb9\x68\x90\x11\x5b\x33\x90\x2f\xb4\x30\x1a\xe2\x6c\x13\x7f\x60\x90\xfc\xaa\xf4\x7a\xe5\x5e\xe1\x3d\xe7\x2b\xd8\xed\x92\x03\xdb\xf9\x0c\x2b\xe5\x75\xf4\xa6\x8e\x2d\x70\xf3\xd5\x1f\x1a\x19\x06\xc4\x3a\xf7\x5c\xf3\xc7\xc6\xd6\x96\xdd\x7d\xbd\xca\xf0\x24\x72\xb7\xd1\x10\xbf\x0f\xa5\xd8\xca\x1f\x2f\x28\xef\x69\xae\xb7\x8b\x4a\xdc\x6a\xee\x1e\xcb\x1b\x15\xdf\xac\x28\x1f\x4f\x32\xd3\x11\xf7\x04\x3c\x11\xb5\x4d\x80\x23\xf1\xac\xff\xf6\xc1\x8e\x46\x73\x09\x18\x62\x80\xdb\x16\x43\xe9\xcb\xdf\x35\x83\xc0\x09\x19\x4e\x83\xc9\x40\x77\x3f\x78\x45\xf8\x18\x13\x23\xee\x1b\xbe\x50\xc5\x97\xea\xf9\xa5\x4b\x0d\xa7\xd0\x03\xcd\x9e\xbc\x56\xe3\xd1\x91\x09\x85\xfd\x3e\xb0\x42\x8f\xa3\x51\x7c\x79\x8e\xe1\x21\x24\x8f\xf9\x0f\x7b\x7c\x51\xc5\xbd\xe2\xff\x11\xbf\x43\xa6\x20\xef\x63\x64\xeb\xa6\x6d\x68\x79\x60\x22\xb6\x37\x33\x5e\x59\x5e\x37\x53\x01\x26\xf0\xfb\x6c\xd0\xfb\x16\x56\xe7\x02\xd9\x24\x3f\xf0\xe5\x0b\x5f\xab\x6f\xfa\x7c\x6b\x75\xd8\x02\xb9\x52\xbb\xf5\x35\x17\x58\xad\x53\x2b\x08\x6a\x6a\x9d\x66\xc9\xf1\x74\xa8\xa2\xc0\x97\x9a\x13\xc0\xc2\xcd\xc1\x37\x1e\x08\x5d\xc3\x3e\xe3\xa9\x22\xcc\x5e\xb2\xd3\xb7\xc8\x4e\xaf\x39\x7b\xda\x83\x8d\xca\x55\x1b\x0d\xea\x58\xbd\x9b\xb6\x9c\xd4\x79\xc9\x97\x7f\xc6\xf0\x86\xb9\x4d\x99\xef\x27\x78\x7b\x4d\x99\x13\xac\x01\x72\x8a\x00\xc0\x1e\xc7\x42\x58\xab\x2a\xa0\x58\x85\x35\xde\x50\xd6\x31\x68\x3c\x19\x36\x86\xc7\xb7\x4e\x8e\xd4\xd0\x33\x7b\x3c\x2a\xf5\xd9\x4c\x46\xd5\x2c\xff\x8e\x2f\x83\x28\xf4\xa5\xfc\x0c\xa0\x96\x4d\xd3\xf3\x03\xcc\x7b\x16\xb7\x56\xb7\x0e\x4d\x3f\x5b\x3e\x8b\x5b\xab\xdb\x09\xa6\x04\x7a\x8a\x2a\x81\x3e\x8e\xab\x1d\xdf\x3c\xa4\xbe\xda\x61\xd5\x0f\xb4\x41\x5d\x87\x17\x57\x7c\x8b\xf1\xca\x15\x4c\x7a\x9c\xd4\x0c\x29\x74\x5c\x79\xae\xe7\x15\x09\x11\xe5\x6c\xd7\x67\x5c\xf2\x60\xdf\x93\xba\x61\xe7\x93\xea\x73\x3b\x05\x4f\x42\xb1\xd1\x79\x39\xac\x6e\xcb\x9e\x63\x72\x37\x19\x3c\xcc\x61\x5b\xef\x0d\x2c\xfd\x19\x60\xe9\x6b\x02\x4b\xaf\xe5\xf3\x1e\xd3\x56\xe9\xd0\xd9\x95\x7d\x8e\x48\x81\xa0\x95\x57\x67\xb4\x02\x9c\x5d\xe4\x73\xb5\x60\x9d\xc9\x54\xca\xd6\x5d\xc8\x82\x4f\xd0\x82\x7e\x78\x44\x04\xef\x53\x07\x32\xd7\x1a\xab\x01\x72\xfa\xad\xee\x57\xf2\xde\x11\x2b\x06\x34\x86\x0f\x92\x13\xc0\xe2\x8d\x0c\x82\x35\x1e\x09\xa7\x38\x1e\xcb\x20\xf0\xeb\x98\x51\x0a\x07\xf3\xc0\xc2\xb8\x08\xee\x7d\x3e\x74\xb3\x80\xfb\x5c\x36\xd3\x51\x48\xeb\xde\x00\xad\xe7\x31\x9c\x76\xda\x09\x2a\x85\xad\x88\xa6\x26\xb1\x9b\xfa\xa0\x85\x7d\x7a\x0c\xa1\x9b\xf6\x9c\x05\x3e\x40\x26\xb0\x5f\x7c\x4f\x5f\xc1\x44\x7a\x85\xcc\x2a\x39\x26\x6f\xe1\xb5\x47\x4b\x5b\x19\x2c\x51\x6a\xd3\xd3\xbc\xe8\x71\x7f\xcd\xb3\x0b\x0c\xee\x1a\x96\xe6\x87\xf7\x89\xb4\x45\x08\xa6\x16\xb2\x12\xbf\x9b\xac\x91\x2b\x02\x28\x37\x78\xc5\x93\xb4\x0d\x2b\x43\x69\x70\x5f\x9e\x8a\x1a\x78\x0b\x7d\x22\x98\xdb\xd1\x97\xd3\xec\xc9\x83\xdf\xf9\x78\x9a\x9f\x4d\x80\x63\x38\xba\x63\xec\x56\x5d\x16\xa2\x73\xfc\x62\x42\x3e\x42\x2f\x83\x2b\x86\x23\x50\x78\xbe\xc3\x2f\x05\x04\xee\x47\x43\x39\x1c\x7d\xf8\x42\x89\x06\x4a\x4d\x5a\x08\xea\x04\x9f\x75\xe1\x70\x53\xb9\xee\x31\x87\x22\x6f\x1d\x34\x0c\xb9\x47\xe8\x00\xfd\xa0\x6b\x29\xc6\xc5\xfc\xdb\x98\xff\x5f\x9e\x07\x0d\x07\xe0\x1f\x09\x3d\xd2\xff\xff\x93\x47\x42\xc7\x96\x59\xf7\x4a\x28\x5e\x41\x5c\x20\xf8\x3a\xde\xc7\x91\xe3\x2a\xda\xcf\xa8\x11\xee\x53\x64\xc4\xae\x7c\x64\x79\xb3\xaf\x59\x7c\xc5\x6a\x83\x2d\x3a\xee\x2f\x88\x97\x8f\x7a\x93\x1a\xd3\x97\x38\xe2\x21\x48\xce\xd4\x5b\x24\xf9\x6a\x8d\x48\xf5\xf2\x78\xa9\xd6\xa3\x05\x4c\x12\xea\xa2\xb1\xbc\xc9\x17\x0c\x79\x53\xeb\xd6\x1e\x0d\x39\xde\xdc\xd1\xa8\xa5\x92\x5c\xb7\xb3\x50\xfc\x59\x66\xa2\x80\xc1\x54\x24\x27\xbc\xbe\x2a\x39\xf2\x2a\x1e\x1e\x99\x96\x94\xe6\x4f\xa3\x30\x82\x11\x6b\x33\x71\xd7\x41\xa3\x00\x9a\xe5\x55\xc1\x58\xc6\xf1\x7f\x92\x1b\x7e\xb0\x50\x72\xf4\xdb\x6f\xf8\xec\x9b\xe4\x2c\x11\x3f\x84\x28\x37\x36\x3e\x9d\xbf\xb3\x6e\xfb\xbe\xad\x96\x43\x3f\xff\xde\xa3\x2b\x9d\x40\x9b\xdb\x9f\x69\x37\xfd\x02\x6c\x37\x58\xc3\x57\xc3\x97\xda\x1d\xbd\xe4\x3f\x82\x93\x4b\xba\xa9\xbb\x23\xfe\x12\xbf\xb5\x70\xc7\x3c\x32\xeb\xf8\x13\xa3\x17\xc4\x62\x8a\xf4\xea\x54\x4b\xf0\x85\x37\xb5\x8e\xe0\x43\x70\x47\x57\x81\x21\x27\x5f\x8c\xf3\x45\x8a\x57\x14\x05\xc8\xd5\x77\x23\x7b\x79\xd2\x4f\xde\x4c\xbc\x7e\x7b\x45\xc9\x55\x7b\x2f\x0e\x23\x5d\x17\xf6\x18\xe8\x77\xd5\xec\x21\xed\xd3\x0b\xf7\xe5\xba\x60\xa5\xb5\x49\xfe\x2a\x56\x16\x7c\xf0\x55\x1b\xa7\xf1\x37\xfa\xcd\x17\x35\x98\x2a\xad\xf2\xab\xc3\x7c\x2f\x72\xdf\x59\x3b\xfe\x5c\x1d\x93\xbd\xbe\x2f\xa9\x2b\x30\x39\x8c\x62\xcb\x2d\x0e\x1a\x77\x28\x85\xf4\x1e\x9e\x95\x51\x07\xbf\xf3\x35\xc8\xb0\xad\xe0\x50\x79\x60\xac\xb3\x77\xb9\xe2\xa7\x4c\x42\xc0\x4c\xf6\x9f\x3d\x61\x14\x35\xec\x9c\x4c\xd3\x0a\xd1\x5b\x46\x51\xa5\xf9\x30\x80\x87\x5e\x31\x12\xa3\x80\x29\xe3\xce\xe6\xad\xca\x78\x6c\xfa\x56\xd8\x87\x3e\x9a\x19\x80\xdc\x89\x6b\x2d\x80\xb0\xcf\xfd\x06\x40\xf3\x1f\x6d\x54\x80\x31\x4f\xd1\xec\xd1\xb7\xfc\xa2\x8f\xf8\x59\x4d\xfb\x26\x51\x33\x88\xb6\x8d\x6f\x86\xe9\x1d\x8e\x0f\xc8\x64\x41\xcb\xc0\xe7\x3e\x9c\x19\x14\x69\x47\x5c\x14\x76\x82\x13\x8a\xbf\x22\xf6\xe0\x47\x3e\x0d\xc1\x6c\x72\x5f\x65\xf2\x8e\x45\x50\x07\x06\xff\x15\xc2\x78\xa7\x95\x68\xdc\xd3\x1a\x34\xee\x23\xe0\xe2\x04\x36\x7e\x7e\x85\x5f\xc2\x42\xdc\x88\x39\xb4\x4c\xa9\xc8\x26\x2c\x79\xe3\x47\xd2\x43\x1c\x14\x4b\x4f\x18\xee\xc3\x6b\xb3\xa4\xe1\x3f\x5c\x1b\x76\xcb\x9f\x9c\x0d\x0e\x02\x9f\x1b\x1e\x69\x3e\x37\xfc\xb2\xad\xcf\x9d\xfb\xd4\xec\xb4\xd4\x7b\xe6\xbf\xe1\xd8\x94\xaf\xf7\xf2\xf5\xdd\xee\x6b\x7c\x5f\xf0\xdb\xa0\x46\xf8\x99\xda\x38\x77\xdc\x86\x7e\x15\x6f\xd4\x84\x31\xcb\x68\xcb\x54\xab\x23\x88\x71\x1f\xc7\x8a\x9e\x0d\x05\xfa\xe5\x23\x8b\x7a\xac\x44\x5f\xc5\x1c\x13\xb3\x67\xb6\x8e\x94\x43\x46\x6b\x03\xe3\x90\xf6\xe8\x73\x91\xfa\x89\x22\x8d\x6d\x77\x1f\xe4\xfa\x19\xd9\x7e\x84\xb3\xdf\x82\x1c\x7f\x04\x92\x83\xce\xad\x4a\xfc\xd5\xce\xe9\xe7\x3a\x15\xcc\xde\x2e\x86\x45\x60\xf2\xcc\x31\x4c\x01\xfa\xca\xb1\x31\x06\xb9\x42\xc2\xf1\xdd\xd9\x56\xcd\xdf\x72\xcd\x04\x51\xde\xe9\x5b\xd8\xbb\xdd\xb8\xa3\x2f\x07\x45\x95\xe4\x83\x45\xee\xeb\x24\xd3\xca\x76\x1b\xca\x2d\xa2\xdd\xee\x98\x5d\xc4\x5f\x87\x72\xa0\xc6\xe5\x93\x42\xfc\x1c\x10\xfd\x4c\xdf\xe2\xa7\x5b\x2b\xb9\xb6\x01\x6d\x58\x3e\x97\xae\x17\x39\xa0\x14\x53\x8e\x5b\xa5\xdb\x6a\xcf\xc7\xb2\x7e\x14\x81\x17\x87\x72\x70\x36\xff\x19\x39\x21\x92\x43\xce\x7c\x81\xdf\xf3\x03\x54\xd8\xa9\x14\x18\x97\x1b\x41\x11\x9d\x37\x01\x31\xbd\xfe\xe5\xed\xe5\x08\x72\x66\x83\x6a\xc9\xcc\x86\x8e\x3f\x19\x1b\x6e\x5f\x71\xe5\xb8\x29\xc0\x7d\x33\x3f\x03\x81\x3c\x3a\x01\xa1\x21\xef\x99\x05\xf1\xcc\x36\xa4\xd4\x56\xe4\x7b\xd9\x31\x4a\x67\xf2\x3b\x06\x0a\xde\x48\x13\x28\x7b\x22\x6d\xd2\x6b\x1d\xf6\x59\x8b\x1b\xc2\xf3\x03\x09\x11\x08\xf8\x81\x84\xda\xce\x0e\xcf\xa0\x49\x65\xbd\xab\x0a\x15\x1c\x05\xfe\xbd\x66\x19\xa8\x81\xf8\x96\x0d\x42\x9b\x76\xc3\x24\xc2\xad\x9c\xf4\x76\x86\x5f\xd1\xd2\xe9\x46\xe4\xfd\x22\xb0\x7e\x1b\xf2\xa3\xc9\x52\xc3\x80\xd7\x2b\x87\x18\x33\x28\xbd\x3a\xf3\xaf\xc7\xc1\xf6\x34\x9a\xcc\xb6\xba\x29\x9d\xa5\x4a\x67\xf3\x96\xf2\x22\x60\xfe\xd6\x73\x67\x17\xce\xe4\xb3\x55\xfc\xb5\xd8\xd1\x24\xc2\xa6\x74\x26\x93\x96\xf6\x15\xac\x87\x01\x5e\x24\x63\x1e\xe3\x06\xad\x7c\x3b\x00\x57\xc6\x3d\x66\xb7\xf6\xe1\x86\x60\x87\xf8\x57\xd4\xfd\xf9\xec\x7a\xe7\x73\x79\xb6\x67\x86\xd2\x93\x8b\x61\x70\x72\x59\xb4\xc0\x62\xd5\xca\xf3\x16\xfc\xef\x9a\xfd\xb8\xae\x24\xdc\x7b\x96\xd7\x11\xed\x15\x83\x5c\xb6\xd1\xa4\x87\xf7\xd1\x05\x82\x26\x2b\x98\x79\xce\x27\x06\x28\x7f\x2b\x57\x43\xe0\x56\xf8\x45\x7e\xab\x1d\xcf\x37\xd3\x58\x70\xe0\x50\xe3\xc1\xa1\xf7\x92\x13\xc0\xcc\xbd\x72\x62\x43\x47\x88\xa3\x85\x3a\x1e\xed\xdf\x75\x0f\xf5\x87\xa1\x2c\xe2\xc2\xa2\x1c\xe4\x67\xb6\x95\xbb\x17\xa3\x20\x0c\x83\x0d\xa5\x90\x30\x2f\xfb\x2e\x92\xd3\x5c\xd9\xcc\xc0\xad\xa8\xc1\x07\x8d\xf7\x8b\x00\x16\xa2\x78\xf0\xa0\xaf\x8c\x41\xca\xbf\x14\x62\x95\x7c\x92\x98\x86\xcf\xa3\x27\x1e\xcd\xfc\x18\x84\xd1\x44\xf7\x7f\x1e\xc9\x13\x4d\x72\x49\xca\x2a\x71\x04\x91\x3c\x31\x15\xc0\x3e\xed\xda\xd5\xd3\x47\xe1\xc3\x4e\x6c\x11\xf2\x00\xfc\x10\x14\x17\xfe\xa0\xaf\x3e\xe9\x38\x60\xd4\xa0\x36\xff\xa6\x0f\x46\xc9\xef\xb0\x5d\x31\x7b\x48\xd3\xdd\x7f\x72\xad\xff\x2d\xd1\x60\x0b\xdf\x84\x66\xe0\x39\xe7\x3f\xd2\x90\x7b\x23\x41\xe7\x67\xbf\x47\x78\xc1\x95\x54\x46\x88\xdc\x4d\x1d\x3f\xab\xad\xa8\xc2\xcd\x56\xbe\x89\xe3\xf1\x44\x3f\x1e\x46\x54\xd4\xd4\x04\x51\xcd\x8e\xef\x20\x66\xdf\x67\xfe\xad\x38\x5c\xc2\x93\x82\xaa\xe3\x8f\x0b\xc9\x27\xd6\x49\x40\xfe\xde\xbd\x13\x97\x7c\xea\x9b\x66\xfb\x39\xc9\xd7\x3c\x27\xfa\x9b\xe0\x21\x46\x89\xd7\x45\x4c\x1a\x25\x13\xf9\xc9\xa9\xef\xb8\xe1\xef\x48\x4b\x25\x06\x82\x17\x92\xbe\xdb\x21\x43\xbe\x99\x89\x8c\x0d\x32\xf8\x05\x4f\xfc\x2c\xf0\xb3\xc8\xef\xf1\xeb\x80\x5f\x87\xb2\xbc\x95\xca\xe0\x30\x54\x9d\xb4\xbe\x0d\x72\xee\xf1\x9b\x1f\xfb\xc1\x07\x8b\xd1\x8f\x3e\xab\x65\x3f\xf0\x2e\x93\x7c\xa2\x13\xf9\xf6\x83\xf2\xe5\xf9\xf9\xe7\xfe\x25\xfa\x47\xec\x1f\xbb\xd7\x2c\xa4\x28\x87\xbb\xd7\x2c\x49\x3e\x02\x9b\x20\x5d\x56\x1b\x94\x34\xe5\xf2\x38\x34\x53\x92\x94\xd7\xe6\x87\xcc\x8f\x4b\x53\xc8\xf5\xa3\xd2\x54\xf2\x7f\x03\x00\x00\xff\xff\x31\x89\xdd\xe9\x68\x87\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xdb\x72\x1c\x47\xd2\xde\x7d\x3f\x45\x4b\x0e\x9a\x52\x04\x38\x0c\x49\x61\x87\x43\x41\x52\x86\x00\xf1\xb0\x3f\x41\xf0\x27\xc0\x5d\xaf\x19\x8c\xde\x9e\xe9\xc6\x4c\x2f\x66\xba\x47\x7d\xc0\x08\x7b\xe5\xd7\xf0\xeb\xf9\x49\x9c\xf9\x65\x66\x1d\xba\x7b\x40\x69\xd7\xe1\xff\x06\xa8\xa9\xca\x3a\x65\x65\x65\xe5\xa9\xaa\xf3\xfd\x3e\x2b\xca\x6e\x95\x3e\x4f\x4f\xd3\x7d\x5e\xd5\xdb\xb2\xeb\xd2\xae\xdc\xde\x3c\xd9\x34\x5d\x5f\x16\xe9\xab\xaa\xa7\xdf\xed\x5d\xb5\x2a\x93\x64\xd3\xec\x4a\x02\x7d\x4d\xff\x92\x22\xef\x36\xcb\x26\x6f\x0b\xca\x38\xb7\x74\x52\xfe\xb6\xdf\x36\x2d\x03\xfd\x22\xa9\x64\x53\x6e\xf7\x5c\x87\xfe\x25\x5d\xb5\xae\xb3\xaa\xa6\x9f\x57\x94\x4a\xdf\xd4\x49\xd7\xac\xaa\x7c\x9b\x05\x05\xc8\xb0\xf2\x1f\xd3\xef\xeb\x22\xbd\xea\xcb\x7d\xfa\xac\xdb\xe5\xdb\xed\x8b\xbc\x43\x95\xbe\x4c\xf3\xd5\xaa\x19\xea\xfe\xd9\x53\x29\x90\xc6\x9b\xa1\xb7\xd6\x2f\x87\x5e\xf2\x86\xbd\x65\x7d\xdc\x27\x6d\xb9\xae\x68\x62\x2d\x65\x7d\xd0\x64\x72\x28\x97\x5d\xd5\xf3\xa0\xff\x22\xa9\xe4\xae\x6c\xbb\xaa\xe1\xf1\xfc\x59\x52\xc9\x3e\x5f\x33\xc0\x7b\xfa\x97\xf4\xe5\x6e\xbf\xcd\x51\xe1\x5a\x93\xc9\x36\xaf\xd7\x83\xc0\xbc\xd5\x64\x92\x0c\x84\xb9\x3a\x07\xce\x3e\x6a\x32\x29\x77\x79\xb5\x65\xfc\x3c\xe1\x04\xb5\xdb\x75\x87\x06\x58\x7c\xaf\x49\x1a\x63\xd6\xdf\xef\x4b\x0c\xf1\xc9\x35\xa5\x92\x55\xbe\xef\x57\x9b\x9c\x72\xce\x24\x95\x10\xd0\xbe\xa1\xb1\x36\xed\x3d\xe0\xec\x47\xd2\xb4\xeb\xbc\xae\xfe\x91\xf7\x32\xfe\xcb\xe0\x67\xb2\xab\xda\xb6\xe1\xa9\x5f\x20\x91\xd4\xe5\x21\xe3\x76\x28\xe7\x5d\x79\x08\x5b\xe1\x92\x5d\xb5\x6e\x65\x96\x5c\x78\x81\x5f\xdc\x0a\x97\xdd\x34\xed\xad\x16\xbc\xe4\xe4\xa8\x2a\x0d\x42\x4b\xe3\xfe\xf3\x9a\xf0\xa2\xa5\x17\xf8\x11\x01\x74\x49\x5e\xec\xaa\x3a\xdb\xe7\x75\xc9\x38\x3a\xe5\x5f\x84\x17\xfa\x95\xe8\x72\x67\x5d\xd9\xf7\x55\xbd\xee\xb8\x58\xb2\xd2\x2b\xcd\x4a\x82\x32\x97\xc7\xe3\xe9\xb2\x9b\xb2\x2c\x64\x44\x5d\xfa\x92\xd2\xc9\x7e\xd8\x6e\x69\xee\xbf\x0e\x65\xd7\x33\xfc\x7b\xfa\x4d\xb3\x90\xdf\x49\xd5\x75\x94\xa0\xec\x37\x48\x24\xb4\x00\xf5\x0a\x43\x3a\x43\x22\x49\x3e\x75\x65\xde\xae\x36\x9f\x13\xf9\x8f\x1e\x39\xb1\x58\x2c\x8e\x2e\x0d\x93\x83\x92\x82\xf4\x60\x1d\x24\xab\xa6\xe0\x1f\x67\xf4\x8f\x9a\xae\xea\xae\x27\x92\xfe\x9c\x68\x82\xc1\x24\x25\x68\xec\xab\x7e\x5b\xfa\x4c\xec\x8f\x8e\xd7\x21\x7d\x59\xb5\x5d\xff\xa4\xaf\x88\xe4\x3e\x0c\x75\xc2\xf3\x23\x72\xce\x8a\xa5\xed\xf2\x57\x0d\x61\x07\xd9\x2d\xcd\xef\xe2\xfe\xea\xdf\xdf\x9e\xa4\xef\x69\xab\xaf\xdb\x92\xd2\x29\xb5\x41\xff\xa8\xce\x0f\x8b\x84\x6a\x59\x4f\xe7\x79\x9f\x2f\xf3\xae\xf4\x68\xe5\x42\xa1\x51\x57\x06\x4a\x65\xb6\x01\x16\xd1\xf5\xd1\x7c\xe7\xe8\x9c\xda\xd0\xdd\xe1\xda\x78\xc7\x5b\x84\xf2\x99\x6b\xa0\xf2\xfb\x6d\xc9\xf9\xd4\x54\xfa\xe6\xdd\xbb\xcb\xf3\x9f\xd3\xb2\x5e\x57\x75\x99\x1e\xaa\x7e\x93\x0e\xfd\xcd\x7f\xcb\xd6\x65\x5d\xb6\xc4\x44\x56\x55\x4a\x3b\xa3\x25\x22\x48\x89\x3c\x65\x72\x8b\xa4\xeb\xb6\xd9\x4e\xd0\x7b\x75\xf5\x36\xbd\x60\x14\xef\xf3\x7e\x83\x81\xf4\x9b\xa4\xfb\x75\xcb\x28\x72\x1d\x5e\x6f\xca\xf4\xa6\xa2\x59\x03\xa8\xb9\x31\x7c\xa4\x85\x8e\x71\x91\x94\x6d\x9b\xd1\xbe\xef\xef\x33\xad\xac\xed\x8d\x21\xa5\x09\x22\x9d\xba\xe9\xd3\x65\x99\xa2\xce\x22\x49\x6c\xc0\x86\xdd\xd3\xfd\x7e\x5b\xad\x64\xc7\xbe\x92\x32\x8f\x68\x66\xd1\x8a\xa5\x10\x0e\x88\xb2\xb2\x00\x5d\xc4\xff\xee\x9b\xa1\x4d\x23\x36\x80\xfa\x9b\x92\xf8\xf2\x66\xa0\x2d\x97\x13\x4f\xdd\x36\x43\xf1\x15\x28\xd5\x46\xef\x09\x35\xfd\xd0\xd0\x80\x81\x1d\x07\xe0\xbb\x38\x25\x8a\xe3\x53\xa1\x2d\x77\x0d\x71\x07\x47\xec\x15\x11\xd4\xa1\xa2\x42\x9a\x69\x97\xdf\xd1\x7e\xeb\x9b\xb4\xdf\x54\x5d\x5a\x10\xb1\xad\xb8\x61\xda\x1a\x03\xf1\x63\x21\x0b\x22\x50\x21\x0d\xcb\x8b\xd7\x00\x50\xbb\x81\xa8\x69\x43\x8d\x31\xb7\xe7\xa3\x89\x9a\x9c\x1b\x27\xa6\x44\xed\x80\xbe\x89\x72\x1b\xe2\xad\xcc\xfd\xce\x91\xd0\xdf\x61\xfb\x34\xaa\xfc\xe6\x86\x46\xd5\x11\x55\xbc\x4e\x57\xdb\x86\x48\xea\xe3\x87\xb7\x54\x79\xd3\xf7\xfb\x6c\xdf\xb4\x20\xe3\xeb\xeb\xf7\xb4\x3d\xda\xde\xe7\x06\xb8\x66\x98\x7a\xd8\x2d\xe9\xd7\x61\x53\x11\x13\xc8\x83\x05\x02\x2a\xb6\x7c\xc0\xd4\x69\x53\x2f\xb0\x56\x43\xbb\x1d\x2d\x23\x75\x69\x25\x47\x86\xc7\x43\x78\xca\x7f\xae\xfc\x28\x31\xdd\x8e\x4e\xe1\x03\x16\x95\xa6\x5a\xe2\x34\x21\xda\x6a\xf6\xdc\x6e\x40\x5c\x97\x9a\xe1\x29\x0a\x27\x90\x2b\x97\x73\x88\x4a\x71\xc6\x07\xbc\x74\x47\x13\xd6\xdd\x7c\x75\x41\x68\xc0\x96\x46\xee\x4d\xdb\xec\x28\xf7\x25\xfd\xf3\x19\x7e\xf8\x17\xdc\x1e\x60\xf2\xa2\x20\x36\xd3\x9d\xa4\x1f\x5e\x9e\xa5\xff\xe5\x87\xef\xbf\x5f\xa4\x6f\x7a\xde\x10\x4c\x23\x7f\xe7\xb5\xa5\xa4\x1c\x88\x0e\x94\x76\x6e\x4f\xcb\xff\x35\x13\xf8\xd7\xe9\x33\x94\xfe\xf7\xf2\xb7\x9c\xce\xd9\x72\xb1\x6a\x76\x2f\x78\x73\xef\xf2\x7e\x91\x70\x09\x51\x8d\x92\xd3\x55\x59\x17\x94\xd0\x63\x55\xcb\x02\xae\xa3\xe5\xc1\x21\x2b\xa7\x7f\xb6\x6a\xea\x9b\xaa\xe5\x09\xfd\x52\xe7\x4b\xc2\x89\xc9\x05\xc4\x8e\x51\x62\x67\x17\x21\x8d\x36\x72\x75\x73\xef\x41\x31\xd5\x77\x9c\xa9\x0b\x9a\xb0\xac\x44\x8d\xaa\xc8\xe4\xb0\x7c\x85\x6c\xac\xdb\x25\x4d\xaf\x35\x7c\x77\x1e\xe1\xcd\xcd\xcd\x96\x18\x9b\x31\x2b\xed\xe1\x52\x72\x85\x6f\x85\x20\x44\x8c\x7b\x48\x36\xe7\x55\x07\xc8\xb3\xf3\x77\x69\x79\x47\xd4\x46\xe4\xb0\x6f\x9b\x62\x58\x81\xc2\x18\xf6\x24\xe5\x63\x82\xf0\x4b\x9c\x61\x25\xec\x2d\xd8\xab\x3c\x34\x66\x08\x2b\x02\xa2\x2d\x5a\x48\x7b\x99\x20\xa8\x35\x41\xc2\xba\xb9\x62\xe1\x30\x2c\x9b\xad\x30\x19\x1d\x56\xa9\x1b\xd7\xa5\xe5\xae\xb7\xf7\x29\x4e\x7d\xd0\xc5\xaa\x2d\x03\xd9\xae\x5b\x24\x7a\x56\x99\x84\x98\xdd\x55\x24\x54\x04\x4b\x85\x52\x13\x17\x99\x3d\xfc\x99\x01\x58\x4c\xeb\x66\xeb\xba\x81\x5d\x72\xc7\x5c\x42\x73\xa7\xce\x79\x7c\x1d\x86\x80\x1e\x58\xdc\x23\x62\xbc\xab\xc0\x69\x14\x59\x18\x2b\x61\x0c\x5d\x53\x57\x5d\x59\xa2\x05\xaa\xff\x94\xda\x44\x9d\x85\x8a\x30\x2a\x8a\xd8\xb9\xfb\xd7\x66\x48\x8b\x26\xe5\x83\x00\xec\x8c\x6a\xdb\x54\x6b\x9d\xbe\xce\x39\x6d\xab\xf5\x86\xf8\x4a\x73\x38\x11\xa4\x1d\x36\x4d\xc9\xb4\xf3\xe6\xfc\xf9\x77\x32\x8e\x35\x33\x37\x57\x89\xd9\x62\x3e\xf4\x0d\xd3\xa9\x2e\xa1\x0c\xc1\x1d\x2f\x80\x9c\x08\x4b\x02\x34\x16\x4f\x4d\x00\x9b\x9e\xd6\xba\x4f\xc2\x32\xdd\x20\x1e\x46\x6a\x8f\x44\x5c\x95\x62\xb2\x75\x03\xc9\xcc\xa4\x16\x66\xd5\x24\x4a\x77\x7d\xb6\xae\xfa\xec\x86\x37\x2c\xb7\xf9\x92\xeb\xf2\xc9\x41\x25\xe9\x63\x2a\x7a\x9c\xd2\xae\x27\xc9\xb1\xf8\x31\x7d\x74\xa7\xc7\xf5\x0f\xbc\x13\xb3\xfc\x8e\x60\xb1\x18\x40\x70\x4b\x14\x2e\xd2\x82\x89\xef\x45\x43\x74\xce\x38\xef\x86\x3d\x38\xba\x9e\xd0\x27\xe9\x5e\x00\x8b\xe6\x50\x6f\x9b\xbc\x00\xcb\xa1\xdd\x55\x41\xf9\x58\x56\x75\x4e\xa7\x8b\xb5\x02\x56\xf6\x88\xa8\xe1\xdd\xe5\x35\x00\xd7\xcd\x72\xa8\xb6\x85\x01\x2c\x68\x86\x77\xf9\xb6\x2a\x58\xce\xd2\x75\x0f\x65\x1a\xcb\xaa\x64\x2c\xab\xa6\xe5\xe3\x10\xb3\xb1\x8a\x47\xce\xe1\x96\xcf\x37\x64\x53\x5d\x85\x45\x3d\x77\x64\x32\x1a\x68\xe1\x21\x80\xf2\x81\x0a\x8a\xa9\xba\xfa\x71\x8f\x91\xae\x06\xea\x8b\x16\x9d\xb3\xa9\x62\x97\x3e\x79\x41\x7f\x13\x3e\x9e\x85\xef\xad\xa7\x88\xe7\xc2\x54\x0a\x07\xd9\xa5\xd1\x50\x23\xf2\x76\xd4\x65\xc4\x1b\xcc\x35\x1c\xaf\x91\x40\x37\x08\xbd\xb2\xa6\xb5\xa5\x65\x2d\xbf\xa2\xc4\x63\xda\xc0\xeb\x2d\x16\x21\x87\xf4\x42\x62\x5c\x43\x78\x63\x02\x39\x91\xed\x72\x43\x53\x63\xde\xd9\xe7\xb7\x34\xb6\xbc\x25\x21\x2c\xf9\xc4\xda\xe8\xe7\x64\x10\x01\xa8\xd9\x16\x4e\xd8\x04\x4d\x37\xed\x58\xc5\xf2\x40\x8e\x5e\x3b\x92\x22\x57\x9b\xcc\xe9\xb2\x8c\x94\xbe\xfc\x0d\x67\x1e\x8a\xbc\x6a\xcb\xc4\xce\x45\xc9\xee\x1e\xcb\xc5\x93\xb8\xb8\xf7\xab\x45\xe2\x0f\x6d\x11\x12\xd1\x97\x0d\x63\xed\xae\x74\x50\x67\x61\x6e\x5c\x81\xda\x22\x41\x4d\x9b\x8a\x35\x21\x2a\x12\x75\x4d\x4b\x45\x65\x23\x55\xe4\x93\xea\xd8\x9f\x13\xeb\x20\x6a\x32\xf9\x44\xcc\x80\xf4\x12\x61\x2f\x19\x6b\x63\xb6\x38\x34\x14\xe1\x39\xac\x98\x29\x3f\xf0\xe7\xe0\xa6\xdc\xf3\x91\xb9\xeb\xb0\xaa\x5b\x82\x2c\xee\x55\xf6\x72\xeb\xfb\x93\x70\x5a\x5a\x70\xe2\x4f\x5f\x99\xf6\xfe\x07\x9b\xf8\xb9\xa2\x95\x44\xfd\xf8\xe4\xe0\xf3\x9a\xb6\xda\x1e\xd8\xa7\x4d\x72\x7f\x92\x46\x67\xd0\x26\xef\x88\xfb\xd2\x01\xa7\xd5\x8a\x85\x69\x07\xbc\x6a\xf9\x4a\x48\x1e\x9a\x3c\x88\x54\x6a\x36\xed\xf8\x48\xe3\x11\x0a\x83\xd2\x5e\xdc\x81\x8f\xe3\x3c\x3c\xf5\x67\xfa\x24\x84\xed\x4a\x96\xf9\xb2\x9d\x68\xe8\xf2\x2b\xbd\x28\x13\x12\x4c\xd6\xb4\x1f\x8d\xde\x9e\xb3\x4a\xb6\x86\x84\xaa\xe4\xc6\x00\x65\x1f\x72\x50\x85\xb0\x9c\x9f\xcc\x62\x41\x1b\xfb\x00\x7d\x95\xb6\xe6\x04\xfd\x74\xd6\x50\xf1\xc2\x38\xb2\x1c\xb8\x90\x4f\x3a\xda\xec\x1e\x89\xa7\x29\xad\x7e\x1a\x42\xa9\x9c\xe8\xa7\xc5\x15\x78\xd3\x3f\x5b\xbe\x78\xd4\x3d\x7b\xba\x7c\xe1\x58\xe3\x6a\x53\xae\x6e\x45\x97\xa8\xea\x65\xf3\x1b\x14\x2e\x5a\x78\xc6\x71\xcd\x5b\xe4\x51\x91\x6e\xa8\x14\x32\x39\x6d\x65\xaa\x46\x88\xe7\xd2\x68\xd1\x68\x30\xbc\xe3\x17\x66\xfb\x71\x87\x83\x11\x12\xd5\x46\x27\x32\x32\x52\xf3\xb1\x77\x38\x2b\xa0\xdb\x53\xce\x65\xca\x05\x9b\xf7\xa4\x8b\xf9\x6e\xab\x5d\xd5\x4f\x48\x87\xf9\x48\xae\x24\xa8\x7a\xbe\xe1\x12\x6d\x01\x1b\x18\x0b\x71\x63\x6a\x86\xce\x4d\x23\xa7\x43\x4e\xea\xcd\x0f\x29\x91\xd0\x40\xa7\x10\xcf\x89\x86\x49\xec\x38\xe7\x83\x97\x14\x84\xbc\xcb\x86\x5a\xd1\x5a\x16\x46\x4c\xaf\x2b\x1c\x12\xdc\xaf\x91\x7c\x00\x65\x98\x57\x39\x37\xfd\xc6\x61\xfc\x5b\x12\x8a\x6f\x5c\x35\xe6\xdc\x3c\xa0\x8a\x65\xb2\x7c\x76\xf1\x88\xb3\xd5\xa5\xa8\x57\xc0\x00\xc3\xf1\x42\x93\x72\xe0\x57\x8f\x34\x8c\x5b\xca\xc1\x82\x2c\x87\xbe\x6f\x58\xe6\xde\x32\xd5\x48\x1d\x1b\xf5\x19\x00\xa1\x46\xf8\xf6\xb0\x20\x21\x9e\x64\x6d\x4a\x93\x81\x33\x6f\x85\x53\x6d\x65\x34\x3b\x3d\xea\x1c\x58\x21\xea\x7a\x5e\xdf\x1b\x29\x13\x41\xf0\x28\xb8\xc3\x7e\x7e\x2c\xdf\xb4\xe5\xb7\x7e\x34\x6e\xcf\xa0\x86\x8d\x48\xaa\x07\xfb\xe9\x03\x4a\x41\x25\x6e\xd7\xd9\xc9\xa5\x46\x16\x4f\x1f\x6d\x8c\x5e\x94\xf3\xce\x20\x06\x4b\x62\x63\x01\x44\xd3\x2c\x50\x7b\x31\xea\xcb\xab\x3b\x53\x0c\xf6\xf1\x90\xfd\x01\xd4\x37\x4d\xd6\x6d\x44\xb5\xb4\xe1\xa5\xdb\xb2\x5e\x47\x66\x02\xd8\x60\x41\x74\xff\x95\x8f\x39\x12\xe0\xf3\xed\xe7\xe4\x1e\xf6\xa8\xbf\x12\x87\xaf\x61\xaf\x6b\x12\x2a\x10\x65\xe4\x02\x09\x02\x65\xcd\xe8\x73\xc2\x47\xe0\xbb\x91\x58\xc7\x47\x84\xe6\x05\xf2\x05\x8a\x7e\x89\xa4\x35\x5b\xc2\xe4\xfd\x8c\x08\xf8\xa1\xf4\x76\x49\xa4\xdc\x14\x49\x89\xbe\x36\x55\x87\xf4\xe9\xdb\x52\x1b\x7f\x4d\x6a\x73\xf7\x11\x6a\xaf\xe8\xb0\xac\xf0\xbe\xcf\xef\x59\xe8\x92\x6c\xfd\x81\x82\xeb\x32\xdf\xe9\x28\x39\x29\x4d\x9c\xd2\x71\xa6\x99\x9c\xa4\x53\x2e\xb0\x6a\x24\x10\x3f\x6c\x0a\x22\x8b\xe8\xb1\xef\xc4\xff\x52\x8d\x9e\x7f\x9b\x98\x62\xfe\x96\xe4\xdb\xfd\x26\xc7\xf9\x1f\x80\xc1\xea\x40\x40\x58\xf8\x14\x20\xa0\x85\x61\x57\xb6\xd5\x8a\x93\x5c\xe1\x9b\x27\xd9\xb7\x30\x38\xd1\x46\x21\x41\x30\x6e\xac\xa0\x4d\xf2\x4f\x35\xc8\x69\x16\x12\xc3\x76\xbb\xea\x1f\x36\x8b\xa8\x39\xce\x27\x9e\x43\x10\x10\xc9\x3c\x94\x03\xc2\xc1\xc8\xe2\x59\x9f\x32\x5f\xe8\x59\x04\x8c\x9a\xde\xe5\xbf\x7d\xa9\xe2\xae\x99\xa9\x27\xac\xc0\x57\xb2\x0d\xaf\x53\x8c\xd9\x01\xc1\xb3\x7d\xe3\x28\x34\x2d\x3d\x83\xd4\xb7\x74\xaa\xd5\x0e\xec\xa3\xfc\x4e\xf1\xfb\x47\x33\x81\xd3\x11\xa2\x02\x74\xea\x8c\xe1\x74\x38\x17\xcc\x37\x21\x08\x2f\xfc\x76\x0b\x85\x63\x47\xce\x2c\x46\x9a\xca\xef\x18\x07\x49\x94\xa2\x27\x10\x49\x2d\xbc\xdd\x3e\xe3\x33\x32\x63\xa1\xb3\x0e\x45\x4b\x77\x7a\xda\xf9\x02\x08\xb1\xfb\x66\xd3\x7a\xa3\x0d\x77\xb4\x3a\x89\x02\x33\xb5\x2f\xa7\x86\xbc\x23\xf5\x7b\xda\x32\x33\x0d\xb8\x9d\x74\xb4\xa2\x2c\x26\x2a\xd1\xcc\x8b\x09\x2f\x98\x56\x64\x30\x36\xad\x6e\x32\xda\xe9\x51\xcd\xf7\xc3\x92\xf8\xa1\x63\x00\x4c\xcf\x90\xa9\xeb\xde\xb7\x22\xb5\x49\x93\x2d\xd7\x6c\xa8\xb2\x61\x47\x63\x55\x02\xa4\xa3\x44\xc0\x42\xf2\xf3\xeb\xe3\x96\x3a\xa4\x8a\x50\x05\x70\x2b\x1c\x2b\x5f\x34\x67\x1a\x13\x25\xb9\x66\xa0\x82\xe9\x30\x54\x0e\xd8\xb1\xb6\xd1\x0d\xcc\xd8\x59\x33\x11\xd9\x26\x5e\x4b\x3e\xb6\xd1\x54\x89\x2e\x8e\x37\x4f\x94\xcc\xea\xda\x97\xda\x07\xd8\x1f\x6c\x3a\x54\xd6\xa7\x0d\x6b\xe3\x0e\xe8\x58\xb3\x4e\x9d\x2c\x7f\xab\x60\xf4\x7b\x55\xdd\x95\xaa\x50\x3a\x3d\x1a\x65\x8b\x64\x4b\xac\x84\x15\x17\x99\x95\x48\xc1\xcd\x1d\xeb\x7d\xdc\x1f\x97\x4a\x3d\x31\x02\xea\xa4\x78\x9d\x55\x35\x25\x55\xb0\x39\x94\xc5\x09\x09\x08\x5c\x83\xc6\x09\xa6\x93\x6f\x0f\xf9\x7d\x07\x0b\x8b\xf1\x2b\x36\x78\x4a\x75\x66\x46\x24\x3e\xac\x31\xaa\xd0\xba\x4d\xfb\xd5\x30\xa1\x04\xe9\x0f\xf9\x03\x94\x4b\xf0\x1a\xb5\xd9\x90\xce\xce\x87\x26\x0e\x68\x3d\xa9\x58\x31\x66\x35\x92\x35\x04\x29\x0e\x1a\x82\xc3\x44\xcf\x8d\x99\xba\x27\x2c\x5c\x51\x37\x2c\xea\x10\x37\x17\x5c\x93\xf4\x48\x98\xc5\x90\x02\x4b\x03\x6d\x8c\xf2\x89\x48\xd5\x15\xe1\x90\xb5\x34\xaf\x7c\xf3\xc9\x46\xab\x62\x66\x61\xc9\x87\xea\x9c\x74\x3d\x6d\x01\xc6\xb4\xb9\xea\xfe\x2a\xd2\x99\x2a\xdc\x5c\x8a\xad\x05\x34\x75\x9b\x6a\x9f\x36\x30\x35\x86\x28\xf4\x64\x1b\x08\xa8\x84\x8d\xa2\x84\xd4\xce\x36\xd7\x36\xaf\xbb\x9b\x12\xc6\xd7\x5d\x7a\xc3\x7e\xa4\x85\x76\xcd\xf2\xae\xb8\xec\x8e\xf4\x2c\x1a\x10\xba\x0e\xcf\x1a\xac\x5d\xb0\x50\x71\xd7\x04\x73\x87\x9e\x75\x0c\xc0\xaa\x6f\xa9\xb3\x31\x30\x99\x4d\x50\x00\x99\x33\x72\x71\xd8\x68\xee\xca\x10\x11\x37\xff\xec\xcc\x03\xac\xab\x7d\x59\x8c\xf2\xf1\x32\x49\xa7\xb0\x75\xc0\x43\xb5\xbc\x8f\x67\xcf\x55\x1d\x05\xb0\xbf\xe4\xae\xd4\x5e\x78\x63\xf0\x5e\x19\x35\x08\x1b\x87\xd7\x34\x92\x3e\x87\xc2\xb8\xa4\x21\xae\x36\xd1\xee\xbc\x46\x49\x2a\x25\x93\x0d\x9a\x7c\xe2\xae\x3f\x27\xc4\x34\xeb\x75\xc9\x86\x32\x6a\x89\x0f\x4c\xfc\x56\xf9\x5e\x32\x69\xc0\xeb\x56\xd2\x6c\x5e\xb7\x2a\x2b\xda\x90\xcd\xee\xc1\x9a\x55\x6d\xe6\x9e\x2e\xf9\x7b\x43\x12\x08\xec\xc4\x7f\xa2\x14\xcb\xce\x75\x12\x79\x86\x46\x56\x0a\x28\x17\x55\x7f\xef\x4f\x8c\x53\xcd\x21\x25\x19\xdc\x01\x76\x8f\x97\x96\xa6\xf5\xc8\x99\xe9\xf1\xd6\x96\x94\xc2\x89\x11\xea\xa5\xa5\x13\xd6\xb1\x77\x0b\x1c\x0e\x2c\x8a\xc3\xb4\x1d\x1c\x09\x8f\x1f\x75\x8f\x79\xc1\xac\x6c\x11\xc0\xef\xf3\x9e\xd8\x62\x2d\x0a\x8e\x70\xa8\xb0\xaa\x16\xbb\x26\xc0\x55\x04\x6c\x01\x7f\xb0\xa0\xe2\x73\x42\x9a\x28\x1c\x88\x34\x35\x49\xcd\x3a\x3f\x95\xc5\x74\x2a\x31\xff\x1b\x25\xd5\x9e\x92\xba\x28\x08\x55\x74\xe1\x04\x34\x97\x51\x17\x7b\x90\xba\x44\x0d\x48\xb1\xf5\x48\xc9\xfb\x79\x7a\x2e\x09\x53\x99\x87\x0a\x73\xaa\x8a\x24\xd9\x03\xef\x59\x30\x5a\x59\x08\x37\x68\xf9\x1f\x58\xb0\xdb\xb1\x5c\x40\x58\x90\x56\x40\xb8\xe6\x50\x80\x24\xc0\x1e\xd8\x40\xdd\x63\xd3\x2c\xf4\xc0\x3a\x70\x96\x90\xb6\xcc\xf5\x18\xec\x50\x2e\x53\x36\x96\x12\xe1\x90\x56\xa5\x13\xdd\xe5\xa4\x90\xdd\x55\xb9\xb3\xeb\xd0\x6a\xb1\xdb\x5e\x4f\xd1\x97\xec\xb2\x87\x1f\x74\x1a\xc0\xc1\xde\x0c\x75\x5c\xbc\xd5\x64\x32\xec\x0b\xb6\x88\xf9\x09\x7f\x44\x86\x9b\x70\x5c\x1e\xd8\x2a\x31\x75\xab\xe6\xa5\x18\x80\x17\xa9\xc2\xf1\xc8\xee\x17\xb6\x7d\x66\x22\x3f\x74\x0b\x15\x63\x90\xd0\x45\x20\x45\xaa\xf2\x1a\xc0\x42\x78\x0f\xd0\x2b\x5e\x41\x20\x84\xce\xca\x74\xd3\x1c\xd2\x6d\x55\xdf\x76\x8a\x5f\x67\x4d\x31\x2d\x3b\x3d\x47\x06\x01\x8b\x9d\x87\xc5\xaa\xaa\x1e\xca\x9f\x12\x4b\x89\x19\x1f\xc9\x69\x94\x43\x29\xa7\xe2\x98\x19\xa8\xf7\xe5\x0c\xd9\xe9\x29\xb2\x67\x61\xbd\x96\xac\x55\xe0\x0f\x66\xf6\xab\x6e\xa1\x9b\x92\xc5\x73\xb0\xc3\x57\xca\x85\x08\x3f\x4d\xd3\xa9\xe5\xd2\xb3\x1f\xce\x83\x99\x43\xa1\x74\xb5\x1c\x84\x2e\xa6\x0c\xc6\xbc\x1c\x04\xc5\xca\x25\x09\x4b\x3a\x1e\xec\xed\xac\xda\x49\xa4\xce\x47\x2d\x15\x87\xbf\xd3\x4a\x50\xbc\x20\x3d\x7b\x34\x99\xd0\xdf\xf0\x8e\x70\x29\xd3\x37\x3e\x6a\x85\x27\x26\x2e\x08\x42\x70\xd8\x47\x83\x1d\x53\x96\x36\x60\xa6\xf3\x2f\x10\x98\x91\x4f\xe8\x86\x11\xde\xec\x58\x4b\xb3\x8d\x84\xc2\x33\x75\x02\xb8\x72\xc6\x6c\x50\xfe\x0e\x0e\xb3\xb1\xad\x22\xd2\xb3\xb4\x85\xa3\xd2\xf4\x68\x4c\x93\xbd\x63\xf5\x0e\x34\xb7\x70\x3a\x46\xf0\x0b\xa1\xfe\x1c\x76\x65\xf1\xa9\x0d\x9d\xc8\x93\xdc\x15\x1c\x72\xd2\x04\x21\x00\xea\x4a\xe7\xb5\x94\x53\xe1\x46\x6c\x4e\x97\xf8\x22\x07\xa0\x21\x46\xb1\x36\x5a\x9a\x07\x3c\x64\x6c\xfb\x96\x16\x9d\x0e\xde\x91\x1d\x6b\xc2\xd2\x22\xf6\x05\xee\xd5\xc0\x9d\xeb\xb9\x16\xe9\x9f\xda\x16\xf3\x7f\xa4\x2c\xc7\xdb\x3e\x4b\xb6\x8d\x59\xa7\xca\xac\x5d\xa9\xb0\xec\x84\xc6\x80\x3d\x50\x3a\xe3\x46\x01\x4c\xc4\x43\x04\x58\x08\x62\x76\x54\xcb\xce\x22\x2b\x31\xec\xbd\xff\x61\x96\xe1\xa8\x43\x67\x19\xf6\x43\x1d\x91\x0d\x8f\x71\x74\xe2\x4c\x08\x88\x0a\x70\xfe\xea\xd2\x07\xa7\xaa\x2e\xbe\x3b\x5c\xb9\x1b\x91\xe9\x19\x4d\x94\x85\x23\x58\x89\x00\x1c\x96\x05\x3c\x84\x6c\x20\xec\x47\x04\xfc\x6e\x62\xc4\x8c\xf9\xeb\x29\x34\x18\xc2\x8a\xc0\xb2\x3c\xc0\x07\x9a\x48\x7f\xaa\x11\xed\x18\x11\xe2\xb4\x75\x51\x2c\xf7\xe2\xaf\xf4\x22\xd1\x89\xaa\x0d\x9b\x6a\xbd\xa1\x79\x55\x3b\x76\x58\x82\x6b\x9b\x57\xcc\x6b\x75\xfc\x8b\x36\x5e\xb3\xae\xd9\x02\xc4\x3d\x88\x32\xee\xb8\xed\xb3\xae\x6f\x9b\x7a\xfd\xe2\xbc\x61\x75\x8b\xed\x28\x7c\x54\xfc\xf4\xec\xa9\xe6\x13\xcb\xe0\x35\xe4\x68\xc9\x57\x55\xff\x7a\x58\x3e\xee\xd2\x35\xc9\x06\x38\x40\x9e\xe5\xe9\xa6\x2d\x6f\x9e\x7f\xfd\xa8\xfb\xfa\x85\x7a\xa9\x25\xa6\xe8\x50\x3b\xb4\x3c\x7b\x9a\xbf\x60\xe9\xb9\x6b\xb6\x24\xd4\xc6\x55\x9a\xdd\x4e\xd6\x97\xd8\xdf\x4e\x20\x31\x7e\x38\xb6\xcb\x1a\x98\x2b\x5b\xc5\x0f\x35\xb8\x70\xb4\xee\xd7\x47\x97\x2d\x61\xfb\x82\x1e\xa4\xf4\x53\x8e\x7b\xce\x33\xa3\x82\x9c\x5e\x94\xb2\xf5\x0d\x88\x88\x19\x9b\xb6\x13\x98\x30\x98\x60\xbe\xb2\x3d\x27\x1d\x06\x3b\x0e\x22\xc3\x29\xc3\xb0\x08\x0b\x45\x57\x2d\x1b\x6f\x55\xad\x45\x01\x9d\x0d\x81\x08\xfb\xae\x51\x27\x42\x6a\x99\x9e\x20\x4d\xa4\x53\x72\x3c\xf5\xd4\x34\x16\xf2\xd4\x9b\x76\x94\x22\x03\x42\xd4\x56\x5d\x98\x84\x28\xe0\x25\x44\xa9\x65\x55\x17\x42\x78\x4a\x37\x1a\x77\xe0\x08\x86\x8e\xa3\x9a\x81\x60\x63\xe3\x84\xfe\x0e\x30\x77\x15\xb5\x1f\x1c\x49\xb4\xdf\x87\x3a\xd8\x6f\x42\xd0\x59\xdf\x88\xad\x49\x27\xf9\x9e\x24\x76\xc4\x1c\x9d\x4a\x83\xd7\x5c\xdc\x69\xdc\x9b\x3a\x25\xad\xca\x2b\xcd\xc4\x6a\x01\x30\x41\x51\xe7\x10\x81\x5f\x5e\x79\xb3\x56\xd4\x5f\xac\xd1\x44\x58\x18\x22\x5e\xdb\x61\x1b\xf1\x1f\xa7\xa7\xef\xdf\x2c\x12\xd7\x9f\xb5\xf9\x4b\x4e\x52\x87\x8c\xe0\xe0\xf4\x46\x66\x28\xe3\x1d\xea\xbc\x15\x52\xdd\xcc\x54\xa8\x09\x5a\x74\x73\x9a\xcc\x47\xe6\x12\x97\x0b\x8a\xcb\x2e\xd0\xa5\xa5\x37\x8c\x64\xcc\xdb\xdc\x4c\xbf\x22\xc4\x3a\x8b\x0e\xf3\xd4\xfd\x3d\x73\x8b\x20\x52\x24\x17\x04\x1d\xb0\xdf\x47\x21\x2a\x04\x09\x7d\x32\x65\x09\xb1\x75\xa4\x6f\x03\x56\xe2\x0f\x73\x03\x4a\x00\x19\xee\x6d\x3d\xa3\xf1\xfa\xa3\x22\x1c\xb4\xa8\xb9\xb1\xd4\xf2\x55\x2a\x8c\x48\xfc\x9f\x3c\x2e\x91\x6d\x14\xc7\xa1\x72\x43\x6d\x1e\xca\x2d\x47\xb2\xe9\x80\xbc\x13\x50\x55\x99\xc8\x05\xa8\x40\xce\xf9\xc7\x91\x83\xee\x2c\x96\xb5\x0d\xed\x0b\xd6\x18\x41\x10\x01\xc3\xeb\x27\x3a\x88\x31\xcc\xb3\xd3\x77\xef\x2e\xaf\x3d\x9f\x64\xca\xaa\x0b\xe2\xe6\x5f\xb9\xf8\x97\xc9\xb8\x2c\x0a\x06\xe3\x43\x40\x54\x04\xe1\xe3\x70\xb4\xc6\x31\xb8\x70\xe3\x5b\xeb\x94\x5c\x37\xd8\xcd\x0d\x8f\x45\x6a\x14\xf1\xf8\x8b\x63\x22\x7e\xf2\x89\x0f\x98\xcf\x89\x59\xe9\x2e\xf9\x7f\x12\x1a\x3a\x03\xd3\x34\xa8\xd9\x5b\xb0\x7d\xb8\x27\x0d\xa0\x29\x26\x86\x4f\x1a\xd8\xd0\x0d\x39\x64\x38\xc2\x7d\x03\xbe\x78\x93\xc2\xbb\x75\xc2\x76\x9c\xa6\x05\x0d\x32\x72\x87\xba\xfa\x75\xc0\x09\xc9\x12\x1c\x9d\xf8\x1c\x56\xb5\xac\xb6\xc2\x3c\xff\xec\x7e\x48\x3e\xa7\x46\xb1\x90\x41\xe7\xf4\xeb\x59\xb7\xe7\x48\x31\xe2\xcd\xdd\xf3\xaf\x49\xe4\x26\x8d\x05\x7f\x9f\xb0\x7d\x40\x53\x79\x51\x0d\x74\x14\x91\x00\xc6\x6e\x63\x5a\x4f\xaa\xf2\x82\x75\xfd\x5b\x33\x21\x8d\xc3\xd6\x51\x66\x91\x8d\x5c\x86\xf0\x46\xe4\xce\x0c\x4b\xc5\x55\xb1\x01\xf4\x62\x3c\x4a\x83\x69\x31\xbb\x66\x72\xbf\x2d\x43\xd4\xa9\x8b\x40\x17\xfa\x9c\xfe\xb5\x15\xc2\x33\x25\x9f\xef\x10\xa4\xc1\xfd\x01\x97\xe9\xfb\xbd\x22\x02\x58\xb1\x8e\xb2\x58\x57\x3d\x89\xc9\x7c\xd7\x02\xca\x2b\xed\x20\xe2\x92\xb8\x7e\x20\x29\xcb\x99\xa9\x6b\xb0\xa8\x58\xd5\x55\x9f\xb1\x55\x7f\x27\x21\xe5\xd4\x6c\xbe\x15\xb1\x22\xc6\xbc\x78\x70\xd3\x0f\xbf\x9c\x9e\x5f\xfc\xb2\xd8\x15\x16\x61\xa2\xf8\xd4\xd0\x92\x00\xa3\x45\x79\x93\x0f\x5b\xb3\x5e\x61\xc2\xc8\x48\x7f\x46\x86\xde\x46\x20\x45\x83\xf0\x77\x27\x67\xa4\xdc\x4f\x78\x63\x39\xdf\xb0\x18\xf9\xed\x11\x9b\xce\xd8\xad\xf2\xc7\x4d\x3b\xe3\x16\x1e\xb6\xf0\xb0\xcf\x3d\x63\x7b\x5d\xaa\x71\x19\x91\x37\x32\xd1\xdb\x12\x16\x15\xef\xae\x4b\x48\x58\x7c\x58\x7a\x9c\xb8\x4d\xdd\xc8\x8f\xd3\xf8\x72\x3b\x94\x23\x22\x17\x3c\x1a\x8d\x5b\x4f\xba\x2c\x17\x7a\x89\x23\x58\x17\x85\x58\x20\x9c\x38\x33\xc9\x9a\x1d\xd9\x2c\xb5\xaa\x36\xe5\xa0\xcc\xb6\x8e\xf8\x50\x8b\x51\x7b\x23\x99\x12\x34\x8a\x08\x35\x88\xaf\xb1\x19\xd2\xfc\xe7\x79\x18\x00\x9e\xc8\xa6\xb0\x9d\xa6\x5b\xe4\xc6\xed\x35\x84\x12\x73\x9c\x68\xbc\xc9\x70\xdf\x24\xc0\x54\x18\xdd\xc1\xec\xad\x60\xfe\xbc\xbf\xcf\xd8\x18\x02\x96\xbc\xbf\x4f\x10\x03\x41\x07\x5a\x86\xf3\x52\x32\xc1\x20\xb7\xd5\x5e\x6e\x2b\x51\x41\x55\x4a\x20\x23\x12\x97\xff\x96\x08\x52\xdc\x0a\x61\xa1\x71\x85\x89\x0b\x88\x11\xff\x04\x7e\xd5\xb3\xc4\x2b\xc6\xd9\xe7\x5f\x67\x4b\xda\xa3\xb7\x5f\x07\x12\x30\x5f\x76\x62\xb1\xf7\x2b\x92\xac\x0e\xea\x80\xfc\x28\xa9\xc4\x7e\xff\x05\xbf\x06\x0e\x8c\x13\x6f\x27\x27\x12\xfd\xc5\x36\xce\x44\xef\xd8\x30\x33\x4a\x58\xe0\x54\xb6\x41\xc2\x66\xc8\x39\x7e\x1d\x78\x96\x22\xbc\x3f\x4f\xff\x9d\x7f\xa5\xaf\xf8\x97\x4e\x85\xb7\xb1\xdb\xa3\x58\xe1\xd1\xc6\x0e\x23\xc5\xc0\x71\x34\xdc\xd2\xef\x69\x09\x2f\x09\xb0\xaf\x71\x25\x06\xc8\x31\xc9\xc9\x7e\x60\x1f\x3a\xaf\xbb\xf5\xf6\x9e\x72\x10\xe0\xcd\x99\x7c\x86\x05\x2d\x38\x03\x78\xd4\x46\xe2\x58\x85\xb2\x88\xbe\x2d\x21\x6f\xd1\x3f\x2d\xcb\x08\x38\xeb\x73\x98\x3c\x05\x88\x48\xee\x3f\xa7\xd7\x94\xa3\x10\x65\x58\x94\x28\x28\xca\xc7\xb7\x7a\xb0\x8d\x3a\x70\x5c\x4e\x10\xc9\x6f\xcb\xae\x27\x14\x41\x7d\x74\x3f\x12\x1e\x63\xd5\x4b\x28\x1f\x52\x89\x06\x9a\x8a\x59\x5b\x92\x09\x8c\x86\x6d\xce\x61\x5b\x1f\xf2\x83\xfc\x24\x4c\xeb\x35\xa0\xd7\x92\x92\x6c\x04\x22\x0b\x28\xc2\x95\x1d\x3c\xce\x75\xa5\xe1\xf7\x96\x4e\x6c\x00\x8b\xe9\x40\xac\x64\x74\x0b\x29\x5d\x8d\xca\x6f\x44\xde\x7f\xc9\xd2\xbe\xe5\xe5\xe0\x5f\xa9\x85\x55\xb8\xfc\x1d\x6d\x7f\xb1\x8f\x5d\x48\xca\x95\x14\x12\xf1\x73\xce\x17\xde\x2c\xcf\x62\x2a\x2f\xf9\xbf\xcb\x25\x82\xd1\xfd\x43\xff\x13\xc5\x3c\xe7\xaa\x5a\x26\xd7\x9e\x7c\x76\x26\x3c\x4e\x0a\xb1\x1c\x93\xc2\x6c\xbf\xcd\x57\xa5\x8b\xe1\x04\x10\xf8\x36\x5f\xb9\x52\x60\x12\xfd\xd8\xf1\xbd\xa4\xf2\x47\xb4\x9d\xe9\x97\x95\xd0\x66\xa0\xb3\xd0\x15\x9d\xf1\xcf\xc2\x0a\x09\xf7\x1c\x15\x68\x63\x88\xfa\x0f\xcb\xe8\xfc\x60\xde\x24\x46\xb1\x77\x2c\x5d\x73\xda\xa4\x8e\x51\x0d\x47\x4d\x21\x31\x8d\x60\x88\xbd\x73\x04\x3a\xa4\x43\x4d\x8e\x20\xf4\x38\xc1\x21\x32\x2d\x59\x70\x50\xad\x23\xeb\x53\x38\xa3\x40\xda\x73\xa0\xd2\x01\x47\x21\x71\x78\x9d\xef\xb2\x50\x6d\x67\xae\x92\xf0\x86\x22\x5b\xde\x6b\x1d\x61\x09\x05\xbb\xba\x8e\x54\xd9\xb1\x3f\x0b\xbc\x52\xab\x5c\xb8\x8c\xb0\x0a\x2f\x15\x1a\x26\x08\x49\xa7\x8f\x3e\x7d\xf7\xb9\xe3\x96\x9d\x39\xe1\xe9\xa3\x4f\xdf\x7f\x26\x86\x8a\x7f\xcc\x51\xad\xf6\xbe\x2d\xef\xaa\x66\xc0\xcd\x3d\x4d\x7a\x82\x41\xfc\xee\x3b\x8e\xd5\xd5\x2c\x59\x3c\x93\xc3\x3d\xe5\xc4\xe5\xab\x66\xdb\x78\xca\xc2\xaf\x31\x80\x08\xfc\x8f\x74\xc1\xbb\xb8\x18\xc4\xe7\x16\xe3\x11\x5c\x19\xf5\x68\x41\x04\xb2\x2c\x2a\x6e\xe7\x17\xfa\x17\x17\x8c\xdc\x36\x71\xa1\x8b\xf7\x92\x01\x22\xea\xcb\xae\x9d\x4c\x5b\x51\xe7\x07\x40\x9d\xc6\x31\x0b\xe6\xe5\x51\x74\x2e\xbb\x00\xa2\x88\xba\x2c\x99\xe5\x54\xb5\x5c\xbb\xe1\x66\xd9\x90\x85\x52\x71\xe9\x68\xa3\xc7\x5d\x0d\xf3\xbd\x7a\x1d\x53\x06\xe9\x43\x6d\x55\xc9\x89\x34\xc8\x24\xe0\xce\x01\x1f\xf1\x1b\x2b\x28\x9e\xe1\x02\x41\xe9\x3c\x27\x18\x03\x14\x72\x5c\x72\xe2\x51\x17\xf5\x4d\x07\xf1\x50\x66\xca\x0a\x89\x09\xd0\xaf\x14\xbf\xc6\x43\x60\xa6\x38\xd7\xb7\xb5\x3c\x9a\x11\x21\x64\xb9\x21\x81\x46\x82\x0a\xe5\xe4\x0d\x4e\x24\xc2\xa8\x3a\xbc\x55\x97\x55\xac\x46\xcd\x4b\x2d\x57\x7d\x16\x3b\xb6\x0d\x10\xaf\x17\x16\xcc\xa8\x25\x61\xa9\x9f\xf4\x39\xcd\x98\xcf\x80\xf4\x1b\xbb\x6d\xf6\x6d\x3c\xc9\x52\x7c\x36\xfc\x3f\x2c\x70\xd7\x24\xb4\xa9\x4c\x48\x4a\x5b\x44\xe3\x9a\xe3\xaf\x0f\x9c\xb8\x68\xb7\xc7\xbb\xdd\xd3\xa2\x78\x7a\x4f\x8d\x3e\x9e\x99\x75\x40\x4f\x6e\xda\x22\xc9\x3b\xc2\x52\x66\x36\x22\xac\xa0\xa5\x60\x5f\xce\xe3\x8e\x01\xa2\x75\xfa\xc8\x5e\xff\x92\xd5\x86\xb4\xf0\x78\x83\xab\x20\x58\xbb\xae\x21\x8d\xbd\xd9\x13\xda\x9d\x81\x86\xad\x09\x12\x07\x15\xce\x64\xe4\x7f\x0b\x8a\x46\xc1\x9e\x0f\x0e\xcf\xf0\x20\x7e\xa1\x8e\x95\xd1\xdd\x11\x94\xc8\x45\xcd\xd1\x4e\x9b\xbb\x46\x6d\x79\x0b\x59\x72\x78\x9c\x25\xe5\x8b\x82\xeb\x0f\x60\x3e\x67\xe1\x6f\x0f\xb6\x69\x9a\x5b\xb9\x02\xb2\x44\xd2\x97\x90\x4e\x6b\x85\x7c\xc3\xf4\x75\x5c\x5a\x94\xfb\x6d\x73\x6f\xe6\xfd\x73\xfc\x52\xbf\xb9\x81\x2c\xf3\xae\x5a\x85\x57\xc4\x7f\xe6\x8c\x99\x59\x14\x8c\x99\x36\xfb\x87\x1c\xcf\xe7\xf8\x95\xfe\x4f\x46\xa7\x03\x51\x8f\xf2\xa5\xdd\x0a\xba\x62\xbf\xb2\x2b\x55\x8f\x5e\xd0\x95\x3a\x20\xa7\x7d\xa9\x73\x8c\xa5\xdf\x79\xb3\x8b\xf3\x0c\x1f\xab\x62\x1c\x7a\xac\xb0\xb2\xc5\xd0\x79\xd0\x26\x4e\xe2\x39\xe7\x70\x1c\xc3\xf6\x00\xcf\x76\x43\x71\xe1\x31\x2c\x86\x6b\xf2\xd2\x22\x6c\xa6\x60\xce\x8a\xe5\xa3\x6a\x62\x1d\x97\x6d\xb4\xb5\x38\xcd\x10\x59\xc3\x11\x38\x9c\x15\x87\xf3\xd0\x11\x23\x57\x6a\x7d\x38\x3d\x62\x7b\x61\xf2\xe4\xdb\x04\xd6\x2f\x5e\x1b\x40\x6c\x1d\x87\x29\x75\x62\x23\xd0\x18\x21\xf1\x17\x8b\xf5\x2b\x77\xb7\x51\xd8\xa4\x3e\x36\x6b\x70\x3d\x91\x25\xdd\x95\x12\x71\x38\xdb\x50\x51\x16\x92\x62\x1c\x5e\x01\xdc\x07\x2a\xf6\x08\xd0\x90\x72\x49\xbb\x5a\x4c\xf2\x52\x2d\x8f\xc2\x93\x24\x12\x0e\x76\x07\x35\xfa\x2d\xf3\xd5\xad\x1b\x11\x33\x8d\xb2\xed\x11\x18\x34\x45\x3b\x3b\x26\x57\x10\x3c\x9e\xed\x5f\x3c\x81\xea\x2c\x37\x90\x31\x0b\xe1\x08\xd5\x4d\x80\x10\xb8\x16\xd8\x55\x70\x57\x15\x03\x91\x37\x2f\xc6\xe2\xd9\xd3\xfd\x8b\xb8\x3e\x51\x04\xcc\x29\x47\xdb\x18\x2d\x1c\xeb\x72\x15\xae\x33\x70\xe4\x1d\x42\xc0\x6e\x7c\x64\x63\x87\x1e\x8e\xee\xa2\x80\x77\x05\xa4\x6e\x1c\xe7\x0b\x8e\xf1\x29\x4e\xcc\xee\x89\x77\x28\x60\xfb\x74\x30\xec\x4b\xcb\x02\xd2\x86\x7d\xdd\x68\x76\xa6\x29\xb1\xdb\x8f\x8c\x46\x3e\xd0\xcc\x0d\xcd\x2a\xb4\xc7\x87\x17\xdb\x91\xd3\x19\xfb\xb1\x03\x65\x87\x94\x67\xaa\xa2\xab\x15\x05\xe6\x73\x16\x64\x1f\xaf\x30\x72\x86\x45\x6d\xc5\x1e\xb1\x60\x80\x22\xf5\x1d\x6b\xe7\x6c\xb6\x0d\xb5\xfa\x07\xad\x20\x9e\xb4\x42\xe4\x60\xa6\x57\xa4\x24\x16\x26\x1d\x87\xee\x69\xe9\x61\xd3\x04\x01\xfa\x18\x54\x8a\xcd\x1a\x0e\x64\x11\xcf\xf5\x20\x47\x88\xe2\x45\x0f\x94\xd1\x49\x63\x9b\xcf\x8e\x1b\x04\x7b\xef\x06\xe2\x2d\xdb\x8a\x16\x1d\x47\x86\x5e\xf4\xbf\xbc\xba\xc6\x15\x6a\xe2\x85\xc4\x68\xd6\x4c\xaf\xe9\x5f\x36\xa4\x9b\x70\x40\x25\xdf\xb7\x67\x3f\xf7\x3a\x6d\x56\x2b\xf6\x6e\x57\xb5\x5e\x51\x3c\x94\xe6\x45\xaa\x8b\xad\x78\xba\xc3\x38\x01\xe3\xbb\x62\x2f\x4a\x71\xa7\x9e\x99\x40\xb7\x2f\x57\x74\x94\x2f\xd2\xb7\x24\xd2\xf0\x45\x6d\xb9\xca\x0f\x86\xf9\xa0\x79\xc9\xcd\x04\x76\x1e\x56\x8b\x16\xd3\x33\xd4\xbd\xf8\x61\x07\x29\xe6\xbd\xe7\x68\x3a\x51\xdf\xb8\x80\x24\xfb\x72\x7b\x23\x91\x91\xec\x48\x83\x00\x24\xd7\xc3\xd9\x98\x2f\xb7\x66\xd9\x02\x86\x06\xd4\xc7\x0f\x7f\x24\x2e\x13\xf1\xcc\xf6\x65\xcb\x42\x9b\x45\xc3\x84\x81\x10\xe3\x31\x41\xef\xb1\x71\xbd\x11\xb6\x80\xe5\x83\xb8\x27\x37\xbf\x4e\x98\x17\xb3\xa4\x64\x0e\x5e\xb3\x89\xee\xe5\xb6\x17\x9f\x74\x84\x2f\x04\x1b\x1b\x88\x9c\x1f\xb8\xd2\xc1\x51\xb7\x83\x2e\x87\xc5\x18\x01\xa1\xdc\xcf\xcc\x88\xf4\x40\x66\x04\x89\x07\x64\x02\xe1\x1d\xcd\x00\x32\x6f\xf3\x98\x85\x29\xb8\x97\x03\x5e\x47\x94\xa8\x7b\x0a\x2d\x86\x97\x60\x85\x7c\x1f\xd8\x46\x01\x95\x47\x6f\xb8\x60\x86\x7a\xf9\xeb\x19\xdf\x5c\x7a\xc1\xd4\xfb\xec\x29\x92\x76\xe1\xcd\x28\x8f\x9f\x8c\x08\x28\x8e\x9f\x03\x68\x08\x7f\x38\xfa\xda\x72\x9d\xb7\x85\xc5\x6e\x2b\xf5\xb3\x63\x15\x54\x1e\x86\xe6\xe4\x5b\x92\x63\xb5\x09\xda\xad\x04\x72\xcb\x56\x25\x22\x14\x7e\xf0\xc4\x44\x77\xe6\xfc\x85\x6c\x2d\x8e\x7a\x20\x82\x1f\xf6\xbc\x07\x64\x43\x59\x3f\x98\xf6\x37\x7f\xba\xba\x7c\x77\x92\xfe\xf6\xe4\x70\x38\x3c\xe1\xea\x4f\x86\x76\xcb\xf1\x01\x05\xc7\x86\xff\x8f\x8b\xb7\x27\x69\xd9\xaf\xbe\x5d\x90\xcc\x8b\xad\xe1\x35\x50\x75\xfa\xde\xb0\x33\x9a\xc9\x92\xf5\xa1\x7f\x7e\xcb\xec\xe5\x0a\x92\x3e\xcf\x11\x5e\x48\x0a\x99\x36\x2f\xbb\x99\x63\x94\x0a\xc4\x2c\xe3\x25\xc6\x92\x34\x0c\x5c\x41\x44\xc2\x17\x00\xab\xb6\x7c\x1f\x19\x1d\x22\xdc\x20\xbf\x63\xa7\xd9\xb0\x2d\x84\x4e\x8d\xa3\xd1\xec\x14\x65\x65\xf1\xd3\xb8\x25\xd8\x5a\xf1\x1a\xc1\xf3\xf4\x4f\xac\x1e\x31\x4a\x85\x0a\xb8\xc8\xa8\x00\xc0\x21\x2d\x61\x87\xa5\x7a\x9d\xb2\x1c\x17\x78\xab\xf7\x79\xd9\x23\x82\x6a\x8e\x36\x64\xe4\x6e\x6c\x7e\x35\x6d\xa3\xd2\xb9\x46\x8d\xb5\xc2\xbd\xc5\x97\x1b\x51\xf3\x68\x0f\xf0\xb9\x74\x18\xef\x83\xf1\x91\xa4\x9b\xcc\xb3\x7b\xdd\x64\x13\x8e\xaf\x80\x5f\xda\x67\x2a\x41\x4c\x24\xba\xa0\x07\x95\xec\x26\x3d\x48\xa0\x47\xa6\xb3\xb4\xd0\x66\x04\x7f\x9c\xbb\xbc\xf8\x08\x32\xaa\x01\x03\x89\x49\x86\x11\xd2\x6d\x49\xcc\xcb\xc2\x1d\xce\x87\x59\x14\x52\x73\xc5\x20\x08\xa4\x61\x6f\x99\x79\x96\x26\x61\x44\xa1\x98\x21\xad\x9a\x93\x5f\x82\x11\x46\x85\xe3\x67\x72\x46\xc5\xac\x59\xc8\x3b\x5c\x67\x92\x4a\x12\x52\x3d\x6f\x16\xcb\xb6\x39\x74\x1c\xd9\x82\xc7\x44\xd8\xd6\xce\xbf\xd3\x2b\xfc\x16\x90\x7d\xde\x0a\xcf\x94\x84\x64\x8a\x6d\x98\x32\x25\x21\x99\xcc\x3a\x26\x8f\x39\x9c\x53\x09\xde\x4f\xe0\xb7\x55\x38\xa4\x53\x4a\x16\x52\x85\xb6\xcb\x21\xe3\x54\xd6\xf5\x39\xac\xe1\x57\xac\xea\xa0\xd2\x15\xe7\x28\x18\x27\x0d\xa3\xe6\xdf\x67\x8b\x8f\x05\xd9\xe2\x9c\xf3\xae\x7e\x70\x43\x83\x23\x30\x5a\x9a\x0a\x07\x99\x07\x09\x23\x05\x08\xc2\x4c\x59\x1e\x42\x11\x04\xa4\xfe\xfc\xe6\x9d\xfc\x84\xb5\x5f\x43\x8e\x61\xee\x7f\xc9\x7e\x57\xf3\x21\x2c\xe6\x7c\x09\x56\x26\x3e\x19\x91\xff\xed\x8d\x36\xfc\x72\x10\x45\x9b\xdf\xc0\x82\xc2\xff\x5d\x2e\x1d\x96\xbe\xda\xfb\xb6\x7c\x32\xae\x46\xc8\x11\x54\x5f\x21\xe1\xf2\xd5\x02\xc2\xff\x5c\x5e\xce\xd6\x8e\x00\x87\x8f\x0a\x8f\x11\xf3\x48\x10\x29\x3e\x22\x46\x56\xb1\x82\xa3\x1a\xdf\xa8\x43\x50\x87\xbf\x83\x0b\xda\xc1\x7b\x67\x06\xd1\xe7\x6b\x17\x5f\x93\xaf\xc5\x3e\xeb\xcb\x20\x3a\xd9\xb5\x87\xa8\x8e\xbf\x88\x6b\x2a\x9b\xf7\x38\x51\x39\x5e\x14\x5a\x85\x8e\x2c\xca\x64\x0f\x16\x22\xd7\xbb\xcd\x62\xbc\x10\xce\x4e\xac\x38\x4b\xf1\xdb\x41\xd9\x49\xc0\xe4\x92\xed\x8a\xe0\x30\x10\x02\x0a\xb7\xed\x45\xde\xde\xf2\x13\x23\xb0\x5c\x5b\x03\x87\x56\x43\xd5\xf9\x7f\xb8\x62\xfa\xb4\xcd\x7b\x49\x4d\x3a\x8c\xdd\x1f\xa8\x0d\x99\xd4\xc4\x20\x57\x81\x4f\x2f\xb9\x16\xf1\x56\x52\xf2\x26\xdd\x98\x32\xa6\x81\x66\x54\xf6\x64\xbc\x6e\x01\xbc\x43\xf4\x5f\xca\xff\xf3\xbf\xfe\x37\x31\xfb\x3d\x29\xa9\x3d\x82\x08\xf5\xfe\x9a\x5f\x77\x73\x9f\xfb\x87\x88\x9e\x40\xff\x0e\x06\x22\xe8\x4f\xf5\xde\x01\xa5\x26\x34\xca\xaf\x94\x18\x7d\x5f\xb1\x0d\x20\x26\x72\x48\x93\x9e\xcc\x61\xb5\x1b\xb7\x61\x44\x95\xa9\xfe\xef\xee\xcf\xd8\xe2\x62\xd1\x24\x2a\x5d\x89\x4e\x4c\x04\x6a\x2e\x00\xb8\x5c\xf0\x20\x9d\xe5\xb3\xbf\xa3\xe9\x16\x22\xba\x9f\x09\x11\xd2\xc3\x18\xc2\x5e\x31\xf9\x4d\x9f\x64\x13\x91\x5c\x2e\x84\x33\x6b\x71\x51\x33\x72\xeb\x49\x62\x62\x5d\x23\x61\x47\x8f\x3b\x0b\x8c\xd5\xb7\x02\x10\x7a\x3a\x13\x9d\x1c\x46\xdc\x92\x44\xae\xa6\x52\xb9\xcd\xa5\x46\xe2\xe8\x85\x46\x38\x80\x4d\xbf\xb6\x63\xb6\x48\xd4\x7a\xc9\x4e\x49\x4e\xf0\x85\x3b\x7e\xf7\x8e\xc9\x4f\x2c\x68\x6f\x90\x41\xfb\x1a\x19\xb8\x8a\x0a\xb7\x2b\xff\x4f\x70\x85\x47\x95\x40\xce\xd5\x94\xe6\x8f\xae\x09\xb5\xd1\x83\x2a\xde\x35\x8d\xeb\x83\xd1\x0b\x26\xdc\x38\x10\x35\x63\xb8\x9e\x5c\x2a\xc5\xca\x20\xf7\x21\xe8\x28\xc0\xe7\xf1\x16\x56\x11\x8d\x41\xe7\xb6\x88\xcb\xa9\x77\x4b\x49\x06\x57\x1a\xf9\xe5\x80\x9a\xdf\x02\x32\x2c\xbb\x6e\x82\x2d\xb3\x11\xab\xb6\xaf\xc6\xeb\x45\x5a\xed\xd0\xff\x24\xf0\xec\xfa\xad\xba\x2e\xf0\xc7\xa0\x8e\xcf\x4e\xb7\x24\x80\x6d\x23\x61\x11\x0d\xb1\x75\xec\xa7\x23\x31\x32\xd3\xcb\xc3\x7f\x3c\x4a\x66\xda\xc6\xc3\x71\x32\xff\xac\xf5\x78\xfe\x6a\x8f\x2b\x9e\xde\xf1\x71\x45\x73\x97\x7d\xfe\x05\x43\x2d\x91\x94\x0e\x63\xb2\xb7\x8f\x5a\x6a\xb5\x8e\x33\xf4\x1d\xbf\xb4\xfd\xc7\xed\xb5\xd1\x65\xd7\xdf\x61\xb1\x8d\x67\x1c\x88\xc1\xd1\xa8\x1c\x42\xd8\x20\x10\x87\x70\x1e\x93\x8e\xbd\x54\x1c\xf1\x8c\xb1\x0c\x3d\x89\xd8\xc4\x4c\x1f\xac\x12\xc7\x6f\x86\xc3\x74\xea\xbf\x8f\x78\x34\x2d\x59\x22\x37\xc5\x5c\xf2\xe5\xf0\xcd\x23\xf6\xb7\x87\xe2\x38\xc7\xa3\x64\x5e\xe3\x9e\x55\x0c\x07\xf9\x60\x8d\xf0\x98\x8d\x6d\xdc\xff\x4a\x6c\xe7\xbc\x8d\x8b\x15\x87\x83\xa9\xba\x38\x94\x0d\x7f\x5e\x61\x63\xdf\x94\xe1\x4b\xdc\xb8\x9e\xe1\x7a\xcc\x0d\x78\x2d\xb1\x1f\x0f\x9a\x23\xbf\x85\x7b\x2f\xf4\xe6\x9f\xdd\x1b\x1c\xe5\x7b\xd6\x87\x6b\x0b\x7b\x09\xc4\xf4\x40\xf2\x1b\xe2\xce\x6c\xc9\xb8\x7e\xdc\x47\x1c\xd1\x6a\xb9\xce\xcc\x78\x81\x84\xcb\x27\xac\xad\x4a\x04\x18\x9e\x49\xca\x95\xa8\x83\x5b\x2f\xb0\xfb\x41\xc8\xe5\xe4\xe7\xb0\x34\xf9\x5c\x3d\xf5\x14\xd7\x1c\xa3\x45\x8b\x72\xbf\xe7\x25\xcc\xdd\x6d\x3d\x5e\x26\x01\x54\x71\x53\x47\x05\x09\xf9\xc7\x71\x5b\xf2\xcc\x93\x9e\x9e\xef\x9a\x43\x22\x47\xe7\x82\xef\xd3\xa6\x72\x99\x56\x73\xe2\x21\x49\x1e\xcb\x28\x1a\x82\x8f\x39\x90\x98\x2e\x11\xf7\xd3\xf2\x51\xd0\x21\x4e\x0e\x17\x6e\x68\x77\xe3\x59\x00\x85\xd4\x80\x38\x31\x96\xeb\x43\xe2\x58\x68\xab\x10\x60\x7d\xb7\x22\x89\x46\xfd\x86\x10\xbf\xa7\x63\x1e\xe7\xa4\xbb\x13\xb3\x1f\xe0\xaa\x14\xc7\x92\x09\x3f\xdc\xd9\x38\xe4\x25\x3a\x37\x0e\xf7\xcc\xa1\x1f\x47\x08\xf1\x7b\xc6\xc1\xbd\x3c\xe5\x97\xa1\xb1\x88\x0f\x8d\x87\x94\x43\xbd\xf9\x15\x5a\xa7\xbb\xf1\x10\x7d\xd4\xde\x75\x70\x5e\xc3\xc3\x53\x8c\xe4\x0f\x36\x1f\x4d\x0f\x4e\x29\x11\x47\xc3\x8c\x88\x20\x8e\xb8\xd9\xeb\x0b\x5f\xde\xe2\xbc\xd2\xa8\xe9\x40\x03\x17\x9b\x07\x9b\x3b\x85\x74\x5c\x5e\xa4\x83\x8c\x75\xa1\x72\x9d\x14\x7e\xf9\xe0\x15\x38\xbb\x78\x20\xf2\x5d\x78\x64\x40\xc0\xb3\x95\x2c\xe4\xa1\x10\xb7\xc7\x99\xd5\x05\xbd\x4e\x1b\x73\xac\x1a\x50\x8e\x45\x4f\xe1\x8c\x77\x86\xd2\x59\x60\xcc\x62\xa6\x7c\x62\x32\xab\x78\xb3\x0c\x6a\x97\xdf\x47\x0e\x36\xbe\x70\xc1\x1a\x59\xb4\x6b\x8e\x9f\xd8\xd3\xa1\xf8\xb3\x5a\x5e\xdf\x70\x04\x73\x34\x30\x66\x11\x6e\xf5\x29\x81\x78\xb2\x5b\xb7\x39\xdb\x1a\x6d\xad\x99\x59\x04\xa4\x80\x06\x7f\x74\xb3\x74\xef\xa0\x7a\x6e\x00\x0f\x06\x35\xf4\xf8\x21\xa6\xf0\x07\x06\x00\xb6\xf1\xf0\x08\xc0\x16\xe4\x0d\x11\x1a\x46\xc0\x02\x1e\x1a\x88\x3e\x60\xfa\xfb\x07\x02\xbe\xf1\x3b\x07\x72\x62\xa3\xd0\x9b\xeb\x45\x31\xbb\xff\x1f\x1a\xdf\x48\xdd\x01\x71\x46\x4f\x23\x8c\x08\x3e\x7a\x4c\xde\x11\x7d\xe0\x6b\xb6\x66\xe1\x60\x50\xdf\xb7\x1e\x67\xbe\xa9\x9a\x96\x10\xaa\x6c\xdd\x87\xfe\xf1\x38\xa2\x9a\x3d\xb6\x7d\x7b\xaf\x22\x09\x4f\x2e\x0e\xe8\xf6\x37\x40\x45\x09\x83\xaf\x48\x9e\xcb\xf8\x04\xb4\x7f\x3e\xf2\x55\x08\x79\x5c\x57\xdc\x7f\x5d\xf4\x85\x82\xe9\xcb\x05\x0f\xbe\x1a\x11\xbf\x96\x31\x7e\x36\xa5\x93\x3b\x3a\x6b\x93\xe5\xec\xfd\xd2\xc4\x3b\xc7\xaf\xee\x09\x07\x3b\x3c\xd9\xbc\xe2\x0b\xc3\x4d\x5d\x89\x5f\xf5\x42\x52\x7c\x67\x9c\x4d\x31\x6a\x87\xe1\xab\x63\x3e\x9a\xd0\xcf\x0e\xc6\x45\xb6\x31\xa9\x20\x20\xe9\xa0\x3c\x78\xc5\x00\x51\x60\xad\xbd\xcb\xe0\x5b\xc0\x48\x60\xc2\x1c\x82\x91\xe9\x38\xd0\xe8\xd0\xcd\xf5\x98\xb1\x23\x24\x55\x37\x90\x7b\x6a\x9e\x99\x04\x5f\xd5\x2d\xf8\xaa\xae\xbc\x66\x7c\x12\x64\x44\x38\x0f\x0b\xf6\xee\xbd\xa6\x28\x3b\x3e\xf8\x7c\x3e\xa2\xd7\xe3\x2c\x0e\x59\x8f\x32\xf2\xd5\xa4\x17\xd9\x54\x71\x3d\x89\x5f\x0b\x73\xd8\x98\xc8\x0e\x91\xa8\xf5\xf8\xa6\x63\x58\x24\x0f\x80\x44\x59\xfa\x62\x6a\x3c\x13\xb1\xa9\x86\x79\xdb\x66\xcd\x8f\x97\xc0\x08\x19\x4f\x4f\x65\xe7\xb8\x4d\x8b\xaf\x8a\x9a\x40\x00\x68\x98\x03\xbf\x41\x9f\x77\x71\x6d\x6c\xc1\x30\x43\x6f\xbe\x4d\x00\x49\xa7\xce\x57\x1b\xcc\x7f\x31\x47\x48\xa6\x1a\x3b\x62\xd2\x6f\x25\xcc\x40\xca\xab\xb6\xa9\xbd\x61\x3b\x0b\xc3\x8f\xe5\xe3\xc9\xe0\xa0\x94\x03\xf7\xea\x4c\x2f\x83\x36\x7a\xd5\x85\xa3\xf8\xdc\xc5\xcf\xf4\x12\x3b\xae\x7b\xb0\x52\x70\x8a\x71\x44\xb2\x5e\x36\xd5\x9a\x22\x71\x3c\x70\x9c\xf9\x96\xf5\x60\x54\xcf\x70\xee\x75\xb5\xce\xcb\x09\x2c\xdd\x98\xeb\xd8\x11\xc9\xef\x6a\x63\x34\x4a\x0f\xe1\x9a\xf9\xe3\x43\x85\xf5\x8c\xe3\xef\x61\x91\x8b\x06\x19\xb1\x35\x03\xf9\x42\x0b\xa3\x21\xce\x36\xf1\x07\x06\xc9\xcf\x6c\xaf\x57\xee\x59\xe2\x73\xbe\x93\xde\x2e\x39\xd2\x9f\xcf\xb0\x52\x9e\x8b\x6f\xea\xd8\x02\x37\x5f\xfd\xa1\x91\x61\x40\xac\x73\xcf\x35\x7f\x6c\x6c\x6d\xd9\xdd\xd7\xab\x0c\x6f\x44\x77\x1b\x0d\xf1\xfb\x50\x8a\xad\xfc\xf1\x82\xf2\x9e\xe6\x7a\xdd\xaa\xc4\x35\xef\xee\xb1\x3c\xda\xf1\xcd\x8a\xf2\xf1\x46\x35\x1d\x71\x4f\xc0\x13\x51\xdb\x04\x38\x12\xcf\xfa\x6f\x1f\xec\x68\x34\x97\x80\x21\x06\xb8\x6d\x31\x94\xbe\xfc\x5d\x33\x08\x9c\x90\xe1\x34\x98\x0c\x74\xf7\x83\x57\x84\xaf\x53\x31\xe2\xbe\xe1\x1b\x66\xfc\xca\x00\x3f\xfd\xa9\xe1\x14\x7a\xa0\xd9\x1b\xe0\x6a\x3c\x3a\x32\xa1\xb0\xdf\x07\x56\xe8\x71\x34\x8a\x2f\xcf\x31\x3c\x84\xe4\xeb\x06\xc3\x1e\x9f\x98\x71\x9f\x35\xf8\x88\xdf\x21\x53\x90\x07\x43\xb2\x75\xd3\x36\xb4\x3c\x30\x11\xdb\x23\x22\xaf\x2c\xaf\x9b\xa9\x00\x13\xf8\x7d\x36\xe8\x05\x14\xab\x73\x81\x6c\x92\x1f\xf8\x36\x8a\xaf\xd5\x37\x7d\xbe\xb5\x3a\x6c\x81\x5c\xa9\xdd\xfa\x9a\x0b\xac\xd6\xa9\x15\x04\x35\xb5\x4e\xb3\xe4\x78\x3a\x54\x51\xe0\x4b\xcd\x09\x60\xe1\xe6\xe0\x2b\x20\x84\xae\x61\x9f\xf1\x54\x71\xef\x40\xb2\xd3\xb7\xc8\x4e\xaf\x39\x7b\xda\x83\x8d\xca\x55\x1b\x0d\xea\x58\xbd\x9b\xb6\x9c\xd4\x79\xc9\xb7\xa1\xc6\xf0\x86\xb9\x4d\x99\xef\x27\x78\x7b\x4d\x99\x13\xac\x01\x72\x8a\x00\xc0\x1e\xc7\x42\x58\xab\x2a\xa0\x58\x85\x35\xde\x50\xd6\x31\x68\xbc\xa1\x36\x86\xc7\xc7\x5f\x8e\xd4\xd0\x33\x7b\x3c\x2a\xf5\xd9\x4c\x46\xd5\x2c\xff\x8e\x4f\xa5\x28\xf4\xa5\xfc\x0c\xa0\x96\x4d\xd3\xf3\x8b\xd4\x7b\x16\xb7\x56\xb7\x0e\x4d\x3f\x5b\x3e\x8b\x5b\xab\xdb\x09\xa6\x04\x7a\x8a\x2a\x81\x3e\x8e\xab\x1d\x5f\xc5\xa4\xbe\xda\x61\xd5\x0f\xb4\x41\x5d\x87\x17\x57\x7c\xad\xf3\xca\x15\x4c\x7a\x9c\xd4\x0c\x29\x74\x5c\x79\xae\xe7\x15\x09\x11\xe5\x6c\xd7\x67\x5c\xf2\x60\xdf\x93\xba\x61\xe7\x93\xea\x73\x3b\x05\x6f\x64\xb1\xd1\x79\x39\xac\x6e\xcb\x9e\x63\x72\x37\x19\x3c\xcc\x61\x5b\xef\x0d\x2c\xfd\x19\x60\xe9\x6b\x02\x4b\xaf\xe5\x7b\x27\xd3\x56\xe9\xd0\xd9\x95\x7d\x8e\x48\x81\xa0\x95\x57\x67\xb4\x02\x9c\x5d\xe4\x73\xb5\x60\x9d\xc9\x54\xca\xd6\x5d\xc8\x82\x4f\xd0\x82\x7e\x89\x45\x04\xef\x53\x07\x32\xd7\x1a\xab\x01\x72\xfa\xad\xee\x57\xf2\x00\x14\x2b\x06\x34\x86\x0f\x92\x13\xc0\xe2\xd1\x10\x82\x35\x1e\x09\xa7\x38\x5e\x0f\x21\xf0\xeb\x98\x51\x0a\x07\xf3\xc0\xc2\xb8\x08\xee\x7d\x3e\x74\xb3\x80\xfb\x5c\x36\xd3\x51\x48\xeb\xde\x00\xad\xe7\x31\x9c\x76\xda\x09\x2a\x85\xad\x88\xa6\x26\xb1\x9b\xfa\xc2\x87\x7d\x8b\x0d\xa1\x9b\xf6\xbe\x07\xbe\xc8\x26\xb0\x5f\xfc\xc0\x80\x82\x89\xf4\x0a\x99\x55\x72\x4c\xde\xc2\xf3\x97\x96\xb6\x32\x58\xa2\xd4\xa6\xa7\x79\xd1\xd7\x0e\x34\xcf\x6e\x74\xb8\x7b\x69\x9a\x1f\x5e\xb0\xd2\x16\x21\x98\x5a\xc8\x4a\xfc\x90\xb4\x46\xae\x08\xa0\x5c\x69\x16\x4f\xd2\x36\xac\x0c\xa5\xc1\x7d\x8a\x2b\x6a\xe0\x2d\xf4\x89\x60\x6e\x47\x9f\x92\xb3\x37\x20\x7e\xe7\x6b\x72\x7e\x36\x01\x8e\xe1\xe8\x8e\xb1\x5b\x75\x59\x88\xce\xf1\x13\x12\xf9\x08\xbd\x0c\xae\x18\x8e\x40\xe1\xf9\x0e\x3f\x9d\x10\xb8\x1f\x0d\xe5\x70\xf4\xe1\x93\x2d\x1a\x28\x35\x69\x21\xa8\x13\x7c\xe7\x86\xc3\x4d\xe5\xba\xc7\x1c\x8a\xbc\x75\xd0\x30\xe4\x5e\xe5\x03\xf4\x83\xae\xa5\x18\x17\xf3\x8f\x85\xfe\x7f\x79\x2f\x35\x1c\x80\x7f\x35\xf5\x48\xff\xff\x4f\x5e\x4d\x1d\x5b\x66\xdd\xb3\xa9\x78\x16\x72\x81\xe0\xeb\x78\x1f\x47\x8e\xab\x68\x3f\xa3\x46\xb8\x4f\x91\x11\xbb\xf2\x91\xe5\xcd\xbe\x66\xf1\x15\xab\x0d\xb6\xe8\xb8\xbf\x20\x5e\x3e\xea\x4d\x6a\x4c\x9f\x26\x89\x87\x20\x39\x53\x6f\x91\xe4\xab\x35\x22\xd5\xdb\xf4\xa5\x5a\x8f\x16\x30\x49\xa8\x8b\xc6\xf2\x26\x9f\x74\xe4\x4d\xad\x5b\x7b\x34\xe4\x78\x73\x47\xa3\x96\x4a\x72\xff\xd0\x42\xf1\x67\x99\x89\x02\x06\x53\x91\x9c\xf0\x3e\xaf\xe4\xc8\x33\x81\x78\x75\x5b\x52\x9a\x3f\x8d\xc2\x08\x46\xac\xcd\xc4\x5d\x07\x8d\x02\x68\x96\x57\x05\x63\x19\xc7\xff\x49\x6e\xf8\x05\x47\xc9\xd1\x8f\xe1\xe1\x3b\x78\x92\xb3\x44\xfc\x10\xa2\xdc\xd8\xf8\x74\xfe\xce\xba\xed\xfb\xb6\x5a\x0e\xfd\xfc\x03\x98\xae\x74\x02\x6d\x6e\x7f\xa6\xdd\xf4\x0b\xb0\xdd\x60\x0d\x5f\x0d\x5f\x6a\x77\xf4\x69\x83\x11\x9c\xdc\x5a\x4e\xdd\xa5\xf9\x97\xf8\xad\x85\x3b\xe6\x91\x59\xc7\xdf\x5c\xbd\x20\x16\x53\xa4\x57\xa7\x5a\x82\x4f\xde\xa9\x75\x04\x5f\xc6\x3b\xba\x0a\x0c\x39\xf9\x84\x9e\x2f\x52\xbc\xa2\x28\x40\xae\x3e\xa4\xd9\xcb\x1b\x87\xf2\x88\xe4\xf5\xdb\x2b\x4a\xae\xda\x7b\x71\x18\xe9\xba\xb0\xc7\x40\x3f\x34\x67\x2f\x8b\x9f\x5e\xb8\x4f\xf9\x05\x2b\xad\x4d\xf2\x67\xc2\xb2\xe0\x0b\xb8\xda\x38\x8d\xbf\xd1\x8f\xe0\xa8\xc1\x54\x69\x95\x9f\x61\xe6\x8b\xa2\xfb\xce\xda\x09\x2e\x48\x8e\xc8\x5e\x1f\xdc\xd4\x15\x98\x1c\x46\xb1\xe5\x16\x07\x8d\x3b\x94\x42\x7a\x0f\xcf\xca\xa8\x83\xdf\xf9\x3c\x66\xd8\x56\x70\xa8\x3c\x30\xd6\xd9\xbb\x5c\xf1\xdb\x2e\x21\x60\x26\xfb\xcf\xde\x74\x8a\x1a\x76\x4e\xa6\x69\x85\xe8\x71\xa7\xa8\xd2\x7c\x18\xc0\x43\xcf\x3a\x89\x51\xc0\x94\x71\x67\xf3\x56\x65\x3c\x36\x7d\x2b\xec\x43\x5f\x11\x0d\x40\xee\xc4\xb5\x16\x40\xd8\xf7\x8f\x03\xa0\xf9\xaf\x58\x2a\xc0\x98\xa7\x68\xf6\xe8\xe3\x86\xd1\x57\x0d\xad\xa6\x7d\xa4\xa9\x19\x44\xdb\xc6\x47\xd4\xf4\x0e\xc7\x07\x64\xb2\xa0\x65\xe0\x73\x5f\x12\x0d\x8a\xb4\x23\x2e\x0a\x3b\xc1\x09\xc5\x9f\x55\x7b\xf0\xab\xa7\x86\x60\x36\xb9\xaf\x32\x79\xd8\x23\xa8\x03\x83\xff\x0a\x61\xbc\xd3\x4a\x34\xee\x69\x0d\x1a\xf7\x11\x70\x71\x02\x1b\x3f\xbf\xc2\x2f\x61\x21\x6e\xc4\x1c\x5a\xa6\x54\x64\x13\x96\xbc\xf1\xab\xf1\x21\x0e\x8a\xa5\x27\x0c\xf7\x25\xba\x59\xd2\xf0\x5f\xf2\x0d\xbb\xe5\x6f\xf0\x06\x07\x81\xcf\x0d\x8f\x34\x9f\x1b\x7e\xea\xd7\xe7\xce\x7d\x7b\x77\x5a\xea\x3d\xf3\xdf\x70\x6c\xca\xd7\x7b\xf9\x1c\x71\xf7\x35\x3e\xb8\xf8\x6d\x50\x23\xfc\x6e\x6f\x9c\x3b\x6e\x43\x3f\x13\x38\x6a\xc2\x98\x65\xb4\x65\xaa\xd5\x11\xc4\xb8\xaf\x85\x45\xef\xa8\x02\xfd\xf2\xd5\x49\x3d\x56\xa2\xcf\x84\x8e\x89\xd9\x33\x5b\x47\xca\x21\xa3\xb5\x81\x71\x48\x7b\xf4\xfd\x4c\xfd\x66\x93\xc6\xb6\xbb\x2f\x94\xfd\x8c\x6c\x3f\xc2\xd9\x8f\x63\x8e\xbf\x8a\xc9\x41\xe7\x56\x25\xfe\x8c\xe9\xf4\xfb\xa5\x0a\x66\x8f\x39\xc3\x22\x30\x79\xf7\x19\xa6\x00\x7d\xf6\xd9\x18\x83\x5c\x21\xe1\xf8\xee\x6c\xab\xe6\x6f\xb9\x66\x82\x28\xef\xf4\x2d\xec\xdd\x6e\xdc\xd1\xa7\x94\xa2\x4a\xf2\x05\x27\xf7\xb9\x96\x69\x65\xbb\x0d\xe5\x16\xd1\x6e\x77\xcc\x2e\xe2\xaf\x43\x39\x50\xe3\xf2\x8d\x25\x7e\x1f\x89\x7e\xa6\x6f\xf1\xd3\xad\x95\x5c\xdb\x80\x36\x2c\xdf\x8f\xd7\x8b\x1c\x50\x8a\x29\xc7\xad\xd2\x6d\xb5\xe7\x63\x59\xbf\x12\xc1\x8b\x43\x39\x38\x9b\xff\x8c\x9c\x10\xc9\x21\x67\xbe\xc0\xef\xf9\x01\x2a\xec\x54\x0a\x8c\xcb\x8d\xa0\x88\xce\x9b\x80\x98\x5e\xff\xf2\xf6\x72\x04\x39\xb3\x41\xb5\x64\x66\x43\xc7\xdf\xd0\x0d\xb7\xaf\xb8\x72\xdc\x14\xe0\xbe\x99\x9f\x81\x40\x1e\x9d\x80\xd0\x90\xf7\xcc\x82\x78\x66\x1b\x52\x6a\x2b\xf2\xbd\xec\x18\xa5\x33\xf9\x1d\x03\x05\x8f\xc6\x09\x94\xbd\x19\x37\xe9\xb5\x0e\xfb\xac\xc5\x0d\xe1\xf9\x81\x84\x08\x04\xfc\x40\x42\x6d\x67\x87\x67\xd0\xa4\xb2\xde\x55\x85\x0a\x8e\x02\xff\x5e\xb3\x0c\xd4\x40\x7c\xcb\x06\xa1\x4d\xbb\x61\x12\xe1\x56\x4e\x7a\x3b\xc3\xaf\x68\xe9\x74\x23\xf2\x7e\x11\x58\xbf\x0d\xf9\x15\x69\xa9\x61\xc0\xeb\x95\x43\x8c\x19\x94\x5e\x9d\xf9\xe7\xf4\x60\x7b\x1a\x4d\x66\x5b\xdd\x94\xce\x52\xa5\xb3\x79\x4b\x79\x11\x30\x7f\xfc\xba\xb3\x0b\x67\xf2\x1d\x2f\xfe\x7c\xee\x68\x12\x61\x53\x3a\x93\x49\x4b\xfb\x0a\xd6\xc3\x00\x2f\x92\x31\x8f\x71\x83\x56\xbe\x1d\x80\x2b\xe3\x1e\xb3\x5b\xfb\x92\x45\xb0\x43\xfc\xb3\xf2\xfe\x7c\x76\xbd\xf3\xb9\x3c\xdb\x33\x43\xe9\xc9\xc5\x30\x38\xb9\x2c\x5a\x60\xb1\x6a\xe5\x79\x0b\xfe\x77\xcd\x7e\x5c\x57\x12\xee\x3d\xcb\xeb\x88\xf6\x8a\x41\x2e\xdb\x68\xd2\xc3\xfb\xe8\x02\x41\x93\x15\xcc\xbc\x6f\x14\x03\x94\xbf\x95\xab\x21\x70\x2b\xfc\x22\xbf\xd5\x8e\xe7\x9b\x69\x2c\x38\x70\xa8\xf1\x02\xd3\x7b\xc9\x09\x60\xe6\x9e\x7d\xb1\xa1\x23\xc4\xd1\x42\x1d\x8f\xf6\xef\xba\x87\xfa\xc3\x50\x16\x71\x61\x51\x0e\xf2\x33\xdb\xca\xdd\x8b\x51\x10\x86\xc1\x86\x52\x48\x98\x97\x7d\x17\xc9\x69\xae\x6c\x66\xe0\x56\xd4\xe0\x0b\xcf\xfb\x45\x00\x0b\x51\x3c\x78\xe1\x58\xc6\x20\xe5\x5f\x0a\xb1\x4a\x3e\x49\x4c\xc3\xe7\xd1\x9b\x97\x66\x7e\x0c\xc2\x68\xa2\xfb\x3f\x8f\xe4\xcd\x2a\xb9\x24\x65\x95\x38\x82\x48\xde\xdc\x0a\x60\x9f\x76\xed\xea\xe9\xa3\xf0\xa5\x2b\xb6\x08\x79\x00\x7e\x19\x8b\x0b\x7f\xd0\x67\xb0\x74\x1c\x30\x6a\x50\x9b\x7f\xd3\x17\xb4\xe4\x77\xd8\xae\x98\x3d\xa4\xe9\xee\x3f\xb9\xd6\xff\x96\x68\xb0\x85\x6f\x42\x33\xf0\xbe\xf5\x1f\x69\xc8\xbd\x91\xa0\xf3\xb3\xdf\x23\xbc\xe0\x4a\x2a\x23\x44\xee\xa6\x8e\xdf\x19\x57\x54\xe1\x66\x2b\xdf\xc4\xf1\x78\xa2\x1f\x0f\x23\x2a\x6a\x6a\x82\xa8\x66\xc7\x77\x10\xb3\xef\x33\xff\x78\x1e\x2e\xe1\x49\x41\xd5\xe9\x6b\x3d\xf2\x88\xfb\xf7\xee\xe1\xbc\xe4\x53\xdf\x34\xdb\xcf\x49\xbe\xe6\x39\xd1\xdf\x04\x2f\x53\x4a\xbc\x2e\x62\xd2\x28\x99\xc8\x4f\x4e\x7d\xc7\x0d\x7f\x47\x5a\x2a\x31\x10\x3c\x19\xf5\xdd\x0e\x19\xf2\x11\x51\x64\x6c\x90\xc1\x4f\x9a\xe2\x67\x81\x9f\x45\x7e\x8f\x5f\x07\xfc\x3a\x94\xe5\xad\x54\x06\x87\xa1\xea\xa4\xf5\x6d\x90\x73\x8f\xdf\xfc\xfa\x11\xbe\xe0\x8c\x7e\xf4\x9d\x31\xfb\x81\x87\xaa\xe4\x9b\xa5\xc8\xb7\x1f\x94\x2f\xef\xf1\x3f\xf7\x4f\xf3\x3f\x62\xff\xd8\xbd\x66\x21\x45\x39\xdc\xbd\x66\x49\xf2\x11\xd8\x04\xe9\xb2\xda\xa0\xa4\x29\x97\xc7\xa1\x99\x92\xa4\xbc\x36\x3f\x64\x7e\x5c\x9a\x42\xae\x1f\x95\xa6\x92\xff\x1b\x00\x00\xff\xff\x1f\x03\x34\x04\x79\x88\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -787,7 +787,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 34664, mode: os.FileMode(420), modTime: time.Unix(1438758818, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 34937, mode: os.FileMode(420), modTime: time.Unix(1438770305, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/js/gogs.js b/public/js/gogs.js index dc9537bc1..214cdf9f6 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -88,9 +88,9 @@ function initRepository() { inline: true, timepicker: false, startDate: $datepicker.data('start-date'), - formatDate: 'm/d/Y', + formatDate: 'Y-m-d', onSelectDate: function (ct) { - $('#deadline').val(ct.dateFormat('m/d/Y')); + $('#deadline').val(ct.dateFormat('Y-m-d')); } }); $('#clear-date').click(function () { diff --git a/routers/repo/issue.go b/routers/repo/issue.go index f86e03c4c..e29f3380a 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -351,21 +351,21 @@ func ViewIssue(ctx *middleware.Context) { issue, err := models.GetIssueByIndex(ctx.Repo.Repository.Id, idx) if err != nil { if err == models.ErrIssueNotExist { - ctx.Handle(404, "issue.ViewIssue(GetIssueByIndex)", err) + ctx.Handle(404, "GetIssueByIndex", err) } else { - ctx.Handle(500, "issue.ViewIssue(GetIssueByIndex)", err) + ctx.Handle(500, "GetIssueByIndex", err) } return } // Get labels. if err = issue.GetLabels(); err != nil { - ctx.Handle(500, "issue.ViewIssue(GetLabels)", err) + ctx.Handle(500, "GetLabels", err) return } labels, err := models.GetLabels(ctx.Repo.Repository.Id) if err != nil { - ctx.Handle(500, "issue.ViewIssue(GetLabels.2)", err) + ctx.Handle(500, "GetLabels.2", err) return } checkLabels(issue.Labels, labels) @@ -375,10 +375,10 @@ func ViewIssue(ctx *middleware.Context) { if issue.MilestoneId > 0 { ctx.Data["Milestone"], err = models.MilestoneById(issue.MilestoneId) if err != nil { - if err == models.ErrMilestoneNotExist { - log.Warn("issue.ViewIssue(GetMilestoneById): %v", err) + if models.IsErrMilestoneNotExist(err) { + log.Warn("GetMilestoneById: %v", err) } else { - ctx.Handle(500, "issue.ViewIssue(GetMilestoneById)", err) + ctx.Handle(500, "GetMilestoneById", err) return } } @@ -387,36 +387,36 @@ func ViewIssue(ctx *middleware.Context) { // Get all milestones. ctx.Data["OpenMilestones"], err = models.GetMilestones(ctx.Repo.Repository.Id, -1, false) if err != nil { - ctx.Handle(500, "issue.ViewIssue(GetMilestones.1): %v", err) + ctx.Handle(500, "GetMilestones.1: %v", err) return } ctx.Data["ClosedMilestones"], err = models.GetMilestones(ctx.Repo.Repository.Id, -1, true) if err != nil { - ctx.Handle(500, "issue.ViewIssue(GetMilestones.2): %v", err) + ctx.Handle(500, "GetMilestones.2: %v", err) return } // Get all collaborators. ctx.Data["Collaborators"], err = ctx.Repo.Repository.GetCollaborators() if err != nil { - ctx.Handle(500, "issue.CreateIssue(GetCollaborators)", err) + ctx.Handle(500, "GetCollaborators", err) return } if ctx.IsSigned { // Update issue-user. if err = models.UpdateIssueUserPairByRead(ctx.User.Id, issue.ID); err != nil { - ctx.Handle(500, "issue.ViewIssue(UpdateIssueUserPairByRead): %v", err) + ctx.Handle(500, "UpdateIssueUserPairByRead: %v", err) return } } // Get poster and Assignee. if err = issue.GetPoster(); err != nil { - ctx.Handle(500, "issue.ViewIssue(GetPoster): %v", err) + ctx.Handle(500, "GetPoster: %v", err) return } else if err = issue.GetAssignee(); err != nil { - ctx.Handle(500, "issue.ViewIssue(GetAssignee): %v", err) + ctx.Handle(500, "GetAssignee: %v", err) return } issue.RenderedContent = string(base.RenderMarkdown([]byte(issue.Content), ctx.Repo.RepoLink)) @@ -424,7 +424,7 @@ func ViewIssue(ctx *middleware.Context) { // Get comments. comments, err := models.GetIssueComments(issue.ID) if err != nil { - ctx.Handle(500, "issue.ViewIssue(GetIssueComments): %v", err) + ctx.Handle(500, "GetIssueComments: %v", err) return } @@ -432,7 +432,7 @@ func ViewIssue(ctx *middleware.Context) { for i := range comments { u, err := models.GetUserById(comments[i].PosterId) if err != nil { - ctx.Handle(500, "issue.ViewIssue(GetUserById.2): %v", err) + ctx.Handle(500, "GetUserById.2: %v", err) return } comments[i].Poster = u @@ -1051,8 +1051,70 @@ func NewMilestonePost(ctx *middleware.Context, form auth.CreateMilestoneForm) { ctx.Redirect(ctx.Repo.RepoLink + "/milestones") } -func EditMilestone(ctx *middleware.Context) {} -func EditMilestonePost(ctx *middleware.Context) {} +func EditMilestone(ctx *middleware.Context) { + ctx.Data["Title"] = ctx.Tr("repo.milestones.edit") + ctx.Data["PageIsMilestones"] = true + ctx.Data["PageIsEditMilestone"] = true + ctx.Data["DateLang"] = setting.DateLang(ctx.Locale.Language()) + + m, err := models.GetMilestoneByIndex(ctx.Repo.Repository.Id, ctx.ParamsInt64(":index")) + if err != nil { + if models.IsErrMilestoneNotExist(err) { + ctx.Handle(404, "GetMilestoneByIndex", nil) + } else { + ctx.Handle(500, "GetMilestoneByIndex", err) + } + return + } + ctx.Data["title"] = m.Name + ctx.Data["content"] = m.Content + if len(m.DeadlineString) > 0 { + ctx.Data["deadline"] = m.DeadlineString + } + ctx.HTML(200, MILESTONE_NEW) +} + +func EditMilestonePost(ctx *middleware.Context, form auth.CreateMilestoneForm) { + ctx.Data["Title"] = ctx.Tr("repo.milestones.edit") + ctx.Data["PageIsMilestones"] = true + ctx.Data["PageIsEditMilestone"] = true + ctx.Data["DateLang"] = setting.DateLang(ctx.Locale.Language()) + + if ctx.HasError() { + ctx.HTML(200, MILESTONE_NEW) + return + } + + if len(form.Deadline) == 0 { + form.Deadline = "9999-12-31" + } + deadline, err := time.Parse("2006-01-02", form.Deadline) + if err != nil { + ctx.Data["Err_Deadline"] = true + ctx.RenderWithErr(ctx.Tr("repo.milestones.invalid_due_date_format"), MILESTONE_NEW, &form) + return + } + + m, err := models.GetMilestoneByIndex(ctx.Repo.Repository.Id, ctx.ParamsInt64(":index")) + if err != nil { + if models.IsErrMilestoneNotExist(err) { + ctx.Handle(404, "GetMilestoneByIndex", nil) + } else { + ctx.Handle(500, "GetMilestoneByIndex", err) + } + return + } + m.Name = form.Title + m.Content = form.Content + m.Deadline = deadline + if err = models.UpdateMilestone(m); err != nil { + ctx.Handle(500, "UpdateMilestone", err) + return + } + + ctx.Flash.Success(ctx.Tr("repo.milestones.edit_success", m.Name)) + ctx.Redirect(ctx.Repo.RepoLink + "/milestones") +} func MilestoneActions(ctx *middleware.Context) { ctx.Data["Title"] = "Update Milestone" @@ -1067,7 +1129,7 @@ func MilestoneActions(ctx *middleware.Context) { mile, err := models.GetMilestoneByIndex(ctx.Repo.Repository.Id, idx) if err != nil { - if err == models.ErrMilestoneNotExist { + if models.IsErrMilestoneNotExist(err) { ctx.Handle(404, "GetMilestoneByIndex", err) } else { ctx.Handle(500, "GetMilestoneByIndex", err) @@ -1125,7 +1187,7 @@ func UpdateMilestonePost(ctx *middleware.Context, form auth.CreateMilestoneForm) mile, err := models.GetMilestoneByIndex(ctx.Repo.Repository.Id, idx) if err != nil { - if err == models.ErrMilestoneNotExist { + if models.IsErrMilestoneNotExist(err) { ctx.Handle(404, "GetMilestoneByIndex", err) } else { ctx.Handle(500, "GetMilestoneByIndex", err) diff --git a/templates/repo/issue/milestone_edit.tmpl b/templates/repo/issue/milestone_edit_old.tmpl similarity index 100% rename from templates/repo/issue/milestone_edit.tmpl rename to templates/repo/issue/milestone_edit_old.tmpl diff --git a/templates/repo/issue/milestone_new.tmpl b/templates/repo/issue/milestone_new.tmpl index d3b4c4925..108afb0cb 100644 --- a/templates/repo/issue/milestone_new.tmpl +++ b/templates/repo/issue/milestone_new.tmpl @@ -8,8 +8,13 @@

+ {{if .PageIsEditMilestone}} + {{.i18n.Tr "repo.milestones.edit"}} +
{{.i18n.Tr "repo.milestones.edit_subheader"}}
+ {{else}} {{.i18n.Tr "repo.milestones.new"}}
{{.i18n.Tr "repo.milestones.new_subheader"}}
+ {{end}}

{{.CsrfTokenHtml}} @@ -21,7 +26,7 @@
- +
@@ -41,9 +46,18 @@
+ {{if .PageIsEditMilestone}} + + + {{.i18n.Tr "repo.milestones.cancel"}} + + {{else}} + {{end}}
diff --git a/templates/repo/issue/milestone_old.tmpl b/templates/repo/issue/milestone_old.tmpl deleted file mode 100644 index 6a9e5f379..000000000 --- a/templates/repo/issue/milestone_old.tmpl +++ /dev/null @@ -1,43 +0,0 @@ -{{template "base/head_old" .}} -{{template "base/navbar" .}} -{{template "repo/nav" .}} -{{template "repo/toolbar" .}} -
-
- -
-
- {{range .Milestones}} -
-

{{.Name}}

- {{.NumOpenIssues}} - {{.NumClosedIssues}} -

- Edit - {{if .IsClosed}} - Open - {{else}} - Close - {{end}} - Delete - Issues -

-
-

{{.RenderedContent | Str2html}}

-
- {{end}} -
-
-
-
- -{{template "base/footer_old" .}}