From 28814564212b7c64136cc3eda3774af56983557e Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 26 Aug 2015 21:45:51 +0800 Subject: [PATCH] new webhooks list UI --- cmd/web.go | 41 +++++++++------ conf/locale/locale_en-US.ini | 4 +- config.codekit | 20 ++++++++ models/action.go | 6 +-- models/user.go | 14 +++++- models/webhook.go | 58 +++++++++++++++------- modules/bindata/bindata.go | 4 +- public/css/gogs.min.css | 2 +- public/less/_base.less | 16 ++++++ public/less/_form.less | 4 +- public/less/_organization.less | 17 +++++++ public/less/_repository.less | 5 +- public/less/gogs.less | 1 + routers/api/v1/repo_hooks.go | 14 +++--- routers/org/setting.go | 16 +++++- routers/repo/setting.go | 56 +++++++++++---------- templates/org/header.tmpl | 26 ++++++++++ templates/org/settings/hooks.tmpl | 45 ++++------------- templates/org/settings/nav.tmpl | 6 +-- templates/org/settings/navbar.tmpl | 14 ++++++ templates/repo/header.tmpl | 20 ++++---- templates/repo/settings/githook_edit.tmpl | 2 +- templates/repo/settings/githooks.tmpl | 10 ++-- templates/repo/settings/hook_gogs.tmpl | 4 +- templates/repo/settings/hook_list.tmpl | 52 +++++++++++++++++++ templates/repo/settings/hook_settings.tmpl | 2 +- templates/repo/settings/hook_slack.tmpl | 4 +- templates/repo/settings/hooks.tmpl | 46 ++++------------- 28 files changed, 329 insertions(+), 180 deletions(-) create mode 100644 public/less/_organization.less create mode 100644 templates/org/header.tmpl create mode 100644 templates/org/settings/navbar.tmpl create mode 100644 templates/repo/settings/hook_list.tmpl diff --git a/cmd/web.go b/cmd/web.go index 0093600902..c661c13063 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -303,6 +303,7 @@ func runWeb(ctx *cli.Context) { adminReq := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true, AdminRequire: true}) + // ***** START: Admin ***** m.Group("/admin", func() { m.Get("", adminReq, admin.Dashboard) m.Get("/config", admin.Config) @@ -339,6 +340,7 @@ func runWeb(ctx *cli.Context) { m.Get("/:id:int/delete", admin.DeleteNotice) }) }, adminReq) + // ***** END: Admin ***** m.Group("", func() { m.Get("/:username", user.Profile) @@ -377,7 +379,7 @@ func runWeb(ctx *cli.Context) { reqRepoAdmin := middleware.RequireRepoAdmin() - // Organization. + // ***** START: Organization ***** m.Group("/org", func() { m.Get("/create", org.Create) m.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost) @@ -403,9 +405,14 @@ func runWeb(ctx *cli.Context) { m.Post("/teams/:team/delete", org.DeleteTeam) m.Group("/settings", func() { - m.Get("", org.Settings) - m.Post("", bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost) - m.Get("/hooks", org.SettingsHooks) + m.Combo("").Get(org.Settings). + Post(bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost) + + m.Group("/hooks", func() { + m.Get("", org.Webhooks) + m.Post("/delete", org.DeleteWebhook) + }) + m.Get("/hooks/new", repo.WebHooksNew) m.Post("/hooks/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost) m.Post("/hooks/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost) @@ -421,8 +428,9 @@ func runWeb(ctx *cli.Context) { m.Group("/org", func() { m.Get("/:org", org.Home) }, ignSignIn, middleware.OrgAssignment(true)) + // ***** END: Organization ***** - // Repository. + // ***** START: Repository ***** m.Group("/repo", func() { m.Get("/create", repo.Create) m.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost) @@ -433,11 +441,15 @@ func runWeb(ctx *cli.Context) { }, reqSignIn) m.Group("/:username/:reponame", func() { - m.Get("/settings", repo.Settings) - m.Post("/settings", bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost) m.Group("/settings", func() { - m.Route("/collaboration", "GET,POST", repo.SettingsCollaboration) - m.Get("/hooks", repo.Webhooks) + m.Combo("").Get(repo.Settings). + Post(bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost) + m.Route("/collaboration", "GET,POST", repo.Collaboration) + + m.Group("/hooks", func() { + m.Get("", repo.Webhooks) + m.Post("/delete", repo.DeleteWebhook) + }) m.Get("/hooks/new", repo.WebHooksNew) m.Post("/hooks/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost) m.Post("/hooks/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost) @@ -446,14 +458,14 @@ func runWeb(ctx *cli.Context) { m.Post("/hooks/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost) m.Group("/hooks/git", func() { - m.Get("", repo.SettingsGitHooks) - m.Combo("/:name").Get(repo.SettingsGitHooksEdit). - Post(repo.SettingsGitHooksEditPost) + m.Get("", repo.GitHooks) + m.Combo("/:name").Get(repo.GitHooksEdit). + Post(repo.GitHooksEditPost) }, middleware.GitHookService()) m.Group("/keys", func() { - m.Combo("").Get(repo.SettingsDeployKeys). - Post(bindIgnErr(auth.AddSSHKeyForm{}), repo.SettingsDeployKeysPost) + m.Combo("").Get(repo.DeployKeys). + Post(bindIgnErr(auth.AddSSHKeyForm{}), repo.DeployKeysPost) m.Post("/delete", repo.DeleteDeployKey) }) @@ -536,6 +548,7 @@ func runWeb(ctx *cli.Context) { m.Head("/hooks/trigger", repo.TriggerHook) }) }) + // ***** END: Repository ***** // robots.txt m.Get("/robots.txt", func(ctx *middleware.Context) { diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 11b919dde1..03728638d6 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -510,12 +510,14 @@ settings.remove_collaborator_success = Collaborator has been removed. settings.user_is_org_member = User is organization member who cannot be added as a collaborator. settings.add_webhook = Add Webhook settings.hooks_desc = Webhooks are much like basic HTTP POST event triggers. Whenever something occurs in Gogs, we will handle the notification to the target host you specify. Learn more in this Webhooks Guide. +settings.webhook_deletion = Delete Webhook +settings.webhook_deletion_desc = Delete this webhook will remove its information and all delivery history. Do you want to continue? +settings.webhook_deletion_success = Webhook has been deleted successfully! settings.githooks_desc = Git Hooks are powered by Git itself, you can edit files of supported hooks in the list below to perform custom operations. settings.githook_edit_desc = If the hook is inactive, sample content will be presented. Leaving content to an empty value will disable this hook. settings.githook_name = Hook Name settings.githook_content = Hook Content settings.update_githook = Update Hook -settings.remove_hook_success = Webhook has been removed. settings.add_webhook_desc = Gogs will send a POST request to the URL you specify, along with regarding the event that occured. You can also specify what kind of data format you'd like to get upon triggering the hook (JSON, x-www-form-urlencoded, XML, etc). More information can be found in our Webhooks Guide. settings.payload_url = Payload URL settings.content_type = Content Type diff --git a/config.codekit b/config.codekit index a8635f6d40..34b4f2ad29 100644 --- a/config.codekit +++ b/config.codekit @@ -395,6 +395,26 @@ "strictMath": 0, "strictUnits": 0 }, + "\/public\/less\/_organization.less": { + "allowInsecureImports": 0, + "createSourceMap": 0, + "disableJavascript": 0, + "fileType": 1, + "ieCompatibility": 1, + "ignore": 1, + "ignoreWasSetByUser": 0, + "inputAbbreviatedPath": "\/public\/less\/_organization.less", + "outputAbbreviatedPath": "\/public\/css\/_organization.css", + "outputPathIsOutsideProject": 0, + "outputPathIsSetByUser": 0, + "outputStyle": 0, + "relativeURLS": 0, + "shouldRunAutoprefixer": 0, + "shouldRunBless": 0, + "strictImports": 0, + "strictMath": 0, + "strictUnits": 0 + }, "\/public\/less\/_repository.less": { "allowInsecureImports": 0, "createSourceMap": 0, diff --git a/models/action.go b/models/action.go index 2beb42e576..8405084bbe 100644 --- a/models/action.go +++ b/models/action.go @@ -445,13 +445,13 @@ func CommitRepoAction(userID, repoUserID int64, userName, actEmail string, if err = CreateHookTask(&HookTask{ RepoID: repo.ID, - HookID: w.Id, + HookID: w.ID, Type: w.HookTaskType, - Url: w.Url, + Url: w.URL, BasePayload: payload, ContentType: w.ContentType, EventType: HOOK_EVENT_PUSH, - IsSsl: w.IsSsl, + IsSsl: w.IsSSL, }); err != nil { return fmt.Errorf("CreateHookTask: %v", err) } diff --git a/models/user.go b/models/user.go index f2fc480e1b..3d54b79e76 100644 --- a/models/user.go +++ b/models/user.go @@ -111,8 +111,11 @@ func (u *User) DashboardLink() string { return setting.AppSubUrl + "/" } -// HomeLink returns the user home page link. +// HomeLink returns the user or organization home page link. func (u *User) HomeLink() string { + if u.IsOrganization() { + return setting.AppSubUrl + "/org/" + u.Name + } return setting.AppSubUrl + "/" + u.Name } @@ -162,6 +165,15 @@ func (u *User) AvatarLink() string { return setting.GravatarSource + u.Avatar } +// DisplayName returns full name if it's not empty, +// returns username otherwise. +func (u *User) DisplayName() string { + if len(u.FullName) > 0 { + return u.FullName + } + return u.Name +} + // NewGitSig generates and returns the signature of given user. func (u *User) NewGitSig() *git.Signature { return &git.Signature{ diff --git a/models/webhook.go b/models/webhook.go index 18cda74871..6211b215f2 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -60,36 +60,45 @@ type HookEvent struct { PushOnly bool `json:"push_only"` } +type HookStatus int + +const ( + HOOK_STATUS_NONE = iota + HOOK_STATUS_SUCCEED + HOOK_STATUS_FAILED +) + // Webhook represents a web hook object. type Webhook struct { - Id int64 - RepoId int64 - Url string `xorm:"TEXT"` + ID int64 `xorm:"pk autoincr"` + RepoID int64 + OrgID int64 + URL string `xorm:"url TEXT"` ContentType HookContentType Secret string `xorm:"TEXT"` Events string `xorm:"TEXT"` *HookEvent `xorm:"-"` - IsSsl bool + IsSSL bool `xorm:"is_ssl"` IsActive bool HookTaskType HookTaskType - Meta string `xorm:"TEXT"` // store hook-specific attributes - OrgId int64 - Created time.Time `xorm:"CREATED"` - Updated time.Time `xorm:"UPDATED"` + Meta string `xorm:"TEXT"` // store hook-specific attributes + LastStatus HookStatus // Last delivery status + Created time.Time `xorm:"CREATED"` + Updated time.Time `xorm:"UPDATED"` } // GetEvent handles conversion from Events to HookEvent. func (w *Webhook) GetEvent() { w.HookEvent = &HookEvent{} if err := json.Unmarshal([]byte(w.Events), w.HookEvent); err != nil { - log.Error(4, "webhook.GetEvent(%d): %v", w.Id, err) + log.Error(4, "webhook.GetEvent(%d): %v", w.ID, err) } } func (w *Webhook) GetSlackHook() *Slack { s := &Slack{} if err := json.Unmarshal([]byte(w.Meta), s); err != nil { - log.Error(4, "webhook.GetSlackHook(%d): %v", w.Id, err) + log.Error(4, "webhook.GetSlackHook(%d): %v", w.ID, err) } return s } @@ -117,7 +126,7 @@ func CreateWebhook(w *Webhook) error { // GetWebhookById returns webhook by given ID. func GetWebhookById(hookId int64) (*Webhook, error) { - w := &Webhook{Id: hookId} + w := &Webhook{ID: hookId} has, err := x.Get(w) if err != nil { return nil, err @@ -134,26 +143,37 @@ func GetActiveWebhooksByRepoId(repoId int64) (ws []*Webhook, err error) { } // GetWebhooksByRepoId returns all webhooks of repository. -func GetWebhooksByRepoId(repoId int64) (ws []*Webhook, err error) { - err = x.Find(&ws, &Webhook{RepoId: repoId}) +func GetWebhooksByRepoId(repoID int64) (ws []*Webhook, err error) { + err = x.Find(&ws, &Webhook{RepoID: repoID}) return ws, err } // UpdateWebhook updates information of webhook. func UpdateWebhook(w *Webhook) error { - _, err := x.Id(w.Id).AllCols().Update(w) + _, err := x.Id(w.ID).AllCols().Update(w) return err } // DeleteWebhook deletes webhook of repository. -func DeleteWebhook(hookId int64) error { - _, err := x.Delete(&Webhook{Id: hookId}) - return err +func DeleteWebhook(id int64) (err error) { + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + if _, err = sess.Delete(&Webhook{ID: id}); err != nil { + return err + } else if _, err = sess.Delete(&HookTask{HookID: id}); err != nil { + return err + } + + return sess.Commit() } // GetWebhooksByOrgId returns all webhooks for an organization. -func GetWebhooksByOrgId(orgId int64) (ws []*Webhook, err error) { - err = x.Find(&ws, &Webhook{OrgId: orgId}) +func GetWebhooksByOrgId(orgID int64) (ws []*Webhook, err error) { + err = x.Find(&ws, &Webhook{OrgID: orgID}) return ws, err } diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 648ec1fec4..ee5cdfe623 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\xfd\x72\xdb\x48\x92\xe7\xff\x78\x0a\xb4\x37\x7c\x76\x47\xc8\x74\x74\x4f\xdc\x47\x4c\xd8\xee\x93\xa5\xf6\xc7\xac\x65\x69\x2d\x79\xe6\xe6\x1c\x0e\x34\x48\x40\x24\x46\x24\xc0\x06\x40\xd1\x9a\x8d\x8d\xb8\xd7\xb8\xd7\xbb\x27\xb9\xcc\x5f\x66\xd6\x07\x00\xca\xf6\xec\xc6\xdd\x3f\x64\xa1\x2a\xeb\x2b\x2b\x2b\x2b\x2b\x2b\x2b\x2b\xdf\x6e\xb3\xa2\xec\x16\xe9\xf3\xf4\x38\xdd\xe6\x55\xbd\x2e\xbb\x2e\xed\xca\xf5\xf5\x93\x55\xd3\xf5\x65\x91\xbe\xae\x7a\xfa\x6e\x6f\xab\x45\x99\x24\xab\x66\x53\x12\xe8\x1b\xfa\x4b\x8a\xbc\x5b\xcd\x9b\xbc\x2d\x28\xe2\xd4\xc2\x49\xf9\x65\xbb\x6e\x5a\x06\xfa\x55\x42\xc9\xaa\x5c\x6f\x39\x0f\xfd\x25\x5d\xb5\xac\xb3\xaa\xa6\xcf\x4b\x0a\xa5\x6f\xeb\xa4\x6b\x16\x55\xbe\xce\x82\x04\x44\x58\xfa\x1f\xd3\x9f\xeb\x22\xbd\xec\xcb\x6d\xfa\xac\xdb\xe4\xeb\xf5\x8b\xbc\x43\x96\xbe\x4c\xf3\xc5\xa2\xd9\xd5\xfd\xb3\xa7\x92\x20\x85\x37\xbb\xde\x4a\x3f\xdf\xf5\x12\xb7\xdb\x5a\xd4\xc7\x6d\xd2\x96\xcb\x8a\x3a\xd6\x52\xd4\x07\x0d\x26\xfb\x72\xde\x55\x3d\x37\xfa\x2f\x12\x4a\x6e\xcb\xb6\xab\x1a\x6e\xcf\x9f\x25\x94\x6c\xf3\x25\x03\x5c\xd0\x5f\xd2\x97\x9b\xed\x3a\x47\x86\x2b\x0d\x26\xeb\xbc\x5e\xee\x04\xe6\x9d\x06\x93\x45\x5b\x52\x52\x56\x97\x7b\x8a\x3d\xc1\x47\x4a\x1f\xb3\xd9\x2c\xd9\x11\x4e\xb3\x6d\xdb\x5c\x57\xeb\x32\xcb\xeb\x22\xdb\x08\xd6\x3e\x52\x7c\xaa\xf1\x29\xc5\xa7\x1c\x8f\x6e\x94\x05\x21\x28\xcb\x3b\xed\x0b\x0d\x0d\xe1\x2b\xef\x12\x14\x55\xe7\x1b\xcb\xcd\xc1\xa4\xdc\xe4\xd5\x9a\x07\xe1\x09\x07\xa8\xf1\x5d\xb7\x6f\x30\x54\x17\x1a\x24\x44\x64\xfd\xdd\xb6\x04\x1e\x9e\x5c\x51\x28\x59\xe4\xdb\x7e\xb1\xca\xb9\xad\x12\x4a\x08\x68\xdb\x10\x42\x9a\xf6\x0e\x70\xf6\x91\x34\xed\x32\xaf\xab\xbf\xe7\xbd\x20\xe9\x3c\xf8\x4c\x36\x55\xdb\x36\x8c\xdf\x33\x04\x12\xea\x71\xc6\xe5\x50\xcc\x7b\xc2\x44\x50\x0a\xa7\x6c\xaa\x65\x2b\xa8\xe4\xc4\x33\x7c\x71\x29\x9c\x76\xdd\xb4\x37\x9a\xf0\x8a\x83\x83\xac\xd4\x08\x4d\x8d\xeb\xcf\x6b\x42\xbe\xa6\x9e\xe1\x23\x02\xe8\x92\xbc\xd8\x10\x2a\xb7\x79\x5d\x32\x8e\x8e\xf9\x8b\xf0\x42\x5f\x89\xd2\x54\xd6\x95\x7d\x5f\xd5\x4b\x46\xf6\xb1\x44\xa5\x97\x1a\x95\x04\x69\x2e\xee\xae\xd9\xb9\xe1\xa4\xf8\xbf\xd2\x67\x7a\x21\x9f\x92\x16\x64\x42\xa2\xcb\xc9\x3d\xe9\xb2\xeb\xb2\x2c\xa4\x2f\x5d\xfa\x8a\xc2\xc9\x76\xb7\x5e\x13\xd6\x7e\xdf\x95\x5d\xcf\x99\x2e\xe8\x9b\xfa\x2f\xdf\x49\xd5\x75\x14\xa0\xe8\xb7\x08\x24\x34\x74\xf5\x02\x9d\x39\x41\x20\x49\x3e\x75\x65\xde\x2e\x56\x9f\x13\xf9\x47\x5b\x39\xc0\xb4\x77\x68\x50\x99\x90\x94\x88\xa4\x06\xab\x20\x59\x34\x05\x7f\x9c\xd0\x1f\x15\x5d\xd5\x5d\x4f\x33\xee\x73\xa2\x01\x06\x93\x90\x0c\x40\x5f\xf5\xc0\x82\x46\x62\xfa\x76\x3c\x82\xe9\xab\xaa\xed\xfa\x27\x7d\x45\xc4\xfa\x61\x57\x27\xdc\x3f\x9a\x6d\x59\x31\x37\x26\xf4\xba\x21\x14\x21\xba\xa5\xfe\x9d\xdd\x5d\xfe\xcb\xbb\xa3\xf4\x82\x38\xd1\xb2\x2d\x29\x9c\x52\x19\xf4\x47\x79\xfe\x30\x4b\x28\x97\xd5\x74\x9a\xf7\xf9\x3c\xef\x4a\x8f\x56\x4e\x14\xea\x76\x69\xa0\x71\xe6\x6a\xe0\x60\x5d\x1f\xf5\x77\x6a\x86\x50\x19\x3a\xaf\x5c\x19\xef\x79\x72\x51\x3c\x33\x35\x64\xbe\x58\x97\x1c\x4f\x45\xa5\x6f\xdf\xbf\x3f\x3f\x7d\x99\x96\xf5\xb2\xaa\xcb\x74\x5f\xf5\xab\x74\xd7\x5f\xff\xb7\x6c\x59\xd6\x65\x4b\x3c\x6e\x51\xa5\x34\xa7\x5a\xa2\x84\x94\x08\x5b\x3a\x37\x4b\xba\x6e\x4d\x73\x1f\xe8\xbd\xbc\x7c\x97\x9e\x31\x8a\xb7\x79\xbf\x42\x43\xfa\x55\xd2\xfd\xbe\x66\x14\xb9\x0a\xaf\x56\x65\x0a\x2a\x03\x50\x73\x6d\xf8\x48\x0b\x6d\xe3\x2c\x29\xdb\x36\x23\xb6\xd4\xdf\x65\x9a\x59\xcb\x1b\x42\x4a\x11\x44\x3a\x75\xd3\xa7\xf3\x32\x45\x9e\x59\x92\x58\x83\x0d\xbb\xc7\xdb\xed\xba\x5a\xc8\x5c\x7f\x2d\x69\x1e\xd1\xbc\x82\x28\x96\x42\x38\x20\xca\xd2\x02\x74\x11\x7b\xe6\xf9\x90\x46\x0c\x04\xf9\x57\x25\x31\xc0\xd5\x6e\x29\x6c\x6f\xdd\xec\x8a\x1f\x40\xa9\xd6\x7a\x4f\xa8\xe9\x87\x86\x1a\x0c\xec\x38\x00\x5f\xc5\x31\x51\x1c\x2f\x5a\x6d\xb9\x69\x88\xaf\x38\x62\xaf\x88\xa0\xf6\x15\x25\x52\x4f\xbb\xfc\x96\xe6\x5b\xdf\xa4\xfd\xaa\xea\xd2\x82\x88\x6d\xc1\x05\xd3\xd4\xd8\xd1\x72\x21\x64\x41\x04\x2a\xa4\x61\x71\xf1\x18\x00\x6a\xb3\x23\x6a\x5a\x51\x61\xbc\x18\xf1\xca\x49\x45\x4e\xb5\x13\x5d\xa2\x72\x40\xdf\x44\xb9\x0d\x71\x65\xe6\x9b\xa7\x08\xe8\x77\x58\x3e\xb5\x2a\xbf\xbe\xa6\x56\x75\x44\x15\x6f\xd2\xc5\xba\x21\x92\xfa\xf8\xe1\x5d\xc7\x04\xb3\xca\xb6\x4d\x8b\x65\x8e\x92\x2e\x28\xe8\xe2\x02\x44\x33\x44\xbd\xdb\xcc\xe9\x6b\xbf\xaa\x88\x03\x00\xed\x9c\x83\x57\x73\x8a\xa5\x2a\x76\x1d\x0d\xe1\x51\x4a\x24\x4c\x3d\x20\x94\x81\x00\xb8\x0f\x45\xd5\xe5\x73\x1a\x7b\x06\xbf\xa6\x65\x6b\xd7\x12\x59\xad\xfa\x7e\x6b\x35\xbf\xb9\xba\xba\x90\xaa\x5d\xec\x7d\x75\xe7\x01\x65\x60\x0c\xd6\xbc\xf0\xd6\x69\x53\xcf\x40\x24\xbb\x76\x3d\xa0\x1f\xea\xab\xa5\x1c\xc0\x0b\x37\xe1\x29\xff\x5c\x7a\xf4\x00\xcf\x1d\x49\x27\x7b\x50\x13\xe1\xb8\xc4\x02\x48\x44\xdd\x6c\xb9\xdc\x80\xaa\xcf\x35\xc2\x93\x32\x16\x4d\x97\x2e\x4b\x27\xa5\x42\xf6\x09\xd8\xff\x86\x3a\xac\x6c\xe4\xf2\x8c\xd0\x00\x5e\x82\xd8\xeb\xb6\xd9\x50\xec\x2b\xfa\xf3\x11\xbe\xf9\x67\x5c\x1e\x60\xf2\xa2\x20\xfe\xd6\x1d\xa5\x1f\x5e\x9d\xa4\xff\xf9\x0f\x3f\xff\x3c\x4b\xdf\xf6\x3c\x13\x99\x38\xff\xc6\x44\x45\x41\x59\xc3\x1d\x28\xb1\x8c\x9e\xe8\xee\x01\xcf\xac\x07\xe9\x33\xa4\xfe\xf7\xf2\x4b\x4e\xf2\x47\x39\x5b\x34\x9b\x17\xcc\x55\x36\x79\x3f\x4b\x38\x85\xc8\x55\xe9\xf8\xb2\xac\x0b\x0a\xa8\x24\xa0\x69\x01\xbb\xd3\xf4\x40\x2e\x10\xa9\x28\x5b\x34\xf5\x75\xd5\x72\x87\x7e\xad\x41\x0d\x26\x2f\xd1\x3a\x80\x14\x5b\x6e\x09\x69\xc4\x41\xaa\xeb\x3b\x0f\x8a\xae\xbe\xe7\x48\x1d\xd0\x44\xa8\x2e\x53\x51\xd2\x61\xf9\x52\x88\x91\xc7\xed\x9c\xba\xd7\x1a\xbe\x3b\x8f\xf0\xe6\xfa\x7a\x4d\x1c\xd5\xb8\xa4\xd6\x70\x2e\xb1\xc2\x30\x43\x10\x22\xc6\x2d\x24\xbe\x53\x25\xe2\x93\xd3\xf7\x69\x79\x4b\xd4\x46\xe4\x40\x4b\x74\xb1\x5b\x80\xc2\x18\xf6\x28\xe5\xf5\x89\xf0\x4b\x73\x63\x21\x7c\x35\x60\x12\xdc\x34\xe6\x44\x0b\x02\x22\xde\xa0\x93\x22\x13\x04\xb5\x26\xfb\x58\x35\x97\x2c\x34\x87\x69\x93\x19\x46\xad\xc3\x28\x75\xc3\xbc\x34\xdc\xf5\xfa\x2e\x85\xa0\x02\xba\x10\x51\xd2\x64\xde\x6e\x96\xe8\x22\x69\x92\x73\x76\x5b\x41\xca\x74\x43\x85\x54\x13\xa3\x79\x4e\xff\x99\x01\x58\x7c\xed\x26\xf3\xba\x86\x9d\x73\xc5\x9d\x93\x30\xb9\x7d\x1d\x9a\x80\x1a\x58\x0c\x26\x62\xbc\xad\xc0\xe2\x14\x59\x68\x2b\x61\x0c\x55\x53\x55\x5d\x59\xa2\x04\xca\xff\x94\xca\x44\x9e\x99\x4a\x5d\x2a\x08\xd9\x82\x4f\xc2\x50\x5a\x34\x29\xaf\x40\xe0\xa3\x94\xdb\xba\x5a\x6b\xf7\xb5\xcf\x69\x5b\x2d\x57\xc4\x57\x9a\xfd\x91\x20\x6d\xbf\x6a\x4a\xa6\x9d\xb7\xa7\xcf\x7f\x92\x76\x2c\x99\xab\xba\x4c\xcc\x8f\xf3\x5d\xdf\x30\x9d\xea\x10\x4a\x13\xdc\xba\x06\xc8\x91\x7c\x27\x40\x43\x89\xda\x64\xc6\xb1\x98\xa0\xf3\x24\x4c\xd3\x09\xe2\x61\x24\xf7\x40\x2a\x57\xf1\x29\x5b\x36\x90\x0b\x4d\x5c\xe2\x35\x82\xb6\x18\x5d\x9f\x2d\xab\x3e\xbb\xe6\x09\xcb\x65\xbe\xe2\xbc\xbc\x64\x51\x4a\xfa\x88\x92\x1e\xa5\x34\xeb\x49\xd8\x2d\xfe\x98\x3e\xbc\x55\x39\xe1\x0f\x3c\x13\xb3\xfc\x96\x60\x31\x18\x2a\x6d\xb6\xa5\x88\x29\xb6\xad\x29\x1a\xa2\x73\xc6\x79\xb7\xdb\x82\xa3\xab\x68\x70\x94\x6e\x05\xb0\x68\xf6\xf5\xba\xc9\x0b\xb0\x1c\x9a\x5d\x15\x36\x65\xf3\xaa\xce\x69\x59\xb3\x52\xc0\xca\x1e\x12\x35\xbc\x3f\xbf\x02\xe0\xb2\x99\xef\xaa\x75\x61\x00\x33\xea\xe1\x6d\xbe\xae\x0a\x16\xf0\x74\xdc\x43\x61\xca\xa2\x2a\x69\xcb\xa2\x69\x79\x1d\x46\x6f\x2c\xe3\x01\x01\xa0\xe5\x85\x15\xd1\x94\x57\x61\x91\xcf\xad\xd5\x8c\x06\x1a\x78\x48\xbe\xbc\x92\x83\x62\xaa\xae\x7e\xd4\xa3\xa5\x8b\x1d\xd5\x45\x83\xce\xd1\x94\xb1\x4b\x9f\xbc\xa0\xdf\x84\xe5\x02\xe1\x7b\xcb\x31\xe2\x39\x31\x95\xc4\x9d\xcc\xd2\xa8\xa9\x11\x79\x3b\xea\x32\xe2\x0d\xfa\x1a\xb6\xd7\x48\xa0\xdb\x09\xbd\xf2\x0e\x74\x4d\xc3\x5a\xfe\x40\x81\x47\x34\x81\x97\x6b\x0c\x42\x0e\xb1\x89\xe4\xc7\x86\xf0\xc6\x04\x72\x24\xd3\xe5\x9a\xba\xc6\xbc\xb3\xcf\x6f\xa8\x6d\x39\x2f\xd3\xc9\x27\xde\xa5\x7f\x4e\x76\x22\x79\x35\xeb\xc2\x49\xb9\xa0\xe9\xa6\x1d\xee\x0a\x3d\x90\xa3\xd7\x8e\xc4\xd7\xc5\x2a\x73\x7b\x7c\x46\x4a\x5f\x7e\xc1\x9a\x87\x24\xbf\xe5\x67\x62\xe7\xa4\x64\x73\x87\xe1\xe2\x4e\x9c\xdd\xf9\xd1\x22\xb9\x8b\xa6\x08\xed\x0d\xe6\x0d\x63\xed\xb6\x74\x50\x27\x61\x6c\x9c\x81\xca\x22\x09\x51\x8b\x8a\x37\x6f\x94\x24\x3b\x4c\x4d\x95\x5d\x66\x97\x80\x89\xa9\x82\x02\xbc\x8e\xc6\x53\x37\x4a\x33\x1a\x18\xec\xc2\xac\x66\xe2\x88\x77\x32\x2f\x82\x3a\x93\x4f\xaa\xbc\xf8\x9c\x18\xdc\x87\x38\x9d\xb8\x09\xed\xa8\xfc\xae\x3e\xb3\xd1\x75\xbb\x7b\xde\x8c\x2a\x43\xf1\x0b\xe9\xaa\xdc\xf2\x9a\xbb\xe9\x40\x16\x6b\x82\x2c\xee\x54\x6a\x74\x04\xf2\x8b\xb0\x6a\xa2\x18\x62\x70\x3f\x98\x5a\xe4\x3b\x8b\x78\x59\x11\x29\x20\x7f\xbc\xf4\x88\xaa\x81\x84\x3b\xe8\x57\xda\xf6\xee\x28\x8d\x16\xb1\x55\xde\x11\xfb\xa6\x15\x52\xb3\x15\x33\xdb\xd7\xf0\xb0\xe7\x0b\x99\x33\x50\x91\x80\xca\x25\x67\xd3\x0e\xd7\x44\x6e\xa1\x70\x38\xad\xc5\x49\x0c\x90\x07\x42\xb1\x61\xa2\x4e\x42\xd8\xa6\x64\xa1\x31\xdb\x88\x56\x42\xbe\xd2\xb3\x32\x21\xc9\x66\x49\x13\xda\x08\xf6\x39\x6f\x26\x97\x90\xad\x95\x5e\x19\xa0\xec\x43\x16\xac\x10\x16\xf3\x8b\xa9\x82\x88\x33\xec\xb1\xd3\xa6\xb9\x3d\x42\x3f\x2d\x56\x94\x3c\x33\x96\x2e\x2b\x36\x04\x9c\x8e\xb8\x85\x47\xe2\x31\xab\x71\xd2\x10\x4a\x05\x4d\xdf\x2d\xce\xc0\x5c\xe3\xd9\xfc\xc5\xc3\xee\xd9\xd3\xf9\x0b\xc7\x5b\x17\xab\x72\x71\x23\xf4\x57\xd5\xf3\xe6\x0b\xb6\x8a\x34\xf0\x8c\xe3\x9a\xe7\xd8\xc3\x22\x5d\x51\x2a\x76\x13\xc4\x0b\x28\x1b\x21\x9e\x53\xa3\x41\xa3\xc6\x30\xcb\x98\x99\x52\xcd\xad\x2e\x46\x48\x94\x1b\x95\x48\xcb\x12\x1a\x46\x9e\x7c\x98\x07\x9e\x6e\x8f\x39\x96\x29\x17\xeb\x84\x27\x5d\xf4\x77\x5d\x6d\xaa\x7e\x44\x3a\xcc\x88\x72\x25\x41\xd5\x50\x18\x2e\x51\x16\xb0\x81\xb6\x10\x3b\xa7\x62\x68\xe1\x35\x72\xda\xe7\xb4\xcb\xf8\x43\x4a\x24\xb4\xa3\x65\x8c\xfb\x44\xcd\x24\x7e\x9e\xf3\xca\x4d\x3b\x8c\xbc\xcb\x76\xb5\xa2\xb5\x2c\x8c\x98\xde\x54\x58\x65\xb8\x5e\x23\xf9\x00\xca\x30\xaf\x82\x72\xfa\xd8\x61\xfc\x47\x92\xaa\xaf\x5d\x36\x66\xfd\xdc\xa0\x8a\x85\xba\x7c\x72\xf0\x88\x35\xd6\xa5\x6c\x0c\x81\x01\x86\xe3\x81\xa6\xdd\x85\x1f\x3d\xda\xa2\xdc\x50\x0c\x06\x64\xbe\xeb\xfb\x86\x85\xf6\x35\x53\x8d\xe4\xb1\x56\x9f\x00\x10\xfb\x10\x5f\x1e\x06\x24\xc4\x93\x8c\x4d\x69\x42\x74\xe6\xd5\x9b\xba\xdd\x19\xf4\x4e\xd7\x4a\x07\x56\x88\xa2\x21\xaf\xef\x8c\x94\x89\x20\xb8\x15\x5c\x61\x3f\xdd\x96\xc7\x6d\xf9\xa3\x6f\x8d\x9b\x33\xc8\x61\x2d\x92\xec\xc1\x7c\xfa\x80\x54\x51\x6c\xd9\xac\xb3\xa5\x4f\xd5\x43\x9e\x3e\xda\x18\xbd\x48\xe7\x99\x41\x0c\x96\xe4\xce\x02\x88\xa6\x5e\x20\xf7\x6c\x50\x97\xdf\x2f\x8d\x31\xd8\xc7\x4d\xf6\x2b\x58\xdf\x34\x59\xb7\x92\xbd\xa9\x35\x8f\xf6\xb5\xf5\x32\x52\x70\x40\xb9\x0d\xa2\xfb\x2f\xbc\x4e\xd2\x0e\x20\x5f\x7f\x4e\xee\xa0\x49\xfb\x2b\x71\xf8\x1a\x3a\xca\x26\xa1\x04\xd9\xcd\x9c\x21\x40\xa0\xbc\xb5\xfa\x9c\xf0\x1a\xfa\x7e\x20\x17\xf2\x12\xa1\x71\x81\x80\x82\xa4\x5f\x23\x71\xcf\x86\x30\xb9\x98\x90\x21\x3f\x94\x5e\x17\x8b\x90\xeb\x22\x6d\xc1\xaf\x6c\xaf\x44\xbb\xf1\x9b\x52\x0b\x7f\x43\xfb\xee\xee\x23\xf6\xcd\xb2\x09\xe6\x1d\xf3\x45\x7e\xc7\x52\x9b\x44\xeb\x07\x12\xae\xca\x7c\xa3\xad\xe4\xa0\x14\x71\x4c\xcb\x99\x46\x72\x90\x56\xb9\x40\x1f\x93\x40\x7e\xb1\x2e\x88\x30\xa3\x72\x83\xdb\x3f\x94\xaa\xe8\xfd\x6d\xa4\x44\xfa\x2d\xc9\xd7\xdb\x55\x0e\x01\x22\x00\x83\xbe\x84\x80\x30\xf0\x29\x40\x40\x0b\xbb\x4d\xd9\x56\x0b\x0e\x72\x86\xc7\x4f\xb2\x1f\xa1\x2a\xa3\x89\x42\x92\x64\x5c\x58\x41\x93\xe4\x1f\x2a\x90\xc3\x2c\x65\x86\xe5\x76\xd5\xdf\xad\x17\x51\x71\x1c\x4f\x3c\x87\x20\x20\xd3\x79\x28\x07\x84\x85\x91\xe5\xbb\x9e\xd5\x27\x14\x41\x32\x64\x54\xf4\x26\xff\xf2\xb5\x8c\x9b\x66\x22\x9f\xb0\x02\x9f\xc9\x26\xbc\x76\x31\x66\x07\x04\xcf\x0a\x92\x83\xd0\x34\xf4\x0c\x52\xdf\xd0\xaa\x56\x3b\xb0\x8f\xf2\x9d\xe2\xfb\x8f\xa6\xf6\xa7\x25\x44\x25\xf0\xd4\x1d\x00\xd0\xe2\x5c\x30\xdf\x84\x24\x3d\xf3\xd3\x2d\x94\xae\x1d\x39\xb3\x1c\x6a\x3a\x03\xc7\x38\x48\x24\x95\x8d\x06\x91\xd4\xcc\x9f\x55\x64\xbc\x46\x66\x2c\xb5\xd6\xa1\x6c\xea\x56\x4f\x5b\x5f\x00\x21\x1a\xeb\x6c\x9c\x6f\x30\xe1\x0e\x66\x27\x51\x60\x22\xf7\xf9\x58\x05\x79\x20\x7f\x4f\x53\x66\xa2\x00\x37\x93\x0e\x66\x94\xc1\x44\x26\xea\x79\x31\xe2\x05\xe3\x8c\x0c\x46\xfb\xa6\xf5\xba\x5c\xb2\xae\xca\x2a\x8e\x6a\x53\x12\xa2\xc5\x40\xc0\x42\x02\xf2\x18\x76\x83\x15\x8e\x6b\xb8\x0b\x70\x63\x14\xef\xbf\xa8\xd5\x24\xcf\x53\x90\x73\x06\xbb\x30\x6d\x86\xae\xe4\x1b\xde\x70\x74\x3b\x66\xcd\xbc\x39\x11\xe9\x24\x1e\x0d\x5e\x78\x51\x54\x89\x2a\x0e\x17\x4f\xb4\xc8\x3b\xb6\xaf\x95\x0f\xb0\xef\x2c\x3a\xdc\xaf\x8f\x0b\xd6\xc2\x1d\xd0\xa1\x62\xdd\x8e\xb2\xfc\x52\x41\xef\xf7\xba\x62\x7d\x12\xf6\x94\x6e\x2b\x8d\xb4\x59\xb2\x26\x66\xc0\x7b\x17\xe9\x95\xc8\xb1\xcd\x2d\x6f\xfd\xb8\x3e\x4e\x95\x7c\xa2\x07\xd4\x4e\xf1\x38\xeb\xee\x94\x76\x83\xcd\xbe\x2c\x8e\x68\x89\xe7\x1c\xd4\x4e\xb0\x8d\x7c\xbd\xcf\xef\x3a\x28\x59\x8c\xe3\xb0\xce\x53\xb2\x33\x3b\x21\x01\x60\x89\x56\x85\x9a\x75\x9a\x71\x86\x09\x56\x11\xf3\xe2\xe1\x96\xe9\x3d\xf6\x97\xe0\x16\xaa\xb6\xa1\x6d\x3b\x2f\x7b\x4e\x51\x4c\xe0\xbc\x37\xe6\x9d\x24\xcb\xf8\x92\x1c\x14\x84\xc3\x1a\xe5\xfc\x13\x79\x8f\x58\x3c\xa2\x6a\x58\x58\x21\x7e\x2c\xb8\x26\xf9\x8f\x30\x8b\x26\x05\xca\x86\x1d\x95\xff\x44\xe4\xe2\x8a\x70\xc8\xfb\x2c\xbf\xff\xe6\xb5\x89\x46\xc5\x34\xc3\x12\x8f\xdd\x73\xd2\xf5\x34\x05\x18\xd3\x76\xc0\xf8\x57\x91\xaf\x74\xcf\xcd\xa9\x98\x62\x40\x53\xb7\xaa\xb6\x69\x03\x6d\x63\x88\x42\x4f\xb6\x81\x88\xc9\x3a\xf0\x12\x72\x37\xab\x5d\xdb\xbc\xee\xae\x4b\xe8\x5f\x37\xe9\x35\x9f\x61\xcd\xb4\x6a\x96\x58\xe5\xa0\xf1\x40\xcd\xb2\x87\x41\xd5\xe1\x6a\x81\xb1\x0b\x06\x2a\xae\x5a\x14\xf2\xbc\x60\x49\x1b\x80\x55\x5f\x52\x67\x6d\x60\x32\x1b\xa1\x00\x52\x63\x74\xbc\x62\xad\xb9\x2d\x43\x44\x5c\xff\xa3\x3d\x0f\xb0\xae\x2a\x66\xd1\xcb\xc7\xc3\x24\x95\x42\xdd\x81\xd3\xb1\xf9\x5d\xdc\x7b\xce\xea\x28\x80\xcf\x6a\x6e\x4b\xad\x85\x27\x06\xcf\x95\x41\x81\x50\x73\xf8\xbd\x42\xd2\xe7\xd8\xf2\xcd\xa9\x89\x8b\x55\x34\x3b\xaf\x90\x92\x4a\xca\x68\x82\x26\x9f\xb8\x6a\xda\xc6\xaf\xf2\x7a\x59\xb2\xae\x8c\x4a\xe2\x25\x0f\xdf\x2a\xa1\x4b\x24\x35\x78\xd9\x4a\x98\x35\xec\x96\x65\x41\x13\xb2\xd9\xdc\x9b\xb3\xaa\x4d\xe3\xd3\x25\x7f\x6b\x48\x86\x80\xaa\xf8\x4f\x14\x62\xe9\xb7\x4e\xa2\x53\xa9\x81\x9e\x01\xdb\x83\xaa\xbf\xc3\x71\xd9\x9c\x64\x60\xd9\xa4\x51\x0c\x6d\x73\xc1\x1d\xa0\xfa\x78\x65\x61\x1a\x8f\x9c\x99\x1e\x4f\x6d\x09\x29\x9c\xe8\xa1\x5e\x59\x38\xe1\x5d\xf2\x66\x86\xc5\x81\x85\x69\x68\xb7\x83\x25\xe1\xd1\xc3\xee\x11\x0f\x98\xa5\xcd\x02\xf8\x6d\xde\x13\x5b\xac\x65\x8b\x22\x1c\x2a\xcc\xaa\xc9\xae\x08\x70\x15\x01\x9b\xe1\x2c\x5a\x50\xf1\x39\xf1\x47\xe4\x76\x3a\x3e\xa5\x51\x55\x16\xd3\xa9\xcc\xfb\xcf\x14\x54\x8d\x48\xea\x0c\x44\x74\xab\x8a\x03\x48\x3b\x35\xea\xe2\x43\xa4\x2e\x51\x1d\x52\xac\x40\x52\xf2\x7e\x9e\x9e\x4a\xc0\x36\xbd\xbb\x0a\x7d\xaa\x8a\x24\xd9\x02\xef\xc1\x81\xbe\x0e\x84\x6b\xb4\x1a\x6e\x78\x25\x76\x3b\x5c\xd9\x09\x0b\x52\x0a\x08\xd7\xce\x14\x20\x05\xf0\xe9\x6f\xb0\x61\x63\xed\x2c\x76\x72\x75\x70\x5e\x42\xfb\x5d\xce\xc7\x60\xfb\x72\x9e\xb2\xbe\x94\x08\x87\xf6\x45\xda\xd1\x4d\x4e\x5b\xaa\xdb\x2a\x77\x9a\x19\x1a\x2d\x36\x19\xd0\x55\xf4\x15\x9b\x0b\xe0\x0c\x76\x6c\xdb\xc2\x07\x1a\x7a\x76\xf1\x4e\x83\xc9\x6e\x5b\xb0\x4e\xcb\x77\xf8\x23\x22\x5c\x87\xe3\xf4\x40\x5d\x89\xae\x5b\x36\x27\xcd\x08\x78\x91\x2a\x1c\xb7\xec\x6e\x66\xd3\x67\xc2\x5e\x45\xa7\x50\x31\x04\x09\x4f\x09\x24\x49\x37\xad\x06\x30\x13\xde\x03\xf4\xca\xc1\x20\x10\x42\x6b\x65\xba\x6a\xf6\xe9\xba\xaa\x6f\x3a\xc5\xaf\xd3\x87\xd8\x3e\x39\x3d\x45\x04\x01\x8b\xa6\x86\xc5\xaa\xaa\xde\x95\xbf\x24\x16\x12\x4d\x3e\x82\x63\x0b\x8b\x52\x56\xc5\x21\x33\xd0\x03\x98\x13\x44\xa7\xc7\x88\x9e\x84\xf5\xfb\x5c\xcd\x82\xb3\xe8\xe0\xf0\xf5\xba\x64\x01\x1b\xec\xf0\xb5\x72\x21\xc2\x4f\xd3\x74\xaa\x7b\xf4\xec\x87\xe3\xa0\xa8\x50\x28\x1d\x2d\x07\xa1\x83\x29\x8d\xb1\x83\x0e\x82\xe2\xed\x21\x09\x4b\xda\x1e\xcc\xed\xac\xda\x88\x11\xd3\x47\x4d\x15\x63\x03\xb7\xaf\x40\xf2\x8c\x76\xca\x83\xce\x84\x47\x0e\xef\x09\x97\xd2\x7d\xe3\xa3\x96\x78\x64\xe2\x82\x20\x04\x8b\x7d\xd4\xd8\x21\x65\x69\x01\xa6\x3d\xff\x0a\x81\x19\xf9\x84\x27\x31\xc2\x9b\x1d\x6b\x69\xd6\x91\x50\x78\xa2\xe7\x00\x2e\x9d\x31\x1b\xa4\xbf\xc7\x99\xd9\x50\xdb\x10\xed\x94\xb4\x84\x83\xd2\xf4\xa0\x4d\xa3\xb9\x63\xf9\xf6\xd4\xb7\xb0\x3b\x46\xf0\x33\xa1\xfe\x1c\x9a\x61\x39\x56\xc3\xb9\xbd\xd0\x4b\x8d\x33\x39\x29\x82\x10\x80\x0d\x47\xe7\xf7\x19\xc7\xc2\x8d\x58\xa3\x2e\x56\x51\x0e\x40\x0d\xa3\xe2\xfd\x64\x69\x87\xe0\x21\x63\xdb\xb6\x34\xe8\xb4\xf0\x0e\x34\x51\x23\x96\x16\xb1\x2f\x70\xaf\x06\x27\xba\x9e\x6b\xd1\x0e\x52\xcb\x62\xfe\x8f\x90\xc5\x78\xed\x65\xc9\xda\x2d\xab\x54\x99\xb5\x4b\x15\x96\x9d\x50\x1b\x30\x07\x4a\xa7\x9e\x28\x80\x89\xb8\x89\x00\x0b\x41\x4c\x13\x6a\xd1\x59\xa4\xe7\x85\xc6\xf6\xff\x9b\x6e\x37\xaa\xd0\xe9\x76\x7d\x53\x07\x64\xc3\x6d\x1c\xac\x38\x23\x02\xa2\x04\xac\xbf\x3a\xf4\xc1\xaa\xaa\x83\xef\x16\x57\xae\x46\x64\x7a\x46\x13\x45\x61\x09\x56\x22\x00\x87\x65\x01\x0f\x56\x1b\x30\x39\x12\x01\xbf\x1b\xa9\x21\x63\xfe\x7a\x8c\x1d\x0c\x61\x45\x60\x59\x1e\xe0\x05\x4d\xa4\x3f\xdd\x11\x6d\x18\x11\x72\x6e\xeb\x2c\x68\x46\x47\x33\x47\xba\x6d\x58\x55\xcb\x15\xf5\xab\xda\xf0\x99\x25\xb8\xb6\x1d\x8c\xf9\x5d\x1d\x7f\xd1\xc4\x6b\x96\x35\xeb\x70\xb8\x06\x31\x99\x71\xdc\xf6\x59\xd7\xb7\x4d\xbd\x7c\x71\xda\xf0\x76\x8b\x35\x21\xbc\x54\xfc\xf2\xec\xa9\xc6\x13\xcb\xe0\x31\x64\x43\xd2\xd7\x55\xff\x66\x37\x7f\xd4\xa5\x4b\x92\x0d\xb0\x80\x3c\xcb\xd3\x55\x5b\x5e\x3f\x7f\xf0\xb0\x7b\xf0\x42\x0f\xaa\xc5\x9e\x69\x5f\x3b\xb4\x3c\x7b\x9a\xbf\x60\xe9\xb9\x6b\xd6\x24\xd4\xc6\x59\x9a\xcd\x46\xc6\x97\xd8\xdf\x46\x20\xd1\x7e\x9c\x6d\x97\x35\x30\x57\xb6\x8a\x1f\x2a\x70\xe6\x68\xdd\x8f\x8f\x0e\x9b\x89\x49\x91\x7e\x41\x05\x15\x06\xc6\x91\x5d\xdd\x07\x4c\x93\x75\x0b\xa9\xcb\x86\x05\x76\x9c\x0d\x03\xc9\xea\x1a\xaf\xda\x30\xe5\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\x4d\x95\x09\x81\xd1\x2b\x41\x98\x60\x23\x1a\xfe\xc1\x18\x80\xf4\x5e\xa7\xbf\xf5\x00\x69\x22\xc9\x28\x4e\x04\x02\xf6\x26\x03\x18\xa3\x66\x15\xfa\xc0\x3c\xad\x15\x60\x65\xba\x07\x11\x83\x10\x11\xc8\x84\x24\x49\x42\x67\xf6\xf6\x8d\xb2\xc3\xa8\x5e\xdf\x71\xab\xce\x1f\x7d\xa1\x2d\xc3\x1e\x33\xc6\xd0\xa7\x63\xa0\x83\xfa\x02\x9d\x82\x8e\xd4\x3b\xd5\x20\x20\x81\x96\xe1\x60\xb7\xf0\xbe\xd1\x13\x97\xd4\x22\x31\x26\xb4\x3d\xe8\xcb\x68\x32\x73\x23\x60\xfe\x25\x26\x1e\x50\x4a\xfc\xd7\xb4\xc8\x89\x13\xf4\xcd\x0d\x11\xd3\x38\x0b\xe2\x0f\x65\x72\x1c\xc6\x64\x74\xe5\x2f\xc7\x9e\x3d\x0c\xa5\x76\x3d\xe0\x3c\xc8\x62\x02\xce\xa2\xa5\x3a\xd3\x17\xd1\xa8\x94\x90\x8d\xe7\x55\x5d\x08\x27\x51\x46\xa0\xb6\x24\x8e\x03\x90\x7c\x51\x33\x10\xd4\x9e\x1c\xd0\xef\x70\x58\xa2\xf2\x83\xe9\x42\x0c\x7c\x57\x07\x0c\x54\xc8\x21\x13\x54\xb8\x4e\x5e\xd0\x16\x0c\x76\x64\xc7\x52\xe0\x15\x27\x77\x6a\x44\xa9\xe7\xc4\x96\xe5\xb5\x46\x62\x0e\x00\x50\x10\xde\x39\x44\xe0\xcb\xef\xc6\xad\x14\xb5\x01\x50\x0b\x31\x8c\x01\x51\x9d\xb1\xcc\x95\xd8\x04\xa4\xc7\x17\x6f\x69\xcd\x70\x15\x5a\xa1\xbf\xe6\x24\x47\x4a\x13\xf6\x4e\x13\xc0\xc4\x36\xe4\xb9\xee\x04\x49\xb2\x9b\xe2\x11\x39\x31\xc5\x5d\xa7\x46\x1d\x92\xce\xc4\xe9\x82\xe3\xb2\x0b\xb4\x23\x52\x1b\x5a\x32\x5c\xad\x5c\x57\x7f\x20\xcc\x3a\x1d\x1d\x4f\xad\xed\x1d\xf3\xff\xc0\xfc\x27\x17\x0c\xed\xc1\xc1\x07\x76\x47\x04\x09\x0d\x41\xca\x53\xb8\x75\xfc\xc3\x1a\x6c\x02\x44\x30\x94\x21\x1b\x99\x1c\x4c\xcf\x54\x26\xb3\x4d\x71\x96\xad\x95\x13\xf7\xf9\x6b\x7c\x86\x09\xdf\xef\x5f\xef\xe1\x32\x61\xaf\x02\x52\xbe\x98\xac\xd6\x51\xb4\x54\x3d\xe0\x37\xa9\x2c\x84\x72\x82\xce\xb5\x88\x6c\xad\x14\x11\x98\x64\x52\x29\xfb\x72\xcd\xb6\x94\x5a\xbb\x3f\x45\xd6\xae\x47\x67\xc8\x0a\xe4\x4e\x8f\xd9\x68\xd6\x89\x82\x82\x8a\x50\xbd\x65\x85\x11\x04\x4d\x37\x1c\x1b\xcb\x16\xd8\xd6\xeb\x93\xe3\xf7\xef\xcf\xaf\xfc\x32\xcd\xf3\xa0\x2e\x48\x98\xf8\xc1\x59\x60\x8d\xda\x65\x76\x58\x6e\x00\x63\x08\x6f\x09\xa6\x39\x0e\xc1\x85\x6c\xca\x4a\xa7\xe0\xb2\x01\xef\x69\xb8\x2d\xc6\xcb\xa3\xf6\x17\x87\xc6\x2f\xf9\xc4\xf2\xcd\xe7\xc4\x94\xc4\xe7\xfc\x9f\x84\x7a\xf6\xe0\x6c\x03\x53\xcf\x1f\x81\x78\x4b\x67\x6a\x40\x53\x8c\xf4\xee\x60\xd2\xbb\x1c\x5b\x08\xc2\x7d\x83\xb5\xe2\x3a\xc5\xf1\xe8\x11\xab\x11\x9b\x16\x13\x86\x91\xbb\xab\xab\xdf\x77\x10\xd0\x78\x03\x41\xcc\x83\x0d\xfb\xe6\xd5\x5a\x16\x94\x3f\xbb\x0f\x89\xe7\xd0\xc0\x1a\x37\xa8\x9c\xbe\x9e\x75\x5b\xb6\x55\xa4\xb5\xa1\x7b\xfe\x60\x57\xa5\xac\x95\x62\xdb\xa0\x07\x2f\x48\xdc\x67\x33\x03\x1a\x3e\x82\x78\xc1\x9a\xa5\x1b\x53\x58\x0e\xaf\x76\x20\xcd\x4c\x69\x39\x0d\xf6\xb4\x88\x9d\x68\x85\x6e\x8e\x44\xe3\xd4\x8b\xaa\x32\x0d\x7a\xc1\x53\x8a\x89\xfb\xa6\x0c\x31\xa5\x47\x4a\x6e\xe6\x76\x8b\xb6\x82\x3d\xb0\xc4\xf3\x65\x9e\x34\xb8\xc8\xe3\x22\x7d\xbd\x97\x34\xde\x0b\xde\x11\xcf\x96\x55\x4f\x9b\x32\xbe\xbe\x03\x55\x09\xcd\x17\x62\xe1\xb8\x07\x24\x21\x8b\x99\xc8\x6b\xb0\xc8\x58\xd5\x55\x9f\xb1\xa0\xb5\x91\xcb\x13\x54\x6c\xbe\x16\x21\x36\x46\xb4\x9c\xf8\xa7\x1f\x7e\x3d\x3e\x3d\xfb\x75\xb6\x29\xcc\x22\x49\xf1\xa9\xa6\x48\x01\x46\x8b\xf2\x3a\xdf\xad\x4d\x57\x8a\x0e\x23\x22\x7d\x89\x08\xbd\xb1\x43\xdb\x5a\xc2\xdf\xad\x2c\xe0\x72\x87\xe7\xad\xc5\x3c\xe6\x4d\xcb\x8f\x07\x34\x88\xc3\x63\xb8\xef\x57\x24\x0e\x4b\xb8\x5f\x9f\xc8\x36\x1a\x19\x6b\x87\x53\xb5\xe3\x89\x4e\xaf\x13\xbd\x51\x64\xf7\x3f\xdc\x95\x22\xb9\x00\x12\xa6\x1e\xa6\x65\xdb\xdc\xe6\x31\x49\xc3\x04\x6e\xbe\xde\x95\x0f\x5e\x08\xce\x8c\x9e\xad\x54\x1d\x82\x33\xbd\xd4\x14\x8c\x81\x42\xcc\x60\xab\x9e\xd9\x9e\x8d\x8d\x1c\x78\x3f\xa4\xfb\xf4\x69\xa8\x88\xfd\xa8\x08\x90\x07\xf6\xef\x4f\x5f\xbf\xbd\x82\xf5\x3b\x8d\x18\xac\x95\xcd\xc4\x9f\x2d\x24\x67\xae\x4c\x3b\x09\x02\x88\x19\x55\xbe\x95\x48\xcd\xc7\x91\xd8\x6c\xc5\x4a\x73\xb3\xd7\xc8\xc3\xab\x12\x89\x4c\x2a\x9b\xa9\x3a\xc5\xae\xdd\x5c\x85\xed\x3b\x1b\x36\xc7\x93\x14\x77\xba\x02\x4c\x87\xd6\x44\xcc\x0d\x0b\x66\xe7\xdb\xbb\x8c\x55\x77\xe0\xe0\xdb\xbb\x04\x36\x37\xb4\xd8\x65\x90\x05\x24\x12\xfc\x74\x5d\x6d\xe5\xda\x21\x25\x54\xa5\x58\xde\x22\x70\xfe\xcf\x89\xa0\xd0\x8d\x30\x08\x05\x77\x11\x39\x81\xf8\xf6\x2f\x60\x6f\x3d\xef\xcf\xe4\x28\xe1\xf9\x83\x6c\x4e\x73\xfc\xe6\x41\xb0\x5f\xe3\x5b\x8b\xbc\x49\xfb\x81\xc4\xc6\xbd\x1e\x78\x7f\x94\x50\x62\xdf\x7f\xc1\xd7\x8e\x2d\x39\xe5\x74\x9d\x03\x89\x7e\xb1\x46\x3e\xd1\x7b\x6c\xcc\xcc\x12\x96\xd9\x75\x3c\x49\x5e\x0f\x39\xcf\xef\x3b\xee\xa5\x6c\x35\x9f\xa7\xff\xc2\x5f\xe9\x6b\xfe\xd2\xae\x30\x1b\x70\x73\x1c\x54\x33\x60\x0c\xa1\x65\x22\x38\x96\xda\x07\x7b\x9e\x20\xe6\x4c\x01\xf6\xd5\x8e\xc9\x00\xd9\x88\x3e\xd9\xee\xd8\x66\x83\xc7\xdd\x6a\xbb\xa0\x18\xdc\x48\xe0\x48\x5e\xf2\x82\x12\xdc\x71\x4d\x54\x46\xe2\x58\x8d\xb2\x98\xbe\x2d\x21\x4b\xd2\x9f\xa6\xe1\xd6\x63\x9f\x43\x41\x2f\x40\x44\x72\xff\x29\xbd\xa2\x18\x85\x28\xc3\xa4\x44\x41\x91\x3e\xbc\xff\xb6\xce\xe7\x25\xb4\x5a\xef\x10\x20\x92\x5f\x97\x5d\x4f\x28\x82\xb2\xc3\x7d\x24\xdc\xc6\xaa\x17\xdb\x53\x84\x12\xb5\x8c\x96\x43\x18\x09\x26\x50\x71\xb7\x39\x9b\x09\x7e\xc8\xf7\xf2\x49\x98\xd6\x0b\x73\x6f\x24\x24\xd1\x30\x3a\x15\x50\xd8\x9c\x3a\x78\x88\x01\x4a\xc3\x17\x16\x4e\xac\x01\xb3\x71\x43\x2c\x65\x70\x5f\x2f\x5d\x0c\xd2\xaf\x65\x33\xf3\x8a\xb7\x32\x16\x97\x83\xff\xa5\x66\xc6\xe3\xe2\x37\xc4\x3c\x44\x9b\x7b\x26\x21\x97\x52\x88\x85\xd9\x29\xdf\x5c\xb5\x38\x33\x02\x3e\xe7\x7f\x17\x4b\x04\xa3\xf3\x87\xfe\x9d\x41\xad\x5c\x69\xe5\x5d\x8c\x5c\x10\xf4\xd1\xb3\xe1\x58\x04\x49\x35\x2f\xa2\x73\x68\xd1\x89\xf6\x91\x1e\x26\x2f\x08\xff\x6d\xe6\xf2\x9f\xf0\x67\xba\x1e\x95\xe2\x06\x37\x1c\xdb\x41\x35\x21\x0c\x55\x35\x09\x26\xd5\x85\x90\x52\xe3\x66\x0a\x98\x24\xd7\x3a\x82\x3d\xa7\x88\x90\xb4\xa2\x82\x59\xe6\x1a\x94\x0c\x31\x6c\x1a\x9e\x96\x16\xbe\x6e\x01\x41\x54\x83\xe3\x76\x06\x40\xd2\xcc\x7c\x02\x94\xf5\x01\x1e\x8e\x3a\x3e\x04\x52\x95\x95\x63\x08\xc3\xd1\xf3\xe3\x43\x43\x3b\x1c\x20\x49\xcc\xb6\xeb\x7c\x51\x3a\x93\x71\x00\x61\xd5\xe6\xab\xa5\x51\x35\xae\x30\xad\x2c\x2a\x0f\x08\xed\xf3\x39\x25\x3f\x2c\x80\x4d\x97\x99\x71\xe5\x93\x04\x75\x96\x48\x93\x8b\xcd\x8c\xad\xe4\xa8\xc8\x30\x8d\x04\x0c\x5e\x7c\x44\x47\xff\x9e\xb7\x86\x1c\xe6\xeb\x3c\x13\x39\xee\xa5\xa8\x21\xcc\xc1\x92\x47\x74\xa3\x39\xef\x19\x5e\x0f\xc1\x77\x46\x0f\x17\x7d\x20\x9f\x4a\x38\x90\x6b\xc6\x29\x33\xbe\x58\xe0\x38\xe5\x31\x4e\xe3\xc1\x2d\xa7\x40\x3b\xbd\x62\x4e\x8b\x2c\xaf\xc8\xae\xa9\x85\x2a\x07\xa6\x32\xc9\x28\x17\xd9\xfc\x4e\xf3\xc8\x38\x17\x7c\xd6\x7f\x20\xcb\x86\x0f\xf4\xb1\xfc\x6a\x96\x33\x17\x31\x91\xa5\xd3\x6b\x8e\x7c\xcf\x70\x9c\x32\xe3\xcd\x33\x0e\xfc\x99\x37\x75\x93\x20\x4c\xa5\x00\x39\x47\x60\x0a\x44\x54\x66\xba\xe9\xe5\x55\x40\x6c\x96\xed\x88\x69\xb2\x62\xb6\x62\x70\x39\xde\xc1\xa6\xa1\xfd\x86\x7c\x6c\xf0\xc7\x7c\x55\x34\xa4\x67\x0d\xcc\x01\xf1\x79\x4f\x3d\x3e\x83\x54\x34\xca\xc1\x33\x09\xa3\x40\x20\x12\x4e\x1f\x7e\xfa\xe9\x73\xc7\xc3\xe0\x94\xcf\x4f\x1f\x7e\xfa\xf9\x33\x09\x34\xf8\x63\x89\x66\x94\x3b\xbb\x66\xad\xcb\xb8\x08\xe4\x30\xe8\x6d\x5b\xde\x56\xcd\x0e\xba\x06\x0d\x7a\x06\xf1\x45\xc6\xe2\x4b\x1f\xcf\x71\x77\xdf\x72\x30\xc5\x0b\x97\x14\x4f\xf1\x7a\xb7\xc9\xb4\x93\x9d\xb0\x00\xfb\x72\xd9\x0d\x05\x59\xce\x55\xfe\xe6\xbe\xd9\x62\x83\xba\x5c\x15\x24\xbd\x71\xfb\x4d\x94\xfb\x27\xf9\xf2\xbd\xff\xcd\x55\xd6\x04\x3a\xeb\x2b\xb9\x35\xca\x92\xaf\xd3\x9e\xdf\x95\xfd\x2c\xe6\x4c\x76\x35\x1e\xad\x8e\x93\xb4\x21\x31\x88\x1a\x46\x22\xc5\xc0\xdb\x12\xb8\x31\xb8\x0f\xf8\x1c\x24\x0e\x0b\x13\xa0\xa9\xd2\x94\xdd\x7a\x4a\x39\x19\xa4\x0b\xba\x15\x59\xb2\x14\x7d\x37\xa6\xa4\x55\xae\x18\xfb\xfc\xfe\x82\xb6\x8d\xfa\xdf\xb8\x40\xc0\xa2\xe5\xde\x9e\x9a\x1a\x3b\x0a\x8a\xf4\x23\x1a\x69\x37\x39\x48\xac\xa6\x5d\x06\x18\xab\xdd\xde\x60\x45\x3d\x47\x45\xa0\x55\x9d\x99\xc5\xb2\x4a\xde\xc4\xd3\xd8\x2a\x47\x04\x68\x1a\x69\xbe\xb0\xa6\x2a\xb7\x83\x97\x6b\xa2\x73\x9c\xe0\x8e\x85\x62\x3d\x9c\x53\x65\x51\x31\x8e\x7e\xa5\x3f\x37\x04\x03\xf3\x01\x6b\x1f\xd7\x42\xcd\xa7\x3f\x8b\x92\xe5\xcb\xa6\x86\x5f\x5e\xe3\xf4\x45\xb3\x6e\xfc\xf2\x8b\xaf\x21\x80\xa8\xc0\x1e\x16\x03\x11\x4a\x92\x3d\xf9\xe9\x1c\x03\x6d\xc5\x0b\x84\x40\x4e\x74\x46\x12\x06\x76\x34\x71\xa2\x33\xa1\x97\x06\xc2\x90\xde\xae\x02\x8f\x4b\x51\x6b\x14\x80\x3a\x1d\xdc\x24\xd8\x94\xb2\x55\x84\x81\x50\xb9\xca\xa2\x75\x55\xcb\x7d\x68\x2e\x9b\x8f\x17\x03\x7d\xab\x96\x7c\x58\xbd\x3a\x5d\xb5\xd7\xb3\x4a\x4b\xbf\x72\x8e\x03\x1f\x1e\x60\x56\xdb\x9c\x48\x4f\x8e\xf3\x55\xe4\xe7\x18\xb5\x4d\xe8\xa6\xe1\xac\xa3\x06\xdc\xef\x9b\xd4\x6d\x8b\xe0\x18\x86\xd9\x75\x9e\x72\x66\xbb\x86\x03\xf2\xd7\xfc\x33\x2d\x96\x18\x5c\x5b\x76\xbb\x35\x78\x29\x4e\x88\xe4\xe3\xda\xce\x36\x9c\x48\x1a\x08\xf5\x5e\x08\x0a\x92\x27\x24\xb6\x20\x75\x5a\x6a\x1b\x02\x14\x5e\x16\x7e\xd8\x45\x75\xd3\xae\x78\x47\xf3\x53\x5d\xc1\x34\x29\x7d\xa5\xf8\x1a\x36\xc1\x96\x92\x61\xd1\x8e\x23\xc7\x3d\xa2\x51\x9b\xaf\x68\x46\xcb\x8d\x12\x11\x44\x83\xed\x21\x0d\xbb\xda\x4a\xaa\x1e\x5a\x87\x3e\x2a\x7e\x20\x34\x4f\x62\xc7\x26\x2c\x2e\x6b\x84\x09\x13\x3a\xc6\x30\xd5\x77\xfa\x94\x7a\xcc\x1b\xb2\xf4\xb1\xf9\x2a\xf8\x31\xee\x64\x29\xe6\x3e\xfc\x1f\x26\xb8\x4b\xb6\x5a\x54\x26\x74\xaf\x25\xa2\x70\x8d\xf1\x97\x4f\x8f\xdc\x55\x87\x47\x77\x54\xdc\x93\xcd\xe6\x49\x51\x3c\x9a\xe8\x75\x40\xf4\xae\xdb\x83\x53\x5b\x15\x03\x07\xd4\x1f\x94\x14\x70\x90\x69\xdc\x31\x40\x34\x4e\x1f\xd9\x60\xb4\x64\x1d\x60\x5a\x78\xbc\x81\xbc\x83\xb1\xeb\x9a\x74\x4b\xab\x10\xa1\xdd\x9d\x04\xf1\x49\x80\x98\xd0\x87\x3d\x19\xf0\xde\x20\x69\x70\xd3\xe7\xde\xe6\x19\x1e\x74\xda\xb2\x66\x79\x73\x00\x25\xe2\x5f\xe4\x20\x42\x02\x9e\xe7\x91\xea\xf8\xde\x04\xe0\x14\xd7\xf3\x75\xff\x47\x72\xbe\xa9\xca\xa7\x48\xe0\x6b\xbc\x6f\xca\x49\x92\xc5\xcd\x84\xbe\x61\x99\x29\x21\x9f\x14\xdc\x14\x06\x7e\x4e\xc2\x6f\x0f\xb6\x6a\x9a\x1b\xb9\x2d\x3d\x47\xd0\xa7\x2c\xab\xde\x12\xd9\x0b\xcc\x9b\x38\x75\x9e\x77\xd5\x22\x74\xc6\xf4\x92\x23\x26\x9a\x58\xf0\x18\xb7\xd9\xdf\x65\x53\x78\x8a\xaf\xf4\x7f\x32\x61\x38\x10\x35\xab\x3c\xb7\xdb\xf1\x97\x6c\x5c\xe9\x52\xd5\xac\x2d\xa8\x4a\xad\xf0\xc6\x75\xa9\x85\x18\x2b\xd5\xa6\x0f\x7f\x9c\x79\xe4\xa1\x2c\x46\x1f\x43\x3d\x3a\x1f\xb2\x3a\x33\xb2\x91\xa5\xe4\x94\x85\x64\x7c\x91\xe3\x3e\x3b\x07\x6b\x8a\xb3\x11\x67\xed\x9e\x06\xcf\xcd\xcc\x7c\x0c\xe6\x94\xd9\xde\xb4\x3c\x56\xbd\xf3\xb9\x76\x2d\x96\x63\x30\x2f\x67\x33\x74\x8e\x8a\x6d\xda\x89\xae\x9d\x5b\x1b\x95\xd5\x20\x3f\xe2\x94\x98\x2f\xc5\x5a\xbd\x70\x14\x86\x0b\x26\x6c\xab\xdf\xc9\xd1\x85\x1a\xca\x8b\xd1\xa4\xc8\x98\xb9\x93\xfb\xd8\x0c\x61\x78\xda\xe2\xec\x61\xfc\xcd\x68\xb1\xba\xb4\xa6\x22\x2d\x20\x9f\x81\x8d\x31\x70\x1f\x9c\x06\x0c\x00\x0d\x29\xe7\xc4\x9f\xc4\x8c\x41\xb2\xe5\x91\x8d\x7e\x1f\x6c\x4f\xe4\xe8\x71\x9e\x2f\x6e\x5c\x8b\x98\xfd\x95\x6d\x0f\xeb\xf8\x31\xda\xd9\x3a\x6f\x01\xf1\xe3\xd9\xf6\xc5\x13\x68\xe4\xc5\x13\x0f\x7a\x21\x13\xbc\xba\x0e\x10\x02\x73\x0c\x36\xaf\xb8\xad\x8a\x1d\x91\x37\x0f\xc6\xec\xd9\xd3\xed\x8b\x38\x3f\x51\x04\x4e\x1b\x0e\x96\x31\x18\x38\x16\x5d\x2a\xdc\xca\xe5\xeb\x27\xb8\x07\x71\xed\xaf\xf7\x74\xa8\xe1\xe0\x2c\x0a\x58\x51\x40\xea\xc6\x4e\xbe\x62\x1d\x3a\xc6\x89\xed\x2e\xe0\x42\x0e\x3b\x0c\x07\xc3\xd2\x55\x16\x90\x36\x4c\x12\x8c\x66\x27\x8a\x12\x53\x87\xc1\x59\x96\xbf\x6d\xe1\x9a\x66\x19\xda\xc3\xcd\x8b\x4f\xb3\xd3\x89\x53\x6c\x07\xca\xa6\x42\x9e\x63\x8a\x0a\xb8\x28\xd0\x9f\x93\x20\xfa\x70\x86\x81\x59\x56\x54\x56\x6c\x96\x15\x34\x50\x96\x9a\x43\xe5\x9c\x4c\x96\xa1\xa6\x07\x41\x29\xb8\x54\x55\xe1\xfa\x4c\xa6\x37\xfd\xd5\xfd\xe1\xf0\xfe\x8a\xa6\xee\x57\x4d\x70\xcf\x54\x6c\xc5\x30\x59\xc3\x86\xcc\xe2\xbe\xee\x65\x7d\x50\xbc\xe8\x6a\x31\x58\x46\x6c\xf2\xd9\x5a\x82\x3b\x8b\x9b\x1d\xf1\x96\x75\x45\x83\x8e\x25\x43\x1d\x5e\x9d\x5f\x5e\xc1\x95\x10\xf1\x42\x62\x34\x4b\xa6\xd7\xf4\x2f\x2b\xda\x06\xf3\x69\x1b\xfb\x9d\x62\x63\xcf\x65\xda\x2c\x16\x6c\xe2\x59\xd5\xea\xaa\x63\x5f\x9a\xe1\x4d\x5d\xac\xc5\xdc\x33\x34\x96\x35\xbe\x2b\xc7\x50\x29\x7c\x4b\x31\x13\xe8\xb6\xe5\x82\x84\x92\x19\x2b\x7e\xda\x1a\x9e\x20\x53\xdb\xb4\xde\x7b\x6a\xe5\x7a\x82\xe3\x23\xde\x99\xce\xc6\x0b\xa4\x73\xb9\x67\xab\x24\xfa\xbd\xe5\x2b\x25\xa2\xc2\xe3\x04\x12\x27\xca\xf5\xb5\x5c\x0f\xe2\x93\x47\x88\x72\xe2\x26\x89\x4d\x0a\xc4\x7b\x0c\x1f\xac\xa1\x00\x35\x74\x85\x0d\x17\xee\xc4\x73\xcf\xb6\x65\xcb\xe2\x88\x99\x84\x87\xd6\xc0\xc3\x36\x61\xaf\x69\xed\x7a\x2b\x6c\x01\xc3\x07\xc1\x55\x1c\x18\x1c\x31\x2f\x66\x99\xcf\x14\x34\x76\x54\xbb\x15\xa7\x05\xbc\xd2\x11\xbe\x70\xe3\xce\x40\x64\xfd\x10\xef\x66\x24\xfe\xee\x74\x38\xcc\xd0\x1e\x08\xe5\x7a\x26\x5a\xa4\x0b\x32\x23\x48\xec\x30\x46\x10\x5e\x7d\x04\x20\xb3\x7b\x1c\xb2\x30\x05\xf7\x72\xc0\x9b\x88\x12\x75\x4e\xa1\xc4\xd0\x19\x8c\x90\xef\x3d\xd3\x28\xa0\xf2\xc8\x89\x22\x7a\xa8\x3e\x0c\x9e\xf1\x05\xfc\x17\x4c\xbd\xcf\x9e\x22\xe8\x36\x8c\x4a\x79\x7c\x78\x1c\x50\x1c\xbb\xc5\x6a\x08\x7f\x58\xfa\xda\x72\x99\xb7\x85\x5d\x60\x54\xea\x67\x63\x34\x50\x79\x68\x9f\x9e\xaf\x49\x22\xd7\x22\x68\xb6\x12\xc8\x0d\x1f\x56\x11\xa1\xb0\xc7\x41\xdb\x84\x30\xe7\x2f\x64\x6a\xb1\xe9\x2f\x11\xfc\x6e\xcb\x73\x40\x26\x94\xd5\x83\x6e\x3f\xfe\xd3\xe5\xf9\xfb\xa3\xf4\xcb\x93\xfd\x7e\xff\x84\xb3\x3f\xd9\xb5\x6b\x36\x92\x2d\xf8\x82\xe4\xff\x38\x7b\x77\x94\x96\xfd\xe2\xc7\x19\x49\xef\x98\x1a\x5e\xec\xd5\x53\x72\x6c\x72\x99\x2c\x79\x67\xf7\x8f\x4f\x99\xad\xdc\xa4\x57\x37\x75\xe1\xbd\xfa\x90\x69\xf3\xb0\x9b\x4a\x5e\xa9\x40\x54\xf3\x5e\x62\x2c\x69\xaf\x04\x8d\x36\x02\x3e\x01\x58\xb5\xe1\xfb\xc8\xe8\x10\xe1\x06\xf1\x1d\x9b\xee\xec\xd6\x85\xd0\xa9\x71\x34\xea\x9d\xa2\xac\x2c\x7e\x19\x96\x84\x23\x5c\x78\xe5\x7a\x9e\xfe\x89\x37\x7a\x8c\x52\xa1\x02\x4e\x32\x2a\x00\x70\x48\x4b\x98\x61\xa9\x7a\x05\x29\x87\x09\xfe\x30\xfd\xb4\xec\x71\x8d\x60\x8a\x36\xa4\xe5\xae\x6d\x7e\x34\x6d\xa2\xd2\xba\x46\x85\xb5\xc2\xbd\xc5\xa2\x2c\xa2\xe6\xc1\x1c\xe0\x75\x69\x3f\x9c\x07\xc3\x25\x49\x27\x99\x67\xf7\x3a\xc9\x46\x1c\x5f\x01\xbf\x36\xcf\x54\x82\x18\x49\x74\x41\x0d\x2a\xd9\x8d\x6a\x90\x83\x80\x4c\x7b\x69\xf7\xfb\x60\x96\x7b\xea\xe2\xe2\x25\xc8\xa8\x06\x0c\x24\x26\x19\x46\x48\xb7\x26\x31\x2f\x0b\x67\x38\x2f\x66\xb1\x3e\x92\x41\x60\x4d\xce\x46\x3c\x66\xf0\x32\xb2\xa5\x0f\xc5\x0c\x29\xd5\xec\x22\xc5\x7e\x73\x90\x38\xf4\x53\x39\x48\xe6\x9d\x85\xb8\xd0\x3d\x91\x50\x88\xad\xed\xba\xb9\xb3\xeb\x06\xa7\xf8\xd2\x7b\x7c\x61\xcf\x3c\x98\x76\xca\x43\x06\x12\x7c\x93\xc5\xc5\xfd\x35\xf0\xe8\xa2\x62\x40\x7d\x97\x0a\x0c\x9b\xb2\x85\xa2\x5e\xa4\x95\x99\x68\xde\x84\xc5\xba\x83\x1a\xda\xd6\x9f\xba\x1a\x0e\xd8\xd6\xc7\x59\x43\xfb\xfa\x20\xeb\x37\xd8\xd7\xc7\x48\x1a\x5b\xcf\xfb\xae\x7e\x83\x01\xfd\x54\xa7\x03\x05\x84\x92\xf1\x14\xe2\x27\x32\x4c\x29\x22\x8a\xb0\x6f\xdf\x60\x48\x3f\xd8\xf0\x7d\xcb\x1e\x73\xaa\x25\x1e\x25\x01\x72\xbf\xa6\x96\x28\xaa\xeb\xeb\xd9\xbc\x6d\xf6\x1d\x5b\xab\xc3\xe9\x23\x9b\x98\xf0\x77\x7a\x89\x6f\x01\x61\x95\x2b\x88\x42\x02\x12\x29\x26\x11\x14\x29\x01\x89\xe4\xa5\x6d\xe4\x74\xef\x94\x52\xe0\xe7\x8e\x7d\x60\xf2\xbd\x3b\x49\x99\x49\x16\x62\xe7\xfb\x8c\x43\xb0\xb3\x87\x8a\x84\xb7\xe2\xc8\x74\xc9\x31\x0a\xc6\x41\x43\xb8\x59\xc1\xe2\x38\x4c\x6f\x42\x42\x0e\xf3\x06\xb1\x20\x2c\x83\x23\x30\x22\x86\x0a\x82\x96\x07\x09\xed\x69\x09\xc2\x70\xe9\x21\x14\x41\x98\xf4\x2f\xdf\xbe\x97\x4f\x18\xb9\xe8\xbd\x50\x58\xb9\xbc\x62\x73\x45\x33\x9d\x99\x4d\x99\xd0\x58\x9a\x98\x22\xc9\xfe\xd4\xdc\x7f\xe3\xcb\x41\x14\x6d\x7e\x0d\x5d\x25\xff\xbb\x58\x12\xe6\x7c\xb6\x8b\xb6\x7c\x32\xcc\x46\xc8\x11\x54\x5f\x22\xe0\xe2\x55\xd7\xc8\x7f\x2e\x2e\x67\xbd\x62\x80\xc3\x87\x85\xc7\x88\x19\xe2\x10\xdd\x3d\xa4\x85\xb6\xe2\x0d\xb8\x12\xe8\xa0\x42\x50\x87\x77\x75\x04\xda\x81\x43\x6c\x83\xe8\xf3\xa5\x33\x99\xcf\x97\x72\x66\xe3\xd3\x20\xda\xdb\xdd\xf4\x28\x8f\xf7\x77\x64\x2a\x05\x6f\x68\x45\xe9\xf0\xfc\xba\x08\xed\xb7\x28\x92\x0d\xb7\x70\xbd\xb8\x5b\xcd\x86\x03\xe1\xce\x8e\x14\x67\x29\xbe\x1d\x94\x49\x2a\x4c\x2e\xd9\xa6\x08\x84\x15\x21\xa0\x70\x59\x39\xcb\xdb\x1b\x76\x05\x89\xc3\x2d\x2b\x60\xdf\xea\x7d\x62\xfe\x0f\x47\x4c\x5d\x90\x5e\x48\x68\x54\x61\x6c\x37\x82\xdc\xd8\x33\x19\x33\x75\x19\x58\xba\x92\xbb\xeb\xef\x24\x24\x4e\xcb\x87\x94\x31\xbe\x3c\x42\x69\x4f\x86\xe3\x16\xc0\x3b\x44\xff\xa5\xfc\x3f\xff\xeb\x7f\x13\x7b\xda\x36\xb4\x5a\xe2\xa6\x97\x3a\x19\xf1\xe3\x6e\x56\xa7\xde\x61\xec\x13\xf0\xe8\xa0\x21\x82\xfe\x54\x2f\x4f\x51\x68\x44\xa3\xec\x4d\xd2\xe8\x9b\x8f\xf8\x06\x44\x8e\xdd\x8e\x27\x73\xe8\xc7\x87\x65\x18\x51\x65\xba\x46\x38\x27\x07\x36\xb8\x18\x34\xb9\x3a\xac\x44\x37\xbd\xa4\x24\x9f\x68\x4f\xfd\xd9\xbb\xc2\x71\x03\x11\xb9\xc1\xc1\x16\xc7\xc3\x18\xc2\x5e\x33\xf9\x8d\x7d\x76\xcb\x96\x51\xfc\x6e\xe1\x48\xca\x6c\xcb\xc5\x35\x85\x5c\x5c\x74\x85\x84\x15\x3d\xea\xec\xf6\xa2\xba\x64\xc3\xfd\xc0\x89\x2b\xa4\xe1\xb5\x48\xda\x31\xea\xa1\x84\xb8\xdc\xd0\xe3\x98\xc8\xf9\x3f\xec\x1e\x4d\xff\x63\x62\x60\x91\xe8\x39\x01\xdb\xe2\x71\x80\xbd\xa2\xb0\x63\x74\x26\x3f\xd1\xf0\xbe\x45\x04\xcd\x6b\x44\xc0\xe3\x0f\xac\x0d\xf9\x3f\x81\x9f\x05\x55\x52\x70\xac\x86\x34\x7e\xe0\xcb\x21\xf2\x29\x19\x58\x64\xc2\xc7\x4b\xe4\x28\x92\x0b\x07\xa2\x26\x8e\x88\x46\x9e\x7f\x30\x32\x88\xbd\x0f\x3a\xb2\x8b\x7f\xb4\x86\xd6\x4e\x2f\x0a\x73\x59\xc4\xe5\xd4\x02\x47\x49\x06\x7e\x67\xea\xe8\x08\xbc\x9b\xf9\x6a\x82\x29\xb3\x92\xf3\x23\x9f\x8d\xc7\x2b\x9f\xd3\xe4\xf9\x45\xe0\xd9\xe2\xb1\xea\xba\x40\x48\x40\x1e\x1f\x9d\xae\x69\x83\xb0\x8e\x36\x33\x28\x88\x45\xb9\x5f\x0e\x98\x96\x8f\x7d\x34\x7d\xbf\x71\xf9\xb8\x8c\xfb\xcd\xcb\xff\xd1\xa3\x8b\x69\xff\x0b\x2e\x79\xec\x88\xc1\x25\x4d\x79\x64\xf8\x77\x1c\x24\x10\x49\x69\x33\x46\x73\xfb\xe0\x49\x82\xe6\x71\x8a\xe8\xc3\xbe\xb1\xbe\xff\x3c\x21\xf2\x48\xf4\x0d\xd2\x5e\xdc\xe3\x40\xd0\x8b\x5a\xe5\x10\xc2\x0a\xab\xf8\x2a\xd9\xa1\xdd\x9b\x17\x5c\x23\x9e\x31\xdc\xe3\x8d\xee\x35\xa1\xa7\xf7\x66\x89\x6f\x39\x85\xcd\x74\xea\x29\x7f\x2f\xc8\xb4\x38\x72\xbf\x49\xd4\x79\x5f\xbf\xe4\x74\x40\x3f\x7c\xdf\x6d\xa7\x61\x2b\x99\xd7\x38\x73\xac\xb0\x91\xf7\xe6\x08\x97\xd9\xf8\x0c\xe6\xdf\x73\x03\x6a\x5a\x07\xcb\x7b\xc0\xbd\xa9\x62\xb0\x28\x1b\xfe\xbc\x42\x81\xf7\x10\x86\x2f\xd9\x64\x78\x86\xeb\x31\xb7\x83\x57\xfb\x7e\xd8\x68\xb6\x78\x10\xee\x3d\x53\xf7\x2c\x76\xf9\x79\x10\xef\x59\x1f\x0c\x2d\xb6\x72\x7f\xc9\x03\xc9\x37\xc4\x9d\xc9\x94\x61\xfe\xb8\x8e\xd8\xae\xc9\x62\x9d\x1a\xfc\x0c\x01\x17\x4f\x58\x5b\x94\xb8\x97\x73\x22\x21\x97\xa2\x7b\x2d\xf5\x32\xe6\x1b\x21\x1e\xa4\x60\x32\x18\xc4\xea\xaa\xa7\xb8\xe6\xab\x09\x34\x28\x77\x5b\x1e\xc2\xdc\xb9\x54\xe1\x61\x12\x40\x15\x37\xb5\x55\x90\x90\xff\x38\x2c\x4b\xbc\xe9\xea\xea\xf9\xbe\xd9\x27\xb2\x74\xce\x60\x5e\x25\x1e\x8f\x34\x26\x6e\x92\xc4\xb1\x8c\xa2\xd7\x6a\xd1\x07\x12\xd3\xe5\xe2\xe5\x38\x7d\x70\x57\x07\x2b\x87\xbb\xa5\x63\x0e\xcc\x58\x00\x85\xd4\x80\xeb\x11\x2c\xd7\x87\xc4\x31\xd3\x52\x21\xc0\xfa\x6a\x45\x12\x8d\xea\x0d\x21\xbe\xa5\x62\x6e\xe7\xa8\xba\x23\xd3\x6f\xc1\x9f\x05\x5f\xa1\x10\x7e\xb8\xb1\x76\x88\xc7\x70\xd7\x0e\xe7\x8e\xde\xb7\x23\x84\xf8\x96\x76\x70\x2d\x4f\x61\x11\xc4\x83\x78\x5f\x7b\x68\x73\xa8\xee\x39\xc2\xd3\x93\x6e\xd8\x44\x7f\x59\xe5\x2a\x58\xaf\x71\x02\x59\x0c\xe4\x0f\x56\x6f\x8e\x17\x4e\x49\x91\x83\xb0\x09\x11\x41\x0e\x8a\x27\x6f\x24\x7f\x7d\x8a\xf3\x48\x23\xa7\x03\x0d\x8e\x80\x3d\xd8\xd4\x2a\xa4\xed\xf2\x22\x1d\x64\xac\x33\x95\xeb\x24\xf1\xeb\x0b\xaf\xc0\xd9\x5d\x5c\x91\xef\xc2\x25\x03\x02\x9e\x8d\x64\x21\xde\x1c\xdd\x1c\x67\x56\x17\xd4\x3a\x2e\xcc\xb1\x6a\x40\x39\x16\x3d\x86\x33\xde\x19\x4a\x67\x81\xb2\x95\x99\xf2\x91\xc9\xac\x72\xda\x6a\x50\x9b\xfc\x2e\x3a\x00\xe6\x3b\xd4\xbc\x23\x8b\x66\xcd\xe1\x15\x7b\xdc\x14\xbf\x56\x8b\x8b\x44\x47\x30\x07\x95\x32\xb3\x70\xaa\x8f\x09\xc4\x93\xdd\xb2\xcd\x59\x17\x6e\x63\xcd\xcc\x22\x20\x05\x14\xf8\x47\xd7\x4b\xf7\x5e\x85\xe7\x06\x38\x61\xa3\x82\x1e\xdd\xc7\x14\xbe\xa3\x01\x60\x1b\xf7\xb7\x00\x6c\x41\x1c\x3d\x52\x33\x02\x16\x70\x5f\x43\xf4\xa1\x89\x6f\x6f\x08\xf8\xc6\x37\x36\xe4\xc8\x5a\xa1\xee\xc5\x8a\x62\x72\xfe\xdf\xd7\xbe\xc1\x76\x07\xc4\x19\xf9\xaf\x1b\x10\x7c\xf4\xda\x98\x23\xfa\xc0\x16\xc2\x8a\xc5\x01\x98\xda\x66\xe8\x72\xe6\x8b\xaa\x69\x08\xb1\x95\xad\xfb\xd0\x7e\x23\xbe\x48\xc8\x16\x05\x7d\x7b\xa7\x22\x09\x77\x2e\xbe\xc7\xe8\xdd\xf4\xc8\x26\x0c\x67\x99\xe2\xd3\xf0\x13\xd0\xfe\xf9\xc0\xab\x86\xf2\x08\x8a\x1c\x4f\x77\xd1\xe3\x77\x63\xf7\x72\xf7\xba\xf6\x8b\x5d\x1a\x0e\x7d\x5b\x76\x72\x93\x7d\x69\xb2\x9c\xbd\x33\x91\x78\xe3\x8d\xcb\x3b\xc2\xc1\x06\x4f\xeb\x2c\xd8\xab\x53\x53\x57\x72\xee\x7f\x26\x21\x76\xec\xc5\xaa\x18\xd5\xc3\xb0\x37\x08\x6f\x96\xef\x7b\x07\xe5\x22\xeb\x98\x54\x10\x90\x70\x90\x1e\xb8\x9a\x83\xbd\x65\x6b\xce\xf3\x7c\x09\x68\x09\x54\x98\xbb\xa0\x65\xda\x0e\x14\xba\xeb\xa6\x6a\xcc\xf8\xa0\x2e\xd5\x63\x4a\xf7\x16\x19\x33\x09\xf6\xa7\x54\xb0\x3f\x25\x79\x75\xe6\x28\x88\x88\x70\x1e\x26\x6c\x9d\xe7\x9a\x28\x3a\x5e\xf8\x7c\x3c\x2e\x6d\xc6\x51\x7c\x53\x33\x8a\xc8\x17\xa3\x5a\x4c\x81\x1d\xc6\x89\x2d\x5d\x18\x63\xf7\x14\xa2\xd2\x63\xef\x25\x61\x92\x78\x69\x8c\xa2\xf4\x65\x8b\xb8\x27\xa2\x53\x0d\xe3\xd6\xcd\x92\x3d\x4c\x42\x09\x19\x77\x4f\x65\xe7\xb8\x4c\x33\xe9\x8b\x8a\x80\x51\x78\x18\x83\x73\xad\x3e\xef\xe2\xdc\x98\x82\x61\x84\xde\x7b\x19\x01\xd2\x9e\x3a\x5f\xac\xd0\xff\xd9\x14\x21\xd9\xd6\xd8\x11\x93\x3e\xa6\x37\x01\x29\xaf\x8f\xa4\xf6\xd6\xc8\x24\x0c\xbf\xa6\x86\xa7\x5d\x82\x54\x36\x91\xad\x33\x75\xf0\xd2\xe8\x0d\x71\xb6\x97\x75\xce\x5c\xd2\x73\xcc\xb8\xee\xde\x4c\xc1\x2a\xc6\xb7\xa6\xd4\x81\x8c\xe6\x14\x89\xe3\x9e\xe5\xcc\x97\xac\x0b\xa3\x5a\x2e\xe4\x7e\xaf\xd6\x79\x39\x81\xa5\x1b\x33\x6d\x70\x44\xf2\x4d\x65\x0c\x5a\xe9\x21\x5c\x31\xdf\xdf\x54\x68\xcf\xf8\xda\x29\x34\x72\x51\x23\x23\xb6\x66\x20\x5f\x29\x61\xd0\xc4\xc9\x22\xbe\xa3\x91\xfc\x1c\xd2\x72\xe1\x1e\x71\x39\x65\xc7\x61\xed\x9c\x2f\xb8\xf2\x1a\x56\xca\xb3\x5e\x4d\x1d\x6b\xe0\xa6\xb3\xdf\xd7\x32\x34\x88\xf7\xdc\x53\xc5\x1f\x6a\x5b\x5b\x76\x77\xf5\x22\xc3\x5b\x3e\xdd\x4a\x0f\x2a\x3f\x94\xa2\x2b\x7f\x34\xa3\xb8\xa7\xb9\x7a\x29\x28\x71\xa4\xd7\x3d\x12\xcf\x8a\x8f\x17\x14\x5f\xf1\x5b\x42\xb4\xc4\x3d\x01\x4f\x44\x6e\x13\xe0\x48\x3c\xeb\x7f\xbc\xb7\xa2\x41\x5f\x02\x86\x18\xe0\xb6\x45\x53\xf8\xcd\xbd\x6f\xe8\x41\x70\x48\x1e\x76\x83\xc9\x40\x67\x3f\x78\x45\xe8\x42\x98\x11\xf7\x98\x1d\x33\xb0\x2b\x38\x7e\x61\x41\xcd\x7d\x74\x41\xb3\xb7\x9a\x54\x79\x74\xa0\x43\x61\xbd\xf7\x8c\xd0\xa3\xa8\x15\x5f\xef\x63\xb8\x08\xc9\x2b\x74\xbb\x2d\xde\x20\x75\xcf\xcf\x7d\xc4\x77\xc8\x14\xc4\xab\x63\xb6\x6c\xda\x86\x86\x47\xee\xf0\xaa\xa7\xc7\xd7\x16\xd7\x4d\x64\x80\x0a\xfc\x2e\xdb\xe9\xbd\x6b\xcb\x73\x86\x68\x92\x1f\xf8\x12\xb6\xcf\xd5\x37\x7d\xbe\xb6\x3c\xac\x81\x5c\xa8\xde\xfa\x8a\x13\x2c\xd7\xb1\x25\x04\x39\x35\x4f\x33\x67\x7b\x4f\x64\x51\xe0\x73\x8d\x09\x60\x71\xcc\xc1\x17\x63\x09\x5d\xbb\x6d\xc6\x5d\xc5\x05\x3e\x89\x4e\xdf\x21\x3a\xbd\xe2\xe8\x71\x0d\xd6\x2a\x97\x6d\xd0\xa8\x43\xf9\xf8\x16\xd6\x30\xcf\x2b\xbe\xac\x35\x84\x37\xcc\xad\xca\x7c\x3b\xc2\xdb\x1b\x8a\x1c\x61\x0d\x90\x63\x04\x00\xf6\x30\x16\xc2\x5c\x55\x81\x8d\x55\x98\xe3\x2d\x45\x1d\x82\x86\x05\xc0\x10\x1e\xaf\x83\x1e\xc8\xa1\x6b\xf6\xb0\x55\x7a\x66\x33\x6a\x55\x33\xff\x1b\x9e\xb4\x54\xe8\x73\xf9\x0c\xa0\xe6\x4d\xd3\xf3\xc3\x3f\x5b\x16\xb7\x16\x37\x0e\x4d\x2f\x2d\x9e\xc5\xad\xc5\xcd\x08\x53\x02\x3d\x46\x95\x40\x1f\xc6\xd5\x86\xbd\x9a\x50\x5d\xed\x6e\xc1\x6f\x7f\x76\xae\xc2\xb3\x4b\xf6\x86\x72\xe9\x12\x46\x35\x8e\x72\x86\x14\x3a\xcc\x3c\x55\xf3\x82\x84\x88\x72\xb2\xea\x13\x4e\xb9\xb7\xee\x51\xde\xb0\xf2\x51\xf6\xa9\x99\x02\x47\xc6\xac\x74\x9e\xef\x16\x37\x65\xcf\x36\xe3\xab\x0c\x27\xcc\x61\x59\x17\x06\x96\xbe\x04\x58\xfa\x86\xc0\xd2\x2b\x79\x97\x72\x5c\x2a\x2d\x3a\x9b\xb2\xcf\x61\x29\x10\x94\xf2\xfa\x84\x46\x80\xa3\x8b\x7c\x2a\x17\xb4\x33\x99\x4a\xd9\x3a\x0b\x59\xf0\x09\x4a\xd0\x17\x33\x45\xf0\x3e\x76\x20\x53\xa5\xf1\x36\x40\x56\xbf\xc5\xdd\x42\xbc\xf4\xf2\xc6\x80\xda\xf0\x41\x62\x02\x58\xb8\x1b\x24\x58\xe3\x91\x38\x14\x87\xdf\x41\x02\xbf\x8a\x19\xa5\x70\x30\x0f\x2c\x8c\x8b\xe0\x2e\xf2\x5d\x37\x09\xb8\xcd\x65\x32\x1d\x84\xb4\xea\x0d\xd0\x6a\x1e\xc2\x69\xa5\x9d\xa0\x52\xd8\x8a\xec\xd4\xc4\xb6\x58\xbd\xf6\xd9\x33\xdf\x30\x2d\x36\x9f\x7d\x78\xec\x5b\x60\xbf\xfa\x8e\x9b\x82\x89\xf4\x0a\x99\x55\x62\x4c\xde\xc2\x1b\x05\x16\xb6\xb4\xe8\x32\xab\xc4\x45\x8f\xca\x69\x9c\xdd\x9d\x72\x77\xe7\x35\x3e\xbc\x74\xa9\x25\x42\x30\x35\x93\x95\xf8\xbd\x1e\xb5\x5c\x11\x40\xf1\xe4\x23\x27\x49\xeb\x30\x33\x36\x0d\xee\xad\xe6\xa8\x80\x77\xd8\x4f\x04\x7d\x3b\xe8\xef\xdb\x3c\xa5\x7d\xa3\xcb\x6f\xdf\x9b\x00\xc7\x38\xe8\x8e\xb1\x5b\x75\x59\x88\xce\xa1\xa3\xb5\x7c\x80\x5e\x06\x57\x0c\x47\xa0\x38\xf9\x0e\x5f\xa8\x0b\x8e\x1f\x0d\xe5\x38\xe8\xc3\xd3\x9a\x6a\xc8\x37\x2a\x21\xc8\x13\xbc\x47\xca\xe6\xd0\x72\xd7\x68\x0a\x45\x5e\x3b\x68\x18\x72\xae\xd3\x01\x7d\xef\xd1\x52\x8c\x8b\xe9\x17\x1d\xfe\x9f\x3c\x6a\x11\x36\xc0\x3f\x6d\x71\xa0\xfe\xff\x90\xa7\x2d\x86\x9a\x59\xf7\xb6\x05\x7c\xf7\xcf\x70\x39\x20\x9e\xc7\xd1\xc1\x55\x34\x9f\x91\x23\x9c\xa7\x88\x88\x8f\xf2\x11\xe5\xd5\xbe\xa6\xf1\x15\xad\x0d\xa6\xe8\xb0\xbe\xe0\x3e\x47\x54\x9b\xe4\x18\x3b\xf0\x8b\x9b\x20\x31\xe3\xd3\x22\x89\x57\x6d\x44\xaa\x4e\xa4\x4a\xd5\x1e\xcd\xa0\x92\xd0\x23\x1a\x8b\x1b\xbd\xf9\xcf\x93\x5a\xa7\xf6\xa0\xc9\xf1\xe4\x8e\x5a\x2d\x99\xe4\xa6\xaf\x5d\x15\x99\x64\x26\x0a\x18\x74\x45\x62\x42\x9f\x23\x12\x23\xbe\xdc\xf1\xb8\x91\x84\x34\x7e\x6c\x85\x11\xb4\x58\x8b\x89\xab\x0e\x0a\x05\xd0\x24\xaf\x0a\xda\x32\xb4\x4f\x95\xd8\xf0\x89\x7f\x89\xd1\x47\xcb\xf1\x5e\xb9\xc4\x60\xb3\x5f\xc0\xca\x8d\xf7\xf6\xa7\xef\xc3\xf8\xc0\xff\x3b\x52\xfd\x2b\xbe\xd2\x2f\x5e\x5c\xe6\x62\xb3\x83\x45\x45\x3d\x35\xbd\x64\xbb\x1d\x6d\x7d\xdf\xb7\xd5\x7c\xc7\xe7\x63\x6a\x0f\xc0\x44\x2d\x07\xe9\x2e\x6d\x04\xdb\xed\xec\x5d\x84\x4b\x0d\x1d\x86\x1d\x3c\x2d\x37\x80\x13\x27\x22\xd6\xbe\x57\xf8\xb2\x22\xa0\x5e\x76\x00\x72\xe8\x14\x41\x6c\x98\xb9\x66\x5d\xce\xd3\x83\x78\x53\x91\x5e\x1e\x6b\x0a\xde\x34\x57\xb5\x0a\x9e\x3e\x3f\x38\x7c\x0c\x39\x7a\x23\xdd\x27\xd9\xfb\xf5\x67\xf6\x8a\x7c\x48\x49\x59\x2f\x1e\xec\xe5\x89\x80\xab\x77\x97\x14\x5c\xb4\x77\x72\xd2\xa4\x03\xca\x47\x0d\xfa\x92\xb8\xbd\x1b\x75\x7c\xe6\xde\x6a\x0f\x48\x44\x8b\xe4\x77\xa0\xdd\x23\xa5\xbe\x70\x6a\x7f\xa3\x8f\x94\xaa\xa6\x55\x89\x9c\x1f\xd9\x61\xab\xe1\x6d\x67\xe5\x04\x77\x98\x07\xf3\x45\x9f\x53\x50\xf4\x8e\x56\xb1\x58\xe5\x8b\x15\xca\xad\x66\xe1\x44\x09\x17\xd9\xa8\x82\x6f\x7c\xfc\x20\x2c\x2b\x58\x8d\xee\x69\xeb\xe4\x25\xc5\xd8\x97\x62\x08\x98\xc9\xc4\x35\x97\xa9\x51\xc1\xde\x43\xee\x28\x43\xe4\x3b\x35\xca\x34\x6d\x3f\x70\x9f\xd7\x54\xd1\x26\xd8\x2e\xde\x29\xcb\x75\x17\x1f\xeb\xcc\x15\x36\xdf\x6e\x1d\x1f\x09\x9c\xd9\x82\x44\x02\x90\x5b\x99\x0d\x01\xc4\x9f\xe5\x11\xeb\x10\x48\xee\x7f\x84\x40\x7c\x07\x44\x01\x86\xcc\x48\xa3\x07\xaf\xd7\x47\xcf\xd6\x5b\x4e\x7b\x44\xb7\xd9\xc9\x36\x1d\xaf\x64\xeb\xe5\xa4\x0f\x88\x64\x09\xcd\xc0\xed\x8d\x6b\x51\x7f\x62\x8a\x87\x49\x5a\x11\x27\x85\x95\x60\x69\xe3\x77\xb3\x27\x9e\xd3\xfe\xd0\xe0\x2d\xdd\x7e\xe5\x10\xcc\xba\xfa\x45\x26\x8e\xf0\x82\x3c\x38\x29\x58\xc0\xfe\x77\x9c\x89\xda\x3d\xce\x41\xed\x3e\x00\x2e\xa7\xc7\xb6\x10\x5c\xe2\x4b\x58\x88\x6b\x31\xdb\xa4\x29\x15\x59\x87\x25\x6e\xf8\x26\x58\x88\x83\x62\xee\x09\xc3\x3d\x35\x3e\x49\x1a\x04\x19\xae\x66\x3e\x36\x5c\x41\x7c\x6c\xb8\x16\xfa\x58\x6d\xd8\xa0\x05\x5d\xb7\xb6\x81\xb8\xbc\x7c\x17\x8f\xb6\x4f\xf5\x47\xfa\x8f\xd9\xa8\xe5\x01\x7b\xc6\x59\xd2\xd6\xf4\x01\x5e\xd4\xff\x31\xc8\xa1\xd8\x0c\xf1\xa7\xb1\xc3\x32\xf4\x1d\xf8\x41\x11\xc6\x2c\xa3\x29\x53\x2d\x0e\x20\xc6\xbd\xe6\x1c\xbd\x92\x01\xf4\xc3\x8d\x8e\x2d\x3b\xe1\x83\xce\x23\x62\xf6\xcc\xd6\x91\x72\xc8\x68\xad\x61\x6c\x0b\x1f\xbe\x6b\x9c\xe9\x9b\xba\x6a\x14\xef\x5e\x90\x7e\x89\x68\xdf\x42\xf1\xe7\x63\xfe\x7d\xd4\xf4\xd8\xda\x07\xf7\x3c\x6f\x6b\x58\xab\x5b\x16\x7b\x62\x57\xfd\x3d\x70\xfb\xdf\x07\xe6\xa6\x06\x66\x4f\xf5\x40\x95\x30\x7a\xd5\x07\x3a\x04\x7d\xd4\xc7\x18\x83\xdc\x8d\x62\xc3\xf0\x6c\xad\x7a\x73\xb9\x3f\x05\xf3\xf0\xf4\x1d\x14\xe5\xae\xdd\xd1\x53\xb7\x51\x26\x79\x61\xd7\x3d\xa7\x39\xce\x6c\xd7\xfc\xdc\x20\xda\xb5\xa5\xc9\x41\xfc\x7d\x57\xee\xa8\x70\x79\x03\x97\xfd\x89\xd2\x67\xfa\x0e\x9f\x6e\xac\xe4\x3e\x12\xb6\xd1\x6c\x05\xfd\xdc\x6e\x28\x61\x37\x4d\x31\x6e\x94\x6e\xaa\x2d\x2f\xcb\xfa\x06\x20\x0f\x0e\xc5\x60\x6d\xfe\x33\x62\x42\x24\x87\x9c\xf9\x0c\xdf\xd3\x0d\x54\xd8\xb1\xf8\x18\xa7\x1b\x41\x11\x9d\x37\x01\x31\xbd\xf9\xf5\xdd\xf9\x00\x72\x62\x82\x6a\xca\xc4\x84\xd6\x94\x89\xe9\x2b\x67\x40\xae\x0b\x38\xf7\x99\xee\x81\x40\x1e\xec\x80\xd0\x90\x3f\xd2\x05\xf1\x4c\x16\xa4\xd4\x56\xe4\x5b\x99\x31\x4a\x67\xf2\x1d\x03\x05\x4e\x9a\x05\xca\x7c\x34\x8f\x6a\xad\xc3\x3a\x6b\x39\xbf\xf0\xfc\x40\x6c\x0b\x02\x7e\x20\x36\xba\x93\xcd\x33\x68\xda\xeb\xde\x56\x85\xba\xb0\x16\xf8\x0b\x8d\x32\x50\x03\xf1\x25\x1b\x84\x16\xed\x9a\x49\x84\x5b\x39\xe9\xed\x04\x5f\xd1\xd0\xe9\x44\xe4\xf9\x22\xb0\x7e\x1a\xf2\x1b\x41\x92\xc3\x80\x97\x0b\x87\x18\xd3\x44\xbd\x3e\xf1\xee\xab\xa1\xb4\x1a\x74\x66\x5d\x5d\x97\x4e\xc5\xa5\xbd\x79\x47\x71\x11\xf0\x8a\x5f\x59\xb6\x9b\x94\xf2\xce\xf2\x39\x7d\x0c\x3a\x11\x16\xa5\x3d\x19\x95\xb4\xad\xa0\x76\x0c\xf0\x22\x11\xd3\x18\x37\x68\xe5\xdb\x01\xb8\x32\xee\x21\xbb\xb5\x77\x0a\x83\x19\xe2\x1f\x0d\xf3\xeb\xb3\xab\x9d\xd7\xe5\xc9\x9a\x19\x4a\x57\x2e\x86\xc1\xca\x65\x66\x06\xb3\x45\x2b\x4e\x59\xf8\xef\x8a\x0f\x80\x5d\x4a\x38\xf7\x2c\xae\x23\xda\x2b\x76\x72\x4b\x47\x83\x1e\xde\x9b\x25\x08\x9a\x2c\x61\xc2\xc3\x60\x0c\x50\x7e\x29\x17\xbb\xe0\x3c\xe2\x57\xf9\x56\x05\xa0\x2f\xa6\x31\xab\xc2\x5d\x0d\xf7\x92\x17\x12\x13\xc0\x4c\x79\x66\xb2\xa6\xc3\x36\xd2\x6c\x24\x0f\xd6\xef\xaa\xc7\xf6\x87\xa1\xcc\x54\xc3\xcc\x23\xe4\x33\x5b\xcb\xa5\x8d\x81\xf5\x86\xc1\x86\x52\x48\x18\x97\xfd\x14\xc9\x69\x2e\x6d\xa2\xe1\x96\xd4\x6c\x99\x65\x6d\x67\x01\x2c\x44\xf1\xe0\xb9\x13\x69\x83\xa4\x7f\xcd\x36\x2b\xf9\x24\xc6\x10\x9f\x07\x3e\xe6\x4d\x6f\x19\xd8\xdf\x44\x17\x87\x1e\x8a\x8f\x49\xb9\x5d\x65\x99\xd8\xf4\x48\x1c\x8a\x06\xb0\x4f\xbb\x76\xf1\xf4\x61\xe8\x28\x50\x3d\x0a\x2a\x80\x79\x11\xfc\x83\xba\xad\xd4\x76\x98\x53\xc4\xdf\xd4\x0b\xa1\x7c\x87\xe5\x8a\xbe\x44\x8a\xee\xfe\x29\x70\x43\x38\xf4\xab\x18\xb8\x8f\x6c\xea\xef\x29\xc8\x39\xff\xd0\xfe\xd9\xf7\x00\x2f\xb8\x6b\xcd\x08\x91\x4b\xd7\xc3\x57\xa4\x14\x55\xb8\xb2\xcd\x57\x78\x3c\x9e\xe8\xe3\x7e\x44\x45\x45\x8d\x10\xa5\xfe\xe4\x7e\xce\xbc\xb3\x69\xdc\xde\x93\x84\xaa\x53\x87\x5a\xf2\x44\xd7\xcf\xce\xd1\x74\xf2\xa9\x6f\x9a\xf5\xe7\x24\x5f\x72\x9f\xe8\x37\x81\x27\x77\x31\xf4\x85\x31\x1b\x05\x13\xf9\xe4\xd0\x4f\x5c\xf0\x4f\xb4\x4b\x25\x06\x02\xaf\x6e\x3f\x6d\x10\xb1\xa1\x3d\x5b\x5f\x22\x62\x85\x08\x7e\x42\x00\x9f\x05\x3e\x8b\xfc\x0e\x5f\x7b\x7c\xed\xcb\xf2\x46\x32\x83\xc3\x50\x76\xda\xf5\xad\x10\x73\x87\x6f\x76\x53\xc6\x9f\x52\x8f\x3a\x2d\xb4\x0f\xf8\x92\xe3\xea\x34\xde\x3e\x28\x5e\x5e\x5b\x7b\xee\x1f\x5e\x7b\xc8\x07\x6b\x77\x1a\x85\x10\xc5\x70\xf5\x1a\x25\xc1\x87\x60\x13\xb4\x97\xd5\x02\x25\x4c\xb1\xdc\x0e\x8d\x94\x20\xc5\xb5\xf9\x3e\xf3\xed\xd2\x10\x62\x7d\xab\x34\x44\xe8\x2d\xda\x66\xcb\x7e\xa5\x3e\xbb\x77\x19\xbc\x9f\xee\x53\x4a\x53\xff\x1a\x70\xf6\xc3\x57\xff\xd8\xf9\xbd\xbc\xcb\xc2\x17\xe3\x66\xee\x45\xe7\xaa\xde\xee\xdc\xfe\x49\x7d\x30\x3c\xea\x15\xcc\x3b\xe9\x10\x6b\x4f\x76\xbe\x2b\x9e\xc9\x69\x74\xb3\x39\xd6\x00\xec\xcb\xf8\x8d\xfa\xc7\xff\xfa\xaf\x00\xa7\xe0\xbf\xfd\x5b\x7a\xf6\xf2\xc7\xb4\xfc\xc2\xde\x6c\xf8\x99\xd1\x2f\xd5\x66\xb7\x31\x28\xfa\x7c\x15\x01\xf2\x75\x38\xd8\xed\xa9\x0e\x5c\x9f\x66\x82\xe2\xfb\xff\x06\x00\x00\xff\xff\xb1\x14\xb6\xc2\x5c\x98\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xfd\x72\xdb\x48\x92\xe7\xff\x78\x0a\xb4\x37\x7c\x76\x47\xc8\x74\x74\x4f\xdc\x47\x4c\xd8\xee\x93\xa5\xf6\xc7\xac\x65\x69\x2d\x79\xe6\xe6\x1c\x0e\x34\x48\x40\x24\x46\x24\xc0\x06\x40\xd1\x9a\x8d\x8d\xb8\xd7\xb8\xd7\xbb\x27\xb9\xcc\x5f\x66\xd6\x07\x00\xca\xf6\xec\xc6\xdd\x3f\x64\xa1\x2a\xeb\x2b\x2b\x2b\x2b\x2b\x2b\x2b\x2b\xdf\x6e\xb3\xa2\xec\x16\xe9\xf3\xf4\x38\xdd\xe6\x55\xbd\x2e\xbb\x2e\xed\xca\xf5\xf5\x93\x55\xd3\xf5\x65\x91\xbe\xae\x7a\xfa\x6e\x6f\xab\x45\x99\x24\xab\x66\x53\x12\xe8\x1b\xfa\x4b\x8a\xbc\x5b\xcd\x9b\xbc\x2d\x28\xe2\xd4\xc2\x49\xf9\x65\xbb\x6e\x5a\x06\xfa\x55\x42\xc9\xaa\x5c\x6f\x39\x0f\xfd\x25\x5d\xb5\xac\xb3\xaa\xa6\xcf\x4b\x0a\xa5\x6f\xeb\xa4\x6b\x16\x55\xbe\xce\x82\x04\x44\x58\xfa\x1f\xd3\x9f\xeb\x22\xbd\xec\xcb\x6d\xfa\xac\xdb\xe4\xeb\xf5\x8b\xbc\x43\x96\xbe\x4c\xf3\xc5\xa2\xd9\xd5\xfd\xb3\xa7\x92\x20\x85\x37\xbb\xde\x4a\x3f\xdf\xf5\x12\xb7\xdb\x5a\xd4\xc7\x6d\xd2\x96\xcb\x8a\x3a\xd6\x52\xd4\x07\x0d\x26\xfb\x72\xde\x55\x3d\x37\xfa\x2f\x12\x4a\x6e\xcb\xb6\xab\x1a\x6e\xcf\x9f\x25\x94\x6c\xf3\x25\x03\x5c\xd0\x5f\xd2\x97\x9b\xed\x3a\x47\x86\x2b\x0d\x26\xeb\xbc\x5e\xee\x04\xe6\x9d\x06\x93\x45\x5b\x52\x52\x56\x97\x7b\x8a\x3d\xc1\x47\x4a\x1f\xb3\xd9\x2c\xd9\x11\x4e\xb3\x6d\xdb\x5c\x57\xeb\x32\xcb\xeb\x22\xdb\x08\xd6\x3e\x52\x7c\xaa\xf1\x29\xc5\xa7\x1c\x8f\x6e\x94\x05\x21\x28\xcb\x3b\xed\x0b\x0d\x0d\xe1\x2b\xef\x12\x14\x55\xe7\x1b\xcb\xcd\xc1\xa4\xdc\xe4\xd5\x9a\x07\xe1\x09\x07\xa8\xf1\x5d\xb7\x6f\x30\x54\x17\x1a\x24\x44\x64\xfd\xdd\xb6\x04\x1e\x9e\x5c\x51\x28\x59\xe4\xdb\x7e\xb1\xca\xb9\xad\x12\x4a\x08\x68\xdb\x10\x42\x9a\xf6\x0e\x70\xf6\x91\x34\xed\x32\xaf\xab\xbf\xe7\xbd\x20\xe9\x3c\xf8\x4c\x36\x55\xdb\x36\x8c\xdf\x33\x04\x12\xea\x71\xc6\xe5\x50\xcc\x7b\xc2\x44\x50\x0a\xa7\x6c\xaa\x65\x2b\xa8\xe4\xc4\x33\x7c\x71\x29\x9c\x76\xdd\xb4\x37\x9a\xf0\x8a\x83\x83\xac\xd4\x08\x4d\x8d\xeb\xcf\x6b\x42\xbe\xa6\x9e\xe1\x23\x02\xe8\x92\xbc\xd8\x10\x2a\xb7\x79\x5d\x32\x8e\x8e\xf9\x8b\xf0\x42\x5f\x89\xd2\x54\xd6\x95\x7d\x5f\xd5\x4b\x46\xf6\xb1\x44\xa5\x97\x1a\x95\x04\x69\x2e\xee\xae\xd9\xb9\xe1\xa4\xf8\xbf\xd2\x67\x7a\x21\x9f\x92\x16\x64\x42\xa2\xcb\xc9\x3d\xe9\xb2\xeb\xb2\x2c\xa4\x2f\x5d\xfa\x8a\xc2\xc9\x76\xb7\x5e\x13\xd6\x7e\xdf\x95\x5d\xcf\x99\x2e\xe8\x9b\xfa\x2f\xdf\x49\xd5\x75\x14\xa0\xe8\xb7\x08\x24\x34\x74\xf5\x02\x9d\x39\x41\x20\x49\x3e\x75\x65\xde\x2e\x56\x9f\x13\xf9\x47\x5b\x39\xc0\xb4\x77\x68\x50\x99\x90\x94\x88\xa4\x06\xab\x20\x59\x34\x05\x7f\x9c\xd0\x1f\x15\x5d\xd5\x5d\x4f\x33\xee\x73\xa2\x01\x06\x93\x90\x0c\x40\x5f\xf5\xc0\x82\x46\x62\xfa\x76\x3c\x82\xe9\xab\xaa\xed\xfa\x27\x7d\x45\xc4\xfa\x61\x57\x27\xdc\x3f\x9a\x6d\x59\x31\x37\x26\xf4\xba\x21\x14\x21\xba\xa5\xfe\x9d\xdd\x5d\xfe\xcb\xbb\xa3\xf4\x82\x38\xd1\xb2\x2d\x29\x9c\x52\x19\xf4\x47\x79\xfe\x30\x4b\x28\x97\xd5\x74\x9a\xf7\xf9\x3c\xef\x4a\x8f\x56\x4e\x14\xea\x76\x69\xa0\x71\xe6\x6a\xe0\x60\x5d\x1f\xf5\x77\x6a\x86\x50\x19\x3a\xaf\x5c\x19\xef\x79\x72\x51\x3c\x33\x35\x64\xbe\x58\x97\x1c\x4f\x45\xa5\x6f\xdf\xbf\x3f\x3f\x7d\x99\x96\xf5\xb2\xaa\xcb\x74\x5f\xf5\xab\x74\xd7\x5f\xff\xb7\x6c\x59\xd6\x65\x4b\x3c\x6e\x51\xa5\x34\xa7\x5a\xa2\x84\x94\x08\x5b\x3a\x37\x4b\xba\x6e\x4d\x73\x1f\xe8\xbd\xbc\x7c\x97\x9e\x31\x8a\xb7\x79\xbf\x42\x43\xfa\x55\xd2\xfd\xbe\x66\x14\xb9\x0a\xaf\x56\x65\x0a\x2a\x03\x50\x73\x6d\xf8\x48\x0b\x6d\xe3\x2c\x29\xdb\x36\x23\xb6\xd4\xdf\x65\x9a\x59\xcb\x1b\x42\x4a\x11\x44\x3a\x75\xd3\xa7\xf3\x32\x45\x9e\x59\x92\x58\x83\x0d\xbb\xc7\xdb\xed\xba\x5a\xc8\x5c\x7f\x2d\x69\x1e\xd1\xbc\x82\x28\x96\x42\x38\x20\xca\xd2\x02\x74\x11\x7b\xe6\xf9\x90\x46\x0c\x04\xf9\x57\x25\x31\xc0\xd5\x6e\x29\x6c\x6f\xdd\xec\x8a\x1f\x40\xa9\xd6\x7a\x4f\xa8\xe9\x87\x86\x1a\x0c\xec\x38\x00\x5f\xc5\x31\x51\x1c\x2f\x5a\x6d\xb9\x69\x88\xaf\x38\x62\xaf\x88\xa0\xf6\x15\x25\x52\x4f\xbb\xfc\x96\xe6\x5b\xdf\xa4\xfd\xaa\xea\xd2\x82\x88\x6d\xc1\x05\xd3\xd4\xd8\xd1\x72\x21\x64\x41\x04\x2a\xa4\x61\x71\xf1\x18\x00\x6a\xb3\x23\x6a\x5a\x51\x61\xbc\x18\xf1\xca\x49\x45\x4e\xb5\x13\x5d\xa2\x72\x40\xdf\x44\xb9\x0d\x71\x65\xe6\x9b\xa7\x08\xe8\x77\x58\x3e\xb5\x2a\xbf\xbe\xa6\x56\x75\x44\x15\x6f\xd2\xc5\xba\x21\x92\xfa\xf8\xe1\x5d\xc7\x04\xb3\xca\xb6\x4d\x8b\x65\x8e\x92\x2e\x28\xe8\xe2\x02\x44\x33\x44\xbd\xdb\xcc\xe9\x6b\xbf\xaa\x88\x03\x00\xed\x9c\x83\x57\x73\x8a\xa5\x2a\x76\x1d\x0d\xe1\x51\x4a\x24\x4c\x3d\x20\x94\x81\x00\xb8\x0f\x45\xd5\xe5\x73\x1a\x7b\x06\xbf\xa6\x65\x6b\xd7\x12\x59\xad\xfa\x7e\x6b\x35\xbf\xb9\xba\xba\x90\xaa\x5d\xec\x7d\x75\xe7\x01\x65\x60\x0c\xd6\xbc\xf0\xd6\x69\x53\xcf\x40\x24\xbb\x76\x3d\xa0\x1f\xea\xab\xa5\x1c\xc0\x0b\x37\xe1\x29\xff\x5c\x7a\xf4\x00\xcf\x1d\x49\x27\x7b\x50\x13\xe1\xb8\xc4\x02\x48\x44\xdd\x6c\xb9\xdc\x80\xaa\xcf\x35\xc2\x93\x32\x16\x4d\x97\x2e\x4b\x27\xa5\x42\xf6\x09\xd8\xff\x86\x3a\xac\x6c\xe4\xf2\x8c\xd0\x00\x5e\x82\xd8\xeb\xb6\xd9\x50\xec\x2b\xfa\xf3\x11\xbe\xf9\x67\x5c\x1e\x60\xf2\xa2\x20\xfe\xd6\x1d\xa5\x1f\x5e\x9d\xa4\xff\xf9\x0f\x3f\xff\x3c\x4b\xdf\xf6\x3c\x13\x99\x38\xff\xc6\x44\x45\x41\x59\xc3\x1d\x28\xb1\x8c\x9e\xe8\xee\x01\xcf\xac\x07\xe9\x33\xa4\xfe\xf7\xf2\x4b\x4e\xf2\x47\x39\x5b\x34\x9b\x17\xcc\x55\x36\x79\x3f\x4b\x38\x85\xc8\x55\xe9\xf8\xb2\xac\x0b\x0a\xa8\x24\xa0\x69\x01\xbb\xd3\xf4\x40\x2e\x10\xa9\x28\x5b\x34\xf5\x75\xd5\x72\x87\x7e\xad\x41\x0d\x26\x2f\xd1\x3a\x80\x14\x5b\x6e\x09\x69\xc4\x41\xaa\xeb\x3b\x0f\x8a\xae\xbe\xe7\x48\x1d\xd0\x44\xa8\x2e\x53\x51\xd2\x61\xf9\x52\x88\x91\xc7\xed\x9c\xba\xd7\x1a\xbe\x3b\x8f\xf0\xe6\xfa\x7a\x4d\x1c\xd5\xb8\xa4\xd6\x70\x2e\xb1\xc2\x30\x43\x10\x22\xc6\x2d\x24\xbe\x53\x25\xe2\x93\xd3\xf7\x69\x79\x4b\xd4\x46\xe4\x40\x4b\x74\xb1\x5b\x80\xc2\x18\xf6\x28\xe5\xf5\x89\xf0\x4b\x73\x63\x21\x7c\x35\x60\x12\xdc\x34\xe6\x44\x0b\x02\x22\xde\xa0\x93\x22\x13\x04\xb5\x26\xfb\x58\x35\x97\x2c\x34\x87\x69\x93\x19\x46\xad\xc3\x28\x75\xc3\xbc\x34\xdc\xf5\xfa\x2e\x85\xa0\x02\xba\x10\x51\xd2\x64\xde\x6e\x96\xe8\x22\x69\x92\x73\x76\x5b\x41\xca\x74\x43\x85\x54\x13\xa3\x79\x4e\xff\x99\x01\x58\x7c\xed\x26\xf3\xba\x86\x9d\x73\xc5\x9d\x93\x30\xb9\x7d\x1d\x9a\x80\x1a\x58\x0c\x26\x62\xbc\xad\xc0\xe2\x14\x59\x68\x2b\x61\x0c\x55\x53\x55\x5d\x59\xa2\x04\xca\xff\x94\xca\x44\x9e\x99\x4a\x5d\x2a\x08\xd9\x82\x4f\xc2\x50\x5a\x34\x29\xaf\x40\xe0\xa3\x94\xdb\xba\x5a\x6b\xf7\xb5\xcf\x69\x5b\x2d\x57\xc4\x57\x9a\xfd\x91\x20\x6d\xbf\x6a\x4a\xa6\x9d\xb7\xa7\xcf\x7f\x92\x76\x2c\x99\xab\xba\x4c\xcc\x8f\xf3\x5d\xdf\x30\x9d\xea\x10\x4a\x13\xdc\xba\x06\xc8\x91\x7c\x27\x40\x43\x89\xda\x64\xc6\xb1\x98\xa0\xf3\x24\x4c\xd3\x09\xe2\x61\x24\xf7\x40\x2a\x57\xf1\x29\x5b\x36\x90\x0b\x4d\x5c\xe2\x35\x82\xb6\x18\x5d\x9f\x2d\xab\x3e\xbb\xe6\x09\xcb\x65\xbe\xe2\xbc\xbc\x64\x51\x4a\xfa\x88\x92\x1e\xa5\x34\xeb\x49\xd8\x2d\xfe\x98\x3e\xbc\x55\x39\xe1\x0f\x3c\x13\xb3\xfc\x96\x60\x31\x18\x2a\x6d\xb6\xa5\x88\x29\xb6\xad\x29\x1a\xa2\x73\xc6\x79\xb7\xdb\x82\xa3\xab\x68\x70\x94\x6e\x05\xb0\x68\xf6\xf5\xba\xc9\x0b\xb0\x1c\x9a\x5d\x15\x36\x65\xf3\xaa\xce\x69\x59\xb3\x52\xc0\xca\x1e\x12\x35\xbc\x3f\xbf\x02\xe0\xb2\x99\xef\xaa\x75\x61\x00\x33\xea\xe1\x6d\xbe\xae\x0a\x16\xf0\x74\xdc\x43\x61\xca\xa2\x2a\x69\xcb\xa2\x69\x79\x1d\x46\x6f\x2c\xe3\x01\x01\xa0\xe5\x85\x15\xd1\x94\x57\x61\x91\xcf\xad\xd5\x8c\x06\x1a\x78\x48\xbe\xbc\x92\x83\x62\xaa\xae\x7e\xd4\xa3\xa5\x8b\x1d\xd5\x45\x83\xce\xd1\x94\xb1\x4b\x9f\xbc\xa0\xdf\x84\xe5\x02\xe1\x7b\xcb\x31\xe2\x39\x31\x95\xc4\x9d\xcc\xd2\xa8\xa9\x11\x79\x3b\xea\x32\xe2\x0d\xfa\x1a\xb6\xd7\x48\xa0\xdb\x09\xbd\xf2\x0e\x74\x4d\xc3\x5a\xfe\x40\x81\x47\x34\x81\x97\x6b\x0c\x42\x0e\xb1\x89\xe4\xc7\x86\xf0\xc6\x04\x72\x24\xd3\xe5\x9a\xba\xc6\xbc\xb3\xcf\x6f\xa8\x6d\x39\x2f\xd3\xc9\x27\xde\xa5\x7f\x4e\x76\x22\x79\x35\xeb\xc2\x49\xb9\xa0\xe9\xa6\x1d\xee\x0a\x3d\x90\xa3\xd7\x8e\xc4\xd7\xc5\x2a\x73\x7b\x7c\x46\x4a\x5f\x7e\xc1\x9a\x87\x24\xbf\xe5\x67\x62\xe7\xa4\x64\x73\x87\xe1\xe2\x4e\x9c\xdd\xf9\xd1\x22\xb9\x8b\xa6\x08\xed\x0d\xe6\x0d\x63\xed\xb6\x74\x50\x27\x61\x6c\x9c\x81\xca\x22\x09\x51\x8b\x8a\x37\x6f\x94\x24\x3b\x4c\x4d\x95\x5d\x66\x97\x80\x89\xa9\x82\x02\xbc\x8e\xc6\x53\x37\x4a\x33\x1a\x18\xec\xc2\xac\x66\xe2\x88\x77\x32\x2f\x82\x3a\x93\x4f\xaa\xbc\xf8\x9c\x18\xdc\x87\x38\x9d\xb8\x09\xed\xa8\xfc\xae\x3e\xb3\xd1\x75\xbb\x7b\xde\x8c\x2a\x43\xf1\x0b\xe9\xaa\xdc\xf2\x9a\xbb\xe9\x40\x16\x6b\x82\x2c\xee\x54\x6a\x74\x04\xf2\x8b\xb0\x6a\xa2\x18\x62\x70\x3f\x98\x5a\xe4\x3b\x8b\x78\x59\x11\x29\x20\x7f\xbc\xf4\x88\xaa\x81\x84\x3b\xe8\x57\xda\xf6\xee\x28\x8d\x16\xb1\x55\xde\x11\xfb\xa6\x15\x52\xb3\x15\x33\xdb\xd7\xf0\xb0\xe7\x0b\x99\x33\x50\x91\x80\xca\x25\x67\xd3\x0e\xd7\x44\x6e\xa1\x70\x38\xad\xc5\x49\x0c\x90\x07\x42\xb1\x61\xa2\x4e\x42\xd8\xa6\x64\xa1\x31\xdb\x88\x56\x42\xbe\xd2\xb3\x32\x21\xc9\x66\x49\x13\xda\x08\xf6\x39\x6f\x26\x97\x90\xad\x95\x5e\x19\xa0\xec\x43\x16\xac\x10\x16\xf3\x8b\xa9\x82\x88\x33\xec\xb1\xd3\xa6\xb9\x3d\x42\x3f\x2d\x56\x94\x3c\x33\x96\x2e\x2b\x36\x04\x9c\x8e\xb8\x85\x47\xe2\x31\xab\x71\xd2\x10\x4a\x05\x4d\xdf\x2d\xce\xc0\x5c\xe3\xd9\xfc\xc5\xc3\xee\xd9\xd3\xf9\x0b\xc7\x5b\x17\xab\x72\x71\x23\xf4\x57\xd5\xf3\xe6\x0b\xb6\x8a\x34\xf0\x8c\xe3\x9a\xe7\xd8\xc3\x22\x5d\x51\x2a\x76\x13\xc4\x0b\x28\x1b\x21\x9e\x53\xa3\x41\xa3\xc6\x30\xcb\x98\x99\x52\xcd\xad\x2e\x46\x48\x94\x1b\x95\x48\xcb\x12\x1a\x46\x9e\x7c\x98\x07\x9e\x6e\x8f\x39\x96\x29\x17\xeb\x84\x27\x5d\xf4\x77\x5d\x6d\xaa\x7e\x44\x3a\xcc\x88\x72\x25\x41\xd5\x50\x18\x2e\x51\x16\xb0\x81\xb6\x10\x3b\xa7\x62\x68\xe1\x35\x72\xda\xe7\xb4\xcb\xf8\x43\x4a\x24\xb4\xa3\x65\x8c\xfb\x44\xcd\x24\x7e\x9e\xf3\xca\x4d\x3b\x8c\xbc\xcb\x76\xb5\xa2\xb5\x2c\x8c\x98\xde\x54\x58\x65\xb8\x5e\x23\xf9\x00\xca\x30\xaf\x82\x72\xfa\xd8\x61\xfc\x47\x92\xaa\xaf\x5d\x36\x66\xfd\xdc\xa0\x8a\x85\xba\x7c\x72\xf0\x88\x35\xd6\xa5\x6c\x0c\x81\x01\x86\xe3\x81\xa6\xdd\x85\x1f\x3d\xda\xa2\xdc\x50\x0c\x06\x64\xbe\xeb\xfb\x86\x85\xf6\x35\x53\x8d\xe4\xb1\x56\x9f\x00\x10\xfb\x10\x5f\x1e\x06\x24\xc4\x93\x8c\x4d\x69\x42\x74\xe6\xd5\x9b\xba\xdd\x19\xf4\x4e\xd7\x4a\x07\x56\x88\xa2\x21\xaf\xef\x8c\x94\x89\x20\xb8\x15\x5c\x61\x3f\xdd\x96\xc7\x6d\xf9\xa3\x6f\x8d\x9b\x33\xc8\x61\x2d\x92\xec\xc1\x7c\xfa\x80\x54\x51\x6c\xd9\xac\xb3\xa5\x4f\xd5\x43\x9e\x3e\xda\x18\xbd\x48\xe7\x99\x41\x0c\x96\xe4\xce\x02\x88\xa6\x5e\x20\xf7\x6c\x50\x97\xdf\x2f\x8d\x31\xd8\xc7\x4d\xf6\x2b\x58\xdf\x34\x59\xb7\x92\xbd\xa9\x35\x8f\xf6\xb5\xf5\x32\x52\x70\x40\xb9\x0d\xa2\xfb\x2f\xbc\x4e\xd2\x0e\x20\x5f\x7f\x4e\xee\xa0\x49\xfb\x2b\x71\xf8\x1a\x3a\xca\x26\xa1\x04\xd9\xcd\x9c\x21\x40\xa0\xbc\xb5\xfa\x9c\xf0\x1a\xfa\x7e\x20\x17\xf2\x12\xa1\x71\x81\x80\x82\xa4\x5f\x23\x71\xcf\x86\x30\xb9\x98\x90\x21\x3f\x94\x5e\x17\x8b\x90\xeb\x22\x6d\xc1\xaf\x6c\xaf\x44\xbb\xf1\x9b\x52\x0b\x7f\x43\xfb\xee\xee\x23\xf6\xcd\xb2\x09\xe6\x1d\xf3\x45\x7e\xc7\x52\x9b\x44\xeb\x07\x12\xae\xca\x7c\xa3\xad\xe4\xa0\x14\x71\x4c\xcb\x99\x46\x72\x90\x56\xb9\x40\x1f\x93\x40\x7e\xb1\x2e\x88\x30\xa3\x72\x83\xdb\x3f\x94\xaa\xe8\xfd\x6d\xa4\x44\xfa\x2d\xc9\xd7\xdb\x55\x0e\x01\x22\x00\x83\xbe\x84\x80\x30\xf0\x29\x40\x40\x0b\xbb\x4d\xd9\x56\x0b\x0e\x72\x86\xc7\x4f\xb2\x1f\xa1\x2a\xa3\x89\x42\x92\x64\x5c\x58\x41\x93\xe4\x1f\x2a\x90\xc3\x2c\x65\x86\xe5\x76\xd5\xdf\xad\x17\x51\x71\x1c\x4f\x3c\x87\x20\x20\xd3\x79\x28\x07\x84\x85\x91\xe5\xbb\x9e\xd5\x27\x14\x41\x32\x64\x54\xf4\x26\xff\xf2\xb5\x8c\x9b\x66\x22\x9f\xb0\x02\x9f\xc9\x26\xbc\x76\x31\x66\x07\x04\xcf\x0a\x92\x83\xd0\x34\xf4\x0c\x52\xdf\xd0\xaa\x56\x3b\xb0\x8f\xf2\x9d\xe2\xfb\x8f\xa6\xf6\xa7\x25\x44\x25\xf0\xd4\x1d\x00\xd0\xe2\x5c\x30\xdf\x84\x24\x3d\xf3\xd3\x2d\x94\xae\x1d\x39\xb3\x1c\x6a\x3a\x03\xc7\x38\x48\x24\x95\x8d\x06\x91\xd4\xcc\x9f\x55\x64\xbc\x46\x66\x2c\xb5\xd6\xa1\x6c\xea\x56\x4f\x5b\x5f\x00\x21\x1a\xeb\x6c\x9c\x6f\x30\xe1\x0e\x66\x27\x51\x60\x22\xf7\xf9\x58\x05\x79\x20\x7f\x4f\x53\x66\xa2\x00\x37\x93\x0e\x66\x94\xc1\x44\x26\xea\x79\x31\xe2\x05\xe3\x8c\x0c\x46\xfb\xa6\xf5\xba\x5c\xb2\xae\xca\x2a\x8e\x6a\x53\x12\xa2\xc5\x40\xc0\x42\x02\xf2\x18\x76\x83\x15\x8e\x6b\xb8\x0b\x70\x63\x14\xef\xbf\xa8\xd5\x24\xcf\x53\x90\x73\x06\xbb\x30\x6d\x86\xae\xe4\x1b\xde\x70\x74\x3b\x66\xcd\xbc\x39\x11\xe9\x24\x1e\x0d\x5e\x78\x51\x54\x89\x2a\x0e\x17\x4f\xb4\xc8\x3b\xb6\xaf\x95\x0f\xb0\xef\x2c\x3a\xdc\xaf\x8f\x0b\xd6\xc2\x1d\xd0\xa1\x62\xdd\x8e\xb2\xfc\x52\x41\xef\xf7\xba\x62\x7d\x12\xf6\x94\x6e\x2b\x8d\xb4\x59\xb2\x26\x66\xc0\x7b\x17\xe9\x95\xc8\xb1\xcd\x2d\x6f\xfd\xb8\x3e\x4e\x95\x7c\xa2\x07\xd4\x4e\xf1\x38\xeb\xee\x94\x76\x83\xcd\xbe\x2c\x8e\x68\x89\xe7\x1c\xd4\x4e\xb0\x8d\x7c\xbd\xcf\xef\x3a\x28\x59\x8c\xe3\xb0\xce\x53\xb2\x33\x3b\x21\x01\x60\x89\x56\x85\x9a\x75\x9a\x71\x86\x09\x56\x11\xf3\xe2\xe1\x96\xe9\x3d\xf6\x97\xe0\x16\xaa\xb6\xa1\x6d\x3b\x2f\x7b\x4e\x51\x4c\xe0\xbc\x37\xe6\x9d\x24\xcb\xf8\x92\x1c\x14\x84\xc3\x1a\xe5\xfc\x13\x79\x8f\x58\x3c\xa2\x6a\x58\x58\x21\x7e\x2c\xb8\x26\xf9\x8f\x30\x8b\x26\x05\xca\x86\x1d\x95\xff\x44\xe4\xe2\x8a\x70\xc8\xfb\x2c\xbf\xff\xe6\xb5\x89\x46\xc5\x34\xc3\x12\x8f\xdd\x73\xd2\xf5\x34\x05\x18\xd3\x76\xc0\xf8\x57\x91\xaf\x74\xcf\xcd\xa9\x98\x62\x40\x53\xb7\xaa\xb6\x69\x03\x6d\x63\x88\x42\x4f\xb6\x81\x88\xc9\x3a\xf0\x12\x72\x37\xab\x5d\xdb\xbc\xee\xae\x4b\xe8\x5f\x37\xe9\x35\x9f\x61\xcd\xb4\x6a\x96\x58\xe5\xa0\xf1\x40\xcd\xb2\x87\x41\xd5\xe1\x6a\x81\xb1\x0b\x06\x2a\xae\x5a\x14\xf2\xbc\x60\x49\x1b\x80\x55\x5f\x52\x67\x6d\x60\x32\x1b\xa1\x00\x52\x63\x74\xbc\x62\xad\xb9\x2d\x43\x44\x5c\xff\xa3\x3d\x0f\xb0\xae\x2a\x66\xd1\xcb\xc7\xc3\x24\x95\x42\xdd\x81\xd3\xb1\xf9\x5d\xdc\x7b\xce\xea\x28\x80\xcf\x6a\x6e\x4b\xad\x85\x27\x06\xcf\x95\x41\x81\x50\x73\xf8\xbd\x42\xd2\xe7\xd8\xf2\xcd\xa9\x89\x8b\x55\x34\x3b\xaf\x90\x92\x4a\xca\x68\x82\x26\x9f\xb8\x6a\xda\xc6\xaf\xf2\x7a\x59\xb2\xae\x8c\x4a\xe2\x25\x0f\xdf\x2a\xa1\x4b\x24\x35\x78\xd9\x4a\x98\x35\xec\x96\x65\x41\x13\xb2\xd9\xdc\x9b\xb3\xaa\x4d\xe3\xd3\x25\x7f\x6b\x48\x86\x80\xaa\xf8\x4f\x14\x62\xe9\xb7\x4e\xa2\x53\xa9\x81\x9e\x01\xdb\x83\xaa\xbf\xc3\x71\xd9\x9c\x64\x60\xd9\xa4\x51\x0c\x6d\x73\xc1\x1d\xa0\xfa\x78\x65\x61\x1a\x8f\x9c\x99\x1e\x4f\x6d\x09\x29\x9c\xe8\xa1\x5e\x59\x38\xe1\x5d\xf2\x66\x86\xc5\x81\x85\x69\x68\xb7\x83\x25\xe1\xd1\xc3\xee\x11\x0f\x98\xa5\xcd\x02\xf8\x6d\xde\x13\x5b\xac\x65\x8b\x22\x1c\x2a\xcc\xaa\xc9\xae\x08\x70\x15\x01\x9b\xe1\x2c\x5a\x50\xf1\x39\xf1\x47\xe4\x76\x3a\x3e\xa5\x51\x55\x16\xd3\xa9\xcc\xfb\xcf\x14\x54\x8d\x48\xea\x0c\x44\x74\xab\x8a\x03\x48\x3b\x35\xea\xe2\x43\xa4\x2e\x51\x1d\x52\xac\x40\x52\xf2\x7e\x9e\x9e\x4a\xc0\x36\xbd\xbb\x0a\x7d\xaa\x8a\x24\xd9\x02\xef\xc1\x81\xbe\x0e\x84\x6b\xb4\x1a\x6e\x78\x25\x76\x3b\x5c\xd9\x09\x0b\x52\x0a\x08\xd7\xce\x14\x20\x05\xf0\xe9\x6f\xb0\x61\x63\xed\x2c\x76\x72\x75\x70\x5e\x42\xfb\x5d\xce\xc7\x60\xfb\x72\x9e\xb2\xbe\x94\x08\x87\xf6\x45\xda\xd1\x4d\x4e\x5b\xaa\xdb\x2a\x77\x9a\x19\x1a\x2d\x36\x19\xd0\x55\xf4\x15\x9b\x0b\xe0\x0c\x76\x6c\xdb\xc2\x07\x1a\x7a\x76\xf1\x4e\x83\xc9\x6e\x5b\xb0\x4e\xcb\x77\xf8\x23\x22\x5c\x87\xe3\xf4\x40\x5d\x89\xae\x5b\x36\x27\xcd\x08\x78\x91\x2a\x1c\xb7\xec\x6e\x66\xd3\x67\xc2\x5e\x45\xa7\x50\x31\x04\x09\x4f\x09\x24\x49\x37\xad\x06\x30\x13\xde\x03\xf4\xca\xc1\x20\x10\x42\x6b\x65\xba\x6a\xf6\xe9\xba\xaa\x6f\x3a\xc5\xaf\xd3\x87\xd8\x3e\x39\x3d\x45\x04\x01\x8b\xa6\x86\xc5\xaa\xaa\xde\x95\xbf\x24\x16\x12\x4d\x3e\x82\x63\x0b\x8b\x52\x56\xc5\x21\x33\xd0\x03\x98\x13\x44\xa7\xc7\x88\x9e\x84\xf5\xfb\x5c\xcd\x82\xb3\xe8\xe0\xf0\xf5\xba\x64\x01\x1b\xec\xf0\xb5\x72\x21\xc2\x4f\xd3\x74\xaa\x7b\xf4\xec\x87\xe3\xa0\xa8\x50\x28\x1d\x2d\x07\xa1\x83\x29\x8d\xb1\x83\x0e\x82\xe2\xed\x21\x09\x4b\xda\x1e\xcc\xed\xac\xda\x88\x11\xd3\x47\x4d\x15\x63\x03\xb7\xaf\x40\xf2\x8c\x76\xca\x83\xce\x84\x47\x0e\xef\x09\x97\xd2\x7d\xe3\xa3\x96\x78\x64\xe2\x82\x20\x04\x8b\x7d\xd4\xd8\x21\x65\x69\x01\xa6\x3d\xff\x0a\x81\x19\xf9\x84\x27\x31\xc2\x9b\x1d\x6b\x69\xd6\x91\x50\x78\xa2\xe7\x00\x2e\x9d\x31\x1b\xa4\xbf\xc7\x99\xd9\x50\xdb\x10\xed\x94\xb4\x84\x83\xd2\xf4\xa0\x4d\xa3\xb9\x63\xf9\xf6\xd4\xb7\xb0\x3b\x46\xf0\x33\xa1\xfe\x1c\x9a\x61\x39\x56\xc3\xb9\xbd\xd0\x4b\x8d\x33\x39\x29\x82\x10\x80\x0d\x47\xe7\xf7\x19\xc7\xc2\x8d\x58\xa3\x2e\x56\x51\x0e\x40\x0d\xa3\xe2\xfd\x64\x69\x87\xe0\x21\x63\xdb\xb6\x34\xe8\xb4\xf0\x0e\x34\x51\x23\x96\x16\xb1\x2f\x70\xaf\x06\x27\xba\x9e\x6b\xd1\x0e\x52\xcb\x62\xfe\x8f\x90\xc5\x78\xed\x65\xc9\xda\x2d\xab\x54\x99\xb5\x4b\x15\x96\x9d\x50\x1b\x30\x07\x4a\xa7\x9e\x28\x80\x89\xb8\x89\x00\x0b\x41\x4c\x13\x6a\xd1\x59\xa4\xe7\x85\xc6\xf6\xff\x9b\x6e\x37\xaa\xd0\xe9\x76\x7d\x53\x07\x64\xc3\x6d\x1c\xac\x38\x23\x02\xa2\x04\xac\xbf\x3a\xf4\xc1\xaa\xaa\x83\xef\x16\x57\xae\x46\x64\x7a\x46\x13\x45\x61\x09\x56\x22\x00\x87\x65\x01\x0f\x56\x1b\x30\x39\x12\x01\xbf\x1b\xa9\x21\x63\xfe\x7a\x8c\x1d\x0c\x61\x45\x60\x59\x1e\xe0\x05\x4d\xa4\x3f\xdd\x11\x6d\x18\x11\x72\x6e\xeb\x2c\x68\x46\x47\x33\x47\xba\x6d\x58\x55\xcb\x15\xf5\xab\xda\xf0\x99\x25\xb8\xb6\x1d\x8c\xf9\x5d\x1d\x7f\xd1\xc4\x6b\x96\x35\xeb\x70\xb8\x06\x31\x99\x71\xdc\xf6\x59\xd7\xb7\x4d\xbd\x7c\x71\xda\xf0\x76\x8b\x35\x21\xbc\x54\xfc\xf2\xec\xa9\xc6\x13\xcb\xe0\x31\x64\x43\xd2\xd7\x55\xff\x66\x37\x7f\xd4\xa5\x4b\x92\x0d\xb0\x80\x3c\xcb\xd3\x55\x5b\x5e\x3f\x7f\xf0\xb0\x7b\xf0\x42\x0f\xaa\xc5\x9e\x69\x5f\x3b\xb4\x3c\x7b\x9a\xbf\x60\xe9\xb9\x6b\xd6\x24\xd4\xc6\x59\x9a\xcd\x46\xc6\x97\xd8\xdf\x46\x20\xd1\x7e\x9c\x6d\x97\x35\x30\x57\xb6\x8a\x1f\x2a\x70\xe6\x68\xdd\x8f\x8f\x0e\x9b\x89\x49\x91\x7e\x41\x05\x15\x06\xc6\x91\x5d\xdd\x07\x4c\x93\x75\x0b\xa9\xcb\x86\x05\x76\x9c\x0d\x03\xc9\xea\x1a\xaf\xda\x30\xe5\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\x4d\x95\x09\x81\xd1\x2b\x41\x98\x60\x23\x1a\xfe\xc1\x18\x80\xf4\x5e\xa7\xbf\xf5\x00\x69\x22\xc9\x28\x4e\x04\x02\xf6\x26\x03\x18\xa3\x66\x15\xfa\xc0\x3c\xad\x15\x60\x65\xba\x07\x11\x83\x10\x11\xc8\x84\x24\x49\x42\x67\xf6\xf6\x8d\xb2\xc3\xa8\x5e\xdf\x71\xab\xce\x1f\x7d\xa1\x2d\xc3\x1e\x33\xc6\xd0\xa7\x63\xa0\x83\xfa\x02\x9d\x82\x8e\xd4\x3b\xd5\x20\x20\x81\x96\xe1\x60\xb7\xf0\xbe\xd1\x13\x97\xd4\x22\x31\x26\xb4\x3d\xe8\xcb\x68\x32\x73\x23\x60\xfe\x25\x26\x1e\x50\x4a\xfc\xd7\xb4\xc8\x89\x13\xf4\xcd\x0d\x11\xd3\x38\x0b\xe2\x0f\x65\x72\x1c\xc6\x64\x74\xe5\x2f\xc7\x9e\x3d\x0c\xa5\x76\x3d\xe0\x3c\xc8\x62\x02\xce\xa2\xa5\x3a\xd3\x17\xd1\xa8\x94\x90\x8d\xe7\x55\x5d\x08\x27\x51\x46\xa0\xb6\x24\x8e\x03\x90\x7c\x51\x33\x10\xd4\x9e\x1c\xd0\xef\x70\x58\xa2\xf2\x83\xe9\x42\x0c\x7c\x57\x07\x0c\x54\xc8\x21\x13\x54\xb8\x4e\x5e\xd0\x16\x0c\x76\x64\xc7\x52\xe0\x15\x27\x77\x6a\x44\xa9\xe7\xc4\x96\xe5\xb5\x46\x62\x0e\x00\x50\x10\xde\x39\x44\xe0\xcb\xef\xc6\xad\x14\xb5\x01\x50\x0b\x31\x8c\x01\x51\x9d\xb1\xcc\x95\xd8\x04\xa4\xc7\x17\x6f\x69\xcd\x70\x15\x5a\xa1\xbf\xe6\x24\x47\x4a\x13\xf6\x4e\x13\xc0\xc4\x36\xe4\xb9\xee\x04\x49\xb2\x9b\xe2\x11\x39\x31\xc5\x5d\xa7\x46\x1d\x92\xce\xc4\xe9\x82\xe3\xb2\x0b\xb4\x23\x52\x1b\x5a\x32\x5c\xad\x5c\x57\x7f\x20\xcc\x3a\x1d\x1d\x4f\xad\xed\x1d\xf3\xff\xc0\xfc\x27\x17\x0c\xed\xc1\xc1\x07\x76\x47\x04\x09\x0d\x41\xca\x53\xb8\x75\xfc\xc3\x1a\x6c\x02\x44\x30\x94\x21\x1b\x99\x1c\x4c\xcf\x54\x26\xb3\x4d\x71\x96\xad\x95\x13\xf7\xf9\x6b\x7c\x86\x09\xdf\xef\x5f\xef\xe1\x32\x61\xaf\x02\x52\xbe\x98\xac\xd6\x51\xb4\x54\x3d\xe0\x37\xa9\x2c\x84\x72\x82\xce\xb5\x88\x6c\xad\x14\x11\x98\x64\x52\x29\xfb\x72\xcd\xb6\x94\x5a\xbb\x3f\x45\xd6\xae\x47\x67\xc8\x0a\xe4\x4e\x8f\xd9\x68\xd6\x89\x82\x82\x8a\x50\xbd\x65\x85\x11\x04\x4d\x37\x1c\x1b\xcb\x16\xd8\xd6\xeb\x93\xe3\xf7\xef\xcf\xaf\xfc\x32\xcd\xf3\xa0\x2e\x48\x98\xf8\xc1\x59\x60\x8d\xda\x65\x76\x58\x6e\x00\x63\x08\x6f\x09\xa6\x39\x0e\xc1\x85\x6c\xca\x4a\xa7\xe0\xb2\x01\xef\x69\xb8\x2d\xc6\xcb\xa3\xf6\x17\x87\xc6\x2f\xf9\xc4\xf2\xcd\xe7\xc4\x94\xc4\xe7\xfc\x9f\x84\x7a\xf6\xe0\x6c\x03\x53\xcf\x1f\x81\x78\x4b\x67\x6a\x40\x53\x8c\xf4\xee\x60\xd2\xbb\x1c\x5b\x08\xc2\x7d\x83\xb5\xe2\x3a\xc5\xf1\xe8\x11\xab\x11\x9b\x16\x13\x86\x91\xbb\xab\xab\xdf\x77\x10\xd0\x78\x03\x41\xcc\x83\x0d\xfb\xe6\xd5\x5a\x16\x94\x3f\xbb\x0f\x89\xe7\xd0\xc0\x1a\x37\xa8\x9c\xbe\x9e\x75\x5b\xb6\x55\xa4\xb5\xa1\x7b\xfe\x60\x57\xa5\xac\x95\x62\xdb\xa0\x07\x2f\x48\xdc\x67\x33\x03\x1a\x3e\x82\x78\xc1\x9a\xa5\x1b\x53\x58\x0e\xaf\x76\x20\xcd\x4c\x69\x39\x0d\xf6\xb4\x88\x9d\x68\x85\x6e\x8e\x44\xe3\xd4\x8b\xaa\x32\x0d\x7a\xc1\x53\x8a\x89\xfb\xa6\x0c\x31\xa5\x47\x4a\x6e\xe6\x76\x8b\xb6\x82\x3d\xb0\xc4\xf3\x65\x9e\x34\xb8\xc8\xe3\x22\x7d\xbd\x97\x34\xde\x0b\xde\x11\xcf\x96\x55\x4f\x9b\x32\xbe\xbe\x03\x55\x09\xcd\x17\x62\xe1\xb8\x07\x24\x21\x8b\x99\xc8\x6b\xb0\xc8\x58\xd5\x55\x9f\xb1\xa0\xb5\x91\xcb\x13\x54\x6c\xbe\x16\x21\x36\x46\xb4\x9c\xf8\xa7\x1f\x7e\x3d\x3e\x3d\xfb\x75\xb6\x29\xcc\x22\x49\xf1\xa9\xa6\x48\x01\x46\x8b\xf2\x3a\xdf\xad\x4d\x57\x8a\x0e\x23\x22\x7d\x89\x08\xbd\xb1\x43\xdb\x5a\xc2\xdf\xad\x2c\xe0\x72\x87\xe7\xad\xc5\x3c\xe6\x4d\xcb\x8f\x07\x34\x88\xc3\x63\xb8\xef\x57\x24\x0e\x4b\xb8\x5f\x9f\xc8\x36\x1a\x19\x6b\x87\x53\xb5\xe3\x89\x4e\xaf\x13\xbd\x51\x64\xf7\x3f\xdc\x95\x22\xb9\x00\x12\xa6\x1e\xa6\x65\xdb\xdc\xe6\x31\x49\xc3\x04\x6e\xbe\xde\x95\x0f\x5e\x08\xce\x8c\x9e\xad\x54\x1d\x82\x33\xbd\xd4\x14\x8c\x81\x42\xcc\x60\xab\x9e\xd9\x9e\x8d\x8d\x1c\x78\x3f\xa4\xfb\xf4\x69\xa8\x88\xfd\xa8\x08\x90\x07\xf6\xef\x4f\x5f\xbf\xbd\x82\xf5\x3b\x8d\x18\xac\x95\xcd\xc4\x9f\x2d\x24\x67\xae\x4c\x3b\x09\x02\x88\x19\x55\xbe\x95\x48\xcd\xc7\x91\xd8\x6c\xc5\x4a\x73\xb3\xd7\xc8\xc3\xab\x12\x89\x4c\x2a\x9b\xa9\x3a\xc5\xae\xdd\x5c\x85\xed\x3b\x1b\x36\xc7\x93\x14\x77\xba\x02\x4c\x87\xd6\x44\xcc\x0d\x0b\x66\xe7\xdb\xbb\x8c\x55\x77\xe0\xe0\xdb\xbb\x04\x36\x37\xb4\xd8\x65\x90\x05\x24\x12\xfc\x74\x5d\x6d\xe5\xda\x21\x25\x54\xa5\x58\xde\x22\x70\xfe\xcf\x89\xa0\xd0\x8d\x30\x08\x05\x77\x11\x39\x81\xf8\xf6\x2f\x60\x6f\x3d\xef\xcf\xe4\x28\xe1\xf9\x83\x6c\x4e\x73\xfc\xe6\x41\xb0\x5f\xe3\x5b\x8b\xbc\x49\xfb\x81\xc4\xc6\xbd\x1e\x78\x7f\x94\x50\x62\xdf\x7f\xc1\xd7\x8e\x2d\x39\xe5\x74\x9d\x03\x89\x7e\xb1\x46\x3e\xd1\x7b\x6c\xcc\xcc\x12\x96\xd9\x75\x3c\x49\x5e\x0f\x39\xcf\xef\x3b\xee\xa5\x6c\x35\x9f\xa7\xff\xc2\x5f\xe9\x6b\xfe\xd2\xae\x30\x1b\x70\x73\x1c\x54\x33\x60\x0c\xa1\x65\x22\x38\x96\xda\x07\x7b\x9e\x20\xe6\x4c\x01\xf6\xd5\x8e\xc9\x00\xd9\x88\x3e\xd9\xee\xd8\x66\x83\xc7\xdd\x6a\xbb\xa0\x18\xdc\x48\xe0\x48\x5e\xf2\x82\x12\xdc\x71\x4d\x54\x46\xe2\x58\x8d\xb2\x98\xbe\x2d\x21\x4b\xd2\x9f\xa6\xe1\xd6\x63\x9f\x43\x41\x2f\x40\x44\x72\xff\x29\xbd\xa2\x18\x85\x28\xc3\xa4\x44\x41\x91\x3e\xbc\xff\xb6\xce\xe7\x25\xb4\x5a\xef\x10\x20\x92\x5f\x97\x5d\x4f\x28\x82\xb2\xc3\x7d\x24\xdc\xc6\xaa\x17\xdb\x53\x84\x12\xb5\x8c\x96\x43\x18\x09\x26\x50\x71\xb7\x39\x9b\x09\x7e\xc8\xf7\xf2\x49\x98\xd6\x0b\x73\x6f\x24\x24\xd1\x30\x3a\x15\x50\xd8\x9c\x3a\x78\x88\x01\x4a\xc3\x17\x16\x4e\xac\x01\xb3\x71\x43\x2c\x65\x70\x5f\x2f\x5d\x0c\xd2\xaf\x65\x33\xf3\x8a\xb7\x32\x16\x97\x83\xff\xa5\x66\xc6\xe3\xe2\x37\xc4\x3c\x44\x9b\x7b\x26\x21\x97\x52\x88\x85\xd9\x29\xdf\x5c\xb5\x38\x33\x02\x3e\xe7\x7f\x17\x4b\x04\xa3\xf3\x87\xfe\x9d\x41\xad\x5c\x69\xe5\x5d\x8c\x5c\x10\xf4\xd1\xb3\xe1\x58\x04\x49\x35\x2f\xa2\x73\x68\xd1\x89\xf6\x91\x1e\x26\x2f\x08\xff\x6d\xe6\xf2\x9f\xf0\x67\xba\x1e\x95\xe2\x06\x37\x1c\xdb\x41\x35\x21\x0c\x55\x35\x09\x26\xd5\x85\x90\x52\xe3\x66\x0a\x98\x24\xd7\x3a\x82\x3d\xa7\x88\x90\xb4\xa2\x82\x59\xe6\x1a\x94\x0c\x31\x6c\x1a\x9e\x96\x16\xbe\x6e\x01\x41\x54\x83\xe3\x76\x06\x40\xd2\xcc\x7c\x02\x94\xf5\x01\x1e\x8e\x3a\x3e\x04\x52\x95\x95\x63\x08\xc3\xd1\xf3\xe3\x43\x43\x3b\x1c\x20\x49\xcc\xb6\xeb\x7c\x51\x3a\x93\x71\x00\x61\xd5\xe6\xab\xa5\x51\x35\xae\x30\xad\x2c\x2a\x0f\x08\xed\xf3\x39\x25\x3f\x2c\x80\x4d\x97\x99\x71\xe5\x93\x04\x75\x96\x48\x93\x8b\xcd\x8c\xad\xe4\xa8\xc8\x30\x8d\x04\x0c\x5e\x7c\x44\x47\xff\x9e\xb7\x86\x1c\xe6\xeb\x3c\x13\x39\xee\xa5\xa8\x21\xcc\xc1\x92\x47\x74\xa3\x39\xef\x19\x5e\x0f\xc1\x77\x46\x0f\x17\x7d\x20\x9f\x4a\x38\x90\x6b\xc6\x29\x33\xbe\x58\xe0\x38\xe5\x31\x4e\xe3\xc1\x2d\xa7\x40\x3b\xbd\x62\x4e\x8b\x2c\xaf\xc8\xae\xa9\x85\x2a\x07\xa6\x32\xc9\x28\x17\xd9\xfc\x4e\xf3\xc8\x38\x17\x7c\xd6\x7f\x20\xcb\x86\x0f\xf4\xb1\xfc\x6a\x96\x33\x17\x31\x91\xa5\xd3\x6b\x8e\x7c\xcf\x70\x9c\x32\xe3\xcd\x33\x0e\xfc\x99\x37\x75\x93\x20\x4c\xa5\x00\x39\x47\x60\x0a\x44\x54\x66\xba\xe9\xe5\x55\x40\x6c\x96\xed\x88\x69\xb2\x62\xb6\x62\x70\x39\xde\xc1\xa6\xa1\xfd\x86\x7c\x6c\xf0\xc7\x7c\x55\x34\xa4\x67\x0d\xcc\x01\xf1\x79\x4f\x3d\x3e\x83\x54\x34\xca\xc1\x33\x09\xa3\x40\x20\x12\x4e\x1f\x7e\xfa\xe9\x73\xc7\xc3\xe0\x94\xcf\x4f\x1f\x7e\xfa\xf9\x33\x09\x34\xf8\x63\x89\x66\x94\x3b\xbb\x66\xad\xcb\xb8\x08\xe4\x30\xe8\x6d\x5b\xde\x56\xcd\x0e\xba\x06\x0d\x7a\x06\xf1\x45\xc6\xe2\x4b\x1f\xcf\x71\x77\xdf\x72\x30\xc5\x0b\x97\x14\x4f\xf1\x7a\xb7\xc9\xb4\x93\x9d\xb0\x00\xfb\x72\xd9\x0d\x05\x59\xce\x55\xfe\xe6\xbe\xd9\x62\x83\xba\x5c\x15\x24\xbd\x71\xfb\x4d\x94\xfb\x27\xf9\xf2\xbd\xff\xcd\x55\xd6\x04\x3a\xeb\x2b\xb9\x35\xca\x92\xaf\xd3\x9e\xdf\x95\xfd\x2c\xe6\x4c\x76\x35\x1e\xad\x8e\x93\xb4\x21\x31\x88\x1a\x46\x22\xc5\xc0\xdb\x12\xb8\x31\xb8\x0f\xf8\x1c\x24\x0e\x0b\x13\xa0\xa9\xd2\x94\xdd\x7a\x4a\x39\x19\xa4\x0b\xba\x15\x59\xb2\x14\x7d\x37\xa6\xa4\x55\xae\x18\xfb\xfc\xfe\x82\xb6\x8d\xfa\xdf\xb8\x40\xc0\xa2\xe5\xde\x9e\x9a\x1a\x3b\x0a\x8a\xf4\x23\x1a\x69\x37\x39\x48\xac\xa6\x5d\x06\x18\xab\xdd\xde\x60\x45\x3d\x47\x45\xa0\x55\x9d\x99\xc5\xb2\x4a\xde\xc4\xd3\xd8\x2a\x47\x04\x68\x1a\x69\xbe\xb0\xa6\x2a\xb7\x83\x97\x6b\xa2\x73\x9c\xe0\x8e\x85\x62\x3d\x9c\x53\x65\x51\x31\x8e\x7e\xa5\x3f\x37\x04\x03\xf3\x01\x6b\x1f\xd7\x42\xcd\xa7\x3f\x8b\x92\xe5\xcb\xa6\x86\x5f\x5e\xe3\xf4\x45\xb3\x6e\xfc\xf2\x8b\xaf\x21\x80\xa8\xc0\x1e\x16\x03\x11\x4a\x92\x3d\xf9\xe9\x1c\x03\x6d\xc5\x0b\x84\x40\x4e\x74\x46\x12\x06\x76\x34\x71\xa2\x33\xa1\x97\x06\xc2\x90\xde\xae\x02\x8f\x4b\x51\x6b\x14\x80\x3a\x1d\xdc\x24\xd8\x94\xb2\x55\x84\x81\x50\xb9\xca\xa2\x75\x55\xcb\x7d\x68\x2e\x9b\x8f\x17\x03\x7d\xab\x96\x7c\x58\xbd\x3a\x5d\xb5\xd7\xb3\x4a\x4b\xbf\x72\x8e\x03\x1f\x1e\x60\x56\xdb\x9c\x48\x4f\x8e\xf3\x55\xe4\xe7\x18\xb5\x4d\xe8\xa6\xe1\xac\xa3\x06\xdc\xef\x9b\xd4\x6d\x8b\xe0\x18\x86\xd9\x75\x9e\x72\x66\xbb\x86\x03\xf2\xd7\xfc\x33\x2d\x96\x18\x5c\x5b\x76\xbb\x35\x78\x29\x4e\x88\xe4\xe3\xda\xce\x36\x9c\x48\x1a\x08\xf5\x5e\x08\x0a\x92\x27\x24\xb6\x20\x75\x5a\x6a\x1b\x02\x14\x5e\x16\x7e\xd8\x45\x75\xd3\xae\x78\x47\xf3\x53\x5d\xc1\x34\x29\x7d\xa5\xf8\x1a\x36\xc1\x96\x92\x61\xd1\x8e\x23\xc7\x3d\xa2\x51\x9b\xaf\x68\x46\xcb\x8d\x12\x11\x44\x83\xed\x21\x0d\xbb\xda\x4a\xaa\x1e\x5a\x87\x3e\x2a\x7e\x20\x34\x4f\x62\xc7\x26\x2c\x2e\x6b\x84\x09\x13\x3a\xc6\x30\xd5\x77\xfa\x94\x7a\xcc\x1b\xb2\xf4\xb1\xf9\x2a\xf8\x31\xee\x64\x29\xe6\x3e\xfc\x1f\x26\xb8\x4b\xb6\x5a\x54\x26\x74\xaf\x25\xa2\x70\x8d\xf1\x97\x4f\x8f\xdc\x55\x87\x47\x77\x54\xdc\x93\xcd\xe6\x49\x51\x3c\x9a\xe8\x75\x40\xf4\xae\xdb\x83\x53\x5b\x15\x03\x07\xd4\x1f\x94\x14\x70\x90\x69\xdc\x31\x40\x34\x4e\x1f\xd9\x60\xb4\x64\x1d\x60\x5a\x78\xbc\x81\xbc\x83\xb1\xeb\x9a\x74\x4b\xab\x10\xa1\xdd\x9d\x04\xf1\x49\x80\x98\xd0\x87\x3d\x19\xf0\xde\x20\x69\x70\xd3\xe7\xde\xe6\x19\x1e\x74\xda\xb2\x66\x79\x73\x00\x25\xe2\x5f\xe4\x20\x42\x02\x9e\xe7\x91\xea\xf8\xde\x04\xe0\x14\xd7\xf3\x75\xff\x47\x72\xbe\xa9\xca\xa7\x48\xe0\x6b\xbc\x6f\xca\x49\x92\xc5\xcd\x84\xbe\x61\x99\x29\x21\x9f\x14\xdc\x14\x06\x7e\x4e\xc2\x6f\x0f\xb6\x6a\x9a\x1b\xb9\x2d\x3d\x47\xd0\xa7\x2c\xab\xde\x12\xd9\x0b\xcc\x9b\x38\x75\x9e\x77\xd5\x22\x74\xc6\xf4\x92\x23\x26\x9a\x58\xf0\x18\xb7\xd9\xdf\x65\x53\x78\x8a\xaf\xf4\x7f\x32\x61\x38\x10\x35\xab\x3c\xb7\xdb\xf1\x97\x6c\x5c\xe9\x52\xd5\xac\x2d\xa8\x4a\xad\xf0\xc6\x75\xa9\x85\x18\x2b\xd5\xa6\x0f\x7f\x9c\x79\xe4\xa1\x2c\x46\x1f\x43\x3d\x3a\x1f\xb2\x3a\x33\xb2\x91\xa5\xe4\x94\x85\x64\x7c\x91\xe3\x3e\x3b\x07\x6b\x8a\xb3\x11\x67\xed\x9e\x06\xcf\xcd\xcc\x7c\x0c\xe6\x94\xd9\xde\xb4\x3c\x56\xbd\xf3\xb9\x76\x2d\x96\x63\x30\x2f\x67\x33\x74\x8e\x8a\x6d\xda\x89\xae\x9d\x5b\x1b\x95\xd5\x20\x3f\xe2\x94\x98\x2f\xc5\x5a\xbd\x70\x14\x86\x0b\x26\x6c\xab\xdf\xc9\xd1\x85\x1a\xca\x8b\xd1\xa4\xc8\x98\xb9\x93\xfb\xd8\x0c\x61\x78\xda\xe2\xec\x61\xfc\xcd\x68\xb1\xba\xb4\xa6\x22\x2d\x20\x9f\x81\x8d\x31\x70\x1f\x9c\x06\x0c\x00\x0d\x29\xe7\xc4\x9f\xc4\x8c\x41\xb2\xe5\x91\x8d\x7e\x1f\x6c\x4f\xe4\xe8\x71\x9e\x2f\x6e\x5c\x8b\x98\xfd\x95\x6d\x0f\xeb\xf8\x31\xda\xd9\x3a\x6f\x01\xf1\xe3\xd9\xf6\xc5\x13\x68\xe4\xc5\x13\x0f\x7a\x21\x13\xbc\xba\x0e\x10\x02\x73\x0c\x36\xaf\xb8\xad\x8a\x1d\x91\x37\x0f\xc6\xec\xd9\xd3\xed\x8b\x38\x3f\x51\x04\x4e\x1b\x0e\x96\x31\x18\x38\x16\x5d\x2a\xdc\xca\xe5\xeb\x27\xb8\x07\x71\xed\xaf\xf7\x74\xa8\xe1\xe0\x2c\x0a\x58\x51\x40\xea\xc6\x4e\xbe\x62\x1d\x3a\xc6\x89\xed\x2e\xe0\x42\x0e\x3b\x0c\x07\xc3\xd2\x55\x16\x90\x36\x4c\x12\x8c\x66\x27\x8a\x12\x53\x87\xc1\x59\x96\xbf\x6d\xe1\x9a\x66\x19\xda\xc3\xcd\x8b\x4f\xb3\xd3\x89\x53\x6c\x07\xca\xa6\x42\x9e\x63\x8a\x0a\xb8\x28\xd0\x9f\x93\x20\xfa\x70\x86\x81\x59\x56\x54\x56\x6c\x96\x15\x34\x50\x96\x9a\x43\xe5\x9c\x4c\x96\xa1\xa6\x07\x41\x29\xb8\x54\x55\xe1\xfa\x4c\xa6\x37\xfd\xd5\xfd\xe1\xf0\xfe\x8a\xa6\xee\x57\x4d\x70\xcf\x54\x6c\xc5\x30\x59\xc3\x86\xcc\xe2\xbe\xee\x65\x7d\x50\xbc\xe8\x6a\x31\x58\x46\x6c\xf2\xd9\x5a\x82\x3b\x8b\x9b\x1d\xf1\x96\x75\x45\x83\x8e\x25\x43\x1d\x5e\x9d\x5f\x5e\xc1\x95\x10\xf1\x42\x62\x34\x4b\xa6\xd7\xf4\x2f\x2b\xda\x06\xf3\x69\x1b\xfb\x9d\x62\x63\xcf\x65\xda\x2c\x16\x6c\xe2\x59\xd5\xea\xaa\x63\x5f\x9a\xe1\x4d\x5d\xac\xc5\xdc\x33\x34\x96\x35\xbe\x2b\xc7\x50\x29\x7c\x4b\x31\x13\xe8\xb6\xe5\x82\x84\x92\x19\x2b\x7e\xda\x1a\x9e\x20\x53\xdb\xb4\xde\x7b\x6a\xe5\x7a\x82\xe3\x23\xde\x99\x06\x68\x51\x94\x84\x1b\x2f\x65\x52\x23\xf4\x0c\x41\xa7\xc4\x10\xc3\xf0\x7d\x42\x08\x6e\x32\x88\xbd\x47\x45\x98\x22\x26\x2b\x67\x28\xdf\xb2\xbc\x8c\xda\x10\xba\x4a\x91\xaa\xbf\x22\x8b\x8c\x44\x03\xe7\x6c\xd0\xe4\x03\x8c\xf8\x96\x2f\xd3\x88\xf2\x92\x13\xa8\x0f\xe5\xfa\x5a\x2e\x46\xf1\x99\x2b\x84\x58\x71\x10\xc5\xc6\x14\xe2\x37\x87\x8f\x14\x51\x80\x9a\xf8\xc2\x7a\x0d\xde\x00\xb8\x37\xdb\xb2\x65\x1c\x98\x31\x7c\x68\x07\x3d\x6c\x13\x76\xd9\xd6\xae\xb7\xc2\x10\xd1\x37\x88\xec\xe2\xba\xe1\x88\x57\x21\x96\x76\x4d\x35\x65\x87\xd4\x5b\x71\xd7\xc0\x6b\x3c\x51\x0a\xee\x1a\x1a\x88\xac\x9c\xe2\xd7\x8d\x04\xff\x9d\x12\xa2\x5d\x31\xc0\x08\x72\x3d\x13\x2d\x52\x51\x84\x11\x24\x16\x28\x23\x08\xaf\x38\x03\x90\x59\x7c\x0e\x99\xb7\x82\x7b\x09\xe8\x4d\x44\x64\xc1\x34\x8d\xbc\x40\xa2\xa1\xea\x84\xe1\x19\x7b\x10\x78\xc1\xd3\xef\xd9\x53\x04\xdd\x8e\x57\xa7\x0e\x9f\x7e\x07\x53\x86\xfd\x7a\x35\x84\x06\xac\xdd\x6d\xb9\xcc\xdb\xc2\x6e\x60\xea\xf4\x65\x6b\x3a\x4c\xd3\xd0\xc0\x3e\x5f\xd3\x96\x42\x8b\x20\x76\x43\x20\x37\x7c\xda\x46\xe3\xcd\x2e\x13\x6d\x17\xc5\x4b\x57\x21\xbc\x81\x6d\x97\x69\xc6\xee\xb6\x3c\x89\x85\x23\x58\x3d\xe8\xf2\xe3\x3f\x5d\x9e\xbf\x3f\x4a\xbf\x3c\xd9\xef\xf7\x4f\x38\xfb\x93\x5d\xbb\x66\x2b\xdf\x82\x6f\x78\xfe\x8f\xb3\x77\x47\x69\xd9\x2f\x7e\x9c\xd1\xf6\x03\x73\xdb\x4f\x19\x3d\xe6\xc7\x2e\x9d\xa9\x8b\xb7\xa6\xff\xf8\x9c\xdf\x8a\x2b\x00\xf5\xb3\x17\x3a\x06\x08\x57\x1d\x1e\x3d\x3b\x53\xd0\xc1\x94\xb3\x05\x2f\xf2\x96\xb4\xd9\x83\x4a\x1e\x01\x9f\x00\xac\xda\xf0\x7d\x64\x74\x88\x74\x86\xf8\x8e\x6d\x8f\x76\xeb\x22\x66\x18\xd4\x3b\x45\x59\x59\xfc\x32\x2c\x09\x67\xd0\x70\x2b\xf6\x3c\xfd\x13\xef\x54\x19\xa5\x42\x05\x9c\x64\x54\x00\xe0\x90\xe5\x63\xa2\xa4\xea\xd6\xa4\x1c\x26\x78\x6b\x80\xd3\xb2\xc7\x3d\x88\x29\xda\x90\x96\xbb\xb6\xf9\xd1\xb4\xf9\xa6\x6c\x4c\x96\x1f\x31\x89\x8b\xa8\x19\xa4\x1c\x2f\xac\xfb\x21\xab\x1a\xae\xa9\x3a\x57\xfc\x7a\xa5\x73\x65\xc4\x93\x15\x70\x50\xc7\x88\x15\xaa\x08\x34\x12\x49\x83\x1a\x0e\x71\x7d\x39\xc9\xc8\xb4\x97\x76\x41\x11\x76\xc5\xa7\x2e\x2e\x5e\x43\x8d\x6a\xc0\x07\x62\x92\x61\x84\x74\x6b\x92\x53\xb3\x70\x86\xf3\x6a\x1c\x2b\x54\x19\x04\xe6\xf0\x6c\x85\x64\x16\x3b\xa3\xcb\x00\xa1\x9c\x24\xa5\x9a\x61\xa7\x18\xa0\x0e\x12\x87\x8e\x36\x07\xc9\xbc\x35\x12\x1f\xc0\x27\x12\x0a\xb1\xb5\x5d\x37\x77\x76\x5f\xe2\x14\x5f\x7a\x11\x31\xec\x99\x07\xd3\x4e\x79\xc8\x60\x0b\xd2\x64\x71\x71\x7f\x0d\x5c\xd2\xa8\x1c\x53\xdf\xa5\x02\xc3\xb6\x78\xa1\xac\x1a\xa9\x95\x26\x9a\x37\x61\x72\xef\xa0\x86\x97\x03\x4e\x5d\x0d\x07\x2e\x07\xc4\x59\xc3\x0b\x02\x41\xd6\x6f\xb8\x20\x10\x23\x69\x6c\xfe\xef\xbb\xfa\x0d\x37\x00\xa6\x3a\x3d\x16\x5e\xa6\x10\x3f\x91\x61\x4a\x84\x29\xc2\xbe\x7d\xc3\x4d\x80\xc1\x8e\xf5\x5b\xa4\x98\xa9\x96\x78\x94\x04\xc8\xfd\x9a\x5e\xa5\xa8\xae\xaf\x67\xf3\xb6\xd9\x77\x6c\x6e\x0f\xaf\x95\x6c\x23\xc3\xdf\xe9\x25\xbe\x05\x84\x75\xc6\x20\x0a\x09\x48\xa4\xd8\x74\x50\xa4\x04\x24\x92\x97\xb6\x91\xd7\xc0\x53\x4a\x81\xa3\x3e\x76\xe2\xc9\x17\x07\x25\x65\x26\x59\x88\x9d\xef\x33\x0e\xe1\xa2\x00\x74\x3c\xac\x4b\x40\xa6\x4b\x8e\x51\x30\x0e\x1a\xc2\xcd\x8c\x17\xe7\x79\x7a\x95\x13\xe2\x94\xb7\xe8\x05\x61\x19\x1c\x81\x11\x31\x54\x90\x97\x3c\x48\x68\x10\x4c\x10\x86\x4b\x0f\xa1\x08\xc2\xa4\x7f\xf9\xf6\xbd\x7c\xc2\x4a\x47\x2f\xb6\xc2\x4c\xe7\x15\xdb\x5b\x9a\xed\xcf\x6c\xca\x06\xc8\xd2\xc4\x96\x4a\x36\xd8\xe6\xbf\x1c\x5f\x0e\xa2\x68\xf3\x6b\x28\x5b\xf9\xdf\xc5\x92\x4c\xe6\xb3\x5d\xb4\xe5\x93\x61\x36\x42\x8e\xa0\xfa\x12\x01\x17\xaf\xca\x52\xfe\x73\x71\x39\x2b\x46\x03\x1c\x3e\x2c\x3c\x46\xcc\x92\x88\xe8\xee\x21\x2d\xb4\x15\x6b\x10\x94\x40\x07\x15\x82\x3a\xbc\xaf\x26\xd0\x0e\x3c\x7a\x1b\x44\x9f\x2f\x9d\xcd\x7f\xbe\x94\x43\x27\x9f\x86\xbd\x89\x5d\xae\x8f\xf2\x78\x87\x4d\xa6\x13\xf1\x96\x62\x94\x0e\xd7\xb5\x8b\xd0\x00\x8d\x22\xd9\xf2\x0c\xf7\xa3\xbb\xd5\x6c\x38\x10\xee\xf0\x4b\x71\x96\xe2\xdb\x41\x99\xa4\xc2\xe4\x92\x6d\x8a\x40\x58\x11\x02\x0a\x97\x95\xb3\xbc\xbd\x61\x5f\x96\x38\x9d\xb3\x02\xf6\xad\x5e\x88\xe6\xff\x70\xc4\xd4\x87\xea\x85\x84\x46\x15\xc6\x86\x2f\xc8\x8d\x4d\x9f\x31\x53\x97\x81\xa5\x2b\xb9\x7c\xff\x4e\x42\xe2\x75\x7d\x48\x19\xe3\xdb\x2f\x94\xf6\x64\x38\x6e\x01\xbc\x43\xf4\x5f\xca\xff\xf3\xbf\xfe\x37\xb1\xa7\x6d\x43\xab\x25\xae\xaa\xa9\x97\x14\x3f\xee\x66\x36\xeb\x3d\xde\x3e\x01\x8f\x0e\x1a\x22\xe8\x4f\xf5\xf6\x17\x85\x46\x34\xca\xee\x30\x8d\xbe\xf9\x8c\x72\x40\xe4\xd8\xb4\x78\x32\x87\x82\x7f\x58\x86\x11\x55\xa6\x6b\x84\xf3\xd2\x60\x83\x8b\x41\x93\xbb\xcf\x4a\x74\xd3\x4b\x4a\xf2\xa9\x69\x97\x9f\xbd\x2f\x1f\x37\x10\x91\x1f\x1f\xec\x54\x3c\x8c\x21\xec\x35\x93\xdf\xd8\xe9\xb8\xec\xfc\xc4\x71\x18\xce\xd4\xcc\x38\x5e\x7c\x6b\xc8\xcd\x4b\x57\x48\x58\xd1\xa3\xce\xae\x5f\xaa\x4f\x39\x5c\x70\x9c\xb8\x03\x1b\xde\xeb\xa4\x8d\x9f\x9e\xaa\x88\xcf\x10\x3d\x4f\x8a\x5e\x2f\x80\xe1\xa6\x29\xb0\x4c\x0c\x2c\x12\x3d\xe8\x60\x63\x42\x0e\xb0\x5b\x17\xf6\xec\xce\xe4\x27\x2a\xea\xb7\x88\xa0\x79\x8d\x08\xb8\x2c\x82\xb9\x24\xff\x27\x70\x14\xa1\x5a\x16\x8e\xd5\x90\xc6\x0f\x9c\x51\x44\x4e\x31\x03\x93\x52\x38\xa9\x89\x3c\x5d\x72\xe1\x40\xd4\xc4\x19\xd7\xc8\x75\x11\x46\x06\xb1\xf7\x41\x47\x86\xfd\x8f\xd6\x50\x3b\xea\x4d\x67\x2e\x8b\xb8\x9c\x9a\x10\x29\xc9\xc0\x71\x4e\x1d\x9d\xe1\x77\x33\x5f\x4d\x30\x65\x56\x72\x00\xe6\xb3\xf1\x78\xe5\x73\x9a\x3c\xbf\x08\x3c\x9b\x6c\x56\x5d\x17\x08\x09\xc8\xe3\xa3\xd3\x35\x6d\x10\xd6\xd1\x66\x06\x05\xb1\x28\xf7\xcb\x01\xdb\xf8\xb1\x93\xa9\xef\xb7\x8e\x1f\x97\x71\xbf\x7d\xfc\x3f\x7a\xf6\x32\xed\x40\x22\xd4\xc4\x0c\x3c\x49\xb8\xa4\x29\x97\x12\xff\x8e\x93\x10\x22\x29\x6d\xc6\x68\x6e\x1f\x3c\x0a\xd1\x3c\x4e\x93\x7e\xd8\xb9\xd7\xf7\x1f\x88\x44\x2e\x95\xbe\x41\xda\x8b\x7b\x1c\x08\x7a\x51\xab\x1c\x42\x58\xef\x14\xdf\x85\x3b\xb4\x7b\xf3\x82\x6b\xc4\x33\x86\x7b\xbc\xd1\xc5\x2c\xf4\xf4\xde\x2c\xf1\x35\xad\xb0\x99\x4e\xcb\xe4\x2f\x36\x99\x36\x57\x2e\x68\x89\x3e\xf2\xeb\xb7\xb4\x0e\x28\xb8\xef\xbb\xae\x35\x6c\x25\xf3\x1a\x67\x4f\x16\x36\xf2\xde\x1c\xe1\x32\x1b\x1f\x22\xfd\x7b\xae\x70\x4d\x2b\x91\x79\x0f\xb8\x37\x55\x0c\x16\x65\xc3\x9f\x57\x28\xf0\x1e\xc2\xf0\x25\x9b\x0c\xcf\x70\x3d\xe6\x76\x70\xcb\xdf\x0f\x1b\xcd\x26\x1b\xc2\xbd\x67\xea\x5f\xc6\x6e\x6f\x0f\xe2\x3d\xeb\x83\xa5\xc8\x56\x2e\x60\x79\x20\xf9\x86\xb8\x33\x99\x32\xcc\x1f\xd7\x11\x1b\x66\x59\xac\xd3\xe3\x9f\x21\xe0\xe2\x09\x6b\x8b\x12\x17\x8b\x4e\x24\xe4\x52\x74\xaf\xa5\x6e\xd2\x7c\x23\xc4\x05\x16\x6c\x1e\x83\x58\x5d\xf5\x14\xd7\x7c\xb7\x82\x06\xe5\x6e\xcb\x43\x98\x3b\x9f\x30\x3c\x4c\x02\xa8\xe2\xa6\xb6\x0a\x12\xf2\x1f\x87\x65\x89\x3b\x60\x5d\x3d\xdf\x37\xfb\x44\x96\xce\x19\xec\xc3\xc4\x65\x93\xc6\xc4\x4d\x92\x38\x96\x51\xf4\x5e\x30\xfa\x40\x62\xba\xdc\x1c\x1d\xa7\x0f\x2e\x1b\x61\xe5\x70\xd7\x8c\xcc\x03\x1b\x0b\xa0\x90\x1a\x70\xbf\x83\xe5\xfa\x90\x38\x66\x5a\x2a\x04\x58\x5f\xad\x48\xa2\x51\xbd\x21\xc4\xb7\x54\xcc\xed\x1c\x55\x77\x64\xfa\x2d\x38\xe4\xe0\x3b\x20\xc2\x0f\x37\xd6\x0e\x71\x79\xee\xda\xe1\xfc\xe9\xfb\x76\x84\x10\xdf\xd2\x0e\xae\xe5\x29\x4c\x9a\x78\x10\xef\x6b\x0f\x6d\x0e\xd5\xbf\x48\x78\xfc\xd3\x0d\x9b\xe8\x6f\xdb\x5c\x05\xeb\x35\x8e\x50\x8b\x81\xfc\xc1\xea\xcd\xf1\xc2\x29\x29\x72\x92\x37\x21\x22\xc8\x49\xf7\xe4\x95\xea\xaf\x4f\x71\x1e\x69\xe4\x74\xa0\xc1\x19\xb6\x07\x9b\x5a\x85\xb4\x5d\x5e\xa4\x83\x8c\x75\xa6\x72\x9d\x24\x7e\x7d\xe1\x15\x38\xbb\x4c\x2c\xf2\x5d\xb8\x64\x40\xc0\xb3\x91\x2c\xc4\x1d\xa5\x9b\xe3\xcc\xea\x82\x5a\xc7\x85\x39\x56\x0d\x28\xc7\xa2\xc7\x70\xc6\x3b\x43\xe9\x2c\x50\xb6\x32\x53\x3e\x32\x99\x55\x8e\x8b\x0d\x6a\x93\xdf\x45\x27\xd8\x7c\x09\x9c\x77\x64\xd1\xac\x39\xbc\x62\x8f\x9b\xe2\xd7\x6a\xf1\xf1\xe8\x08\xe6\xa0\x52\x66\x16\x4e\xf5\x31\x81\x78\xb2\x5b\xb6\x39\xeb\xc2\x6d\xac\x99\x59\x04\xa4\x80\x02\xff\xe8\x7a\xe9\x1e\xdc\xf0\xdc\x00\x47\x84\x54\xd0\xa3\xfb\x98\xc2\x77\x34\x00\x6c\xe3\xfe\x16\x80\x2d\x88\xa7\x4a\x6a\x46\xc0\x02\xee\x6b\x88\xbe\x94\xf1\xed\x0d\x01\xdf\xf8\xc6\x86\x1c\x59\x2b\xd4\x3f\x5a\x51\x4c\xce\xff\xfb\xda\x37\xd8\xee\x80\x38\x23\x07\x7c\x03\x82\x8f\x9e\x4b\x73\x44\x1f\x18\x73\x58\xb1\x38\x15\x57\xe3\x12\x5d\xce\x7c\x51\x35\x0d\x21\xb6\xb2\x75\x1f\x1a\xa0\xc4\x37\x21\xd9\x24\xa2\x6f\xef\x54\x24\xe1\xce\xc5\x17\x31\xbd\x9f\x21\xd9\x84\xe1\x48\x52\x9c\x32\x7e\x02\xda\x3f\x1f\x78\x96\x51\x5e\x71\x91\xf3\xf5\x2e\x7a\xbd\x6f\xec\x1f\xef\x5e\xdf\x84\xb1\x4f\xc6\xa1\x73\xce\x4e\xae\xe2\x2f\x4d\x96\xb3\x87\x32\x12\x6f\x7d\x72\x79\x47\x38\xd8\xe0\x6d\xa0\x05\xbb\xa5\x6a\xea\x4a\x0c\x17\xce\x24\xc4\x9e\xc9\x58\x15\xa3\x7a\x18\x76\x67\xe1\xef\x15\xf8\xde\x41\xb9\xc8\x3a\x26\x15\x04\x24\x1c\xa4\x07\xbe\xf2\x60\x30\xda\x9a\xf7\x3f\x5f\x02\x5a\x02\x15\xe6\x2e\x68\x99\xb6\x03\x85\xee\xba\xa9\x1a\x33\x3e\xa8\x4b\xf5\x98\xd2\x3d\xa6\xc6\x4c\x82\x1d\x42\x15\xec\x10\x4a\x9e\xcd\x39\x0a\x22\x22\x9c\x87\x09\x5b\xe7\x7a\x27\x8a\x8e\x17\x3e\x1f\x8f\x5b\xa7\x71\x14\x5f\x35\x8d\x22\xf2\xc5\xa8\x16\x53\x60\x87\x71\x62\x0c\x18\xc6\xd8\x45\x8b\xa8\xf4\xd8\xfd\x4a\x98\x24\x6e\x26\xa3\x28\x7d\x9a\x23\xee\x89\xe8\x54\xc3\xb8\x75\xb3\x64\x17\x99\x50\x42\xc6\xdd\x53\xd9\x39\x2e\xd3\x6c\x12\xa3\x22\x60\xd5\x1e\xc6\xe0\x5c\xab\xcf\xbb\x38\x37\xa6\x60\x18\xa1\x17\x77\x46\x80\xb4\xa7\xce\x17\x2b\xf4\x7f\x36\x45\x48\xb6\x35\x76\xc4\xa4\xaf\x01\x4e\x40\xca\xf3\x29\xa9\x3d\x96\x32\x09\xc3\xcf\xc1\xe1\x6d\x9a\x20\x95\x6d\x7c\xeb\x4c\x3d\xd4\x34\x7a\xc5\x9d\x0d\x7e\x9d\x37\x9a\xf4\x1c\x33\xae\xbb\x37\x53\xb0\x8a\xf1\xb5\x2f\xf5\x80\xa3\x39\x45\xe2\xb8\x67\x39\xf3\x25\xeb\xc2\xa8\x06\x08\xb9\xdf\xab\x75\x5e\x4e\x60\xe9\xc6\x2c\x14\x1c\x91\x7c\x53\x19\x83\x56\x7a\x08\x57\xcc\xf7\x37\x15\xda\x33\xbe\x37\x0b\x8d\x5c\xd4\xc8\x88\xad\x19\xc8\x57\x4a\x18\x34\x71\xb2\x88\xef\x68\x24\xbf\xe7\xb4\x5c\xb8\x57\x68\x4e\xd9\xf3\x59\x3b\xe7\x1b\xba\xbc\x86\x95\xf2\x2e\x59\x53\xc7\x1a\xb8\xe9\xec\xf7\xb5\x0c\x0d\xe2\x3d\xf7\x54\xf1\x87\xda\xd6\x96\xdd\x5d\xbd\xc8\xf0\x18\x51\xb7\xd2\x83\xca\x0f\xa5\xe8\xca\x1f\xcd\x28\xee\x69\xae\x6e\x16\x4a\x1c\xe9\x75\x8f\xc4\x35\xe4\xe3\x05\xc5\x57\xfc\x18\x12\x2d\x71\x4f\xc0\x13\x91\xdb\x04\x38\x12\xcf\xfa\x1f\xef\xad\x68\xd0\x97\x80\x21\x06\xb8\x6d\xd1\x14\x7e\x34\xf0\x1b\x7a\x10\x1c\x92\x87\xdd\x60\x32\xd0\xd9\x0f\x5e\x11\xfa\x40\x66\xc4\x3d\x66\xcf\x12\xec\xcb\x8e\x9f\x88\x50\xab\x1d\x5d\xd0\xec\xb1\x29\x55\x1e\x1d\xe8\x50\x58\xef\x3d\x23\xf4\x28\x6a\xc5\xd7\xfb\x18\x2e\x42\xf2\x8c\xde\x6e\x8b\x47\x54\xdd\xfb\x79\x1f\xf1\x1d\x32\x05\x71\x4b\x99\x2d\x9b\xb6\xa1\xe1\x91\x4b\xc8\xea\xaa\xf2\xb5\xc5\x75\x13\x19\xa0\x02\xbf\xcb\x76\x7a\x71\xdc\xf2\x9c\x21\x9a\xe4\x07\xbe\x45\xee\x73\xf5\x4d\x9f\xaf\x2d\x0f\x6b\x20\x17\xaa\xb7\xbe\xe2\x04\xcb\x75\x6c\x09\x41\x4e\xcd\xd3\xcc\xd9\x60\x15\x59\x14\xf8\x5c\x63\x02\x58\x1c\x73\xf0\xcd\x5e\x42\xd7\x6e\x9b\x71\x57\x71\x03\x51\xa2\xd3\x77\x88\x4e\xaf\x38\x7a\x5c\x83\xb5\xca\x65\x1b\x34\xea\x50\x3e\xbe\x46\x36\xcc\xf3\x8a\x6f\x9b\x0d\xe1\x0d\x73\xab\x32\xdf\x8e\xf0\xf6\x86\x22\x47\x58\x03\xe4\x18\x01\x80\x3d\x8c\x85\x30\x57\x55\x60\x63\x15\xe6\x78\x4b\x51\x87\xa0\x61\x01\x30\x84\xc7\xf3\xa6\x07\x72\xe8\x9a\x3d\x6c\x95\x9e\xd9\x8c\x5a\xd5\xcc\xff\x86\x37\x39\x15\xfa\x5c\x3e\x03\xa8\x79\xd3\xf4\xfc\x72\xd1\x96\xc5\xad\xc5\x8d\x43\xd3\x4b\x8b\x67\x71\x6b\x71\x33\xc2\x94\x40\x8f\x51\x25\xd0\x87\x71\xb5\x61\xb7\x2c\x54\x57\xbb\x5b\xf0\xe3\xa5\x9d\xab\xf0\xec\x92\xdd\xb9\x5c\xba\x84\x51\x8d\xa3\x9c\x21\x85\x0e\x33\x4f\xd5\xbc\x20\x21\xa2\x9c\xac\xfa\x84\x53\xee\xad\x7b\x94\x37\xac\x7c\x94\x7d\x6a\xa6\xc0\x13\x33\x2b\x9d\xe7\xbb\xc5\x4d\xd9\xb3\xd1\xfb\x2a\xc3\x09\x73\x58\xd6\x85\x81\xa5\x2f\x01\x96\xbe\x21\xb0\xf4\x4a\x1e\xd6\x1c\x97\x4a\x8b\xce\xa6\xec\x73\x58\x0a\x04\xa5\xbc\x3e\xa1\x11\xe0\xe8\x22\x9f\xca\x05\xed\x4c\xa6\x52\xb6\xce\x42\x16\x7c\x82\x12\xf4\xc9\x4f\x11\xbc\x8f\x1d\xc8\x54\x69\xbc\x0d\x90\xd5\x6f\x71\xb7\x10\x37\xc3\xbc\x31\xa0\x36\x7c\x90\x98\x00\x16\xfe\x12\x09\xd6\x78\x24\x0e\xc5\xe1\x38\x91\xc0\xaf\x62\x46\x29\x1c\xcc\x03\x0b\xe3\x22\xb8\x8b\x7c\xd7\x4d\x02\x6e\x73\x99\x4c\x07\x21\xad\x7a\x03\xb4\x9a\x87\x70\x5a\x69\x27\xa8\x14\xb6\x22\x3b\x35\x31\x8e\x56\xb7\x83\xf6\x4e\x39\x6c\xa3\xcd\xe9\x20\x5e\x2b\x17\xd8\xaf\x3e\x44\xa7\x60\x22\xbd\x42\x66\x95\x18\x93\xb7\xf0\xc8\x82\x85\x2d\x2d\xba\x8d\x2b\x71\xd1\xab\x78\x1a\x67\x97\xbf\xdc\xe5\x7f\x8d\x0f\x6f\x8d\x6a\x89\x10\x4c\xcd\x64\x25\x7e\x70\x48\x2d\x57\x04\x50\x5c\x11\xc9\x49\xd2\x3a\xcc\x8c\x4d\x83\x7b\x6c\x3a\x2a\xe0\x1d\xf6\x13\x41\xdf\x0e\x3a\x2c\x37\x57\x6f\xdf\xe8\xb3\xdc\xf7\x26\xc0\x31\x0e\xba\x63\xec\x56\x5d\x16\xa2\x73\xe8\x29\x2e\x1f\xa0\x97\xc1\x15\xc3\x11\x28\x4e\xbe\xc3\x27\xf6\x82\xe3\x47\x43\x39\x0e\xfa\xf0\x36\xa8\x1a\xf2\x8d\x4a\x08\xf2\x04\x0f\xaa\xb2\x55\xb3\x5c\x96\x9a\x42\x91\xd7\x0e\x1a\x86\x9c\xef\x77\x40\xdf\x7b\xb4\x14\xe3\x62\xfa\x49\x8a\xff\x27\xaf\x72\x84\x0d\xf0\x6f\x73\x1c\xa8\xff\x3f\xe4\x6d\x8e\xa1\x66\xd6\x3d\xce\x81\xc7\x07\x66\xb8\xdd\x10\xcf\xe3\xe8\xe0\x2a\x9a\xcf\xc8\x11\xce\x53\x44\xc4\x47\xf9\x88\xf2\x6a\x5f\xd3\xf8\x8a\xd6\x06\x53\x74\x58\x5f\x70\x21\x25\xaa\x4d\x72\x8c\x3d\x10\xc6\x4d\x90\x98\xf1\x69\x91\xc4\xab\x36\x22\x55\x2f\x58\xa5\x6a\x8f\x66\x50\x49\xe8\x11\x8d\xc5\x0d\x9d\x36\x41\x99\xa4\x53\x7b\xd0\xe4\x78\x72\x47\xad\x96\x4c\x72\x55\xd9\xee\xba\x4c\x32\x13\x05\x0c\xba\x22\x31\xa1\xd3\x14\x89\x11\x67\xf4\x78\x9d\x49\x42\x1a\x3f\xb6\xc2\x08\x5a\xac\xc5\xc4\x55\x07\x85\x02\x68\x92\x57\x05\x6d\x19\xda\xa7\x4a\xac\x3e\x2e\x8e\x77\xc5\x25\x46\x5f\x5d\xc7\x83\xeb\x12\x83\xcd\x7e\x01\x2b\x37\xde\xdb\x9f\xbe\x0f\xe3\x03\x07\xf6\x48\xf5\xcf\x10\x4b\xbf\x78\x71\x99\x8b\xcd\x0e\x16\x15\x75\x35\xf5\x92\xed\x76\xb4\xf5\x7d\xdf\x56\xf3\x1d\x9f\x8f\xa9\x3d\x00\x13\xb5\x1c\xa4\xbb\xb4\x11\x6c\xb7\xb3\x87\x1d\x2e\x35\x74\x18\x76\xf0\x36\xde\x00\x4e\xbc\xa0\x58\xfb\x5e\xe1\xcb\x8a\x80\x7a\xd9\x01\xc8\xa1\x53\x04\xb1\x61\xe6\x9a\x75\x39\x4f\x0f\xe2\x4d\x45\x7a\x79\xac\x29\x78\x94\x5d\xd5\x2a\x78\xbb\xfd\xe0\xf0\x31\xe4\xe8\x91\x77\x9f\x64\x0f\xf0\x9f\xd9\x33\xf8\x21\x25\x65\xbd\xb8\xe0\x97\x37\x0e\xae\xde\x5d\x52\x70\xd1\xde\xc9\x49\x93\x0e\x28\x1f\x35\xe8\x53\xe8\xf6\xf0\xd5\xf1\x99\x7b\x6c\x3e\x20\x11\x2d\x92\x1f\xb2\x76\xaf\xac\xfa\xc2\xa9\xfd\x8d\xbe\xb2\xaa\x9a\x56\x25\x72\x7e\x25\x88\xad\x86\xb7\x9d\x95\x13\x5c\xc2\x1e\xcc\x17\x7d\x0f\x42\xd1\x3b\x5a\xc5\x62\x95\x2f\x56\x28\xb7\x9a\x85\x13\x25\x5c\x64\xa3\x0a\xbe\xf1\xf5\x86\xb0\xac\x60\x35\xba\xa7\xad\x93\xb7\x2c\x63\x67\x90\x21\x60\x26\x13\xd7\x7c\xbe\x46\x05\x7b\x17\xbf\xa3\x0c\x91\xf3\xd7\x28\xd3\xb4\xfd\xc0\x7d\x6e\x5f\x45\x9b\x60\xbb\x78\xa7\x2c\xd7\x5d\x7c\xac\x33\x57\xd8\x7c\xbb\x75\x7c\x24\xf0\xc6\x0b\x12\x09\x40\x6e\x65\x36\x04\x10\x7f\x96\x57\xb8\x43\x20\xb9\xff\x11\x02\xf1\x1d\x10\x05\x18\x32\x23\x8d\x1e\x3c\xbf\x1f\xbd\xbb\x6f\x39\xed\x15\xe0\x66\x27\xdb\x74\x3c\xf3\xad\x77\x8c\x3e\x20\x92\x25\x34\x03\xb7\x47\xba\x45\xfd\x89\x29\x1e\x26\x69\x45\x9c\x14\x56\x82\xa5\x8d\x1f\xfe\x9e\x78\x0f\xfc\x43\x83\xc7\x80\xfb\x95\x43\x30\xeb\xea\x17\x99\x78\xf2\x0b\xf2\xe0\xa4\x60\x01\xfb\xdf\x71\x26\x6a\xf7\x38\x07\xb5\xfb\x00\xb8\x9c\x1e\xdb\x42\x70\x89\x2f\x61\x21\xae\xc5\x6c\x93\xa6\x54\x64\x1d\x96\xb8\xe1\xa3\x66\x21\x0e\x8a\xb9\x27\x0c\xf7\x56\xfa\x24\x69\x10\x64\xb8\x9a\xf9\xd8\x70\x05\xf1\xb1\xe1\x5a\xe8\x63\xb5\x61\x83\x16\x74\xdd\xda\x06\xe2\xf2\xf2\x5d\x3c\xda\x3e\xd5\x1f\xe9\x3f\x66\xa3\x96\x07\xec\xda\x67\x49\x5b\xd3\x07\x29\xdf\xdd\xf9\x31\xc8\xa1\xd8\x0c\xf1\xa7\xb1\xc3\x32\xf4\x21\xfb\x41\x11\xc6\x2c\xa3\x29\x53\x2d\x0e\x20\xc6\x3d\x47\x1d\x3d\xf3\x01\xf4\xc3\x0f\x90\x2d\x3b\xe1\x8b\xd4\x23\x62\xf6\xcc\xd6\x91\x72\xc8\x68\xad\x61\x6c\x0b\x1f\x3e\xcc\x9c\xe9\xa3\xc0\x6a\x14\xef\x9e\xc0\x7e\x89\x68\xdf\x42\x71\x48\x64\x0e\x8a\xd4\xf4\xd8\xda\x07\xff\x42\x6f\x6b\x58\xab\x5b\x16\x7b\x23\x58\x1d\x56\x70\xfb\xdf\x07\xe6\xa6\x06\x66\x6f\x0d\x41\x95\x30\x7a\x96\x08\x3a\x04\x7d\x95\xc8\x18\x83\xdc\x8d\x62\xc3\xf0\x6c\xad\x7a\x73\xb9\x3f\x05\xf3\xf0\xf4\x1d\x14\xe5\xae\xdd\xd1\x5b\xbd\x51\x26\x79\x22\xd8\xbd\x07\x3a\xce\x6c\xd7\xfc\xdc\x20\xda\xb5\xa5\xc9\x41\xfc\x7d\x57\xee\xa8\x70\x79\xc4\x97\x1d\xa2\xd2\x67\xfa\x0e\x9f\x6e\xac\xe4\x3e\x12\xb6\xd1\x6c\x05\xfd\xdc\x6e\x28\x61\x37\x4d\x31\x6e\x94\x6e\xaa\x2d\x2f\xcb\xfa\x88\x21\x0f\x0e\xc5\x60\x6d\xfe\x33\x62\x42\x24\x87\x9c\xf9\x0c\xdf\xd3\x0d\x54\xd8\xb1\xf8\x18\xa7\x1b\x41\x11\x9d\x37\x01\x31\xbd\xf9\xf5\xdd\xf9\x00\x72\x62\x82\x6a\xca\xc4\x84\xd6\x94\x89\xe9\x2b\x67\x40\xae\x0b\x38\xf7\x99\xee\x81\x40\x1e\xec\x80\xd0\x90\x3f\xd2\x05\xf1\x4c\x16\xa4\xd4\x56\xe4\x5b\x99\x31\x4a\x67\xf2\x1d\x03\x05\x5e\xa6\x05\xca\x9c\x4c\x8f\x6a\xad\xc3\x3a\x6b\x39\xbf\xf0\xfc\x40\x6c\x0b\x02\x7e\x20\x36\xba\x93\xcd\x33\x68\xda\xeb\xde\x56\x85\xfa\xe0\x16\xf8\x0b\x8d\x32\x50\x03\xf1\x25\x1b\x84\x16\xed\x9a\x49\x84\x5b\x39\xe9\xed\x04\x5f\xd1\xd0\xe9\x44\xe4\xf9\x22\xb0\x7e\x1a\xf2\x23\x47\x92\xc3\x80\x97\x0b\x87\x18\xd3\x44\xbd\x3e\xf1\xfe\xb7\xa1\xb4\x1a\x74\x66\x5d\x5d\x97\x4e\xc5\xa5\xbd\x79\x47\x71\x11\xf0\x8a\x9f\x89\xb6\x9b\x94\xf2\x50\xf4\x39\x7d\x0c\x3a\x11\x16\xa5\x3d\x19\x95\xb4\xad\xa0\x76\x0c\xf0\x22\x11\xd3\x18\x37\x68\xe5\xdb\x01\xb8\x32\xee\x21\xbb\xb5\x87\x16\x83\x19\xe2\x5f\x3d\xf3\xeb\xb3\xab\x9d\xd7\xe5\xc9\x9a\x19\x4a\x57\x2e\x86\xc1\xca\x65\x66\x06\xb3\x45\x2b\x5e\x65\xf8\xef\x8a\x0f\x80\x5d\x4a\x38\xf7\x2c\xae\x23\xda\x2b\x76\x72\x4b\x47\x83\x1e\xde\x9b\x25\x08\x9a\x2c\x61\xc2\x45\x62\x0c\x50\x7e\x29\x17\xbb\xe0\x3c\xe2\x57\xf9\x56\x05\xa0\x2f\xa6\x31\xab\xc2\x5d\x0d\xff\x98\x17\x12\x13\xc0\x4c\xb9\x96\xb2\xa6\xc3\x36\xd2\x6c\x24\x0f\xd6\xef\xaa\xc7\xf6\x87\xa1\xcc\x54\xc3\xcc\x23\xe4\x33\x5b\xcb\xa5\x8d\x81\xf5\x86\xc1\x86\x52\x48\x18\x97\xfd\x14\xc9\x69\x2e\x6d\xa2\xe1\x96\xd4\x6c\x99\x65\x6d\x67\x01\x2c\x44\xf1\xe0\xbd\x16\x69\x83\xa4\x7f\xcd\x36\x2b\xf9\x24\xc6\x10\x9f\x07\x4e\xf2\x4d\x6f\x19\xd8\xdf\x44\x17\x87\x1e\x8a\x93\x4c\xb9\x5d\x65\x99\xd8\xf4\x48\x3c\xa2\x06\xb0\x4f\xbb\x76\xf1\xf4\x61\xe8\xe9\x50\x5d\x22\x2a\x80\xb9\x41\xfc\x83\xfa\xdd\xd4\x76\x98\x57\xc7\xdf\xd4\x8d\xa2\x7c\x87\xe5\x8a\xbe\x44\x8a\xee\xfe\x29\xf0\xa3\x38\x74\x0c\x19\xf8\xbf\x6c\xea\xef\x29\xc8\x79\x2f\xd1\xfe\xd9\xf7\x00\x2f\xb8\x6b\xcd\x08\x91\x4b\xd7\xc3\x67\xb0\x14\x55\xb8\xb2\xcd\x57\x78\x3c\x9e\xe8\xe3\x7e\x44\x45\x45\x8d\x10\xa5\x0e\xf1\x7e\xce\xbc\xb7\x6c\xdc\xde\x93\x84\xaa\x53\x8f\x60\xf2\xc6\xd8\xcf\xce\x53\x76\xf2\xa9\x6f\x9a\xf5\xe7\x24\x5f\x72\x9f\xe8\x37\x81\x2b\x7a\x31\xf4\x85\x31\x1b\x05\x13\xf9\xe4\xd0\x4f\x5c\xf0\x4f\xb4\x4b\x25\x06\x02\xb7\x74\x3f\x6d\x10\xb1\xa1\x3d\x5b\x5f\x22\x62\x85\x08\x7e\x03\x01\x9f\x05\x3e\x8b\xfc\x0e\x5f\x7b\x7c\xed\xcb\xf2\x46\x32\x83\xc3\x50\x76\xda\xf5\xad\x10\x73\x87\x6f\xf6\xb3\xc6\x9f\x52\x8f\x7a\x5d\xb4\x0f\x38\xc3\xe3\xea\x34\xde\x3e\x28\x5e\x9e\x8b\x7b\xee\x5f\x8e\x7b\xc8\x07\x6b\x77\x1a\x85\x10\xc5\x70\xf5\x1a\x25\xc1\x87\x60\x13\xb4\x97\xd5\x02\x25\x4c\xb1\xdc\x0e\x8d\x94\x20\xc5\xb5\xf9\x3e\xf3\xed\xd2\x10\x62\x7d\xab\x34\x44\xe8\x2d\xda\x66\xcb\x8e\xb1\x3e\xbb\x87\x25\xbc\xa3\xf1\x53\x4a\x53\x37\x19\xf0\x56\xc4\x57\xff\xd8\x7b\xbf\x3c\x2c\xc3\x17\xe3\x66\xee\x49\xea\xaa\xde\xee\xdc\xfe\x49\x7d\x30\x3c\xea\x15\xcc\xfb\xda\x10\x6b\x4f\xf6\x1e\x2c\xae\xd5\x69\x74\xb3\x39\xd6\x00\xec\xcb\xf8\x91\xfd\xc7\xff\xfa\xaf\x00\xa7\xe0\xbf\xfd\x5b\x7a\xf6\xf2\xc7\xb4\xfc\xc2\xee\x78\xf8\x9d\xd4\x2f\xd5\x66\xb7\x31\x28\xfa\x7c\x15\x01\xf2\x75\x38\xd8\xed\xa9\x0e\x5c\xdf\x96\x82\xe2\xfb\xff\x06\x00\x00\xff\xff\x19\x61\x81\x6e\x1d\x99\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: 39004, mode: os.FileMode(420), modTime: time.Unix(1440517293, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 39197, mode: os.FileMode(420), modTime: time.Unix(1440593083, 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 ce981d5956..b383202410 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=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('embedded-opentype'),url(../fonts/octicons.woff?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('woff'),url(../fonts/octicons.ttf?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('truetype'),url(../fonts/octicons.svg?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d#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-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-beaker:before,.octicon-microscope:before{content:'\f0dd'}.octicon-bell:before{content:'\f0de'}.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-clone:before,.octicon-desktop-download:before{content:'\f0dc'}.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-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-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-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.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-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-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.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-shield:before{content:'\f0e1'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.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-watch:before{content:'\f0e0'}.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.blue{color:#428bca!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.green{color:#6cc644!important}.ui .text.left{text-align:left!important}.ui .text.right{text-align:right!important}.ui .text.small{font-size:.75em}.ui .text.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}.ui .warning.header{background-color:#F9EDBE!important;border-color:#F0C36D}.ui .warning.segment{border-color:#F0C36D}.ui .info.header{background-color:#d9edf7!important;border-color:#85c5e5}.ui .info.segment{border-color:#85c5e5}.ui .normal.header{font-weight:400}.ui .avatar.image{border-radius:3px}.ui .form .fake{display:none!important}.overflow.menu .items{max-height:300px;overflow-y:auto}.overflow.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}.overflow.menu .items .item.active{font-weight:700}.overflow.menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}footer{margin-top:54px!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}@media only screen and (max-width:991px) and (min-width:768px){.ui.container{width:95%}}.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:80px}.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:80px}.install form label{text-align:right;width:320px!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:335px!important}.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}.ui.attached.header .right .button{padding:8px 10px;font-weight:400}.repository.new.fork form,.repository.new.migrate form{margin:auto;width:800px!important}.repository.new.fork form .ui.message,.repository.new.migrate form .ui.message{text-align:center}.repository.new.fork form .header,.repository.new.migrate form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label,.repository.new.migrate form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help,.repository.new.migrate form .help{margin-left:265px!important}.repository.new.fork form .dropdown .dropdown.icon,.repository.new.migrate form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text,.repository.new.migrate form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i,.repository.new.migrate form .dropdown .text i{margin-right:0!important}.repository.new.fork form .optional .title,.repository.new.migrate form .optional .title{margin-left:250px!important}.repository.new.fork form input,.repository.new.fork form textarea,.repository.new.migrate form input,.repository.new.migrate form textarea{width:50%!important}.repository.edit.hook form .inline.field>label{text-align:right;width:25%!important;word-wrap:break-word}.repository.edit.hook form input,.repository.edit.hook form textarea{width:50%!important}.repository.edit.hook form textarea{width:70%!important}.repository{padding-top:15px;padding-bottom:80px}.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.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 h1 .ui.input{font-size:.5em;vertical-align:top;width:50%;min-width:600px}.repository.view.issue .title h1 .ui.input input{font-size:1.5em;padding:6px 10px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .title .edit-zone{margin-top: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 .actions .item{float:left}.repository.view.issue .comment-list .comment .actions a.item{margin-top:6px;margin-left:10px}.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 .comment .edit.buttons{margin-top:10px}.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{margin-top:5px;font-size:20px;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.commits .header .ui.right .search input{font-weight:400;padding:5px 10px}.repository.commits .header .ui.right .button{float:right;margin-left:5px;margin-top:1px}.repository .commits.table{font-size:13px}.repository .commits.table td:first-child,.repository .commits.table th:first-child{padding-left:15px}.repository .commits.table td{line-height:15px}.repository .commits.table .author{min-width:180px}.repository .commits.table .message span{max-width:500px}.repository .commits.table .date{width:120px}.repository .sha.label{font-family:Consolas,Menlo,Monaco,"Lucida Console",monospace;font-size:14px;padding:6px 10px 4px 10px;font-weight:400}.repository .diff-detail-box{margin:15px 0;line-height:30px}.repository .diff-detail-box ol{clear:both;padding-left:0;margin-top:5px;margin-bottom:28px}.repository .diff-detail-box ol li{list-style:none;padding-bottom:4px;margin-bottom:4px;border-bottom:1px dashed #DDD;padding-left:6px}.repository .diff-detail-box span.status{display:inline-block;width:12px;height:12px;margin-right:8px;vertical-align:middle}.repository .diff-detail-box span.status.modify{background-color:#f0db88}.repository .diff-detail-box span.status.add{background-color:#b4e2b4}.repository .diff-detail-box span.status.del{background-color:#e9aeae}.repository .diff-detail-box span.status.rename{background-color:#dad8ff}.repository .diff-box .count{margin-right:12px}.repository .diff-box .count .bar{background-color:#e75316;height:12px;width:40px;display:inline-block;margin:2px 4px 0 4px;vertical-align:text-top}.repository .diff-box .count .bar .add{background-color:#77c64a;height:12px}.repository .diff-box .file{color:#888}.repository .diff-file-box .header{border-bottom:1px solid #d4d4d5!important}.repository .diff-file-box .file-body.file-code .lines-num{text-align:right;color:#999;background:#fafafa;width:1%}.repository .diff-file-box .file-body.file-code .lines-num-old{border-right:1px solid #DDD}.repository .diff-file-box .code-diff{font-size:13px}.repository .diff-file-box .code-diff td{padding:0;border-top:none}.repository .diff-file-box .code-diff pre{margin:0}.repository .diff-file-box .code-diff .lines-num{border-right:1px solid #d4d4d5;padding:0 5px}.repository .diff-file-box .code-diff tbody tr.tag-code pre,.repository .diff-file-box .code-diff tbody tr.tag-code td{background-color:#E0E0E0!important;border-color:#ADADAD!important}.repository .diff-file-box .code-diff tbody tr.del-code pre,.repository .diff-file-box .code-diff tbody tr.del-code td{background-color:#ffe2dd!important;border-color:#e9aeae!important}.repository .diff-file-box .code-diff tbody tr.add-code pre,.repository .diff-file-box .code-diff tbody tr.add-code td{background-color:#d1ffd6!important;border-color:#b4e2b4!important}.repository .diff-file-box .code-diff tbody tr:hover td{background-color:#FFF8D2!important;border-color:#F0DB88!important}.repository .diff-file-box .code-diff tbody tr:hover pre{background-color:transparent!important}.repository .code-view{overflow:auto;overflow-x:auto;overflow-y:hidden}.issue.list{list-style:none;padding-top:15px}.issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.issue.list>.item .title:hover{color:#000}.issue.list>.item .comment{padding-right:10px;color:#666}.issue.list>.item .desc{padding-top:5px;color:#999}.issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.issue.list>.item .desc a.milestone:hover{color:#000!important}.issue.list>.item .desc .assignee{margin-top:-5px;margin-right:5px}.page.buttons{padding-top:15px}.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 .content{margin-top:2px}.settings .content .header,.settings .content .segment{box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.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}.settings .hook.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .hook.list .item{padding:10px 20px}.settings .hook.list .item i{margin-right:5px}.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}.user{padding-top:15px;padding-bottom:80px}.user.settings .key.list .item.ui.grid{margin-top:15px}.dashboard{padding-top:15px;padding-bottom:80px}.dashboard.issues .context.user.menu{min-width:200px}.dashboard.issues .context.user.menu .ui.header{font-size:1rem;text-transform:none}.dashboard.issues .filter.menu .item.active{background-color:#4183c4;color:#FFF}.dashboard.issues .ui.right .head.menu{margin-top:-5px}.dashboard.issues .ui.right .head.menu .item.active{color:#d9453d}.admin{padding-top:15px;padding-bottom:80px}.admin .table.segment{padding:0;font-size:13px}.admin .table.segment th{padding-top:5px;padding-bottom:5px}.admin .table.segment td:first-child,.admin .table.segment th:first-child{padding-left:15px} \ No newline at end of file +@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('embedded-opentype'),url(../fonts/octicons.woff?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('woff'),url(../fonts/octicons.ttf?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('truetype'),url(../fonts/octicons.svg?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d#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-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-beaker:before,.octicon-microscope:before{content:'\f0dd'}.octicon-bell:before{content:'\f0de'}.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-clone:before,.octicon-desktop-download:before{content:'\f0dc'}.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-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-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-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.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-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-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.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-shield:before{content:'\f0e1'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.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-watch:before{content:'\f0e0'}.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.red a{color:#d95c5c!important}.ui .text.red a:hover{color:#E67777!important}.ui .text.blue{color:#428bca!important}.ui .text.blue a{color:#15c!important}.ui .text.blue a:hover{color:#428bca!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.green{color:#6cc644!important}.ui .text.left{text-align:left!important}.ui .text.right{text-align:right!important}.ui .text.small{font-size:.75em}.ui .text.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}.ui .text.thin{font-weight:400}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}.ui .warning.header{background-color:#F9EDBE!important;border-color:#F0C36D}.ui .warning.segment{border-color:#F0C36D}.ui .info.header{background-color:#d9edf7!important;border-color:#85c5e5}.ui .info.segment{border-color:#85c5e5}.ui .normal.header{font-weight:400}.ui .avatar.image{border-radius:3px}.ui .form .fake{display:none!important}.overflow.menu .items{max-height:300px;overflow-y:auto}.overflow.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}.overflow.menu .items .item.active{font-weight:700}.overflow.menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}footer{margin-top:54px!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}@media only screen and (max-width:991px) and (min-width:768px){.ui.container{width:95%}}.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:80px}.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:80px}.install form label{text-align:right;width:320px!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:335px!important}.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}.ui.attached.header .right .button{padding:8px 10px;font-weight:400}.repository.new.fork form,.repository.new.migrate form{margin:auto;width:800px!important}.repository.new.fork form .ui.message,.repository.new.migrate form .ui.message{text-align:center}.repository.new.fork form .header,.repository.new.migrate form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label,.repository.new.migrate form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help,.repository.new.migrate form .help{margin-left:265px!important}.repository.new.fork form .dropdown .dropdown.icon,.repository.new.migrate form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text,.repository.new.migrate form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i,.repository.new.migrate form .dropdown .text i{margin-right:0!important}.repository.new.fork form .optional .title,.repository.new.migrate form .optional .title{margin-left:250px!important}.repository.new.fork form input,.repository.new.fork form textarea,.repository.new.migrate form input,.repository.new.migrate form textarea{width:50%!important}.repository.edit.githook form .inline.field>label{text-align:right;width:25%!important;word-wrap:break-word}.repository.edit.githook form input,.repository.edit.githook form textarea{width:50%!important}.repository.edit.githook form textarea{width:70%!important}.repository{padding-top:15px;padding-bottom:80px}.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.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 h1 .ui.input{font-size:.5em;vertical-align:top;width:50%;min-width:600px}.repository.view.issue .title h1 .ui.input input{font-size:1.5em;padding:6px 10px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .title .edit-zone{margin-top: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 .actions .item{float:left}.repository.view.issue .comment-list .comment .actions a.item{margin-top:6px;margin-left:10px}.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 .comment .edit.buttons{margin-top:10px}.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{margin-top:5px;font-size:20px;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.commits .header .ui.right .search input{font-weight:400;padding:5px 10px}.repository.commits .header .ui.right .button{float:right;margin-left:5px;margin-top:1px}.repository .commits.table{font-size:13px}.repository .commits.table td:first-child,.repository .commits.table th:first-child{padding-left:15px}.repository .commits.table td{line-height:15px}.repository .commits.table .author{min-width:180px}.repository .commits.table .message span{max-width:500px}.repository .commits.table .date{width:120px}.repository .sha.label{font-family:Consolas,Menlo,Monaco,"Lucida Console",monospace;font-size:14px;padding:6px 10px 4px 10px;font-weight:400}.repository .diff-detail-box{margin:15px 0;line-height:30px}.repository .diff-detail-box ol{clear:both;padding-left:0;margin-top:5px;margin-bottom:28px}.repository .diff-detail-box ol li{list-style:none;padding-bottom:4px;margin-bottom:4px;border-bottom:1px dashed #DDD;padding-left:6px}.repository .diff-detail-box span.status{display:inline-block;width:12px;height:12px;margin-right:8px;vertical-align:middle}.repository .diff-detail-box span.status.modify{background-color:#f0db88}.repository .diff-detail-box span.status.add{background-color:#b4e2b4}.repository .diff-detail-box span.status.del{background-color:#e9aeae}.repository .diff-detail-box span.status.rename{background-color:#dad8ff}.repository .diff-box .count{margin-right:12px}.repository .diff-box .count .bar{background-color:#e75316;height:12px;width:40px;display:inline-block;margin:2px 4px 0 4px;vertical-align:text-top}.repository .diff-box .count .bar .add{background-color:#77c64a;height:12px}.repository .diff-box .file{color:#888}.repository .diff-file-box .header{border-bottom:1px solid #d4d4d5!important}.repository .diff-file-box .file-body.file-code .lines-num{text-align:right;color:#999;background:#fafafa;width:1%}.repository .diff-file-box .file-body.file-code .lines-num-old{border-right:1px solid #DDD}.repository .diff-file-box .code-diff{font-size:13px}.repository .diff-file-box .code-diff td{padding:0;border-top:none}.repository .diff-file-box .code-diff pre{margin:0}.repository .diff-file-box .code-diff .lines-num{border-right:1px solid #d4d4d5;padding:0 5px}.repository .diff-file-box .code-diff tbody tr.tag-code pre,.repository .diff-file-box .code-diff tbody tr.tag-code td{background-color:#E0E0E0!important;border-color:#ADADAD!important}.repository .diff-file-box .code-diff tbody tr.del-code pre,.repository .diff-file-box .code-diff tbody tr.del-code td{background-color:#ffe2dd!important;border-color:#e9aeae!important}.repository .diff-file-box .code-diff tbody tr.add-code pre,.repository .diff-file-box .code-diff tbody tr.add-code td{background-color:#d1ffd6!important;border-color:#b4e2b4!important}.repository .diff-file-box .code-diff tbody tr:hover td{background-color:#FFF8D2!important;border-color:#F0DB88!important}.repository .diff-file-box .code-diff tbody tr:hover pre{background-color:transparent!important}.repository .code-view{overflow:auto;overflow-x:auto;overflow-y:hidden}.issue.list{list-style:none;padding-top:15px}.issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.issue.list>.item .title:hover{color:#000}.issue.list>.item .comment{padding-right:10px;color:#666}.issue.list>.item .desc{padding-top:5px;color:#999}.issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.issue.list>.item .desc a.milestone:hover{color:#000!important}.issue.list>.item .desc .assignee{margin-top:-5px;margin-right:5px}.page.buttons{padding-top:15px}.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 .content{margin-top:2px}.settings .content .header,.settings .content .segment{box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.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}.settings .hook.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .hook.list .item{padding:10px 20px}.settings .hook.list .item .fa,.settings .hook.list .item .octicon{width:20px}.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}.organization{padding-top:15px;padding-bottom:80px}.organization .head .ui.header .text{vertical-align:middle;font-size:1.6rem;margin-left:15px}.organization .head .ui.header .ui.right{margin-top:5px}.user{padding-top:15px;padding-bottom:80px}.user.settings .key.list .item.ui.grid{margin-top:15px}.dashboard{padding-top:15px;padding-bottom:80px}.dashboard.issues .context.user.menu{min-width:200px}.dashboard.issues .context.user.menu .ui.header{font-size:1rem;text-transform:none}.dashboard.issues .filter.menu .item.active{background-color:#4183c4;color:#FFF}.dashboard.issues .ui.right .head.menu{margin-top:-5px}.dashboard.issues .ui.right .head.menu .item.active{color:#d9453d}.admin{padding-top:15px;padding-bottom:80px}.admin .table.segment{padding:0;font-size:13px}.admin .table.segment th{padding-top:5px;padding-bottom:5px}.admin .table.segment td:first-child,.admin .table.segment th:first-child{padding-left:15px} \ No newline at end of file diff --git a/public/less/_base.less b/public/less/_base.less index fa307c2a87..7a15e99796 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -73,9 +73,21 @@ img { .text { &.red { color: #d95c5c!important; + a { + color: #d95c5c!important; + &:hover { + color: #E67777!important; + } + } } &.blue { color: #428bca!important; + a { + color: #15c!important; + &:hover { + color: #428bca!important; + } + } } &.grey { color: #767676!important; @@ -105,6 +117,10 @@ img { white-space: nowrap; display: inline-block; } + + &.thin { + font-weight: normal; + } } .message { diff --git a/public/less/_form.less b/public/less/_form.less index 7297dd4086..65d973afed 100644 --- a/public/less/_form.less +++ b/public/less/_form.less @@ -59,7 +59,7 @@ } } } -.repository.edit.hook { +.repository.edit.githook { form { @input-padding: 25%!important; .inline.field > label { @@ -73,7 +73,7 @@ } } } -.repository.edit.hook { +.repository.edit.githook { form { textarea { width: 70%!important; diff --git a/public/less/_organization.less b/public/less/_organization.less new file mode 100644 index 0000000000..389a4648bb --- /dev/null +++ b/public/less/_organization.less @@ -0,0 +1,17 @@ +.organization { + padding-top: 15px; + padding-bottom: @footer-margin * 2; + + .head { + .ui.header { + .text { + vertical-align: middle; + font-size: 1.6rem; + margin-left: 15px; + } + .ui.right { + margin-top: 5px; + } + } + } +} \ No newline at end of file diff --git a/public/less/_repository.less b/public/less/_repository.less index e989125fac..dd12dda055 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -629,8 +629,9 @@ } .item { padding: 10px 20px; - i { - margin-right: 5px; + .octicon, + .fa { + width: 20px; } } } diff --git a/public/less/gogs.less b/public/less/gogs.less index be1fc0f5be..9c277d3880 100644 --- a/public/less/gogs.less +++ b/public/less/gogs.less @@ -5,6 +5,7 @@ @import "_install"; @import "_form"; @import "_repository"; +@import "_organization"; @import "_user"; @import "_dashboard"; @import "_admin"; \ No newline at end of file diff --git a/routers/api/v1/repo_hooks.go b/routers/api/v1/repo_hooks.go index 0348c68391..eb1c4be447 100644 --- a/routers/api/v1/repo_hooks.go +++ b/routers/api/v1/repo_hooks.go @@ -26,7 +26,7 @@ func ListRepoHooks(ctx *middleware.Context) { apiHooks := make([]*api.Hook, len(hooks)) for i := range hooks { h := &api.Hook{ - Id: hooks[i].Id, + ID: hooks[i].ID, Type: hooks[i].HookTaskType.Name(), Active: hooks[i].IsActive, Config: make(map[string]string), @@ -35,7 +35,7 @@ func ListRepoHooks(ctx *middleware.Context) { // Currently, onle have push event. h.Events = []string{"push"} - h.Config["url"] = hooks[i].Url + h.Config["url"] = hooks[i].URL h.Config["content_type"] = hooks[i].ContentType.Name() if hooks[i].HookTaskType == models.SLACK { s := hooks[i].GetSlackHook() @@ -67,8 +67,8 @@ func CreateRepoHook(ctx *middleware.Context, form api.CreateHookOption) { } w := &models.Webhook{ - RepoId: ctx.Repo.Repository.ID, - Url: form.Config["url"], + RepoID: ctx.Repo.Repository.ID, + URL: form.Config["url"], ContentType: models.ToHookContentType(form.Config["content_type"]), Secret: form.Config["secret"], HookEvent: &models.HookEvent{ @@ -102,12 +102,12 @@ func CreateRepoHook(ctx *middleware.Context, form api.CreateHookOption) { } apiHook := &api.Hook{ - Id: w.Id, + ID: w.ID, Type: w.HookTaskType.Name(), Events: []string{"push"}, Active: w.IsActive, Config: map[string]string{ - "url": w.Url, + "url": w.URL, "content_type": w.ContentType.Name(), }, } @@ -129,7 +129,7 @@ func EditRepoHook(ctx *middleware.Context, form api.EditHookOption) { if form.Config != nil { if url, ok := form.Config["url"]; ok { - w.Url = url + w.URL = url } if ct, ok := form.Config["content_type"]; ok { if !models.IsValidHookContentType(ct) { diff --git a/routers/org/setting.go b/routers/org/setting.go index 7a76199502..a15af26d43 100644 --- a/routers/org/setting.go +++ b/routers/org/setting.go @@ -105,9 +105,11 @@ func SettingsDelete(ctx *middleware.Context) { ctx.HTML(200, SETTINGS_DELETE) } -func SettingsHooks(ctx *middleware.Context) { +func Webhooks(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("org.settings") ctx.Data["PageIsSettingsHooks"] = true + ctx.Data["BaseLink"] = ctx.Org.OrgLink + ctx.Data["Description"] = ctx.Tr("org.settings.hooks_desc") // Delete web hook. remove := com.StrTo(ctx.Query("remove")).MustInt64() @@ -130,3 +132,15 @@ func SettingsHooks(ctx *middleware.Context) { ctx.Data["Webhooks"] = ws ctx.HTML(200, SETTINGS_HOOKS) } + +func DeleteWebhook(ctx *middleware.Context) { + if err := models.DeleteWebhook(ctx.QueryInt64("id")); err != nil { + ctx.Flash.Error("DeleteWebhook: " + err.Error()) + } else { + ctx.Flash.Success(ctx.Tr("repo.settings.webhook_deletion_success")) + } + + ctx.JSON(200, map[string]interface{}{ + "redirect": ctx.Org.OrgLink + "/settings/hooks", + }) +} diff --git a/routers/repo/setting.go b/routers/repo/setting.go index dfcf598188..8031135ec6 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -173,7 +173,7 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) { } } -func SettingsCollaboration(ctx *middleware.Context) { +func Collaboration(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("repo.settings") ctx.Data["PageIsSettingsCollaboration"] = true @@ -249,26 +249,16 @@ func SettingsCollaboration(ctx *middleware.Context) { func Webhooks(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("repo.settings") ctx.Data["PageIsSettingsHooks"] = true - - // Delete web hook. - remove := com.StrTo(ctx.Query("remove")).MustInt64() - if remove > 0 { - if err := models.DeleteWebhook(remove); err != nil { - ctx.Handle(500, "DeleteWebhook", err) - return - } - ctx.Flash.Success(ctx.Tr("repo.settings.remove_hook_success")) - ctx.Redirect(ctx.Repo.RepoLink + "/settings/hooks") - return - } + ctx.Data["BaseLink"] = ctx.Repo.RepoLink + ctx.Data["Description"] = ctx.Tr("repo.settings.hooks_desc", "http://gogs.io/docs/features/webhook.html") ws, err := models.GetWebhooksByRepoId(ctx.Repo.Repository.ID) if err != nil { ctx.Handle(500, "GetWebhooksByRepoId", err) return } - ctx.Data["Webhooks"] = ws + ctx.HTML(200, HOOKS) } @@ -318,8 +308,8 @@ func WebHooksNewPost(ctx *middleware.Context, form auth.NewWebhookForm) { } w := &models.Webhook{ - RepoId: orCtx.RepoId, - Url: form.PayloadUrl, + RepoID: orCtx.RepoId, + URL: form.PayloadUrl, ContentType: ct, Secret: form.Secret, HookEvent: &models.HookEvent{ @@ -328,7 +318,7 @@ func WebHooksNewPost(ctx *middleware.Context, form auth.NewWebhookForm) { IsActive: form.Active, HookTaskType: models.GOGS, Meta: "", - OrgId: orCtx.OrgId, + OrgID: orCtx.OrgId, } if err := w.UpdateEvent(); err != nil { @@ -429,7 +419,7 @@ func WebHooksEditPost(ctx *middleware.Context, form auth.NewWebhookForm) { ct = models.FORM } - w.Url = form.PayloadUrl + w.URL = form.PayloadUrl w.ContentType = ct w.Secret = form.Secret w.HookEvent = &models.HookEvent{ @@ -474,8 +464,8 @@ func SlackHooksNewPost(ctx *middleware.Context, form auth.NewSlackHookForm) { } w := &models.Webhook{ - RepoId: orCtx.RepoId, - Url: form.PayloadUrl, + RepoID: orCtx.RepoId, + URL: form.PayloadUrl, ContentType: models.JSON, Secret: "", HookEvent: &models.HookEvent{ @@ -484,7 +474,7 @@ func SlackHooksNewPost(ctx *middleware.Context, form auth.NewSlackHookForm) { IsActive: form.Active, HookTaskType: models.SLACK, Meta: string(meta), - OrgId: orCtx.OrgId, + OrgID: orCtx.OrgId, } if err := w.UpdateEvent(); err != nil { ctx.Handle(500, "UpdateEvent", err) @@ -539,7 +529,7 @@ func SlackHooksEditPost(ctx *middleware.Context, form auth.NewSlackHookForm) { return } - w.Url = form.PayloadUrl + w.URL = form.PayloadUrl w.Meta = string(meta) w.HookEvent = &models.HookEvent{ PushOnly: form.PushOnly, @@ -557,6 +547,18 @@ func SlackHooksEditPost(ctx *middleware.Context, form auth.NewSlackHookForm) { ctx.Redirect(fmt.Sprintf("%s/settings/hooks/%d", orCtx.Link, hookId)) } +func DeleteWebhook(ctx *middleware.Context) { + if err := models.DeleteWebhook(ctx.QueryInt64("id")); err != nil { + ctx.Flash.Error("DeleteWebhook: " + err.Error()) + } else { + ctx.Flash.Success(ctx.Tr("repo.settings.webhook_deletion_success")) + } + + ctx.JSON(200, map[string]interface{}{ + "redirect": ctx.Repo.RepoLink + "/settings/hooks", + }) +} + type OrgRepoCtx struct { OrgId int64 RepoId int64 @@ -608,7 +610,7 @@ func TriggerHook(ctx *middleware.Context) { models.HookQueue.AddRepoID(repo.ID) } -func SettingsGitHooks(ctx *middleware.Context) { +func GitHooks(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("repo.settings") ctx.Data["PageIsSettingsGitHooks"] = true @@ -622,7 +624,7 @@ func SettingsGitHooks(ctx *middleware.Context) { ctx.HTML(200, GITHOOKS) } -func SettingsGitHooksEdit(ctx *middleware.Context) { +func GitHooksEdit(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("repo.settings") ctx.Data["PageIsSettingsGitHooks"] = true @@ -640,7 +642,7 @@ func SettingsGitHooksEdit(ctx *middleware.Context) { ctx.HTML(200, GITHOOK_EDIT) } -func SettingsGitHooksEditPost(ctx *middleware.Context) { +func GitHooksEditPost(ctx *middleware.Context) { name := ctx.Params(":name") hook, err := ctx.Repo.GitRepo.GetHook(name) if err != nil { @@ -659,7 +661,7 @@ func SettingsGitHooksEditPost(ctx *middleware.Context) { ctx.Redirect(ctx.Repo.RepoLink + "/settings/hooks/git") } -func SettingsDeployKeys(ctx *middleware.Context) { +func DeployKeys(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("repo.settings") ctx.Data["PageIsSettingsKeys"] = true @@ -673,7 +675,7 @@ func SettingsDeployKeys(ctx *middleware.Context) { ctx.HTML(200, DEPLOY_KEYS) } -func SettingsDeployKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) { +func DeployKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) { ctx.Data["Title"] = ctx.Tr("repo.settings") ctx.Data["PageIsSettingsKeys"] = true diff --git a/templates/org/header.tmpl b/templates/org/header.tmpl new file mode 100644 index 0000000000..7843441b6e --- /dev/null +++ b/templates/org/header.tmpl @@ -0,0 +1,26 @@ +{{with .Org}} +
+ +
+
+{{end}} \ No newline at end of file diff --git a/templates/org/settings/hooks.tmpl b/templates/org/settings/hooks.tmpl index 2f6ba630e6..3b5bf4d9df 100644 --- a/templates/org/settings/hooks.tmpl +++ b/templates/org/settings/hooks.tmpl @@ -1,38 +1,11 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -{{template "org/base/header" .}} -
-
- {{template "org/settings/nav" .}} -
-
- {{template "ng/base/alert" .}} -
-
-
- {{.i18n.Tr "repo.settings.add_webhook"}} - {{.i18n.Tr "repo.settings.hooks"}} -
-
    -
  • {{.i18n.Tr "org.settings.hooks_desc" | Str2html}}
  • - {{range .Webhooks}} -
  • - {{if .IsActive}} - - {{else}} - - {{end}} - {{.Url}} - - -
  • - {{end}} -
-
-
-
-
-
+{{template "base/head" .}} +
+ {{template "org/header" .}} +
+
+ {{template "org/settings/navbar" .}} + {{template "repo/settings/hook_list" .}} +
-{{template "ng/base/footer" .}} +{{template "base/footer" .}} diff --git a/templates/org/settings/nav.tmpl b/templates/org/settings/nav.tmpl index 1285c4ab94..28af4d29a5 100644 --- a/templates/org/settings/nav.tmpl +++ b/templates/org/settings/nav.tmpl @@ -4,9 +4,9 @@
diff --git a/templates/org/settings/navbar.tmpl b/templates/org/settings/navbar.tmpl new file mode 100644 index 0000000000..30f5818768 --- /dev/null +++ b/templates/org/settings/navbar.tmpl @@ -0,0 +1,14 @@ +
+ +
diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index 5d68f393e3..74e04d0988 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -1,6 +1,6 @@ {{with .Repository}}
-
+
- -
-
-
{{end}} diff --git a/templates/repo/settings/githook_edit.tmpl b/templates/repo/settings/githook_edit.tmpl index 520ebdb2d4..40334d271c 100644 --- a/templates/repo/settings/githook_edit.tmpl +++ b/templates/repo/settings/githook_edit.tmpl @@ -1,5 +1,5 @@ {{template "base/head" .}} -
+
{{template "repo/header" .}}
diff --git a/templates/repo/settings/githooks.tmpl b/templates/repo/settings/githooks.tmpl index 6c0af1f2ff..8120b80e17 100644 --- a/templates/repo/settings/githooks.tmpl +++ b/templates/repo/settings/githooks.tmpl @@ -1,5 +1,5 @@ {{template "base/head" .}} -
+
{{template "repo/header" .}}
@@ -16,13 +16,9 @@
{{range .Hooks}}
- {{if .IsActive}} - - {{else}} - - {{end}} + {{.Name}} - +
{{end}}
diff --git a/templates/repo/settings/hook_gogs.tmpl b/templates/repo/settings/hook_gogs.tmpl index 39e612b9f4..e4ece412b9 100644 --- a/templates/repo/settings/hook_gogs.tmpl +++ b/templates/repo/settings/hook_gogs.tmpl @@ -1,11 +1,11 @@
-
+ {{.CsrfTokenHtml}}
{{.i18n.Tr "repo.settings.add_webhook_desc" "http://gogs.io/docs/features/webhook.html" | Str2html}}
- +
diff --git a/templates/repo/settings/hook_list.tmpl b/templates/repo/settings/hook_list.tmpl new file mode 100644 index 0000000000..b04d86367e --- /dev/null +++ b/templates/repo/settings/hook_list.tmpl @@ -0,0 +1,52 @@ +
+ {{template "base/alert" .}} +

+ {{.i18n.Tr "repo.settings.hooks"}} + +

+
+
+
+ {{.Description | Str2html}} +
+ {{range .Webhooks}} +
+ {{if eq .LastStatus 1}} + + {{else if eq .LastStatus 2}} + + {{else}} + + {{end}} + {{.URL}} +
+ + +
+
+ {{end}} +
+
+
+ + \ No newline at end of file diff --git a/templates/repo/settings/hook_settings.tmpl b/templates/repo/settings/hook_settings.tmpl index 7bf4e2a36c..bf465c8305 100644 --- a/templates/repo/settings/hook_settings.tmpl +++ b/templates/repo/settings/hook_settings.tmpl @@ -11,5 +11,5 @@
- {{if .PageIsSettingsHooksEdit}}{{.i18n.Tr "repo.settings.delete_webhook"}}{{end}} + {{if .PageIsSettingsHooksEdit}}{{.i18n.Tr "repo.settings.delete_webhook"}}{{end}}
diff --git a/templates/repo/settings/hook_slack.tmpl b/templates/repo/settings/hook_slack.tmpl index bc307ec850..82439c4323 100644 --- a/templates/repo/settings/hook_slack.tmpl +++ b/templates/repo/settings/hook_slack.tmpl @@ -1,11 +1,11 @@
- + {{.CsrfTokenHtml}}
{{.i18n.Tr "repo.settings.add_slack_hook_desc" "http://slack.com" | Str2html}}
- +
diff --git a/templates/repo/settings/hooks.tmpl b/templates/repo/settings/hooks.tmpl index e23c0ccd63..e3f6f4ddae 100644 --- a/templates/repo/settings/hooks.tmpl +++ b/templates/repo/settings/hooks.tmpl @@ -1,39 +1,11 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -
- {{template "repo/header_old" .}} -
-
- {{template "repo/settings/nav" .}} -
-
- {{template "ng/base/alert" .}} -
-
-
- {{.i18n.Tr "repo.settings.add_webhook"}} - {{.i18n.Tr "repo.settings.hooks"}} -
-
    -
  • {{.i18n.Tr "repo.settings.hooks_desc" "http://gogs.io/docs/features/webhook.html" | Str2html}}
  • - {{range .Webhooks}} -
  • - {{if .IsActive}} - - {{else}} - - {{end}} - {{.Url}} - - -
  • - {{end}} -
-
-
-
-
-
+{{template "base/head" .}} +
+ {{template "repo/header" .}} +
+
+ {{template "repo/settings/navbar" .}} + {{template "repo/settings/hook_list" .}} +
-{{template "ng/base/footer" .}} \ No newline at end of file +{{template "base/footer" .}} \ No newline at end of file