From a52324a5f9d2dd8f4d4980d3ea0a2d247471dcff Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 15 Aug 2015 12:07:08 +0800 Subject: [PATCH] able sort issues --- conf/locale/locale_en-US.ini | 7 ++++ config.codekit | 74 ++++------------------------------ models/issue.go | 14 +++---- modules/bindata/bindata.go | 4 +- public/css/gogs.min.css | 2 +- public/less/_repository.less | 4 ++ routers/repo/issue.go | 12 ++++-- templates/repo/issue/list.tmpl | 44 ++++++++++++++------ 8 files changed, 66 insertions(+), 95 deletions(-) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 75cac3eb93..8d558087f9 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -400,6 +400,13 @@ issues.filter_type.all_issues = All issues issues.filter_type.assigned_to_you = Assigned to you issues.filter_type.created_by_you = Created by you issues.filter_type.mentioning_you = Mentioning you +issues.filter_sort = Sort +issues.filter_sort.latest = Latest +issues.filter_sort.oldest = Oldest +issues.filter_sort.recentupdate = Recent updated +issues.filter_sort.leastupdate = Least updated +issues.filter_sort.mostcomment = Most comments +issues.filter_sort.leastcomment = Least comments issues.opened_by = opened %[1]s by %[2]s issues.opened_by_fake = opened %[1]s by %[2]s issues.previous = Previous diff --git a/config.codekit b/config.codekit index 7a8bc2912f..21fac6785f 100644 --- a/config.codekit +++ b/config.codekit @@ -1,6 +1,6 @@ { "CodeKitInfo": "This is a CodeKit 2.x project configuration file. It is designed to sync project settings across multiple machines. MODIFYING THE CONTENTS OF THIS FILE IS A POOR LIFE DECISION. If you do so, you will likely cause CodeKit to crash. This file is not useful unless accompanied by the project that created it in CodeKit 2. This file is not backwards-compatible with CodeKit 1.x. For more information, see: http:\/\/incident57.com\/codekit", -"creatorBuild": "19033", +"creatorBuild": "19051", "files": { "\/CONTRIBUTING.md": { "criticStyle": 0, @@ -1635,10 +1635,6 @@ } }, "jsLintFlags2": { - "ass": { - "active": 0, - "flagValue": -1 - }, "bitwise": { "active": 0, "flagValue": -1 @@ -1647,15 +1643,7 @@ "active": 1, "flagValue": -1 }, - "closure": { - "active": 0, - "flagValue": -1 - }, - "continue": { - "active": 0, - "flagValue": -1 - }, - "debug": { + "couch": { "active": 0, "flagValue": -1 }, @@ -1663,75 +1651,27 @@ "active": 0, "flagValue": -1 }, - "eqeq": { + "es6": { "active": 0, "flagValue": -1 }, - "evil": { - "active": 1, - "flagValue": -1 - }, - "forin": { + "eval": { "active": 0, "flagValue": -1 }, - "indent": { + "for": { "active": 0, - "flagValue": 4 + "flagValue": -1 }, "maxlen": { "active": 0, "flagValue": 150 }, - "newcap": { - "active": 0, - "flagValue": -1 - }, "node": { "active": 0, "flagValue": -1 }, - "nomen": { - "active": 0, - "flagValue": -1 - }, - "plusplus": { - "active": 0, - "flagValue": -1 - }, - "properties": { - "active": 0, - "flagValue": -1 - }, - "regexp": { - "active": 0, - "flagValue": -1 - }, - "rhino": { - "active": 0, - "flagValue": -1 - }, - "sloppy": { - "active": 0, - "flagValue": -1 - }, - "stupid": { - "active": 0, - "flagValue": -1 - }, - "sub": { - "active": 0, - "flagValue": -1 - }, - "todo": { - "active": 0, - "flagValue": -1 - }, - "unparam": { - "active": 0, - "flagValue": -1 - }, - "vars": { + "this": { "active": 0, "flagValue": -1 }, diff --git a/models/issue.go b/models/issue.go index 4ceb586b45..1e49fda754 100644 --- a/models/issue.go +++ b/models/issue.go @@ -639,7 +639,7 @@ func parseCountResult(results []map[string][]byte) int64 { } // GetIssueStats returns issue statistic information by given conditions. -func GetIssueStats(repoID, uid, labelID, milestoneID int64, isShowClosed bool, filterMode int) *IssueStats { +func GetIssueStats(repoID, uid, labelID, milestoneID, assigneeID int64, isShowClosed bool, filterMode int) *IssueStats { stats := &IssueStats{} // issue := new(Issue) @@ -652,20 +652,16 @@ func GetIssueStats(repoID, uid, labelID, milestoneID int64, isShowClosed bool, f if milestoneID > 0 { baseCond += " AND issue.milestone_id=" + com.ToStr(milestoneID) } + if assigneeID > 0 { + baseCond += " AND assignee_id=" + com.ToStr(assigneeID) + } switch filterMode { - case FM_ALL: + case FM_ALL, FM_ASSIGN: resutls, _ := x.Query(queryStr+baseCond, repoID, false) stats.OpenCount = parseCountResult(resutls) resutls, _ = x.Query(queryStr+baseCond, repoID, true) stats.ClosedCount = parseCountResult(resutls) - case FM_ASSIGN: - baseCond += " AND assignee_id=?" - resutls, _ := x.Query(queryStr+baseCond, repoID, false, uid) - stats.OpenCount = parseCountResult(resutls) - resutls, _ = x.Query(queryStr+baseCond, repoID, true, uid) - stats.ClosedCount = parseCountResult(resutls) - case FM_CREATE: baseCond += " AND poster_id=?" resutls, _ := x.Query(queryStr+baseCond, repoID, false, uid) diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index c723109f14..b5d35cf2fe 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -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\x7b\x73\xdb\x48\x92\xe7\xff\xf8\x14\x68\x6f\xf8\xec\x8e\x90\xe9\xe8\x9e\xb8\x47\x74\xd8\xee\x53\x4b\xed\xc7\xac\x65\x69\x2d\xb9\xe7\xe6\x1c\x0e\x36\x48\x40\x24\x46\x24\xc0\xc6\x43\xb4\x66\x63\x23\xee\x6b\xdc\xd7\xbb\x4f\x72\x99\xbf\xcc\xac\x07\x00\xca\xf6\xec\xc6\xdd\x3f\x64\xa1\x2a\xeb\x95\x95\x95\x95\x99\x95\x55\x95\xed\x76\xf3\xbc\x68\x97\xe9\xf3\xf4\x38\xdd\x65\x65\xb5\x29\xda\x36\x6d\x8b\xcd\xf5\x93\x75\xdd\x76\x45\x9e\xbe\x2a\x3b\xfa\x6e\x6e\xcb\x65\x91\x24\xeb\x7a\x5b\x10\xe8\x6b\xfa\x4b\xf2\xac\x5d\x2f\xea\xac\xc9\x29\xe2\xd4\xc2\x49\xf1\x79\xb7\xa9\x1b\x06\xfa\x55\x42\xc9\xba\xd8\xec\x38\x0f\xfd\x25\x6d\xb9\xaa\xe6\x65\x45\x9f\x97\x14\x4a\xdf\x54\x49\x5b\x2f\xcb\x6c\x33\x0f\x12\x10\x61\xe9\x3f\xa5\x3f\x56\x79\x7a\xd9\x15\xbb\xf4\x59\xbb\xcd\x36\x9b\x17\x59\x8b\x2c\x5d\x91\x66\xcb\x65\xdd\x57\xdd\xb3\xa7\x92\x20\x85\xd7\x7d\x67\xa5\x9f\xf7\x9d\xc4\xf5\x3b\x8b\xfa\xb0\x4b\x9a\x62\x55\x52\xc7\x1a\x8a\x7a\xaf\xc1\x64\x5f\x2c\xda\xb2\xe3\x46\xff\x45\x42\xc9\x6d\xd1\xb4\x65\xcd\xed\xf9\x4d\x42\xc9\x2e\x5b\x31\xc0\x05\xfd\x25\x5d\xb1\xdd\x6d\x32\x64\xb8\xd2\x60\xb2\xc9\xaa\x55\x2f\x30\x6f\x35\x98\x2c\x9b\x82\x92\xe6\x55\xb1\xa7\xd8\x13\x7c\xa4\xf4\x31\x9b\xcd\x92\x9e\x70\x3a\xdf\x35\xf5\x75\xb9\x29\xe6\x59\x95\xcf\xb7\x82\xb5\x0f\x14\x9f\x6a\x7c\x4a\xf1\x29\xc7\xa3\x1b\x45\x4e\x08\x9a\x67\xad\xf6\x85\x86\x86\xf0\x95\xb5\x09\x8a\xaa\xb2\xad\xe5\xe6\x60\x52\x6c\xb3\x72\xc3\x83\xf0\x84\x03\xd4\xf8\xb6\xdd\xd7\x18\xaa\x0b\x0d\x12\x22\xe6\xdd\xdd\xae\x00\x1e\x9e\x5c\x51\x28\x59\x66\xbb\x6e\xb9\xce\xb8\xad\x12\x4a\x08\x68\x57\x13\x42\xea\xe6\x0e\x70\xf6\x91\xd4\xcd\x2a\xab\xca\xbf\x67\x9d\x20\xe9\x3c\xf8\x4c\xb6\x65\xd3\xd4\x8c\xdf\x33\x04\x12\xea\xf1\x9c\xcb\xa1\x98\x77\x84\x89\xa0\x14\x4e\xd9\x96\xab\x46\x50\xc9\x89\x67\xf8\xe2\x52\x38\xed\xba\x6e\x6e\x34\xe1\x25\x07\x07\x59\xa9\x11\x9a\x1a\xd7\x9f\x55\x84\x7c\x4d\x3d\xc3\x47\x04\xd0\x26\x59\xbe\x25\x54\xee\xb2\xaa\x60\x1c\x1d\xf3\x17\xe1\x85\xbe\x12\xa5\xa9\x79\x5b\x74\x5d\x59\xad\x18\xd9\xc7\x12\x95\x5e\x6a\x54\x12\xa4\xb9\xb8\xbb\xba\x77\xc3\x49\xf1\x7f\xa5\xcf\xf4\x42\x3e\x25\x2d\xc8\x84\x44\x97\x93\x7b\xd2\xce\xaf\x8b\x22\x97\xbe\xb4\xe9\x4b\x0a\x27\xbb\x7e\xb3\x21\xac\xfd\xd1\x17\x6d\xc7\x99\x2e\xe8\x9b\xfa\x2f\xdf\x49\xd9\xb6\x14\xa0\xe8\x37\x08\x24\x34\x74\xd5\x12\x9d\x39\x41\x20\x49\x3e\xb6\x45\xd6\x2c\xd7\x9f\x12\xf9\x47\x5b\x39\xc0\xb4\x77\x68\x50\x99\x90\x94\x88\xa4\x06\xab\x20\x59\xd6\x39\x7f\x9c\xd0\x1f\x15\x5d\x56\x6d\x47\x33\xee\x53\xa2\x01\x06\x93\x90\x0c\x40\x57\x76\xc0\x82\x46\x62\xfa\xb6\x3c\x82\xe9\xcb\xb2\x69\xbb\x27\x5d\x49\xc4\xfa\xbe\xaf\x12\xee\x1f\xcd\xb6\x79\xbe\x30\x26\xf4\xaa\x26\x14\x21\xba\xa1\xfe\x9d\xdd\x5d\xfe\xcb\xdb\xa3\xf4\x82\x38\xd1\xaa\x29\x28\x9c\x52\x19\xf4\x47\x79\xfe\x34\x4b\x28\x97\xd5\x74\x9a\x75\xd9\x22\x6b\x0b\x8f\x56\x4e\x14\xea\x76\x69\xa0\x71\xe6\x6a\xe0\x60\x6d\x17\xf5\x77\x6a\x86\x50\x19\x3a\xaf\x5c\x19\xef\x78\x72\x51\x3c\x33\x35\x64\xbe\xd8\x14\x1c\x4f\x45\xa5\x6f\xde\xbd\x3b\x3f\xfd\x25\x2d\xaa\x55\x59\x15\xe9\xbe\xec\xd6\x69\xdf\x5d\xff\xb7\xf9\xaa\xa8\x8a\x86\x78\xdc\xb2\x4c\x69\x4e\x35\x44\x09\x29\x11\xb6\x74\x6e\x96\xb4\xed\x86\xe6\x3e\xd0\x7b\x79\xf9\x36\x3d\x63\x14\xef\xb2\x6e\x8d\x86\x74\xeb\xa4\xfd\x63\xc3\x28\x72\x15\x5e\xad\x8b\x14\x54\x06\xa0\xfa\xda\xf0\x91\xe6\xda\xc6\x59\x52\x34\xcd\x9c\xd8\x52\x77\x37\xd7\xcc\x5a\xde\x10\x52\x8a\x20\xd2\xa9\xea\x2e\x5d\x14\x29\xf2\xcc\x92\xc4\x1a\x6c\xd8\x3d\xde\xed\x36\xe5\x52\xe6\xfa\x2b\x49\xf3\x88\xe6\x15\x44\xb1\x14\xc2\x01\x51\x96\x16\xa0\x8b\xd8\x33\xcf\x87\x34\x62\x20\xc8\xbf\x2e\x88\x01\xae\xfb\x95\xb0\xbd\x4d\xdd\xe7\xdf\x81\x52\xad\xf5\x9e\x50\xd3\xf7\x35\x35\x18\xd8\x71\x00\xbe\x8a\x63\xa2\x38\x5e\xb4\x9a\x62\x5b\x13\x5f\x71\xc4\x5e\x12\x41\xed\x4b\x4a\xa4\x9e\xb6\xd9\x2d\xcd\xb7\xae\x4e\xbb\x75\xd9\xa6\x39\x11\xdb\x92\x0b\xa6\xa9\xd1\xd3\x72\x21\x64\x41\x04\x2a\xa4\x61\x71\xf1\x18\x00\x6a\xdb\x13\x35\xad\xa9\x30\x5e\x8c\x78\xe5\xa4\x22\xa7\xda\x89\x2e\x51\x39\xa0\x6f\xa2\xdc\x9a\xb8\x32\xf3\xcd\x53\x04\xf4\x3b\x2c\x9f\x5a\x95\x5d\x5f\x53\xab\x5a\xa2\x8a\xd7\xe9\x72\x53\x13\x49\x7d\x78\xff\x96\x32\xaf\xbb\x6e\x37\xdf\xd5\x0d\xc8\xf8\xea\xea\x82\xa6\x47\xd3\xf9\xd8\x00\xd7\x0c\x53\xf5\xdb\x05\x7d\xed\xd7\x25\x31\x81\x2c\x18\x20\xa0\x62\xc3\xeb\x5f\x95\xd6\xd5\x0c\x63\xd5\x37\x9b\xc1\x30\x52\x95\x96\x72\xa0\x79\xdc\x84\xa7\xfc\x73\xe9\x5b\x89\xee\xb6\x24\x24\xec\x31\xa8\xd4\xd5\x02\xeb\x10\xd1\x56\xbd\xe3\x72\x03\xe2\x3a\xd7\x08\x4f\x51\x58\xbb\x5c\xba\xac\x60\x94\x0a\x11\x24\xe0\xc2\x5b\xea\xb0\xce\xe6\xcb\x33\x42\x03\xa6\x34\x62\xaf\x9b\x7a\x4b\xb1\x2f\xe9\xcf\x47\xf8\xe6\x9f\x71\x79\x80\xc9\xf2\x9c\xd8\x4c\x7b\x94\xbe\x7f\x79\x92\xfe\xe7\x3f\xfd\xf8\xe3\x2c\x7d\xd3\xf1\x84\x60\x1a\xf9\x1b\x8f\x2d\x05\x65\x29\x75\xa0\x34\x73\x3b\x1a\xfe\x07\x4c\xe0\x0f\xd2\x67\x48\xfd\xef\xc5\xe7\x8c\xc4\x80\x62\xb6\xac\xb7\x2f\x78\x72\x6f\xb3\x6e\x96\x70\x0a\x51\x8d\x92\xd3\x65\x51\xe5\x14\xd0\x05\x59\xd3\x02\xae\xa3\xe9\xc1\xf2\x2c\xc2\xc9\x7c\x59\x57\xd7\x65\xc3\x1d\xfa\xb5\xca\x16\x84\x13\x13\x5b\x88\x1d\x23\xc5\x56\x3d\x42\x1a\x4d\xe4\xf2\xfa\xce\x83\xa2\xab\xef\x38\x52\x07\x34\x61\x51\xae\xe0\xe5\x08\xe8\x74\x58\xbe\x44\x34\xc6\xed\x9c\xba\xd7\x18\xbe\x5b\x8f\xf0\xfa\xfa\x7a\x43\x8c\xcd\x98\x95\xd6\x70\x2e\xb1\xc2\xb7\x42\x10\x22\xc6\x1d\x04\xaf\xd3\xb2\x05\xe4\xc9\xe9\xbb\xb4\xb8\x25\x6a\x23\x72\xa0\x95\x32\xef\x97\xa0\x30\x86\x3d\x4a\x79\x99\x20\xfc\x12\x67\x58\x0a\x7b\x0b\xe6\x2a\x37\x8d\x19\xc2\x92\x80\x68\x8a\xe6\x52\xde\x5c\x10\xd4\x98\x08\x62\xd5\x5c\xb2\xec\x1a\xa6\x4d\x66\x18\xb5\x0e\xa3\xd4\x0e\xf3\xd2\x70\x57\x9b\xbb\x14\xf2\x02\xe8\x42\x24\x3a\x13\x3d\xdb\x59\xa2\x6b\x95\x09\xb0\xf3\xdb\x12\xc2\x9e\x1b\x2a\xa4\x9a\x34\xcb\xec\xe1\x37\x06\x60\x29\xb2\x9d\xcc\xeb\x1a\x76\xce\x15\xb7\x4e\xd0\xe3\xf6\xb5\x68\x02\x6a\x60\x69\x94\x88\xf1\xb6\x04\xa7\x51\x64\xa1\xad\x84\x31\x54\x4d\x55\xb5\x45\x81\x12\x28\xff\x53\x2a\x13\x79\x66\x2a\xfc\xa8\x3c\x62\xeb\x2e\xc9\x24\x69\x5e\xa7\xbc\x10\x80\x9d\x51\x6e\xeb\x6a\xa5\xdd\xd7\x3e\xa7\x4d\xb9\x5a\x13\x5f\xa9\xf7\x47\x82\xb4\xfd\xba\x2e\x98\x76\xde\x9c\x3e\xff\x41\xda\xb1\x62\xe6\xe6\x32\x31\x5b\xcc\xfa\xae\x66\x3a\xd5\x21\x94\x26\xb8\xe5\x05\x90\x23\x31\x4b\x80\x86\x82\xad\x89\x6e\xe3\xd5\x5a\xe7\x49\x98\xa6\x13\xc4\xc3\x48\xee\x81\x70\xac\x52\xcc\x7c\x55\x43\x3c\x33\xa9\x85\x59\x35\x49\xfa\x6d\x37\x5f\x95\xdd\xfc\x9a\x27\x2c\x97\xf9\x92\xf3\xf2\xca\x41\x29\xe9\x23\x4a\x7a\x94\xd2\xac\x27\x99\x33\xff\x29\x7d\x78\xab\xcb\xf5\x9f\x78\x26\xce\xb3\x5b\x82\xc5\x60\xa8\xd0\xd7\x14\x22\x2d\x98\x76\x91\xd7\x44\xe7\x8c\xf3\xb6\xdf\x81\xa3\xeb\x0a\x7d\x94\xee\x04\x30\xaf\xf7\xd5\xa6\xce\x72\xb0\x1c\x9a\x5d\x25\x74\xa3\x45\x59\x65\xb4\xba\x58\x29\x60\x65\x0f\x89\x1a\xde\x9d\x5f\x01\x70\x55\x2f\xfa\x72\x93\x1b\xc0\x8c\x7a\x78\x9b\x6d\xca\x9c\xe5\x2c\x1d\xf7\x50\xa6\xb1\xa8\x52\xda\xb2\xac\x1b\x5e\x0e\xd1\x1b\xcb\x78\x60\x1d\x6e\x78\x7d\x43\x34\xe5\x55\x58\xe4\x73\x4b\x26\xa3\x81\x06\x1e\x02\x28\x2f\xa8\xa0\x98\xb2\xad\x1e\x75\x68\xe9\xb2\xa7\xba\x68\xd0\x39\x9a\x32\xb6\xe9\x93\x17\xf4\x9b\xf0\xf2\x2c\x7c\x6f\x35\x46\x3c\x27\xa6\x92\xd8\xcb\x2c\x8d\x9a\x1a\x91\xb7\xa3\x2e\x23\xde\xa0\xaf\x61\x7b\x8d\x04\xda\x5e\xe8\x95\x15\xc1\x0d\x0d\x6b\xf1\x1d\x05\x1e\xd1\x04\x5e\x6d\x30\x08\x19\xa4\x17\x12\xe3\x6a\xc2\x1b\x13\xc8\x91\x4c\x97\x6b\xea\x1a\xf3\xce\x2e\xbb\xa1\xb6\x65\x0d\x09\x61\xc9\x47\x56\x96\x3f\x25\xbd\x08\x40\xf5\x26\x77\xc2\x26\x68\xba\x6e\x86\xca\x99\x07\x72\xf4\xda\x92\x14\xb9\x5c\xcf\x9d\xaa\xcd\x48\xe9\x8a\xcf\x58\xf3\x90\xe4\x35\x6f\x26\x76\x4e\x4a\xb6\x77\x18\x2e\xee\xc4\xd9\x9d\x1f\x2d\x12\x7f\x68\x8a\x90\x88\xbe\xa8\x19\x6b\xb7\x85\x83\x3a\x09\x63\xe3\x0c\x54\x16\x09\x6a\x5a\x54\xac\x43\x51\x92\x28\x7a\x9a\x2a\xca\x1e\xa9\x22\x1f\xd5\x04\xf0\x29\xb1\x0a\xa2\x22\x93\x8f\xc4\x0c\x48\x2f\xf1\xba\xf1\xdc\x06\xc7\xe9\xc8\xac\xd2\x29\x3f\xf0\xeb\xe0\xba\xd8\xf1\x92\xb9\x6d\x31\xaa\x1b\x82\xcc\xef\x54\xf6\x72\xe3\xfb\xb3\x70\x5a\x1a\x70\xe2\x4f\xdf\x99\x71\xe1\x1b\x8b\xf8\xa5\xa4\x91\x44\xfe\x78\xe5\x10\x85\x9d\x64\x64\x58\x29\x9a\xe6\xee\x28\x8d\xd6\xa0\x35\xe9\xe6\x8b\x82\x16\x38\xcd\x96\xcf\x4c\x3b\xe0\x51\xcb\x96\x42\xf2\x30\x34\x80\x48\x25\x67\xdd\x0c\x97\x34\x6e\xa1\x30\x28\xad\xc5\x2d\xf8\x58\xce\xc3\x55\x7f\xa2\x4e\x42\xd8\xb6\x60\x99\x6f\xbe\x15\xdd\x5e\xbe\xd2\xb3\x22\x21\xc1\x64\x45\xf3\xd1\xe8\xed\x39\xab\x64\x2b\x48\xa8\x4a\x6e\x0c\x50\x74\x21\x07\x55\x08\x8b\xf9\xd9\x0c\x2a\x34\xb1\xf7\xd0\x57\x69\x6a\x8e\xd0\x4f\x6b\x0d\x25\xcf\x8c\x23\xcb\x82\x0b\xf9\xa4\xa5\xc9\xee\x91\x78\xcc\xc6\x90\x34\x84\x52\x39\xd1\x77\x8b\x33\xf0\xa4\x7f\xb6\x78\xf1\xb0\x7d\xf6\x74\xf1\xc2\xb1\xc6\xe5\xba\x58\xde\x88\x2e\x51\x56\x8b\xfa\x33\x14\x2e\x1a\x78\xc6\x71\xc5\x53\xe4\x61\x9e\xae\x29\x15\x32\x39\x4d\x65\xca\x46\x88\xe7\xd4\x68\xd0\xa8\x31\x3c\xe3\x67\x66\x9a\x72\x8b\x83\x11\x12\xe5\x46\x25\xd2\xb2\x84\x86\x91\xe7\x0e\x74\x7a\x4f\xb7\xc7\x1c\xcb\x94\x0b\x36\xef\x49\x17\xfd\xdd\x94\xdb\xb2\x1b\x91\x0e\xf3\x91\x4c\x49\x50\xf5\x7c\xc3\x25\xca\x02\x36\xd0\x16\xe2\xc6\x54\x0c\xad\x9b\x46\x4e\xfb\x8c\xd4\x9b\x3f\xa5\x44\x42\x3d\xad\x42\xdc\x27\x6a\x26\xb1\xe3\x8c\x17\x5e\x52\x10\xb2\x76\xde\x57\x8a\xd6\x22\x37\x62\x7a\x5d\x62\x91\xe0\x7a\x8d\xe4\x03\x28\xc3\xbc\xca\xb9\xe9\x63\x87\xf1\xef\x49\x28\xbe\x76\xd9\x98\x73\x73\x83\x4a\x96\xc9\xb2\xc9\xc1\x23\xce\x56\x15\xa2\x5e\x01\x03\x0c\xc7\x03\x4d\xca\x81\x1f\x3d\xd2\x30\x6e\x28\x06\x03\xb2\xe8\xbb\xae\x66\x99\x7b\xc3\x54\x23\x79\xac\xd5\x27\x00\x84\x1a\xe1\xcb\xc3\x80\x84\x78\x92\xb1\x29\x4c\x06\x9e\x7b\x23\xa1\x6a\x2b\x83\xde\xe9\x52\xe7\xc0\x72\x51\xd7\xb3\xea\xce\x48\x99\x08\x82\x5b\xc1\x15\x76\xd3\x6d\x79\xdc\x14\xdf\xfb\xd6\xb8\x39\x83\x1c\xd6\x22\xc9\x1e\xcc\xa7\xf7\x48\x15\xf3\x90\xcd\x3a\x5b\xb9\xd4\xc8\xe2\xe9\xa3\x89\xd1\x8b\x74\x9e\x19\xc4\x60\x49\x6c\xcc\x81\x68\xea\x05\x72\xcf\x06\x75\x79\x75\x67\x8c\xc1\x2e\x6e\xb2\x5f\x80\xba\xba\x9e\xb7\x6b\x51\x2d\xad\x79\xe9\xa6\xa8\x56\x91\x99\x00\x26\x62\x10\xdd\x7f\xe1\x65\x8e\x04\xf8\x6c\xf3\x29\xb9\x83\x3d\xea\xaf\xc4\xe1\x2b\x58\xfa\xea\x84\x12\x44\x19\x39\x43\x80\x40\x59\x33\xfa\x94\xf0\x12\xf8\x6e\x20\xd6\xf1\x12\xa1\x71\x81\x7c\x81\xa4\x5f\x23\x69\xcd\x86\x30\xb9\x98\x10\x01\xdf\x17\xde\xa2\x89\x90\xeb\x22\x29\xd1\x57\xa6\xea\x90\x3e\x7d\x53\x68\xe1\xaf\x49\x6d\x6e\x3f\x40\xed\x15\x1d\x96\x15\xde\x8b\xec\x8e\x85\x2e\x89\xd6\x0f\x24\x5c\x15\xd9\x56\x5b\xc9\x41\x29\xe2\x98\x96\x33\x8d\xe4\x20\xad\x72\x81\x55\x23\x81\xf8\x61\x5d\x10\x59\x44\x97\x7d\x27\xfe\x17\x6a\x2e\xfd\x7d\x64\x8a\xf9\x3d\xc9\x36\xbb\x75\x86\xf5\x3f\x00\x83\xd5\x81\x80\x30\xf0\x29\x40\x40\x0b\xfd\xb6\x68\xca\x25\x07\x39\xc3\xe3\x27\xf3\xef\x61\x70\xa2\x89\x42\x82\x60\x5c\x58\x4e\x93\xe4\x1f\x2a\x90\xc3\x2c\x24\x86\xe5\xb6\xe5\xdf\xad\x17\x51\x71\x1c\x4f\x3c\x87\x20\x20\x92\x79\x28\x07\x84\x85\x91\xc5\xb3\x2e\x65\xbe\xd0\xb1\x08\x18\x15\xbd\xcd\x3e\x7f\x29\xe3\xb6\x9e\xc8\x27\xac\xc0\x67\xb2\x09\xaf\x5d\x8c\xd9\x01\xc1\xb3\x7d\xe3\x20\x34\x0d\x3d\x83\x54\x37\xb4\xaa\x55\x0e\xec\x83\x7c\xa7\xf8\xfe\xc9\x8c\xe7\xb4\x84\xa8\x00\x9d\x3a\x33\x3a\x2d\xce\x39\xf3\x4d\x08\xc2\x33\x3f\xdd\x42\xe1\xd8\x91\x33\x8b\x91\xa6\xf2\x3b\xc6\x41\x12\xa5\xe8\x09\x44\x52\x33\x6f\xf1\x9f\xf3\x1a\x39\x67\xa1\xb3\x0a\x45\x4b\xb7\x7a\xda\xfa\x02\x08\xb1\xfb\xce\xc7\xf9\x06\x13\xee\x60\x76\x12\x05\x26\x72\x9f\x8f\x0d\x79\x07\xf2\x77\x34\x65\x26\x0a\x70\x33\xe9\x60\x46\x19\x4c\x64\xa2\x9e\xe7\x23\x5e\x30\xce\xc8\x60\xa4\xf6\x6c\x36\xc5\x8a\x4d\x4d\x56\x71\x54\x9b\x92\x10\x2d\x06\x02\x16\x12\x90\xc7\xb0\x1b\xac\x70\x5c\x43\x21\xde\x8d\x51\xac\x3e\x51\xab\x49\x1c\xa7\x20\xe7\x0c\x94\x28\x6d\x86\xae\xe4\x5b\xd6\x17\xda\x9e\x59\x33\xeb\x16\x22\x9d\xc4\xa3\xc1\x0b\x2f\x8a\x2a\x50\xc5\xe1\xe2\x89\x16\x59\xe1\xfa\x52\xf9\x00\xfb\xc6\xa2\x43\x75\x7b\x5c\xb0\x16\xee\x80\x0e\x15\xeb\x14\xc2\xe2\x73\x09\xb3\xdd\xab\x92\xcd\x41\x50\x09\x9d\x26\x8c\xb4\x59\xb2\x21\x66\xc0\xaa\x87\xf4\x4a\xe4\xd8\xfa\x96\x35\x37\xae\x8f\x53\x25\x9f\x98\xf1\xb4\x53\x3c\xce\xaa\x5c\x92\x32\x57\xef\x8b\xfc\x88\x96\x78\xce\x41\xed\x04\xdb\xc8\x36\xfb\xec\xae\x85\x8d\xc4\x38\x0e\x9b\x2c\x25\x3b\xb3\x13\x12\x00\x56\x68\x55\x68\x9f\xa6\x19\x67\x98\x68\x89\x77\xf2\xe2\xe1\x96\xe9\x3d\xd4\x43\x70\x0b\xb5\xba\x90\xd6\xcd\xcb\x1e\x96\x58\x5d\x6b\x58\xb5\x65\x45\x90\x65\x7c\x49\x0e\x0a\xc2\x96\x87\x72\xfe\x89\xbc\x47\x2c\x1e\x51\x35\x2c\xac\x10\x3f\x16\x5c\x93\xfc\x47\x98\x45\x93\x02\x5b\x41\x4f\xe5\x3f\x11\xb9\xb8\x24\x1c\xb2\x9e\xe5\xd5\x67\x5e\x9b\x68\x54\xcc\xb0\x2b\xf1\x50\x7e\x93\xb6\xa3\x29\xc0\x98\xb6\x6d\xba\xbf\x8a\x7c\xa5\x2a\x33\xa7\x62\x8a\x01\x4d\xed\xba\xdc\xa5\x35\x8c\x85\x21\x0a\x3d\xd9\x06\x22\x26\x61\x23\x2f\x20\x77\xb3\xd5\xb4\xc9\xaa\xf6\xba\x80\xf9\x74\x9b\x5e\xf3\x4e\xd0\x4c\xab\x66\x89\x55\xb6\xeb\x0e\xd4\x2c\x3a\x0c\xaa\x0e\x57\x0b\x8c\x5d\x30\x50\x71\xd5\x04\x73\x8b\x9a\xb5\x0d\xc0\xaa\x2f\xa9\xb5\x36\x30\x99\x8d\x50\x00\xa9\x31\xda\xa4\xb0\xd6\xdc\x16\x21\x22\xae\xff\xd1\x9e\x07\x58\x57\x0b\xb1\x98\xd5\xe3\x61\x92\x4a\x61\xad\xc0\x1e\xd3\xe2\x2e\xee\x3d\x67\x75\x14\xc0\x3b\x1e\xb7\x85\xd6\xc2\x13\x83\xe7\xca\xa0\x40\x58\x29\xbc\xae\x90\x74\x19\x54\xbe\x05\x35\x71\xb9\x8e\x66\xe7\x15\x52\x52\x49\x19\x4d\xd0\xe4\x23\x57\x4d\x6a\xfc\x3a\xab\x56\x05\x9b\xba\xa8\x24\x5e\xf2\xf0\xad\x12\xba\x44\x52\x83\x57\x8d\x84\xd9\x40\x6e\x59\x96\x34\x21\xeb\xed\xbd\x39\xcb\xca\x0c\x36\x6d\xf2\xb7\x9a\x64\x08\x58\x7a\xff\x4c\x21\x96\x7e\xab\x24\xda\xdb\x19\xd8\x19\xa0\x1e\x94\xdd\x1d\x36\x9d\x16\x24\x03\x8b\x92\x46\x31\xa4\xe6\x82\x3b\xc0\x72\xf1\xd2\xc2\x34\x1e\x19\x33\x3d\x9e\xda\x12\x52\x38\x31\x23\xbd\xb4\x70\xc2\x5a\xf2\x76\x86\xc5\x81\x85\x69\x18\xa7\x83\x25\xe1\xd1\xc3\xf6\x11\x0f\x98\xa5\xcd\x02\xf8\x5d\xd6\x11\x5b\xac\x44\x45\x11\x0e\x15\x66\xd5\x64\x57\x04\xb8\x8a\x80\xcd\xb0\xa3\x2b\xa8\xf8\x94\xf8\x8d\x66\xdb\x63\x9e\x32\x88\x2a\x8b\x69\x55\xe6\xfd\x67\x0a\xaa\x45\x24\x75\x6e\x16\xaa\xaa\x62\x1b\xcf\x36\x7d\xda\x78\x0f\xa8\x4d\xd4\x04\x14\xdb\x7f\x94\xbc\x9f\xa7\xa7\x12\x30\xa5\xb7\x2f\xd1\xa7\x32\x4f\x92\x1d\xf0\x1e\x6c\x8b\xeb\x40\xb8\x46\xab\xfb\x83\xb7\x41\x37\xc3\x95\x9d\xb0\x20\xa5\x80\x70\x6d\x4b\x00\x52\x00\xef\xa1\x06\x0a\x1b\x1b\x57\xa1\xc9\x55\xc1\x76\x07\xe9\xbb\x9c\x8f\xc1\xf6\xc5\x22\x65\x73\x27\x11\x0e\xe9\x45\xda\xd1\x6d\x46\x2a\xd5\x6d\x99\x39\xcb\x0c\x8d\x16\x6f\xbc\xeb\x2a\xfa\x92\x37\xdd\xb1\x93\x39\xf6\x10\xe1\xfd\x08\xdd\x7a\x78\xab\xc1\xa4\xdf\xe5\x6c\xd3\xf2\x1d\xfe\x80\x08\xd7\xe1\x38\x3d\xb0\x36\xa2\xeb\x96\xcd\x49\x33\x02\x9e\xa7\x0a\xc7\x2d\xbb\x9b\xd9\xf4\x99\xf0\xfa\xd0\x29\x94\x0f\x41\x42\x23\xbf\x24\xa9\xd2\x6a\x00\x33\xe1\x3d\x40\xaf\xec\xeb\x01\x21\xb4\x56\xa6\xeb\x7a\x9f\x6e\xca\xea\xa6\x55\xfc\x3a\x7b\x88\xe9\xc9\xe9\x29\x22\x08\x58\x2c\x35\x2c\x56\x95\x55\x5f\xfc\x9c\x58\x48\x0c\xf1\x08\x8e\xfd\x14\x0a\x59\x15\x87\xcc\x40\xf7\x4f\x4e\x10\x9d\x1e\x23\x7a\x12\xd6\xeb\xb9\x9a\x05\x3b\xba\xcc\x7e\x75\x63\xe7\xba\x60\x01\x1b\xec\xf0\x95\x72\x21\xc2\x4f\x5d\xb7\x6a\x7b\xf4\xec\x87\xe3\x60\xa8\x50\x28\x1d\x2d\x07\xa1\x83\x29\x8d\xb1\x7d\x0a\x82\x62\xf5\x90\x84\x25\x6d\x0f\xe6\xf6\xbc\xdc\x8a\x2b\xd0\x07\x4d\x95\x2d\x7b\xa7\x57\x20\x79\x46\x9a\xf2\xa0\x33\xe1\x8e\xc1\x3b\xc2\xa5\x74\xdf\xf8\xa8\x25\x1e\x99\xb8\x20\x08\xc1\x62\x1f\x35\x76\x48\x59\x5a\x80\x19\xbf\xbf\x40\x60\x46\x3e\xe1\x46\x8a\xf0\x66\xc7\x5a\xea\x4d\x24\x14\x9e\xa8\x19\xdf\xa5\x33\x66\x83\xf4\x77\xd8\xf2\x1a\x5a\x1b\x22\x4d\x49\x4b\x38\x28\x4d\x0f\xda\x34\x9a\x3b\x96\x6f\x4f\x7d\x0b\xbb\x63\x04\x3f\x13\xea\xcf\x60\x19\x96\x5d\xb1\xbe\x15\x79\x92\xab\xc2\x96\x9a\x14\x41\x08\x80\xc2\xd1\x7a\x3d\xe3\x58\xb8\x11\x1b\xc4\xc5\xb7\xc8\x01\xa8\x7b\x51\xac\x4f\x16\xb6\x87\x1d\x32\xb6\x5d\x43\x83\x4e\x0b\xef\xc0\x12\x35\x62\x69\x11\xfb\x02\xf7\xaa\xb1\x21\xeb\xb9\x16\x69\x90\x5a\x16\xf3\x7f\x84\x2c\xc6\x5b\x2f\x0b\xb6\x6e\x59\xa5\xca\xac\x5d\xaa\xb0\xec\x84\xda\x80\x39\x50\x38\xf3\x44\x0e\x4c\xc4\x4d\x04\x58\x08\x62\x96\x50\x8b\x9e\x47\x76\x5e\x58\x6c\xff\xbf\xd9\x76\xa3\x0a\x9d\x6d\xd7\x37\x75\x40\x36\xdc\xc6\xc1\x8a\x33\x22\x20\x4a\xc0\xfa\xab\x43\x1f\xac\xaa\x3a\xf8\x6e\x71\xe5\x6a\x44\xa6\x67\x34\x51\x14\x96\x60\x25\x02\x70\x58\x16\xf0\xe0\x74\x01\xc7\x1d\x11\xf0\xdb\x91\x19\x32\xe6\xaf\xc7\xd0\x60\x08\x2b\x02\xcb\xf2\x00\x2f\x68\x22\xfd\xa9\x46\xb4\x65\x44\xc8\xb6\xab\xf3\x43\xb9\x93\x1d\x47\x2f\x12\x1d\xa9\xda\xb0\x2e\x57\x6b\xea\x57\xb9\xe5\x2d\x47\x70\x6d\xdb\xd7\xf2\x5a\x1d\x7f\xd1\xc4\xab\x57\x15\xdb\x70\xb8\x86\x19\x3a\xe3\xb8\xed\xb3\xb6\x6b\xea\x6a\xf5\xe2\xb4\x66\x75\x8b\x2d\x21\xbc\x54\xfc\xfc\xec\xa9\xc6\x13\xcb\xe0\x31\x64\x77\xcc\x57\x65\xf7\xba\x5f\x3c\x6a\xd3\x15\xc9\x06\x58\x40\x9e\x65\xe9\xba\x29\xae\x9f\x3f\x78\xd8\x3e\x78\xa1\xfb\xcc\xe2\x15\xb4\xaf\x1c\x5a\x9e\x3d\xcd\x5e\xb0\xf4\xdc\xd6\x1b\x12\x6a\xe3\x2c\xf5\x76\x2b\xe3\x4b\xec\x6f\x2b\x90\x68\x3f\xb6\xa6\x8b\x0a\x98\x2b\x1a\xc5\x0f\x15\x38\x73\xb4\xee\xc7\x47\x87\xcd\xc4\xa4\xc8\xbe\xa0\x82\x0a\x03\x63\xc7\xad\xea\x02\xa6\xc9\xb6\x85\xd4\x65\xc3\x02\x3b\xce\x86\x81\x64\x73\x8d\x37\x6d\x98\x71\x02\x12\x34\xca\xb0\xfc\x94\x95\x5a\x22\x92\x06\xc7\x59\x9d\xb2\x70\x52\xc8\x48\x2b\xa0\x5f\xe6\xa9\x66\xca\x84\xc0\xe8\x8d\x20\x4c\xb0\x11\x0d\x7f\x67\x0c\x40\x7a\x1f\x4c\x7f\xc8\x2f\xc7\xc8\x40\xf2\x0b\xb4\x6e\xed\xcb\x5b\xd5\xb1\x91\x40\x0b\x55\x20\x4f\xbf\xab\x75\x4f\x22\xb5\x48\xb4\x9a\x04\xe8\xae\x88\xc8\x9d\xab\xa3\x3f\x94\x42\xb4\x09\xb5\xfd\xbf\xa6\x39\xa9\xe0\x7e\x3a\x99\x40\xaa\x93\xe9\xd8\xcf\x85\xa1\x88\xaa\xbb\x79\x07\xe7\x53\x30\x8d\xb4\x54\xe7\xa6\x21\xe6\x83\x02\x82\xe0\xa2\xac\x72\x99\x36\x4a\xf5\xea\xf7\xe0\xc8\x9d\x16\xd3\x8a\x81\x60\xe3\xe3\x80\x7e\x07\xc8\xbf\x8c\xca\x0f\x68\x83\xb8\x55\x5f\x05\xdc\x42\xa6\xe3\xbc\xab\xc5\xd6\xa5\x9d\xbc\x20\x7d\x03\x3e\x4f\xc7\x52\xe0\x15\x27\xb7\xea\x77\xa7\x9b\xa2\x96\xe5\x95\x46\x62\xc0\x01\x98\x20\xa9\x75\x88\xc0\x97\x57\x3d\xad\x14\xdd\xaf\x56\x6f\x26\x8c\x01\x4d\x3d\xe3\x0f\x6b\xd9\xbf\x4e\x8f\x2f\xde\xcc\x12\x57\x9f\x95\xf9\x6b\x46\x32\x93\xb4\x60\xef\xb4\x5e\x26\xa5\x21\x7f\x71\xbb\x25\x92\xdd\x8c\x6c\xc8\x09\x72\x76\x7d\x1a\xf5\x47\xfa\x12\xa7\x0b\x8a\x8b\x36\xb0\x04\x48\x6d\x68\xc9\x90\x33\xbb\x9e\x7e\x47\x88\x75\xf6\x28\x5e\x11\x76\x77\xcc\xeb\x02\x4f\x95\x4c\x10\xb4\x07\xb7\x1a\xb8\xc8\x10\x24\xb4\xe1\x94\xe5\xdb\xc6\xcd\x15\x6b\xb0\xce\x96\x30\x36\xa0\x04\x90\xe1\xce\xc6\x33\x6a\xaf\x5f\xe8\xc2\x46\x8b\x92\x3e\x98\x9f\xa9\xb0\x51\xd9\x7f\xe5\x76\x89\x64\xa6\x38\x0e\x55\x33\x2a\x73\x5f\x6c\xd8\x93\x4e\x1b\xe4\x37\x21\x55\x11\x8b\xb6\x20\x15\xc8\x6d\x3e\xb2\xe7\xa2\x93\x24\x64\x6c\x43\xeb\x88\x15\x46\x10\x44\xc0\xd8\x75\x14\x0d\xca\xd8\xfd\xc9\xf1\xbb\x77\xe7\x57\x9e\xcb\x33\x65\x55\x39\xad\x45\xdf\x39\xff\x9b\x51\xbb\xcc\x0b\x07\xed\x83\x43\x56\x04\xe1\xfd\x80\x34\xc7\x21\xb8\x70\xe2\x5b\xe9\x14\x5c\xd5\x98\xcd\x35\xb7\x45\x72\xe4\x71\xfb\xf3\x43\x0a\x4a\xf2\x91\x97\xc7\x4f\x89\xd9\x18\xcf\xf9\x3f\x09\xcd\xb4\x81\x69\x1c\xd4\xec\x2d\xe8\xde\xdd\x94\x1a\x50\xe7\x23\xb3\x2d\xd8\x5e\x9f\x41\x02\x25\xdc\xd7\x60\xa4\xd7\x29\x76\xd7\x8e\xd8\x0a\x55\x37\xa0\x41\x46\x6e\x5f\x95\x7f\xf4\x58\xdf\x59\xfe\x24\x79\x85\xdd\xba\x16\xe5\x46\xb8\xed\x6f\xee\x43\xe2\x39\x34\xf0\xc5\x0c\x2a\xa7\xaf\x67\xed\x8e\x3d\xd5\x88\xdb\xb6\xcf\x1f\xf4\x65\xca\x46\x0d\xf6\x0c\x79\xf0\x82\xa4\x45\xde\xa5\xa6\xe1\x23\x88\x17\x6c\x98\xb8\x31\x7b\xd7\xd0\xbf\x1e\x69\xe6\x48\xc9\x69\xf0\xa6\x44\xec\x44\x2b\x54\xb6\x16\x83\x45\x27\x96\xae\x34\xe8\x05\x73\x67\xa6\xee\x9b\x22\xc4\x94\xee\x48\xe8\xb8\x9e\xd2\x5f\x53\xc2\x1b\x54\xe2\xf9\x44\x45\x1a\x9c\xa6\x70\x91\xbe\xde\x4b\x1a\xef\x25\x2b\x54\xb3\x55\xd9\x91\x4c\xcf\x67\x28\xa0\x69\xd3\x84\x21\xa6\x88\xc3\x18\x12\xb2\x98\x89\xbc\x06\x8b\x8c\x65\x55\x76\x73\x5e\xa7\xb7\xe2\xc1\x4e\xc5\x66\x1b\x91\x81\x62\x44\xcb\x86\x71\xfa\xfe\xd7\xe3\xd3\xb3\x5f\x67\xdb\xdc\x1c\x5a\x14\x9f\xea\xc9\x12\x60\x34\x2f\xae\xb3\x7e\x63\xa6\x36\x74\x18\x11\xe9\x2f\x88\xd0\x63\x13\xa4\x15\x11\xfe\x6e\x65\x49\x94\x83\x14\x6f\x2c\xe6\x31\xcb\xbc\xdf\x1f\x30\x40\x0d\x77\x71\xbe\xdd\x0e\x35\x2c\xe1\x7e\x73\x14\x6f\xf1\xcf\xd9\xb8\x98\xaa\x1b\x48\xb4\xf9\x99\xe8\xb1\x0e\x73\xc2\x77\xe7\x3a\xc4\x0b\x3f\x4c\x3d\x4c\xcb\xa6\x1b\x65\x31\x49\x93\x0e\x5c\x6c\x52\xfc\x3e\x59\x6c\xfa\x42\x83\x4d\x96\x97\x3d\x09\x87\x82\x47\xa3\x71\xab\x49\x87\xe5\x4c\x4f\x9b\x04\xe3\xa2\x10\x33\x78\x2f\xcf\x4d\x0d\xe0\x7d\x73\x16\xb1\x55\xf5\x73\x50\xb6\x11\x00\x77\x54\x73\x89\x7b\x23\x91\xe2\xa3\x0a\x87\x38\xc8\xda\xb1\xcd\xd4\xb6\xeb\xb3\xd0\xdf\x3c\x91\x49\x61\x33\x4d\xa7\xc8\xb5\x9b\x6b\xf0\x5c\x66\xb7\xd4\x78\x92\xe1\x60\x4c\x80\xa9\xd0\x99\x84\xb9\x59\xce\xec\x78\x77\x37\x67\xcb\x0d\x38\xf0\xee\x2e\x81\xcb\x05\xad\x5f\x73\x2c\x8f\x12\x09\x7e\xb8\x29\x77\x72\x76\x8b\x12\xca\x42\xfc\x26\x11\x38\xff\xe7\x44\x90\xe2\x46\x08\x03\x8d\x03\x5d\x9c\x40\x7c\xf7\x67\xb0\xa7\x8e\xc5\x73\xb1\x24\x3f\x7f\x30\x5f\xd0\x1c\xbd\x79\x10\x88\xeb\x7c\xf4\x8b\x65\xf4\xef\x48\x90\xda\xeb\x7e\xe7\x07\x09\x25\xf6\xfd\x17\x7c\xf5\xec\x87\x27\x9b\xab\x1c\x48\xf4\x8b\x0d\xb2\x89\x1e\x06\x62\x66\x94\xb0\x40\xaa\x6c\x83\x84\xd1\x90\x73\xfc\xd1\x73\x2f\x45\xd3\x78\x9e\xfe\x0b\x7f\xa5\xaf\xf8\x4b\xbb\xc2\xd3\xd8\xcd\x51\x8c\xf0\x60\x62\x87\x8e\x69\xe0\x38\xea\xdd\xe9\xe7\xb4\x78\xb3\x04\xd8\x57\x37\x16\x03\x64\x17\xe8\x64\xd7\xf3\x96\x3d\x8f\xbb\xd5\x76\x41\x31\xf0\x27\xe7\x48\x5e\xb2\x82\x12\x9c\xb5\x3e\x2a\x23\x71\xac\x42\x59\x44\xd7\x14\x10\xaf\xe8\x4f\xd3\x70\x74\xac\xcb\x60\x9f\x15\x20\x22\xb9\xff\x94\x5e\x51\x8c\x42\x14\x61\x52\xa2\xa0\x48\x1f\x1e\x22\xc2\x34\x6a\xc1\x71\x39\x40\x24\xbf\x29\xda\x8e\x50\x04\x5d\xd7\x7d\x24\xdc\xc6\xb2\x13\xcf\x41\x84\x12\xf5\x6b\x15\x1b\xbc\x04\x13\x58\x38\x9b\x8c\xbd\xc4\xde\x67\x7b\xf9\x24\x4c\xeb\xa9\xa3\xd7\x12\x92\x68\xf8\x3d\x0b\x28\xbc\xa3\x1d\x3c\x96\x71\xa5\xe1\x0b\x0b\x27\xd6\x80\xd9\xb8\x21\x96\x32\x38\xf4\x94\x2e\x07\xe9\xd7\x22\xde\xbf\x64\xe1\xde\xe2\x32\xf0\xaf\xd4\xbc\x38\x5c\xfc\x96\xa6\xbf\x18\xf3\xce\x24\xe4\x52\x72\x71\x30\x3a\xe5\xe3\x7f\x16\x67\x2e\x9c\xe7\xfc\xef\x62\x89\x60\x74\xfe\xd0\x7f\xa2\x98\x9f\xc9\xb9\x40\x96\xeb\xe5\x94\x95\x8f\x9e\x0d\xc7\x22\x48\xaa\x78\x11\x5c\xc0\x88\x4a\xb4\x8f\xf4\x30\x79\x49\xf8\x6f\xe6\x2e\xff\x09\x7f\x0a\x87\x8c\x4a\x71\x83\x1b\x8e\xed\xa0\x9a\x10\x86\xaa\x9a\x04\x93\xea\x42\x48\xa9\x71\x3b\x05\x4c\x92\x67\x15\xc1\x9e\x53\x44\x48\x5a\x51\xc1\x2c\x33\x0d\x4a\x86\x18\x35\x0d\x4f\x4b\x03\x3b\xcb\x43\x90\xd4\xe0\xb8\x9d\x01\x90\x34\x33\x9b\x00\x65\x65\xd7\xc3\x51\xc7\x87\x40\x6a\xb1\x70\x0c\x61\x38\x7a\x7e\x7c\x68\x68\x87\x03\x24\x89\xf3\xdd\x26\x5b\x16\xce\xe1\x17\x40\x58\x75\xf9\x7c\x5e\x54\x8d\x2b\x4c\x2b\x8b\xca\x03\x42\xbb\x6c\x41\xc9\x0f\x73\x60\xd3\x65\x66\x5c\xf9\x24\x41\x9d\x25\xd2\xe4\x62\x2f\x53\x2b\x39\x2a\x32\x4c\x23\x01\x81\x17\x1f\x31\xd1\xbe\x63\x6d\x89\xc3\x7c\x18\x63\x22\xc7\xbd\x14\x35\x84\x39\x58\xf2\x88\x6e\x34\xe7\x3d\xc3\xeb\x21\xf8\xe0\xdd\xe1\xa2\x0f\xe4\x53\x09\x05\x72\xc9\x38\x65\xc6\x6e\xe1\x8e\x53\x1e\x63\x33\x16\xdc\x72\x0a\xb4\xd5\x73\xba\xb4\xc8\xf2\x8a\xec\x9a\x9a\xab\xbe\x3c\x95\x49\x46\x39\x9f\x2f\xee\x34\x8f\x8c\x73\xce\x5b\xbd\x07\xb2\x6c\x79\x3f\x17\xcb\xaf\x66\x39\x73\x11\x61\x16\x26\x0e\x14\x4c\x10\x12\x4e\x1f\x7e\xfc\xe1\x53\xcb\x25\x3b\x73\xda\xd3\x87\x1f\x7f\xfc\x44\x6b\x34\xfe\x78\x91\x1e\xe5\x9e\x5f\xb3\x6e\x3d\x2e\x02\x39\x0c\x7a\xd7\x14\xb7\x65\xdd\xe3\xa4\xaa\x06\x3d\xcd\xc3\x5f\xfd\x1d\xfb\xa6\x47\x64\xeb\x0e\x80\x0d\xa8\x36\x77\x49\x31\xd5\x56\xfd\x16\x8b\x31\x75\xb6\x15\xaa\xb6\x2f\x97\x5d\xbe\x59\x30\xe5\x2a\x7f\x77\xdf\xbc\x07\x4d\x5d\x2e\x73\x12\x48\xb8\xfd\x26\x9d\xfc\x93\x7c\xf9\xde\xff\xee\x2a\xab\x03\x2b\xdc\x95\x1c\x63\x63\x61\xce\xd9\x03\xef\x8a\x6e\x16\x4f\x36\x3b\x32\x8b\x56\xc7\x49\xda\x90\x18\x44\x5d\xbd\x90\x62\xe0\x4d\x01\xdc\x18\xdc\x7b\x7c\x0e\x12\x87\x85\x09\xd0\x54\x69\xca\x41\x34\x56\xd7\xc9\x30\x5d\xd0\xad\xc8\x12\xee\xfa\xcd\x98\x92\x56\xb9\x62\xec\xf3\xdb\x0b\xda\xd5\x7a\x2e\xff\x02\x01\x8b\x96\x83\x44\xea\x3c\xe9\x28\x28\x52\xd9\xdd\x98\x75\x73\x77\x52\x5e\x05\x66\xb8\xfd\xb4\xde\x97\x7b\x80\x21\x73\x67\x27\xe1\x92\x64\x6d\xb0\x17\x73\x61\xe7\xcd\x18\x8e\x8a\x40\xcb\x6a\x6e\x6e\x9b\x2a\x7f\x52\x99\xec\x9a\x20\x62\x24\x11\x07\x1f\xba\x11\xaf\xa1\xc3\x27\x0c\x22\x63\xf6\xe5\xa8\x71\xe1\x34\x14\x3e\x6c\x13\xc2\xaf\x13\x71\xfa\xb2\xde\xd4\x7e\x1d\xc1\xd7\x10\x40\x6c\x31\x0f\xf3\x81\x2c\x20\xc9\x9e\xe8\x74\x66\x81\xa2\x62\x4e\x27\x90\x45\x5e\x72\x39\xbf\xd2\x5f\x9c\x30\xf0\x07\x88\x13\x9d\x2b\xb0\x34\x10\x0e\xc1\x76\x22\x71\x5c\x8a\xee\xaa\x03\xd4\x19\x83\x26\xc1\xbc\xed\x40\x77\x80\x68\x0c\x64\x55\x83\xee\xa8\x0e\x31\x2c\x23\x96\x95\x1c\xcb\xe4\xb2\x79\x9b\x04\xa9\xe2\x30\xa0\x25\x1f\xde\xc8\x9e\xae\xda\xdb\x00\xa5\xa5\xfe\x28\x86\x1a\xa1\x62\x0b\x3c\x4e\xf4\x83\x45\xed\x32\xa2\x1e\xd9\x96\x54\xd9\x95\x63\x74\x8f\xb5\x9d\x86\xb3\x8e\x1a\x70\xb7\xaf\x53\x27\xdf\xe3\x9a\x08\x66\xd2\x59\xca\x99\xed\x38\x01\x28\x58\xf3\xcf\xb4\x58\x62\x6b\xa4\xce\xf6\x1b\x70\x50\xd8\xf1\xe5\xe3\xda\xcc\xd6\x4e\xb6\x0a\xa4\x53\xbf\x9a\x07\xc9\x13\xa2\x47\x90\x3a\x2d\x7e\x0c\x01\x72\x2f\xd4\x3d\x6c\xa3\xba\x49\xbd\xeb\x69\x8a\xe9\xc5\x10\x75\x4a\x5f\x29\xbe\x86\x4d\xb0\x05\x64\x58\xb4\xe3\xc3\x71\x8f\x68\xd4\x16\x6b\x9a\x94\xe2\x19\x2f\x12\x55\xa0\xe7\xd0\xb0\xab\xcf\x97\x1a\x44\x75\xe8\xa3\xe2\x07\xd2\xdf\x24\x76\x6c\xc2\xc2\xe9\x3c\x4c\x98\x30\x76\x85\xa9\xbe\xd3\xa7\xd4\x63\xd6\x2c\xd2\xc7\x76\x64\xfa\xfb\xb8\x93\x85\xb8\x2d\xf0\x7f\x98\xe0\xce\xfa\x69\x51\x73\xa1\x7b\x2d\x11\x85\x6b\x8c\x3f\x03\x77\xe4\x5c\xb6\x1f\xdd\x51\x71\x4f\xb6\xdb\x27\x79\xfe\x68\xa2\xd7\x01\xd1\xbb\x6e\x0f\x76\x9f\x54\x9e\x19\x50\x7f\x50\x52\xc0\x41\xa6\x71\xc7\x00\xd1\x38\x7d\x60\xc7\xb7\x82\x8d\x51\x69\xee\xf1\x06\xf2\x0e\xc6\xae\xad\xd3\x1d\xad\x3d\x84\x76\x67\xe5\x67\x93\xb4\xb8\x02\x87\x3d\x19\xb8\xa0\x04\x49\x83\x13\x0b\xf7\x36\xcf\xf0\xa0\xd3\x96\x4d\x9c\xdb\x03\x28\x91\xdb\x06\x0e\x22\x24\xe0\x79\x1e\xa9\x8e\xef\x4d\x00\x4e\x71\x3d\x5f\xf7\x7f\x24\xe7\x9b\xaa\x7c\x8a\x04\xbe\xc4\xfb\xa6\xae\x4c\xb1\xb8\x99\xd0\x37\x3c\xcc\x24\xe4\x93\x82\x03\x8b\xc0\xcf\x49\xf8\xed\xc1\xd6\x75\x7d\x23\x87\x36\x17\x08\xfa\x94\x55\xd9\x59\x22\xdf\x09\xf1\x3a\x4e\x5d\x64\x6d\xb9\x0c\xaf\x66\xf9\x85\x23\x26\x9a\x98\xf3\x18\x37\xf3\xbf\x8b\x76\x73\x8a\xaf\xf4\x7f\x32\x61\x38\x10\x75\x0f\x3b\xb7\x43\xba\x97\xec\x24\xe6\x52\xd5\x3d\x27\xa8\x4a\xbd\x89\xc6\x75\xa9\xa7\x0b\x5b\x87\xa6\x77\x21\x9c\x9b\xd7\xa1\x2c\x46\x1f\x43\x83\x2e\x6f\xa0\x39\x77\x98\x91\xc7\xd7\x94\xa7\x57\xec\x90\x7e\x0f\xa1\xb8\xa6\x38\x5f\x57\x36\x53\x69\xf0\xdc\xdc\x65\xc7\x60\x6e\x53\xc7\xbb\xc8\xc6\x36\x60\xde\xb2\xac\xc4\x03\x06\x6e\xb2\xec\x4e\xcb\x51\xb1\x6f\x2e\xd1\xb5\xdc\x70\xe1\x4f\xb7\x41\x6a\xc4\x0e\x20\x1f\xee\xb3\x7a\x71\x6d\x10\x1c\xe5\xd9\xe7\xb8\x15\x1b\xba\x3a\xfc\x8a\xf3\x97\x48\x96\x99\x13\xdd\x78\x87\x79\x68\xf6\x77\xfb\xfa\xfe\x84\xa7\x78\x8f\x59\x53\x91\x16\x90\xcf\xc0\x57\x12\xb8\x0f\x4c\xd0\x03\x40\x43\xca\x39\xf1\x27\xd9\xa1\x96\x6c\x59\xe4\x6b\xdc\x05\x4a\x89\xec\x81\x2d\xb2\xe5\x8d\x6b\x11\xb3\xbf\xa2\xe9\xe0\xe5\x3b\x46\x3b\x7b\x19\x2d\x21\x7e\x3c\xdb\xbd\x78\x02\x49\x59\x2e\x04\x41\x2f\x64\x82\x97\xd7\x01\x42\xb0\xd3\xce\x3b\xe7\xb7\x65\xde\x13\x79\xf3\x60\xcc\x9e\x3d\xdd\xbd\x88\xf3\x13\x45\x60\xbb\xe1\x60\x19\x83\x81\x63\xd1\xa5\xc4\xe9\x42\x76\xa3\x87\x3f\xf7\xb5\x3f\xa6\xd0\xa2\x86\x83\xb3\x28\x60\x45\x01\xa9\x1b\x3b\xf9\x82\x97\xdb\x18\x27\xa6\x53\xe0\x42\x29\xe8\x15\x0e\x86\xa5\xab\x79\x40\xda\xd8\x6e\x36\x9a\x9d\x28\x4a\xb6\xb1\x07\x9b\x2a\xde\x6b\xdc\x35\xcd\x32\x34\x87\x9b\x17\x6f\xab\xa6\x13\xdb\xa9\x0e\x94\x1d\x3a\x3c\xc7\x14\x5b\x66\x9e\xa3\x3f\x27\x41\xf4\xe1\x0c\x03\xf7\x92\xa8\xac\xd8\xbd\x24\x68\xa0\x2c\x35\x87\xca\x39\x99\x2c\x43\x37\xc1\x83\x52\x70\x38\xa4\xc4\x31\x80\xb9\x9e\x58\xd6\xcb\xd0\x86\x7e\xf8\x9a\xba\x5f\xd7\xc1\x79\x39\xf1\x79\xc1\x64\x0d\x1b\x32\x8b\xfb\xba\x97\xf5\x41\xf1\xa2\xab\xc5\x60\x19\xb1\xc9\x67\x6b\x09\xce\x5e\x6d\x7b\xe2\x2d\x9b\x92\x06\x1d\x4b\x86\xde\xbb\x73\x7e\x79\x85\x1b\x4d\x88\x17\x12\xa3\x59\x31\xbd\xa6\x7f\x59\x93\xf2\xcb\xa7\x23\xf8\xfa\x1b\x76\x5a\x5b\xa5\xf5\x72\xc9\xae\x6a\x65\xa5\x37\x06\xec\x0b\x73\xaa\xa8\xf2\x8d\xb8\xad\x85\x4e\x7f\xc6\x77\x65\x3f\x25\xc5\x15\x37\xcc\x04\xda\x5d\xb1\x24\xa1\x64\x96\xbe\x25\x11\xad\xc2\xbd\x70\xa9\xe9\x9d\xf7\x6e\xbf\xb8\x9e\x60\x1f\x84\x95\xcb\xd9\x78\x81\x74\x17\x70\xd9\x2a\x89\x7e\xef\xd8\x35\x5e\x6c\x51\x9c\x40\xe2\x44\xb1\xb9\x96\x63\x0e\xec\x57\x02\x51\x4e\x6e\x6b\xe1\xbd\x6d\xb9\xc4\x82\x77\x88\x50\x80\x3a\xec\xc1\x3d\x07\x67\x7b\xb9\x67\xbb\xa2\x61\x71\xc4\x5c\x5b\x43\xaf\xc6\x61\x9b\xa0\x6b\x5a\xbb\xde\x08\x5b\xc0\xf0\x41\x70\x95\x83\xd8\x47\xcc\x8b\x59\xe6\x33\xb3\x8c\xed\x19\xee\xe4\xf0\x35\xaf\x74\x84\x2f\x9c\x1c\x32\x10\x59\x3f\x70\xc2\x92\x8f\xd0\xf4\x3a\x1c\xe6\x30\x0c\x84\x72\x3d\x13\x2d\xd2\x05\x99\x11\x24\x0e\x01\x23\x08\x6f\x34\x02\x90\xf9\x6f\x0d\x59\x98\x82\x7b\x39\xe0\x75\x44\x89\x3a\xa7\x50\x62\x78\x27\x85\x90\xef\x3d\xd3\x28\xa0\xf2\xe8\x4a\x35\xf4\x50\xcf\x62\x3f\xe3\x83\xc4\x2f\x98\x7a\x9f\x3d\x45\xd0\x29\x8c\x4a\x79\x7c\x83\x53\x40\x71\x7c\x3b\x4f\x4d\xf8\xc3\xd2\xd7\x14\xab\xac\xc9\xed\x20\x96\x52\x3f\xfb\x19\x81\xca\x43\x3f\xdb\x6c\x43\x12\xb9\x16\x41\xb3\x95\x40\x6e\x78\xd7\x85\x08\x85\xef\x1f\x33\x25\x84\x39\x7f\x2e\x53\x8b\x5d\x18\x89\xe0\xfb\x1d\xcf\x01\x99\x50\x56\x0f\xba\xfd\xf8\xcf\x97\xe7\xef\x8e\xd2\xcf\x4f\xf6\xfb\xfd\x13\xce\xfe\xa4\x6f\x36\xec\xec\x97\xf3\x41\xaf\xff\x71\xf6\xf6\x28\x2d\xba\xe5\xf7\x33\x92\xde\x31\x35\xbc\xd8\xab\x3e\x50\x50\x72\x99\x2c\x59\xb3\xfb\xc7\xa7\xcc\x4e\x4e\x04\xeb\x6d\x59\xe1\xf9\xe0\x90\x69\xf3\xb0\x9b\x6d\x59\xa9\x40\x6c\xcc\x5e\x62\x2c\x48\x57\xc2\x8d\x00\x08\xf8\x04\x60\xd5\x86\xef\x03\xa3\x43\x84\x1b\xc4\xb7\xec\x43\xd2\x6f\x72\xa1\x53\xe3\x68\xd4\x3b\x45\x59\x91\xff\x3c\x2c\x09\x7b\x91\xb8\x1c\xe8\x79\xfa\x67\x56\xf4\x18\xa5\x42\x05\x9c\x64\x54\x00\xe0\x90\x96\x30\xc3\x52\xbd\xdd\xa0\x18\x26\xf8\x5d\xe1\xd3\xa2\x83\x3b\xf4\x14\x6d\x48\xcb\x5d\xdb\xfc\x68\xda\x44\xa5\x75\x8d\x0a\x6b\x84\x7b\x8b\x6b\x53\x44\xcd\x83\x39\xc0\xeb\xd2\x7e\x38\x0f\x86\x4b\x92\x4e\x32\xcf\xee\x75\x92\x8d\x38\xbe\x02\x7e\x69\x9e\xa9\x04\x31\x92\xe8\x82\x1a\x54\xb2\x1b\xd5\x20\x8e\x92\x73\xed\xa5\x9d\x53\x82\xf3\xe4\xa9\x8b\x8b\x97\x20\xa3\x1a\x30\x90\x98\x64\x18\x21\xed\x86\xc4\xbc\x79\x38\xc3\x79\x31\x8b\x4d\x8a\x0c\x02\xaf\x58\xf6\x26\x31\xcf\x8b\x91\x4f\x70\x28\x66\x48\xa9\xe6\xf3\x26\xbe\x79\x83\xc4\xe1\xad\x75\x83\x64\xd6\x2c\xe4\x42\xcd\x13\x09\x85\xd8\xda\x6d\xea\x3b\x73\x9b\x3e\xc5\x97\x9e\x47\x0a\x7b\xe6\xc1\xb4\x53\x1e\x32\x90\xe0\xeb\x79\x5c\xdc\x5f\x83\x9b\x29\x54\x0c\xa8\xee\x52\x81\x61\x9f\xaa\x50\xd4\x8b\xac\x32\x13\xcd\x9b\xf0\xbc\x75\x50\x43\x1f\xe1\x53\x57\xc3\x01\x1f\xe1\x38\x6b\xe8\x27\x1c\x64\xfd\x0a\x3f\xe1\x18\x49\x63\x2f\x60\xdf\xd5\xaf\x70\x04\x9e\xea\x74\x60\x80\x50\x32\x9e\x42\xfc\x44\x86\x29\x43\x44\x1e\xf6\xcd\x5b\x22\x42\xb3\x83\xe8\x06\x45\x0b\x0b\xce\x40\xe1\xfb\x1a\x1d\x73\xaa\x25\x1e\x25\x01\x72\xbf\x64\x96\xc8\xcb\xeb\xeb\xd9\xa2\xa9\xf7\x2d\x3b\x22\xe3\xee\x39\xf6\x95\xe0\xef\xf4\x12\xdf\x02\xc2\x26\x57\x10\x85\x04\x24\x52\xf6\xf6\x29\x52\x02\x12\xc9\x4b\xdb\xe8\xee\xaf\x53\x4a\xc1\x75\x5b\x7c\x15\x1f\x9f\x1f\x92\x94\x99\x64\x21\x76\xbe\x9f\x73\x08\x0e\xd4\x30\x91\xb0\x2a\x8e\x4c\x97\x1c\xa3\x60\x1c\x34\x84\x9b\x3b\x26\x36\xc1\xf4\x44\x17\xe4\x30\xef\x99\x09\xc2\x32\x38\x02\x23\x62\x28\x21\x68\x79\x90\xd0\xb1\x93\x20\x0c\x97\x1e\x42\x11\x84\x49\xff\xcb\x9b\x77\xf2\x09\x6f\x0d\x3d\xdf\x06\x77\x8d\x97\xec\x37\x67\x3e\x20\xb3\x29\x5f\x10\x4b\x13\x9f\x1a\xd1\x4f\xed\x32\x60\x7c\x39\x88\xbc\xc9\xae\x61\xab\xe4\x7f\x17\x4b\xc2\x9c\xcf\x76\xd1\x14\x4f\x86\xd9\x08\x39\x82\xea\x4b\x04\x5c\xbc\xda\x1a\xf9\xcf\xc5\x65\x6c\x57\x0c\x70\xf8\x30\xf7\x18\x31\x8f\x12\xa2\xbb\x87\xb4\xd0\x96\xac\x80\x2b\x81\x0e\x2a\x04\x75\xf8\x2b\x5b\x40\x3b\xb8\x1e\xd7\x20\xba\x6c\xe5\xdc\xa1\xb3\x95\xec\xd9\xf8\x34\x88\xf6\x76\xc6\x36\xca\xe3\xef\x6d\x31\x93\x82\xf7\x18\xa2\x74\x5c\x40\xb9\x0c\x1d\x91\x28\x92\x3d\x90\x70\x4c\xb2\x5d\xcf\x86\x03\xe1\xf6\x8e\x14\x67\x29\xbe\x1d\x94\x49\x2a\x4c\x2e\xf3\x6d\x1e\x08\x2b\x42\x40\xe1\xb2\x72\x96\x35\x37\x7c\x23\x1d\xf6\xa7\xac\x80\x7d\xa3\xe7\x22\xf9\x3f\x1c\x31\xbd\x09\xf1\x42\x42\xa3\x0a\x63\x07\x08\xe4\x86\xce\x64\xcc\xd4\x65\x60\xe9\x4a\xce\xe0\xbe\x95\x90\x5c\x61\x3c\xa4\x8c\xf1\xb9\x00\x4a\x7b\x32\x1c\xb7\x00\xde\x21\xfa\x2f\xc5\xff\xf9\x5f\xff\x9b\xd8\xd3\xae\xa6\xd5\x12\x27\x56\xf4\xb2\x04\x3f\xee\xe6\xfe\xe8\xef\xad\x7c\x02\x1e\x1d\x34\x44\xd0\x9f\xea\x21\x10\x0a\x8d\x68\x94\x2f\xb5\x33\xfa\xbe\x64\x1b\x55\x4c\xe4\xd0\x76\x3c\x99\xc3\x3e\x3e\x2c\xc3\x88\x6a\xae\x6b\x84\x3b\xac\x6d\x83\x8b\x41\x93\x23\x90\x4a\x74\xd3\x4b\x4a\xf2\x91\x74\xea\x4f\xfe\x4a\x0f\x37\x10\xd1\x75\x1e\x50\x71\x3c\x8c\x21\xec\x15\x93\xdf\xf8\x06\x5f\x51\x19\xe5\xfe\x20\x6c\x49\x99\x93\xb3\x1c\xb1\x97\x03\x58\xae\x90\xb0\xa2\x47\xad\x9d\xc2\xd2\xab\xa5\x70\xce\x69\xe2\x28\x5c\x78\xbc\x8b\x34\x46\xdd\x94\x90\xab\x03\x74\x3b\x26\xba\x0a\x1c\x0e\x7c\x66\xff\x31\x31\x30\x4f\x74\x9f\x80\x9d\xca\x38\xc0\xb7\x3b\xf0\x35\xc9\x4c\x7e\x62\xe1\x7d\x83\x08\x9a\xd7\x88\xc0\xcd\x25\x70\x9b\xe3\xff\x04\xe7\xc5\xd5\x48\xc1\xb1\x1a\xd2\xf8\xc1\x99\xf4\x26\xba\x7f\xcf\xbb\x16\xe2\xae\x8a\xe8\xc2\x3b\x2e\x1c\x88\x9a\xd8\x22\x1a\xdd\x60\x82\x91\x41\xec\x7d\xd0\x91\x83\xf6\xa3\x0d\xac\x76\x7a\xe0\x91\xcb\x22\x2e\xa7\xae\x24\x4a\x32\xb8\x3f\xa3\x8a\x76\xb1\xdb\x99\xaf\x26\x98\x32\x6b\xd9\x3f\xf2\xd9\x78\xbc\xb2\x05\x4d\x9e\x9f\x05\x9e\x5d\xf7\xca\xb6\x0d\x84\x04\xe4\xf1\xd1\xe9\x86\x14\x84\x4d\xa4\xcc\xa0\x20\x16\xe5\x7e\x3e\xe0\xe3\x3c\xbe\x6b\xe6\xdb\xbd\x9c\xc7\x65\xdc\xef\xe7\xfc\x8f\x6e\x5d\x4c\x9f\x23\x77\xc9\xe3\x03\xe5\x2e\x69\xea\x64\xf9\xbf\x63\x23\x81\x48\x4a\x9b\x31\x9a\xdb\x07\x77\x12\x34\x8f\x33\x44\x1f\xbe\xe3\xe7\xdb\xf7\x13\xa2\x9b\x55\xbe\x42\xda\x8b\x7b\x1c\x08\x7a\x51\xab\x1c\x42\xd8\x60\x15\x9f\xb8\x39\xa4\xbd\x79\xc1\x35\xe2\x19\x43\x1d\x6f\x74\xc0\x06\x3d\xbd\x37\x4b\x7c\xdc\x26\x6c\xa6\x33\x4f\xf9\x03\x2a\x66\xc5\x91\x83\x36\x62\xce\xfb\xf2\x69\x9b\x03\xf6\xe1\xfb\x8e\xdd\x0c\x5b\xc9\xbc\xc6\x39\x61\x85\x8d\xbc\x37\x47\xb8\xcc\xc6\x7b\x30\xff\x9e\xa3\x38\xd3\x36\x58\xd6\x01\xf7\x66\x8a\xc1\xa2\x6c\xf8\xf3\x06\x05\xd6\x21\x0c\x5f\xa2\x64\x78\x86\xeb\x31\xd7\xe3\x72\xed\x6e\xd8\x68\xf6\x78\x10\xee\x3d\xd3\x6b\x26\xec\x10\xe7\x20\xde\xb3\x3e\x38\x5a\xec\xe4\x20\x8d\x07\x92\x6f\x88\x3b\x93\x29\xc3\xfc\x71\x1d\xb1\x37\x93\xc5\x3a\x33\xf8\x19\x02\x2e\x9e\xb0\xb6\x2c\x70\x40\xe4\x44\x42\x2e\x45\x75\x2d\xbd\x2d\xc9\x37\x42\x6e\xc2\x79\x0e\x4b\xa8\x8f\xd5\x55\x4f\x71\xcd\x3e\xf6\x34\x28\x77\x3b\x1e\xc2\xcc\x5d\x0d\xc1\xc3\x24\x80\x2a\x6e\x6a\xab\x20\x21\xff\x34\x2c\x4b\x6e\x05\xd5\xd5\xf3\x5d\xbd\x4f\x64\xe9\x9c\xc1\x43\x4a\x6e\x6e\xd1\x98\xb8\x49\x12\xc7\x32\x8a\x9e\x98\x44\x1f\x48\x4c\x97\x03\x92\xe3\xf4\xc1\xa1\x11\xac\x1c\xee\xb8\x88\x5d\xc4\xc4\x02\x28\xa4\x06\xf8\xf9\xb3\x5c\x1f\x12\xc7\x4c\x4b\x85\x00\xeb\xab\x15\x49\x34\xaa\x37\x84\xf8\x9a\x8a\xb9\x9d\xa3\xea\x8e\xcc\xbe\x85\x73\xf9\x7c\x16\x40\xf8\xe1\xd6\xda\x21\x17\x17\xbb\x76\xb8\x5b\xb1\x7d\x3b\x42\x88\xaf\x69\x07\xd7\xf2\x14\x1e\x41\x3c\x88\xf7\xb5\x87\x94\x43\xbd\x66\x20\xdc\x3d\x69\x87\x4d\xf4\xa7\x2e\xae\x82\xf5\x1a\x3b\x90\xf9\x40\xfe\x60\xf3\xe6\x78\xe1\x94\x14\xd9\x08\x9b\x10\x11\x64\xa3\x78\xf2\xb4\xe9\x97\xa7\x38\x8f\x34\x72\x3a\xd0\x60\x0b\xd8\x83\x4d\xad\x42\xda\x2e\x2f\xd2\x41\xc6\x3a\x53\xb9\x4e\x12\xbf\xbc\xf0\x0a\x9c\x9d\x13\x15\xf9\x2e\x5c\x32\x20\xe0\xd9\x48\xe6\x72\x2b\x9d\x9b\xe3\xcc\xea\x82\x5a\xc7\x85\x39\x56\x0d\x28\xc7\xa2\xc7\x70\xc6\x3b\x43\xe9\x2c\x30\xb6\x32\x53\x3e\x32\x99\x55\x76\x5b\x0d\x6a\x9b\xdd\x45\x1b\xc0\x7c\x3e\x96\x35\xb2\x68\xd6\x1c\x5e\xb1\xc7\x4d\xf1\x6b\xb5\x5c\xf5\xe6\x08\xe6\xa0\x51\x66\x16\x4e\xf5\x31\x81\x78\xb2\x5b\x35\x19\xdb\xc2\x6d\xac\x99\x59\x04\xa4\x80\x02\x7f\x72\xbd\x74\xd7\xe6\x7b\x6e\x80\x1d\x36\x2a\xe8\xd1\x7d\x4c\xe1\x1b\x1a\x00\xb6\x71\x7f\x0b\xc0\x16\xe4\xc2\x3a\x6a\x46\xc0\x02\xee\x6b\x88\xde\x77\xff\xf5\x0d\x01\xdf\xf8\xca\x86\x1c\x59\x2b\xf4\x9a\xa4\x3c\x9f\x9c\xff\xf7\xb5\x6f\xa0\xee\x80\x38\xa3\x7b\xb8\x06\x04\x1f\xbd\x3d\xe4\x88\x3e\xf0\x85\xb0\x62\xb1\x01\xa6\xbe\x19\xba\x9c\xf9\xa2\x2a\x1a\x42\xa8\xb2\x55\x17\xfa\x6f\xc4\x27\xe2\xd8\xa3\xa0\x6b\xee\x54\x24\xe1\xce\xc5\x07\xf2\xfc\x75\x23\xa2\x84\x61\x2f\x53\xee\x66\xfb\x08\xb4\x7f\x3a\xf0\xc6\x99\xbc\xc5\x20\xdb\xd3\x6d\xf4\x14\xd6\xf8\x9a\xac\x7b\xaf\x28\x8b\xaf\x66\x1b\xde\xd1\xd7\xca\x91\xea\x95\xc9\x72\x76\xdd\x7d\xe2\x9d\x37\x2e\xef\x08\x07\x5b\xbc\xf0\xb1\xe4\xdb\x69\xea\xaa\x94\x7d\xff\x33\x09\xf1\x05\x45\x6c\x8a\x51\x3b\x0c\x9f\xf4\xf7\xce\xf8\xbe\x77\x30\x2e\xb2\x8d\x49\x05\x01\x09\x07\xe9\xc1\x95\x59\xf0\xb7\x6c\xec\x12\x30\x5f\x02\x5a\x02\x13\x66\x1f\xb4\x4c\xdb\x81\x42\xfb\x76\xaa\xc6\x39\x6f\xd4\xa5\xba\x4d\xe9\x5e\x26\x62\x26\xc1\xf7\xc2\xe4\x7c\x2f\x8c\x3c\x7e\x71\x14\x44\x44\x38\x0f\x13\x76\xee\x06\x8e\x28\x3a\x5e\xf8\x7c\x3c\x4e\x1f\xc6\x51\x7c\xe4\x30\x8a\xc8\x96\xa3\x5a\xcc\x80\x1d\xc6\x89\x2f\x5d\x18\x63\xa7\x13\xa2\xd2\xe3\x8b\x29\xc2\x24\xb9\x6d\x2e\x8a\xd2\x0b\xf6\xe3\x9e\x88\x4d\x35\x8c\xdb\xd4\x2b\xbe\x29\x0f\x46\xc8\xb8\x7b\x2a\x3b\xc7\x65\x9a\x4b\x5f\x54\x04\x9c\xc2\xc3\x18\xec\x6b\x75\x59\x1b\xe7\xc6\x14\x0c\x23\xf4\xa2\x82\x11\x20\xe9\xd4\xd9\x72\x8d\xfe\xcf\xa6\x08\xc9\x54\x63\x47\x4c\xfa\xb4\xd6\x04\xa4\x3c\x82\x90\xda\x93\x07\x93\x30\xfc\xb6\x12\x5e\x98\x08\x52\xd9\x45\xb6\x9a\xeb\xdd\x1d\xb5\x1e\x55\x66\x7f\x59\x77\x4f\x47\x7a\x8e\x19\xd7\xde\x9b\x29\x58\xc5\xf8\xf8\x8f\xde\x0d\xa2\x39\x45\xe2\xb8\x67\x39\xf3\x25\xeb\xc2\xa8\x9e\x0b\x99\xd7\xd5\x5a\x2f\x27\xb0\x74\x63\xae\x0d\x8e\x48\xbe\xaa\x8c\x41\x2b\x3d\x84\x2b\xe6\xdb\x9b\x0a\xeb\x19\x9f\x9f\x84\x45\x2e\x6a\x64\xc4\xd6\x0c\xe4\x0b\x25\x0c\x9a\x38\x59\xc4\x37\x34\x92\x5f\x65\x59\x2d\xdd\x2b\x16\xa7\x7c\x01\x52\xb3\xe0\x93\x9a\xbc\x86\x15\xf2\xba\x50\x5d\xc5\x16\xb8\xe9\xec\xf7\xb5\x0c\x0d\x62\x9d\x7b\xaa\xf8\x43\x6d\x6b\x8a\xf6\xae\x5a\xce\xf1\xa4\x48\xbb\xd6\x8d\xca\xf7\x85\xd8\xca\x1f\xcd\x28\xee\x69\xa6\xc7\xe5\x0b\x6c\xe9\xb5\x8f\xe4\x86\xb8\xc7\x4b\x8a\xc7\x93\x26\xb4\xc4\x3d\x01\x4f\x44\x6e\x13\xe0\x48\x3c\xeb\xbe\xbf\xb7\xa2\x41\x5f\x02\x86\x18\xe0\xb6\x41\x53\xba\xe2\xab\x7a\x10\x6c\x92\x87\xdd\x60\x32\xd0\xd9\x0f\x5e\x11\x5e\x85\xca\x88\x7b\xcc\x37\x04\xf0\x95\x56\x7c\x53\xbc\xba\xfb\xe8\x82\x66\x4f\xc6\xa8\xf1\xe8\x40\x87\xc2\x7a\xef\x19\xa1\x47\x51\x2b\xbe\xdc\xc7\x70\x11\x92\xc7\xb0\xfa\x1d\x5e\x24\x74\xaf\x60\x7d\xc0\x77\xc8\x14\xe4\x76\xba\xf9\xaa\x6e\x6a\x1a\x1e\x39\x8c\xaa\x37\xd6\xbd\xb2\xb8\x76\x22\x03\x4c\xe0\x77\xf3\x5e\x0f\x10\x5b\x9e\x33\x44\x93\xfc\xc0\xa7\x89\x7d\xae\xae\xee\xb2\x8d\xe5\x61\x0b\xe4\x52\xed\xd6\x57\x9c\x60\xb9\x8e\x2d\x21\xc8\xa9\x79\xea\x05\xfb\x7b\x22\x8b\x02\x9f\x6b\x4c\x00\x8b\x6d\x0e\x3e\xe1\x49\xe8\xea\x77\x73\xee\x2a\x8e\xed\x49\x74\xfa\x16\xd1\xe9\x15\x47\x8f\x6b\xb0\x56\xb9\x6c\x83\x46\x1d\xca\xc7\x07\xa9\x86\x79\x5e\xf2\x79\xab\x21\xbc\x61\x6e\x5d\x64\xbb\x11\xde\x5e\x53\xe4\x08\x6b\x80\x1c\x23\x00\xb0\x87\xb1\x10\xe6\x2a\x73\x28\x56\x61\x8e\x37\x14\x75\x08\x1a\x1e\x00\x43\x78\xbc\x15\x78\x20\x87\xae\xd9\xc3\x56\xe9\x9e\xcd\xa8\x55\xf5\xe2\x6f\x78\x59\x4f\xa1\xcf\xe5\x33\x80\x5a\xd4\x75\xc7\x0f\x98\xec\x58\xdc\x5a\xde\x38\x34\xfd\x62\xf1\x2c\x6e\x2d\x6f\x46\x98\x12\xe8\x31\xaa\x04\xfa\x30\xae\xb6\x7c\x95\x06\xd5\xd5\xf4\xcb\xae\xa7\x09\xea\x2a\x3c\xbb\xe4\x6b\x39\x2e\x5d\xc2\xa8\xc6\x51\xce\x90\x42\x87\x99\xa7\x6a\x5e\x92\x10\x51\x4c\x56\x7d\xc2\x29\xf7\xd6\x3d\xca\x1b\x56\x3e\xca\x3e\x35\x53\x70\x21\x2b\x1b\x9d\x17\xfd\xf2\xa6\xe8\xd8\x67\x7c\x3d\xc7\x0e\x73\x58\xd6\x85\x81\xa5\xbf\x00\x2c\x7d\x4d\x60\xe9\x95\x3c\x8f\x37\x2e\x95\x16\x9d\x6d\xd1\x65\xf0\x14\x08\x4a\x79\x75\x42\x23\xc0\xd1\x79\x36\x95\x0b\xd6\x99\xb9\x4a\xd9\x3a\x0b\x59\xf0\x09\x4a\xd0\x87\xfb\x44\xf0\x3e\x76\x20\x53\xa5\xb1\x1a\x20\xab\xdf\xf2\x6e\x29\xb7\x8d\xb2\x62\x40\x6d\x78\x2f\x31\x01\x2c\x2e\x85\x23\x58\xe3\x91\xd8\x14\xc7\xed\x70\x04\x7e\x15\x33\x4a\xe1\x60\x1e\x58\x18\x17\xc1\x5d\x64\x7d\x3b\x09\xb8\xcb\x64\x32\x1d\x84\xb4\xea\x0d\xd0\x6a\x1e\xc2\x69\xa5\xad\xa0\x52\xd8\x8a\x68\x6a\xe2\x5b\xac\x17\xb2\xd9\xa3\xbf\x70\x2d\xb6\xeb\xd8\xf0\xf4\xaf\xc0\x7e\xf1\x3d\x2a\x05\x13\xe9\x15\x32\xab\xc4\x98\xbc\x85\xbb\xd6\x2d\x6c\x69\xd1\x11\x56\x89\x8b\x1e\xc7\xd2\x38\x3b\x3b\xe5\x0e\x81\x6b\x7c\x78\xe8\x52\x4b\x84\x60\x6a\x2e\x2b\xf1\xbb\x23\xea\xb9\x22\x80\x72\x25\x8d\xec\x24\x6d\xc2\xcc\x50\x1a\xdc\xcb\xad\x51\x01\x6f\xa1\x4f\x04\x7d\x3b\x78\x6f\xb1\x5d\xd9\xf5\x95\x57\x17\xfb\xde\x04\x38\xc6\x46\x77\x8c\xdd\xb2\x9d\x87\xe8\x1c\xde\xf8\x95\x0d\xd0\xcb\xe0\x8a\xe1\x08\x14\x3b\xdf\xe1\x4b\x5b\xc1\xf6\xa3\xa1\x1c\x1b\x7d\x78\xe1\x4f\x1d\xf9\x46\x25\x04\x79\x82\x67\x11\xd9\x1d\x5a\xce\x1a\x4d\xa1\xc8\x5b\x07\x0d\x43\xee\x0a\x68\x40\xdf\xbb\xb5\x14\xe3\x62\xfa\x66\xfa\xff\x27\x97\xf3\x87\x0d\xf0\x57\xf4\x1f\xa8\xff\x3f\xe4\x8a\xfe\xa1\x65\xd6\xdd\xd1\x8f\x3b\xc8\x67\x38\x1c\x10\xcf\xe3\x68\xe3\x2a\x9a\xcf\xc8\x11\xce\x53\x44\xc4\x5b\xf9\x88\xf2\x66\x5f\xb3\xf8\x8a\xd5\x06\x53\x74\x58\x5f\x70\x9e\x23\xaa\x4d\x72\x8c\x6f\x92\x8b\x9b\x20\x31\xe3\xdd\x22\x89\x57\x6b\x44\xaa\xb7\x21\x15\x6a\x3d\x9a\xc1\x24\xa1\x5b\x34\x16\x37\x7a\x01\x9c\x27\xb5\x4e\xed\x41\x93\xe3\xc9\x1d\xb5\x5a\x32\xc9\x49\x5f\x3b\x2a\x32\xc9\x4c\x14\x30\xe8\x8a\xc4\x84\x97\x67\x48\x8c\xdc\x49\x8d\x47\x5a\x24\xa4\xf1\x63\x2f\x8c\xa0\xc5\x5a\x4c\x5c\x75\x50\x28\x80\x26\x79\x55\xd0\x96\xa1\x7f\xaa\xc4\x86\x0f\x7e\x4b\x8c\xbe\x9d\x8c\x67\x93\x25\x66\x01\xff\x21\x78\xb9\xb1\xf1\xe9\xf4\x9d\x55\xdb\x75\x4d\xb9\xe8\xbb\xe9\xdb\xd6\x5d\xea\x08\xda\xb6\xfd\x99\x76\xd3\x2f\xc0\xb6\xbd\x15\x7c\xd9\x7f\xa9\xdc\xc1\x4b\x58\x03\x38\xb9\x22\x24\x75\x97\x1e\xbd\xc4\xb7\x26\x6e\x99\x47\xce\x5b\x7e\xdc\xff\x8c\x58\x4c\x9e\x5e\x1e\x6b\x0a\x5e\x48\x56\xeb\x08\x1e\x52\x3e\x38\x0a\x0c\x39\x7a\x71\xd9\x27\x29\x5e\x91\x14\x20\x57\x6f\x6d\xef\xe4\x42\x6d\xb9\xb1\xfc\xea\xed\x25\x05\x97\xcd\x9d\x6c\x18\xe9\xb8\xf0\x8e\x81\xbe\x4b\x6c\xcf\xd8\x1c\x9f\xb9\x97\x9f\x83\x91\xd6\x22\xf9\x55\x59\xf7\x66\xa2\x2f\x9c\xda\x5f\xeb\x9b\x89\x6a\x30\x55\x5a\xe5\x37\x3f\xd8\xf9\x77\xd7\x5a\x39\xc1\x51\xe4\x01\xd9\xeb\xed\xee\x3a\x02\xa3\xc5\x28\xb6\xdc\x62\xa1\x71\x8b\x52\x48\xef\xe1\x5a\x19\x55\xf0\x95\x77\xb1\x87\x65\x05\x8b\xca\x3d\x6d\x9d\x3c\x6b\x18\xdf\xcd\x17\x02\xce\x65\xfe\xd9\x15\x9c\x51\xc1\x6e\x93\x69\x9c\x21\xba\x8b\x33\xca\x34\xed\x06\x70\xdf\x2d\x9c\x62\x14\x30\x65\xdc\xd9\xbc\x55\x19\x8f\x4d\xdf\x0a\x7b\xdf\xa3\xf3\x01\xc8\xad\x6c\xad\x05\x10\xbf\xc9\x93\xb8\x21\xd0\xf4\xa3\xe7\x0a\x30\xe4\x29\x1a\x3d\x78\x0b\x3b\x7a\x04\xdb\x72\xda\x9b\x9e\x75\x2f\xda\x36\xde\xdc\xd5\x33\x46\xef\x11\xc9\x82\x96\x81\x4f\x3d\x3c\x1f\x24\x69\x45\x9c\x14\x56\x82\x15\x8a\x5f\xe1\xbd\xf7\x91\x7c\x43\x30\x9b\xdc\x97\x73\xb9\x98\x2d\xc8\x03\x83\xff\x12\x6e\xbc\xe3\x4c\xd4\xee\x71\x0e\x6a\xf7\x01\x70\xd9\x04\x36\x7e\x7e\x89\x2f\x61\x21\xae\xc5\xec\x5a\xa6\x54\x64\x1d\x96\xb8\xe1\x13\x45\x21\x0e\xf2\x85\x27\x0c\xf7\x70\xf1\x24\x69\x10\x64\xb8\x28\xf9\xd8\x70\x21\xf0\xb1\xe1\x92\xe6\x63\xb5\x61\x83\x16\xb4\xed\xc6\x06\xe2\xf2\xf2\x6d\x3c\xda\x3e\xd5\xef\xcc\x3f\x66\xdf\x94\x07\x7c\xad\xcd\x8a\x34\xcc\x07\x78\x9f\xfb\xfb\x20\x87\x62\x33\xc4\x9f\xc6\x0e\xcb\xd0\x57\xa5\x07\x45\x18\xb3\x8c\xa6\x4c\xb9\x3c\x80\x18\xf7\xb8\x6c\x74\x69\x3f\xd0\x2f\x8f\x94\xeb\xb2\x12\xbd\x2a\x3f\x24\x66\xcf\x6c\x1d\x29\x87\x8c\xd6\x1a\xc6\x2e\xed\xd1\x73\xeb\xfa\xc4\xa7\xfa\xb6\xbb\x07\x6d\x7f\x41\xb4\x6f\xe1\xe4\x5b\xea\xc3\x47\xd4\xd9\xe9\xdc\xb2\xc4\xaf\xde\x8f\x9f\xbb\x57\x30\x7b\x39\x04\x16\x81\xd1\x23\x23\x30\x05\xe8\x1b\x23\xc6\x18\xe4\x88\x13\xfb\x77\xcf\x37\x6a\xfe\x96\x63\x50\xf0\xf2\x4e\xdf\xc2\xde\xed\xda\x1d\xbd\xbc\x19\x65\x92\x07\x3f\xdd\xeb\x7e\xe3\xcc\x76\x5a\xcf\x0d\xa2\x9d\x3e\x9a\x1c\xc4\x3f\xfa\xa2\xa7\xc2\xe5\x49\x4e\xbe\xdf\x92\x3e\xd3\xb7\xf8\x74\x63\x25\xc7\x8a\xa0\x0d\xb3\x33\xf3\x73\x3b\x68\x04\xa5\x98\x62\xdc\x28\xdd\x94\x3b\x5e\x96\xf5\x49\x32\x1e\x1c\x8a\xc1\xda\xfc\x1b\x62\x42\x24\x87\x9c\xf9\x0c\xdf\xd3\x0d\x54\xd8\xb1\x14\x18\xa7\x1b\x41\x11\x9d\xd7\x01\x31\xbd\xfe\xf5\xed\xf9\x00\x72\x62\x82\x6a\xca\xc4\x84\xd6\x94\x89\xe9\x2b\x5b\x39\xae\x0b\xd8\xbe\x99\xee\x81\x40\x1e\xec\x80\xd0\x90\xdf\x99\x05\xf1\x4c\x16\xa4\xd4\x96\x67\x3b\x99\x31\x4a\x67\xf2\x1d\x03\x05\x97\xfe\x0a\x94\xdd\xf9\x3b\xaa\xb5\x0a\xeb\xac\x64\x1b\xc2\xf3\x03\x71\x11\x08\xf8\x81\xb8\xda\x4e\x36\xcf\xa0\x49\x65\xbd\x2d\x73\x15\x1c\x05\xfe\x42\xa3\x0c\xd4\x40\x7c\xc9\x06\xa1\x45\xbb\x66\x12\xe1\x96\x4e\x7a\x3b\xc1\x57\x34\x74\x3a\x11\x79\xbe\x08\xac\x9f\x86\xfc\x64\x89\xe4\x30\xe0\xd5\xd2\x21\xc6\x0c\x4a\xaf\x4e\xfc\x75\xc8\xb0\x3d\x0d\x3a\xb3\x29\xaf\x0b\x67\xa9\xd2\xde\xbc\xa5\xb8\x08\x78\xcd\x8f\xbe\xda\x81\x48\x79\xf6\xf5\x9c\x3e\x06\x9d\x08\x8b\xd2\x9e\x8c\x4a\xda\x95\xb0\x1e\x06\x78\x91\x88\x69\x8c\x1b\xb4\xf2\xed\x00\x5c\x19\xf7\x90\xdd\xda\xb3\x69\xc1\x0c\xf1\x6f\x18\xf9\xf5\xd9\xd5\xce\xeb\xf2\x64\xcd\x0c\xa5\x2b\x17\xc3\x60\xe5\x32\x6f\x81\xd9\xb2\x91\xbb\x55\xf8\xef\x8a\xf7\x71\x5d\x4a\x38\xf7\x2c\xae\x25\xda\xcb\x7b\x39\x6c\xa3\x41\x0f\xef\xbd\x0b\x04\x4d\x96\x30\x71\x3d\x60\x0c\x50\x7c\x2e\x96\x7d\xb0\xad\xf0\xab\x7c\xab\x1d\xcf\x17\x53\x9b\x73\x60\x5f\xe1\xba\xc3\x0b\x89\x09\x60\xa6\x2e\x58\xb2\xa6\xc3\xc5\xd1\x5c\x1d\x0f\xd6\xef\xaa\x87\xfa\xc3\x50\xe6\x71\x61\x5e\x0e\xf2\x39\xdf\xc8\xd9\x8b\x81\x13\x86\xc1\x86\x52\x48\x18\x37\xff\x21\x92\xd3\x5c\xda\x44\xc3\x2d\xa9\xde\x31\xcb\xda\xcd\x02\x58\x88\xe2\xc1\x83\x14\xd2\x06\x49\xff\x92\x8b\x55\xf2\x51\x7c\x1a\x3e\x0d\xee\x2c\x37\xf3\x63\xe0\x46\x13\x9d\xff\x79\x28\x17\x44\xca\x21\x29\xcb\xc4\x1e\x44\x72\xc1\x65\x00\xfb\xb4\x6d\x96\x4f\x1f\x86\xb7\xfc\xe9\x75\x80\x0a\x60\x57\x00\xfe\x49\xef\x9c\xd4\x76\xd8\x8d\x86\xbf\xeb\x15\x82\xf2\x1d\x96\x2b\x66\x0f\x29\xba\xfd\xa7\xe0\x0e\xc1\xe1\xa5\x88\xc1\xdd\x8f\x75\xf5\x2d\x05\xb9\x3b\x3c\xb4\x7f\xf6\x3d\xc0\x0b\x8e\x4c\x33\x42\xe4\xec\xf4\xf0\x51\x1b\x45\x15\x4e\x5e\xf3\x49\x1c\x8f\x27\xfa\xb8\x1f\x51\x51\x51\x23\x44\xe9\xb5\x70\x3f\xce\xfd\xe5\xc7\x38\x84\x27\x09\x65\xab\xf7\x62\xc9\x8b\x41\x3f\xba\x8b\x8f\x93\x8f\x5d\x5d\x6f\x3e\x25\xd9\x8a\xfb\x44\xbf\x09\x6e\x16\x17\x7f\x5d\xf8\xa4\x51\x30\x91\x4f\x0e\xfd\xc0\x05\xff\x40\x5a\x2a\x31\x10\x5c\xce\xf6\xc3\x16\x11\xf2\xe6\x3c\x22\xd6\x88\xe0\x2b\xe9\xf1\x99\xe3\x33\xcf\xee\xf0\xb5\xc7\xd7\xbe\x28\x6e\x24\x33\x38\x0c\x65\x27\xad\x6f\x8d\x98\x3b\x7c\xf3\x6d\x63\xfc\x29\xf5\xe8\xdd\x83\xf6\x81\x2b\xe1\xe4\x89\x7b\xc4\xdb\x07\xc5\xcb\xe3\x4f\xcf\xfd\x3b\x50\x0f\x79\x7f\xec\x4e\xa3\x10\xa2\x18\xae\x5e\xa3\x24\xf8\x10\x6c\x82\x74\x59\x2d\x50\xc2\x14\xcb\xed\xd0\x48\x09\x52\x5c\x93\xed\xe7\xbe\x5d\x1a\x42\xac\x6f\x95\x86\x08\xbd\x79\x53\xef\xf8\x7a\xa8\x4f\xee\x9e\x7f\x7f\x6f\xf4\x29\xa5\xe9\x35\x19\xb8\xb3\x87\x4f\xf0\xe1\x51\x76\x3c\xf4\xc1\xe7\xdb\x66\xee\x81\xd9\xb2\xda\xf5\x4e\x7f\xd2\xab\x14\x1e\x75\x0a\xe6\xef\xda\x10\xa7\x4d\xbe\x0c\x56\x6e\xca\xe6\x97\xdb\x17\x58\x03\xa0\x97\xf1\x93\xd9\x8f\xff\xf5\x5f\x01\x4e\xc1\x7f\xfb\xb7\xf4\xec\x97\xef\xd3\xe2\x33\x5f\x4a\xc3\xaf\x1e\x7e\x2e\xb7\xfd\xd6\xa0\xe8\xf3\x65\x04\xc8\xa7\xda\xe0\x7e\xa7\xa6\x6c\x7d\x3c\x87\xbf\xfe\x6f\x00\x00\x00\xff\xff\xf6\x04\x39\x9b\x30\x94\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\x7b\x93\xdb\x48\x8e\xe7\xff\xfc\x14\x6c\x6f\xf8\xec\x8e\x28\xcb\xd1\x3d\x71\x8f\xe8\xb0\xdd\x57\x5d\xd5\x7e\xcc\xba\x1e\xeb\x2a\xf7\xdc\x9c\xc3\xa1\xa6\x44\x96\xc4\xb1\x44\xaa\xf9\x28\xb9\x66\x63\x23\xee\x6b\xdc\xd7\xbb\x4f\x72\xc0\x0f\x40\x3e\x48\xaa\x6c\xcf\x6e\xdc\xfd\x23\x25\x33\x91\x2f\x24\x12\x09\x20\x91\x99\xd9\x6e\x37\xcf\x8b\x76\x99\x3e\x4f\x8f\xd3\x5d\x56\x56\x9b\xa2\x6d\xd3\xb6\xd8\xdc\x3c\x59\xd7\x6d\x57\xe4\xe9\xab\xb2\xa3\xef\xe6\xb6\x5c\x16\x49\xb2\xae\xb7\x05\x81\xbe\xa6\xbf\x24\xcf\xda\xf5\xa2\xce\x9a\x9c\x22\x4e\x2d\x9c\x14\x9f\x77\x9b\xba\x61\xa0\x5f\x25\x94\xac\x8b\xcd\x8e\xf3\xd0\x5f\xd2\x96\xab\x6a\x5e\x56\xf4\x79\x45\xa1\xf4\x4d\x95\xb4\xf5\xb2\xcc\x36\xf3\x20\x01\x11\x96\xfe\x53\xfa\x63\x95\xa7\x57\x5d\xb1\x4b\x9f\xb5\xdb\x6c\xb3\x79\x91\xb5\xc8\xd2\x15\x69\xb6\x5c\xd6\x7d\xd5\x3d\x7b\x2a\x09\x52\x78\xdd\x77\x56\xfa\x45\xdf\x49\x5c\xbf\xb3\xa8\xf7\xbb\xa4\x29\x56\x25\x75\xac\xa1\xa8\x77\x1a\x4c\xf6\xc5\xa2\x2d\x3b\x6e\xf4\x5f\x24\x94\xdc\x16\x4d\x5b\xd6\xdc\x9e\xdf\x24\x94\xec\xb2\x15\x03\x5c\xd2\x5f\xd2\x15\xdb\xdd\x26\x43\x86\x6b\x0d\x26\x9b\xac\x5a\xf5\x02\xf3\x56\x83\xc9\xb2\x29\x28\x69\x5e\x15\x7b\x8a\x3d\xc1\x47\x4a\x1f\xb3\xd9\x2c\xe9\x09\xa7\xf3\x5d\x53\xdf\x94\x9b\x62\x9e\x55\xf9\x7c\x2b\x58\x7b\x4f\xf1\xa9\xc6\xa7\x14\x9f\x72\x3c\xba\x51\xe4\x84\xa0\x79\xd6\x6a\x5f\x68\x68\x08\x5f\x59\x9b\xa0\xa8\x2a\xdb\x5a\x6e\x0e\x26\xc5\x36\x2b\x37\x3c\x08\x4f\x38\x40\x8d\x6f\xdb\x7d\x8d\xa1\xba\xd4\x20\x21\x62\xde\xdd\xed\x0a\xe0\xe1\xc9\x35\x85\x92\x65\xb6\xeb\x96\xeb\x8c\xdb\x2a\xa1\x84\x80\x76\x35\x21\xa4\x6e\xee\x00\x67\x1f\x49\xdd\xac\xb2\xaa\xfc\x7b\xd6\x09\x92\x2e\x82\xcf\x64\x5b\x36\x4d\xcd\xf8\x3d\x43\x20\xa1\x1e\xcf\xb9\x1c\x8a\x39\x27\x4c\x04\xa5\x70\xca\xb6\x5c\x35\x82\x4a\x4e\x3c\xc3\x17\x97\xc2\x69\x37\x75\xf3\x49\x13\x5e\x72\x70\x90\x95\x1a\xa1\xa9\x71\xfd\x59\x45\xc8\xd7\xd4\x33\x7c\x44\x00\x6d\x92\xe5\x5b\x42\xe5\x2e\xab\x0a\xc6\xd1\x31\x7f\x11\x5e\xe8\x2b\x51\x9a\x9a\xb7\x45\xd7\x95\xd5\x8a\x91\x7d\x2c\x51\xe9\x95\x46\x25\x41\x9a\x8b\xbb\xab\x7b\x37\x9c\x14\xff\x57\xfa\x4c\x2f\xe5\x53\xd2\x82\x4c\x48\x74\x39\xb9\x27\xed\xfc\xa6\x28\x72\xe9\x4b\x9b\xbe\xa4\x70\xb2\xeb\x37\x1b\xc2\xda\x1f\x7d\xd1\x76\x9c\xe9\x92\xbe\xa9\xff\xf2\x9d\x94\x6d\x4b\x01\x8a\x7e\x83\x40\x42\x43\x57\x2d\xd1\x99\x13\x04\x92\xe4\x43\x5b\x64\xcd\x72\xfd\x31\x91\x7f\xb4\x95\x03\x4c\x7b\x87\x06\x95\x09\x49\x89\x48\x6a\xb0\x0a\x92\x65\x9d\xf3\xc7\x09\xfd\x51\xd1\x65\xd5\x76\x34\xe3\x3e\x26\x1a\x60\x30\x09\xc9\x00\x74\x65\x07\x2c\x68\x24\xa6\x6f\xcb\x23\x98\xbe\x2c\x9b\xb6\x7b\xd2\x95\x44\xac\xef\xfa\x2a\xe1\xfe\xd1\x6c\x9b\xe7\x0b\x63\x42\xaf\x6a\x42\x11\xa2\x1b\xea\xdf\xd9\xdd\xd5\xbf\xbc\x3d\x4a\x2f\x89\x13\xad\x9a\x82\xc2\x29\x95\x41\x7f\x94\xe7\x4f\xb3\x84\x72\x59\x4d\xa7\x59\x97\x2d\xb2\xb6\xf0\x68\xe5\x44\xa1\x6e\x97\x06\x1a\x67\xae\x06\x0e\xd6\x76\x51\x7f\xa7\x66\x08\x95\xa1\xf3\xca\x95\x71\xce\x93\x8b\xe2\x99\xa9\x21\xf3\xe5\xa6\xe0\x78\x2a\x2a\x7d\x73\x7e\x7e\x71\xfa\x4b\x5a\x54\xab\xb2\x2a\xd2\x7d\xd9\xad\xd3\xbe\xbb\xf9\x6f\xf3\x55\x51\x15\x0d\xf1\xb8\x65\x99\xd2\x9c\x6a\x88\x12\x52\x22\x6c\xe9\xdc\x2c\x69\xdb\x0d\xcd\x7d\xa0\xf7\xea\xea\x6d\x7a\xc6\x28\xde\x65\xdd\x1a\x0d\xe9\xd6\x49\xfb\xc7\x86\x51\xe4\x2a\xbc\x5e\x17\x29\xa8\x0c\x40\xf5\x8d\xe1\x23\xcd\xb5\x8d\xb3\xa4\x68\x9a\x39\xb1\xa5\xee\x6e\xae\x99\xb5\xbc\x21\xa4\x14\x41\xa4\x53\xd5\x5d\xba\x28\x52\xe4\x99\x25\x89\x35\xd8\xb0\x7b\xbc\xdb\x6d\xca\xa5\xcc\xf5\x57\x92\xe6\x11\xcd\x2b\x88\x62\x29\x84\x03\xa2\x2c\x2d\x40\x17\xb1\x67\x9e\x0f\x69\xc4\x40\x90\x7f\x5d\x10\x03\x5c\xf7\x2b\x61\x7b\x9b\xba\xcf\xbf\x03\xa5\x5a\xeb\x3d\xa1\xa6\xef\x6a\x6a\x30\xb0\xe3\x00\x7c\x15\xc7\x44\x71\xbc\x68\x35\xc5\xb6\x26\xbe\xe2\x88\xbd\x24\x82\xda\x97\x94\x48\x3d\x6d\xb3\x5b\x9a\x6f\x5d\x9d\x76\xeb\xb2\x4d\x73\x22\xb6\x25\x17\x4c\x53\xa3\xa7\xe5\x42\xc8\x82\x08\x54\x48\xc3\xe2\xe2\x31\x00\xd4\xb6\x27\x6a\x5a\x53\x61\xbc\x18\xf1\xca\x49\x45\x4e\xb5\x13\x5d\xa2\x72\x40\xdf\x44\xb9\x35\x71\x65\xe6\x9b\xa7\x08\xe8\x77\x58\x3e\xb5\x2a\xbb\xb9\xa1\x56\xb5\x44\x15\xaf\xd3\xe5\xa6\x26\x92\x7a\xff\xee\x2d\x65\x5e\x77\xdd\x6e\xbe\xab\x1b\x90\xf1\xf5\xf5\x25\x4d\x8f\xa6\xf3\xb1\x01\xae\x19\xa6\xea\xb7\x0b\xfa\xda\xaf\x4b\x62\x02\x59\x30\x40\x40\xc5\x86\xd7\xbf\x2a\xad\xab\x19\xc6\xaa\x6f\x36\x83\x61\xa4\x2a\x2d\xe5\x40\xf3\xb8\x09\x4f\xf9\xe7\xca\xb7\x12\xdd\x6d\x49\x48\xd8\x63\x50\xa9\xab\x05\xd6\x21\xa2\xad\x7a\xc7\xe5\x06\xc4\x75\xa1\x11\x9e\xa2\xb0\x76\xb9\x74\x59\xc1\x28\x15\x22\x48\xc0\x85\xb7\xd4\x61\x9d\xcd\x57\x67\x84\x06\x4c\x69\xc4\xde\x34\xf5\x96\x62\x5f\xd2\x9f\x8f\xf0\xcd\x3f\xe3\xf2\x00\x93\xe5\x39\xb1\x99\xf6\x28\x7d\xf7\xf2\x24\xfd\xcf\x7f\xfa\xf1\xc7\x59\xfa\xa6\xe3\x09\xc1\x34\xf2\x37\x1e\x5b\x0a\xca\x52\xea\x40\x69\xe6\x76\x34\xfc\x0f\x98\xc0\x1f\xa4\xcf\x90\xfa\xdf\x8b\xcf\x19\x89\x01\xc5\x6c\x59\x6f\x5f\xf0\xe4\xde\x66\xdd\x2c\xe1\x14\xa2\x1a\x25\xa7\xab\xa2\xca\x29\xa0\x0b\xb2\xa6\x05\x5c\x47\xd3\x83\xe5\x59\x84\x93\xf9\xb2\xae\x6e\xca\x86\x3b\xf4\x6b\x95\x2d\x08\x27\x26\xb6\x10\x3b\x46\x8a\xad\x7a\x84\x34\x9a\xc8\xe5\xcd\x9d\x07\x45\x57\xcf\x39\x52\x07\x34\x61\x51\xae\xe0\xe5\x08\xe8\x74\x58\xbe\x42\x34\xc6\xed\x82\xba\xd7\x18\xbe\x5b\x8f\xf0\xfa\xe6\x66\x43\x8c\xcd\x98\x95\xd6\x70\x21\xb1\xc2\xb7\x42\x10\x22\xc6\x1d\x04\xaf\xd3\xb2\x05\xe4\xc9\xe9\x79\x5a\xdc\x12\xb5\x11\x39\xd0\x4a\x99\xf7\x4b\x50\x18\xc3\x1e\xa5\xbc\x4c\x10\x7e\x89\x33\x2c\x85\xbd\x05\x73\x95\x9b\xc6\x0c\x61\x49\x40\x34\x45\x73\x29\x6f\x2e\x08\x6a\x4c\x04\xb1\x6a\xae\x58\x76\x0d\xd3\x26\x33\x8c\x5a\x87\x51\x6a\x87\x79\x69\xb8\xab\xcd\x5d\x0a\x79\x01\x74\x21\x12\x9d\x89\x9e\xed\x2c\xd1\xb5\xca\x04\xd8\xf9\x6d\x09\x61\xcf\x0d\x15\x52\x4d\x9a\x65\xf6\xf0\x1b\x03\xb0\x14\xd9\x4e\xe6\x75\x0d\xbb\xe0\x8a\x5b\x27\xe8\x71\xfb\x5a\x34\x01\x35\xb0\x34\x4a\xc4\x78\x5b\x82\xd3\x28\xb2\xd0\x56\xc2\x18\xaa\xa6\xaa\xda\xa2\x40\x09\x94\xff\x29\x95\x89\x3c\x33\x15\x7e\x54\x1e\xb1\x75\x97\x64\x92\x34\xaf\x53\x5e\x08\xc0\xce\x28\xb7\x75\xb5\xd2\xee\x6b\x9f\xd3\xa6\x5c\xad\x89\xaf\xd4\xfb\x23\x41\xda\x7e\x5d\x17\x4c\x3b\x6f\x4e\x9f\xff\x20\xed\x58\x31\x73\x73\x99\x98\x2d\x66\x7d\x57\x33\x9d\xea\x10\x4a\x13\xdc\xf2\x02\xc8\x91\x98\x25\x40\x43\xc1\xd6\x44\xb7\xf1\x6a\xad\xf3\x24\x4c\xd3\x09\xe2\x61\x24\xf7\x40\x38\x56\x29\x66\xbe\xaa\x21\x9e\x99\xd4\xc2\xac\x9a\x24\xfd\xb6\x9b\xaf\xca\x6e\x7e\xc3\x13\x96\xcb\x7c\xc9\x79\x79\xe5\xa0\x94\xf4\x11\x25\x3d\x4a\x69\xd6\x93\xcc\x99\xff\x94\x3e\xbc\xd5\xe5\xfa\x4f\x3c\x13\xe7\xd9\x2d\xc1\x62\x30\x54\xe8\x6b\x0a\x91\x16\x4c\xbb\xc8\x6b\xa2\x73\xc6\x79\xdb\xef\xc0\xd1\x75\x85\x3e\x4a\x77\x02\x98\xd7\xfb\x6a\x53\x67\x39\x58\x0e\xcd\xae\x12\xba\xd1\xa2\xac\x32\x5a\x5d\xac\x14\xb0\xb2\x87\x44\x0d\xe7\x17\xd7\x00\x5c\xd5\x8b\xbe\xdc\xe4\x06\x30\xa3\x1e\xde\x66\x9b\x32\x67\x39\x4b\xc7\x3d\x94\x69\x2c\xaa\x94\xb6\x2c\xeb\x86\x97\x43\xf4\xc6\x32\x1e\x58\x87\x1b\x5e\xdf\x10\x4d\x79\x15\x16\xf9\xdc\x92\xc9\x68\xa0\x81\x87\x00\xca\x0b\x2a\x28\xa6\x6c\xab\x47\x1d\x5a\xba\xec\xa9\x2e\x1a\x74\x8e\xa6\x8c\x6d\xfa\xe4\x05\xfd\x26\xbc\x3c\x0b\xdf\x5b\x8d\x11\xcf\x89\xa9\x24\xf6\x32\x4b\xa3\xa6\x46\xe4\xed\xa8\xcb\x88\x37\xe8\x6b\xd8\x5e\x23\x81\xb6\x17\x7a\x65\x45\x70\x43\xc3\x5a\x7c\x47\x81\x47\x34\x81\x57\x1b\x0c\x42\x06\xe9\x85\xc4\xb8\x9a\xf0\xc6\x04\x72\x24\xd3\xe5\x86\xba\xc6\xbc\xb3\xcb\x3e\x51\xdb\xb2\x86\x84\xb0\xe4\x03\x2b\xcb\x1f\x93\x5e\x04\xa0\x7a\x93\x3b\x61\x13\x34\x5d\x37\x43\xe5\xcc\x03\x39\x7a\x6d\x49\x8a\x5c\xae\xe7\x4e\xd5\x66\xa4\x74\xc5\x67\xac\x79\x48\xf2\x9a\x37\x13\x3b\x27\x25\xdb\x3b\x0c\x17\x77\xe2\xec\xce\x8f\x16\x89\x3f\x34\x45\x48\x44\x5f\xd4\x8c\xb5\xdb\xc2\x41\x9d\x84\xb1\x71\x06\x2a\x8b\x04\x35\x2d\x2a\xd6\xa1\x28\x49\x14\x3d\x4d\x15\x65\x8f\x54\x91\x0f\x6a\x02\xf8\x98\x58\x05\x51\x91\xc9\x07\x62\x06\xa4\x97\x78\xdd\x78\x6e\x83\xe3\x74\x64\x56\xe9\x94\x1f\xf8\x75\x70\x5d\xec\x78\xc9\xdc\xb6\x18\xd5\x0d\x41\xe6\x77\x2a\x7b\xb9\xf1\xfd\x59\x38\x2d\x0d\x38\xf1\xa7\xef\xcc\xb8\xf0\x8d\x45\xfc\x52\xd2\x48\x22\x7f\xbc\x72\x88\xc2\x4e\x32\x32\xac\x14\x4d\x73\x77\x94\x46\x6b\xd0\x9a\x74\xf3\x45\x41\x0b\x9c\x66\xcb\x67\xa6\x1d\xf0\xa8\x65\x4b\x21\x79\x18\x1a\x40\xa4\x92\xb3\x6e\x86\x4b\x1a\xb7\x50\x18\x94\xd6\xe2\x16\x7c\x2c\xe7\xe1\xaa\x3f\x51\x27\x21\x6c\x5b\xb0\xcc\x37\xdf\x8a\x6e\x2f\x5f\xe9\x59\x91\x90\x60\xb2\xa2\xf9\x68\xf4\xf6\x9c\x55\xb2\x15\x24\x54\x25\x37\x06\x28\xba\x90\x83\x2a\x84\xc5\xfc\x6c\x06\x15\x9a\xd8\x7b\xe8\xab\x34\x35\x47\xe8\xa7\xb5\x86\x92\x67\xc6\x91\x65\xc1\x85\x7c\xd2\xd2\x64\xf7\x48\x3c\x66\x63\x48\x1a\x42\xa9\x9c\xe8\xbb\xc5\x19\x78\xd2\x3f\x5b\xbc\x78\xd8\x3e\x7b\xba\x78\xe1\x58\xe3\x72\x5d\x2c\x3f\x89\x2e\x51\x56\x8b\xfa\x33\x14\x2e\x1a\x78\xc6\x71\xc5\x53\xe4\x61\x9e\xae\x29\x15\x32\x39\x4d\x65\xca\x46\x88\xe7\xd4\x68\xd0\xa8\x31\x3c\xe3\x67\x66\x9a\x72\x8b\x83\x11\x12\xe5\x46\x25\xd2\xb2\x84\x86\x91\xe7\x0e\x74\x7a\x4f\xb7\xc7\x1c\xcb\x94\x0b\x36\xef\x49\x17\xfd\xdd\x94\xdb\xb2\x1b\x91\x0e\xf3\x91\x4c\x49\x50\xf5\x7c\xc3\x25\xca\x02\x36\xd0\x16\xe2\xc6\x54\x0c\xad\x9b\x46\x4e\xfb\x8c\xd4\x9b\x3f\xa5\x44\x42\x3d\xad\x42\xdc\x27\x6a\x26\xb1\xe3\x8c\x17\x5e\x52\x10\xb2\x76\xde\x57\x8a\xd6\x22\x37\x62\x7a\x5d\x62\x91\xe0\x7a\x8d\xe4\x03\x28\xc3\xbc\xca\xb9\xe9\x63\x87\xf1\xef\x49\x28\xbe\x71\xd9\x98\x73\x73\x83\x4a\x96\xc9\xb2\xc9\xc1\x23\xce\x56\x15\xa2\x5e\x01\x03\x0c\xc7\x03\x4d\xca\x81\x1f\x3d\xd2\x30\x3e\x51\x0c\x06\x64\xd1\x77\x5d\xcd\x32\xf7\x86\xa9\x46\xf2\x58\xab\x4f\x00\x08\x35\xc2\x97\x87\x01\x09\xf1\x24\x63\x53\x98\x0c\x3c\xf7\x46\x42\xd5\x56\x06\xbd\xd3\xa5\xce\x81\xe5\xa2\xae\x67\xd5\x9d\x91\x32\x11\x04\xb7\x82\x2b\xec\xa6\xdb\xf2\xb8\x29\xbe\xf7\xad\x71\x73\x06\x39\xac\x45\x92\x3d\x98\x4f\xef\x90\x2a\xe6\x21\x9b\x75\xb6\x72\xa9\x91\xc5\xd3\x47\x13\xa3\x17\xe9\x3c\x33\x88\xc1\x92\xd8\x98\x03\xd1\xd4\x0b\xe4\x9e\x0d\xea\xf2\xea\xce\x18\x83\x5d\xdc\x64\xbf\x00\x75\x75\x3d\x6f\xd7\xa2\x5a\x5a\xf3\xd2\x4d\x51\xad\x22\x33\x01\x4c\xc4\x20\xba\xff\xc2\xcb\x1c\x09\xf0\xd9\xe6\x63\x72\x07\x7b\xd4\x5f\x89\xc3\x57\xb0\xf4\xd5\x09\x25\x88\x32\x72\x86\x00\x81\xb2\x66\xf4\x31\xe1\x25\xf0\x7c\x20\xd6\xf1\x12\xa1\x71\x81\x7c\x81\xa4\x5f\x23\x69\xcd\x86\x30\xb9\x9c\x10\x01\xdf\x15\xde\xa2\x89\x90\xeb\x22\x29\xd1\xd7\xa6\xea\x90\x3e\xfd\xa9\xd0\xc2\x5f\x93\xda\xdc\xbe\x87\xda\x2b\x3a\x2c\x2b\xbc\x97\xd9\x1d\x0b\x5d\x12\xad\x1f\x48\xb8\x2e\xb2\xad\xb6\x92\x83\x52\xc4\x31\x2d\x67\x1a\xc9\x41\x5a\xe5\x02\xab\x46\x02\xf1\xc3\xba\x20\xb2\x88\x2e\xfb\x4e\xfc\x2f\xd4\x5c\xfa\xfb\xc8\x14\xf3\x7b\x92\x6d\x76\xeb\x0c\xeb\x7f\x00\x06\xab\x03\x01\x61\xe0\x53\x80\x80\x16\xfa\x6d\xd1\x94\x4b\x0e\x72\x86\xc7\x4f\xe6\xdf\xc3\xe0\x44\x13\x85\x04\xc1\xb8\xb0\x9c\x26\xc9\x3f\x54\x20\x87\x59\x48\x0c\xcb\x6d\xcb\xbf\x5b\x2f\xa2\xe2\x38\x9e\x78\x0e\x41\x40\x24\xf3\x50\x0e\x08\x0b\x23\x8b\x67\x5d\xca\x7c\xa1\x63\x11\x30\x2a\x7a\x9b\x7d\xfe\x52\xc6\x6d\x3d\x91\x4f\x58\x81\xcf\x64\x13\x5e\xbb\x18\xb3\x03\x82\x67\xfb\xc6\x41\x68\x1a\x7a\x06\xa9\x3e\xd1\xaa\x56\x39\xb0\xf7\xf2\x9d\xe2\xfb\x27\x33\x9e\xd3\x12\xa2\x02\x74\xea\xcc\xe8\xb4\x38\xe7\xcc\x37\x21\x08\xcf\xfc\x74\x0b\x85\x63\x47\xce\x2c\x46\x9a\xca\xef\x18\x07\x49\x94\xa2\x27\x10\x49\xcd\xbc\xc5\x7f\xce\x6b\xe4\x9c\x85\xce\x2a\x14\x2d\xdd\xea\x69\xeb\x0b\x20\xc4\xee\x3b\x1f\xe7\x1b\x4c\xb8\x83\xd9\x49\x14\x98\xc8\x7d\x31\x36\xe4\x1d\xc8\xdf\xd1\x94\x99\x28\xc0\xcd\xa4\x83\x19\x65\x30\x91\x89\x7a\x9e\x8f\x78\xc1\x38\x23\x83\x91\xda\xb3\xd9\x14\x2b\x36\x35\x59\xc5\x51\x6d\x4a\x42\xb4\x18\x08\x58\x48\x40\x1e\xc3\x6e\xb0\xc2\x71\x0d\x85\x78\x37\x46\xb1\xfa\x44\xad\x26\x71\x9c\x82\x9c\x33\x50\xa2\xb4\x19\xba\x92\x6f\x59\x5f\x68\x7b\x66\xcd\xac\x5b\x88\x74\x12\x8f\x06\x2f\xbc\x28\xaa\x40\x15\x87\x8b\x27\x5a\x64\x85\xeb\x4b\xe5\x03\xec\x1b\x8b\x0e\xd5\xed\x71\xc1\x5a\xb8\x03\x3a\x54\xac\x53\x08\x8b\xcf\x25\xcc\x76\xaf\x4a\x36\x07\x41\x25\x74\x9a\x30\xd2\x66\xc9\x86\x98\x01\xab\x1e\xd2\x2b\x91\x63\xeb\x5b\xd6\xdc\xb8\x3e\x4e\x95\x7c\x62\xc6\xd3\x4e\xf1\x38\xab\x72\x49\xca\x5c\xbd\x2f\xf2\x23\x5a\xe2\x39\x07\xb5\x13\x6c\x23\xdb\xec\xb3\xbb\x16\x36\x12\xe3\x38\x6c\xb2\x94\xec\xcc\x4e\x48\x00\x58\xa1\x55\xa1\x7d\x9a\x66\x9c\x61\xa2\x25\xde\xc9\x8b\x87\x5b\xa6\xf7\x50\x0f\xc1\x2d\xd4\xea\x42\x5a\x37\x2f\x7b\x58\x62\x75\xad\x61\xd5\x96\x15\x41\x96\xf1\x25\x39\x28\x08\x5b\x1e\xca\xf9\x27\xf2\x1e\xb1\x78\x44\xd5\xb0\xb0\x42\xfc\x58\x70\x4d\xf2\x1f\x61\x16\x4d\x0a\x6c\x05\x3d\x95\xff\x44\xe4\xe2\x92\x70\xc8\x7a\x96\x57\x9f\x79\x6d\xa2\x51\x31\xc3\xae\xc4\x43\xf9\x4d\xda\x8e\xa6\x00\x63\xda\xb6\xe9\xfe\x2a\xf2\x95\xaa\xcc\x9c\x8a\x29\x06\x34\xb5\xeb\x72\x97\xd6\x30\x16\x86\x28\xf4\x64\x1b\x88\x98\x84\x8d\xbc\x80\xdc\xcd\x56\xd3\x26\xab\xda\x9b\x02\xe6\xd3\x6d\x7a\xc3\x3b\x41\x33\xad\x9a\x25\x56\xd9\xae\x3b\x50\xb3\xe8\x30\xa8\x3a\x5c\x2d\x30\x76\xc1\x40\xc5\x55\x13\xcc\x2d\x6a\xd6\x36\x00\xab\xbe\xa4\xd6\xda\xc0\x64\x36\x42\x01\xa4\xc6\x68\x93\xc2\x5a\x73\x5b\x84\x88\xb8\xf9\x47\x7b\x1e\x60\x5d\x2d\xc4\x62\x56\x8f\x87\x49\x2a\x85\xb5\x02\x7b\x4c\x8b\xbb\xb8\xf7\x9c\xd5\x51\x00\xef\x78\xdc\x16\x5a\x0b\x4f\x0c\x9e\x2b\x83\x02\x61\xa5\xf0\xba\x42\xd2\x65\x50\xf9\x16\xd4\xc4\xe5\x3a\x9a\x9d\xd7\x48\x49\x25\x65\x34\x41\x93\x0f\x5c\x35\xa9\xf1\xeb\xac\x5a\x15\x6c\xea\xa2\x92\x78\xc9\xc3\xb7\x4a\xe8\x12\x49\x0d\x5e\x35\x12\x66\x03\xb9\x65\x59\xd2\x84\xac\xb7\xf7\xe6\x2c\x2b\x33\xd8\xb4\xc9\xdf\x6a\x92\x21\x60\xe9\xfd\x33\x85\x58\xfa\xad\x92\x68\x6f\x67\x60\x67\x80\x7a\x50\x76\x77\xd8\x74\x5a\x90\x0c\x2c\x4a\x1a\xc5\x90\x9a\x0b\xee\x00\xcb\xc5\x4b\x0b\xd3\x78\x64\xcc\xf4\x78\x6a\x4b\x48\xe1\xc4\x8c\xf4\xd2\xc2\x09\x6b\xc9\xdb\x19\x16\x07\x16\xa6\x61\x9c\x0e\x96\x84\x47\x0f\xdb\x47\x3c\x60\x96\x36\x0b\xe0\x77\x59\x47\x6c\xb1\x12\x15\x45\x38\x54\x98\x55\x93\x5d\x11\xe0\x2a\x02\x36\xc3\x8e\xae\xa0\xe2\x63\xe2\x37\x9a\x6d\x8f\x79\xca\x20\xaa\x2c\xa6\x55\x99\xf7\x9f\x29\xa8\x16\x91\xd4\xb9\x59\xa8\xaa\x8a\x6d\x3c\xdb\xf4\x69\xe3\x3d\xa0\x36\x51\x13\x50\x6c\xff\x51\xf2\x7e\x9e\x9e\x4a\xc0\x94\xde\xbe\x44\x9f\xca\x3c\x49\x76\xc0\x7b\xb0\x2d\xae\x03\xe1\x1a\xad\xee\x0f\xde\x06\xdd\x0c\x57\x76\xc2\x82\x94\x02\xc2\xb5\x2d\x01\x48\x01\xbc\x87\x1a\x28\x6c\x6c\x5c\x85\x26\x57\x05\xdb\x1d\xa4\xef\x72\x3e\x06\xdb\x17\x8b\x94\xcd\x9d\x44\x38\xa4\x17\x69\x47\xb7\x19\xa9\x54\xb7\x65\xe6\x2c\x33\x34\x5a\xbc\xf1\xae\xab\xe8\x4b\xde\x74\xc7\x4e\xe6\xd8\x43\x84\xf7\x23\x74\xeb\xe1\xad\x06\x93\x7e\x97\xb3\x4d\xcb\x77\xf8\x3d\x22\x5c\x87\xe3\xf4\xc0\xda\x88\xae\x5b\x36\x27\xcd\x08\x78\x9e\x2a\x1c\xb7\xec\x6e\x66\xd3\x67\xc2\xeb\x43\xa7\x50\x3e\x04\x09\x8d\xfc\x92\xa4\x4a\xab\x01\xcc\x84\xf7\x00\xbd\xb2\xaf\x07\x84\xd0\x5a\x99\xae\xeb\x7d\xba\x29\xab\x4f\xad\xe2\xd7\xd9\x43\x4c\x4f\x4e\x4f\x11\x41\xc0\x62\xa9\x61\xb1\xaa\xac\xfa\xe2\xe7\xc4\x42\x62\x88\x47\x70\xec\xa7\x50\xc8\xaa\x38\x64\x06\xba\x7f\x72\x82\xe8\xf4\x18\xd1\x93\xb0\x5e\xcf\xd5\x2c\xd8\xd1\x65\xf6\xab\x1b\x3b\x37\x05\x0b\xd8\x60\x87\xaf\x94\x0b\x11\x7e\xea\xba\x55\xdb\xa3\x67\x3f\x1c\x07\x43\x85\x42\xe9\x68\x39\x08\x1d\x4c\x69\x8c\xed\x53\x10\x14\xab\x87\x24\x2c\x69\x7b\x30\xb7\xe7\xe5\x56\x5c\x81\xde\x6b\xaa\x6c\xd9\x3b\xbd\x02\xc9\x33\xd2\x94\x07\x9d\x09\x77\x0c\xce\x09\x97\xd2\x7d\xe3\xa3\x96\x78\x64\xe2\x82\x20\x04\x8b\x7d\xd4\xd8\x21\x65\x69\x01\x66\xfc\xfe\x02\x81\x19\xf9\x84\x1b\x29\xc2\x9b\x1d\x6b\xa9\x37\x91\x50\x78\xa2\x66\x7c\x97\xce\x98\x0d\xd2\xcf\xb1\xe5\x35\xb4\x36\x44\x9a\x92\x96\x70\x50\x9a\x1e\xb4\x69\x34\x77\x2c\xdf\x9e\xfa\x16\x76\xc7\x08\x7e\x26\xd4\x9f\xc1\x32\x2c\xbb\x62\x7d\x2b\xf2\x24\x57\x85\x2d\x35\x29\x82\x10\x00\x85\xa3\xf5\x7a\xc6\xb1\x70\x23\x36\x88\x8b\x6f\x91\x03\x50\xf7\xa2\x58\x9f\x2c\x6c\x0f\x3b\x64\x6c\xbb\x86\x06\x9d\x16\xde\x81\x25\x6a\xc4\xd2\x22\xf6\x05\xee\x55\x63\x43\xd6\x73\x2d\xd2\x20\xb5\x2c\xe6\xff\x08\x59\x8c\xb7\x5e\x16\x6c\xdd\xb2\x4a\x95\x59\xbb\x54\x61\xd9\x09\xb5\x01\x73\xa0\x70\xe6\x89\x1c\x98\x88\x9b\x08\xb0\x10\xc4\x2c\xa1\x16\x3d\x8f\xec\xbc\xb0\xd8\xfe\x7f\xb3\xed\x46\x15\x3a\xdb\xae\x6f\xea\x80\x6c\xb8\x8d\x83\x15\x67\x44\x40\x94\x80\xf5\x57\x87\x3e\x58\x55\x75\xf0\xdd\xe2\xca\xd5\x88\x4c\xcf\x68\xa2\x28\x2c\xc1\x4a\x04\xe0\xb0\x2c\xe0\xc1\xe9\x02\x8e\x3b\x22\xe0\xb7\x23\x33\x64\xcc\x5f\x8f\xa1\xc1\x10\x56\x04\x96\xe5\x01\x5e\xd0\x44\xfa\x53\x8d\x68\xcb\x88\x90\x6d\x57\xe7\x87\x72\x27\x3b\x8e\x5e\x24\x3a\x52\xb5\x61\x5d\xae\xd6\xd4\xaf\x72\xcb\x5b\x8e\xe0\xda\xb6\xaf\xe5\xb5\x3a\xfe\xa2\x89\x57\xaf\x2a\xb6\xe1\x70\x0d\x33\x74\xc6\x71\xdb\x67\x6d\xd7\xd4\xd5\xea\xc5\x69\xcd\xea\x16\x5b\x42\x78\xa9\xf8\xf9\xd9\x53\x8d\x27\x96\xc1\x63\xc8\xee\x98\xaf\xca\xee\x75\xbf\x78\xd4\xa6\x2b\x92\x0d\xb0\x80\x3c\xcb\xd2\x75\x53\xdc\x3c\x7f\xf0\xb0\x7d\xf0\x42\xf7\x99\xc5\x2b\x68\x5f\x39\xb4\x3c\x7b\x9a\xbd\x60\xe9\xb9\xad\x37\x24\xd4\xc6\x59\xea\xed\x56\xc6\x97\xd8\xdf\x56\x20\xd1\x7e\x6c\x4d\x17\x15\x30\x57\x34\x8a\x1f\x2a\x70\xe6\x68\xdd\x8f\x8f\x0e\x9b\x89\x49\x91\x7d\x41\x05\x15\x06\xc6\x8e\x5b\xd5\x05\x4c\x93\x6d\x0b\xa9\xcb\x86\x05\x76\x9c\x0d\x03\xc9\xe6\x1a\x6f\xda\x30\xe3\x04\x24\x68\x94\x61\xf9\x29\x2b\xb5\x44\x24\x0d\x8e\xb3\x3a\x65\xe1\xa4\x90\x91\x56\x40\xbf\xcc\x53\xcd\x94\x09\x81\xd1\x1b\x41\x98\x60\x23\x1a\xfe\xce\x18\x80\xf4\x3e\x98\xfe\x90\x5f\x8e\x91\x81\xe4\x17\x68\xdd\xda\x97\xb7\xaa\x63\x23\x81\x16\xaa\x40\x9e\x3e\xaf\x75\x4f\x22\xb5\x48\xb4\x9a\x04\xe8\xae\x88\xc8\x9d\xab\xa3\x3f\x94\x42\xb4\x09\xb5\xfd\xbf\xa6\x39\xa9\xe0\x7e\x3a\x99\x40\xaa\x93\xe9\xd8\xcf\x85\xa1\x88\xaa\xbb\x79\x07\xe7\x53\x30\x8d\xb4\x54\xe7\xa6\x21\xe6\x83\x02\x82\xe0\xa2\xac\x72\x99\x36\x4a\xf5\xea\xf7\xe0\xc8\x9d\x16\xd3\x8a\x81\x60\xe3\xe3\x80\x7e\x07\xc8\xbf\x8a\xca\x0f\x68\x83\xb8\x55\x5f\x05\xdc\x42\xa6\xe3\xbc\xab\xc5\xd6\xa5\x9d\xbc\x24\x7d\x03\x3e\x4f\xc7\x52\xe0\x35\x27\xb7\xea\x77\xa7\x9b\xa2\x96\xe5\x95\x46\x62\xc0\x01\x98\x20\xa9\x75\x88\xc0\x97\x57\x3d\xad\x14\xdd\xaf\x56\x6f\x26\x8c\x01\x4d\x3d\xe3\x0f\x6b\xd9\xbf\x4e\x8f\x2f\xdf\xcc\x12\x57\x9f\x95\xf9\x6b\x46\x32\x93\xb4\x60\xef\xb4\x5e\x26\xa5\x21\x7f\x71\xbb\x25\x92\xdd\x8c\x6c\xc8\x09\x72\x76\x7d\x1a\xf5\x47\xfa\x12\xa7\x0b\x8a\x8b\x36\xb0\x04\x48\x6d\x68\xc9\x90\x33\xbb\x9e\x7e\x47\x88\x75\xf6\x28\x5e\x11\x76\x77\xcc\xeb\x02\x4f\x95\x4c\x10\xb4\x07\xb7\x1a\xb8\xc8\x10\x24\xb4\xe1\x94\xe5\xdb\xc6\xcd\x15\x6b\xb0\xce\x96\x30\x36\xa0\x04\x90\xe1\xce\xc6\x33\x6a\xaf\x5f\xe8\xc2\x46\x8b\x92\x3e\x98\x9f\xa9\xb0\x51\xd9\x7f\xe5\x76\x89\x64\xa6\x38\x0e\x55\x33\x2a\x73\x5f\x6c\xd8\x93\x4e\x1b\xe4\x37\x21\x55\x11\x8b\xb6\x20\x15\xc8\x6d\x3e\xb2\xe7\xa2\x93\x24\x64\x6c\x43\xeb\x88\x15\x46\x10\x44\xc0\xd8\x75\x14\x0d\xca\xd8\xfd\xc9\xf1\xf9\xf9\xc5\xb5\xe7\xf2\x4c\x59\x55\x4e\x6b\xd1\x77\xce\xff\x66\xd4\x2e\xf3\xc2\x41\xfb\xe0\x90\x15\x41\x78\x3f\x20\xcd\x71\x08\x2e\x9c\xf8\x56\x3a\x05\x57\x35\x66\x73\xcd\x6d\x91\x1c\x79\xdc\xfe\xfc\x90\x82\x92\x7c\xe0\xe5\xf1\x63\x62\x36\xc6\x0b\xfe\x4f\x42\x33\x6d\x60\x1a\x07\x35\x7b\x0b\xba\x77\x37\xa5\x06\xd4\xf9\xc8\x6c\x0b\xb6\xd7\x67\x90\x40\x09\xf7\x35\x18\xe9\x4d\x8a\xdd\xb5\x23\xb6\x42\xd5\x0d\x68\x90\x91\xdb\x57\xe5\x1f\x3d\xd6\x77\x96\x3f\x49\x5e\x61\xb7\xae\x45\xb9\x11\x6e\xfb\x9b\xfb\x90\x78\x0e\x0d\x7c\x31\x83\xca\xe9\xeb\x59\xbb\x63\x4f\x35\xe2\xb6\xed\xf3\x07\x7d\x99\xb2\x51\x83\x3d\x43\x1e\xbc\x20\x69\x91\x77\xa9\x69\xf8\x08\xe2\x05\x1b\x26\x3e\x99\xbd\x6b\xe8\x5f\x8f\x34\x73\xa4\xe4\x34\x78\x53\x22\x76\xa2\x15\x2a\x5b\x8b\xc1\xa2\x13\x4b\x57\x1a\xf4\x82\xb9\x33\x53\xf7\xa7\x22\xc4\x94\xee\x48\xe8\xb8\x9e\xd2\x5f\x53\xc2\x1b\x54\xe2\xf9\x44\x45\x1a\x9c\xa6\x70\x91\xbe\xde\x2b\x1a\xef\x25\x2b\x54\xb3\x55\xd9\x91\x4c\xcf\x67\x28\xa0\x69\xd3\x84\x21\xa6\x88\xc3\x18\x12\xb2\x98\x89\xbc\x06\x8b\x8c\x65\x55\x76\x73\x5e\xa7\xb7\xe2\xc1\x4e\xc5\x66\x1b\x91\x81\x62\x44\xcb\x86\x71\xfa\xee\xd7\xe3\xd3\xb3\x5f\x67\xdb\xdc\x1c\x5a\x14\x9f\xea\xc9\x12\x60\x34\x2f\x6e\xb2\x7e\x63\xa6\x36\x74\x18\x11\xe9\x2f\x88\xd0\x63\x13\xa4\x15\x11\xfe\x6e\x65\x49\x94\x83\x14\x6f\x2c\xe6\x31\xcb\xbc\xdf\x1f\x30\x40\x0d\x77\x71\xbe\xdd\x0e\x35\x2c\xe1\x7e\x73\x14\x6f\xf1\xcf\xd9\xb8\x98\xaa\x1b\x48\xb4\xf9\x99\xe8\xb1\x0e\x73\xc2\x77\xe7\x3a\xc4\x0b\x3f\x4c\x3d\x4c\xcb\xa6\x1b\x65\x31\x49\x93\x0e\x5c\x6c\x52\xfc\x3e\x59\x6c\xfa\x42\x83\x4d\x96\x97\x3d\x09\x87\x82\x47\xa3\x71\xab\x49\x87\xe5\x4c\x4f\x9b\x04\xe3\xa2\x10\x33\x78\x2f\xcf\x4d\x0d\xe0\x7d\x73\x16\xb1\x55\xf5\x73\x50\xb6\x11\x00\x77\x54\x73\x89\x7b\x23\x91\xe2\xa3\x0a\x87\x38\xc8\xda\xb1\xcd\xd4\xb6\xeb\xb3\xd0\xdf\x3c\x91\x49\x61\x33\x4d\xa7\xc8\x8d\x9b\x6b\xf0\x5c\x66\xb7\xd4\x78\x92\xe1\x60\x4c\x80\xa9\xd0\x99\x84\xb9\x59\xce\xec\x78\x77\x37\x67\xcb\x0d\x38\xf0\xee\x2e\x81\xcb\x05\xad\x5f\x73\x2c\x8f\x12\x09\x7e\xb8\x29\x77\x72\x76\x8b\x12\xca\x42\xfc\x26\x11\xb8\xf8\xe7\x44\x90\xe2\x46\x08\x03\x8d\x03\x5d\x9c\x40\x7c\xf7\x67\xb0\xa7\x8e\xc5\x73\xb1\x24\x3f\x7f\x30\x5f\xd0\x1c\xfd\xf4\x20\x10\xd7\xf9\xe8\x17\xcb\xe8\xdf\x91\x20\xb5\xd7\xfd\xce\xf7\x12\x4a\xec\xfb\x2f\xf8\xea\xd9\x0f\x4f\x36\x57\x39\x90\xe8\x17\x1b\x64\x13\x3d\x0c\xc4\xcc\x28\x61\x81\x54\xd9\x06\x09\xa3\x21\xe7\xf8\xa3\xe7\x5e\x8a\xa6\xf1\x3c\xfd\x17\xfe\x4a\x5f\xf1\x97\x76\x85\xa7\xb1\x9b\xa3\x18\xe1\xc1\xc4\x0e\x1d\xd3\xc0\x71\xd4\xbb\xd3\xcf\x69\xf1\x66\x09\xb0\xaf\x6e\x2c\x06\xc8\x2e\xd0\xc9\xae\xe7\x2d\x7b\x1e\x77\xab\xed\x92\x62\xe0\x4f\xce\x91\xbc\x64\x05\x25\x38\x6b\x7d\x54\x46\xe2\x58\x85\xb2\x88\xae\x29\x20\x5e\xd1\x9f\xa6\xe1\xe8\x58\x97\xc1\x3e\x2b\x40\x44\x72\xff\x29\xbd\xa6\x18\x85\x28\xc2\xa4\x44\x41\x91\x3e\x3c\x44\x84\x69\xd4\x82\xe3\x72\x80\x48\x7e\x53\xb4\x1d\xa1\x08\xba\xae\xfb\x48\xb8\x8d\x65\x27\x9e\x83\x08\x25\xea\xd7\x2a\x36\x78\x09\x26\xb0\x70\x36\x19\x7b\x89\xbd\xcb\xf6\xf2\x49\x98\xd6\x53\x47\xaf\x25\x24\xd1\xf0\x7b\x16\x50\x78\x47\x3b\x78\x2c\xe3\x4a\xc3\x97\x16\x4e\xac\x01\xb3\x71\x43\x2c\x65\x70\xe8\x29\x5d\x0e\xd2\x6f\x44\xbc\x7f\xc9\xc2\xbd\xc5\x65\xe0\x5f\xa9\x79\x71\xb8\xf8\x2d\x4d\x7f\x31\xe6\x9d\x49\xc8\xa5\xe4\xe2\x60\x74\xca\xc7\xff\x2c\xce\x5c\x38\x2f\xf8\xdf\xc5\x12\xc1\xe8\xfc\xa1\xff\x44\x31\x3f\x93\x73\x81\x2c\xd7\xcb\x29\x2b\x1f\x3d\x1b\x8e\x45\x90\x54\xf1\x22\xb8\x80\x11\x95\x68\x1f\xe9\x61\xf2\x92\xf0\xdf\xcc\x5d\xfe\x13\xfe\x14\x0e\x19\x95\xe2\x06\x37\x1c\xdb\x41\x35\x21\x0c\x55\x35\x09\x26\xd5\x85\x90\x52\xe3\x76\x0a\x98\x24\xcf\x2a\x82\xbd\xa0\x88\x90\xb4\xa2\x82\x59\x66\x1a\x94\x0c\x31\x6a\x1a\x9e\x96\x06\x76\x96\x87\x20\xa9\xc1\x71\x3b\x03\x20\x69\x66\x36\x01\xca\xca\xae\x87\xa3\x8e\x0f\x81\xd4\x62\xe1\x18\xc2\x70\xf4\xfc\xf8\xd0\xd0\x0e\x07\x48\x12\xe7\xbb\x4d\xb6\x2c\x9c\xc3\x2f\x80\xb0\xea\xf2\xf9\xbc\xa8\x1a\x57\x98\x56\x16\x95\x07\x84\x76\xd9\x82\x92\x1f\xe6\xc0\xa6\xcb\xcc\xb8\xf2\x49\x82\x3a\x4b\xa4\xc9\xc5\x5e\xa6\x56\x72\x54\x64\x98\x46\x02\x02\x2f\x3e\x62\xa2\x3d\x67\x6d\x89\xc3\x7c\x18\x63\x22\xc7\xbd\x14\x35\x84\x39\x58\xf2\x88\x6e\x34\xe7\x3d\xc3\xeb\x21\xf8\xe0\xdd\xe1\xa2\x0f\xe4\x53\x09\x05\x72\xc9\x38\x65\xc6\x6e\xe1\x8e\x53\x1e\x63\x33\x16\xdc\x72\x0a\xb4\xd5\x73\xba\xb4\xc8\xf2\x8a\xec\x9a\x9a\xab\xbe\x3c\x95\x49\x46\x39\x9f\x2f\xee\x34\x8f\x8c\x73\xce\x5b\xbd\x07\xb2\x6c\x79\x3f\x17\xcb\xaf\x66\x39\x73\x11\x13\x59\x5a\xf1\xe7\xbb\xe2\x53\x62\xe3\x94\x19\x2b\xbd\xd8\xef\x7d\x8b\xc0\x14\x08\x53\x29\x40\x2e\x10\x98\x02\x11\x7b\x90\x6a\xad\xbc\x0a\xc0\x3c\xa4\xfb\x0b\x93\xd5\xf2\x16\xb6\x83\x7f\x8b\x0d\xed\x7b\xc0\xd9\xc9\x8b\x99\xa9\x58\xc5\xce\x6a\xb8\x80\xe1\x73\x38\x12\xbe\x74\x0f\x2f\xc5\x0f\x33\xf0\xe4\x01\xe2\x09\x42\xc2\xe9\xc3\x0f\x3f\x7c\x6c\x19\xf3\xce\xdc\xf8\xf4\xe1\x87\x1f\x3f\x92\x0c\x83\x3f\x16\x62\x46\xb9\xe7\x37\x6c\x7b\x18\x17\x81\x1c\x06\xbd\x6b\x8a\xdb\xb2\xee\x71\x92\x57\x83\x9e\x27\xc0\x9f\xff\x9c\x7d\xf7\xa3\x69\xed\x0e\xc8\x0d\x66\x75\xee\x92\xe2\x59\x5d\xf5\xdb\xb9\xf5\x51\x66\xfd\xb0\xc7\xfa\xcd\x82\x3b\x57\xf9\xbb\xfb\xe6\x3d\x7a\xea\x72\x99\x93\xc0\xc6\xed\x37\xe9\xed\x9f\xe4\xcb\xf7\xfe\x77\x57\x59\x1d\x58\x29\xaf\xe5\x98\x1f\x0b\xbb\xce\x5e\x7a\x57\x74\xb3\x98\x19\xd9\x91\x62\xb4\x3a\x4e\xd2\x86\xc4\x20\xea\x0a\x87\x14\x03\x6f\x0a\xe0\xc6\xe0\xde\xe1\x73\x90\x38\x2c\x4c\x80\xa6\x4a\x53\x0e\xeb\x09\xe5\x64\x90\x2e\xe8\x56\x64\xc9\xea\xf3\xcd\x98\x92\x56\xb9\x62\xec\xf3\xdb\x0b\xda\xd5\x7a\x6f\xc1\x25\x02\x16\x2d\x07\xad\xd4\xb9\xd4\x51\x50\x64\xd2\x70\x63\xd6\xcd\xdd\x4d\x02\xaa\x50\xc0\x2d\xaa\xf5\xbe\xee\x03\x0c\x99\xbb\x3f\x09\xdf\xa4\x8b\x80\xfd\x9a\x8b\x3f\x6f\x56\x71\x54\x04\x5a\x56\x73\x73\x6b\x55\xf9\x9c\xca\x64\xd7\x0d\x11\xb3\x89\x38\xf8\x50\x92\x78\x55\x1d\x3e\x81\x11\x19\xfb\xaf\x46\x8d\x0b\xa7\xa1\xac\x53\x36\x21\xfc\x3a\x1a\xa7\x2f\xeb\x4d\xed\xd7\x59\x7c\x0d\x01\xc4\x56\xf5\x30\x1f\xc8\x4a\x92\xec\x89\x4e\x67\x16\x28\x2a\x5e\x09\x04\xb2\xc8\x4b\x2e\xe7\x57\xfa\x8b\x13\x06\xfe\x12\x71\xa2\x73\x95\x96\x06\xc2\x61\xda\x4e\x6c\x8e\x4b\x51\xaf\x03\x80\x3a\x63\xd9\x24\x98\xb7\xad\xe8\x0e\x19\x8d\x81\xac\xfa\xd0\xad\xd5\x61\x88\x65\xe8\xb2\x92\x63\xab\x5c\x36\x6f\x23\x21\x55\x1c\x2a\xb4\xe4\xc3\x1b\xfd\xd3\x55\x7b\x1b\xa9\xb4\xd4\x1f\x55\x51\x23\x5d\xbc\x43\x81\x1b\x0f\xc0\xa2\x76\x19\x51\x8f\x6c\xdb\xaa\x6c\xcf\x31\xba\x07\xdd\x4e\xc3\x59\x47\x0d\xb8\xdb\xd7\xa9\xd3\x7f\x70\x8d\x06\x33\xe9\x2c\xe5\xcc\x76\xdc\x02\x14\xac\xf9\x67\x5a\x2c\xb1\x35\x52\xf7\xfb\x0d\x38\x28\xf6\x39\xe4\xe3\xc6\xcc\xfa\x4e\xf6\x0c\xa4\x77\x2f\xed\x04\xc9\x13\xa2\x59\x90\x3a\x2d\x9e\x0d\x01\x72\x2f\xf4\x3e\x6c\xa3\xba\x49\xfd\xed\x69\x8a\xe9\xc5\x19\x75\x4a\x5f\x29\xbe\x86\x4d\xb0\x05\x64\x58\xb4\xe3\xc3\x71\x8f\x68\xd4\x16\x6b\x9a\x94\x72\x72\x40\x24\xce\x40\x0f\xa4\x61\x57\x9f\x38\x35\x18\xeb\xd0\x47\xc5\x0f\xa4\xe3\x49\xec\xd8\x84\x85\x53\x7e\x98\x30\x61\x0c\x0c\x53\x7d\xa7\x4f\xa9\xc7\xac\x79\xa5\x8f\xed\x48\xf9\xf7\x71\x27\x0b\x71\xeb\xe0\xff\x30\xc1\x9d\x85\xd4\xa2\xe6\x42\xf7\x5a\x22\x0a\xd7\x18\x7f\x46\xf0\xc8\xb9\xb4\x3f\xba\xa3\xe2\x9e\x6c\xb7\x4f\xf2\xfc\xd1\x44\xaf\x03\xa2\x77\xdd\x1e\xec\xce\xa9\xbc\x37\xa0\xfe\xa0\xa4\x80\x83\x4c\xe3\x8e\x01\xa2\x71\x7a\xcf\x8e\x81\x05\x1b\xeb\xd2\xdc\xe3\x0d\xe4\x1d\x8c\x5d\x5b\xa7\x3b\x5a\x7b\x08\xed\x6e\x17\x84\x4d\xf6\xe2\x2a\x1d\xf6\x64\xe0\xa2\x13\x24\x0d\x4e\x74\xdc\xdb\x3c\xc3\x83\x4e\x5b\x36\x01\x6f\x0f\xa0\x44\x6e\x63\x38\x88\x90\x80\xe7\x79\xa4\x3a\xbe\x37\x01\x38\xc5\xf5\x7c\xdd\xff\x91\x9c\x6f\xaa\xf2\x29\x12\xf8\x12\xef\x9b\xba\x52\xc6\xe2\x66\x42\xdf\xf0\xc0\x93\x90\x4f\x0a\x0e\x74\x02\x3f\x27\xe1\xb7\x07\x5b\xd7\xf5\x27\x39\xd4\xba\x40\xd0\xa7\xac\xca\xce\x12\xf9\xce\x8c\xd7\x71\xea\x22\x6b\xcb\x65\x78\x75\xcd\x2f\x1c\x31\xd1\xc4\x9c\xc7\xb8\x99\xff\x5d\xb4\xbf\x53\x7c\xa5\xff\x93\x09\xc3\x81\xa8\xfb\xdc\x85\x1d\x62\xbe\x62\x27\x3a\x97\xaa\xee\x4b\x41\x55\xea\x6d\x35\xae\x4b\x3d\x81\xd8\x7a\x36\xbd\x4b\xe3\xdc\xe0\x0e\x65\x31\xfa\x18\x1a\xbc\x79\x83\xd1\xb9\x0b\x8d\x3c\xe2\xa6\x3c\xe1\x62\x87\xfd\x7b\x08\xc5\x35\xc5\xf9\x02\xb3\x19\x4f\x83\x17\xe6\x4e\x3c\x06\x73\x9b\x5e\xde\x85\x38\xb6\x91\xf3\x96\x6e\x25\x1e\x42\x70\x23\x66\x77\x63\x8e\x8a\x7d\x97\x89\xae\xe5\x06\x10\x7f\xfa\x0f\x52\x23\x76\x48\xf9\xf0\xa3\xd5\x8b\x6b\x95\x70\x90\x80\x7d\xb2\x5b\xd9\x63\x50\x87\x68\x71\x8e\x13\xc9\x32\x73\xa2\x1b\xef\xc0\x0f\xb7\x45\x9c\xdf\x83\x3f\x01\x2b\xde\x75\xd6\x54\xa4\x05\xe4\x33\xf0\x25\x05\xee\x03\x13\xfd\x00\xd0\x90\x72\x41\xfc\x49\x76\xf0\x25\x5b\x16\xf9\x62\x77\x81\x52\x22\x7b\x84\x8b\x6c\xf9\xc9\xb5\x88\xd9\x5f\xd1\x74\xf0\x82\x1e\xa3\x9d\xbd\xb0\x96\x10\x3f\x9e\xed\x5e\x3c\x81\xa4\x2c\x17\xa6\xa0\x17\x32\xc1\xcb\x9b\x00\x21\xf0\x44\x60\xcf\x82\xdb\x32\xef\x89\xbc\x79\x30\x66\xcf\x9e\xee\x5e\xc4\xf9\x89\x22\xb0\x1d\x73\xb0\x8c\xc1\xc0\xb1\xe8\x52\xe2\xf4\x25\x1f\x33\x80\xbf\xfb\x8d\x3f\xc6\xd1\xa2\x86\x83\xb3\x28\x60\x45\x01\xa9\x1b\x3b\xf9\x82\x17\xe0\x18\x27\xa6\x53\xe0\xc2\x2d\xe8\x15\x0e\x86\xa5\xab\x79\x40\xda\xd8\x8e\x37\x9a\x9d\x28\x4a\xb6\xf9\x07\x9b\x4e\xde\xab\xde\x35\xcd\x32\x34\x87\x9b\x17\x6f\x3b\xa7\x13\xdb\xcd\x0e\x94\x1d\x5e\x3c\xc7\x14\x5b\x6f\x9e\xa3\x3f\x27\x41\xf4\xe1\x0c\x03\xf7\x9b\xa8\xac\xd8\xfd\x26\x68\xa0\x2c\x35\x87\xca\x39\x99\x2c\x43\x9d\x04\x82\x52\x70\x78\xa6\xc4\x31\x89\xb9\x9e\xe8\xd6\xcb\xe2\x86\xe7\x14\x34\x75\xbf\xae\x83\xf3\x84\xe2\x13\x84\xc9\x1a\x36\x64\x16\xf7\x75\x2f\xeb\x83\xe2\x45\x57\x8b\xc1\x32\x62\x93\xcf\xd6\x12\x9c\x4d\xdb\xf6\xc4\x5b\x36\x25\x0d\x3a\x96\x0c\xbd\x97\xe8\xe2\xea\x1a\x37\xbe\x10\x2f\x24\x46\xb3\x62\x7a\x4d\xff\xb2\x26\xe5\x97\x4f\x8f\xf0\xf5\x40\xec\xd4\xb7\x4a\xeb\xe5\x92\x5d\xf9\xca\x4a\x6f\x54\xd8\x17\xe6\x74\x52\xe5\x1b\x71\xeb\x0b\x9d\x22\x8d\xef\xca\x7e\x53\x8a\x2b\x80\x98\x09\xb4\xbb\x62\x49\x42\xc9\x8c\xad\x3d\x4d\x85\x7b\xf3\x52\xd3\x3b\xef\xdd\x9e\x72\x3d\xc1\x3e\x11\x2b\x97\xb3\xf1\x02\xe9\x2e\x28\xb3\x55\x12\xfd\xde\xf1\xd1\x01\xb1\xd5\x71\x02\x89\x13\xc5\xe6\x46\x8e\x81\xb0\xdf\x0d\x44\x39\xb9\xcd\x86\xf7\xfe\xe5\x92\x0f\xde\x41\x43\x01\xea\xd0\x08\xf7\x25\x9c\x7d\xe6\x9e\xed\x8a\x86\xc5\x11\x73\xfd\x0d\xbd\x3e\x87\x6d\x82\xae\x69\xed\x7a\x23\x6c\x01\xc3\x07\xc1\x55\x0e\xaa\x1f\x31\x2f\x66\x99\xcf\xcc\x32\xb6\xa7\xba\x93\xc3\xe9\xbc\xd2\x11\xbe\x70\xb2\xca\x40\x64\xfd\xc0\x09\x54\x3e\x62\xd4\xeb\x70\x98\x43\x35\x10\xca\xf5\x4c\xb4\x48\x17\x64\x46\x90\x38\x4c\x8c\x20\xbc\xd1\x08\x40\xe6\xdf\x36\x64\x61\x0a\xee\xe5\x80\xd7\x11\x25\xea\x9c\x42\x89\xe1\x9d\x1d\x42\xbe\xf7\x4c\xa3\x80\xca\xa3\x2b\xe7\xd0\x43\x3d\xab\xfe\x8c\x0f\x5a\xbf\x60\xea\x7d\xf6\x14\x41\xa7\x30\x2a\xe5\xf1\x0d\x57\x01\xc5\xf1\xed\x45\x35\xe1\x0f\x4b\x5f\x53\xac\xb2\x26\xb7\x83\x6a\x4a\xfd\xec\x87\x05\x2a\x0f\xfd\x90\xb3\x0d\x49\xe4\x5a\x04\xcd\x56\x02\xf9\xc4\xbb\x52\x44\x28\x7c\x3f\x9b\x29\x21\xcc\xf9\x73\x99\x5a\xec\xe2\x59\xb0\x95\x94\xe7\x80\x4c\x28\xab\x07\xdd\x7e\xfc\xe7\xab\x8b\xf3\xa3\xf4\xf3\x93\xfd\x7e\xff\x84\xb3\x3f\xe9\x9b\x0d\x3b\x43\xe6\x7c\x10\xee\x7f\x9c\xbd\x3d\x4a\x8b\x6e\xf9\xfd\x8c\xa4\x77\x4c\x0d\x2f\xf6\xaa\x8f\x18\x94\x5c\x26\x4b\xd6\xec\xfe\xf1\x29\xb3\x93\x13\xd3\x7a\x9b\x58\x78\x7e\x3a\x64\xda\x3c\xec\x66\x7b\x57\x2a\x10\x1b\xbc\x97\x18\x0b\xd2\x95\x60\xba\x46\xc0\x27\x00\xab\x36\x7c\xef\x19\x1d\x22\xdc\x20\xbe\x65\x1f\x9b\x7e\x93\x0b\x9d\x1a\x47\xa3\xde\x29\xca\x8a\xfc\xe7\x61\x49\xd8\xab\xc5\xe5\x49\xcf\xd3\x3f\xb3\xa2\xc7\x28\x15\x2a\xe0\x24\xa3\x02\x00\x87\xb4\x84\x19\x96\xea\xed\x0f\xc5\x30\xc1\xef\x9a\x9f\x16\x1d\xdc\xc5\xa7\x68\x43\x5a\xee\xda\xe6\x47\xd3\x26\x2a\xad\x6b\x54\x58\x23\xdc\x5b\x5c\xbf\x22\x6a\x1e\xcc\x01\x5e\x97\xf6\xc3\x79\x30\x5c\x92\x74\x92\x79\x76\xaf\x93\x6c\xc4\xf1\x15\xf0\x4b\xf3\x4c\x25\x88\x91\x44\x17\xd4\xa0\x92\xdd\xa8\x06\xd9\x38\x98\x6b\x2f\xed\x1c\x17\x76\x0f\x4e\x5d\x5c\xbc\x04\x19\xd5\x80\x81\xc4\x24\xc3\x08\x69\x37\x24\xe6\xcd\xc3\x19\xce\x8b\x59\x6c\x52\x64\x10\x78\x0d\xb3\xb7\x8d\x79\xa6\x8c\x7c\xa6\x43\x31\x43\x4a\x35\x9f\x40\xf1\x5d\x1c\x24\x0e\x6f\xf5\x1b\x24\xb3\x66\x21\x17\x8e\x9e\x48\x28\xc4\xd6\x6e\x53\xdf\x99\x5b\xf9\x29\xbe\xf4\xbc\x56\xd8\x33\x0f\xa6\x9d\xf2\x90\x81\x04\x5f\xcf\xe3\xe2\xfe\x1a\xdc\xdc\xa1\x62\x40\x75\x97\x0a\x0c\xfb\x9c\x85\xa2\x5e\x64\x95\x99\x68\xde\x84\x67\xb2\x83\x1a\xfa\x50\x9f\xba\x1a\x0e\xf8\x50\xc7\x59\x43\x3f\xea\x20\xeb\x57\xf8\x51\xc7\x48\x1a\x7b\x49\xfb\xae\x7e\x85\xa3\xf4\x54\xa7\x03\x03\x84\x92\xf1\x14\xe2\x27\x32\x4c\x19\x22\xf2\xb0\x6f\xde\x12\x11\x9a\x1d\x44\x37\x28\x5a\x58\x70\x06\x0a\xdf\xd7\xe8\x98\x53\x2d\xf1\x28\x09\x90\xfb\x25\xb3\x44\x5e\xde\xdc\xcc\x16\x4d\xbd\x6f\xd9\x51\x1b\x77\xf3\xb1\x2f\x09\x7f\xa7\x57\xf8\x16\x10\x36\xb9\x82\x28\x24\x20\x91\xe2\xfb\x40\x91\x12\x90\x48\x5e\xda\x46\x77\xa3\x9d\x52\x0a\xae\x23\xe3\xab\x0a\xf9\x7c\x95\xa4\xcc\x24\x0b\xb1\xf3\xfd\x9c\x43\x70\x30\x87\x89\x84\x55\x71\x64\xba\xe2\x18\x05\xe3\xa0\x21\xdc\xdc\x55\xb1\x09\xa6\x27\xde\x20\x87\x79\xcf\x55\x10\x96\xc1\x11\x18\x11\x43\x09\x41\xcb\x83\x84\x8e\xaf\x04\x61\xb8\xf4\x10\x8a\x20\x4c\xfa\x5f\xde\x9c\xcb\x27\xbc\x59\xf4\xfc\x1f\xdc\x59\x5e\xb2\x5f\xa1\xf9\xc8\xcc\xa6\x7c\x65\x2c\x4d\x7c\x8e\x44\x3f\xb5\xcb\x92\xf1\xe5\x20\xf2\x26\xbb\x81\xad\x92\xff\x5d\x2c\x09\x73\x3e\xdb\x65\x53\x3c\x19\x66\x23\xe4\x08\xaa\xaf\x10\x70\xf1\x6a\x6b\xe4\x3f\x17\x97\xb1\x5d\x31\xc0\xe1\xc3\xdc\x63\xc4\x3c\x6e\x88\xee\x1e\xd2\x42\x5b\xb2\x02\xae\x04\x3a\xa8\x10\xd4\xe1\xaf\xb4\x01\xed\xe0\xfa\x60\x83\xe8\xb2\x95\x73\x17\xcf\x56\xb2\x67\xe3\xd3\x20\xda\xdb\x19\xe4\x28\x8f\xbf\xd7\xc6\x4c\x0a\xde\xa3\x8a\xd2\x71\x41\xe7\x32\x74\xd4\xa2\x48\xf6\xd0\xc2\x31\xd2\x76\x3d\x1b\x0e\x84\xdb\x3b\x52\x9c\xa5\xf8\x76\x50\x26\xa9\x30\xb9\xcc\xb7\x79\x20\xac\x08\x01\x85\xcb\xca\x59\xd6\x7c\xe2\x1b\xfb\xb0\x3f\x65\x05\xec\x1b\x3d\x37\xca\xff\xe1\x88\xe9\x4d\x91\x97\x12\x1a\x55\x18\x3b\x88\x20\x37\x74\x26\x63\xa6\x2e\x03\x4b\x57\x72\x46\xf9\xad\x84\xe4\x8a\xe7\x21\x65\x8c\xcf\x4d\x50\xda\x93\xe1\xb8\x05\xf0\x0e\xd1\x7f\x29\xfe\xcf\xff\xfa\xdf\xc4\x9e\x76\x35\xad\x96\x38\xd1\xa3\x97\x49\xf8\x71\x37\xf7\x50\x7f\xaf\xe7\x13\xf0\xe8\xa0\x21\x82\xfe\x54\x0f\xc9\x50\x68\x44\xa3\x7c\xe9\x9f\xd1\xf7\x15\xdb\xa8\x62\x22\x87\xb6\xe3\xc9\x1c\xf6\xf1\x61\x19\x46\x54\x73\x5d\x23\xdc\x61\x76\x1b\x5c\x0c\x9a\x1c\x11\x55\xa2\x9b\x5e\x52\x92\x0f\xa4\x53\x7f\xf4\x57\x9e\xb8\x81\x88\xae\x3b\x81\x8a\xe3\x61\x0c\x61\xaf\x98\xfc\xc6\x37\x1c\x8b\xca\x28\xf7\x2b\x61\x4b\xca\x9c\xc0\xe5\x0a\x02\x39\xa0\xe6\x0a\x09\x2b\x7a\xd4\xda\x29\x35\xbd\x7a\x0b\xe7\xc0\x26\x8e\x0a\x86\xc7\xdf\x48\x63\xd4\x4d\x09\xb9\x5a\x41\xb7\x63\xa2\xab\xd2\xe1\xe0\x68\xf6\x1f\x13\x03\xf3\x44\xf7\x09\xd8\xe9\x8e\x03\x7c\xfb\x05\x5f\x23\xcd\xe4\x27\x16\xde\x37\x88\xa0\x79\x8d\x08\xdc\xec\x02\xb7\x42\xfe\x4f\x70\x9e\x5e\x8d\x14\x1c\xab\x21\x8d\x1f\x9c\xd9\x6f\xa2\xfb\x09\xbd\xeb\x25\xee\xf2\x88\x2e\x04\xe4\xc2\x81\xa8\x89\x2d\xa2\xd1\x0d\x2f\x18\x19\xc4\xde\x07\x1d\x39\xb0\x3f\xda\xc0\x6a\xa7\x07\x42\xb9\x2c\xe2\x72\xea\x6a\xa3\x24\x83\xfb\x45\xaa\x68\x17\xbb\x9d\xf9\x6a\x82\x29\xb3\x96\xfd\x23\x9f\x8d\xc7\x2b\x5b\xd0\xe4\xf9\x59\xe0\xd9\xb5\xb1\x6c\xdb\x40\x48\x40\x1e\x1f\x9d\x6e\x48\x41\xd8\x44\xca\x0c\x0a\x62\x51\xee\xe7\x03\x3e\xe0\xe3\xbb\x78\xbe\xdd\x0b\x7c\x5c\xc6\xfd\x7e\xe0\xff\xe8\xd6\xc5\xf4\x39\x7b\x97\x3c\x3e\x70\xef\x92\xa6\x4e\xde\xff\x3b\x36\x12\x88\xa4\xb4\x19\xa3\xb9\x7d\x70\x27\x41\xf3\x38\x43\xf4\xe1\x3b\x90\xbe\x7d\x3f\x21\xba\x79\xe6\x2b\xa4\xbd\xb8\xc7\x81\xa0\x17\xb5\xca\x21\x84\x0d\x56\xf1\x89\xa4\x43\xda\x9b\x17\x5c\x23\x9e\x31\xd4\xf1\x46\x07\x90\xd0\xd3\x7b\xb3\xc4\xc7\x91\xc2\x66\x3a\xf3\x94\x3f\xc0\x63\x56\x1c\x39\x88\x24\xe6\xbc\x2f\x9f\x46\x3a\x60\x1f\xbe\xef\x58\xd2\xb0\x95\xcc\x6b\x9c\x13\x56\xd8\xc8\x7b\x73\x84\xcb\x6c\xbc\x07\xf3\xef\x39\xaa\x34\x6d\x83\x65\x1d\x70\x6f\xa6\x18\x2c\xca\x86\x3f\x6f\x50\x60\x1d\xc2\xf0\x25\x4a\x86\x67\xb8\x1e\x73\x3d\x2e\x1f\xef\x86\x8d\x66\x8f\x07\xe1\xde\x33\xbd\x86\xc3\x0e\xb9\x0e\xe2\x3d\xeb\x83\xa3\xc5\x4e\x0e\x1a\x79\x20\xf9\x86\xb8\x33\x99\x32\xcc\x1f\xd7\x11\x7b\x33\x59\xac\x33\x83\x9f\x21\xe0\xe2\x09\x6b\xcb\x02\x07\x68\x4e\x24\xe4\x52\x54\xd7\xd2\xdb\xa4\x7c\x23\xe4\xa6\x20\xf8\x09\x06\xb1\xba\xea\x29\xae\xf9\x0c\x02\x0d\xca\xdd\x8e\x87\x30\x73\x57\x67\xf0\x30\x09\xa0\x8a\x9b\xda\x2a\x48\xc8\x3f\x0d\xcb\x92\x5b\x53\x75\xf5\x3c\xaf\xf7\x89\x2c\x9d\x33\x78\x48\xc9\xcd\x36\x1a\x13\x37\x49\xe2\x58\x46\xd1\x13\xa5\xe8\x03\x89\xe9\x72\x80\x74\x9c\x3e\x38\x54\x83\x95\xc3\x1d\xa7\xb1\x8b\xaa\x58\x00\x85\xd4\x80\x73\x10\x2c\xd7\x87\xc4\x31\xd3\x52\x21\xc0\xfa\x6a\x45\x12\x8d\xea\x0d\x21\xbe\xa6\x62\x6e\xe7\xa8\xba\x23\xb3\x6f\xe1\xde\x02\x3e\x2b\x21\xfc\x70\x6b\xed\x90\x8b\x9d\x5d\x3b\xdc\xad\xe1\xbe\x1d\x21\xc4\xd7\xb4\x83\x6b\x79\x0a\x8f\x20\x1e\xc4\xfb\xda\x43\xca\xa1\x5e\xc3\x10\xee\x9e\xb4\xc3\x26\xfa\x53\x29\xd7\xc1\x7a\x8d\x1d\xc8\x7c\x20\x7f\xb0\x79\x73\xbc\x70\x4a\x8a\x6c\x84\x4d\x88\x08\xb2\x51\x3c\x79\x1a\xf7\xcb\x53\x9c\x47\x1a\x39\x1d\x68\xb0\x05\xec\xc1\xa6\x56\x21\x6d\x97\x17\xe9\x20\x63\x9d\xa9\x5c\x27\x89\x5f\x5e\x78\x05\xce\xce\xd1\x8a\x7c\x17\x2e\x19\x10\xf0\x6c\x24\x73\xb9\xb5\xcf\xcd\x71\x66\x75\x41\xad\xe3\xc2\x1c\xab\x06\x94\x63\xd1\x63\x38\xe3\x9d\xa1\x74\x16\x18\x5b\x99\x29\x1f\x99\xcc\x2a\xbb\xad\x06\xb5\xcd\xee\xa2\x0d\x60\x3e\x3f\xcc\x1a\x59\x34\x6b\x0e\xaf\xd8\xe3\xa6\xf8\xb5\x5a\xae\xc2\x73\x04\x73\xd0\x28\x33\x0b\xa7\xfa\x98\x40\x3c\xd9\xad\x9a\x8c\x6d\xe1\x36\xd6\xcc\x2c\x02\x52\x40\x81\x3f\xb9\x5e\xba\x67\x05\x3c\x37\xc0\x0e\x1b\x15\xf4\xe8\x3e\xa6\xf0\x0d\x0d\x00\xdb\xb8\xbf\x05\x60\x0b\x72\xa1\x1f\x35\x23\x60\x01\xf7\x35\x44\xdf\x03\xf8\xfa\x86\x80\x6f\x7c\x65\x43\x8e\xac\x15\x7a\x8d\x54\x9e\x4f\xce\xff\xfb\xda\x37\x50\x77\x40\x9c\xd1\x3d\x65\x03\x82\x8f\xde\x66\x72\x44\x1f\xf8\x42\x58\xb1\xd8\x00\x53\xdf\x0c\x5d\xce\x7c\x51\x15\x0d\x21\x54\xd9\xaa\x0b\xfd\x37\xe2\x13\x83\xec\x51\xd0\x35\x77\x2a\x92\x70\xe7\xe2\x03\x8b\xfe\x3a\x16\x51\xc2\xb0\x97\x29\x77\xd7\x7d\x00\xda\x3f\x1e\x78\x03\x4e\xde\xaa\x90\xed\xe9\x36\x7a\x2a\x6c\x7c\x8d\xd8\xbd\x57\xb8\xc5\x57\xd7\x0d\xef\x30\x6c\xe5\xc8\xf9\xca\x64\x39\x7b\x0e\x20\xf1\xce\x1b\x57\x77\x84\x83\x2d\x5e\x40\x59\xf2\xed\x3d\x75\x55\xca\xbe\xff\x99\x84\xf8\x02\x27\x36\xc5\xa8\x1d\x86\x6f\x42\xf0\xce\xf8\xbe\x77\x30\x2e\xb2\x8d\x49\x05\x01\x09\x07\xe9\xc1\x95\x62\xf0\xb7\x6c\xec\x92\x34\x5f\x02\x5a\x02\x13\x66\x1f\xb4\x4c\xdb\x81\x42\xfb\x76\xaa\xc6\x39\x6f\xd4\xa5\xba\x4d\xe9\x5e\x6e\x62\x26\xc1\xf7\xe6\xe4\x7c\x6f\x8e\x3c\x0e\x72\x14\x44\x44\x38\x0f\x13\x76\xee\x86\x92\x28\x3a\x5e\xf8\x7c\x3c\x4e\x67\xc6\x51\x7c\x24\x33\x8a\xc8\x96\xa3\x5a\xcc\x80\x1d\xc6\x89\x2f\x5d\x18\x63\xa7\x13\xa2\xd2\xe3\x8b\x3b\xc2\x24\xb9\x8d\x2f\x8a\xd2\x07\x08\xe2\x9e\x88\x4d\x35\x8c\xdb\xd4\x2b\xbe\x49\x10\x46\xc8\xb8\x7b\x2a\x3b\xc7\x65\x9a\x4b\x5f\x54\x04\x9c\xc2\xc3\x18\xec\x6b\x75\x59\x1b\xe7\xc6\x14\x0c\x23\xf4\x88\xcb\x08\x90\x74\xea\x6c\xb9\x46\xff\x67\x53\x84\x64\xaa\xb1\x23\x26\x7d\x7a\x6c\x02\x52\x1e\x89\x48\xed\x49\x88\x49\x18\x7e\x7b\x0a\x2f\x70\x04\xa9\xec\x22\x5b\xcd\xf5\x6e\x93\x5a\x8f\x72\xb3\xbf\xac\xbb\xc7\x24\xbd\xc0\x8c\x6b\xef\xcd\x14\xac\x62\x7c\x3c\x4a\xef\x4e\xd1\x9c\x22\x71\xdc\xb3\x9c\xf9\x92\x75\x61\x54\xcf\x85\xcc\xeb\x6a\xad\x97\x13\x58\xba\x31\xd7\x06\x47\x24\x5f\x55\xc6\xa0\x95\x1e\xc2\x15\xf3\xed\x4d\x85\xf5\x8c\xcf\x97\xc2\x22\x17\x35\x32\x62\x6b\x06\xf2\x85\x12\x06\x4d\x9c\x2c\xe2\x1b\x1a\xc9\xaf\xd6\xac\x96\xee\x95\x8f\x53\xbe\x20\xaa\x59\xf0\x49\x56\x5e\xc3\x0a\x79\x7d\xa9\xae\x62\x0b\xdc\x74\xf6\xfb\x5a\x86\x06\xb1\xce\x3d\x55\xfc\xa1\xb6\x35\x45\x7b\x57\x2d\xe7\x78\x72\xa5\x5d\xeb\x46\xe5\xbb\x42\x6c\xe5\x8f\x66\x14\xf7\x34\xd3\xeb\x04\x0a\x6c\xe9\xb5\x8f\xe4\x06\xbd\xc7\x4b\x8a\xc7\x93\x2f\xb4\xc4\x3d\x01\x4f\x44\x6e\x13\xe0\x48\x3c\xeb\xbe\xbf\xb7\xa2\x41\x5f\x02\x86\x18\xe0\xb6\x41\x53\xba\xe2\xab\x7a\x10\x6c\x92\x87\xdd\x60\x32\xd0\xd9\x0f\x5e\x11\x5e\x15\xcb\x88\x7b\xcc\x37\x28\xf0\x95\x5f\x7c\x93\xbe\xba\xfb\xe8\x82\x66\x4f\xea\xa8\xf1\xe8\x40\x87\xc2\x7a\xef\x19\xa1\x47\x51\x2b\xbe\xdc\xc7\x70\x11\x92\xc7\xc2\xfa\x1d\x5e\x6c\x74\xaf\x84\xbd\xc7\x77\xc8\x14\xe4\xf6\xbe\xf9\xaa\x6e\x6a\x1a\x1e\x39\xac\xab\x37\xfa\xbd\xb2\xb8\x76\x22\x03\x4c\xe0\x77\xf3\x5e\x0f\x58\x5b\x9e\x33\x44\x93\xfc\xc0\xa7\xad\x7d\xae\xae\xee\xb2\x8d\xe5\x61\x0b\xe4\x52\xed\xd6\xd7\x9c\x60\xb9\x8e\x2d\x21\xc8\xa9\x79\xea\x05\xfb\x7b\x22\x8b\x02\x5f\x68\x4c\x00\x8b\x6d\x0e\x3e\x01\x4b\xe8\xea\x77\x73\xee\x2a\x8e\xed\x49\x74\xfa\x16\xd1\xe9\x35\x47\x8f\x6b\xb0\x56\xb9\x6c\x83\x46\x1d\xca\xc7\x07\xa9\x86\x79\x5e\xf2\x79\xab\x21\xbc\x61\x6e\x5d\x64\xbb\x11\xde\x5e\x53\xe4\x08\x6b\x80\x1c\x23\x00\xb0\x87\xb1\x10\xe6\x2a\x73\x28\x56\x61\x8e\x37\x14\x75\x08\x1a\x1e\x00\x43\x78\xbc\xa5\x78\x20\x87\xae\xd9\xc3\x56\xe9\x9e\xcd\xa8\x55\xf5\xe2\x6f\x78\x79\x50\xa1\x2f\xe4\x33\x80\x5a\xd4\x75\xc7\x0f\xbc\xec\x58\xdc\x5a\x7e\x72\x68\xfa\xc5\xe2\x59\xdc\x5a\x7e\x1a\x61\x4a\xa0\xc7\xa8\x12\xe8\xc3\xb8\xda\xf2\x55\x23\x54\x57\xd3\x2f\xbb\x9e\x26\xa8\xab\xf0\xec\x8a\xaf\x2d\xb9\x72\x09\xa3\x1a\x47\x39\x43\x0a\x1d\x66\x9e\xaa\x79\x49\x42\x44\x31\x59\xf5\x09\xa7\xdc\x5b\xf7\x28\x6f\x58\xf9\x28\xfb\xd4\x4c\xc1\x85\xb5\x6c\x74\x5e\xf4\xcb\x4f\x45\xc7\x3e\xe3\xeb\x39\x76\x98\xc3\xb2\x2e\x0d\x2c\xfd\x05\x60\xe9\x6b\x02\x4b\xaf\xe5\xf9\xc0\x71\xa9\xb4\xe8\x6c\x8b\x2e\x83\xa7\x40\x50\xca\xab\x13\x1a\x01\x8e\xce\xb3\xa9\x5c\xb0\xce\xcc\x55\xca\xd6\x59\xc8\x82\x4f\x50\x82\x3e\x6c\x28\x82\xf7\xb1\x03\x99\x2a\x8d\xd5\x00\x59\xfd\x96\x77\x4b\xb9\x8d\x95\x15\x03\x6a\xc3\x3b\x89\x09\x60\x71\x69\x1e\xc1\x1a\x8f\xc4\xa6\x38\x6e\xcf\x23\xf0\xeb\x98\x51\x0a\x07\xf3\xc0\xc2\xb8\x08\xee\x32\xeb\xdb\x49\xc0\x5d\x26\x93\xe9\x20\xa4\x55\x6f\x80\x56\xf3\x10\x4e\x2b\x6d\x05\x95\xc2\x56\x44\x53\x13\xdf\x62\xbd\xb0\xce\x1e\x45\x86\x6b\xb1\x5d\x57\x87\xa7\x91\x05\xf6\x8b\xef\x75\x29\x98\x48\xaf\x90\x59\x25\xc6\xe4\x2d\xdc\x45\x6f\x61\x4b\x8b\x8e\xb0\x4a\x5c\xf4\x78\x98\xc6\xd9\xd9\x29\x77\x48\x5e\xe3\xc3\x43\x97\x5a\x22\x04\x53\x73\x59\x89\xdf\x65\x51\xcf\x15\x01\x94\x2b\x7b\x64\x27\x69\x13\x66\x86\xd2\xe0\x5e\xb6\x8d\x0a\x78\x0b\x7d\x22\xe8\xdb\xc1\x7b\x9d\xed\x4a\xb3\xaf\xbc\xda\xd9\xf7\x26\xc0\x31\x36\xba\x63\xec\x96\xed\x3c\x44\xe7\xf0\x46\xb4\x6c\x80\x5e\x06\x57\x0c\x47\xa0\xd8\xf9\x0e\x5f\x22\x0b\xb6\x1f\x0d\xe5\xd8\xe8\xc3\x0b\x88\xea\xc8\x37\x2a\x21\xc8\x13\x3c\x1b\xc9\xee\xd0\x72\xd6\x68\x0a\x45\xde\x3a\x68\x18\x72\x57\x64\x03\xfa\xde\xad\xa5\x18\x17\xd3\x37\xf7\xff\x3f\x79\xbc\x20\x6c\x80\x7f\xc2\xe0\x40\xfd\xff\x21\x4f\x18\x0c\x2d\xb3\xee\x0d\x03\xdc\xd1\x3e\xc3\xe1\x80\x78\x1e\x47\x1b\x57\xd1\x7c\x46\x8e\x70\x9e\x22\x22\xde\xca\x47\x94\x37\xfb\x9a\xc5\x57\xac\x36\x98\xa2\xc3\xfa\x82\xf3\x1c\x51\x6d\x92\x63\x7c\xd3\x5e\xdc\x04\x89\x19\xef\x16\x49\xbc\x5a\x23\x52\xbd\x2d\xaa\x50\xeb\xd1\x0c\x26\x09\xdd\xa2\xb1\xb8\xd1\x0b\xe9\x3c\xa9\x75\x6a\x0f\x9a\x1c\x4f\xee\xa8\xd5\x92\x49\x4e\xfa\xda\x51\x91\x49\x66\xa2\x80\x41\x57\x24\x26\xbc\x5c\x44\x62\xe4\xce\x6e\x3c\x62\x23\x21\x8d\x1f\x7b\x61\x04\x2d\xd6\x62\xe2\xaa\x83\x42\x01\x34\xc9\xab\x82\xb6\x0c\xfd\x53\x25\x36\x7c\x10\x5d\x62\xf4\x6d\x69\x3c\x2b\x2d\x31\x0b\xf8\x0f\xc1\xcb\x8d\x8d\x4f\xa7\xe7\x56\x6d\xd7\x35\xe5\xa2\xef\xa6\x6f\xa3\x77\xa9\x23\x68\xdb\xf6\x67\xda\x4d\xbf\x00\xdb\xf6\x56\xf0\x55\xff\xa5\x72\x07\x2f\x85\x0d\xe0\xe4\x82\x90\xd4\x5d\x0a\xf5\x12\xdf\x9a\xb8\x65\x1e\x39\x6f\x33\xa6\x72\x62\x31\x79\x7a\x75\xac\x29\x78\x41\x5a\xad\x23\x78\x68\xfa\xe0\x28\x30\xe4\xe8\x45\x6a\x9f\xa4\x78\x45\x52\x80\x5c\xbd\xd5\xbe\x93\x0b\xc7\xe5\x46\xf7\xeb\xb7\x57\x14\x5c\x36\x77\xb2\x61\xa4\xe3\xc2\x3b\x06\xfa\x6e\xb3\x3d\xf3\x73\x7c\xe6\x5e\xc6\x0e\x46\x5a\x8b\xe4\x57\x77\xdd\x9b\x92\xbe\x70\x6a\x7f\xad\x6f\x4a\xaa\xc1\x54\x69\x95\xdf\x44\x61\xe7\xdf\x5d\x6b\xe5\x04\x47\x91\x07\x64\xaf\xb7\xdf\xeb\x08\x8c\x16\xa3\xd8\x72\x8b\x85\xc6\x2d\x4a\x21\xbd\x87\x6b\x65\x54\xc1\x57\xde\x55\x1f\x96\x15\x2c\x2a\xf7\xb4\x75\xf2\xac\x61\x7c\x77\x61\x08\x38\x97\xf9\x67\x57\x94\x46\x05\xbb\x4d\xa6\x71\x86\xe8\xae\xd2\x28\xd3\xb4\x1b\xc0\x7d\xb7\x94\x8a\x51\xc0\x94\x71\x67\xf3\x56\x65\x3c\x36\x7d\x2b\xec\x7d\x8f\xf2\x07\x20\xb7\xb2\xb5\x16\x40\xfc\x26\x4f\x06\x87\x40\xd3\x8f\xc2\x2b\xc0\x90\xa7\x68\xf4\xe0\xad\xf0\xe8\x91\x70\xcb\x69\x6f\x9e\xd6\xbd\x68\xdb\x78\x93\x58\xcf\x18\xbd\x43\x24\x0b\x5a\x06\x3e\xf5\x30\x7f\x90\xa4\x15\x71\x52\x58\x09\x56\x28\x7e\xa5\x78\xe2\xf1\x62\xf7\x38\xbf\x43\x30\x9b\xdc\x97\x73\xb9\xb8\x2e\xc8\x03\x83\xff\x12\x6e\xbc\xe3\x4c\xd4\xee\x71\x0e\x6a\xf7\x01\x70\xd9\x04\x36\x7e\x7e\x85\x2f\x61\x21\xae\xc5\xec\x5a\xa6\x54\x64\x1d\x96\xb8\xe1\x13\x4e\x21\x0e\xf2\x85\x27\x0c\xf7\xb0\xf3\x24\x69\x10\x64\xb8\x28\xf9\xd8\x70\x21\xf0\xb1\xe1\x92\xe6\x63\xb5\x61\x83\x16\xb4\xed\xc6\x06\xe2\xea\xea\x6d\x3c\xda\x3e\xd5\xef\xcc\x3f\x66\xdf\x94\x07\x7c\xad\xcd\x8a\x34\xcc\x07\x78\xbf\xfc\xfb\x20\x87\x62\x33\xc4\x9f\xc6\x0e\xcb\xd0\x57\xb7\x07\x45\x18\xb3\x8c\xa6\x4c\xb9\x3c\x80\x18\xf7\xf8\x6e\xf4\xa8\x01\xd0\x2f\x8f\xb8\xeb\xb2\x12\xbd\xba\x3f\x24\x66\xcf\x6c\x1d\x29\x87\x8c\xd6\x1a\xc6\x2e\xed\xd1\x73\xf4\xfa\x04\xaa\xfa\xb6\xbb\x07\x7f\x7f\x41\xb4\x6f\xe1\xe4\x5b\xf3\xc3\x47\xe6\xd9\xe9\xdc\xb2\xd8\x8b\xa8\x7a\x6d\x03\xb7\xff\x3c\xf0\x1a\x35\x30\x7b\x59\x05\x16\x81\xd1\x23\x2c\x30\x05\xe8\x1b\x2c\xc6\x18\xe4\x88\x13\xfb\x77\xcf\x37\x6a\xfe\x96\x63\x50\xf0\xf2\x4e\xdf\xc2\xde\xed\xda\x1d\xbd\x4c\x1a\x65\x92\x07\x51\xdd\xeb\x87\xe3\xcc\x76\x5a\xcf\x0d\xa2\x9d\x3e\x9a\x1c\xc4\x3f\xfa\xa2\xa7\xc2\xe5\xc9\x52\xbe\xff\x93\x3e\xd3\xb7\xf8\x74\x63\x25\xc7\x8a\xa0\x0d\xb3\x33\xf3\x73\x3b\x68\x04\xa5\x98\x62\xdc\x28\x7d\x2a\x77\xbc\x2c\xeb\x93\x6d\x3c\x38\x14\x83\xb5\xf9\x37\xc4\x84\x48\x0e\x39\xf3\x19\xbe\xa7\x1b\xa8\xb0\x63\x29\x30\x4e\x37\x82\x22\x3a\xaf\x03\x62\x7a\xfd\xeb\xdb\x8b\x01\xe4\xc4\x04\xd5\x94\x89\x09\xad\x29\x13\xd3\x57\xb6\x72\x5c\x17\xb0\x7d\x33\xdd\x03\x81\x3c\xd8\x01\xa1\x21\xbf\x33\x0b\xe2\x99\x2c\x48\xa9\x2d\xcf\x76\x32\x63\x94\xce\xe4\x3b\x06\x0a\x2e\x45\x16\x28\xbb\x13\x79\x54\x6b\x15\xd6\x59\xc9\x36\x84\xe7\x07\xe2\x22\x10\xf0\x03\x71\xb5\x9d\x6c\x9e\x41\x93\xca\x7a\x5b\xe6\x2a\x38\x0a\xfc\xa5\x46\x19\xa8\x81\xf8\x92\x0d\x42\x8b\x76\xcd\x24\xc2\x2d\x9d\xf4\x76\x82\xaf\x68\xe8\x74\x22\xf2\x7c\x11\x58\x3f\x0d\xf9\x49\x17\xc9\x61\xc0\xab\xa5\x43\x8c\x19\x94\x5e\x9d\xf8\xeb\xa2\x61\x7b\x1a\x74\x66\x53\xde\x14\xce\x52\xa5\xbd\x79\x4b\x71\x11\xf0\x9a\x1f\xc5\xb5\x03\x91\xf2\x2c\xee\x05\x7d\x0c\x3a\x11\x16\xa5\x3d\x19\x95\xb4\x2b\x61\x3d\x0c\xf0\x22\x11\xd3\x18\x37\x68\xe5\xdb\x01\xb8\x32\xee\x21\xbb\xb5\x67\xe5\x82\x19\xe2\xdf\x78\xf2\xeb\xb3\xab\x9d\xd7\xe5\xc9\x9a\x19\x4a\x57\x2e\x86\xc1\xca\x65\xde\x02\xb3\x65\x23\x77\xab\xf0\xdf\x35\xef\xe3\xba\x94\x70\xee\x59\x5c\x4b\xb4\x97\xf7\x72\xd8\x46\x83\x1e\xde\x7b\x17\x08\x9a\x2c\x61\xe2\x7a\xc0\x18\xa0\xf8\x5c\x2c\xfb\x60\x5b\xe1\x57\xf9\x56\x3b\x9e\x2f\xa6\x36\xe7\xc0\xbe\xc2\x75\x90\x97\x12\x13\xc0\x4c\x5d\xb0\x64\x4d\x87\x8b\xa3\xb9\x3a\x1e\xac\xdf\x55\x0f\xf5\x87\xa1\xcc\xe3\xc2\xbc\x1c\xe4\x73\xbe\x91\xb3\x17\x03\x27\x0c\x83\x0d\xa5\x90\x30\x6e\xfe\x43\x24\xa7\xb9\xb4\x89\x86\x5b\x52\xbd\x63\x96\xb5\x9b\x05\xb0\x10\xc5\x83\x07\x3b\xa4\x0d\x92\xfe\x25\x17\xab\xe4\x83\xf8\x34\x7c\x1c\xdc\xe9\x6e\xe6\xc7\xc0\x8d\x26\x3a\xff\xf3\x50\x2e\x88\x94\x43\x52\x96\x89\x3d\x88\xe4\x02\xd0\x00\xf6\x69\xdb\x2c\x9f\x3e\x0c\x6f\xf9\xd3\xeb\x00\x15\xc0\xae\x00\xfc\x93\xde\x39\xa9\xed\xb0\x1b\x0d\x7f\xd7\x2b\x04\xe5\x3b\x2c\x57\xcc\x1e\x52\x74\xfb\x4f\xc1\x1d\x82\xc3\x4b\x11\x83\xbb\x1f\xeb\xea\x5b\x0a\x72\x77\x78\x68\xff\xec\x7b\x80\x17\x1c\x99\x66\x84\xc8\xd9\xe9\xe1\xa3\x3f\x8a\x2a\x9c\xbc\xe6\x93\x38\x1e\x4f\xf4\x71\x3f\xa2\xa2\xa2\x46\x88\xd2\x6b\xe1\x7e\x9c\xfb\xcb\xa1\x71\x08\x4f\x12\xca\x56\xef\xc5\x92\x17\x95\x7e\x74\x17\x43\x27\x1f\xba\xba\xde\x7c\x4c\xb2\x15\xf7\x89\x7e\x13\xdc\xbc\x2e\xfe\xba\xf0\x49\xa3\x60\x22\x9f\x1c\xfa\x81\x0b\xfe\x81\xb4\x54\x62\x20\xb8\x9c\xed\x87\x2d\x22\xe4\x4d\x7e\x44\xac\x11\xc1\x57\xf6\xe3\x33\xc7\x67\x9e\xdd\xe1\x6b\x8f\xaf\x7d\x51\x7c\x92\xcc\xe0\x30\x94\x9d\xb4\xbe\x35\x62\xee\xf0\xcd\xb7\x8d\xf1\xa7\xd4\xa3\x77\x0f\xda\x07\xae\x84\xe3\xea\x34\xde\x3e\x28\x5e\x1e\xc7\x7a\xee\xdf\xc9\x7a\xc8\xfb\x63\x77\x1a\x85\x10\xc5\x70\xf5\x1a\x25\xc1\x87\x60\x13\xa4\xcb\x6a\x81\x12\xa6\x58\x6e\x87\x46\x4a\x90\xe2\x9a\x6c\x3f\xf7\xed\xd2\x10\x62\x7d\xab\x34\x44\xe8\xcd\x9b\x7a\xc7\xd7\x43\x7d\x74\xef\x20\xf8\x7b\xb5\x4f\x29\x4d\xaf\xc9\xc0\x9d\x3d\x7c\x82\x0f\x8f\xd6\xe3\x21\x14\x3e\xdf\x36\x73\x0f\xf0\x96\xd5\xae\x77\xfa\x93\x5e\xa5\xf0\xa8\x53\x30\x7f\xd7\x86\x38\x6d\xf2\x65\xb9\x72\x93\x38\xbf\x6c\xbf\xc0\x1a\x00\xbd\x8c\x9f\x14\x7f\xfc\xaf\xff\x0a\x70\x0a\xfe\xdb\xbf\xa5\x67\xbf\x7c\x9f\x16\x9f\xf9\x52\x1a\x7e\x15\xf2\x73\xb9\xed\xb7\x06\x45\x9f\x2f\x23\x40\x3e\xd5\x06\xf7\x3b\x35\x65\xeb\xe3\x42\xfc\xf5\x7f\x03\x00\x00\xff\xff\x3a\xbe\xdf\xf6\x50\x95\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: 37936, mode: os.FileMode(420), modTime: time.Unix(1439608196, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 38224, mode: os.FileMode(420), modTime: time.Unix(1439611459, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/css/gogs.min.css b/public/css/gogs.min.css index 475f935748..dd1cd4f66f 100644 --- a/public/css/gogs.min.css +++ b/public/css/gogs.min.css @@ -1 +1 @@ -@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('embedded-opentype'),url(../fonts/octicons.woff?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('woff'),url(../fonts/octicons.ttf?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('truetype'),url(../fonts/octicons.svg?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6#octicons)format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-alignment-align:before{content:'\f08a'}.octicon-alignment-aligned-to:before{content:'\f08e'}.octicon-alignment-unalign:before{content:'\f08b'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beer:before{content:'\f069'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hourglass:before{content:'\f09e'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-jump-down:before{content:'\f072'}.octicon-jump-left:before{content:'\f0a5'}.octicon-jump-right:before{content:'\f0a6'}.octicon-jump-up:before{content:'\f073'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-microscope:before{content:'\f089'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-move-down:before{content:'\f0a8'}.octicon-move-left:before{content:'\f074'}.octicon-move-right:before{content:'\f0a9'}.octicon-move-up:before{content:'\f0a7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-playback-fast-forward:before{content:'\f0bd'}.octicon-playback-pause:before{content:'\f0bb'}.octicon-playback-play:before{content:'\f0bf'}.octicon-playback-rewind:before{content:'\f0bc'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-podium:before{content:'\f0af'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-puzzle:before{content:'\f0c0'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-split:before{content:'\f0c6'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-steps:before{content:'\f0c7'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .top.menu a.item.brand{padding-left:0}.following.bar .brand .ui.mini.image{width:30px}.following.bar .top.menu .dropdown.item.active,.following.bar .top.menu .dropdown.item:hover,.following.bar .top.menu a.item:hover{background-color:transparent}.following.bar .top.menu a.item:hover{color:rgba(0,0,0,.45)}.following.bar .top.menu .menu{z-index:900}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .avatar>.ui.image{margin-right:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.right{text-align:right}.ui .text.small{font-size:.75em}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}.ui .avatar.image{border-radius:3px}footer{margin-top:40px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.mega-octicon.icon,.octicon.icon{font-family:octicons}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:120px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:120px}.install form label{text-align:right;width:40%!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:41%}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.repository.new.fork form{margin:auto;width:800px!important}.repository.new.fork form .ui.message{text-align:center}.repository.new.fork form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help{margin-left:260px!important}.repository.new.fork form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i{margin-right:0!important}.repository.new.fork form input,.repository.new.fork form textarea{width:50%!important}.repository{padding-top:15px;padding-bottom:120px}.repository .head .column{padding-top:5px!important;padding-bottom:5px!important}.repository .head .ui.compact.menu{margin-left:1rem}.repository .head .ui.header{margin-top:0}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .ui.huge.breadcrumb{font-weight:300;font-size:1.7rem}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .menu .clickable .name{padding-left:15px!important}.repository .page.buttons{padding-top:15px}.repository .issue.list{list-style:none;padding-top:15px}.repository .issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.repository .issue.list>.item .title:hover{color:#000}.repository .issue.list>.item .comment{padding-right:10px;color:#666}.repository .issue.list>.item .desc{padding-top:5px;color:#999}.repository .issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.repository .issue.list>.item .desc a.milestone:hover{color:#000!important}.repository .issue.list>.item .desc .assignee{margin-top:-5px;margin-right:5px}.repository.new.issue .comment.form .comment .avatar{width:3em}.repository.new.issue .comment.form .content{margin-left:4em}.repository.new.issue .comment.form .content .markdown{font-size:14px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository.view.issue .title{padding-bottom:0!important}.repository.view.issue .title h1{font-weight:300;font-size:3rem;margin-bottom:5px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .comment-list:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:96px;width:2px;background-color:#f3f3f3;z-index:-1}.repository.view.issue .comment-list .comment .avatar{width:3em}.repository.view.issue .comment-list .comment .tag{color:#767676;margin-top:3px;padding:2px 5px;font-size:12px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.repository.view.issue .comment-list .comment .content{margin-left:4em}.repository.view.issue .comment-list .comment .content .header{font-weight:400;padding:auto 15px;color:#767676;background-color:#f7f7f7;border-bottom:1px solid #eee;border-top-left-radius:3px;border-top-right-radius:3px}.repository.view.issue .comment-list .comment .content .header .text{max-width:78%;padding-top:10px;padding-bottom:10px}.repository.view.issue .comment-list .comment .content .markdown{font-size:14px}.repository.view.issue .comment-list .comment .content .no-content{color:#767676;font-style:italic}.repository.view.issue .comment-list .comment .content>.bottom.segment{background:#f3f4f5}.repository.view.issue .comment-list .comment .content>.bottom.segment .ui.image{max-height:150px}.repository.view.issue .comment-list .comment .ui.form .field:first-child{clear:none}.repository.view.issue .comment-list .comment .ui.form .tab.segment{border:none;padding:0;padding-top:10px}.repository.view.issue .comment-list .comment .ui.form textarea{height:200px}.repository.view.issue .comment-list .event{position:relative;margin:15px 0 15px 79px;padding-left:25px}.repository.view.issue .comment-list .event .octicon{width:30px;float:left;margin-left:-36px;text-align:center}.repository.view.issue .comment-list .event .octicon.octicon-circle-slash{font-size:30px;color:#bd2c00}.repository.view.issue .comment-list .event .octicon.octicon-primitive-dot{font-size:35px;color:#6cc644}.repository.view.issue .ui.segment.metas{margin-top:-3px}.repository .comment.form .ui.comments{margin-top:-12px;max-width:100%}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository .filter.dropdown .menu .items{max-height:300px;overflow-y:auto}.repository .filter.dropdown .menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.repository .filter.dropdown .menu .items .item.active{font-weight:700}.repository .filter.dropdown .menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.ui.comments .dropzone{width:100%;margin-bottom:10px;border:2px dashed #0087F7;box-shadow:none!important}.ui.comments .dropzone .dz-error-message{top:140px}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px} \ No newline at end of file +@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=345f8bad9c5003db196d08f05e7f030fd2a32ff6) format('embedded-opentype'),url(../fonts/octicons.woff?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6) format('woff'),url(../fonts/octicons.ttf?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6) format('truetype'),url(../fonts/octicons.svg?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-alignment-align:before{content:'\f08a'}.octicon-alignment-aligned-to:before{content:'\f08e'}.octicon-alignment-unalign:before{content:'\f08b'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beer:before{content:'\f069'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hourglass:before{content:'\f09e'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-jump-down:before{content:'\f072'}.octicon-jump-left:before{content:'\f0a5'}.octicon-jump-right:before{content:'\f0a6'}.octicon-jump-up:before{content:'\f073'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-microscope:before{content:'\f089'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-move-down:before{content:'\f0a8'}.octicon-move-left:before{content:'\f074'}.octicon-move-right:before{content:'\f0a9'}.octicon-move-up:before{content:'\f0a7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-playback-fast-forward:before{content:'\f0bd'}.octicon-playback-pause:before{content:'\f0bb'}.octicon-playback-play:before{content:'\f0bf'}.octicon-playback-rewind:before{content:'\f0bc'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-podium:before{content:'\f0af'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-puzzle:before{content:'\f0c0'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-split:before{content:'\f0c6'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-steps:before{content:'\f0c7'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .top.menu a.item.brand{padding-left:0}.following.bar .brand .ui.mini.image{width:30px}.following.bar .top.menu .dropdown.item.active,.following.bar .top.menu .dropdown.item:hover,.following.bar .top.menu a.item:hover{background-color:transparent}.following.bar .top.menu a.item:hover{color:rgba(0,0,0,.45)}.following.bar .top.menu .menu{z-index:900}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .avatar>.ui.image{margin-right:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.right{text-align:right}.ui .text.small{font-size:.75em}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}.ui .avatar.image{border-radius:3px}footer{margin-top:40px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.mega-octicon.icon,.octicon.icon{font-family:octicons}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:120px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:120px}.install form label{text-align:right;width:40%!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:41%}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.repository.new.fork form{margin:auto;width:800px!important}.repository.new.fork form .ui.message{text-align:center}.repository.new.fork form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help{margin-left:260px!important}.repository.new.fork form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i{margin-right:0!important}.repository.new.fork form input,.repository.new.fork form textarea{width:50%!important}.repository{padding-top:15px;padding-bottom:120px}.repository .head .column{padding-top:5px!important;padding-bottom:5px!important}.repository .head .ui.compact.menu{margin-left:1rem}.repository .head .ui.header{margin-top:0}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .ui.huge.breadcrumb{font-weight:300;font-size:1.7rem}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .dropdown.item{margin:1px;padding-right:0}.repository .page.buttons{padding-top:15px}.repository .issue.list{list-style:none;padding-top:15px}.repository .issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.repository .issue.list>.item .title:hover{color:#000}.repository .issue.list>.item .comment{padding-right:10px;color:#666}.repository .issue.list>.item .desc{padding-top:5px;color:#999}.repository .issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.repository .issue.list>.item .desc a.milestone:hover{color:#000!important}.repository .issue.list>.item .desc .assignee{margin-top:-5px;margin-right:5px}.repository.new.issue .comment.form .comment .avatar{width:3em}.repository.new.issue .comment.form .content{margin-left:4em}.repository.new.issue .comment.form .content .markdown{font-size:14px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository.view.issue .title{padding-bottom:0!important}.repository.view.issue .title h1{font-weight:300;font-size:3rem;margin-bottom:5px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .comment-list:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:96px;width:2px;background-color:#f3f3f3;z-index:-1}.repository.view.issue .comment-list .comment .avatar{width:3em}.repository.view.issue .comment-list .comment .tag{color:#767676;margin-top:3px;padding:2px 5px;font-size:12px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.repository.view.issue .comment-list .comment .content{margin-left:4em}.repository.view.issue .comment-list .comment .content .header{font-weight:400;padding:auto 15px;color:#767676;background-color:#f7f7f7;border-bottom:1px solid #eee;border-top-left-radius:3px;border-top-right-radius:3px}.repository.view.issue .comment-list .comment .content .header .text{max-width:78%;padding-top:10px;padding-bottom:10px}.repository.view.issue .comment-list .comment .content .markdown{font-size:14px}.repository.view.issue .comment-list .comment .content .no-content{color:#767676;font-style:italic}.repository.view.issue .comment-list .comment .content>.bottom.segment{background:#f3f4f5}.repository.view.issue .comment-list .comment .content>.bottom.segment .ui.image{max-height:150px}.repository.view.issue .comment-list .comment .ui.form .field:first-child{clear:none}.repository.view.issue .comment-list .comment .ui.form .tab.segment{border:none;padding:0;padding-top:10px}.repository.view.issue .comment-list .comment .ui.form textarea{height:200px}.repository.view.issue .comment-list .event{position:relative;margin:15px 0 15px 79px;padding-left:25px}.repository.view.issue .comment-list .event .octicon{width:30px;float:left;margin-left:-36px;text-align:center}.repository.view.issue .comment-list .event .octicon.octicon-circle-slash{font-size:30px;color:#bd2c00}.repository.view.issue .comment-list .event .octicon.octicon-primitive-dot{font-size:35px;color:#6cc644}.repository.view.issue .ui.segment.metas{margin-top:-3px}.repository .comment.form .ui.comments{margin-top:-12px;max-width:100%}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository .filter.dropdown .menu .items{max-height:300px;overflow-y:auto}.repository .filter.dropdown .menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.repository .filter.dropdown .menu .items .item.active{font-weight:700}.repository .filter.dropdown .menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.ui.comments .dropzone{width:100%;margin-bottom:10px;border:2px dashed #0087F7;box-shadow:none!important}.ui.comments .dropzone .dz-error-message{top:140px}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px} \ No newline at end of file diff --git a/public/less/_repository.less b/public/less/_repository.less index e17b394b22..4b228cd18b 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -73,6 +73,10 @@ right: 0!important; left: auto!important; } + .dropdown.item { + margin: 1px; + padding-right: 0; + } } .page.buttons { diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 623c94a387..4072483e89 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -59,6 +59,7 @@ func Issues(ctx *middleware.Context) { ctx.Data["PageIsIssueList"] = true viewType := ctx.Query("type") + sortType := ctx.Query("sort") types := []string{"assigned", "created_by", "mentioned"} if !com.IsSliceContainsStr(types, viewType) { viewType = "all" @@ -71,7 +72,10 @@ func Issues(ctx *middleware.Context) { return } - var assigneeID, posterID int64 + var ( + assigneeID = ctx.QueryInt64("assignee") + posterID int64 + ) filterMode := models.FM_ALL switch viewType { case "assigned": @@ -92,9 +96,8 @@ func Issues(ctx *middleware.Context) { repo := ctx.Repo.Repository selectLabels := ctx.Query("labels") milestoneID := ctx.QueryInt64("milestone") - assigneeID = ctx.QueryInt64("assignee") isShowClosed := ctx.Query("state") == "closed" - issueStats := models.GetIssueStats(repo.ID, uid, com.StrTo(selectLabels).MustInt64(), milestoneID, isShowClosed, filterMode) + issueStats := models.GetIssueStats(repo.ID, uid, com.StrTo(selectLabels).MustInt64(), milestoneID, assigneeID, isShowClosed, filterMode) page := ctx.QueryInt("page") if page <= 1 { @@ -111,7 +114,7 @@ func Issues(ctx *middleware.Context) { // Get issues. issues, err := models.Issues(uid, assigneeID, repo.ID, posterID, milestoneID, - page, isShowClosed, filterMode == models.FM_MENTION, selectLabels, ctx.Query("sortType")) + page, isShowClosed, filterMode == models.FM_MENTION, selectLabels, sortType) if err != nil { ctx.Handle(500, "Issues: %v", err) return @@ -168,6 +171,7 @@ func Issues(ctx *middleware.Context) { ctx.Data["IssueStats"] = issueStats ctx.Data["SelectLabels"] = com.StrTo(selectLabels).MustInt64() ctx.Data["ViewType"] = viewType + ctx.Data["SortType"] = sortType ctx.Data["MilestoneID"] = milestoneID ctx.Data["AssigneeID"] = assigneeID ctx.Data["IsShowClosed"] = isShowClosed diff --git a/templates/repo/issue/list.tmpl b/templates/repo/issue/list.tmpl index d754941111..994c01d13c 100644 --- a/templates/repo/issue/list.tmpl +++ b/templates/repo/issue/list.tmpl @@ -10,11 +10,11 @@
- + {{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} - + {{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} @@ -27,9 +27,9 @@
@@ -41,34 +41,54 @@ + + + + + + +